From e7a44e19d23a1d99726cd76c5cd88f56ca586653 Mon Sep 17 00:00:00 2001 From: ekinakyurek Date: Mon, 7 Jun 2021 17:28:48 -0400 Subject: [PATCH] update readme --- .gitignore | 142 + .gitmodules | 6 + COGS | 1 + COLOR/alignments/forward.align.o.json | 1 + COLOR/alignments/goodman.json | 7 + COLOR/alignments/intersect.align.o.json | 1 + COLOR/alignments/pmi.align.json | 1 + COLOR/alignments/simple.align.v3.json | 1 + COLOR/color.align.txt | 14 + COLOR/test.tsv | 10 + COLOR/train.tsv | 14 + LICENSE | 21 + README.md | 105 + SCAN | 1 + TRANSLATE/README.md | 19 + TRANSLATE/alignments/forward.align.o.json | 1 + TRANSLATE/alignments/intersect.align.o.json | 1 + TRANSLATE/alignments/simple.align.v3.json | 1 + TRANSLATE/cmn.tsv | 24026 ++++++++++++++++++ TRANSLATE/cmn.txt | 24026 ++++++++++++++++++ TRANSLATE/cmn.txt_dev_tokenized.tsv | 2402 ++ TRANSLATE/cmn.txt_test_tokenized.tsv | 2402 ++ TRANSLATE/cmn.txt_train_tokenized.tsv | 19222 ++++++++++++++ TRANSLATE/cmn.txt_train_tokenized.tsv.fast | 19222 ++++++++++++++ TRANSLATE/cmn.txt_train_tokenized_geca.tsv | 22823 +++++++++++++++++ analyze.ipynb | 4326 ++++ data.py | 64 + environment.yml | 106 + exp/COGS/LSTM.sh | 40 + exp/COGS/LSTM_copy.sh | 41 + exp/COGS/collect.sh | 56 + exp/COGS/fast.sh | 43 + exp/COGS/geca.sh | 45 + exp/COGS/goodman.sh | 42 + exp/COGS/learn_simple.sh | 47 + exp/COGS/pmi.sh | 42 + exp/COGS/random.sh | 47 + exp/COGS/simple.sh | 42 + exp/COGS/soft_simple.sh | 45 + exp/COGS/uniform.sh | 48 + exp/COLOR/LSTM.sh | 47 + exp/COLOR/collect.sh | 45 + exp/COLOR/collect_baseline.sh | 46 + exp/COLOR/collect_geca.sh | 48 + exp/COLOR/fast.sh | 47 + exp/COLOR/geca.sh | 51 + exp/COLOR/goodman.sh | 46 + exp/COLOR/pmi.sh | 46 + exp/COLOR/simple.sh | 46 + exp/COLOR/start_exps.sh | 64 + exp/SCAN/LSTM.sh | 52 + exp/SCAN/collect.sh | 44 + exp/SCAN/collect_aligner.sh | 54 + exp/SCAN/fast.sh | 56 + exp/SCAN/goodman.sh | 54 + exp/SCAN/pmi.sh | 53 + exp/SCAN/simple.sh | 53 + exp/TRANSLATE/LSTM.sh | 40 + exp/TRANSLATE/LSTM_copy.sh | 41 + exp/TRANSLATE/baseline_translate.sh | 40 + exp/TRANSLATE/collect.sh | 53 + exp/TRANSLATE/fast.sh | 43 + exp/TRANSLATE/geca.sh | 40 + exp/TRANSLATE/learn_simple.sh | 49 + exp/TRANSLATE/pmi.sh | 42 + exp/TRANSLATE/random.sh | 49 + exp/TRANSLATE/resultdiff.py | 102 + exp/TRANSLATE/simple.sh | 42 + exp/TRANSLATE/soft_fast.sh | 43 + exp/TRANSLATE/soft_simple.sh | 48 + exp/TRANSLATE/uniform.sh | 48 + extract_alignments.sh | 31 + hlog.py | 75 + lexicon_model.png | Bin 0 -> 264057 bytes main.py | 616 + mutex.py | 80 + notes/notes.tex | 65 + src/__init__.py | 6 + src/attention.py | 69 + src/decoder.py | 707 + src/encdec.py | 217 + src/encoder.py | 41 + src/multiiter.py | 21 + src/projection.py | 19 + src/utils.py | 131 + src/vocab.py | 84 + translate_tokenize.py | 55 + utils/dictdiff.py | 38 + utils/extract_all_bpes.sh | 14 + utils/pmi_align.py | 61 + utils/summarize_aligned_data.py | 44 + utils/summarize_aligned_data3.py | 104 + 92 files changed, 123514 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 160000 COGS create mode 100644 COLOR/alignments/forward.align.o.json create mode 100644 COLOR/alignments/goodman.json create mode 100644 COLOR/alignments/intersect.align.o.json create mode 100644 COLOR/alignments/pmi.align.json create mode 100644 COLOR/alignments/simple.align.v3.json create mode 100644 COLOR/color.align.txt create mode 100644 COLOR/test.tsv create mode 100644 COLOR/train.tsv create mode 100644 LICENSE create mode 100644 README.md create mode 160000 SCAN create mode 100644 TRANSLATE/README.md create mode 100644 TRANSLATE/alignments/forward.align.o.json create mode 100644 TRANSLATE/alignments/intersect.align.o.json create mode 100644 TRANSLATE/alignments/simple.align.v3.json create mode 100644 TRANSLATE/cmn.tsv create mode 100644 TRANSLATE/cmn.txt create mode 100644 TRANSLATE/cmn.txt_dev_tokenized.tsv create mode 100644 TRANSLATE/cmn.txt_test_tokenized.tsv create mode 100644 TRANSLATE/cmn.txt_train_tokenized.tsv create mode 100644 TRANSLATE/cmn.txt_train_tokenized.tsv.fast create mode 100644 TRANSLATE/cmn.txt_train_tokenized_geca.tsv create mode 100644 analyze.ipynb create mode 100644 data.py create mode 100644 environment.yml create mode 100644 exp/COGS/LSTM.sh create mode 100644 exp/COGS/LSTM_copy.sh create mode 100644 exp/COGS/collect.sh create mode 100644 exp/COGS/fast.sh create mode 100644 exp/COGS/geca.sh create mode 100644 exp/COGS/goodman.sh create mode 100644 exp/COGS/learn_simple.sh create mode 100644 exp/COGS/pmi.sh create mode 100644 exp/COGS/random.sh create mode 100644 exp/COGS/simple.sh create mode 100644 exp/COGS/soft_simple.sh create mode 100644 exp/COGS/uniform.sh create mode 100644 exp/COLOR/LSTM.sh create mode 100644 exp/COLOR/collect.sh create mode 100644 exp/COLOR/collect_baseline.sh create mode 100644 exp/COLOR/collect_geca.sh create mode 100644 exp/COLOR/fast.sh create mode 100644 exp/COLOR/geca.sh create mode 100644 exp/COLOR/goodman.sh create mode 100644 exp/COLOR/pmi.sh create mode 100644 exp/COLOR/simple.sh create mode 100644 exp/COLOR/start_exps.sh create mode 100644 exp/SCAN/LSTM.sh create mode 100644 exp/SCAN/collect.sh create mode 100644 exp/SCAN/collect_aligner.sh create mode 100644 exp/SCAN/fast.sh create mode 100644 exp/SCAN/goodman.sh create mode 100644 exp/SCAN/pmi.sh create mode 100644 exp/SCAN/simple.sh create mode 100644 exp/TRANSLATE/LSTM.sh create mode 100644 exp/TRANSLATE/LSTM_copy.sh create mode 100644 exp/TRANSLATE/baseline_translate.sh create mode 100644 exp/TRANSLATE/collect.sh create mode 100644 exp/TRANSLATE/fast.sh create mode 100644 exp/TRANSLATE/geca.sh create mode 100644 exp/TRANSLATE/learn_simple.sh create mode 100644 exp/TRANSLATE/pmi.sh create mode 100644 exp/TRANSLATE/random.sh create mode 100644 exp/TRANSLATE/resultdiff.py create mode 100644 exp/TRANSLATE/simple.sh create mode 100644 exp/TRANSLATE/soft_fast.sh create mode 100644 exp/TRANSLATE/soft_simple.sh create mode 100644 exp/TRANSLATE/uniform.sh create mode 100644 extract_alignments.sh create mode 100644 hlog.py create mode 100644 lexicon_model.png create mode 100644 main.py create mode 100644 mutex.py create mode 100644 notes/notes.tex create mode 100644 src/__init__.py create mode 100644 src/attention.py create mode 100644 src/decoder.py create mode 100644 src/encdec.py create mode 100644 src/encoder.py create mode 100644 src/multiiter.py create mode 100644 src/projection.py create mode 100644 src/utils.py create mode 100644 src/vocab.py create mode 100644 translate_tokenize.py create mode 100644 utils/dictdiff.py create mode 100644 utils/extract_all_bpes.sh create mode 100644 utils/pmi_align.py create mode 100644 utils/summarize_aligned_data.py create mode 100644 utils/summarize_aligned_data3.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33af02e --- /dev/null +++ b/.gitignore @@ -0,0 +1,142 @@ +notes/*.aux +notes/*.log +notes/*.out +notes/*.pdf +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e2120de --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "COGS"] + path = COGS + url = https://github.com/najoungkim/COGS.git +[submodule "SCAN"] + path = SCAN + url = https://github.com/brendenlake/SCAN.git diff --git a/COGS b/COGS new file mode 160000 index 0000000..553e0a4 --- /dev/null +++ b/COGS @@ -0,0 +1 @@ +Subproject commit 553e0a45ed14f53fb1263c4794d36822a8bade32 diff --git a/COLOR/alignments/forward.align.o.json b/COLOR/alignments/forward.align.o.json new file mode 100644 index 0000000..8285d01 --- /dev/null +++ b/COLOR/alignments/forward.align.o.json @@ -0,0 +1 @@ +{"dax": {"RED": 9}, "lug": {"BLUE": 14}, "wif": {"GREEN": 12}, "zup": {"YELLOW": 1}} \ No newline at end of file diff --git a/COLOR/alignments/goodman.json b/COLOR/alignments/goodman.json new file mode 100644 index 0000000..8b87cb3 --- /dev/null +++ b/COLOR/alignments/goodman.json @@ -0,0 +1,7 @@ +{"dax": {"RED": 1995, "BLUE": 2, "GREEN": 10}, +"wif": {"GREEN": 1995, "BLUE": 116, "RED": 16}, +"lug": {"BLUE": 1995, "GREEN": 39, "RED": 5}, +"kiki": {"GREEN": 1030, "BLUE": 844, "RED": 17}, +"blicket": {"GREEN": 1738, "RED": 74, "BLUE": 23}, +"zup": {"YELLOW": 568}, +"fep": {"BLUE": 543, "RED": 46}} diff --git a/COLOR/alignments/intersect.align.o.json b/COLOR/alignments/intersect.align.o.json new file mode 100644 index 0000000..bc778b5 --- /dev/null +++ b/COLOR/alignments/intersect.align.o.json @@ -0,0 +1 @@ +{"dax": {"RED": 6}, "lug": {"BLUE": 9}, "wif": {"GREEN": 8}, "zup": {"YELLOW": 1}} \ No newline at end of file diff --git a/COLOR/alignments/pmi.align.json b/COLOR/alignments/pmi.align.json new file mode 100644 index 0000000..66ce0d8 --- /dev/null +++ b/COLOR/alignments/pmi.align.json @@ -0,0 +1 @@ +{"dax": {"RED": 58.53658318519592, "BLUE": 19.51219290494919, "GREEN": 21.95121943950653, "YELLOW": 5.853659601484651e-06}, "lug": {"RED": 22.22222238779068, "BLUE": 44.44444477558136, "GREEN": 33.33333432674408, "YELLOW": 4.444445522722162e-06}, "wif": {"RED": 23.076924681663513, "BLUE": 30.769231915473938, "GREEN": 46.153849363327026, "YELLOW": 4.615386117734488e-06}, "zup": {"RED": 1.666666982202969e-06, "BLUE": 1.111110314866437e-06, "GREEN": 1.2500009027860415e-06, "YELLOW": 100.0}, "fep": {"RED": 22.22221940755844, "BLUE": 44.44443881511688, "GREEN": 33.3333283662796, "YELLOW": 1.3333330173281865e-05}, "blicket": {"RED": 37.5, "BLUE": 24.99999850988388, "GREEN": 37.5, "YELLOW": 7.49999102822585e-06}, "kiki": {"RED": 27.906975150108337, "BLUE": 37.209299206733704, "GREEN": 34.88371968269348, "YELLOW": 5.581395967624303e-06}} \ No newline at end of file diff --git a/COLOR/alignments/simple.align.v3.json b/COLOR/alignments/simple.align.v3.json new file mode 100644 index 0000000..bc778b5 --- /dev/null +++ b/COLOR/alignments/simple.align.v3.json @@ -0,0 +1 @@ +{"dax": {"RED": 6}, "lug": {"BLUE": 9}, "wif": {"GREEN": 8}, "zup": {"YELLOW": 1}} \ No newline at end of file diff --git a/COLOR/color.align.txt b/COLOR/color.align.txt new file mode 100644 index 0000000..5bb04b7 --- /dev/null +++ b/COLOR/color.align.txt @@ -0,0 +1,14 @@ +dax ||| RED +lug ||| BLUE +wif ||| GREEN +zup ||| YELLOW +lug fep ||| BLUE BLUE BLUE +dax fep ||| RED RED RED +lug blicket wif ||| BLUE GREEN BLUE +wif blicket dax ||| GREEN RED GREEN +lug kiki wif ||| GREEN BLUE +dax kiki lug ||| BLUE RED +lug fep kiki wif ||| GREEN BLUE BLUE BLUE +wif kiki dax blicket lug ||| RED BLUE RED GREEN +lug kiki wif fep ||| GREEN GREEN GREEN BLUE +wif blicket dax kiki lug ||| BLUE GREEN RED GREEN diff --git a/COLOR/test.tsv b/COLOR/test.tsv new file mode 100644 index 0000000..d4866c1 --- /dev/null +++ b/COLOR/test.tsv @@ -0,0 +1,10 @@ +zup fep YELLOW YELLOW YELLOW +zup blicket lug YELLOW BLUE YELLOW +dax blicket zup RED YELLOW RED +zup kiki dax RED YELLOW +wif kiki zup YELLOW GREEN +zup fep kiki lug BLUE YELLOW YELLOW YELLOW +wif kiki zup fep YELLOW YELLOW YELLOW GREEN +lug kiki wif blicket zup GREEN YELLOW GREEN BLUE +zup blicket wif kiki dax fep RED RED RED YELLOW GREEN YELLOW +zup blicket zup kiki zup fep YELLOW YELLOW YELLOW YELLOW YELLOW YELLOW diff --git a/COLOR/train.tsv b/COLOR/train.tsv new file mode 100644 index 0000000..a687141 --- /dev/null +++ b/COLOR/train.tsv @@ -0,0 +1,14 @@ +dax RED +lug BLUE +wif GREEN +zup YELLOW +lug fep BLUE BLUE BLUE +dax fep RED RED RED +lug blicket wif BLUE GREEN BLUE +wif blicket dax GREEN RED GREEN +lug kiki wif GREEN BLUE +dax kiki lug BLUE RED +lug fep kiki wif GREEN BLUE BLUE BLUE +wif kiki dax blicket lug RED BLUE RED GREEN +lug kiki wif fep GREEN GREEN GREEN BLUE +wif blicket dax kiki lug BLUE GREEN RED GREEN diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..da52fef --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Ekin Akyürek + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..43ccd59 --- /dev/null +++ b/README.md @@ -0,0 +1,105 @@ +# Lexicon Learning for Few-Shot Neural Sequence Modeling +Paper: [Lexicon Learning for Few-Shot Neural Sequence Modeling](https://drive.google.com/file/d/1jDCXL4MT_rLN2X2QNHFae90r17w3HM3g/view?usp=sharing) +Ekin Akyürek, Jacob Andreas ACL 2021 + +![Lexicon Model](lexicon_model.png "Lexicon Model") + + +## Dependencies +- **OS**: Linux or macOS +- **Language**: Python +- **Hardware**: NVIDIA GPU (CUDA and cuDNN) +- **Libraries**: PyTorch, numpy, nltk +- **Optional**: + - Jupyter Notebook (Used for analysis of results.) + + +## Requirements + +You can use provided [environment.yml](./environment.yml) to setup the required libraries using `conda` software. + +### Info: + +Exact versions of the important libraries I used for this project. + +1. python=3.7.3 +2. pytorch=1.2.0 (cuda10.0.130_cudnn7.6.2_0) +3. numpy=1.19.1 +5. nltk==3.5 + +Note that since this codebase is for reproducibility purposes you might require specific versions of the dependencies as described above. However, it should work with higher versions as well. + +## Setup + +You can setup this repo by typing below in shell: + +```SHELL + +git clone --recurse-submodules git://github.com/ekinakyurek/lexical.git +cd lexical +conda env create --file environment.yml # creates conda env with required packages +``` + +## Data + +[COGS](./COGS) and [SCAN](./SCAN) datasets are provided as a submodule. +[TRANSLATE](./TRANSLATE) and [COLOR](./COLOR) datasets are provided as a subfolder. + + +> 📋 See individual license files for each dataset under their folders. + +## Training + +To verify the results presented in the paper, you may run the scripts to train models and see the evaluations. + +**Lexicon Learning (optional)**: + +We provide the required lexicon files in the repo. For those who are interested in this part: + +You need formatted training files with following structure ([ref](https://github.com/clab/fast_align)) + +> Each line is a source language sentence and its target language translation, separated by a triple pipe symbol with leading and trailing white space (|||). + +Then you can extract all the lexicons by running the script: + +```SHELL +sh extract_alignments.sh +``` + +**Seq2Seq Training**: + +All experiment scripts are found at [exps/](exps/) + +For example, + +- To run the *simple* model on COGS dataset you can use: +```SHELL +cd exp/COGS +sh simple.sh $i # $i is the seed of the experiments. You can use `sbatch simple.sh` for running all exps parallel on slurm +``` + +- To run the *IBM2* model on COGS dataset you can use: +```SHELL +cd exp/COGS +sh fast.sh $i +``` + +The logs can be found in the created subfolders. + +> 📋 Note that the experiments are tested on NVIDIA 32GB V100 Volta GPUs. For some models GPU requirements might be high. + +> 📋 jump(SCAN) and Color experiments are very sensitive to seeds, so any change in the code might change the results sligthly. + +## Evaluation + +After running an experiment, evaluation results can be found under subfolders, we provide convenience scripts in each exp folder which collates the results in shell: + +```SHELL +sh collect.sh # (WIP: some of them needs to updated slightly) +``` + +After running all experiments, one can refer to `analyze.ipynb` Jupyter Notebook to obtain the figures and tables provided in the paper. + +## Trouble Shooting + +TODO diff --git a/SCAN b/SCAN new file mode 160000 index 0000000..74f0536 --- /dev/null +++ b/SCAN @@ -0,0 +1 @@ +Subproject commit 74f053693b9ac5836371e5352dfd8124d79625f4 diff --git a/TRANSLATE/README.md b/TRANSLATE/README.md new file mode 100644 index 0000000..8d43e1f --- /dev/null +++ b/TRANSLATE/README.md @@ -0,0 +1,19 @@ +## Attribution / License + +- We use the [data](./cmn.txt) obtained from [ManyThings.org](https://www.manythings.org/bilingual/) which collected this data from tatoeba.org corpus. + +- The data is licensed under the [Creative Commons - Attribution 2.0](https://creativecommons.org/licenses/by/2.0/fr/deed.en_GB) France license. ([terms of use page on tatoeba.org](http://tatoeba.org/eng/terms_of_use)) + +## Copyright + +- Though the source data is available under the CC BY license, the downloaded [datafile](./cmn.txt) on this repository have been edited by [ManyThings.org](https://www.manythings.org/bilingual/) and are copyrighted. + +## Tokenized Files + +You can find tokenized files produced using original data under this folder `*.tsv`. We use these files in our experiments. + + + + + + diff --git a/TRANSLATE/alignments/forward.align.o.json b/TRANSLATE/alignments/forward.align.o.json new file mode 100644 index 0000000..c4deedc --- /dev/null +++ b/TRANSLATE/alignments/forward.align.o.json @@ -0,0 +1 @@ +{"sunscreen": {"\u6d82\u70b9": 1, "\u9632\u6652": 1, "\u5427": 1}, ".": {".": 14973, "\u8ff7\u8def": 2, "\u5982": 1, "\u7684": 77, "\u8fd9": 2, "\u9019\u500b": 2, "": 51, "\u53ef\u80fd": 4, "\u5730": 2, "\u6ca1\u6709": 4, "\u8981": 2, "\u7279\u522b": 2, "\u53ef\u4e0d": 2, "\u6765": 6, "\u90a3\u79cd": 2, "\u5f88": 34, "\u5927\u6d1e": 1, "\u53ea\u80fd": 2, "\u4ed6": 10, "\u7ea6\u7ff0": 1, ",": 2, "\u592a\u8d35": 1, "\u548c": 1, "\u7522\u751f": 1, "\u6210\u529f": 5, "\u80fd": 4, "\u4f1a": 7, "\u597d": 7, "\u5730\u65b9": 2, "\u505a": 10, "\u5e2e\u52a9": 1, "\u7a7f\u8863\u670d": 2, "\u7535\u8bdd\u54cd": 3, "\u6539\u53d8": 2, "\u8aaa": 8, "\u4e2d": 1, "\u6253\u5230": 1, "\u5f53": 2, "\u4e86": 49, "\u535a\u7269": 1, "\u9003\u4e4b\u592d\u592d": 1, "\u5176\u4e2d": 1, "\u6c34\u6c7d": 1, "\u592a\u77ed": 1, "\u7d66": 2, "\u70e7": 1, "\u201c": 3, "\u90fd": 9, "\u7ed9": 4, "\u9003\u8d70": 1, "\u6211": 28, "\u5f97": 4, "\u53c8": 1, "10": 1, "\u9ebb\u70e6": 1, "\u751f": 1, "\u53ef\u4ee5": 3, "\u6709": 8, "\u7b2c\u4e00": 1, "\u770b\u4e0d\u89c1": 3, "\u6c92\u6709": 4, "\u662f": 18, "\u4e0d\u4f1a": 4, "\u6bd4\u8f03": 2, "\u5931\u53bb": 1, "\u5728": 13, "\u4e0d\u80fd": 4, "\u60f3": 5, "\u4f60": 15, "\u666f\u70b9": 1, "\u900f": 1, "\u5408\u60c5\u5408\u7406": 1, "\u5c07": 1, "\u6309": 1, "\u5f97\u4e0d\u5230": 1, "\u63a5\u53d7": 2, "\u770b\u898b": 2, "\u540e": 3, "\u516d\u6708": 1, "\u6bd4\u8f83": 1, "\u56de\u4e8b": 1, "\u6709\u500b": 1, "\u592a": 2, "\u5230": 5, "\u4e0b": 1, "\u5c31\u522b": 1, "\u63d0\u9ad8": 1, "\u611f\u5230": 3, "\u6cd5\u8bed": 1, "\u627e\u5230": 1, "\u6696\u548c": 1, "\u653e": 3, "\u4e0d": 23, "\u5df2": 1, "\u4e00\u5ea7": 1, "\u6073\u8bf7": 1, "\u770b\u5230": 3, "\u90a3\u4e48": 3, "\u9700\u8981": 2, "\u53f8": 1, "\u56de\u8986": 2, "\u559c\u6b61": 6, "\u6bba": 1, "\u6ed1\u51b0": 1, "\u7a7f\u9488": 1, "\u4e00\u573a": 1, "\u4f26\u6566": 2, "\u672c\u66f8": 1, "\u5f88\u5feb": 3, "\u4e24\u4e2a": 1, "\u4e0b\u96e8": 5, "\u518d": 2, "\u7121\u7406": 1, "\u6ca1\u6cd5": 1, "\u4efb\u4f55": 4, "\u8bfb": 1, "\u8272": 1, "\u65e0\u6cd5": 3, "\u5011": 1, "\u4ec0\u9ebc": 2, "\u4e70": 4, "\u653e\u5728": 1, "\u8d70": 2, "\u4e00\u4e2a": 5, "\u5fc3\u5730": 1, "\u9ec4\u8272": 1, "\u505a\u4e0d\u4e86": 1, "\u7559\u5728": 1, "\u8fdf\u5230": 1, "\u6b7b": 4, "\u611b": 5, "3": 1, "\u4e00\u4e1d": 1, "\u9593": 1, "\u4e0d\u5f97\u4e0d": 1, "\u5fc5\u987b": 2, "\u5f97\u5230": 2, "\u7686": 1, "\u8868\u73fe": 1, "\u5f97\u5c11": 1, "\u6ca1": 7, "\u8fd9\u4e2a": 5, "\u4e2a": 5, "\u5065\u5eb7": 1, "\u5e0c\u671b": 1, "\u770b\u770b": 1, "\u812b": 1, "\u5efa\u8b70": 1, "\u70b9\u706b": 1, "\u6642\u5019": 1, "\u771f\u7684": 1, "\u6c14\u5019": 1, "\u5bb9\u6613": 1, "\u529e\u6cd5": 3, "\u4e0b\u8457": 4, "\u800c\u662f": 4, "\u51c6\u5907": 1, "\u770b": 2, "\u6211\u4eec": 2, "\u7e7c\u7e8c": 2, "\u8a18\u5f97": 1, "\u6253\u96fb\u8a71": 1, "\u54ed": 5, "\u9ebb\u7169": 1, "\u684c\u5b50": 1, "\u624d\u80fd": 1, "\u9084": 2, "\u53ea\u662f": 1, "\u8cb7": 2, "\u4e0b\u8dcc": 1, "\u62bd": 1, "\u52a0\u52b2": 1, "\u75be\u75c5": 1, "\u8ddf\u8457": 3, "\u8d76\u4e0a": 3, "\u5c31\u662f": 5, "\u4e00\u8f86": 2, "\u807d\u5230": 1, "\u4ec0\u4e48": 4, "\u8b80\u9ede": 2, "\u7279\u50f9": 1, "\u8f15": 2, "\u4e5f": 7, "\u77ee\u5c0f": 1, "\u6b3a\u9a19": 1, "\u9727\u805e": 1, "\u6ca1\u770b": 2, "\u65bc": 3, "\u5f85": 3, "\u6210": 2, "\u904e": 4, "\u6c92": 3, "\u5f8c": 2, "\u5c31": 15, "\u559c\u6b22": 9, "\u62ff": 2, "\u5c0f": 2, "\u6703": 10, "\u4e70\u8f86": 1, "\u932f": 2, "\u5f88\u591a": 2, "\u9664\u4e86": 1, "\u809a\u5b50\u997f": 1, "\u4e4b": 1, "\u4e0d\u5feb": 2, "\u4e00\u76f4": 1, "\u56de\u5e94": 1, "\u4f86": 4, "\u958b\u59cb": 2, "\u63a5": 1, "\u5bc4\u7ed9": 1, "\u975e\u5e38": 4, "\u89c1": 1, "\u4e3a\u4ec0\u4e48": 1, "\u63a5\u4f4f": 1, "\u5b9e\u5728": 1, "\u540c\u610f": 1, "\u4f4f": 1, "\u5bc4": 1, "\u9000\u4f11": 1, "\u5927\u8863": 1, "\u4e0d\u597d": 3, "\u5fd8": 2, "\u53bb": 9, "\u65f6\u5019": 1, "\u7167\u987e": 1, "\u9019\u4efd": 1, "\u4e0b\u624b": 1, "\u50cf": 1, "\u4e45": 1, "\u501f\u7ed9": 2, "\u4e0a\u73ed": 2, "\u7761\u8457": 1, "\u4e00\u500b": 4, "\u600e\u9ebc": 1, "\u8d77\u5e8a": 1, "\u6253\u5f00": 1, "\u559c\u611b": 1, "\u754f\u61fc": 1, "\u66f4\u52a0": 1, "\u4e0a": 3, "\u65e9\u70b9": 2, "\u6562": 1, "\u5171\u548c": 1, "\u653e\u677e": 1, "\u544a\u8bc9": 3, "\u90a3\u500b": 1, "\u4e0d\u7ba1": 1, "\u96c7": 1, "\u519c\u573a": 1, "\u6655\u5012": 1, "\u5a74\u513f": 1, "\u8d85\u7d1a": 1, "\u7b11": 2, "\u529e\u516c\u5ba4": 1, "\u5c01": 1, "\u5979": 6, "\u9053\u7406": 1, "\u7559\u4e0b": 1, "\u6ca1\u53bb": 1, "\u4eba": 2, "\u8209\u8d77": 1, "\u4e00\u70b9": 2, "\u5b8c": 1, "\u6b23\u8d4f": 1, "30": 1, "\u770b\u70b9": 2, "\u91cd\u8981": 1, "\u98db": 1, "\u6253": 5, "\u5b83": 2, "\u505c\u4f4f": 2, "\u6708": 1, "\u53e6": 1, "\u60f3\u8981": 2, "\u54ac": 2, "\u5bfb\u6c42": 1, "\u957f": 1, "\u7b14": 1, "\u8a2d\u5b9a": 1, "\u4fdd\u6301": 1, "\u9003\u751f": 1, "\u70b9": 3, "\u559d": 1, "\u8bf4": 5, "\u4e89\u7aef": 1, "\u4e00\u689d": 1, "\u7d42\u8eab": 1, "\u8a72": 1, "\u73a9": 1, "\u5728\u5bb6": 1, "\u5c0f\u5b69\u5b50": 1, "\u8b1b": 2, "\u5403": 1, "\u7a97\u5916": 1, "\u540d\u8bcd": 1, "\u660e\u767d": 1, "\u665a\u4e0a": 1, "\u91ab\u751f": 1, "\u4e00\u8d77": 2, "\u4e0a\u5e8a": 1, "\u767b\u4e0a": 1, "\u71d2\u6bc0": 1, "\u6e96": 1, "\u8d5e\u6210": 2, "\u5973\u4eba": 1, "\u7d50\u5a5a": 1, "\u5ef6\u8fdf": 1, "\u5371\u9669": 1, "\u81ea\u6bba": 1, "\u5b66": 1, "\u7f1d\u7eab": 1, "\u6eff": 1, "\u4e0a\u706b": 1, "\u7ea0\u6b63": 1, "\u5fc5\u9700": 1, "\u4e0d\u7528": 2, "\u4e00\u628a": 1, "\u51b0\u4e0a": 1, "\u6ed1\u5012": 1, "\u6478": 1, "\u5de5\u4f5c": 2, "\u71b1": 1, "\u5e6b": 5, "\u770b\u8d77\u6765": 1, "\u7761": 1, "\u65e9\u996d": 1, "\u6446\u8131": 1, "\u5176\u4ed6\u4eba": 3, "\u53d4\u53d4": 1, "\u6b63\u5728": 2, "\u5df2\u7ecf": 1, "\u62d2\u7edd": 1, "\u90ae\u5c40": 1, "\u96be\u4ee5": 2, "\u7b80\u964b": 1, "\u542c": 2, "\u7167\u9867": 1, "\u5b89\u5168": 1, "\u5bf9": 1, "\u4ee3\u8868": 1, "\u90a3\u68df": 1, "\u7121\u6cd5": 2, "\u66f4": 1, "\u751f\u6d3b": 1, "\u624d": 3, "\u8fd8": 2, "\u7ad9": 1, "\u901a\u8fc7": 1, "\u5c04": 1, "\u591a": 1, "\u65e0\u7528\u8bba": 1, "\u7740": 2, "\u4e0a\u5e8a\u7761\u89c9": 1, "\u96e2\u958b": 1, "\"": 2, "\u6709\u70b9": 1, "\u8b1d\u8b1d": 3, "\u600e\u4e48": 1, "\u5acc\u897f": 1, "\u770b\u671b": 1, "\u8863\u670d": 1, "\u907f\u5f00": 1, "\u7235\u58eb": 1, "\u5760\u6bc1": 1, "\u8001": 1, "\u6700\u5feb": 1, "\u4e00\u9ede": 1, "\u65c5\u884c": 1, "\u65b0": 3, "\u5f39\u94a2\u7434": 1, "\u88ab": 2, "\u51fa\u53bb": 1, "\u9752\u7b4b": 1, "\u7761\u4e0b\u53bb": 1, "\u626d\u52a8": 1, "\u8cb4": 1, "\u8fd4\u56de": 1, "\u51fa\u9580": 1, "\u4e00\u4f1a": 1, "\u5fc5\u9808": 1, "\u76f8\u4fe1": 1, "\u6765\u81ea": 1, "\u5931\u8d25": 2, "\u54b8": 1, "\u5141\u8bb8": 1, "\u4e60\u4fd7": 1, "\u9b06": 1, "\u958b\u69cd": 1, "\u4e00\u679d": 1, "\u4e0d\u60f3": 2, "\u4e00\u7ad9": 1, "\u7531": 1, "\u51fa\u5dee": 1, "\u81ea": 1, "\u6c23": 1, "\u60ca\u5446": 1, "\u843d\u5411": 1, "\u770b\u8457": 1, "\u5f00\u59cb": 2, "\u7eca\u5012": 1, "\u706b\u8f66": 1, "\u7562\u696d": 1, "\u9032\u884c": 1, "\u62ff\u5230": 1, "\u67d4\u987a": 1, "\u670b\u53cb": 1, "\u4e00\u5206": 1, "\u623f\u5b50": 1, "\u8ba8\u538c": 1, "\u6240\u8bf4": 2, "\u67d4\u8f6f": 1, "\u9583\u720d": 1, "\u9501\u4e0a": 1, "\u4ea4": 1, "\u9047\u5230": 1, "\u8d76\u4e0d\u4e0a": 1, "\u522b\u5fd8\u4e86": 1, "\u9ad8": 1, "\u53d7\u4f24": 1, "\u201d": 1, "\u56de\u5230": 1, "\u5374": 1, "\u4e00\u6b65": 1, "\u4f11\u770b": 2, "\u6c64\u59c6": 2, "\u56de\u5bb6": 1, "\u65e5\u672c": 1, "\u65e7": 1, "\u6d3e": 1, "\u98fd": 1, "\u7b49\u4e0b": 1, "\u904e\u4e16": 1, "\u75c5\u5012": 1, "\u8b80": 2, "\u75c5": 2, "\u7b2c\u4e00\u73ed": 1, "\u5370\u5ea6": 1, "\u5360\u9886": 1, "\u51fa": 1, "\u5c31\u8981": 1, "\u5713": 1, "\u8fd9\u6837": 1, "\u4e0d\u662f": 2, "\u6216": 1, "\u898b": 1, "\u4ed6\u4eec": 1, "\u6c92\u4e8b": 1, "\u98db\u8d8a": 1, "\u97ff": 1, "\u53c2\u52a0": 1, "\u8fc7": 2, "\u4ece\u672a\u89c1\u8fc7": 1, "\u91cc\u6e38": 1, "\u56f4\u5899": 1, "\u5b8c\u6210": 1, "\u60ca\u8bb6": 1, "\u663e\u5f97": 1, "\u81ea\u5df1": 1, "\u65e0\u8f9c": 1, "\u65c5\u6e38": 1, "\u8fd8\u6709": 1, "\u5446": 2, "\u62d2\u7d55": 1, "\u8ac7\u8ad6": 1, "\u4e00\u58f0": 1, "\u5beb": 1, "\u540d\u5b57": 1, "\u4f55": 1, "\u7cbe\u901a": 1, "\u9580": 1, "\u4e0d\u4fbf": 1, "\u6491\u4e0d\u4f4f": 1, "\u751f\u75c5": 1, "\u767c\u73fe": 1, "\u5bb3\u5230": 1, "\u516c\u4ea4\u8f66": 2, "\u4e00\u4f1a\u513f": 1, "\u75db": 1, "\u5ba4\u5185": 1, "\u4ee5\u4e0a": 1, "\u8b8a\u6210": 1, "\u53d7\u5230": 1, "\u8fd9\u4e48": 1, "\u4e00\u68df": 1, "\u4e00\u7fa4": 1, "\u4f46": 1, "\u767e\u5206\u4e4b\u4e94\u5341": 1, "\u505a\u4f5c": 1, "\u4e0d\u8981": 1, "\u5f88\u5c11": 1, "\u5de6": 1, "\u4e94\u6708": 1, "\u6d3b\u8fc7": 1, "\u6709\u6240": 1, "\u8f66": 1, "\u8fdb\u6b65": 1, "\u51fa\u6765": 1, "\u6bcf\u500b": 1, "\u96f6": 1, "\u521a\u56de\u5230": 1, "\u9019\u4ef6": 1, "\u53ea\u597d": 1, "\u4e00\u6837": 1, "\u8acb": 1, "\u4e0d\u898b": 1, "\u96fb\u8a71": 1, "\u5df2\u7d93": 1, "\u60f3\u8d77": 2, "\u5939": 1, "\u6eff\u70ba": 1, "\u603b\u662f": 1, "\u9396\u9580": 1, "\u53d1\u75af": 1, "\u6212\u6389": 1, "\u79f0": 1, "\u95dc\u7bc0": 1, "\u50be\u76c6": 1, "\u56de\u4f86": 1, "\u7ec4\u6210": 1, "\u70ba": 1, "\u5feb": 1, "\u5173\u6389": 1, "\u5bb6\u91cc": 1, "\u683c\u9675\u862d": 1, "\u9519": 1, "\u4e0d\u591f": 1, "\u7ea2": 1, "\u8fa3": 1, "\u5750\u8f66\u53bb": 1, "\u672c": 1, "\u4e00": 1, "\u6563\u6b65": 1, "\u4ee5": 1, "\u767d\u8cbb": 1, "\u4e2d\u65ec": 1, "\u9ad8\u8208": 1, "\u8b19\u865b": 1, "\u8d8a\u6765\u8d8a": 1, "\u5bb6\u4eba": 1, "\u4e00\u6761": 1, "\u65f6\u5149": 1, "\u8d8a": 1, "\u8003\u4e0a": 1, "\u5f80\u5e38": 1, "\u904e\u4f86": 1, "\u8a8d\u771f": 1, "\u4ece\u6765\u4e0d": 1, "\u90a3\u4e2a": 1, "\u7eb8\u677f\u7bb1": 1, "\u4e8b": 1, "\u60f3\u6765": 1, "\u7537\u4eba": 1, "\u5f97\u8d77": 1, "\u8d5e\u540c": 1, "\u4e22": 1, "\u4e0a\u6620": 1, "\u739b\u4e3d": 1, "\u91ce\u9910": 1, "\u611f\u5192": 1, "\u505a\u51fa": 1, "\u9072": 1, "\u53d1\u81ea\u5185\u5fc3": 1, "\u7acb\u5373": 1, "\uff02": 1, "\u5b78\u751f": 1, "\u5b78\u7fd2": 1, "\u5fc5\u8981": 1, "\u958b": 1}, "ties": {"\u8fd9": 1, "\u5f3a\u5927": 1, "\u8d38\u6613": 1, "\u5173\u7cfb": 1}, "two": {"\u4e24\u4e2a": 18, "\u5169\u500b": 25, "\u800c\u4e14": 1, "\u5169": 6, "\u4f60\u4eec": 4, "\u8981": 1, "\u61c9\u8a72": 1, "\u5167": 1, "": 1}, "nations": {"\u56fd\u5bb6": 2, "\u73b0\u5df2": 1, "\u8bb8\u591a": 1, "\u901a\u7528": 1}, "have": {"\u6709": 265, "\u4f60": 3, "\u5fc5\u9808": 32, "\u5fc5\u987b": 9, "\u6709\u65f6\u5019": 1, "\u5f97": 20, "": 15, "\u5df2\u7d93": 3, "\u6211": 2, "\u4e0d\u5fc5": 1, "\u6ca1": 2, "\u4f46": 2, "\u6ca1\u6709": 1, "\u5047\u5982": 1}, "Excuse": {"\u4e0d\u597d\u610f\u601d": 2, "\u5c0d": 3, "\u4e0d\u8d77": 3, ",": 1, "\u5bf9\u4e0d\u8d77": 2, "": 2, "\u8bf7\u95ee": 2, "\u4e0b": 1, "\u8fd9\u4ef6": 1, "\u62b1\u6b49": 1}, ",": {",": 777, "\u662f": 2, "\"": 1, "\u6ca1": 1, "\u8aaa": 1, "": 6, "\u7684": 2, "\u4f46": 2, "\u4f1a": 1, "\u5c31": 1, "\u5973\u5b69": 1, "\u6709\u70b9": 1, "\u4efb": 1, "\u61c9\u8a72": 1, "\u51fa\u6765": 1, "\u201c": 1, "\u559d\u9152": 1, "\u53ea": 1, "\u5176\u4ed6": 1, "\u4e5f": 1, "\u4e0d\u89c1": 1, "\u5c48\u670d": 1, "\u4e00\u5e74": 1, "\u79f0\u4e4b\u4e3a": 1, "\u5148\u751f": 1, "\u673a\u573a": 1, "\u5e38\u5e38": 1, "\u4f60\u5011": 1, "\u771f\u8bda": 1}, "I": {"": 304, "\u6211": 5204, "\u5b83": 1, "\u60f3\u8d77": 1, "\u201d": 4, "\u4e0d": 2, "\u5c31\u662f": 1, ",": 1, "\u4f46": 3, "\u8c22\u8c22": 2, "\u6c99\u54d1": 1, "\u4e5f": 1, "\u9047\u5230": 1, "\u8fd9": 1, "\u4f1a": 2, "\u4f60": 6, "\u5c31": 2, "\u60a8": 1, "\u5c31\u8981": 1, "\u90fd": 2, "\u5979": 2, "\u627e": 1, "\u672c\u4e66": 2, "\u80fd\u591f": 1, "\u8db3\u4ee5": 1, "\"": 1, "\u5e76": 1, "\u53bb": 1, "\u4ed6": 1, "\u505a": 1, "\u5c06": 1, "\u201c": 1, "\u4e0d\u89c1": 1, "\u4e0d\u662f": 1, "\u4f46\u662f": 1, "\u5176\u4ed6": 1, "\u8bb0\u5f97": 1, "\u5728": 1, "\u4fee\u597d": 1, "\u6703": 1, "\u80fd": 1, ".": 1}, "lost": {"": 4, "\u6211": 1, "\u4e86": 50, "\u4e22": 13, "\u8ff7\u8def": 10, "\u5f04": 9, "\u4e1f\u4e86": 10, "\u8ff7\u5931": 2, "\u5931\u53bb": 11, "\u5931\u6557": 1, "\u5f00\u59cb": 1, "\u8f93": 1, "\u5d29\u76d8": 1, "\u4e2d": 1, "\u628a": 4, "\u907a\u5931": 1, "\u6211\u5011": 1, "\u800c": 1, "\u6211\u4eec": 1, "\u4f1e": 1, "\u592a\u591a": 1, "\u53d1\u73b0\u81ea\u5df1": 1, "\u56e0\u70ba": 1, "\u5979": 1, "\u7121\u6cd5": 1, "\u5b83": 1}, "You": {"\u4f60": 773, "": 30, "\u53ef\u4ee5": 4, "\u60a8": 9, "\u6211": 1, "\u51e0\u4e4e": 1, "\u6c92": 1, "\u61c9\u8a72": 1, "\u4e0d\u5fc5": 3}, "seem": {"\u4f3c\u4e4e": 7, "\u5176\u4e2d": 1, "\u770b\u8d77\u6765": 6, "\u50cf": 1, "\u770b\u4f86": 5, "\u770b\u4e0a\u53bb": 1, "\u4e0d\u592a\u597d": 1, "\u770b\u6765": 1, "\u597d\u50cf": 1}, "prejudiced": {"\u5c0d": 1, "\u81ea": 1, "\u570b\u5916": 1, "\u6709": 1, "\u504f\u898b": 1}, "come": {"\u4f86": 60, "\u6765": 38, "\u6c92\u4f86": 3, "\u8bf7\u6765": 1, "\u5427": 2, "\u4ed6": 2, "\u5e72\u561b": 3, "\u9032\u4f86": 5, "\u8fdb\u6765": 1, "": 1, "\u5c31": 1, "\u9a6c\u4e0a": 1, "\u8fc7\u6765": 1, "\u6703": 3, "\u4f60": 1, "\u9019\u88e1": 1, "\u4e3a\u4ec0\u4e48": 1, "\u4f1a\u6765": 1, "\u53bb": 1}, "ideas": {"\u7684": 3, "\u60f3\u6cd5": 4, "\u90a3\u9ebc": 1, "\u4e3b\u610f": 1, "\u6709\u7740": 1, "\u5947\u5999": 1}, "you": {"\u4f60": 2412, "\u60a8": 66, "": 88, "\u4ed6": 2, "\u6211": 14, "\u4f60\u4eec": 4, "\u53ea": 1, "\u662f": 1, "\u65e9\u9ede": 2, "\u60f3": 2, "\u4f1a": 3, "\u6703": 4, "\u6c38\u9060": 1, "\u767c\u751f": 1, "\u4f60\u5bb6": 1, "\u9700\u8981": 1, "\u4f4f": 1, "\u6765": 1, "\u94b1": 1, "\u5de5\u4f5c": 1, "\u613f\u610f": 1, "\uff1f": 2, "\u624d": 1, "\u51fa\u6765": 1, "\u4e0d": 3, "\u4e0d\u80fd": 4, "\u4f46": 1, "\u6ca1\u6cd5": 1, "\u5c31": 2, ",": 1, "\u6ca1\u6709": 1, "\u69cd": 1, "\u4e0d\u4f1a": 1, "\u8bf7": 1, "\u7684": 1, "\u53ef\u4ee5": 1, "\u524d\u4e9b\u65f6": 1, "\u6b63\u5728": 1, "\u592a": 1, "\u65f6\u5019": 1, "\u65e0\u6cd5": 1}, "know": {"\u77e5\u9053": 350, "\u4f46": 2, "\u4e86\u89e3": 3, "\u4e0d": 4, "\u8ba4\u8bc6": 11, "\u8b93": 1, "\u8a8d\u8b58": 8, "\u5374": 1, "\u6211": 3, "\u4e00\u65e0\u6240\u77e5": 1, "\u4e5f": 2, "\u8ba4\u4e3a": 1, "\u53ea\u662f": 1, "\u8ba9": 2, "\u7adf\u7136": 1, "\u60f3": 1, "\u4ed6": 1, "\u90fd": 1, "": 1}, "happened": {"\u53d1\u751f": 16, "\u4e86": 21, "\u4e8b\u60c5": 7, "\u600e\u4e48": 1, "\u767c\u751f": 16, "\u4e8b": 14, "\u4ec0\u9ebc": 2, "\u6709\u6ca1\u6709": 1, "\u51fa": 1, "\u6070\u5de7": 2, "": 1, "\u8fd9\u6b21": 1, "\u597d\u50cf": 1, "\u4e5f": 1}, "what": {"\u4ec0\u4e48": 78, "\u4ec0\u9ebc": 48, "\u8a72": 9, "\u8be5": 5, "\u505a": 2, "\u4e8b": 9, "\u77e5\u9053": 5, "\u5b83": 2, "\u9019": 1, "\u751a\u9ebc": 17, "\u8bb0\u5f97": 1, ",": 1, "\u660e\u5929": 1, "\u6211\u5011": 1, "\u600e\u9ebc": 2, "\u5bb6\u4f19": 1, "\u6240": 2, "\u5e94\u8be5": 1, "\u8fa6": 1, "\u60f3": 1, "\u5728": 2, "\u5730\u5740": 2, "\u53d1\u751f": 1, "\u5c31\u662f": 2, "\u4f1a": 1, "\u627e\u5230": 1, "\u6b63\u5728": 1, "\u767c\u751f": 1, "\u8981": 1, "\u662f": 1, "": 1}, "Do": {"\u5417": 152, "\u4e0d\u8981": 93, "\u55ce": 169, "\u5225": 18, "\u522b": 11, "\u6709": 5, "\u8b1b": 1, "\u4f60\u5011": 1, "\u4ec0\u4e48": 2, "": 1, "\u4f60": 3}, "?": {"\uff1f": 2307, "\u505a": 4, "?": 293, "\u662f": 18, "\u8981": 1, "\u600e\u9ebc": 2, "\u559c\u6b22": 2, "\u4e0d\u662f": 69, "\u6253\u7535\u8bdd": 1, "\u5417": 32, "": 72, "\u6c64\u59c6": 1, "\u80fd": 1, "\u5e2e\u5fd9": 1, "\u55ce": 27, "\u4ec0\u4e48": 7, "\u8fd8\u662f": 3, "\u57f7\u7167": 1, "\u7eb8": 2, "\u7684": 5, "\u6ca1\u6709": 1, "\u82f1\u8a9e": 3, "\u53ef\u4ee5": 1, "\u5f00\u7a97": 1, "\u597d": 3, "\u5bf9": 2, "\u8b1b": 2, "\u884c": 1, "\u706f": 1, "\u5173\u6389": 1, "\u6211": 3, "\u53bb": 2, "\u6e38\u6cf3": 2, "\u6c92\u6709": 1, "\u4e0d\u4f1a": 1, "\u591a\u5c11": 3, "\u60f3\u8981": 1, "\u540d\u5b57": 1, "\u600e\u4e48": 1, "\u771f\u7684": 1, "\u8a71": 1, "\u8fc7": 1, "\u4ed6": 1, "\u53d1\u751f": 1, "\u53e4\u5178": 1, "\u4e00\u904d": 1, "\u5e79": 1, "\u4ec0\u9ebc": 1, "\u770b": 1, "\u4f60": 2, "\u5403\u665a\u996d": 1, "\u5462": 1, "\u770b\u5230": 1, "\u5728": 2, "\u6212": 1, "\u884c\u674e": 1, "\u610f\u89c1": 1, "\u716e": 1, "\u751a": 1, "\u4e50\u5668": 2, "\u4eca\u665a": 1, "\u6709\u7a7a": 1, "\u90a3\u4e48": 1, "\u5c0d": 1, "\u54ea\u4e2a": 1, "\u60f3": 1, "\u804a\u5929": 1, "\u4e86": 4, "\u73b0\u5728": 1, "\u8fd8\u597d": 1, "\u4e66": 1, "\u4e1c\u897f": 1, "\u8865\u5145": 1, ",": 1, "\u7531\u8c01\u6765": 1, "\u4e00\u4e2a": 1, "\u8f9e\u804c": 1}, "Our": {"\u6211\u4eec": 14, "\u7684": 14, "\u6211\u5011": 20}, "supplies": {"\u4f9b\u7ed9": 1, "\u8981\u7528": 1, "\u5b8c": 1, "\u8865\u7ed9": 1}, "out": {"\u4e86": 44, "\u51fa\u53bb": 42, "\u5916\u51fa": 7, "\u51fa\u9580": 5, "\u6211": 1, "\u6211\u4eec": 1, "": 1, "\u4e0d\u80fd": 1, "\u96e2\u958b": 1, "\u51fa\u4f86": 2, "\u4ece": 3, "\u51fa\u6765": 2, "\u624d": 1, "\u5c31": 2, "\u4f46\u5f53": 1, "\u51fa\u95e8": 2, "\u4ed6": 1, "\u5f9e": 1, "\u628a": 1}, "fed": {"\u53d7\u591f\u4e86": 1, "\u53d7\u591f": 1, "\u6bcf\u4e2a": 1, "\u508d\u665a": 1, "\u4f1a": 1, "\u5582": 2, "\u72d7\u72d7": 1, "\u4eec": 1, "\u804a\u5929": 1}, "this": {"\u8fd9": 113, "\u8fd9\u4e8b": 3, "\u8fd9\u4e2a": 85, "\u9019\u500b": 109, "\u9019": 111, "": 5, "\u662f": 8, "\u524d": 1, "\u6765": 1, "\u6211": 1, "\u8fd9\u6837": 1}, "weather": {"\u5929\u6c14": 27, "\u5f88\u96be\u8bf4": 1, "\u600e\u6837": 1, "\u600e\u4e48\u6837": 7, "\u5929\u6c23": 15, "\u4eca\u5929\u5929\u6c14": 3, "\u4ec0\u4e48": 1, "\u9047\u5230": 1, "\uff1f": 1, "\u600e\u9ebc\u6a23": 3, "\u6c14\u5019": 2, "\u8ba8\u8bba": 1}, "This": {"\u9019": 137, "\u8fd9": 141, "\u8fd9\u4e2a": 8, "": 2, "\u662f": 13, "\u9019\u500b": 6, "\u5c31\u662f": 1}, "is": {"\u662f": 1049, "\u7684": 1078, "\u5f88": 7, "": 31, "\u6700": 1, "\u5f88\u96be": 1, "\u559c\u6b22": 1, ",": 1, "\u90a3": 2, "\u8fdb": 1, "\u5979": 4, "\u739b\u4e3d": 1, "\u90a3\u6761": 1, "\u9019": 2, "\u6709": 2, "\u53ef\u662f": 1, "\u8a72": 2, "\u662f\u56e0\u4e3a": 1, "\u800c\u662f": 1, "\u53e6": 3, "\u7b97\u662f": 1, "\u4f46": 2, "\u8a9e\u8005": 1, "\u76f8\u7576": 1, "\u7f8e\u4e2d\u4e0d\u8db3": 1, "\u4ed6\u4eec": 1, "\u8981": 1, "\u60c5\u7dd2": 1, "\u925b": 1, "\u6211\u4f1a": 1, "\"": 1, "\u4eba": 1, "\u4eec": 1, "\u201c": 1, "\u800c": 2, "\u5b9e\u8df5": 1, "\u8bf4": 1, "\u4e0b": 1, "\u4ed6": 1, "\u4e00\u4f4d": 1, "\u7fd2\u6163": 1, "\u98df\u7269": 1, "\u8001\u9f20": 1, "\u4e0d": 1, "\u80fd": 1, "\u5c31\u662f": 1, "\u4e0d\u662f": 1, "\u8aaa": 1, "\u8fd9": 1, "\u4e86": 1, "\u4f1a": 1, "\u6c34": 1, "\u77e5\u9053": 1, "\u5173\u4e8e": 1, "\u9644\u8fd1": 1, "\u53ea\u8981": 1, "\u8bf4\u660e": 1, "\uff01": 1}, "cheapest": {"\u93ae": 2, "\u4e0a": 2, "\u6700": 2, "\u4fbf\u5b9c": 2, "\u5546\u5e97": 1}, "store": {"\u5546\u5e97": 13, "\u9019\u5bb6": 3, "\u8fd9\u95f4": 1, "\u4e0d\u8fdc": 2, "\u5e97\u91cc": 1, "\u4e00\u5bb6": 1, "\u91cc": 1, "\u5e97": 3, "\u6b63": 1, "\u5f00\u5f20": 1}, "decided": {"\u6c7a\u5b9a": 15, "\u51b3\u5b9a": 11, "\u6c7a": 1, "\u5b9a\u4e0b": 1, "\u5c0d\u4e86": 1, "\u597d": 1, "\u7684\u8bdd": 1, "\u7b2c\u4e00": 1, "\u65f6\u95f4": 1, "\u544a\u8bc9": 1, "\u4e0d\u5b78\u6cd5": 1, "\u966a": 1, "": 2}, "every": {"\u6bcf\u5929": 68, "\u90fd": 55, "": 2, "\u6bcf": 16, "\u7684": 1, "\u800c\u4e14": 1}, "study": {"\u7528\u529f": 3, "\u8b80\u66f8": 9, "\u5b78\u7fd2": 3, "\u8b80": 2, "\u66f8": 3, "\u5e76": 1, "\u52aa\u529b\u5b66\u4e60": 1, "\u5c3d\u7ba1": 1, "\u9700\u8981": 1, "\u8bfb\u4e66": 3, "\u60f3\u5b78\u65e5\u8a9e": 1, "\u8fc7": 1, "\u5b66\u4e60": 8, "\u8be5": 1, "\u5b66": 4, "\u5c06": 1, "\u5c31": 1, "\u4e0d\u5fc5": 1, "\u5728": 1, "\u56de": 1, "\u6211": 1}, "We": {"\u6211\u5011": 372, "\u6211\u4eec": 277, "": 13, "\u4e0d": 1, "Tom": 1, "\u5fc5\u987b": 1, "\u4e09\u5e74": 1, "\u5f8c": 1}, "care": {"\u4e0d\u5728\u4e4e": 6, "\u7167\u9867": 13, "\u7167\u987e": 7, "\u81ea\u5df1": 4, "\u5728\u610f": 1, "\u597d": 1, "\u5f00\u59cb": 1, "": 1, "\u5979": 1, "\u65e0\u6240\u8c13": 1, "\u56de\u5bb6": 1, "\u5173\u5fc3": 1, "\u95dc\u5fc3": 2, "\u95dc\u7167": 1, "\u53ea\u8981": 1, "\u5c31\u884c\u4e86": 1, "\u5173\u6ce8": 1, "\u5728\u4e4e": 1, "\u600e\u9ebc": 1, "\u89e3\u51b3": 1}, "he": {"\u4ed6": 322, "": 58, "\u6ce8\u610f": 1, "\u4e8b\u5be6\u4e0a": 1, "\u63a5\u624b": 1, ",": 5, "\u7684": 1, "\u610f\u8bc6": 1, "\u60f3\u8981": 2, "\u65f6": 1, "\u51e0\u4e4e": 1, "\u6b7b": 1, "\u56e0\u4e3a": 1}, "do": {"\u505a": 307, "\u4ed6\u4eec": 1, "\u53bb": 11, "": 3, "\u5c31": 3, "\u4e00\u4e0b": 1, "\u4e0d": 8, "\u4f60": 6, "\u505a\u5230": 2, "\u8981": 3, "\u4f1a": 3, "\u4ec0\u9ebc": 1, "\u89c9\u5f97": 1, "\u6211": 6, "\u4e8b": 1, "\u6ca1\u4ec0\u4e48": 1, "\u7528": 1, "\u5fc5\u987b": 1, "\u8077\u696d": 1, "\u4ec0\u4e48": 1, "\u5730": 1, "\u4e0d\u60f3": 2, "\u4fbf": 1, "\u4ed6": 1}, "your": {"\u4f60": 371, "\u958b": 1, "\u4e86": 1, "\u7684": 445, "\u60a8": 29, "\u6709": 1, "\u53ef\u4ee5": 1, "\u770b\u770b": 1, "": 13, "\u56de\u5230": 1, "\u5c31\u662f": 1, "\u4e2a": 1, "\u8aaa": 1, "\u627f\u53d7": 1, "\u4e0d\u4e86": 1, "\u4e0d\u662f": 1, "\u4e00\u4e0b": 1, "\u4f60\u5011": 1, "\u4e3e\u8d77": 1, "\u4e0d\u80fd": 1, "\u63a5\u53d7": 1, "\u5168\u90fd": 1, "\u662f": 1, "\u906e\u4f4f": 1, "\u628a": 1}, "purpose": {"\u6b64\u884c": 2, "\u76ee\u7684": 7, "\u6545\u610f": 5, "\u9019\u500b": 1, "": 1, "\u70ba\u4e86": 2, "\u65e5\u6587": 1, "\u4f86\u5230": 1, "\u662f": 2, "\u5f04\u58de": 1}, "of": {"\u7684": 587, "\u6211": 2, "\u5230": 1, "\u7a2e": 1, "\u5ba1\u89c6": 1, "6000": 1, "": 7, "\u5f97": 1, "\u65bc": 1, "\u8054\u7cfb": 1, "\u628a": 1, "\u6709": 3, "\u4ec0\u4e48": 1, "\u4f46": 1, "\u662f": 2, "\u61c2": 1, "\u80af\u5854\u57fa\u5dde": 1, "\u5b8c\u5168": 1, "\u5bf9": 1, "\u4e0d\u95dc": 1, "\u82f1\u8a9e": 1, "\u90a3\u4e2a": 1, "\u4eba": 1, "\u5c06\u8981": 1, "\u4e8b\u60c5": 1, "\u9019\u500b": 1, "\u624d": 1, "\u4e2d": 1, "\u66f4": 1, "\u4ed6": 1}, "What": {"\u4ec0\u9ebc": 133, "\u8be5": 1, "\u4ec0\u4e48": 161, "\u60f3": 1, "\u751a\u9ebc": 7, "\u5462": 14, "\u554a": 7, "\u5982\u4f55": 1, "\u600e\u4e48": 2, "\u505a": 1, "\u5e72\u4ec0\u4e48": 1, "": 2, "\u4f60": 1, "\u4f1a": 2, "\u5728": 2, "\u600e\u9ebc": 1, "\u5e72\u561b": 2, "\u62e5\u6709": 1}, "school": {"\u5b78\u6821": 45, "\u5b66\u6821": 57, "\u4e0a\u5b66": 18, "\u4e0a": 9, "\u5b78": 12, "\u4e0a\u5b78": 3, "\u4fbf": 1, "\u53bb": 1}, "located": {"\u5750\u843d": 1, "\u65bc": 2, "\u8ddd\u96e2": 1, "\u4e94\u5206": 1, "\u5730\u65b9": 2}, "station": {"\u8eca\u7ad9": 23, "\u5230": 17, "\u8f66\u7ad9": 7, "\u7ad9": 11, "\u706b\u8f66\u7ad9": 8, "\u706b\u8eca": 3, "\u8eca": 3, "\u8d76\u5f80": 1, "": 1}, "'": {"\u6b65\u884c": 2, "\u8eca": 1, "\u8981": 1, "\u82b1": 1}, "minutes": {"\u9418": 16, "\u5341\u5206": 12, "\u5206\u949f": 5, "\u665a": 1, "\u540e": 2, "\u5230": 2, "\u5f8c": 1, "\u96e2\u5bb6": 1, "\u5341\u5206\u949f": 3}, "Speech": {"\u96c4": 1, "\u8faf": 1, "\u5982": 1, "\u9280": 1, "": 1, "\u6c89\u9ed8": 1}, "silence": {"": 1, "\u4e00\u7247": 1, "\u5bc2\u9759\u65e0\u58f0": 1, "\u6c89\u9ed8": 2}, "me": {"\u6211": 931, "": 14, "\u7d66": 12, "\u8ba9": 6, "\u6253": 1, "\u54ac": 1, "\u9e21\u86cb": 1, "\u6c64\u59c6": 1, "\u5bf9": 3, "\u751f\u65e5": 1, "\u82b1": 1, "\u7ed9": 1, "\u8ddf": 1, "\u5c0d": 1, "\u8bf7": 2, "\u964c\u751f\u4eba": 1, "\u5c31": 1, "\u5e6b": 1, "\u4eca\u5929\u4e0b\u5348": 1, "\u6700": 1, "\u544a\u8bc9": 1, "\u8fd9": 1, "\u9084": 1, "\u4ed6": 1, ",": 1}, "aunt": {"\u963f\u59e8": 7, "\u59d1\u59d1": 7, "\u7d66": 7, "\u651d\u5f71": 1, "\u5446": 1}, "sent": {"\u9001": 6, "\u5bc4\u7ed9": 1, "\u5bc4": 2, "\u7d66": 5, "\u628a": 1, "\u8acb\u4f86": 1, "\u9001\u56de": 1, "\u67e5\u67e5": 1}, "a": {"\u4e00\u500b": 83, "\u4e00\u4e2a": 37, "\u6709": 17, "\u4e2a": 46, "\u662f": 32, "\u500b": 12, "": 3, "\u5f88": 1, "\u6211": 2, "\u6703": 2, "\u6c64\u59c6": 1, "\u90a3": 1, "\u4e86": 1, "\u9019": 1}, "birthday": {"\u751f\u65e5": 19, "\u795d": 1, "\u751f\u65e5\u5feb\u4e50": 1, "\u5bb4\u6703": 2, "\u65f6\u5019": 2, "": 2, "\u9001": 2, "\u5230": 1, "\u5929": 1}, "present": {"\u79ae\u7269": 9, "\u5bfb\u627e": 1, "\u793c\u7269": 7, "\u9001\u7ed9": 3, "\u4e00\u4efd": 3, "\u7ed9": 1, "\u8fc7": 1, "\u8f9e\u6389": 1, "\u51fa\u5e2d": 3, "\u4e00\u4ef6": 1, "\u73b0\u5728": 1, "\u6b63\u662f": 1, "\u4e34\u522b": 1}, "inspiration": {"\u6500\u767b": 1, "": 1, "\u8a69": 1}, "Fuji": {"\u5bcc\u58eb\u5c71": 16, "\u4e0a\u500b\u6708": 1, "": 1}, "After": {"\u5f8c": 15, "\u904e": 3, "\u8fc7": 1, "\u4e24\u5929": 1, "\u5c31": 1, "\u53d1\u5b8c": 1, "": 1, "\u7136": 1, "\u5598": 1, ",": 1, "\u5b8c": 2, "\u6211": 1}, "got": {"\u6211": 3, "\u4e86": 119, "": 3, "\u3001": 2, "\u5f97\u5230": 8, "\u53d8": 1, "\u5e36": 1, "\u4e0b": 2, "\u4ed6": 1, "\u5fc5\u9808": 1, "\u4ea4\u901a\u5835\u585e": 1, "\u5011": 1, "\u6709\u4e2a": 1, "\u8fc7": 1, "\u7684": 1, "\u4ee5\u81f3\u4e8e": 1, "\u7cbe\u5fc3": 1, "\u62ff": 1, "\u5230": 1}, "poem": {"\u5f97\u5230": 1, "\u4e86": 1, "\u5199\u8bd7": 1, "\u9019": 1, "\u4e00\u9996": 1, "\u5f88\u68d2": 1, "\u8a69": 1}, "the": {"\u4e00\u9996": 1, "\u4e86": 398, "\u7684": 425, "\u5728": 52, "\u7b2c\u4e09\u4e2a": 1, "": 5, "\u9019\u500b": 13, "\u5c31": 2, "\u6d77\u5578": 1, "\u665a": 1, "\u4ed6": 4, "\u606d\u559c": 1, "\u628a": 16, "\u505c\u6b62": 1, ",": 6, "\u5f00\u59cb": 1, "\u8981": 1, "\u90fd": 1, "\u662f": 4, "\u5979": 4, "\u673a\u573a": 1, "\u4f5c\u5f0a": 1, "\u6c92\u6709": 1, "\u66f4": 2, "\u73b0\u5728": 1, "Mary": 1, "\u516c\u4ea4\u8f66": 1, "\u5306\u5306": 1, "\u9ed1\u4eba": 1, "\u53db\u570b": 1, "\u5f04": 1, "\u51fa\u53d1": 1, "\u72af": 1, "\u6211": 4, "\u4e0a": 2, "\u4e00\u5834": 1, "\u5fd9": 1, "\u5acc\u6771": 1, "\u4f46\u662f": 1, "\u88ab": 1, "\u9b06": 1, "\u9519\u8fc7": 2, "\u4f1a": 1, "\u5382": 1, "\u4e00\u5929": 1, "\u623f\u5b50": 1, "\u5f97": 1, "\u8fd8\u662f": 1, "\u53ef\u80fd": 1, "\u5df4\u58eb": 1, "\u4e0d": 1, "\u96c6\u4e2d\u7cbe\u529b": 1, "\u9a91\u8f66\u53bb": 1, "\u961f\u4f0d": 1, "\u6ca1\u6709": 1, "\u53c8": 1, "\u4f60": 1, "\u53bb": 1, "\u6ca1": 1, "\u739b\u4e3d": 1}, "warm": {"\u8fd9\u4e2a": 1, "\u80fd": 1, "\u4fdd\u6696": 1, "\u6696\u548c": 1, ",": 2, "\u8eab\u4e0a": 1, "\u5c0d": 1, "\u4f86\u8aaa": 1, "": 2, "\u5929\u6c23": 1, "\u5f88": 1, "\u6eab\u6696": 3, "\u71b1": 1}, "Any": {"\u4efb\u4f55": 6, "\u90fd": 4, "\u4e4b\u4e2d": 1, "\u505a\u5230": 2, "\u5c0f\u5b69": 1}, "bed": {"\u5e8a": 7, "\u5e8a\u4e0a": 6, "\u7761": 9, "\u5c31": 4, "\u89ba": 4, "\u6628\u5929": 1, "\u7761\u89ba": 8, "\u4e0a\u5e8a\u7761\u89c9": 1, "\u7761\u89c9": 7, "\u6574\u7406": 1, "\u5e8a\u92ea": 1, "\u5be2": 2, "\u5f35": 1, "\u5367\u5e8a": 1, "\u4f11\u606f": 1, "\u8be5": 2, "\u4e0a\u5e8a": 9, "\u6240\u4ee5": 1, "\u6642\u5019": 1, "\u6211": 1, "\u65e9\u65e9": 1, "": 1, "\u6211\u4eec": 1}, "than": {"\u6bd4": 130, "\u4e0d\u80fd": 1, "\u5f97\u5230": 1, "\u8981": 1, "\u5f97": 3, "": 1, "\u4f46": 1, "\u7537\u751f": 1, "\u65e0\u6cd5": 1}, "no": {"\u6c92\u6709": 42, "\u623f\u95f4": 1, "\u4e0d": 17, "\u6ca1\u6709": 42, "\u6211": 1, "\u6ca1": 12, "": 8, "\u9762": 1, "\u6c92": 5, "\u5b69\u5b50": 1, "\u4e00\u70b9": 1, "\u4e5f": 2, "\u548c": 1, "\u4eba": 1, "\u5979": 1, "\u5c31\u662f": 1}, "better": {"\u597d": 42, "\u6700\u597d": 7, "\u66f4": 1, "\u66f4\u597d": 17, "\u4e0d\u8981": 11, "\u505a\u5f97\u597d": 2, "\u6bd4\u8f03": 1, "\u80fd": 1, "\u505a": 1, "\u7559\u5728": 1, "\u9019\u88e1": 1, "\u5f97": 1, "\u70b9": 1, "\u52dd": 1, "\u90a3": 1, "\u6bd4": 1}, "bridges": {"\u90a3\u91cc": 1, "\u4e24\u5ea7": 1, "\u6865": 1}, "There": {"\u6709": 127, "\u91cc": 6, "\u6709\u4e2a": 4, "\u6c92\u6709": 6, "\u4eba": 1}, "from": {"\u5f9e": 51, "\u4ece": 54, "\u6765": 7, "\u4f86": 5, "\u4ed6": 1, "\u81ea": 1, "\u7531": 1, "\u6536\u5230": 5, "\u4fe1": 2, "\u8eab\u4e0a": 1, "\u662f\u4ece": 1}, "Malaysia": {"\u99ac\u4f86\u897f\u4e9e": 1, "\u5f97\u5230": 1}, "materials": {"\u6750\u6599": 3, "\u628a": 1, "\u653e\u5728": 1}, "She": {"\u5979": 990, "": 23, "\u540c\u610f": 1, "\u800c\u662f": 1, "\u5f04": 1}, "asked": {"\u554f": 20, "\u53eb": 3, "\u95ee": 19, "\u8981\u6c42": 13, "\u8acb": 9, "\u5411": 6, "\u6c42\u52a9": 4, "\u6240\u4ee5": 1, "\u4ed6": 1, "": 1, "\u8981": 3}, "question": {"\u4e00\u500b": 10, "\u554f\u984c": 25, "\u95ee\u9898": 19, "\u96e3\u984c": 1, "\u8fd9\u4e2a": 2, "\u6709": 1, "\u89ba": 1}, "proud": {"\u4ee5": 8, "\u70ba": 7, "\u69ae": 4, "\u611f\u5230": 4, "\u9a84\u50b2": 3, "\u9a55\u50b2": 2, "": 1, "\u4e3a": 8, "\u800c": 2, "\u81ea\u8c6a": 2, "\u8363": 1, "\u81ea\u5df1": 1, "\u50b2": 2, "\u5730": 1, "\u8c6a": 1}, "He": {"\u4ed6": 1629, "": 26, "\u50b7": 1}, "told": {"\u544a\u8bc9": 36, "\u544a\u8a34": 31, "\u8bf4": 10, "\u5bf9": 1, "\u8ddf": 4, "\u8aaa": 2, "\u8fc7": 7, "\u61c9\u8a72": 1, "\u7ed9": 1, "\u5c31": 1, "\u544a\u8bc9\u60a8": 1, "\u4e0d\u8981": 1, "\u4f46\u662f": 1, ",": 1, "\u5c0d": 1, "\u6211\u4ed6": 1}, "then": {"\u90a3\u65f6": 4, "\u90a3\u6642\u5019": 1, "\u5c31": 1, "\u90a3\u6642": 5, "\u90a3\u4e2a": 1, "\u65f6\u5019": 1, ",": 2, "\u63a5\u7740": 1, "": 2, "\u5e38": 1, "\u5f53\u65f6": 1, "\u600e\u9ebc": 1, "\u8fa6": 1, "\u5230": 1, "\u90a3": 1}, "busy": {"\u5f88\u5fd9": 13, "\u6b63\u5fd9": 3, "\u8457": 2, "\u5fd9": 40, "\u56e0\u4e3a": 1, "\u603b\u662f": 1, "\u6709\u4e8b": 1, "\u4e0d\u5fd9": 3, "\u5fd9\u788c": 2, "\u60a8": 5, "\uff1f": 1, "\u65bc": 2, "": 6, "\u8fa6\u6cd5": 4, "\u4f60\u5011": 1, "\u7e3d": 1}, "computer": {"\u7535\u8111": 8, "\u96fb\u8166": 11, "\u53f0": 2, "\u4e0a\u6709\u4e00": 1, "\u81fa": 1, "\u96fb": 1, "\u8166": 1, "\u8ba9": 1, "\u4e00\u70b9": 1, "\u4e00\u53f0": 2, "\u4f1a": 2, "\u8ba1\u7b97\u673a": 3, "\u600e\u9ebc": 1, "\u7528": 1, "\u4e70": 1, "\u4eba": 1}, "complex": {"\u4e2a": 1, "\u590d\u6742": 1, "\u4eca\u65e5": 1, "\u8fc5\u606f": 1, "\u842c\u8b8a\u548c": 1, "\u8907": 2, "\u96dc": 2, "\u6709\u591a": 1}, "machine": {"\u673a\u5668": 4, "\u6a5f": 6, "\u53f0": 1, "\u6545\u969c": 1}, "in": {"\u5728": 531, "\u88e1": 46, "\u4ed6": 1, "\u5c31\u662f": 1, "\u8bf4": 1, "\u51fa": 1, "\u6709": 1, "\u4e0a": 2, "\u91cc": 9, "": 8, "\u8fdb\u6765": 1, "\u60b2\u89c0": 1, "\u8bb8\u591a": 1, "\u4ed6\u4eec": 1, "\u6211": 2, "\u4e00\u67b6": 1, "\u542c\u4e0d\u61c2": 1, "\u73fe\u5728": 1, "\u5979": 1, "\u4eba\u4eec": 1}, "situation": {"\u8fd9\u79cd": 1, "\u60c5\u51b5": 6, "\u4e0b": 1, "\u60c5\u6cc1": 5, "\u8d8a\u4f86\u8d8a": 1, "\u4e1d\u6beb": 1, "\u60f3": 2, "\u9084\u58de": 2, "\u8ac7": 2}, "they": {",": 3, "": 7, "\u4ed6\u5011": 29, "\u4ed6\u4eec": 27, "\u5f9e": 1, "\u524d": 1, "\u4e00\u6837": 1, "\u7167": 1, "\u80fd\u6bd4": 1}, "should": {"": 11, "\u8be5": 17, "\u4f60": 4, "\u61c9\u8a72": 56, "\u61c9": 43, "\u8a72": 64, "\u5e94\u8be5": 78, "\u4e0d\u8be5": 8, "\u8981": 1, "\u8ba4\u4e3a": 1, "\u8fc7\u6765": 1, "\u4e0d\u8a72": 4, "\u89ba\u5f97": 1, "\u6211": 1, "\u672c": 1}, "My": {"\u6211": 322, "\u7684": 90, "": 6, "\u4e0d": 1}, "mother": {"\u6bcd\u89aa": 37, "\u5abd\u5abd": 20, "\u5988\u5988": 22, "\u6bcd\u4eb2": 8, "": 1, "\u4f60\u5011": 1, "\u5abd": 2, "\u4f46": 1, "\u5373\u4f7f": 1, "\u7740": 1}, "kitchen": {"\u5eda\u623f": 7, "\u88e1": 5, "\u53a8\u623f": 7, "\u6a13": 1, "\u5230": 1, "\u81ea\u5bb6": 1, "\u88e1\u6709\u4e00": 1, "\u6b63\u5728": 2}, "many": {"\u591a\u5c11": 30, "\u591a": 8, "\u8bb8\u591a": 7, "": 5, "\u5f88\u591a": 32, "\u8a31\u591a": 4, "\u6709": 16, "\u4e0d\u4e86": 1, "\u5e7e\u500b": 1, "\u9605\u8bfb": 2}, "rackets": {"\u652f": 1, "\u7403\u62cd": 2, "\u4e2d": 1, "\u4e00\u652f": 1}, "always": {"\u4e00\u76f4": 24, "\u7e3d": 8, "\u603b\u662f": 26, "\u7e3d\u662f": 44, "\u662f": 6, "\u90fd": 6, "\u6c38\u9060": 2, "": 4}, "meet": {"\u60f3\u898b": 2, "\u78b0\u5934": 1, "\u89c1": 4, "\u89c1\u5230": 1, "\u8ba4\u8bc6": 1, "\u9047\u898b": 3, "\u898b\u5230": 2, "\u8a8d\u8b58": 2, "\u540e\u4f1a\u6709\u671f": 1, "\u5730": 1, "\u898b\u9762": 1, "\u898b": 8, "\u8b93": 1, "\u8ddf": 2, "\u9762": 2, "\u89c1\u9762": 1, "\u5230": 2, "\u518d\u89c1\u9762": 1}, "His": {"\u4ed6": 79, "\u7684": 81, "\u5de6\u8fb9": 1, "\u7b49": 1}, "@-@": {"\u7684": 45, "\u6709\u500b": 1, "\u7d1a": 1, "\u662f": 1, "\u56e0\u70ba": 1, "\u5750\u8f66": 1, ",": 1, "\u4e24\u4e2a": 1, "Tom": 1, "20": 1, "\u5728": 1}, "job": {"\u5de5\u4f5c": 66, "\u5e72": 1, "\u8fd9\u4efd": 7, "\u9069\u5408": 1, "\u505a": 4, "\u9019\u4efd": 7, "\u4ed6": 1, "\u53c8": 1, "\u4efd": 1, "\u5167": 1, "\u4e8b": 1, "\u73b0\u5728": 1}, "sight": {"\u9a7e\u9a76": 1, "\u89c2\u5149": 1, "\u6837\u5b50": 1, ",": 3, "\u770b\u4e0d\u5230": 1, "\u4efb\u4f55": 1, "\u770b\u5230": 1, "\u90a3": 1, "\u4e00\u89c1\u949f\u60c5": 1, "\u77e5\u9053": 1, "\u4ed6": 1, "\u9084\u662f": 1, "\u770b": 1, "\u4e0d\u898b\u76e1\u982d": 1, "\u7537\u4eba": 1}, "bus": {"\u5df4\u58eb": 8, "\u516c\u8eca": 28, "\u4e58": 4, "\u516c\u5171": 5, "\u6c7d\u8eca": 5, "\u642d": 8, "\u4e0a": 1, "\u516c\u4ea4\u8f66": 8, "\u9019\u8f1b": 3, "\u80fd": 2, "\u51c6\u70b9": 1, "\u5230\u8fbe": 1, "": 2, "\u516c\u4ea4": 1, "\u53bb": 1, "\u8d39\u65f6": 1, "\u516c\u8f66": 1, "\u5750": 1, "\u4e58\u8f66": 1, "\u51c6\u65f6": 1, "\u80af\u5b9a": 1, "\u932f": 1, "\u8eca": 1}, "collect": {"\u6536\u96c6": 1}, "stamps": {"\u90f5\u7968": 6, "\u90ae\u7968": 3, "\u4e00\u5bb6": 1, "\u4e70\u5230": 1}, "harbor": {"\u6e2f\u53e3": 2, "\u5167": 1, "\u8a31\u591a": 1, "\u8239": 2}, "That": {"\u90a3": 121, "": 6, "\u8fd9": 25, "\u662f": 12, "\u5c31\u662f": 5, "\u592a\u597d\u4e86": 1}, "hard": {"\u4e0d\u96be": 2, "": 3, "\u52aa\u529b": 21, "\u4ed6\u5011": 1, ",": 2, "\u8f9b\u82e6": 4, "\u96e3": 6, "\u5f88": 9, "\u52aa\u529b\u5b66\u4e60": 2, "\u96be": 6, "\u5730": 1, "\u6765\u8bf4": 2, "\u5979": 1, "\u4ed6": 1, "\u56f0\u96e3": 1, "\u8fd9\u4ef6": 2, "\u4e8b": 2, "\u7528\u529f": 1, "\u8b1b": 1, "\u5594": 1, "\u6c7a\u5b9a": 1}, "objected": {"\u53cd": 2, "\u5c0d": 2, "\u53cd\u5bf9": 1, "\u5728\u5916": 1, "\u53cd\u5c0d": 1, "\u51fa": 1, "\u570b\u7559\u5b78": 1}, "his": {"\u4ed6": 211, "\u7684": 291, "\u662f": 1, "\u53d7\u5230": 1, "\u4e0d\u4f1a": 1, "": 3, "\u4e86": 2, ",": 1, "\u6392\u9063": 1, "\u4e0d": 1, "\u8a18\u5f97": 1, "\u627e": 1, "\u5904\u4e8e": 1}, "paying": {"\u4ed8": 1, "\u5e33": 1, "\u55ae": 1, "\u6ca1": 1, "\u6839\u672c": 1, "\u6c92\u6709": 1, "\u5728": 1, "\u5f00\u5c0f\u5dee": 1}, "pool": {"\u6709\u6743": 1, "\u65c5\u9986": 1, "\u6e38\u6cf3\u6c60": 4, "\u9019\u500b": 1, "\u6c92\u6709": 1, "\u82e5": 1, "\u4ed6\u5011": 1, "\u6cf3\u6c60": 1, "\u8df3\u9032": 1}, "use": {"\u4f7f\u7528": 18, "\u7528": 25, "\u4f86": 1, "\u597d\u597d": 1, "\u200b": 2, "\u7528\u5230": 1, "\u5c31": 1, "\u613f\u610f": 1, "\u4f60": 1, "\u5229\u7528": 2, "\u4ee5\u524d": 1, "\u6c92\u7528": 1}, "homework": {"\u505a": 6, "\u529f\u8bfe": 1, "\u505a\u529f": 3, "\u8ab2": 4, "\u529f\u8ab2": 10, "\u5fd8": 1, "\u4f5c\u4e1a": 7, "\u505a\u4f5c": 2, "\u696d": 3, "\u4f5c\u696d": 16, "\u5bb6\u5ead": 4, "\u505a\u5b8c\u4f5c\u4e1a": 3, "\u56de\u5bb6": 3, "\u529f": 1, "\u8457\u505a": 1, "\u505a\u4f5c\u4e1a": 3, "": 1, "\u6211": 2, "\u5e03\u7f6e": 1, "\u5bb6\u5ead\u4f5c\u4e1a": 1}, "finished": {"\u5b8c": 23, "\u8b80\u5b8c": 3, "\u4e86": 19, "\u5b8c\u6210": 20, "\u9084": 1, "\u9019\u9805": 1, "\u5df2\u7d93": 2, "\u4ee5\u524d": 1, "\u5e7e\u4e4e": 1, "\u7d50\u675f": 2, "\u5feb\u8981": 1, "\u7ed3\u675f": 1, "\u770b\u5b8c": 1, "\u505a\u4e0d\u4e86": 1}, "my": {"\u7684": 522, "\u6211": 315, "\u5f53\u65f6": 1, "\u4e0d\u8be5": 1, "\u4ed6": 1, "\u662f": 3, "\u4e86": 4, "": 13, "\u544a\u8bc9": 1, "\u81ea\u5df1": 2, "\u8fd9": 1, "\u9a91\u8f66\u53bb": 1, "\u6709": 1, "\u628a": 3, "\u6240\u4ee5": 1, "\u624d\u80fd": 1, "\u4e0d\u5230": 1, "\u652f\u6301": 1, "\u90a3": 1, "\u53ef\u4ee5": 1, "\u7528": 1, "\u8ab0": 1, "\u5230": 1, "\u6539\u8b8a": 1}, "after": {"\u540e": 16, "\u7167\u9867": 8, "\u5f8c": 35, "\u554f\u5019": 1, "\u5b8c": 1, "\u4e4b": 1, "\u5728": 10, "\u653e\u5b78": 9, "\u60f3\u8981": 4, "\u653e\u5b66": 3, "\u4e4b\u540e": 1, "\u5929": 1, "\u4ee5\u540e": 1, "\u5e72\u4ec0\u4e48": 1}, "had": {",": 2, "\u5c31": 3, "\u4e86": 67, "\u8b66\u5bdf": 2, "": 2, "\u6709": 33, "\u73a9": 2, "\u958b\u5fc3": 1, "\u5f97": 4, "\u904e": 1, "\u5b83": 1, "\u65e9\u5c31": 1, "\u5f88": 1, "\u5403": 1, "\u8fc7": 1, "\u6211": 2, "\u53ef\u80fd": 1, "\u8981": 1}, "read": {"": 1, "\u770b": 5, "\u9605\u8bfb": 4, "\u8bfb": 18, "\u8b80": 10, "\u8b80\u66f8": 2, "\u6216\u8a31": 1, "\u8ba4\u4e3a": 1, "\u8d77\u6765": 2, "\u8bfb\u4e66": 2, "\u96be\u8bfb": 1, "\u6211": 1, "\u4e0d": 2, "\u4ed6": 1, "\u4e00\u4e0b": 1, "\u95b1\u8b80": 1}, "book": {"": 3, "\u5c31\u8bfb": 1, "\u672c\u4e66": 44, "\u4e66": 14, "\u672c\u66f8": 51, "\u4e00\u672c": 27, "\u66f8": 54, "\u7684": 1, "\u4f86": 1, "\u9019": 12, "\u5728": 1, "\u8fd9": 11, "\u4e00": 4, "\u90a3\u672c\u4e66": 4, "\u6211": 1, "\u53ef\u4ee5": 2, "\u628a": 2, "\u5c31\u884c\u4e86": 1, "\u672c": 1, "\u4f46": 1}, "Lincoln": {"\u6797\u80af": 5}, "President": {"\u7e3d\u7d71": 2, "\u603b\u7edf": 2, "\u9080\u8bf7": 1}, "self": {"\u5c31\u662f": 1, "\u6240\u8b02": 1, "\u767d\u624b\u8d77\u5bb6": 1, "\u54ea": 1, "\u90a3\u4e48": 1, "\u5927": 1, "\u554a": 1}, "we": {"\u6211\u5011": 67, "\u6211\u4eec": 100, "\u627e\u5230": 2, "\u6211": 1, "\u91cd\u65b0": 1, "": 30, "\u5b83": 1, "\u4ff1\u4e50\u90e8": 1, "\u4f60\u4e48": 1, "\u8981": 1}, "man": {"\u7537\u4eba": 43, "\u4eba": 25, "\u4e2a": 13, "\u5e74": 2, "\u9577\u5927": 1, "\u6210\u4eba": 1, "\u90a3\u4e2a": 3, "\u9019": 1, "\u5931\u53bb": 1, "\u4e86": 1, "\u96c4\u5fc3\u58ee\u5fd7": 1}, "Like": {"\u6709\u5176\u7236\u5fc5\u6709\u5176\u5b50": 1, "\u4e0d\u7ba1": 1, "\u559c": 1, "\u559c\u6b61": 1, "": 1, "\u6211\u5011": 1, "\u5f97": 1}, "safety": {"\u8239\u957f": 1, "\u4e3a": 2, "\u5b89\u5168": 5, "\u5176\u4ed6": 1, "\u4e4b\u4e0a": 1}, "responsible": {"\u8981": 5, "\u8d1f\u8d23": 5, "\u5bf9\u6b64": 1, "\u8d1f\u6709\u8d23\u4efb": 1, "\u4e0d\u5fc5": 1, "\u5c0d": 1, "\u6240": 1, "\u4e8b\u8ca0\u8cac\u4efb": 1, "\u5bf9": 2, "\u9a7e\u9a76\u5458": 1, "\u8f66\u7978": 1, "\u8d23\u4efb": 1, "\u8ca0\u8cac": 1}, "passengers": {"\u4e58\u5ba2": 6, "\u9019\u8f1b": 1, "\u8f09": 1, "\u5169\u540d": 1, "\u540d": 1}, "heard": {"\u807d\u5230": 21, "\u542c\u8bf4": 8, "\u542c\u5230": 15, "\u6d88\u606f": 3, "\u6c92": 1, "\u807d": 3, "\u904e": 1, "\u90a3\u91cc": 1, "\u8054\u7cfb": 1, "\u8fc7": 6, "\u542c": 1, "\u6c92\u807d": 1, "\u8aaa": 2, "\u542c\u89c1": 1, "": 1, "\u97f3\u8a0a": 1}, "reminded": {"\u90a3\u9996\u6b4c": 1, "\u6642": 1, "": 1, "\u8b93": 1, "\u4e86": 1}, "it": {"": 15, "\u628a": 6, "\u5b83": 137, ",": 18, "\u505a": 9, "\u6709\u4eba": 1, "\u70ba": 1, "\u4f1a": 2, "\u5c31": 6, "\u4e0d\u4ec5": 1, "\u518d": 4, "\u8fd9": 10, "\u5427": 1, "\u505a\u5230": 5, "\u8b80": 1, "\u7ed9": 1, "\u4e0d\u8981": 1, "\u4f60": 1, "\u6ca1": 1, "\u4e86": 1, "\u8fd9\u4e2a": 1, "\uff01": 1, "\u90fd": 1, "\u4e0d": 1, "\u6211": 1}, "was": {"\u6211": 2, "\u4e86": 63, "\u5728": 13, "\u7684": 93, "\u5f88": 5, ",": 13, "\u7406\u89e3": 1, "\u662f": 72, "\u6240\u4ee5": 1, "\u88ab": 25, "\u592a": 1, "\u53bb": 1, "\u90a3": 1, "\u9019\u500b": 1, "\u5c31": 1, "\u5370\u5ea6": 1, "\u90fd": 1, "\u4f46": 1, "\u80fd": 1, "\u4ed6": 2, "\u78b0\u5de7": 1, "": 1, "\u4e1f\u4e86": 1, "\u53c8": 1, "\u982d": 1}, "When": {"\u5c0f": 1, "\u4ec0\u9ebc": 23, "\u6642\u5019": 29, "\u4ec0\u4e48": 25, "\u65f6\u5019": 35, "\u751a\u9ebc": 5, "\u51fa\u767c": 1, "\u7576": 2, "\u4f55\u6642": 1, "": 2, "\u5e74\u8f7b": 1, "\u5230": 1}, "clock": {"\u6642\u9418": 3, "\u9418": 1, "\u500b": 1, "\u9336": 1, "\u65f6\u949f": 1, "\u949f": 4, "\u628a": 1, "\u8868\u4e0d\u8d70": 1, "\u58c1\u4e0a": 1, "\u639b\u8457": 1, "\u591c\u4ee5\u7e7c\u65e5": 1, "\u5730": 1}, "has": {"\u5df2\u7d93": 16, "\u6709": 108, "": 4, "\u6c92\u6709": 2, "\u4f86": 1, "\u4f60\u5bb6": 1}, "stopped": {"\u505c\u6b62": 4, "\u505c": 4, "\u4e0d": 1, "\u505c\u4e0b": 2, "\u4f86": 2, "": 1, "\u6211\u5011": 1, "\u8bfb\u62a5": 1, "\u4e86": 2}, "The": {"\u4e86": 246, "\u95e8\u7968": 1, "\u5168": 1, "\u9019\u500b": 7, "\u7cdf\u7cd5": 1, "\u9019": 10, "\u98de\u673a": 1, "\u5f00\u59cb": 1, "": 4, "\u91cc": 1, "\u592a": 1, "\u58eb\u5175": 1, "\u96fb\u8a71": 1, "\u70eb": 1}, "Even": {"\u751a\u81f3": 1, "\u90fd": 1, "\u4e5f": 2, "\u5118": 1, "\u7ba1": 1, "\u90a3": 1, "\u9ebc": 1, "\u591a": 1, "": 4, "\u5373\u4f7f": 2, "\u80fd\u8b80": 1, "\u6211": 2, "\u5c31\u7b97": 1, "\u5f88\u5c0f": 1}, "Tom": {"\u6e6f\u59c6": 633, "\u6c64\u59c6": 1208, "Tom": 62, "\u8981": 2, "": 24, "\u80fd\u5920": 1, "\u4e0d\u95ee": 1, "\u66f4": 1, "\u6253\u7535\u8bdd": 1, "\u5c31": 1, "\u53bb": 2}, "anymore": {"\u4e0d\u518d": 9, "\u4e86": 22, "\u5df2\u7ecf": 3, "\u8fd9\u4e2a": 1, "\u518d": 6, "\u518d\u4e5f": 5, "\u8aaa\u8a71": 1, "\u9019\u88e1": 1}, "last": {"\u6700": 8, "\u5979": 1, "\u4e86": 86, "\u53bb\u5e74": 7, "\u6211": 1, "\u4e0a\u6b21": 3, "\u6700\u540e": 8, "\u5f8c": 6, "\u4e0a": 4, "": 2, "\u4e00\u5834": 1, "\u4e0a\u9031": 3, "\u6628\u5929\u665a\u4e0a": 1}, "At": {"\u5f8c": 2, "\u4ea4": 1, "\u7b2c\u4e00\u4e2a": 1, "\u7ec8\u4e8e": 1, "\u6700\u7ec8": 2, "\u6211\u4eec": 1, "\u516c\u8f66": 1, "\u4e0b\u6765": 1, "": 1, "\u5c0d": 1, "\u4e86": 1, "\u8d77\u521d": 1, "\u5f00\u59cb": 1, "\u6211": 1}, "she": {"": 33, "\u5979": 141, ",": 1, "\u4e0d": 2, "\u505a\u5230": 1}, "solved": {"": 1, "\u89e3\u6c7a": 6, "\u5df2": 1, "\u9019\u500b": 3, "\u96e3\u984c": 1}, "problem": {"\u4e86": 1, "\u554f\u984c": 27, "\u95ee\u9898": 42, "\u6211": 1, "\u9019\u500b": 2, "\u6709": 3, "\u6240\u6709": 1, "\u5904\u7406": 2, "\u4f60": 1, "\u7814\u7a76": 1, "\u8fd9\u4e2a": 1, "\u6ca1\u94b1": 1, "\u73b0\u5728": 1, "\u9ebb\u70e6": 1}, "visit": {"\u6bcf\u9694": 1, "\u62dc\u8a2a": 2, "\u6ca1\u4eba\u6765": 1, "\u62dc\u8bbf": 2, "\u6765": 2, "\u8bbf\u95ee": 4, "\u6765\u770b": 1, "\u60a8": 4, "\u5149\u81e8": 2, "\u53bb": 3, "\u53c2\u89c2": 1}, "day": {"\u4e00\u5929": 43, "\u4e00\u6574\u5929": 15, "\u6574\u5929": 1, "\u6bcf\u5929": 9, "\u90a3\u5929": 2, "\u597d\u65e5\u5b50": 1, "\u90fd": 1, "\u7236\u6bcd": 1, "\u661f\u671f": 1, "\u5e7e\u6703": 1, "\u5f85": 1, "\u90a3\u9ebc": 1}, "him": {"\u4ed6": 442, "\u4e0d": 3, "\u8981": 2, ".": 1, "": 10, "\u9047\u898b": 2, "\u592a": 1, "\u6c92": 1, "\u6709\u4eba": 1, "\u8c0e\u8a00": 1, "\u4ee5": 1, "\u60f3": 1, "\u4efb\u52a1": 1, "\u80fd": 1, "\u6211": 2, "\u89c1": 1, "\u6c92\u6709": 1, "\u518d": 1, "\u5c31": 1, "\u5458\u5de5": 1, "\u4e0d\u4f1a": 1, "\u5979": 1, "\u6211\u5011": 1, "\u4e5f": 1}, "Monday": {"\u5468\u4e00": 5, "\u4e2a": 1, "\u661f\u671f\u4e00": 7, "\u5230": 1, "\u4e0a\u5468": 1, "\u4e00": 1, "\u4f86": 1, "\u627e": 1, "": 2}, "Friday": {"\u5230": 3, "\u5468\u4e94": 3, "\u574f": 1, "": 2, "\u661f\u671f\u4e94": 3, "\u535a\u7269\u9986": 1, "\u5f00\u95e8": 1}, "works": {"\u4e0a\u73ed": 3, "\u4e00\u5bb6": 1, "\u5de5\u4f5c": 11, "\u9019\u9593": 1, "\u52aa\u529b": 1, "": 1, "\u5230": 1}, "knows": {"\u77e5\u9053": 43, "\u8ba4\u8bc6": 3, "\u5c0d": 2, "\u719f\u6089": 1, "\u8a8d\u8b58": 3, "\u4ec0\u9ebc": 1, "\u77ad\u89e3": 1, "\u6bd4\u5c0d": 1, "\u90fd": 1, "\u6e05\u695a": 1, "\u4e0d": 1}, "Boston": {"\u6ce2\u58eb": 34, "\u9813": 29, "\u6ce2\u58eb\u987f": 43, "\u66fe\u7ecf": 1, "\u73b0\u5728": 2, "\u5225": 1, "\u7559": 1}, "live": {"\u4f4f": 43, "\u751f\u6d3b": 12, "\u5728": 7, "\u6d3b": 2, "\u60f3\u4f4f": 4, ",": 1, "": 1, "\u4f4f\u5728\u4e00\u8d77": 2, "\u9760": 1, "\u5730\u65b9": 1, "\u6211": 1, "\u7d66": 1, "\u6d3b\u8def": 1, "\u9019\u6a23": 1}, "used": {"\u904e": 1, "\u4f7f\u7528": 1, "\u4ee5\u524d": 29, "\u4e60\u60ef": 11, "\u8fc7\u53bb": 2, "\u5e38": 1, "\u4e0d\u518d": 1, "\u90a3\u4e2a": 1, "\u4e0d": 1, "\u7fd2\u6163": 1, "\u66fe\u7ecf": 2, "\u8fc7": 1, "\u5c11": 1, "\u505a\u5f97\u597d": 1, "\u770b\u66f8": 1, "\u4e8c\u624b": 1, "\u5f97": 1}, "house": {"\u623f\u5b50": 77, "\u6211\u5bb6": 6, "\u5c4b\u5b50": 3, "": 1, "\u4ed6\u5bb6": 5, "\u5bb6": 10, "\u514d\u8d39": 1, "\u5728\u5bb6": 1, "\u4f60\u5bb6": 6, "\u6211": 2, "\u4e0d\u8d77": 1, "\u8bf4": 1, "\u4ed6\u4eec": 1, "\u69cb\u5efa": 1}, "Birds": {"\u9ce5\u985e": 1, "\u98db\u884c": 1, "\u9ce5\u5152": 1, "\u6b4c\u5531": 1, "\u9ce5": 1, "\u4e0b\u86cb": 1}, "black": {"\u7a7f\u8457": 1, "\u9ed1\u8272": 10, "\u7a7f": 1, "\u9ed1\u8863\u670d": 2, "\u662f": 2, "\u63d0\u5305": 1, "": 1}, "dressed": {"\u8863\u670d": 2, "\u6253\u626e": 1, "\u5f97": 2, "\u7a7f\u8863\u670d": 1, "\u7a7f": 4, "\u9ede": 1, "\u6771\u897f": 1}, "mistake": {"": 1, "\u72af": 17, "\u9519\u8bef": 6, "\u932f\u8aa4": 8, "\u932f": 9, "\u9519": 2, "\u8fd8\u662f": 1, "\u540c\u6837": 1, "\u8aa4": 1, "\u518d\u72af": 1, "\u641e\u9519": 1, "\u642d\u9519": 1, "\u4e86\u8f66": 1}, "opening": {"\u6211": 1, "\u6253\u958b": 1, "\u5f00\u95e8": 1, "\u65f6\u5019": 1, "\u5f04\u574f\u4e86": 1, "\u958b\u9580": 1}, "for": {"\u932f": 1, "\u4e86": 99, "\u4e3a": 14, "\u7ed9": 1, "\u70ba": 20, "\u627e": 2, "\u7d66": 27, "\u6771\u897f": 1, ",": 5, "\u5c0d": 3, "\u5bf9": 7, "\u9a30\u51fa": 1, "\u8981": 4, "\u5e6b": 1, "": 1, "\u6253\u64fe": 1, "\u51c6\u5907": 1, "\u8fd9": 1, "\u5e2e\u5230": 1}, "letter": {"\u4f60": 2, "\u6536\u5230": 6, "\u4fe1": 21, "\u5c01\u4fe1": 23, "\u4e00\u5c01\u4fe1": 16, "\u5199": 1, "\u4f86\u4fe1": 1, "\u53d1": 1, "\u90ae\u4ef6": 1, "\u9019": 3}, "admitted": {"\u627f\u8a8d": 3, "\u53c3": 1, "\u52a0\u8003": 1, "\u8a66": 1, "\u627f\u8ba4": 4, "\u90a3\u665a": 1, "\u4ed6": 1, "\u81ea\u5df1": 1, "\u6740\u6b7b": 1}, "without": {"\u6c92\u6709": 14, "\u6ca1\u6709": 17, ",": 5, "": 2, "\u4e5f": 3, "\u529e\u6cd5": 1, "\u5c31\u522b": 2, "\u6d3b\u4e0d\u4e0b\u53bb": 1, "\u65e0\u6cd5": 1, "\u6c92": 2, "\u9084": 1, "\u80fd": 1, "\u4e0d\u5230": 1, "\u5c31": 1, "\u4e0d": 4}, "been": {"\u5df2\u7d93": 13, "\u4e00\u76f4": 27, "\u4e86": 52, "\u53bb\u8fc7": 10, "\u53bb\u904e": 6, "\u4ee5\u524d": 2, "\u5728": 6, "\u5df2\u7ecf": 8, "": 1, "\u7684": 1, "\u88ab": 2, "\u9a97": 1, "\u597d\u4e45": 1, "\u53bb": 1, "\u6211": 1}, "dead": {"\u6b7b": 5, "": 2, "\u90fd": 1, "\u6e6f\u59c6": 1, "\u8fd9\u6761": 1, "\u53bb\u4e16": 1, "\u73b0\u5728": 1, "\u6b7b\u8005": 1, "\u6c92\u6b7b": 1, "\u6b7b\u80e1\u540c": 1, "\u90a3": 1, "\u6ca1\u6b7b": 1, "\u4e86": 1}, "years": {"\u4e86": 52, "\u4e09\u5e74": 12, "\u5169\u5e74": 1, "\u5e74": 9, "\u5f88\u591a\u5e74": 2, "\u4e24\u5e74": 1, "\u6b7b": 1, "\u6709\u4e9b": 1, "\u591a\u5e74": 2, "\u5728": 1, "": 1, "\u4ed6": 1, "\u6b72": 2, "\u65e5\u672c": 1}, "ten": {"\u5341\u5e74": 10, "\u5341\u500b": 1, "10": 13, "\u5341\u70b9": 3, "\u5341\u9ede": 1, "\u2018": 1, "\u91cc": 1}, "law": {"\u89e6\u72af": 1, "\u6cd5\u5f8b": 12, "\u9019\u500b": 1, "\u9075\u7eaa\u5b88\u6cd5": 1}, "broke": {"\u4e86": 23, "\u95d6\u5165": 1, "\u4e00\u9593": 1, "\u62cb\u9328": 1, "\u7834\u7522": 1, "\u88ab": 1, "\u6070\u597d": 1, "\u7838\u574f": 1, "\u6253\u7834": 3, "\u524d\u5929": 1}, "likes": {"\u559c\u6b22": 38, "\u559c\u6b61": 35, "\u53c8": 1, "\u6211": 4, "": 1}, "hot": {"\u70ed": 7, "\u6771\u897f": 1, "\u71b1": 9, "\u708e\u70ed": 1, "\u6ca1": 1, "\u529e\u6cd5": 1, "\u70ed\u70b9": 1, "\u513f": 1, "\u6ca1\u5173\u7cfb": 1, "\u73fe\u5728": 1, "\u591f": 1, "\u975e\u5e38": 1, "\u6027\u611f": 1, "\u4e0d\u5728\u4e4e": 1, "\u708e\u71b1": 1, "\u5f88": 1, "\u9019\u9593": 1, "\u623f\u88e1": 1}, "denying": {"\u9019": 1, "\u7121": 1, "\u53ef\u5426": 1, "\u8a8d": 1}, "fact": {"\u4e8b\u5be6": 3, "\u5ffd\u7565": 1, "\u4e8b\u5b9e": 1, "\u5f88": 1, "\u786e\u5b9e": 1, "\u592a": 1, "": 1}, "loves": {"\u611b": 11, "": 2, "\u5979": 2, "\u6a23\u5b50": 1, "\u5728\u8aaa": 1, "\u559c\u6b22": 2, "\u6bcf": 1, "\u4e00\u500b": 1, "\u559c\u6b61": 3, "\u7231": 1, "\u9019\u4e8b": 1, "\u4e5f": 1}, "her": {"\u5979": 253, "": 5, "\u6ca1\u6709": 1, "\u4f1a": 1, "\u8fd9": 1, "\u6211": 1, "\u6349\u5f04": 1, "\u4f60": 1, "\u670d": 1, "\u6703": 2, "\u9047\u5230": 1}, "six": {"\u516d\u70b9": 8, "\u516d\u9ede": 8, "\u516d\u9ede\u9418": 6, "6": 6, "\u70b9": 3, "\u516d\u500b": 4, "\u4e00\u6b21": 1, "\u9418": 1, "\u6642": 1, "\u5f9e": 1, "\u5bb6\u4e2d": 1, "\u51fa\u767c": 1}, "up": {"\u8d77\u5e8a": 36, "\u4e86": 31, "\u8d77": 3, "\u653e\u68c4": 8, "\u7684": 1, "\u4f60": 1, "\u5c31\u8981": 1, "\u770b": 1, "\u7531": 1, "\u4f86": 1, "\u6c7a\u5b9a": 1, "\u9192": 1}, "on": {"\u5728": 205, "\u4e0a": 146, "\u4f60": 1, "\"": 1, "\u6ca1": 1, "\u6211": 1, "\u7236\u6bcd": 1, "\u4f46\u662f": 1, "\u957f\u6c99": 1, "": 1}, "1972": {"\u4e00\u4e5d\u4e03\u4e8c\u5e74": 1, "\u5341\u6708\u5341\u65e5": 1}, "born": {"\u51fa\u751f": 13, "\u751f": 2, "\u603b\u7edf": 1, "\u751f\u4e8e": 1, "\u5e7e\u9ede": 1}, "with": {"\u548c": 110, "\u4e00\u8d77": 51, "\u8ddf": 72, "\u7528": 14, "\u4e0a": 1, "\u6211": 3, "\u8981": 2, "": 1, "\u739b\u4e3d": 1}, "son": {"\u513f\u5b50": 19, "\u5152\u5b50": 14, "": 1, "\u7ed9": 2, "\u8d77": 1, "\u7d66": 2, "\u4e00\u573a": 1, "\u5979": 1}, "flew": {"\u653e\u98ce\u7b5d": 1, "\u4e86": 1, "\u9019": 3, "\u98db\u8d8a": 1}, "night": {"\u6628\u5929\u665a\u4e0a": 9, "\u6628\u665a": 67, "\u665a\u624d": 1, "\u665a\u4e0a": 8, "\u5f88\u665a": 2, "\u90fd": 2, "\u6574\u591c": 1, "\u90a3\u5929": 1, "\u591c\u665a": 2, "\u6bcf\u665a": 5, "": 1, "\u4e00\u6574\u591c": 1, "\u6628\u5929": 1, "\u5728": 2, "\u65e5\u591c\u517c\u7a0b": 1}, "Did": {"\u55ce": 70, "\u5417": 43, "\u904e": 4, "\u4e86": 74, "\u8fc7": 3}, "under": {"\u5728": 21, "\u5e95\u4e0b": 10, "\u7684": 1, "\u90a3": 1, "\u4e66\u684c\u4e0b": 1, "\u4e0b": 1, "\u624b\u4e0b": 1, "\u684c\u4e0b": 1}, "desk": {"\u684c\u5b50": 16, "\u4e66\u684c\u4e0a": 5, "\u684c\u4e0a": 8, "\u5f35": 9, "\u66f8\u684c": 2, "\u684c": 2, "\u66f8": 1, "\u684c\u65c1": 1, "\u6709": 1}, "found": {"\u627e\u5230": 28, "": 3, "\u53d1\u73b0": 13, "\u4f46": 2, "\u4e86": 13, "\u6771\u897f": 2, "\u767c\u73fe": 8, "\u89c9\u5f97": 4, "\u6211\u5011": 1, "\u5f04\u6e05\u695a": 1, "\u770b": 1, "\u6211": 1}, "purse": {"\u9322": 3, "\u5305": 1, "\u4ee5\u540e": 1, "\u6211": 2, "\u5305\u88ab": 1, "\u6436": 1, "\u5305\u5728": 1}, "by": {"\u88ab": 32, "\u7684": 26, "\u77e5\u9053": 1, "\u5728": 1, "\u5750": 5, "\u90fd": 1, "\u524d": 1, "\u9760": 1, "\u4e00\u500b": 2, "\u4eba": 2, "\u57ce\u5e02": 1}, "bullet": {"\u4e00\u9846": 1, "\u5b50\u5f48": 1, "\u6253\u6b7b": 1, "": 1}, "going": {"\u8981": 75, "\u53bb": 71, "": 3, "\u597d": 2, "\u4e0d\u4f1a": 3, "\u4f1a": 11, "\u5c07": 3, "\u6253\u7b97": 3, "\u6703": 1, "\u6240\u4ee5": 1, "\u53d1\u751f": 1, "\u51fa": 1, "\u4e8b": 1, "\u5c31\u8981": 1}, "rid": {"\u6446\u8131": 1, "\u4ea4\u670b\u53cb": 1, "": 2, "\u5df2\u7ecf": 1, "\u5934\u75bc": 1, "\u8fd8": 1, "\u64fa\u812b": 1, "\u6254\u6389": 1, "\u65e7\u4e66": 1}, "stuff": {"\u4e00\u5207": 1, "\u9019\u500b": 1, "\u6771\u897f": 1, "\u5f88": 1, "\u50f9\u503c": 1}, "wife": {"\u4e0d\u60f3": 1, "\u8001\u5a46": 1, "\u59bb\u5b50": 21, "\u5ab3\u5987": 1, "\u592a\u592a": 3, "\u7d66": 1, "": 1}, "be": {"\u505a": 4, "\u662f": 6, "\u5c31": 5, "\u5728": 8, "\u4f1a": 10, "": 3, "\u6703": 10, "\u5230": 5, "\u660e\u5929": 1, "\u534a": 1, "\u4e16\u754c": 1, "\u53ef\u80fd": 7, "\u8981": 4, "\u4e00\u5b9a": 1, "\u80fd": 2, "\u6210\u4e3a": 1, "\u5f88": 1}, "longer": {"\u4e86": 18, "\u518d": 7, "\u518d\u4e5f": 2, "\u4e0d\u518d": 10, "\u66f4": 1, "\u4e45": 5, "\u5df2\u7ecf": 2, "\u767d\u5929": 3, "\u8d8a\u6765\u8d8a": 1, "\u957f": 1, "\u60f3": 1, "\u7559": 1, "\u611b\u6e6f\u59c6": 1, "\u5e0c\u671b": 1, "\u9019\u5152": 1, "\u4e00\u9ede": 1, "\u9577": 2, "\u4ed6\u4eec": 1, "\u662f": 1, "\u6f38\u6f38": 1, "\u9084\u8981": 1, "\u5b83": 1, "\u8ca0\u64d4": 1}, "Hi": {"\u55e8": 3, "\u4f60\u597d": 2}, "How": {"\u600e\u4e48\u6837": 22, "\u591a\u5c11": 4, "\u6709": 5, "\u591a": 11, "\u600e\u4e48": 24, "\u600e\u9ebc": 23, "\u591a\u4e45": 5, "\u4f60\u5011": 4, "\u8981": 1, "\u5462": 4, "\u5982\u4f55": 1, "\u600e\u9ebc\u6a23": 4, "\u5916\u9762": 1, "\u597d": 1, "\u600e\u6a23": 7, "\u4f60\u597d": 2}, "just": {"\u53ea\u662f": 36, "\u525b": 11, "\u521a": 12, "\u96e2\u958b": 1, "": 4, "\u5c31": 19, "\u6b63\u8981": 4, "\u4e26": 1, "\u53ea": 9, "\u7684": 1, "\u5c31\u662f": 10, "\u525b\u525b": 4, "\u521a\u521a": 3, "\u53ea\u8981": 1, "\u8ddf\u6211\u6765": 1, ".": 1, "\u521a\u597d": 2, "\u5230\u6821": 1, "\u76f4\u63a5": 1, "\u521a\u56de\u5230": 1, "\u746a\u9e97\u525b": 1}, "worker": {"\u4e00\u500b": 3, "\u666e\u901a": 3, "\u4e0a\u73ed\u65cf": 3, "\u500b": 2, "\u5de5\u4eba": 1, "\u4e00\u540d": 1, "\u8077\u54e1": 1}, "plain": {"\u8001\u5f0f": 1, "\u6703": 1, "\u7c21\u55ae": 1, "\u60a8": 1, "\u7b80\u5355": 1, "\u70b9\u513f": 1, "\u8bf4": 1}, "name": {"\u540d\u5b57": 63, "\u4ed6": 2, "\u53eb": 15, "\u807d": 1, "\u6e05\u695a": 1, "\u5230": 1, "\u73fe\u5728": 1, "\u5e38\u89c1": 1}, "appear": {"\u6c92\u6709": 1, "\u51fa\u73fe": 3, "\u5feb\u8981": 1, "\u90fd": 1, "\u597d\u50cf": 1, "\u4f3c\u4e4e": 1}, "list": {"\u540d\u55ae": 5, "\u8d70": 1, "\u904e\u53bb": 1, "\u6e05\u55ae": 1, "\u4e0a": 3, "\u540d\u5355": 3, "\u628a": 1, "\u52a0": 1, "\u5230": 1, "\u6279\u51c6": 1, "\u7533\u8bf7\u4eba": 1, "\u4e00\u4e0b": 1, "\u9152\u55ae": 1, "\u91cc": 1, "\u901a\u7f09\u4ee4": 1}, "hare": {"\u5154\u5b50": 1, "\u4e4c\u9f9f": 1, "\u8d5b\u8dd1": 1}, "children": {"\u5b69\u5b50": 85, "\u4eec": 9, "\u5011": 14, "\u6709": 2, "\u5c0f\u5b69": 5, "\u5979\u4eec": 1}, "kites": {"\u5011": 1, "\u5728": 1, "\u653e": 1, "\u98a8\u7b8f": 1}, "true": {"\u9019": 5, "\u662f": 8, "\u8fd9": 1, "\u771f\u7684": 26, "\u60a8": 1, "\u771f": 2, "\u771f\u5be6": 1, "\u611b\u60c5": 1, "\u4e0d\u4f1a": 2, "": 2, "\u95ee\u95ee": 1, "\u7684": 1}, "story": {"\u4e8b\u5be6": 1, "\u7de8": 1, "\u6545\u4e8b": 31, "\u7d66": 1, "\u8b1b": 2, "\u7ed9": 2, "\u8bb2": 2, "\u6642\u6240": 1, "\u90a3\u4e2a": 1}, "or": {"\u9084": 4, "\u662f": 5, "\u8fd8\u662f": 10, "\u6216\u8005": 2, "": 12, "\u5462": 1, ",": 7, "\u6216": 12, "\u522b\u7684": 1, "\u4e00\u5169\u5929": 2, "\u4e5f": 3, "\u6416\u6efe\u6a02": 1, "\u7ea2\u7ebf": 1, "\u8336": 1, "\u968f": 1}, "as": {"\u8ddf": 17, "\u4e00\u6a23": 22, "\u50cf": 30, "\u548c": 8, "\u4e00\u6837": 15, "\u5c31": 4, "\u6709": 6, "\u540c\u5e74": 1, "\u90a3\u4e48": 10, "\u4f46": 2, "\u559c\u6b22": 1, "\u5c3d\u53ef\u80fd": 3, "\u5730": 1, "\u90a3\u4e2a": 4, "\u60f3\u8c61": 4, "\u5e76": 3, "\u4e0d\u5982": 2, "\u5f97": 3, "\u662f": 1, "\u90a3\u6837": 3, "\u505a": 1, "\u6bd4": 1, "\u4f60": 1, "": 1}, "at": {"\u5728": 185, "\u533b\u9662": 1, "": 2, "\u4e0d": 1, "\u6211": 1, "\u88e1": 2, "\u201c": 1, "\u672c": 1, "\u4f5c\u4e1a": 1}, "age": {"\u9019\u500b": 3, "\u5e74\u7d00\u6642": 1, "\u5e74\u7eaa": 3, "\u51e0\u5c81": 1, "\u5e74\u9f84": 2, "\u76f8\u4eff": 1, "\u80fd": 1, "\u5c31": 2, "\u5e74\u9f61": 4, "\u6bd4": 1, "\u548c": 1, "\u540c\u5c81": 3, "\u8ddf": 1, "\u5dee\u4e0d\u591a": 2, "\u540c\u9f84": 1, "\u60a8": 1, "\u5927\u7d04": 1, "\u540c\u5e74": 1, "\u7d00": 1}, "work": {"\u5de5\u4f5c": 137, "\u4e0a\u73ed": 13, "\u5728": 5, "\u70b9": 1, "": 2, "\u505a\u597d": 1, "\u8fd9\u4e2a": 1, "\u4e0d\u5fc5": 2, "\u4e0d\u7528": 1, "\u4f60": 1, "\u5e0c\u671b": 1, "\u65e0\u6cd5": 1, "\u4e86": 1}, "wonder": {"\u60f3": 3, "\u5e72\u4ec0\u4e48": 1, ",": 1, "\u4e0d": 12, "\u77e5\u9053": 17, "\u62c5\u5fc3": 1, "\u6703": 1, "\u61f7\u7591": 1, "\u53ef\u5beb": 1, "\u5462": 1, "\u5e5a": 1, "\u5011": 1, "\u7eb3\u95f7": 1, "\u90a3\u6837": 1, "\u8fd8\u8981": 1}, "today": {"\u4eca\u5929": 113, "\u5440": 1, "": 1}, "final": {"\u8fd9": 1, "\u6700\u7ec8": 2, "\u505a": 1, "\u6700": 1, "\u5f8c": 1}, "answer": {"\u56de\u7b54": 28, "\u90fd": 1, "\u7b54\u6848": 13, "\u9019\u500b": 3, "\u5979": 1, "\u6765\u8bb2": 1, "\u671f\u671b": 1, "\u63d0": 1, "\u9700\u8981": 1, "\u7ed9": 1, "\u7121\u6cd5": 1, "": 1}, "fall": {"\u7761\u4e0d\u7740": 1, "\u89c9": 1, "\u79cb\u5929": 4, "\u6389\u843d": 1, "\u5730\u65b9": 1, "\u6703": 1, "\u5e79": 1, "\u4eca\u5e74": 1, "\u8981": 1, "\u522b": 1, "\u6454\u5012": 1, "\u5e73\u5e38": 1, "\u52dd": 1, "\u904e": 1, "\u53ef": 1, "\u4f9d\u9760": 1, "\u76f8\u604b": 1}, "Mind": {"\u89c4\u77e9": 1, "\u70b9": 1}, "not": {"\u4e0d": 798, "\u4e0d\u662f": 131, "": 105, "\u6c92": 15, "\u6c92\u6709": 32, "\u6211": 16, "\u6ca1": 47, "\u4e0d\u8981": 18, "\u4e8b\u60c5": 1, "\u6ca1\u6709": 18, "\u4f46": 7, "\u4ed6\u5011": 1, "\u7684": 1, "\u4ee5\u81f3\u4e8e": 1, "\u73b0\u5728": 1, "\u53cd\u9a73": 1, "\u4eba": 1, "\u4ed6": 2, ",": 4, "\u5979": 1, "\u4e00\u70b9": 1, "\u4f46\u662f": 5, "\u6709\u4e9b": 1, "\u90a3": 1, "\u4f60": 4, "\u5c07": 1, "\u6015": 1, "\u4e5f": 1, "\u4e0d\u80fd": 1, "\u4e5f\u8a31": 1, "\u53ef\u662f": 1}, "need": {"\u9700\u8981": 131, "\u5fc5\u8981": 14, "\u4e0d\u7528": 2, "\u4e0d\u5fc5": 8, "": 2, "\u5f97\u53bb": 1, "\u62e5\u6709": 1}, "ago": {"\u524d": 29, "\u5728": 5, "\u89c1": 1, "\u524d\u53bb": 3, "\u5e74\u524d": 5, "\u597d": 1, "\u5e7e": 3, "\u5f88\u4e45\u4ee5\u524d": 1, "\u4e00\u5206": 1, "\u9019\u88e1": 1, "": 1, "\u5f88\u591a\u5e74": 1, "\u4ee5\u524d": 1}, "left": {"\u96e2\u958b": 11, "\u4e86": 37, "\u8fd8": 1, "\u5269": 1, "\u628a": 2, "\u79bb\u5f00": 7, "\u8d70": 5, "\u7559\u5728": 1, "\u80fd": 1, "\u70b9": 1, "\u7684": 1, "\u4e24\u4e2a": 1, "\u7559\u4e0b": 2, "\u7d42": 1, "\u5df2\u7d93": 3, "\u4e0d\u80fd": 1, "": 2, ",": 1, "\u7559": 1, "\u5269\u4e0b": 2, "\u5728": 1}, "Freedom": {"\u81ea\u7531": 3, "\u6709": 1, "\u4ee3\u4ef7": 1}, "very": {"\u975e\u5e38": 116, "\u5f88": 147, "\u5f97": 2, "": 4, "\u5df2\u7ecf": 1, "\u5979": 1, "\u800c\u4e14": 1, "\u89ba": 1}, "important": {"\u91cd\u8981": 31, "\u5bf9": 3, "\u6765\u8bf4": 3, "\u5f88": 3, "\u8d77": 1, "\u5065\u5eb7": 1, "": 1}, "through": {"\u6574\u4e2a": 1, "\u8ba9": 1, "\u906d": 1, "\u8fd9": 1, "\u7f6a": 1, "\u7a7f": 3, "\u904e": 4, "\u505a": 1, "\u5b8c": 2, "\u4ece": 1, "\u4e86\u7ed3": 1, "\u6b64\u4e8b": 1, "\u628a": 1}, "summer": {"\u590f\u5929": 20, "\u8fc7\u53bb": 1, "\u4e0a\u4e2a": 1, "\u590f\u5b63": 1, "\u4e2a": 1, "\u5f97": 1, "\u6bcf\u5e74": 1, "\u9109": 1, "\u4e0b": 1}, "all": {"\u90fd": 80, "\u6240\u6709": 52, "\u5b8c\u5168": 9, "\u6839\u672c": 8, "\u4e00\u9ede": 2, "\u4e5f": 11, "": 4, "\u6240": 2, "\u4e00\u70b9": 11, "\u4e00\u5207": 4, "\u5168\u90fd": 4, "\u4f60\u5011": 4, "\u8fd9\u4e9b": 1, "\u4e0d\u5f97\u4e0d": 1, "\u628a": 1, "\u4e00\u6574\u5929": 1, "\u7684": 1, "\u5c31": 1, "\u8fde": 1, "\u8ba9": 1}, "them": {"\u4ed6\u4eec": 29, "\u4f46": 1, "\u4ed6\u5011": 31, "\u4e2d": 3, "\u90fd": 2, "": 2, "\u6211": 1, "\u8c01\u7ed9\u4e86": 1, "\u8fd9\u4e9b": 1, "\u4e1c\u897f": 1, "\u4e00\u4f4d": 1, "\u8207": 1, "\u4ea4\u670b\u53cb": 1}, "stayed": {"\u5f85": 5, "\u71ac\u591c": 1, "\u7559\u5728": 4, "\u5bb6\u88e1": 2, "\u8eca\u88e1": 2, "\u5f97": 2, "\u5446": 2, "\u6240\u4ee5": 1, "\u4ed6\u5bb6": 1, "": 3, "\u5e76": 1, "\u5728": 2, "\u7761\u5f97": 1, "\u592a\u51b7": 1, "\u6211": 1}, "wish": {"\u4f46": 18, "\u9858": 20, "\u8981\u662f": 6, "\u5c31": 10, "\u597d": 10, "\u5e0c\u671b": 37, "\u5982": 1, "\u4ee5\u511f": 1, "\u80fd": 2}, "younger": {"\u5e74": 1, "\u8f15": 1, "\u4e00\u9ede": 1, "\u5e74\u8f7b": 6, "\u4ece\u4e0d": 1, "\u5e72": 1, "\u5f1f\u5f1f": 1, "\u5c0f": 3, "\u4e09\u6b72": 1, "\u56de\u5fc6\u8d77": 1, "\u4e09\u5c81": 2, "\u7ecf\u5e38": 1}, "overslept": {"\u7761": 3, "\u8fc7\u5934": 2, "\u4e86": 3, "\u904e\u982d": 1, "\u7ee7\u7eed": 1}, "next": {"\u63a5\u4e0b\u6765": 1, "\u4e0b": 47, "\u4e00\u6b65": 8, "\u4e0b\u9031": 7, "\u4e0d\u7528": 2, "\u5728": 4, "\u5c07": 1, "\u987a\u5ef6": 1, "\u4e00\u4e2a": 1, "\u4f60": 1, "\u8981": 2, "\u4f86": 2, "\u63a5\u4e0b": 1}, "how": {"\u600e\u9ebc": 7, "\u600e\u4e48": 34, "\u505a\u5230": 1, "\u5982\u4f55": 23, "\u4f1a": 1, "\u600e\u6837": 2, "\u8bf7\u95ee": 2, "\u5c31\u662f": 2, "\u77e5\u9053": 2, "\u529e\u6cd5": 1}, "play": {"\u6253": 38, "\u6703": 6, "\u53bb": 6, "\u73a9": 11, "\u53ef\u4ee5": 1, "\u73a9\u800d": 2, "\u5e38\u5e38": 1, "\u51fa\u53bb\u73a9": 1, "\u516c\u56ed": 1, "": 1, "\u8fd8": 2, "\u6ca1\u6709": 1, "\u53c8": 1}, "golf": {"\u9ad8\u723e\u592b": 6, "\u7403": 6, "\u9ad8\u5c14\u592b": 3, "\u592a": 1, "\u64c5\u957f": 1, "\u6253": 6, "\u9ad8\u5c14\u592b\u7403": 3, "\u5f00\u59cb": 1, "\u4ece\u4e8b": 1}, "slipped": {"\u6084\u6084\u5730": 1, "\u9012\u7ed9": 1, "\u4e00\u5f20": 1, "\u7eb8\u6761": 1, "\u6ed1\u4e86\u4e00\u8de4": 1, "\u4e26": 1, "\u5f9e": 1, "\u6454": 1, "\u4e0b\u4f86": 1, "\u6e9c\u51fa": 1}, "into": {"\u5f80": 1, "\u4e86": 13, "\u6211": 1, "\u8fdb": 6, "\u4f1a": 1, "\u9032\u5165": 1, "\u5979\u5011": 1, "\u8fdb\u5165": 1, "\u5361\u8eca": 1, "\u88e1": 1, "\u4e2d": 1}, "room": {"\u623f\u95f4": 47, "\u91cc": 8, "": 1, "\u623f\u9593": 63, "\u6211\u5011": 1, "\u623f\u91cc": 1}, "look": {"\u770b": 13, "\u770b\u770b": 12, "\u8d77\u4f86": 8, "\u770b\u6765": 2, "\u770b\u8d77\u6765": 4, "\u548c": 1, "\u957f": 3, "\u5f97": 2, "\u5f88": 2, "\u5927": 1, "\u627e": 5, "\u770b\u4e0a\u53bb": 7, "\u8bf7": 1, "\u770b\u4e00\u770b": 1, "\u525b\u624d": 1, "\u50cf\u662f": 1, "\u81ea\u5df1": 1, "\u4f3c\u7684": 1, "": 1, "\u4e0d\u5f97\u4e0d": 1, "\u8ba9": 1}, "electricity": {"\u96a8\u4fbf": 1, "\u4e82": 1, "\u5f04": 1, "\u96fb\u662f": 1, "\u901a\u7535": 1, "\u96fb": 2}, "dangerous": {"\u5371\u96aa": 14, "\u5371\u9669": 5, "\u5f88": 5, "\u958b\u5f97": 1, "\u592a": 1, "\u8fd9": 1, "": 1}, "fifty": {"\u4e94\u5341\u5c81": 1, "\u4ee5\u540e": 1, "\u90a3\u4e48": 1, "\u6709": 1, "\u4e94\u5341\u5e74": 1, "\u6b77\u53f2": 1, "\u9802": 1, "\u82b1\u8cbb": 1, "\u5927\u7d04": 2, "\u4e94\u5341": 2}, "learn": {"\u5b66": 6, "\u5b78": 2, "\u5b66\u6cd5\u8bed": 4, "\u5927\u7ea6": 1, "\u5b66\u4f1a": 3, "\u6d3b\u5230\u8001": 2, "\u5b78\u5230": 2, "": 1, "\u56e0\u70ba": 1, "\u4e0d\u80fd": 1, "\u5b78\u7fd2": 2, "\u96e3\u5b78": 1, "\u5411": 1, "\u5b66\u4e60": 3, "\u4e26": 1, "\u90a3\u88e1": 1, "\u6613\u5b78": 1, "\u4e00\u9762": 2, "\u975e\u5e38\u7b80\u5355": 1}, "language": {"\u4e00\u95e8": 1, "\u8bed\u8a00": 2, "\u8a9e\u8a00": 17, "\u4e00\u7a2e": 5, "\u5c0d": 1, "\u4e0d\u662f": 1, "\u90a3\u91cc": 1, "\u901a\u7528": 1}, "new": {"\u65b0": 54, "\u65b0\u8eca": 4, "\u65b0\u8f66": 4, "\u8cb7": 2, "\u6709": 2, "\u65b0\u9c9c\u4e8b": 2, "\u65b0\u4f86": 1, "\u65b0\u66f8": 2, "\u7d66": 1, "\u4f46\u662f": 1, "\u53bb": 1, "\u6211\u4eec": 1, "": 1, "\u4e86": 1}, "easy": {"\u5bb9\u6613": 33, "\u5f88": 16, "\u7b80\u5355": 5, "\u6c64\u59c6": 2, "\u64fa\u812b": 1, "\u653e": 2, "\u8f15": 4, "\u9b06": 4, "\u4e00\u822c": 2, "\u7c21\u55ae": 4, "\u767c\u89ba": 1, "": 4, "\u722c\u6811": 1, "\u65bc": 1, "\u5374": 1}, "accepting": {"\u8b1d\u8b1d": 1, "\u4f60": 1, "\u63a5\u53d7": 1, "\u4ea4\u53cb": 1, "\u9080\u8acb": 1}, "Facebook": {"Facebook": 12, "\u4e26": 1, "\u82b1": 1, "\u90a3\u9ebc": 1, "\u6642\u9593": 1, "\u5728": 1, "\u4e0a": 1, "\u7528": 1, "\u6709\u7528": 1}, "crime": {"\u8fd9\u4e2a": 2, "\u72af\u7f6a": 2, "\u4e00\u70b9": 2, "\u5173\u7cfb": 2, "\u90fd": 2, "\u6ca1\u6709": 2}, "lightning": {"\u906d\u5230": 2, "\u96f7\u64ca": 2, "\u96f7\u5288": 1, "\u9583\u96fb\u64ca": 1, "\u4e2d": 1, "\u904e": 1, "\u906d\u96f7\u51fb": 1, "\u9019": 1, "\u5927\u6a39": 1}, "vision": {"\u6709": 2, "\u4e00\u4e2a": 2, "\u613f\u666f": 1, "\u8bbe\u60f3": 1}, "fault": {"\u90a3": 1, "\u932f": 6, "\u9519": 3, "\u6311\u4e0d\u51fa": 2, "\u6bdb\u75c5": 2, "\u5462": 1, "\u5168": 1}, "here": {"\u8fd9\u513f": 44, "\u9019\u88e1": 126, "\u5728": 143, "\u8fd9\u91cc": 78, "": 2, "\u6c64\u59c6": 1, "\u6765": 5, "\u5f85": 1, "\u4f86": 8, "\u53ef\u4ee5": 1, "\u9019": 7, "\u6703": 1, "\u5b83": 1, "\u9084": 1, "\u4f60": 1, "\u5f88\u5feb": 1}, "near": {"\u9644\u8fd1": 27, "\u5728": 9, "\u4ed6\u5bb6": 1, "\u6211\u5bb6": 5, "\u9019": 5, "\u79bb": 1, "\u8fd1": 3, "\u4e86\u4e00": 1, "\u4e00\u6240": 1}, "any": {"\u6709": 5, "\u4ec0\u4e48": 4, "\u4efb\u4f55": 40, "\u90fd": 11, "\u4e0b\u53bb": 2, "\u96a8\u6642": 2, "\u6ca1\u6709": 23, "\u518d": 2, "\u5230": 1, "\u518d\u89c1": 1, "\u4e0d\u518d": 1, "\u5c31\u8ba9": 1, "\u88fd": 1}, "good": {"\u597d": 117, "\u5f88": 43, "\u64c5\u9577": 9, "\u4e86": 2, "\u5f97": 19, "\u64c5\u957f": 2, "": 1, "\u4e0d\u597d": 1, "\u82f1\u8a9e": 1, "\u8aaa": 1, "\u5f88\u597d": 12, "\u4eba": 1, "\u6709": 1, "\u597d\u5904": 2, "\u662f": 1, "\u4e0d\u932f": 1, "\u4f46": 1, "\u53d8\u5f97": 1, "\u4e2a": 1}, "restaurant": {"\u9910\u9986": 4, "\u996d\u5e97": 1, "\u6709\u5bb6": 1, "\u4e00\u5bb6": 3, "\u5feb\u9910\u5e97": 1, "\u9910\u5385": 3, "\u9910\u9928": 2, "\u6240": 1, "\u6700\u597d": 1}, "Class": {"\u516b\u9ede\u534a": 1, "\u4e0a\u8ab2": 1}, "begin": {"\u958b\u59cb": 13, "\u5f9e": 2, "\u4ece": 1, "\u5f00\u59cb": 10, "\u6211\u4eec": 1, "\u4ec0\u4e48": 1, "\u6f14\u51fa": 1, "\u4e0a\u5348": 1, "\u4f60\u4eec": 1, "\u6211\u5011": 1, "\u5c31": 1}, "tonight": {"\u4eca\u665a": 48, "\u4eca\u5929": 4, "\u665a\u4e0a": 4, "\u4f4f": 1, "\u4f60\u5bb6": 1, "\u53d8\u51b7": 1, "": 1, "\u6709": 1, "\u4e0a\u73ed": 1}, "enjoyed": {"\u73a9": 4, "\u5f97": 6, "\u5f88": 8, "\u958b\u5fc3": 3, "\u559c\u6b61": 9, "\u771f\u76e1": 1, "\u8208": 1, "\u665a\u4f1a": 1, "\u5f00\u5fc3": 1, "\u6109\u5feb": 2, "\u7130\u706b": 1, "\u770b": 1, "\u958b": 1, "\u5fc3\u5730": 1}, "driving": {"\u958b": 3, "\u90a3\u8f1b": 1, "\u99d5\u99db": 6, "\u958b\u8457": 1, "\u566a\u8072": 1, "\u628a": 1, "\u903c": 1, "\u6574\u5929": 1, "\u5f00\u8f66": 1, "\u5b83": 1, "\u9019\u8f1b": 1, "\u6b63\u5728": 1, "\u8eca\u8f1b": 1, "\u9760\u5de6": 1, "\u884c\u99db": 1}, "car": {"\u8eca": 66, "\u9019\u8f1b": 4, "\u958b\u8eca": 3, "\u8f66\u91cc": 3, "\u8eca\u5b50": 6, "\u8f66": 25, "\u8f86": 3, "\u4e00\u8f1b": 4, "\u8f1b": 1, "\u4e00\u8f86\u8f66": 1, "\u8f86\u8f66": 1, "\u6c7d\u8eca": 2, "\u6c7d\u8f66": 2, "\u6211": 3}, "nice": {"\u5f88": 2, "\u4e0d\u932f": 7, "\u597d": 9, "\u4e2a": 1, "\u597d\u4eba": 1, "\u6f02\u4eae": 3, "\u89c1\u5230": 1, "\u771f\u662f": 1, "\u592a\u597d\u4e86": 1, "\u7f8e\u4e3d": 1, "\u4f60\u597d": 1, "\u7ed9\u4f60\u4e2a": 1, "\u4eca\u5929": 2, "": 1, "\u5e0c\u671b": 1, "\u4f60": 1, "\u73a9": 1, "\u7684": 1, "\u795d": 1, "\u5f97": 1, "\u6109\u5feb": 1, "\u597d\u8bdd": 1, "\u4ec0\u4e48": 1}, "eaten": {"\u5403": 23, "\u597d\u591a\u5929": 4, "\u4e1c\u897f": 2, "\u904e\u5348": 3, "\u6c92": 2, "\u6771\u897f": 2, "\u5403\u98ef": 1, "\u73b0\u5728": 1, "\u8fc7": 2, "\u90fd": 1, "": 1, "\u4f60": 1}, "ever": {"\u8fc7": 18, "\u4f3c\u4e4e": 1, "\u4efb\u4f55": 1, "\u65f6\u5019": 2, "\u6c64\u59c6\u751f": 1, "\u904e": 15, "\u4ece": 2, "\u4e8b": 1, "\u518d": 1, "\u505a\u4e8b": 1, "\u66fe": 2}, "best": {"\u6700\u597d": 29, "\u6700": 15, "\u76e1\u529b": 7, "\u800c\u70ba": 6, "\u505a\u5f97\u597d": 1, "\u5230": 1, "\u4e0d\u80fd": 1, "\u518d": 1, "\u597d": 1, "\u5c3d\u529b\u800c\u4e3a": 1, "\u5168\u529b\u4ee5\u8d74": 1, "\u662f": 4, "\u7b11": 2, "\u5c3d\u529b": 1, "\u5e94\u8be5": 1, "\u505a\u5230": 2, "\u9019": 1, "\u5c3d\u5168\u529b": 1, "": 1}, "restaurants": {"\u9910\u9986": 1, "\u4e4b\u4e00": 1, "\u53d7\u5920": 1, "\u9910\u9928": 1, "\u98ef": 1}, "laughing": {"\u5728": 6, "\u7b11": 13, "\u5462": 4, "\u5fcd\u8457": 1, "\u5632\u7b11": 1}, "laugh": {"\u56e0\u4e3a": 1, "\u5c31": 1, "\u5632\u7b11": 4, "\u7b11": 6, "\u6e6f\u59c6\u7e3d": 1, "\u7b11\u8bdd": 1, "\u88ab": 1, "\u9017\u4e50": 1, "\u9017\u4eba": 1, "\u592a\u68d2\u4e86": 1, "\u6c92\u898b": 1, "\u6e6f\u59c6\u7b11": 1}, "hurry": {"\u8457\u6025": 3, "\u6025\u4e8e": 1, "\u518d": 2, "\u5feb\u70b9": 3, "\u5662": 2, "\u8d95": 1, "\u6642\u9593": 1, "\u6293\u7d27\u65f6\u95f4": 1, "\u5f88\u6025": 1, "\u5306\u5fd9": 3, "\u5730": 3, "\u5feb": 2, "\u4e00\u70b9": 1, "": 4, "\u8d95\u5feb": 1, "\u6293\u7d27": 2, "\u5c31": 1, "\u8d76\u5feb": 1, "\u4e9b": 1, ",": 1, "\u6ca1": 1}, "soup": {"\u6e6f": 7, "\u4e00\u6839": 1, "\u6c64": 4, "\u653e\u591a": 1, "\u559d": 3, "\u767c\u51fa": 1, "\u8072\u97f3": 1}, "hair": {"\u982d": 16, "\u9aee": 19, "\u5934\u53d1": 9, "\u7684": 2, "\u8910\u8272": 1, "\u4f60": 1, "\u7c98\u7740": 1}, "another": {"\u518d": 16, "\u4f86": 4, "\u53c8": 2, "\u8981": 5, "\u5927\u4f17": 1, "\u8138": 1, "\u6765": 2, "\u600e\u4e48\u6837": 3, "\u9047\u4e0a": 1, "": 1, "\u4e0d\u518d": 1, "\u522b\u7684": 1, "\u9846": 1, "\u5176\u4ed6": 1, "\u63a5\u7740": 1, "\u5730": 1}, "round": {"\u4e00\u8f2a": 1, "\u5f20": 2, "\u5706\u684c": 1, "\u4e00": 1, "\u6574\u5e74": 1, "\u5fc5\u9808": 1, "\u5706\u8138": 1, "\u5730\u7403": 1, "\u4e00\u5f35": 1, "\u5713": 2, "\u982d": 1}, "about": {"\u600e\u9ebc\u6a23": 7, "\u4e8b": 22, "\u8bf4": 2, "\u5bf9": 5, "\u5927\u7d04": 4, "\u8ac7": 5, "\u5c0d": 6, "\u6b64": 1, "\u5173\u4e8e": 11, "\u8003\u8651": 4, "\u8ddf": 2, "\u95dc\u65bc": 1, "\u70ba": 1, "\u9019\u4e8b": 1, "\u5dee\u4e0d\u591a": 4, "\u8fd9\u4ef6": 1, "\u90a3\u4e2a": 1, "\u6709": 2, "\u770b\u6cd5": 1, "\u95dc": 3, "\u90a3": 1, "\u65bc": 2, "\u6b63\u8981": 1, "\u8003\u616e": 3, "\u5230": 1, "\u6709\u95dc": 1, "\u5b83": 1}, "train": {"\u706b\u8f66": 34, "\u706b\u8eca": 35, "\u73ed": 4, "\u4e00\u5217": 1, "\u4e00\u73ed": 4, "\u932f": 1, "\u5e94\u5f53": 1, "\u51c6\u70b9": 1, "\u642d": 1, "\u8fd8": 1, "\u80fd": 1, "\u8d76\u4e0a": 2, "\u5c31\u8981": 1, "\u4f1a": 1, "": 1, "\u4f86\u9072": 1, "\u4e58\u706b\u8f66": 1, "\u51fa\u53d1": 1}, "twelve": {"\u4e0a\u5f85": 1, "12": 3, "\u4e2a": 1, "\u5341\u4e8c": 4, "\u500b": 2, "\u7528": 1}, "hours": {"\u5c0f\u65f6": 16, "\u5c0f": 16, "\u6642": 16, "\u8fc7": 1, "\u4e86": 2, "\u5e7e\u500b": 1, "\u51e0\u4e2a": 2, "\u6578": 1}, "Get": {"\u76e1\u5feb": 1, "\u8d70\u958b": 1, "\u627e\u5230": 1, "\u5148\u4e0b\u624b\u4e3a\u5f3a": 1, "": 2, "\u540e": 1, "\u8d77\u5e8a": 1, "\u53bb": 1, "\u62ff": 1, "\u4e00\u4e0b": 1, "\u70b9": 1, "\u8db4\u4e0b": 1, "\u8f66\u91cc": 1, "\u6efe": 2, "\u6eda": 2, "\u8db4\u5728": 1, "\u96e2\u958b": 1}, "done": {"\u5b8c\u6210": 9, "\u505a": 38, "\u5df2\u7ecf": 2, "\u505a\u597d": 3, "\u6c92": 2, "\u600e\u4e48\u529e": 1, "\u5bf9\u6b64": 1, "": 3, "\u5168\u529b\u4ee5\u8d74": 1, "\u672c": 2, "\u6e6f\u59c6": 1, "\u8fd8": 1, "\u5b8c": 4, "\u4e8b": 5, "\u904e": 1, "\u90a3\u6837": 2, "\u8981": 1, "\u5bf9": 1, "\u5f9e\u672a": 1}, "stamp": {"\u4e00\u5f35": 3, "\u90f5\u7968": 4, "\u8d34": 2, "\u90ae\u7968": 2, "\u5f20": 1}, "else": {"\u8fd8\u6709": 4, "\u5225\u7684": 2, "\u9084": 5, "\u518d\u8bf4": 1, "\u4efb\u4f55": 2, "\u4eba": 4, "\u8aaa\u5225": 1, "\u522b\u7684": 5, "\u60f3\u8981": 2, "\u53bb": 2, "\u9700\u8981": 1, "\u80dc\u8fc7": 1, "\u5176\u4ed6": 2, "\u4e00\u4e2a": 1, "\u751a": 1, "\u9ebd": 1, "\u5c31": 1, "\u5176\u4ed6\u4eba": 1, "\u6709": 1, "\u8fd8": 2, "\u4ec0\u4e48": 1, "\u5730\u65b9": 1}, "anything": {"\u4ec0\u4e48": 42, "\u4efb\u4f55": 42, "\u4e8b": 16, "\u751a\u9ebc": 11, "\u4e5f": 11, "\u90fd": 24, "": 7, "\u5b83": 1, "\u6211": 1, "\u770b\u5230": 1, "\u6771\u897f": 22, "\u4ec0\u9ebc": 4, "\u505a\u4e0d\u4e86": 2, "\u4e86": 1, "\u4ee5\u81f3\u4e8e": 1, "\u4e1c\u897f": 5, "\u5c0d": 2, "\u9ede": 1, "\u505a": 2, "\u4f46\u662f": 1, "\u90a3": 1, "\u4e3a": 1}, "want": {"\u60f3\u8981": 66, "\u60f3": 178, "\u4e0d\u60f3": 87, "\u8ba9": 2, "": 10, "\u8981": 49, "\u8b93": 6, "\u4f46": 1, "\u4f46\u662f": 1, "\u4ed6": 1, "\u6211": 2}, "Is": {"\u5417": 82, "\u55ce": 65, "\u662f": 45, "\u6709": 3, "\u4e1c\u897f": 1, "": 1, "\u7684": 1, "\u90a3": 1}, "'d": {"\u6700\u597d": 39, "\u5c31": 2, "": 3, "\u6211": 2, "\u5e0c\u671b": 2, "\u53bb": 1, "\u79bb\u5f00": 1, "\u6bd4\u8f83": 2, "\u6700": 1, "\u597d\u5403": 1, "\u4f1a": 3, "\u613f\u610f": 1, "\u6703": 1, "\u6211\u4f1a": 1, "\u5982\u679c": 1, "\u4e5f": 1, "\u8acb": 1, "\u4f60\u5011": 1, "\u500b": 1}, "umbrella": {"\u96a8\u8eab": 1, "\u628a": 9, "\u5098": 10, "\u4f1e": 8, "\u843d\u5728": 1, "\u96e8": 2, "\u96e8\u4f1e": 2, "\u843d": 1, "\u518d": 1, "\u5fd8\u5728": 1, "\u4f60": 1}, "take": {"\u5e36": 4, "\u8981": 16, "\u82b1": 8, "\u65f6\u95f4": 3, "\u6301\u7eed": 1, "\u62ff": 4, "\u8fd9\u91cc": 1, "\u53bb": 3, "\u63a5": 1, "\u5e26": 4, "\u597d\u597d": 2, "\u6162\u6162\u6765": 1, "\u53ef\u4ee5": 1, "\u60a8": 1, "\u7740": 2, "\u4f60": 1, "\u591a\u957f\u65f6\u95f4": 4, "\u9700\u8981": 1, "\u7528": 2, "\u957f\u65f6\u95f4": 1, "": 1, "\u4e00\u8f88\u5b50": 1}, "will": {"\u6703": 215, "\u5c06": 4, "\u4f1a": 84, "\u4ed6": 1, "\u6765": 2, "": 21, "\u4e0d\u4f1a": 13, "\u6211\u4f1a": 62, "\u5c07": 33, "\u6211": 7, "\u5c31": 5, "\u6e6f\u59c6\u6703": 3, "\u4e0d\u7136": 1, "\u4f60": 2, "\u201c": 1, "\u53bb": 1, "\u660e\u5929": 1, "\u5426\u5247": 3, "\u7d66": 1, "\u6211\u4eec": 1, "\u5979": 1, "\u8981": 2, "\u9858\u671b": 1, "\u6211\u5011": 1, "\u5b83": 1, "\u5e0c\u671b": 1, "\u4e5f": 1, "\u6c38\u9060": 2, "\u4f18\u52bf": 1, "\u6811\u53f6": 1}, "front": {"\u96fb": 1, "\u53f0\u524d": 1, "\u9762\u524d": 3, "\u6771\u897f": 1, "\u6211": 1, "\u524d\u9762": 6, "\u524d": 3, "\u6709\u4e2a": 2, "\u5ead\u9662": 1, "\u898b\u9762": 1}, "wait": {"\u7b49": 38, "\u7b49\u5230": 1, "\u7b49\u5f85": 6, "\u6e6f\u59c6\u6703": 1, "\u7b49\u4e00\u7b49": 3, "": 1, "\u6211\u4eec": 1, "\u8b93": 1}, "tired": {"\u770b\u8d77\u6765": 1, "\u5f88\u56f0": 1, "\u4e86": 28, "\u7d2f": 20, "\u7d2f\u6b7b": 2, "\u4f46": 1, "\u9ede\u7d2f": 2, "\u75b2\u5026": 1, "\u4e0d\u7d2f": 4, "\u53ad\u5026": 3, "\u56f0": 1, "\u8bf4": 1, "\u54e6": 1, "\u538c\u5026": 3, "\u5df2\u7d93": 1, "\u505a": 1, "\u597d\u7d2f": 1}, "teacher": {"\u8001\u5e2b": 28, "\u8001\u5e08": 27, "\u6559\u5e2b": 9, "\u6210\u4e3a": 1, "\u7236\u89aa": 1, "\u6559\u5e08": 4, "\u6211": 1, "\u4e00\u540d": 2}, "assembled": {"\u79ae\u5802": 1, "\u628a": 1, "\u5011": 1, "\u96c6\u5408": 1, "\u8d77\u4f86": 1, "\u6536\u96c6": 1, "\u5bf9": 1, "\u4e0d\u5229": 1}, "students": {"\u5b78\u751f": 18, "\u5b66\u751f": 13, "\u6240": 1, "\u4e0d\u4f1a": 2, "\u60f3\u6765": 2, "\u4f60\u4eec": 1, "\u60a8\u5011": 1}, "discussing": {"\u9019": 2, "\u4e0d": 1, "\u8a0e\u8ad6": 2, "\u8ba8\u8bba": 2, "\u6b63\u5728": 1, "\u9019\u500b": 1}, "hardly": {"\u5e7e\u4e4e": 6, "\u4e0d\u5230": 1, "\u8072\u97f3": 1, "\u8a71": 1, "\u51e0\u4e4e": 2, "\u6ca1\u7a7a": 1, "\u4ee5\u81f3\u4e8e": 1, "": 1, "\u6211": 1, "\u529e\u6cd5": 1, "\u5fcd\u4e0d\u4f4f": 1, "\u5927\u7b11": 1}, "worth": {"\u503c\u5f97": 18, "\u770b\u4e00\u904d": 1, "\u6d3b\u4e0b\u53bb": 1, "\u4e00": 2, "\u8fd9\u6837": 1, "\u503c\u5f97\u4e00\u770b": 1, "\u8bb8\u591a\u6b21": 1, "\u4f46": 1}, "stomach": {"\u80c3": 4, "\u5f97": 1, "\u5f88": 1, "\u80c3\u6703": 1, "\u8139": 1, "\u6eff": 1, "\u6211": 1, "\u7684": 1}, "marches": {"\u91cc": 1, "\u5982\u540c": 1, "\u5343\u519b\u4e07\u9a6c": 1, "\u5f00\u8fc7": 1}, "studied": {"\u5b66\u4e60": 3, "\u5b66": 5, "\u8b80": 5, "\u66f8": 3, "\u88ab": 2, "\u5b78\u7fd2": 6, "\u4eba": 2, "\u4ee5": 1, "\u8b80\u66f8": 1, "": 1}, "ceiling": {"\u84bc\u8805": 1, "\u5929\u82b1\u677f": 3}, "can": {"\u80fd": 96, "\u53ef\u4ee5": 93, "\u4e0d\u80fd": 85, "": 16, "\u505a": 3, "\u65e0\u6cd5": 4, "\u7121\u6cd5": 15, "\u4e0d\u4f1a": 5, ",": 1, "\u7684": 1, "\u73b0\u5728": 1, "\u6211": 2, "\u8bf4": 1, "\u6050\u6015": 1, "\u4f60": 1, "\u4e0d\u5230": 1, "\u89ba\u5f97": 1, "\u90a3\u513f": 1, "\u6c92": 1, "\u4f46": 1}, "walk": {"\u8d70": 9, "\u6563\u6b65": 12, "\u8d70\u8def": 6, "\u5230": 5, "\u6b65\u884c": 7, "\u53bb": 10, "\u905b\u72d7": 1, "\u800c": 1, "\u8d70\u8d70": 1, "\u5e36": 1, "\u8981\u53bb": 1, "\u6563\u6563\u6b65": 1, "\u6211\u4eec": 1, "\u6563": 1}, "tried": {"\u8a66\u8457": 9, "\u8bd5\u56fe": 4, "\u8bd5": 5, "\u6211": 1, "": 1, "\u5c1d\u8bd5": 1, "\u90a3\u4e9b": 1, "\u8fc7": 1, "\u8b1b\u6cd5": 1, "\u7740": 1, "\u8a66\u5716": 1, "\u52aa\u529b": 1}, "lift": {"\u8209\u8d77": 2, "\u8f09": 1, "\u57ce\u88e1": 1, "\u80cc": 1, "\u628a": 1, "\u6771\u897f": 1, "\u9001": 1, "\u62ac\u8d77": 2, "\u7121\u6cd5": 2, "\u4f86": 1}, "box": {"\u7bb1\u5b50": 15, "\u76d2\u5b50": 10, "\u88e1": 6, "\u6709": 1, "\u6703": 1, "\u627e\u5230": 1, "?": 1, "\u9019\u500b": 1}, "but": {"": 115, "\u9664\u4e86": 9, ",": 10, "\u94b1": 1, "\u4f46\u662f": 2, "\u4f46": 1, "\u56fe\u4e66\u9986": 1}, "impossible": {"\u4f46": 1, "\u767c\u73fe": 1, "\u4e0d": 17, "\u53ef\u80fd": 16, "\u6c34\u662f": 1, "\u5f97\u5230": 1, "\u8fd9": 1, "\u8ba9": 1, "\u505a\u5230": 1, "\u4e8b\u60c5": 1, "\u5b83": 1, "\u662f": 1, "\u51e0\u4e4e": 1}, "Where": {"\u5728": 86, "\u54ea\u91cc": 34, "\u54ea\u88e1": 55, "\u54ea\u513f": 21, "\u54ea": 7, "": 1, "\u5730\u65b9": 1}, "All": {"\u6240\u6709": 28, "\u90fd": 27, "\u5c31\u662f": 3, "\u53ea\u662f": 1, "\u53ea\u8981": 2, "\u4f60\u5011": 1, "\u4eba": 4, "": 1, "\u4f46": 1, "\u6240": 1, "\u53ea\u6709": 1, "\u6765\u8bf4": 1, "\u5168": 1}, "signs": {"\u8ff9\u8c61": 1, "\u8868\u660e": 1, "\u8d77\u6765": 1}, "seldom": {"\u5f88\u5c11": 6, "\u62bd\u51fa": 1, "\u770b\u4e66": 1, "": 1, "\u6709": 1, "\u6240\u4ee5": 1, "\u6765\u770b": 1}, "goes": {"\u53bb": 18, "8": 1, "\u4e0a\u5927\u5b78": 1, "\u4f1a": 2, "\u5fc5": 1, "\u843d": 1, "\u7ecf\u5e38": 1, "\u6d3e": 1, "\u8a71": 1, "\u4e07\u4e8b\u5982\u610f": 1, "\u591c\u6821": 1, ",": 1, "\u8f66": 1, "\u8d70": 1}, "church": {"\u6559\u5802": 16, "\u79ae": 1, "\u62dc": 1, "\u5929\u4e0a": 1, "\u6bcf\u500b": 1, "\u4e0a": 2, "\u4e00\u5ea7": 1, "\u505a\u793c\u62dc": 2, "\u9019\u88e1": 1, ",": 1, "\u91cc": 1}, "eat": {"\u5403": 113, "\u70b9": 2, "\u5973\u6027": 1, "\u4ec0\u4e48": 1, "\u4e0d\u5403": 6, "\u4e0d\u8be5": 1, "\u5403\u996d": 4, "\u809a\u5b50": 1, "\u4f46\u662f": 1, "\u6211": 1, "\u98ef": 1}, "like": {"\u559c\u6b61": 132, "\u4f60": 2, "\u60f3": 40, "\u559c\u6b22": 148, "\u50cf": 24, "\u7bee\u7403": 1, "\u4e0d": 1, "\u5c31": 1, "\u4e5f": 1, "\u60f3\u8981": 2, "": 5, "\u4eba": 1, "\u4e00\u6837": 1, "\u6211": 4}, "sports": {"\u904b\u52d5": 6, "\u8fd0\u52a8": 3, "\u8dd1\u8eca": 1, "\u559c\u6b61": 1, "\u64c5\u9577": 1, "\u4f53\u80b2\u8fd0\u52a8": 1}, "accident": {"\u4e8b\u6545": 13, "\u9019\u500b": 4, "\u610f\u5916": 13, "\u4e2d": 8, "\u6c92\u767c": 1, "\u751f\u610f": 1, "\u5916": 1, "\u8eca\u798d": 3, "\u5076\u7136": 1, "\u51fa": 2, "\u767c\u751f": 3, "\u65bc": 2, "\u8f66\u7978": 1, "\u66fe\u7d93": 1, "\u524d\u5929": 1, "\u4e00\u5834": 3, "": 1, "\u5de5\u4f24": 1}, "seemed": {"\u4f3c\u4e4e": 2, "\u539a\u539a\u7684": 1, "\u79ef\u96ea": 1, "\u6709\u5173": 1, "\u770b\u8d77\u6765": 1, "\u90a3\u500b": 1, "\u719f\u7761\u4e2d": 1}, "if": {"\u5982\u679c": 39, ",": 43, "\u662f\u5426": 19, "": 13, "\u7684\u8bdd": 6, "\u4f1a": 2, "\u5c31": 9, "\u5f88": 1, "\u662f\u4e0d\u662f": 4, "\u6709\u6ca1\u6709": 2, "\u6211": 4, "\u8bf4\u8bdd": 1, "\u597d\u50cf": 2, "\u4e0d": 1, "\u8981\u662f": 1, "\u90a3": 1, "\u6ca1\u6709": 1, "\u90a3\u4e48": 1, "\u8a71": 1, "\u7684": 1}, "plan": {"\u8a08\u5283": 20, "\u8ba1\u5212": 15, "\u6211\u4eec": 1, "\u6253\u7b97": 17, "\u505c\u7559": 2, "\u8a08\u756b": 6, "\u500b": 1, "\u800c\u8a00": 1, "": 1, "\u6211": 1, "\u8d0a\u540c": 1, "\u8cb7\u8f1b": 1, "\u4ed6": 1, "\u628a": 1, "\u60f3\u5230": 1, "\u9019\u500b": 3, "\u6240\u77e5": 1, "\u8fa6": 1, "\u6709\u500b": 1, "\u4f1a": 1}, "Work": {"\u8981": 1, "": 1, "\u66f4\u52a0": 1, "\u52aa\u529b": 1, "\u5e72\u6d3b": 1}, "succeed": {"\u6210\u529f": 10, "\u5c31": 1, "\u76f8\u4fe1": 1, "\u5efa": 1, "\u8b70": 1, "\u7e94": 1, "\u6709\u6240": 1, "\u6210\u5c31": 1, "\u7406\u6240\u5f53\u7136": 1, "\u53d6\u5f97": 1, "\u80dc\u5229": 1, "\u4f60": 1}, "harder": {"": 3, "\u5c31\u8981": 1, "\u66f4": 6, "\u52aa\u529b": 9, "\u5f97": 1, "\u5e0c\u671b": 2, "\u66f4\u52a0": 4, "\u5730": 2, "\u4e0b\u56de": 1, "\u8981": 1, "\u4e0b\u6b21": 1}, "stretched": {"\u4f38\u957f": 1, "\u4e3a\u4e86": 1, "\u80fd": 1, "\u62ff\u5230": 1, "\u4e66": 1}, "arm": {"\u624b\u81c2": 11, "\u633e": 1, "\u80f3\u818a": 2, "\u65b7": 2, "\u53f3": 2}, "made": {"\u8b93": 18, "\u4e86": 96, "\u505a": 45, "\u8ba9": 3, "\u518d\u6b21": 1, "\u8981": 8, "\u4f7f": 1, "\u70ba": 1, "\u4e3a\u4ec0\u4e48": 2, "\u8fd9\u79cd": 2, "\u4e8b\u60c5": 2, "\u9003": 1, "\u6210\u529f": 1, "\u4ee5\u4e3a": 1, "\u9020\u94b1": 1, "\u554a": 1, "\u81ea\u5df1": 1, "\u8ab0": 1}, "repeat": {"\u91cd": 1, "\u8907": 1, "\u60a8": 2, "\u518d": 1, "\u91cd\u590d": 2, "\u4e00\u904d": 3, "\u521a\u624d": 1, "\u8aaa": 1}, "sentence": {"\u9019": 2, "\u53e5": 4, "\u8a71": 3, "\u53e5\u5b50": 11, "\u53e5\u53e5": 2, "\u5b50": 2, "\u4e00\u500b": 3, "\u4e00\u53e5": 1, "\u8bdd": 2}, "5": {"5": 7, "\u4e94\u9ede": 1, "\u4ee5\u524d": 1, "\u5230": 1, "\u91cc": 1, "\u672c": 1}, "add": {"\u52a0": 1, "\u52a0\u4e0a": 1, "\u52a0\u5728": 1, "\u521a\u624d": 1, "\u5185\u5bb9": 1, ",": 1, "\u4f60": 1, "\u60f3": 1}, "10": {"10": 4, "\u9ede": 2, "": 1, "\u642d": 1, "\u5341\u9ede": 1, "\u8fd9": 1, "\u4e1c\u897f": 1}, "shop": {"\u4e00\u5bb6": 2, "\u5c0f": 1, "\u5496\u5561\u5e97": 1, "\u5e97": 5, "\u88e1": 1, "\u82b1\u5e97": 1, "\u4f60\u5011": 1, "\u79ae\u54c1": 1, "\u9019\u5bb6": 1, "\u9928": 1}, "lunch": {"\u5403": 20, "\u5348": 10, "\u98ef": 13, "\u904e\u5348": 1, "\u5348\u9910": 18, "\u5348\u996d": 11, "\u5169\u9ede\u9418": 2, "\u5348\u98ef": 4, "\u4f60\u4eec": 1}, "something": {"\u6709\u4e9b": 5, "\u4e1c\u897f": 22, "\u4ec0\u4e48": 23, "\u4e8b": 23, "\u70b9": 14, "\u4e8b\u60c5": 6, "\u6771\u897f": 22, "\u4ec0\u9ebc": 4, "\u4e9b": 7, "\u4e00\u4e9b": 12, "\u6709": 2, "\u9ede": 7, "\u5bf9": 3, "\u7ed9": 2, "\u6240": 1, "\u4f60": 1, "\u8981": 2, "\u505a": 1, "\u60f3": 1, "\u6709\u4e8b": 2}, "to": {"\u8981": 92, "\u60f3": 17, "\u53bb": 96, ",": 7, "\u4e0d\u8981": 1, "\u5230": 7, "\u6211": 8, "\u90fd": 1, "\u5fc5\u9808": 6, "\u7ed9": 1, "": 6, "\u9700\u8981": 1, "\u6211\u4eec": 1, "\u8be5": 1, "\u4f60": 3, "\u5c0f\u65f6": 1, "\u4e0d\u60f3": 1, "\u4e58": 1, "\u4ed6": 3, "\u6ca1\u4ec0\u4e48": 1, "\u4e0d": 1, "\u4e0d\u4f1a": 1, "\u8fd9\u4e2a": 1, "\u8ddf": 1, "\u5bf9": 1}, "give": {"\u7ed9": 22, "\u7d66": 23, "\u4f60": 2, "\u628a": 3, "\u653e\u5f03": 5, "\u7684\u8bdd": 2, "\u4ed6": 2, "\u8fd9": 2, "\u6ca1\u7ed9": 1, "\u6771\u897f": 1, "\u4ea4\u7d66": 1, "\u6c38\u4e0d\u8a00\u5f03": 1, "\u4e5f": 1, "\u4e4b\u5916": 1, "": 1, "\u66f8": 1}, "abroad": {"\u51fa\u56fd": 3, "\u7559\u5b66": 2, "\u51fa": 1, "\u570b": 2, "\u570b\u5916": 9, "\u56fd\u5916": 8, "\u5927\u534a\u751f": 1, "\u51fa\u904e": 1, "\u51fa\u570b": 5, "\u60f3\u5230": 2, "\u5916\u56fd": 2, "\u7559\u5b78": 1, "\u5c45\u4f4f": 1, "\u60f3\u53bb": 1}, "would": {"\u60f3": 61, "\u8d70": 1, "\u6211\u4f1a": 1, "\u6703": 20, "": 17, "\u4f1a": 24, "\u4f46": 1, "\u4e0d\u4f1a": 3, "\u7ed9": 1, "\u60f3\u8981": 10, "\u751f\u7269": 1, "\u4f60": 3, ",": 4, "\u613f\u610f": 1, "\u6e6f\u59c6\u6703": 1, "\u5c31": 1, "\u665a": 1, "\u8981": 1, "\u6240\u4ee5": 1, "\u50bb\u74dc": 1}, "remember": {"\u8bb0\u5f97": 14, "\u8fd8": 1, "\u5bf9": 3, "\u5370\u8c61": 3, "\u8a18\u5f97": 15, "\u4f46": 2, "\u6211": 2, "\u898b": 2, "\u904e": 1, "\u60f3\u4e0d\u8d77": 1, "\u4f86": 1, "\u8fd9\u4e9b": 2, "\u8bb0\u4e0d\u4f4f": 1, "\u8a18": 1, "\u4e0d\u5f97\u4e86": 1, "\u8a18\u4f4f": 1, "\u8bb0\u4e0d\u8d77\u6765": 1, "\u8d77\u6765": 1, "": 2, "\u7c21\u76f4": 1, "\u6211\u5011": 1}, "returning": {"\u628a": 1, "\u4e66": 1, "\u8fd8": 1, "\u5230": 1, "\u611f\u8b1d": 1, "\u60a8": 1, "\u56de\u96fb": 1}, "library": {"\u56fe\u4e66\u9986": 13, "\u5716\u66f8\u9928": 16, "\u9084": 1, "\u7d66": 1, "\u6253\u7b97": 1, "\u5e26\u56de": 1}, "noticeable": {"\u4e24\u8005\u4e4b\u95f4": 1, "\u663e\u8457": 1, "\u5dee\u522b": 1}, "chicken": {"\u96de\u8089": 3, "\u5403\u4e0d\u4e0b": 1, "\u9e21\u76ae": 1, "\u90a3\u500b": 1, "\u96de": 2}, "undercooked": {"\u9084": 1, "\u4e0d\u5920": 1, "\u719f": 1}, "stop": {"\u7ad9\u724c": 2, "\u5373\u523b": 1, "\u505c\u6b62": 5, "\u6c64\u59c6": 1, "\u56de\u5bb6\u8def\u4e0a": 1, "\u90a3\u91cc": 1, "\u505c\u4e0b": 3, "\u4e0d": 2, "\u505c": 5, "\u751a\u9ebc": 1, "\u8b93": 1, "\u505c\u4f4f": 1, "\u963b\u6b62": 4, "\u5df4\u58eb\u7ad9": 1, "\u96e2": 1, "\u4f86": 1, "\u516c\u4ea4\u8f66\u7ad9": 1, "\u7d55\u4e0d": 1, "\u4f1a\u8bd5": 1, "\u7740": 1, "\u963b\u6321": 1}, "across": {"\u5c31": 1, "\u5c0d": 6, "\u9762": 4, "\u5728": 1, "\u5c0d\u9762": 6, "\u904e": 7, "\u7684": 1, "\u6e21\u6cb3": 2, "\u524d": 1, "\u9032": 1, "\u90fd": 1, "\u80fd": 1, "\u8072\u97f3": 1, "\u6cb3\u5c0d\u9762": 1}, "street": {"\u5728": 4, "\u8857": 7, "\u8857\u9053": 3, "\u99ac": 2, "\u7684": 1, "\u8def\u4e0a": 1, "\u8857\u4e0a": 4, "\u5f9e": 1, "\u671b\u51fa\u53bb": 1, "\u689d\u8857": 1, "\u8f49": 1, "\u6cbf\u7740": 1}, "oranges": {"\u6a59\u5b50": 4, "\u67f3\u6a59": 3, "\u6a58\u5b50": 3, "\u52dd": 1, "\u904e": 1}, "spices": {"\u9019\u5bb6": 1, "\u9999\u6599": 1}, "variety": {"\u5404\u7a2e": 3}, "feeling": {"\u611f\u89c9": 8, "\u89c9\u5f97": 4, "\u597d\u4e9b": 1, "\u611f\u89ba": 3, "\u9ede": 1, "\u65e9": 1, "\u4e00\u7a2e": 1, "\u8212\u670d": 4, "\u597d\u591a": 2, "\u4e0d": 2, "\u90a3\u7a2e": 1, "\u4e0d\u7981": 1, "\u96e3": 1, "\u904e": 1, "\u65e9\u6668": 1, "\u611f\u89c9\u826f\u597d": 1, "\u611f\u53d7": 1, "\u65e9\u5c31": 1, "\u6709\u611f": 1, "\u89ba\u5230": 1, "\u6ca1\u4ec0\u4e48": 1, "\u8eab\u4f53": 1, "\u4e0d\u9002": 1}, "tell": {"\u544a\u8bc9": 44, "\u544a\u8a34": 45, "\u8bf4": 14, "\u522b\u8ddf\u6211": 1, "\u544a\u53d1": 1, "\u8be5": 3, "\u6709\u4ef6": 2, "\u8ddf": 1, "\u4e8b\u60c5": 2, "\u6211": 1, "\u4e5f": 1, "\u6211\u4ec0\u9ebc": 1, "\u5fc5\u8981": 1, "\u4f1a": 1}, "now": {"\u73fe\u5728": 80, "\u73b0\u5728": 94, "": 12, "\u5df2\u7ecf": 1, "\u600e\u4e48\u529e": 1, "\u6b63\u5728": 1, "\u77e5\u9053": 1, "\u60f3\u8981": 1}, "home": {"\u5728\u5bb6": 53, "\u56de\u5bb6": 74, "\u88e1": 15, "": 1, "\u56de\u5bb6\u5427": 3, "\u559c\u6b22": 1, "\u5bb6": 14, "\u6211": 2, "\u5f85": 1, "\u4f60": 1, "\u5c31": 2, "\u5bb6\u91cc": 1, "\u56de\u5230": 1, "\u5927\u5bb6": 1, "\u5979": 1, "\u521a\u624d": 1, "\u843d": 1, "\u60f3": 1}, "besides": {"\u9664\u4e86": 2, "\u548c\u739b\u4e3d": 1, "": 1, "\u90a3\u513f": 1, ",": 1, "\u4e00\u4e2a": 1}, "and": {",": 87, "\u548c": 156, "": 5, "\u5728": 1, "\u7f8e\u570b": 1, "\u767d\u8272": 1}, "one": {"\u91cc": 1, "\u4eba": 48, "\u4e00\u500b": 21, "\u4e00\u4e2a": 15, "\u5c31\u662f": 4, "": 4, "\u6709\u4eba": 1, "\u4e4b\u4e00": 3, "\u627e": 1, "\u529e": 1, "\u64cd\u4f5c": 1, "\u501f": 1, "\u5c31": 1, "\u4ed6\u4eec": 1}, "package": {"\u628a": 2, "\u4e00\u500b": 2, "\u5305\u88f9": 5, "\u814b\u4e0b": 1, "\u6536\u5230": 1, "\u5bc4": 1, "\u5230": 1, "\u5e2e": 1, "\u8fd9": 1, "\u633e\u8457": 1}, "servants": {"\u8ba9": 1, "\u4ec6\u4eba": 1, "\u4eec": 1, "\u4e0b": 1, "\u8fdb\u9910": 1}, "dark": {"\u9ed1\u6697": 2, "\u5929\u9ed1": 5, "\u4ee5": 2, "\u51fa\u9580": 3, "\u9ed1\u8272": 1, "\u592a\u6697": 2, "\u4e0d\u80fd": 1, "\u6697": 1, "": 1, "\u6211\u4ec0\u9ebc": 1, "\u7121\u6cd5": 1, "\u5929\u6697": 2, "\u4e2d": 1}, "far": {"\u96e2": 3, "\u4f60\u5bb6": 1, "\u5f88": 1, "\u9060": 7, "\u8fc7\u706b": 1, "\u5f88\u591a": 1, "\u79bb": 6, "\u5f88\u9060": 3, "\u5230": 4, "\u76ee\u524d\u4e3a\u6b62": 1, "\u8fdc": 10, "\u6709": 7, "\u591a": 7, "\u5f88\u8fdc": 1}, "mahjong": {"\u600e\u9ebc": 1, "\u9ebb\u5c07": 1, "\u9ebb\u5c06": 1}, "wallet": {"\u6389": 2, "\u94b1\u5305": 8, "\u9322": 4, "\u5305": 4, "\u4e86": 1, "\u6ca1\u94b1": 1}, "substituted": {"\u5b50\u627f\u7236\u4e1a": 1}, "said": {"\u8bf4": 59, "\u8aaa": 48, "\u7684\u8bdd": 5, "\u201d": 2, "\u8fd9\u8bdd": 1, "\u4f60": 1, "\u90a3\u8a71": 2, "\u5c0d": 2, "\u8a71": 4, "\u8fc7": 3, "\u5979": 1, "\u4f46": 1, "\u95f4": 1, "\"": 1}, "suggestion": {"\u4f1a": 1, "\u8003\u8651": 1, "\u95ee\u9898": 1}, "believe": {"\u76f8\u4fe1": 51, "\u4fe1": 3, "\u4e0d\u4fe1": 2, "\u65e0\u6cd5": 4, "\u4fe1\u4efb": 1, "": 3, "\u4ecd\u65e7": 1, "\u5c45\u7136": 1, "\u8fd9\u79cd": 1, "\u4e8b": 1, "\u771f\u662f": 1, "\u4e0d\u6562\u76f8\u4fe1": 2, "\u8981": 2, "\u8a71": 1, "\u5e76": 1, "\u4e5f": 1, "\u505a\u5230": 1, "\u624d": 1}, "deserve": {"\u7684": 2, "\u662f": 1, "\u5e94\u5f97": 1, "\u4e0d\u914d": 1}, "Waitress": {"\u670d\u52a1\u751f": 1, "": 1, "\u6211": 1}, "Please": {"\u8bf7": 72, "\u8acb": 123, "\u9ebb\u7169": 1, "\u60a8": 1, "\u4f60": 1, "": 2}, "call": {"\u6253\u7535\u8bdd": 9, "\u8ba9": 1, "\u7ed9": 9, "\u53eb": 9, "\u4f86": 1, "\u6253": 20, "\u7535\u8bdd": 3, "\u96fb\u8a71": 14, "\u7d66": 9, "\u6211": 1, "\u53ef\u4ee5": 1, "": 3}, "Japan": {"\u65e5\u672c": 67, "": 1, "\u5f88": 1, "\u975e\u5e38": 1, "\u73b0\u5728": 1}, "longest": {"\u6700\u957f": 2, "\u65f6\u95f4": 1}, "tunnel": {"\u96a7\u9053": 2, "\u9019\u689d": 1, "\u689d": 1, "\u5169\u500d": 1}, "Mary": {"\u548c\u739b\u4e3d": 14, "\u739b\u4e3d": 150, "\u746a\u9e97": 86, "\u5c31": 1, "\u6284": 1, "\u83b7\u5f97": 1, "\u4e0d\u60f3": 1, "Mary": 5, "\u5750\u5230": 1, "": 4, "\u4f60": 1}, "hungry": {"\u997f": 6, "\u7740": 1, "\u5462": 1, "\u9913": 8, "\u56de\u5230": 1, "\u611f\u89c9": 1, "\u9577\u9014": 1}, "must": {"\u5fc5\u9808": 27, "\u8be5": 7, "": 3, "\u4e00\u5b9a": 26, "\u80af\u5b9a": 2, "\u5fc5\u987b": 22, "\u73fe\u5728": 1, "\u5e94\u8be5": 3, "\u8981": 4, "\u4ed6": 1}, "knew": {"\u4ee5\u5916": 3, "\u4efb\u4f55\u4eba": 5, "\u77e5\u9053": 36, "\u8fd9\u4e48": 6, "\u8ab0": 1, "\u8a8d\u8b58": 1, "\u746a\u9e97\u6703": 1, "\u610f\u8bc6": 1}, "Everybody": {"\u90fd": 31, "\u6bcf\u4e2a": 11, "\u4eba": 22, "\u6bcf\u500b": 8, "\u5411": 1, "\u5927\u5bb6": 7, "\u9047\u5230": 1, "\u56f0\u96be": 1}, "did": {"\u6ca1": 35, "\u505a": 48, "\u6ca1\u6709": 24, "\u6c92": 28, "\u6c92\u6709": 26, "": 11, "\u751a\u9ebc": 3, "\u600e\u4e48": 5, "\u4ec0\u9ebc": 4, "\u77e5\u9053": 1, "\u4f60": 1, "\u4f46\u662f": 4, "\uff1f": 1, "\u4ec0\u4e48": 1, "\u8fc7": 1, "\u70ba": 1, "\u4ed6": 1}, "river": {"\u8fd9\u6761": 2, "\u6cb3\u91cc": 4, "\u6cb3": 19, "\u689d": 2, "\u6cb3\u6d41": 3, "\u6cb3\u88e1": 9, "\u9019\u689d": 7, "\u4e00\u689d": 2, "\u4e7e": 1}, "swim": {"\u6e38\u6cf3": 54, "\u6e38": 8, "\u4e0d\u4f1a": 6, "\u6703": 9, "\u6e38\u5f97": 4, ",": 1}, "safe": {"\u5b89\u5168": 11, "\u786e\u4fdd": 1, "\u60a8": 1, "\u5c31\u662f": 1, "\u4fdd\u9669\u67dc": 2, "\u91cc": 2, "\u628a": 1, "\u4fdd\u5b58": 1, "\u5b58\u70b9": 1, "\u653e\u5165": 1, "\u4fdd\u96aa\u6ac3": 1}, "Perseverance": {"\u5c31": 1, "\u4f60\u4eec": 1, "\u90a3\u6837": 1, "": 1, "\u6210\u529f": 1}, "success": {"\u6bc5\u529b": 1, "\u6210\u529f": 20, "\u795d\u4f60\u6210\u529f": 1, "\u5f97": 1, "\u65bc": 1}, "reverse": {"\u548c": 1, "\u8981\u6c42": 1, "\u76f8\u53cd": 1}, "tomorrow": {"\u660e\u5929": 164, "\u4f1a\u6765": 1, "": 6, "\u4e0d": 1, "\u5c07": 1}, "afternoon": {"\u4e0b\u5348": 21, "\u6703\u4f86": 1, "\u4eca\u5929\u4e0b\u5348": 18, "\u6703": 2, "\u6574\u4e2a": 2, "": 3}, "may": {"\u53ef\u80fd": 37, "": 7, "\u4e5f": 1, "\u8bf7\u95ee": 1, "\u4e0d\u59a8": 1, "\u53ef\u4ee5": 12, "\u60a8": 1, "\u5e76": 1}, "Sundays": {"\u661f\u671f\u5929": 9, "": 2, "\u5468\u65e5": 3, "\u90fd": 2, "\u9031\u65e5": 3, "\u661f\u671f\u65e5": 5, "\u4e26": 3, "\u4e0d\u5fc5": 1, "\u5916": 1, "\u6642\u5019": 1, "\u4ece\u4e0d": 1, "\u5f9e": 1, "\u524d": 1}, "account": {"\u8003\u8651": 2, "\u6211\u4eec": 1, "\u5fc5\u987b": 1, "\u5f00": 1, "\u8d26\u6237": 2, "\u4e00\u4e2a": 1, "\u5e10\u53f7": 1, "\u7559\u4e0b": 1, "\u5230": 1, "\u89e3\u91ca": 1, "\u90a3\u4e2a": 1}, "make": {"\u505a": 12, "\u72af\u932f": 1, "\u8b93": 12, "\u8ba9": 7, "\u6211\u4f1a": 1, "\u8981": 2, "\u5730": 1, "\u8cfa": 1, "\u591a\u4e00\u9ede": 1, "\u505a\u597d": 1, "\u4e0d\u8981": 1}, "Father": {"\u7238\u7238": 2, "\u7236\u4eb2": 3, "\u7236\u89aa": 3, "\u70ba": 1, "\u95dc": 1, "\u5f8c": 1, "\u624d": 1}, "recovered": {"\u6062\u590d": 2, "\u91cd\u611f\u5192": 1, "\u4e2d": 1, "\u8fc7\u6765": 1}, "health": {"\u5065\u5eb7": 19, "\u4e0d\u7528\u8bf4": 1, "": 1, "\u5bf9": 3}, "fluffy": {"\u6761": 1, "\u84ec\u677e": 1, "": 2}, "towel": {"\u6bdb\u5dfe": 6, "\u6ca1\u8d77": 1, "\u4f5c\u7528": 1, "\u62ff": 1, "\u5757": 1, "\u8fc7\u6765": 1, "\u4e0d": 1, "\u5e72": 1, "\u4e00\u689d": 2, "\u6d74\u5dfe": 1}, "soft": {"\u53c8": 4, "\u67d4\u8f6f": 1, "\u5f88": 2, "\u8f6f": 1, "\u6478\u6478": 1, "\u611f\u89c9": 1, "\u4e00\u4e0b": 1, "\u771f\u7684": 1, "\u7559\u8457": 1}, "wishes": {"\u7b79\u5212": 1, "\u65f6\u5019": 1, ",": 1, "\u8003\u8651": 1, "\u5168\u5bb6\u4eba": 1, "\u5e0c\u671b": 3}, "trip": {"\u65c5\u884c": 16, "\u65c5\u6e38": 3, "\u53bb": 2, "\u65c5\u9014\u6109\u5feb": 1, "\u7d55\u597d": 1, "\u7ed3\u675f": 1, "\u5199": 1, "\u6709": 1, "\u95dc": 1, "\u6109\u5feb": 1}, "subject": {"\u54ea": 1, "\u4e00\u500b": 1, "\u79d1\u76ee": 5, "\u8a66\u5716": 1, "\u8a71\u984c": 1, "\u4f1a": 1, "\u4e3b\u9898": 1}, "think": {"\u8ba4\u4e3a": 59, "\u89c9\u5f97": 69, "\u8a8d\u70ba": 75, "\u60f3\u6cd5": 2, "": 6, "\u60f3": 31, "\u89ba\u5f97": 10, "\u5982\u4f55": 4, "\u4f46": 1, "\u4f60": 1}, "find": {"": 3, "\u627e\u5230": 23, "\u5e6b": 1, "\u627e": 17, "\u4e0d\u5230": 10, "\u767c\u73fe": 1, "\u77e5\u9053": 1, "\u4e50\u961f": 1, "\u4f46": 1, "\u537b": 1, "\u600e\u6837\u624d\u80fd": 1, "\u67e5\u660e": 1, ",": 1}, "really": {"\u771f\u7684": 67, "\u5f88": 23, "\u771f": 10, "\u771f\u4e0d": 1, "\u975e\u5e38": 6, "\u771f\u662f": 5, "\u597d": 1, "": 3, "\u6765": 1, "\u771f\u6b63": 1, "\u8d70": 1}, "wants": {"\u60f3": 28, "\u60f3\u8981": 18, "\u5e0c\u671b": 1, "\u5c31\u662f": 2, "\u627e": 1, "\u4f86\u8b80": 1, "\u7279\u522b": 1, "\u60f3\u53bb": 1, "\u660e\u767d": 2}, "lose": {"\u6e1b\u80a5": 1, "\u5931\u53bb": 8, "\u62e5\u6709": 1, "\u53ef\u80fd": 1, "\u4f1a": 2, "\u8f93": 2, "\u8f38": 1, "\u770b\u8d77\u6765": 1, "\u50cf\u662f": 1, "\u5c06": 1}, "Let": {"\u8b93": 75, "\u6211\u5011": 53, "\u5427": 63, "\u6211\u4eec": 30, "\u8ba9": 33, "\u8fdb\u53bb": 2, "\u60f3\u4e00\u60f3": 2, "\u8d70": 1, "\u53bb": 1, "": 2, "\u4f11\u606f": 1, "\uff01": 1}, "kissed": {"\u4eb2": 2, "\u4e86": 5, "\u4eb2\u543b": 3, "\u4e0d\u6562\u76f8\u4fe1": 1}, "cheek": {"\u8138\u988a": 3, "\u543b": 1, "\u4e00\u4e0b": 1}, """: {"\u201c": 53, "": 53, "\u63a5": 2, "\u5417": 1, "\uff1f": 1, "\uff1a": 1, "\u300c": 1, "\u201d": 26, "\u4ed6": 1, "\"": 24, "\u5403": 1, "\u7684": 1, "\u4e0a": 1, "\u6c64\u59c6": 1, "\u7740": 1, "\u8bf4": 1, "\u77e5\u9053": 1, "\u4e3b\u610f": 1, "\u9762\u5305": 1, "\u9ad8\u547c": 1, "\u91d1\u94b1": 1, "\u4e0b\u73ed": 1, "\u559d\u676f": 1, "\u6211": 5, "\u8c22\u8c22": 2, "\u5152": 1, "\u6703": 2, "\u5728": 1, "\u670b\u53cb\u5bb6": 1, "\u4f60": 1, "\u54b1\u5011": 1, "\u770b": 1, "\u597d\u5947": 1}, "ringing": {"\u7535\u8bdd\u54cd": 3, "\u201c": 2, "\u6211": 2, "\u6b63\u5728": 1, "\u97ff": 1}, "If": {"\u5982\u679c": 83, "\u6211": 2, "": 36, "\u7684\u8bdd": 23, "\u6bcf\u500b": 1, ",": 3, "\u90a3": 1, "\u4f60": 3, "\u5c31": 8, "\u7684": 1, "\u95ee\u9898": 1, "\u8981\u662f": 2, "\u90a3\u4ed6": 1, "\u5176\u4e2d": 1}, "were": {"\u662f": 33, "\u4e86": 36, "\u4e0d\u7528": 2, "\u5728": 9, "\u88ab": 6, "\u4e0d": 2, "\u4e4b\u524d": 1, "\u5f88": 1, ",": 2, "\u597d\u50cf": 1, "\u8033\u6735": 1, "\u4f60": 1, "\u4e0d\u9519": 1, "\u7814\u7a76": 1, "\u4ed6": 1}, "follows": {"\u670d\u4ece\u547d\u4ee4": 1, "\u7121\u8ad6": 1, ",": 1, "\u7684": 1, "\u72d7": 1}, "around": {"\u5728": 10, "\u5468\u570d": 4, "\u9644\u8fd1": 5, "\u5230": 3, "\u8655": 1, "\u6ca1\u6709": 1, "": 1, "\u56db\u8655": 1, "\u662f": 1, "\u8a31\u591a": 1}, "kind": {"\u65c1\u8fb9": 1, "\u5e94\u8be5": 1, "\u63a5\u89e6": 1, "\u9019\u7a2e": 1, "\u54ea\u79cd": 2, "\u4ec1\u6148": 1, "\u597d": 3, "\u4e00\u70b9": 2, "\u771f\u597d": 2, "\u6709\u70b9": 2, "\u89aa\u5207": 1, "\u5927\u65b9": 1, "": 1, "\u501f\u4e86": 1, "\u8fd9\u79cd": 2, "\u4ec0\u9ebc\u6a23": 3, "\u771f\u662f": 1, "\u8fc7\u5f97": 1, "\u8270\u96be": 1, "\u7c7b\u578b": 1, "\u53ef": 1, "\u9592": 1, "\u7a7a": 1, "\u4e2a": 1, "\u597d\u5b69\u5b50": 1, "\u4eba": 1, "\u4ec0\u4e48\u6837": 1, "\u4f60\u8001": 1, "\u505a\u4e0d\u4e86": 1, "\u53cb\u597d": 2, "\u5f88": 1, "\u56e0\u70ba": 1}, "when": {"\u65f6\u5019": 55, ",": 43, "\u7576": 24, "\u6642\u5019": 31, "\u65f6": 6, "\u4ec0\u4e48": 7, "\u4ee5\u53ca": 1, "\u5230": 1, "\u6642": 6, "": 1, "\u4ed6": 1, "\u7684": 1, "\u5c31": 2, "\u4e0a\u6b21": 1, "\u6211": 1, "\u90a3": 1, "\u662f": 1}, "say": {"\u4e0d": 1, "\u8bf4": 41, "\u8aaa": 41, "\u4e5f": 1, "\u201c": 1, "\u201d": 1, "\u4ec0\u9ebc": 3, "\u8a71": 5, "\u62d2\u7edd": 1, "\u4e9b": 2, "\u8fd9\u4e48": 1, "\u8981\u8bf4": 3, "\u597d": 1, "\u6309": 1, "": 1, "\u90fd": 1, "\u8ddf": 1, "\u8bf4\u4e0d": 1, "\u5b9e\u9645\u4e0a": 1, "\u7d93\u5e38": 1}, "thing": {"\u8bf4": 1, "\u4e8b": 15, "\u53ef\u6015": 1, "\u4e8b\u60c5": 4, "\u4ef6": 2, "\u9a7e\u9a76": 1, "\u73a9\u610f\u513f": 1, "\u770b\u70b9": 1, "\u597d\u4e66": 1, "\u597d\u4e8b": 2, "\u80fd": 1, "\u8bb0": 1, "\u4e00\u4ef6": 2, "\u505a": 1, "\u60f3\u5230": 1}, "meaning": {"\u60a8": 2, "\u610f\u601d": 10, "\u4e3a": 1, "\u628a": 1, "\u8b1b": 1, "\u6e05\u695a": 1, "\u8bb0\u4e0d\u8d77": 1, "\u67e5": 1}, "word": {"\u8bcd": 8, "\u9019\u500b": 1, "\u7ffb\u8b6f": 1, "\u65e5\u6587": 1, "\u8bf4\u53e5\u8bdd": 1, "\u8fd9\u4e2a": 3, "": 1, "\u800c\u4e14": 1, "\u90fd": 1, "\u4e0d": 1, "\u4e00\u53e5": 2, "\u6574\u6574": 1, "\u4e0a\u5348": 1, "\u8bdd": 1, "\u548c": 1, "\u4fdd\u8bc1": 2, "\u5411": 1}, "Could": {"\u80fd": 41, "\u55ce": 38, "\u5417": 25, "\u53ef\u4ee5": 9, "\u60a8": 4, ".": 1, "": 2, "\u597d": 1, "\u89e3\u91ca": 1}, "where": {"\u5728": 21, "\u54ea\u88e1": 20, "\u54ea\u91cc": 17, "\u5730\u65b9": 5, "\u54ea": 7, "\u54ea\u513f": 5, "": 5, "\u4ed6": 2, "\u4f60": 2, "\u8981": 1, "\u77e5\u9053": 1, "\u6765\u81ea": 1, "\u706b\u8eca": 1, "\u7ad9": 1, "\u7684": 1, "\u5f80": 1}, "over": {"\u904e\u4f86": 1, "\u770b": 1, "\u4e86": 36, "\u8003\u616e": 1, "\u4e00\u4e0b": 2, "\u7d50\u675f": 2, "\u904e": 1, "\u6709\u7a7a": 1, "\u90a3\u908a": 2, "\u539f\u8c05": 1, "\u4fe1\u8bfb": 1, "\u4e00\u904d": 2, "\u53c8": 1, "\u590d\u539f": 1, "\u57ab\u5b50": 1, "": 1, "\u8acb": 1}, "try": {"\u8a66\u8a66": 4, "\u8bf4": 1, "\u8bd5\u8bd5": 9, "\u8bd5\u4e00\u4e0b": 2, "\u8a66": 4, "\u4e00\u6b21": 1, "\u8fd9\u4e8b": 1, "\u4e0d\u60f3": 1, "\u52aa\u529b": 2, "\u8a66\u7a7f": 1, "\u8a66\u8457": 2, "\u4e00\u4e0b": 1, "\u6765": 3, "\u8bd5\u56fe": 1, "\u8bd5": 1, "\u4f1a\u6765": 1, "\u5c3d\u91cf": 1, "\u5c1d\u8bd5": 2, "\u5e2e": 1}, "Would": {"\u53ef\u4ee5": 6, "\u4e00\u4e0b": 1, "\u55ce": 57, "?": 24, "\u9ede": 3, "\u4f86": 2, "\u559d": 1, "\u6703": 1, "\u4ecb\u610f": 1, "\u80fd": 1, "\u60f3": 1, "\u597d": 3, "\u8981": 1, "\u613f\u610f": 2, "": 1}, "cat": {"\u8c93": 4, "\u732b": 21, "\u4e00\u53ea": 2, "\u4e0a\u6709": 1, "\u53ea": 1, "\u96bb": 2, "\u8eca": 1, "": 2, "\u627e": 1, "\u4e00": 1}, "why": {"\u70ba": 18, "\u4ec0\u9ebc": 12, "": 2, "\u4e3a\u5565": 1, "\u8fd9\u4e48": 1, "\u4e3a\u4ec0\u4e48": 19, "\u5411": 1, "\u89e3\u91ca": 1, "\u8fd9": 1, "\u770b\u4e0d\u51fa": 1, "\u627e\u51fa": 1, "\u539f\u56e0": 1, "\u751a\u9ebc": 6, "\u77e5\u9053": 1}, "turn": {"\u6389\u5934": 1, "\uff01": 1, "\u4ea4": 1, "\u62d0": 1, "\u5f4e": 1, "\u8f2a\u5230": 3, "\u60a8": 3, "\u628a": 10, "\u5f00": 1, "\u5c0f\u58f0": 1, "\u4e00\u70b9": 1, "\u51fa\u73fe": 1, "\u5173\u6389": 2, "\u4f60": 1, "\u5173\u4e86": 1, "\u5c06": 1, "\u8f49": 1, "\u5c0f\u8072": 3, "\u4e00\u9ede": 3, "\u6a5f\u95dc": 2, "\u5173\u95ed": 2, "\u95dc\u6389": 1, "": 1}, "dress": {"\u4e00\u4ef6": 5, "\u597d\u770b": 3, "\u8863\u670d": 11, "\u5f9e": 1, "\u54ea\u5152": 1, "\u5f04\u4f86": 1, "\u90a3\u4ef6": 3, "\u88d9\u5b50": 6, "\u6d0b\u88dd": 4, "\u7a7f": 2, "\u7a7f\u8457": 2, "\u9019\u4ef6": 1, "\u6e6f\u59c6\u5e73": 1, "\u7a7f\u8863\u670d": 1}, "dogs": {"\u72d7": 20, "\u8a13\u7df4": 1, "\u4e09": 1, "\u96bb": 1}, "alive": {"\u6d3b\u7740": 5, "\u4f9d\u65e7": 2, "\u5145\u6ee1\u6d3b\u529b": 2, "\u4e00\u76f4": 2, "\u90fd": 1, "\u6d3b": 3, "\u6d3b\u8457": 2, "\u53ef\u80fd": 1, "\u8fd9\u6761": 1, "\u6211": 1, "\u6240\u6709\u4eba": 1}, "drive": {"\u958b\u8eca": 22, "\u5b78": 2, "\u6211\u4f1a": 2, "\u5f00\u8f66": 13, "\u4f1a": 3, "\u515c\u98a8": 2, "\u6703": 6, "\u8f09": 2, "\u5f00": 2, "\u9001": 3, "\u80fd\u8f09": 1, "\u53ef\u4ee5": 1, "\u628a": 1, "\u958b": 1}, "lake": {"\u5230": 1, "\u6e56\u908a": 1, "\u6e56": 7, "": 1, "\u9760\u8fd1": 1, "\u6e56\u91cc": 2, "\u5c3d\u60c5": 1, "\u6e56\u4e0a": 1, "\u6e56\u88e1": 2, "\u6cb3\u8fb9": 1}, "Clean": {"\u6253\u626b": 1, "\u4e00\u4e0b": 1, "\u6536\u62fe": 1, "\u6253\u6383": 1, "\u6e05": 1, "\u6383": 1}, "subtle": {"\u8fd9": 1, "\u4e24\u5f20": 1, "\u56fe\u7247": 1, "\u7ec6\u81f4": 1, "\u5dee\u5f02": 1}, "between": {"\u4e4b\u95f4": 7, "\u4e4b\u9593": 4, "\u6211\u4eec": 1, "\u79d8\u5bc6": 1, "\u201c": 2, "\u201d": 2, "\u6709": 1, "\u597d\u574f\u4e0d\u5206": 1, "\u5176\u4e2d": 1}, "innocent": {"\u662f": 1, "\u6e05\u767d": 2, "\u65e0\u8f9c": 2, "\u770b\u4e0a\u53bb": 1, "\u90a3\u6837": 1, "": 1, "\u4ed6": 1}, "bit": {"\u4e00\u9ede": 4, "\u54ac\u4e86\u4e00\u53e3": 1, "\u8b8a\u597d": 1, "\u72d7": 1, "\u4e00\u70b9": 3, "\u54ac": 1, "\u7a97\u6237": 1, "\u8fd9": 1, "\u6709": 3, "\u9ede": 2, "\u4e5f": 1, "\u7a0d\u5fae": 1, "\u70b9\u513f": 1, "\u4e0d\u8981\u7d27": 1, "\u597d": 1, "\u6709\u70b9\u50cf": 1, "\u4e0d\u9069": 1}, "least": {"\u4e5f": 1, "\u7684\u8bdd": 1, "\u6839\u672c": 1, "\u6beb\u65e0\u610f\u4e49": 1, "\u81f3\u5c11": 5, "\u4e00\u5343\u672c": 1, "\u4ed6": 1, "\u5199\u4fe1": 1}, "worried": {"\u64d4\u5fc3": 10, "\u62c5\u5fc3": 6, "\u611f\u5230": 1, "\u61c9\u8a72": 1, "\u8981": 3, "Tom": 1, "\u70ba": 1, "\u505a": 1, "\u6c92\u4eba\u61c9": 1, "\u8b66\u5bdf": 1}, "surprised": {"\u5f88": 9, "\u9a5a\u8a1d": 2, "\u4e0d\u4f1a": 1, "\u5403\u60ca": 4, "\u60ca\u8bb6": 7, "\u611f\u5230": 2, "\u60ca\u559c": 1, "\u5bf9": 2, ",": 2, "": 1, "\u5c45\u7136": 1, "\u5e76": 1, "\u4f60": 1, "\u5e94\u8be5": 1, "\u90fd": 1}, "showed": {"\u51fa\u73fe": 1, "\u7d66": 5, "\u770b": 8, "\u9818": 1, "\u5230": 2, "\u521a\u597d": 1}, "yesterday": {"\u6628\u5929": 127, "": 1}, "came": {"\u6765": 13, "\u4e00\u4f86": 1, "\u4e86": 35, "\u4f86": 11, "\u521a\u597d": 1, "\u6d6e\u73b0": 1, "\u8b66\u5bdf": 1, "\u7ed3\u679c": 1, "": 1, "\u4ed6": 1, "\u670b\u53cb": 1, "\u5979": 1, "\u9032\u4f86": 1, "\u5230": 3, "\u56de\u4f86": 1, "\u6642\u5019": 1, "\u5c31": 1, "\u4e00\u500b": 1, "\u60f3\u51fa": 1}, "dinner": {"\u5403\u665a\u996d": 1, "\u5403": 15, "\u665a": 16, "\u98ef": 18, "\u665a\u996d": 11, "\u665a\u9910": 13, "\u6b63\u9910": 1, "\u4e0d\u5403": 1, "": 1, "\u4f60": 1, "\u60f3": 1, "\u4f5c": 1, "\u51e0\u70b9": 1}, "Stay": {"\u522b": 3, "\u63d2\u624b": 1, "\u8fdb": 2, "\u5f85": 2, "\u539f\u5730": 1, "\u7559\u5728": 3, "\u5427": 1, "\uff01": 1, "\u8fd9\u91cc": 1, "\u522b\u52a8": 1, "\u8db4\u7740": 1, "\u8eb2\u96e8": 1, "\u522b\u7ba1": 1, "\u8fd9": 1}, "none": {"\u8ddf": 3, "\u6ca1": 3, "\u534a": 4, "\u6bdb\u94b1": 3, "\u5173\u7cfb": 3, "\u4efb\u4f55": 1, "\u4e00\u4f4d": 1, "\u4e0d\u95dc": 2, "": 1, "\u4e0d\u662f": 1}, "Here": {"\u8fd9": 5, "\u9019\u88e1": 7, "\u9019": 1, "\u4ee5\u4e0b": 1, "\u5230": 1, "\u8fd9\u513f": 2, "\u6211": 1, "\u5403\u665a\u996d": 1, "\u8fd9\u91cc": 1, "\u6709\u4e2a": 1, "\u6beb\u7121": 1, "\u5e0c\u671b": 1, "": 2}, "tea": {"\u8336": 23, "\u559d\u8336": 4, "\u7ed9": 4, "\u8336\u6c34": 2, "\u6c8f\u8336": 1, "\u9700\u8981": 1, "\u8981\u70b9": 1, "\u4e00\u676f": 1, "\u6c8f": 1, "": 1, "\u904e": 1}, "interview": {"\u9762\u8a66": 2, "\u6642\u5019": 1, "\u5fc5\u9808": 1, "\u898b": 1, "\u6a5f": 1, "\u884c\u4e8b": 1, "\u600e\u9ebc\u6a23": 1}, "hospital": {"\u91ab\u9662": 18, "\u6240\u5728": 1, "\u533b\u9662": 8, "\u53bb": 2, "\u5ba4": 1, "\u5c31": 1, "\u73b0\u5728": 1}, "looking": {"\u627e": 28, "\u6b63\u5728": 10, "\u5c0b\u627e": 1, "\u525b\u624d": 1, "\u5728": 13, "\u770b": 4, "\u5728\u770b": 3, "\u8fd9\u4e9b": 1, "\u5c31\u662f": 1, "\u770b\u8457": 1, "\u96a8\u4fbf": 1, "\u770b\u770b": 1}, "Roman": {"\u5173\u4e8e": 1, "\u53e4\u7f57\u9a6c": 1}, "history": {"\u5386\u53f2": 6, "\u4fee\u8bfb": 1, "\u5386\u53f2\u4e66\u7c4d": 1, "\u82f1\u56fd": 1, "\u70ba": 1, "\u4ec0\u9ebc": 1, "\u6b77\u53f2": 4}, "books": {"\u4e66": 16, "\u66f8": 22, "\u6bd4\u746a\u9e97": 1, "\u591a": 5, "\u61c9": 2, "\u518c": 1, "\u56fe\u4e66": 1, "\u4e66\u7c4d": 1, "\u8fc7": 1, "\u6709": 1, "\u62e5\u6709": 1, "\u4f60": 1, "\u6ca1\u4e66": 1, "\u53ef\u8bfb": 1, "\u8d8a\u591a": 1, "\u77e5\u9053": 1}, "tennis": {"\u7db2\u7403": 37, "\u6253": 17, "\u7f51\u7403": 14, "\u6253\u7f51\u7403": 11, "\u5176\u4ed6\u4eba": 1}, "ticket": {"\u7968": 18, "\u6211": 1, "\u8a72": 1, "\u5f35": 3, "\u6709\u6548\u671f": 2, "\u51fa\u793a": 1, "\u7968\u5b50": 1, "\u4e00\u5f35": 2, "\u5f20": 3, "\u4e09\u65e5": 2, "\u6709\u6548": 2, "\u518d\u5bc4": 1, "\u9019": 1, "\u552e\u7968": 1}, "stitch": {"\u5c0f\u6d1e": 1, "\u53ca\u6642": 1, "\u88dc": 1, ",": 1, "": 2, "\u514d\u906d": 1, "\u9632\u5fae": 1, "\u675c\u6f38": 1}, "spring": {"\u6625\u5929": 11, "\u548c": 1, "": 2, "\u4eca\u5e74": 1, "\u6625\u5047": 1, "\u653e": 1, "\u4f86": 2}, "Which": {"\u66f4": 2, "\u54ea\u4e2a": 9, "\u54ea": 22, "\u672c": 3, "\u6bd4\u8f03": 1, "\u4f60\u5011": 2, "\u662f": 1, "\u5f80": 1, "\u65b9\u5411": 1, "\u60a8": 1, "\u4e00\u500b": 1}, "year": {"\u53bb\u5e74": 28, "\u4e00\u5e74": 14, "\u4eca\u5e74": 5, "\u660e\u5e74": 14, "": 1, "\u79bb\u5f00": 1}, "San": {"\u820a": 1, "\u91d1\u5c71": 1, "\u770b": 1, "\u9019\u90e8": 1, "\u96fb\u5f71": 1}, "sick": {"\u751f\u75c5": 11, "\u75c5": 10, "\u865a\u5f31": 1, "\u4e00": 2, "\u56e0": 1, "\u81e5\u75c5": 2, "\u6709\u70b9": 1, "\u6076\u5fc3": 1, "\u4e86": 9, "": 1, "\u75c5\u5012": 2, "\u6240\u4ee5": 1, "\u53b2\u5bb3": 1, "\u4ee5\u4e3a": 1}, "hint": {"\u53ef\u4ee5": 1, "\u4e00\u4e2a": 1, "\u63d0\u793a": 1, "\u5417": 1}, "follow": {"\u7121\u8ad6": 3, "\u8ddf\u8457": 4, "\u90fd": 1, "\u9075\u5faa": 1, "\u4f60\u8001": 1, "\u5e2b": 1, "\u807d": 1, "\u5169\u500b": 1}, "go": {"\u53bb": 250, "\u8d70": 40, "\u8981": 4, "\u5c31": 4, "\u8be5": 7, "\u661f\u671f\u5929": 1, "\u6211": 3, "\u8ba9": 1, "\u4f60": 4, "\u6211\u4eec": 2, "\u77e5\u9053": 1, "\u4f60\u5011": 1, "\u4e0a": 1, "\u6700\u597d": 1, "\u548c": 1, "\u4e86": 1, "\u4e0d": 1, "\u8a72": 1, "\u4e00\u8d77": 1, "": 1, "\u66fe": 1}, "matter": {"\u90fd": 5, "\u600e\u4e48": 3, "\u4e0a": 1, "\u95ee\u9898": 5, "\u554f\u984c": 5, "\u8fd9\u4ef6": 3, "\u4e8b": 6, "\u53d1\u751f": 1, "\u6ca1\u5173\u7cfb": 1, "\u91cd\u8981": 2, "\u4e0d\u7ba1": 4, "\u65e0\u8bba": 4, "\u641e\u4e0d\u6e05\u695a": 2, "": 5, "\u95ee": 1, "\u5230\u5e95": 1, "\u600e\u4e48\u56de\u4e8b": 1, "\u561b": 1, "\u600e\u9ebc": 1, "\u65e0\u6240\u8c13": 1, "\u591a\u4e48": 1, "\u7b54\u6848": 1, "\u4e0d": 1}, "business": {"\u4e8b\u513f": 1, "\u4e0d\u95dc": 1, "\u4e8b": 8, "\u7ba1\u9592": 1, "\u8fd9": 1, "\u51fa\u5dee": 7, "\u4ed6": 1, "\u516c\u53f8\u5730\u5740": 1, "\u751f\u610f": 2, "\u6d3d\u5546": 1, "\u56e0\u4e3a": 1, "\u5de5\u4f5c": 1, "\u6211": 1, "\u6d3d": 1, "\u516c": 1, "\u516c\u4e8b": 1, "\u516c\u8fa6": 1}, "spy": {"\u5176\u4e2d": 1, "\u4e00": 1, "\u4eba": 1, "\u9593\u8adc": 1}, "demand": {"\u8981\u6c42": 1, "\u53d6\u6c7a": 1, "\u65bc": 1, "\u4f9b\u7d66": 1, "\u9700\u6c42": 1}, "explanation": {"\u8aaa\u660e": 2, "\u89e3\u91cb": 2, "\u4e26": 1, "\u89e3\u91ca": 1, "\u7406\u7531": 1}, "mine": {"\u7684": 60, "\u6211": 34, "\u662f": 4, "\u9019\u5152": 1, "\u90a3": 1, "": 3, "\u77e5\u9053": 1}, "Somehow": {"\u5c31": 1, "\u77e5\u9053": 1, "\u4f1a": 1, "\u8fd9\u4e48": 1}, "arrive": {"\u4f55\u6642": 1, "\u62b5\u9054": 2, "\u5230": 10, "\u4ec0\u4e48": 2, "\u6700\u5148": 1, "\u4f86": 2, "\u9054": 1, "\u4ec0\u9ebc": 1, "\u65bc": 1, "\u4e0b": 1, "\u500b": 1, "\u73fe\u5728": 1, "\u8981\u5230": 1}, "message": {"\u7559\u8a00": 1, "\u6d88\u606f": 3, "\u53d1": 1, "\u4fe1\u606f": 1, "\u9019\u500b": 1, "\u8fd9": 1, "\u6761": 1, "\u5199": 1}, "smile": {"\u5e2e\u4e0d\u4e86": 1, "": 2, "\u5fae\u7b11": 7, "\u7b11\u5bb9": 2, "\u5411": 1, "\u9762\u5e36": 1}, "that": {"\u90a3\u4e48": 14, "\u662f": 12, "\u90a3\u4e2a": 20, "\u90a3\u500b": 20, "\u90a3\u6a23": 14, "\u90a3": 79, "\u4e0d": 2, "\u90a3\u4ef6\u4e8b": 5, "": 6, "\u8fd9\u4e2a": 4, "\u4fe1": 1, "\u90a3\u4e8b": 11, "\u505a": 1, "\u8fd9\u6837": 2, "\u90a3\u9ebc": 3, "\u5e38": 1, "\u6211": 1, "\u90a3\u6837": 1, "\u544a\u8bc9": 1, "\u7ecf\u5e38": 1, "\u4f46\u662f": 1}, "Canada": {"\u52a0\u62ff\u5927": 10, "\u8ba4\u8bc6": 1, "\uff1a": 1, "\u6765": 1}, "see": {"\u4f86\u770b": 11, "\u770b": 22, "\u898b": 24, "\u89c1": 6, "\u770b\u770b": 20, "\u898b\u5230": 1, "\u89c1\u5230": 11, "\u4f46\u662f": 1, "\u770b\u5230": 13, "\u7559\u610f": 1, "\u60f3\u89c1": 5, "\u7531": 1, "\u6211": 1, "": 2, "\u770b\u898b": 6, "\u6211\u4ec0\u9ebc": 1, "\u771f\u597d": 1, "\u4f60": 1, "\u770b\u5f97\u89c1": 1, "\u770b\u89c1": 1, "\u770b\u4e0d\u5230": 1, "\u8ddf": 1}, "still": {"\u8fd8": 26, "\u9084": 37, "\u4f9d\u7136": 3, "\u8fd8\u662f": 8, "\u4ecd\u7136": 8, "\u7740": 1, "\u4e3a\u793e\u4e48": 1, "\u4f46": 2, "\u5462": 1, "\u4ed6": 1, "": 4, "\u8fd8\u6709": 1}, "father": {"\u7236\u89aa": 69, "\u7238\u7238": 35, "\u7236\u4eb2": 41, "": 2, "\u4ed6": 1, "\u4e0d\u662f": 1}, "bike": {"\u9a0e": 1, "\u81ea\u884c": 3, "\u8eca": 3, "\u8f86": 1, "\u5c71\u5730\u8f66": 1, "\u81ea\u884c\u8f66": 7, "\u4f60": 1, "\u8fd9\u8f86": 1, "\u8173\u8e0f\u8eca": 1}, "missed": {"\u60f3\u5ff5": 3, "\u9519\u8fc7": 8, "\u932f": 4, "\u904e": 4, "\u591a\u9ebc": 1, "\u60f3": 2, "\u7528\u76e1": 1, "\u5168\u529b": 1, "\u4f46": 1, "\u9084": 1, "\u662f": 1, "\u9019": 1, "\u4e00\u73ed": 3, "\u5217\u8f66": 1, "\u6ca1\u6765": 1, "\u4ed6": 1}, "says": {"\u8aaa": 11, "\u8bf4": 26, "\u505a\u5230": 1, "\u4f46\u662f": 1, "\u4e0d\u884c": 1, "\u600e\u6837": 1, "": 1, "\u5979": 1, "\u4ed6": 1, "\u6709\u4e2a": 1}, "Both": {"\u90fd": 10, "\u4e24\u4e2a": 2, "\u5169\u500b": 2, "\u548c\u739b\u4e3d": 2, "\u4eba": 2, "\u4f1a": 1, "\u5f88\u5c0f": 1}, "Australia": {"\u6fb3\u5927\u5229\u4e9a": 19, "\u672c\u8be5": 1, "\u4e0d\u600e\u4e48": 1, "\u6fb3\u6d32": 14}, "grew": {"\u957f\u5927": 3, "\u9577\u5927": 5, "\u6210\u9577": 1, "\u5728": 1, "\u9577": 1, "\u56de": 1, "\u4f86": 1, "\u5c0f\u93ae": 1}, "too": {"\u5f97": 16, "\u592a": 81, "\u4e86": 70, "\u6708": 1, "\u4e5f": 23, "\u9084": 1, "\u6211": 1, "\u6ca1\u6cd5": 1, ",": 6, "\u4e0d\u80fd": 1, "\u90a3\u9ebc": 1, "": 6, "\u6765\u8bf4": 5, "\u7121\u6cd5": 1, "\u89c9\u5f97": 1, "\u4f46": 1, "\u591a": 2, "\u5bf9": 1, "\u7684": 1, "\u592a\u967d": 1, "\u56e0\u4e3a": 1, "\u4e0d\u5f97\u4e0d": 1}, "much": {"\u591a": 43, "\u591a\u5c11": 48, "\u94b1": 7, "\u4e0d\u5e38": 1, "\u5f97": 8, "\u6211": 1, "\u5f88\u591a": 13, "\u592a": 6, "\u9322": 2, "\u4ee5\u524d": 1, "\u8fd9": 1, "\u6bdb\u8863": 1, "\u8981": 1, "\u5e2e\u4e0d\u4e0a": 1, "\u5927\u5fd9": 1, "\u4e0d\u591a": 3, "\u4e00\u6b21\u6027": 1, "\u559d": 1}, "talk": {"\u201d": 1, "\u8c08\u8c08": 5, "\u8ac7\u8ad6": 1, "\u8bf4\u8bdd": 13, "\u8ddf": 29, "\u8aaa": 9, "\u8a71": 10, "\u6211\u4eec": 1, "\u8c08": 6, "\u4e0e": 1, "\u8c08\u8bdd": 1, "\u8ac7\u8a71": 1, "\u548c": 4, "\u8b1b": 3, "\u8fd9\u6837": 1, "\u8bb2\u8bdd": 1, "\u6709\u65f6": 1, "": 2, "\u4f60": 1, "\u8a0e\u8ad6": 1, "\u8bb2": 2, "\u8bf4": 1, "\uff01": 1, "\u8ac7": 2, "\u63d0": 1, "\u6c92\u6709": 2, "\u60a8": 1, "\u4f60\u5011": 1}, "MP3": {"\u4e00\u4e2a": 1, "MP3": 1, "\u64ad\u653e\u5668": 1}, "!": {"\uff01": 97, "\u4f60": 1, "!": 16, "\u6709\u540d": 1, "\u591a": 1, "\u554a": 3, "\u5c31": 1, "\u51fa\u767c": 1, "": 5, "\u632f\u4f5c\u8d77": 1, "\u7740\u706b": 1}, "lives": {"\u4f4f": 35, "\u5728": 15, "\u751f\u6d3b": 5, "\u9694\u58c1": 4, "\u90a3\u9593": 1, "\u4f4f\u8655": 1}, "York": {"\u7ebd\u7ea6": 8, "\u7d10\u7d04": 7, "\u53bb": 5, "\u51fa\u53d1": 1, "\u5230": 1, "\u5bf9": 2, "\u4e86\u5982\u6307\u638c": 2}, "mean": {"\u8ba4\u771f": 1, "\u610f\u601d": 11, "\u660e\u767d": 1, "\u4e0d\u662f\u6545\u610f": 2, "\u8fd9\u4e2a": 2, "\u541d\u556c": 1, "\u8001\u5934": 1, "\u90a3\u6837": 1, "\u51f6": 1, "\u5bf9": 1, "\u5c0f\u6c14": 1, "\u8fd9": 2, "\u61c2": 1, "\u8bf4\u660e": 1, "\u4e0d\u4e86": 1, "\uff01": 1, "\u662f": 1}, "warrior": {"\u6230\u58eb": 1, "\u77e5\u9053": 1, "\u81ea\u5df1": 1, "\u529b\u91cf": 1, "\u5f31\u9ede": 1}, "harmful": {"\u5438\u70df": 1, "\u6709\u5bb3": 1}, "moved": {"\u624d": 1, "\u642c": 1, "\u9032\u4f86": 1, "\u642c\u5230": 3, "\u611f\u52a8": 2, "": 1}, "cheerful": {"\u958b\u6717": 1, "\u500b\u6027": 1, "\u4f7f": 1, "\u89ba\u5f97": 1, "\u5feb\u6a02": 1}, "Scary": {"\u5687": 2, "\u4eba": 1, "": 2}, "back": {"\u56de\u6765": 42, "\u56de\u4f86": 27, "\u8fd8": 2, "\u56de\u53bb": 3, "\u4f60\u4f55": 1, "\u6642\u6703": 1, "\u56de\u5b78\u6821": 1, "\u56de": 3, "\u9084": 1, "\u6e6f\u59c6\u6703": 1, "\u5c0f\u65f6": 1, "\u5f88": 1, "\u628a": 2, "\u6536\u56de": 1, "\u5f8c": 1, "\u5c31": 1, "\u76f4\u5230": 1, "\u6c92\u9322": 1}, "private": {"\u5728": 2, "\u79c1\u7acb\u5b66\u6821": 2, "\u8bfb\u4e66": 3, "\u79c1\u4eba": 1, "\u79c1\u4e0b": 3, "\u79c1\u7acb\u9ad8\u4e2d": 1}, "saw": {"\u770b\u89c1": 19, "\u770b\u898b": 14, "\u770b\u5230": 17, "\u4e86": 9, "\u4f46": 2, "\u537b": 1, "\u898b": 3, "\u800c": 1, "\u5728": 1, "": 1, "\u6211": 1, "\u4ec0\u4e48": 1}, "distance": {"\u8fdc\u5904": 3, "\u6709": 1, "\u706f\u5149": 2, "\u8fd9": 1, "\u5e45\u753b": 1, "\u8fdc": 1}, "satisfied": {"\u6eff\u610f": 5, "\u5c0d": 3, "\u5bf9": 1, "\u6ee1\u610f": 5, "\u90a3\u6761": 1, "\u8ba9": 1, "\u5f88": 3, "\u6eff\u8db3": 1, "\u800c\u8a00": 1, "": 3, "\u6211": 1, "\u771f\u662f": 1, "\u5e76": 1}, "English": {"\u82f1\u8a9e": 84, "\u82f1\u8bed": 47, "": 4, "\u82f1\u6587": 17, "\u8457\u4f5c": 1, "\u6703": 3, "\u6211": 2, "\u4e00\u5c01": 1, "\u6bcd\u8bed": 1, "\u5177\u6709": 1, "\u200b": 1, "\u660e\u663e": 1, "\u5979": 1, "\u5169\u5e74": 1}, "ability": {"\u80fd\u529b": 3, "\u80fd\u5e72": 1}, "Tell": {"\u544a\u8a34": 16, "\u544a\u8bc9": 13, "\u62ff": 1, "\u91cd\u65b0": 1, "\u8ddf": 3, "\u8aaa": 2, "\u600e\u9ebc": 1, "\u60c5\u51b5": 1, "\uff01": 1, "\u8bb2\u8bb2": 1, "\u90a3\u4ef6\u4e8b": 1, "\u591a\u4e00\u9ede": 1, "\u600e\u4e48\u5f04": 1, "\u628a": 1}, "three": {"\u4e09\u500b": 15, "\u4e09\u4e2a": 11, "\u4e09": 6, "\u4e86": 14, "": 1, "\u4e09\u9ede\u9418": 4, "\u4e09\u5c81\u65f6": 2, "\u5f85": 2, "3": 1, "\u4e09\u5c81": 1}, "weeks": {"\u661f\u671f": 1, "\u8fc7": 2, "\u4e24\u5468": 1, "\u51fa\u9662": 1, "\u4e09\u5468": 4, "\u56db\u5468": 1, "\u5185\u4f1a": 1, "\u5bbe\u9986": 1, "\u56e0": 1, "\u5367\u5e8a": 1, "\u9031\u524d": 1, "\u9084": 1, "\u9813\u5f85": 1, "\u6708": 1, "\u518d": 1, "\u4e24": 1, "": 1, "\u5c31": 1, "\u53d8": 1}, "are": {"\u5728": 23, "\u662f": 155, "": 3, "\u8bf7\u95ee": 1, "\u6709": 1, "\u5f88": 1, "\u4f46": 1, "\u73b0\u5728": 1, "\u52a8\u7269": 1, "\u800c": 1, ",": 1}, "reading": {"\u770b": 8, "\u8b80": 16, "\u8bfb\u5b8c": 4, "\u5728\u8bfb": 4, "\u6b63\u5728": 1, "\u4e00\u672c": 2, "\u9605\u8bfb": 7, "\u5728\u770b": 1, "\u54ea": 1, "\u6c92\u8b80": 1, "\u5728": 1, "\u8bfb\u4e66": 2, "\u7ee7\u7eed": 1, "\u7e7c\u7e8c": 1, "\u8b80\u66f8": 1, "\u7528\u4e8e": 1}, "task": {"\u6ca1\u6307\u671b": 1, "\u91cc": 1, "\u5de5\u4f5c": 1, "\u6240\u4ee5": 1, "\u4efb\u52a1": 1, "\u4efb\u52d9": 1}, "expect": {"\u8fc7": 3, "\u5c0d": 2, "\u671f\u671b": 7, "\u6307\u671b": 2, "\u80fd": 1, "\u671f\u5f85": 2, "\u8fd9\u91cc": 1, "\u78b0\u89c1": 1, "\u6ca1\u60f3\u5230": 1, "\u9ad8": 2, "\u8eab\u4e0a": 1, "\u5f97\u5230": 3, "": 1, "\u60f3\u5230": 1, "\u56de\u4fe1": 1, "\u4e0d\u8a72": 1, "\u90a3": 1, "\u6253\u7b97": 1, "\u8ba9": 1, "\u4f46": 1}, "so": {"\u90a3\u4e48": 14, "\u9019\u9ebc": 29, "\u5f97": 4, "": 14, ",": 18, "\u592a": 8, "\u5f88": 1, "\u8fd9\u4e48": 15, "\u5403": 1, "\u591a": 1, "\u9019\u6a23": 2, "\u90a3\u9ebc": 2, "\u6211": 1, "\u4f60": 1, "\u904e": 1, "\u5982\u6b64": 4, "\u90fd": 1, "\u5730": 1, "\u6240\u4ee5": 2, "\u53ef\u4e0d": 1}, "short": {"\u77ed": 5, "\u4e00\u90e8": 1, "\u77ed\u7bc7\u5c0f\u8bf4": 1, "\u7f3a\u94b1": 2, "\u77ed\u6682": 2, "(": 1, ")": 1, "\u7559": 1, "\u77ed\u53d1": 2, "\u592a\u77ee": 2, "\u5167": 1, "\uff1a": 1, "\u300c": 1, "": 1}, "time": {"\u65f6\u95f4": 55, "\u65f6\u5019": 15, "\u6642\u9593": 50, "\u5230": 12, "\u51e0\u70b9": 11, "\u6642\u5019": 12, "\u9192\u4f86": 1, "\u51c6\u65f6": 9, "\u4e00\u6b21": 4, "\u8a72": 4, "\u8fd9\u6b21": 1, "\u73fe\u5728": 1, "\u5e7e\u9ede\u9418": 1, ",": 1, "\u5076\u723e": 3, "\u6211": 1, "\u5e7e\u9ede": 1, "\u5f88": 1, "\u6ca1": 2, "\u628a": 1, "\u96e2\u958b": 1, "\u73a9": 1, "\u958b\u5fc3": 1}, "finish": {"\u5b8c\u6210": 14, "\u5b8c": 4, "\u4e3a\u6b62": 1, "\u5c31": 1, "\u8fd9\u4e2a": 1, "\u82b1\u592a": 1, "\u957f\u65f6\u95f4": 1, "\u4e4b\u524d": 1, "\u628a": 3, "\u4e4b\u5185": 1}, "Tokyo": {"\u6771\u4eac": 13, "\u4e1c\u4eac": 16, "\u4e00\u4e2a": 1, "\u6765\u5230": 1, "\u958b\u5f80": 1, "": 1}, "myself": {"\u81ea\u5df1": 32, "\u4ee3\u8868": 1, "\u81ea\u8a00\u81ea\u8bed": 1, "\u9053": 1, "\u5168": 1, "\u9760": 2}, "woods": {"\u8d70\u9032": 1, "\u6a39\u6797": 2, "\u88e1": 3, "\u68ee\u6797": 2, "\u4e2d": 1, "\u8ff7\u4e86\u8def": 1, "\u6811\u6797": 2, "\u91cc": 2}, "helmet": {"\u6234": 2, "\u4e0a": 1, "\u5b89\u5168\u5e3d": 1, "\u8981": 1, "\u982d\u76d4": 1}, "Street": {"\u5f88": 1, "\u516c\u56ed": 1, "\u8857": 1}, "certain": {"\u786e\u5b9a": 4, "\u4e00\u5b9a": 2, "\u4f1a": 1, "\u51c6\u65f6": 1, "\u5c31\u662f": 1, "\u8fd9\u91cc": 1, "\u786e\u5207": 1, "\u65f6\u95f4": 1, "\u592a": 1, "\u78ba\u5b9a": 1, "\u5bf9\u4e8e": 1, ",": 2, "\u786e\u4fe1": 1, "\u67d0\u65e5": 1}, "old": {"\u8001\u4eba": 15, "\u4e86": 16, "\u65e7": 1, "\u8001": 14, "\u9019\u4f4d": 3, "\u8001\u4eba\u5bb6": 3, "\u5e74\u7d00": 7, "\u5e7e\u6b72": 2, "\u5927": 13, "\u820a\u8eca": 1, "\u5e74": 4, "\u8001\u5148\u751f": 1, "\u7acb": 1, "\u9057\u5631": 1, "\u6bd4": 1, "\u5e74\u9f84": 1, "\u72ec\u81ea": 1, "\u5f88\u820a": 1, "\u628a": 1, "\u4e00\u4e2a": 1, "\u5e74\u7eaa": 1}, "carefully": {"\u5c0f\u5fc3\u7ffc\u7ffc": 3, "\u5730": 8, "\u5e94\u8be5": 1, "\u8c28\u614e": 1, "\u5904\u7406": 1, "\u4ed4\u7ec6": 3, "\u5c0f\u5fc3": 3, "\u99d5\u99db": 1, "\u5047\u5982": 1, "\u8bb2\u8bfe": 1, "\u65f6\u5019": 1, "\u96c6\u4e2d": 1, "\u542c\u8bb2": 1, "": 1, "\u5c31": 1, "\u8fd9\u6837": 1, "\u6df1\u601d\u719f\u8651": 1, "\u4ed4\u7d30": 1}, "walked": {"\u8fc7": 1, "\u7a7f": 1, "\u8d70": 7, "\u908a": 2, "\u6cbf\u7740": 1, "\u6bb5": 1, "\u8def": 1, "\u6211\u5011": 1, "\u8d70\u5230": 1, "\u90a3\u6a23": 1, "\u5730\u65b9": 1, "\u8d70\u8def": 1, "\u5230": 1, "\u8d70\u4f86": 1, "\u8d70\u53bb": 1, "\u5730": 1, "\u6563\u6b65": 1}, "road": {"\u9a6c\u8def": 2, "\u99ac\u8def": 1, "\u8def": 8, "\u9053\u8def": 2, "\u4e2d\u95f4": 1, "\u5b09\u620f": 1, "\u8d70": 1, "\u99ac": 3, "\u8def\u4e0a": 1}, "help": {"\u5e2e": 24, "\u8bb8\u591a": 1, "\u5e2e\u52a9": 27, "\u5e6b\u52a9": 36, "\u6211": 3, "\u7ea6\u7ff0": 1, "\u5e6b": 39, "\u5e2e\u5fd9": 3, "\u9700\u8981": 1, "\u8acb": 1, "\u4f86": 1, "\u5e6b\u5fd9": 13, "\u6c42\u52a9": 2, "\u5e5a": 1, "\u4e0a": 1, "\u5fd9": 3, "\u80fd": 2, "\u4e0d\u80fd": 1, "": 2, "\u8bf7": 1, "\u4e0d\u7528": 1, "\u627e": 1, "\"": 1, "\u4e0d\u4e86": 1}, "us": {"\u6211\u4eec": 71, "\u6211\u5011": 96, "\u4e0d\u4f1a": 1, "\u5011": 1, "\u4f86": 1, "\u4e00\u6837": 1, "\u6765\u770b": 1, "": 1}, "sense": {"\u4efb\u4f55": 4, "\u610f\u4e49": 5, "\u5bf9\u4e8e": 1, "\u6765\u8bf4": 2, "\u6c92\u6709": 3, "\u9053\u7406": 3, "\u5f97": 3, "\u901a": 3, "\u5b8c\u5168": 1, "\u660e\u767d": 1, "\u90a3\u6837": 1, "\u8bf4": 2, "\u662f\u975e\u4e0d\u5206": 1, "\u6ca1\u610f\u601d": 1}, "happy": {"\u5f00\u5fc3": 8, "\u5e78\u798f": 7, "\u5f88\u5feb": 7, "\u6a02": 7, "\u6e6f\u59c6\u9ad8\u8208": 2, "\u9ad8\u5174": 16, "\u6211": 2, "\u6703": 1, "\u8fd8\u662f": 2, "\u9ad8\u8208": 15, "\u958b\u5fc3": 4, "\u5f88": 6, "\u4ed6": 3, "\u597d": 1, "\u4ece\u672a": 1, "\u4e0a": 1, "\u5f9e\u4f86": 1, "\u5feb\u6a02": 2, "\u4f46\u662f": 1, "\u5979": 1, "\u4e0d\u5feb": 1, "\u4e5f": 1, "": 2, "\u8208\u6709": 1, "\u5feb\u4e50": 1, "\u90fd": 1}, "apologize": {"\u61c9\u8a72": 1, "\u9053\u6b49": 8, "\u73b0\u5728": 1, "\u8fdf": 1, "\u8ddf": 1, "\u5411": 2, "\u6c92\u6709": 1}, "They": {"\u4ed6\u5011": 182, "\u4ed6\u4eec": 92, "": 2}, "skier": {"\u5e74": 1, "\u8f15": 1, "\u6642": 1, "\u6703": 1, "\u6ed1\u96ea": 2}, "painting": {"\u90a3\u5e45": 1, "\u753b": 2, "\u6709": 2, "\u5e74": 1, "\u7e6a\u756b": 1, "\u4e00\u5e45": 2, "\u756b": 2, "\u54b1\u4eec": 1, "\u7ed9": 1, "\u8fd9": 1, "\u5e45\u753b": 1}, "John": {"": 1, "\u6b63": 1, "\u5750\u5728": 1, "\u739b\u4e3d\u548c": 1, "\u7ea6\u7ff0": 3, "\u53bb": 1, "\u3001": 1, "\u7d04\u7ff0": 1, "\u4e2d\u95f4": 1, "\u8b93": 1, "\u746a": 1, "\u9e97": 1, "\u5e5a": 1, "\u7d04": 1, "\u7ff0": 1}, "sitting": {"\u6c64\u59c6": 1, "\u5750\u5728": 10, "\u5750": 3, "\u7740": 1, "\u746a\u9e97\u6b63": 1, "\u8fa6\u516c": 1, "\u684c\u65c1": 1, "\u5750\u5230": 1, "\u5ba4\u91cc": 1, "\u7ad9": 1, "\u8fd9\u91cc": 1}, "terrible": {"\u771f\u7cdf\u7cd5": 1, "\u592a": 1, "\u53ef\u6015": 3, "\u771f": 1, "\u58de": 1, "\u5f97": 1, "\u4e00\u7a2e": 1, "\u9019": 1, "\u7cdf\u7cd5": 1}, "class": {"\u73ed\u7ea7": 4, "\u7537\u751f": 5, "\u8ab2": 3, "\u5728": 1, "\u8bfe": 3, "\u73ed\u4e0a": 6, "\u73ed\u91cc": 5, "\u73ed": 9, "\u540c\u73ed": 1, "\u4e0a": 3, "\u540c\u4e00\u4e2a": 1, "\u52a0\u5165": 1, "\u73ed\u88e1": 1, "\u4e00\u4e2a": 1}, "guy": {"\u91cc": 2, "\u597d\u4eba": 4, "\u90a3\u5bb6\u4f19": 2, "\u500b": 2, "\u4eba": 3, "\u5bb6\u4f19": 1, "\u662f": 1, "\u6c92\u770b": 1, "\u591a": 1, "": 1}, "only": {"\u552f\u4e00": 29, "\u53ea\u6709": 13, "\u53ea": 15, "\u4e00\u4ef6": 1, "\u4e1c\u897f": 1, "\u53ea\u662f": 5, "\u53ea\u80fd": 2, "\u4ec5": 1, "\u72ec\u5b50": 2, "\u597d": 2, "\u4f1a": 1, "\u4eba": 1}, "Perfect": {"\u5b8c\u7f8e": 1}, "till": {"\u4e0d\u5f97\u4e0d": 1, "\u6401\u5230": 1, "\u5728": 1, ",": 2, "": 2, "\u76f4\u5230": 5, "\u4e09\u70b9": 1, "\u591a": 1, "\u624d": 2, "\u7761\u7740": 1, "\u7b49\u5230": 5, "\u653e\u5230": 1, "\u58de": 1, "\u5230": 2, "\u7761": 1, "\u8acb\u5f85": 1, "\u7740": 1}, "put": {"\u628a": 37, "\u653e\u5728": 26, "\u4e0a": 3, "\u65e0\u6cd5\u5fcd\u53d7": 1, "\u53d7\u4e0d\u4e86": 1}, "game": {"\u6e38\u620f": 4, "\u9019\u500b": 1, "\u904a\u6232": 4, "\u6bd4\u8cfd": 13, "\u9019\u5834": 4, "\u7d50\u675f": 1, "\u6bd4\u8d5b": 1, "\u73a9\u96fb\u8996": 1, "\u904a\u6a02\u5668": 1}, "Sunday": {"\u5468\u65e5": 9, "\u661f\u671f\u5929": 12, "\u4e0a\u5468\u65e5": 1, "\u9031\u65e5": 12, "": 2, "\u4e0a\u500b": 1, "\u65e5": 3, "\u6bcf\u4e2a": 1, "\u5468\u672b": 1, "\u660e\u5929": 1}, "Translate": {"\u9010\u5b57": 1, "\u5730": 1, "\u7ffb\u8b6f": 1, "\u9019\u500b": 1, "\u6bb5\u843d": 1}, "neither": {"\u6ca1": 2, "\u4e5f": 5, "\u542c": 1, "\u6c92\u6709": 1, ",": 3, "": 5, "\u65e2": 3, "\u6ca1\u94b1": 1}, "seen": {"\u89c1": 11, "\u8fc7": 12, "\u770b\u89c1": 7, "\u770b": 7, "\u904e": 9, "\u5f88\u4e45\u6ca1": 3, "\u6c92\u898b": 1, "\u770b\u5230": 10, "\u898b": 4, "\u6ca1\u89c1": 2, "\u8c01": 1, "\u597d\u4e45\u4e0d\u89c1": 1, "\u4f60": 2, "\u6700\u8fd1": 1, "\u6211": 1, "\u4ece\u6ca1": 1}, "such": {"\u8fd9\u6837": 6, "\u7684": 19, "\u90a3\u4e48": 3, "\u9019\u6a23": 5, "\u9019\u7a2e": 1, "\u8981\u8bfb": 1, "\u4e00": 1, "\u8fc7": 2, "\u597d\u5fc3": 1, "\u90a3\u79cd": 1, "\u78b0\u5230": 1, "\u5f88": 1}, "No": {"\u6c92": 5, "": 1, "\u4e0d": 4, "\u6709\u4eba": 3, "\u6ca1": 3, "\u6c92\u6709": 3, "\u6ca1\u5173\u7cfb": 1, "\u6ca1\u6709": 16, "\u4efb\u4f55": 1, "\u6ca1\u4eba\u4f1a": 1, "\u4e00\u9ede": 1, ",": 1, "\u53bb": 1, "\u5979": 1, "\u6ca1\u95e8": 1, "\u53ef": 1}, "calling": {"\u53eb": 3, "\u6253": 1, "\u7ed9": 1, "\u6253\u7535\u8bdd": 2, "\u4eca\u5929": 1, "\u5c31": 1, "\u505a\u5230": 1, "\u9019\u88e1": 1, "\u5982\u4f55": 1, "\u807d\u898b": 1}, "thief": {"\u5c0f\u5077": 10, "\u8fd9": 1, "\u5e36\u8457": 1, "\u5230": 2, "\u771f\u662f": 2}, "conduct": {"\u4e3a": 1, "\u81ea\u5df1": 1, "\u884c\u4e3a": 1}, "oil": {"\u70ba": 1, "\u4e00\u5bb6": 1, "\u77f3\u6cb9": 3, "\u5feb\u7528": 1, "\u7f3a": 1}, "company": {"\u516c\u53f8": 22, "\u966a\u4f34": 2, "\u4f19\u4f34": 2, "\u6ca1\u6cd5": 1, "\u8fd9\u5bb6": 2, "\u91cc\u9762": 1, "": 1}, "Oscar": {"\u5965\u65af\u5361": 1, "\u9881\u5956\u5178\u793c": 1, ",": 1, "": 1, "\u597d\u83b1\u575e": 1, "\u76db\u5927": 1}, "biggest": {"\u662f": 1, "\u6700": 2, "\u6700\u5927": 1, "\u4e0d": 1, "\u4e00\u6837": 1, "\u7684\u7684": 1}, "TV": {"\u770b\u96fb\u8996": 14, "\u7535\u89c6": 11, "\u6211": 3, "\u96fb\u8996": 11, "\u7535\u89c6\u673a": 7, "\u770b\u7535\u89c6": 4, "\u6c92\u6642\u9593": 1, "\u4e70\u65b0": 1}, "write": {"\u5beb\u4fe1": 3, "\u7d66": 3, "\u7ed9": 2, "\u5199": 13, "\u56de\u590d": 1, "\u6c92\u5beb": 1, "\u53ef\u4ee5": 3, "\u4e0a\u9762": 2, "\u5beb": 8, "\u5b57": 5, "\u7528\u4f86": 1, "\u59d3\u6c0f": 1, "\u6211": 1, "\u5199\u4fe1": 3, "\u76e1\u5feb": 2, "\u7528": 1, "\u5199\u5b57": 1, "\u5199\u4e0b": 1, "\u6765\u4fe1": 1, "\u52e4": 1, "\u4e9b": 1, "\u56de\u4fe1": 1}, "fat": {"\u597d": 1, "\u80d6": 2, "\u54e6": 1, "\u500b": 1, "\u80d6\u5b50": 1}, "studying": {"\u8b80": 1, "\u66f8": 3, "\u5b66": 3, "\u5b66\u4e60": 13, "\u5728": 7, "\u5b78\u7fd2": 6, "\u8b80\u66f8": 3, "\u6b63\u5728": 2, "": 1, "\u6e6f\u59c6": 1, "\u7814\u8b80": 1, "\u4ed6": 1, "\u90fd": 1, "\u5f3a\u70c8": 1, "\u6b32\u671b": 1, "\u6e6f\u59c6\u5b78\u6cd5\u8a9e": 1}, "Mars": {"\u706b\u661f": 4, "\u4e00\u9846": 1}, "there": {"\u6709": 42, "\u90a3\u91cc": 29, "\u90a3\u88e1": 66, "\u5728": 32, "\u5230": 3, "\u90a3": 5, "\u537b": 1, "\u90a3\u513f": 13, "\u53bb": 2, "\u6309\u65f6": 1, "\u4e0a": 1, "": 2, "\uff1f": 1, "\u518d": 1, "\u5c31": 1, "\u4e8b": 1}, "life": {"\u751f\u547d": 9, "\u8ba9": 2, "\u90fd": 1, "\u4e00\u751f": 3, "\u9019": 1, "\u751f\u6d3b": 13, "\u4eba\u751f": 6, "\u9577\u58fd": 1, "\u6211\u4eec": 1, "\u4e2d": 1, "\u6700\u7f8e": 1, "\u8bb2\u8ff0": 1, "\u4f60": 1}, "Shall": {"\u7b49": 1, "": 2, "\u6211": 1, "\u4f60": 1, "\u7684": 1, "\u4e3a": 1, "\u7559": 1, "\u53e3\u4fe1\u513f": 1, "\u5417": 2, "\u4e0d\u7528": 1, "\u8be5": 1}, "Yes": {"\u201d": 1, "\u662f": 6, "\u6703\u53bb": 1, "": 3, "\u665a\u4e0a": 1}, "once": {"\u7acb\u523b": 10, "\u5076\u723e": 2, "\u4e00\u6b21": 18, "\u7acb\u9a6c": 1, "\u4e00\u5fc3\u4e24\u7528": 1, "": 1, "\u4e00\u904d": 1, "\u9a6c\u4e0a": 3, "\u6bcf\u5468": 3, "\u6cf3": 1, "\u8acb": 1, "\u8fc7\u53bb": 1, "\u8ba4\u8bc6": 1, "\u4f46": 1, "\u805a": 2, "\u53bb": 1}, "family": {"\u5bb6\u5ead": 6, "\u5bb6": 2, "\u5bb6\u91cc\u4eba": 1, "\u90fd": 1, "\u8fd8\u597d": 1, "\u5bb6\u4eba": 12, "\u5168\u5bb6": 5, "\u4e00\u5f35": 2, "\u4ed6\u5bb6": 2, "\u4eba": 1, "\u8fc7\u53bb": 1, "\u4e48": 1, "": 1, "\u4e00\u5bb6\u4eba": 1}, "doctor": {"\u91ab\u751f": 27, "\u60f3\u6210": 1, "\u70ba": 1, "\u5927\u592b": 2, "\u533b\u751f": 28, "\u500b": 5, "": 2, "\u53bb": 6, "\u770b\u8fc7": 2, "\u6210\u4e3a": 1, "\u4f86": 2, "\u770b\u75c5": 1, "\u6765": 1}, "introduce": {"\u628a": 1, "\u4ecb\u7d39": 5, "\u7d66": 2, "\u8a8d\u8b58": 1, "\u81ea\u6211": 2, "\u5411": 1}, "push": {"\u6309\u4e86": 1, "\u9215": 2, "\u63a8": 1, "\u54ea\u500b": 1}, "button": {"\u6309": 9, "\u9846": 1, "\u9215\u6263": 1, "\u812b\u843d": 1, "\u9846\u9215": 1, "\u6263\u5feb": 1, "\u6389": 2, "\u886c\u8863": 1, "\u7ebd\u6263": 1, "\u5feb": 1, "\u9215": 1}, "month": {"\u6708": 23, "\u4e0b\u500b": 1, "\u6708\u6703": 1, "\u500b": 15, "\u4e0a\u500b\u6708": 6, "\u4e0b\u4e2a\u6708": 3, "\u4e0a": 7, "\u6574\u500b": 1, "\u9019\u5152": 1, "\u6c92\u4e0a": 1, "\u4e70\u8f86": 1}, "logged": {"\u767b\u51fa": 1, "\u4e0d\u8be5": 1, "\u9000\u51fa": 1}, "grateful": {"\u611f\u6fc0": 3, "\u975e\u5e38\u611f\u8c22": 1, "\u6240": 2, "\u5f88": 2, "\u600e\u9ebc": 1, "\u6211": 1, "\u6703": 1, "\u5bf9": 1, "\u90a3\u4e8b": 1}, "siblings": {"Tom": 1, "\u5144\u5f1f": 1, "\u59ca\u59b9": 1, "\u5144\u5f1f\u59d0\u59b9": 3, "\u600e\u4e48\u6837": 1}, "thieves": {"\u6ce8\u610f": 1, "\u5c0f\u5077": 1}, "Are": {"\u662f": 18, "\u55ce": 90, "\u5417": 83, "\u4f60\u5011": 2, "\u5728": 4, "\u8fd9\u4e9b": 1, "\u7684": 1, "\u8981": 1}, "Japanese": {"\u65e5\u672c": 23, "\u4eba": 9, "": 1, "\u65e5\u8bed": 4, "\u65e5": 8, "\u8a9e": 7, "\u6709": 1, "\u746a\u9e97\u6703": 1}, "Some": {"\u6709\u4e9b": 9, "\u4e00\u4e9b": 8, "\u6709\u4eba": 3, "": 3, "\u4eba": 1, "\u4e00\u90e8\u5206": 1, "\u90a3\u4ef6\u4e8b": 1}, "foods": {"\u98df\u7269": 1, "\u4ee4\u4eba": 1, "\u53e3\u6e34": 1}, "picked": {"\u62ff": 4, "\u8d77": 1, "\u4e3a": 1, "\u6458": 1, "\u4e9b": 1, "\u6458\u82b1": 1, "\u6361\u8d77": 1, "\u62ff\u8d77": 1}, "mirror": {"\u9762": 1, "\u955c\u5b50": 3, "\u7ec6\u770b": 1, "\u81ea\u5df1": 1, "\u820c\u5934": 1, "\u7167": 1, "\u51e0\u6b21": 1}, "hung": {"\u628a": 7, "\u6302": 1, "\u639b": 3, "\u4e0a": 2, "\u753b": 1, "\u60ac\u6302": 1, "\u5728": 1}, "closet": {"\u5939\u514b": 1, "\u5927\u5385": 1, "\u8863\u67dc": 2, "\u91cc": 2, "\u6a71\u67dc": 1, "\u6709": 1}, "fix": {"\u5fc5\u987b": 1, "\u5feb\u70b9": 1, "\u5b9a\u4e0b": 1, "\u8b93": 1, "\u4fee\u7406": 1, "\u4fee\u597d": 1}, "date": {"\u65e5\u671f": 3, "\u7ea6\u4f1a": 3, "\u5462": 1, "\u4e0d\u8ba9": 1, "\u548c": 1, "\u7537\u751f": 1, "\u7d04": 2, "\u6703": 2, "\u5e7e\u865f": 1, "\u63d0\u51fa": 1, "\u8acb\u6c42": 1}, "special": {"\u5f88": 1, "\u7279\u522b": 2, "\u53cd": 1, "\u6211\u4eec": 1, "\u7279\u5225": 4, "\u60a8": 1}, "tickets": {"\u8fd9\u573a": 1, "\u79c0": 1, "\u68d2\u6781\u4e86": 1, "": 1, "\u4e70": 1, "\u5230": 1, "\u8f66\u7968": 1, "\u4e24\u5f20": 1, "\u7968": 1}, "expensive": {"\u4f46\u662f": 1, "\u592a\u8d35": 4, "": 2, "\u6211": 1, "\u5f88\u8d35": 2, "\u4ef7\u683c\u4e0d\u83f2": 1, "\u8d35": 2, "\u8f86": 1, "\u6c7d\u8f66": 1, "\u6602\u8cb4": 1}, "French": {"\u6cd5\u8bed": 58, "\u6cd5\u8a9e": 22, "\u901a\u5e38": 1, "\u5b66\u6cd5\u8bed": 4, "\u8a9e": 7, "\u4e0d\u592a\u597d": 1, "\u4f1a": 1, "\u8b1b": 1, "\u8bf4": 3, "\u7528": 1, "\u8bb2": 2, "\u65f6\u8bf4": 1, "\u8bf4\u5f97\u597d": 1, "\u5b78\u6cd5": 1, "\u6211": 1, "\u6703": 1}, "freedom": {"\u53ea\u8981": 1, "\u81ea\u7531": 3, "\u6ca1\u6709": 1, "\u91cd\u7372": 1}, "report": {"\u7814\u7a76": 1, "\u5831\u544a": 6, "\u4ed4\u7d30": 2, "\u6aa2\u67e5": 1, "\u62a5\u544a": 5, "\u63d0\u4ea4": 1, "\u66f8": 1, "\u4ea4\u5831": 2, "\u544a": 2, "\u9605\u8bfb": 1, "\u9019\u4efd": 1, "\u8fd9\u4efd": 1}, "England": {"\u82f1\u56fd": 4, "\u597d\u51e0": 1, "\u672c\u4e66": 1}, "capital": {"\u9996\u90fd": 1, "\u5927": 2, "\u5beb": 2, "\u5b57\u6bcd": 3, "\u4e00\u500b": 1, "\u4ee5": 1}, "London": {"\u4f26\u6566": 16, "\u502b\u6566": 19, "": 2, "\u767b\u4e0a": 1, "\u53bb": 2}, "Thames": {"\u6cf0\u6664\u58eb\u6cb3\u7554": 1, "\u6cf0": 1, "\u5514": 1, "\u58eb\u6cb3": 1, "\u65c1": 1}, "ate": {"\u5403": 24, "\u4e86": 23, "\u6574\u4e2a": 1, "\u5bb6\u88e1": 1, "": 1, "\u6211": 1}, "curry": {"\u5496\u55b1": 2, "\u6e6f\u59c6\u559c": 1, "\u6b61\u8fa3": 1, "\u5496\u54e9": 2, "\u5403": 1}, "married": {"\u5ac1\u7ed9": 4, "\u4e86": 21, "\u7ed3\u5a5a": 16, "\u7d50\u5a5a": 20, "": 1, "\u5df2\u7ecf": 1, "\u8ddf": 2, "\u5b69\u5b50": 1, "\u5df2\u5a5a": 2, "\u4e26": 1, "\u80b2\u6709": 1, ",": 1, "\u9084": 1}, "rich": {"\u6709\u94b1\u4eba": 1, "\u770b": 1, "\u8d77\u4f86": 1, "\u5f88": 3, "\u6709": 4, "\u9322": 5, "\u4e70": 1, "\u6709\u94b1": 4, "\u8001\u5934": 1, "\u8b8a\u6709": 1, "\u4e26": 1, "\u5bcc\u6709": 2, "\u81f4\u5bcc": 1}, "Shounan": {"\u5bf9": 1, "\u6e58\u5357": 1}, "tables": {"\u7368\u81ea": 1, "\u9580\u908a": 1, "\u684c\u5b50": 1, "\u65c1": 1}, "wondered": {"\u60f3": 4, "\u77e5\u9053": 3, "\u662f\u5426\u662f": 1, "\u5947\u602a": 2, "\u91cc": 1, "\u53ea": 1}, "Customs": {"\u98ce\u4fd7\u4e60\u60ef": 1, "\u5305\u62ec": 1, "": 1}, "food": {"\u98df\u7269": 30, "": 1, "\u9002\u5408": 1, "\u83dc": 3, "\u7cae": 2, "\u5403": 1, "\u65e5\u672c\u6599\u7406": 3, "\u600e\u9ebc\u6a23": 2}, "dancing": {"\u5e86\u795d": 1, "\u8df3\u821e": 4, "\u5173\u4e8e": 2, "\u821e\u8e48": 2, "\u4e66": 2, "\u6c92\u4eba": 1}, "dying": {"\u4e0d\u6015\u6b7b": 2, "\u6015\u6b7b": 2, "\u8981\u6b7b": 1, "\u5feb\u8981": 1, "\u6b7b": 1, "\u8feb\u5207\u9700\u8981": 1, "\u51b7\u996e": 1}, "bought": {"\u8cb7": 41, "\u4e86": 55, "\u4e70": 23, "\u7ed9": 3, "\u7d66": 6, "\u6771\u897f": 2, "\u90a3\u8f1b": 1, "\u8f1b": 1}, "puppy": {"\u4e86\u4e00": 1, "\u96bb": 1, "\u5c0f\u72d7": 2, "\u7d66": 1}, "doing": {"\u505a": 53, "\u5728": 26, "\u6b63\u5728": 5, "\u7528": 1, "\u4e4b\u524d": 1, "": 1, "\uff01": 1, "\u73b0\u5728": 2, "\u641e": 2, "\u7576\u6642": 1, "\u4ec0\u9ebc": 1, "\u8868\u73fe": 1, "Tom": 1, "\u5e72\u5417": 1}, "influential": {"\u533b\u5b66\u754c": 1, "\u6709": 1, "\u5f88\u5927": 1, "\u5f71\u54cd\u529b": 1}, "speak": {"\u8aaa": 47, "\u6703": 18, "\u8b1b": 18, "\u8bf4\u8bdd": 12, "\u8bf4": 25, "\u8a71": 8, "": 3, "\u4f60": 2, "\u8ddf": 11, "\u4f60\u5011": 4, "\u548c": 1, "\u6c92\u6709": 2, "\u60a8": 1, "\u4f46": 1, "\u4f46\u662f": 1}, "loudly": {"\u5927\u8072": 3, "\u4e00\u9ede": 3, "\u5152": 1, "\u5927\u58f0": 2, "\u5f97": 1}, "understood": {"\u7406\u89e3": 1, "": 2, "\u6c92": 1, "\u6709\u4eba": 1, "\u6e6f\u59c6": 1, "\u5225\u4eba": 1, "\u4e86\u89e3": 2, "\u610f\u601d": 2, "\u516c\u773e": 1, "\u5834\u5408\u8868": 1, "\u9054": 1, "\u660e\u767d": 3, "\u6240": 1}, "view": {"\u89c2\u70b9": 1, "\u5f53": 1, "\u8d70": 1, "\u6e56": 1, "\u6620\u5165": 1, "\u60a8": 1, "\u770b": 1, "\u6211": 1, "\u89c6\u91ce": 1, "\u623f\u5b50": 1, "\u770b\u6cd5": 1, "\u904e": 1, "\u65bc": 1, "\u6a02\u89c0": 1}, "less": {"\u4e0d\u5230": 2, "\u4e0d": 3, "\u5927\u6982": 1, "\u7528": 1, "\u5c31": 1, "\u8fd9\u4e2a": 2, "\u4e00\u8f86": 1, "\u6c7d\u8f66": 1, "": 2, "\u66f4": 1, "\u4e0d\u8981": 1}, "evacuate": {"\u4e94\u5206\u949f": 1, "\u6765": 1, "\u758f\u6563": 1, "\u6574\u680b": 1, "\u697c": 1, "\u4eba": 1}, "hypocritical": {"\u4ece\u6765": 1, "\u6ca1\u6709": 1, "\u89c1": 1, "\u8fc7": 1, "\u8c01": 1, "\u8fd9\u4e48": 1, "\u865a\u4f2a": 1}, "threw": {"\u6254": 9, "\u671d": 2, "\u5757": 3, "\u628a": 1, "\u81ea\u5df1": 1, "\u6254\u6389": 1}, "rock": {"\u4e00\u584a": 2, "\u5230": 1, "\u4e00\u5757": 2, "\u5ca9\u77f3": 3, "\u6447\u6eda\u4e50": 2, "\u649e\u5012": 1, "\u5927\u77f3\u5934": 1}, "pond": {"\u77f3\u982d": 1, "\u6c60\u5858": 7, "\u88e1": 5, "\u5f53": 1, "\u8fd8\u662f": 1, "\u6211": 1, "\u5728": 1, "\u8fd9\u4e2a": 1, "\u6cf3\u6c60": 1, "\u4e00\u584a": 2, "\u5230": 2, "\u9019\u500b": 1}, "treacherous": {"\u8fd9": 1, "\u6761\u8def": 1, "\u633a": 1, "\u9669\u6076": 1}, "carpet": {"\u4e00\u6761": 1, "\u6bef\u5b50": 2, "\u5730\u6bef": 3, "\u628a": 1, "\u5012": 1, "\u7ffb": 1}, "outside": {"\u5916\u9762": 9, "\u5230": 1, "\u7136\u540e": 1, "\u51fa\u53bb": 1, "\u5f85\u5728\u5bb6\u91cc": 1, "\u5916\u51fa": 1, "\u5728": 4, "\u6211\u4eec": 1, "\u4e00\u5f35": 1}, "pitch": {"\u4e00\u7247": 1, "\u6f06\u9ed1": 1}, "sure": {"\u786e\u5b9a": 18, "\u78ba\u5b9a": 18, "\u5c3d\u529b\u53bb\u505a": 1, "\u80af\u5b9a": 6, "\u80fd": 1, "\u6211": 1, "\u4e0d": 1, "\u4e00\u5b9a": 3, "\u4f1a": 4, "\u6e6f\u59c6\u6703": 1, "\u592a": 1, "": 1, "\u6e05\u695a": 1, "\u771f\u7684": 1}, "design": {"\u8fd9\u4efd": 1, "\u8bbe\u8ba1": 1, "\u5f88\u8822": 1}, "Nobody": {"\u6c92": 6, "\u6709\u4eba": 6, "\u6ca1": 4, "\u4eba": 10, "\u90a3\u6837": 1, "\u6ca1\u6709": 6, "\u7121\u6240": 1, "\u4e0d\u77e5": 1, "\u8fd9\u4ef6": 1, "\u6703": 1, "\u800c": 1, "\u8fc7": 1, "\u8c01": 1, "\u4e5f": 1}, "listen": {"\u807d": 13, "\u8aaa": 4, "\u542c": 7, "\u8bdd": 1, "\u52f8\u544a": 1, "\u8a71": 1}, "bell": {"\u9234": 1, "\u5c31": 1, "\u842c": 1, "\u4e00": 2, "\u767c": 1, "\u751f\u706b": 1, "\u707d": 1, "": 3, "\u94c3\u54cd": 1, "\u9234\u97ff": 1}, "rang": {"\u97ff": 3, ",": 8, "": 4, "\u6b63\u5728": 1, "\u7535\u8bdd\u54cd": 5}, "arrived": {"\u5230": 31, "\u9054": 6, "\u4ed6\u4eec": 1, "\u5230\u8fbe": 3, "\u62b5\u9054": 2, "\u5df2\u7d93": 2, "\u4e86": 11, "10": 1, "": 1, "\u6765": 1, "\u53ca\u6642": 2, "\u8d95\u5230": 2, "\u5df2\u7ecf": 2, "\u6e96": 1, "\u6642": 1}, "living": {"\u8d77\u5c45\u5ba4": 1, "\u4f4f": 14, "\u67d0\u5730": 1, "\u5f88\u5feb": 1, "\u5e76": 1, "\u751f\u6d3b": 2, "\u5de5\u4f5c": 1, "\u751f": 1, "\u5ba2\u5ef3\u88cf\u6709\u4ec0": 1, "\u9ebc": 1, "\u8cbb": 1, "\u63d0\u9ad8": 1, "\u7684": 1}, "Nice": {"\u5f88": 1, "\u9ad8\u8208": 1, "\u8a8d\u8b58": 1, "\u89c1\u5230": 1, "\u771f\u597d": 1}, "fired": {"\u88ab": 8, "\u89e3\u96c7": 4, "\u66fe\u7d93": 1, "\u958b\u9664": 4, "\u89e3\u50f1": 1, "\u6709\u4eba": 1, "\u904e": 1, "\u5168\u90e8": 1}, "Cities": {"\u57ce\u5e02": 1, "\u4f46": 1, "\u4e5f": 1, "\u6703": 1, "\u8b93": 1, "\u4eba": 1}, "exciting": {"\u4ee4\u4eba": 2, "\u8208\u596e": 2, "\u4e00\u7bc7": 1, "\u7cbe\u5f69": 1}, "places": {"\u5730\u65b9": 3, "\u5728": 1, ",": 1, "\u5f88\u591a": 1, "\u7684": 1, "\u628a": 1, "\u60f3\u53bb": 1, "\u5217\u6210": 1, "\u4e00\u5f20": 1, "\u6e05\u5355": 1, "\u7ed9": 1, "\u8bf4": 2}, "also": {"": 2, "\u4e5f": 9, "\u9813\u4f86": 1, "\u8fc7": 1, "\u6109\u5feb": 1, "\u4f46": 2, "\u662f": 1, "\u4f60": 1, "\u8aaa\u8a71": 1, "\u4e00\u4e2a": 1}, "amends": {"\u5f4c\u88dc": 1, "\u6c38\u9060": 1, "\u4e0d": 1, "\u6703": 1, "\u592a\u665a": 1}, "win": {"\u56de\u80fd": 1, "\u8d0f": 8, "\u8d62": 5, "\u6211\u4f1a": 1, "\u7b97\u4f60\u72e0": 1, "\u8d62\u5f97": 1, "\u8ba9": 1}, "immediately": {"\u99ac": 2, "\u4e0a": 2, "\u96e2\u958b": 1, "\u9a6c\u4e0a": 3, "\u5f88\u5feb": 1, "\u5c31": 1, "\u804a\u8d77\u6765": 1, "\u5fc5\u8981": 1}, "Turn": {"\u5411\u5de6\u8f6c": 2, "\u628a": 8, "\u8072\u97f3": 1, "\u95dc\u5c0f": 1, "\u5411\u53f3\u8f6c": 1, "\u8f49": 2, "\u58f0\u97f3": 1, "\u8c03\u5927": 1, "\u70b9\u513f": 1, "\u8f49\u52d5": 1, "\u95dc\u4e86": 1, "\u7d05": 1, "\u5de6": 1, "\u8f6c\u8fc7": 1, "\u6765": 1, "\u9ebb\u7169": 1, "\u958b\u71c8": 2, "\u6253\u958b": 2, "\u958b": 1, "\u5927\u8072": 1}, "Jealousy": {"\u5ac9\u5992": 1, "\u8b93": 1, "\u90a3\u6a23": 1}, "Who": {"\u8c01": 66, "\u8ab0": 44, "\u5462": 10, "\u7ed9": 1, "\u628a": 1, "\u5f53": 1, "\u5566": 1, "\u662f": 1, "\u8fd9\u4ef6": 1, "\u90a3": 1}, "invented": {"\u53d1\u660e": 4, "\u7535\u8bdd": 1, "\u767c\u660e": 2}, "translation": {"\u8bd1\u672c": 1, "\u6bd4\u8f83": 1, "\u7ffb\u8b6f": 2, "\u522b\u7528\u673a": 1, "\u7ffb": 1}, "owner": {"\u662f": 2, "\u4e3b\u4eba": 3, "\u9019\u68df": 1}, "already": {"\u5df2\u7ecf": 26, "\u8fc7": 3, "\u4e86": 59, "\u5df2\u7d93": 26, "": 2, "\u505a": 1, "\u4e26": 1, "\u904e": 1, "\u56de\u53bb": 1, "\u6211": 1, "\u6e6f\u59c6\u5df1": 1, "\u7d93": 1}, "talked": {"\u548c": 3, "\u8c08": 6, "\u8bdd": 4, "\u8bf4": 2, "\u8ac7": 5, "\u8ddf": 4, "\u4e00\u76f4": 1, "\u804a\u5929": 1, "\u5929\u660e": 1, "\u8bf4\u8bdd": 2, "\u8aaa": 1, "\u804a\u5230": 1, "\u51cc\u6668": 1, "\u5169\u9ede": 1}, "student": {"\u5b66\u751f": 11, "\u5f53\u65f6": 2, "\u662f": 17, "\u5b78\u751f": 16, "\u500b": 9, "": 2, "\u4e2a": 8, "\u65b0\u751f": 1, "\u6211": 1}, "often": {"\u7ecf\u5e38": 21, "\u5e38\u5e38": 23, "\u5bb9\u6613": 1, "\u4e0a\u8ab2": 1, "\u4e00\u6b21": 2, "\u7d93\u5e38": 9, "\u60f3\u7740": 1, "\u5916\u98df": 1, "\u5e38": 1, "": 2, "\u4e0d\u5e38": 2, "\u97f3\u8a0a": 1, "\u5e94\u8be5": 1}, "absent": {"\u7fd8\u8bfe": 1, "\u6574\u4e2a": 1, "\u7f3a\u52e4": 1, "\u4e0d": 3, "\u5979": 1, "\u6c92": 1, "\u53bb": 1, "\u7f3a\u5e2d": 4, "\u6ca1": 1, "\u65f7\u8bfe": 1, "": 1, "\u9003\u5b78": 1, "\u4e94\u5929": 1, "\u662f\u56e0\u4e3a": 1}, "Why": {"\u70ba": 67, "\u4ec0\u9ebc": 47, "\u4e3a\u4ec0\u4e48": 70, "\u5462": 17, "\u751a\u9ebc": 19, "\u5bf9\u4e8e": 1, "\u4e00\u5b9a": 1}, "stay": {"\u7559\u4e0b": 6, "\u4f86": 1, "\u5f85": 29, "\u7559\u5728": 9, "\u5bb6\u88e1": 2, "\u6703": 2, "\u51c6\u5907": 2, "\u4f60": 1, "\u71ac\u591c": 1, "\u8a8d": 1, "\u4e00\u4f1a": 3, "\u60f3\u5f85": 1, "\u5728": 4, "\u66f4": 1, "\u5446": 2, "\u4e0d\u5f97\u4e0d": 2, "\u6211": 3, "\u5c31": 1, "\u4e00\u9ede": 1, "\u9858\u610f": 1, "": 1, "\u6709\u5f85": 1, "\u4e0d\u80fd": 1, "\u7559": 1, "\u6211\u4eec": 1}, "while": {"\u4e00\u6703\u5152": 7, "\u8d81": 4, "\u65f6\u5019": 15, "\u7576": 2, ",": 5, "\u601d\u8003": 1, "\u4e00\u4e0b": 1, "\u4e00\u4f1a\u513f": 2, "\u8fd9": 1, "\u5f85": 1, "\u4e00\u4f1a": 2, "": 1, "\u8f15": 1, "\u7a0d": 1, "\u80fd\u5f85": 1, "\u597d": 1, "\u4e00\u9663\u5b50": 1}, "kindness": {"\u6c38\u9060": 2, "\u5fd8\u8a18": 2, "\u89aa\u5207": 1, "\u5341\u5206": 1, "\u597d\u610f": 3, "\u8c22\u8c22\u60a8": 1}, "never": {"\u4e0d": 13, "\u6c38\u8fdc": 11, "\u4e0d\u4f1a": 10, "\u4ece\u6765": 5, "\u6ca1": 2, "\u4ece\u6ca1": 9, "\u5f9e\u4f86": 11, "\u6c92\u6709": 10, "\u904e": 14, "\u5f9e": 15, "\u6c92": 3, "\u518d\u4e5f": 1, "\u6c38\u9060": 5, "": 4, "\u5f9e\u4e0d": 2, "\u4f46\u662f": 1, "\u8fd9\u4e48": 1, "\u5be6\u969b": 1, "\u4ece\u6765\u4e0d": 1, "\u96bb": 1, "\u5922": 1, "\u8fc7": 2, "\u4ed6": 1, "\u4f60": 1, "\u4e5f": 1}, "taken": {"\u5df2\u7ecf": 2, "\u7a7f\u9519": 1, "\u5176\u5b9e": 1, "\u6ca1": 2, "\u5e26": 1, "\u642d\u932f": 2, "\u5f20": 1, "\u7167": 2, "\u8981\u662f": 1, "\u67b6\u98de\u673a": 1, "\u6211": 1, "\u542c": 1, "\u62ff\u9519": 1, "\u4ece": 1, "\u76f8": 1, "\u957f\u65f6\u95f4": 1, "\u62ff": 1, "\u90a3\u4e9b": 1}, "medicine": {"\u5403": 5, "\u836f": 7, "\u5fc5\u987b": 1, "\u5403\u836f": 1, "\u85e5": 5, "\u836f\u4f1a": 2, "\u5bf9": 2, "\u6709": 2, "\u597d\u5904": 2, "\u5b8c": 1, "\u597d\u53d7": 1, "\u70b9": 1, "\u5c0d": 1, "\u8655": 1, "\u7ba1\u7528": 1, "\u9019\u500b": 1, "\u85e5\u6703": 1}, "Have": {"\u8fc7": 3, "\u4e86": 18, "\u5417": 27, "\u904e": 5, "\u55ce": 46, "\u6709": 7, "\u6109\u5feb": 1, "": 1, "\u4f60": 2, "\u5403": 1}, "death": {"\u4e0d\u5e78": 1, "\u6709\u4eba": 1, "\u8eab\u4ea1": 1, "\u6015\u6b7b": 1, "\u6b7b\u4ea1": 2, "\u6b7b": 5, "": 1, "\u63a5\u7ba1": 1, "\u4e0d\u6015\u6b7b": 4, "\u4e00\u4e2a": 1, "\u751f": 1, "\u89e3\u8131": 1}, "agreed": {"\u540c\u610f": 7, "\u4e00\u9ede": 1, "\u9019\u9805": 2, "\u7b2c\u4e8c\u5929": 1, "\u4e00\u65e9": 1, "\u613f": 1, "\u677e\u5f00": 1, "\u76f4\u5230": 1, "\u5c0d": 1, "\u65bc": 1, "\u610f\u898b": 1}, "move": {"\u522b\u52a8": 1, "\u5f97\u884c": 1, "\u52d5": 2, "\u642c": 4, "\u5bb6": 1, "\u642c\u51fa\u53bb": 1, "\u627e": 1, "\u500b": 1, "\u60a8": 2, "\u79fb": 1, "\u4e00\u9ede": 1, "\u4eba": 1, "\u5c31": 1, "\u53ef\u4ee5": 1, "\u5411": 1, "\u5de6\u79fb": 1, "\u52a8": 1, "\u8a72": 1, "\u8d70": 1, "\u4e00\u52d5": 1, "\u5c07": 1, "\u79fb\u51fa": 1}, "beginning": {"\u958b\u59cb": 2, "\u88ab": 1, "\u4f7f\u7528": 1, "\u958b\u982d": 2, "\u5f00\u59cb": 1, "\u6389\u5934\u53d1": 1, "\u4e94\u6708": 1, "\u521d": 1}, "snow": {"\u4e0b\u96ea": 13, "\u4e0b": 3, "\u96ea": 13, "\u4e5f\u8bb8": 1, "\u5594": 1, "\uff01": 1, "\u7a4d\u96ea": 1, "\u770b\u8d77": 2, "\u4f86": 2, "\u5feb": 1, "\u660e\u5929": 1, "\u96ea\u5730": 1, "\u8ff7\u4e86\u8def": 1}, "long": {"\u9577": 20, "\u4e45": 4, "\u5f88": 11, "\u4e00\u6bb5": 4, "\u592a\u4e45": 1, "\u591a\u4e45": 37, "\u6642\u9593": 6, "\u5f88\u4e45": 8, "\u4e86": 1, "\u5c31": 2, "\u8981": 1, "\u6f2b\u957f": 1, "\u4e0d\u80fd": 1, "\u5f85": 1, "\u4e45\u7559": 1, "\u4e00\u982d": 1}, "an": {"\u4e2a": 7, "\u4e00\u4f4d": 2, "\u4e00\u4e2a": 15, "\u500b": 1, "\u662f": 10, "\u4e00\u500b": 37, "\u4ee5\u4e3a": 1, "\u6709": 1}, "flying": {"\u66fe\u7d93": 1, "\u5922\u60f3": 1, "\u98db\u7fd4": 1, "\u98de": 3, "\u5c06\u8981": 1, "\u5230": 1, "\u5750": 1, "\u98db\u6a5f": 1, "\u5c07": 1, "\u98db\u5f80": 1}, "sky": {"\u5929\u7a7a": 14, "\u5929\u4e0a": 7, "\u5929": 1, "\u5f53": 1, "\u660e\u6717": 1, "\u4e0b\u6765": 1}, "eyelid": {"\u5de6": 1, "\u773c\u76ae": 1, "\u5728": 1, "\u8df3": 1}, "away": {"\u7acb\u523b": 4, "\u5c31": 4, "\u4ed6\u4eec": 1, "\u4e86": 12, "\u4e0d\u7528": 1, "\u4e0a": 1, "\u9003\u8d70": 1, "\u96e2\u958b": 3, "\u8fdc\u79bb": 2, "\u9003\u8dd1": 2, "\u8dd1": 1, "\u8d70": 2, "\u79bb": 2, "\u8fdc": 2, "\u96e2": 1, "\u9060": 1, "\u70b9\u513f": 1, "": 1, "\u7acb\u5373": 1, "\u6211\u5bb6": 1, "\u6211": 1}, "since": {"\u5f9e": 11, "\u958b\u59cb": 6, "\u5c31": 9, "\u8d77": 6, "\u8fd8\u662f": 1, "": 1, "\u96e2": 1, "\u9762\u6709": 1, "\u6c92\u6709": 4, "\u5fd9\u8457": 1}, "February": {"\u4e8c\u6708": 1, "\u6c92": 1, "\u5beb\u4fe1": 1, "\u7d66": 1, "2": 1, "\u6708": 1, "\u6709\u4e2a": 1, "\u77ed\u671f": 1}, "lot": {"\u5f88\u591a": 83, "\u8bb8\u591a": 4, "\u89e3\u51b3": 1, "\u5f88": 5, "\u4f1a": 1}, "water": {"\u6c34": 52, "\u7ed9": 6, "\u9019": 2, "\u53e3": 2, "\u4e95\u88e1": 2, "\u8bf7": 2, "\u592a": 1}, "playing": {"\u5728": 13, "\u554f\u554f": 1, "\u73a9": 9, "\u6b63\u5728": 10, "\u90a3\u6642": 1, "": 1, "\u6253": 1, "\u81ea\u5df1": 1, "\u90a3\u500b": 1}, "volleyball": {"\u6253": 3, "\u6392\u7403": 5, "\u5e38": 1}, "mathematics": {"\u6578\u5b78": 6, "\u6570\u5b66": 5, "\u4e0d\u597d": 1, "\u6578\u5b78\u611f": 1, "\u559c": 1, "\u64c5\u9577": 2}, "building": {"\u90a3\u68df": 2, "\u5efa\u7bc9\u7269": 2, "\u4e00\u5bb6": 1, "\u5efa\u7b51": 3, "\u90a3\u680b": 1, "\u8fd9\u5e62": 1, "\u9ad8\u697c": 1, "\u5927\u697c": 2, "\u6211\u4eec": 1, "\u91cc": 2, "\u9ad8\u6a13": 1, "\u5e62": 1, "\u8001\u697c": 1, "\u8fd9\u680b": 1, "\u697c\u91cc": 1, "\u6709": 1}, "white": {"\u767d\u8272": 9, "\u767d": 1, "\u4e00\u53ea": 2, "\u9ed1\u72d7": 1, "\u767d\u72d7": 1, "\u4e24\u6761": 1, "": 1, "\u4e00\u6761": 1, ",": 1}, "speakers": {"\u7576\u6642": 1, "\u4ee5": 1, "\u70ba": 1, "\u4eba": 1, "\u516c\u7acb": 1, "\u4efb\u6559": 1}, "native": {"\u6bcd\u8a9e": 4, "\u6bcd\u8bed": 7, "\u672c\u5730\u4eba": 1, "\u6bcd\u4eb2": 1, "\u628a": 1}, "glad": {"\u5f88": 17, "\u9ad8\u8208": 9, "\u80fd\u591f": 5, "\u51fa": 5, "\u4e00\u4efd": 4, "\u529b": 5, "\u592a\u597d\u4e86": 7, "\u9ad8\u5174": 10, "\u771f": 1, "": 1, "\u9019\u500b": 1, "\u518d": 2, "\u80fd": 1, "\u898b\u5230": 1, "\u8fd9\u6837": 1, "\u55ae\u7368": 1, "\u5979": 1, "\u6703": 1}, "weekend": {"\u6574\u500b": 2, "\u9031\u672b": 15, "\u5468\u672b": 9, "\u904e": 1, "\u5f97": 1, "\u6bcf\u500b": 3, "\u8fc7": 2, "\u6109\u5feb": 2, "\u9813\u904e": 1}, "stink": {"\u8eab\u4e0a": 1, "\u53d1\u81ed": 1, "\u4e86": 1}, "high": {"\u9ad8\u4e2d\u751f": 7, "\u9ad8\u4e2d": 8, "\u9ad8": 7, "\u5f88": 2, "\u65f6": 1, "\u66fe": 1, "\u8a55\u50f9": 1, "\u9ad8\u4e2d\u6bd5\u4e1a": 1, "\u4e4b\u540e": 1, "\u8fc7": 1, "\u65e9\u8be5": 2, "\u4e00\u540d": 1, "\u9ad8\u4e2d\u5973\u751f": 1}, "It": {"\u8fd9": 54, "\u5b83": 57, "": 6, "\u9019": 14, "\u662f": 22, "\u5f88": 10, "\u90a3": 5, "\u9418": 1, "\u53bb": 1, "\u4e00\u4e0b": 1}, "exhausted": {"\u56f0\u6b7b": 1, "\u4e86": 4, "\u7b4b\u75b2\u529b\u76e1": 1, "\u5730\u7b4b": 1, "\u75b2\u529b": 1, "\u76e1": 1, "\u6781\u4e86": 1, "": 1, "\u4ed6": 1}, "price": {"\u50f9\u683c": 5, "\u6b63\u5728": 1, "\u4e0a\u6f32": 1, "\u4ef7\u683c": 4, "\u8cb7": 1, "\u6771\u897f": 1, "\u4e0b\u8dcc": 2, "\u7c73\u4ef7": 1}, "sell": {"\u8ce3": 6, "\u628a": 2, "\u5356": 2, "\u7ed9": 1, "\u53ef\u4ee5": 1, "\u5973\u978b": 1, "\u5fc5\u9808": 1, "\u5f97\u5356": 1, "\u751a\u9ebc": 1}, "brother": {"\u5f1f\u5f1f": 26, "\u5144\u5f1f": 21, "\u54e5\u54e5": 31, "\u548c": 2, "\u5f88\u719f": 2, "\u6709\u4e2a": 2, "": 1}, "player": {"\u4e2a": 7, "\u9078\u624b": 4, "\u4e00\u540d": 3, "\u6210\u70ba": 2, "\u904b\u52d5\u54e1": 1, "\u7403\u624b": 2, "\u624b": 1, "\u9ad8\u624b": 1}, "famous": {"\u6709\u540d": 8, "\u8457\u540d": 7, "\u56e0\u4e3a": 1, "": 1, "\u4f60": 1, "\u4ee5": 1, "\u805e\u540d": 1, "\u4e00\u4f4d": 1, "\u6210\u540d": 2}, "soccer": {"\u8db3\u7403": 10, "\u9009\u624b": 2, "\u8e22\u8db3\u7403": 6, "\u6709": 1, "\u9177\u7231": 1, "\u8db3\u7403\u6bd4\u8d5b": 1}, "scared": {"\u4e00\u76f4": 1, "\u5bb3\u6015": 5, "\u6ca1\u60f3\u5230": 1, "\u4e0d\u6015": 1, "\u53d7\u5230": 1, "\u6015": 3, "\u7576\u6642": 1, "\u5413": 1, "\u8bf4\u4e0d\u51fa": 1, "\u8bdd": 1}, "could": {"\u80fd": 35, "": 3, "\u7121\u6cd5": 11, "\u4e0d\u5230": 1, "\u53ef\u4ee5": 11, "\u4e0d\u80fd": 19, "\u6240\u4ee5": 1, "\u4f60": 1, "\u505a\u5230": 4, "\u4ed6": 1, "\u904e": 1, "\u80fd\u591f": 2, "\u4e0b\u500b\u6708": 1, "\u6c64\u59c6": 1, "\u60f3\u4e0d\u5230": 1}, "questions": {"\u554f\u984c": 25, "\u9019\u4e9b": 1, "\u95ee\u9898": 13, "\u4f60\u5011": 1, "\u65e0\u6cd5\u56de\u7b54": 1}, "yours": {"\u4f60": 20, "\u7684": 27, "": 4, "\u90a3": 1, "\u90a3\u4e2a": 2, "\u4e0d\u5173": 1, "\u4e0d": 1, "\u8f66\u5b50": 1, "\u5f00\u9500": 1}, "single": {"\u662f": 1, "\u5355\u8eab": 3, "\u6000\u7591": 1, "\u55ae\u8eab": 3, "\u4ed6": 1, "\u751a\u9ebc": 1, "\u4e5f": 1}, "breath": {"\u6df1": 1, "\u5438": 2, "\u5f8c": 1, "\u5c4f\u4f4f": 2, "\u6c23": 1, "": 1, "\u4e0a\u5c71": 1, "\u6211": 1, "\u5b8c\u5168": 1, "\u4e0d": 1, "\u547c\u5438": 2, "\u7740": 1}, "hold": {"\u4e00\u53e3": 1, "\u6c23\u7136": 1, "\u9019\u689d": 1, "\u80fd\u6490": 1, "\u80fd\u63e1": 1, "\u80fd": 2, "\u7559": 1, "\u5ea7": 1}, "youth": {"\u5e74": 1, "\u8f15": 1, "\u6642\u5019": 1}, "worked": {"\u5de5\u4f5c": 16, "\u6309\u65f6": 1, "\u5728": 1, "\u5e72": 1, "\u6d3b": 1, "\u4e00\u9593": 1, "\u5e02\u7acb": 1}, "successful": {"\u73fe\u5728": 1, "\u4e8b\u4ef6": 1, "\u6210\u529f": 1}, "buy": {"\u4e70": 25, "\u8cb7": 32, "\u5c31": 1, "\u4e70\u4e0b": 1, "\u6211": 2, "\u6771\u897f": 1, "\u6709": 2, "\u624d": 1, "": 2, "\u5fc5\u9808": 1, "\u5957": 1, "\u54ea\u91cc": 1, "\u7d66": 1, "\u8cb7\u9593": 1}, "gift": {"\u4e00\u4efd": 2, "\u793c\u7269": 5, "\u7ed9": 1, "\u9001": 3, "\u4e00\u6837": 1, "\u79ae\u7269": 6, "\u5c0d": 2, "\u65bc": 1, "\u611f\u5230": 1}, "concerned": {"\u95dc\u5fc3": 1, "\u5bf9": 2, "\u6765\u8bf4": 2, "\u6d53": 1, "\u5728": 2, "\u64d4\u5fc3": 2, "\u62c5\u5fc3": 2, "\u70ba": 1}, "future": {"\u672a\u4f86": 2, "\u4ee5\u540e": 3, "\u6253\u7b97": 1, "\u5e72\u4ec0\u4e48": 1, "\u5c06\u6765": 6, "\u4eba": 1, "\u53ef\u80fd": 1, "\u767c\u751f": 1, "\u5462": 3, "\u6ce8\u610f": 2, "\u70b9": 2, "\u5f53": 1, "\u672a\u6765": 2, "\u5730": 1, "\u8c08\u8bba": 1}, "blushing": {"\u8138\u7ea2": 2, "\u4e86": 2}, "dolphin": {"\u6d77\u8c5a": 3}, "trainer": {"\u9a6f\u517b": 1, "\u5458": 1, "\u4ea4\u6d41": 1, "\u5f97\u6bd4": 1, "\u671f\u671b": 1, "\u597d\u5f97\u591a": 1}, "expected": {"\u6240": 3, "\u671f\u5f85": 2, "\u9810\u671f": 2, "\u6b63\u662f": 1, "\u82b1": 1, "\u66f4": 1, "\u591a": 1, "\u6642\u9593": 1, "\u6c92": 1, "\u60f3\u50cf": 1, "\u90a3\u9ebc": 1, "\u8cb4": 1}, "rest": {"\u4f11\u606f": 14, "\u4e00\u4e0b": 5, "\u4e00\u4f1a\u513f": 2, "\u9759\u517b": 1, "\u5145\u8db3": 1, "\u5341\u5206": 1, "\u7a0d\u5fae": 1, "\u505c\u4e0b": 1}, "possible": {"\u5c3d\u5feb": 4, "\u53ef\u80fd": 10, "\u660e\u5929": 1, "\u76e1\u529b": 1, "\u8ffd\u8d95": 1, "\u5c3d\u65e9": 1, "\u76e1": 1, "\u5730": 1, "\u4e00\u9ede": 1, "\u6709": 2, "\u76e1\u65e9": 2, "\u8ac7\u8ad6": 1, "\u90a3\u4ef6\u4e8b": 1, "\u8fc7\u6765": 1, "\u8fd9\u4e8b": 1, "\u4e0d\u592a\u53ef\u80fd": 1}, "strike": {"\u7f62\u5de5": 3}, "affected": {"\u5f71\u54cd": 1, "\u56fd\u5bb6": 2, "\u6df1\u53d7\u611f\u52a8": 1, "\u59a8\u788d": 1}, "economy": {"\u7ecf\u6d4e": 5, "\u590d\u82cf": 1}, "down": {"\u5e72\u4ec0\u4e48": 1, "\u653e\u4e0b": 3, "\u4e0b": 2, "\u4e86": 28, "\u5931\u671b": 4, "\u4e0b\u4f86": 1, "\u4e0b\u6765": 4, "\u4ee5": 1, "\u4e0a": 2, "": 1, "\u83f8": 1}, "Prices": {"\u7269\u4ef7\u4e0a\u6da8": 1, "\u4ef7\u683c": 2, "\u50f9\u683c": 3, "\u7269\u50f9": 1, "\u4e0a\u6f32": 1}, "guitar": {"\u5f48": 10, "\u5409\u4ed6": 17, "\u4e00\u628a": 1, "\u60f3\u5f48": 1}, "hid": {"\u8eb2": 3, "\u628a": 3, "\u85cf": 2, "\u85cf\u5230": 3, "\u540e": 3, "\u8d77\u4f86": 1, "\u4e0d": 1, "\u8b93": 1, "\u77e5\u9053": 1, "\u85cf\u5728": 1}, "table": {"\u684c\u5b50": 28, "\u684c\u4e0a": 13, "\u5b83": 1, "\u628a": 1, "\u90a3": 1, "\u5f35": 1}, "soon": {"\u5c31": 31, "": 9, "\u5f88\u5feb": 30, "\u5feb": 8, "\u5230": 4, "\u4e0d\u4e45": 2, "\u5c31\u8981": 2, "\u5c3d\u5feb": 3, "\u540e": 1, "\u4e00": 2, "\u96bb": 1, "\u5feb\u70b9": 3, "\u60f3": 1, "\u671f\u5f85": 1, "\u4ed6": 1}, "break": {"\u5e72\u8106": 1, "\u5730": 1, "\u65ad\u7edd\u6765\u5f80": 1, "\u8b93": 1, "\u6b47\u6b47": 1, "\u4f11\u606f": 3, "\u9976": 1, "\u5427": 1, "\uff01": 1, "\u5f04\u574f\u4e86": 1, "\u6253\u65ad": 1, "\u6253\u7834": 2, ",": 1, "\u8ba9": 1, "\u6211\u4eec": 1, "\u4e00\u4e0b": 2, "\u60f3": 1}, "recommend": {"\u63a8\u85a6": 2, "\u53e6\u4e00\u5bb6": 1, "\u5411": 1, "\u63a8\u8350": 2, "\u90a3\u5bb6": 1, "\u98df\u7269": 1}, "hotel": {"\u65c5\u9928": 13, "\u9152\u5e97": 6, "\u5230": 4, "\u9019\u5bb6": 4, "\u4f4f": 2, "\u65c5\u9986": 1, "\u4e00\u73ed": 1}, "drinking": {"\u559d": 6, "\u70b9": 1, "\u6212\u9152": 5, "\u5f88": 1, "\u559d\u9152": 2, "\u6b63\u5728": 3, "\u559d\u5564\u9152": 1, "\u91cc": 1, "\u4e1c\u897f": 1, "\u559d\u6389": 1, "\u56e0\u70ba": 1, "": 1}, "movie": {"\u770b": 9, "\u7535\u5f71": 8, "\u96fb\u5f71": 17, "\u4e00\u90e8": 2, "\u9019\u90e8": 2, "\u771f\u7684": 1, "\u5b78": 1, "\u6211": 1, "\u60f3": 1, "\u90a3\u90e8": 1, "\u54ea\u90e8": 1, "\u90e8": 1}, "pushed": {"\u5230": 2, "\u8eca\u5b50": 1, "\u63a8\u8eca": 1, "\u63a8": 1, "\u4ece": 1, "\u62e5": 1, "\u51fa\u6765": 1}, "behind": {"\u5f8c": 6, "\u9762": 3, "\u5217\u8eca": 1, "\u96a8\u624b": 2, "\u5728": 8, "\u80cc\u540e": 1, "\u610f\u601d": 1, "\u8eab": 1, "\u540e\u9762": 3, "\u5c31": 1}, "stirred": {"\u7528": 1, "\u8336\u5319": 1, "\u6405": 1}, "coffee": {"\u5496\u5561": 48, "\u559d\u5496\u5561": 9, "\u559d": 3, "": 2, "\u8fb9": 2, "\u716e": 2, "\u9084": 1, "\u4e0a": 1}, "lived": {"\u4f4f": 23, "\u5728": 6, "\u65f6\u5019": 1, "\u5df2\u7ecf": 1, "\u591a": 1, "\u77e5\u9053": 1, "\u4e00\u6bb5\u65f6\u95f4": 1, "\u6d3b": 2}, "center": {"\u5e02\u4e2d\u5fc3": 3, "\u628a": 1, "\u4f60\u4eec": 1, "\u5e26\u5230": 1, "\u4f4d\u4e8e": 1, "\u4e2d\u5fc3": 1}, "Not": {"\u6c92\u6709": 3, "\u4e0d\u662f": 10, "\u90fd": 1, "\u91d1\u9322": 1, "\u8cb7\u5230": 1, "\u4e00\u4e2a": 1}, "person": {"\u4e00\u500b": 8, "\u4eba": 35, "\u500b": 5, "\u4e2a": 5, "\u662f": 8, "\u60a8": 2, "\u597d\u4eba": 8, "\u90a3\u4eba": 1, "\u4eb2\u81ea": 2, "\u89aa\u81ea": 2}, "late": {"\u9072": 17, "\u665a": 18, "\u5f88": 4, "\u8fdf\u5230": 21, "\u9072\u5230": 10, "\u592a\u665a": 3, "": 2, "\u4e0a\u5b78": 9, "\u5230": 16, "\u518d\u4e0a": 1, "\u5b78\u9072": 1, "\u8fd8": 2, "\u6703\u665a": 1, "\u4e00\u9ede": 1, "\u8fdf": 1, "\u624d": 1, "\u603b\u6765\u665a": 1}, "second": {"\u5f88\u5feb": 1, "\u76f8\u6bd4": 1, "\u7b2c\u4e8c\u672c": 1, ",": 2, "\u7537\u5395\u6240": 1, "\u4e8c\u697c": 1, "\u82f1\u8a9e": 1, "\u5012\u6570": 1, "\u7b2c\u4e8c\u4e2a": 1, "\u5f97\u77e5": 1, "\u574f\u6d88\u606f": 1, "\u7b2c\u4e8c": 1, "\u4e8c": 1, "\u7b49": 1, "\u4e00\u4e0b": 2, "\u7b2c\u4e8c\u6b21": 1}, "Countless": {"\u65e0\u6570": 1, "\u95ea\u70c1": 1}, "stars": {"\u661f\u661f": 3, "\u4e2d": 2, "\u7e41\u661f": 1, "\u672c": 1, "": 1, "\u5e03\u6ee1": 1, "\u7e41\u661f\u70b9\u70b9": 1}, "whatever": {"\u4e0d\u7ba1": 1, "\u4ec0\u4e48": 4, "": 4, "\u4efb\u4f55": 7, "\u6771\u897f": 3, "\u505a": 1, "\u4e8b": 5, "\u65e0\u8bba": 1, ",": 2, "\u7d66": 1, "\u4e0d\u8bba": 2, "\u8981\u6c42": 1}, "able": {"\u5979": 1, "\u5c31": 5, "\u53ef\u4ee5": 4, "\u80fd": 18, "\u8a31": 1, "\u80fd\u4f86": 1, "\u505a\u4e0d\u4e86": 1, "\u9879": 1, "\u5f8c": 2, "\u4e0d\u80fd": 2, "\u93ae": 1, "\u80fd\u529b": 4, "\u8fd9\u4e2a": 2, "\u80fd\u6765": 1, "\u5e94\u8be5": 1, "\u4e00\u4e2a": 1, "\u4eba": 1, "\u4e70\u8f66": 1, "\u4e86": 1, "\u505a\u5230": 2, "\u6703": 1, "\u6211": 1}, "garden": {"\u82b1\u5712": 17, "\u88e1": 10, "\u82b1\u56ed": 7, "\u4f4f\u5b85": 1, "\u82b1\u56ed\u91cc": 4}, "planted": {"\u7a2e": 1, "\u91cc": 2, "\u79cd": 2, "\u4e09\u68f5": 1, "\u4e86": 1}, "roses": {"\u73ab\u7470": 7, "\u5979\u7a2e": 1, "\u9999\u6c34": 1}, "rude": {"\u771f\u662f": 1, "\u65e0\u793c": 1, "\u6211": 1, "\u771f": 1, "\u7c97": 1, "\u9b6f": 2, "\u5408\u958b": 1, "\u4f60\u8001": 1, "\u73a9\u7b11": 1, "\u7121": 2, "\u79ae": 2, "\u5f88\u7c97": 1}, "forget": {"\u5fd8\u8bb0": 8, "\u5fd8\u8a18": 3, "\u8a71": 1, "\u5fd8": 9, "\u522b\u5fd8\u4e86": 6, "\u90a3\u5929": 2, "\u4e0e": 1, "\u4e0d\u8981": 1, "": 1}, "Hawaii": {"\u90a3\u6b21": 1, "\u590f\u5a01\u5937": 4, "\u79df": 1, "\u4e00\u8f86": 1, "\u6c7d\u8f66": 1}, "plans": {"\u8a08\u5283": 5, "\u4ec0\u4e48": 4, "\u8ba1\u5212": 3, "\u6709": 2, "\u5b89\u6392": 1, "\u9055\u80cc\u5df1\u9858": 1, "\u8a08\u756b": 2, "\u5feb\u8981": 1, "\u5230": 1, "\u6642\u5019": 1, "\u6bcf\u4ef6\u4e8b": 1, "\u6703": 1, "\u7d30\u5fc3": 1}, "failed": {"\u63a5": 1, "\u5931\u6557": 3, "\u6c92\u6709": 1, "\u56de\u4fe1": 1, "\u5931\u8d25": 3, "\u4e86": 3, "\u90a3\u4e2a": 1, "": 2, "\u8a18\u6027": 1, "\u4e0d\u597d": 1, "\u7684": 1}, "Open": {"\u5f20\u5f00\u5634\u5df4": 1, "\u95ed\u4e0a\u773c\u775b": 1, "\u5f00\u95e8": 1, "\u6253\u958b": 2, "\u5f00\u706b": 1, "\u7741\u5f00\u773c\u775b": 2}, "Moderate": {"\u9069\u5ea6": 1, "\u5c0d": 1, "\u8eab\u9ad4": 1}, "exercise": {"\u904b\u52d5": 4, "\u5730": 1, "\u953b\u70bc": 1, "\u505a": 2, "\u7df4\u7fd2": 1}, "necessary": {"\u5fc5\u8981": 12, "\u6c92\u6709": 2, "\u56de": 1, "\u4e0d\u5fc5\u8981": 1, "\u4e8b": 1, "\u6ca1": 2, "\u8fd9\u4e2a": 1, "\u91cd\u8981": 1, "\u95e8": 1, "\u672c": 1, "\u6559\u6750": 1, "\u8a71": 1}, "Underage": {"\u672a\u6ee1": 1, "\u5e74\u9f84": 1, "\u996e\u9152": 1, "\u7f6a\u884c": 1}, "pound": {"\u4e00\u78c5": 1, "\u4ee5": 1, "\u78c5": 1, "\u70ba": 1, "\u55ae\u4f4d": 1, "\u4f86": 1, "\u51fa\u552e": 1}, "hope": {"\u5e0c\u671b": 49, "\u5982\u6b64": 2, "\u6240\u4ee5": 1, "\u8d77\u6765": 2, "\u5065\u5eb7": 1, "\"": 1, "\u80fd": 2, "\u65e9\u70b9": 1, "\u6703": 1, "\u7528\u4e0d\u7740": 1, "\u8b80\u8b80": 1}, "appreciates": {"\u6b23\u8d4f": 1}, "bring": {"\u5e26": 5, "\u6765": 2, "\u5e36": 7, "\u4e9b": 1, "\u5e26\u4e0a": 1, "\u628a": 3, "\u5b83\u4eec": 1, "\u5e26\u6765": 1, "\u4e48": 1, "\u5e36\u8457": 1, "\u4f86": 1, "\u5e26\u9152": 1, "\u5e26\u7ed9": 1}, "some": {"\u4e00\u70b9": 3, "\u4e00\u4e9b": 60, "\u9ede": 13, "\u4e9b": 17, "\u70b9": 2, "\u8981": 7, "\u7ed9": 1, "": 1, "\u501f": 2, "\u7d66": 1, "\u5e36": 1}, "Can": {"\u80fd": 91, "\u55ce": 70, "\u53ef\u4ee5": 35, "\u5417": 72, "": 1}, "bath": {"\u6d17\u6fa1": 8, "\u4e2a": 4, "\u6fa1": 5, "\u6d17": 4, "\u4e00\u6b21": 1, "\u6253\u7b97": 1, "\u603b\u8981": 1, "\u6d74\u5ba4": 2}, "piece": {"\u6761": 1, "\u4e00\u5757": 1, "\u4e0d\u8981": 1, "\u4e00\u584a": 1, "\u5206": 1, "\u4e00\u70b9": 1, "\u4e22": 1, "\u7ed9": 1, "\u4e00\u6761": 1, "\u4e00\u4efd": 1, "\u60c5\u5831": 1, "\u4e00\u5f35": 1, "\u5c0f\u83dc\u4e00\u789f": 1}, "interesting": {"\u6709\u8da3": 31, "\u5f88": 6, "\u6f14\u51fa": 1, "\u771f\u7684": 1, "\u6709\u610f\u601d": 7, "\u4f46\u662f": 1, "\u4f46": 1, "\u610f\u601d": 1, "\u89ba\u5f97": 2, "\uff01": 1, "\u4e0d\u597d\u73a9": 1, "\u591a\u4e48": 1}, "information": {"\u4fe1\u606f": 6, "\u7d66": 2, "\u8a0a": 1, "\u606f": 1, "\u5411": 1, "\u670d\u52d9\u53f0": 1, "\u8a62\u554f": 1, "\u8cc7\u6599": 1, "\u6c92\u6709": 1, "\u591a\u5927": 1, "\u7528\u8655": 1, "\u8a0a\u606f": 2}, "dog": {"\u72d7": 82, "\u9019": 10, "\u96bb": 16, "\u53ea": 5, "\u90a3": 4, "\u4f60": 1, "\u4e00\u6761": 1, "\u8ba9": 1, "": 2, "\u8fdb\u6765": 2, "\u6211": 1, "\u5b83": 1}, "meat": {"\u8089": 11, "\u7d05\u8089": 1, "\u6bcf\u9031": 1, "\u9019": 1, "\u5582": 1}, "balcony": {"\u4e00\u5bb6\u4eba": 2, "\u967d": 3, "\u81fa": 3}, "eating": {"\u5403": 34, "\u5403\u996d": 3, "\u5728": 12, "\u4e1c\u897f": 4, "": 1}, "breakfast": {"\u65e9": 11, "\u98ef": 11, "\u65e9\u9910": 24, "\u5403": 15, "": 2, "\u65e9\u996d": 6, "\u7238": 1, "\u5f9e": 1, "\u5e7e\u9ede": 2, "\u6240\u4ee5": 1}, "again": {"\u518d": 52, "\u5230": 5, "\u53c8": 11, "\u4e00\u904d": 3, "": 4, "\u518d\u4f86": 1, "\u4e00\u6b21": 11, "\u518d\u4e5f\u4e0d\u4f1a": 4, "\u518d\u6b21": 4, "\u542c\u8bf4": 1, "\u5e0c\u671b": 1, "\u4f60": 2, "\u4ed6": 1, "\u4e0b\u6b21": 1, "\u4ee5\u540e": 2, "\u9019\u4e8b": 2, "\u5b83": 1}, "Slight": {"\u5931\u4e4b\u6beb\u5398": 1, ",": 1, "": 1}, "alone": {"\u72ec\u81ea": 6, "\u524d\u5f80": 1, "\u7368\u81ea\u4e00\u4eba": 1, "\u4e00\u4e2a": 11, "\u4eba": 20, "\u5f53\u65f6": 1, "\u51fa\u95e8\u513f": 1, "\u4e00\u500b": 7, "\u5355\u72ec": 2, "\u8c08\u4e00\u8c08": 2, "\u5b64\u5355": 3, "\u7368\u81ea": 3, "\u53eb\u505a": 1, "": 1, "\u6211": 1, "\u60f3": 1, "\u603b\u4f1a": 1, "\u60f3\u8d77": 1, "\u4f60\u4eec": 1, "\u81ea\u5df1": 1, "\u72ec\u81ea\u4e00\u4eba": 1}, "keep": {"\u8ba9": 2, "\u8981": 5, "\u4e00\u76f4": 1, "\u4e0b\u53bb": 1, "\u628a": 7, "\u7559\u5728": 1, "\u4fdd\u7559": 1, "\u4f1a": 2, "\u4fe1\u5b88\u8bfa\u8a00": 1, "\u963b\u6b62": 1, "\u5f97": 1, "\u7559\u610f": 1, "\u4fdd\u6301": 2, "\u990a": 1, "\u5176\u5b9e": 1, "\u5e76\u4e0d\u591a": 1, "": 1, "\u4f46": 1, "\u505c\u653e": 1, "\u8ddf\u4e0a": 1, "\u7559\u7ed9": 1}, "waiting": {"\u7b49": 25, "\u7740": 7, "\u7169": 1, "\u5728": 7, "\u7b49\u5019": 3, "\u7b49\u8457": 1, "\u6b63\u5728": 1, "": 1}, "resources": {"\u4e26": 1, "\u64c1\u6709": 1, "\u8c50\u5bcc": 1, "\u8cc7\u6e90": 2}, "natural": {"\u81ea\u7136": 4, "\u5929\u7136": 1, "\u5f97": 1}, "fun": {"\u73a9": 4, "\u5f97": 4, "\u5f88": 15, "\u597d\u73a9": 4, "\u6709\u8da3": 10, "\u6559": 1, "\u5979": 1, "\u6349\u5f04": 1, "\u6709\u610f\u601d": 2, "\u6709": 1, "\u62ff": 1, "\u5f00\u5fc3": 2, "\u53d6\u7b11": 2, "\u4e8b\u60c5": 1, "\u4f60\u4eec": 1, "\u8fd9\u5e2e": 1, "\u771f": 1, "\u6ca1\u610f\u601d": 1, "\u958b\u5fc3": 2, "\u9b27": 1, "\u627e": 1, "\u4e50\u5b50": 1}, "having": {"\u9ad8\u8208": 1, "\u6b63\u5728": 4, "\u66fe\u7ecf": 1, "\u5c07": 1, "\u8209\u884c": 2, "\u516c": 1, "\u5712": 1, "\u88cf": 1, "\u73a9\u800d": 1, "\u4f60\u4eec": 1, "\u73a9": 1, "\u554a": 1, "\u9ad8\u5174": 1, "\u5730\u73a9": 1, "\u6709\u500b": 1, "\u597d\u50cf": 1, "\u54ea\u91cc": 1, "\u6b63": 1, "\u4e2d": 1}, "finding": {"\u4e0d\u5e78": 1, "\u627e": 4, "\u4e0d\u5230": 1, "\u5f88": 1, "\u96e3": 1, "\u627e\u5230": 4, "\u8d70": 1, "\u6c92": 1, "\u6beb\u4e0d": 1, "\u8d39\u52b2": 1, "\u5c31": 1, "\u516c\u53f8": 1}, "favorite": {"\u6700": 31, "\u559c\u6b61": 18, "\u559c\u6b22": 2, "": 1}, "cooked": {"\u5bb6\u5e38\u83dc": 1, "\u4e3a": 1, "\u716e": 4, "\u4e00\u987f": 1, "\u70ba": 2, "\u8c50\u76db": 1, "\u4e00\u9910": 2, "\u597d\u5403": 1}, "thinking": {"\u6b63\u5728": 2, "\u8003\u616e": 3, "\u4e0d\u7981": 1, "\u60f3": 5, "\u5728": 8, "\u751f": 1, "\u60f3\u5230": 2, "\u7a81\u7136": 1, "\u4f1a": 2, "\u5f53\u65f6": 1, "\u60f3\u8d77": 1, "\u8003\u8651": 2, "\u4e0d\u5047\u601d\u7d22": 1, "\u8131\u53e3\u800c\u51fa": 1, "\u6b63": 1, "\u5230": 1}, "Europe": {"\u6b50\u6d32": 5, "\u8bf7\u95ee": 2, "\u6b27\u6d32": 10, "\u54ea\u513f": 2, "\u5462": 2, "\u66fe": 1, "\u591a\u5e38": 1, "\u59d1\u6bcd": 1, "\u800c": 1}, "mailing": {"\u8a18": 2, "\u5f97": 2, "\u5bc4": 2, "\u5bc4\u4fe1": 1, "\u4e0a\u9762": 1, "\u904e\u4fe1": 1}, "urgent": {"\u6536\u5230": 1, "\u4e00\u6761": 1, "\u7d27\u6025": 1, "\u7dca\u6025": 2, "\u8a0a\u606f": 1, "\u9019\u4ef6": 1}, "people": {"\u4eba": 94, "\u8d85\u8fc7": 1, "": 3, "\u505a\u5230": 1, "\u4eba\u4eec": 3, "\u8c08\u8bdd": 1, "\u6ee1\u8db3": 1, "\u53e6": 1}, "Although": {"\u867d\u7136": 3, "\u4e0a": 1, "\u5e74\u7eaa": 1, "": 2, "\u96d6\u7136": 1, "\u5f88": 1, "\u4f46\u662f": 1, "\u5c3d\u7ba1": 1, "\u7d2f": 1}, "alike": {"\u90a3": 1, "\u4e00\u6a21": 1, "\u4e00\u6a23": 1}, "Kabul": {"\u5580\u5e03\u5c14": 1, "\u963f\u5bcc\u6c57": 1, "\u9996\u90fd": 1}, "infirmary": {"\u4e00\u4e0b": 1, "\u533b\u52a1\u5ba4": 1}, "belongs": {"\u5f52": 1, "\u651d\u5f71": 1, "\u9019\u68df": 2, "\u5c6c": 3, "\u65bc": 3}, "smoking": {"\u6212\u70df": 12, "\u6212\u83f8": 3, "\u5438\u70df": 3, "\u6211": 1, "\u6212\u7159": 4, "\u7121": 1, "\u6cd5\u6212": 1, "\u7159": 3, "\u6212": 2}, "address": {"\u5730\u5740": 20, "\u4f4f\u5740": 3, "\u59d3\u540d": 3, "\u8eab\u4e0a": 1, "\u5e36": 1, "\u4f60": 2, "\u5c31\u884c\u4e86": 1, "\u4f60\u5bb6": 1}, "noticed": {"\u6ce8\u610f": 6, "\u5230": 5, "\u6240\u6709\u4eba": 1, "\u5f53\u65f6": 1, "\u767c\u73fe": 2, "\u60c5\u6cc1": 1, "\u4e0b": 1, "\u9032\u53bb": 1}, "pattern": {"\u4e00\u500b": 1, "\u5716\u6848": 1}, "accompanied": {"\u70ba": 2, "\u4f5c": 1, "\u4f34\u594f": 2, "\u966a": 1}, "piano": {"\u92fc\u7434": 29, "\u5f48": 21, "\u6703\u5f48": 1, "\u5f39\u94a2\u7434": 5, "\u67b6": 2, "\u94a2\u7434": 2, "\u5979": 1, "\u4ee5\u81f3\u4e8e": 1, "\u4e0d\u5f48": 1}, "Today": {"\u4eca\u5929": 13, "\u59ca\u59ca": 1}, "register": {"\u767b\u8a18": 2, "\u9019": 1, "\u5802": 1, "\u518a": 3, "\u7c3d\u540d": 1, "\u5728": 1, "\u524d": 1, "\u8a3b": 1}, "Does": {"\u5417": 8, "\u55ce": 20, "\u6bcf\u4e2a": 1, "\u751a\u9ebc": 1, "\u7814\u8b80": 1, "\u6bd4\u746a\u9e97": 1}, "somewhere": {"\u9019": 1, "\u9644\u8fd1": 1, "\u67d0\u500b": 4, "\u5730\u65b9": 9, "\u67d0\u5904": 1, "\u5728": 6, "\u53e6": 1, "\u4e00\u4e2a": 2, "\u6253\u7b97": 1, "\u5468\u56f4": 1, "\u67d0\u4e2a": 1, "\u522b\u5904": 2, "\u96e8\u5098": 1, "\u6211": 1, "\u60f3": 1, "\u61c9\u8a72": 1, "\u522b\u7684": 1, "\u51fa\u53d1\u70b9": 1, "\u5230": 1}, "dream": {"": 1, "\u505a": 5, "\u4e2a": 2, "\u5922": 6, "\u5230": 2, "\u68a6": 4, "\u68a6\u60f3": 2, "\u5f53\u7136": 1}, "straight": {"\u6cbf\u7740": 1, "\u6761\u8def": 1, "\u76f4": 1, "": 2, "\u5230": 1, "\u7ea2\u7eff\u706f": 1, "\u7684": 1, "\u76f4\u63a5": 1, "\u6ca1\u6234": 1, "\u6b63": 1, "\u7e7c\u7e8c": 1, "\u76f4\u884c": 1}, "Go": {"\u8d70": 5, "\u8d70\u958b": 2, "\uff01": 2, "\u7e7c\u7e8c": 1, "\u5c31": 1, "\u5427": 1, "\u73a9\u5427": 1, "\u56de\u8fa6": 1, "\u8d76\u5feb": 1, "\u770b\u89c1": 1, "\u79bb\u5f00": 1, "\u56de\u5bb6\u5427": 1}, "strange": {"\u6b63": 1, "\u5947\u602a": 20, "\u53d1\u751f": 1, "\u7740": 1, "\u771f": 1, "\u6709\u70b9": 1, "\u602a\u4eba": 1, "\u5730": 1, "\u4e00\u773c": 1, "\u6709": 2}, "Scotland": {"\u8607\u683c\u862d": 2, "9": 1, "\u6708": 1, "\u8b8a": 1}, "its": {"\u4ee5": 6, "": 1, "\u5b83": 5}, "woollen": {"\u5176": 1, "\u7f8a\u6bdb": 1, "\u7d21\u7e54\u54c1": 1, "\u800c": 1}, "tune": {"\u8fd9\u6b4c": 1, "\u9996": 1, "\u66f2\u5b50": 2, "\u4e0a\u5f48": 1, "\u4e00\u9996": 1}, "thirsty": {"\u5f88\u6e34": 2, "\u4e0d\u6e34": 1, "\u6e34": 3, "\u53e3\u6e34": 1}, "Paris": {"\u5df4\u9ece": 15, "\u5b78\u7fd2\u6cd5": 1, "\u8d8a": 1, "\u5c31\u662f": 1}, "seventeen": {"\u5341\u4e03": 2, "\u6b72": 2, "\u9577": 1, "\u5f97": 1, "\u6642\u5019": 1, "17": 1, "\u5c81": 1}, "boy": {"\u7537\u5b69": 46, "\u90a3\u4e2a": 2, "\u9019\u500b": 11, "\u5c0f\u7537\u5b69": 7, "\u8fd9\u4e2a": 3, "\u500b": 4}, "tall": {"\u9ad8": 29, "\u6c92": 2, "\u4e2a\u5b50": 2, "\u5f88": 2, "\u9ad8\u5927": 1, "\u957f": 1, "\u5f97": 1}, "hands": {"\u624b": 18, "\u4e3e": 2, "\u8d77\u6765": 2, "\u6d17\u624b": 2, "\u5584\u4e8e": 1, "\u52a8\u624b": 1, "\u505a\u4e8b": 1}, "One": {"\u4e00\u4e2a": 9, "\u5e2e\u4e0d\u4e86": 1, "\u4e2a": 1, "\u4f46": 1, "\u4eba\u80fd": 1, "": 3, "\u4e2d": 2, "\u5f97": 1, "\u4e0d\u5920": 1, ",": 1, "\u9019\u4e9b": 1, "\u5176\u4e2d": 3, "\u4e00": 1, "\u4e00\u500b": 4}, "size": {"\u7801": 1, "\u5bf9": 1, "\u6765\u8bf4": 1, "\u5c3a\u5bf8": 3, "\u5e7e\u865f": 1, "\u5927\u5c0f": 3, "\u4e00\u6a23": 1}, "large": {"\u5927": 11, "\u592a\u5927": 1, "\u4e00\u68df": 1, "\u5927\u623f\u5b50": 2, "\u5927\u5bb6\u5ead": 3, "\u6709": 1, "\u9019\u9ebc": 1, "\u5920\u7528": 1, "\u5927\u9b5a": 1}, "seems": {"\u4f3c\u4e4e": 14, "\u5f88": 1, "\u6109\u5feb": 2, "\u770b\u7740": 1, "\u770b\u8d77\u6765": 5, "\u770b\u4f86": 8, "\u770b\u6765": 3, "\u90a3": 1, "\u600e\u6a23": 1, "\u8c8c\u4f3c": 1, "\u597d\u50cf": 4, "\u5728\u6211\u770b\u6765": 1}, "college": {"\u5927\u5b66": 9, "\u8fc7": 2, "\u5bb6\u91cc": 1, "\u6ca1\u80fd": 1, "\u5ff5": 1, "\u4e0a": 4, "\u4e0a\u5b8c": 1, "\u5927\u5b78": 8, "\u5927\u5b66\u751f": 3, "\u751f": 2, "\u662f": 1, "\u5f97": 1, "\u6240": 1, "\u80fd\u591f": 1}, "enjoy": {"\u5f97": 5, "\u4eab\u53d7": 2, "\u559c\u6b61": 2, "\u559c\u6b22": 5, "\u8fd9\u4e2a": 2, "\u73a9": 3, "\u958b\u5fc3": 3, "\u6211": 2, "\u76e1": 1, "\u8208": 1, "\u8868\u6f14": 1}, "pounds": {"\u5169\u78c5": 1, "\u7529\u6389": 1, "\u51e0\u78c5": 1, "\u8981": 1, "\u4e09\u78c5": 1}, "butter": {"\u5976\u6cb9": 3, "\u9ec4\u6cb9": 3, "\u628a": 2, "\u4e86": 1, "\u9762\u5305": 1}, "May": {"\u80fd": 16, "\u5417": 17, "\u53ef\u4ee5": 33, "\u55ce": 31, "": 1, "\u99d5\u99db": 1}, "bomb": {"\u8fd9\u4e2a": 2, "\u70b8\u5f39": 2, "\u70b8\u6b7b": 2, "\u64d4\u5fc3": 1, "\u5217\u8eca": 1, "\u4e0a": 1}, "example": {"\u505a": 1, "\u4e2a": 2, "\u699c\u6837": 2, "\u7ed9": 2, "\u6811\u7acb": 2, "\u597d\u699c\u6837": 1, "\u4e3e": 1, "\u4f8b\u5b50": 2}, "set": {"\u4e86": 7, "\u5c07\u9ce5": 1, "\u653e\u8d70": 1, "\u653e\u706b": 1, "\u71d2": 1, "\u6821\u820d": 1, "\u4f60": 1, "\u51fa\u53d1": 1, "\u64c1\u6709": 1, "\u4e00\u6574\u5957": 1}, "bad": {"\u574f": 3, "\u4e0d\u597d": 5, "\u5403": 1, "\u7684": 1, "\u7cdf\u7cd5": 5, "\u5f97": 1, "\u91cd\u611f\u5192": 1, "\u53ef\u4e0d": 1, "\u574f\u4e8b": 1, "\u5b9e\u5728": 1, "\u4e0d": 2, "\u64c5\u957f": 1, "\u53ef\u60dc": 1, "\uff01": 2, "\u5f88\u7cdf": 1, "\u58de": 3, "\u9057\u61be": 1, "\u554a": 1, "\u6709\u5bb3": 2, "\u8d77\u4f86": 1, "\u96e3": 1, "\u5bf9": 1, "\u771f\u662f\u592a": 1, "\u771f": 1, "\u4e0d\u884c": 1}, "supposed": {"\u8a72": 3, "\u751a\u9ebc": 1, "\u6c92": 1, "\u6709": 1, "\u4e8b": 2, "\u61c9": 2, "\u6bcf": 1, "\u4e00\u4e2a": 1, "\u5e94\u8be5": 2, "\u77e5\u6cd5": 1, "\u61c2\u6cd5": 1, "": 1, "\u771f\u6b63": 1, "\u7684": 1, "\u4eba": 1, "\u5e94\u5f53": 1, "\u8be5": 2, "\u4e86\u89e3": 1, "\u76f8\u5e94": 1}, "frightened": {"\u88ab": 2, "\u5687\u5230": 2, "\u53ea\u662f": 1, "\u4e26": 1, "\u6c92\u6709": 1, "\u5bb3\u6015": 1}, "Many": {"\u8bb8\u591a": 8, "\u8a31\u591a": 7, "\u7576": 1, "\u4f5c": 1, "\u70ba": 1, "\u9001\u884c": 1, "\u5f88\u591a": 5, "\u88ab\u76d7": 1, "\u4eba": 1}, "workers": {"\u5de5\u4eba": 2, "\u4e8e": 1, "\u9965\u997f": 1, "\u4e0a\u73ed\u65cf": 1, "\u5f97": 1, "\u8f9b\u82e6": 1}, "died": {"\u6b7b": 16, "\u53bb\u4e16": 8, "\u4e86": 13, "": 2, "\u7236\u4eb2": 1, "\u5c31": 2, "\u65bc": 1, "\u55aa\u751f": 1}, "invisible": {"\u82e5": 2, "\u96b1\u5f62": 2, "": 2, "\u5c31": 2}, "crush": {"\u4e00\u76f4": 1, "\u6697\u604b\u7740": 1, "\u7231": 2}, "morning": {"\u4eca\u5929": 33, "\u65e9\u4e0a": 69, "\u6628\u5929\u65e9\u4e0a": 1, "\u6628\u5929\u4e0a\u5348": 3, "\u4eca\u5929\u4e0a\u5348": 1, "\u4eca\u65e9": 1, "\u53bb\u8fc7": 1, "\u6bcf\u5929": 1}, "let": {"\u8b93": 23, "\u5427": 1, "\u8ba9": 27, "\u8fdb": 2, "\u522b": 8, "\u6c64\u59c6": 1, "": 6, "\u90a3\u9ebc": 1, "\u746a\u8389": 2, "\u6240\u4ee5": 1, "\u4e0d\u8ba9": 1, "\u5141\u8a31": 1}, "right": {"\u99ac": 5, "\u4e0a": 6, "\u6b63\u78ba": 6, "\u5bf9": 10, "\u9a6c\u4e0a": 4, "\u7684": 18, "\u771f\u662f\u592a": 1, "\u5c0d\u4e86": 2, "": 1, "\u662f": 9, "\u6b63\u786e": 1, "\u53f3": 1, "\u7121\u6b0a": 1, "\u5c0d": 11, "\u4e0a\u53bb": 1, "\u4e5f": 1, "\uff01": 1, "\u53f3\u908a": 2, "\u6709\u6743": 1, "\u6703": 1}, "deadline": {"\u671f\u9650": 1, "\u8fd1": 1}, "paper": {"\u5831\u7d19": 3, "\u7eb8": 2, "\u4f60": 2, "\u904e": 1, "\u62a5\u7eb8": 2, "\u9020": 1, "\u7eb8\u98de\u673a": 1, "\u770b\u5b8c": 1, "\u540e": 1, "\u501f": 1, "\u770b\u4e0b": 1, "\u7d19": 5, "\u4f86": 1, "\u9700\u8981": 1, "\u6587\u4ef6": 1}, "downtown": {"\u5e02\u4e2d\u5fc3": 4, "\u96e2": 1, "\u6bd4\u8f03": 1}, "Traffic": {"\u4ea4\u901a": 3, "\u7d05\u7da0\u71c8": 1, "\u4e00\u76f4": 1, "\u904b\u4f5c": 1}, "backed": {"\u5835\u585e": 1, "\u5012": 1, "\u9032\u8eca": 1}, "These": {"\u9019\u4e9b": 21, "\u8fd9\u4e9b": 12, "\u8fd9": 2, "\u592a": 1}, "dresses": {"\u6d0b\u88dd": 1, "\u7a7f\u8457": 2, "Tom": 1, "\u82b1\u8d39": 1, "\u7cbe\u529b": 1, "\u6253\u626e": 1, "\u81ea\u5df1": 1, "\u8863\u670d": 1}, "sucker": {"\u975e\u5e38": 1, "\u559c\u6b61": 1}, "beautiful": {"\u6f02\u4eae": 24, "\u771f": 3, "\u7f8e\u4e3d": 6, "\u7f8e\u9e97": 5, "\u7f8e": 5, "\u592a\u6f02\u4eae": 1, "": 1, "\u5f88\u7f8e": 2, "\u5f88\u6f02\u4eae": 2, "\u53f0": 1, "\u9753\u8f66": 1}, "women": {"\u5973\u4eba": 6, "\u5973\u751f": 1, "\u5bf9": 1, "\u4e00\u5957": 1, "\u7684\u8bdd": 1, "\u4f1a": 1, "\u7537\u4eba": 1, "\u90a3\u8fb9": 1, "\u4e24\u4f4d": 1, "\u5973\u58eb": 1}, "heated": {"\u5730": 1, "\u5e73\u606f": 1, "\u4e0d\u65b7": 1, "\u52a0\u6eab": 1, "\u722d\u57f7": 1, "\u6fc0\u70c8": 1, "\u9019\u500b": 1, "\u554f\u984c": 1}, "their": {"\u4ed6\u5011": 11, "\u7684": 30, "\u4ed6\u4eec": 22, "\u80fd": 1, "\u4f7f\u7528": 1, "\u4e0d": 1, "\u4e00\u7121": 1, "": 2}, "elected": {"\u7576": 1, "\u9078\u70ba": 4, "\u5f53\u9009": 5}, "committee": {"\u59d4\u54e1\u6703": 3, "\u59d4\u5458\u4f1a": 1, "\u662f": 1, "\u4e2d": 1, "\u6210\u54e1": 1}, "chairman": {"\u4e3b\u5e2d": 4, "\u53d7\u9080": 1, "\u505a": 1, "\u5c06": 1, "\u5462": 1}, "die": {"\u6b7b": 10, "\u53bb": 1, "\u60f3\u5230": 1, "\u4e0d\u6015\u6b7b": 1, "\u4f55\u65f6": 1, "\u8be5\u6b7b": 1, "\u56fa\u6709": 2, "\u4e00": 2, "\u4e3a\u4e86": 1, "\u6b7b\u4ea1": 1, "\u800c": 1, "\u8bde\u751f": 1}, "pizza": {"\u6279\u85a9": 1, "\u6bd4": 3, "\u85a9": 5, "\u6bd4\u8428": 2, "\u62ab": 1, "\u6bd4\u85a9": 1, "\u8981": 1, "\u4e9b": 1, "\u6279": 1, "\u8428": 1, "\u5403": 1}, "wearing": {"\u6234": 7, "\u7a7f": 5, "\u7a7f\u8457": 4, "\u6211": 1, "\u7a7f\u7740": 1, "\u8457": 1}, "gloves": {"\u7740": 2, "\u624b\u5957": 4, "\u628a": 1, "\u7559\u5728": 1, "\u4e0a": 1}, "decision": {"\u8b93": 2, "\u6c7a\u5b9a": 5, "\u500b": 1, "\u5341\u5206": 1, "\u51b3\u5b9a": 4, "\u597d\u4e86\u5417": 1, "\u7559\u7d66": 1, "\u4f5c": 1}, "Beer": {"\u5564\u9152\u74f6": 1, "\u73bb\u7483": 1}, "frozen": {"\u51e0\u4e4e": 1, "\u88ab": 1, "\u51bb\u6b7b": 1, "\u51bb\u51b0": 1}, "nearly": {"\u4e86": 8, "\u6628\u665a": 1, "\u5dee\u70b9": 1, "\u5dee\u4e0d\u591a": 3, "\u5c06\u8fd1": 1, "\u5f53": 1, "\u7ea6": 1, "\u4e09\u5341\u5e74": 1, "\u5e76": 1, "\u81ea": 1}, "version": {"\u8bf4\u6cd5": 1, "\u672c": 1, "\u4e0d\u662f": 1, "\u6700\u65b0\u7248": 1}, "supplied": {"\u7ed9": 1, "\u63d0\u4f9b": 1, "\u5145\u8db3": 1}, "soldiers": {"\u58eb\u5175": 5, "\u5011": 1, "\u73a9\u5177\u5175": 1, "\u5c31": 1, "\u8a31\u591a": 1, "\u9663\u4ea1": 1}, "Burn": {"\u770b\u5b8c": 1, "\u8bf7": 1, "\u628a": 1, "\u70e7\u6389": 1}, "please": {"\u8acb": 52, "\u60a8": 2, "\u597d": 26, "\u7d66": 8, "\u8bf7": 22, "\u8bf7\u95ee": 4, "\u4e00\u4e0b": 3, "\u80fd": 2, "\u4e0d\u80fd": 1, "\u5e2e": 1, "\u90a3": 1, "": 3, "\u554f": 1}, "later": {"\u7a0d": 2, "\u5f8c": 5, "\u6703": 1, "\u540e": 2, "\u8fc7": 1, "\u4e00\u4f1a": 1, "\u518d": 1, "\u7b49": 2, "\u4e00\u4e0b": 1, "\u5152": 1, "\u665a": 3, ",": 1, "": 2, "\u6642\u9593": 1, "\u9084": 1, "\u8981": 1, "\u4e00\u9ede": 1, "\u665a\u4e00": 1}, "Buy": {"\u7ed9": 1, "\u4e70": 1, "\u4e00\u74f6": 1, "\u56de\u6765": 2, "\u4e70\u70b9": 2}, "beer": {"\u5564\u9152": 20, "\u6765": 5, "\u4e00\u676f": 4, "\u559d\u4e00\u676f": 1, "\u6de1": 1, "\u559d": 1}, "yet": {"\u8fd8": 22, "\u6ca1": 12, "\u5462": 1, "": 3, "\u9084": 17, "\u6c92": 9, "\u4e3a\u5565": 1, "\u665a\u98ef": 1, "\u5979": 1, "\u6c92\u5230": 1}, "quite": {"\u600e\u4e48": 1, "\u5f88": 17, "\u592a": 3, "\u5b8c\u5168": 1, "\u90a3\u8f86\u8f66": 1, "\u5341\u5206": 3, "\u96be\u8bfb": 1, "\u8aaa": 1, "\u5f97": 2, "\u660e\u767d": 1, "\u6211": 1, "\u8ddf": 2, "\u53ef": 1, "\u771f\u597d": 1}, "ready": {"\u51c6\u5907": 19, "\u597d": 16, "\u6e96\u5099": 10, "\u597d\u4e86\u5417": 6, "\u672c\u8be5": 1, "\u505a\u597d": 1, "\u7518\u5fc3": 1, "\u4eba": 1, "\u90fd": 1, "\u53ca\u65f6": 1, "\u4f60\u4eec": 1}, "check": {"\u60f3\u73fe": 1, "\u7d50\u5e33": 1, "\u96e2\u958b": 1, "\u6aa2\u67e5": 2, "\u4e00\u4e0b": 2, "\u68c0\u67e5\u4e00\u4e0b": 1, "\u770b": 1, "\u652f\u7968": 2, "\u68c0\u67e5": 1, "\u6b63\u8981": 1, "\u7b7e\u5230": 1, "\u7528": 1, "\u5e33\u55ae": 1}, "case": {"\u8fd9\u6837\u7684\u8bdd": 1, "\u6211\u4f1a": 1, "\u8c03\u67e5": 1, "\u8fd9": 1, "\u8d77": 1, "\u6848\u4ef6": 2, "\u842c\u4e00": 2, "\u4ee5\u9632": 1, "\u4e8b\u60c5": 1, "\u4e26\u975e": 1, "\u5982\u6b64": 1}, "change": {"": 2, "\u96f6\u94b1": 2, "\u96f6": 2, "\u9322": 2, "\u6ca1\u6cd5": 1, "\u6539\u53d8": 4, "\u6539\u8b8a": 9, "\u5fc3\u610f": 3, "\u6362": 1, "\u66f4\u6539": 1, "\u63db": 1, "\u6211": 3, "\u4e0d\u597d\u610f\u601d": 1, "\u9019\u6a23": 1, "\u8a71": 1, "\u8a72": 1, "\u80fd": 1, "\u6c92\u6709": 1, "\u6211\u4eec": 1}, "German": {"\u5fb7\u56fd\u4eba": 1, "\u5fb7\u8a9e": 3, "\u5fb7\u8bed": 4, "\u4e5f": 1, "\u80fd\u770b\u61c2": 1, "": 1, "\u52dd": 1, "\u904e": 1}, "humor": {"\u5e7d\u9ed8\u611f": 3, "\u4e00\u70b9": 1, "\u90fd": 1, "\u975e\u5e38": 1}, "addition": {"\u9664\u4e86": 1, "\u82f1\u6587": 1, "": 1, "\u9084": 1}, "speaks": {"\u4ed6": 1, "\u8bb2": 2, "\u4ed6\u4eec": 1, "\u7528": 1, "\u8aaa": 5, "\u6703": 1, "\u548c\u6cd5\u8a9e": 1, "\u4f1a": 1, "\u8bf4": 1, "\u8bf4\u8bdd": 1, "\u8a71": 3, "\u4e0d": 1}, "surrounded": {"\u6728": 1, "\u6805\u680f": 1, "\u56f4": 1, "\u8d77\u6765": 1}, "boots": {"\u7a7f\u7740": 1, "\u957f\u9774": 1, "\u9774\u5b50": 3}, "phone": {"\u96fb\u8a71": 16, "\u7ed9": 5, "\u6253\u7535\u8bdd": 4, "\u6240\u4ee5": 1, "\u63a5\u5230": 3, "\u6253\u4f86": 2, "\u6253": 3, "\u7535\u8bdd": 1, "\u88e1": 1, "\u624b\u6a5f": 1, "": 1, "\u624b\u673a": 1, "\u6709": 1, "\u7d66": 1, "\u7535\u8bdd\u7c3f": 1}, "took": {"\u5e36": 5, "\u4e86": 44, "\u628a": 1, "\u8ba4\u4f5c": 1, "\u513f\u5b50": 1, "\u4ed6": 1, "\u6211": 1, "\u4f46": 1, "\u5b83": 1, "\u62ff": 3, "\u96fb\u68af": 1, "\u63a5\u624b": 1, "\u82b1": 3, "\u5f00\u8f66": 1, "\u9001": 1, "\u642d": 1}, "park": {"\u516c\u5712": 20, "\u516c\u56ed": 19, "\u88e1": 7, "\u91cc": 6, "\u6b65": 2, "\u505c": 1, "\u6ca1\u6cd5": 1, "\u5728": 1, "\u505c\u8f66": 1, "\u505c\u8eca": 1}, "solve": {"\u89e3\u6c7a": 6, "\u5462": 1, "\u8fd9\u4e2a": 5, "\u89e3\u51b3": 5, "\u9019\u500b": 4, "\u89e3\u51b3\u95ee\u9898": 1}, "Wait": {"\u7b49": 6, "\u4e00\u4e0b": 2, "\u7b49\u7b49": 2, "\u4e3a\u6b62": 1, "\u5728": 1, "\u7b49\u5f85": 1, "\u7247\u523b": 1, "\u7a0d": 1, "\u9019\u5152": 1, "\u7b49\u8457": 1}, "Hamlet": {"\u54c8\u59c6\u96f7\u7279": 2, "\u662f": 1, "\u626e\u6f14": 1, "\u89d2\u8272": 1}, "wrote": {"\u5beb": 9, "\u5beb\u4e0b": 3, "\u5199": 16, "\u4e86": 19, "\u597d": 1, "\u7d66": 4, "\u957f\u4fe1": 2, "\u5beb\u4fe1": 1, "\u4e24\u672c\u4e66": 1, "\u5168": 1, "\u662f": 1, "\u7ed9": 4, "\u4e00\u5c01": 1, "\u53c8": 1, "\u5730": 1, "\u5199\u4fe1": 1}, "caught": {"\u6293\u4f4f": 6, "\u4e86": 21, "\u6211": 1, "\u8d95\u4e0a": 1, "\u4e00\u73ed": 1, "\u6293\u5230": 5, "\u6293": 3}, "love": {"\u7231": 21, "\u611b": 25, "\u65bc": 1, "\u559c\u6b22": 5, "\u559c\u6b61": 4, "\u53f0": 1, "\u6703": 1, "\u4e0a": 3, "\u6211\u7231\u4f60": 2, "\u5f88": 1, "": 1, "\u7231\u60c5": 2}, "poet": {"\u51e0\u5206": 1, "\u50cf": 1, "\u8bd7\u4eba": 1, "\u4ee5": 1, "\u5049\u5927": 2, "\u8a69\u4eba": 5, "\u805e\u540d": 1, "\u66f4\u662f": 1, "\u6210\u70ba": 1}, "quiet": {"\u4fdd\u6301": 8, "\u5b89\u975c": 13, "\u5b89\u9759": 4, "\uff01": 1, "\u4eba": 1, "\u6c89\u9ed8": 1, "\u4f60": 1, "\u5e94\u8be5": 1, "\u4fdd\u6301\u6c89\u9ed8": 1}, "blame": {"\u602a": 4, "\u522b": 1, "\u4e3a": 1, "\u72af": 1, "\u9519": 1, "\u8d23\u5907": 2, "\u7b49\u8457": 1, "\u6c64\u59c6\u751f": 1}, "hitting": {"\u649e": 1, "\u5230": 1}, "snare": {"\u4e00\u53ea": 1, "\u4e0d\u4f1a": 1, "\u6389\u5165": 1, "\u540c\u4e00\u4e2a": 1, "\u9677\u9631": 1, "\u91cc": 1, "\u72e1\u5154\u4e09\u7a9f": 1}, "fox": {"\u72d0\u72f8": 7, "\u4e2a": 2, "\u9019": 2, "\u96bb": 2, "\u718a": 1, "\u751f\u6d3b": 1}, "twice": {"\u4e24\u6b21": 4, "\u5169\u6b21": 6, "\u5169\u500d": 1, "\u66fe\u7d93": 1, "\u5169\u904d": 1}, "popular": {"\u6d41\u884c": 1, "\u53d7\u5230": 2, "\u6b61\u8fce": 2, "\u53d7\u6b61": 6, "\u8fce": 6, "\u5979": 1, "\u89aa\u5207": 1, "\u9996\u6b4c\u66f2": 1}, "dislike": {"\u4e0d": 4, "\u559c\u6b61": 2, "\u7368\u8655": 1, "\u559c\u6b22": 1}, "flash": {"\u56e0\u4e3a": 1, "\u95ea\u5149\u706f": 1, "\u574f": 1, "\u4e0d\u80fd": 1, "\u5728": 1, "\u9ed1\u6697": 1}, "album": {"\u76f8\u7c3f": 2, "\u4e00\u672c": 1, "\u96c6\u90f5\u518a": 2, "\u4e00\u5f35": 1, "\u5531\u7247": 1, "\u5c08\u8f2f": 1}, "examined": {"\u6aa2\u67e5": 2, "\u90a3\u513f": 1, "\u68c0\u67e5": 1}, "throat": {"\u5589\u56a8": 5, "\u55d3\u5b50": 1}, "small": {"\u9019\u500b": 2, "\u592a\u5c0f": 3, "\u53c8": 2, "\u5c0f": 9, "\u8fd9\u8f86": 1, "": 3, "\u4f86\u8aaa": 2, ",": 1, "\u5973\u5b69": 1, "\u5f88\u5c0f": 2, "\u77ee\u5c0f": 1, "\u90a3\u8f1b": 1, "\u53ea\u80fd": 1, "\u91cc": 1, "\u7684": 1}, "apple": {"\u860b\u679c": 16, "\u82f9\u679c": 13, "\u9019\u500b": 2, "\u5403": 1, "\u53ef\u80fd": 1, "\u4f60\u5011": 1, "\u6709\u4e2a": 2, "\u6b63": 1, "\u5403\u8457": 1}, "days": {"\u4e09\u5929": 13, "\u51e0\u5929": 5, "\u5169\u5929": 2, "\u8fd9": 2, "\u4e4b\u524d": 1, "\u5e7e\u5929": 1, "\u9019\u91cc": 1, "\u5927": 1, "\u7d04": 1, "\u9045": 1, "\u5929": 1, "\u4e00\u5929": 1}, "first": {"\u7b2c\u4e00\u6b21": 16, "\u662f": 13, "\u6c64\u59c6": 1, "\u7b2c\u4e00": 10, "\u500b": 5, "\u5230": 2, "\u5148": 10, "": 1, "\u7b2c\u4e00\u73ed": 3, "\u5148\u751f": 1, "\u80fd": 1, "\u5b8c\u6210": 1, "\u4e00": 1, "\u5f00\u59cb": 1, "\u8d77\u521d": 1}, "met": {"\u89c1": 3, "\u89c1\u9762": 2, "\u898b": 5, "": 3, "\u6642": 2, "\u5728": 1, "\u9047\u5230": 5, "\u9047\u898b": 7, "\u78b0\u5230": 1, "\u89c1\u8fc7\u9762": 1, "\u6c92\u898b": 1, "\u53c8": 1, "\u524d": 1, "\u9047\u89c1": 1}, "ask": {"\u4e3a\u4ec0\u4e48": 1, "\u8b93": 2, "\u95ee\u4e2a\u95ee\u9898": 2, "\u554f": 17, "\u95ee": 17, "\u4e0d\u6562": 1, "\u60a8": 4, "\u9ad8\u5bff": 1, "\u6765": 3, "\u90a3": 1, "\u4f60\u4e2a": 2, "\u505a\u70b9\u4e8b": 1, "\u53ea\u8981": 1, "\u9019\u500b": 1, "\u5e79": 1, "": 2, "\u4e1c\u897f": 1, "\uff01": 1}, "lie": {"\u8aaa": 5, "\u8b0a": 5, "\u8bf4\u8c0e": 2, "\u5c31": 1, "\u5bf9": 2, "": 1, "\u6492\u8c0e": 2, "\u4ece\u4e0d": 1, "\u5c0d": 1, "\u5411": 2, "\u522b\u4eba": 1, "\u4f46": 1, "\u4f60": 1, "\u5df2\u7d93": 1}, "wrong": {"\u932f\u8aa4": 2, "\u9519": 10, "\u932f": 16, "\u4e86": 11, "\u90a3\u6837": 1, "\u6545\u969c": 1, "\u5230\u5e95": 1, "\u600e\u4e48\u56de\u4e8b": 1, "\u6211": 2, "\u5e76": 1, "\u9519\u8bef": 1, "": 2, "\u932f\u8eca": 1, "\u6c92\u6709": 1, "\u5c0d": 1, "\u662f": 2, "\u5343\u4e07": 1, "\u522b\u8bef\u4f1a": 1, "\u610f\u601d": 1, "\u4e0d\u5bf9": 1, "\u4ed6": 1, "\u6ca1": 1, "\u554f\u984c": 1}, "13": {"\u5df2\u7ecf": 1, "\u5341\u4e09\u5e74": 1, "\u4ee5\u6765": 1, "\u6700\u9ad8\u70b9": 1, "\u6709\u500b": 1, "\u5341\u4e09": 1, "\u6b72": 1}, "reached": {"\u8fbe\u5230": 1, "\u4e86": 3, "\u5230": 3, "\u9054": 2, "\u624d": 1}, "1970": {"1970": 3, "\u5e74": 3, "\u524d\u5f80": 1, "\u5efa\u6210": 1}, "thought": {"\u4ee5\u4e3a": 18, "\u8ba4\u4e3a": 5, "\u60f3": 2, "\u8a8d\u70ba": 11, "\u6b63\u5982": 1, "\u672c": 4, "\u8fd8": 1, "\u613f\u610f": 2, "\u4e86\u89e3": 2, "\u8fd9\u4ef6": 2, "\u60f3\u5230": 1, "\u9019": 1, "\u4e00\u9ede": 1, "\u8a18\u5f97": 1, "\u89c9\u5f97": 2, "\u6ca1\u60f3\u5230": 1, "": 1}, "either": {"\u4e5f": 5, "\u800c": 1, "\u65e0\u6cd5\u89e3\u91ca": 1, "\u4e2d": 2, "\u4efb\u4f55": 1, "\u4e00\u4f4d": 1, "\u6709": 1, "": 3, "\u6211": 2, ",": 1, "\u5b83\u4eec": 1, "\u6ca1\u6709": 1, "\u59b9\u59b9": 1, "\u4e0d\u662f": 2, "\u5c31\u662f": 1, "\u90a3": 1}, "react": {"\u6700\u5148": 1, "\u4f5c\u51fa": 1, "\u53cd\u61c9": 1}, "understand": {"\u660e\u767d": 24, "\u7406\u89e3": 8, "\u61c2": 18, "\u80fd": 3, "\u4e86\u89e3": 6, "\u51fa": 1, "\u4e00\u70b9": 1, "\u5c31": 2, "\u542c\u61c2": 1, "\u4f60\u4eec": 1, "\u61c2\u5417": 1, "\u91cc\u9762": 1, "\u4e0d\u61c2": 1, "\u6240": 1, "\u4e8b\u60c5": 1}, "door": {"\u95e8": 10, "\u9580": 26, "\u95dc\u9580": 9, "\u95e8\u53e3": 1, "": 3, "\u628a\u95e8": 1}, "slowly": {"\u6162\u6162": 4, "\u5730": 4, "\u6162": 3, "\u4e00\u9ede": 2, "\u6162\u70b9": 3, "\u80fd\u5426": 1, "\u958b\u6162": 1, "\u5c3d\u91cf": 1}, "opened": {"\u5f00": 1, "\u4e00\u5f00": 1, "\u6253\u5f00\u95e8": 1, "\u6253\u958b": 2, "\u4e00\u958b": 1, "\u4e86": 1, "\u638f\u51fa": 1, "\u5f00\u4e86\u95e8": 1, "\u958b": 1, "\u770b\u770b": 1}, "joke": {"\u6ca1": 1, "\u660e\u767d": 2, "\u90a3\u4e2a": 2, "\u7b11\u8bdd": 2, "\u8b93": 1, "\u5927\u7b11": 1, "\u8fd9\u4e48": 1, "\u8bf4": 1, "\u5f00": 1, "\u73a9\u7b11": 2, "\u7b11": 1, "\u8a71": 1}, "yards": {"\u9019": 1, "\u5835": 1, "\u7246\u9577": 1, "\u78bc": 1}, "thirty": {"\u4e09\u5341": 6, "\u4eca\u5e74": 2, "\u4e09\u5341\u5c81": 2, "\u8d85\u8fc7": 1, "30": 1, "\u5c81": 1, "\u554f": 1, "\u7f8e": 1, "11": 1, "\u70b9": 2, "\u534a": 2}, "fishing": {"\u9493\u9c7c": 3, "\u91e3": 5, "\u9b5a": 5, "\u4f1a": 1, "\u552f\u4e00": 1, "\u91e3\u9b5a": 3}, "concert": {"\u97f3\u6a02\u6703": 1, "\u4e0a": 3, "\u97f3\u4e50\u4f1a": 8, "\u6f14\u5531\u4f1a": 1, "\u672c": 1, "\u53c2\u52a0": 1, "\u9019\u5834": 1, "\u6f14\u5531": 1, "\u6703": 1, "\u771f\u591a": 1}, "above": {"\u4e0a\u9762": 1, "\u843d\u4e0b": 1, "\u53c2\u89c1": 1, "\u4e0a": 1, "\u6587": 1, "\u516d\u5c81": 1, "\u53ca": 1, "\u4ee5\u4e0a": 1, "\u5c0f\u5b69": 1}, "intelligent": {"\u5f88": 3, "\u806a\u660e": 3, "\u6c92": 1, "\u6709": 1, "\u8070\u660e": 1, "\u8070": 1, "\u660e\u4eba": 1, "\u559d\u4e86\u9152": 1, "\u518d": 1}, "won": {"\u8d62": 5, "\u4e86": 18, "\u8d0f": 8, "\u8d62\u5f97": 1, "\u5f97": 1}, "Suddenly": {"\u7a81\u7136": 6, "\u5c31": 1, "\u4e0b\u8d77": 1, "\u5927\u96e8": 1, "\u95f4": 1, "": 1, "\u706d": 1}, "Throw": {"\u6254\u6389": 1, "\u4e1f": 1, "\u9084": 1, "\u7d66": 1}, "Chiba": {"\u5c07": 1, "\u5343\u8449": 1, "\u7403\u5834": 1}, "identity": {"\u3943": 1, "\u6bba\u624b": 1, "\u8eab\u4efd": 1}, "eye": {"\u8207": 1, "\u5c0d": 3, "\u8996": 1, "\u773c\u775b": 4, "\u773c": 1, "\u773c\u5149": 1, "\u5e2e": 1, "\u770b": 2, "\u4f1a\u513f": 1}, "advised": {"\u5efa\u8bae": 4, "\u51cf\u5c11": 1, "\u4e0d\u8981": 1, "\u5efa\u8b70": 4, "\u52f8": 1, "\u5831\u8b66": 1, "\u7167\u7740": 1}, "practical": {"\u4e3b\u610f": 1, "\u53ef\u884c": 1, "\u8fd9": 1, "\u5b9e\u7528": 1}, "Cars": {"\u8f66\u5b50": 1, "\u5f88\u8d35": 1}, "innocence": {"\u6446\u51fa": 1, "\u4e00\u526f": 1, "\u65e0\u8f9c": 2, "\u6837\u5b50": 1, "\u8ba9": 1, "\u76f8\u4fe1": 2, "\u662f": 2}, "promised": {"\u7b54\u5e94": 1, "\u4f1a\u6765": 1, "\u7b54\u61c9": 4, "\u6642\u5019": 2, "\u627f\u8afe": 1, "\u652f\u6301": 1, "\u4fdd\u8bc1": 1, "\u8fc7\u4f1a": 1, "\u5374": 1, "\u4e0d\u55ae": 1, "\u7368": 1, "\u627f\u8bfa": 1, "\u6703": 1, "\u4f46": 1}, "needs": {"\u9700\u8981": 16, "": 1, "\u9084": 1, "\u937e": 1, "\u5167": 1, "\u8fd9\u8f86": 3, "\u6e05\u6d17": 2}, "careful": {"\u5c0f\u5fc3": 15, "\u4e0d\u8981": 3, "\u672c": 1, "\u5225": 1, "\u60f9": 1, "\u672c\u4f86": 1, "\u8981": 2, "\u4ed4\u7d30": 1, "": 2}, "rare": {"\u5f88\u5c11": 1, "\u80fd": 1, "\u89c1\u5230": 1, "\u90a3\u4e48": 1, "\u725b\u6392": 1, "\u8981\u751f": 1, "\u592a": 1, "\u7a00\u5c11": 1}, "replace": {"\u628a": 1, "\u6253\u5370\u673a": 1, "\u91cc\u9762": 1, "\u58a8\u7c89": 1, "\u9f13": 1, "\u6362\u6389": 1}, "empty": {"\u7a7a": 5, "\u4e00\u5f20": 1, "\u684c\u65c1": 1}, "hour": {"\u9a7e\u8f66": 1, "\u4e00": 9, "\u5c0f\u65f6": 13, "\u5c0f": 11, "\u6642": 13, "\u6211\u4eec": 1, "": 2, "\u6211": 1, "\u9ebb\u70e6": 1, "\u5de6\u53f3": 1, "\u82b1": 1, "\u4e00\u5c0f": 1}, "noisy": {"\u78ba\u5be6": 1, "\u5f88": 1, "\u5435": 2, "\u5608\u96dc": 1, "\u9019\u5152": 1}, "Has": {"\u6709": 1, "\u4e8b\u60c5": 1, "\u55ce": 7, "\u4e86": 5, "\u5417": 5}, "changed": {"\u6539\u8b8a": 4, "\u4e86": 13, "\u6539\u53d8": 6, "\u771f\u7684": 1, "\u6ca1\u53d8": 2, "\u63db": 3, "\u6362": 1, "\u8ba4\u4e0d\u51fa": 1, "\u5c31": 1}, "sing": {"\u5531": 6, "\u5531\u6b4c": 11, "\u6b4c\u5531": 1, "\u5f97\u6bd4": 1, "\u4e00\u500b": 1, "\u6211\u5011": 1, "\u5c31": 1, "\u4e0d\u4f1a": 1, "\u597d\u542c": 1, "\u6e6f\u59c6\u611b": 1, "\u90fd": 1}, "song": {"\u4e00\u9996\u6b4c": 1, "\u521b\u4f5c": 1, "\u90a3\u9996\u6b4c": 2, "\u8fd9\u6b4c": 1, "\u6210\u540d": 1, "\u8fd9": 4, "\u9996\u6b4c": 8, "\u6b4c": 2, "\u6bcf\u6b21": 1, "": 1, "\u90fd": 1, "\u8ba9": 2, "\u6211": 1}, "everything": {"\u4e00\u5207": 19, "\u90fd": 11, "\u6771\u897f": 5, "\u6240\u6709": 12, "\u5c31\u662f": 1, "\u5168\u90e8": 2, "\u505a": 1, "\u5931\u53bb": 1, "\u81ea\u5df1": 1, "\u89c1\u8bc1": 1, "\u91d1\u94b1": 2, "\u4ee3\u8868": 1, "\u4ec0\u4e48": 2, "\u5168\u90fd": 1, "\u4e8b": 1, "\u70ba\u4e86": 1, "\u4e07\u80fd": 1}, "OK": {"\u597d": 5, "\u6c92\u4e8b": 2, "\u53ef\u4ee5": 1, "\u65e9\u9ede": 1, "": 2, "\u770b\u4e0a\u53bb": 1, "\u6b63\u5e38": 1, "\u5f88": 1, "\u5141\u8bb8": 1, "\u6c92": 1, "\u95dc": 1, "\u4fc2": 1, "\u6ca1\u5173\u7cfb": 1, "\u4e00\u5207\u987a\u5229": 1, "\u8fdb\u6765": 1, "\u65b9\u4fbf": 1, "\u4e48": 1}, "bread": {"\u9762\u5305": 8, "\u9eb5": 8, "\u5305": 8, "\u6c92": 2, "\u53ea": 1, "\u7537\u5b69\u5b50": 1, "\u5403": 1}, "offer": {"\u63d0\u4f9b": 1, "\u63a5\u53d7": 1, "\u5831\u50f9": 1, "\u62a5\u4ef7": 4, "\u63d0\u8b70": 4, "\u62d2\u7d55": 2, "\u6b64": 1, "\u4ee4\u4eba": 1, "\u96e3\u4ee5": 1}, "hear": {"\u807d\u5230": 7, "\u542c\u5f97\u89c1": 3, "\u4f46": 4, "\u807d": 12, "\u4e0d\u5230": 1, "\u807d\u898b": 3, "\u542c": 8, "\u542c\u89c1": 2, "\u542c\u5230": 7, "\u8aaa": 5, "\u542c\u4e0d\u89c1": 2, "\u8072\u97f3": 1, "\u8a71": 1, "\u542c\u8bf4": 3, "\u6e05": 1, "\u4e5f": 1, "\u6211": 1, "\u6d88\u606f": 2, "\u5f97\u5230": 1, "\u542c\u542c": 1, "\u4e0d": 1, "\u6e05\u695a": 2, "\u4f60": 1, "\u592a": 1, "\u898b": 1, "": 1}, "anyone": {"\u4efb\u4f55\u4eba": 20, "\u4eba": 2, "\u4e5f": 4, "\u6c92": 4, "\u9019\u4ef6": 1, "\u4e8b": 1, "\u6709\u4eba": 11, "\u6ca1": 1, "\u8ddf": 1, "\u8c01": 3, "\u90fd": 1, "\u8ab0": 2, "\u6703": 1}, "talking": {"\u5728": 11, "\u8aaa": 7, "\u8a71": 7, "\u90a3\u65f6": 1, "\u8c08\u8bba": 2, "\u8bf4\u8bdd": 7, "\u8ddf": 2, "\u8c08": 3, "\u6642\u5019": 1, "\u958b\u59cb": 1, "\u90a3\u4e2a": 1, "\u65f6\u5019": 1, "\u8ba8\u8bba": 2, "\u4ec5\u4ec5": 1, "\u548c": 2, "\u4ea4\u8c08": 2, "\u4e0d\u592a\u60f3": 1, "\u8ac7\u8ad6": 1, "\u6211\u5011": 1}, "count": {"\u4f9d\u9760": 1, "\u6c38\u9060": 1, "\u4fe1\u8cf4": 1, "\u5169\u6b72": 1, "": 1, "\u4f60": 1, "\u53ef\u4ee5": 1, "\u6578": 1, "\u8fd9": 1, "\u80fd\u6570": 2, "\u5230": 2, "\u5341": 1, "\u6307\u671b": 1, "20.": 1, "\u76f8\u4fe1": 1}, "more": {"\u518d": 34, "\u591a": 55, "\u4e00\u9ede": 1, "\u66f4": 41, "": 2, "\u9084": 3, "\u7684": 1, "\u5f97": 1, "\u66f4\u591a": 3, "\u8981": 1, "\u8a72": 1, "\u6211\u4eec": 1}, "sorry": {"\u5f88": 17, "\u62b1\u6b49": 22, "\u5bf9\u4e0d\u8d77": 4, "\u4e86": 1, ",": 6, "\u5c0d": 6, "\u4e0d\u8d77": 5, "\u611f\u5230": 4, "\u907a\u61be": 3, "\u6211": 1, "\u9057\u61be": 1, "\u4f60\u4eec": 1, "\u542c\u89c1": 1, "\u8fd9\u6837": 1, "\u96be\u8fc7": 1, "\u628a": 1, "": 1}, "hurt": {"\u4f24\u5bb3": 2, "\u75db": 2, "\u53d7\u4f24": 2, "\u53d7": 2, "\u50b7": 3, "\u75bc": 1, "\u50b7\u5bb3": 4, "\u5230": 2, "\u4f1a": 1, "\u6253\u51fb": 1, "\u4e00\u6b21": 1, "\u53d7\u50b7": 1, "\u5f04": 1, "\u4e2d": 1, "": 1, "\u82e5": 1, "\u4e5f": 1, "\u6703": 1}, "feelings": {"\u611f\u60c5": 4, "\u4e26": 1, "\u611f\u53d7": 2, "\u628a": 1, "\u5bf9": 1, "\u5b8c\u5168": 1, "\u611f\u89c9": 2, "\u6d41\u9732": 1}, "city": {"\u57ce\u5e02": 25, "\u8fd9": 1, "\u6211\u5011": 1, "\u5e02\u5340": 2, "\u8fd9\u4e2a": 2, "": 1, "\u5bf9": 1, "\u540d": 1, "\u7537\u5b50": 1, "\u9003\u96e2": 1}, "taxi": {"": 2, "\u4e00\u8f1b": 3, "\u51fa\u79df": 3, "\u8eca": 7, "\u642d\u8a08": 4, "\u7a0b\u8eca": 4, "\u6253": 2, "\u51fa\u79df\u8f66": 6, "\u8a08\u7a0b": 5, "\u5230": 1}, "Santa": {"\u5723\u8bde\u8001\u4eba": 2, "\u4e00\u65e6": 1, "\u4e2a": 1, "\u4e56\u5b69\u5b50": 1, "": 1, "\u4e0d\u4f1a": 1}, "Dear": {"\u6211": 1, "\u4e00\u4e2a": 1, "\u5973\u670b\u53cb": 1}, "girlfriend": {"\u60f3\u8981": 1, "\u5973\u670b\u53cb": 11, "\u600e\u4e48\u6837": 1, "\u6709\u500b": 1, "\u5973\u53cb": 2, "\u627e": 1, "\u8ddf": 1, "\u89c1\u9762": 1, "\u4ee5\u6765": 1, "\u4ece": 1, "": 1}, "smart": {"\u806a\u660e": 8, "\u8111\u888b": 1, "\u806a\u660e\u4eba": 1, "\u5144\u957f": 1, "\u90a3\u6837": 1, "\u6ca1\u6709": 1}, "decent": {"\u4e2a": 1, "\u8bda\u5b9e": 1, "\u7537\u5b69": 1}, "Mass": {"\u5927\u91cf": 1, "\u751f\u7522": 1, "\u964d\u4f4e": 1, "\u8a31\u591a": 1, "\u5546\u54c1": 1}, "Perhaps": {"\u53ef\u80fd": 3, "\u4e5f\u8a31": 4, "\u4e5f\u8bb8": 2, "\u60a8": 2, "\u6709": 2, "\u9053\u7406": 2, "\u6703\u4f86": 1, "": 1, "\u9069\u5408": 1}, "perfect": {"\u7edd\u5999": 2, "\u85cf\u8eab\u4e4b\u5904": 2, "\u5b8c\u7f8e": 6, "": 1, "\u4e00\u9879": 1}, "police": {"": 4, "\u8b66\u5bdf": 23, "\u62a5\u8b66": 5, "\u53eb": 1, "\u8b66\u65b9": 6, "\u8b66\u5bdf\u5c40": 3, "\u8ddf\u8457": 1}, "contains": {"\u9019\u500b": 1, "\u676f\u5b50": 1, "\u88e1": 1, "\u6709": 1}, "pen": {"\u7b46": 11, "\u4e00\u679d": 1, "\u7b14": 3, "\u501f": 1, "\u94a2\u7b14": 8, "\u652f": 4, "\u7ed9": 1, "\u6211": 2, "\u628a": 2, "\u600e\u9ebc": 2, "\u92fc\u7b46": 3, "\u4e00\u652f": 2, "\u8eab\u4e0a": 1, "\u94c5\u7b14": 1, "\u4f46": 1}, "waited": {"\u7b49": 14, "\u7b49\u5f85": 2, "\u8457": 1, "\u597d\u50cf": 1, "\u592a\u4e45": 1, "\u597d\u4e45": 1, "\u597d": 1, "\u5e7e\u500b": 1}, "friend": {"\u670b\u53cb": 51, "\u5e7e\u9ede\u9418": 1, "\u4e00\u4f4d": 5, "\u8001\u670b\u53cb": 2}, "badly": {"\u5f88": 1, "\u4e00\u6761": 1, "\u8fde\u8863\u88d9": 1, "\u975e\u5e38": 2}, "links": {"\u6709\u4e9b": 1, "\u9023\u7d50": 1}, "clean": {"\u6253\u626b": 6, "\u8b93": 2, "\u6e05\u6383": 1, "\u5e72\u51c0": 5, "\u628a": 1, "\u5f04\u4e7e": 1, "\u6de8": 1, "\u6536\u62fe": 1, "\u4f60": 1, "\u4e0d\u7528": 1, "\u4e0d\u5f97\u4e0d": 1, "\u5f9e": 1, "\u6e05": 1, "\u6383": 1, "\u8be5": 1, "\u5e0c\u671b": 1, "\u6765": 1}, "dad": {"\u7238\u7238": 2, "\u8acb": 1, "\u7236\u89aa": 2, "\u7236\u4eb2": 2, "\u623f\u5b50": 1, "\u88cf": 1, "": 1, "\u6211": 1}, "permits": {"\u5141\u8a31": 1, "\u6211": 1, "\u6703": 1}, "museum": {"\u53bb": 1, "\u53c3\u89c0": 2, "\u9019\u8f1b": 1, "\u8f09": 1, "\u535a\u7269": 4, "\u9928": 3}, "author": {"\u4f5c\u8005": 4, "\u9019\u4f4d": 1, "\u8fd9\u672c": 1, "\u5c0f\u8bf4": 1}, "drank": {"\u559d": 10, "\u4e00\u6574\u74f6": 1, "\u9152": 1}, "cup": {"\u4e00\u676f": 11, "\u6709\u500b": 1, "\u676f\u5b50": 7, "\u8fb9": 2, "\u6765": 1, "\u676f": 3, "\u559d\u4e00\u676f": 1, "\u4e0d\u8981": 1, "\u518d\u4f86": 1}, "critical": {"\u8fd9\u4e48": 1, "\u6279\u8bc4": 1}, "Pilots": {"\u98db\u884c\u54e1": 1, "\u7528": 1, "\u7121\u7dda\u96fb": 1, "\u8207": 1, "\u6e9d\u901a": 1}, "airport": {"\u6a5f\u5834": 5, "\u6211": 1, "\u591a\u9060": 1, "\u5230": 1, "\u9001": 3, "\u673a\u573a": 8, "\u8fd9\u8f86": 1, "\u80fd\u8f7d": 1, "\u60f3\u4f4f": 1, "\u4f60\u4eec": 1, ",": 1}, "Show": {"\u770b\u770b": 2, "\u4e00\u9ede": 1, "\u7ed9": 3, "\u60a8": 1, "\u770b\u4e0b": 1, "\u5427": 1, "\u6211\u4e2a": 1}, "cheaper": {"\u4fbf\u5b9c": 4, "\u9152\u4f1a": 1, "\u5169\u4ef6": 1, "\u88e1": 1, "\u90a3\u500b": 1}, "well": {"\u5f97": 44, "\u5f88": 34, "\u597d": 47, "\u4e0a": 1, "\u8868\u73b0": 1, "\u4e86\u89e3": 3, "\u4e0d\u592a\u597d": 3, "\u4ed6": 1, "]": 1, "\u4f1a": 1, "\u505a": 1, "\u8fd8\u597d": 1, "\u5427": 1, "\u8eab\u4f53": 1, "\u4e0d\u9002": 1}, "Will": {"\u4f1a": 6, "\u5417": 28, "\u60a8": 4, "\u613f\u610f": 3, "\u80fd": 6, "\u55ce": 29, "\u597d": 3, "\u6e6f\u59c6\u771f": 1, "\u6703": 3, "\u8981": 1, "\u53ef\u5426": 1, "\u6211": 1}, "Sensing": {"\u4e00": 1, "\u55c5\u5230": 1, "\u98ce\u58f0": 1, "\u4e0d": 1, "\u5bf9": 1, "": 2, "\u611f\u89ba": 1, "\u5230": 1, "\u5c31": 1, "\u9003\u8dd1": 1}, "even": {"\u751a\u81f3": 16, "\u8fde": 1, "\u6253\u7b97": 1, "\u751a\u6c92": 1, "\u904e": 1, "\u600e\u9ebc": 2, "": 3, "\u9023": 2, "\u60f3\u90fd\u4e0d\u60f3": 1, "\u4e0d\u5230": 1, "\u6700\u540e": 1, "\u9084": 1, "\u5373\u4f7f": 2, "\u4e5f": 2}, "owes": {"\u5c07": 1, "\u6b78": 1, "\u65bc": 1, "\u60f3\u53bb": 1, "\u8fd8": 1, "\u6b20": 2, "\u5f52\u7ed3": 1, "\u4e8e": 1, "\u8f9b\u52e4\u5de5\u4f5c": 1, "\u597d\u8fd0\u6c14": 1, "\u4e2a\u60c5": 1}, "luck": {"\u904b": 4, "\u795d\u60a8": 1, "\u597d\u8fd0": 3, "\u795d": 3, "\u4f60\u597d": 1, "\u8acb\u795d": 1, "\u8fd0\u6c14": 1}, "cost": {"\u9322": 9, "\u4e22": 1, "\u6027\u547d": 1, "\u82b1": 8, "\u4e0d\u60dc\u4e00\u5207": 1, "\u4ee3\u4ef7": 1, "\u4e00\u5171": 1, "\u8981": 10, "\u8fd9": 1, "\u94b1": 6, "\u652f\u7b46": 1, "\u591a\u5c11": 2}, "foot": {"\u8d70\u8def": 4, "\u9a91\u8f66": 1, "\u8fc7\u6765": 1, "\u5979\u5bb6": 1, "\u4e00\u5ea7": 1, "\u5c71\u811a\u4e0b": 1, "\u53bb\u4e0a": 2, "\u6454\u4e0b\u6765": 1, "\u65f6\u4f24": 1, "\u811a": 1, "\u6b65\u884c": 1, "\u4ed6": 1, "\u9a91\u8f66\u53bb": 1, "\u4f4d\u4e8e": 1, "\u5c71\u811a": 1}, "Thank": {"\u8c22\u8c22": 7, "\u8fd8\u662f": 1, "\u8981\u8bf4": 1, "\u611f\u8b1d": 2, "\u6240": 1, "\u8b1d\u8b1d": 8, "": 1, "\u611f\u8c22": 2, "\u975e\u5e38\u611f\u8c22": 1, "\uff01": 1, "\u4e8b": 1, "\u771f\u7684": 1, "\u8c22\u8c22\u60a8": 2}, "patience": {"\u8010\u5fc3": 3, "\u6ca1": 1, "\u90a3\u6837": 1, "\u5bf9": 1}, "kinds": {"\u5404\u79cd\u5404\u6837": 1, "\u5404\u7a2e": 1, "\u8a31\u591a\u7a2e": 1, "\u9ce5\u985e": 1}, "open": {"\u6253\u958b": 11, "\u6253\u7b97": 1, "\u5f00": 2, "\u7740": 3, "\u6253\u5f00": 4, "\u958b": 1, "\u4e00\u4e0b": 2, "\u6211": 2, "\u958b\u8457": 5, "\u958b\u9580": 3, "\u6b64": 1, "\u8b93": 2, "\u5f00\u7a97": 2, "\u9019": 1, "\u80fd": 1, "\u628a": 1, "\u4f60\u4eec": 1, "\u5f00\u59cb": 1, "\u8425\u4e1a": 1, "\u5f00\u5b66": 1, "\u9580": 1}, "bottle": {"\u74f6\u5b50": 5, "\u9ebb\u7169": 1, "\u518d\u4f86": 1, "\u4e00\u74f6": 5, "\u8acb\u4f86": 2, "\u74f6\u7d05": 2, "\u9019\u500b": 1, "\u7528\u6c34": 1, "\u88c5\u6ee1": 1}, "2,700": {",": 1, "\u4e16\u754c": 1, "\u4e0a": 1, "\u8d85\u904e": 1, "2": 1, "\u8a9e\u8a00": 1, "\u7684": 1}, "world": {"\u82f1\u8a9e": 1, "\u53ea\u662f": 1, "\u4e16\u754c": 26, "\u842c\u7269": 1, "\u7f8e\u597d": 2, "\u4e0a": 7, "\u4e16\u754c\u5404\u5730": 1, "": 1, "\u5168\u4e16\u754c": 1}, "languages": {",": 1, "700": 1, "\u4eba\u4eec": 1, "\u54ea\u4e9b": 1, "\u8bed\u8a00": 3, "\u4e09\u7a2e": 2, "\u8a9e\u8a00": 5, "\u5f88\u56f0": 1, "\u7a2e": 1}, "designed": {"\u8a2d\u8a08": 2, "\u66f8": 1, "\u684c": 1, "\u5c08\u9580": 1, "\u70ba": 1, "\u5152\u7ae5": 1}, "Elephants": {"\u5927\u8c61": 2, "\u5982\u4eca": 1, "\u73b0\u5b58": 1, "\u9646\u751f\u52a8\u7269": 1, "\u91cc": 1}, "Asia": {"\u4e9e\u6d32": 2, "\u4e9a\u6d32": 4, "\u8a2a": 1, "\u554f": 1, "\u904e": 1, "\u5c11": 1}, "Africa": {"\u975e\u6d32": 8}, "dining": {"\u6211\u4eec": 1, "\u5403": 1, "\u600e\u4e48\u6837": 1, "\u9910\u5385": 1}, "cold": {"\u611f\u5192": 11, "\u800c\u5df2": 1, "\u6b63": 2, "\u660f\u8ff7\u4e0d\u9192": 2, "\u51b7": 32, "\u5ea7": 1, "\u4eca\u5929": 1, "\u90a3\u9ebc": 1, "": 1, "\u5bd2\u51b7": 4, "\u5929": 1, "\u5929\u6c14": 2, "\u7740\u51c9": 3, "\u4f20\u67d3": 1, "\u6cbb\u611f\u5192": 1, "\u8fd8\u662f": 1, "\u56e0\u4e3a": 1}, "forward": {"\u671f\u5f85": 18, "\u5230": 1, "\u5f88": 3, "\u60a8": 3, "\u8457": 3, "\u518d\u6b21": 3, "\u80fd": 1, "\u54e6": 2, "\u5bf9\u6b64": 1, "\u5f80\u524d\u8d70": 1}, "seeing": {"\u898b": 7, "\u5230": 5, "\u770b": 4, "\u904e": 3, "\u89c1": 1, "\u8fc7": 1, "\u770b\u5230": 3, "\u89c1\u5230": 2, "\u548c": 1, "\u7ea6\u4f1a": 1, "\u8b93": 1, "\u770b\u898b": 1, "\u8457\u898b": 1, "\u518d": 1, "\u8981": 1, "\u5bf9": 1, "\u522e\u76ee\u76f8\u770b": 1, "\u54ea\u5152": 1}, "marry": {"\u8070\u660e": 1, "\u5230": 2, "\u4e0d": 2, "\u6703": 2, "\u5a36": 3, "\u548c": 4, "\u7ed3\u5a5a": 5, "\u6c42": 1, "\u8ddf": 2, "\u4e03\u6b21": 1, "\u90a3\u6837": 1, "\u5ac1": 1, "\u7d66": 1, "\u50bb": 1, "\u5ac1\u7ed9": 1, "\u7684": 1, "\u7d50\u5a5a": 1}, "Love": {"\u7231": 2, "\u8ba9": 1, "\u8f6c\u52a8": 1, "\u611b": 1, "\u4e0e": 1, "\u76f8\u4eb2\u76f8\u7231": 1}, "oxygen": {"\u5c31": 1, "\u50cf": 1, "\u6c27\u6c14": 1}, "show": {"\u8b93": 7, "\u770b\u770b": 16, "\u7d66": 9, "\u770b": 10, "\u544a\u8a34": 2, "\u5e36": 6, "\u7ed9": 7, "\u51fa\u73fe": 3, "\u8be5": 1, "\u6e6f\u59c6\u6703": 1, "\u8282\u76ee": 1, "\u6307": 1, "\u6307\u8def": 1, "\u6211\u8def": 1, "\u600e\u9ebc": 1}, "those": {"\u90a3\u4e9b": 15, "\u5176\u4e2d": 1, "\u90a3": 4, "\u4e70": 1, "\u65bc": 1}, "pictures": {"\u5716\u7247": 2, "\u7167\u7247": 8, "\u88e1": 2, "\u4e00\u5f35": 1, "\u756b": 2, "\u4e00\u5e45": 1, "\u4f60\u5011": 1, "": 1, "\u771f\u7f8e": 1, "\u62cd\u7167": 5, "\u5f35": 1, "\u5f35\u5716": 1}, "excuses": {"\u70ba": 1, "\u5230": 1, "\u627e": 1, "\u85c9\u53e3": 1}, "wise": {"\u4e00\u4e2a": 1, "\u806a\u660e\u4eba": 1, "\u4e0d\u4f1a": 1, "\u8fd9\u79cd": 1, "\u8bdd": 1}, "drink": {"\u559d": 29, "\u9ede": 7, "\u98f2": 5, "\u7d55": 1, "\u4e0d\u518d": 1, "\u559d\u9152": 1, "\u5f04": 1, "\u98f2\u6599": 1, "\u7d66": 2, "\u559d\u4e00\u676f": 2, "\u676f": 1, "\u9152": 2, "\u5e36\u559d": 1, "\u559d\u6c34": 1, "": 2, "\u60f3\u73fe": 1, "\u996e\u6599": 1, "\u4ec0\u9ebc": 1, "\u4f46\u662f": 1}, "liquid": {"\u5927\u91cf": 1, "\u6db2\u9ad4": 1, "\u6db2\u4f53": 1}, "film": {"\u5df2\u7ecf": 1, "\u770b\u8fc7": 2, "\u8fd9\u90e8": 1, "\u7535\u5f71": 3, "\u90a3\u90e8": 1, "\u96fb\u5f71": 1, "\u770b": 2, "\u80f6\u5377": 2, "\u8fd9\u4e48": 1, "\u597d\u770b": 1}, "Arabic": {"\u963f\u62c9\u4f2f\u8bed": 2, "\u8981": 1, "\u53f3": 1, "\u5f80": 1, "\u5de6": 1, "\u8bf4": 1}, "returned": {"\u4eec": 1, "\u56de\u6765": 3, "\u628a": 3, "\u9084": 2, "\u7d66": 2, "\u6e6f\u59c6\u525b": 1, "\u56de\u4f86": 1, "\u4e2d": 1, "\u501f\u6765": 1}, "cap": {"\u628a": 1, "\u5e3d\u5b50": 4, "\u9876": 2, "\u591a\u5c11": 1, "\u94b1": 1, "\u9802": 1}, "Water": {"\u6c34": 11, "\u5c0d": 1}, "evaporates": {"\u88ab": 1, "\u52a0\u71b1": 1, "\u6642": 1, "": 2}, "racket": {"\u9078\u64c7": 1, "\u7403\u62cd": 3, "\u7528": 1, "\u64ca\u7403": 1}, "Choose": {"\u559c\u6b61": 1, "\u9078": 3}, "Oxford": {"\u725b\u6d25\u5927\u5b66": 2, "\u8f66": 1}, "qualified": {"\u52dd\u4efb": 1, "\u9019\u4efd": 1, "\u4e2a": 1, "\u5408\u683c": 2}, "ran": {"\u8dd1": 15, "\u591a\u5feb": 1, "\u591a": 1, "\u623f\u95f4\u5185": 1, "\u8c93": 1, "\u8ffd\u8457": 1, "\u9047\u5230": 1}, "fast": {"\u5f97": 14, "\u5f88\u5feb": 8, "\u5feb": 15, "\u8eca": 1, "\u6c92\u8d95": 1, "\u53d7\u591f": 2, "\u5403\u5feb\u9910": 2}, "members": {"\u4e3a\u4e86": 1, "\u6210\u5458": 3, "\u4ec5": 1, "\u4e09\u5206\u4e4b\u4e00": 1, "\u51fa\u5e2d": 1, "\u9019\u500b": 1, "\u4f4d": 1, "50": 1, "\u4e2a": 1}, "catch": {"\u8d76\u4e0a": 3, "\u5411": 1, "\u5c55\u793a": 1, "\u6355\u9c7c": 1, "": 2, "\u8fd8": 1, "\u6253\u8eca": 1, "\u7121\u6cd5": 2, "\u8d95": 3, "\u4e0a\u706b": 3, "\u8eca": 3, "\u5934\u73ed": 1, "\u4e2a": 1, "\u5927\u65e9": 1, "\u4e3a\u4e86": 1, "\u8d76": 1, "\u4e3a\u7684\u662f": 1, "\u8ffd\u4e0a": 1, "\u4ed6": 1, "\u8d95\u4e0a": 1, "\u540c": 1, "\u5b78": 1, "\u542c\u5230": 1, "\u59d3": 1, "\u542c\u61c2": 1}, "other": {"\u5176\u4ed6": 12, "\u524d": 8, "\u5e7e\u5929": 6, "": 2, "\u4e1c\u4eac": 1, "\u51e0\u5929": 2, "\u548c": 1, "\u53e6": 1, "\u5c0d": 1, "\u7684": 1}, "classmates": {"\u540c\u5b66": 2, "\u76f8\u5904": 2, "\u878d\u6d3d": 2, "\u540c\u5b78": 1, "\u8fd8": 1, "\u9ad8\u4e2d\u540c\u5b66": 1, "\u4fdd\u6301\u8054\u7cfb": 1}, "husband": {"\u4e08\u592b": 15, "\u8ba9": 1, "\u81ea\u5df1": 1, "\u53ef\u80fd": 1, "\u5c0d": 1, "\u9054\u6210": 1, "\u5354\u8b70": 1, "\u57ce\u91cc": 1}, "possess": {"\u5f97\u4e0d\u5230": 1, "\u4e1c\u897f": 1, "\u5c31": 1, "\u60f3\u5f97\u5230": 1}, "most": {"\u6700": 20, "\u5927\u90e8\u5206": 3, "\u90fd": 1, "\u65f6\u95f4": 1, "\u6211\u4f1a": 1, "": 1}, "fence": {"\u5c07\u6f06": 1, "\u67f5\u6b04": 3, "\u904e": 2, "\u9019\u68df": 1, "\u7c6c\u7b06": 1, "\u8fb9\u4e0a": 1, "\u88c5": 1, "\u7bf1\u7b06": 1, "\u570d\u7246": 1, "": 2, "\u770b\u4e0d\u5230": 1}, "income": {"\u6536\u5165": 3, "\u53ef\u89c2": 1}, "cooks": {"\u7528": 1, "\u65b9\u5f0f": 1, "\u70f9\u8abf": 1}, "gifts": {"\u5fc5\u987b": 1, "\u8981": 1, "\u5723\u8bde\u793c\u7269": 1}, "almost": {"\u5e7e\u4e4e": 17, "\u5dee\u70b9": 2, "\u5dee\u4e0d\u591a": 9, "\u51e0\u4e4e": 5, "\u5feb": 2, "\u5c31\u8981": 1}, "certainly": {"\u78ba\u5b9a": 1, "\u597d": 1, "\u5f53\u7136": 1, "\u88ab": 1, "\u4eba": 1, "\u8fd9": 1, "\u786e\u5b9e": 1, "\u4e00\u5b9a": 1, "\u975e\u5e38": 1, "\u78ba\u5be6": 1, "\u4f4d": 1}, "pass": {"\u901a\u904e": 3, "\u628a": 8, "\u905e": 6, "\u7d66": 4, "\u904e": 1, "\u901a\u8fc7": 3, "\u4ed6": 1, "\u9012\u7ed9": 2}, "test": {"\u6e2c\u9a57": 3, "\u8003\u8bd5\u5377": 1, "\u8003\u8a66": 7, "\u6709\u4e2a": 1, "\u6d4b\u9a8c": 3, "\u8003\u8bd5": 1, "\u6d4b\u8bd5": 1, "\u8ac7\u5230": 1, "\u5fc5\u9808": 3, "\u53c3": 1, "\u52a0\u8003": 1, "\u8a66": 2, "\u610f\u89c1": 1, "\u8be5": 1, "\u518d\u6b21": 1, "\u8003": 1, "\u6e96\u5099": 1, "\u4e0b\u79ae": 1, "\u62dc\u8981": 1}, "sea": {"\u5927\u6d77": 1, "\u5728": 2, "\u6d77\u8fb9": 2}, "blue": {"\u84dd\u8272": 6, "\u85cd\u8272": 1, "\u84dd": 1, "\u7684": 6, "\u5f88": 2, "\u6d88\u6c89": 1, "\u5fc3\u60c5": 1, "\u4e0d\u597d": 1, "\u95f7\u95f7\u4e0d\u4e50": 1, "\u7531\u4e8e": 1, "\u67d0\u4e9b": 1, "\u770b\u8d77\u6765": 1}, "suggested": {"\u5efa\u8bae": 2, "\u53d6\u6d88": 1, "\u90a3\u500b": 2, "\u5efa\u8b70": 3, "\u63d0\u8bae": 1, "\u5927\u5bb6": 1, "\u4e00\u8d77": 1, "\u6362": 1, "\u95e8\u9501": 1}, "meeting": {"\u4f1a\u8bae": 13, "\u6703\u8b70": 17, "\u524d\u5f80": 1, "\u53c3\u52a0": 1, "\u90a3\u573a": 1, "\u4f1a\u8bae\u4e3b\u9898": 1, "\u5c06\u8981": 1, "\u53c2\u52a0": 2, "\u4e00\u6b21": 1, "\u51fa\u5e2d\u4f1a\u8bae": 1, "\u5230": 1, "\u89c1\u9762": 1}, "stand": {"\u5fcd\u53d7": 10, "\u7ad9": 2, "\u53d7\u4e0d\u4e86": 1, "\u7121\u6cd5": 1, "\u610f\u601d": 1, "\u4e00\u76f4": 1}, "noise": {"\u566a\u97f3": 11, "\u9019\u500b": 3, "": 1, "\u65e0\u6cd5": 2, "\u5fcd\u53d7": 1, "\u9020": 1, "\u90a3": 1}, "went": {"\u53bb": 76, "\u4e86": 79, "\u6211": 1, "\u70b9": 1, "\u518d": 1, "\u5c31": 1, "\u6765": 1, "": 2, "\u8be5": 1, "\u90a3\u513f": 1, "\u8fd8\u662f": 1, "\u6240\u4ee5": 1, "\u90fd": 1}, "along": {"\u8207": 2, "\u76f8\u8655": 6, "\u878d\u6d3d": 1, "\u5982\u4f55": 1, "\u6cbf\u8457": 1, "\u9019\u500b": 2, "\u4eba": 2, "\u96e3\u76f8": 2, "\u8655": 2, "\u660e\u767d": 1, "\u5f97": 3, "\u8ddf\u7740": 1, "\u60f3\u6765": 1, "\u8bf7": 1, "\u4e00\u8d77": 1, "\u4e00": 1, "\u5f00\u59cb": 1, "\u904e": 1, "\u4f1a": 1, "\u540c\u610f": 1, "\u5462": 1, "\u9032\u884c": 1}, "truth": {"\u771f\u76f8": 35, "\u771f\u5b9e": 1, "\u60c5\u51b5": 1, "\u51fa\u6765": 2, "\u77e5\u9053": 1, "\u8aaa": 2, "\u5be6\u8a71": 2, "\u544a\u8a34": 1, "\u8aaa\u5be6\u8a71": 1, "\u8bb2": 1, "\u771f\u8bdd": 1, "\u4e8b\u5b9e": 1}, "mask": {"\u6234": 1, "\u8457": 1, "\u9762\u5177": 1, "\u4ee5\u81f3": 1, "\u65bc": 1, "\u6c92": 1, "\u6709\u4eba": 1, "\u8a8d\u51fa": 1}, "seriously": {"\u628a": 2, "\u770b\u5f97": 1, "\u56b4\u91cd": 1, "\u5c0d": 1, "\u6bd4\u8f03": 1, "\u6b63\u7d93": 1, "\u56b4\u8085": 1, "\u91cd\u8996": 1, "\u81ea\u8eab": 1, "\u5f53\u771f": 1}, "things": {"\u4e8b\u60c5": 14, "\u53d1\u751f": 1, "\u90fd": 1, "\u6771\u897f": 6, "\u4e1c\u897f": 5, "\u4e8b\u592a": 1, "\u91cc": 1, "\u96e3": 1, "\u4e8b": 3, "\u672a": 1, "\u5b8c\u6210": 1, "\u4e8b\u60f3\u95ee": 1, "\u6709\u4e9b": 1, "\u5c3d\u53ef\u80fd": 1, "\u591a": 1, "\u4f60\u5011": 1}, "start": {"\u958b\u59cb": 6, "\u5f00\u59cb": 17, "\u5047\u5982\u80fd": 1, "\u56de\u5230": 1, "\u8fc7\u53bb": 1, "\u5e0c\u671b": 1, "\u51e0\u5c81": 1, "\u5f00\u7aef": 1, "\u91cd\u65b0": 1, "\u4eca\u65e9": 1, "\u51fa\u53d1": 1, "\u5fc5\u987b": 2, "\u8be5": 1, "\u4ec0\u9ebc": 1, "\u660e\u5929": 1, "\u65f6\u95f4": 1}, "party": {"\u6d3e": 30, "\u5c0d": 29, "\u805a\u4f1a": 10, "\u6d3e\u5bf9": 7, "\u805a\u6703": 5, "\u4e0a": 5, "\u53c3\u52a0": 3, "\u53c2\u52a0": 2, "\u89ba\u5f97": 1, "\u9700\u8981": 1, "\u53bb": 1, "\u9019\u500b": 1, "\u8209\u884c": 1}, "everyone": {"\u6bcf\u500b": 5, "\u4eba": 10, "\u90fd": 12, "\u5927\u5bb6": 4, "\u6bcf\u4e2a": 3, "": 2, "\u597d": 1, "\u8b93": 1, "\u6240\u6709\u4eba": 1, "\u5730": 1, "\u5c0d\u5f85": 1}, "smiling": {"\u5728": 4, "\u7b11": 5, "\u5fae\u7b11": 3, "\u4fdd\u6301": 1, "\u6ca1\u5728": 1, "\u6b63": 1, "\u7740": 1}, "gave": {"\u7d66": 51, "\u4e86": 93, "\u7ed9": 16, "": 2, "\u5f1f\u5f1f": 1, "\u8ba9\u6b65": 1, "\u4ed6": 1, "\u5973\u513f": 1}, "leave": {"\u8d70": 13, "\u96e2\u958b": 18, "\u4f60\u5011": 1, "\u8ba9": 2, "\u958b": 1, "\u79bb\u5f00": 14, "\u6700": 1, "\u8fc7": 1, "\u624d\u80fd": 1, "\u51fa\u53d1": 2, "\u628a": 4, "\u7559\u5728": 1, "\u6211": 2, "\u5fc5\u987b": 1, "\u7559": 2, "\u7559\u7d66": 2, "\u4f60\u4eec": 1, "\u5f00": 1, "\u7740": 1, "\u54b1\u5011": 1, "\u8d76\u7d27": 1, "\u6211\u4eec": 1}, "audacity": {"\u5bf9": 3, "\u5927\u80c6": 1, "\u611f\u5230": 3, "\u5f88": 1, "\u60ca\u8bb6": 3, "\u539a\u989c\u65e0\u803b": 2}, "sixty": {"\u5e94\u8be5": 1, "\u8d85\u8fc7": 1, "\u516d\u5341\u5c81": 2, "\u5c31\u8981": 1}, "cool": {"\u5f88\u9177": 3, "\u559d": 1, "\u771f\u9177": 1, "\u4eca\u5929\u4e0a\u5348": 1, "\u6dbc\u723d": 1, "\u4fdd\u5b58": 1, "\u9670\u6dbc": 1}, "Watch": {"\u5f53\u5fc3": 2, "\u5c0f\u5fc3": 3, "\u770b\u8457": 3, "\u4e26\u4e14": 1, "\u5e6b": 1, "\u554a": 1, "\u4e26": 1, "\u8ddf\u8457": 1}, "child": {"\u500b": 8, "\u5b69\u5b50": 37, "\u9019\u500b": 4, "\u5c0f\u65f6\u5019": 2, "": 1, "\u8d70\u5931": 1, "\u5c0f\u5b69\u5b50": 1, "\u6211": 1, "\u9084": 1, "\u7d93\u5e38": 1, "\u80fd": 1, "\u53ea\u662f": 1, "\u5c0f\u5b69": 1, "\u7368": 1, "\u751f\u5b50": 1}, "automobile": {"\u6b7b": 1, "\u65bc": 1, "\u4e00\u5834": 1, "\u6c7d\u8eca": 1, "\u8eca\u798d": 1}, "jeans": {"\u6c92\u7a7f": 1, "\u725b\u4ed4": 5, "\u8932": 5}, "baseball": {"\u68d2\u7403": 39, "\u6253": 10, "\u5792\u7403": 3, "\u4f86": 1, "\u4f1a": 1}, "team": {"\u968a": 1, "\u6709\u4e2a": 1, "\u597d\u6781\u4e86": 1, "\u56e2\u961f": 1, "\u6211\u4eec": 2, "\u961f": 3, "\u9019\u968a": 1, "\u961f\u4f0d": 1, "\u91cc": 1, "\u652f\u7403": 1, "\u968a\u6703": 1}, "strong": {"\u5f37": 4, "\u6fc3": 2, "\u5f37\u58ef": 4, "\u96d6\u7136": 1, "\u53ef\u662f": 1, "\u5f88": 4, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u610f\u5fd7\u529b": 1}, "together": {"\u8b93": 1, "\u4e00\u8d77": 27, "\u805a\u5728\u4e00\u8d77": 2, "\u8ddf": 1, "\u548c": 2, "\u5fc5\u987b": 1, "\u76f8\u805a": 1}, "experiment": {"\u8981": 1, "\u5b9e\u9a8c": 2, "\u4e09\u4e2a": 1, "\u8bc1\u660e": 1}, "Three": {",": 1, "": 1, "\u540e": 1, "\u4e09": 2, "\u8fd9\u573a": 1, "\u4e27\u751f": 1}, "months": {"": 1, "\u5df2\u7d93": 1, "\u5e7e\u500b": 2, "\u6708": 15, "\u4e09\u500b": 1, "\u6709": 1, "\u540e": 1, "\u81ea\u5f9e": 1, "\u4ea4\u5f80": 1, "\u6708\u524d": 1, "\u500b": 1}, "SSH": {"SSH": 1, "\u6765": 1, "\u8fdc\u7a0b": 1, "\u8fde\u63a5": 1, "\u5230": 1}, "computers": {"\u7535\u8111": 2, "\u5bf9": 1}, "before": {"\u4ee5\u524d": 22, "\u4e4b\u524d": 24, "\u5728": 21, "\u524d": 26, "": 1, "\u4e0d\u4e45": 2, "\u5148": 3, "\u8fc7": 2, "\u904e": 1, "\u601d\u8003": 1}, "Your": {"\u4f60": 49, "\u7684": 50, "\u60a8": 1, "\u4f86": 1, "\u4fe1\u4f7f": 1, "": 1}, "taller": {"\u9577": 1, "\u9ad8\u4e00": 1, "\u9ad8": 12, "\u6bd4": 1, "\u6bd4\u8f03": 1, "\u4f60\u5011": 1}, "little": {"\u9ede": 1, "\u4e00\u4e9b": 4, "\u5f88\u5c11": 4, "\u4e00\u70b9": 12, "\u4e00\u9ede": 13, "\u6709\u70b9": 5, "\u6709": 4, "\u9084": 1, "\u6642\u95f4": 1, "\u8ba9": 1, "\u6211": 2, "\u70b9": 1, "\u4e00\u5c0f": 1, "\u6bb5\u65f6\u95f4": 1, "\u96be\u4ee5\u7f6e\u4fe1": 1}, "eggs": {"\u9e21\u86cb": 9, "\u86cb": 8, "\u5403": 1, "\u8fd9\u4e2a": 1, "\u4e00\u4f4d": 1, "": 1, "\u6211": 1, "\u8981": 2, "\u4ec0\u9ebc\u6a23": 1, "\u8bf7\u95ee": 1, "\u505a\u6cd5": 1, "\u559c\u6b22": 1, "\u6492": 1}, "dozen": {"\u662f": 1, "\u8bba": 1, "\u6253\u4e70": 1, "\u4e00\u6253": 3}, "exactly": {"\u5c31\u662f": 5, "\u6240\u8bf4": 1, "\u5230\u5e95": 3, "\u8fd9\u4e48": 1, "\u7a76\u7adf": 3, "\u5f88": 2, "\u6e05\u695a": 2, "\u4ec0\u4e48\u6837": 1, "\u53d1\u578b": 1, "\u6b63\u662f": 1, "\u4e1c\u897f": 1, "\u8ba9": 1, "\u5b8c\u5168": 1, "\u600e\u9ebc": 1, "\u56de\u4e8b": 1, "\u554a": 1}, "figured": {"\u641e": 1, "\u660e\u767d": 1, "\u4e86\u4f1a": 1, "\u544a\u8bc9": 1, "\u4f9d\u9760": 1, "\u89e3\u51b3": 1, "\u90a3\u4e8b": 1, "\u8fd8": 1, "\u53d1\u73b0": 1}, "trouble": {"\u6709": 5, "\u56f0\u96be": 1, "\u4f60": 1, "\u4f1a": 1, "\u9677\u5165": 1, "\u9ebb\u7169": 8, "\u662f\u4e0d\u662f": 1, "\u9ebb\u70e6\u4e8b": 1, "\u9ebb\u70e6": 3, "\u95ee\u9898": 2, "\u5e7e\u4e4e": 1, "\u4e0d": 1, "\u6dfb": 2, "": 1, "\u7ed9": 2, "\u5e26\u6765": 2, "\u7d66": 1, "\u76ee\u524d": 1, "\u4e00\u70b9": 1, "\u9047\u5230": 1, "\u56f0\u96e3": 1}, "quickly": {"\u4e0d\u5fc5": 1, "\u5feb\u901f": 1, "\u4f5c\u7b54": 1, "\u5feb": 4, "\u8fc5\u901f": 1, "\u5730": 3, "\u4e00\u4e0b": 1, "\u5c31": 1, "\u5b8c": 1, "\u5f88\u5feb": 3, "\u8d70\u51fa": 1, "\u5f97": 3, "": 2, "\u6211": 2, "\u5c3d\u5feb": 1, "\u76e1\u5feb": 1}, "sits": {"\u5750": 1, "\u7740": 1, "\u770b\u4e66": 1, "\u4e00\u8fde": 1, "\u597d\u51e0\u4e2a": 1, "Tom": 1, "\u524d": 1, "\u5de5\u4f5c": 1, "\u516b": 1, "\u6709\u4e2a": 1}, "earth": {"\u5730\u7403": 5, "\u5730\u4e0a": 1, "\u5230\u5e95": 1, "\u8ac7": 1, "": 2}, "continents": {"\u4e03\u5927\u6d32": 1}, "become": {"\u60f3\u6210": 1, "\u70ba": 1, "\u4e00\u540d": 3, "\u6210\u4e3a": 10, "\u6210\u70ba": 10, "\u8b8a\u6210": 1, "\u600e\u9ebc": 1, "\u5f53": 1, "\u4ed6": 1}, "Now": {"\u73b0\u5728": 9, "\u73fe\u5728": 5, "\u6211\u5011": 1, "\u958b\u59cb": 1, "\u60f3": 1, "\u8d77\u6765": 1, "\u5b83": 1, "\u6700\u597d": 1, "\u65f6\u673a": 1}, "forecast": {"\u5929\u6c14\u9884\u62a5": 3, "\u6839\u64da": 1, "\u6c23\u8c61": 1, "\u9810\u5831": 1, "\u6703": 1, "\u600e\u4e48": 1, "\u8bf4": 2}, "Kyoto": {"\u4eac\u90fd": 16, "\u591a\u5e38": 1, "\u9020\u8a2a": 1}, "shrines": {"\u8a31\u591a": 1, "\u795e\u793e": 1}, "attend": {"\u53c3\u52a0": 6, "\u53c2\u52a0": 5, "\u4e0b\u6b21": 1, "\u51fa\u5e2d\u4f1a\u8bae": 1, "\u5c06": 1, "\u51fa\u5e2d": 4, "\u9019\u500b": 3, "\u90fd": 1, "\u6a02\u80fd": 1, "\u6392\u961f": 1, "\u5c07": 1}, "convince": {"\u5bf9": 1, "\u6d6a\u8d39\u65f6\u95f4": 1, "\u8bf4\u670d": 4, "\u6ca1\u80fd": 1, "\u8ba9": 2, "\u76f8\u4fe1": 1, "\u6216\u8005": 2, "\u6765": 1, "\u5c4b\u5b50": 1}, "waste": {"": 2, "\u6d6a\u8cbb": 5, "\u4e00\u9ede": 1, "\u4e0d\u8be5": 1, "\u6d6a\u8d39": 1, "\u6d6a\u8d39\u65f6\u95f4": 3, "\u91d1\u94b1": 1, "\u4e00\u523b": 1, "\u4e5f": 1}, "customers": {"\u7684": 3, "\u9867\u5ba2": 1, "\u8a08\u6578": 1, "\u66f4\u591a": 1}, "discover": {"\u767c\u73fe": 1, "\u4ec0\u9ebc": 1, "": 2, "\u8acb": 1}, "friends": {"\u670b\u53cb": 73, "\u6c38\u8fdc": 1, "\u4ea4": 1, "\u6210\u70ba": 1, "\u4e00\u4e2a": 2, "\u5979": 1, "\u5c0b\u6c42": 1, "\u4e0d\u518d": 1, "\u9ad8": 1, "\u5468\u570d": 1, "\u5f88\u5c11": 1}, "idiot": {"\uff08": 1, "\u4e00": 1, "\uff09": 1, "\u500b": 3, "\u7b28\u86cb": 2, "\u4f60\u4e2a": 2, "\u50bb\u5b50": 1, "\uff01": 3, "\u50bb\u74dc": 3, "\u5446\u74dc": 1, "\u8822\u8d27": 1, "\u771f\u662f": 2, "\u50bb": 1, "\u767d\u75f4": 1, "\u9a82": 1}, "climbed": {"\u722c": 12, "\u722c\u4e0a": 2, "\u4e0a": 3, "\u8fdb\u6765": 1}, "wanted": {"\u60f3\u8981": 19, "\u60f3": 39, "\u56e0\u70ba": 1, "\u4e1c\u897f": 2, "\u8fd9\u4e2a": 5, "": 4, "\u5982\u679c": 2, "\u505a\u597d\u4e8b": 1, "\u5c31": 1}, "blast": {"\u7206\u70b8": 2, "\u53d7\u4f24": 1, "\u75be\u98a8": 1, "\u5e2d": 1, "\u6574": 1, "\u68df": 1}, "injured": {"\u4e2d": 4, "\u8bd5\u56fe": 1, "\u65f6\u5019": 1, "\u53d7\u4f24": 1, "\u53d7": 3, "\u4e00\u5834": 2, "\u53d7\u50b7": 4}, "mad": {"\u751f": 3, "\u6c23": 1, "\u90a3\u6642\u5019": 1, "\u751f\u6c23": 2, "\u8ddf": 1, "\u751f\u6c14": 3, "\u75af": 3, "\u5427": 1, "\u760b": 1, "": 1, "\u4f1a": 1, "\u6c64\u59c6\u751f": 2, "\u6c14": 4, "\u800c": 1, "\u5f97": 1, "\u5feb": 1}, "sleep": {"\u5165\u7761": 1, "\u771f\u8a72": 1, "\u7761": 19, "\u4e00": 1, "\u89ba": 3, "\u7761\u89ba": 3, "\u7761\u89c9": 8, "\u7761\u4e0d\u7740": 2, "\u8fd8\u662f": 1, "\u6ca1": 1, "\u4e0d\u597d": 3, "": 1, "\u7684": 1, "\u600e\u4e48": 2, "\u89c9": 2, "\u5931\u7720\u75c7": 1, "\u4f46\u662f": 1, "\u6211": 1, "\u4e00\u4e0b": 1, "\u4e0a\u9762": 2, "\u53ea": 1, "\u597d\u89c9": 1, "\u4e0a\u8fb9": 1, "\u4e0d\u8457": 1}, "intend": {"\u6709\u5fd7": 1, "\u60f3": 1, "\u6253\u7b97": 3, "\u51fa\u570b\u7559\u5b78": 1}, "lawyer": {"\u4e00\u540d": 2, "\u5f8b\u5e08": 3, "\u5f53": 1, "\u5f8b\u5e2b": 2, "\u7576": 1}, "town": {"\u5e0c\u671b": 2, "\u6751\u5b50": 2, "\u4e26\u4e14": 2, "\u518d\u4e5f": 2, "\u4e0d\u8981": 2, "\u93ae\u6709": 1, "\u9547\u4e0a": 2, "\u901b\u901b": 2, "\u9019\u500b": 3, "\u93ae": 3, "\u5e02\u533a": 1, "\u5c0f\u9547": 3, "\u521a\u6765": 1, "\u8fd9": 1, "\u57ce\u5e02": 2, "\u4e0a": 2}, "looked": {"\u4ee5\u5f80": 1, "\u90fd": 1, "\u8f49\u79fb": 1, "\u8996\u7dda": 1, "\u770b": 21, "\u5411": 1, "\u56db\u5468": 1, "\u6c92": 3, "\u904e": 1, "\u8d77\u4f86": 6, "\u5c0b\u627e": 2, "\u5931": 1, "\u8e64": 1, "": 1, "\u4f46": 1, "\u770b\u4e0a\u53bb": 1, "\u7cbe\u795e": 1, "\u7167\u987e": 1}, "early": {"\u65e9\u8d77": 15, "\u6e05\u6668": 2, "\u5f88\u65e9": 9, "\u65e9\u4f86": 3, "\u65e9": 12, "\u7761": 1, "\u65e9\u5c31": 1, "\u6642\u9593": 2, "\u9084": 1, "\u4e0d\u7528": 1, "\u65e9\u9ede": 2, "\u539f\u56e0": 1, "\u63d0\u65e9": 1, "\u4ed6": 1, "\u4e0d\u5fc5": 1, "\u9019\u9ebc": 1}, "burn": {"\u770b\u5b8c": 1, "\u8bf7": 1, "\u628a": 1, "\u70e7\u6389": 1}, "correct": {"\u771f\u7684": 1, "\u5c0d\u4e0d\u5c0d": 1, "\u5728\u6211\u770b\u6765": 1, "\u662f": 1, "\u78ba\u662f": 1, "\u6b63\u78ba": 3, "\u53d1\u73b0\u9519\u8bef": 1, "\u8bf7": 1, "\u6b63\u786e": 1}, "pop": {"\u6d41\u884c": 1}, "music": {"\u97f3\u6a02": 19, "\u97f3\u4e50": 14, "\u5c31": 1, "\u7231": 1, "\u662f": 2}, "control": {"\u6c92\u4eba": 1, "\u7ba1\u675f": 1, "\u6216": 1, "\u958b\u5c0e": 1, "\u63a7\u5236": 5, "\u4f4f": 2, "\u8a2d\u6cd5": 1, "\u4e0d\u80fd\u81ea\u5df2": 1}, "drawer": {"\u62bd\u5c5c": 1, "\u88e1": 1, "\u62bd\u5c49": 1, "\u91cc": 1}, "conference": {"\u4f1a\u8bae": 2, "\u5c06": 1, "\u540e\u5929": 1, "\u4e8e": 1, "\u4e3e\u884c": 1, "\u5e72\u561b": 1, "\u4e00\u4e2a": 1, "\u4f1a\u8bae\u5ba4": 1}, "making": {"\u505a": 1, "\u6b63\u5728": 2, "\u6ce1\u8336": 1, "\u51c6\u5907": 1, "\u88fd": 1, "\u4f5c": 1, "\u96fb": 1, "\u5f71": 1}, "cake": {"\u86cb\u7cd5": 20, "\u4f60\u4eec": 2, "\u4e3a": 1, "\u8bf7\u5403": 1, "\u70b9": 2, "\u62ff": 1, "\u5403": 2}, "trust": {"\u76f8\u4fe1": 10, "\u4e0d\u518d": 1, "\u4f60\u4eec": 1, "\u9664\u4e86": 1, "\u4fe1\u4efb": 13, "\u5bf9\u65b9": 1, "": 2, "\u4e26": 1, "\u800c\u4e14": 1, "\u4fe1\u8d56": 1, "\u9084": 1}, "pulling": {"\u4e00\u5339": 1, "\u99ac\u62c9\u8457": 1, "\u4e00\u67b6": 1, "\u8ddf": 1, "\u958b": 1, "\u73a9\u7b11": 1}, "cart": {"\u99ac\u8eca": 2, "\u524d\u9762": 1}, "revise": {"\u6839\u636e": 1, "\u6240\u8bf4": 1, "\u7684\u8bdd": 1, "\u6211\u4eec": 1, "\u5e94\u8be5": 1}, "money": {"\u9322": 72, "\u94b1": 55, "\u9019\u7b46": 2, "\u8eab\u4e0a": 7, "\u53ef\u80fd": 1, "\u4e5f": 2, "\u6709\u94b1": 1, "\u6211": 2, "\u8db3\u5920": 1, "\u53ef\u4ee5": 1, "\u8fd8\u6709": 1, "\u6709": 1, "\u9019\u4e9b": 1, "\u4e3a\u4e86": 2, "\u7ed9": 1}, "young": {"\u5e74\u8f15": 13, "\u5e74": 5, "\u8f15": 8, "\u5e74\u8f7b": 17, "\u8bfb\u70b9": 3, "\u8a72": 2, "\u591a": 2, "\u7121\u6cd5\u7368\u81ea": 1, "\u5f88": 2, "\u8d81": 1, "\u5973\u5b69": 2, "\u6642\u5019": 1, "\u5f88\u5e74": 1, "\u4e0d\u518d": 1, "\u9084": 3, "\u8fd9\u4e2a": 1, "\u5e74\u8f7b\u4eba": 1}, "spent": {"\u6574\u5929": 1, "\u5f85": 3, "\u82b1": 8, "\u5728": 2, "\u6574\u500b": 2, "\u4e0a\u5348": 1, "\u90fd": 1, "\u770b\u66f8": 1, "\u6642\u9593": 1, "\u90a3": 1, "\u88cf": 1, "\u904e": 2, "\u591c": 1, "\u5927\u90e8\u5206": 1, "\u53ea": 1}, "ground": {"\u6d88\u9632\u8f66": 1, "\u5230\u8fbe": 1, "": 1, "\u623f\u5b50": 1, "\u5c31": 1, "\u5730\u9762": 2, "\u843d\u5230": 1, "\u5730\u4e0a": 1}, "burned": {",": 1, "\u70e7\u6389": 1, "\u4e86\u4fe1": 1, "\u70e7\u4f24": 1, "\u5de6\u624b": 1, "\u88ab": 1, "\u71d9\u5230": 1}, "Nearly": {"\u51e0\u4e4e": 1, "\u662f": 1, "\u9ed1\u8272": 1}, "chance": {"\u5931\u53bb": 1, "\u4e00\u6b21": 3, "\u673a\u4f1a": 7, "\u5076\u9047": 2, "\u6a5f\u6703": 6, "\u7a0b\u5ea6": 1, "\u6ca1\u591a\u4e45": 1, "\u6211\u4eec": 1, "\u5192": 1, "\u96aa": 1, "\u5076\u7136": 1, "\u53ef\u80fd": 1}, "pan": {"\u628a": 2, "\u5e73\u5e95": 1, "\u934b\u96e2": 1}, "fire": {"\u706b": 12, "\u7184\u706d": 1, "\u706b\u707d": 7, "\u7184\u706b": 1, "\u7740\u706b": 2, "\u5f00\u9664": 1, "\u767c\u751f": 2, "\u4e00\u5834": 1, "\u5f88\u5927": 1, "\u628a": 1, "\u706d": 1}, "topic": {"\u63a2\u8a0e": 1, "\u8a71\u984c": 1, "\u63db": 1, "\u500b\u984c": 1, "\u76ee": 1}, "calls": {"\u7535\u8bdd": 2, "": 2, "\u4ed6": 1, "\u6bcf\u5929\u665a\u4e0a": 2, "\u4f1a": 1, "\u6253": 2, "\u51e0\u4e2a": 1, "\u96fb\u8a71": 1, "\u7d66": 1, "\u6709": 1}, "given": {"\u55ef": 1, ".": 1, "\u7ed9": 2, "\u4e86": 4, "\u6ca1\u7ed9": 1, "\u5168\u90fd": 1}, "evening": {"\u6700\u8fd1": 1, "\u665a\u4e0a": 15, "\u4eca\u5929": 9, "\u958b\u5fc3": 1, "\u6628\u665a": 1, "\u6253\u7b97": 2, "\u4eca\u665a": 5, "": 4, "\u4e00\u4e0b": 1, "\u53bb": 1, "\u5fc3\u60c5": 1, "\u5c07": 1, "\u6df1\u591c": 1, "\u6628\u5929\u665a\u4e0a": 1}, "number": {"\u5c31": 1, "\u53f7": 2, "\u591a\u5c11": 5, "\u7535\u8bdd\u53f7\u7801": 7, "\u865f\u78bc": 4, "\u865f": 2, "\u78bc": 2, "\u77e5\u9053": 1, "\u201c": 1, "\u90a3\u4e2a": 1, "\u53f7\u7801": 1, "": 1, "\u932f": 1, "\u6253\u9519": 1, "\u7535\u8bdd": 1}, "annoyed": {"\u88ab": 1, "\u70e6\u6b7b": 1}, "swampy": {"\u6cbc\u6fa4": 1, "\u5730\u4e0a": 1, "\u5efa\u7bc9\u7269": 1}, "build": {"\u5efa\u9020": 1, "\u5efa": 1, "\u4e00\u5ea7": 1, "\u8981": 1, "\u9f13\u8d77\u52c7\u6c14": 1}, "leaves": {"\u6811\u53f6": 1, "\u51fa\u53d1": 4, "\u5c07": 1, "\u5f8c": 2, "\u958b\u52d5": 1, "\u53f6\u5b50": 2, "\u843d": 1, "\u53bb": 2, "\u767c\u8eca": 1, "\u96e2\u958b": 1, "\u672b\u73ed\u8f66": 1, "": 1}, "fell": {"\u6389": 2, "\u4e86": 23, "\u4ece": 4, "\u4e0a\u6389": 2, "\u4e0b\u6765": 3, "\u4e0a": 4, "\u5c31": 1, "\u8dcc\u5012": 2, "\u6211": 1, "\u6454\u5012": 3, "\u5728": 1, "\u4ed6": 1}, "entire": {"\u5728": 3, "\u6574\u5834": 1, "\u653e\u6620": 1, "\u6642": 1, "\u90fd": 3, "\u7761\u89ba": 1}, "drives": {"\u958b": 2, "\u4e00\u8f1b": 1, "\u820a\u8eca": 1, "\u958b\u8eca": 3, "\u901f\u5ea6": 1}, "hiding": {"\u662f\u4e0d\u662f": 2, "\u7792": 2, "\u7740": 4, "\u4e0d\u8ba9": 1, "\u85cf": 2, "\u751a\u9ebc": 1, "Tom": 2, "\u5bf9": 1, "\u9690\u85cf": 2, "\u4e8b\u60c5": 2, "\u8eb2": 1, "\u4e00\u4e2a": 2, "\u5e38\u5e38": 1, "\u5206\u8fa8": 1, "\u51fa\u6765": 1}, "Stop": {"\u4e0d\u8981": 7, "\u56e0\u4e3a": 2, "\u5c0f\u4e8b": 2, "\u65b9\u5bf8\u5927\u4e71": 1, "\u800c": 1, "\u70e6\u8e81": 1, "\u4e86": 8, "\u522b": 8, "\u505c\u6b62": 4, "\u518d": 1, "\u5ff5": 1, "\u5c31": 1}, "getting": {"\u8ba9": 3, "\u53d8\u8001": 1, "\u5730": 2, "\u4e00\u7ad9": 4, "\u4e0b\u8eca": 2, "\u53d8\u5f97": 2, "\u5730\u597d": 2, "\u8f49": 2, "\u6703": 1, "\u5bf9\u4e8e": 1, "\u6211": 1, "\u8d8a\u4f86\u8d8a": 2, "\u8457\u70ba": 1, "\u4f5c": 1, "\u8981": 2}, "yourself": {"\u81ea\u5df1": 29, "\u5c31": 1, "\u4f60": 10, "\u5403": 1, "\u7684": 1, "\u4e00": 2, "\u4eba": 2, "\u628a": 2, "\u5b83": 2, "\u5168\u90e8": 2, "\u7a0d\u5fae": 1, "\u5427": 1, "\u4e0d\u4f1a": 1, "\u50b7": 1, "\u5ba2\u6c23": 1}, "depend": {"\u9760": 2, "\u53ef": 2, "\u5168": 2, "\u6307\u671b": 1, "\u6216\u8bb8": 1, "\u4f9d\u9760": 1, "\u6765": 1, "\u9760\u4f60\u4e86": 1, "\u8fc7\u4e8e": 1, "\u4f9d\u8d56": 1}, "suggestions": {"\u9084": 1, "\u5efa\u8b70": 1, "\u5efa\u8bae": 2, "\u63d0\u51fa": 1}, "learning": {"\u5b66": 3, "\u4e9b": 1, "\u5440": 1, "\u5b78\u6cd5": 3, "\u8a9e": 3, "\u6b63\u5728": 3, "\u5b78": 2, "\u5b78\u958b": 1, "\u8eca": 1, "\u51e0\u5e74": 1, "\u5728": 1, "\u5b78\u7fd2": 2, "\u99d5\u99db": 1}, "Try": {"\u5c3d\u91cf": 1, "\u8bd5": 2, "\u7740": 2, "\u7528\u597d": 1, "\u8bd5\u8bd5": 3, "\u5427": 2, "\u8a66": 2, "\u5617\u8a66": 1, "\u4e00\u6b21": 2, "\u5f97": 1}, "dishes": {"\u6d17\u7897": 5, "\u6d17\u76e4\u5b50": 3, "\u7897": 1, "\u76e4": 1}, "landing": {"\u9019": 1, "\u67b6": 1, "\u8457\u9678": 1, "\u964d\u843d": 2}, "plane": {"\u98db\u6a5f": 12, "\u8d77\u98db": 4, "\u67b6": 4, "": 3, "\u98de\u673a": 3, "\u642d": 2, "\u6bd4\u8f03": 1, "\u5750": 1}, "afraid": {"\u5bb3\u6015": 16, "\u6015": 32, "\u4e0d\u6015": 3, "\u8271\u82e6": 1, "\u597d\u6015": 1, "": 2, "\u80c6\u5c0f": 1, "\u6703": 1, "\u6050\u6015": 7, "\u62c5\u5fc3": 2, "\"": 1}, "wonderful": {"\u4f4d": 1, "\u4e86\u4e0d\u8d77": 1, "\u5973\u6027": 1, "\u592a\u597d\u4e86": 1, "\u591a": 2, "\u7f8e\u597d": 3, "\u554a": 2, "\uff01": 1, "\u7f8e\u5999": 2, "\u9019": 1, "\u5f88\u68d2": 2, "\u73a9": 1, "\u6109\u5feb": 1, "\u4e00\u5ea7": 1, "\u975e\u5e38": 1, "\u597d": 1, "\u5ea6": 1, "\u904e": 1, "\u6642\u5149": 1}, "Alcohol": {"\u9152": 1, "\u6d88\u8d39": 1, "\u6bcf\u5e74": 1, "\u4e0a\u5347": 1}, "increasing": {"\u5728": 2, "\u51fa\u56fd": 1, "\u4eba\u6570": 1, "\u589e\u52a0": 1}, "fought": {"\u4e24\u961f": 1, "\u6253": 1, "\u573a": 1, "\u786c\u4ed7": 1}, "might": {"\u4f1a": 3, "\u53ef\u80fd": 23, "\u6703": 8, "\u6216\u8bb8": 2, "": 3, "\u4f60": 1, "\u4e24\u70b9": 1, "\u90a3\u6837": 2, "\u4e0d\u5230": 1, "\u4e5f\u8a31": 1}, "concern": {"\u4e8b": 2, "\u8ddf": 1, "\u6ca1": 1, "\u534a": 1, "\u6bdb\u94b1": 1, "\u5173\u7cfb": 1, "\u8fd9": 1, "\u4e0d\u5173": 1}, "froze": {"\u5929": 1, "\u5f97": 2, "\u8db3\u4ee5": 1, "\u8ba9": 1, "\u7ed3\u51b0": 1}, "enough": {"\u5403": 2, ",": 1, "": 6, "\u5df2\u7d93": 4, "\u77ad\u89e3": 2, "\u8db3\u591f": 11, "\u90a3\u8f86\u8f66": 3, "\u9577\u5927": 1, "\u8a72": 2, "\u61c2\u4e8b": 2, "\u5920": 5, "\u98fd": 1, "\u4e0d\u591f": 4, "\u591f": 5, "\u8db3\u5920": 2, "\u505a\u591f": 1, "\u7d00\u5920": 4, "\u53ef\u4ee5": 6, ".": 2, "\u6211": 1, "\u53d7\u5920": 2, "\u771f\u7684": 1}, "Training": {"\u4f1a": 1, "\u6709": 1, "\u8bad\u7ec3": 1}, "nothing": {"\u514d\u8cbb": 4, "\u4f60": 1, "\u6ca1\u4ec0\u4e48": 5, "\u53ef\u8bf4": 1, "\u6ca1\u6709": 6, "\u4e8b": 6, "\u4ec0\u4e48": 12, "\u90fd": 8, "\u751a\u9ebc": 1, "\u6c92\u6709": 11, "\u7c21\u76f4": 1, "\u82b1\u9322": 1, "\u8cb7\u5230": 1, "\u6c92": 3, "\u4ec0\u9ebc": 6, "\u95dc": 1, "\u4fc2": 1, "\u6ca1": 3, "\u534a": 1, "\u6bdb\u94b1": 1, "\u5173\u7cfb": 1, "\u5bf9\u6b64": 1, "\u65e0\u80fd\u4e3a\u529b": 1, "\u6ca1\u5173\u7cfb": 1, "\u4efb\u4f55": 1, "\u4e00\u65e0\u6240\u77e5": 1, "\u4e5f": 4, "\u5176\u4ed6": 1, "\u4e8b\u60c5": 1, "\u4e0d": 2, "\u505a\u4e0d\u4e86": 1, "\u7684": 1, "": 2, "\u8207": 1, "\u7121\u95dc": 1, "\u5f53\u65f6": 2, "\u6ca1\u7ed9": 1, "\u6b64\u4e8b": 1, "\u4e0e\u6211\u65e0\u5173": 1, "\u6703": 1, "\u505a": 1, "\u9519": 1}, "While": {"\u770b\u4e66": 2, "\u65f6\u5019": 4, "\u70b9\u7740": 1, "\u5c31": 1, "\u7576": 1, "\u66f8": 1, "\u6642\u5019": 1}, "light": {"\u706f": 7, "\u5173\u706f": 1, "\u95dc\u71c8": 5, "\u501f": 2, "\u500b": 2, "\u706b": 2, "\u6e05\u6de1": 1, "\u5149\u7dda": 2, "\u5728": 1, "\u4eae\u706f": 1, "\u4ecb": 1, "\u7da0\u71c8": 1, "": 1, "\u4eae": 2, "\u7740": 2}, "bookstore": {"\u4e00\u5bb6": 1, "\u66f8\u5e97": 2, "\u8cb7\u5230": 1, "\u9806\u9053": 1, "\u53bb": 1, "\u9019\u5bb6": 1, "\u653e\u5b66": 1, "\u540e\u5728": 1, "\u4e66\u5e97": 1, "\u90a3\u91cc": 1}, "Hokkaido": {"\u66fe": 2, "\u5317\u6d77\u9053": 12, "\u4e26": 1, "\u4e00\u4e2a": 2, "\u81ea": 1}, "working": {"\u5de5\u4f5c": 28, "\u5979": 1, "\u4e0a\u73ed": 2, "\u4ed6": 1, "\u4ece": 1, "\u65f6\u5019": 1, "\u5f00\u59cb": 1, "\u7740": 1, "\u5730": 1, "\u7ee7\u7eed": 1, "\u5728": 2, "\u8fd8": 1}, "sometimes": {"\u4e00\u4ef6": 1, "": 4, "\u4f60": 1, "\u6709": 10, "\u6642": 5, "\u5076\u723e": 3, "\u6642\u6703": 2, "\u6709\u6642": 4, "\u6709\u65f6": 3, "\u6709\u65f6\u5019": 1, "\u4f1a": 1, "\u4e0b\u5e8a": 1, "\u6642\u5019": 1, ",": 1, "\u9084": 1, "\u662f": 1}, "Hippopotamuses": {"\u6cb3\u9a6c": 1, "\u559c\u6b22": 1}, "foreigner": {"\u4e00\u500b": 2, "\u5916\u570b": 1, "\u4eba": 1, "\u9019\u5bb6": 1, "\u7531": 1, "\u5916\u570b\u4eba": 1, "\u7d93\u71df": 1}, "U.N.": {"\u6240\u6709": 1, "\u52a0\u5165": 1, "\u8054\u5408\u56fd": 1}, "country": {"\u56fd\u5bb6": 14, "\u570b\u5bb6": 5, "\u9109\u4e0b": 5, "\u662f": 1, "\u662f\u4ece": 2, "\u54ea\u4e2a": 1}, "lonely": {"": 2, "\u57ce\u5e02": 1, "\u5bd2\u51b7": 1, "\u53c8": 3, "\u5b64\u5355": 2, "\u4e0d\u5e78": 1, "\u89c9\u5f97": 2, "\u5f88": 3, "\u5b64\u72ec": 2, "\u5bc2\u5bde": 2, "\u51b7\u6e05": 1, "\u6211": 1}, "baby": {"\u5b30\u5152": 12, "\u6b63\u5728": 4, "\u5b9d\u5b9d": 10, "\u9019\u500b": 2, "\u5c0f": 2, "\u5a74\u513f": 1, "\u50cf": 1, "": 1, "\u5bf6\u5bf6": 1, ",": 1, "\u6211\u5bb6": 2, "\u4e0d\u4f1a": 2, "\u5b69\u5b50": 4, "\u751f": 1}, "crying": {"\u54ed": 17, "\u54ed\u6ce3": 4, "\u5728": 5, "\u6b63\u5728": 1, "\u5f53\u65f6": 1, "\u6b62\u4e0d\u4f4f": 1}, "Spring": {"\u6625\u5929": 9, "\u5feb": 3, "\u4f86": 2, "\u5c31\u8981": 3, "\u6765": 2, "\u5230": 1}, "funny": {"\u4e0a": 1, "\u4e00\u5834": 1, "\u5f88": 1, "\u6709\u8da3": 4, "\u7ed9": 1, "\u8bb2": 1, "\u4e00\u4e2a": 1, ",": 1, "\u6211\u4eec": 1}, "poor": {"\u4e0d\u597d": 1, "\u53ef\u601c": 1, "\u5c0f\u9e1f": 1, "\u5f88\u7a77": 2, "\u7a77\u4eba": 4, "\u7aae": 2, "\u5bcc\u88d5": 1, "\u51fa\u8eab": 1, "\u8d2b\u5bd2": 1, "\u4e0d": 2, "\u4e0d\u80fd": 1, "\u7aae\u4eba": 1}, "fever": {"\u767c\u71d2": 4, "\u70e7": 1, "\u5f97": 1, "\u5389\u5bb3": 1, "\u4eca\u5929\u4e0a\u5348": 1, "\u5152": 1, "\u6ca1": 2, "\u53d1\u70e7": 3, "\u8fd8": 1}, "sore": {"\u75db": 3, "\u5168\u8eab": 1, "\u9178\u75db": 1, "\u96be\u53d7": 1, "\u4e0a": 1, "\u5730\u65b9": 1, "\u8d85\u7ea7": 1, "\u7b2c\u4e8c\u5929": 1, "\u5f88\u9178": 1}, "head": {"\u8fd9\u4eba": 1, "\u8bb2": 1, "\u5b8c\u5168": 1, "\u542c\u4e0d\u61c2": 1, "\u5934": 3, "\u8ddf\u8b77": 1, "\u58eb\u9577": 1, "\u4e00\u4e2a\u5934": 1, "\u982d": 3, "\u4f60": 1}, "sole": {"\u8fd9": 1, "\u552f\u4e00": 1, "\u5173\u5fc3": 1}, "known": {"\u5df2\u7d93": 2, "\u8a8d\u8b58": 2, "\u66f4": 1, "\u6e05\u695a": 1, "\u65e9": 2, "\u77e5\u9053": 5, "\u76f8\u8b58": 1, "\u4e45": 2, "\u8ba4\u8bc6": 2, "\u4e0d": 1, "\u4e24\u5e74": 1}, "five": {"\u4e94\u5e74": 6, "5": 4, "\u5230": 1, "\u4e94\u9ede\u9418": 5, "\u4e86": 3, "\u6211\u5bb6": 1, "\u53e3\u4eba": 1, "\u4e94\u5206": 1, "\u4e94\u9ede": 2, "\u4e94\u5c0f\u65f6": 1, "\u524d": 1}, "main": {"\u8fd9": 3, "\u8981": 3, "\u90a3\u4ef6\u4e8b": 3, "\u4e3b\u8981": 6}, "reason": {"\u539f\u56e0": 9, "\u7406\u7531": 8, "\u5145\u5206": 2, "\u8ba9": 1, "\u52a8\u6012": 1}, "Sleep": {"\u7761\u7720\u4e0d\u8db3": 1, "\u589e\u52a0": 1, "\u5fc3\u81df\u75c5": 1, "\u767c\u4f5c": 1, "\u5371\u96aa": 1}, "salad": {"\u8981": 2, "\u4f86": 1, "\u5152": 1, "\u6c99\u62c9": 2, "\u8bf7\u95ee": 1, "\u60a8": 1, "\u6765": 1, "\u70b9\u513f": 1}, "tenth": {"": 2, "\u4e5f": 1, "\u5c31\u662f": 1, "\u5341\u65e5": 1, "\u958b\u5b78": 1}, "bag": {"\u888b\u5b50": 8, "\u5305\u5728": 1, "\u5305": 9, "\u4f60": 1, "\u6240\u6709": 1, "\u653e\u5230": 1, "\u91cc\u9762": 1, "\u90a3": 1, "\u5305\u662f": 1, "\u7559\u5728": 1, "\u4e00\u4e2a\u5305": 1, "\u5305\u5f00": 1, "\u907a\u5931": 1, "\u623f\u88e1": 1}, "blind": {"\u53f3\u773c": 1, "\u778e": 3, "\u4eba\u4eec": 2, "\u7231\u60c5": 2, "\u76f2\u76ee": 2, "\u90a3": 1, "\u4e00\u53ea": 1, "\u96bb\u72d7\u7684\u4e00": 1}, "grandfather": {"\u7956\u7236": 14, "\u723a\u723a": 3, "\u58fd": 1, "\u6211": 1, "\u723a": 2}, "nineties": {"\u4e5d\u5341\u591a": 1, "\u6b72": 1, "\u4e86": 1}, "camera": {"\u4e00\u53f0": 6, "\u7167\u76f8": 6, "\u6a5f": 7, "\u7167\u76f8\u673a": 7, "\u76f8\u673a": 6, "\u53f0": 2, "\u76f8\u6a5f": 13, "\u6444\u50cf\u673a": 1, "\u4e0d\u932f": 1, "\u8fd9\u90e8": 1}, "arrested": {"\u88ab": 1, "\u902e\u6355": 7, "\u6c92": 1, "\u88ab\u6355": 2}, "Whose": {"\u9019\u66f8": 1, "\u8ab0": 10, "\u662f": 2, "\u8c01": 10, "\u8fd9\u8f86": 1, "\u53f0\u6c7d": 2, "\u8fd9": 2}, "guitarist": {"\u60f3\u8981": 1, "\u6210\u4e3a": 1, "\u5409\u4ed6\u624b": 1}, "sister": {"\u59b9\u59b9": 30, "\u59d0\u59d0": 14, "\u59ca\u59ca": 1, "\u59d0\u59b9": 1, "": 3, "\u59d0\u5f1f": 1}, "university": {"\u4e0a\u5927\u5b78": 1, "\u51fa\u53bb": 1, "\u5927\u5b66": 6, "\u5927\u5b66\u751f": 1, "\u7b2c\u4e00\u5929": 1, "\u76f8\u5f53": 1, "\u6ca1\u610f\u601d": 1}, "2": {"\u5728": 2, "2": 4, "\uff1a": 2, "\u4e4b\u540e": 1, "\u624d\u80fd": 1}, "30": {"30": 10, "\u8ba9": 2, "\u534a\u5c0f\u65f6": 1, "\u5c81": 1}, "provided": {"\u63d0\u4f9b": 1, "\u5047\u5982\u80fd": 1, "\u4e00\u4e2a\u6708": 1, "\u4e4b\u5185": 1, "\u8fd8": 1, "\u7684\u8bdd": 1, "": 1, "\u628a": 1}, "promises": {"\u5b88\u7ea6": 1, "\u4e0d\u8be5": 1, "\u8fdd\u80cc": 1, "\u8bfa\u8a00": 1, "\u4fe1\u5b88": 3, "\u8afe\u8a00": 4, "\u9075\u5b88": 2, "\u627f\u8afe": 1}, "skiing": {"\u6bcf\u5e74": 1, "\u6ed1\u96ea": 4, "Tom": 1, "\u57ce\u5e02": 1, "\u600e\u4e48\u6837": 1}, "winter": {"\u51ac\u5929": 12, "\u9759\u8c27": 2, "\u51ac\u591c": 2, "\u52dd": 2, "\u904e": 1, "": 1, "\u597d\u591a": 1, "\u65bc": 1, "\u5bd2\u5047": 1}, "eight": {"\u660e\u65e9": 2, "\u516b\u70b9": 2, "\u6765\u63a5": 1, "\u516b\u9ede\u534a": 2, "\u51fa\u767c": 1, "\u516b\u500b": 2, "\u516b\u9ede": 2, "8": 2, "\u90a3": 1, "\u73ed\u8f66": 1}, "parents": {"\u7236\u6bcd": 45, "\u6211": 2, "\u540c\u4f4f": 1, "": 1, "\u5c0d": 1, "\u9802": 1, "\u5634": 1}, "drunk": {"\u9189": 5, "\u559d\u9189": 7, "\u9189\u91ba\u91ba": 1, "": 1, "\u9152": 1, "\u559d": 1, "\u4e0d\u80fd": 1, "\u559d\u9152": 2, "\u9189\u7121\u6cd5": 2, "\u6c92\u9189": 2, "\u6bcf\u5929": 1, "\uff01": 1}, "recognize": {"\u90fd": 1, "\u8ba4\u4e0d\u51fa\u6765": 1, "\u623f\u5b50": 1, "\u91cc\u9762": 1, "\u4e00\u4e2a": 1, "\u8ba4\u5f97": 1, "\u627f\u8ba4": 1, "\u4e8b\u5b9e": 1, "\u53d8": 1, "": 1, "\u6211": 1, "\u8ba4\u51fa": 3}, "wall": {"\u7246\u4e0a": 4, "\u756b": 2, "\u7246": 5, "\u6302": 3, "\u5899\u4e0a": 6, "\u5899": 2}, "picture": {"\u4e00\u5e45": 4, "\u7167\u7247": 13, "\u56fe\u7247": 1, "\u753b": 1, "\u91cc\u9762": 1, "\u70ba": 1, "\u62cd\u7167": 1, "\u5f35": 3, "\u4e00\u5f20": 2, "\u5168\u5bb6\u798f": 1, "\u5e6b": 1, "\u7167\u76f8": 1, "\u7ed9": 1, "\u7167": 1, "\u76f8\u5417": 1}, "became": {"": 4, "\u4e3a\u4ec0\u4e48": 1, "\u6211": 1, "\u4e86": 11, "\u8b8a": 2, "\u5c31\u662f": 1, "\u6210\u4e3a": 1, "\u548c\u89e3": 1, "\u4e26": 1, "\u6210\u70ba": 4, "\u771f\u6b63": 1, "\u6cd5\u570b": 1, "\u6210": 2}, "gone": {"\u53bb": 13, "\u4e86": 18, "\u5979": 1, "\u94b1": 1, "\u8ddf\u7740": 1, "\u8ba9": 1, "\u56de\u6ce2": 1, "\u58eb\u9813": 1, "\u8acb": 1, "\u5047": 1, "\u6700\u8fd1": 2, "\u8d70": 4, "\u79bb\u5f00": 2, "\u6682\u65f6": 1, "\u53ef\u80fd": 1, "\u5df2\u7ecf": 1, "\u5217\u8f66": 1}, "finds": {"\u53d1\u73b0": 4, "": 3, "\u5f53": 2}, "device": {"\u7ed9": 1, "\u770b\u770b": 1, "\u8fd9": 1, "\u88c5\u7f6e": 1}, "handsome": {"\u5e76": 1, "\u5f97": 1, "\u90a3\u6837": 1, "\u82f1\u4fca": 3, "": 1, "\u4ed6": 1, "\u5f88": 1}, "leads": {"\u4e00\u9ede\u9ede": 1, "\u904b\u6c23": 1, "\u6642\u6703": 1, "\u5c0e\u81f4": 1, "\u610f\u60f3\u4e0d\u5230": 1, "\u4e00\u689d": 1, "\u5230": 1, "\u6211\u5bb6": 1}, "mistakes": {"\u72af": 10, "\u932f": 5, "\u4e2d": 1, "\u932f\u8aa4": 2, "\u9519\u8bef": 4, "\u65f6": 1, "\u9519": 1, "\u72af\u9519": 1, "\u72af\u932f": 1, "\u8001": 1, "\u548c": 1, "\u641e\u9519": 1}, "cleaned": {"\u9019": 1, "\u7531": 2, "\u6e6f\u59c6\u6e05": 2, "\u6383": 2, "\u6253\u6383": 2, "\u6025\u5fd9": 1, "\u6e05\u6383": 1}, "Italy": {"\u7fa9": 2, "\u5927\u5229": 2, "\u5b78\u7fd2\u97f3": 1, "\u6a02": 1, "\u610f\u5927\u5229": 6, "\u5b78\u7fd2": 3}, "bored": {"\u5f88": 2, "\u7121\u804a": 2, "\u89ba": 1, "\u5f97": 1, "\u538c\u5026": 1, "\u9577\u9577": 1, "\u8b93": 1, "\u89ba\u5f97": 1, "\u53ad\u7169": 1}, "hill": {"\u5c0f\u4e18": 1, "\u4e0a\u9762": 1, "\u5c71\u5761": 5, "\u4e0b\u5c71": 1, "\u8d70\u4e0a": 1, "\u5c71": 1, "\u8d70": 1, "\u4e0b": 2, "\u5c71\u4e18": 3}, "bunch": {"\u4e00\u5806": 1, "\u5728": 1, "\u4e00\u8d77": 1}, "strangers": {"\u964c\u751f\u4eba": 3}, "games": {"\u73a9\u6e38\u620f": 1, "\u770b": 2, "\u6bd4\u8cfd": 3, "\u4e26": 1, "\u8f15": 1, "\u9b06": 1, "\u6109\u5feb": 1, "\u7231\u770b": 1}, "allow": {"\u7d76": 1, "\u8b93": 1, "\u5141\u8bb8": 2, "\u4e0d\u4f1a": 2, "\u8ba9": 1, "\u90a3\u4e8b": 1, "\u5141\u8a31": 3, "\u90a3\u9ebc": 1}, "bra": {"\u628a": 1, "\u9322\u85cf": 1, "\u6587\u80f8": 1, "\u88cf": 1}, "Swimming": {"\u591c\u91cc": 1, "\u6e38\u6cf3": 7, "\u5f88": 1, "\u5c0d": 2, "\u4f86\u8aaa": 1, "\u4f7f": 1, "\u817f\u90e8": 1, "\u5f3a\u5065": 1}, "tallest": {"\u6700\u9ad8": 11, "\u662f": 3, "\u6bd4": 1, "\u5176\u4ed6": 1, "\u9ad8": 1, "\u7537\u751f": 1, "\u6240": 1}, "mountain": {"\u5c71": 13, "\u9019": 4, "\u5ea7": 10}, "succeeding": {"\u6210\u529f": 1, "\u6a5f\u6703": 1}, "Put": {"\u7184\u706f": 1, "\u628a": 12, "\u653e\u5728": 6, "\u6771\u897f": 1, "\u653e\u56de": 2, "\u539f\u4f86": 1, "\u597d\u978b": 1, "\u60f3": 1}, "Russian": {"\u8fd9\u4e2a": 1, "\u4fc4\u7f57\u65af": 1, "\u4eba": 1, "\u8fd8": 1, "\u4f1a": 1, "\u4fc4\u8bed": 1, "\u4fc4\u8a9e": 2}, "writer": {"\u4f5c\u5bb6": 6, "\u4f4d": 1, "\u4f1f\u5927": 1}, "sisters": {"\u59d0\u59b9": 6, "\u59ca\u59b9": 2, "\u4e26\u975e": 1, "\u4e94\u500b": 1, "\u5144\u5f1f\u59d0\u59b9": 2}, "video": {"\u770b\u8fc7": 2, "\u90a3\u6bb5": 2, "\u89c6\u9891": 4, "\u5f71\u7247": 1, "\u6e6f\u59c6\u7e3d": 1, "\u73a9\u96fb\u8996": 1, "\u904a\u6a02\u5668": 1}, "indifferent": {"\u5f88\u591a": 1, "\u5bf9": 1, "\u51b7\u6de1": 1}, "politics": {"\u653f\u6cbb": 3}, "likely": {"\u53ef\u80fd": 14, "\u5f88": 4, "\u6709": 4, "\u8fd8": 1, "\u4f1a": 1, "\u592a": 1, "\u6703": 1}, "misunderstanding": {"\u80af\u5b9a": 1, "\u8bef\u4f1a": 2}, "flat": {"\u8173\u8e0f\u8eca": 1, "\u8f2a\u80ce": 1, "\u6c92\u6c23": 1, "\u4e86": 2}, "worn": {"\u5b8c\u5168": 1, "\u7b4b\u75b2\u529b\u76e1": 2, "\u4e86": 1}, "each": {"\u4e92\u76f8": 6, "\u5e6b\u5fd9": 1, "\u4f60\u4eec": 1, "\u6bcf\u500b": 1, "\u5f7c\u6b64": 5, "\u76f8\u611b": 4, "\u89c1\u9762": 1, "\u5bf9\u89c6": 1, "\u6bcf": 1, "\u4e00\u4e2a": 1, "\u6bcf\u4eba": 2, "\u592a": 1, "\u8a8d\u8b58": 2, "\u65b9": 1, "\u8cb7\u7d66": 1, "\u4f60\u5011": 1}, "because": {"\u56e0\u70ba": 17, ",": 22, "": 18, "\u56e0\u4e3a": 9, "\u4f60\u4eec": 1, "\u6240\u4ee5": 2, "\u592a": 1, "\u624d": 1, "\u62dc\u8bbf": 1}, "Wake": {"\u65e9\u9ede": 1, "\u53eb\u9192": 2, "\u4e03\u70b9": 1}, "uncle": {"\u53d4\u53d4": 31, "\u4f4f\u5728\u4e00\u8d77": 2, "\u5230": 1, "\u7acb\u4e0b": 1, "\u907a\u56d1": 1, "\u60f3\u4e00\u60f3": 1, "\u8205\u8205": 2, "\u53bb": 1, "\u8c08\u4e00\u8c08": 1, "\u8ac7\u8ac7": 1}, "comes": {"\u4f86": 9, "\u6765": 10, "\u4e00\u6b21": 1, "\u8acb": 1, "\u6559": 1, "\u6765\u81ea": 1, "\u7b49": 1, "\u6765\u770b": 1, "\u7948\u76fc": 1, "\u56de\u6765": 1}, "complete": {"\u9019\u500b": 2, "\u5b8c\u5168": 1, "\u964c\u751f": 1, "\u4eba": 1, "\u5b8c\u6210": 3}, "project": {"\u8a08\u5283": 2, "\u9879\u76ee": 4, "\u8a72": 2, "\u8fdb\u5c55": 1, "\u5927": 1}, "failure": {"\u5fb9\u5e95": 1, "\u5931\u6557": 1, "\u5931\u8d25": 3, "\u8d23\u4efb": 1}, "fee": {"\u7684\u8bdd": 1, "\u4e0d": 1, "\u5bf9\u4ed8": 1, "\u4e94\u5c81": 1, "\u4ee5\u4e0b": 1, "\u5c0f\u5b69": 1, "\u7968\u4ef7": 1, "\u5168\u9762": 1}, "objection": {"": 2, "\u6211": 2, "\u5f37\u70c8": 1, "\u53cd\u5c0d": 1, "\u5bf9\u4e8e": 1, "\u4e0d": 1, "\u53cd": 1, "\u5c0d": 1}, "choice": {"\u90a3\u65f6": 1, "\u9009\u62e9": 4, "\u4f59\u5730": 1, "\u6c92\u6cd5": 1, "\u9078\u64c7": 2, "": 3, "\u505a\u51fa": 1, "\u522b\u65e0\u9009\u62e9": 1, "\u53ea\u80fd": 1, "\u7ea2\u8336": 1}, "relax": {"\u4f11\u9592": 1, "\u653e": 3, "\u9b06": 3, "\u7136": 1, "\u5f8c": 1, "": 4, "\u4f86": 1, "\u4e00\u4e0b": 2, "\u9019\u91cc": 1, "\u4f11\u606f": 1, "\u653e\u677e": 2, "\u70b9": 1, "\u901a\u8fc7": 1, "\u6765": 1}, "JST": {"JST": 1, "\u6a19\u6e96": 1, "\u6642\u9593": 1}, "stands": {"\u4ee3\u8868": 3, "\u9019\u4efd": 1, "\u9304\u53d6": 1, "\u4ecd\u7136": 1, "\u6709\u6548": 1, "": 1}, "actress": {"\u548c": 1, "\u5973\u6f14\u5458": 1, "\u64da": 1, "\u500b": 2, "\u77e5\u540d": 1, "\u5973": 1, "\u6f14\u54e1": 3}, "1,600": {"\u5ea7": 1, "\u6d77\u62d4": 1, "1600": 1}, "meters": {"\u7c73": 3, "\u6709": 1, "\u4e09\u7c73": 1, "\u8a72": 1, "\u5efa\u7bc9": 1, "\u4e00\u767e": 1, "\u516c\u5c3a": 1, "\u90a3\u500b": 1, "30": 1}, "sons": {"\u513f\u5b50": 3, "\u5152\u5b50": 2, "\u4e03\u4e2a": 1, "Mary": 1}, "wanting": {"\u60f3": 2, "\u597d\u4e45": 1}, "briefcase": {"\u516c\u4e8b\u5305": 2, "\u88dd\u6eff": 1, "\u628a": 1, "\u7559\u5728": 1}, "papers": {"\u88e1": 2, "\u6587\u4ef6": 4, "\u90a3\u500b": 1}, "full": {"\u4e86": 9, ",": 1, "": 1, "\u5403": 3, "\u98fd": 3, "\u5f88": 1, "\u90fd": 1, "\u9971": 2, "\u5145\u6eff": 1, "\u73ed": 1, "\u5ba2\u6eff": 1, "\u4f60": 1, "\u5fc5\u9808": 1, "\u5c4b\u91cc": 1, "\u6324\u6ee1": 1}, "fine": {"\u597d": 11, "\u7f8e\u597d": 1, "\u5f88": 5, "\u5f97": 1, "\u4eca\u5929\u5929\u6c14": 1, "\u53d8": 1, "\u6301\u7eed": 1, "\u5929\u6c14": 2, "\u5929\u6c23": 2, "\u6ca1": 1, "\u95ee\u9898": 1, "\u5df2\u7ecf": 1, "\u6ca1\u4e8b": 1}, "intersection": {"\u8bf7": 1, "\u4e00\u4e2a": 1, "\u5341\u5b57\u8def\u53e3": 1, "\u53f3\u8f6c": 1}, "dance": {"\u613f\u610f": 1, "\u8df3\u821e": 6, "\u554a": 1, "!": 1, "\u6703": 2, "\u8df3": 2, "\u746a\u9e97\u821e": 1}, "degrees": {"\u651d": 4, "\u6c0f": 4}, "boils": {"100": 1, "\u5ea6\u6cb8\u9a30": 2}, "milk": {"\u725b\u5976": 23, "\u6bd4\u8f03": 1, "\u559d\u725b\u5976": 3, "\u53ef\u4ee5": 1, "\u5496\u5561": 1, "\u4e00\u9ede\u9ede": 1}, "drum": {"\u6703": 1, "\u6253\u9f13": 1}, "angry": {"\u6211": 1, "\u5f88": 1, "\u4e3a": 1, "\u751f\u6c14": 17, "\u9019\u4e8b": 1, "\u4e4b": 2, "\u5f8c": 1, "": 2, "\u6e6f\u59c6\u70ba": 1, "\u751f\u6c23": 11, "\u6c14": 4, "\u5bf9": 1, "\u751f": 4, "\u5979": 1, "\u89c1\u5230": 2, "\u975e\u5e38": 3, "\u4e0d\u751f": 1, "\u6c23": 3, "\u5c0d": 2, "\u4e8b": 1}, "Mother": {"\u5abd\u5abd": 1, "\u5ef3": 1, "\u6bcd\u89aa": 1, "\u6b63\u5fd9": 1, "\u8457": 1, "\u5988\u5988": 3, "\u4e3a": 1, "\u7ed9": 1, "\u4e00\u4e2a": 1}, "reach": {"\u8054\u7cfb": 1, "\u76ee\u6a19": 3, "\u600e\u6a23": 1, "\u624d\u80fd": 1, "\u9023\u7d61": 1, "\u5230": 1}, "asleep": {"\u7761\u7740": 8, "\u7761\u8457": 3, "\u4e86": 3, "": 1, "\u53d1\u89c9": 1, "\u7537\u5b69\u513f": 1, "\u9163\u7136": 1, "\u5165\u7761": 3, "\u770b\u4e66": 2, "\u7761": 1, "\u5f88\u6c89": 1}, "Wherever": {"\u7121\u8ad6": 3, "\u54ea\u88e1": 3, "\u90fd": 2, "\u5230": 1, "": 2, "\u662f": 1, "\u60f9": 1}, "hit": {"\u649e": 9, "\u5230": 3, "\u4e86": 7, "\u5dee\u9ede": 1, "\u6c7d\u8eca": 1, "\u649e\u4e0a": 1, "\u6253": 5, "\u4ed6": 1, "\u4e0a": 1, "\u88ab\u8f66\u649e": 1}, "holiday": {"\u5730": 1, "": 2, "\u7576\u7136": 1, "\u7bc0\u65e5": 1, "\u90fd": 1, "\u8ddf": 1, "\u8aaa": 1, "\u4f11\u5047": 1}, "drew": {"\u7528": 1, "\u756b": 1, "\u53d6": 1}, "pencil": {"\u94c5\u7b14": 12, "\u652f": 4, "\u925b": 5, "\u7b46": 5, "\u6bd4\u90a3": 1, "\u96bb": 1, "\u925b\u7b46": 6, "\u4e00\u652f": 2, "\u501f": 1, "\u7528": 1, "\u6389": 2}, "circle": {"\u753b": 2, "\u4e00\u4e2a\u5708": 2, "": 1, "\u559c\u6b61": 1}, "thousand": {"\u4e00": 2, "\u505a": 1, "1000": 6, "\u591f\u4e0d\u591f": 1, "\u4e00\u842c": 2, "\u4e24\u5343": 1, "\u4ee5": 1, "\u5927\u7ea6": 1, "\u4e70\u4e0b": 1, "\u8db3\u591f": 1}, "dollars": {"\u4e07\u7f8e\u5143": 1, "\u7f8e\u5143": 22, "\u5341\u7f8e\u5143": 2, "\u5713": 2, "\u5341\u7f8e": 1, "\u82b1": 3}, "plenty": {"\u5e36\u8457": 1, "\u5f88\u591a": 6, "\u8db3\u591f": 1, "\u5927\u91cf": 2, "\u5145\u5206": 1, "\u6771\u897f": 1, "\u5145\u8db3": 1, "\u94b1\u8d22": 1}, "Sing": {"\u70ba": 1, "\u5531\u9996\u6b4c": 1, "\u5427": 1}, "Very": {"\u5f88\u5c11": 1, "\u6d3b\u5230": 1, "\u5c81": 1}, "100": {"100": 4, "\u6d3b\u5230": 1, "\u5c81": 1}, "weight": {"\u4f53\u91cd": 2, "\u9ad4\u91cd": 4, "\u589e\u52a0": 2, "\u8b8a": 1, "\u7626": 2, "\u51cf\u80a5": 2, "": 1, "\u4e86\u9ad4": 1, "\u91cd": 1, "\u6ce8\u610f": 1}, "drop": {"\u8f09": 1, "\u5269\u4e0b": 2, "\u4e00\u6ef4\u6c34": 2, "\u5230": 1, "\u6389": 2, "\u7537\u5b69\u513f": 1, "\u6765\u8bbf": 1, "\u8fc7": 1, "\u6211\u5bb6": 1, "\u4e0b\u79ae": 1, "\u62dc": 1, "\u62dc\u8a2a": 1, "\u4e00\u4e0b": 1, "\u987a\u4fbf\u53bb": 1, "\u6ef4\u96e8": 1, "\u843d": 1, "\u5934\u4e0a": 1}, "unlucky": {"\u5012\u9709": 1, "\u771f\u662f": 1, "\u4e0d": 1, "\u8d70\u8fd0": 1, "\u5bb6\u4f19": 1, "\u5f88\u5e78": 1, "\u904b": 1}, "quick": {"\u53cd\u61c9": 1, "\u5f88\u5feb": 3, "\u8fc5\u901f": 2, "\u56de\u590d": 1, "\u77a5": 1, "\u4e00\u773c": 1, "\u5730": 2}, "saying": {"\u8aaa": 12, "\u8bf4": 10, "\u5728": 3, "\u751a\u9ebc": 1, "\u610f\u601d": 2, "\u8a71": 1, "\u4e0d\u8a00\u800c\u55bb": 1, "\u624d\u80fd": 1, "\u542c\u61c2": 1}, "pride": {"\u55e8": 1, "": 1, "\u4e00\u76f4": 1, "\u4e3a": 1, "\u611f\u5230": 1, "\u81ea\u8c6a": 1, "\u63a9\u9970": 1, "\u5bf9": 1, "\u81ea\u5df1": 1, "\u9a84\u50b2": 1}, "procedure": {"\u7a0b\u5e8f": 1}, "paid": {"\u6709\u4eba": 2, "\u82b1\u94b1": 1, "\u8ba9": 1, "\u8fd9\u4e8b": 1, "\u7528": 2, "\u4e70": 3, "\u5de5\u8d44": 1, "\u9ad8": 1, "\u4ed8": 4, "\u4e94\u584a": 1, "\u8cb7": 2, "\u89c1": 2, "\u7947": 1, "\u5225": 1, "\u9322": 1, "\u8b93": 1, "\u4e94\u5143": 1}, "liked": {"\u6211": 2, "\u559c\u6b61": 7, "\u559c\u6b22": 1, "\u8d8a": 1, "\u5c31": 1, "\u7acb\u523b": 1}, "speech": {"\u6293\u5230": 2, "\u6f14\u8bb2": 5, "\u91cd\u70b9": 2, "\u7b80\u77ed": 1, "\u4e14": 1, "\u5207\u4e2d\u8981\u5bb3": 1, "\u6f14\u8b1b": 3, "\u7cbe\u5f69": 1}, "conversation": {"\u6253\u65b7": 4, "\u8ac7\u8a71": 5, "\u4ea4\u8ac7": 1, "\u6709\u95dc": 1, "\u8c08": 1, "\u4e0d\u9519": 1}, "interrupted": {"\u4e86": 2, "\u6253\u65ad": 1, "\u8c08\u8bba": 1}, "our": {"\u6211\u5011": 36, "\u7684": 58, "\u6211\u4eec": 33, "": 7, "\u5728": 1, "\u7740": 1, "\u57ce\u5e02": 1, "\u4e0d": 1, "\u559c\u6b22": 1, "\u610f\u5916": 1}, "fly": {"\u6703": 1, "\u99d5\u99db": 1, "\u5206\u9418": 1, "\u4e4b\u5167": 1, "\u98db\u5230": 1, "\u5750\u98de\u673a": 1, "\u9e1f\u4f1a": 1, "\u98de": 1}, "airplane": {"\u98db\u6a5f": 2, "\u642d": 1, "\u5230": 1, "\u6709": 1, "\u9019": 1, "\u73ed": 1, "\u98db": 2, "\u6a5f\u6e96": 1, "\u6642": 1, "\u8d77": 1}, "Korea": {"\u6765": 1, "\u97e9\u56fd": 1}, "fear": {"\u5bb3\u6015": 2, "\u770b": 1, "\u898b": 1, "\u5c31": 1, "\u5687": 1, "\u4e0d\u52d5": 1, "": 1}, "painted": {"\u628a": 3, "\u5237\u6210": 2, "\u6f06\u6210": 1, "\u5237\u6f06": 1, "\u756b": 6, "\u4e86\u4e00": 1, "\u5716\u756b": 1, "\u5237": 1}, "moves": {"\u52a8": 1, "\u5f97": 1, "\u597d": 1, "\u5feb": 1}, "See": {"\u89c1": 2, "\u4e00\u6703\u5152": 1, "\u898b": 5, "\u4e00\u518d": 1, "\u4e0a\u898b": 1, "\u518d\u89c1": 4, "\uff01": 3, "\u6642\u5019": 1}, "Harry": {"\u54c8\u5229\u6ce2": 1, "\u7279\u7684": 1, "\u65b0\u7247": 1, "\u5341\u5206": 1, "\u5dee": 1}, "sudden": {"\u5ffd\u7136": 1, "\u5929\u6c23": 1, "\u8f49\u70ba": 1, "\u7a81\u7136": 4}, "cloudy": {"\u591a": 2, "\u96f2": 2, "\u6108\u4f86\u6108": 1, ",": 1, "\u5929\u8981": 1, "\u53d8": 1, "\u591a\u4e91": 1}, "week": {"\u661f\u671f": 6, "\u4e00\u9031": 5, "\u5167": 1, "\u4e00\u5468": 9, "\u4e0a\u5468": 3, "\u6301\u7eed": 1, "\u79ae": 1, "\u62dc": 1, "\u5185": 1, "\u4e0a\u9031": 6, "\u8fd9\u5468": 4, "\u5df2\u7d93": 1, "\u4e0b\u5468": 3, "": 1, "\u6211": 1, "\u4e0b\u661f\u671f": 2, "\u548c": 1, "\u9762": 1, "\u8ba9": 1, "\u529e\u516c\u5ba4": 1, "\u5f85": 1, "\u5ef6\u671f": 1, "\u4e00\u76f4": 1, "\u5728": 1, "\u4e0a\u661f\u671f": 2, "\u4e00\u6b21": 1, "\u5730": 1}, "passports": {"\u62ff": 1, "\u8b77\u7167": 1}, "graduated": {"\u7562\u696d": 10, "\u5927\u5b78": 2, "\u4ee5": 1}, "misprints": {"\u96d6\u7136": 1, "\u5370\u5237": 1, "\u932f\u8aa4": 1, "": 1, "\u4f46": 1, "\u5927\u81f4": 1, "\u4e0a": 1}, "eighteen": {"\u5341\u516b": 2, "\u6b72\u6642": 2, "": 2, "\u4e86": 2, "\u958b\u8eca": 2, "\u8003\u5230": 2}, "spilt": {"\u70ba": 2, "\u6ffa\u51fa": 1, "\u4e5f": 1, "\u6c92\u7528": 2, "\u6253\u7ffb": 1, "\u800c": 1}, "boats": {"\u6e56\u4e0a": 1, "\u8239": 1}, "warmed": {"\u6ce1": 1, "\u8eab\u4f53": 1, "\u6696\u548c": 2, "\u8d77\u6765": 1, "\u65c1\u908a": 1, "\u8b93": 1, "\u8d77\u4f86": 1}, "Christmas": {"\u8056\u8a95\u7bc0": 7, "\u4f86": 1, "\u8056\u8a95": 4, "\u7d66": 1, "\u5723\u8bde\u8282": 4, "\u5230": 2, "\u795d\u60a8": 1, "\u4ec0\u4e48\u6837": 1, "\u793c\u7269": 1, "\u66f8\u4f5c": 1, "\u79ae\u7269": 1, "\u671f\u671b": 1, "\u8036": 1, "\u8a95\u7bc0": 1, "\u5f88\u68d2": 1, "\u5723\u8bde\u793c\u7269": 1}, "Her": {"\u5979": 28, "\u7684": 21, "": 1, "\u800c": 1, "\u9e97": 1}, "excellent": {"\u500b": 1, "\u512a\u79c0": 5, "\u6770\u51fa": 1, "\u597d\u6781\u4e86": 1, "\u4e00\u4f4d": 2, "": 1, "\u975e\u5e38": 1, "\u597d": 1, "\u7684": 2}, "cook": {"\u5eda\u5e2b": 3, "\u4e2a": 3, "\u53a8\u5e08": 3, "\u70ba": 2, "\u505a\u98ef": 3, "\u6703": 2, "\u505a\u83dc": 1, "\u70e7\u9c7c": 1, "\u6211\u4f1a": 1, "\u505a\u996d": 1, "\u51c6\u5907": 1}, "accused": {"\u88ab": 3, "\u6307\u8d23": 2, "\u8c0e": 1, "\u63a7\u544a": 1, "\u6740\u4eba\u7f6a": 1, "\u6307\u63a7": 3, "\u6ca1\u6709": 1, "\u6307\u8cac": 1}, "telling": {"\u8bf4": 2, "\u771f\u8bdd": 1, "\u5047\u8bdd": 1, "\u544a\u8bc9": 3, "\u544a\u8a34": 2, "\u4eba": 1, "\u63a5\u4e0b\u6765": 1, "\u5e72\u4ec0\u4e48": 1, "\u5565\u65f6\u5019": 1, "\u5c0d": 1, "\u8aaa": 1, "\u4ec0\u9ebc": 1, "\u6c92\u7528": 1}, "happen": {"\u767c\u751f": 18, "": 1, "\u8fd9\u79cd": 4, "\u53d1\u751f": 16, "\u4e8b": 6, "\u8eab\u4e0a": 2, "\u4e5f": 1, "\u53ef\u80fd": 1, "\u5728": 1, "\uff01": 1, "\u8ba4\u4e3a": 1, "\u6703": 2, "\u4f1a": 1, "\u8aaa": 1, "\u4e0d\u5b9a": 1, "\u4eca\u5929": 1, "\u6709": 1, "\u4e0d": 1, "\u7cdf\u7cd5": 1, "\u90a3\u79cd": 1}, "miss": {"\u9519\u8fc7": 3, "\u516c\u8f66": 1, "\u60f3\u5ff5": 9, "\u96be\u9053": 1, "\u60f3": 7, "\u4f60": 1, "\u6709": 1, "\u9084": 1, "\u5f8c": 1, "\u6211": 1}, "Philippines": {"\u83f2\u5f8b\u5bbe": 1, "\u5730\u9707": 1, "\u548c": 1, "\u9020\u6210": 1, "\u4e86": 1, "\u4eba": 1}, "earthquakes": {"": 1, "\u9810\u6e2c": 1, "\u5730\u9707": 3, "\u8bb8\u591a": 1}, "actually": {"\u771f": 1, "\u5be6\u969b\u4e0a": 1, "\u6c92\u6709": 1, "\u90a3\u9ebc": 1, "\u771f\u7684": 2, "\u9019": 1, "\u8d77": 1, "\u771f\u662f": 1, "\u771f\u6b63": 1, "\u5be6\u969b": 2, "\u4e0a": 2, "\u5b9e\u9645\u4e0a": 1, "\u5176\u5be6": 1, "\u4e0d\u6e96": 1, "\u786e\u5b9e": 1, "\u90a3\u4e2a": 1, "\u76f8\u5f53": 1, "\u80fd": 1}, "Mozart": {"\u83ab\u624e\u7279": 1}, "puzzled": {"\u5bf9": 1, "\u4ee5\u540e": 1, "\u5f88": 1, "\u8ff7\u832b": 1, "\u56f0\u60d1": 1, "\u4e00\u4e0b": 1, "\u7684\u8bdd": 1, "\u7ed9": 1, "\u96be\u5012": 1}, "faint": {"\u89ba\u5f97": 1, "\u5feb": 1, "\u660f\u5012": 1}, "Sweet": {"\u795d": 1, "\u4f60\u597d": 1, "\u68a6": 1}, "policeman": {"\u8b66\u5bdf": 16, "\u6240": 1, "\u6293\u8457": 1, "\u8981\u662f": 1, "\u4e0d\u77e5": 1, "\u9053\u8def": 1, "\u5427": 1}, "tow": {"\u6c92\u6709": 1, "\u62d6\u8d70": 1}, "suggest": {"\u5efa\u8b70": 5, "\u5225": 1, "\u5efa\u8bae": 2, "\u51fa\u53bb\u73a9": 2, "\u8b1b": 1, "\u8f49\u8eab": 1}, "Leave": {"\u96e2": 1, "\u9060": 1, "\u4e00\u9ede": 1, "\u628a": 2, "\u7559\u7ed9": 1, "\u5427": 1, "\u8ba9": 1, "\u4e00\u4e2a": 1, "\u4eba": 1, "\u5446": 1, "\u4f1a\u513f": 1, "\u4e0d\u8981": 1, "\u78b0": 1, "\u653e\u5728": 1, "\u539f\u5904": 1}, "Eighty": {"\u5168\u4e16\u754c": 1, "\u767e\u5206\u4e4b\u516b\u5341": 1, "\u96fb\u8166": 1, "\u8cc7\u8a0a": 1, "\u7528": 1, "\u5beb": 1}, "regrets": {"\u70ba": 1, "\u5f8c": 2, "\u6094": 2, "\u89c9\u5f97": 1, "\u592a": 1, "\u9057\u61be": 1, "\u540e\u6094": 2, "\u5728\u6821": 1, "\u65f6": 1, "\u7528\u529f\u8bfb\u4e66": 1, "\u5bf9": 1, "\u6240": 1, "\u4e00\u5207": 1, "\u611f\u5230": 1, "\u904e": 1}, "bank": {"\u94f6\u884c": 13, "\u9280\u884c": 6, "\u5bc4\u5e0c\u671b\u4e8e": 1, "\u6b64": 1, "\u90a3": 1, "\u5fc5\u987b": 1, "\u8acb\u53bb": 1, "\u78b0\u89c1": 1, "\u4e00\u5bb6": 1}, "watering": {"\u5728": 3, "\u6d47\u82b1": 1, "\u6f86": 2, "\u6b63\u5728": 1, "\u6d41\u773c\u6dda": 1}, "nine": {"\u4e5d\u9ede\u9418": 4, "\u4e5d\u70b9": 7, "\u5f00\u59cb": 1, "\u5230": 4, "\u5728": 2, "\u4e5d\u9ede": 4, "\u671d\u4e5d\u665a\u4e94": 1, "\u65e9\u4e0a": 1, "\u4e0b\u5348": 1, "\u4e94\u9ede\u534a": 1}, "locked": {"\u6642\u5019": 1, "\u9396\u8457": 1, "\u9019": 2, "\u4e00\u6247": 1, "\u88ab": 3, "\u9396\u4e0a": 2, "\u9396\u9580": 1, "\u524d\u9580": 1, "\u53cd\u9396": 1, "\u9396": 1}, "accepted": {"\u63a5\u53d7": 6, "\u4e86": 7, "": 2, "\u4ed6": 1, "\u6c42\u5a5a": 1, "\u800c": 1, "\u5979": 1}, "invitation": {"\u9080\u8acb": 3, "\u6c92\u6709": 1, "\u4e00\u5f20": 1, "\u8bf7\u5e16": 1}, "decide": {"\u6c7a\u5b9a": 7, "\u7531": 4, "\u4f86": 2, "\u6765": 4, "\u51b3\u5b9a": 6, "\u6743\u5229": 1, "\u505a": 3, "\u53bb\u4e0d\u53bb": 1, "\u6642\u9593": 1, "\u771f\u6b63": 1}, "education": {"\u6559\u80b2": 7, "\u7559\u7d66": 1, "\u826f\u597d": 1}, "usually": {"\u901a\u5e38": 26, "\u6240\u4ee5": 1, "\u4e00\u822c": 7, "\u7d93\u5e38": 2, "\u5916\u9762": 1, "\u9592\u6687": 1, "\u6642": 1}, "shower": {"\u6d17\u6fa1": 2, "\u6d17": 3, "\u4e2a": 2, "\u6fa1": 3, "\u6bcf\u665a": 1}, "taking": {"\u600e\u9ebc\u6a23": 2, "\u6563\u6b65": 10, "\u5728": 2, "": 1, "\u89c9\u5f97": 1, "\u600e\u4e48\u6837": 1, "\u4f11": 1, "\u62cd\u7167\u7247": 1}, "leaving": {"\u96e2\u958b": 10, "\u53bb": 4, "\u5c07": 4, "tom": 1, "\u79bb\u5f00": 2, "\u534a\u5e74": 1, "\u5c31\u8981": 1, "\u51fa\u56fd": 1, "\u8981\u96e2": 2, "\u958b\u53bb": 2, "\u4e0b\u500b\u6708": 1, "\u8d70": 1, "\u548c": 1, "\u4f1a": 1}, "America": {"\u7f8e\u570b": 13, "\u7f8e\u56fd": 12, "\u7f8e\u6d32": 2, "\u6709": 1, "\u6703\u53bb": 1, "\u5b66\u533b": 1, "\u6bcf\u4e2a": 1}, "shelf": {"\u67b6\u4e0a": 3, "\u62ff\u4e0b": 1, "\u4e66\u67b6\u4e0a": 1, "\u67b6\u5b50": 4, "\u500b": 1, "\u66f8\u592a": 1, "\u66f8": 1, "\u6ac3\u5b50": 1, "\u5e7e\u672c": 1}, "sweeping": {"\u6b63\u5728": 1, "\u6e05": 1, "\u6383\u8eca": 1, "\u770b\u89c1": 1, "\u6253\u626b": 1}, "garage": {"\u5eab": 2, "\u628a": 1, "\u8f66\u5e93\u91cc": 1, "\u8eca\u5eab": 1}, "attention": {"\u6ce8\u610f": 5, "\u5728\u610f": 1, "\u7684\u8bdd": 1, "": 1, "\u5e76": 1, "\u4e13\u5fc3": 1, "\u5343\u4e07\u522b": 1, "\u7406": 1, "\u5173\u6ce8": 1}, "advice": {"\u5efa\u8bae": 10, "\u610f\u89c1": 1, "\u4ec0\u9ebc": 1, "\u5efa\u8b70": 5, "\u5fe0\u544a": 5, "\u4e9b": 1, "\u63d0\u63d0": 1, "\u8001\u5e08": 1, "\u6ca1\u7528": 1, "\u8d77\u5230": 1, "\u5927": 1, "\u4f5c\u7528": 1, "\u6307\u5c0e": 1, "\u63a5\u4e0b": 1}, "smell": {"\u5fcd\u53d7": 1, "\u9019\u7a2e": 1, "\u6c23\u5473": 1, "\u5f88": 1, "\u81ed": 1, "\u5473\u9053": 2, "\u6c14\u5473": 1, "\u95fb\u89c1": 1, "\u5473": 2}, "ashes": {"\u88ab": 1, "\u5927\u706b": 1, "\u70e7\u6210": 1, "\u7070\u70ec": 1}, "Farmers": {"\u519c\u6c11": 1, "\u603b\u662f": 1}, "complain": {"\u62b1\u6028": 6, "\u4ec0\u9ebc": 2, "\u505a": 1, "\u53ea": 1, "\u6703": 1, "\u5225": 1, "\u53ef": 1}, "agree": {"\u540c\u610f": 28, "\u770b\u6cd5": 2, "\u8d5e\u6210": 3, "\u975e\u5e38": 1, "": 1, "\u6211": 2, "\u610f\u89c1": 2, "\u904e": 1}, "opinion": {"\u770b\u6cd5": 6, "\u610f\u898b": 9, "\u4ed6": 1, "\u5173\u4e8e": 2, "\u6709": 2, "\u5c0d": 1, "\u5c48\u670d": 1, "\u65bc": 1, "\u90a3\u4e2a": 1, "\u89c0\u9ede": 2, "\u807d": 2, "\u60f3\u6cd5": 1}, "Dogs": {"\u72d7": 1, "\u55c5\u89c9": 1, "\u7075\u654f": 1}, "unhappy": {"\u6211\u4f1a": 1, "\u9ad8\u5174": 1, "\u6211": 1, "\u4e0d": 2, "\u5e78\u798f": 2, "\u4e0d\u5feb": 3, "\u6a02": 3, "\u6709": 1, "\u4ed6": 1, "\u4e26": 1, "\u770b": 1, "\u8d77\u4f86": 1}, "underestimate": {"\u4e0d\u8981": 3, "\u4f4e\u4f30": 4, "\u522b": 1}, "power": {"\u5c0f\u770b": 1, "\u529b\u91cf": 3}, "Women": {"\u5973\u6027": 1, "\u7537\u4eba": 1, "\u98ef": 1, "\u6642": 1, "": 2, "\u6703": 1, "\u5403": 1, "\u5f97": 1}, "trivial": {"\u4e0d\u662f": 1, "\u9e21\u6bdb\u849c\u76ae": 1, "\u5c0f\u4e8b": 1}, "rain": {"\u4e0b\u96e8": 30, "\u6703": 3, "\u4f46": 1, "\u5c31": 1, "\u5929": 7, "": 2, "\u4e0b": 3, "\u96e8": 4, "\u5feb\u8981": 4, "\u53ef\u80fd": 3, "\u4f1a": 1, "\u5927\u96e8": 1, "\u5bf9": 1, "\u5427": 1, "-": 1, "\u96e8\u4f1a": 1, "\u8981": 1}, "haunted": {"\u64da": 1, "\u8001\u623f\u5b50": 2, "\u9b27": 2, "\u9b3c": 2, "\u636e\u8bf4": 1, "\u4e2a": 1, "\u9b3c\u5c4b": 1, "\u8fd9\u4e2a": 1, "\u95f9\u9b3c": 1}, "fool": {"\u75af": 1, "\u50bb\u74dc": 3, "\u611a\u5f04": 2, "\u4e0d\u662f": 1, "\u50bb\u5b50": 2, "\u628a": 1, "\u4eba\u5bb6": 1, "\u5f53": 1, "\u624d": 1, "\u5e72": 1, "\u500b": 1, "": 1, "\u53ea\u6709": 1}, "educated": {"\u5bf9": 1, "\u81ea\u5df1": 1, "\u8bfb": 1, "\u8fc7": 1, "\u4e66": 1, "\u8fd9\u4ef6": 1, "\u4e8b": 1, "\u6559\u80b2": 1, "\u7a0b\u5ea6": 1, "\u9ad8": 1, "\u5f97": 1}, "States": {"\u7f8e\u56fd": 8, "\u5f88": 1, "": 1, "\u7f8e\u570b": 2}, "flowers": {"\u82b1": 19, "\u82b1\u6735": 1, "\u71b1\u611b": 1, "\u82b1\u5349": 1, "\u5e36": 1}, "vase": {"\u653e\u8fdb": 1, "\u82b1\u74f6": 5, "\u88e1": 1, "\u88dd": 1, "\u5012\u6c34": 1, "\u9032\u53bb": 1}, "free": {"\u81ea\u7531": 1, "\u6709\u7a7a": 19, "\u53ef\u4ee5": 5, "\u7a7a\u95f2": 2, "\u514d\u8cbb": 3, "\u4f60\u4eec": 1, "\u6b61\u8fce": 1, "\u96a8\u6642": 4, "\u63d0\u554f": 1, "\u4f60": 1, "\u90fd": 1, "\u95f2\u6687": 1, "\u7a7a": 2, "\u96a8": 1, "\u9ad8\u8208": 1}, "trash": {"\u522b": 1, "\u5783\u573e": 3, "\u6cb3\u5c0d\u5cb8": 1}, "throw": {"\u6254": 5, "\u8fd9\u672c": 2, "\u6211": 2, "\u8fd8": 2, "\u4e1f\u6389": 2, "\u672c": 1}, "swimming": {"\u6e38\u6cf3": 20, "\u5728": 2, "\u80fd": 1, "\u53ef\u4ee5": 1, "": 1}, "girl": {"\u5c0f\u5973\u5b69": 3, "\u957f": 1, "\u5973\u751f": 2, "\u5973\u5b69": 26, "\u9019\u500b": 6, "": 3, "\u4ed6": 1, "\u59b3\u662f": 1, "\u4e86": 1, "\u9aee": 1}, "cars": {"\u4ed6": 1, "\u5169\u8f1b": 1, "\u8eca": 2, "\u6c7d\u8eca": 4, "\u99ac\u8def": 2, "\u7576\u5fc3": 2, "\u4e09\u8f86": 1, "\u8f66": 1, "\u5bf9": 1, "\u4e24\u8f86\u8f66": 1}, "thank": {"": 7, "\u611f\u8c22": 4, "\u611f\u8b1d": 4, "\u60a8": 2, "\u4e0d\u5fc5": 1, "\u8c22": 1, "\u770b\u770b": 1, "\u9700\u8981": 2, "\u5403\u9971": 1, "\u6240": 1, "\u5f88\u9971": 1, "\u8b1d": 1, "\u8868\u9054": 1, "\u5c0d": 1}, "secret": {"\u6211\u4ed6": 1, "\u7955": 1, "\u5bc6": 1, "\u4fdd\u5bc6": 3, "\u9019\u500b": 2, "\u79d8\u5bc6": 13, "\u6709\u610f": 1, "\u4fdd\u5b88": 3, "\u8457": 1, "\u4e5f": 1, "\u4e0d\u5230": 1, "\u4e26": 1, "\u544a\u8a34": 1, "\u5b83": 1}, "ought": {"\u61c9\u8a72": 7, "\u61c9": 3, "\u8a72": 3, "\u5e94\u8be5": 3, "\u5411": 1, "\u5f81\u6c42\u610f\u89c1": 1, "\u5e74\u7d00": 1, "\u66f4": 1, "\u61c2\u4e8b": 1, "\u5230": 1, "\u6d3e\u5c0d": 1, "\u522b": 1, "\u5632\u5f04": 1}, "barber": {"\u7406": 1, "\u5e2b": 2, "\u70ba": 2, "\u7406\u53d1\u5e97": 2, "\u78b0\u5230": 1}, "men": {"\u7537\u4eba": 7, "\u4eba": 6, "": 1, "\u4e94\u500b": 1, "\u4e94\u4e2a": 1}, "shaves": {"\u522e": 2, "\u9b0d": 2, "\u5b50": 2}, "cuts": {"\u526a": 1}, "depends": {"\u5440": 2, "\u770b": 3, "\u4e00\u4e0b": 2, "\u518d\u8bf4": 2, "\u5566": 2, "\u9019": 1, "\u53d6\u6c7a": 2, "\u65bc": 2, "\u4e00\u5207": 1, "\u8981": 1, "\u5168\u90fd": 1, "\u9760": 1, "\u53d6\u51b3\u4e8e": 1}, "devil": {"\u8fd9": 1, "\u7ed9": 2, "\u9b54\u9b3c": 2}, "sold": {"\u628a": 4, "\u5356": 2, "\u4e0d\u8be5": 1, "\u8ce3": 2, "\u6389": 2, "\u6c7d\u8f66": 1, "\u5356\u7ed9": 1}, "soul": {"\u7075\u9b42": 2, "\u4e00\u500b": 1, "\u4eba\u5f71": 1, "\u4e5f": 1, "\u770b\u4e0d\u5230": 1}, "procrastinate": {"\u50cf": 1, "\u90a3\u4e48": 1, "\u62d6\u5ef6": 1}, "run": {"\u8dd1": 6, "\u4f01\u56fe": 1, "\u9003\u8d70": 2, "\u8dd1\u6b65": 3, "\u5df2\u7d93": 1, "\u7528\u5b8c": 1, "\u8f3e\u904e": 2, "\u516c\u5171\u6c7d\u8f66": 1, "\u53d1\u8f66": 1}, "green": {"\u73fe\u5728": 1, "\u7da0\u71c8": 1, "\u7da0\u8272": 4, "\u7eff\u8272": 2, "\u60a8": 1, "\u7eff\u8336": 1}, "someone": {"\u6709\u4eba": 12, "\u5f97": 1, "\u627e": 1, "\u4eba": 4, "\u5546\u91cf\u4e00\u4e0b": 1, "\u8981": 1, "\u89c1": 1, "\u8c01": 1, "\u5427": 1, "\u5176\u4ed6\u4eba": 1, "\u4ee3\u66ff": 1, "\u67d0\u4eba": 2, "\u5225\u4eba": 2, "\u8b93": 1, "\u6703": 2, "\u53ef\u80fd": 1, "\u5e2e\u4e0d\u4e86": 1, ",": 2, "\u4f60": 1, "\u4ee5": 2, "\u8fd9\u6837": 1, "\u6388": 1}, "loud": {"\u90a3": 1, "\u58f0\u97f3": 1, "\u5341\u5206": 1, "\u54cd": 1, "\u8a71": 4, "\u5f88\u5927": 1, "\u8072": 1, "\u5927\u8072": 5, "\u5dee\u9ede": 1, "\u51fa\u4f86": 1, "\u4e0d\u5fc5": 2}, "People": {"\u4eba": 11, "\u4eba\u5011": 8, "": 1, "\u4eba\u4eec": 4, "\u4e8b\u7269": 1, "\u9019\u6a23": 1, "\u4e0d\u8a72": 1, "\u4ed6\u4eba": 1, "\u5c31\u662f": 1}, "desire": {"\u628a": 1, "\u6b32\u671b": 1, "\u7231\u60c5": 1, "\u6df7\u4e3a\u4e00\u8c08": 1}, "jobs": {"": 1, "\u64d4\u5fc3": 1, "\u5de5\u4f5c": 2}, "worry": {"\u8a31\u591a": 1, "\u62c5\u5fc3": 4, "\u64d4\u5fc3": 10, "": 1, "\u4f60": 1, "\u597d": 1, "\u70ba": 1, "\u6b64": 1, "\u5728\u610f": 1, "\u4e0d\u7528": 1, "\u8981": 1}, "losing": {"\u4eba": 1, "\u8f93": 1, "\u5931\u53bb": 3, "\u4ece\u6765": 1, "\u5c31": 1, "\u6ca1": 1, "\u8d62": 1, "\u8fc7": 1}, "corner": {"\u8f49\u89d2": 2, "\u8f6c\u89d2\u5904": 2, "\u62d0\u89d2": 1, "\u5730\u65b9": 1, "\u8857\u89d2": 2, "\u4e00\u500b": 1, "\u53f3": 1, "\u4e00\u4e2a": 1, "\u5de6\u8f6c": 1, "\u89d2\u843d": 1}, "pub": {"\u4e00\u5bb6": 1, "\u9152\u5427": 1, "\u6000\u7591": 2, "\u5bb6": 2, "\u9152\u9986": 2, "\u5151\u6c34": 2}, "same": {"\u8ddf": 10, "\u76f8\u540c": 6, "\u540c\u6837": 4, "\u548c": 6, "\u4e00\u6837": 6, "\u540c\u6a23": 6, "\u540c\u4e00": 4, "\u500b": 2, "\u7ee7\u7eed": 1, "\u6240\u5b78\u6821": 1, "\u540c": 1, "\u4e00\u8f86": 1}, "hated": {"\u6068": 3}, "deal": {"\u518d\u7ba1": 1, "\u9019\u4ef6": 1, "\u4e8b": 1, "\u771f\u96e3": 1, "\u8655\u7406": 1, "\u96e3\u5c0d": 1, "\u4ed8": 1, "\u4e00\u5927\u7b14\u94b1": 1, "\u89e3\u51b3": 1, "\u770b": 1, "\u8fd9": 1, "\u4ea4\u6613": 2, "\u4e00\u7b14": 1, "\u4e0d\u9519": 1, "\u6ca1\u4ec0\u4e48": 1, "\u5927\u4e0d\u4e86": 1}, "Looking": {"\u4e0a": 1, "\u700f\u89bd": 1}, "photos": {"\u7167\u7247": 3}, "island": {"\u8fa6\u6cd5": 1, "\u96e2\u958b": 1, "\u9019\u500b": 2, "\u5cf6": 1, "\u5cf6\u4e0a": 1, "\u4e00\u5bb6": 1}, "ill": {"\u75c5": 5, "\u4e86": 9, "\u5df2": 1, "\u5367\u75c5\u5728\u5e8a": 1, "\u56db\u5929": 1, "\u597d\u50cf": 1, "\u751f\u75c5": 3, "\u56e0\u4e3a": 1, "\u4ed6": 1}, "undocumented": {"\u4e00\u4e2a": 2, "\u6f0f\u6d1e": 1, "": 2, "\u800c\u662f": 1, "\u6ca1\u6709": 1, "\u5199": 1, "\u6587\u6863": 1}, "speed": {"\u4ee5": 1, "\u901f\u5ea6": 1, "\u99d5\u99db": 1}, "professional": {"\u6210\u4e3a": 1, "\u804c\u4e1a": 1, "\u8fd0\u52a8\u5458": 1, "\u4e2a": 1, "\u4e13\u4e1a": 1}, "basketball": {"\u7bee\u7403": 1, "\u6211": 1, "\u7c43\u7403": 2}, "stripes": {"\u689d\u7d0b": 1, "\u662f": 1, "\u6c34\u5e73": 1, "\u7684": 1}, "healthy": {"\u770b\u6765": 1, "\u5f88": 3, "\u5065\u5eb7": 7, "\u5982\u6614": 1, "\u8eab\u4f53\u5065\u5eb7": 1}, "stranger": {"\u4e00\u4e2a": 1, "\u5c0d": 2, "\u4e0d\u719f": 1, "\u964c\u751f\u4eba": 2, "\u516c\u8f66\u4e0a": 1, ",": 1, "": 2, "\u8bf4": 1, "\u5916\u5730\u4eba": 1}, "pretended": {"\u5047\u88dd": 1, "\u662f": 2, "\u4e00\u540d": 1, "\u88dd\u4f5c": 1, "\u6c92\u6709": 1, "\u807d\u898b": 1, "\u5047\u88c5": 2, "\u542c\u4e0d\u89c1": 1}, "loan": {"\u5f97\u5230": 1, "\u8cb8\u6b3e": 1, "\u94f6\u884c\u8d37\u6b3e": 1}, "wear": {"\u7a7f": 9, "\u597d": 2, "": 1, "\u77e5\u9053": 1, "\u6211": 2, "\u6234": 1, "\u8981": 1}, "yes": {"\u662f": 2, "\u540c\u610f": 1, "\u4ec0\u4e48": 1, "\u8be5": 1, "\u597d": 1}, "times": {"\u53bb\u904e": 4, "\u5f88": 5, "\u591a\u6b21": 5, "\u4e09\u500d": 1, "\u6b21": 1, "\u3001": 1, "\u4e09\u6b21": 5, "\u8d5a": 1, "\u591a\u4e09\u500d": 1, "\u500d": 2}, "Tomorrow": {"\u660e\u5929": 11, "\u4f11\u606f\u65e5": 1, "\u5f97": 1, "\u65e5\u5b50": 1}, "aching": {"\u5168\u8eab": 1, "\u75bc": 1, "\u6d51\u8eab": 1, "\u9178\u75db": 1}, "sending": {"\u5bc4": 1, "\u7d66": 1, "\u4e00\u500b": 1, "\u822a\u7a7a": 1, "\u90f5\u4ef6": 1}, "public": {"\u7fd2\u6163": 4, "\u516c\u958b\u5834": 2, "\u5408": 4, "\u8b1b\u8a71": 1, "\u516c\u5171": 3, "\u5834\u5408": 2, "\u516c\u773e\u5834": 3, "\u8a71": 3, "\u5927\u5ead\u5e7f\u4f17": 1}, "lend": {"\u501f": 15, "": 3, "\u628a": 4, "\u7d66": 4, "\u53ef\u4ee5": 4, "\u80fd": 3, "\u6211\u4e9b": 1, "\u9700\u8981": 1, "\u6211": 1, "\u65e7": 1, "\u501f\u7ed9": 3, "\u4e00\u628a": 1, "\u4f60": 1}, "feel": {"\u611f\u53d7": 3, "\u611f\u89c9": 12, "\u8212\u670d": 2, "\u89c9\u5f97": 3, "\u597d\u591a": 4, "\u5982\u4f55": 2, "\u89ba": 1, "\u5f97": 2, "\u89ba\u5f97": 4, "\u6765": 1, "\u5b89\u6170": 1, "\u5f88": 1, "\u611f\u5230": 1, "\u4e0d\u60f3": 7, "\u611f\u89ba": 4, "\u4e4b\u524d": 1, "\u60f3": 1, "\u8b8a\u5f97": 1}, "accept": {"\u63a5\u53d7": 16, "\u6211\u5011": 1, "\u6211\u4eec": 1, "\u6e6f\u59c6\u6703": 1}, "note": {"\u7559": 2, "\u5f20": 1, "\u4fbf\u6761": 1, "\u4fbf\u689d": 1, "\u8fa6": 1, "\u516c": 1, "\u5b57": 1, "\u689d": 1}, "fridge": {"\u51b0\u7bb1": 3, "\u91cc": 2, "\u6ca1": 1, "\u5269\u4e0b": 1, "\u58de": 1}, "Maybe": {"\u4e5f\u8a31": 4, "\u53ef\u80fd": 10, "\u6709\u70b9": 1, "\u5927\u6982": 1, "\u9700\u8981": 1, "\u4ea4\u8c08": 1, "\u4e5f\u8bb8": 2, "\u5427": 1, "\u9053\u7406": 1, "\u62fc\u547d": 1, "\u6216\u8a31": 1, "\u6216\u8bb8": 1, "\u5f00": 1, "\u9664\u6389": 1}, "exams": {"\u4e0d\u60f3": 3, "\u6302\u79d1": 1, "\u8003\u8bd5": 2, "\u843d\u699c": 1}, "remedial": {"\u9700\u8981": 1, "\u4e0a": 1, "\u8865\u4e60\u73ed": 1}, "horse": {"\u522b": 1, "\u90a3\u4e48": 1, "\u8dbe\u9ad8\u6c14\u626c": 1, "\u99ac": 7, "\u5339\u99ac": 1, "\u997f\u864e\u6251\u7f8a": 1, "\u4f3c\u7684": 1, "\u4e0a\u9a6c": 1}, "explain": {"\u89e3\u91cb": 7, "\u8ddf": 4, "\u8aaa\u660e": 1, "\u89e3\u91ca": 8, "\u4e00\u4e0b": 3, "\u8aaa": 1, "\u660e": 1, "\u70ba": 2, "\u5411": 3, "\u6e05\u695a": 1, "\u5927": 1, "\u80fd": 1, "\u7ed9": 2, "\u542c": 1, "\u884c\u4e0d\u901a": 1}, "novel": {"\u8fd9\u90e8": 3, "\u5c0f\u8bf4": 9, "\u8bfb\u61c2": 3, "\u672c\u5c0f": 2, "\u8aaa": 5, "\u9069\u5408": 1, "\u5152\u7ae5": 1, "\u672c": 1, "\u6b63": 1, "\u81f4\u529b\u4e8e": 1, "\u4e00\u90e8": 1, "\u6240": 1, "\u65b0\u5c0f": 1, "\u5c0f": 2}, "difficult": {"\u5f88": 22, "\u96be": 20, "\u96e3": 17, "\u56f0\u96e3": 1, "\u8fd9\u4e2a": 1, "\u6765\u8bf4": 1, "\u4e00\u5b9a": 1, "\u90a3\u9ebc": 1, "\u8b93": 1, "\u4eba": 1, "\u96e3\u4ee5": 1, "\u7f6e\u4fe1": 1, "\u5f88\u56f0": 1}, "relaxed": {"\u4e0a\u500b": 1, "\u653e": 2, "\u8f15": 1, "\u9b06": 2}, "explode": {"\u89c9\u5f97": 1, "\u8981\u70b8": 1, "\u611f": 1, "\u899a": 1, "\u70b8": 1}, "repay": {"\u5fc5\u987b": 1, "\u507f\u8fd8\u503a\u52a1": 1}, "using": {"\u4f60\u4eec": 1, "\u8be5": 1, "\u517b\u6210": 1, "\u4f7f\u7528": 1, "\u7528": 3, "\u5728": 1}, "dictionaries": {"\u5b57\u5178": 2, "\u4e94\u672c": 1, "\u4ee5\u4e0a": 1}, "habit": {"\u4e60\u60ef": 3, "\u524d\u6709": 1, "\u7fd2\u6163": 2, "\u6709\u4e2a": 1, ",": 1, "\u65e9\u9910": 1}, "looks": {"\u597d\u50cf": 1, "\u5be6\u969b": 2, "\u770b": 15, "\u8d77\u4f86": 13, "\u975e\u5e38": 1, "\u50cf": 10, "\u770b\u8d77\u6765": 12, "\u5f88": 3, "\u95ee\u9898": 1, "\u770b\u4e0a\u53bb": 1, "\u9577": 1, "\u5f97": 1, "\u7684": 1, "": 2, "\u5730\u7403": 1, "\u770b\u6765": 1, "\u554a": 1, "\u770b\u4f86": 3, "\u5979": 1, "\u6309": 1}, "cramped": {"\u5c3d\u5feb": 1, "\u4ece": 1, "\u4e0d\u900f\u6c14": 1, "\u5c4b\u5b50\u91cc": 1}, "rarely": {"\u5f88\u5c11": 3, "\u7247": 1}, "mood": {"\u5fc3\u60c5": 1, "\u5f88": 2, "\u4e0d\u8010\u70e6": 1}, "dripping": {"\u6b63": 1, "\u6d41": 1, "\u7740": 1, "\u6c57": 1}, "ex": {"\u524d\u7537\u53cb": 2, "\u6ca1\u6709": 1, "\u524d\u592b": 1}, "illness": {"\u75c5": 2, "\u66fe\u7ecf": 1, "\u5f97": 1, "\u91cd\u75c5": 2, "\u8eab\u4f53": 1, "\u751f": 1}, "cured": {"\u7ed9": 1, "\u6cbb\u597d": 2, "\u764c\u75c7": 1}, "finally": {"\u6700\u7ec8": 4, "\u4e86": 5, "\u6b63\u786e": 1, "\u7ec8\u4e8e": 3, "": 2, "\u98db\u6a5f": 1, "\u7d42\u4e8e": 1, "\u7d42": 4, "\u65bc": 4, "\u5982": 1, "\u4ee5\u511f": 1, "\u6211": 1, "\u8aaa": 1}, "IBM": {"\u6210": 2, "IBM": 2, "\u603b\u88c1": 1, "\u7e3d": 1, "\u7d93\u7406": 1}, "sit": {"\u5750\u5728": 6, "\u5750\u4e0b": 7, "\u5750": 4}, "non": {"\u65e0\u70df": 1, "\u533a": 1, "\u4f60\u5011": 1, "\u975e\u5438": 1, "\u7159\u5340": 1}, "offended": {"\u884c\u70ba": 1, "\u5192\u72af": 2, "\u4e86": 2}, "meaningful": {"\u610f\u5473": 1, "\u6df1\u9577": 1, "\u5730": 1, "\u4e00\u773c": 1}, "souvenir": {"\u5c06": 1, "\u73af\u7ed5": 1, "\u4e2d": 1, "\u4e00\u4e2a": 1, "\u5f88\u597d": 1, "\u7eaa\u5ff5\u54c1": 2, "\u60f3\u8981": 1}, "boss": {"\u8001\u677f": 8, "\u4ecd": 1, "\u7576": 1, "\u8001": 6, "\u95c6": 7, "\u8ddf": 1, "\u5408\u5f97\u6765": 1, "\u4e0a\u53f8": 1, "\u88e1": 1, "\u554f": 1, "\u984c": 1}, "stupid": {"\u5f88\u8822": 3, "": 1, "\u50bb": 8, "\u771f\u662f\u592a": 1, "\u611a\u8822": 4, "\u4e00\u4e2a": 3, "\u7b28\u86cb": 1, "\u771f\u8822": 1, "\u6709\u70b9": 1, "\u771f\u50bb": 1, "\u633a\u8822": 1, "\u5f88\u50bb": 1, "\u4efb\u4f55\u4eba": 1, "\u50bb\u5b50": 1, "\u770b\u8d77": 1, "\u4f86": 1}, "Between": {"\u8fd9": 1, "\u6211": 2, "\u5c31": 3, "\u8ddf": 2, "\u53ea": 3, "\u8bf4": 1, "\u544a\u8bc9": 2, "\u4e00\u4e2a": 1, "\u4eba": 1, "": 1, "\u5979": 1, "\u7684": 1}, "Should": {"Tom": 2, "\u5e94\u8be5": 1, "\u5417": 6, "\u8be5": 1, "\u61c9": 2, "\u8a72": 5, "\u5427": 1, "\u9700\u8981": 1, "\u8fd9\u4ef6": 1, "\u4e8b": 1}, "forever": {"\u6c38\u9060": 3, "\u8a18\u4f4f": 1, "\u6c38\u8fdc": 1, "\u5730": 1, "\u5f7b\u5e95": 1, "\u65e0\u6cd5": 2, "\u957f\u751f\u4e0d\u6b7b": 2, "\u7576": 1, "\u5b88\u4f4f": 1, "\u7684\u8bdd": 1, "": 1}, "clown": {"\u5c0f\u4e11": 1, "\u4e2a": 1, "\u9b3c\u8138": 1}, "proposal": {"\u6709\u500b": 1, "\u63d0\u6848": 1, "\u62d2\u7edd": 1, "\u6bcf\u4e00\u9879": 1, "\u63d0\u8bae": 2, "\u5efa\u8b70": 9, "\u8003\u616e": 1, "\u5c0d": 1, "\u63d0\u8b70": 1, "\u4e0d\u5c51": 1, "\u4e00\u9867": 1, "\u770b\u4e0d\u51fa": 1, "\u65b9\u6cd5": 1, "\u5426\u6c7a": 1}, "scraped": {"\u522e\u4e0b": 1, "\u4e0a": 1, "\u6ce5\u5df4": 1}, "detective": {"\u4e2a": 1, "\u4fa6\u63a2": 1, "\u7a7a\u95f2": 1, "\u4fa6\u63a2\u5c0f\u8bf4": 2}, "flames": {"\u88ab": 1, "\u706b": 2, "\u541e\u566c": 1, "\u8d77": 1, "\u7740\u706b": 1}, "share": {"\u5171\u7528": 2, "\u5f35": 1, "\u5206\u4eab": 2, "\u540c\u4e00": 1, "\u9593": 1, "\u81e5\u623f": 1}, "coming": {"\u6b63": 1, "\u7576": 1, "\u5f9e": 1, "\u56de\u4f86": 1, "\u6642\u5019": 1, "\u6703\u4f86": 2, "\u4f86": 16, "\u9019\u5929": 1, "\u8981\u4f86": 1, "\u6703": 1, "\u8981\u6765": 1, "\u6765": 2, "\u4e00": 1, "\u8d77\u6765": 1, "\u8981": 1, "\u8981\u904e": 1}, "Take": {"\u597d": 3, "\u7231": 1, "\u62ff": 4, "\uff01": 1, "\u62ff\u8d70": 1, "\u5427": 2, "\u5e26": 1, "\u53ef\u4ee5": 1, "\u6162\u6162\u6765": 3, "\u52e4\u594b": 1, "": 2, "\u4f11\u606f": 1, "\u62cd": 1, "\u653e": 1, "\u5225": 1, "\u7dca\u5f35": 1}, "seminar": {"\u8fd9": 1, "\u7814\u7a76\u4f1a": 1, "\u600e\u4e48\u6837": 1}, "watch": {"\u624b\u8868": 9, "\u9019": 4, "\u624b": 13, "\u9336": 18, "\u4e00\u652f": 3, "\u770b": 3, "\u88e1": 1, "\u64c1\u6709": 1, "\u652f": 2, "\u53ea": 2, "\u8868": 5, "\u8868\u4e0a": 1, "\u4e00\u53ea": 1, "\u6211": 1}, "Everyone": {"\u5927\u5bb6": 6, "\u90fd": 43, "\u6bcf\u4e2a": 10, "\u4eba": 28, "\u6240\u6709\u4eba": 2, "\u6bcf\u500b": 15, "": 3}, "who": {"\u662f": 12, "\u7684": 41, "\u8ab0": 14, "\u8c01": 11, "\u9019\u4e8b": 1, "": 3, "\u4eba": 6, "\u7531": 1, "\u6700": 2, "\u5f97\u610f": 2, "\u90a3\u4e2a": 1, "\u4e0d": 1, "\u77e5\u9053": 1}, "eyes": {"\u773c\u775b": 25, "\u81ea\u5df1": 1, "\u775c": 3, "\u8457": 1, "\u773c": 3, "\u95ed\u4e0a": 1}, "photo": {"\u5f35\u6e6f\u59c6": 1, "\u7167\u7247": 6, "\u628a": 3, "\u767c\u7d66": 1, "\u7ed9": 1, "\u5f20": 1, "\u4e0a": 1}, "tool": {"\u4e00\u4e2a": 1, "\u7279\u6b8a": 1, "\u5de5\u5177": 1, "\u6765": 1, "\u8fd9\u4ef6": 1, "\u4e8b": 1}, "captain": {"\u8981": 1, "\u4f5c\u968a": 1, "\u9577": 1, "\u6210\u70ba": 1, "\u968a\u9577": 2, "\u5718\u968a": 1, "\u9009": 1, "\u4e3a": 1, "\u961f\u957f": 1, "\u7684": 1}, "policy": {"\u5df2\u7d93": 1, "\u653f\u7b56": 1, "\u7684": 1}, "great": {"\u7684": 8, "\u771f\u662f": 4, "\u592a\u597d\u4e86": 2, "\u7f8e\u597d": 1, "\u597d": 5, "\u500b": 2, "\uff01": 1, "\u5927\u4e8b": 1, "\u5bf9": 1, "\u5f88": 2, "\u5b9e\u7528": 1, "\u4f1f\u5927": 1}, "boxes": {"\u7bb1\u5b50": 3, "\u7531": 1, "\u4e00\u6b21": 1, "\u642c": 1}, "plastic": {"\u5851\u6599": 1, "\u88fd": 2, "\u6210": 2, "\u7528": 1, "\u5851": 1, "\u81a0": 1}, "theory": {"\u7406\u8bba": 5, "\u96be\u61c2": 2, "": 1, "\u7406\u8ad6": 3, "\u4e2d": 1, "\u554f\u984c": 1}, "shine": {"\u98a8\u96e8\u7121\u963b": 1, "\u90fd": 1, "\u5728": 1}, "revenge": {"\u5831\u4ec7": 1}, "elaborate": {"\u7cbe\u5fc3": 1, "\u9019\u500b": 1}, "preparations": {"\u7c4c\u5099": 2, "\u6b63\u5728": 1, "\u4e00\u6b21": 1}, "patient": {"\u75c5\u4eba": 6, "\u6709": 5, "\u8010\u5fc3": 8, "\u968f\u65f6": 1, "\u4f1a": 1, "\u7b49": 1, "\u7740": 1}, "ecology": {"\u5f00\u59cb": 1, "\u751f\u6001\u5b66": 1, "": 1, "\u4ed6": 1, "\u8a31\u591a": 1, "\u95dc": 1, "\u65bc": 1, "\u751f\u614b": 1, "\u74b0\u5883": 1}, "interested": {"\u5bf9": 13, "\u611f\u5174\u8da3": 7, "\u5c0d": 8, "\u8208\u8da3": 9, "\u611f": 1, "\u4e0d\u611f\u5174\u8da3": 1, "\u6709": 5, "\u5f88\u611f": 1, "\u5f88\u611f\u5174\u8da3": 1, "\u611f\u8208\u8da3": 1}, "awful": {"": 1, ",": 1, "\u505a": 1, "\u4e86": 1, "\u770b": 1, "\u7cdf\u900f\u4e86": 1, "\u5f88": 1, "\u7cdf\u7cd5": 1}, "3": {"\u4e09\u500b": 1, "3": 6}, "stone": {"\u77f3\u5b50": 1, "\u77f3\u5934": 3, "\u671d\u7740": 1, "\u6253\u5411": 1, "\u77f3\u982d": 3, "\u9019\u584a": 1}, "Someone": {"\u6709\u4eba": 18, "\u9019\u4ef6": 1, "\u5728": 1, "\u904e": 1, "\u76d1\u89c6": 1, "\u6253\u96fb\u8a71\u4f86": 1}, "encouraged": {"\u9f13\u52b1": 2, "\u5b66\u6cd5\u8bed": 1, "\u88ab": 1, "\u9f13\u52f5": 1, "\u60f3\u50cf\u529b": 1, "\u7740": 1}, "Sometimes": {"\u6709\u65f6\u5019": 4, ",": 3, "\u7684": 1, "\u5e76": 1, "\u5e2e\u4e0d\u4e86": 1, "\u6709": 2, "\u6642\u5019": 2, "\u662f": 1, "\u5076\u5c14": 1, "\u4f1a": 1, "\u78b0\u5230": 1}, "himself": {"\u4e00\u4e2a": 5, "\u4eba": 4, "\u72ec\u81ea": 4, "\u7368\u81ea": 4, "\u81ea\u5df1": 13, "\u6ca1\u6cd5": 1, "\u6c64\u59c6": 1, "\u6ca1": 1, "\u5e2e\u52a9": 1, "\u505a\u5230": 1, "\u751f\u6d3b": 1, "\u4eba\u4f1a": 1, "\u4e0d\u5f97\u4e0d": 1}, "2020": {"2020": 1, "\u5e74": 1, "\u4ee5\u524d": 1, "\u7684": 1, "\u4eba\u53e3": 1}, "population": {"\u57ce\u5e02": 1, "\u4eba\u53e3": 9, "\u6709": 1, "\u4eba\u53e3\u4f17\u591a": 1, "\u591a": 1}, "upstairs": {"\u6a13\u4e0a": 2, "\u5de6\u908a": 1, "\u6709\u4eba": 1, "\u770b\u898b": 1, "\u4e0a\u6a13": 2, "\u62ff\u5230": 1}, "undamaged": {"\u8d27\u7269": 1, "\u6beb\u65e0": 1, "\u635f\u574f": 1, "\u5730": 1, "\u5230\u8fbe": 1}, "Generally": {"\u4e00\u822c\u800c\u8a00": 1, "\u4e00\u822c": 1, "\u4f86": 1, "\u8aaa": 1, "\u6bd4": 1}, "shy": {"\u65e5\u672c": 1, "\u4eba": 1, "\u5bb3\u7f9e": 5, "\u9766\u8146": 1}, "employed": {"\u50f1": 1, "\u4e00\u500b": 1, "\u79c1\u4eba": 1, "\u5075\u63a2": 1, "\u770b\u5b88": 1}, "mistaken": {"\u5c07": 1, "\u8a8d\u6210": 1, "\u5225\u4eba": 1, "\u88ab\u8aa4": 1, "\u8a8d\u70ba": 2, "\u9519": 1}, "cousin": {"\u6211": 1, "\u8868\u5f1f": 1, "\u548c": 1}, "chair": {"\u6905\u5b50": 12, "\u628a": 3, "\u4e00\u628a": 1, "\u5f88\u8f7b": 1}, "10.00": {"\u53ea\u8981": 1, "\u5341\u5143": 1}, "rather": {"\u5be7\u53ef": 2, "\u4e0d\u8981": 2, "\u53d1\u80b2": 1, "\u53d6\u6085": 1, "\u66f4": 2, "\u9858\u610f": 1, "\u5be7\u9858": 1, "\u9019\u88e1": 1, "\u800c": 1, "\u4e0d": 1, "\u6bd4\u8d77": 1, "\u51fa\u95e8": 1, "": 1, "\u6211": 1, "\u5c0d": 2, "\u4f86\u8aaa": 1, "\u76f8\u7576": 1, "\u5be7\u9858\u5f85": 1, "\u55ae\u7368": 1, "\u613f\u610f": 1, "\u8ddf\u7740": 1}, "french": {"\u70b8\u85af": 1, "\u689d": 1}, "2003": {"\u81ea\u4ece": 1, "2003": 1, "\u5e74": 1}, "news": {"\u9019\u500b": 5, "\u6d88\u606f": 18, "\u542c\u5230": 5, "\u8fd9\u4e2a": 7, "\u65b0\u805e": 2, "\u90a3\u4e2a": 2, "\u65b0\u95fb": 1, "\u77e5\u9053": 1, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u820a": 1, "\u805e": 1, "\u5f53": 1}, "way": {"\u8def\u4e0a": 10, "\u8d70": 2, "\u8def": 6, "\u65b9\u5f0f": 11, "\u8fd9": 1, "\u5c31": 1, "\u4e0a\u8def": 1, "\u8001\u670b\u53cb": 1, "\u8fa6\u6cd5": 3, "\u64cb": 1, "\u53e3\u6c23": 1, "\u51fa\u8def": 1, "\u64cb\u4f4f": 2, "\u8d70\u9032": 1, "\u6b63\u5728": 1, "\u9019\u91cc": 1, "\u4e00": 1, "\u70ba": 1, "\u53bb": 2, "\u6309": 1, "\u529e\u6cd5": 1}, "crazy": {"\u70ba": 1, "\u760b\u72c2": 2, "\u4e3a": 1, "\u7740\u8ff7": 1, "\u75af": 5, "\u5462": 2, "\u5feb": 2, "\u760b": 4, "\u6765": 1, "\u771f\u662f": 1, "\u53d1\u75af": 2, "\u89ba\u5f97": 3, "\u760b\u8001": 1, "\u982d": 1}, "hotels": {"\u5f88\u591a": 1, "\u65c5\u9986": 1}, "snowing": {"\u96ea\u505c\u4e86": 2, "\u7576": 1, "\u4f86": 1, "\u6642": 3, "": 2, "\u5929\u6b63": 3, "\u96ea": 1, "\u4e0b": 1, "\u4e00\u6574\u591c": 1}, "physician": {"\u662f": 1, "\u6267\u4e1a": 1, "\u533b\u5e08": 1}, "wept": {"\u4e00": 1, "\u6574\u665a": 1, "\u54ed": 1}, "glasses": {"\u773c\u93e1": 7, "\u770b\u4e0d\u5230": 2, "\u6234\u773c\u955c": 1, "\u6ca1": 2, "\u5e26": 1, "\u773c\u955c": 4, "\u6234\u8457": 1, "\u898b": 1, "\u66fe": 1, "\u6458\u4e0b": 1}, "spoke": {"\u8ac7\u5230": 1, "\u90a3\u500b": 1, "\u8bf4": 4, "\u904e": 1, "\u65f6\u5019": 1, "": 1, "\u8111": 1, "\u51fa": 1, "\u8bb2": 1, "\u8fd9": 1, "\u548c": 2, "\u8bf4\u8bdd": 1, "\u88e1": 1, "\u4ea4\u6d41": 1, "\u4e00\u4e2a": 1}, "pretty": {"\u5f88": 1, "\u5a36": 2, "\u6f02\u4eae": 9, "\u5f88\u6f02\u4eae": 5, "\u771f": 2, "\u53ef\u7231": 1, "\u8aaa": 2, "\u4e0d\u5982": 1, "\u53ef\u611b": 1, "\u633a": 2, "\u4ed6": 1, "\u59d1\u5a18": 1, "\u76f8\u5f53": 1, "\u4f46": 1, "\u5f00\u4f1a": 1, "\u4e8b\u513f": 1}, "partially": {"\u90e8\u5206": 1, "\u6b63\u786e": 1}, "herself": {"\u81ea\u5df1": 9, "\u5b88\u8457": 1, "\u7368\u81ea": 3, "\u7d66": 1, "\u4e00\u9593": 1, "\u7368": 1, "\u81ea\u5ea6": 1}, "Few": {"\u5e7e\u4e4e": 1, "\u6c92\u6709": 1, "\u6240": 1, "\u8a71": 2, "\u5f88\u5c11": 5, "\u6709\u4eba": 1, "\u6709\u5b78": 1, "\u751f\u80fd": 1}, "Earthquakes": {"\u5730\u9707": 1, "\u983b\u7e41": 1, "\u5730": 1, "\u8972\u64ca": 1}, "factory": {"\u5de5\u5ee0": 2, "\u5de5\u5382": 5, "\u4e00\u4e2a": 1}, "jelly": {"\u8461\u8404": 1, "\u5473": 1, "\u7684": 2, "\u679c\u51cd": 1}, "grape": {"\u662f": 1, "\u9019": 1, ",": 1, "": 1}, "rope": {"\u7e69\u5b50": 5, "\u7ef3\u5b50": 3, "\u53eb": 1, "\u677e\u5f00": 1}, "doll": {"\u4e00\u500b": 2, "\u5a03\u5a03": 4, "\u6709\u4e2a": 1, "\u6d0b\u5a03\u5a03": 3, "\u9019\u500b": 1}, "A": {"\u4e00\u500b": 17, "\u7684": 23, "\u4e00\u4e2a": 6, "\u5bf9": 1, "\u4e00": 1, "\u4eba": 1, "\u662f": 1, "\u4e00\u652f": 1}, "ball": {"\u7403": 8, "\u628a": 5, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u5168\u65b0": 1, "\u7403\u985e": 1, "\u4e00\u9846": 2}, "floating": {"\u6b63": 1, "\u9806\u6d41\u800c\u4e0b": 1, "\u6d6e": 1, "\u6c34\u9762": 1}, "Olympics": {"\u5965\u6797\u5339\u514b": 1, "\u5965\u8fd0\u4f1a": 1, "\u5f00\u5e55\u5f0f": 1}, "origins": {"\u8d77\u6e90": 2}, "hamburgers": {"\u5403": 1, "\u81a9": 1, "\u6f22\u5821": 4, "\u5c0d": 1, "\u611f\u5230": 1, "\u53ad\u7169": 2, "\u5305": 1}, "speaker": {"\u8005": 4, "\u6e6f\u59c6\u65e5\u8a9e": 1}, "four": {"\u56db\u5e74": 2, "\u4e58\u4ee5": 2, "\u56db\u9ede": 1, "\u8981": 1, "\u56db\u70b9": 1, "\u5230\u8fbe": 1, "\u6211\u5bb6": 1, "\u56db\u500b": 1, "4": 2, "\u4e00\u4e2a\u6708": 1, "\u4e09\u56db\u6b21": 1}, "gain": {"\u901a\u8fc7": 1, "\u8bcb\u6bc1": 1, ",": 1, "": 2, "\u4e0a\u5927\u5b78": 1, "\u7684": 1, "\u4ed8\u51fa": 1, "\u5730": 1, "\u8d85\u904e": 1, "\u5c0d\u65b9": 1, "\u7372\u5f97": 1, "\u512a\u52e2": 1}, "others": {"\u522b\u4eba": 6, "\u53eb": 1, "\u5bf9": 3, "\u5225\u4eba": 8, "\u5176\u4ed6\u4eba": 5, "\u548c\u5584": 1, "": 2, "\u770b\u4e0d\u8d77": 1, "\u4ed6\u4eba": 2, "\u76e1\u529b": 1}, "boyfriend": {"\u7537\u670b\u53cb": 6, "\u7b2c\u4e00\u4e2a": 1, "\uff1f": 1}, "Children": {"\u5b69\u5b50": 11, "\u4eec": 5, "\u5011": 4, "\u6478\u9ed1": 1, "\u5927\u91cf": 1, "\u7761\u7720": 1, "\u5c0f\u5b69": 1, "\u513f\u7ae5": 1}, "loving": {"\u5173\u7231": 1, "\u6c92": 1, "\u611b": 1, "\u70ed\u7231": 1}, "army": {"\u519b\u961f": 1, "\u5f3a\u8feb": 1, "\u8f9e\u804c": 1, "\u52a0\u5165": 2, "\u9678\u8ecd": 1}, "twenties": {"\u53ea\u662f": 1, "\u4e8c\u5341": 1, "\u5e7e\u6b72": 1, "\u770b\u4e0a\u53bb": 1, "\u4ed6": 1, "\u8fd8": 1, "\u4e0d\u5230": 1}, "begged": {"\u6c42": 2, "\u65e9\u70b9": 1, "\u7d66": 1}, "deciding": {"\u89c9\u5f97": 1, "\u51b3\u5b9a": 1, "\u4e00\u4e2a": 1}, "which": {"\u54ea": 4, "": 4, "\u8ba9": 1, "\u7136\u540e": 1, "\u5f88": 1, "\u8a8d\u8b58": 1, "\u90a3\u500b": 1, "\u662f": 1, "\u597d\u4eba": 1, "\u957f\u547d": 1, "\u53e5": 1, "\u5047": 1, "\u8001\u8bdd": 1}, "Kissing": {"\u4eb2\u543b": 2, "\u4e00\u4e2a": 2, "\u5c31": 2, "\u50cf": 2, "\u5728": 2, "\u8214": 2, "\u70df\u7070\u7f38": 2}, "smokes": {"\u62bd\u70df": 2, "\u62bd": 1, "\u83f8": 1, "\u559d\u9152": 2}, "Sorry": {"\u5c0d": 6, "\u4e0d\u8d77": 6, "\u4f86": 1, "": 1, "\u7684": 1, "\u6642\u9593": 1, "\u4f60": 1, "\u807d": 1, "\u8aaa": 1, "\u4e0d\u597d\u610f\u601d": 1}, "credit": {"\u4e0d": 1, "\u7528": 2, "\u4fe1\u7528\u5361": 3, "\u54ea\u4e9b": 1}, "imports": {"\u9032\u53e3": 2, "\u539f\u6599": 2, "\u4f9d\u8cf4": 1}, "various": {"\u5404\u7a2e": 1, "\u4e0d\u540c": 2}, "major": {"\u5c07": 1, "\u4e3b\u4fee": 4, "\u6cd5\u6587": 1, "\u540e": 1, "\u6642": 1, "\u9996": 1, "\u66f2\u5b50": 1, "\u5927\u8c03": 1}, "directions": {"\u56db\u5468": 1, "\u4f46": 1, "\u5411": 1, "\u4e00\u500b": 1, "\u554f\u8def": 1}, "simple": {"\u7c21\u55ae": 3, "\u6734\u7d20": 1, "\u7c21\u5355": 1, "\u6c92\u6709": 1, "\u90a3\u9ebc": 1, "\u7b80\u5355": 3}, "worrying": {"\u5f88": 1, "\u62c5\u5fc3": 3, "\u64d4\u5fc3": 1, "\u6c92": 1, "\u6709\u7528": 1}, "daughter": {"\u5973\u513f": 8, "\u5973\u5152": 18, "Tom": 5, "": 2, "\u4ed6": 1, "\u4e09\u6b72": 1, "\u6709\u500b": 1, "\u5c81": 1}, "older": {"\u5e74\u9f61": 1, "\u8001": 3, "\u5e74\u7d00": 2, "\u5927": 10, "\u5169\u6b72": 2, "\u4e09\u5c81": 3, "\u5f97": 1, "\u4e00\u6a21\u4e00\u6837": 1, "\u59d0\u59d0": 1, "\u5927\u4e09": 1}, "few": {"\u8bf4": 1, "\u51e0\u5206\u949f": 5, "\u5be1\u6b32": 1, "\u4e00\u4e9b": 5, "\u5e7e\u500b": 3, "\u540e\u540e": 1, "\u5230\u8fbe": 1, "\u88e1": 1, "\u4e4b": 1, "\u51e0\u4e2a": 5, "\u4ec0\u9ebc": 1, "\u56f0\u4f4f": 1, "\u80fd": 1, "\u4e0d\u80fd": 1, "\u4f46\u662f": 1, "\u8bf4\u5f97\u597d": 1, "\u6709\u4e9b": 1, "\u6ca1": 1, "\u5c0f\u5b69\u5b50": 1}, "caged": {"\u7c60\u5b50": 1, "\u88e1": 1, "\u87cb\u87c0": 2, "\u5f97": 1, "\u91ce\u751f": 1}, "eats": {"\u5403": 9, "\u5e7e": 1, "\u4e4e": 1, "\u53ea": 1}, "trousers": {"\u4e24\u6761": 1, "\u88e4\u5b50": 1, "\u90fd": 1, "\u8932\u5b50": 1}, "hoarse": {"\u5168\u90fd": 1, "\u53eb": 1, "\u5230": 1, "\u6c99": 1, "\u555e": 1}, "easygoing": {"\u770b\u4f86": 1, "\u96a8": 1, "\u548c": 1}, "Coffee": {"\u5496\u5561": 1, "\u5c07": 1, "\u9910": 1, "\u4f9b\u61c9": 1}, "served": {"\u5728": 2, "\u65e9\u996d": 1, "\u4f55\u65f6\u4f55\u5730": 1, "\u7528": 1}, "ripped": {"\u88ab": 1, "\u6572\u7af9\u6760": 1, "\u626f\u6389": 1, "\u4e86": 2, "\u81ea\u5df1": 1, "\u7834\u6d1e": 1, "\u725b\u4ed4\u88e4": 1}, "puts": {"\u6bcf\u9031": 1, "\u5e6b": 1, "\u8eca\u5b50": 1, "\u52a0": 1, "\u6cb9": 1}, "cuter": {"\u53ef\u7231": 1}, "writing": {"\u6b63\u5728": 4, "\u5beb": 7, "\u5199": 5, "\u817b": 1, "\u5728": 5, "\u7ed9": 4, "\u5199\u4fe1": 3, "\u5fd9\u4e8e": 1, "\u5beb\u4fe1": 4, "\u6b63": 1, "\u597d\u53cb": 1, "\u957f\u4fe1": 1, "\u5b8c\u4fe1": 1, "\u5199\u8fc7\u4fe1": 1}, "Learning": {"\u5b66\u6cd5\u8bed": 2, "\u4e0d\u96be": 2, "\u5b78\u7fd2": 2, "\u5916\u8a9e": 1, "\u56f0\u96e3": 1, "\u8f9b\u82e6": 1}, "anytime": {"\u4ec0\u4e48": 2, "\u65f6\u5019": 2, "\u6253\u7ed9": 1, "\u5c31": 1, "\u96a8\u6642": 2, "\u968f\u65f6": 1}, "burglar": {"\u5165\u5ba4": 1, "\u76d7\u7a83\u8005": 1, "\u95ef\u5165": 1, "\u8cca": 4, "\u7aca": 1, "\u95d6\u9032": 1, "\u5c0f\u5077": 1}, "fork": {"\u628a": 1, "\u53c9\u5b50": 1}, "dirty": {"\u9ad2": 4, "\u5f88\u810f": 1, "\u4e00\u6761": 1, "\u810f": 1, "\u522b": 1, "\u810f\u624b": 1, "\u73bb\u7483": 1, "\u628a": 1, "\u5f04": 1}, "insist": {"\u575a\u6301": 1, "\u8ba9": 1, "\u8d70": 1}, "scarcely": {"\u51e0\u4e4e": 2, "\u4e0d": 1, "\u6ca1": 1, "\u5269\u4e0b": 1, "\u5f88": 1, "\u96be": 1}, "borrow": {"\u501f\u652f": 1, "\u5411": 1, "\u501f": 11, "\u501f\u7528": 2, "\u4e00\u4e0b": 4, "\u5417": 2}, "suppose": {"\u731c\u60f3": 3, "\u60a8": 2, "\u8ba4\u4e3a": 2, "\u60f3": 3, "\u5230": 1, "\u89ba\u5f97": 1, "\u6bd4\u8f83": 1}, "convenient": {"\u65b9\u4fbf": 3, "\u5f97": 1, "\u591a": 1, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u662f": 1}, "fish": {"\u9b5a": 11, "\u9c7c": 8, "\u91e3": 1, "\u4e09\u689d": 1, "\u770b\u7740": 2, "\u904e\u53bb": 1, "\u5f88\u591a": 1, "\u5403": 1, "3": 1, "\u6761\u9c7c": 1}, "pants": {"\u88e4\u5b50": 3, "\u8932\u5b50": 3, "\u7a7f": 2, "\u6ca1": 1}, "seventeenth": {"\u8a31\u591a": 1, "\u90e8\u4efd": 1, "\u5341\u4e03": 1, "\u4e16\u7d00\u6642": 1, "17": 1, "\u5c81": 1}, "century": {"\u88ab": 3, "\u4e00\u767e\u5e74": 3, "\u53eb\u505a": 2, "\u4e16\u7eaa": 5, "\u79f0\u4e3a": 1}, "destroyed": {"\u6467\u6bc0": 2, "\u9019\u500b": 1, "\u6bc0": 1, "\u65bc": 1, "\u6467\u6bc1": 1, "\u5f37\u70c8": 1}, "arguing": {"\u4e3a": 1, "\u7ec6\u679d\u672b\u8282": 1, "\u4e89\u5435": 1, "\u800c": 1, "\u8fdb\u5165": 1, "\u6b63\u9898": 1, "\u5462": 1}, "stops": {"\u53ea\u8981": 1, "\u4e00\u505c": 1, "\u505c": 6, "\u7576\u96e8": 1, "": 2, "\u73ed": 1, "\u6bcf\u7ad9": 1, "\u7b49": 1, "\u53bb": 1}, "raining": {"\u96e8": 5, "\u4e0d\u505c": 1, "\u6b63\u5728": 1, "\u4e0b\u96e8": 10, "\u6642": 1, "": 2, "\u5929\u6b63": 1, "\u96e8\u6703": 1, "\u6211\u4eec": 1}, "listens": {"\u5750\u5728": 1, "\u65c1\u8fb9": 1, "\u542c": 1}, "bench": {"\u9577\u6905": 5, "\u4e0a": 9, "\u957f\u6905": 2, "\u5f20": 1, "\u957f\u51f3": 1, "\u9577": 1, "\u51f3": 1}, "baked": {"\u70e4": 3, "\u4e86": 2}, "pies": {"\u6d3e": 1}, "seven": {"\u4e03\u9ede": 4, "7": 6, "\u70b9": 6, "\u4e03\u9ede\u9418": 4, "\u4e03\u5e74": 1, "\u524d\u4f86": 1, "\u56de\u5230": 1}, "floor": {"\u5730\u4e0a": 6, "\u5730\u677f": 4, "\u8eba": 1, "\u6a13": 2, "\u5730": 2, "\u5728": 1}, "Pick": {"\u64bf": 1, "\u8d77": 1, "\u9019": 1, "\u63a5": 1, "\u4e00\u4e0b": 1, "\u7535\u8bdd": 1}, "aspirin": {"\u963f\u53f8\u5339\u6797": 1, "\u7528": 1}, "dare": {"\u60a8": 1, "\u600e\u4e48": 3, "\u6562": 3, "\u8fd9\u6837": 2, "\u90a3\u4e48": 1, "\u80fd": 1, "\u9019\u9ebc": 1, "\u5c0d": 1, "\u8a71": 1, "\u4e0d\u6562": 1, "\u9732\u9762": 1}, "killed": {"\u6630": 1, "\u6bba": 6, "\u6e6f": 1, "\u59c6": 1, "\u6c92\u4eba\u6b7b": 1, "\u4e2d": 1, "\u8b93": 1, "\u67e5\u51fa": 1, "\u4f86": 1, "\u81ea\u6740": 1, "\u6b7b": 1}, "privacy": {"\u5c0a\u91cd": 1, "\u5225\u4eba": 1, "\u79c1": 1, "\u96b1": 1}, "cabin": {"\u5728": 1, "\u5c0f": 1, "\u5c4b\u91cc": 1, "\u7684": 1, "\u4e00\u4e2a": 1}, "unique": {"\u4e00\u7a2e": 1, "\u7368\u7279": 1, "\u6c23\u5473": 1}, "facing": {"\u60f3\u8981": 1, "\u4e00\u9593": 1, "\u9762": 1, "\u5c0d": 1}, "screwball": {"\u4e00\u500b": 1, "\u602a\u4eba": 1}, "emergency": {"\u90a3": 1, "\u7d27\u6025\u60c5\u51b5": 2, "\u7dca": 1, "\u6025\u60c5": 1, "\u6cc1\u4e0b": 1, "\u6253": 1, "\u4e0b": 1, "\u7dca\u6025": 1}, "honey": {"\u51fa": 1, "\u4e8b": 1, "": 1}, "bicycle": {"\u81ea\u884c\u8f66": 15, "\u81ea\u884c": 13, "\u8eca": 15, "\u8173\u8e0f\u8eca": 6, "\u9a91": 1, "\u8173": 2, "\u8e0f": 2, "\u9a0e": 2, "\u8f1b": 3, "\u4e00\u8f1b": 2, "\u4f60": 1, "\u501f": 1, "\u4e00\u8f86": 1, "\u9019\u8f1b": 1}, "disaster": {"\u542c": 1, "\u8d77\u6765": 1, "\u597d\u50cf": 1, "\u8fd9\u573a": 1, "\u707e\u96be": 1, "\u7f6a\u9b41\u7978\u9996": 1}, "jacket": {"\u5916\u8863": 1, "\u91cc": 1, "\u593e\u514b": 2, "\u90a3\u4ef6": 1, "\u8a66\u7a7f": 1, "\u9019\u4ef6": 1, "\u5916\u5957": 4, "\u7a7f": 2}, "sweater": {"\u4e00\u4ef6": 6, "\u5957\u886b": 1, "\u9019\u4ef6": 1, "\u6bdb\u8863": 7, "\u70ba": 2, "": 1}, "Fancy": {"\u60f3\u4e0d\u5230": 1, "\u6703": 1, "\u9047\u898b": 1}, "Quite": {"\u4e0d\u5c11": 1, "\u5f88": 1, "\u5e78\u8fd0\u5730": 1, "\u6211": 1}, "Americans": {"\u7f8e\u570b": 3, "\u4eba": 5, "\u7f8e\u56fd": 2, "\u4f3c\u4e4e": 1}, "sushi": {"\u58fd\u53f8": 5, "\u5c1d\u5c1d": 1, "\u5bff\u53f8": 4, "\u5403": 2, "\u4f1a": 1}, "singing": {"\u5531\u6b4c": 14, "\u597d\u542c": 1, "\u542c\u89c1": 2, "": 1, "\u9664": 1, "\u6b4c\u5531": 1}, "picky": {"\u6311\u5254": 1, ",": 1, "\u6211": 1}, "Liz": {"\u4e86\u5229\u8332": 1}, "direct": {"\u8bf7\u95ee": 1, "\u76f4\u98de": 1}, "Sydney": {"\u6089\u5c3c": 2, "\u96ea\u68a8": 2, "\u5f88\u8fdc": 1}, "flights": {"\u822a\u73ed": 2, "\u4e00\u4e9b": 1, "\u7531": 1, "\u65bc": 1, "\u5ef6\u8aa4": 1}, "essentially": {"\u672c\u8cea": 1, "\u4e0a": 1, "\u4e00\u500b": 1}, "nerve": {"\u6709": 1, "\u81bd\u91cf": 1, "\u51fa\u4f86": 1}, "vegetables": {"\u83dc": 1, "\u852c\u83dc": 11, "\u600e\u6837": 1, "\u8ba9": 1}, "started": {"\u5f00\u59cb": 11, "\u5929": 1, "\u958b\u59cb": 12, "\u65e9\u5c31": 1, "\u6ca1\u6cd5": 1, "\u53d1\u52a8": 1, "\u5fc3\u60c5": 1, "\u4eba": 1}, "Animals": {"\u52a8\u7269": 1, "\u52d5\u7269": 1, "\u96e2\u4e0d\u958b": 1, "\u7a7a\u6c23": 1}, "kept": {"\u7ee7\u7eed": 5, "\u6574\u591c": 1, "\u4e00\u76f4": 2, "\u4f46": 1, "\u9075\u5b88": 1, "\u8afe\u8a00": 2, "\u7e7c\u7e8c": 3, "\u4f46\u662f": 1, "\u8b93": 3, "\u4e0d\u505c": 1, "\u4fe1\u5b88": 1, "\u9023\u7e8c": 1}, "played": {"\u653e\u5b66": 2, "\u6253": 3, "\u6574\u5929": 1, "\u73a9": 4, "\u63a5\u7403": 1}, "succeeded": {"\u6210\u529f": 5, "\u4e86": 4, "\u5730": 3, "\u4ece": 1, "\u53e3\u4e2d": 1, "\u5f97\u77e5": 1, "\u4ed6": 1, "\u5c31": 1, "\u7814\u7a76": 1, "\u4e0a": 1, "\u53ef\u80fd": 1, "\u5df2\u7ecf": 1, "\u5f97\u5230": 1, "\u8d62\u5f97": 1}, "overhead": {"\u4e00\u67b6": 1, "\u76f4\u5347\u98de\u673a": 1, "\u5934\u9876": 1}, "helicopter": {"\u5728": 1, "\u76f4\u5347": 1, "\u6a5f\u4e0a": 1, "\u5411": 1, "\u746a\u9e97\u63ee": 1, "\u624b": 1}, "wrap": {"\u628a": 1, "\u5305\u88dd": 2, "\u5f97": 1, "\u50cf": 1, "\u5305\u8d77": 1, "\u4f86": 1}, "fifth": {"\u4e0b\u4e94": 1, "\u6a13": 3, "\u642d\u4e58": 1, "\u5230": 1, "\u4e94": 2}, "studies": {"\u5b66\u4e60": 4, "\u5b66": 2, "\u4ed6": 1, "\u908a": 1, "\u97f3": 1, "\u6a02\u908a": 1, "\u5538": 1, "\u66f8": 1, "\u7528\u529f": 1, "\u8b80\u66f8": 1, "\u52aa\u529b\u5b66\u4e60": 1, "\u4e5f": 2, "\u5b78": 1, "\u6c49\u8bed": 1}, "watched": {"\u770b": 6, "\u90e8": 1, "\u5f88\u68d2": 1, "Tom": 1, "\u770b\u8457": 1, "\u770b\u7740": 1, "\u8fd9": 1, "\u73a9\u800d": 1}, "In": {"\u5728": 11, "\u5927\u591a\u6570": 1, "\u4e0b": 1, "\u5f88\u591a": 1, "\u4ece": 1, "\u67d0\u79cd\u610f\u4e49": 1, "\u7e3d\u662f": 1, "\u5beb\u4f5c": 1, "": 2}, "U.S.": {"\u7f8e\u56fd": 1, "": 2, "\u4eba\u80fd": 1, "\u5728": 1, "\u5341\u516b\u5c81": 1}, "participated": {"\u53c2\u52a0": 3, "\u6599\u7406": 1, "\u7ade\u8d5b": 1, "\u5e76\u5f97": 1, "\u7b2c\u4e00\u540d": 1}, "debate": {"\u8fa9\u8bba": 1}, "sting": {"\u88ab": 1, "\u86f0\u4e86": 1, "\u4e00\u4e0b": 1}, "bee": {"\u871c\u8702": 2, "\u5730": 1, "\u5fd9\u788c": 1}, "obeyed": {"\u670d\u4ece": 1, "\u4e86": 1}, "orders": {"\u547d\u4ee4": 3}, "20": {"20": 6, "\u4e00": 1, "\u73ed\u8f66": 1}, "cannot": {"\u505a\u4e0d\u4e86": 1, "\u4e8b": 1, "\u96e2": 1, "\u4e0d\u958b": 1, "\u4e0d": 6, "\u53ef\u80fd": 3, "\u90a3\u7a2e": 1, "\u4e0d\u80fd": 1, "\u8ba9": 1, "\u73fe\u5728": 1, "\u5c31": 1, "\u6240\u4ee5": 1, "\u4ed6": 1, "\u73b0\u5728": 1, "\u90fd": 1, "": 1, "\u6211": 1}, "Pass": {"\u628a": 3, "\u8bf7": 4, "\u9012\u7ed9": 2, "\u201d": 1, "\u201c": 1, "\u7ed9": 2}, "salt": {"\u9e7d": 10, "\u905e": 1, "\u7d66": 1, "\u597d": 1, "\u76d0": 9, "\u8fd8\u6709": 1, "\u591a\u4f59": 1}, "70": {"\u4e00\u4e2a": 2, "\u53ea\u80fd": 2, "\u6d3b": 2, "\u4e03\u5341\u5c81": 2, "\u5de6\u53f3": 2}, "Humans": {"\u4eba": 1}, "assistance": {"\u60a8": 1, "\u5e2e\u52a9": 1, "\u5bf9": 1, "\u6765\u8bf4": 1, "\u5e6b\u52a9": 1}, "indispensable": {"\u5fc5\u4e0d\u53ef\u5c11": 2}, "page": {"\u7b2c": 1, "\u9801": 3, "\u7b2c\u4e5d": 2, "\u4e00\u9875": 2, "\u7ffb\u958b": 1, "\u9801\u9762": 1, "\u7ffb": 1}, "10th": {"\u5f8c": 1, "": 1, "\u90a3": 1, "\u5728": 1}, "June": {"\u8aaa": 1, "\u4e0b\u4e00\u573a": 1, "\u5c06": 1, "\u516d\u6708\u4efd": 1, "\u4e3e\u529e": 1, "\u516d\u6708": 1, "\u4e0b": 2, "\u96e8": 2, "": 3, "\u6708": 1, "\u7684": 1, "\u65f6\u5019": 1}, "needed": {"\u8fc7\u6765": 1, "\u6709\u6ca1\u6709": 1, "\u9700\u8981": 11, "\u8981": 2, "\u5b78\u6cd5": 1, "\u6e6f\u59c6\u5e6b": 1, "\u6b63\u662f": 1, "\u6240": 1}, "influenced": {"\u548c": 1, "\u5f71\u54cd": 1, "\u751f\u6d3b": 1, "\u65b9\u5f0f": 1}, "picnic": {"\u91ce\u9910": 10, "\u516d": 1, "\u53bb": 1, "\u5c31": 2, "\u4e3a\u4ec0\u4e48": 1, "\u739b\u4e3d\u548c": 1, "": 1, "\u4e0d": 1}, "Mail": {"\u628a": 1, "\u5bc4": 1}, "dig": {"\u5728": 1, "\u5730\u4e0a": 1, "\u6316\u571f": 1}, "confused": {"\u6709": 4, "\u9ede": 2, "\u7591\u60d1": 1, "\u56f0\u60d1": 8, "\u5c0d": 1, "\u611f\u5230": 1, "\u628a": 1, "\u5f04": 1, "\u7cca\u5857": 1}, "amusing": {"\u7ed9": 1, "\u4eec": 1, "\u4e2a": 1, "\u6709\u8da3": 1}, "rained": {"\u4e0b\u96e8": 2, "\u96e8": 1, "\u4e0b\u5f97": 1, "\u5f88\u5927": 1, "": 1, "\u6628\u5929\u4e0a\u5348": 1, "\u4e0b": 1, "\u5927\u96e8": 1, "\u6b63\u8981": 1}, "asking": {"\u95ee": 2, "\u8fd9": 1, ",": 2, "\u554f": 3, "\u5728": 2, "\u9078\u64c7": 1, "": 1, "\u4ed6": 1, "\u65e0\u7406\u53d6\u95f9": 1}, "cops": {"\u5168\u90fd": 1, "\u689d\u5b50": 1}, "Be": {"\u9759\u9759\u7684": 1, ",": 2, "": 2, "\u4f60\u5011": 1, "\u70b9": 3, "\u8981": 3, "\u5b88\u65f6": 1, "\uff01": 2, "\u53cb\u5584": 1, "\u611f\u5230\u9ad8\u5174": 1, "\u5427": 1, "\u6ce8\u610f\u5b89\u5168": 1, "\u5355\u884c\u9053": 1, "\u9006\u5411\u884c\u9a76": 1}, "collecting": {"\u5174\u8da3\u7231\u597d": 1, "\u6536\u96c6": 5, "\u65e7": 1}, "scientist": {"\uff1a": 1, "\u60f3\u6210": 1, "\u70ba": 2, "\u79d1\u5b78\u5bb6": 5, "": 1}, "daughters": {"\u4e00\u500b": 1, "\u5973\u5152": 3, "\u5973\u513f": 1}, "anybody": {"\u8c01": 4, "\u4e5f": 2, "\u770b\u89c1": 1, "\u4efb\u4f55\u4eba": 6, "\u6709\u4eba": 7, "\u90a3\u8fb9": 2, "\u90fd": 2, "\u4e0d\u597d": 1, "\u770b\u4e0d\u5230": 1, "\u8a8d\u8b58": 1, "\u5728\u5bb6": 1, "\u53eb": 1}, "envied": {"\u7fa8\u6155": 1, "\u65b0\u623f\u5b50": 1, "\u7fa1\u6155": 1, "\u65b0\u8f66": 1}, "taxed": {"\u56e0\u4e3a": 1, "\u4f1a": 1, "\u6839\u636e": 1, "\u9ea6\u82bd": 1, "\u542b\u91cf": 1, "\u5f81\u7a0e": 1, "": 1, "\u6240\u4ee5": 1, "\u53d1\u6ce1": 1}, "cooking": {"\u5eda\u85dd": 2, "\u505a\u98ef": 1, "\u5982\u4f55": 1, "\u716e": 1, "\u505a\u996d": 4, "\u62ff\u624b": 1, "\u4f60": 1, "\u5bb6\u91cc": 1, "\u51c6\u5907": 1, "\u70f9\u98ea": 1, "\u4f5c\u98ef": 1}, "Look": {"\u770b": 9, "\u770b\u770b": 3, "\u76f8\u7247": 1, "\u56db\u5904": 1, "\u56de\u5934": 1, "\u5f53\u5fc3": 1, "\u77a7": 1, "\u4f60\u8eab": 1, "\u770b\u7740": 1, "": 1, "\u770b\u8457": 1}, "Dentists": {"\u7259\u533b": 1, "\u7528": 1, "\u68c0\u67e5": 1}, "x": {"X\u5149": 3}, "teeth": {"\u7259\u9f7f": 6, "\u5361": 2, "\u7259": 1}, "obvious": {"\u986f\u7136": 2, "\u5730": 2, "\u6492": 1, "\u5f88": 2, "\u660e\u986f": 5}, "lied": {"\u8b0a": 3, "\u8bf4\u8c0e": 1, "\u5411": 2, "\u6492\u8c0e": 3, "\u5c0d": 1, "\u8aaa": 2, "\u5bf9": 3, "\u8bf4\u8bdd": 1, "\u6b3a\u9a19": 1}, "impulse": {"\u7a81\u7136": 1, "\u597d": 1, "\u60f3": 1, "\u5927\u53eb": 1}, "off": {"\u5173\u6389": 1, "\u628a": 3, "\u4e86": 7, "": 1, "\u4e0b\u8f66": 4, "\u5173\u95ed": 1, "\u812b\u6389": 1, "\u4f11": 1, "\u5047": 3, "\u9001": 1, "\u5728": 1, "\u4f11\u5047": 1, "\u4e00\u5929": 1, "\u8acb": 1, "\u4e0b": 3, "\u4e00\u7ad9": 1, "\u4e3a": 1, "\u9001\u884c": 1, "\u4e0b\u8eca": 1, "\u4e0b\u932f": 1, "\u6c92\u6709": 1}, "France": {"\u662f\u4ece": 1, "\u6cd5\u56fd": 9, "\u6cd5\u570b": 7, "": 1, "\u53bb": 1, "\u4ece\u6ca1": 1, "\u6709": 1, "\u80fd": 1}, "promise": {"\u4fdd\u8bc1": 3, "\u7b54\u5e94": 1, "\u51e0\u65f6": 1, "\u524d\u9014": 1, "\u4e0d\u80fd": 1, "\u9055\u80cc": 1, "\u627f\u8afe": 1, "\u4fe1\u5b88\u8bfa\u8a00": 2, "\u4fe1\u5b88": 3, "\u8afe": 2, "\u8a00": 2, "\u627f\u8bfa": 1, "\u4fdd\u8b49": 1}, "fight": {"\u4e3a\u4e86": 1, "\u5c0f\u4e8b": 1, "\u5435\u67b6": 1, "\u6218\u6597": 1, "\u81f3\u6b7b": 1, "\u9a45\u6563": 1, "\u9019\u5834": 1, "\u9b25": 1, "\u6bc6": 1, "\u6253": 2, "\u67b6": 1}, "hazel": {"\u5982\u6b64": 1, "\u7f8e\u9e97": 1, "\u6de1\u8910\u8272": 1}, "roller": {"\u88e1": 1, "\u73a9": 1, "\u56db\u8f2a": 1, "?": 1}, "skate": {"\u6e9c\u51b0": 2, "\u4f1a": 1, "\u6e56\u4e0a": 1, "\u6ed1\u51b0": 1}, "human": {"\u5b83": 2, "\u4eba": 2, "\u5929\u6027": 1, "\u4eba\u6743": 1}, "nightmare": {"\u505a": 2, "\u4e00\u4e2a": 1, "\u53ef\u6015": 1, "\u5669\u68a6": 2}, "shopping": {"\u8cfc\u7269": 3, "\u5e6b": 1, "\u8cb7": 1, "\u6771\u897f": 1, "\u8d2d\u7269": 3, "\u8be5": 1, "\u4e70": 1, "\u4e1c\u897f": 2, "\u4e00": 1, "\u8981": 2, "\u53bb": 1, "\u7ed9": 1, "\u4e70\u70b9": 1}, "place": {"\u5730\u65b9": 21, "\u81ea\u5df1": 2, "\u90fd": 1, "\u4f1a": 1, "\u4f4f": 1, "\u4f4f\u5904": 1, "\u53d6\u4ee3": 1, "\u82f1\u8bed\u8001\u5e08": 1, "\u91d1\u7aa9": 1, "\u9280\u7aa9": 1, "\u4e0d\u5982": 1, "\u72d7": 1, "\u7aa9": 1, "\u67d0\u4e2a": 1, "\u53e4": 1, "\u65b0": 1}, "gives": {"\u7ed9": 3, "\u7ed9\u5f97": 1, "\u63d0\u4f9b": 1, "\u5149": 1}, "vibe": {"\u4e00\u4e2a": 1, "\u5f88\u5dee": 1, "\u5370\u8c61": 1}, "mud": {"\u522b": 1, "\u8d70\u8fdb": 1, "\u6ce5\u5730": 1, "\u4ece": 1, "\u70c2\u6ce5": 1, "\u4e2d": 1, "\u62fd": 1, "\u51fa\u6765": 1}, "master": {"\u7cbe\u901a": 2, "\u56f0\u96e3": 1, "\u3001": 1, "\u5e74\u5185": 1, "\u638c\u63e1": 1, "\u77ed\u65f6\u95f4": 1, "\u5185": 1, "\u5b66\u4f1a": 1}, "magazine": {"\u96dc": 4, "\u8a8c": 4, "\u6742\u5fd7": 4, "\u6b63\u5728": 1, "\u9019": 1, "\u672c\u65b0": 1}, "end": {"\u4e16\u754c\u672b\u65e5": 1, "\u6700\u540e": 2, "\u7ed3\u675f": 3, "\u7d50\u675f": 2, "\u4e0d\u4e86": 1, "\u672c\u6708": 1, "\u5929\u4e0b": 1, "\u65e0\u4e0d": 1, "\u6563": 1, "\u4e4b": 1, "\u7b75\u5e2d": 1, "\u5468\u672b": 1, "\u4e0d\u4f1a": 1, "\u6709\u4e2a": 1, "\u7ed3\u5c40": 1}, "line": {"\u6bcf\u9694": 1, "\u4e00\u884c": 1, "\u6211\u4e00": 1, "\u5230": 2, "\u7ed9": 2, "\u7559\u8a00": 2, "\u522b\u5fd8\u4e86": 1, "\u4e00": 1, "\u554a": 1, "\u62ff\u624b": 1, "\u6392\u968a": 1}, "Write": {"\u5beb": 5, "\u8a18": 1, "\u628a": 4, "\u4e0b\u4f86": 2, "\u5beb\u9ede": 1, "\u4ec0\u9ebc": 1, "\u5beb\u4e0b": 1, "\u7528": 1}, "staying": {"\u4f4f": 3, "\u5f85": 5, "\u5f85\u8457": 1, "\u4e0a": 1, "\u6b63\u5f85": 1, "\u4f4f\u5728\u4e00\u8d77": 1, "\u59d1\u59d1\u5bb6": 1, "\u8205\u8205\u5bb6": 1, "\u591a\u957f\u65f6\u95f4": 1, "\u5bb6": 1, "\u665a\u7761": 2}, "remarks": {"\u9019": 1, "\u756a": 1, "\u8a71": 1}, "shore": {"\u6d77\u6ee9": 1, "\u53d1\u73b0": 1, "\u4e00\u4e2a": 1}, "shell": {"\u8d1d\u58f3": 2, "\u86cb\u58f3": 1, "\u7834\u788e": 1}, "map": {"\u6765": 1, "\u4e16\u754c\u5730\u56fe": 1, "\u5730\u5716": 3, "\u5730\u56fe": 7, "\u4e00\u5f35": 1, "\u7dda": 1, "\u5716": 1, "\u5f35": 1, "\u4e70": 1, "\u5f20": 2, "\u5c55\u793a": 1}, "lady": {"\u9019\u4f4d": 2, "\u592b\u4eba": 1, "\u5ea7": 1, "\u4e00\u4f4d": 3, "\u8001\u592a\u592a": 3, "\u51fa": 1, "\u500b": 1, "\u7a7a\u9593": 1, "\u5973\u4eba": 1, "\u8bf7\u4e3a": 1, "\u8fd9\u4f4d": 1, "\u5973\u58eb": 2, "\u8f86": 1, "\u5fd9": 1, "\u7ad9": 1, "\u8d77\u4f86": 1, "\u4e0a\u8eca": 1, "\u5c0f\u59d0": 1}, "Nagasaki": {"\u65bc\u9577\u5d0e": 1}, "rainy": {"\u672a\u96e8\u7ef8\u7f2a": 1, "\u96e8\u5929": 2, "\u6211": 2, "\u90fd": 2, "\u662f": 2, "\u5929": 1, ",": 1}, "Help": {"\u5c31": 3, "\u5427": 4, "\u96a8": 1, "\u96a8\u4fbf": 2, "\u5403": 6, "\u4ec0\u9ebc": 3, "\u5e2e\u5e2e": 1, "\uff01": 1}, "Bee": {"\u871c\u8702": 1, "\u87ab\u4eba": 1, "\u662f": 1}, "painful": {"\u75db\u82e6": 4, "\u8b93": 1, "\u60b2\u50b7": 1, "\u53ef\u80fd": 1, "\u8c0e\u8a00": 1, "\u4ee4\u4eba": 1}, "American": {"\u7f8e\u56fd": 7, "\u4eba": 5, "\u7f8e\u570b": 5, "\u8bb2": 1, "\u4f60": 1, "\u5979": 1, "\u662f": 1, "\u548c": 1, "\u82f1\u8a9e": 1}, "familiar": {"\u5c0d": 2, "\u5f88": 2, "\u719f\u6089": 5, "\u4f60\u5011": 1, "\u9019\u500b": 1, "\u4e3b\u984c": 1, "\u4f3c\u66fe\u76f8\u8bc6": 1}, "neighborhood": {"\u9644\u8fd1": 4, "\u5c0f\u533a": 1, "\u9886": 1, "\u5c45\u5bb6": 1, "\u90bb\u5c45": 1, "\u76f8\u5904": 1, "\u90bb\u8fd1": 1, "\u533a\u57df": 1, "\u6211\u5bb6": 1, "\u9130\u5c45": 1}, "tears": {"\u6dda\u6c34": 1, "\u5f88": 1, "\u50b7": 1, "\u5fc3\u5730": 1, "\u54ed": 2, "\u5f53": 1, "\u65b0\u95fb": 1, "\u4ed6": 1, "\u611f\u52a8": 1, "\u542b\u7740\u6cea": 1}, "aliens": {"\u5916\u661f\u4eba": 2, "\u574f": 1}, "shook": {"\u8d70\u9032": 1, "\u8207": 1, "\u63e1\u624b": 2, "\u4e0a\u4e0b": 1, "\u6643": 1, "\u6643\u5934": 1}, "doubt": {"\u6ca1\u6709": 1, "\u7591\u95ee": 3, "\u95dc\u65bc": 2, "\u6b64\u4e8b": 2, "\u6beb\u7121\u7591\u554f": 2, "\u61f7\u7591": 1, "\u6703\u4f86": 1, "\u6beb\u65e0\u7591\u95ee": 1, "\u786e\u5b9a": 1}, "called": {"\u6709\u4eba": 2, "\u53eb": 12, "\u66ff": 1, "\u4e00\u90e8": 1, "\u672c": 2, "\u8d77\u6765": 1, "\u6253": 7, "\u96fb\u8a71": 6, "\u7d66": 6, "\u591a\u6b21": 1, "\u88ab": 1, "\u53d6\u6d88": 2, "\u746a\u8389": 1, "\u4f86": 1, "": 2, "\u53eb\u6cd5": 1, "\u6253\u7535\u8bdd": 1}, "implying": {"\u6c92": 1, "\u6709\u4eba": 1, "\u4e86\u89e3": 1, "\u6697\u793a": 2, "\u6c92\u6709": 1, "\u751a\u9ebc": 1}, "Indian": {"\u5370\u5ea6": 2, "\u83dc": 3}, "hick": {"\u4e2a": 1, "\u4e61\u5df4\u4f6c": 1}, "matters": {"\u4efb\u4f55": 1, "\u4e8b\u60c5": 2, "\u662f": 3, "\u91cd\u8981": 2, "\u4e0b\u96ea": 1, "\u89c0\u9ede": 1}, "Everything": {"\u90fd": 6, "\u4e00\u5207": 8, "\u5c31\u7eea": 2, "\u8b8a\u6210": 1, "\u6210\u529f": 1, "\u5c6c": 1, "\u8010\u5fc3": 1, "\u5f88": 1, "\u987a\u5229": 1}, "stab": {"\u4f01\u56fe": 1, "\u523a": 1}, "showers": {"\u6d74\u5ba4": 1, "\u6625\u96e8": 1, ",": 1, "": 1}, "Those": {"\u90a3\u4e9b": 8, "\u90fd": 1, "\u9019\u4e9b": 1, "\u90a3": 1, "\u56f0\u96be": 1, "\u65f6\u671f": 1, "\u5df2\u7d93": 1, "\u67af\u6b7b": 1}, "apples": {"\u860b\u679c": 17, "\u82f9\u679c": 7, "\u6b63\u5728": 2, "\u500b": 1, "\u5403": 1, "\u5e7e\u500b": 1, "\u66f4": 1}, "big": {"\u5f88\u5927": 13, "\u5927\u4e8b": 1, "\u5927": 20, "\u5927\u57ce\u5e02": 1, "\u9019\u9593": 1, "\u4f86\u8aaa": 1, "\u80d6": 2, "\u6709": 2, "\u5c3d\u591f": 1, "\u8fa6": 1, "\u76db\u5927": 1}, "manuscript": {"\u7ed9": 1, "\u6700\u65b0": 1, "\u5267": 1, "\u5e95\u7a3f": 1}, "jumped": {"\u8df3": 3, "\u4e0a": 1, "\u8d77\u4f86": 1, "\u8df3\u5165": 1, "\u6c34\u4e2d": 1}, "backward": {"\u540e\u9000": 1, "\u4e00\u6b65": 1}, "engineer": {"\u5de5\u7a0b\u5e08": 1, "\u5de5\u7a0b": 5, "\u5e2b": 5, "\u4e00\u540d": 2, "\u5c07": 1, "\u6210\u70ba": 1, "\u4e00\u4f4d": 1}, "forgot": {"": 2, "\u6211": 2, "\u4f5c\u4e1a": 1, "\u8fd9": 1, "\u5fd8": 16, "\u4e86": 19, "\u95dc\u65bc": 1, "\u5fd8\u8bb0": 3, "\u5b8c\u5168": 1, "\u628a": 1, "\u5beb": 1}, "close": {"\u8acb\u95dc": 1, "\u4e0a\u9580": 1, "\u79bb": 1, "\u8fd1": 1, "\u4f60\u4eec": 1, "\u5173\u95e8": 1, "\u5173\u4e86": 1, "\u9760\u8fd1": 2, "\u8eab\u8fb9": 1, "\u5bc6\u53cb": 1, "\u89aa\u5bc6": 2, "Mary": 1, "\u60a8": 2, "\u95dc\u8d77": 2, "\u4f86": 2, "\u8acb": 1, "\u79bb\u624b": 1, "\u4e0d\u8fdc": 1, "\u5730\u65b9": 1, "\u653e": 1}, "suffering": {"\u4e86": 2, "\u60a3\u4e0a": 1, "\u91cd\u611f\u5192": 1}, "passing": {"\u901a\u904e": 1, "\u4e8b": 1, "\u8b93": 1, "\u6bcf": 1, "\u4e00\u500b": 1, "\u89ba\u5f97": 1, "\u9a5a\u8a1d": 1}, "teens": {"\u5feb": 1, "\u4e8c\u5341": 1, "\u6b72": 1, "\u5341\u5e7e\u6b72": 1, "\u6642": 1, "\u5c31": 1}, "hunting": {"\u4eba\u529b": 1, "\u4ef2\u4ecb\u516c\u53f8": 1, "\u5e6b": 1, "\u5408\u9069": 1, "\u4f86": 1, "\u64d4\u4efb": 1, "\u7ba1\u7406": 1, "\u8077\u4f4d": 1, "\u6253\u730e": 1}, "fairly": {"\u76f8\u7576": 1, "\u76f8\u5f53": 2, "\u53d7\u5230": 1, "\u516c\u6b63": 1}, "being": {"\u88ab": 13, "\u613f\u610f": 1, "\u8d2b\u7a77": 1, "\u800c": 1, "\u4e0d\u662f": 1, "\u771f\u559c": 1, "\u6b61\u5f85": 1}, "punished": {"\u61f2\u7f70": 2, "\u53d7\u7f70": 2, "\u58de\u4e8b": 1, "\u89f8\u72af": 1, "\u53d7\u5230": 1, "\u9055\u53cd": 1, "": 1, "\u4f60": 1, "\u5c07": 1}, "burst": {"\u6cea\u6d41\u6ee1\u9762": 1, "\u7a81\u7136": 1, "\u6dda\u6d41": 1, "\u6eff\u9762": 1, "\u54c8\u54c8\u5927\u7b11": 1, "\u8d77\u6765": 1}, "decisions": {"\u8981": 1, "\u505a": 1, "\u4e9b": 1, "\u51b3\u5b9a": 1}, "inch": {"\u5f97\u5bf8\u8fdb\u5c3a": 1}, "pens": {"\u652f": 2, "\u94c5\u7b14": 1, "\u7b46": 2, "\u7b14": 1, "\u94a2\u7b14": 1, "\u6709\u4e9b": 1, "\u92fc\u7b46": 1, "\u5341\u652f": 1}, "temperature": {"\u6c14\u6e29": 1, "\u4e0b\u964d": 1, "\u8b77\u58eb": 1, "\u91cf": 1, "\u9ad4\u6eab": 3, "\u4e0a\u5347": 1, "\u5abd": 1, "\u5abd\u91cf": 1, "\u597d\u50cf": 1, "\u53d1\u70e7": 1, "\u767c\u71d2": 1}, "suddenly": {"\u7a81\u7136": 9, "\u8b8a\u5f97": 1, "\u5927": 1, "\u8166": 1, "\u88cf": 1, "\u51fa\u73fe": 1, "\u706d": 1}, "catching": {"\u8981": 1, "\u7d27\u8ffd": 1}, "divorced": {"\u96e2\u5a5a": 5, "\u548c": 1, "\u79bb\u5a5a": 3, "\u8207": 1}, "carry": {"\u5f97": 1, "\u6613\u4e8e": 1, "\u643a\u5e26": 1, "\u8b93": 1, "\u5e6b": 1, "\u62ff": 1, "\u96a8\u8eab": 1, "\u5e36\u8457": 1, "\u628a": 1, "\u4e1c\u897f": 1, "\u5e26\u5230": 1, "\u651c\u5e36": 2, "\u6267\u884c": 1, "\u8d77\u6765": 1, "\u82b1\u9500": 1, "\u5f88\u5927": 1, "\u7ee7\u7eed": 1}, "amassed": {"\u7d2f\u7a4d": 1, "\u9f90\u5927": 1, "\u8ca1\u5bcc": 1}, "Life": {"\u751f\u6d3b": 8, "\u8ba1\u8f83": 1, "": 2, "\u4f1a": 1, "\u66f4": 1, "\u662f": 1, "\u4eba\u751f": 1, "\u8270\u82e6": 1, "\u5e76": 1, "\u5982": 1, "\u6240\u613f": 1}, "chocolates": {"\u5c31": 1, "\u50cf": 1, "\u4e00\u76d2": 2, "\u5de7\u514b\u529b": 2}, "gets": {"\u53d8": 1, "\u89c9\u5f97": 1, "\u65e9\u8d77": 1, "\u8d77\u5f97": 1, "\u90fd": 1, "\u96a8\u5fc3": 1, "\u6240\u6b32": 1, "\u65e9\u4e0a": 2, "\u559d\u7231": 1, "": 1}, "worse": {"\u7cdf": 2, "\u7cdf\u7cd5": 5, "\u66f4": 3, "\u8b8a": 1, "\u4e0d\u8fc7": 1, "\u6bd4": 2, "\u5dee": 2, "\u66f4\u7cdf": 2, "\u770b\u89c1": 1, "\u5c31": 1, "\u767c\u751f": 1, "\u4ec0\u9ebc": 1}, "Hang": {"\u628a": 1, "\u639b": 1, "\u8d77\u4f86": 1, "\u7b49": 1, "\u4e00\u4e0b": 1, "\u575a\u6301": 2, "\u575a\u6301\u4e0b\u53bb": 1, "\u627e\u5230": 1}, "coat": {"\u5916\u5957": 7, "\u7a7f": 3, "\u5927\u8863": 7, "\u812b\u4e0b": 1, "\u4e00\u4ef6": 3, "\u60a8": 1, "\u9019\u4ef6": 1}, "movies": {"\u770b": 14, "\u96fb\u5f71": 13, "\u628a": 2, "\u5168": 2, "\u7535\u5f71": 3, "\u653e": 1, "\u6211\u4eec": 1, "\u7535\u5f71\u9662": 1, "\u5979": 1, "\u7535\u5f71\u5427": 1, "\uff01": 1, "\u6703": 1}, "scolding": {"\u4e0d\u662f": 1, "\u5728": 1, "\u7f75": 1}, "curious": {"\u597d\u5947": 4, "\u5f88": 3, "": 1, "\u6211": 1}, "spoken": {"\u8ddf": 3, "\u8c08": 1, "\u8fc7": 1, "\u8bdd": 1, "\u4f60": 1, "\u8bfe\u5802": 1, "\u4eba": 7, "\u8aaa": 14, "\u8bf4": 4, "\u8a71": 1, "\u4eba\u6bd4": 1, "\u5f9e\u4f86": 1}, "sharp": {"\u5341\u4e00\u70b9": 1, "\u51c6\u65f6": 1, "\u9019": 1, "\u5200\u4e0d\u92d2\u5229": 1, "\u9ede": 1, "\u5b83": 1}, "indistinguishable": {"\u8fd9": 1, "\u53cc\u80de\u80ce": 1, "\u6ca1\u6cd5": 1, "\u533a\u5206": 1}, "Somebody": {"\u6709\u4eba": 9}, "chopsticks": {"\u7528": 3, "\u7b77\u5b50": 3, "\u5403\u996d": 1, "\u6703": 1, "\u98ef": 2}, "mattress": {"\u9322\u85cf": 1, "\u5e8a\u588a": 2, "\u9019\u500b": 1, "\u786c": 1}, "lucky": {"\u5e78\u8fd0": 2, "\u771f": 2, "\u8d70": 3, "\u904b": 3, "\u5e78\u904b": 3, "\u80fd\u6709": 1, "\u9019\u9ebc": 1, "\u5f88": 1, "\u4f60\u5011": 1}, "preferred": {"\u66f4": 1, "\u613f\u610f": 1, "\u800c": 1, "\u4e0d\u662f": 1, "\u65e0\u6240\u4e8b\u4e8b": 1}, "zoo": {"\u5e36": 1, "\u52d5\u7269\u5712": 4, "\u9019\u9593": 1, "\u591a\u4e45": 1, "\u52a8\u7269\u56ed": 2}, "vitamins": {"\u9023": 1, "\u4e2d": 1, "\u542b\u6709": 1, "\u7dad": 1, "\u4ed6": 1, "\u547d": 1}, "chocolate": {"\u5de7\u514b\u529b": 7, "\u559c\u6b22": 2}, "Coal": {"\u7164": 2, "\u5e76\u4e0d\u4e00\u5b9a": 1, "\u90fd": 1, "\u9ed1": 1}, "fuels": {"\u5929\u7136": 2, "\u6c23": 1, "\u71c3\u6599": 1}, "fresh": {"\u65b0\u9c9c": 4, "\u68f2\u606f": 1, "\u6de1": 1, "\u6c34\u57df": 1, "\u4e2d": 1, "\u8a18\u61b6": 1, "\u7336\u65b0": 1, "\u60f3\u8981": 1, "\u547c\u5438": 1, "\u65b0\u9bae": 1}, "Give": {"\u7ed9": 14, "\u7d66": 17, "\u628a": 8, "\u4e1c\u897f": 1, "\u6211\u4e9b": 1, "\u8fd8\u7ed9": 1, "\u7ed9\u4e88": 1, "\u4e00\u4e9b": 1, "\u529b\u6240\u80fd\u53ca": 1}, "hate": {"\u8ba8\u538c": 11, "\u6068": 4, "\u522b\u4eba": 1, "\u5176\u5b9e": 1, "": 1, "\u5076\u5c14": 1, "\u6211\u4f1a": 1}, "okay": {"\u9019\u500b": 1, "\u4e0d\u884c": 1, "\u53ef\u4ee5": 2, "\u6c92\u4e8b": 1, "": 1, "\u4f60": 1, "\u653e": 1, "\u4e00\u4e0b": 1}, "get": {"\u5f97\u5230": 4, "\u65e9": 1, "\u5230": 4, "\u662f\u4e0d\u662f": 3, "\u62ff": 1, "\u624d\u80fd": 2, "\u4e0d\u5f97\u4e0d": 1, "\u5e72\u6d3b": 1, "\u4eba": 1, "\u80fd": 1, "\u6211\u4eec": 1, "\u8be5": 1, "\u4f86\u5230": 1, "\u5e26\u8d70": 1, "\u4f86\u7684": 1}, "registered": {"\u8acb\u7528": 1, "\u639b": 2, "\u865f": 2, "\u7528": 1, "\u5bc4": 1}, "mail": {"\u5bc4": 7, "\u5bc4\u4fe1": 1, "\u628a": 2, "\u90f5\u4ef6": 1, "\u5bc4\u51fa\u53bb": 1, "\u53ef\u4ee5": 1, "\u5e6b": 1}, "panic": {"\u4e0d\u8981": 1, "\u6050\u614c": 1}, "clothes": {"\u8863\u670d": 16, "\u7a7f\u4e0a": 1, "\u7a7f": 4, "\u4e0d\u4ec5": 1, "": 2, "\u70b9": 1, "\u6362\u8863\u670d": 1}, "mosquitoes": {"\u868a\u5b50": 2}, "cottage": {"\u6709": 1, "\u4e00\u95f4": 5, "\u5c0f\u5c4b": 6, "\u6751\u5c4b": 1}, "refreshments": {"\u8336\u70b9": 1, "\u8fc7\u540e": 1, "\u63a5\u7740": 1, "\u5f00\u4f1a": 1}, "storm": {"\u98ce\u66b4": 1, "\u66b4\u98a8\u96e8": 1, "\u66b4\u98a8": 2, "\u4e86": 1, "\u5927\u6a39": 1, "\u4e2d": 1, "\u5012\u4e0b": 1, "\u66b4\u98ce\u96e8": 2, "\u88ad\u51fb": 1}, "yen": {"\u65e5\u5143": 17, "\u4e07\u65e5\u5143": 3, "\u628a": 1, "\u63db\u6210": 1}, "pressured": {"\u5411": 1, "\u65bd\u538b": 1}, "ceremony": {"\u4eea\u5f0f": 2, "\u4ee5": 1, "\u8bb2\u8bdd": 1}, "began": {"\u5f00\u59cb": 12, "\u958b\u59cb": 14, "\u4ed6": 1, "\u7d27\u63a5\u7740": 1, "": 1}, "guess": {"\u60f3": 4, "\u731c\u5230": 5, "\u731c": 6, "\u61c9\u8a72": 1, "\u53ef\u4ee5": 1, "\u4f60\u4eec": 1, "\u8aaa": 2, "\u65b9\u6cd5": 1, "\u61c9": 1, "\u8a72": 1, "\u6c92": 1, "\u95dc": 1, "\u4fc2": 1, "\u6211\u4f1a": 1, "\u4e00\u8f88\u5b50": 1, "\u5355\u8eab": 1, "\u5e74\u9f84": 1, "\u5927\u591a": 1, "\u6578": 1}, "woman": {"\u90a3\u4f4d": 1, "\u5973\u58eb": 1, "\u6df1": 1, "\u662f": 1, "\u5973\u4eba": 19, "\u4e00\u4e2a": 5, "\u6709\u4e2a": 1, "\u500b": 2, "\u4eba": 1, "\u770b\u89c1": 1, "\u4e00\u4f4d": 1, "\u964c\u751f": 1, "": 2}, "risky": {"\u5192\u96aa": 1, "\u4e8b": 1}, "walks": {"\u8d70": 3, "\u8d70\u8def": 3, "\u65e9\u6668": 1, "\u6e9c": 1, "\u5f97": 2, "\u5f88\u6162": 2}, "subarachnoid": {"\u5341\u56db\u5c81": 1, "\u7236\u4eb2": 1, "\u6b7b": 1, "\u4e8e": 1, "\u86db\u7f51\u819c": 1}, "sir": {"\u5148\u751f": 1, "\u6211": 1}, "license": {"\u4f60": 1, "\u7684": 1, "\u99d5\u99db": 7, "\u57f7\u7167": 5, "\u7121\u7167": 1, "\u8fd8": 1, "\u6ca1\u5230": 1, "\u62ff": 1, "\u9a7e\u9a76\u6267\u7167": 1, "\u5e74\u9f84": 1, "\u9a7e\u7167": 1, "\u7121\u6cd5": 1, "\u53d6\u5f97": 1, "\u8b49": 1}, "searched": {"\u641c\u67e5": 1, "\u91cc\u9762": 1, "\u5c0b\u627e": 1, "\u9019\u500b": 1, "\u8d70\u5931": 1}, "biology": {"\u751f\u7269": 2, "\u5b78": 2, "\u751f\u7269\u5b66": 1, "\u6c92": 1}, "exam": {"\u8003\u8a66": 4, "\u901a\u8fc7": 1, "\u8003\u8bd5": 3, "\u8003\u5f97": 1, "\u5982\u4f55": 1, "\u4f1a": 1}, "cheated": {"\u6642": 1, "\u4f5c\u5f0a": 1, "\u88ab": 1, "\u9a19": 1, "\u904e": 1, "": 1}, "louder": {"\u5927\u58f0": 1, "\u70b9": 1, "\u8bb2": 1, "\u592a": 1, "\u6e05": 1, "\u5927\u8072": 1, "\u4e00\u9ede": 1}, "brilliant": {"\u5927\u597d": 1, "\u524d\u9014": 1, "\u6446\u5728": 1, "\u9762\u524d": 1}, "wore": {"\u7a7f": 6, "\u4e86": 4, "\u4e00\u6761": 2, "\u6df1\u8272": 1}, "red": {"\u7ea2\u8272": 3, "\u53ea": 1, "\u7ea2": 1, "\u4e00\u8f1b": 2, "\u7d05\u8272": 12, "\u8138\u7ea2": 1, "\u8981": 1, "\u6c7d\u8eca": 1, "\u4f1a": 1}, "Count": {"\u7b97": 1, "\u4e00\u4e2a": 1}, "seat": {"\u5e6b": 2, "\u5ea7\u4f4d": 6, "\u4e0a": 5, "\u9760": 1, "\u4f4d\u5b50": 5, "\u5b89\u6392": 1, "\u60a8": 2, "\u5165\u5ea7": 1, "\u5750": 1, "\u88ab\u53eb": 1, "\u5750\u5728": 1, "\u6905\u5b50": 1, "\u7b49\u5019": 1}, "save": {"\u4fdd\u7559": 1, "\u80fd\u591f": 1, "\u62ef\u6551": 2, "\u6e6f\u59c6\u76e1": 1, "\u5168\u529b": 1, "\u7701": 1}, "50": {"50": 4, "\u4e94\u5341": 1}, "unless": {"\u9664\u975e": 4, "\u7684\u8bdd": 1, "\u8981\u8bf4": 1, ",": 4, "": 4, "\u5426\u5219": 1, "\u6709\u4eba": 1, "\u5426\u5247": 1, "\u4e0d\u5fc5": 1}, "earlier": {"\u65e9\u9ede": 7, "\u65e9\u70b9": 4, "\u51fa\u95e8": 1, "\u5c31": 1, "\u65e9": 7, "\u672c": 3, "\u5df2\u7ecf": 2, "\u6ca1\u6709": 2, "\u53eb": 1, "\u6765\u5f97": 2, "\u5f80\u5e38": 1, "\u8981": 2, "\u4e0b\u6b21": 1, "\u51fa\u767c": 1, "\u66f4\u65e9": 1}, "tigers": {"\u8001\u864e": 2, "\u4e1c\u897f": 1, "\u4e2d": 1, "\u9003\u51fa": 1, "\u4f86": 1}, "threaten": {"\u5a01\u8105": 1, "\u904e": 1}, "mind": {"\u4e0b\u5b9a": 1, "\u6c7a\u5fc3": 1, "\u5538": 1, "\u4e0d\u4ecb\u610f": 8, "\u7406\u667a": 2, "\u5225": 2, "\u591a": 1, "\u4ecb\u610f": 8, "\u7528": 1, "\u4f60": 1, "\u56de\u5230": 1, "\u4e3b\u610f": 1, "\u51b3\u5b9a": 1, "\u5931\u53bb": 1, "\u4e00\u4e2a": 1, "\u4eba": 1, "\u53bb": 1, "\u60f3\u6cd5": 2, "\u6211": 1}, "awesome": {"\u592a\u68d2\u4e86": 1, "\u5f88\u68d2": 1, "": 2}, "enter": {"\u8fdb": 5, "\u9032\u5165": 4, "\u9019\u500b": 3, "\u6b63\u8981": 1}, "classroom": {"\u6559\u5ba4": 8, "\u8bf7": 2, "\u6458": 1, "\u8d70\u9032": 1, "\u5f85": 1, "\u91cc": 1, "\u9084": 1, "\u8131\u4e0b": 1}, "hat": {"\u5e3d\u5b50": 21, "\u4e00\u9802": 3, "\u4f60": 1, "\u9876": 4, "\u6234": 3, "\u6458\u4e0b": 1, "\u51c6\u5907": 1}, "sleepy": {"\u5f88\u56f0": 2, "\u7d2f": 1, "": 2, "\u56f0": 6, "\u8bf4": 3, "\u54e6": 3, "\u7741\u5f00": 1}, "banged": {"\u7528": 1, "\u62f3\u982d": 1, "\u62cd": 1}, "1988": {"\u751f\u4e8e": 1, "1988": 1, "\u5e74": 1}, "improve": {"\u5145\u5206\u5229\u7528": 1, "\u4f4f": 1, "\u4f18\u52bf": 1, ",": 1, "": 1}, "impressive": {"\u4f60\u4eec": 2, "\u4fe9": 1, "\u8ba9": 1, "\u4eba": 1, "\u5370\u8c61": 1, "\u6df1\u523b": 1, "\u6211": 1}, "program": {"\u8fd9\u4e2a": 2}, "rerun": {"\u8282\u76ee": 1, "\u91cd\u64ad": 1}, "Paper": {"\u7d19": 2, "\u7531": 1, "\u4e2d\u570b": 1, "\u4eba": 1}, "burns": {"\u71d2": 2, "\u5f97": 1, "\u8eca\u5b50": 1, "\u5f88": 1, "\u8017\u6cb9": 1}, "practice": {"\u7df4\u7fd2": 1, "\u7df4": 1, "\u7fd2\u5f48": 1, "\u4e0a": 1, "\u8bf4": 1, "\u7406\u8bba": 1, ".": 1, "": 2}, "violin": {"\u62c9": 7, "\u5c0f\u63d0\u7434": 10, "\u8ba9\u6211\u62ff": 1, "\u4e00\u4e0b": 1, "\u6f14\u594f": 1, "\u90a3\u500b": 1, "\u64c5": 1, "\u9577\u62c9": 1}, "Year": {"\u8fc7": 2, "\u65b0\u5e74": 3}, "Hard": {"\u52aa\u529b": 1, "\u656c\u4e1a\u7cbe\u795e": 1, "\u4f7f": 1}, "reap": {"\u7a2e": 1, "\u56e0": 1, "\u5f97": 1, "\u679c": 1, "\u79cd\u74dc\u5f97\u74dc": 1, ",": 1, "": 1}, "understands": {"\u7406\u89e3": 3, "\u660e\u767d": 2, "\u4e86\u89e3": 1}, "Anyone": {"\u4efb\u4f55\u4eba": 1, "\u90fd": 1, "\u505a\u5230": 1}, "dictionary": {"\u8fd9\u672c": 2, "\u5b57\u5178": 25, "\u4e00\u672c": 7, "\u672c": 2, "\u672c\u597d": 1, "\u8bcd\u5178": 2, "\u6709\u500b": 1, "\u90fd\u7528": 1, "\u82f1": 2, "\u6cd5": 1}, "Earth": {"\u5730\u7403": 1, "\u4e00\u500b": 1}, "planet": {"\u884c\u661f": 5, "": 1, "\u51a5\u738b\u661f": 1, "\u8fd9": 1, "\u9897": 1, "\u661f\u7403": 1}, "coin": {"\u4eba\u884c\u9053": 1, "\u767c\u73fe": 1, "\u4e00\u679a": 1, "\u786c\u5e63": 1}, "Because": {"\u6765": 1, "\u56e0\u4e3a": 3, "\u5bb6": 1, "": 1, "\u56e0\u70ba": 1, "\u592a": 1, "\u4ed6": 1, "\u8cb7": 1, "\u65c5\u884c": 1}, "tastes": {"\u7576": 1, "\u6771\u897f": 1, "\u800c\u4e14": 1, "\u8d77\u6765": 2, "\u4e5f": 1, "": 1, "\u975e\u5e38": 1, "\u597d\u559d": 2, "\u5473\u9053": 3, "\u4e0d\u932f": 1}, "bathe": {"\u6d17": 1, "\u6fa1": 1, "\u6d17\u6fa1": 1}, "war": {"\u573a": 1, "\u957f\u4e45": 1, "\u6218\u4e89": 4, "\u8fd8": 1, "\u6ca1": 1, "\u6230\u722d": 1}, "credibility": {"\u5931\u53bb": 1, "\u4fe1\u8b7d": 1}, "conversationalist": {"\u4f5c\u70ba": 1, "\u4e00\u500b": 2, "\u826f\u597d": 1, "\u4ea4\u8ac7\u8005": 1, ",": 1, "": 1, "\u4e0d": 1, "\u53ea": 1, "\u610f\u5473": 1, "\u597d": 1, "\u7684": 1}, "tulips": {"\u90c1\u91d1\u9999": 1, "\u5f88": 1, "\u7f8e\u4e3d": 1}, "examination": {"\u9700\u8981": 1, "\u8003\u8bd5": 1, "\u901a\u904e": 3, "\u8003\u8a66": 4, "\u8981\u70ba": 1, "\u8003": 1, "\u8a66\u4f5c": 1, "\u6703": 1, "\u662f": 1}, "spelling": {"\u59d3": 1, "\u600e\u9ebc": 1, "\u62fc": 1, "\u62fc\u5beb": 1, "\u932f\u8aa4": 1}, "knife": {"\u4e00\u628a": 2, "\u5200": 8, "\u5200\u5b50": 2, "\u53ef\u7528": 1}, "starting": {"\u5f00\u59cb": 1, "\u559c\u6b22": 1}, "brand": {"\u8fd9": 1, "\u5168\u65b0": 1}, "jogging": {"\u6162\u8dd1": 4, "": 2, "\u8dd1\u6b65": 2}, "figure": {"\u4e86\u89e3": 1, "\u6b63\u5728": 1, "\u60f3": 1, "\u529e\u6cd5": 2, "\u90a3\u4ef6\u4e8b": 1}, "runs": {"\u8dd1\u5f97\u5feb": 2, "\u8dd1": 4, "\u7d93\u71df": 2, "\u4e2d": 1, "\u8dd1\u6b65": 1, "\u90a3\u4e2a": 1, "\u4e00\u5bb6": 1}, "Keep": {"\u4e0d\u7528": 1, "\u627e": 1, "\u522b": 1, "\u8ba9": 3, "\u8fdb\u6765": 1, "\u9760": 1, "\u53f3\u4fa7": 1, "\u901a\u884c": 1, "\u5927": 1, "\u7559": 2, "\u7740": 2, "\u5427": 3, "\u7ee7\u7eed": 3, "\u575a\u6301": 1, "\u628a": 1, "\u51fa\u6765": 1}, "drawing": {"\u6b63\u5728": 1, "\u753b": 2, "\u4e00\u5e45": 1, "\u70ba": 1, "\u756b": 1, "\u53e3\u4e2d": 1, "\u5f97\u77e5": 1}, "Doing": {"\u8fd9\u6837": 1, "\u505a": 1, "\u505a\u8d77": 1, "\u4f86": 1, "\u5f88\u4e45": 1}, "wakes": {"\u4e00\u9192": 1, "\u6211\u4eec": 1}, "lecture": {"\u56e0": 1, "\u800c": 1, "\u8a13\u65a5": 1, "\u9019\u5834": 1, "\u6f14\u8b1b": 1, "\u8bb2\u5ea7": 2, "\u65f6": 1, "\u8b1b": 1, "\u5ea7": 1}, "dreaming": {"\u8fd8": 2, "\u5728": 2, "\u505a\u68a6": 2, "\u5462": 2}, "exceptions": {"\u6bcf": 1, "\u689d": 1, "\u898f\u5247": 1, "\u4f8b\u5916": 1}, "voice": {"\u8a71": 1, "\u58f0\u97f3": 6, "\u542c\u89c1": 1, "\u8bf4\u8bdd": 2, "\u5c0f\u70b9\u58f0": 1}, "shoulder": {"\u56de": 1, "\u904e": 1, "\u982d": 1, "\u53bb": 1, "\u80a9\u8180": 5, "\u80a9\u4e0a": 4}, "million": {"\u503c": 1, "100": 4, "\u842c": 1, "\u4e2d": 1, "\u4e00\u767e\u4e07": 1, "\u5956": 1, "\u4f60": 1, "\u4e07\u7f8e\u5143": 2, "": 1, "\u6211\u4f1a": 1, "\u4e09\u767e": 1, "\u842c\u7f8e\u5713": 1}, "slight": {"\u5173\u7a97": 1, "\u5427": 1, "\u6709\u70b9": 1, "\u7740\u51c9": 1, "\u6709": 3, "\u4e00\u9ede": 1, "\u8f15\u5fae": 2, "\u982d\u75db": 2, "\u4e9b\u8bb8": 1}, "reserve": {"\u60f3\u8981": 1, "\u8ba2\u623f": 1, "\u9810\u8a02": 1, "\u4e00\u9593": 1, "\u55ae\u4eba": 1, "\u623f": 1}, "rains": {"\u4e0b\u96e8": 10, "": 1, ",": 1, "\u5c31": 1, "\u96e8\u5b63": 1}, "hoped": {"\u66fe\u7ecf": 1, "\u5e0c\u671b": 5, "\u80fd": 1, "\u6d3b\u5230": 1, "\u65f6\u5019": 1, "\u522b": 1, "\u672c": 1, "\u53ef\u4ee5": 1, "\u66fe": 1, "\u7372\u52dd": 1}, "trying": {"\u8bd5": 4, "\u4e5f": 1, "\u65e0\u6d4e\u4e8e\u4e8b": 1, "\u7740": 4, "\u8003\u8651": 1, "\u52aa\u529b": 2, "\u90a3\u6837": 1, "\u8a66\u5716": 1, "\u6709\u7528": 1}, "August": {"8": 1, "\u6708\u4efd": 1, "\u6ca1\u8bfe": 1, "\u8ddf": 1, "\u8bf4": 1, "\u516b\u6708\u4efd": 1}, "margarine": {"\u7528": 2, "\u4eba\u9020\u9ec4\u6cb9": 2, "\u4ee3\u66ff": 1}, "instead": {"\u4ee3\u66ff": 2, "\u6ca1\u6709": 1, ",": 1, "": 1}, "support": {"\u4e00\u5927\u5bb6\u5b50": 1, "\u8981\u990a": 1, "\u990a\u6d3b": 1, ",": 2, "": 2, "\u4ed6\u4eec": 1, "\u652f\u6301": 1, "\u7262\u56fa": 1}, "Come": {"\u4f86": 3, "\u5427": 10, "\u6765": 10, "": 1, "\u8fc7\u6765": 4, "!": 1, "\u8ddf\u6211\u6765": 2, "\u4e00\u8d9f": 1, "\u6211": 1, "\u8ba9": 1, "\u4f60\u4eec": 1, "\u5c31": 3, "\u8981": 1, "\u8fdb\u6765": 3, "\u518d\u4f86": 1, "\u9032\u4f86": 1}, "political": {"\u653f\u6cbb": 2}, "career": {"\u751f\u6daf": 1, "\u5b8c\u86cb": 1, "\u4e86": 1}, "goodbye": {"\u6c92": 1, "\u518d": 1, "\u898b": 1, "\u5c31": 2, "\u4e0d\u8fad\u800c\u5225": 1, "\u751a\u81f3": 1, "\u6ca1": 1, "\u518d\u89c1": 1}, "lips": {"\u7684": 2, "\u5634\u5507": 1, "\u5f88\u6f02\u4eae": 1}, "wedding": {"\u4e00\u5834": 1, "\u5a5a\u79ae": 3, "\u8209\u884c": 1, "\u53c2\u52a0": 2, "\u5a5a\u793c": 4, "\u51fa\u5e2d": 1, "\u5c06": 1, "\u4e3e\u884c": 1}, "Check": {"\u67e5": 1, "\u7d50\u5e33": 1, "\u68c0\u67e5\u4e00\u4e0b": 1}, "sin": {"\u8bf4\u8c0e": 1, "\u4e00\u79cd": 1, "\u7f6a": 1}, "gained": {"\u589e\u52a0": 2, "\u4e86\u9ad4": 1, "\u91cd": 1}, "breathing": {"\u67aa\u6740": 1, "\u90a3": 1, "\u5339": 1, "\u9a6c": 1, "": 1, "\u56e0\u4e3a": 1, "\u4ed6": 1}, "noises": {"\u91cc": 1, "\u53d7\u5230": 1, "\u566a\u97f3": 1, "\u6216\u8005": 1, "\u5176\u4ed6": 1, "\u5e72\u6270": 1}, "For": {"\u5c0d": 2, "\u5167\u7528": 1, "\u5916\u5e36": 1, ",": 1, "\u77e5\u9053": 1, "\u76ee\u524d": 1, "\u8d85\u5e02": 1}, "teaching": {"\u4f86\u8aaa": 1, "": 1, "\u6559": 3, "\u5f88": 1}, "Bring": {"\u628a": 8, "\u62ff\u4f86": 1, "\u7d66": 5, "\u5e36": 1, "\u4f86": 2, "\u5e26": 1, "\u8fdb\u6765": 1, "\u5e26\u7ed9": 1, "\u90a3\u672c": 1, "\u8a5e\u5178": 1, "\u905e": 1, "\u5e26\u5230": 1, "\u6765": 1, "\u5e26\u6765": 1, "\u5e6b": 1, "\u5e36\u4f86": 1}, "newspaper": {"\u5831\u7d19": 4, "\u4e4b\u524d": 1, "\u62a5\u7eb8": 9, "\u4e0a": 3, "\u8b80\u5230": 1, "\u6709\u95dc": 1, "\u6d88\u606f": 1}, "dragged": {"\u4ece": 1, "\u5e8a\u4e0a": 1, "\u722c\u8d77\u6765": 1, "": 1}, "takes": {"\u80fd": 1, "\u4f54": 2, "\u7a7a\u9593": 1, "\u50cf": 1, "\u9700\u8981": 1, "\u98ef\u524d": 1, "\u6beb\u7121\u9593\u65b7": 1, "\u5730": 1}, "dropped": {"\u6389": 2, "\u8f1f\u5b78": 1, "\u628a": 2, "\u5230": 1, "\u5730\u677f": 1, "\u4e0a": 1, "\u6253\u788e": 1, "\u8089\u4ef7": 1, "\u5f04\u6389": 1, "\u4e86": 1}, "stock": {"\u4e13\u6ce8": 1, "\u4e8e": 1, "\u80a1\u5e02": 3, "\u7f3a\u4e4f": 1, "\u5e93\u5b58": 1, "\u5bcc\u4eba": 1, "\u89c9\u5f97": 2, "\u8d5a": 2, "\u4e00\u5927\u7b14\u94b1": 2}, "hole": {"\u7834": 2, "\u6d1e": 7, "\u5927\u6d1e": 2, "\u4e0a": 4}, "evil": {"\u533a\u5206": 3, "\u5584\u6076": 3}, "greatest": {"\u6700": 1, "\u6700\u5927": 1, "\u7f3a\u70b9": 1, "\u5c31\u662f": 1, "\u8bdd": 1}, "artists": {"\u4f1f\u5927": 1, "\u827a\u672f\u5bb6": 2, "\u4e4b\u4e00": 1}, "shoes": {"\u978b\u5b50": 13, "\u978b": 10, "\u812b": 1, "\u5c06": 1, "\u7a7f": 3, "\u53cc\u978b": 2, "\u628a": 1, "\u7a7f\u978b": 1, "\u8131\u978b": 1}, "conveniently": {"\u4f4d": 1, "\u4ea4\u901a": 1, "\u4fbf\u5229": 1}, "observatory": {"\u70ba\u4e86": 1, "\u89c0\u6e2c": 1, "\u661f\u8c61": 1, ",": 1, "\u5efa": 1, "\u4e86": 1}, "built": {"": 1, "\u5efa\u9020": 2, "\u84cb": 3, "\u8fd9": 1, "\u662f": 1, "\u5efa": 2, "\u76d6": 1, "\u680b": 1, "\u65b0\u623f\u5b50": 2, "\u771f\u662f": 1, "\u9020": 1, "\u8fd9\u680b": 1, "\u4e00\u68df": 1}, "sheet": {"\u5e26": 1, "\u4e00\u5f20": 1, "\u7ed9": 1, "\u5e8a\u5355": 1, "\u5e8a\u4e0a": 1}, "disappoint": {"\u522b": 1, "\u8ba9": 1, "\u5931\u671b": 1}, "helped": {"\u5e2e": 7, "\u5e6b": 12, "\u4e5f": 1, "\u5e6b\u52a9": 2, "\u746a\u9e97\u5e6b": 2, "\u505a": 1, "\u5e72": 1, "\u6d3b": 1, "\u4eba": 1}, "juice": {"\u679c\u6c41": 16, "\u860b": 4, "Tom": 7, "\u8cb7": 1}, "participate": {"\u6c92\u6709": 1, "\u53c3\u8207": 1, "\u9019\u500b": 1, "\u53c2\u52a0": 2, "\u5178\u793c": 1}, "nearest": {"\u6700\u8fd1": 13, "\u516c\u8f66\u7ad9": 1, "\u6307\u7ed9": 1, "\u770b": 1, "\u4ead": 1}, "telephone": {"\u96fb\u8a71": 13, "\u7535\u8bdd": 2, "\u7535\u8bdd\u7c3f": 1, "\u623f\u91cc": 1, "\u90e8": 1, "\u4e00\u901a": 1, "\u81ea": 1, "\u6253": 2, "\u7d66": 2, "\u901a\u7535\u8bdd": 1, "\u63a5": 1}, "booth": {"\u4ead": 1}, "clever": {"\u50cf\u662f": 1, "\u500b": 1, "\u8070\u660e": 2}, "bucket": {"\u9019\u500b": 1, "\u6876": 1, "\u6709\u500b": 1, "\u6876\u5b50": 4, "\u8fd9\u6876": 1, "\u88c5\u6ee1": 1, "\u4e00\u6876": 1, "\u500b": 1}, "sympathy": {"\u5bf9": 1, "\u8868\u793a\u540c\u60c5": 1, "\u4e0d": 1, "\u540c\u60c5": 1}, "prisoner": {"\u56da\u72af": 5, "\u90a3\u500b": 1, "\u5f85": 1}, "sued": {"\u72c0\u544a": 1, "\u8ce0\u511f": 1, "\u640d\u5931": 1}, "government": {"\u653f\u5e9c": 3, "\u9078\u51fa": 1, "\u4e86": 1, "\u65b0\u653f\u5e9c": 1}, "probably": {"\u53ef\u80fd": 17, "\u8822\u4e8b": 1, "\u5927\u6982": 2, "": 1, "\u5f88": 1, "\u746a\u8389": 1, "\u5427": 1, "\u90a3\u8fb9": 1}, "2013": {"2013": 3, "\u5e74": 3}, "Two": {"\u4e8c": 2, "\u7b49\u4e8e": 1, "\u56db": 1, "\u4e24\u676f": 2, "\u81ea\u4ece": 1, "": 1, "\u5df2\u7ecf": 1, "\u4e24\u4e2a": 1, "\u7ed9": 1, "\u82f9\u679c\u6c41": 1}, "everybody": {"\u5927\u5bb6": 2, "\u6240\u6709\u4eba": 2, "\u90fd": 5, "\u5173\u6ce8": 1, "\u6bcf\u500b": 2, "\u4eba": 3, "": 1, "\u50cf": 1, "\u7136\u540e": 1, "\u6bcf\u4e2a": 1}, "uncertain": {"\u6e05\u695a": 1, "\u8981": 1, "\u4e0d\u8981": 1, "\u4e0a": 1}, "Ask": {"\u95ee": 7, "\u8be5": 1, "\u53bb": 1, "\u4e00\u4e0b": 2, "\u5427": 1, "\u554f": 1, "\u5d17": 1, "\u54e8": 1, "\uff01": 1, "\u95ee\u95ee": 2, "": 1, "\u6765": 1}, "undone": {"\u8986\u6c34": 1, "\u96e3\u6536": 1, "\u9818": 1, "\u5e36": 1, "\u9b06": 1}, "energy": {"\u5145\u6ee1\u6d3b\u529b": 1, "\u5728": 1, "\u8fd9\u9879": 1, "\u6295\u5165": 1, "\u7cbe\u529b": 1, "\u7cbe\u795e": 1}, "muggy": {"\u4e0d": 1, "\u60b6\u71b1": 1}, "kidnapped": {"\u90a3\u4e2a": 1, "\u8def\u4e0a": 1, "\u88ab": 1, "\u7ed1\u67b6": 1}, "standing": {"\u7ad9": 8, "\u95e8\u53e3": 1, "\u5728": 2, "\u7740": 1, "\u6c64\u59c6": 1, "\u8fd8": 1, "\u5899\u540e": 1, "\u6b63": 1, "\u90a3\u500b": 1}, "afford": {"\u5bcc": 1, "\u5f97": 1, "\u80fd": 1, "\u4e1c\u897f": 2, "\u8ca0\u64d4": 1, "\u8d77": 4, "\u8cbb\u7528": 1, "\u8cb7": 2, "\u4e0d\u8d77": 2, "\u4ed8\u4e0d\u8d77": 1, "\u4e70\u4e0d\u8d77": 4, "\u627f\u64d4": 1, "\u4e0d\u4e86": 1, "\u5f8c": 1, "\u679c": 1, "\u6211\u5011": 1, "\u4ed8\u5f97": 1, "\u9019\u7a2e": 1, "\u9322": 1, "\u8d1f\u62c5": 1}, "primary": {"\u8ba9": 1, "\u5c0f\u5b66\u751f": 1}, "artist": {"\u5f53": 1, "\u827a\u672f\u5bb6": 2, "\u4e00\u4e2a": 1}, "dye": {"\u66f4": 1, "\u60f3": 1, "\u628a": 1, "\u67d3\u6210": 1, "\u91d1\u8272": 1}, "perfectly": {"\u5341\u5206": 2, "\u7acb\u5834": 1}, "spend": {"\u5446": 2, "\u51e0\u5e74": 1, "\u82b1": 4, "\u5e94\u8be5": 1, "\u82b1\u70b9": 1, "\u8fc7": 1, "\u591a\u628a": 1, "\u5728": 2, "\u4e0a": 1}, "remained": {"\u7368\u8eab": 1, "\u6c89\u9ed8\u4e0d\u8bed": 2, "\u90fd": 2, "\u4f9d\u65e7": 1, ",": 1, "": 1, "\u7ec8\u751f": 1, "\u672a\u5a5a": 1}, "totally": {"\u5b8c\u5168": 2, "\u4e0d": 2, "\u61c2": 1, "\u4e00\u7247": 1, "\u6f06\u9ed1": 1, "\u751a\u9ebc": 1, "\u6b63\u78ba": 1, "\u932f\u8aa4": 1}, "tire": {"\u8f6e\u80ce": 1, "\u6f0f\u6c14": 1}, "With": {"\u5982\u679c": 3, "\u5f53\u65f6": 1, "": 2, "\u5c31": 1}, "effort": {"\u52aa\u529b": 4, "\u4e0d\u52b3\u800c\u83b7": 3, "\u76e1": 1, "\u4e00\u5207": 1, "\u4f86": 1}, "boiled": {"\u716e": 2, "\u4e86": 1, "\u5341\u53ea": 1}, "Read": {"\u8bfb": 1, "\u770b": 1, "\u76e1": 1, "\u5730": 1, "\u95b1\u8b80": 1, "\u66f8\u7c4d": 1, "\u5ff5": 1}, "On": {"\u300c": 2, "\u54ea": 1, "\u300d": 1, "": 1}, "scissors": {"\u8fd9": 1, "\u526a\u5200": 1, "\u4e0d\u597d": 1, "\u7528": 1}, "cut": {"\u628a": 4, "\u526a": 4, "\u5c07": 1, "\u526a\u6210": 1, "\u600e\u6a23": 1, "\u5207": 2, "\u4f86": 1, "\u780d": 1, "\u9580\u524d": 1, "\u526a\u77ed": 1}, "nobody": {"\u6c92": 5, "\u6709\u4eba": 2, "\u8ac7\u8ad6": 1, "": 3, "\u4f46\u662f": 2, "\u505a": 1, "\u74b0\u9867": 1, "\u56db\u5468": 1, "\u73fe": 1, "\u5728\u5efa": 1, "\u7bc9": 1, "\u4eba": 2}, "scratchy": {"\u8d77\u6765": 1, "": 3, "\u53d8\u5f97": 1}, "begging": {"\u8981\u6c42": 1, "": 1, "\u6211": 1, "\u6c42": 1, "\u5e2e\u5fd9": 1}, "walking": {"\u6b63\u5728": 1, "\u8def": 1, "\u8fb9\u8d70\u8fb9\u770b": 1, "\u4e66": 1, "\u7368": 1, "\u81ea\u884c": 1, "\u8d70": 7, "\u4e00\u4e2a\u7537\u5b69": 1, "\u6b63": 2, "\u591c\u665a": 1, "\u8d70\u8def": 1, "\u5728": 1, "\u884c\u8d70": 1, "\u518d": 1, "\u4e2d": 1, "\u6f2b\u6b65": 1}, "Grab": {"\u6293\u4f4f": 4, "\u90a3\u4e2a": 1}, "resting": {"\u73b0\u5728": 1, "\u4f11\u606f": 3, "\u4e00\u4e0b": 1}, "rescue": {"\u71df\u6551": 1, "\u62ef\u6551": 1}, "Bird": {"\u89c2\u5bdf": 1, "\u9e1f\u7c7b": 1, "\u4e2a": 1, "\u5f88\u597d": 1, "\u4e1a\u4f59\u7231\u597d": 1}, "prize": {"\u5956\u9879": 1, "\u4e0d\u4f1a": 1, "\u6388\u7ed9": 1, "\u5f97": 4, "\u7b2c\u4e00\u540d": 3}, "glass": {"\u4e00\u676f": 12, "": 1, "\u7ed9": 1, "\u9019\u500b": 1, "\u73bb\u7483\u676f": 2, "\u60f3\u8981": 1, "\u676f\u5b50": 1, "\u676f\u9152": 1}, "traveled": {"\u5468\u904a": 5, "\u4e16\u754c\u5404\u5730": 4, "\u66fe\u7d93": 1, "\u65c5\u884c": 3, "\u5168\u570b": 1, "\u5404\u5730": 1, "\u6d3d\u5546": 1, "\u65c5\u904a": 1, "\u73af\u6e38": 1}, "rugby": {"\u6a44\u6984\u7403": 2, "\u66fe": 1, "\u82f1\u5f0f": 1, "\u8fd0\u52a8\u5458": 1, "\u64c5\u9577": 1, "\u6a44\u6b16\u7403": 1}, "prefer": {"\u5b81\u613f": 1, "\u8fd9\u4e2a": 1, "\u559c\u6b61": 6, "\u52dd": 3, "\u904e": 3, ",": 4, "": 5, "\u6211": 4, "\u6bd4\u8d77": 2, "\u66f4": 4, "\u5be7\u9858": 2, "\u9858": 1, "\u9592\u8457": 1, "\u559c\u6b22": 2, "\u6bd4\u8f03": 1, "\u4f46": 1}, "skies": {"\u5929\u7a7a": 2, "\u5f88": 2, "\u6e05\u6717": 1}, "clear": {"\u6674\u6717": 5, "\u628a": 3, "\u6f84\u6e05": 3, "\u4e00\u4e0b": 2, "\u6e05\u9664": 1, "\u8a71": 1, "\u6e05\u695a": 3, "\u5f88": 3, "\u660e\u986f": 1, "\u5730": 2, "\u6765": 1, "\u986f\u7136": 1, "\u52e2": 1, "\u5fc5\u8981": 1, "\u4e9b": 1, "\u5929\u6c23": 1, "\u8f49": 1, "\u6674": 1, "\u6211": 1, "\u6c92": 1, "\u65e5\u5b50": 1, "\u6e05\u7406": 1, "\u5e72\u51c0": 1, "\u50cf": 1}, "risks": {"\u8fd9\u4e48": 1, "": 1, "\u4f60": 1, "\u5192\u9669": 1, "\u98a8\u96aa": 1}, "profession": {"\u804c\u4e1a": 1, "\u4e00\u4f4d": 1, "\u4e13\u804c": 1}, "held": {"\u4e3e\u529e": 1, "\u4e00\u573a": 1, "\u821e\u4f1a": 1, "\u5c07": 2, "\u5728": 1, "": 1, "\u65bc": 1, "\u8209\u884c": 1, "\u9019\u5bb6": 1, "\u4e00": 1, "\u9031\u524d": 1, "\u6436\u52ab": 1}, "type": {"\u6253\u5b57": 1, "\u6bd4\u85a9\u985e": 1, "\u578b": 1, "\u751a\u9ebc": 2, "\u8840\u578b": 2, "\u7c7b\u578b": 1, "\u83dc": 1, "\u4ec0\u4e48\u6837": 1}, "snows": {"\u4e0b\u96ea": 2, "\u5929\u4e0b": 1, "\u597d\u591a": 1, "\u96ea": 1}, "explorers": {"\u63a2\u9669\u5bb6": 1, "\u4eec": 1, "\u9ab8\u9aa8": 1}, "skeleton": {"\u6d1e\u7a74": 2, "\u4e00\u5177": 1, "\u9aa8\u67b6": 1}, "cave": {"\u91cc": 3, "\u6d1e": 1, "\u53d1\u751f": 1, "\u201c": 1, "\u6211": 1, "\u5c71\u6d1e": 1, "\u767c\u751f": 1, "\u4e8b": 1}, "discovered": {"\u53d1\u73b0": 7, "\u767c\u73fe": 5, "\u5f53": 1, "\u767c\u89ba": 1, "\u5df2\u7ecf": 1, "\u65ad\u76d0": 1, "": 1, "\u7531": 1}, "happiness": {"\u94b1": 1, "\u4e70\u4e0d\u5230": 1, "\u5e78\u798f": 3, "\u9676\u9189": 1, "\u5728": 1, "\u88e1": 1, "\u5fc3\u91cc": 1, "\u7740": 1, "\u5feb\u4e50": 1}, "Playing": {"\u5f88": 2, "\u6709\u8da3": 2}, "these": {"\u8fd9\u4e9b": 8, "\u9019\u4e9b": 17, "\u66f8\u8981": 1, "\u8111\u888b": 1, "\u8fd9": 1, "\u8981": 1, "\u6700\u8fd1": 1, "": 1, "\u62bd": 1, "\u6765\u770b": 1}, "Air": {"\u5e74": 1, "\u7a7a\u6c14\u8d28\u91cf": 1, "\u6076\u5316": 1}, "Good": {"\u5e72": 1, "\u597d": 3, "\u65e9\u4e0a\u597d": 1, "\uff01": 3, "\u65e9\u5b89": 1, "": 2, "\u795d\u4f60\u597d\u8fd0": 1, "\u665a\u5b89": 1, "\u8003\u8bd5": 2, "\u52a0\u6cb9": 1}, "Congratulations": {"\u542c\u8bf4": 1, "\u5165\u5b66\u8003\u8bd5": 1, "": 1, "\u795d\u8d3a": 1, "\u4f60": 1, "\u606d\u559c": 1}, "consented": {"\u540c\u610f": 1, "\u9019\u4f4d": 1, "\u8001\u592a\u592a": 1}, "beat": {"\u6c38\u8fdc": 1, "\u4e0d\u4f1a": 1, "\u6253\u8d25": 1}, "valuables": {"\u8be5": 1, "\u503c\u94b1": 1, "\u7269\u54c1": 1, "\u4fdd\u5b58": 1, "\u4e00\u4e2a": 1}, "toy": {"\u8fd9\u4e2a": 1, "\u73a9\u5177": 6, "\u5f04": 2, "\u58de": 2, "\u9019\u500b": 1, "\u7528": 2, "\u6728\u982d": 2}, "wood": {"\u6728\u5236": 3, "\u5f20": 3, "\u5f80": 1, "\u88e1": 1, "\u6dfb": 1, "\u6728\u67f4": 1, "\u4e66\u684c": 1, "\u6728": 1}, "listening": {"\u5c31": 1, "\u6ca1\u5728": 1, "\u542c": 11, "\u807d": 12, "\u6b63\u5728": 2, "\u603b": 2, "\u4f60\u4eec": 1, "\u5728": 2, "\u8bf4": 1, "\u7740": 1, "\u4e86\u542c": 1, "\u8bf4\u8bdd": 1}, "treats": {"\u5c0d\u5f85": 1, "\u5c31": 1, "\u5974\u96b8": 1}, "slave": {"\u50cf": 2, "\u5974\u96b6": 1, "\u4e00\u6837": 1}, "Yesterday": {"\u6628\u5929": 8}, "board": {"\u8463\u4e8b": 2, "\u6703\u6703\u8b70": 2, "\u975e\u5e38": 1, "\u8239\u4e0a": 1}, "meditate": {"\u904e\u53bb": 1, "\u6642\u5e38": 1, "\u6642\u5019": 1, "\u51a5\u60f3": 1}, "competitions": {"\u8a31\u591a": 2, "\u6bd4\u8cfd": 2}, "inside": {"": 1, "\u4f46": 1, "\u88cf": 1, "\u6c92": 1, "\u7a7f\u53cd": 2, "\u88e1\u9762": 3, "\u628a": 1, "\u5230": 1}, "driver": {"\u6709": 2, "\u5f00\u8f66": 1, "\u500b": 1, "\u53f8\u6a5f": 1, "\u53f8\u673a": 3, "\u6ca1\u6709": 1, "\u6a5f": 1}, "sooner": {"": 2, "\u6211": 2, "\u6c92\u6709": 2, "\u8fdf\u65e9\u4f1a": 1, "\u8981": 1, "\u66f4\u5feb": 1, "\u65e9\u665a": 1, "\u8981\u6b7b": 1}, "donate": {"\u6bcf": 1, "\u4e09\u4e2a": 1, "\u732e": 1, "\u4e00\u6b21": 1}, "blood": {"\u8840": 4, "\u6350\u8840": 1, "\u4f86": 1, "\u5e0c\u671b": 1, "\u505a": 1, "\u8840\u6db2": 1, "\u6aa2\u67e5": 1}, "turned": {"\u8c03": 1, "\u5927\u58f0": 1, "\u5fc3\u91cc": 1, "\u53cd\u590d": 1, "\u601d\u91cf": 1, "\u8b49\u660e": 2, "\u4e86": 10, "\u672c\u8be5": 1, "\u5f80": 1, "\u5de6\u8f6c": 1, "\u5374\u5f80": 1, "\u53f3\u8f6c": 1, "\u5c0b\u6c42": 1, "\u51fa\u73fe": 1, "\u8f49\u597d": 1, "\u7d50\u679c": 1}, "Arithmetic": {"\u7b97\u6570": 1, "\u5904\u7406": 1}, "numbers": {"\u6570\u5b57": 2}, "service": {"\u4e00\u4efd": 1, "\u670d\u52d9": 2, "\u90a3\u5bb6": 1, "\u63d0\u4f9b": 1, "\u826f\u597d": 1}, "founded": {"\u6240": 3, "\u7531": 1, "\u5efa\u7acb": 1, "\u5275\u7acb": 1, "\u9019": 1, "\u5efa": 1}, "largest": {"\u6700\u5927": 8}, "bedroom": {"\u5367\u5ba4": 4, "\u81e5\u5ba4": 4, "\u56de\u5230": 1, "\u623f\u9593": 1, "\u91cc": 2}, "south": {"\u671d\u5357": 1, "\u7fa4\u9e1f": 1, "\u5357\u7fd4": 1, "\u662f\u4ece": 1, "\u5357\u90e8": 1, "\u82f1\u570b": 1, "\u5357\u908a": 1}, "As": {"\u4e00": 2, "\u64da": 2, "\u6240\u77e5": 2, "\u53ea\u8981": 3, "\u4e2d": 1, "": 6, "\u4ee5": 1, "\u4e4b": 1, "\u89c1": 1, "\u9019\u5152": 1, "\u5c31": 1, "\u8a08\u756b": 1, "\u65e2\u7136": 1, "\u90a3": 1, "\u8dd1": 1, "\u6211\u5011": 1, "\u636e\u6211\u6240\u77e5": 1}, "Taiwan": {"\u53f0\u7063": 1, "\u5f88": 1}, "Tuesday": {"\u5468\u4e8c": 2, "\u5df2\u7ecf": 1, "\u63a8\u8fdf": 1, "\u661f\u671f\u4e8c": 1, "\u9084\u662f": 1, "\u661f\u671f\u4e09": 1}, "supply": {"\u8fd9\u5bb6": 1, "\u63d0\u4f9b": 1, "\u6240\u6709": 1, "\u4e1c\u897f": 1, "\u4f9b\u7ed9": 1, "\u4e0d\u8db3": 1, "\u7684\u7684": 1, "": 1, "\u7684": 1}, "stronger": {"\u5f37\u58ef": 1, "\u4f7f": 1, "\u817f\u90e8": 1, "\u5f3a\u5065": 1}, "disturbed": {"\u90a3": 1, "\u58f0\u97f3": 1, "\u6405": 1, "\u7f8e\u68a6": 1}, "bulletproof": {"\u4e00\u4ef6": 1, "\u9632\u5f48": 1, "\u8863": 1, "": 1, "\u6240\u4ee5": 1, "\u5b50\u5f48": 1, "\u4ed6": 1}, "kill": {"\u628a": 1, "\u7740": 1, "\u6740\u6b7b": 1, "\u4f01\u5716": 1, "\u81ea\u6bba": 2, "\u7238\u4f1a": 1, "\u6740": 2, "\u6bba": 3, "\u8981": 1, "\u6d88\u78e8": 1, "\u7528\u836f": 1, "\u6765": 1, "\u9547\u75db": 1}, "kilometers": {"\u4e09": 1, "\u516c\u91cc": 1, "\u96e2": 1, "\u6211\u5bb6": 1, "\u6709": 1, "\u4e94\u516c\u91cc": 1, "\u9060": 1}, "travel": {"\u65c5\u884c": 14, "\u65c5\u6e38": 2, "\u4e50\u4e8b": 1, "\u53bb": 2, "\u74b0\u904a": 1, "\u53ef\u4ee5": 1, "\u4ee4\u4eba": 1, "\u5feb\u4e50": 1, "\u642d": 1, "\u6211": 1}, "Ginza": {"\u9280\u5ea7": 1, "\u642d\u4e58": 1, "\u5730\u9435": 1}, "arriving": {"\u4ec0\u4e48": 1, "\u6765": 1, "\u8ddf": 1, "\u5225\u4eba": 1, "\u8aaa": 1, "\u904e": 1, "\u6211\u4ec0\u9ebc": 1, "\u6642\u5019": 1, "\u5230": 1}, "sadness": {"\u5e6b\u52a9": 1, "\u5e73\u64ab": 1, "\u60b2\u50b7": 1}, "owe": {"\u6b20": 12, "\u4ec0\u4e48": 1, "\u628a": 1, "\u6b78\u529f": 1, "\u591a\u4e8f": 1}, "wake": {"\u53eb": 3, "\u8d77\u4f86": 1, "\u662f": 1, "\u53eb\u9192": 3, "\u53ef\u4e0d\u53ef\u4ee5": 2, "\u5b30\u5152": 1, "\u8bbe\u6cd5": 1, "\u4e0d\u8ba9": 1, "\u9192": 1, "\u5e7e\u9ede": 2, "\u6253\u7b97": 1, "": 2, "\u5feb": 1, "\u9192\u9192": 1}, "candle": {"\u706f\u706d\u4e86": 1, "": 1, "\u6c64\u59c6": 1, "\u8d77": 1}, "delicious": {"\u7f8e\u5473": 7, "\u5f88": 5, "\u70ba": 1, "\u4e00\u9813": 1, "\u9019\u5bb6": 1, "\u9910\u5ef3": 1, "\u597d\u5403": 1, "\u60a8": 1}, "Translating": {"\u7ffb\u8bd1": 1, "\u8fd9\u4e2a": 1, "\u4f1a": 1}, "meant": {"\u4ee5": 1, "\u610f\u601d": 4, "\u771f\u5b9e": 1, "\u6e05\u695a": 1, "\u662f": 2, "\u751a\u9ebc": 1}, "realize": {"\u660e\u767d": 2, "\u751a\u9ebc": 1, "\u5f53": 1, "\u771f\u6b63": 1, "\u81ea\u5df1": 2, "\u65f6": 1}, "kite": {"\u653e": 2, "\u98a8\u7b8f": 4, "\u4e00\u53ea": 1, "\u98ce\u7b5d": 1}, "Flying": {"\u662f": 1, "\u642d": 1, "\u98db\u6a5f": 1}, "join": {"\u53c3\u52a0": 2, "\u52a0\u5165": 3, "\u4f60\u4eec": 2, "\u548c": 1, "\u4e00\u8d77": 1, "\u771f": 1, "\u665a\u4f1a": 1}, "ended": {"\u7ed3\u675f": 3, "\u7d50\u675f": 8, "\u6703\u8b70": 1, "\u63d0\u65e9": 1}, "Winter": {"\u51ac\u5929": 2, "\u7d50\u675f": 1, "\u51ac\u5b63": 2, "\u5feb": 2, "\u4f86": 1}, "season": {"\u559c\u6b22": 2, "\u5b63\u8282": 3, "\u60a8": 1, "\u54ea\u4e2a": 1, "\u4e4b\u4e2d": 1, ",": 1, "\u4f60": 1, "\u6700": 1, "\u5b63\u7bc0": 1}, "gathers": {"\u6eda\u77f3": 2, "\u4e0d\u751f": 2, "\u82d4": 2}, "proverb": {"\u4e00\u53e5": 1, "\u8c1a\u8bed": 1}, "wreck": {"\u4e00\u540d": 1, "\u98db\u6a5f": 1, "\u6b98\u9ab8": 1, "\u4e2d": 2, "\u6551\u51fa": 1, "\u4f86": 1, "\u4e00\u767e\u591a\u4e2a": 1, "\u4e8b\u6545": 1, "\u53d7\u4e86\u4f24": 1}, "stewardess": {"\u7a7a\u59d0": 3, "\u5a36": 2, "\u4e00\u4f4d": 1, "\u4e00\u4e2a": 1}, "Putting": {"\u628a": 1, "\u4ed8\u8af8": 1, "\u5be6\u8e10": 1, "\u56f0\u96e3": 1}, "sensitive": {"\u5bf9": 1, "\u6279\u8bc4": 1, "\u654f\u611f": 2, "\u5c0d": 1, "\u6279\u8a55": 1}, "blueberries": {"\u85cd\u8393": 1, "\u3001": 4, "\u9ed1\u8393": 1, "\u6afb\u6843": 1, "\u6cb9\u6843": 1}, "strawberries": {"\u8349\u8393": 5}, "peaches": {"\u6843\u5b50": 2, "\u4e0d\u662f": 1, "\u5f88\u751c": 1}, "Was": {"\u5835\u5899": 1, "\u4e3a\u4e86": 1, "\u9694": 1, "\u5916\u9762": 1, "\u91cc\u9762": 1, "\u5417": 8, "\u5c31\u662f": 1}, "skating": {"\u8fc7\u540e": 1, "": 1, "\u89c9\u5f97": 1}, "needle": {"\u6296": 1, "\u5f97": 1, "\u5389\u5bb3": 1, "": 2}, "thread": {",": 1, "": 2, "\u5462": 1}, "broken": {"\u8981\u662f": 1, "\u574f": 1, "\u4e86": 6, "\u5462": 1, "\u8fd9\u4e2a": 1, "\u574f\u6389": 1, "\u5f04\u574f\u4e86": 1, "\u6454\u574f": 1}, "jam": {"\u7528": 1, "\u679c\u91ac": 1, "\u4ed6": 1, "\u4ea4\u901a\u5835\u585e": 1}, "cute": {"\u53ef\u7231": 4, "\u554a": 1, "\u53ef\u611b": 1, "\u4e00\u53cc": 1, "\u5f88": 1, "\u89ba\u5f97": 1, "\u6771\u897f\u840c": 1, "\u9a6c\u529b": 1, "": 1}, "cradle": {"\u6416": 1, "\u7c43\u88e1": 1, "\u6447\u7bee": 1, "\u91cc": 1, "\u6416\u7c43": 1}, "sleeping": {"\u7761\u89ba": 5, "\u7761\u89c9": 6, "\u5728": 2, "\u6b63": 1, "\u7761\u7740": 1, ",": 1, "\u4e2a": 1, "\u7761\u4e0b": 2, "\u4ee5\u70ba": 1, "\u7761\u89c9\u65f6": 1, "\u4e0d\u5403": 1, "\u53d1": 1}, "parade": {"\u8def\u4e0a": 1, "": 1, "\u6211": 1, "\u770b\u5230": 1}, "cry": {"\u54ed": 12, "\u5c31": 1, "\u4e8b": 1, "\u628a": 1, "\u60f9": 1, "\u76ef": 1, "\u7740": 1, "\u751a\u81f3": 1, "\u53b2\u5bb3": 1, "\u8981": 1, "\u522b\u54ed": 1, "\u53ea\u662f": 1, "\u771f": 1, "\u4e00\u76f4": 1, "\u54ed\u54ed\u557c\u557c": 1, "\u65f6": 1, "\u6211": 1, "\u5fcd\u4f4f": 1}, "post": {"\u90ae\u5c40": 5, "\u525b\u525b": 2, "\u90f5\u5c40": 5, "\u9644\u8fd1": 1, "\u4e00\u9593": 1, "\u6211": 1, "\u90a3": 1, "\u982d": 1}, "canceled": {"\u5927\u6982": 1, "\u53d6\u6d88": 2, "\u4e86": 1}, "cream": {"\u5fc5\u987b": 1, "\u51b0\u6fc0\u51cc": 1, "\u51b0\u6dc7\u6dcb": 4, "\u653e": 1, "\u5976\u6cb9": 3, "\u6dc7": 1, "\u51cc": 1, "\u4e0a\u52a0": 1}, "sweet": {"\u751c": 4, "\u4e00\u5207": 1, "\u6771\u897f": 4, "\u4e0d\u751c": 1, "\u60a8": 1, "\u771f\u662f": 1, "\u592a\u597d\u4e86": 1, "\u5403\u751c": 1}, "earns": {"\u9760": 1, "\u5beb\u4f5c": 1, "\u8b00\u751f": 1, "\u4e24\u500d": 1, "\u8d5a": 1, "\u591a\u4e09\u500d": 1}, "notebook": {"\u7b46": 2, "\u8a18\u672c": 1, "\u7b46\u8a18": 3, "\u672c": 5, "\u6389": 1, "\u6709\u4eba": 1, "\u628a": 2, "\u7b46\u8a18\u672c": 1, "\u96fb\u8166": 1, "\u5077\u6389": 1, "\u8bb0": 1, "\u7b14\u8bb0\u672c": 1, "\u9019": 1, "\u81fa": 1, "\u8a18": 1, "\u96fb": 1, "\u8166": 1}, "comparison": {"\u6bd4": 1, "": 1}, "appointment": {"\u7d04": 2, "\u9084\u662f": 1, "\u9810\u7d04": 2, "\u770b\u8a3a": 1, "": 1, "\u6211": 1, "\u8fd8\u6709": 1, "\u53e6": 1, "\u6703": 1, "\u53ca\u6642": 1, "\u8d74\u7d04": 1}, "idea": {"\u77e5\u9053": 12, "\u4e3b\u610f": 15, "\u6b63\u5728": 2, "\u767c\u751f": 3, "\u60f3\u6cd5": 5, "\u4e00\u500b": 1, "\u4e5f": 1, "\u5bf9": 1, "\u4e2a": 1, "\u4e00\u65e0\u6240\u77e5": 2, "\u73fe\u5728": 1, "\u6e05\u695a": 1, "\u9019\u88e1": 1, "\u771f\u662f": 1, "\u4e0d\u884c": 2, "\u4e00\u4e2a": 1, "\u600e\u4e48\u529e": 1, "": 1}, "junk": {"\u62ff": 1, "\u8f66\u5e93": 1, "\u90a3\u4e9b": 1, "\u5e9f\u7269": 1, "\u600e\u4e48\u529e": 1, "\u7ecf\u5e38": 1, "\u5783\u573e": 1, "\u98df\u54c1": 1}, "discuss": {"\u8fd8\u6709": 1, "\u522b\u7684": 1, "\u8ba8\u8bba": 4, "\u8fd9\u4e2a": 2, "\u4e0d\u8981": 2, "\u6765": 1, "\u5546\u91cf": 2, "\u8a0e\u8ad6": 1, "\u9019\u4ef6": 1, "\u8ba8\u8bba\u4e00\u4e0b": 1, "\u6709\u4ef6\u4e8b": 1, "\u8c08\u8bba": 1}, "speaking": {"\u6c92": 1, "\u8aaa": 8, "\u8bf4": 3, "\u5728": 3, "\u8ddf": 1, "\u8bf4\u8bdd": 3, "\u64c5\u9577": 2, "\u6211": 1, "\u5bf9": 1, "\u6c92\u807d": 1, "\u8b1b": 1}, "knocked": {"\u6572\u9580": 1, "\u6572\u95e8": 1, "": 1, "\u6ca1\u6709": 1, "\u62c6\u6389": 1, "\u4e00\u90e8\u5206": 1, "\u6572": 1}, "doggy": {"\u770b\u4f86": 1, "\u5f97": 1, "\u6253\u5305": 1}, "tin": {"\u5206\u8fa8": 2, "\u9280\u548c\u932b": 2, "?": 2}, "social": {"\u793e\u6703": 1, "\u5de5\u4f5c": 1, "\u4eba\u54e1": 1}, "wherever": {"\u54ea\u88e1": 3, "\u90fd": 2, "\u60f3\u53bb": 1, "\u5730\u65b9": 2, "\u54ea\u513f": 2, "\u5c31": 1}, "1939": {"\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218": 2, "1939": 2, "\u5230": 2}, "World": {"\u5e74": 5, "1945": 3}, "lasted": {"\u6301\u7eed": 3, "\u6301\u7e8c": 3, "\u4e00\u76f4": 1, "\u9ede": 1, "\u9418": 1, "\u9019\u500b": 1}, "beach": {"\u53bb": 1, "\u6d77\u6ee9": 7, "\u54ea\u6761": 1, "\u73a9\u800d": 1, "\u6c99\u7058": 3, "\u6d77\u908a": 3, "\u6d77\u7058": 1, "\u975e\u5e38\u5c11": 1}, "prices": {"\u552e\u50f9\u7528\u7d05": 1}, "ink": {"\u58a8\u6c34": 3, "\u7528": 2, "\u5199\u4e0b": 1, "\u65e0\u6240\u8c13": 1, "": 1, "\u4e00\u652f": 1, "\u5225": 1, "\u7d05": 1}, "written": {"\u5beb": 7, "\u5199": 7, "\u59d3\u6c0f": 1, "\u6536\u5230": 1, "\u7528": 4, "\u9019": 2, "\u4fe1\u662f": 1, "\u5199\u7ed9": 2}, "prettier": {"\u6ca1\u6709": 1, "\u66f4": 1, "\u6f02\u4eae": 1}, "chemistry": {"\u5316\u5b66": 2, "\u5f88": 1, "\u5dee": 1}, "whiter": {"\u76ae\u80a4": 1, "\u6bd4\u96ea": 1, "\u8fd8": 1, "\u767d": 1}, "wig": {"\u6234": 1, "\u5047": 1, "\u9aee": 1, "\u5047\u53d1": 1}, "bitter": {"\u4ec7": 1, "\u6575": 1}, "cover": {"\u7ed9": 1, "\u8f66\u76d6": 1, "\u4e0a\u5957": 1, "\u5c06": 1, "\u8d1f\u62c5": 1, "\u5168\u90e8": 1, "\u8d39\u7528": 1, "\u90a3\u4e9b": 1, "\u8db3\u5920": 1, "\u652f\u4ed8": 1, "\u8cbb\u7528": 1}, "nurse": {"\u4e00\u540d": 1, "\u62a4\u58eb": 9, "": 1, "\u4f4f": 1, "\u8857": 1, "\u6210\u4e3a": 1, "\u8fd9\u4e2a": 1}, "send": {"\u7ed9": 6, "\u628a": 4, "\u5bc4\u7ed9": 1, "\u6d3e": 3, "\u4eba": 4, "\u8acb": 5, "\u4f86": 3, "\u5bc4\u4fe1": 1, "\u7d66": 2, "\u5bc4": 2, "\u5c01": 1, "": 3, "\u53ef\u662f": 1, "\u9001\u5230": 1, "\u6d3e\u51fa": 1, "\u4f60\u5011": 1, "\u767c\u7d66": 1}, "cash": {"\u73fe\u91d1": 2, "\u4e0d\u5920": 1, "\u7528": 1, "\u6212\u6307": 1, "\u4e00\u70b9": 1, "\u73b0\u91d1": 1, "\u60f3\u7528": 1, "\u652f\u4ed8": 1, "\u9322": 1, "\u7f3a\u9322": 1}, "engaged": {"\u8ddf": 1, "\u8a02\u5a5a": 1, "\u5802\u59ca\u59b9": 1, "\u8ba2\u5a5a": 1}, "department": {"\u767e\u8ca8": 1, "\u516c\u53f8": 1, "\u6d88\u9632\u5458": 1, "\u4e00\u8d77": 1, "\u53bb": 1, "\u90e8\u9580": 2, "\u8ca0\u8cac": 1, "\u9019\u500b": 1}, "official": {"\u5b98\u65b9": 1, "\u4e0d\u662f": 1, "\u9078": 1, "\u51fa\u4f86": 1, "\u5b98\u54e1": 1}, "Interest": {"\u5229\u7387": 2, "\u8fd8\u662f": 1}, "inflation": {"\u901a\u8d27\u81a8\u80c0": 1, "\u5f88": 1, "\u9ad8": 1}, "Greek": {"\u5b8c\u5168": 1, "\u770b\u4e0d\u61c2": 1, "\u9019\u500b": 1, "\u8a5e": 1, "\u6e90\u4e8e": 1, "\u5e0c\u81d8\u8a9e": 1, "\u5bf9\u6b64": 1, "\u4e00\u7a8d\u4e0d\u901a": 1}, "planning": {"\u672c\u6765": 1, "\u9884\u5907": 1, "": 1, "\u51c6\u5907": 2, "\u9700\u8981": 1, "\u78ba\u8a8d": 1, "Tom": 2, "\u9019": 1, "\u6253\u7b97": 7, "\u8fc7\u591c": 1, "\u8ba1\u5212": 1, "\u4e8b\u513f": 1, "\u7559\u5bbf": 1}, "devoured": {"\u72fc\u541e\u864e\u54bd": 1, "\u5730": 1, "\u5403": 1, "\u4e00\u987f": 1}, "problems": {"\u95ee\u9898": 8, "\u554f\u984c": 3, "\u9047\u5230": 1, "\u76ee\u524d": 1, "\u627e\u4e8b": 1, "\u5904\u7406": 1, "\u6765\u8bf4": 1}, "compared": {"\u548c": 2, "\u6bd4": 1, "\u8d77\u6765": 1, "\u4e0d\u7b97\u4ec0\u4e48": 1}, "hers": {"\u5979": 3, "": 2, "\u7684": 1}, "vanished": {"\u4e0d\u89c1": 1, "\u4e86": 1}, "denies": {"\u90a3\u4e2a": 1, "\u5426\u8ba4": 1}, "stealing": {"\u5077": 6, "\u6293\u5230": 3, "\u5728": 1, "\u9019\u500b": 1, "\u6b63\u5728": 1}, "lies": {"\u8aaa": 2, "\u8b0a": 2, "\u932f\u8aa4": 1, "\u522b": 1, "\u8bf4\u8c0e": 2, "!": 1, "\u4f1a": 1, "\u770b\u7a7f": 1, "\u8b0a\u8a00": 1, "\u4e0d\u8981": 1, "\u4f60": 1, "\u6211\u5bb6": 1, "\u8eba": 1}, "keeps": {"\u628a": 1, "\u4fdd\u6301": 2, "\u4e7e": 2, "\u6de8": 2, "\u9075\u5b88": 1, "\u8bfa\u8a00": 1, "\u591a\u5c11": 1, "\u6b21": 1, "": 1, "\u5979": 1}, "socks": {"\u896a\u5b50": 6, "\u812b\u6389": 1, "\u5c06": 1, "\u889c\u5b50": 3, "\u91cc\u5916": 1, "\u7a7f\u7740": 1, "\u4e0a\u5e8a\u7761\u89c9": 1, "\u812b\u4e0b": 1, "\u8131": 1}, "footprints": {"\u767c\u73fe": 1, "\u6c99\u7058": 1, "\u4e0a": 1, "\u8173\u5370": 1}, "radio": {"\u6536\u97f3": 10, "\u6a5f": 8, "\u96fb\u53f0": 3, "\u63d0\u5230": 1, "\u6253\u5f00": 4, "\u6536\u97f3\u673a": 11, "\u5ee3\u64ad": 4, "\u5f9e": 2, "\u4e2d": 1, "\u7535\u53f0": 1, "\u5e7f\u64ad": 1}, "against": {"\u9055\u80cc": 2, "\u610f\u9858": 2, "\u7d50": 1, "\u5a5a": 1, "\u53cd\u5bf9": 2, "\u8d5e\u6210": 1}, "managed": {"\u8a2d\u6cd5": 4, "\u53ca\u6642": 1, "\u5230": 2, "\u6210\u529f": 2, "\u5730": 1, "\u7e3d\u7b97\u6e96": 1, "\u6642": 1, "\u5730\u6e38": 1}, "lots": {"\u5f88\u591a": 4, "\u6709": 1}, "hide": {"\u8bd5\u56fe": 1, "\u63a9\u76d6\u771f\u76f8": 1, "\u6ca1\u6709": 1, "\u53ef": 2, "\u9690\u85cf": 2, "\u4e0d\u7528": 1, "\u85cf\u8457": 1, "\u4e26": 1, "\u96b1\u779e": 1, "\u5be6\u60c5": 1, "\u60f3\u4e0d\u5230": 1, "\u500b": 1, "\u85cf": 1}, "Central": {"\u4e2d\u592e": 1, "\u516c\u5712": 1, "\u54ea\u500b": 1, "\u65b9\u5411": 1}, "Park": {"\u5728": 1}, "suspected": {"\u8ba4\u4e3a": 1, "\u6709": 1, "\u5acc\u7591": 1, "\u7537\u5b50": 1, "\u6000\u7591": 1, "\u8bf4\u8c0e": 1}, "color": {"\u984f\u8272": 4, "\u7ecf\u5e38": 1, "\u989c\u8272": 4, "\u8fd9\u79cd": 1, "\u6ca1\u6709": 1}, "supper": {"\u665a\u996d": 5, "\u665a\u9910": 3, "\u4e4b": 1, "\u624d": 1, "\u5403": 5, "\u665a": 7, "\u98ef": 5, "\u5403\u665a\u996d": 1, "\u6211\u4eec": 1}, "washed": {"\u6d17": 8, "\u7897\u789f": 2, "\u540e": 2, "\u9910\u5177": 2, "\u6d17\u904e": 1, "\u4e86": 1, "\u7897\u76e4": 1}, "3.00": {"\u5165\u573a\u8d39": 1, "3": 1}, "$": {"\u7f8e\u5143": 4, "\u7559": 1, "\u7740": 1}, "sang": {"\u4e00\u8fb9": 2, "\u5531\u6b4c": 2, "": 2, "\u5531": 2, "\u5f97": 1}, "holding": {"\u90a3\u4e2a": 1, "\u62ff": 2, "\u7740": 4, "\u4e00\u4e2a": 1, "\u6444\u50cf\u673a": 1, "\u63e1": 2, "\u4e00\u628a": 2}, "fail": {"\u5931\u6557": 3, "\u5931\u8d25": 2, "\u5c31": 1, "\u4e0d": 1, "\u5fd8": 1}, "Okinawa": {"\u51b2\u7ef3": 1, "\u6700\u4f4e": 1, "\u65f6\u85aa": 1, "\u6bcf": 1, "642": 1}, "singer": {"\u4e0d\u662f": 1, "\u6b4c\u624b": 11, "\u4e00\u4e2a": 3, "\u8457\u540d": 1, "\u4f46\u613f": 1, "\u7576": 1}, "cards": {"\u73a9\u724c": 1, "\u4f86": 1, "Tom": 1, "\u5361\u7247": 1, "\u6253\u724c": 2, "\u958b\u5fc3": 1}, "Breathing": {"\u547c\u5438": 1, "\u56f0\u96e3": 1}, "sponge": {"\u6d77\u7ef5": 1, "\u5438\u6c34": 1}, "force": {"\u5f37\u8feb": 1, "\u53bb": 1}, "fancy": {"\u548c\u739b\u4e3d": 2, "\u5165\u4f4f": 2, "\u4e00\u5bb6": 2, "\u9ad8\u6863": 2}, "boat": {"\u8239": 5, "\u5c0f\u8239": 3, "\u4e00\u8258\u8239": 2, "\u5e26": 1, "\u8fdc\u79bb": 1, "\u4e00\u8258": 2, "\u6a4b\u4e0b": 1, "\u4e00\u6761": 1, "\u8239\u4e0a": 1}, "belong": {"\u5c6c": 2, "\u65bc": 2, "\u54ea\u500b": 1, "\u793e\u5718": 1, "\u662f": 7, "\u4fe9": 1, "\u5c5e\u4e8e": 1, "\u8fd9": 1, "\u4e1c\u897f": 1, "\u9019": 1}, "memory": {"\u8a18\u61b6\u529b": 5, "\u4e00\u9ede": 2, "\u60a8": 1, "\u8bb0\u6027": 1, "\u4e0d\u592a\u597d": 1, "\u5f88": 1, "\u8bb0\u5fc6\u529b": 2, "\u8d8a": 1, "": 1}, "joking": {"\u662f": 5, "\u5728": 1, "\u5f00\u73a9\u7b11": 5, "\u958b": 4, "\u73a9\u7b11": 4, "\u5427": 1, "\u4e00\u5b9a": 2, "\uff01": 2, "\u5225": 1, "\u5206\u8fa8": 1, "\u96a8\u4fbf": 1}, "Judging": {"\u6837\u5b50": 1, "": 1, "\u5929\u8272": 1, "\u4e0a": 1, "\u5224\u65b7": 1}, "passed": {"\u904e\u4e16": 1, "": 1, "\u559d\u6655": 1, "\u904e": 3, "\u4e86": 2, "\u9577": 1, "\u901a\u904e": 3, "\u53bb\u4e16": 6, "\u8def": 1, "\u5979\u5bb6": 2, "\u7d93\u904e": 1}, "retirement": {"\u9000\u4f11": 1}, "stick": {"\u95e8\u7259": 1, "\u7a81\u51fa": 1, "\u9019\u500b": 1, "\u62c4\u8457": 1, "\u4e00\u6839": 1, "\u62d0\u6756": 1, "\u8d70\u8def": 1}, "simplest": {"\u89e3\u51b3\u95ee\u9898": 1, "\u7b80\u4fbf": 1, "\u65b9\u6cd5": 1, "\u5f80\u5f80": 1, "\u529e\u6cd5": 1}, "Make": {"\u5c31": 1, "\u5f53": 1, "\u4e00\u6837": 1, "\u670d\u52d9": 1, "\u53f0": 1, "\u53e6\u5916": 1, "\u5feb\u70b9": 1, "\u52d9": 1, "\u5fc5\u8981": 1, "\u597d\u597d": 1, "\u5730": 1, "\u786e\u8ba4": 1, "\u4e00\u4e0b": 1, "\u5173\u4e86": 1}, "mall": {"\u5927": 1, "\u5356\u573a": 1, "\u5546\u573a": 1}, "reads": {"\u4e00\u8fb9": 2, "\u8bfb": 5, "\u65f6": 1, "\u9605\u8bfb": 2, "\u5f88\u591a": 2, "\u4e66": 2}, "rats": {"\u6293\u4f4f": 1, "\u8001\u9f20": 1}, "pools": {"\u6cf3\u6c60": 1, "\u88e1": 1}, "cluttered": {"\u548c\u739b\u4e3d": 1, "\u5bb6": 1, "\u5f88\u4e71": 1}, "closer": {"\u5728": 1, "\u9760\u8fd1": 1}, "remind": {"\u8ba9": 2, "\u60f3\u8d77": 3, "\u63d0\u9192": 2, "\u8fc7\u53bb": 1, "\u8ba4\u8bc6": 1, "\u4e00\u4e2a\u7537\u5b69": 1, "\u8b93": 1}, "moon": {"\u6708\u7403": 6, "\u5728": 2, "\u4e0d\u4e45": 1, "\u5c06\u6765": 1, "\u4eba\u7c7b": 1, "\u53ef\u4ee5": 1, "\u6708\u4eae": 4, "\u5c06": 1, "\u6ee1": 1, "\u51fa\u4f86": 1, "\u6ee1\u6708": 1}, "satellite": {"\u536b\u661f": 1}, "absolutely": {"\u5b8c\u5168": 4, "\u6b63\u78ba": 2, "\u8ba9": 1, "\u8fd9\u6837": 1, "\u7ee7\u7eed\u4e0b\u53bb": 1, "\u7edd\u5bf9": 1, "\u8d5e\u540c": 1, "\u7d76": 1, "\u5c0d": 1, "\u78ba": 1, "\u5b9a": 1}, "different": {"\u5c06": 1, "\u4e0d\u540c": 7, "\u4ee5\u5f80": 1, "\u8ba9": 1, "\u8fd9\u6b21": 1, "\u53d8\u5f97": 1, "\u4e0d": 4, "\u4e00\u6837": 3, "\u8ddf": 3, "\u9019\u6b21": 1, "\u4e00\u6a23": 1, "\u7d66\u51fa": 1, "\u4e00\u6b21": 1, "\u771f\u662f": 1}, "governor": {"\u6bcf\u500b": 1, "\u7576\u9078": 1, "\u5dde\u9577": 1}, "wished": {"\u5e0c\u671b": 3, "\u6ca1\u6709": 2, "\u90a3\u91cc": 1, "\u501f\u4e66": 1}, "shirt": {"\u9019\u4ef6": 5, "\u896f\u886b": 10, "\u4e00\u4ef6": 1, "\u886c\u886b": 1, "\u63db": 2}, "air": {"\u7a7a\u6c14": 2, "\u4eba": 1, "\u6709\u7a7a": 1, "\u6c23": 2, "\u642d": 3, "\u98db\u6a5f": 4, "\u7a7a\u6c23": 3, "\u5750": 1}, "imagination": {"\u60f3\u8c61": 3, "\u90a3": 2, "\u8fd9": 1, "\u5e7b\u60f3": 1, "\u800c\u5df2": 1, "\u53ea\u662f": 1}, "preparing": {"\u6b63\u5fd9": 2, "\u8457": 2, "\u6e96\u5099": 3, "\u9019\u6b21": 1, "\u51c6\u5907": 1, "\u505a": 1, "\u665a\u98ef": 1}, "accustomed": {"\u4e60\u60ef": 5, "\u9002\u5e94": 1, "\u7fd2\u6163": 3, "\u9019\u7a2e": 1, "\u51b7\u5929": 1, "\u6c23": 1, "\u8f9b\u52e4\u52aa\u529b": 1, "\u5730": 1}, "honest": {"\u4e2a": 4, "\u8001\u5b9e\u4eba": 3, "\u8bf4\u53e5\u5b9e\u8bdd": 1, "\u6211": 1, "\u4ee5\u524d": 1, "\u8bda\u5b9e": 2, "\u662f": 1, "\u8aa0\u5be6": 4, "\u5fe0\u539a\u8001\u5b9e": 1}, "skilled": {"\u4e2a": 1, "\u9493\u9c7c": 1, "\u9ad8\u624b": 1}, "refused": {"\u62d2\u7edd": 5, "\u62d2\u7d55": 6, "\u8b93": 1, "\u62d2": 2, "\u7d76": 2, "\u746a": 1, "\u9e97": 1, "\u4f5c": 1, "\u4f46\u662f": 1, "\u9019\u7b46": 1, "\u88ab": 1, "": 1}, "shake": {"\u63e1\u624b": 2, "\u600e\u9ebc": 1, "\u4e5f": 1, "\u6703": 1, "\u597d": 1, "\u63e1": 1, "\u4e2a": 1, "\u548c\u89e3": 1, "\u5427": 1, "\u611f\u89ba": 1, "\u5230": 1, "\u6416\u52d5": 1, "\u4e00\u4e0b": 1}, "appeared": {"\u4e4b\u9593": 1, "": 1, "\u96bb": 1, "\u72d7": 1, "\u5728": 1, "\u51fa\u73b0": 1}, "suspect": {"\u5acc\u7591\u4eba": 3}, "caucasian": {"\u4e00\u4f4d": 1, "\u767d\u4eba": 1, "\u5973\u6027": 1}, "vegetarian": {"\u662f": 3, "\u7d20\u98df\u4e3b\u4e49\u8005": 2, "\u7d20\u98df\u8005": 1}, "youngest": {"\u4e48": 2, "\u5973": 2, "\u9577": 2, "\u5f97": 2, "\u7279\u5225": 2, "\u6700\u5c0f": 1, "\u8eab\u9ad8": 1, "\u6700": 1, "\u5e74\u8f7b": 1}, "west": {"\u98de\u673a": 1, "\u5411\u897f\u98de": 1}, "pencils": {"\u925b\u7b46": 1, "\u4e00\u652f": 1, "\u94c5\u7b14": 1, "\u4e5f": 1}, "coward": {"\u60a8": 1, "\u4e2a": 2, "\u61e6\u592b": 3, "\u7a31": 1, "\u81bd": 1, "\u5c0f\u9b3c": 1, "\u80c6\u5c0f\u9b3c": 1}, "excuse": {"\u501f\u53e3": 2, "\u4e3a": 1, "\u5236\u9020": 1, "\u539f\u8ad2": 1, "\u9b6f\u83bd": 1, "\u6682\u65f6": 1, "\u539f\u8c05": 1}, "defeated": {"\u6230\u52dd": 1, "\u6575\u4eba": 1}, "teaches": {"\u6559\u6cd5": 1, "\u8a9e": 1, "\u6559": 4, "\u4f60\u4eec": 1, "\u6bcf\u5468": 1, "\u5c0d": 1}, "spends": {"\u82b1": 3}, "practicing": {"\u7ec3": 1, "\u94a2\u7434": 1, "\u6b63\u5728": 1, "\u7df4\u7fd2": 1}, "excused": {"\u8bfe": 1, "\u4e0d\u6765": 1, "\u5417": 2, "\u901a\u8fc7": 1, "\u90a3\u4ef6\u4e8b": 1, "\u800c": 1, "\u5f97\u5230": 1, "\u539f\u8c05": 1}, "lead": {"\u9019\u689d": 1, "\u901a\u5230": 1}, "practiced": {"\u7df4\u7fd2": 1}, "becoming": {"\u66fe\u7d93": 1, "\u60f3\u904e": 1, "\u7576": 2, "\u500b\u8b77\u58eb": 1, "\u5be6\u73fe": 1, "\u517f": 1, "\u8853": 1, "\u5bb6": 1}, "ironed": {"\u71a8": 1, "\u4e86": 1, "\u886c\u886b": 1}, "battle": {"\u6230\u9b25": 2, "\u4e2d": 1, "\u597d\u8981": 1, "\u6218\u6597": 1, "\u53d1\u751f": 1}, "barking": {"\u6574\u591c": 1, "\u72d7\u53eb": 2, "\u4e00\u6574\u591c": 1, "\u767d\u8cbb\u529b": 1, "\u6c23": 1, "\u5225": 1, "\u5420": 1, "\u72ac": 1}, "several": {"\u5e7e\u672c": 1, "\u4e86": 7, "\u597d": 1, "\u5e7e\u6b21": 1, "\u51e0\u4e2a": 3, "\u65bc": 1, "\u597d\u51e0\u4e2a": 1, "\u6765": 1}, "point": {"\u5e79": 1, "\u561b": 1, "\u90a3\u9ebc": 1, "\u9ebb\u7169": 1, "\u7528": 4, "\u4e00\u500b": 1, "\u89c0\u9ede": 1, "\u624b\u6307": 1, "\u6b63\u662f": 1, "\u95ee\u9898": 1, "\u5173\u952e": 1, "\u4e00\u70b9": 1}, "crushed": {"\u6363\u788e": 1, "\u4e86": 1, "\u6467\u6bc0": 1, "\u6575\u4eba": 1}, "garlic": {"\u5927\u849c": 2}, "Switch": {"\u628a": 1, "\u6253\u5f00": 1, "\u4ec0\u4e48": 1}, "amazing": {"\u771f\u662f": 1, "\u8ba9": 1, "\u4eba": 1, "\u5927\u5403\u4e00\u60ca": 1, "\u592a": 1, "\u795e\u5947": 1, "\u5947\u5999": 1, "\u4f53\u9a8c": 1}, "autumn": {"\u548c": 1, "\u79cb\u5929": 1, "": 1}, "entrance": {"\u5165\u53e3": 1, "\u540e\u95e8": 1, "\u5165\u5b78": 2, "\u53c3\u52a0": 1, "\u5165\u53e3\u5904": 1}, "elevator": {"\u96fb\u68af": 2, "\u65b0\u5bb6": 2, "\u6709\u4e00": 2, "\u81fa": 2, "\u96fb": 2, "\u68af": 2, "\u4e58": 1, "\u5230\u6ac3\u6aaf\u62ff\u4e86\u9470\u5319": 1, "": 1, "\u5f8c": 1, "\u5c31": 1, "\u4e86": 1, "\u623f\u9593": 1}, "causing": {"\u6307\u8d23": 1, "\u9020\u6210": 2}, "bags": {"\u4e00\u500b": 1, "\u5305\u5305": 1, "\u4e0d\u898b": 1, "\u6b63\u5728": 1, "\u5305": 1}, "missing": {"\u4e86": 10, "\u5c11": 4, "\u4e0d\u898b": 1, "\u4e5f": 1, "\u6ca1\u5c11": 1, "\u4e0d": 1, "\u898b": 1, "\u76ae\u593e": 1, "\u5931\u8e2a": 1, "\u4e22": 1}, "willing": {"\u9858\u610f": 5, "\u613f\u610f": 4, "\u4e50\u610f": 2, "\u6a02\u610f": 1, "\u9019\u6a23": 1, "\u9858": 1, "\u610f": 1, "\u5e5a": 1, "\u5011": 1, "\u6e6f\u59c6": 1, "\u9019\u5834": 1, "\u5e2e\u5fd9": 2, "\u8fd9\u4e8b": 1}, "unusually": {"\u975e\u5e38": 1, "\u5bd2\u51b7": 1}, "lights": {"\u95dc\u71c8": 2, "\u6d17\u624b\u95f4": 1, "\u706f": 3, "\u574f\u6389": 1, "\u5582": 1, "\u80fd": 1, "\u71c8": 3, "\u6ca1\u6709": 1, "\u4eae": 1, "\u7740": 1, "": 1}, "Their": {"\u4ed6\u5011": 9, "\u76ee\u5149": 1, "\u76f8\u63a5": 1, "\u7684": 7, "\u4ed6\u4eec": 5, "\u8eca\u53f8": 1, "\u5b30\u5b69": 1}, "Answer": {"\u56de\u7b54": 3, "\u8acb": 1, "\u63a5\u807d": 1, "\u4e00\u4e0b": 1, "": 1}, "fit": {"\u89ba\u5f97": 1, "\u7cbe\u795e": 1, "\u5f88": 1, "\u597d": 1, "\u8d77\u6765": 1, "\u5408\u8eab": 2, "\u9019\u689d": 1, "\u9002\u5408": 1}, "grow": {"\u8be5": 1, "\u61c2\u4e8b": 1, "\u9577": 1, "\u7a2e": 1, "\u957f\u5927": 2, "\u540e": 1, "\u6210\u4e3a": 1, "\u957f\u4e0d\u5927": 2, "\u7a2e\u82b1": 1, "\u4e5f": 1, "\u5e0c\u671b": 1, "\u80fd": 1, "\u9577\u5927": 1}, "knowing": {"\u65e0\u4ece": 1, "\u77e5\u9053": 4, "\u56e0\u4e3a": 1, "": 1, "\u5411": 1, "\u4eba": 1, "\u63a5\u4e0b\u6765": 1, "\u5e72\u4ec0\u4e48": 1, "\u56e0\u70ba": 1, "\u4e0d": 1, "\u8a72": 1}, "sun": {"\u592a\u9633": 1, "\u90a3": 1, "\u592a\u967d": 6, "\u967d\u5149": 1, "\u4e0b": 2, "\u9017\u7559": 1, "\u592a\u4e45": 1}, "tells": {"\u5be7\u9858": 1, "\u7368\u7acb": 1, "\u4e5f": 1, "\u4e0d\u8981": 1, "\u4f86": 1, "\u6307\u4f7f": 1, "\u8aaa": 1, "\u5be6\u8a71": 1}, "curtain": {"\u8c22\u5e55": 1, "\u7a97\u7c3e": 1, "\u8fd9\u6761": 1, "\u5e18\u5b50": 1, "\u4e0d\u914d": 1, "\u7a97\u5e18": 1, "\u540e": 1, "\u51fa\u6765": 1}, "throne": {"\u4f1a": 1, "\u7ee7\u627f": 1, "\u738b\u4f4d": 1}, "riding": {"\u9a0e\u8eca": 1, "\u52dd": 1, "\u904e": 1, "\u8d70\u8def": 1}, "huge": {"\u4e00\u500b": 1, "\u5f88\u5927": 1, "\u88e1": 1, "\u5de8\u5927": 2, "\u5927": 1, "\u81f4\u6b7b": 1, "\u516d": 1}, "quit": {"\u8f9e\u53bb": 1, "\u4f55\u6642": 1, "\u8fad\u8077": 1, "\u8fad\u53bb": 1, "\u505c\u4e0b": 1, "\u4f86": 1, "\u62bd\u7159": 1, "\u5f88\u5feb": 1, "\u8f9e\u6389": 1, "\u5df2\u7d93": 1, "\u4e0d": 2, "\u58de": 1, "\u6212\u6389": 1, "\u79bb\u5f00": 1, "\u5e72": 1, "\u73fe\u5728": 1}, "naive": {"\u6709\u70b9": 1, "\u5929\u771f": 1}, "prescription": {"\u5f00": 1, "\u4e2a": 1, "\u836f\u65b9": 1, "\u90a3\u4e2a": 2, "\u7684\u8bdd": 2, "\u5904\u65b9": 2, "\u4e70\u4e0d\u5230": 2}, "forgave": {"\u539f\u8c05": 1}, "crimes": {"\u7f6a\u884c": 2}, "doctors": {"\u91ab\u751f": 1, "\u533b\u751f": 2}, "hobby": {"\u55dc\u597d": 4, "\u7231\u597d": 2, "\u56fe": 1, "\u5c31\u662f": 1}, "coins": {"\u53e4\u9322\u5e63": 1, "\u820a": 1, "\u786c\u5e63": 1}, "overeat": {"\u4e0d\u8981": 1, "\u5403": 1, "\u904e": 1, "\u91cf": 1}, "University": {"\u65bc": 3, "\u5927\u5b78": 5, "\u662f": 1, "\u6bd5\u4e1a": 1}, "Kobe": {"\u795e\u6236": 3}, "wears": {"Tom": 1, "\u6234\u5e3d\u5b50": 1, "\u7a7f": 2, "\u8863\u670d": 2, "\u7a7f\u8457": 1}, "continue": {"\u6bcf\u6b21": 1, "\u90fd": 1, "\u7ee7\u7eed": 4, "\u5c06": 1, "\u8981": 2, "\u7ee7\u7eed\u4e0b\u53bb": 1, "\u7e7c\u7e8c": 1, "\u9019\u500b": 1, "\u7ade\u4e89": 1}, "past": {"\u8fc7\u53bb": 2, "\u904e": 2, "\u904e\u53bb": 2, "\u6709\u95dc": 1, "\u7ecf\u8fc7": 1, "": 2}, "Words": {"\u8a9e": 1, "\u8a00\u8868": 1, "\u9054": 1, "\u601d\u60f3": 2, "\u8a9e\u8a5e": 1}, "Step": {"\u4e0b\u8f66": 1, "": 2, "\u628a\u624b": 1, "\u8fdb\u6765": 1}, "rode": {"\u662f": 1, "\u9a0e": 2, "\u53bb": 2}, "jump": {"\u8df3": 4, "\u591a": 3, "\u60a8": 1, "\u8df3\u7ef3": 1, "\u770b\u770b": 1}, "kidding": {"\u5728": 1, "\u5f00\u73a9\u7b11": 1}, "machines": {"\u81ea\u52a8\u552e\u8d27\u673a": 1, "\u90a3\u8fb9": 1, "\u673a\u5668": 1, "\u76ee\u524d": 1, "\u8fd0\u8f6c": 1}, "fixing": {"\u5728": 2, "\u4fee": 2}, "washing": {"\u6d17\u8863": 5, "\u90a3\u6642": 1, "\u6b63\u5728": 2, "\u81fa": 1, "\u60a8": 1, "\u6d17": 1, "\u6d17\u8eca": 1}, "sad": {"\u8ba9": 2, "\u5f88": 5, "\u4f24\u5fc3": 3, "\u5e38\u5e38": 1, "\u60b2\u50b7": 2, "\u6cae\u4e27": 1, "\u770b\u4e0a\u53bb": 2, "\u60b2\u4f24": 3, "\u96e3\u904e": 2, "\u96be\u8fc7": 3, "\u50b7\u5fc3": 1, "\u4e0d\u6642": 1, "\u5730": 1}, "half": {"\u522b": 1, "\u7559": 1, "\u7740": 1, "\u4e00\u534a": 1, "\u6ca1": 1, "\u5e72": 1, "\u534a\u4e2a": 2, "\u534a": 1, "\u534a\u500b": 1, "\u8ba9": 1, "\u534a\u5c0f\u65f6": 1}, "definite": {"\u80af\u5b9a": 1, "\u8981": 1}, "except": {"\u9664\u4e86": 13, "\u4ee5\u5916": 3, "\u96e8\u5929": 1, "": 1}, "printed": {"\u672c\u4e66": 1, "\u5370\u5237": 1}, "facts": {"\u8cc7\u6599": 1, "\u5c6c\u5be6": 1, "\u4e8b\u5b9e": 4, "\u771f\u76f8": 1}, "o": {"\u5341\u9ede\u9418": 4, "\u9ede": 1, "\u5728": 3, "\u5de6\u53f3": 3, "\u5e0c\u671b": 1, "\u524d": 2, "9": 1, "\u70b9": 3, "\u5c07\u8fd1": 2, "\u4e09\u9ede": 2, "12": 1, "\u5230": 1, "\u5feb\u8981": 1, "\u60a8": 1}, "interpreter": {"\u8b93": 2, "\u64d4\u4efb": 2, "\u7ffb\u8b6f": 2, "\u8205\u8205": 1, "\u900f\u904e": 1, "\u50b3\u8b6f\u54e1": 1, "\u767c\u8a00": 1}, "trading": {"\u4e0a\u4e2a": 1, "\u666f\u6c14": 1, "\u65f6\u671f": 1, "\u7092\u80a1": 1, "\u6512\u4e0b": 1, "\u4e00\u7b14": 1, "\u94b1": 1}, "forty": {"\u5e94\u8be5": 1, "40": 1, "\u5c81": 1, "\u5de6\u53f3": 1, "\u5427": 1}, "Hey": {"\u563f": 7, "\u4f60": 2, "\u770b": 1, ",": 1, "\uff01": 1}, "Starting": {"\u4ece": 1, "\u5f00\u59cb": 1, "\u4e0b": 1, "": 2, "\u4e00\u76f4": 1}, "vacation": {"\u5047\u671f": 3, "\u8981": 2, "\u5ea6\u5047": 7, "\u7b49\u4e0d\u53ca": 1, "\u6691\u5047": 6, "\u904e": 2, "\u4f11\u5047": 4, "\u671f\u95f4": 1, "\u51fa": 1, "\u57ce": 1, "\u7ed3\u675f": 1, "\u5982\u4f55": 1}, "followed": {"\u8ddf\u7740": 3, "\u8fdb\u5165": 1, "\u8ddf": 2, "\u5230": 2, "": 1, "\u4e00": 1, "\u8457": 1, "\u6821": 1}, "nervous": {"\u6642\u5019": 1, "\u7dca\u5f35": 3, "\u770b\u8d77\u6765": 1, "\u7d27\u5f20": 4, "\u6211\u4ed6": 1}, "Hakodate": {"\u5f80\u8fd4": 1, "\u65bc": 1, "\u51fd\u9928": 2, "\u5c07": 1, "\u62b5\u9054": 1}, "Osaka": {"\u5927\u962a": 6, "\u4e00\u5ea7": 1, "\u93ae": 1, "\u4e0a": 1, "\u4e0d\u5982": 1}, "destination": {"\u76f4\u5954": 1, "\u76ee\u7684\u5730": 1, "\u7ec8\u4e8e": 1, "\u8fbe\u5230": 1, "\u76ee\u6807": 1}, "possibility": {"\u53ef\u80fd": 4, "\u90a3\u79cd": 1, "\u53ef\u80fd\u6027": 1, "\u4e0d\u5f97\u4e0d": 2, "\u90a3\u4e48": 2}, "space": {"\u5f35": 1, "\u7a7a\u9593": 2, "\u592a\u7a7a": 1, "\u4e0a": 1, "\u6fc0\u52a8\u4eba\u5fc3": 1, "\u65f6\u523b": 1}, "television": {"\u6e6f\u59c6\u7e3d": 1, "\u53f0": 1, "\u7535\u89c6\u673a": 5, "\u96fb\u8996": 5, "\u95dc\u6389": 2, "\u6709\u4e2a": 2, "\u597d\u4e8b": 1, "\u770b\u96fb\u8996": 1, "\u770b\u5230": 1, "\u53ad\u7169": 1, "\u623f\u91cc": 1, "\u574f": 1, "\u770b\u7535\u89c6": 1}, "watching": {"\u5728": 14, "\u770b\u96fb\u8996": 1, "\u770b\u8457": 3, "": 5, "\u770b": 10, "\u6b63\u5728": 2, "\u770b\u7535\u89c6": 1, "\u6211": 1}, "sheer": {"\u9019": 1, "\u5b8c\u5168": 1}, "difference": {"\u4e0d\u540c": 4, "\u4f60\u4eec": 1, "\u770b\u51fa": 3, "\u533a\u522b": 9, "\u5230": 1, "\u4e4b\u8655": 2, "\u5b9e\u8df5": 1, "\u5c0d": 1, "\u5dee\u5225": 2, "\u6e05": 1, "\u4e0d\u540c\u70b9": 1}, "furniture": {"\u5bb6\u5177": 7, "\u7684": 1, "\u623f\u9593": 1, "\u6c92\u6709": 2, "\u79fb\u52a8": 1, "\u90a3\u500b": 3, "\u88e1": 2, "\u50a2": 1, "\u4ff1": 1}, "dust": {"\u4f48": 2, "\u6eff": 2, "\u7070": 2, "\u5875": 2, "\u5ba4\u5167": 1, "\u7070\u5875": 1}, "latest": {"\u6700\u665a": 1, "\u5341\u9ede": 1, "\u524d\u4f86": 1}, "anxious": {"\u6025": 1, "\u65bc": 1, "\u8981": 1, "\u898b": 2, "\u62c5\u5fe7": 1, "\u6e34\u671b": 2, "\u5230": 1}, "inform": {"\u628a": 1, "\u90a3\u4ef6": 1, "\u4e8b\u60c5": 1, "\u544a\u77e5": 1}, "prefers": {"\u559c\u6b61": 2, "\u52dd": 2, "\u904e": 2}, "Pride": {"\u9a84\u50b2": 2, "\u4f7f": 1, "\u4eba": 1, "\u843d\u540e": 1, "\u5931\u8d25": 1, "\u5148\u884c\u8005": 1}, "heavy": {"\u5f20": 1, "\u5f88\u91cd": 1, "\u91cd": 2, "\u4e0b": 4, "\u4e00\u5834": 1, "\u5927\u96e8": 4, "\u592a\u91cd": 2, "\u7121\u6cd5": 1, "\u6765": 1, "\u5305": 1}, "recycling": {"\u5fc5\u9808": 1, "\u958b\u59cb": 1, "\u8003\u616e": 1, "\u56de\u6536": 1}, "hiccup": {"\u7ecf\u5e38": 1, "\u6253\u55dd": 1}, "tore": {"\u628a": 2, "\u788e\u7247": 1, "\u9019\u500b": 2}, "bits": {"\u6495\u6210": 1}, "fog": {"\u96fe": 2, "\u4e2d": 1, "\u8ff7\u4e86\u8def": 1, "\uff0d": 1, "": 1, "\u5f9e\u524d": 1, "\u4ee5": 1, "\u9664\u4e86": 1, "\u770b\u4e0d\u89c1": 1, "\u4efb\u4f55": 1, "\u4e1c\u897f": 1, "\u9727": 2, "\u6253\u958b": 1}, "climb": {"\u767b": 1, "\u6642": 1, "\u7d93\u5e38": 1, "\u722c": 5, "\u6a39": 1, "\u722c\u6811": 1, "\u5c07": 1, "": 1}, "tidy": {"\u53c8": 1, "\u6574\u6d01": 1, "\u5f88": 1, "\u6574\u9f4a": 1}, "schoolroom": {"\u6559\u5ba4": 1, "\u89d2\u843d": 1}, "sobbing": {"\u555c\u6ce3": 2, "\u807d\u898b": 1, "\u88e1": 1, "\u62bd\u6ce3": 1, "\u5728": 1}, "sadly": {"": 1, "\u5979": 1}, "answered": {"\u50b7": 1, "\u56de\u7b54": 6, "\u56de\u4fe1": 2, "\uff02": 2, "\u908a": 2, "\u672c": 1, "\u6c92\u4eba": 1, "\u6ca1\u56de": 2, "\u7d66": 1}, "cents": {"\u53ea": 2, "\u4e94\u5341": 2, "\u7f8e\u5206": 2}, "Send": {"\u7acb\u5373": 1, "\u9001": 1, "\u91ab": 1, "\u6d3e": 1, "\u4eba": 1, "\u53bb": 1, "\u8acb": 1, "\u4f86": 1}, "acts": {"\u505a": 1, "\u5f97": 1, "\u597d\u50cf": 1, "\u81ea\u5df1": 1, "\u56fd\u738b": 1, "\u4e00\u6837": 1, "\u884c\u52a8": 1, "\u8fc5\u901f": 1}, "buses": {"": 1, "\u5927\u5df4": 2, "\u51fa\u53d1": 1, "\u8eca": 1}, "yellow": {"\u6821\u8f66": 1, "\u9ec4": 2, "\u9ec4\u8272": 2, "\u88ab": 1, "\u70df\u718f": 1, "\u5f88": 1, "\u5957\u886b": 1}, "broccoli": {"\u897f\u85cd\u82b1": 1, "\u4e0d\u662f": 1, "\u5f88\u65b0": 1, "\u9bae": 1}, "Shake": {"\u548c": 1, "\u63e1\u624b": 1}, "ship": {"\u8239": 6, "\u548c": 1, "\u8258": 3, "\u9019": 2}, "faster": {"\u8dd1\u5f97\u5feb": 1, "\u52a0\u5feb": 2, "\u8ba4\u8bc6": 1, "\u5f53\u4e2d": 1, "\u6700\u5feb": 1, "\u8981": 1, "\u5f97": 3, "\u5feb": 3}, "step": {"\u8d70\u8def": 1, "\u5f8c": 1, "\u9000\u4e00\u6b65": 1, "\u8dcc\u5012": 1, "\u811a\u4e0b": 1, "\u8e29": 1, "\u788e\u73bb\u7483": 1, "\u6211\u4eec": 1, "\u5e94\u8be5": 1}, "stolen": {"\u5077": 18, "\u4e86": 6, "\u88ab": 12, "": 1, "\u4ed6": 1}, "dryer": {"\u5439": 2, "\u98a8\u6a5f": 2, "\u6709": 1}, "Six": {"\u516d": 1, "\u9664\u4ee5": 1, "\u4e8c": 1, "\u5f97": 1}, "equals": {"\u4e09": 2}, "hello": {"\u5e26": 1, "\u5411": 3, "\u4f60\u5bb6": 1, "\u4eba": 1, "\u95ee\u597d": 2, "\u90a3\u4f4d": 1, "\u5973\u58eb": 1}, "moving": {"\u4eca\u5929\u4e0a\u5348": 1, "\u548c\u739b\u4e3d": 1, "\u642c\u5230": 1, "\u7ee7\u7eed": 1, "\u8d70": 1, "\u79fb\u52d5": 1, "\u80cc\u4e0a": 1, "\u6709": 1, "\u52a8": 1}, "flower": {"\u6735\u82b1": 3, "\u4e2d": 1, "\u82b1": 4, "\u540d\u5b57": 1, "\u591a": 1, "\u4e00\u6735": 2, "\u624b\u4e0a": 1, "\u4e00\u6735\u82b1": 1, "\u770b\u89c1": 1, "\u5f88": 1}, "winner": {"\u505a": 1, "\u4e2a": 1, "\u8d62\u5bb6": 1}, "Airlines": {"\u806f\u5408": 1, "\u822a\u7a7a\u516c\u53f8": 1, "\u8fa6\u7406": 1, "\u767b\u6a5f": 1, "\u624b\u7e8c": 1, "\u6ac3": 1, "\u6aaf": 1, "\u54ea": 1, "\u88e1": 1}, "course": {"\u7576\u7136": 4, ",": 1, "": 2}, "Of": {"\u901a\u904e": 1, "\u5f53\u7136": 1, "\u4e86": 1}, "reservation": {"\u9884\u7ea6": 1, "\u9884\u8ba2": 1, "\u597d": 1, "\u9884\u5b9a": 1, "\u4e00\u4e0b": 1, "\u9810\u8a02": 3, "\u66f4\u6539": 1}, "cattle": {"\u725b": 1, "\u5f88": 1, "\u80a5": 1}, "fighting": {"\u4e0d": 1, "\u6253": 1, "\u6253\u67b6": 1, "\u8ddf": 1, "\u9b25\u722d": 1, "\u6230\u9b25": 1}, "Fire": {"\u706b": 2, "\u975e\u5e38": 1}, "applications": {"\u5df2\u7d93": 1, "\u56de\u61c9": 1, "\u5ee3\u544a": 1, "\u7533\u8acb": 1}, "received": {"\u6536\u5230": 8, "\u60a8": 1, ",": 1, "": 1, "\u6211": 1, "\u4f86\u4fe1": 1}, "tree": {"\u4e00\u68f5\u6811": 1, "\u6b63\u5728": 1, "\u6a39\u4e0a": 1, "\u4e00\u68f5": 2, "\u6a39": 4, "\u6811": 3, "\u6a39\u4e0b": 3, "\u6811\u4e0a": 4, "\u68f5": 2, "\u5f88\u9ad8": 1}, "Lie": {"\u8eba": 3, "\u7740": 1, "\u4e0d\u52a8": 1, "\u4e0b\u4f86": 1, "\u4e00\u9ede": 1}, "Malaria": {"\u7627\u75be": 1, "\u7531": 1, "\u50b3\u67d3": 1}, "heat": {"\u9019\u9ebc": 1, "\u71b1": 2, "\u6c23": 1, "\u6eab\u4e0b": 1, "\u5538": 1, "\u53d7\u4e0d\u4e86": 1, "\u8fd9": 1, "\u5927\u70ed\u5929": 1, "\u60a8": 1, "\u8ba9": 1, "\u5c4b\u5b50": 1, "\u6696": 1, "\u8d77\u6765": 1}, "boring": {"\u65e0\u804a": 2, "\u7121\u804a": 3, "\u5f88": 2, "\u6211": 1, "\u8bfb": 1, "\u5446": 1, "\u5bb6\u91cc": 1, "\u6ca1\u6709": 1, "\u70e6": 1, "\u5230": 1}, "a.m.": {",": 1, "": 1, "\u65e9\u4e0a": 1, "\u4e0a\u5348": 1, "\u516b\u9ede": 1}, "8": {"\u4ed6": 1, "8": 2, "\u8ab2\u7a0b": 1}, "potatoes": {"\u8981": 2, "\u51e0\u4e2a": 1, "\u571f\u8c46": 4, "\u7528": 1, "\u716e": 1, "\u99ac\u9234\u85af": 1}, "Hand": {"\u5e6b": 1, "\u905e": 1, "\u4e00\u4e0b": 1, "\u628a": 1, "\u9012\u7ed9": 1}, "optimist": {"\u751f\u6027": 1, "\u6a02\u89c0": 2, "\u4e2a": 1, "\u4e50\u89c2\u4e3b\u4e49": 1, "\u8005": 2, "\u4e3b\u7fa9": 1}, "covered": {"\u6342\u4f4f": 1, "\u88ab": 5, "\u8986\u76d6": 2, "\u8986\u84cb": 1, "\u8457": 1, "\u96ea\u6240\u8986\u84cb": 2}, "face": {"\u8138": 2, "\u81c9": 4, "\u53eb": 1, "\u6d17\u8138": 1, "\u5316\u5986": 1, "\u6d53": 1, "\u7684\u8bdd": 1, "\u8138\u4f1a": 1, "\u770b\u7740": 1, "\u9019": 1, "\u5f35": 1, "\u4e22\u81c9": 1}, "Washington": {"\u4f60\u4eec": 1, "\u4e58\u706b\u8f66": 1, "\u534e\u76db\u987f": 2}, "handled": {"\u600e\u9ebc": 1, "\u8655\u7406": 1, "\u7528": 1, "\u522b\u7684": 1, "\u65b9\u5f0f": 1, "\u5904\u7406": 1, "\u8fd9": 1, "\u72b6\u51b5": 1}, "receipt": {"\u9ebb\u7169": 1, "\u8981": 1, "\u4e00\u5f35": 1, "\u6536\u64da": 1}, "misses": {"\u504f": 1, "\u60f3\u5ff5": 1, "\u4e86": 1}, "shorter": {"\u77ee": 3}, "unpleasant": {"\u4e0d": 1, "\u6109\u5feb": 1, "\u7d93\u6b77": 1}, "degree": {"\u5f97\u5230": 1, "\u78a9\u58eb": 1, "\u5b78\u4f4d": 1}, "coma": {"\u60a3\u8005": 1, "\u73b0\u5728": 1, "\u5904\u4e8e": 1, "\u6df1\u5ea6": 1, "\u660f\u8ff7": 1, "\u72b6\u6001": 1}, "conscious": {"\u8ba9": 1, "": 1, "\u4ed6": 1, "\u6ca1\u6709": 1, "\u5230": 1}, "neighbors": {"\u6253\u6270\u5230": 1, "\u9130\u5c45": 3, "": 1, "\u90bb\u5c45\u4eec": 1, "\u9694": 1, "\u7740": 1, "\u5899": 1, "\u90bb\u5c45": 4, "\u5bf9": 1, "\u70b9": 1, "\u8ba4\u8bc6": 1}, "grass": {"\u8349\u5730": 5, "\u770b\u6765": 1, "\u4e0d\u9519": 1, "\u4e0d\u8981": 2, "\u8e29": 1, "\u8349\u4e1b\u91cc": 1, "\u8d70": 1, "\u4e0a": 1}, "borrowed": {"\u5411": 4, "\u501f\u9322": 2, "\u8ddf": 1, "Tom": 1, "\u501f\u624b": 1, "\u6a5f": 1, "\u501f": 2, "\u8fd8": 2, "": 2}, "ultrasound": {"\u60f3": 1, "\u8b93": 1, "\u63a5\u53d7": 1, "\u8d85\u8072": 1, "\u6aa2\u67e5": 1}, "Spanish": {"\u6709": 1, "\u897f\u73ed\u7259": 2, "\u8a9e": 2, "\u897f\u73ed\u7259\u6587": 3, "\u8f15": 1, "\u9b06": 1, "\u897f\u73ed\u7259\u8bed": 2, "\u897f\u73ed\u7259\u4eba": 1, "\u6703": 1}, "twenty": {"\u4e8c\u5341": 1, "\u500b": 1, "\u4e8c\u5341\u4f4d": 1, "20": 2, "\u4e8c\u5341\u5e74": 3, "21": 1, "\u5c81": 1, "": 1, "\u76f8\u6bd4": 1, "\u7684": 1, "\u6709": 1, "\u7ffb\u5929\u8986\u5730": 1, "\u4e0e": 1, "\u5927\u4e0d\u76f8\u540c": 1, "\u4e8c\u5341\u4e94": 1, "\u6b72\u6642": 1}, "countries": {"\u570b\u5bb6": 5, "\u8a31\u591a": 2, "\u54ea\u4e9b": 1, "\u56fd\u5bb6": 2}, "jokes": {"\u5168\u90fd": 1, "\u9017\u7b11": 1, "\u95f9\u7b11\u8bdd": 1, "\u8ddf": 1, "\u8b1b": 1, "\u7b11": 1, "\u8a71": 1, "\u542c": 1, "\u6709\u5173": 1, "\u7b11\u8bdd": 3, "\u5f00": 1, "\u4ec0\u4e48": 1, "\u56fd\u9645": 1, "\u73a9\u7b11": 1, "\u56e0": 1, "\u800c": 1, "\u6b22\u7b11": 1, "\u6837\u5b50": 1}, "laughed": {"\u88ab": 1, "\u7b11\u8a71": 2, "\u4e86": 8, "\u7121": 1, "\u6545\u5730": 1, "\u7b11": 6, "": 1, "\u5979": 1, "\u5011": 1, "\u53d6\u7b11": 1, "\u5632\u7b11": 3}, "invited": {"\u9080\u8acb": 8, "\u9080\u8bf7": 4, "\u53c3\u52a0": 2, "\u53d7\u5230": 2, "\u4eba": 1, "\u5230": 1, "\u9080": 1, "\u5171\u8d74": 1}, "chat": {"Tom": 1, "\u548c": 1, "\u804a": 1, "\u804a\u5929": 1, "\u8fd9": 1, "\u4f60": 1, "\u804a\u5f97": 1, "\u6109\u5feb": 1}, "headed": {"\u5411": 2, "\u8d70": 1, "\u53bb": 1, "\u5c71\u95f4": 1, "\u8d70\u53bb": 1}, "shipment": {"\u4e07\u4e00": 1, "\u8239\u8fd0": 1, "\u8fdf": 1, "\u7279\u522b": 1, "\u7684": 1}, "drugstore": {"\u85e5\u5e97": 1}, "science": {"\u79d1\u5b66": 4, "\u628a": 1}, "math": {"\u6570\u5b66": 6, "\u5f88": 1, "\u4e0d\u597d": 1, "\u6578\u5b78": 1, "\u559c\u4e0d\u559c\u6b22": 1}, "both": {"\u90fd": 11, "\u5169\u500b": 1, "\u7684": 1, "\u70ba\u4e86": 1, "\u4e24\u4e2a": 1, "\u4eba": 1, "\u4f1a": 2, "\u65e2": 1, "": 2}, "Just": {"\u53ea\u8981": 3, "\u8aaa\u4e0d": 1, "\u7ad9": 1, "\u7acb\u5834": 1, "\u8003\u616e": 1, "\u770b\u770b": 1, "\u5c31": 4, "": 3, "\u8ddf\u7740": 1, "\u6211": 1, "\u5427": 2, "\u90a3\u65f6": 1}, "belt": {"\u8981\u662f": 1, "\u7cfb": 1, "\u5b89\u5168\u5e26": 1, "\u7684\u8bdd": 1, "\u4ed6": 1, "\u5c31": 1}, "batteries": {"\u7535\u6c60": 1, "\u8981": 1, "\u989d\u5916": 1, "\u4ed8\u94b1": 1}, "touched": {"\u78b0": 2, "\u4e86": 2, "\u89e6\u52a8": 1, "\u5fc3": 1}, "gun": {"\u69cd": 3, "\u628a": 2, "\u67aa": 1}, "mention": {"\u6c92\u6709": 1, "\u63d0\u5230": 2, "\u9019\u500b": 1, "\u8c22\u8c22\u4f60\u4eec": 1, "\u201d": 1, "\u6c38\u8fdc": 1, "\u522b": 1, "\u63d0": 1, "\u5b83": 1}, "incident": {"\u4e8b\u6545": 2, "\u9019\u4ef6": 1, "\u4e8b": 1, "\u5f04": 1, "\u6bd4\u8f03": 1, "\u9019": 1, "\u8d77": 1, "\u4e8b\u4ef6": 1, "\u4f7f": 1, "\u4e00\u8209": 1, "\u60c5\u51b5": 1}, "appears": {"\u770b": 2, "\u8d77\u4f86": 2, "\u597d\u50cf": 2, "\u770b\u4f86": 1, "\u4f3c\u4e4e": 1, "\u4e0a": 1, "\u73a9": 1, "\u958b\u5fc3": 1, "\u770b\u8d77\u6765": 1, "\u5f3a\u58ee": 1}, "deceitful": {"\u4e2a": 1, "\u9a97\u5b50": 1}, "pineapple": {"\u4ec0\u9ebc": 1, "\u4e0d\u5403": 1, "\u83e0\u863f": 1}, "Might": {"\u80fd": 1, "\u4e00\u4e0b": 1, "\u60a8": 1, "\u59d3\u540d": 1, "\u4f4f\u5740": 1, "\u5417": 1}, "fixed": {"\u4fee\u7406": 3, "\u4e00\u5343": 1, "\u65e5": 1, "\u5713": 1, "\u5f20": 1, "\u9700\u8981": 1, "\u628a": 1, "\u4fee\u597d": 2}, "lining": {"\u5c71": 1, "\u7aae\u6c34\u76e1\u7591\u7121\u8def": 1, "": 1, "\u6bcf": 1, "\u6735": 1, "\u96f2": 1, "\u62ab\u8457": 1, "\u9280\u8863": 1}, "silver": {",": 1}, "does": {"\u904b\u884c": 1, "\u4e0d": 2, "\u6ca1\u6709": 10, "\u771f\u7684": 1, "\u4ec0\u9ebc": 1, "\u8981": 1, "\u5230\u5e95": 1, "\u4f46": 1}, "Canadians": {"\u52a0\u62ff\u5927\u4eba": 2, "\u60f3\u6709": 1}, "orange": {"\u53ea": 1, "\u6a59\u5b50": 7, "\u4e00\u9ede": 1, "\u67f3\u6a59\u6c41": 3, "\u67f3\u6a59": 1, "\u4e00\u53ea": 2, "\u60f3\u8981": 2, "\u6a59\u6c41": 1, "\u4e00\u676f": 1}, "vacant": {"\u8fd8\u6709": 1, "\u51e0\u95f4": 1, "\u7a7a\u623f": 1}, "fingerprints": {"\u6307\u7eb9": 1, "\u5417": 1}, "butterfly": {"\u4e00": 1, "\u96bb": 1, "\u8774\u8776": 1}, "prepared": {"\u8b93": 1, "\u6e96\u5099": 4, "\u597d": 3, "\u51c6\u5907": 1, "\u6c92\u6709": 1, "\u4ed6": 1, "\u90fd": 2, "\u4f46\u8981": 1, "\u8a8d\u771f": 1, "\u6211": 1}, "holes": {"\u628a": 1, "\u7a7f\u7834": 1}, "nuts": {"\u6700\u540e": 1, "\u4e00\u4e2a": 1, "\u542c": 1, "\u8bf4": 1, "\u8ba4\u4e3a": 1, "\u75af": 1}, "deposit": {"\u628a": 1, "\u5b58": 1, "\u94f6\u884c": 1}, "urban": {"\u90fd\u5e02": 1, "\u4e00\u500b": 1, "\u4e3b\u8981": 1, "\u8d8a\u4f86\u8d8a": 1, "\u9077\u5f80": 1, "\u9109\u6751": 1}, "skates": {"\u514d\u8cbb": 1, "\u5f97\u5230": 1, "\u6e9c\u51b0\u978b": 1}, "Enjoy": {"\u5ea6\u5047": 1, "\u6109\u5feb": 1, "\uff01": 1}, "Europeans": {"\u6b50\u6d32": 1, "\u4eba": 1, "\u90fd": 1, "\u611b": 1, "\u6b27\u6d32\u4eba": 1, "\u559d\u9152": 1}, "wine": {"\u8461\u8404\u9152": 12, "\u767d\u8461\u8404\u9152": 4, "\u7d05": 4, "\u9152": 5, "\u52dd": 1, "\u904e": 1, "\u7d05\u9152": 1, "\u6709\u4eba": 1}, "nickname": {"\u6635\u79f0": 1, "\u751a\u9ebc": 1}, "autistic": {"\u6709": 1, "\u81ea\u95ed\u75c7": 1}, "mistook": {"\u628a": 4, "\u8aa4": 3, "\u8a8d\u70ba": 3, "\u662f": 4, "\u8aa4\u8a8d": 1, "\u70ba": 2}, "abstained": {"\u6295\u7968": 1, "\u5f03\u6743": 1}, "system": {"\u5236\u5ea6": 2, "\u7cfb\u7edf": 3, "\u8fd0\u884c": 1, "\u8d77\u6765": 1}, "mountaineering": {"\u5c0d": 1, "\u767b\u5c71": 1, "\u611f\u8208\u8da3": 1}, "clipped": {"\u70ba": 1, "\u96bb": 1, "\u4fee\u526a": 1, "\u7f8a\u6bdb": 1}, "sheep": {"\u7f8a": 3, "\u990a": 1, "\u6570\u7f8a": 1, "\u4e00\u4e2a": 1, "\u53ea": 1, "": 3, "\u9664\u4e86": 1, "9": 1, "\u4e4b\u5916": 1, ",": 1, "\u5168\u90e8": 1, "\u4e86": 1}, "due": {"\u7531\u4e8e": 2, ",": 1, "\u8fdf\u5230": 1, "3": 1, "\u8a72": 1, "\u4eec": 1}, "Change": {"\u4e00\u7ad9": 1, "\u63db": 1}, "trains": {"\u706b\u8eca": 5, "\u4e58\u5750": 1, "\u62cd": 1, "\u706b\u8f66": 2, "\u597d\u73a9": 1, "\u4e09\u5206": 1, "\u767c\u8eca": 1, "\u4e00\u7ad9": 1, "\u5728": 1, "\u95f4\u9694": 1, "\u4e2d": 1, "\u6f2b\u957f": 1}, "lesson": {"\u5df2\u7ecf": 2, "\u5438\u53d6\u6559\u8bad": 2, "\u56de\u5230": 1, "\u7b2c\u4e09\u8bfe": 1, "\u8bb0\u597d": 1, "\u6559\u8bad": 1}, "learned": {"\u4e86": 5, "\u5b66\u4f1a": 4, "\u5b66": 1, "\u8fd9\u4e48": 1, "\u5b78\u6703": 1, "\u95b1\u8b80": 1, "\u90a3\u91cc": 1, "\u6559\u517b": 1, "\u4e0d\u9760": 1, "\u5c81": 1, "\u5c31\u5b66": 1}, "Lemons": {"\u6ab8\u6aac": 1, "\u9178": 1, "\u7684": 1}, "Neither": {"\u548c": 2, "\u90fd": 4, "\u90a3\u4ef6\u4e8b": 1, "\u6ca1\u6709": 2, "\u90a3\u4e48": 1, "\u6c92": 1}, "nor": {"\u4e0d": 6, "": 5, "\u8ba4\u8bc6": 1, "\u4e5f": 1}, "massage": {"\u60f3\u8981": 1, "\u6309\u6469": 1, "\u6211": 1}, "manners": {"\u624b\u6307": 2, "\u70b9": 2, "\u522b\u4eba": 2, "\u4e0d": 2, "\u793c\u8c8c": 2, "\u79ae\u8c8c": 2, "\u8209\u6b62": 1, "\u4e00\u9ede": 1}, "privately": {"\u79c1\u4e0b": 1, "\u8c08": 1, "\u4e00\u5206\u949f": 1}, "excited": {"\u4e3a": 1, "\u800c": 1, "\u6fc0\u52a8": 2, "\u8208\u596e": 1, "\u5403\u4e0d\u4e0b": 1, "\u5f88": 1, "\u5174\u594b": 2, "\u548c\u739b\u4e3d": 1, "\u5947\u602a": 1, "\u90a3\u9ebc": 1, "\u6fc0\u52d5": 1}, "animals": {"\u52a8\u7269": 5, "\u52d5\u7269": 3, "\u63a5": 2, "\u6b7b\u4ea1": 2, "\u6b63\u5728": 1, "\u95dc\u65bc": 1, "\u786e\u5b9e": 1, "\u6240\u6709": 1}, "forces": {"\u519b\u961f": 1, "\u6574\u7247": 1, "\u9886\u571f": 1}, "occupied": {"\u5360\u9886": 1, ",": 1, "\u88ab": 1}, "territory": {"\u4e86": 2}, "body": {"\u5c31\u662f": 1, "\u5c38\u4f53": 1, "\u5168\u8eab": 3, "\u9178\u75db": 3}, "crossed": {"\u4ece": 1, "\u5220\u9664": 1, "\u4e58": 1, "\u904e\u6cb3": 1, "\u4e58\u8239": 1, "\u8fc7": 1, "\u7ff9\u8457": 1, "\u4e8c\u90ce\u817f": 1}, "opposed": {"\u53cd\u5bf9": 2, "/": 1}, "monopolies": {"\u5784\u65ad": 1, "": 1, "\u4ed6": 1, "\u66fe\u7ecf": 1, "\u4ee5\u524d": 1}, "behavior": {"\u884c\u4e3a": 5, "\u7684": 1}, "intolerable": {"\u8ba9": 1, "\u4eba": 1, "\u65e0\u6cd5\u5fcd\u53d7": 1}, "Fill": {"\u628a": 2, "\u586b\u6eff": 1, "\u586b\u5beb": 1, "\u6c34\u88dd": 1, "\u6eff": 1, "\u586b\u4e0a": 1, "\u59d3\u540d": 1}, "dry": {"\u9019": 2, "\u53e3": 3, "\u4e95": 2, "\u4e7e": 4, "\u6db8\u4e86": 2}, "convinced": {"\u8bf4\u670d": 1, "Tom": 1, "\u6df1\u4fe1": 1, "\u4f1a\u5f80": 1, "\u65b9\u5411": 1, "\u8f6c\u53d8": 1}, "waved": {"": 1, "\u7ed9": 1, "\u62db": 1, "\u6325\u624b": 2, "\u4e86": 2}, "Taxi": {"\u8a08\u7a0b": 1, "\u8eca\u8cbb": 1, "\u5c07": 1, "\u5728": 1, "\u6f32\u50f9": 1}, "Persian": {"\u6ce2\u65af\u732b": 1, "\u4e0b\u9762": 1}, "feet": {"\u811a": 4, "\u60a8": 1, "\u4e0d\u5408": 1, "\u6709\u516d": 1, "\u544e": 1}, "equivalent": {"\u90a3\u4e2a": 1, "\u65e5\u6587": 1, "\u8bcd\u6c47": 1, "\u5bf9\u5e94": 1, "\u4e00\u6b21": 1, "\u76f8\u5f53\u4e8e": 1, "\u4e24\u5e74": 1, "\u5e74\u9f84": 1, "\u52a0": 1, "\u8d77\u6765": 1, "\u76f8\u5f53": 1}, "pain": {"\u75db": 4, "\u7121\u6cd5": 4, "\u75db\u82e6": 6, "\u89ba": 1, "\u9019\u7a2e": 2, "\u75bc\u75db": 1, "\u6d88\u5931": 1}, "nonsense": {"\u80e1\u8a00\u4e71\u8bed": 1, "\u80e1\u8bf4": 1, "\u5462": 1, "\u7121\u7a3d\u4e4b\u8ac7": 1, "": 1}, "highly": {"\u5f97": 1, "\u8ba4\u8bc6": 1, "\u53ef\u80fd\u6027": 1, "\u5fae\u4e4e\u5176\u5fae": 1}, "weighed": {"\u7528": 1, "\u6d74\u5ba4": 1, "\u4f53\u91cd": 2, "\u8ba1\u91cf": 1}, "6": {"\u516d\u9ede\u9418": 1, "6": 2, "": 1, "\u8fd8\u662f": 1, "\u516d\u9ede\u534a": 1, "\u56de\u4f86": 1, "\u70b9": 1, "\u516d\u70b9": 1}, "veranda": {"\u4e00\u4e2a": 1, "\u6f02\u4eae": 1, "\u6696\u623f": 1}, "trusts": {"\u76f8\u4fe1": 2, "\u8a31\u591a": 1}, "blanket": {"\u9001": 1, "\u4e00\u584a": 1, "\u6bef\u5b50": 3, "\u8fd9\u4e2a": 1}, "highest": {"\u7b2c\u4e8c": 1, "\u9ad8\u5cf0": 1, "\u54ea": 1}, "clenched": {"\u54ac\u7d27\u7259\u5173": 1, "\u63e1\u7d27": 1}, "forgetful": {"Tom": 1, "\u53d8\u5f97": 1, "\u5065\u5fd8": 2}, "recently": {"\u6700\u8fd1": 14, "\u904e": 1, "\u5e72": 2, "\u4e9b": 2, "\u4f46\u662f": 2, "\u521a": 1, "\u53bb\u8fc7": 1, "\u5e38\u770b\u5230": 1, "\u521a\u624d": 1}, "Spell": {"\u62fc": 1, "\u4e00\u4e0b": 1, "\u60a8": 1}, "barely": {"\u51e0\u4e4e": 1, "\u4e0d\u80fd": 1, "\u5e7e\u4e4e": 2, "\u4e0b": 1, "\u4e0d\u4e86": 1, "\u592a\u5c0f": 1, "": 1, "\u6211": 1, "\u770b\u4e0d\u898b": 1, "\u4ec5": 1, "\u6709\u591f": 1, "\u7cca\u53e3": 1}, "secretary": {"\u79d8\u4e66": 3, "\u4e0b\u51b3\u5fc3": 1, "\u60a8": 1, "\u65b0\u6765": 1, "\u5427": 1}, "CV": {"\u5c65\u6b77": 1, "\u6df1\u523b": 1, "\u5370\u8c61": 1}, "impressed": {"\u7d66": 3, "\u7559\u4e0b": 3, "\u4f5c\u54c1": 1, "\u6df1\u523b\u5370\u8c61": 1, "\u6df1": 1, "\u5370\u8c61": 1}, "chased": {"\u8ffd": 1}, "rabbit": {"\u5154\u5b50": 3, "\u957f\u8033\u6735": 1, "\u957f": 1, "\u7740": 1, "\u957f\u957f\u7684": 1, "\u77ed\u77ed\u7684": 1}, "skin": {"\u6e3e\u8eab": 1, "\u6fd5\u900f": 2, "\u76ae\u819a": 4, "\u771f\u597d": 1}, "friendly": {"\u5bf9": 1, "\u5f88": 1, "\u53cb\u597d": 3, "\u597d": 1, "\u5c0d": 2, "\u53cb\u5584": 2}, "international": {"\u4e00\u95e8": 1, "\u56fd\u9645": 1, "\u8bed\u8a00": 1, "\u570b\u969b": 1}, "adopted": {"\u6536\u517b": 2, "\u90a3\u4e2a": 2, "\u5c0f\u5973\u5b69": 1}, "brown": {"\u68d5\u8272": 1, "\u662f": 1, "\u8910\u8272": 2, "\u5f88\u7f8e": 1, "\u8edf": 1, "\u6df1\u8910\u8272": 1}, "drinkers": {"\u98f2\u9152": 1, "\u8005": 1, "\u7981\u5165": 1}, "allowed": {"\u4e0d\u51c6": 3, "\u5141\u8bb8": 3, "\u4e0d": 1}, "own": {"\u5c6c": 1, "\u81ea\u5df1": 23, "\u89aa": 1, "\u773c\u770b": 1, "\u72ec\u7acb": 1, "\u5b8c\u6210": 1, "\u5de5": 1, "\u505a": 1, "\u4eba": 1}, "baggage": {"\u884c\u674e": 4, "\u4e22": 1}, "imaginative": {"\u66fe\u7d93": 1, "\u5bcc\u6709": 1, "\u60f3\u50cf\u529b": 2, "\u6709": 1}, "pronounce": {"\u600e": 1, "\u9ebc": 1, "\u5538": 1, "\u5b57": 1, "\u767c\u97f3": 1, "\u53d1\u97f3": 2, "\u4f60\u4eec": 1, "\u600e\u4e48": 2, "\u8bfb": 1}, "disappeared": {"\u6d88\u5931": 2, "\u4e86": 3, "\u4e0d\u89c1": 1}, "trace": {",": 1, "": 2, "\u4e0d\u7559": 1}, "results": {"\u7d50\u679c": 1, "\u662f": 1, "\u751a\u9ebc\u6a23": 1}, "Meet": {"\u5728": 1, "\u898b": 1}, "kidnappers": {"\u9019\u4e9b": 1, "\u7d81": 1, "\u532a": 1, "\u653e\u68c4": 1, "\u8de1\u8c61": 1}, "unable": {"\u4e0d\u80fd": 1, "\u4e70\u8f66": 1, "\u90a3\u65f6": 1, "\u6ca1\u6cd5": 1, "\u751f\u65e5\u6d3e\u5bf9": 1, "": 1, "\u7121\u6cd5": 2, "\u4e0a": 1, "\u5df2\u7ecf": 1, "\u4e3a\u65f6\u5df2\u665a": 1}, "central": {"\u8fd9\u680b": 1, "\u697c": 1, "\u91cc\u9762": 1, "\u4e2d\u592e": 1, "\u6696\u6c14": 1, "\u7cfb\u7edf": 1}, "efforts": {"\u52aa\u529b": 4}, "vain": {"\u767d\u8d39": 1, "\u767d": 1, "\u8cbb": 1}, "shed": {"\u68da\u91cc": 1, "\u4eba\u4f1a": 1, "\u4e3a": 1, "\u8fd9\u4e2a": 1, "\u65e7": 1, "\u5efa\u7b51\u7269": 1, "\u800c": 1, "\u843d\u6cea": 1}, "checked": {"\u68c0\u67e5": 3, "\u5165\u4f4f": 1, "\u4e00\u9593": 1, "\u5f88\u597d": 1, "\u65f6\u95f4\u8868": 1, "\u770b\u770b": 1}, "eyesight": {"\u89c6\u529b": 4, "\u6b63": 1, "\u6162\u6162": 1, "\u4e0b\u964d": 1, "\u4e00\u6b21": 1, "\u8996\u529b": 2, "\u90a3\u6b21": 1, "\u4f73": 1, "\u5931\u660e": 1}, "shows": {"\u770b": 1, "\u812b\u53e3\u79c0": 1}, "ice": {"\u51b0\u584a": 1, "\u51b0": 4, "\u7ed3\u6210": 1, "": 1}, "Fasten": {"\u7cfb\u4e0a": 2, "\u5b89\u5168\u5e26": 2, "\u7e6b": 1, "\u5b89\u5168": 1, "\u5e36": 1, "\u60a8": 1}, "belts": {"\u4f60\u5011": 1}, "abstain": {",": 1, "": 1}, "Never": {"\u4e0d\u8981": 2, "\u72af\u932f": 1, "\u6c38\u8fdc": 2, "\u51b3\u4e0d": 1, "\u653e\u5f03": 1}, "helps": {"\u5e2e\u52a9": 1, "\u6240\u5728": 1, "\u4f4d\u7f6e": 1}, "during": {"\u5728": 6, "\u4e2d": 4, "\u8fd9\u4e2a": 1, "\u6709": 1, "\u73a9": 1, "\u767d\u5929": 1, "\u6642\u5019": 1, "\u671f\u95f4": 1, ",": 1, "\u65e9\u6668": 1}, "Talking": {"\u97f3\u6a02\u6703": 1, "\u8aaa": 1, "\u8a71": 1, "\u4e0d": 1, "\u79ae\u8c8c": 1, "\u88e1": 1, "\u8ac7\u8a71": 1}, "easily": {"\u5f88": 9, "\u5bb9\u6613": 15, "\u5730": 5, "\u8f7b\u677e": 1, "\u88ab": 1, "": 1, "\u4ed6": 1}, "pull": {"\u4e00\u8f86\u8f66": 1, "\u505c": 1, "\u4e0b\u6765": 1, "\u628a": 1, "\u8f66": 1, "\u505c\u4e0b\u6765": 1}, "serious": {"\u8ba4\u771f": 6, "\u662f": 4, "\u4e25\u8083": 2, "\u8981": 1, "\u7dca": 1, "\u4e25\u91cd": 4, "\u56b4\u91cd": 1, "\u8a8d": 1, "\u771f\u7684": 1, "\u6ca1\u72af": 1}, "Short": {"\u77ed\u88d9": 1, "\u5df2\u7d93": 1}, "fashion": {"\u904e\u6642": 3, "\u4e86": 4, "\u4e0d": 1, "\u6d41\u884c": 1}, "Balls": {"\u7403": 1, "\u5706": 1}, "exchange": {"\u53ef\u4ee5": 1, "\u4ea4\u63db": 1, "?": 1, "\u63db": 1}, "rooms": {"\u623f\u9593": 2, "\u597d\u597d": 1, "\u5730": 1, "\u5229\u7528": 1}, "hanging": {"\u756b": 1, "\u639b": 1, "\u90a3\u5e45": 1, "\u56fe": 1, "\u6302": 1}, "forest": {"\u68ee\u6797": 4, "\u6811\u6797": 1, "\u91cc": 2, "\u88e1": 1, "\u5f97": 1, "\u4e0b\u4f86": 1}, "lay": {"\u5916": 1, "\u6e56\u6cca": 1, "\u8eba": 1, "\u7740": 1}, "beyond": {"\u6709": 1, "\u5bf9\u9762": 1}, "meals": {"\u5403\u996d": 2, "\u65f6": 2, "\u996d\u540e": 1, "\u996d\u524d": 1, "\u8981": 1, "\u5e38": 1}, "office": {"\u8d77\u4f1a": 1, "\u529e\u516c\u5ba4": 4, "\u8fa6": 13, "\u516c\u5ba4": 14, "\u5230": 2, "\u4ed6": 1, "\u8fd9\u5468": 1, "\u91cc": 1, "": 1}, "lying": {"\u660e\u663e": 1, "\u5728": 5, "\u6492\u8c0e": 3, "\u6c92\u6709": 1, "\u8aaa\u8b0a": 2, "\u6492\u8b0a": 1}, "chess": {"\u653e\u5b78": 1, "\u4e0b\u68cb": 2, "\u600e\u9ebc\u6a23": 1, "\u4e0b": 1, "\u56fd\u9645\u8c61\u68cb": 1}, "key": {"\u9470\u5319": 8, "\u94a5\u5319": 7, "\u5f80\u53f3": 1, "\u908a": 1, "\u8f6c\u52a8": 1, "\u5c31\u662f": 1, "\u8fd9": 1, "\u4e22\u5931": 1}, "Action": {"\u884c\u80dc": 1, "\u4e8e": 1, "\u8a00": 1, "": 1, "\u5e76": 1, "\u4e0d\u662f": 1, "\u6240\u6709": 1, "\u60c5\u51b5": 1, "\u90fd": 1}, "honeymoon": {"\u8fc7": 1, "\u871c\u6708": 1}, "words": {"\u53ef\u4e0d\u53ef\u4ee5": 1, "\u8bf4": 1, "\u51e0\u53e5": 1, "\u8a71": 3, "\u7528": 2, "\u672c\u8bcd\u5178": 1, "\u5355\u8bcd": 1, "\u8b93": 1, "\u5403": 1, "\u9a5a": 1, "\u8bcd": 1, "\u6df7\u6dc6": 1}, "cleared": {"\u6e05\u7406": 2, "\u7a4d\u96ea": 1, "\u6e05\u4e86\u6e05": 1, "\u54b3\u55fd": 1, "\u4e00\u4e0b": 1, "\u7136\u540e": 1, "\u63a5\u7740": 1, "\u8bb2": 1}, "snake": {"\u9019\u689d": 2, "\u86c7": 3}, "haircut": {"\u51fa\u767c": 1, "\u526a": 1, "\u500b": 1, "\u982d": 2, "\u9aee": 4, "\u4e26": 1, "\u7406": 3}, "pronunciation": {"Tom": 1, "\u5199\u4f5c": 1, "\u672c\u56fd": 1, "\u4eba": 1, "\u4e00\u6837": 1, "": 1, "\u4ed6": 1, "\u7684": 1, "\u53d1\u97f3": 2, "\u8fdc\u975e": 1, "\u4e0d\u597d\u610f\u601d": 1, "\u4e0d\u592a\u597d": 1}, "guilt": {"\u96b1\u7d04": 1, "\u5730": 1, "\u6709": 2, "\u4e00\u7a2e": 1, "\u5167\u759a": 1, "\u611f": 1, "\u6709\u7f6a": 1}, "Driving": {"\u5149\u6ed1": 1, "\u8def\u4e0a": 1, "\u5f00\u8f66": 1, "\u4f1a": 1, "\u5bfc\u81f4": 1, "\u8f66\u7978": 1}, "swam": {"\u904a": 1, "\u6e38": 2, "\u6cf3": 1, "\u6e38\u5230": 1, "\u4e3a\u6b62": 1, "Tom": 1, "\u6e38\u6cf3": 2}, "surprise": {"\u5e36": 1, "\u4e00\u500b": 2, "\u9a5a\u559c": 2, "\u7d66": 2, "\u5413\u552c": 1, "\u4e00\u4e2a": 1, "\u60ca\u559c": 3, "\uff01": 1, "\u5403\u60ca": 1, "\u5bb9\u6613": 1, "\u60f3\u51fa": 1, "\u4e86": 1, "\u592a": 1}, "Money": {"\u9322": 1, "\u6703": 1, "\u5f9e": 1, "\u6a39\u4e0a": 1, "\u51fa\u4f86": 1, "\u91d1\u94b1\u4e07\u80fd": 3, "\u91d1\u94b1": 3, "\u5230": 1, "\u4e1c\u897f": 1, "\u8d5e\u6210": 1}, "legs": {"\u4e24\u53ea": 1, "\u811a": 1, "\u817f": 4, "\u5f88\u75db": 1, "\u6709": 1, "\u6bdb\u75c5": 1}, "lighter": {"\u5929\u8272": 1, "\u8d8a\u4f86\u8d8a": 1, "\u4eae": 1}, "guarding": {"\u5011": 1, "\u5b88\u885b": 1, "\u8457": 1, "\u9019": 1, "\u5ea7": 1}, "bridge": {"\u6a4b": 7, "\u5011": 1, "\u4fee": 1, "\u4e00\u5ea7": 2, "\u5ea7": 1, "\u6865": 2, "\u8ddf\u7740": 1, "\u90a3\u91cc": 1, "\u6a6b": 1, "\u8de8": 1, "\u5f9e": 1}, "dealt": {"\u672c": 2, "\u53ef\u4ee5": 2, "\u7528": 2, "\u5904\u7406": 3}, "window": {"\u9ebb\u7169": 1, "\u7a97": 3, "\u7a97\u53e3": 4, "\u7a97\u6236": 16, "\u628a": 7, "\u6247": 3, "\u7a97\u5916": 1}, "brothers": {"\u5144\u5f1f": 11, "\u4e00\u6a23": 2, "\u4e24": 1, "\u4e2d": 1, "\u4e09\u540d": 1, "\u5144\u957f": 1}, "anywhere": {"\u5728": 2, "\u54ea\u513f": 6, "\u90fd": 3, "\u4efb\u4f55": 2, "\u5730\u65b9": 2, "\u53bb": 1, "\u54ea\u88e1": 3, "\u60a8": 1, "\u968f\u4fbf": 2, "\u5c31": 1, "\u4e5f": 1}, "tragic": {"\u807d\u5230": 1, "\u9019\u4ef6": 1, "\u60b2\u5287": 1, ",": 1, "": 2, "\u4ed6\u5006": 1, "\u76e1": 1}, "telephoned": {"\u6253": 1, "\u96fb\u8a71": 1, "\u7d66": 1}, "Cats": {"\u732b": 2, "\u4e0d\u5403": 1}, "cleaners": {"\u5f88": 1, "\u5438\u5c18\u5668": 1}, "rent": {"\u79df\u91d1": 5, "\u9072\u4ea4": 1, "\u4e00\u500b": 1}, "napping": {"\u7761\u5348\u89c9": 1, "\u4e2a": 1, "\u602a": 1}, "politician": {"\u8bf4\u8bdd": 1, "\u4e2a": 1, "\u5f53\u5b98": 1, "\u90a3\u7a2e": 1, "\u653f\u6cbb\u5bb6": 4, "\u4f4d": 1}, "checks": {"\u652f\u7968": 1}, "displeased": {"\u4e0d": 2, "\u9ad8\u8208": 1, "": 1, "\u5979": 1, "\u5f9e\u4f86": 1}, "oldest": {"\u5927": 1, "\u6700\u5927": 1}, "stomachache": {"\u80c3\u75db": 2, "\u90a3\u4e48": 1, "": 1, "\u4f1a": 1, "\u574f": 1}, "strength": {"\u529b\u6c14": 2, "\u8017\u5c3d": 1, "\u5b9e\u529b": 1, "\u6ca1": 1, "\u7ee7\u7eed": 1, "\u5c1d\u8bd5": 1}, "scores": {"\u5206\u6570": 1, "\u603b": 1, "\u9ad8": 1, "\u4ed6": 1, "\u5b66\u4e60": 1}, "though": {"": 1, "\u4f46": 1, "\u5f88": 1, "\u731c\u5f97\u5230": 1, "\u5c3d\u7ba1": 1, "\u7528": 1, "\u5bf9\u8bdd": 1, ",": 1}, "CDs": {"\u4e86\u807d": 1, "\u5531\u7247": 1, "\u5149\u789f": 1, "CD": 3, "\u5f20": 1}, "underrated": {"\u91cd\u8981\u6027": 1, "\u4f4e\u4f30": 1}, "importance": {"\u88ab": 2, "\u8ba4\u4e3a": 1, "\u4e00\u4ef6": 1, "\u5927\u4e8b": 1}, "messages": {"\u7d66": 1, "\u8a0a\u606f": 1}, "inflexible": {"\u4e0d\u662f": 1, "\u6b7b\u677f": 1, "\u7684": 1}, "limit": {"\u4e0d\u8981": 1, "\u8d85\u901f": 2}, "ladder": {"\u68af\u5b50": 2, "\u6454": 1, "\u662f\u5426": 1, "\u575a\u56fa": 1, "\u4ee5": 1}, "War": {"\u6218\u4e89": 2, "\u4e0d\u4f1a": 1, "\u4f7f": 1, "\u5e74": 1}, "agent": {"\u4e07\u4e00": 1, "\u6709": 1, "": 1, "\u6211": 1}, "explained": {"\u89e3\u91ca": 2, "\u4ed4\u7ec6": 1, "\u7ed9": 1}, "literal": {"\u5b57\u9762": 1}, "easier": {"\u5148": 1, "\u5f9e": 1, "\u6700": 2, "\u7c21\u55ae": 2, "\u65e9\u9ede": 1, "\u7b80\u5355": 1, "\u4e9b": 1}, "astonishment": {"\u4ee4": 1, "\u60ca\u8bb6": 1, "\u7684": 1}, "To": {"\u662f": 3, "\u6c92": 1, "\u4ee4": 1, "\u5b9e\u8bdd": 1}, "losses": {"\u640d\u5931": 2, "\u4e00\u767e": 1, "\u842c\u65e5": 1, "\u5713": 1}, "incalculable": {"\u7121\u6cd5": 1, "\u4f30\u8a08": 1}, "risk": {"\u90fd": 1, "\u5192": 2, "\u8fd9\u4e2a": 1, "\u9669": 1, "\u5192\u9669": 1, "\u98ce\u9669": 3, "\u5192\u7740\u5371\u9669": 1, "\u5192\u8457": 1, "\u5371\u96aa": 1, "\u627f\u62c5": 1, "\u592a\u5927": 1}, "China": {"\u4e2d\u56fd": 5, "\u7248\u56fe": 1, "\u5927\u6982": 1, "\u4e8c\u5341\u4e94\u500d": 1, "\u4e2d\u570b": 7, "\u7814\u8b80": 1, "\u51fa\u53d1": 1}, "nodded": {"\u70b9\u5934": 1, "\u540c\u610f": 1}, "fruit": {"\u96a8\u4fbf": 1, "\u6c34\u679c": 12, "\u5403\u6c34\u679c": 2, "\u4f60\u5011": 1, "\u559c\u7231": 2, "\u4ec0\u4e48": 1}, "Venice": {"\u5a01\u5c3c\u65af": 2, "\u500b": 1, "\u8fc7": 1}, "thick": {"\u6c64": 1, "\u5f88": 1, "\u7a20": 1}, "declined": {"\u672c": 1, "\u5e94": 1, "\u5a49\u62d2": 1}, "fond": {"\u559c\u6b61": 2, "\u9177\u7231": 1, "\u559c\u6b22": 3, "\u62cd\u7167\u7247": 1, "\u7237\u7237": 1, "\u5927\u6e05\u65e9": 1}, "chipped": {"\u6240\u6709\u4eba": 1, "\u51d1\u4efd\u5b50": 1, "\u7ed9": 1, "\u751f\u65e5\u793c\u7269": 1}, "noon": {"\u7761\u5230": 2, "\u4e2d\u5348": 13, "\u5728": 1, "\u4ee5\u524d": 1, "\u8ba9": 1, "\u8fc7\u6765": 1, "\u524d": 1}, "reasons": {"\u6765": 1, "\u8d5e\u6210": 1, "\u7406\u7531": 2, "\u770b\u6765": 1, "\u539f\u56e0": 1}, "lately": {"\u6700\u8fd1": 8, "\u600e\u4e48": 1, "\u7761\u7720\u4e0d\u8db3": 1, "\u642d": 1, "\u6bd4\u8f03": 1, "\u4e00\u9ede": 1, "": 1, "\u4e8b\u60c5": 1, "\u6c92": 1}, "hand": {"\u624b\u91cc": 5, "\u624b": 8, "\u63e1\u4f4f": 1, "\u62ff": 2, "\u7740": 2, "\u996e\u6599": 1}, "inviting": {"\u9080\u8bf7": 1, "\u5403\u996d": 1}, "rules": {"\u9075\u5b88\u89c4\u5219": 5, "\u5fc5\u987b": 3, "\u64c5": 1, "\u65bc": 1, "\u9003\u907f": 1, "\u898f\u5247": 2, "\u6240\u4f5c\u6240\u4e3a": 2, "\u8fdd\u53cd": 2, "\u89c4\u5219": 3, "\u89c4\u77e9": 1}, "birds": {"\u5c0f": 1, "\u9ce5": 1, "\u812b\u9003": 1, "\u9ce5\u5152": 1, "\u6b4c\u5531": 2, "\u9e1f": 1, "\u7a97\u5916": 1, "\u5c0f\u9e1f": 1}, "happens": {"\u53d1\u751f": 5, "\u4e0d\u8ad6": 1, "\u767c\u751f": 3, "\u4e8b": 3, "\u6211": 1, "\u4f1a": 1, "\u5728": 1, "\u5e38\u6709": 1, "\u7740": 1, "\u7b49\u7b49": 1, "\u770b\u6703": 1}, "fussy": {"\u76f8\u5f53": 1, "\u6311\u5254": 1}, "growing": {"\u5de5\u696d": 1, "\u767c\u5c55": 1, "\u8fc5\u901f": 1}, "School": {"\u5b78\u6821": 5, "\u4e0a\u8ab2": 2, "\u5b66\u6821": 2, "\u4e0a\u8bfe": 2, "\u4e0b\u5468\u4e00": 1, "\u5f00\u5b66": 1}, "Saturdays": {"\u661f\u671f\u516d": 2, "\u8981": 1, "\u5b78": 1, "\u9031\u516d": 2}, "finishes": {"\u653e\u5b78": 1}, "bigger": {"\u6bd4": 1, "\u518d": 1, "\u5927": 3, "\u4e00\u9ede": 1, "\u500b": 1, "\u66f4": 1}, "moment": {"\u7559": 1, "\u4e00\u6703": 1, "": 1, "\u73b0\u5728": 1, "\u4ece\u6ca1": 1, "\u8bf7\u7a0d\u7b49": 1, "\u4e00\u4f1a": 1, "\u4e00\u6703\u5152": 2, "\u8acb": 1, "\u500b": 1, "\u7f8e\u597d": 1, "\u77ac\u9593": 1, "\u65f6\u523b": 1}, "Trust": {"\u76f8\u4fe1": 2}, "star": {"\u559c\u7231": 1, "\u660e\u661f": 1, "\u661f\u661f": 3, "\u6c92": 1, "\u4efb\u4f55": 1, "\u4e00\u9846": 1}, "tasty": {"\u597d\u5403": 1, "\u55ce": 1}, "warned": {"\u8b66\u544a": 6, "\u4e0d\u8981": 2, "\u904e": 1, "\u5225": 1, "\u4e0d\u7406": 1, "\u88ab": 1, "\u8fc7": 1}, "whether": {"\u662f\u5426": 10, "\u6703\u4f86": 1, "\u4e0d\u6765": 1, "\u5bf9": 1, "\u6765\u8bf4": 1, "\u5462": 1, "\uff1f": 1, "\u6709\u6ca1\u6709": 1, "\u6e6f\u59c6\u6703": 1, "\u574f": 2}, "heroes": {"\u82f1\u96c4": 2}, "novels": {"\u5c0f\u8bf4": 2, "\u4e00\u4e9b": 1, "": 1, "\u4e0d\u5f97\u4e0d": 1, "\u65e0\u804a": 1, "\u5168\u5929": 1, "\u5c0f": 2, "\u8aaa": 2, "\u71ac\u591c": 1}, "Lend": {"\u628a": 1, "\u501f\u7ed9": 1, "\u6709\u94b1": 1, "\u7684\u8bdd": 1, "": 1}, "passenger": {"\u90a3\u4e2a": 1, "\u7bee\u5b50": 1, "\u65c1\u8fb9": 1, "\u4e58\u5ba2": 1}, "begins": {"\u958b\u59cb": 5, "\u5f00\u59cb": 3, "": 1, "\u516b\u9ede\u534a": 1}, "calendar": {"\u65e5": 2, "\u66c6": 3, "\u6e6f\u59c6\u628a\u65e5": 1}, "restroom": {"\u6d17\u624b": 1, "\u9593": 1, "\u4e0a": 1, "\u5ec1\u6240": 1, "\u4e0b": 1, "\u6d17\u624b\u95f4": 1}, "rice": {"\u7c73\u996d": 2, "\u98ef": 4, "\u6bd4\u8d77": 2, "\u66f4": 2, "\u7c73": 3, "\u4f60\u5011": 1, ",": 1}, "difficulty": {"\u597d\u4e0d\u5bb9\u6613": 1, "\u624d": 1, "\u56f0\u96e3": 3, "\u5f88": 2, "\u96e3": 2, "\u89e3\u6c7a": 1, "\u9019\u500b": 1, "\u5b66": 1}, "Ogai": {"Ogai": 1, "\u559c\u6b22": 1}, "absorbed": {"\u8ff7\u4e0a": 1, "\u592a": 1, "\u4e13\u6ce8": 1, "\u4e8e": 1, "": 1, "\u5fd8": 1, "\u6c89\u8ff7\u4e8e": 1}, "clouds": {"\u8ab2": 1, "\u5802\u4e0a": 1, "\u5fc3\u4e0d\u5728\u7109": 1, "\u96f2": 1, "\u8d8a\u4f86\u8d8a": 1, "\u9ed1": 1, "\u4e91": 1, "\u4e4c\u4e91\u5bc6\u5e03": 1, "\u96f2\u6bd4": 1}, "until": {"\u624d": 2, "\u5230": 6, "": 4, "\u7b49\u5230": 4, ",": 1, "\u76f4\u5230": 8, "\u4e4b\u524d": 5, "\u524d": 3, "\u5728": 3, "\u524d\u6765": 1, "\u660e\u767d": 1, "\u6bcd\u7231": 1}, "capable": {"\u53ef\u4ee5": 2, "\u6709": 2, "\u80fd\u529b": 2, "\u8fd9\u4ef6": 1, "\u4e8b": 1, "\u6559\u6388": 1}, "Chocolate": {"\u5de7\u514b\u529b": 2, "\u542b\u6709": 1, "\u66f4\u591a": 1, "\u9435\u8cea": 2, "\u542b\u91cf": 1, "\u9084": 1, "\u8981": 1}, "spinach": {"\u83e0\u83dc": 4, "\u5c0f\u5b69": 1, "\u4e00\u822c": 1, "\u90fd": 1, "\u8a0e\u53ad": 1}, "frightening": {"\u5728": 1, "\u5687": 1}, "candy": {"\u4e0d\u8ad6": 1, "\u751a\u9ebc": 1, "\u6642\u5019": 1, "\u90fd": 1, "\u4e0d\u8a72": 1, "\u90a3\u9ebc": 1, "\u591a\u7cd6": 1, "\u7cd6\u679c": 2, "\u7cd6": 1, "\u751c\u98df": 1}, "achieve": {"\u662f": 2, "\u5730\u5b78": 1, "\u7fd2": 1, "": 1, "\u4f60": 1, "\u4e0d": 1, "\u6703": 1}, "richer": {"\u9547\u91cc": 1, "\u5176\u4ed6\u4eba": 1, "\u90fd": 1, "\u6709\u94b1": 1, "\u6709": 1, "\u9322": 1}, "article": {"\u6587\u7ae0": 3, "\u80e1": 1, "\u8aaa": 1, "\u7bc7\u6587\u7ae0": 1, "\u7bc7": 1, "\u5f88\u597d": 1}, "vodka": {"Tom": 1, "\u5225\u7684": 1, "\u4f0f\u7279\u52a0": 2}, "parks": {"\u516c\u56ed": 1, "\u628a": 1, "\u505c": 1, "\u8fd9\u91cc": 1}, "costs": {"\u9ed1": 1, "\u767d": 1, "\u82b1\u94b1": 1, "\u8981": 1, "\u5341\u5143": 1, "\u6b63": 1, "\u964d\u4f4e\u6210\u672c": 1, "\u82b1": 1, "\u5bf9": 1, "\u5f88": 1, "\u91cd\u8981": 1}, "group": {"\u4e00\u7d44": 1, "\u56e2": 1, "\u5bf9": 1, "\u4e00\u7fa4": 1, "\u770b\u5230": 1, "\u9e1f\u513f": 1, "\u6210\u7fa4": 1, "\u7740": 1}, "someday": {"\u67d0": 1, "\u4e00\u5929": 5, "\u6709": 4, "\u6210\u70ba": 1, "\u6709\u671d\u4e00\u65e5": 1, "\u6210\u4e3a": 1, "\u4e00\u540d": 1}, "During": {"\u65f6\u5019": 1, "\u6c64\u59c6": 1, "\u739b\u4e3d": 1}, "invitations": {"\u53d1\u51fa": 1, "\u9080\u8bf7": 1}, "ultimate": {"\u6700\u7ec8": 1}, "minute": {"\u60f3\u60f3": 1, "\u5206\u9418": 2, "\u8eca\u7a0b": 1, "\u4e00\u4e0b": 4, "\u5c06": 1, "\u4e00\u5206\u949f": 2, "\u5185": 1, "\u5230\u8fbe": 1, "\u8fd9\u91cc": 1, "\u9418": 1, "\u8b93": 1, "\u4e00\u6703\u5152": 1, "\u9ebb\u7169": 1, "": 2, "\u524d": 1, "\u8ba9": 1, "\u548c": 1, "\u96a8\u6642": 1, "\u5c31": 2, "\u91ab\u751f\u99ac": 1, "\u4e0a": 1}, "wagging": {"\u6416\u8457": 1, "\u8ddf\u8457": 1, "\u4e3b\u4eba": 1}, "tail": {"\u5c3e\u5df4": 3}, "tough": {"\u786e\u5b9e": 1, "\u6709\u4e2a": 1, "\u9ebb\u70e6": 1, "\u770b\u6765": 1, "\u96be\u7f20": 1}, "hiking": {"\u60f3\u5f85": 1, "\u4f11\u606f": 1, "\u800c": 1, "\u4e0d\u662f": 1, "\u4eec": 1, "\u51fa\u53bb": 1, "\u8fdc\u8db3": 1}, "mansion": {"\u8ddf": 1, "\u4f60": 1, "\u7684": 1, "\u5c31\u662f": 1}, "Compared": {"\u6bd4": 2, "\u548c": 1, "\u8207": 1, "\u76f8\u6bd4": 1, "\u8f66\u6bd4": 1, "\u8d77\u6765": 1}, "conform": {"\u5fc5\u987b": 1, "\u9075\u5b88\u89c4\u5219": 1}, "source": {"\u8f6f\u4ef6": 1, "\u5168\u90fd": 1, "\u5f00\u6e90": 1}, "breaking": {"\u6b63\u5728": 1, "\u62c6": 1, "\u9019\u9762": 1, "\u6ca1": 1, "\u8fdd\u6cd5": 1}, "None": {"\u9019\u88e1": 1, "\u982d": 1, "\u4e00\u4ef6": 1, "\u4e8b": 1, "\u8aaa": 1, "\u4e0d\u662f": 3, "\u90fd": 5, "\u4e0d": 1, "\u9019\u4e9b": 2}, "denied": {"\u90a3\u4e2a": 1, "\u5426\u8ba4": 2, "Tom": 1, "\u5426\u8a8d": 1, "\u66fe": 1, "\u5beb\u4fe1": 1, "\u7d66": 1}, "commerce": {"\u5927\u5742": 1, "\u5546\u4e1a\u4e2d\u5fc3": 1, "\u5546\u696d": 1, "\u4e2d": 1}, "boys": {"\u7537\u5b69\u5b50": 2, "\u7537\u5b69": 6, "\u4e0d\u8ba9": 1, "\u7537\u751f": 5, "\u7ea6\u4f1a": 1, "\u5011": 2, "\u5b69\u5b50": 1}, "Dry": {"\u5e72\u67f4": 1, "\u65fa": 1}, "truly": {"\u771f\u662f": 1, "\u771f\u7684": 2, "\u8fd9\u4e2a": 1}, "astonished": {"\u60ca\u8bb6": 1, "\u6240": 1, ",": 1, "": 2, "\u611f\u5230": 1}, "Most": {"\u5927\u591a": 1, "\u6578": 1, "\u5927\u591a\u6570": 2, "\u7535\u8111\u6e38\u620f": 1, "\u5927\u90e8\u4efd": 1, "\u591a\u6570": 1, "\u4e24\u6b21": 1, "\u5927\u90e8\u5206": 1}, "surrender": {"\u5be7": 1, "\u6b7b\u4e0d\u964d": 1, "\u9650": 1, "\u4e09\u5206": 1, "\u5167": 1, "\u6295\u964d": 2}, "Baikal": {"\u4fc4\u7f85\u65af": 2, "\u8c9d\u52a0\u723e\u6e56": 2, "\u6e56\u6cca": 2}, "Lake": {"\u4e0a": 3}, "deepest": {"\u6700\u6df1": 3, "\u8fd9\u91cc": 1, "\u5730\u65b9": 1, "\u6700\u6df1\u5904": 1}, "philosopher": {"\u6210\u4e3a": 1, "\u54f2\u5b66\u5bb6": 1}, "hopeless": {"\u9806\u9053": 1, "\u4e00": 1, "\u63d0": 1, "\u82f1\u8a9e": 1, "\u662f": 1, "\u7d55\u5c0d": 1}, "kids": {"\u4f60\u5011": 1, "\u5c0f\u5b69": 3, "\u5b69\u5b50": 8, "\u5e7e\u500b": 1, "\u6211\u5011": 1, "\u4ed6": 1, "\u66ff": 1, "\u5411": 1, "\u5011": 1, "\u554f": 1, "\u597d": 1, "\u5979\u4eec": 1}, "smoke": {"\u8bf7\u95ee": 1, "\u91cc": 2, "\u5438\u70df": 4, "\u5438\u7159": 1, "\u5e38": 1, "\u62bd": 1, "\u83f8": 1, "\u5192": 1, "\u7159": 1, "\u60a8": 1, "\u65e2": 1, "\u62bd\u70df": 1, "\u559d\u9152": 1}, "switched": {"\u548c\u739b\u4e3d": 1, "\u957f\u51f3": 1, "\u4ea4\u6362": 1, "\u4f4d\u7f6e": 1}, "hottest": {"\u4eca\u5e74": 1, "\u6700\u71b1": 1}, "hating": {"\u4eba\u4eec": 1, "\u6b62\u4f4f": 1, "\u4ec7\u6068": 1}, "depended": {"\u94b1\u5e01": 1, "\u4ef7\u503c": 1, "\u53d6\u51b3\u4e8e": 1, "\u6240": 1, "\u4f7f\u7528": 1, "\u91cd\u91cf": 1}, "metal": {"\u91d1\u5c5e": 3}, "worship": {"\u79ae": 1, "\u62dc\u5802": 1, "\u6642": 1, "\u7684": 1, "\u5e3d\u5b50": 1}, "progress": {"\u6709": 1, "\u5f88\u5927": 1, "\u9032\u6b65": 5, "\u4e2d": 1, "\u53d6\u5f97": 2, "\u8fd8": 1, "\u90a3\u4e48": 1, "\u5927": 1, "\u8fdb\u5c55": 1, "\u611f\u5230": 1, "\u8fdb\u6b65": 2, "\u5c0f\u5c0f\u7684": 1}, "Welcome": {"\u6b22\u8fce": 4, "\u6765\u5230": 1, "\u6b61\u8fce": 1, "\u4f86\u5230": 1, "\u65b0\u5bb6": 1}, "suggesting": {"\u5be6\u969b": 1, "\u4e0a": 1, "": 1, "\u6211": 1, "\u6c92\u6709": 1}, "turning": {"\u6253\u958b": 1, "\u56de\u53bb": 1, "\u8138\u7ea2": 1}, "wiped": {"\u64e6": 1, "\u53bb": 1, "\u8138\u4e0a": 1, "\u6c57\u6c34": 1}, "matches": {"\u7528\u5c3d": 1, "\u706b\u67f4": 1, "": 1}, "fits": {"\u9019\u4ef6": 1, "\u9069\u5408": 1, "\u6bd4\u8428": 1, "\u79cd": 1, "\u9002\u5408": 1, "\u73b0\u5728": 1}, "customer": {"\u987e\u5ba2": 1, "\u6c38\u8fdc": 1, "\u6b63\u786e": 1}, "north": {"\u5728": 2}, "Honshu": {"\u65e5\u672c": 1, "\u672c\u5dde": 1, "\u5317\u90e8": 1}, "referring": {"\u6307": 2}, "lending": {"\u628a": 2, "\u501f": 3, "\u7d66": 2, "\u6211": 1}, "31st": {"\u518d\u6b21": 1, "\u6708": 1, "31": 1, "\u65e5": 1, "\u5230\u671f\u65e5": 1}, "exist": {"\u5b58\u5728": 4, "\u751f\u547d": 1, "\u6e90\u6cc9": 1, "\u6d3b\u7740": 1, "": 1, "\u4e0d": 1, "\u77e5\u9053": 1}, "flag": {"\u65d7\u5b50": 1, "\u5347\u8d77": 1, "\u639b\u8457": 1, "\u7f8e\u570b\u570b\u65d7": 1}, "skip": {"\u7e3d\u662f": 2, "\u9003\u5b78": 2}, "diet": {"\u8282\u98df": 3, "\u4e2d": 1, "\u5e0c\u671b": 1, "\u6ca1\u6709": 1, "\u7bc0\u98df": 1, "\u9700\u8981": 2, "\u51cf\u80a5": 2}, "Smiths": {"\u53f2\u5bc6\u65af": 1, "\u592b\u5a66": 1, "\u6211\u5bb6": 1}, "counting": {"\u5c31": 1, "\u6307\u671b": 3, "\u6b63\u5728": 2, "\u4f9d\u8d56": 1, "\u7740": 1, "\u7b97\u6709": 1}, "Throughout": {"\u8fd9": 1, "\u6cbb\u7597": 1, "\u7ec8\u4e8e": 1, "\u575a\u6301": 1, "\u4e0b\u6765": 1}, "cancer": {"\u764c\u75c7": 6, "\u65bc": 4, "\u6d88\u606f": 1}, "helping": {"\u6b63\u5728": 1, "\u5e6b\u5fd9": 1, "\u5728": 1, "\u5e2e": 3, "\u96be\u9053": 2, "\u4e0d\u8be5": 2, "\u53c8": 1, "\u4e00\u7897": 1, "\u7ed9\u4e88": 1, "\u5e2e\u52a9": 1}, "foundation": {"\u8b20\u8a00": 1, "\u6beb\u7121": 1, "\u6839\u64da": 1}, "concentrate": {"\u5e94": 1, "\u96c6\u4e2d": 2, "\u4e8e": 1, "\u53e6\u5916": 1, "\u7531\u4e8e": 1, "\u6211": 2, "": 1, "\u628a": 1, "\u6ce8\u610f\u529b": 1}, "chose": {"\u9009\u62e9": 1, "\u4e86": 1, "\u8fd9\u4efd": 1, "\u9078": 1, "\u90a3\u500b": 1}, "guys": {"\u4f60\u4eec": 8, "\u5230\u5e95": 1, "\u5bf9": 1, "\u4f60\u5011": 5, "\u8fd9\u4e9b": 2, "\u5bb6\u4f19": 3, "\u5e72\u4ec0\u4e48": 1, "\u5565": 1, "": 2, "\u90fd": 1}, "Finishing": {"\u524d": 1, "\u5b8c\u6210": 1, "\u51e0\u4e4e": 1}, "Wipe": {"\u7528": 1, "\u7eb8\u5dfe": 1, "\u90a3": 1, "\u9505": 1, "\u64e6\u5e72": 1, "\u64e6\u64e6": 1}, "Strawberries": {"\u8349\u8393": 2, "\u5b63\u7bc0": 1, "\u552e\u50f9\u9ad8": 1}, "brains": {"\u8111\u5b50": 1, "\u597d\u4f7f": 1}, "snakes": {"\u4e00\u9ede": 1, "\u4e5f": 1, "\u4e0d\u6015": 1, "\u86c7": 5}, "masterpiece": {"\u5e45\u753b": 1, "": 2, "\u5b83": 2, "\u540d\u6c14": 1, "\u771f\u662f": 1, "\u4e2a": 2, "\u6770\u4f5c": 1}, "voices": {"\u5011": 1, "\u958b\u5fc3": 1, "\u8072\u97f3": 1}, "slept": {"\u7761": 6, "\u7947": 1, "\u957f\u6905": 1, "\u7761\u89c9": 1, "\u51e0\u5c0f\u65f6": 1, "\u7a7f\u7740": 1}, "volcano": {"\u9019": 1, "\u5ea7": 1, "\u706b\u5c71": 1, "\u53c8": 1, "\u958b\u59cb": 1, "\u6d3b\u52d5": 1}, "remove": {"\u9664\u9508": 1, "\u4e1c\u897f": 1}, "chickens": {"\u517b": 1, "\u4e24\u53ea": 1, "\u3001": 1, "\u4e09\u53ea": 1, "\u516d\u53ea": 1, "\u9e21": 1}, "cats": {"\u732b": 5, "\u8c93": 4, "\u732b\u4f1a": 1, "\u72d7": 1, "\u4f46": 1, "\u59ca": 1, "\u6709\u4e09\u96bb\u8c93\u548c\u5169": 1, "\u96bb": 2, "\u59b9\u59b9": 1, "\u548c": 1, "\u4e00\u4e2a": 1, "\u4e24\u53ea": 1, "\u51e0\u53ea": 1, "\u8207": 1, "\u76f8\u6bd4": 1, "\u66f4": 2, "\u6709\u4e09": 1, "\u4e00\u53ea": 1, "\u516d\u53ea": 1}, "Wash": {"\u6d17": 4, "\u9032\u98df": 1, "\u5148": 1, "\u6d17\u624b": 2, "\u628a": 1, "\u76e4\u5b50": 1}, "extended": {"\u591a": 1, "\u505c\u7559": 1, "\u4e94\u5929": 1, "\u4f38\u957f": 1, "\u53f3\u624b": 1}, "straightforward": {"\u8bf4\u8bdd": 1, "\u76f4\u63a5": 1}, "weigh": {"\u6709": 1, "\u91cd": 1, "?": 1}, "suitcase": {"\u884c\u674e": 2, "\u628a": 1, "\u624b\u63d0\u7bb1": 5, "\u62ff\u5230": 1, "\u7559\u795e": 1, "\u770b\u8457": 1, "\u63d0": 1, "\u884c\u674e\u7bb1": 2, "\u591a\u91cd": 2}, "Valuable": {"\u5b9d\u8cb4": 1, "\u5df2": 1, "\u5931\u53bb": 1}, "comment": {"\u8c22\u8c22\u60a8": 1, "\u8bc4\u8bba": 1, "\u65e0\u53ef\u5949\u544a": 1, "\u8a55\u8ad6": 1, "\u4e0d\u5408": 1, "\u9069": 1}, "onto": {"\u4e0a": 2, "\u4e00\u5217": 1, "\u6b63\u5728": 1, "\u5f00": 1}, "row": {"\u7b2c\u4e00\u6392": 1, "\u6392\u6210": 1, "\u4e00\u6392": 1}, "Valentine": {"\u60c5\u4eba\u8282": 2, "\u4e00": 1, "\u72ec\u5904": 1}, "brave": {"\u60a8": 1, "\u52c7\u6562": 6, "\u6ca1": 1, "\u500b": 1, "\u4f46": 1}, "act": {"\u4e0d\u8981": 1, "\u90a3\u6a23": 1, "\u884c\u52a8": 4, "\u7acb\u523b": 1}, "mild": {"\u603b\u4f53": 1, "\u4e0a": 1, "\u7684": 1, "\u5f88": 1, "\u6696\u548c": 1}, "climate": {"\u65e5\u672c": 1, "\u8b93": 1, "\u9069\u61c9": 1, "\u6c23\u5019": 1, "\u6c14\u5019": 1, "\u600e\u4e48\u6837": 1}, "grapes": {"\u867d\u7136": 1, "\u8461\u8404": 4, "\u6211": 1, "\u8bd5": 1, "\u7d66": 1}, "remembers": {"\u8bb0\u5f97": 1, "\u6b63\u5728": 1, "\u62bd\u70df": 1, "\u90a3\u5929": 1}, "fair": {"\u516c\u5e73": 3, "\u4e26": 1, "\u66f8\u5c55": 1, "\u9019": 1}, "port": {"\u8457\u540d": 2, "\u6e2f\u53e3": 1, "\u79d1\u6bd4": 1, "\u4e00\u500b": 1, "\u6e2f\u53e3\u57ce\u5e02": 1}, "dentist": {"\u7259\u533b": 4, "\u770b": 3, "\u7259": 1, "\u91ab": 1}, "translating": {"\u53ad\u5026": 1, "\u7ffb\u8b6f": 2, "\u5728": 1, "\u4e00\u672c": 1}, "Boil": {"\u628a": 1, "\u71d2\u958b": 1}, "spare": {"\u9084": 1, "\u5269\u4e0b": 1, "\u591a\u9918": 1, "\u9592\u6687": 1, "\u6642\u5019": 1}, "1860": {"1860": 1, "\u5e74": 1, "\u7576": 1, "\u7f8e\u570b": 1}, "ear": {"\u628a": 2, "\u8033\u6735": 3, "\u5728": 2, "\u8a71": 1, "\u4e00": 1}, "stuck": {"\u653e\u5728": 1, "\u98a8\u66b4\u56f0": 1, "": 1, "\u4f46": 1, "\u88ab": 2, "\u6c92\u6709": 1, "\u88ab\u56f0": 1, "\u56f0\u4f4f": 1}, "Run": {"\u8dd1": 2, "\u62fc\u547d": 1, "\u5730": 1, "\u4f60": 1, "\u7528\u8dd1": 1}, "mountains": {"\u5230": 1, "\u5c71\u91cc": 1, "\u8eb2\u8d77\u6765": 1, "\u62cd\u5c71": 1, "\u5c71\u88e1": 1}, "doubtful": {"\u6000\u7591": 1, "\u4f1a\u6765": 1}, "laughs": {"\u7b11": 3, "\u5f8c": 2, ",": 1, "": 2, "\u624d": 2, "\u662f": 2, "\u5f97": 2}, "crowd": {"\u4eba\u7fa4": 7, "\u8a2d\u6cd5": 1, "\u4e00\u5927\u7fa4": 1, "\u4eba": 1, "\u5411\u524d\u8d70": 1, "\u4e2d": 4, "\u5f9e": 1, "\u64e0": 1, "\u5916": 1}, "gathered": {"\u805a\u96c6": 1, "\u8fd9\u6761": 1, "\u8857\u4e0a": 1}, "sat": {"\u5750\u5728": 12, "\u65c1\u8fb9": 2, "\u5750": 5, "\u684c\u908a": 1, "\u5750\u4e0b": 2, "\u6765": 1, "": 1, "\u739b\u4e3d": 1, "\u4e00\u6574\u591c": 1, ",": 1}, "cases": {"\u6761": 1, "\u4efb\u4f55": 1, "\u60c5\u51b5": 1, "\u4e0b": 1, "\u594f\u6548": 1}, "rule": {"\u89c4\u5219": 2, "\u574f": 1, "\u89c4\u77e9": 1, "\u5e2e": 1, "\u8bf4\u660e": 1, "\u89c4\u5b9a": 1, "\u81ea\u5df1": 1, "\u4e4b\u540e": 1}, "brakes": {"\u524e\u8eca": 1, "\u554f\u984c": 1, "\u9664\u975e": 1, "\u4e8b\u5148": 1, "\u5239\u8f66": 2, "": 1, "\u4f1a": 1}, "Something": {"\u51fa": 4, "\u63a1\u53d6": 1, "\u4e00\u4e9b": 1, "\u884c\u52d5": 1, "\u4ec0\u4e48": 6, "\u4e8b": 2, "\u6709": 5, "\u6bdb\u75c5": 2, "\u6b63": 1, "\u4e8b\u60c5": 1, "\u53d1\u751f": 1, "\u7740": 1, "\u58de": 1, "\u804a\u80dc\u4e8e\u65e0": 1, "\u70b9": 1}, "soldier": {"\u662f": 1, "\u58eb\u5175": 3}, "shout": {"\u4e00\u58f0": 1, "\u558a\u53eb": 2, "\u53eb": 1, "\u8072": 1, "\u4e0d\u8bb8": 1, "\u5927\u53eb": 1, "\u5225": 1, "\u5c0d\u8457": 1, "\u543c": 1}, "officers": {"\u62d8\u6355": 1, "\u9019\u500b": 1, "\u7aca": 1}, "am": {"\u662f": 6, "\u5f88": 2, "\u8ddf": 1, "\u6211": 1}, "119": {"\u9047\u5230": 1, "\u706b\u707e": 1, "119.": 1}, "laid": {"\u628a": 1, "\u653e\u5728": 1, "\u6d3e": 1, "\u53bb": 1}, "childhood": {"\u7ae5\u5e74": 2, "\u5f88": 1, "\u5feb\u4e50": 1, "\u4ece\u5c0f": 1}, "Wonderful": {"\u5f88\u68d2": 1}, "constantly": {"\u7d93\u5e38": 1}, "forgetting": {"\u5fd8\u8a18": 3, "\u5225\u4eba": 2}, "names": {"\u540d\u5b57": 4, "\u4f60\u5011": 1, "\u53eb": 1}, "debt": {"\u6d51\u8eab": 1, "\u503a": 1}, "Thousands": {"\u6210\u5343\u4e0a\u4e07": 2, "\u6bcf\u5e74": 1, "\u6709": 1, "\u6578\u5343": 1}, "desperate": {"\u5904\u5728": 1, "\u7edd\u5883": 1}, "pair": {"\u4e00\u96d9": 2, "\u65b0\u978b": 2, "\u4e00\u53cc": 3, "\u689d": 1}, "doorbell": {"\u95e8\u94c3": 2, "\u54cd": 2, "": 1, "\u6211": 1, "\u6b63": 1, "\u524d\u9580": 1, "\u9580\u9234": 1, "\u97ff": 1, "\u513f": 1}, "circus": {"\u516d\u5c81": 1, "\u65f6\u5019": 1, "\u6211": 1, "\u7b2c\u4e00\u6b21": 1, "\u88ab": 1, "\u5e26\u53bb": 1}, "Chinese": {"\u6703": 5, "\u4e2d\u6587": 9, "\u4e2d\u570b": 2, "\u8b80": 1, "\u628a": 1, "\u770b\u5f97\u61c2": 1, "\u6211": 2}, "club": {"\u53c3\u52a0": 2, "\u793e": 3, "\u4ff1\u4e50\u90e8": 7, "\u4f1a\u5458": 4, "\u6210\u54e1": 3, "\u4ff1\u6a02\u90e8": 2, "\u4ff1": 1, "\u6a02": 1, "\u90e8": 1}, "bark": {"\u72d7\u4f1a": 1, "\u5bf9": 1, "\u53eb": 1}, "earned": {"\u4ee5": 2, "\u6559\u66f8": 1, "\u70ba": 2, "\u751f": 2, "\u7576": 1, "\u6323": 1, "\u597d\u591a\u94b1": 1, "\u80fd": 1, "\u8d5a": 2, "\u5c31": 1}, "serpent": {"\u86c7": 1, "\u8a98\u60d1": 1, "\u590f\u5a03": 1}, "9": {"9": 1, "\u4e5d\u9ede": 2, "\u4ee5": 1, "\u6bd4\u8f03": 1, "\u4e5d\u70b9": 1, "\u5427": 1, "": 1, "\u524d\u4f86": 1}, "loved": {"\u8ba9": 1, "\u7231": 5, "\u4ee5\u70ba": 1, "\u611b": 4, "": 2, ",": 1, "\u4ee5\u53ca": 1, "\u5c31": 1, "\u50cf": 1, "\u4e00\u6a23": 1, "\u4f46\u662f": 1, "\u76f8\u4fe1": 1}, "thinks": {"\u8ba4\u4e3a": 5, "\u8981": 1, "\u770b\u770b": 1, "\u4ed6": 1, "\u662f": 1, "\u8fd9\u6837": 1, "\u60f3": 1, "\u4ee5\u70ba": 1, "\u81ea\u5df1": 1, "\u4e86\u4e0d\u8d77": 1}, "Problems": {"\u554f\u984c": 2, "\u90fd": 1, "\u4e0d\u662f": 1}, "aware": {"\u77e5\u9053": 5, "\u6709": 1, "\u591a\u9ebc": 1, "\u6c92": 1, "\u6709\u610f": 1, "\u8b58\u5230": 1, "\u81ea\u5df1": 1, "\u771f": 1, "\u9084": 1, "\u751f\u4e86\u75c5": 1}, "taught": {"\u6559": 4, "\u6559\u6211\u5982\u4f55": 2, "\u81ea": 1, "\u5b78\u6cd5": 1, "\u5927\u90e8\u4efd": 1, "\u90fd": 1, "": 1}, "Another": {"\u9ebb\u7169": 2, "\u518d": 1}, "underestimated": {"\u4ece\u6ca1": 1, "\u4f4e\u4f30": 1}, "knowledge": {"\u5979": 1, "\u61c2\u6cd5": 1, "\u80fd": 1, "\u5730": 1, "\u8bfb\u61c2": 1, "\u53ea\u6709": 1, "\u4e00\u9ede\u9ede": 1, "\u77e5\u8b58": 1, "\u65e5\u6587": 1, "\u5927": 1, "\u4e86\u89e3": 1, "\u64da": 1, "\u6240\u77e5": 1}, "sailing": {"\u53c3\u52a0": 1, "\u5e06\u8239": 1, "\u793e": 1}, "upcoming": {"Tom": 1, "\u610f\u56fe": 1, "\u53bb": 2, "\u9080\u8bf7": 1, "Mary": 1, "\u5373\u5c06\u6765\u4e34": 1, "\u821e\u4f1a": 1}, "Listen": {"\u542c": 3, "\u7740": 2, "\u800c\u4e14": 1, "\u4ed4\u7ec6\u542c": 1}, "amplifier": {"\u7d44\u88dd": 1, "\u63da": 1, "\u8072\u5668": 1}, "teach": {"\u6559": 6, "\u600e\u6837": 1, "\u61c9\u8a72": 1, "\u6709": 1, "\u6cd5\u6587": 1, "\u6211\u4f1a": 1, "\u6388": 1, "\u4e4b": 2, "": 2, "\u4e0d\u5982": 1}, "tooth": {"\u4ee5\u773c\u8fd8\u773c": 1, "\u4ee5\u7259\u8fd8\u7259": 1, "\u4ee5": 2, "\u773c": 2, "\u9084": 1, "": 2, "\u7259": 1}, "containers": {"\u5bb9\u5668": 1, "\u5bc6\u5c01": 1}, "ordered": {"\u70b9": 2, "\u4e86": 9, "\u4e2d\u9910": 2, "\u8ba2": 2, "\u9ede": 3, "\u98df\u7269": 1, "\u547d\u4ee4": 1, "\u8a02\u8cfc": 3}, "imperative": {"\u5fc5\u987b": 2, "\u9a6c\u4e0a": 2, "\u60a8": 1}, "Italian": {"\u4eba": 2, "\u4e00\u4e2a": 1, "\u5230": 1, "\u8a9e": 1, "\u7fa9": 1, "\u5927\u5229": 1}, "knocking": {"\u6572\u95e8": 3, "\u6572\u9580": 1, "\u4e0d\u77e5": 1, "\u8c01": 1}, "archer": {"\u5c04\u624b": 1, "\u6253\u6b7b": 1}, "deer": {"\u9e7f": 2}, "sound": {"\u807d": 3, "\u8d77\u4f86": 4, "\u807d\u898b": 1, "\u4e00\u8072": 1, "\u602a\u97ff": 1, "\u4e0d": 2, "\u8072\u97f3": 2, "\u50cf\u662f": 1, "\u6200\u611b": 1, "\u6216\u8a31": 1, "\u9ede\u602a": 1, "\u8bf4": 1, "\u6e6f\u59c6\u807d": 1}, "ride": {"\u9a91": 2, "\u53bb": 1, "\u4f1a": 3, "\u9a91\u9a6c": 3, "\u8f7d": 2, "\u8ba9": 1, "\u642d": 1, "\u4fbf": 1, "\u8f66": 1, "\u9a0e": 2, "\u8f09": 1, "\u4e00\u7a0b": 1}, "motorcycle": {"\u6469\u6258\u8f66": 3, "\u905b": 1, "\u4e00\u5708": 1, "\u653e\u5230": 1, "\u80cc\u4e0a": 1, "\u9001\u5230": 1, "\u6469\u6258": 3, "\u8eca": 3, "\u4e00\u8f1b": 1, "\u6e6f\u59c6\u9a0e": 1}, "mobile": {"\u624b\u6a5f": 1, "\u4e2a": 1, "\u624b\u673a": 1}, "starving": {"\u54b1\u4eec": 1, "\uff01": 1, "\u997f\u6b7b": 1, "\u88e1": 1, "\u5145\u6eff": 1, "\u98e2\u9913": 1}, "proactive": {"\u5fc5\u987b": 1, "\u79ef\u6781\u4e3b\u52a8": 1}, "fully": {"\u88e1": 1, "\u9f4a": 1, "\u5168": 1, "\u5b8c\u5168": 1, "\u6e05\u767d": 1}, "furnished": {"\u5bb6\u5177": 1, "\u88dd\u5099": 1, "\u66f8\u7c4d": 1, "\u7528": 1, "\u4f48": 1, "\u7f6e": 1, "\u623f": 1, "\u9593": 1}, "walker": {"\u8d70\u8def": 1, "\u5f88\u5feb": 1}, "rung": {"\u6309\u9580\u9234": 1, "\u949f\u54cd": 1, "\u8fc7": 1, "\u949f": 1, "\u6ca1\u54cd": 1}, "scary": {"\u4ece\u6ca1": 1, "\u8fc7": 1, "\u90a3\u4e48": 1, "\u6050\u6016": 1}, "heights": {"\u6050\u9ad8": 1, "\u6050": 1, "\u9ad8": 1}, "tires": {"\u8f6e\u80ce": 1, "\u7206": 1}, "armed": {"\u6b66\u88c5": 1, "\u5230": 1, "\u9f52": 1, "\u6709": 1, "\u5e36": 1, "\u6b66\u5668": 1}, "stairs": {"\u6a13\u68af": 2, "\u4e0a": 2, "\u4e0a\u697c": 1, "\u807d\u898b": 1, "\u4e0b\u6a13": 1}, "utmost": {"\u8fd9\u4ef6": 1, "\u4e8b": 1, "\u81f3\u5173\u91cd\u8981": 1}, "phoned": {"\u81ea": 1, "\u5f8c": 1, ",": 1, "": 1, "\u5c31": 1, "\u6c92": 1}, "running": {"\u7537\u5b69\u5b50": 1, "\u8dd1\u6b65": 2, "\u5411\u7740": 1, "\u8dd1": 7, "\u8fc7\u6765": 1, "\u5b8c": 2, "\u9032": 1, "\u5feb\u7528": 1, "\u516c\u4ea4": 1, "\u8eca": 1, "\u9ede": 1, "\u89c1": 1, "\u8ffd": 1, "\u7740": 1}, "shave": {"\u5df2\u7ecf": 1, "\u628a": 1, "\u5934\u53d1": 1, "\u5243": 1, "\u522e": 3, "\u9b0d": 3, "\u5b50": 3}, "Mistakes": {"\u8fd9\u79cd": 1, "\u9519\u8bef": 1, "\u88ab": 1, "\u4eba": 1, "\u5ffd\u89c6": 1}, "lent": {"\u501f": 1, "\u7d66": 1, "\u628a": 1, "\u501f\u7d66": 1, "\u501f\u7ed9": 2, "\u4e00\u76d8": 1}, "higher": {"\u5c3d": 1, "\u5168\u529b": 1, "\u4f46": 1, "\u8fd8\u662f": 1, "\u6bd4": 1, "\u739b\u4e3d": 1, "\u9ad8": 2, "\u4f53\u6e29": 1, "\u5927\u4eba": 1, "\u8981": 1}, "Saturday": {"\u4e0a\u500b": 1, "\u661f\u671f\u516d": 4, "\u70ba\u4f55": 1, "\u9031\u516d": 1, "\u6c92\u4f86": 1, "\u8fd9\u5bb6": 1, "\u90fd": 1, "\u8425\u4e1a": 1, "\u4e0a\u9031": 1, "\u516d": 1, "\u5468\u516d": 1}, "Birmingham": {"\u53bb": 1, "\u4f2f\u660e\u7ff0": 1, "\u53f7": 1, "\u7ad9\u53f0": 1}, "Actions": {"\u884c\u52d5": 1, "\u8a9e\u8a00": 1, "\u66f4": 1, "\u97ff\u4eae": 1, "\u5750": 1, "\u800c\u8a00": 1, "\u4e0d\u5982": 1, "\u8d77": 1, "\u800c": 1, "\u884c": 1, "\u884c\u52d5\u52dd": 1, "\u65bc\u96c4\u8faf": 1}, "arms": {"\u4e00\u628a": 1, "\u5b69\u5b50": 3, "\u62b1": 2, "\u624b\u91cc": 1, "\u628a": 1, "\u61f7\u88e1": 1, "\u6000\u4e2d": 1, "\u719f\u7761": 1}, "Compare": {"\u628a": 1, "\u6bd4\u8f83": 1, "\u4e00\u4e0b": 1, "\u6bd4\u8f03": 2}, "answers": {"\u7b54\u6848": 3, "\u5c0d": 1, "\u9019\u500b": 1}, "settled": {"\u7d50": 1, "\u5a5a": 1, "\u4e26": 1, "\u5b9a\u5c45": 1, "\u9019\u500b": 1, "\u88ab": 1, "\u89e3\u6c7a": 1, "\u6ca1\u6709": 1, "\u89e3\u51b3": 1, "\u5b89\u5bb6\u843d\u6237": 1}, "tours": {"\u4e00\u65e5": 1, "\u904a": 2, "\u884c\u7a0b": 1, "\u63d0\u4f9b": 1, "\u5168\u65e5": 1}, "lessons": {"\u4e0a": 3, "\u8ab2": 1, "\u6bcf\u5468": 2, "\u94a2\u7434\u8bfe": 2}, "cab": {"\u642d": 1, "\u8a08\u7a0b": 2, "\u8eca": 3, "\u51fa\u79df\u8f66": 1, "\u91cd\u4f24": 1, "\u4e00\u8f1b": 1, "\u51fa\u79df": 1, "\u5fd8": 1, "\u8a08\u7a0b\u8eca": 1, "\u4e0a": 1, "\u66ff": 1, "\u4e00\u90e8": 1}, "Were": {"\u5417": 13, "\u90a3\u6642": 1, "\u6709": 2, "\u7236\u6bcd": 1, "\u89aa": 1, "\u4e8b\u60c5": 1, "\u5462": 1, "\u6628\u5929\u65e9\u4e0a": 1, "\u5728": 2, "\u5f53\u65f6": 1, "\u6e96": 1, "\u6642": 1}, "illegal": {"\u628a": 1, "\u505c": 1, "\u9055\u6cd5": 1}, "intended": {"\u60f3": 1, "\u751a\u9ebc": 1, "\u672c\u4f86": 1, "\u6253\u7b97": 1}, "taxes": {"\u5c0d": 1, "\u65bc": 1, "\u7a05": 1, "\u9700\u8981": 1, "\u7f34\u7a0e": 1}, "winning": {"\u7372\u52dd": 1, "\u5f88\u5c11": 1, "\u8d62": 1, "\u5728": 1, "\u8d0f": 1}, "Orange": {"\u67f3\u6a59\u6c41": 1, "": 2}, "December": {"\u5341\u4e8c\u6708": 2, "\u4e00\u5929": 1, "\u4e00\u4e2a": 1, "\u5bd2\u51b7": 1, "\u665a\u4e0a": 1}, "especially": {"\u7279\u5225": 2, "\u559c\u611b": 1, "": 2}, "shining": {"\u6708\u5149": 1, "\u7167\u8000": 1, "\u8457": 1, "\u867d\u7136": 1, "\u6709": 1, "\u9633\u5149": 1, "\u7167\u5c04": 1, "": 2}, "keys": {"\u94a5\u5319": 4, "\u907a\u5931": 1, "\u9470\u5319": 3, "\u628a": 1, "\u5230\u5904": 1}, "closed": {"\u5c01\u9589": 1, "\u95ed\u4e0a": 2, "\u95dc\u8457": 1, "\u9032\u4e0d\u53bb": 1, "\u95ed\u4e0a\u773c\u775b": 1, "\u628a": 1, "\u95a4": 1, "\u8d77": 1, "\u4f86": 1, "\u8457": 1, "\u5173": 1, "\u7740": 1, "\u95e8": 1, "\u7a97\u5b50": 1, "\u5173\u7740": 1}, "cell": {"\u6709": 1, "\u624b\u6a5f": 4, "\u6b63\u5728": 1, "\u7528": 1, "\u624b\u673a": 1}, "liar": {"\u662f": 2, "\u4e2a": 1, "\u9a97\u5b50": 1, "\u8bf4\u8c0e": 1, "\u500b": 2, "\u9a19\u5b50": 2, "\u7f75": 1}, "40": {"40": 3, "%": 2, "\u8bfb": 2, "\u67b6\u98de\u673a": 1, "\u4e00\u6b21": 1, "\u643a\u5e26": 1}, "percent": {"\u4ee5\u4e0a": 2, "\u7684": 2}, "subjects": {"\u88e1": 1, "\u8b80": 1, "\u54ea\u4e9b": 1, "\u79d1\u76ee": 2, "?": 2}, "Sit": {"\u5750": 1, "\u8010\u5fc3": 1, "\u7b49": 1, "\u7740": 1}, "beside": {"\u65c1\u8fb9": 4, "\u5728": 1, "\u663e\u5f97": 1, "\u5f88": 1}, "unfortunate": {"\u53ef\u6190": 1, "!": 1}, "robbed": {"\u9019": 1, "\u540d": 1, "\u7537\u5b50": 1, "\u6436\u8d70": 1, "\u5305\u5305": 1, "\u6436": 1, "\u5bb6\u9280\u884c": 1}, "differs": {"\u548c": 1, "\u4e0d": 1, "\u4e00\u6837": 1}, "Sales": {"\u4eca\u5e74": 1, "\u9500\u552e": 1, "\u4f1a": 1, "\u7ffb\u756a": 1, "\u6642": 1, "\u92b7\u552e": 1, "\u8dcc": 1, "\u4e0b\u4f86": 1}, "repaired": {"\u661f\u671f\u4e94": 1, "\u628a": 2, "\u96fb\u8996\u6a5f": 1, "\u4fee\u597d": 1, "\u62ff\u53bb": 1, "\u7d66": 1, "\u4eba\u5bb6": 1, "\u4fee\u7406": 3, "\u4fee": 1, "\u4e0d\u80fd": 1}, "brings": {"\u592a\u592a": 1, "\u517c\u8077": 1, "\u8cfa\u9032": 1, "\u4e00\u4e9b": 1}, "extra": {"\u984d": 2, "\u5916": 2, "\u8fd9\u4e8b": 1, "\u6ca1\u6709": 1, "\u989d\u5916": 1, "\u62a5\u916c": 1, "\u60a8": 1, "\u78b0\u5de7": 1, "\u591a\u4f59": 1}, "coworkers": {"\u8ddf": 1, "\u6211\u5011": 1, "\u786e\u5b9e": 1, "\u540c\u4e8b": 1}, "bird": {"\u4e00": 1, "\u96bb": 4, "\u9ce5": 5, "\u9e1f": 1, "\u4f60\u4eec": 1, "\u7528": 1, "\u600e\u4e48": 1, "\u79f0\u547c": 1, "\u53eb\u4f5c": 1, "\u9e1f\u513f": 1, "\u53eb\u4ec0": 2, "\u9ebc": 2}, "citizens": {"\u8a31\u591a": 1, "\u8001\u767e\u59d3": 1, "\u8ecd\u968a": 1}, "Whichever": {"\u4e0d\u7ba1": 1, "\u9009": 1, "\u54ea\u6761": 1, "\u8def": 1, "": 1, "\u4f60": 1, "\u90fd": 1, "\u80fd": 1}, "couple": {"\u4e24\u5929": 1, "\u8fd9": 1, "\u5bf9": 1, "\u592b\u5987": 1, "\u751f": 1, "\u5e7e\u6b21": 1, "\u5e7e": 1, "\u676f\u9152": 1, "": 1, "\u9019": 1, "\u500b": 1, "\u4f19": 1, "\u5c31": 1, "\u5c07": 1, "\u5e7e\u5929": 1}, "rumor": {"\u9019\u500b": 1, "\u50b3\u805e": 2, "\u5f8c": 1, "\u4f86": 1, "\u88ab": 1, "\u662f": 1, "\u6b63\u78ba": 1}, "lamp": {"\u4e00\u76cf\u706f": 1, "\u6302\u5728": 1, "\u96fb\u71c8": 1}, "closing": {"\u95dc\u9580": 1, "\u4ecb\u610f": 2, "\u95dc\u7a97": 1, "\u6236": 1, "\u95dc\u4e0a": 1}, "cellular": {"\u4e00\u652f": 1, "\u624b\u6a5f": 1, "\u4f46\u662f": 1, "\u6211": 1, "\u7684": 1, "\u9322": 1}, "defibrillator": {"\u4e00\u4e2a": 1, "\u9664\u98a4": 1, "\u5668": 1}, "particular": {"\u5c0d": 1, "\u4e0d\u662f": 1, "\u8b1b\u7a76": 1, "\u7279\u522b": 1, "\u53bb": 1}, "traveling": {"\u65c5\u884c": 9, "\u6ca1\u53bb": 1, "\u7fd2\u6163": 1}, "value": {"\u5f53\u66f4": 1, "\u7eb8\u5e01": 1, "\u6295\u5165\u4f7f\u7528": 1, "": 1, "\u4ef7\u683c": 1, "\u6709\u4e9b": 1, "\u770b\u91cd": 1}, "cloud": {"\u6ca1\u6709": 2, "\u4e00\u7247": 1, "\u4e91": 2}, "knitting": {"\u7740": 1, "\u7f16\u7ec7": 1}, "lenses": {"\u96b1\u5f62": 2, "\u773c\u93e1": 2}, "Advertisements": {"\u5ee3\u544a": 1, "\u616b\u607f": 1, "\u5962\u4f88\u54c1": 1}, "Cheese": {"\u5976\u916a": 1, "\u7528": 1, "\u5976": 1, "\u505a\u6210": 1}, "shot": {"\u88ab": 1, "\u5c04\u4e2d": 1, "\u69cd\u64ca": 1, "\u62ff": 1, "\u67aa": 1, "\u5c04": 2}, "tags": {"\u770b\u770b": 1, "\u884c\u674e": 1, "\u689d": 1}, "application": {"\u63d0\u51fa": 1, "\u4e86\u5165": 1, "\u5b78": 1, "\u7533\u8acb": 2, "\u8868": 1}, "jewelry": {"\u6234": 1, "\u9996\u9970": 1, "\u95d6\u9032": 1, "\u73e0\u5bf6": 1}, "ribbon": {"\u90a3": 1, "\u4e0a\u7ed1": 1, "\u4e00\u6839": 1, "\u4e1d\u5e26": 1}, "sake": {"\u70ba\u4e86": 1, ",": 1, "": 1, "\u6211": 1, "\u4e0d\u518d": 1}, "reporter": {"\u65f6\u4ee3": 1, "\u8bb0\u8005": 1, "\u8a18\u8005": 1, "\u6279\u8a55": 1}, "hopes": {"\u95e8": 1, "\u5c31": 1, "\u5e0c\u671b": 4, "\u505a\u5230": 2}, "deprived": {"\u9019\u5834": 1, "\u4ea4\u901a": 1, "\u8b93": 1, "\u5931\u660e": 1}, "animal": {"\u9a6c": 1, "\u79cd": 1, "\u52a8\u7269": 5, "\u52d5\u7269": 1, "\u4e00\u7121": 1, "\u6240\u77e5": 1}, "useful": {"\u5f88": 3, "\u6709\u7528": 9}, "Picasso": {"\u7562\u52a0\u7d22": 1, "\u4f86\u8aaa": 1, "\u5f88": 1}, "paintings": {"\u756b": 2, "\u5c0d": 1, "\u5f88\u7f8e": 1, "\u7e6a\u756b": 1, "\u5f88\u597d": 1, "\u9451\u8cde": 1, "\u529b": 1}, "resign": {"\u8fad\u8077": 3, "": 1, "\u8fad\u53bb": 1, "\u653e\u5f03": 1, "\u53ef\u80fd": 1}, "ceases": {"\u6240\u4f5c\u6240\u4e3a": 1, "\u603b\u662f": 1, "\u8ba9": 2, "\u60ca\u8bb6": 1}, "tremendous": {"\u58d3\u529b": 1, "\u5f88": 1, "\u5de8\u5927": 1}, "sides": {"\u53cc\u65b9": 1, "\u672c\u5468": 1, "\u4e3e\u884c\u4f1a\u8c08": 1, "\u88ab": 1, "\u5169\u9762": 1, "\u593e\u64ca": 1, "\u7e3d": 1, "\u662f": 1, "\u652f\u6301": 1}, "obey": {"\u807d": 1, "\u5f9e": 4, "\u4e4b\u5916": 1, "\u542c": 2, "\u7684\u8bdd": 1, "\u542c\u4ece": 1, "\u6307\u793a": 1, "\u5e76": 1, "\u670d\u4ece": 1, "\u5fc5\u987b": 1, "\u4e26": 1, "\u670d": 3, "\u6211\u8bdd": 1}, "sawing": {"\u6b63\u5728": 1, "\u952f": 1, "\u4e00\u68f5\u6811": 1}, "Harvard": {"\u54c8\u4f5b\u5927\u5b66": 2, "\u54c8\u4f5b": 7, "\u5927\u5b78\u5b78": 1, "\u7fd2": 1, "\u5927\u5b78": 1, "\u9304\u53d6": 2}, "professor": {"\u6559\u6388": 4, "\u662f": 2, "\u5927\u5b66\u6559\u6388": 2}, "friendship": {"\u53cb\u8c0a": 2, "\u53d7\u5230": 1, "\u8003\u9a8c": 1, "": 1, "\u53cb\u8abc": 1, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u610f\u7fa9": 1, "\u53cb\u60c5": 1, "\u6703\u9577": 1, "\u4e45": 1, "\u7559\u5b58": 1}, "charge": {"\u8d1f\u8d23": 2, "\u4e3b\u7ba1": 1, "\u8fc7": 1, "\u4e3b\u4efb": 1, "\u4e0d\u5728": 1, "": 1, "\u529e\u516c\u5ba4": 1}, "sales": {"\u9500\u552e": 2}, "section": {"\u90e8\u95e8": 3, "\u91cc": 1, "\u4e03": 1, "\u7537": 1, "\u56db\u5973": 1}, "jeep": {"\u4ece": 1, "\u5409\u666e\u8f66": 1, "\u4e0a": 1, "\u4e0b\u6765": 1}, "pleasant": {"\u7740": 1, "\u5f88": 2, "\u8212\u670d": 1, "\u4f5c": 1, "\u4e00\u500b": 2, "\u597d": 1, "\u597d\u813e\u6c14": 1, "\u60a6\u8033": 1, "\u8b93": 1, "\u5ea6": 1, "\u904e": 1, "\u6109\u5feb": 1}, "tonal": {"\u6f22\u8a9e": 1, "\u4e00\u500b": 1, "\u8072\u8abf": 1}, "intervenes": {"\u8996": 1, "\u70ba": 1, "\u7406\u6240": 1, "\u7576\u7136": 1, ",": 1, "": 1, "\u76f4\u5230": 1}, "direction": {"\u65b9\u5411\u611f": 1, "\u5357\u8f95\u5317\u8f99": 1}, "audience": {"\u5f88\u591a": 1, "\u542c\u4f17": 2, "\u89c2\u4f17": 2, "\u4eba\u6570": 1, "\u5e9e\u5927": 1, "\u6f14\u8bf4": 1}, "interest": {"\u5c0d": 3, "\u8208\u8da3": 4, "\u5bf9": 2, "\u9019\u500b": 2, "\u6709": 1, "\u5df2\u7ecf": 1, "\u4e0d\u611f\u5174\u8da3": 1, "\u8868\u793a": 1}, "Germanic": {"\u4e00\u7a2e": 1, "\u65e5\u8033\u66fc": 1, "\u8a9e": 1}, "intention": {"\u4e0d\u60f3": 2, "\u7ed9": 1, "\u4e00\u5206\u94b1": 1, "\u4e0d\u662f": 3, "\u521d\u8877": 1, "\u672c\u610f": 1, "\u6545\u610f": 1}, "obliged": {"\u4e0d\u5f97\u4e0d": 2, "\u653e\u5f03": 1, "\u8fd9\u4e2a": 2}, "tip": {"\u90fd": 1, "\u5feb\u8981": 1, "\u8bf4\u51fa": 1, "": 2, "\u53ef": 1, "\u4f60\u4e9b": 1, "\u63d0\u793a": 1, "\u820c\u5c16": 1}, "voted": {"\u60a8": 1, "\u6295": 2, "\u7968": 1, "\u53cd\u5bf9\u7968": 1}, "respond": {"\u6709": 1, "\u56de\u5e94": 1, "\u6c92\u6709": 1, "\u56de\u7b54": 1}, "serial": {"\u4e0d": 2, "\u4e2a": 2, "\u8fde\u73af": 2, "\u6740\u624b": 2}, "killer": {"\u77e5\u9053": 2}, "card": {"\u652f\u4ed8": 1, "\u4e00\u5f35": 2, "\u5361\u7247": 2, "\u5e33": 1}, "admission": {"\u5165": 1, "\u6703": 1, "\u8cbb": 1, "\u4e00\u500b": 2, "\u5341\u7f8e\u5143": 1, "\u5165\u5834\u8cbb": 1}, "Salt": {"\u9e7d": 1, "\u53ef\u4ee5": 1, "\u5e6b\u52a9": 1, "\u4fdd\u5b58": 1, "\u907f\u514d": 1, "\u8150\u721b": 1}, "trap": {"\u8bbe": 2, "\u9677\u9631": 2, "\u6765": 1, "\u6293": 1}, "reasonable": {"\u4e24\u4e2a": 1, "\u901a\u60c5\u8fbe\u7406": 1, "\u8fd9\u4e2a": 1, "\u4e0d\u5408\u7406": 1}, "stays": {"\u665a\u4e0a": 1, "\u71ac\u591c": 1, "\u5f85": 1, "\u88e1": 1}, "luggage": {"\u884c\u674e": 6, "\u60a8\u63d0": 1, "\u53ef\u4ee5": 2, "\u628a": 2, "\u60a8": 1, "\u653e\u5230": 1, "\u54ea\u88e1": 1, "\u53bb": 1}, "refuse": {"\u8a72": 1, "\u540c\u610f": 1, "\u62d2\u7d55": 1, "\u62d2\u7edd": 2, "\u50cf": 1, "\u4e00\u4e2a": 1, "\u822c": 1}, "tiptoed": {"\u8e2e": 1, "\u8457": 1, "\u8173": 1, "\u5c16": 1, "\u8d70": 1, "": 1, "\u6240\u4ee5": 1}, "determined": {"\u8981": 2, "\u4e0b\u5b9a": 1, "\u6c7a\u5fc3": 2, "\u8981\u6210": 1, "\u4e00\u540d": 1, "\u51b3\u5fc3": 1}, "Hardly": {"\u51e0\u4e4e": 1, "\u6ca1\u6709": 1, "\u4eba": 1}, "Sooner": {"\u9072\u65e9": 2, "\u904b\u6c23": 1, "\u6703\u7528": 1, "\u5b8c": 1}, "Foster": {"\u9996\u6b4c\u66f2": 1, "\u7531": 1, "\u798f\u65af\u7279": 1, "\u6240\u5beb": 1}, "whale": {"\u4e00\u6761": 1, "\u53d7\u4f24": 1, "\u9cb8\u9c7c": 1, "\u8fb9": 1, "\u6401\u6d45": 1, "\u6c92\u6709": 1, "\u898b": 1, "\u4e00\u689d": 1, "\u6d3b\u751f\u751f": 1, "\u9be8\u9b5a": 1}, "wounded": {"\u4e86": 3, "Tom": 1, "\u8d1f\u4f24": 1, "\u4f24": 1}, "Smiles": {"\u5fae\u7b11": 1, "\u4e26": 1, "\u4e00\u5b9a": 1, "\u8868\u793a": 1, "\u9ad8\u8208": 1}, "pressure": {"\u58d3\u529b": 2, "\u4e4b\u4e0b": 1, "\u8868\u73fe": 1, "\u91cf\u91cf": 1, "\u8840\u58d3": 1, "\u4f4e\u8840\u538b": 1, "\u8840\u538b": 1, "\u9ad8\u8840\u538b": 1, "\u597d\u5927": 1, "": 1}, "persuade": {"\u6ca1": 1, "\u80fd": 1, "\u8bf4\u670d": 1, "\u8a66\u5716": 1, "\u52f8": 1, "\u6c92": 1, "\u6709\u7528": 1}, "regular": {"\u5b9a\u671f": 1, "\u7684": 2, "\u56fa\u5b9a": 2}, "comfortable": {"\u5f88": 4, "\u8212\u670d": 5, "\u89ba\u5f97": 2, "\u9019": 1, "\u5f35": 1, "\u76f8\u7576": 1, "\u5730": 1, "\u8212\u9069": 1}, "expecting": {"\u6253\u7b97": 1, "\u9810\u8a08": 1, "\u746a\u8389": 1, "\u6703": 1, "\u4f86": 1, "\u4e00\u76f4": 1, "\u671f\u5f85": 2, "\u7740": 1, "\u4f86\u4fe1": 1}, "race": {"\u50cf\u662f": 1, "\u5f97": 2, "\u6bd4\u8cfd": 3, "\u8dd1\u6b65": 2, "\u6c92\u4eba": 1, "\u8a8d\u70ba": 1, "\u6e6f\u59c6\u8cfd": 1, "\u8dd1": 1, "\u6bd4\u8d5b": 3, "": 1}, "pressed": {"\u4e0b": 1, "\u9215\u7136": 1, "\u5f8c": 1, "\u7b49\u5f85": 1, "\u8457": 1}, "hesitation": {"\u6beb\u4e0d\u72b9\u8c6b": 1, "\u5730": 1, "\u5356": 1}, "resemblance": {"\u50cf": 1, "\u6781\u4e86": 1, ",": 1, "": 2, "\u8ba9": 1}, "squeezed": {"\u69a8": 1, "\u8a31\u591a": 2, "\u67f3\u6a59\u6c41": 1, "\u7528": 1, "\u4f86": 1, "\u69a8\u6c41": 1}, "avoid": {"\u907f\u514d": 2, "\u4e2a\u4eba": 1, "\u8bdd\u9898": 1, "\u65f6": 1, "\u4ee5": 1, "\u907f\u5f00": 1}, "captive": {"\u56da\u7981": 1, "\u4e86": 1}, "disliked": {"\u4e0d": 2, "\u559c\u6b61": 2}, "tomatoes": {"\u8543\u8304": 2, "\u7a2e": 1, "\u79cd": 1, "\u756a\u8304": 1}, "taste": {"\u5473\u9053": 2, "\u5634\u91cc": 1, "\u7559\u4e0b": 1, "\u4e00\u79cd": 1}, "melons": {"\u5b83\u4eec": 1, "\u74dc": 1}, "discussion": {"\u7ec8\u4e8e": 1, "\u6f2b\u957f": 1, "\u8ba8\u8bba": 1, "\u4e4b\u540e": 1, "\u5f97\u51fa": 1, "\u8a0e\u8ad6": 4, "\u904e": 1}, "pepperoni": {"\u70ba\u4f55": 1, "\u7fa9\u5f0f": 1, "\u8fa3\u8178": 1, "\u62ab": 1, "\u5982\u6b64": 1}, "Say": {"\u8aaa": 1, "\u4ee3": 1, "\u554f": 1, "\u597d": 1, "\u7528": 1, "\u8bf4": 1}, "clearly": {"\u6e05\u695a": 5, "\u5f97": 1, "\u4e9b": 1, "\u5730": 2, "\u8aaa": 1, "\u786e\u5b9e": 1}, "gambling": {"\u6212\u6389": 2, "\u8d4c\u535a": 2, "\u5427": 2, "\u8ced\u535a": 1, "": 1}, "whose": {",": 2, "": 3, "\u65e5\u8a9e": 1, "\u6709\u500b": 1, "\u77e5\u540d": 1, "\u90a3\u4e2a": 1, "\u5b69\u5b50": 1, "\u53cb\u597d": 1}, "Anything": {"\u6709": 1, "\u4ec0\u4e48": 1, "\u65b0\u9c9c\u4e8b": 1, "\u5417": 2, "\u90fd": 3}, "Karuizawa": {"\u6bcf\u5e74": 1, "\u8f15": 2, "\u4e95\u6fa4": 2}, "request": {"\u52a0": 1, "\u597d\u53cb": 1, "\u8bf7\u6c42": 2, "\u6279\u51c6": 1, "\u8acb\u6c42": 2, "\u4f60": 1}, "suit": {"\u7ed9": 1, "\u5957": 1, "\u8863\u670d": 3, "\u9019\u689d": 1, "\u897f\u88dd": 1, "\u4e0d\u914d": 2, "\u897f\u88c5": 3, "\u65b9\u4fbf": 1, "\u7d66": 2, "\u4e00\u5957": 2, "\u65b0\u897f": 1, "\u88dd": 1, "\u70ba": 1, "\u505a\u4e00\u5957": 1, "\u884c": 1}, "Whenever": {"\u6bcf\u6b21": 1, "": 2, "\u90fd": 1, "\u8ba9": 1, "\u6211": 1, "\u56de\u5fc6\u8d77": 1, "\u5e74\u8f7b": 1}, "newspaperman": {"\u51b3\u5b9a": 1, "\u62a5\u4e1a": 1, "\u4eba\u58eb": 1}, "ordinary": {"\u4e0d\u662f": 1, "\u666e\u901a": 1, "\u6c92": 2, "\u4e0d": 1, "\u5c0b\u5e38": 1, "\u4e8b": 2, "\u8207": 1, "\u773e": 1, "\u4e0d\u540c": 1}, "Almost": {"\u51e0\u4e4e": 3, "\u6240\u6709": 1, "\u5e7e\u4e4e": 2}, "heartless": {"\u8fd9\u4e48": 1, "\u65e0\u60c5": 1}, "Englishman": {"\u8bef\u8ba4\u4e3a": 1, "\u662f": 1, "\u82f1\u56fd\u4eba": 1, "\u8aa4\u4ee5": 1, "\u82f1\u570b": 1, "\u4eba": 1}, "handy": {"\u8fd9": 1, "\u65b9\u4fbf": 1, "\u9019": 1, "\u80fd\u6d3e": 1, "\u4e0a": 1, "\u7528\u5834": 1}, "House": {"\u8a72": 1, "\u6cd5\u6848": 1, "\u773e\u8b70": 1, "\u9662\u722d\u8b70": 1, "\u7372\u5f97": 1}, "listened": {"\u4ed4\u7d30": 1, "\u807d": 3, "\u4f46": 1, "\u8cbc": 1, "\u9580\u4e0a": 1}, "mailbox": {"\u4fe1\u7bb1": 2, "\u4e2d": 2, "\u767c\u73fe": 2, "\u4fe1\u4ef6": 1}, "Switzerland": {"\u745e\u58eb": 7, "\u6625\u5929": 1, "\u5728": 1}, "situated": {"\u4f4d\u4e8e": 1, "\u3001": 2, "\u5965\u5730\u5229": 1}, "Germany": {"\u5fb7\u56fd": 6, "\u5fb7\u570b": 5, "\u8fd9\u4e2a": 1, "\u5236\u9020": 1}, "First": {"\u9996\u5148": 1, "": 1, "\u516c\u53f8": 1, "\u7684": 1}, "jealous": {"\u5ac9\u5992": 4, "\u5979\u4eec": 1, "\u5992\u5fcc": 1, "\u9ede": 1}, "usual": {"\u5f80\u5e38": 3, "\u548c": 1, "\u4e00\u6837": 2, "\u8d77\u5f97": 1, "\u5e73\u5e38": 1, "\u6765\u665a": 1}, "cross": {"\u8001\u592a\u592a": 1, "\u7a7f\u8fc7": 4, "\u9a6c\u8def": 2, "\u904e": 4, "\u8981": 3}, "influences": {"\u5f71\u54cd\u529b": 1}, "Hold": {"\u5225": 1, "\u90a3\u9ebc": 1, "\u7334\u6025": 1, "": 4, "\u575a\u6301": 1, "\u63e1\u4f4f": 1}, "kiss": {"\u4eb2": 1, "\u6211": 1, "\u89aa": 1}, "pointless": {"\u7231\u60c5": 1, "\u6beb\u65e0\u610f\u4e49": 1}, "apply": {"\u6240": 1, "\u8a00": 1, "\u4e0d\u7b26": 1, "\u65f6\u5c40": 1}, "fill": {"\u628a": 3, "\u88dd\u6eff": 2}, "hoping": {"\u5e0c\u671b": 3, "\u6709": 1, "\u4e00\u5929": 1, "\u6703\u4f86": 1}, "means": {"\u662f": 2, "\u610f\u601d": 2, "\u6839\u672c": 1, "\u4e0d\u662f": 1, "\u6211\u81ea": 1, "\u554f": 1, "\u771f\u6b63": 1, "\u91cd\u5927": 2, "\u5bf9": 1, "\u6765\u8bf4": 1, "\u610f\u4e49": 1}, "fluently": {"\u8bf4": 2, "\u5f97": 1, "\u5f88": 2, "\u6d41\u5229": 2, "\u6d41\u66a2": 1, "\u4e00\u53e3": 1}, "Shut": {"\u95ed": 1, "\u4e0a": 1, "\u4f60\u4eec": 1, "\u9589\u5634": 1, "\u5173\u95e8": 1, "\u8acb\u95dc": 1, "\u4e0a\u9580": 1, "\u4e0d\u8981": 1, "\u628a\u95e8": 1, "\u5f00": 1, "\u7740": 1}, "beating": {"\u611f\u89ba": 1, "\u5fc3\u8df3": 2, "\u96e8\u70b9": 1, "\u6253\u7740": 1, "\u89ba\u5f97": 1, "\u52a0\u901f": 1}, "deceive": {"\u6b3a\u9a19": 1, "\u5225\u4eba": 1, "": 1, "\u66f4\u7cdf": 1}, "nail": {"\u91d8\u5b50": 1, "\u6495\u7834": 1}, "comic": {"\u501f\u4e86": 1, "\u6f2b\u756b": 1}, "whichever": {"\u60f3\u8981": 3, "\u7684": 4, "\u4efb\u4f55": 2}, "nap": {"\u5728": 1, "\u5348\u996d": 1, "\u5c0f\u61a9": 1}, "earthquake": {"\u9019\u88e1": 1, "\u767c\u751f": 2, "\u5730\u9707": 7, "\u4e00\u5834": 1, "\u4e4b": 1, "\u5efa\u7b51\u7269": 1, "\u6240\u6709\u4eba": 1}, "suffer": {"\u771f": 1, "\u8b93": 1, "\u53d7\u82e6": 1}, "refrigerator": {"\u51b0\u7bb1": 4, "\u91cc": 3, "\u6ca1": 2, "\u5269\u4e0b": 2, "\u58de": 1}, "examinations": {"\u5b66\u671f": 1, "\u4e24\u6b21": 1, "\u8003\u8bd5": 1}, "fashions": {"\u8ddf\u4e0a": 1, "\u6700\u8fd1": 1, "\u6f6e\u6d41": 1, "\u65f6\u5c1a": 1, "\u4ef6": 1, "\u82b1\u94b1": 1, "\u4e8b\u513f": 1, "\u5f88": 1, "\u4e86\u89e3": 1, "\u6700\u65b0": 1, "\u6642\u5c1a": 1, "\u8da8\u52e2": 1}, "tense": {"\u770b\u8d77\u6765": 1, "\u5f88": 1, "\u7d27\u5f20": 1}, "cause": {"\u539f\u56e0": 3, "\u7ed9": 1, "\u60f9": 1, "\u6765": 1, "\u8fd9\u4e9b": 1, "\u60f9\u4e8b": 1, "\u65e0\u6545": 1, "\u8f9e\u9000": 1}, "unknown": {"\u4e0d\u660e": 1, "Tom": 1, "\u500b": 1, "\u4e0d": 1, "\u77e5\u540d": 1, "\u85dd\u8853\u5bb6": 1}, "digital": {"\u5167\u5efa": 1, "\u6578\u4f4d": 1, "\u6570\u7801\u76f8\u673a": 1}, "happening": {"\u6b63": 4, "\u53d1\u751f": 5, "\u7740": 4, "\u4e8b\u60c5": 4, "\u767c\u751f": 2, "\u51fa": 1, "\u4e8b": 1, "\u6b63\u5728": 1, "\uff0d": 1}, "prejudice": {"\u5bf9": 1, "\u5916\u7c4d": 1, "\u5458\u5de5": 1, "\u6ca1\u6709": 1, "\u504f\u89c1": 1}, "quotes": {"\u7d93\u5e38": 1, "\u5f15\u7528": 1}, "Shakespeare": {"\u838e\u58eb\u6bd4\u4e9e": 3, "\u4e00\u4f4d": 1, "\u4f5c\u54c1": 1, "\u96e3\u8b80": 1}, "kicked": {"\u8e22": 1, "\u9032": 1, "\u7403\u9580": 1, "\u88ab": 1, "\u8e22\u5f00": 1}, "Korean": {"\u5b78\u671d": 1, "\u9bae\u8a9e": 1, "\u5b66": 1, "\u97e9\u8bed": 1}, "apartment": {"\u516c\u5bd3": 5, "\u6b63\u5fd9": 1, "\u8457\u627e": 1, "\u79df\u623f\u5b50": 1}, "fourth": {"\u56db\u6a13": 1}, "welcome": {"\u70ba": 1, "\u8209\u8fa6": 1, "\u4e00\u500b": 1, "\u6b61\u8fce": 1, "\u6703": 1, "\u60a8": 1, "\u4e0d\u5fc5": 1, "\u611f\u8c22": 1}, "consideration": {"\u5e94\u8be5": 1, "\u8003\u8651": 1, "\u7b2c\u4e00\u4ef6": 1, "\u672c\u8be5": 1, "\u8003\u8651\u4e00\u4e0b": 1, "\u4ed4\u7d30": 1, "\u5730": 1, "\u8003\u616e": 2}, "Unfortunately": {"\u5f88": 2, "\u9057\u61be": 1, "\u4e0d\u5e78": 2, "\u4eba": 1, "\u5979": 1}, "fitting": {"\u8fd9\u4ef6": 1, "": 1, "\u54ea\u91cc": 1}, "universal": {"\u4e16\u754c\u6027": 1, "": 2, "\u7528": 1}, "cried": {"": 2, "\u54ed": 5, "\u7576": 1, "\u4e00\u908a": 2, "\u90fd": 1, "\u4e00": 1, "\u6574\u665a": 1}, "Pardon": {"\u5c0d": 1, "\u4e0d\u8d77": 1, "": 1, "\u4f60": 1}, "Quit": {"\u4e0d\u8981": 1, "": 1, "\u6d3b": 1, "\u5f97": 1, "\u4e45": 1, "\u4e00\u70b9": 1}, "capitals": {"\u5199\u4e0b": 1, "\u5927\u5199\u5b57\u6bcd": 1, "\u7528": 1, "\u5927": 1, "\u5199\u5199": 1, "\u4e0b\u6765": 1}, "deteriorating": {"Tom": 1, "\u6b63\u5728": 1, "\u6076\u5316": 1}, "retiring": {"\u660e\u5e74": 1, "\u5c31\u8981": 1, "\u9000\u4f11": 2}, "participants": {"\u53c2\u4e0e\u8005": 1, "\u5973\u6027": 1, "\u53c3\u52a0\u8005": 1, "\u90fd\u5f97": 1, "\u8a3b": 1, "\u518a": 1}, "handle": {"\u5904\u7406": 1, "\u538b\u529b": 1, "\u9019\u8f1b": 1, "\u64cd\u63a7": 1, "\u60f3\u8981": 1, "\u4f60": 1, "\u5c0d\u5f85": 1, "\u4f86": 1, "\u8655\u7406": 1, "\u6765": 1, "\u89e3\u51b3": 1}, "introduced": {"\u628a": 5, "\u4ecb\u7d39": 6, "\u7d66": 4, "\u8a8d\u8b58": 3, "\u4ecb\u7ecd": 1, "\u7ed9": 1, "\u672c\u4f86": 1, "\u5411": 1, "\u90a3\u500b": 1, "\u81ea\u6211": 1}, "Thanks": {"\u611f\u8c22": 2, "\u4f60\u4eec": 1, "\u4e24\u4f4d": 1, "\u8c22\u8c22": 6, "\u4f60": 1, "\u8c22\u8c22\u60a8": 1, "\u8b1d\u8b1d": 1, "\u60a8": 1, "\u5149\u81e8": 1}, "whole": {"\u6574\u4e2a": 2, "\u81ea": 1, "\u90fd": 5, "\u5168\u73ed\u540c\u5b66": 1, "\u628a": 1, "\u8c28\u614e": 1, "\u884c\u4e8b": 1}, "Tears": {"\u70ed\u6cea\u76c8\u7736": 1}, "ladies": {"\u9152\u6c34": 1, "\u514d\u8d39": 1, "\u4ec5": 1, "\u5973\u58eb": 1, "\u800c\u5df2": 1, "\u8fd9": 1, "\u4e94\u4e2a": 1, "\u5973\u4eba": 1, "\u4e00\u4e2a": 1, "\u8ba4\u8bc6": 1}, "rewrite": {"\u91cd\u5beb": 1, "\u53e5": 1, "\u8a71": 1}, "cookies": {"\u5403": 2, "\u997c\u5e72": 1, "\u5c31": 1, "\u9905": 1, "\u4e7e": 1, "\u5f62\u72c0": 1, "\u66f2\u5947": 1}, "order": {"\u4e0d\u8ba2": 1, "\u62ab\u8428": 1, "\u9ede": 1, "\u58de": 1, ",": 3, "": 3, "\u51fa": 1, "\u52aa\u529b\u5b66\u4e60": 1, "\u4e3a\u7684\u662f": 1}, "Continent": {"\u66fe\u7d93": 1, "\u88ab": 1, "\u7a31\u70ba": 1, "\u9ed1\u6697": 1, "\u5927\u9678": 1}, "senator": {"\u8bae\u5458": 1, "\u53d7\u5230": 1, "\u8bae\u4f1a": 1, "\u9053\u5fb7": 1, "\u59d4\u5458\u4f1a": 1, "\u8c34\u8d23": 1}, "Poor": {"\u56e0\u4e3a": 1, "\u72b6\u51b5\u4e0d\u4f73": 1, ",": 1, "": 1, "\u4ed6": 1}, "efficient": {"\u65e0\u53ef\u5426\u8ba4": 1, "\u80fd\u529b": 1}, "smiled": {"\u7b11": 4, "\u4e86": 4, "\u5bf9": 3, "\u7b11\u4e86\u7b11": 1, "": 2, "\u5979": 1, "\u4e5f": 1, "\u7740": 1, "\u66fe": 1, "\u5fae\u7b11": 2, "\u739b\u4e3d": 1, "\u5c0d\u8457": 1}, "fiction": {"\u79d1\u5e7b": 1}, "relevant": {"\u5f88": 1, "\u4e2d\u80af": 1, "\u6709": 1, "\u5173\u7cfb": 1}, "entered": {"\u8fdb": 2, "\u6ca1\u6709": 1, "\u6458\u4e0b": 1, "\u90a3\u500b": 1, "\u7537\u751f": 1, "\u5f9e": 1, "\u5f8c": 1, "\u9032\u4f86": 1, "\u5f53": 1, "\u8fdb\u5165": 1, "\u90a3\u4e2a": 1, "\u9032": 1}, "pie": {"\u82f9\u679c\u6d3e": 1, "\u4e2a": 1, "\u6d3e": 3, "\u66f4\u591a": 1, "\u9921\u9905": 2}, "Walk": {"\u8d70\u5feb": 1, "\u4e00\u9ede": 1, "": 1, "\u4f60": 1, "\u6703": 1, "\u8d70": 2, "\u904e": 1}, "quietly": {"\u975c\u975c\u5730": 1, "\u95dc\u4e0a": 2, "\u5b89\u975c": 1, "\u5730": 1, "\u6084\u6084\u5730": 1}, "sign": {"\u4e0a": 1, "\u7b7e\u540d": 1, "\u600e\u6837": 1, "\u62a5\u540d": 1, "\u53c2\u52a0": 1, "\u5462": 1, "\u7c3d\u4e0a": 1}, "insufferable": {"\u4ee4\u4eba": 1, "\u96be\u4ee5\u5fcd\u53d7": 1}, "independent": {"\u7368\u7acb": 1, "\u65bc": 1}, "collection": {"\u60a8": 1, "\u6536\u85cf": 1, "\u6536\u96c6": 1, "\u5f88\u591a": 1}, "pick": {"\u8d77": 1, "\u660e\u65e9": 1, "\u6765": 1, "\u63a5": 6, "\u65bc": 1, "\u53eb": 1, "\u53bb": 3, "\u4f60\u5bb6": 1, "\u8d70": 1, "\u4e0d\u6765": 1}, "envy": {"\u5ac9\u5992": 1, "\u7fa8\u6155": 1, "Tom": 1, "": 1, "\u548c": 1}, "grammatical": {"\u4e00\u4e9b": 1, "\u6587\u6cd5": 1, "\u932f\u8aa4": 1}, "seated": {"\u5750": 1, "\u4e00\u4f1a": 1, "\u7e7c\u7e8c": 1, "\u5750\u8457": 1}, "weatherman": {"\u6c14\u8c61\u5b66\u5bb6": 1, "\u4f1a": 1, "\u6709\u66b4\u98ce\u96e8": 1}, "somebody": {"\u6709\u4eba": 5, "\u67d0\u4eba": 1, "\u90a3\u4e8b": 1, "\u8ab0": 1, "\u4f86": 1, "\u4e00\u4e0b": 1, "\u90a3\u8fb9": 1, "\u6709": 1, "\u4e2a\u4eba": 1, "\u6765": 1}, "relieve": {"\u6c92\u6709": 1, "\u4ec0\u9ebc": 1, "\u8a9e\u80fd": 1, "\u6e1b\u8f15": 1, "\u6df1\u6df1": 1, "\u60b2\u50b7": 1}, "member": {"\u662f": 3, "\u50cf\u662f": 1, "\u4e00\u54e1": 1, "\u6210\u5458": 1, "\u4ff1\u6a02\u90e8": 2, "\u6210\u70ba": 1, "\u6703\u54e1": 1}, "circumstances": {"\u60c5\u51b5": 1, "\u5141\u8bb8": 1, "\u51fa\u56fd": 1}, "pet": {"\u990a\u4e00\u96bb\u9e1a\u9d61": 1, "\u4f5c": 1, "\u70ba": 1, "\u5bf5": 1, "\u7269": 1}, "salary": {"\u5de5\u8d44": 3, "\u85aa\u6c34": 4}, "double": {"\u662f": 1, "\u5e74\u524d": 2, "\u5169\u500d": 1, "\u4ef7\u94b1": 1, "2": 1, "\u500d": 1, "\u89ba\u5f97": 1, "\u518d": 1, "\u4e00\u904d": 1}, "drama": {"\u53c3\u52a0": 1, "\u6232\u5287": 2, "\u793e": 1}, "Banks": {"\u94f6\u884c": 2, "\u9280\u884c": 1, "\u958b\u9580": 1, "\u5f00\u95e8": 1}, "loans": {"\u98ce\u9669": 1, "\u5ba2\u6237": 1, "\u6536\u53d6": 1, "\u8f83\u9ad8": 1, "\u8d37\u6b3e": 1, "\u5229\u606f": 1}, "ones": {"\u6700\u5148": 1, "\u7684": 4, "\u4e0d\u662f": 2, "\u7ed3\u4e86\u5a5a": 1, "\u4eba": 1, "\u4e00\u4e9b": 1, "\u4e9b": 1}, "absolute": {"\u7d55\u5c0d": 2}, "necessity": {"\u5fc5\u8981": 1, "\u6771\u897f": 1}, "ski": {"\u5c71\u4e0a": 1, "\u6ed1\u96ea": 1}, "crutches": {"\u62c4\u7740": 1, "\u62d0\u6756": 2, "\u628a": 1, "\u653e": 1, "\u53bb": 1, ",": 1, "": 1}, "principal": {"\u525b": 1, "\u4e00": 1, "\u540d\u6821": 1, "\u9577": 1, "\u6821\u957f": 1, "\u8c08\u8bdd": 1}, "deals": {"\u8fd9\u6837": 1, "\u505a\u751f\u610f": 1}, "file": {"\u6062\u590d": 1, "\u5df2": 1, "\u6587\u4ef6": 3, "\u770b": 1}, "deleted": {"\u5220\u9664": 1, "\u522a": 1, "\u9664\u4e86": 1, "\u5e33\u865f": 1}, "hunger": {"\u9019\u4f4d": 1, "\u65bc": 2, "\u98e2\u9913": 2, "\u54b1\u4eec": 1, "\uff01": 1, "\u997f\u6b7b": 1, "\u9813": 1, "\u8b93": 1, "\u5145": 1, "\u9951": 1, "\u89e3": 1, "\u9913": 1}, "microwave": {"\u6ca1\u6709": 1, "\u5fae\u6ce2\u7089": 1}, "ocean": {"\u807d\u5230": 1, "\u6d77": 1, "\u8072\u97f3": 1}, "majored": {"\u5927\u5b78": 2, "\u4e3b\u4fee": 2, "\u54f2\u5b78": 1}, "progressing": {"\u6709": 1, "\u8fdb\u6b65": 1}, "exercising": {"\u898f\u5f8b": 1, "\u904b\u52d5": 1}, "drinks": {"\u98f2\u6599": 2, "\u559d": 5, "\u5e7e\u676f": 1, "\u5c31": 1, "\u7740": 1, "\u4e0d": 1, "\u50a2": 1, "\u611f": 1}, "league": {"\u4e0d": 1, "\u5728": 1, "\u8054\u76df": 1, "\u91cc": 1}, "following": {"\u7528": 1, "\u4e0b\u5217": 1, "\u5728": 1, "\u8ddf\u8457": 1, "\u6c92\u4eba": 1, "\u8ddf\u8e2a": 1}, "consists": {"\u7531": 2, "\u56db\u4e2a": 1, "\u7ec4\u6210": 2, "\u8db3\u7403\u961f": 1, "\u5341\u4e00\u4e2a": 1, "\u7403\u5458": 1}, "magazines": {"\u96dc": 5, "\u8a8c": 5, "\u90a3": 1, "\u672c": 1, "\u62ff": 1, "\u9019\u9593": 1}, "architect": {"\u4e00\u4e2a": 1, "\u5efa\u7b51\u5e08": 2, "\u9020": 1}, "disturb": {"\u60f3": 1, "\u6253\u6270": 3, "\u5f53": 1}, "role": {"\u65e0\u8bba": 1, "\u7684": 1, "\u751f\u6d3b": 1, "\u4e2d": 1, "\u59cb\u7ec8": 1, "\u91cd\u8981": 1}, "Computers": {"\u7535\u8111": 2, "\u4e3a": 1, "\u8282\u7701": 1, "": 1, "\u4e86": 1}, "filled": {"\u5728": 1, "\u88e1": 6, "\u88dd\u6eff": 4, "\u4e86": 1, "\u5145\u6eff": 1, "\u5145\u6ee1": 2, "\u90fd": 1}, "India": {"\u5370\u5ea6": 4, "\u591a\u5c11": 1, "\u98de\u673a": 1, "\u61c9\u8a72": 1}, "import": {"\u9032\u53e3": 1, "\u8336\u8449": 1}, "meetings": {"\u4f1a\u8bae": 1, "\u600e\u4e48\u6837": 1, "\u5728": 1, "\u6e05\u6668": 1, "\u958b": 1, "\u6703\u8b70": 1}, "skirt": {"\u4e00\u689d": 6, "\u88d9\u5b50": 7, "\u5b38\u5b38": 2, "\u8fd9": 1, "\u6761": 1, "\u8205\u6bcd": 1}, "temporary": {"\u53ea\u662f": 1, "\u6682\u65f6": 1}, "realized": {"\u610f\u8b58": 2, "\u5230": 2, "\u73af\u987e\u56db\u5468": 1, "": 1}, "event": {"\u4e2a": 1, "\u4e8b\u4ef6": 2, "\u6574\u9ad4": 1, "\u800c\u8a00": 1, "": 2}, "deadlock": {"\u8bbe\u6cd5": 1, "\u6253\u7834": 1, "\u8fd9\u4e2a": 1, "\u50f5\u5c40": 1}, "rings": {"\u9234\u8072": 1, "\u516b\u9ede\u9418": 1, "\u97ff\u8d77": 2, "\u6b63\u5348": 1, "\u6642\u5206": 1, "\u9418\u8072": 1}, "smashed": {"\u6454\u6210": 1, "\u9189": 1, "\u4e86": 1}, "pieces": {"\u788e\u7247": 2, "\u8bf7\u95ee": 1, "\u60a8": 1, "\u4ef6": 1, "\u4fe1\u6210": 1, "\u90a3": 1, "\u4e24\u5757": 1}, "narrow": {"\u9019": 2, "\u689d\u8def": 2, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u7a84": 2, "\u7121\u6cd5": 1, "\u901a\u884c": 1, "\u5230": 1, "\u6751": 1, "\u838a": 1, "\u689d": 1, "\u7a84\u8def": 1}, "toothbrush": {"\u9019": 1, "\u628a": 1, "\u7259\u5237": 1}, "capacity": {"\u9019\u8f1b": 1, "\u5ba2\u6eff": 1}, "separately": {"\u5206\u958b": 1, "\u597d": 1}, "swims": {"\u6e38\u6cf3": 4, "\u6e38\u5f97": 2, "Tom": 1}, "Movie": {"\u96fb": 1, "\u5f71": 1, "\u88fd": 1, "\u4f5c": 1, "\u4e00": 1, "\u500b": 1}, "mouth": {"\u5927\u5634\u5df4": 1, "\u7740": 1, "\u5634": 1, "\u4eba\u5bb6": 1, "\u6311": 1, "\u4e09": 1, "\u63c0": 1, "\u56db": 1, ",": 4, "": 6, "\u7372": 2, "\u4eba": 2, "\u8d08": 2, "\u6211": 1, "\u770b\u7740": 1}, "fluent": {"\u638c\u63e1": 1, "\u4e09\u79cd": 1, "\u80fd": 1, "\u8aaa": 4, "\u6d41\u5229": 5, "\u5f88": 3, "\u6d41\u66a2": 1, "\u5f97": 3}, "Champagne": {"\u7ed9": 1, "\u9999\u69df": 1, "": 1}, "cleaner": {"\u514d\u8cbb": 1, "\u5f97\u5230": 1, "\u5438": 1, "\u5875\u5668": 1}, "dependent": {"\u73b0\u5728": 1, "\u4f9d\u7136": 1, "\u4f9d\u9760": 2, "\u751f\u6d3b": 1, "\u5543\u8001\u65cf": 1}, "sow": {"\u79cd\u74dc\u5f97\u74dc": 2, "": 2}, "pry": {"\u4e0d\u8981": 2, "\u63d2\u624b": 1, "\u79c1\u751f\u6d3b": 1, "\u63a2\u542c": 1}, "bill": {"\u62ff\u51fa": 1, "\u5305\u4ed8": 1, "\u8cec": 1, "\u5355": 1, "\u5e33\u55ae": 1, "\u672c\u4f86": 1, "\u4ed8\u8cec": 1, "\u8d26\u5355": 2, "\u8a72": 1, "\u6cd5\u6848": 1, "\u901a\u904e": 1}, "treated": {"\u88ab": 2, "\u5bf9\u5f85": 3, "\u5f53\u4f5c": 1, "\u5c0f\u5b69": 1, "\u628a": 1, "\u7576\u6210": 1, "\u5c0d\u5f85": 1}, "Louder": {"\u8bf7": 1, "\u5927\u58f0": 1, "\u4e00\u70b9": 1}, "murder": {"\u9019\u4eba": 1, "\u56e0\u8b00": 1, "\u6bba": 1, "\u88ab": 1, "\u901a\u7ddd": 1, "\u8b00\u6bba": 2, "\u662f": 1, "\u6740": 1}, "socialize": {"\u8ddf": 1, "\u4eba": 1, "\u6253\u4ea4\u9053": 1}, "conditioner": {"\u7a7a\u8c03": 1, "\u574f": 1}, "top": {"\u9876\u76d6": 1, "\u6ee1": 1, "": 1, "\u4e0a\u9762": 3, "\u653e": 2, "\u9802\u4e0a": 1, "\u5c71\u9876": 1, "\u5c71\u9802": 2, "\u6700": 1}, "Much": {"\u5f88\u591a": 1, "\u90fd": 1, "\u6c92": 1}, "mix": {"\u628a": 1, "\u751f\u610f": 1, "\u5feb\u4e50": 1, "\u6df7": 1, "\u5728": 1}, "referred": {"\u8996": 1, "\u55ac\u53df": 1, "\u70ba": 1, "\u82f1": 1, "\u8a69": 1, "\u4e4b": 1, "\u7236": 1}, "Large": {"\u5f88\u5927": 1, "": 2, "\u4e0d\u662f": 1}, "Cosmetic": {"\u5927\u90e8\u4efd": 1, "\u5305\u542b": 1, "\u6574\u5bb9": 1, "\u624b\u8853": 1}, "insurance": {"\u4fdd\u96aa": 3}, "depending": {"\u770b\u5f85": 1, "\u89d2\u5ea6": 1, "\u53d6\u6c7a": 1, "\u65bc": 1, "\u5bcc\u88d5": 1}, "differently": {"\u4e0d\u540c": 2, "\u8ca7\u7aae": 2}, "amazingly": {"\u8fd9": 1, "\u51fa\u4e4e\u610f\u6599": 1, "\u5730": 1}, "diamond": {"\u9897": 2, "\u94bb\u77f3": 2, "\u4e0d\u662f": 3, "\u771f\u7684": 3}, "football": {"": 1, "\u4e0d": 1, "\u8db3\u7403": 4, "\u64c5\u9577": 1, "\u6bcf\u500b": 1, "\u8e22\u8db3\u7403": 2}, "cleaning": {"\u5df2\u7d93": 1, "\u6253\u6383": 1, "\u53d6\u56de": 1, "\u6d17": 1, "\u8863\u670d": 1}, "gotten": {"\u751f\u610f": 2, "\u7d42\u65bc": 1, "\u7ec8\u4e8e": 1, "\u8d70\u4e0a": 1, "\u6b63\u8f68": 1}, "track": {"\u8ecc\u9053": 2, "\u53f7": 1, "\u8f68\u9053": 1, "\u4e58": 1, "\u968f\u4fbf": 1, "\u4ec0\u4e48": 1, "\u60f3\u6cd5": 1}, "Hilton": {"\u5f00\u5230": 1, "\u5e0c\u5c14\u987f\u9152\u5e97": 1, "\u5230": 1, "\u5e0c\u723e\u9813": 1, "\u98ef": 1, "\u5e97": 1, "\u7559\u5728": 1, "\u5e0c\u5c14\u987f": 1, "\u5bbe\u9986": 1}, "amateur": {"\u90a3\u6642": 1, "\u500b": 1, "\u5916\u884c": 1}, "gums": {"\u7259\u9f66": 1}, "bleeding": {"\u6d41\u8840": 3, "\u5728": 1, "\u5fc5\u9808": 1, "\u6b62\u8840": 1}, "Tickets": {"\u552e\u7968": 1, "\u6709\u7968": 1}, "skateboards": {"\u4e00\u822c": 1, "\u6ed1\u677f": 1, "\u8f6e\u6ed1\u978b": 1}, "return": {"\u524d": 1, "\u9084": 1, "\u8fd8\u7ed9": 1, "": 1, "\u4ed6": 1, "\u56de": 2, "\u7121\u5bb6": 1, "\u53ef\u56de": 1, "\u6b63\u5728": 1, "\u56de\u6765": 1}, "visitors": {"\u6ca1\u6709": 1, "\u8bbf\u5ba2": 1, "\u8a31\u591a": 1, "\u8a2a\u5ba2": 1}, "Zip": {"\u95ed\u4e0a": 1, "\u5634": 1}, "Haste": {"\u6b32\u901f": 1, "\u5247": 1, "\u4e0d\u9054": 1}, "carried": {"\u628a": 5, "\u633e": 1, "\u4e0b": 1, "\u625b": 1, "\u6267\u884c": 1, "\u4e2a": 2}, "pity": {"\u592a": 1, "\u53ef\u60dc": 3, "\u9057\u61be": 3, "\u4f86": 1, "\u60a8": 1, "\u6c92\u4f86": 1, "\u771f\u662f\u592a": 1, "\uff01": 1, "\u591a": 1, "\u554a": 1, "\u907a\u61be": 1}, "evasive": {"\u8fd9\u4e48": 1, "\u8eb2\u8eb2\u95ea\u95ea": 1, "\u542b\u7cca\u4e0d\u6e05": 1}, "partners": {"Tom": 1, "\u8ddf": 1, "\u5546\u696d": 1, "\u5925": 1, "\u4f34": 1, "\u8fd9": 1, "\u4e0a": 1, "\u5408\u4f5c\u4f19\u4f34": 1}, "assets": {"\u8d85\u8fc7": 1, "\u4e00\u767e\u4e07\u7f8e\u5143": 1, "\u8d44\u4ea7": 1}, "celebrate": {"\u6bcf\u5e74": 1, "\u6176\u795d": 1}, "below": {"\u5728": 1, "\u6a13\u4e0b": 1, "\u4e0b\u9762": 1, "\u4e00\u4e0b": 1}, "beauty": {"\u4e00\u96d9": 1, "\u7f8e\u9e97": 2, "\u805e\u540d": 2}, "possibly": {"\u63d0\u51fa": 1, "\u89e3\u51b3\u95ee\u9898": 1, "\u65b9\u6cd5": 1}, "National": {"\u56fd\u7acb\u5927\u5b66": 1, "\u4e00\u540d": 1}, "acquire": {"\u6210\u4eba": 1, "\u524d": 1, "\u7fd2\u5f97": 1, "": 1, "\u4ed6": 1, "\u8a9e\u8a00": 1, "\u7684": 1, "\u8a8d\u8b58": 1, "\u9054\u5230": 1, "\u6bcd": 1, "\u6a5f\u6703": 1, "\u662f": 1}, "unlikely": {"\u6c92\u6709": 1, "\u4e0d\u592a\u53ef\u80fd": 5, "\u770b\u4f86": 1, "\u505a\u932f": 1, "\u90a3\u9ebc": 1}, "suicide": {"\u4f01\u5716": 2, "\u81ea\u6bba": 3, "\u8aaa": 2, "": 1}, "cigarette": {"\u505c\u4e0b\u6765": 1, "\u62bd\u6839": 1, "\u70df": 1, "\u652f": 1, "\u9999\u70df": 1, "\u5427": 1}, "behave": {"\u516c\u4f17": 1, "\u573a\u5408": 1, "\u600e\u4e48\u6837": 1, "\u81ea\u5904": 1, "\u5b88": 1, "\u898f\u77e9": 1}, "naked": {"\u5149\u7740": 1, "\u8d64\u88f8": 1, "\u7740": 1, "\u4e0a\u8eab": 1, "\u90a3\u4eba": 1, "\u6c92": 1, "\u7a7f\u8863\u670d": 1}, "bankrupt": {"\u5c31\u8981": 1, "\u5012\u95ed": 1, "\u7834\u4ea7": 2}, "endure": {"\u5fcd\u53d7": 1, "\u9577\u9014": 1}, "heavily": {"\u4e0b": 1, "\u5927\u96e8": 1, "\u5f97": 1, "\u5f88\u591a": 1, "\u7576\u96e8": 1, "\u4e0b\u5f97": 1, "\u5f88\u5927": 1, "\u5e7e\u4e4e": 1}, "coincidence": {"\u4e00\u4e2a": 1, "\u5de7\u5408": 2, "\u53ef\u80fd": 1}, "gladly": {"\u5f88": 2, "\u6a02\u610f": 2, "\u4ed8\u9322": 1, "\u7d66": 1, "\u9ad8\u5174": 1, "\u63d0\u8bae": 1}, "counts": {"\u5206\u79d2\u5fc5\u4e89": 1}, "scolded": {"\u88ab": 2, "\u8bad\u65a5": 1, "\u7f75": 1, "\u61f6\u60f0": 1}, "counted": {"\u5efa\u8b70": 1, "\u4e0d\u7b97": 1, "\u4ec0\u9ebc": 1}, "passport": {"\u62a4\u7167": 4, "\u9322\u5305": 1, "\u8b77\u7167": 2, "\u53bb": 1, "\u62ff": 1, "\u9047\u5230": 1, "\u5979": 1}, "photographs": {"\u4e09\u5f20": 1, "\u7167\u7247": 1}, "stylish": {"\u4e0d\u662f": 1, "\u6d41\u884c": 1}, "icy": {"\u9053\u8def": 1, "\u7ed3\u51b0": 1, "\u5bfc\u81f4": 1, "\u8d77": 1}, "accidents": {"\u4e8b\u6545": 2, "\u88e1": 1, "\u9047\u5230": 1, "\u5169\u6b21": 1}, "permitting": {"\u5982\u679c": 2, "\u5141\u8bb8": 3, "\u7684\u8bdd": 2, "\u6211": 2, "": 1}, "Weather": {"\u5929\u6c14": 2, "": 1, "1": 1, "\u5c0f\u65f6": 1}, "rush": {"\u4e0d\u6025": 1, ",": 2, "\u6162\u6162": 1, "\u4f86": 1, "": 1}, "airplanes": {"\u6eff": 1, "\u98db\u6a5f": 1, "\u6298\u7eb8": 1, "\u98de\u673a": 1}, "600": {"\u65bc": 1, "\u516d\u5104": 1, "\u4eba\u53e3": 1, "\u800c\u8a00": 1, "": 1, "\u7b2c\u4e8c": 1, "\u8a9e\u8a00": 1}, "pure": {"\u4e00\u9897": 1, "\u7eaf\u6d01": 1, "\u5fc3": 1, "\u7d14\u91d1": 1}, "clapped": {"\u62cd": 3, "\u4e86": 3, "\u62cd\u624b": 1, "\u624b": 1}, "grip": {"\u51b7\u9759\u4e0b\u6765": 1, "\uff01": 1, "\u63a7\u5236": 1}, "confuse": {"\u51b3\u4e0d\u80fd": 1, "\u6df7\u6dc6": 1, "\u4e24\u8005": 1}, "grandmother": {"\u7956\u6bcd": 10, "\u7531": 1, "\u5e26\u5927": 1, "\u4e00\u5957": 1}, "88": {"\u6d3b\u5230": 1, "88": 1, "\u5c81": 1}, "evidence": {"\u8b49\u64da": 1, "\u8bc1\u636e": 2, "\u8bc1\u636e\u786e\u51ff": 1}, "symptoms": {"\u75c7\u72c0": 1}, "visited": {"\u62dc\u8a2a": 5, "\u63a2\u8996": 1, "\u53bb": 1, "\u53bb\u8fc7": 3, "\u6e38\u89c8": 1, "\u8fc7": 1, "\u4e00\u4e2a": 1, "\u5973\u4eba": 1, "\u5979\u5bb6": 1}, "sort": {"\u6709": 1, "\u9ede": 1}, "turns": {"\u70ba\u4f55": 1, "\u62d2\u7d55": 1, "\u5fd9": 1, "\u8f2a\u6d41": 4, "\u958b\u8eca": 2, "\u6307\u793a": 1, "\u71c8": 1, "\u8b8a\u6210": 1}, "60": {"\u5728": 1, "\u516d\u5341": 1, "\u6b72\u6642": 1}, "retire": {"\u9000\u4f11": 4, "\u65e9\u9ede": 1, ",": 1, "": 2, "\u5403": 1, "\u9a5a": 1}, "truthful": {"\u5f88": 1, "\u8bda\u5b9e": 1}, "rotten": {"\u5176\u4e2d": 1, "\u4e00\u534a": 1, "\u90fd": 1, "\u721b": 1, "\u4e86": 1}, "voyage": {"\u73af\u6e38\u4e16\u754c": 1}, "exact": {"\u6293": 1, "\u4e0d\u5230": 1, "\u786e\u5207": 1, "\u542b\u4e49": 1, "\u78ba\u5207": 2, "\u80fd\u5426": 1, "\u8aaa\u51fa": 1, "\u8a5e": 1, "\u7cbe\u78ba": 1, "\u77e5\u9053": 1}, "bid": {"\u51fa\u4ef7": 1, "\u591a\u5c11": 1}, "explosion": {"\u968f\u540e": 1, "\u7206\u70b8": 5, "\u4e2d": 2, "\u6b7b\u53bb": 1, "\u53d1\u751f": 1, "\u6709": 1}, "grandchild": {"\u5b59\u5b50": 1, "\u767b\u9646": 1}, "illustrated": {"\u6709": 1, "\u7cbe\u7f8e": 1, "\u63d2\u56fe": 1, "\u7d66": 1, "\u756b": 1, "\u63d2\u756b": 1, "\u756b\u5bb6": 1}, "weird": {"\u6709\u4e9b": 1, "\u771f\u602a": 1, "\u771f": 1, "\u5947\u602a": 3, "": 1, "\u6b63": 1, "\u4e8b\u60c5": 1, "\u53d1\u751f": 1, "\u7740": 1}, "jazz": {"\u7235\u58eb": 6, "\u6a02": 5, "\u7279\u5225": 1}, "toilet": {"\u8981": 4, "\u5ec1\u6240": 5, "\u4e0a": 2, "\u5395\u6240": 2, "\u4e00\u4e0b": 1, "\u4f60\u4eec": 1}, "ranger": {"\u662f": 1, "\u8b77\u6797": 1, "\u4eba": 1}, "continued": {"\u7e7c\u7e8c": 6, "\u7ee7\u7eed": 2, "\u770b\u66f8": 1}, "cares": {"\u5728\u610f": 1, "\u5173\u5fc3": 1, "\u7231": 1}, "perseverance": {"\u5bf9": 1, "\u575a\u6301": 1, "\u611f\u5230": 1}, "changes": {"\u904e": 1, "\u6539\u8b8a": 1, "\u70b9": 1, "\u6539\u52a8": 1}, "mess": {"\u5f04\u4e71": 1, "": 1, "\u628a": 1, "\u5f04": 1, "\u5f97": 2, "\u4e00\u5718\u7cdf": 1, "\u4e82": 1, "\u4e03\u516b": 1, "\u7cdf": 1}, "fortune": {"\u7559\u7d66": 1, "\u4e00\u5927": 1, "\u7b46": 1, "\u8ca1\u5bcc": 1, "\u7559\u7ed9": 1, "\u4e00\u5927\u7b14": 1, "\u8d22\u4ea7": 1, "\u901a\u8fc7": 1, "\u6323": 1, "\u5927\u7b14": 1, "\u94b1": 1}, "admires": {"\u5f88": 1, "\u6b23\u8cde": 1, "\u6240\u756b": 1, "\u5716\u756b": 1}, "thrown": {"\u88ab": 1, "\u8d95\u51fa": 1, "\u9019\u68df": 1}, "lottery": {"\u6211\u4e2d": 1, "\u5f69\u7968": 2, "": 2, "\u6211\u4f1a": 1, "\u4e2d\u5956": 1}, "custody": {"\u9019\u500b": 1, "\u88ab": 1, "\u62d8\u7559": 2, "\u8b66\u65b9": 1}, "carpenter": {"\u723a": 2, "\u500b": 1, "\u6728\u5320": 2}, "meddling": {"\u522b": 1, "\u518d": 1, "\u63d2\u624b": 1}, "trees": {"\u679c\u6811": 1, "\u6d47\u6c34": 1, "\u6811\u4e0a": 1, "\u5df2\u7ecf": 1, "\u53d8\u7ea2": 1, "\u82f9\u679c\u6811": 2, "\u780d\u5012": 2, "\u6811": 2, "\u7eff": 1}, "jealousy": {"\u8ba9": 1, "\u6210\u4e3a": 1, "\u5ac9\u5992\u5fc3": 1, "\u9776\u5b50": 1}, "larger": {"\u6bd4": 1, "\u8f03\u5927": 1, "\u5927": 4, "\u592a\u967d\u6bd4": 1, "\u53d8\u5f97": 1, "\u8d8a\u6765\u8d8a": 1}, "frequently": {"\u7d93\u5e38": 1, "\u4e0a\u5b78": 1, "\u9072\u5230": 1}, "breast": {"\u9935": 1, "\u5b69\u5b50": 1, "\u6bcd\u4e73": 1}, "deep": {"\u6df1\u547c\u5438": 2, "": 1, "\u8fd9\u4e2a": 3, "\u6df1": 3, "\u5730\u65b9": 1, "\u5f88": 2, "\u4e00\u53e3\u6c14": 1}, "lens": {"\u5728": 1, "\u96b1\u5f62": 1, "\u773c\u93e1": 1}, "rose": {"\u73ab\u7470\u82b1": 1, "\u5f88": 1, "\u4e00\u679d": 2, "\u7ea2\u73ab\u7470": 1, "\u767d\u73ab\u7470": 1, "\u4e00": 1, "\u6735\u73ab\u7470": 1}, "democracy": {"\u6c11\u4e3b": 2, "\u4e2d\u5fc3\u601d\u60f3": 1, "\u4e00\u70b9": 1, "\u90fd": 1, "\u77e5\u9053": 1}, "quantities": {"\u4e2a": 1, "\u4ee5\u4e0a": 1, "\u4e5d\u6298": 1, "\u7279\u60e0": 1}, "mislaid": {"\u4e22": 1, "\u4e86": 1}, "handwriting": {"\u8c01": 1, "\u5b57": 1, "\u7b46\u8de1": 2, "\u5f88\u7f8e": 1, "\u597d\u770b": 1}, "Stockholm": {"\u65af\u5fb7\u54e5\u723e\u6469": 1, "\u745e\u5178": 1, "\u9996\u90fd": 1}, "However": {"\u5bb6": 1, "\u9986\u5b50": 1, "\u7269\u7f8e\u4ef7\u5ec9": 1, "": 1, "\u662f": 1}, "location": {"\u7cdf\u7cd5": 1, "\u4f4d\u7f6e": 1}, "rebuilding": {"\u6c92\u6709": 1, "\u91cd\u5efa": 1}, "qualms": {"\u8fd9\u4e48": 1, ",": 1, "": 1, "\u6ca1\u6709": 1}, "Sumo": {"\u5c0d": 1, "\u76f8\u64b2": 1, "\u5f97": 1}, "disagree": {"\u4e0d": 1, "\u540c\u610f": 1, "\u770b\u6cd5": 1}, "Cross": {"\u5212\u6389": 2, "\u9519\u8bef": 2, "\u5355\u8bcd": 2, "\u628a": 1}, "56": {"\u7f57\u7d20": 1, "\u5e7f\u573a": 1, "56": 1, "\u53f7": 1}, "egg": {"\u4e00\u53ea": 1, "\u86cb": 2, "\u5c31": 1, "\u50cf": 1, "\u96de": 1}, "buying": {"\u6574\u665a": 1, "\u5728": 3, "\u7d66": 1, "\u8cb7": 1, "\u4e70": 2, "\u4e00\u8f86": 1, "\u65b0\u8f66": 1}, "sugar": {"\u65e0": 1, "\u7cd6": 5, "\u653e": 2, "\u7ea2\u8336": 1, "\u91cc": 2, "\u52a0\u7cd6": 2, "\u5f80": 1, "\u5462": 1}, "Follow": {"\u8ddf": 1, "\u8ddf\u4e0a": 1, "\u90a3\u8f86\u8f66": 1, "\u8ddf\u8457": 1, "\u8d70": 1, "\u8bf7": 1, "\u8ddf\u7740": 1}, "Poland": {"\u6ce2\u862d": 1, "\u9996\u90fd": 1, "\u83ef\u6c99": 1}, "Time": {"\u65f6\u95f4": 4, "\u5403\u996d\u65f6\u95f4": 1, "\u5230": 1}, "waits": {"\u4e0d": 1, "\u7b49": 1}, "punctual": {"\u5b88\u65f6": 2, "\u80fd": 1, "\u6e96": 1, "\u6642": 2, "\u4e0d\u662f": 1, "\u5f88": 1, "\u91cd\u8996\u6e96": 1}, "danger": {"\u6709": 4, "\u5371\u96aa": 5, "\u751f\u547d\u5371\u9669": 1, "\u7684": 1, "\u751f\u547d": 1, "\u5df2\u904e": 1, "\u53bb": 1}, "1,000": {"\u82b1": 1, "1000": 2, "\u8cb7": 1}, "mouse": {"\u8001\u9f20": 4, "\u9019": 2, "\u96bb": 1, "\u9032": 1, "\u88e1": 1}, "timid": {"\u80c6\u5c0f": 1, "\u751f\u7269": 1}, "initials": {"NTT": 1, "\u9019\u500b": 1, "\u7e2e\u5beb": 1, "\u662f": 1, "\u610f\u601d": 1}, "Mom": {"\u5988\u5988": 2, "": 1, "\u5abd\u5abd": 2, "\u5feb": 1, "\u628a": 1, "\u5abd": 1}, "caused": {"\u9020\u6210": 3, "\u6cb3\u6c34": 1, "\u6c3e": 1, "\u6feb": 1, "\u5bf9": 1}, "damage": {"\u5f88\u5927": 2, "\u640d\u5bb3": 2}, "teas": {"\u8bf7\u6765": 1, "\u8336": 1, "\u4e00\u676f": 1}, "Health": {"\u5065\u5eb7": 2, "\u6bd4": 1, "\u8d22\u5bcc": 1, "\u91cd\u8981": 1, "\u52dd": 1, "\u904e": 1}, "attractive": {"\u4e00\u53cc": 1, "\u8ff7\u4eba": 1}, "bottom": {"\u6253": 1, "\u5fc3\u5e95": 1, "\u91cc": 1, "\u611f\u6fc0": 1, "\u5e95\u90e8": 1, "\u62ff": 1, "\u5012\u6570": 1, "\u7b2c\u4e00": 1}, "Blenders": {"\u652a\u62cc\u6a5f": 1, "\u5c0d": 1, "\u51b0\u6c99": 1, "\u4f86\u8aaa": 1}, "Pace": {"\u91cf\u529b\u800c\u884c": 1}, "freeze": {"\u51b7\u51bb": 1, "\u4e0b\u5468": 1, "\u4f1a": 1, "\u7ed3\u51b0": 1}, "drenched": {"\u9047\u4e0a": 1, "\u9663\u96e8": 1, "\u88ab": 1, "\u6dcb\u5f97": 1, "\u5168\u8eab": 1}, "clarifying": {"\u611f\u8c22": 1, "\u5e2e\u52a9": 1, "\u6f84\u6e05": 1}, "bars": {"\u95dc": 2, "\u7262": 3, "\u88e1": 3}, "Chicago": {"\u829d\u52a0\u54e5": 3, "\u9060": 1, "\u9053": 1, "\u800c": 1}, "currently": {"\u4eec": 1, "\u76ee\u524d": 1, "\u90fd": 1, "\u73b0\u5728": 1, "\u6240": 1, "\u4efb\u6559": 1, "\u5728": 1}, "treat": {"\u90a3\u9ebc": 1, "\u5c0d\u5f85": 1, "\u628a": 1, "\u5f53": 1, "\u5c0f\u5b69": 1, "\u8bf7\u5ba2": 1, "\u8acb": 3, "\u5ba2": 1}, "appropriate": {"\u5fc5\u987b": 1, "\u6362\u8863\u670d": 1, "\u56e0\u4e3a": 1, "\u8863\u670d": 1, "\u4e0d": 1, "\u9002\u5408": 1}, "issued": {"\u65b0": 1, "\u5c07": 1, "\u65bc": 1, "\u767c\u884c": 1}, "app": {"\u5220\u9664": 1, "\u8fd9\u4e2a": 1, "\u5e94\u7528": 1}, "confidence": {"\u5fc5\u987b": 1, "\u5f97": 1, "\u81ea\u4fe1": 3, "\u9084": 1, "\u6c92\u6709": 1, "\u4fe1\u5fc3": 1}, "Takasu": {"\u9ad8\u9808": 1, "\u8a3a\u6240": 1}, "lion": {"\u72ee\u5b50": 1, "\u9a5a\u8a1d": 1, "\u7adf\u7136": 1, "\u770b\u5230": 1, "\u7345\u5b50": 1}, "beasts": {"\u517d\u7c7b": 1, "\u4e4b": 1, "\u738b": 1, "": 2, "\u9e70": 1, "\u5c31\u662f": 1, "\u9e1f\u7c7b": 1}, "retired": {"\u9000\u4f11": 6, "\u4ed6": 2, ",": 1, "": 1, "\u4e86": 1, "\u4e8b\u696d": 1, "\u4e26\u4e14": 1}, "Lots": {"\u8a31": 1, "\u591a\u540d": 1, "\u5f88\u591a": 1}, "pajamas": {"\u7a7f\u8457": 2, "\u7761\u8863": 2}, "reply": {"\u56de\u7b54": 1, "\u4ec0\u4e48": 1, "\u7b54\u590d": 2}, "Speaking": {"\u8aaa": 4, "\u8bf4": 2, "\u5f88": 1, "\u5c0d": 1, "\u4f86\u8aaa": 1, "\u5f88\u56f0": 1}, "extends": {"\u5f71\u97ff": 1, "\u904d\u53ca": 1, "\u5168\u570b": 1}, "traditional": {"\u76f8\u6251": 1, "\u4f20\u7edf": 2, "\u4f53\u80b2": 1, "\u6d3b\u52a8": 1}, "similar": {"\u548c": 4, "\u76f8\u4f3c": 3, "\u4e00\u6837": 1, "\u540c\u6837": 1, "\u7c7b\u4f3c": 2, "\u4e8e": 1, "\u985e\u4f3c": 1, "\u8ddf": 1, "\u542c": 1}, "ninety": {"\u6d3b\u5230": 1, "\u4e5d\u5341": 1, "\u6b72": 1}, "Only": {"\u53ea\u6709": 11, "\u53c3\u52a0": 2}, "peace": {"\u548c\u5e73": 8, "\u6240": 1, "\u4e00\u70b9": 1, "\u5e73\u548c": 1, "\u548c": 2, "\u8fc7": 1, "\u7740": 1}, "Politicians": {"\u653f\u6cbb\u5bb6": 1, "\u4ece\u6765\u4e0d": 1, "\u522b\u6709\u7528\u5fc3": 1}, "false": {"\u8c23\u8a00": 2, "[": 2, "\u6700\u540e": 2, "]": 2, "\u8bc1\u660e": 2, "\u5047": 2}, "form": {"\u586b\u5beb": 2, "\u5f35": 1, "\u8868\u683c": 1}, "remodeled": {"\u6b63\u5728": 1, "\u88dd\u6f62": 1}, "item": {"\u559c\u6b22": 1, "\u54ea\u7c7b": 1}, "clothing": {"\u8863\u670d": 2, "\u8863\u98df\u4f4f\u884c": 1, "\u662f": 1}, "atheist": {"\u662f": 1, "\u65e0\u795e\u8bba\u8005": 1}, "pale": {"\u5931\u53bb": 1, "\u6240\u6709": 1, "\u989c\u8272": 1, "\u82cd\u767d": 3, "\u865a\u5f31": 1, "\u6837\u5b50": 1, "\u8ba9": 1, "\u634f\u4e86\u4e00\u628a\u6c57": 1, "\u5f88": 2, "": 2, "\u6240\u4ee5": 1, "\u8138\u8272": 1, "\u84bc\u767d": 1}, "remembering": {"\u5584\u4e8e": 1, "\u8bb0\u4eba": 1, "\u540d": 1}, "Every": {"\u90fd": 5, "\u6bcf\u6b21": 4, "\u6bcf": 1, "\u51e1\u4eba": 1, "\u7686": 1, "\u5f97\u610f": 1, "\u65f6": 1, "\u4f4f": 1, "\u8655": 1, "": 1}, "edible": {"\u8fd9\u4e2a": 1, "\u80fd": 1, "\u5403": 1}, "sporting": {"\u5356": 1, "\u4f53\u80b2": 1, "\u4ea7\u54c1": 1}, "unwise": {"\u89ba\u5f97": 1, "\u9019": 1, "\u8a08\u756b": 1, "\u4e0d\u662f": 1, "\u5f88": 1, "\u8070\u660e": 1}, "horribly": {"\u5c0d": 1, "\u4f86\u8aaa": 1, "\u958b\u59cb": 1, "\u5f97": 1, "\u96e2": 1, "\u8b5c": 1}, "lean": {"\u522b": 1, "\u501a": 1, "\u7740": 1, "\u5899": 1}, "voting": {"\u6295": 1, "\u7ed9": 1}, "cutest": {"\u898b": 1, "\u6700": 1, "\u53ef\u611b": 1}, "action": {"\u884c\u52a8": 1, "\u65f6\u5019": 1, "\u6703": 1, "\u70ba": 1, "\u9019\u6b21": 1, "\u884c\u52d5": 1, "\u8ca0\u8d77": 1, "\u5168\u8cac": 1}, "writes": {"\u5199\u4fe1\u7ed9": 1, "\u5199": 1, "\u963f\u62c9\u4f2f\u6587": 1}, "Fools": {"\u521d\u751f": 1, "\u4e4b": 1, "\u72a2": 1, "\u4e0d\u754f": 1, "\u864e": 1, "\u5929\u4f7f": 1, "\u754f\u61fc": 1, "\u8655": 1, "": 2, "\u611a\u4eba": 1}, "slow": {"\u6162": 1, "\u4e94\u5206": 1, "\u9006\u98a8\u800c\u884c": 1, "\u7de9\u6162": 1, "\u524d\u9032": 1, "\u6162\u4e0b": 1, "\u4f86": 1}, "scandal": {"\u4e11\u95fb": 1, "\u8ba9": 1, "\u4ed8\u51fa": 1, "\u5931\u53bb": 1, "\u58f0\u8a89": 1, "\u4ee3\u4ef7": 1}, "10,000": {"1": 1, "10000": 2, "10": 2, ",": 2, "000": 2, "\u4ed8\u7ed9": 1, "\u8cbb\u5927": 1, "\u7d04": 1}, "stories": {"\u611b\u60c5": 1, "\u6545\u4e8b": 6, "\u5f88\u611f\u5174\u8da3": 2, "\u5fd9\u4e8e": 1, "\u9019\u68df": 1, "\u4e03\u5c64": 1, "\u6a13": 1}, "flunked": {"\u8003\u8a66": 1, "\u4e0d\u53ca\u683c": 1}, "sipped": {"\u6162\u6162": 1, "\u5730": 1, "\u555c\u98f2": 1}, "rap": {"\u8bf4\u5531": 1, "\u97f3\u4e50": 1}, "declared": {"\u6cd5\u5ead": 1, "\u5bf9": 1, "\u8c0b\u6740\u7f6a": 1, "\u540d": 1, "\u4f5c\u51fa": 1, "\u65e0\u7f6a\u5224\u51b3": 1, "\u58f0\u79f0": 1, "\u81ea\u5df1": 1, "\u6ca1\u7f6a": 1}, "bulb": {"\u706f\u6ce1": 1, "\u53d1\u5149": 1}, "Hollywood": {"\u597d": 1, "\u840a\u5862": 1, "\u4e0d\u662f": 1, "\u6a23\u5b50": 1}, "Pizza": {"\u6bd4\u85a9": 1}, "paces": {"\u524d\u9032": 1, "\u4e86": 1, "\u5e7e\u6b65": 1}, "barefooted": {"\u8d64\u811a": 1, "\u6f2b\u6b65": 3, "\u5149": 2, "\u7740": 2, "\u811a": 2}, "disappointed": {"\u6ca1\u80fd": 1, "\u5982\u4ed6": 1, "\u6240": 1, "\u613f": 1, "\u8ba9": 2, "\u611f\u5230": 1, "\u5931\u671b": 4, "\u5f88": 2, "\u6c92\u80fd": 1, "\u5bf9": 1}, "rely": {"\u522b": 1, "\u8001": 1, "\u4f9d\u8d56": 1, "\u56f0\u96e3": 1, "\u6642": 1, "\u4f9d\u8cf4": 1, "\u4f9d\u9760": 1}, "hats": {"\u90a3\u500b": 1, "\u5e97": 1, "\u88e1": 1, "\u6c92": 1, "\u6709\u5408": 1, "\u5c3a\u5bf8": 1, "\u5e3d\u5b50": 1}, "ambiguous": {"\u6b64\u53e5\u6709": 1, "\u6b67\u7fa9": 1}, "Towada": {"\u5341": 1, "\u548c\u7530": 1, "\u6e56": 1}, "surprising": {"\u6709\u70b9": 1, ",": 1, "\u53ef\u80fd": 1, "\u4ee4\u4eba": 1, "\u5403\u9a5a": 1}, "crops": {"\u7a2e\u690d": 1, "\u4f5c\u7269": 1}, "superior": {"\u8d28\u91cf": 1, "\u4e0a\u6bd4": 1, "\u90a3\u4e2a": 1, "\u597d\u5f97\u591a": 1}, "sensible": {"\u5fe0\u544a": 2, "\u660e\u667a": 2, "\u807d": 1, "\u5f9e": 1}, "Grandpa": {"\u7237\u7237": 1, "\u7ed9": 1}, "malnutrition": {"\u5c3c\u65e5\u5c14": 1, "\u4ecd\u7136": 1, "50": 1, "\u4e07": 1, "\u9762\u4e34": 1, "\u7740": 1, "\u8425\u517b\u4e0d\u826f": 1}, "Half": {"\u6709": 3}, "shelter": {"\u9019\u4f4d": 1, "\u6536\u5bb9": 1, "\u9019\u500b": 1, "\u4e0d\u5f97\u4e0d": 1, "\u6811\u4e0b": 1, "\u8eb2\u96e8": 1}, "prosecutor": {"\u68c0\u5bdf\u5b98": 1, "\u4e00\u4e2a": 1, "\u5f15\u5bfc\u6027": 1}, "generous": {"\u500b": 1, "\u5927\u65b9": 2}, "bear": {"\u627f\u53d7": 1, "\u91cd\u91cf": 1, "\u5fcd\u53d7": 4, "\u9019\u500b": 1, "\u65e0\u6cd5\u5fcd\u53d7": 1, "\u770b\u7740": 1, "": 2, "\u4f60": 1, "\u4e0d\u4e86": 1, "\uff01": 1, "\u53d7\u4e0d\u4e86": 1, "\u8996\u7dda": 1}, "lifetime": {"\u4e00\u8f88\u5b50": 1, "\u4f1a": 1, "\u51fa\u73b0": 1, "\u50cf": 1, "\u8fd9\u6837": 1, "\u673a\u4f1a": 1}, "An": {"\u7684": 6, "\u4e00\u4e2a": 1, "\u4e00\u500b": 2, "\u4e00\u4f4d": 1}, "judge": {"\u4ee5": 1, "\u7a7f\u8457": 1, "\u4f86": 1, "\u5224\u65b7": 1, "\u4e00\u500b": 1, "\u9019\u500b": 1, "\u6cd5\u5b98": 1, "\u9762\u524d": 1}, "vending": {"\u53f0": 1, "\u81ea\u52d5": 1, "\u8ca9\u8ce3": 1, "\u6545\u969c": 1}, "removed": {"\u5fc5\u9808": 1, "\u628a": 1, "\u53bb\u6389": 1}, "tattoo": {"\u6587\u8eab": 2}, "touch": {"\u78b0": 7, "\u8054\u7cfb": 1, "\u6478": 1, "\u806f\u7d61": 1, "\u88ab": 1, "\u611f\u52a8": 1, "": 2, "\u8054\u7edc": 1}, "photograph": {"\u7167\u7247": 4, "\u4f86": 1, "\u62cd\u7167": 1, "\u7740": 1, "\u5f71\u96c6": 1, "\u4e00\u5f35": 1}, "quarterback": {"\u9996\u53d1": 1, "\u56db\u5206": 1, "\u536b": 1}, "wash": {"\u6d17\u8eca": 2, "\u6d17": 8, "\u8ba9": 1, "\u6c7d\u8f66": 1, "\u6d17\u5934": 1, "\u5e6b": 1, "\u80cc": 1, "\u996d\u524d\u6d17\u624b": 1, "\u6e05\u6d17": 1}, "monkey": {"\u7334\u5b50": 4, "\u5bf9": 1, "\u6765\u8bf4": 1, ",": 1, "\u8df3\u5230": 1, "\u8eab\u4e0a": 1, "": 1, "\u6a39\u4e0a": 1, "\u6389": 1, "\u4e0b\u4f86": 1, "\u770b\u7740": 1, "\u7334": 1}, "terms": {"\u5173\u7cfb": 1, "\u5c0d": 1, "\u4efb\u4f55": 1, "\u4e8b": 1, "\u7528": 1, "\u89d2\u5ea6": 1, "\u4f86\u770b": 1, "\u60a8": 1}, "chips": {"\u96a8\u610f": 1, "\u9ede": 1, "\u6d0b\u828b\u7247": 1, "\u4e0d\u8be5": 1, "\u628a": 1, "\u4e00\u6574": 1, "\u85af\u7247": 1, "\u5b8c": 1}, "appointed": {"\u4efb\u547d": 3, "\u88ab": 2, "\u70ba": 1}, "director": {"\u4e3a": 1, "\u7ecf\u7406": 1}, "shape": {"\u5916\u5f62": 2, "\u9ad4\u578b": 1}, "monk": {"(": 1, "Tom": 1, ")": 1, "\u51fa\u5bb6": 1, "\u4e3a": 1, "\u50e7": 1}, "prince": {"\u89c1\u5230": 1, "\u738b\u5b50\u771f": 1, "\u4eba": 1}, "eager": {"\u6e34\u671b": 1, "\u8ba9": 1, "\u522b": 1, "": 1, "\u5c31": 1}, "maybe": {"tom": 1, "": 3, "\u53ef\u80fd": 1, "\u5230": 1, "\u4e0d\u8fc7": 1, "\u4e5f\u8a31": 1}, ":": {"": 1, "\u4e09\u5341\u5206": 2, "\u70b9": 3, "\u534a": 2}, "gold": {"\u9580\u4e0a": 1, "\u5927\u5927\u7684": 1, "\u91d1\u8272": 1, "\u6709": 1}, "7": {"\u4e58": 2, "7": 5, "\u70b9": 4, "": 1, "\u9519\u8fc7": 1, "\u5206": 1, "\u8f66": 1}, "poems": {"\u8fd9": 1, "\u662f": 1, "\u8bd7": 1, "\u8a69": 1}, "spell": {"\u600e\u9ebc": 3, "\u62fc": 3, "\u59d3": 2}, "confessed": {"\u627f\u8a8d": 1, "\u4f9b\u8ba4": 2, "\u6740\u4eba": 1, "\u7f6a\u884c": 2, "\u90a3\u4e2a": 1, "\u4ed6": 1}, "1492": {"1492": 1, "\u5e74": 1}, "Columbus": {"\u54e5\u502b\u5e03": 1, "\u6559\u5c0e": 1, "\u8aaa": 1, ",": 1, "": 1, "\u767c\u73fe": 1}, "parties": {"\u6d3e": 1, "\u5c0d": 1}, "recovering": {"\u9019\u500b": 1, "\u6b63\u5728": 1, "\u5eb7": 1, "\u5fa9": 1, "\u4e2d": 1, "\u8be5": 1, "\u6b63": 1, "\u9010\u6b65": 1, "\u5eb7\u590d": 1}, "steadily": {"\u7a69\u5b9a": 2, "\u5730": 2}, "Wednesday": {"\u4ece": 1, "\u4e0a\u5468\u4e09": 1, ",": 1, "\u5468\u4e09": 1, "\u5230": 1}, "sells": {"\u5356\u82b1": 1, "\u8fd9\u8f86": 1, "\u5356": 5, "\u90a3": 1, "\u8ce3": 1}, "foreigners": {"\u5916\u56fd\u4eba": 2, ",": 1, "\u4e86": 1}, "brochure": {"\u5bc4": 1, "\u5ba3\u50b3\u518a": 1, "\u7d66": 1}, "saddled": {"\u5f37\u8feb": 1, "\u505a": 1, "\u9019\u500b": 1}, "sweep": {"\u8b93": 1, "\u6253\u6383": 1}, "tricks": {"\u8001": 1, "\u72ac": 1, "\u8be1\u8ba1": 1}, "Edison": {"\u611b\u8fea\u751f": 2, "\u767c\u660e": 2, "\u8a31\u591a": 1}, "Algebra": {"\u4ee3\u6578": 1}, "fists": {"\u4e86": 1, "\u62f3\u5934": 1}, "considered": {"\u8003\u8651": 4, "\u5168\u76e4": 1, "\u8003\u616e": 1, "\u5f8c": 1, "": 1, "\u63d0\u8bae": 1}, "normal": {"\u4e00\u5207\u6b63\u5e38": 2, "\u6b63\u5e38": 1}, "Doctors": {"\u533b\u751f": 2}, "perform": {"\u4eec": 1, "\u505a": 1, "\u7b2c\u4e8c\u6b21": 1}, "operation": {"\u624b\u672f": 3, "\u63a5\u53d7": 1, "\u624b\u8853": 1, "\u81ea\u4ece": 1, "\u540e": 1, ",": 1, "\u7236\u4eb2": 1, "\u4e00\u76f4": 1, "\u826f\u597d": 1}, "assistant": {"\u8ba9": 1, "\u52a9\u7406": 2, "\u52a9\u624b": 3, "\u6703": 1, "\u662f": 1, "\u7ed9": 1, "\u5f53": 1, "\u4e00\u5bb6": 1}, "shipping": {"\u70ba": 1, "\u4e00\u5bb6": 1, "\u8239\u904b": 1}, "resent": {"\u6068": 1}, "Raspberries": {"\u8986\u76c6\u5b50": 1, "\u5f88\u8cb4": 1}, "bend": {"\u7121\u6cd5": 1, "\u5f4e\u66f2": 1, "\u53f3": 1}, "confident": {"\u6709": 2, "\u81ea\u4fe1": 1, "\u505a\u5230": 1, "\u8fd9": 1, "\u4e00\u70b9": 1, "\u4fe1\u5fc3": 1, "\u7372\u52dd": 1}, "hired": {"\u96c7": 2, "\u65b0\u5f8b": 1, "\u5e2b": 2, "\u4e2a\u4eba": 1, "\u5f55\u7528": 1, "\u6765": 1, "\u62c5\u4efb": 1}, "blamed": {"\u70ba": 1, "\u9019\u500b": 1, "\u6307\u8cac": 1, "\u5e94\u5f53": 1, "\u8d23\u5907": 1}, "mechanic": {"\u9019": 2, "\u540d": 1, "\u6280\u5e2b": 1, "\u7d44\u88dd": 1, "\u53f0": 1}, "engine": {"\u5f15\u64ce": 2, "\u767c\u52d5": 1}, "achieved": {"\u4e8b\u696d": 1, "\u4e0a": 1, "\u53d6\u5f97": 1, "\u5de8\u5927\u6210\u529f": 1}, "Beginners": {"\u521d\u5b78\u8005": 1, "\u61c9": 1, "\u5148\u5b78": 1, "\u7fd2\u53e3": 1}, "plays": {"\u6bcf\u500b": 1, "\u746a\u9e97\u5f48": 1, "\u73a9": 2, "\u5f39": 2}, "Hunger": {"\u9951": 1, "\u9913": 1, "\u8abf\u5473\u54c1": 1, "\u5bf9\u4e8e": 1, "\u4e00\u4e2a": 1, "\u9965\u997f": 1, "\u4eba": 1, "\u6765\u8bf4": 1, ",": 1, "": 2, "\u4efb\u4f55": 1, "\u90fd": 1}, "Bread": {"\u9762\u5305": 2, "\u9762\u7c89": 2}, "inspired": {"\u6f14\u8aaa": 1, "\u6fc0\u52f5": 1}, "driest": {"\u5e74\u4ee3": 1, "\u4ee5\u4f86": 1, "\u6700": 1, "\u4e7e\u65f1": 1, "\u516d\u6708": 1}, "cancel": {"\u53d6\u6d88": 2, "\u8be5": 1, "\u901a\u8bdd": 1, "?": 1}, "Cut": {"\u5225": 1, "\u9592": 1, "\u804a": 1, "": 1}, "Turtles": {"\u6d77\u9f9f": 1, "\u662f": 1, "\u722c\u884c\u52a8\u7269": 1}, "habits": {"\u76f8\u540c": 1, "\u55dc\u597d": 1}, "arrange": {"\u5b89\u6392": 1, "\u4e00\u4e0b": 1, ",": 1, "": 2, "\u4e2a\u4eba": 1}, "pulled": {"\u628a": 2, "Tom": 1, "": 2, "Mary": 1}, "subscribe": {"\u6709\u8a02": 1, "\u95b1": 1, "\u8a02\u95b1": 2, "\u5831\u7d19": 2, "\u5169\u4efd": 1}, "collars": {"\u71a8\u70eb": 1, "\u9886\u5b50": 1, "\u91cc\u9762": 1, "": 1}, "Iron": {"": 1, "\u94c1": 1, "\u4e2a": 1}, "palms": {"\u4e0d\u7528": 1, "\u66f2": 1, "\u5c31": 1, "\u628a": 1, "\u624b\u638c": 1, "\u653e\u5230": 1}, "knees": {"\u819d": 2, "\u8170\u90e8": 1, "\u5230": 1, "\u84cb": 1, "\u90fd": 1}, "Above": {"\u5c24\u5176": 1, "\u662f": 1, "\u8981": 1}, "startling": {"\u4ee4\u4eba\u5403\u60ca": 1}, "genius": {"\u4e2a": 2, "\u5929\u624d": 3, "\u662f": 2, "\u500b": 1}, "blog": {"\u535a\u5ba2": 2}, "autobiography": {"\u665a\u5e74": 1, "\u81f4\u529b": 1, "\u65bc": 1, "\u81ea": 1, "\u50b3": 1}, "felt": {"": 2, "\u611f\u89c9": 6, "\u611f\u89c9\u826f\u597d": 1, "\u4ee5": 1, "\u6765": 1, "\u611f\u53d7": 1, "\u90a3\u4e48": 1, "\u611f\u5230": 3, "\u89ba\u5f97": 1, "\u8ba9": 1}, "Without": {"\u6c92\u6709": 3, "\u5c31": 1, "": 2, "\u6211": 1, "\u751a\u9ebc": 1, "\u6ca1\u6709": 1, "\u6211\u4eec": 1}, "Rome": {"\u7f85\u99ac": 3, "\u7f57\u9a6c": 2, "\u7f57\u9a6c\u4e0d\u662f": 2, "\u5efa\u6210": 2}, "visiting": {"\u9019\u500b": 1, "\u4e00": 1, "\u904a": 1, "\u7279\u5730": 1, "\u4f86": 1, "\u62dc\u8a2a": 1}, "buttons": {"\u4e00\u500b": 1, "\u6309\u9215": 1, "\u812b\u843d": 1}, "traditions": {"\u4fdd\u6301": 1, "\u5bb6\u5ead": 1, "\u4f20\u7edf": 1}, "loser": {"\u662f": 1, "\u500b": 1, "\u4e0d\u6210\u5668": 1, "\u4eba": 1}, "Summers": {"\u590f\u5929": 1, "\u70ed": 1}, "teams": {"\u961f\u4f0d": 1, "\u5341\u652f": 1, "\u968a\u4f0d": 1, "\u7af6\u9010": 1, "\u734e\u9805": 1}, "sheets": {"\u5e8a\u4e0a": 1, "\u92ea": 1, "\u5e8a\u55ae": 1}, "Hello": {"\u4f60\u597d": 1}, "Move": {"\u817e": 1, "\u4e00\u4e0b": 1, "\u5730\u65b9": 1, "\u8f7b\u8f7b\u5730": 1, "\u79fb\u52a8": 1}, "consent": {"\u90a3\u6837": 1, "\u6761\u4ef6": 1, "\u4e0b": 1, "\u540c\u610f": 1}, "tossed": {"\u671d": 1, "\u4e22": 1, "\u6211": 1, "\u7528": 1, "\u5634": 1}, "meter": {"\u5237\u65b0": 1, "\u767e\u7c73": 1, "\u77ed\u8dd1": 1, "\u7d00\u9304": 1}, "bulky": {"\u9019\u500b": 1, "\u7b28\u91cd": 1, "\u7121\u6cd5": 1, "\u651c\u5e36": 1}, "misjudged": {"\u5bf9": 1, "\u4ea7\u751f\u8bef\u89e3": 1, "": 1}, "bet": {"\u6253": 2, "\u8ced": 3, "\u9019": 1, "\u500b": 1, "\u5339": 1, "\u4e0b": 1, "\u5341\u7f8e\u5143": 1, "\u8ced\u6ce8": 1}, "copies": {"\u628a": 1, "\u6bcf": 1, "\u590d\u5370": 1, "\u4e09\u4efd": 1}, "novelist": {"\u4e00\u4f4d": 1, "\u5c0f\u8bf4\u5bb6": 1}, "kissing": {"\u4e86": 2, "\u5728": 1, "\u543b": 1}, "common": {"\u5171\u540c": 3, "\u4e4b\u8655": 3, "\u4f60\u4eec": 1, ",": 1, "\u662f": 1, "\u4efb\u4f55": 1, "\u5171\u540c\u70b9": 2, "\u540c": 1, "\u8fc7": 1, "\u5171\u540c\u4e4b\u5904": 1}, "Next": {"\u4e0b": 1, "\u4e00\u6b21": 1, "\u4e00\u9ede": 1, "\u5230": 2, "\u4e0b\u6b21": 1, "\u8be5\u8f6e": 1}, "microphone": {"\u628a\u624b": 1, "\u9ea6\u514b\u98ce": 1, "\u525b\u624d": 1, "\u9ea5\u514b\u98a8": 1, "\u6c92\u8d77": 1, "\u4f5c\u7528": 1, "": 1, "\u4e0d": 1}, "thrilled": {"\u5f88": 1, "\u4e50\u610f": 1, "\u8fd9\u4e48": 1, "\u5174\u594b\u4e0d\u5df2": 2, "\u6fc0\u52d5": 1, "\u4e0d\u5df2": 1}, "risen": {"\u751f\u6d3b": 1, "\u8cbb": 1, "\u5347\u9ad8": 1, "\u6c34\u4f4d": 1, "\u4e0a\u5347": 1}, "lock": {"\u5f00\u95e8": 1, "\u5f04\u574f\u4e86": 1, "\u9501": 3, "\u9396": 5, "\u628a": 2, "\u9580\u9396": 1, "\u4e0a": 2, "\u6709": 1, "\u5f53": 1, "\u51fa\u95e8\u65f6": 1, "": 1, "\u6ca1\u6709": 1, "\u8f66\u4e0a": 1, "\u5c31": 1}, "depart": {"\u51e0\u70b9": 1, "\u51fa\u53d1": 1, "\u516c\u5171\u6c7d\u8f66": 1, "\u591a\u4e45": 1, "\u53d1\u8f66": 1, "\u4e00\u6b21": 1}, "Study": {"\u597d\u597d\u5b66\u4e60": 1, "\u5b78\u7fd2": 1, "": 1, "\u9019\u6a23": 1}, "spicy": {"\u8fa3": 2, "\u70b9\u513f": 1, "\u6ca1\u5173\u7cfb": 1, "\u8bf4\u5b9e\u8bdd": 1, "": 1, "\u5bf9": 1, "\u6709\u70b9": 1, "\u4e0d\u7fd2": 1, "\u6163": 1, "\u8f9b\u8fa3": 1}, "T": {"T": 1, "\u5379": 1, "\u592a\u5c0f": 1, "\u4ee5": 1, "\u4e03\u6298": 1, "\u9500\u552e": 1, "T\u6064": 1}, "smarter": {"\u60f3": 1, "\u66f4": 1, "\u806a\u660e": 1}, "cornered": {"\u7aae\u9f20": 1, "\u56d3\u72f8": 1}, "songs": {"\u8001\u6b4c": 2, "\u80fd\u591f": 1, "\u8bf4\u51fa": 1, "\u4e00\u9996": 1, "\u6b4c": 2, "\u6cd5\u8bed\u6b4c": 1, "\u6bcf\u9996\u6b4c": 2, "\u957f\u671f": 2, "\u5907\u53d7": 2, "\u6b22\u8fce": 2, "\u5531": 1}, "selected": {"\u7d66": 1, "\u9078": 1, "\u4ef6": 1, "\u8056\u8a95": 1}, "midnight": {"\u5df2\u7d93": 1, "\u5348\u591c": 2, "\u5728": 1, "\u4e4b\u540e": 1}, "translate": {"\u7528": 1, "\u6765": 1, "\u7ffb\u8bd1": 6, "\u9010\u5b57\u9010\u53e5": 1, "\u628a": 2, "\u6210": 1, "\u4e0d\u77e5": 1, "\u4e00": 1, "": 1, "\u540c": 1, "\u7684": 1}, "raw": {"\u4e0d\u5403": 1, "\u751f\u9c7c": 1, "\u751f\u9b5a": 1, "\u751f\u86cb": 1, "\u53ef\u80fd": 1, "\u5371\u96aa": 1}, "captivate": {"\u53bb": 1, "\u5438\u5f15": 1, "\u807d\u773e": 1}, "escape": {"\u9003\u8dd1": 3, "\u9003\u907f": 1, "\u627e\u5230": 1, "\u9003\u4e0d\u51fa": 1, "\u53bb": 1, "\u5bfb\u627e": 1, "\u4e00\u5207": 1, "\u9003\u751f": 1, "\u9014\u5f84": 1}, "Soccer": {"\u8db3\u7403": 2, "\u4f53\u80b2\u8fd0\u52a8": 1, "\u4e2d": 1, "\u53d7\u6b22\u8fce": 1}, "household": {"\u65bc": 1, "\u5bb6\u52d9": 1}, "wind": {"\u98a8": 2, "\u51b7\u98ce": 2, "\u522e": 1, "\u591a\u9ebc": 1, "\u554a": 1}, "indicates": {"\u6697\u793a": 1, "\u8457": 1, "\u5373": 1, "\u5c07": 1, "\u5230": 1, "\u66b4\u96e8": 1}, "spilling": {"Tom": 1, "\u6454": 1, "\u7ea2\u9152": 1}, "foxes": {"\u6709\u4e9b": 1, "\u72d0\u72f8": 1, "\u5c71\u4e0a": 1, "?": 1}, "criminal": {"\u90a3\u500b": 1, "\u72af\u4eba": 1, "\u88ab": 1, "\u80fd\u5920": 1, "\u7f6a\u72af": 1}, "village": {"\u6751\u91cc": 2, "\u5c0f\u6751": 1, "\u838a\u88e1": 1, "\u9ebb\u70e6": 1, "\u544a\u8bc9": 1, "\u90bb\u6751": 1, "\u600e\u4e48": 1, "\u8d70": 1, "\u6e14\u6751": 1, "\u5c31\u662f": 1, "\u6751\u5e84": 2}, "sizes": {"\u6bd4\u8f03": 1, "\u5c3a\u5bf8": 1, "?": 1}, "smaller": {"\u5c0f": 5, "\u8fd9\u4e2a": 1, "\u90a3\u4e2a": 1, "\u66f4": 1, "\u628a": 1, "\u5f04": 1, "\u4e00\u9ede": 1}, "spoon": {"\u7f3a": 2, "\u4e00\u628a": 3, "\u52fa\u5b50": 3}, "woke": {"\u5435\u9192": 1, "\u8d77\u5f97": 1, "\u4e3a\u4e86": 1, "\u4e94\u9ede": 1, "\u9192\u4f86": 1, "\u9192": 1, ":": 1, "\u5de6\u53f3": 1}, "attached": {"\u88ab": 1, "\u9644\u5728": 1, "\u4e0a": 2}, "thin": {"\u771f\u7626": 1, "": 3, "\u4e0a\u7a7a": 1, "\u7a00\u8584": 1, "\u592a\u8584": 1, ",": 1, "\u500b": 1, "\u7626": 1, "\u9577": 1}, "Lawyers": {"\u5f8b\u5e08": 1, "\u9a97\u5b50": 1}, "Crocodiles": {"\u9cc4\u9c7c": 1, "\u5c16\u5229": 1}, "talented": {"\u4e2a": 1, "\u6709": 2, "\u624d\u534e": 1, "\u624d\u80fd": 1}, "True": {"\u771f": 1, "\u4e0d": 1, "\u6703": 1, "\u8b8a": 1}, "mom": {"\u5abd\u5abd": 1, "\u6bd4": 1, "\u5988\u5988": 1, "\u4e0d\u592a\u597d": 1, "\u7121\u6cd5": 1, "\u770b\u8457": 1, "\u5e45\u756b": 1, "\u800c": 1, "\u60f3\u8d77": 1, "\u6bcd\u89aa": 1}, "worst": {"\u57ce\u88e1": 1, "\u6700": 5, "\u7cdf\u7cd5": 1, "\u91cc\u9762": 1, "\u5199": 1, "\u6700\u5dee": 1, "\u6c11\u4e3b": 1, "\u770b\u8fc7": 1, "\u5dee\u52b2": 1}, "chairperson": {"\u9078": 1, "\u70ba": 2, "\u4e3b\u5e2d": 2}, "Man": {"\u4eba\u7c7b": 2, "\u5f7c\u6b64": 2, "\u4ea4\u8c08": 2, "\u4eba": 4, "\u4f1a": 2, "\u80fd\u591f": 1}, "chairs": {"\u6905\u5b50": 3, "\u653e\u597d": 1, "\u5920": 1, "\u62ff\u5230": 1, "\u4e86\u4e0b": 1}, "gas": {"\u4e2a": 1, "\u52a0\u6cb9\u7ad9": 1, "\u4e00\u4e0b": 1, "\u7164\u6c14": 1, "\u5173": 1, "\uff01": 1, "\u74e6\u65af": 3, "\u8be5": 1, "\u7164\u6c14\u8d39": 1, "\u805e\u5230": 1}, "improving": {"\u6b63\u5728": 2, "\u9032\u6b65": 1}, "hugged": {"\u62e5\u62b1": 2, "\u4e86": 2, "\u62b1": 1}, "withered": {"\u82b1\u6735": 1, "\u67af\u840e": 1}, "sunrise": {"\u65e5\u51fa": 2, "\u5929\u4eae": 2, "\u5c31": 2, "\u5230": 1, "\u8fd9": 2, "\u770b": 1}, "roof": {"\u5c4b\u9876": 3, "\u4e0a": 2, "\u4ed6": 1, "\u8df3\u4e0b\u6765": 1}, "steam": {"\u6cb8\u817e": 1, "\u540e": 1, "\u53d8\u4e3a": 1, "\u84b8\u6c7d": 1}, "greenhouse": {"\u6eab\u5ba4": 2, "\u88e1": 1, "\u7a2e": 1, "\u690d": 1}, "Visitors": {"\u904a\u5ba2": 1, "\u5230": 1, "\u6b23\u8cde": 1, "\u963f\u723e": 1, "\u5351\u65af\u5c71": 1}, "appetite": {"\u80c3\u53e3": 1, "\u5f88": 3, "\u98df": 1, "\u617e": 1}, "adjust": {"\u9700\u8981": 1, "\u6765": 1, "\u9002\u5e94": 2, "\u9ed1\u6697": 1}, "Better": {"\u8fdf": 1, "\u505a": 1, "\u603b\u6bd4": 1, "\u505a\u597d": 1, "\u603b": 1, "\u4e0d\u5230": 1, "\u597d": 1, "\u4f60": 1, "\u4e00\u6b21": 1}, "dating": {"\u4ea4\u5f80": 1, "\u8ddf": 1, "\u4eba": 1, "\u7d04": 1, "\u6703": 1, "\u904e": 1}, "remain": {"\u60f3": 2, "\u9084\u662f": 1, "\u8981": 1}, "silent": {"\u4fdd\u6301\u6c89\u9ed8": 3, "\u5b89\u975c": 2, "\u65e0\u58f0\u7535\u5f71": 1, "": 1, "\u793e\u5340": 1}, "1941": {"\u4e8e": 1, "1941": 1, "\u7206\u53d1": 1}, "challenge": {"\u4f60\u5011": 1, "\u6311\u6230": 1, "\u8fd9": 1, "\u4e00\u4e2a": 1, "\u6311\u6218": 1}, "Fur": {"\u6bdb": 1, "\u76ae\u5927\u8863": 1, "\u6253\u6298": 1}, "propose": {"\u6253\u7b97": 1, "\u5411": 2, "\u6c42\u5a5a": 2}, "Drive": {"\u5b89\u5168": 1, "\u99d5\u99db": 2, "\u5f80\u524d": 1, "\u5f00": 1, "\u5f00\u8f66": 2, "\u70b9": 1}, "ongoing": {"\u8be5": 1, "\u6b63\u5728": 1, "\u8fdb\u884c": 1, "\u4e2d": 1}, "Fish": {"\u9b5a\u96e2": 1, "\u958b\u6c34": 1, "\u5c31": 1, "\u7121\u6cd5": 1, "\u751f\u5b58": 1, "\u9c7c": 1, "\u7ea2\u9152": 1, "\u76f8\u914d": 1, "\u9b5a": 3, "\u7d05\u9152": 1, "\u4e0d\u5408": 1}, "partner": {"\u662f": 1, "\u5925": 1, "\u4f34": 1}, "resigning": {"\u7121\u610f": 1, "\u8fad\u8077": 2}, "tablecloth": {"\u684c\u5e03": 1, "\u6ae5\u6ac3": 1, "\u88e1": 1}, "28th": {"\u65bc": 1, "1888": 1, "\u5e74": 1, "7": 1, "\u6708": 1, "28": 1, "\u65e5": 1}, "alarm": {"\u706b\u8b66": 1, "\u8b66\u62a5": 1, "\u54cd": 2, ",": 1, "\u5fc5\u9808": 1, "\u9b27": 1, "\u9418": 1, "\u95f9\u94c3": 1, "\u6240\u4ee5": 1, "\u6211": 1}, "included": {"\u5305\u62ec": 1, "\u65e9\u996d": 1}, "land": {"\u964d\u843d": 2, "": 1, "\u4ed6": 1, "\u5c31\u8981": 1}, "notice": {"\u6ce8\u610f": 5, "\u5230": 6, "\u5730\u65b9": 1, "\u71c8": 1, "\u8b8a": 1, "\u9aea": 1, "\u6839\u672c": 1}, "council": {"\u53bb": 1, "\u7ade\u9009": 1, "\u59d4\u5458\u4f1a": 1}, "upset": {"\u96be\u8fc7": 1, "\u4e0d\u5b89": 1, "\u4e0d": 1, "\u9ad8\u5174": 1}, "gazed": {"\u591c\u665a": 1, "\u671b\u8457": 2, "\u7f8e\u9e97": 1, "\u98a8\u666f": 1}, "Egypt": {"\u57c3\u53ca": 2, "\u8bf4": 1, "\u8bed\u8a00": 1}, "Smoking": {"\u62bd\u70df": 3, "\u5141\u8bb8": 1}, "applied": {"\u6f5b\u5fc3": 1, "\u7814\u7a76": 1, "\u4e13\u6ce8": 1, "\u5728": 1, "\u4e0a": 1, "\u6e6f\u59c6\u7533": 1, "\u8acb": 1}, "lined": {"\u6309\u7167": 1, "\u7ed9": 1, "\u6392\u961f": 1}, "height": {"\u8eab\u9ad8": 3, "\u4eec": 2, "\u9ad8": 1, "\u5e73\u5747": 2}, "dignified": {"\u770b": 1, "\u8d77\u4f86": 1, "\u5a01\u56b4": 1}, "dreams": {"\u795d": 1, "\u4f60\u597d": 1, "\u68a6": 1}, "equipment": {"\u9060\u96e2": 1, "\u96fb\u5668": 1, "\u8a2d\u5099": 1}, "polish": {"\u8981": 1, "\u64e6\u4eae": 1, "\u76ae\u978b": 1}, "gravy": {"\u60f3": 1, "\u4f86": 1, "\u4e9b": 1, "\u91ac\u6c41": 1}, "overseas": {"\u51fa\u570b": 1, "\u500b": 1, "\u570b\u969b": 1}, "detailed": {"\u8981": 1, "\u66f4\u591a": 1, "\u8a73\u7d30": 1, "\u8a0a\u606f": 1}, "cloth": {"\u7528": 1, "\u6fd5\u5e03": 1, "\u6e05\u6f54": 1}, "woken": {"\u89ba\u5f97": 1, "\u597d\u50cf": 1, "\u60e1": 1, "\u5922": 1, "\u4e2d": 1, "\u9a5a\u9192": 1, "\u53eb\u9192": 1}, "eighty": {"\u516b\u5341\u4e00": 2, "\u6b72": 3, "\u6d3b\u5230": 1, "\u516b\u5341": 1, "\u80af\u5b9a": 1, "\u8d85\u8fc7": 1, "80": 1, "\u5c81": 1}, "Agriculture": {"\u519c\u4e1a": 1, "\u9700\u8981": 1, "\u6d88\u8017": 1, "\u5927\u91cf": 1}, "protect": {"\u4fdd\u8b77": 2, "\u4fdd\u62a4": 3, "\u81ea\u5df1": 1, "\u4e00\u5207": 1}, "ourselves": {"\u81ea\u5df1": 2, "\u522b\u81ea": 1, "\u9a97\u81ea": 1, "\u73a9": 2, "\u958b\u5fc3": 2}, "endangered": {"\u7015": 1, "\u5371": 1, "\u7269\u79cd": 3, "\u4e00\u4e2a": 2, "\u6fd2\u4e34\u706d\u7edd": 1, "\u6fd2\u4e34": 1, "\u6d88\u5931": 1}, "Once": {"\u4e00": 1, "\u597d": 1, "": 1, "\u4ed6": 1, "\u6709\u65f6\u5019": 1, "\u540e\u9000": 1}, "Chopin": {"\u6703": 1, "\u5f48": 1, "\u856d\u90a6": 1}, "saved": {"\u7701": 2, "\u597d\u591a": 1, "\u6551": 3, "\u5c0f\u5973\u5b69": 2, "\u500b": 1, "\u547d": 1}, "plates": {"\u500b\u76e4\u5b50": 1, "\u8981": 1, "\u5341\u500b": 1, "\u76e4\u5b50": 1}, "visitor": {"\u8a2a\u5ba2": 1, "\u7ed9": 1, "\u5ba2\u4eba": 1}, "princess": {"\u68a6\u89c1": 1, "\u4e00\u4e2a": 1, "\u516c\u4e3b": 2}, "weep": {"\u6bcd\u4eb2": 1, "\u53ea\u662f": 1, "\u9ed8\u9ed8\u5730": 1, "\u54ed\u6ce3": 1}, "particularly": {"\u7279\u522b": 3, "\u9ad8\u5174": 1}, "ring": {"\u6253\u7535\u8bdd": 2, "\u62ff\u6389": 2, "\u5a5a\u6212": 2, "\u73af": 1}, "Politics": {"\u5c0d": 1, "\u653f\u6cbb": 1, "\u6c92\u6709": 1, "\u8208\u8da3": 1}, "inseparable": {"\u5b78\u751f": 1, "\u6642\u4ee3": 1, "\u5206\u4e0d\u958b": 1}, "although": {"\u5c3d\u7ba1": 1, "\u5929\u6c14": 1, ",": 1, "": 1, "\u6ca1\u6709": 1}, "overcoat": {"\u5374": 1, "\u812b\u6389": 1, "\u5927\u8863": 1}, "Android": {"\u6b63\u5728": 1, "\u5f00\u53d1": 1, "\u4e00\u4e2a": 1, "\u5b89\u5353": 1, "\u5e94\u7528": 1}, "mat": {"\u5730\u6bef": 1, "\u5728": 1}, "opposite": {"\u5f80": 1, "\u76f8\u53cd": 1, "\u65b9\u5411": 1}, "choices": {"\u9078\u9805": 1, "\u751a\u9ebc": 1, "\u9009\u62e9": 1}, "emotional": {"\u5c0d": 2, "\u4e00\u500b": 2, "\u4f86\u8aaa": 2, ",": 2, "": 3, "\u5316": 1, "\u591a\u6101\u5584\u611f": 1}, "flight": {"\u822a\u7a0b": 1, "\u4e2d\u746a\u9e97": 1, "\u5bf6\u5bf6": 1, "\u6c7d\u8eca": 1, "\u5ea7\u6905": 1, "\u98de\u884c": 1, "\u6109\u5feb": 1, "\uff01": 1}, "placed": {"\u628a": 2, "\u653e\u5728": 2, "\u4e66": 1, "\u4e66\u67b6\u4e0a": 1}, "bachelor": {"\u662f": 2, "\u5355\u8eab": 1, "\u90fd": 1, "\u5355\u8eab\u6c49": 1}, "faces": {"\u5c0d": 1, "\u90a3\u500b": 1, "\u9b3c": 1, "\u81c9": 1, "\u9762\u5411": 1}, "selfish": {"\u89c9\u5f97": 1, "\u81ea\u79c1": 2, "\u672c\u610f": 1, "\u786e\u5b9e": 1, "\u5979": 1}, "Ca": {"\u4e0d\u80fd": 3, "\u55ce": 4, "\u9760": 1, "\u6536\u5165": 1, "\u904e": 1, "\u6d3b": 1, "?": 2, "\u505a": 1, "\u4e0d\u6210": 1}, "Mexican": {"\u58a8\u897f\u54e5\u4eba": 1, "\u5f88\u597d": 1, "\u58a8\u897f\u54e5": 1}, "heavier": {"\u54ea\u500b": 1, "\u6bd4\u8f03": 1, "\u91cd": 1, "": 1, "\u9084": 1}, "tomb": {"\u5e7c\u5e74": 1, "\u6642\u5b78": 1, "\u6771\u897f": 1, ",": 1, "": 2, "\u4e00\u8f29\u5b50": 1, "\u4e0d": 1, "\u6703": 1, "\u6416\u7c43\u88e1\u5b78": 1, "\u5e36\u5230": 1, "\u58b3\u5893": 1}, "former": {"\u524d\u592b": 1}, "interrupt": {"\u4e0d\u8981": 2, "\u6253\u65ad": 1}, "diplomat": {"\u505a": 1, "\u4e00\u4e2a": 1, "\u5916\u4ea4\u5b98": 1}, "sleeps": {"\u7761": 1, "\u516b\u500b": 1, "\u767d\u5929": 1, "\u7761\u89c9": 1, "": 1}, "schools": {"\u5f53": 1, "\u53d1\u73b0": 1, "\u8fd8": 1, "\u5b66\u6821": 3, "": 1, "\u5979": 1, "\u8f6c\u6821": 1, "\u6362": 1}, "horizon": {"\u843d\u5230": 1, "\u5730\u5e73\u7dda": 1, "\u4e0b": 1}, "citizen": {"\u662f": 2, "\u516c\u6c11": 1}, "ruin": {"\u8ba4\u4e3a": 1, "\u7834\u574f": 1}, "Reporters": {"\u8bb0\u8005": 1, "\u6ca1\u6709": 1, "\u72b9\u8c6b": 1, "\u5730": 1, "\u5e72\u6d89": 1, "\u4eba\u4eec": 1, "\u79c1\u751f\u6d3b": 1}, "hesitate": {"\u53bb": 2, "\u7336\u8c6b": 1}, "buried": {"\u5728": 1, "\u88ab": 3, "\u57cb": 2, "\u5b89\u846c": 1, "\u5bb6\u9109": 1}, "insane": {"Tom": 1, "\u760b": 1, "\u8868\u73b0": 1, "\u5f97": 1, "\u75af": 1, "\u4e00\u6837": 1}, "grade": {"\u5538": 1, "\u5e7e": 1, "\u5e74": 1, "\u7d1a": 1, "\u82f1\u6587": 2, "\u6210\u7e3e": 3}, "tear": {"\u5c07": 1, "\u5169\u5929": 1, "\u5167": 1, "\u62c6\u9664": 1, "\u9019\u68df": 1, "\u820a": 1, "\u5efa\u7bc9\u7269": 1}, "coach": {"\u5e76": 1, "\u6210\u4e3a": 1, "\u4e00\u4e2a": 1, "\u6559\u7ec3": 2}, "crisis": {"\u5371\u96aa": 1, "\u6642\u5019": 1, "\u806f": 1, "\u7e6b": 1}, "Merry": {"\u8056\u8a95": 1, "\u5feb\u6a02": 1}, "God": {"\u4e0a\u5e1d": 4, "\u6240\u80fd": 1, "\u4e8b": 1}, "pickpockets": {"\u5c0f\u5fc3": 1, "\u6252\u624b": 2}, "indeed": {"\u60a3\u96e3": 1, "\u898b": 1, "\u771f\u60c5": 1}, "guilty": {"\u611f\u5230": 2, "\u5167\u759a": 1, "\u6ca1\u6709": 2, "\u7f6a": 1, "\u5bf9": 1, "\u6709\u7f6a": 1, "": 1, "\u59bb\u5b50": 1}, "Graham": {"\u683c\u96f7\u5384\u59c6": 2, "\u845b\u6797": 1, "\u4f5c\u5bb6": 2, "\u4e4b\u4e00": 1, "\u683c\u6797": 1}, "monkeys": {"\u7334\u5b50": 2, "\u52d5\u7269": 1, "\u5712\u88e1": 1}, "accomplished": {"\u5b8c\u6210": 2, "\u4f7f\u547d": 1}, "anonymous": {"\u4fdd\u6301": 1, "\u533f\u540d": 1, "\u8eab\u4efd": 1}, "Wires": {"\u96fb\u7dda": 1, "\u88ab": 1, "\u7528\u4f86": 1, "\u904b\u9001": 1, "\u96fb\u529b": 1}, "approval": {"\u60a8": 1, "\u540c\u610f": 1, "\u6211": 1, "\u7d66": 1, ",": 1}, "prove": {"\u53ea": 1, "\u5411": 1, "\u8bc1\u660e": 3, "\u505a\u5230": 1, "\u7ed9": 1}, "presence": {"\u8bf4": 2, "\u8fc7": 1, "\u65f6\u5019": 1, "\u4e0d\u8981": 1, "\u8fd9\u4ef6": 1}, "DJ": {"\u4e00\u4e2a": 2, "": 3, "\u559c\u7231": 1}, "astronaut": {"\u5c07": 1, "\u6210\u70ba": 1, "\u500b": 1, "\u5973\u6027": 1, "\u592a\u7a7a": 1}, "telephones": {"\u6240\u6709": 1, "\u96fb\u8a71": 1, "\u4e0d\u901a": 1}, "Approximately": {"\u7ea6": 1, "\u6709": 1, "\u4e09\u5341\u4e2a": 1, "\u5e74\u8f7b\u4eba": 1, "\u5230": 1}, "attended": {"\u4e86": 2, "\u8981\u662f": 1, "\u53c3\u52a0": 2, "\u9019\u5834": 1, "\u9019\u500b": 1, "\u51fa\u5e2d": 1}, "stood": {"\u7ad9\u8457": 1, "\u4e0a": 1, "\u7ad9": 4, "\u8d77\u6765": 1}, "Speak": {"\u8b1b": 2, "\u4e26": 1, "\u5927\u8072": 1, "\u5225\u4eba": 1, "\u8a71": 1}, "published": {"\u663e\u7136": 1, "\u51fa\u7248": 4, "\u6bcf\u5e74": 1, "\u5927\u91cf": 1, "\u65b0\u4e66": 1, "\u53d1\u8868": 1}, "real": {"\u771f\u5b9e": 2, "\u771f\u5be6": 1, "\u500b": 1, "\u771f\u6b63": 1, "\u662f": 2, "\u8ba4\u771f": 1, "\u771f\u662f": 1}, "aged": {"\u500b": 1, "\u4e2d\u5e74": 1, "\u80d6\u5973\u4eba": 1}, "toolkit": {"\u5bf9": 1, "\u5de5\u5177\u7bb1": 1, "\u91cc": 1, "\u4e00\u628a": 1, "\u6994\u5934": 1, "\u6765\u8bf4": 1, "": 1, "\u90fd": 1}, "Dinner": {"\u665a\u9910": 1, "\u5c07": 1, "\u5728": 1, "\u534a\u524d": 1, "\u958b\u98ef": 1}, "unsure": {"\u4e0d": 1, "\u786e\u5b9a": 1, "\u5230": 1, "\u54ea\u91cc": 1, "": 2}, "solution": {"\u60f3\u5230": 2, "\u4e00\u4e2a": 1, "\u89e3\u51b3\u529e\u6cd5": 2, "\u89e3\u51b3": 3, "\u65b9\u6cd5": 2, "\u786e\u4fe1": 1, "\u89e3\u6c7a": 1, "\u8fa6\u6cd5": 1}, "Otaru": {"\u4e00\u76f4": 1, "\u5c0f": 1, "\u6a3d": 1}, "tripod": {"\u4e09\u8173": 2, "\u67b6": 2, "\u88cf": 1}, "shelters": {"\u5efa\u7acb": 1, "\u907f\u96be\u6240": 1}, "campus": {"\u5728\u6821": 2, "\u5712\u88e1": 1, "\u5712": 1, "\u5ef3": 1, "\u78b0\u9762": 1}, "wasting": {"\u5728": 2, "\u4e0a\u9762": 1, "\u6d6a\u8d39\u65f6\u95f4": 1, "\u6d6a\u8cbb": 1}, "ASAP": {"\u5c3d\u5feb": 1}, "dozens": {"\u5e7e": 2, "\u5341\u672c": 2, "\u66f8\u7c4d": 1, "\u95dc\u65bc": 1}, "slowing": {"\u8eca\u5b50": 1, "\u6162\u4e0b": 1, "\u4f86": 1}, "pheasant": {"\u4e00": 1, "\u96bb": 1, "\u91ce": 1, "\u96de": 1}, "forgive": {"\u8bf7\u539f\u8c05": 1, "\u771f\u7684": 1, "\u539f\u8c05": 3, "\u53ef": 1, "\u539f\u8ad2": 2}, "raincoat": {"\u60a8": 1, "\u7a7f": 2, "\u4e00\u4ef6": 1, "\u96e8\u8863": 2, "\u9ec3\u8272": 1}, "alert": {"\u6211\u4f1a": 1, "\u8b66\u544a": 1, "\u771f\u662f": 1, "\u8b66\u60d5": 1}, "Millions": {"\u90a3\u5929": 1, "\u6709": 1, "\u6578\u767e\u842c": 1, "\u4eba": 1, "\u53d7": 1, "\u5f71\u97ff": 1}, "builds": {"\u90a3\u4e2a": 1, "\u521b\u5efa": 1, "\u73b0\u4ee3": 1}, "houses": {"\u623f\u5c4b": 4, "\u88ab": 4, "": 1, "\u4e09\u68df": 1, "\u71d2\u6bc0": 1}, "raised": {"\u8209\u8d77": 2, "\u63d0\u9ad8": 1, "\u55d3\u97f3": 1}, "armchair": {"\u5f35": 1, "\u8212\u9069": 1, "\u6276\u624b\u6905": 1}, "duty": {"\u7576": 1, "\u503c\u52e4": 1, "\u6642": 2, "\u62bd\u7159": 1, "\u4e00\u9593": 1, "\u514d\u7a05": 1, "\u5546\u5e97": 1, "\u9075\u5b88": 1, "\u7fa9\u52d9": 1, "\u90a3\u4e8b": 1, "\u8d23\u4efb": 1}, "foreign": {"\u4e00\u95e8": 1, "\u5916\u8bed": 3, "\u5916\u570b": 4, "\u4f60\u4eec": 1}, "attempts": {"\u5c1d\u8bd5": 1}, "liars": {"\u5f8b\u5e08": 1, "\u9a97\u5b50": 1}, "schedule": {"\u884c\u7a0b": 2, "\u5b89\u6392": 1, "\u51c6\u65f6": 1, "\u5f35": 1, "\u6642\u523b": 1, "\u8868\u55ce": 1, "\u9032\u5ea6": 1, "\u8f03": 1, "\u9810\u671f": 1, "\u6162": 1, "\u5206\u9418": 1}, "letting": {"\u96e8": 1, "\u53d8\u5c0f": 1}, "horror": {"\u60ca\u6050": 1, "\u5730": 1, "\u76ef": 1, "\u7740": 1, "\u6050\u6016": 1}, "Apart": {"\u9664\u4e86": 2, "": 1, "\u4ed6": 1, "\u4ec0\u4e48": 1}, "Happy": {"\u5feb": 1, "\u6a02": 1}, "punishing": {"\u60a8": 1, "\u4e3a\u4ec0\u4e48": 1, "\u60e9\u7f5a": 1, "\u70ba": 1, "\u61f2\u7f70": 1}, "experiences": {"\u8bb8\u591a": 1, "\u4e0d": 1, "\u6109\u5feb": 1, "\u7ecf\u5386": 1}, "actor": {"\u6210\u70ba": 1, "\u4e00\u540d": 1, "\u6f14\u54e1": 2, "\u4ece": 1, "\u6ca1\u542c\u8bf4\u8fc7": 1, "\u6f14\u5458": 2}, "grows": {"\u7238\u79cd": 1, "\u6c34\u7a3b": 1, "\u957f\u5927": 1, "\u4e86\u4f1a": 1, "\u6210\u4e3a": 1, "\u4e00\u540d": 1}, "suspects": {"\u61f7\u7591": 1, "\u8aaa": 1, "\u8b0a": 1}, "contract": {"\u522b": 1, "\u7528": 1, "\u7b7e\u5408\u540c": 1, "\u7b7e\u5b57": 1, "\u5bdf\u770b": 1, "\u8fd9": 1, "\u5408\u540c": 2, "\u7c3d\u7d04": 1, "\u6708\u5e95": 1, "\u5230\u671f": 1}, "Examine": {"\u8c03\u67e5": 1, "\u4e0b": 1, "\u8fd9\u4e2a": 1}, "tests": {"\u8fdb\u884c": 1, "\u6d4b\u8bd5": 1, "\u7d66": 1, "\u6e2c\u9a57": 1, "\u8a55\u5206": 1}, "ears": {"\u8033\u6735": 4, "\u6d17\u8033": 1, "\u606d": 1, "\u807d": 1, "\u6709\u5169": 1, "\u96bb": 1, "": 3}, "piloted": {"\u88ab": 1, "\u9886\u5165": 1}, "safely": {"\u5b89\u5168": 2, "\u5730": 2, "\u5e73\u5b89": 1, "\u62b5\u9054": 1}, "guide": {"\u64d4": 1, "\u4efb\u6211\u7684": 1, "\u56ae": 1, "\u5c0e": 1}, "enemy": {"\u6700\u5927": 2, "\u654c\u4eba": 3, "": 1, "\u6575\u4eba": 1}, "cargo": {"\u8d27\u8239": 1, "\u56db": 1}, "foolproof": {"\u6c92\u6709": 1, "\u9632\u50bb": 1, "\u5b89\u5168": 1, "\u7cfb\u7d71": 1}, "prevented": {"\u96e8": 1, "\u5927": 1, "\u5f97": 1, "\u8ba9": 1, "\u4e0d\u80fd": 2, "\u8d70": 1, "\u70ba": 1, "\u963b\u6b62": 1}, "reduce": {"\u5f97": 1, "\u8c03\u4f4e": 1, "\u964d\u4f4e": 1, "\u80fd\u6e90\u9700\u6c42": 1}, "severely": {"\u90a3\u4f4d": 1, "\u56b4\u53b2": 1, "\u65a5\u8cac": 1}, "poured": {"\u5f80": 1, "\u8eab\u4e0a": 1, "\u6f51": 1, "\u4e00\u76c6": 1, "\u51b7\u6c34": 1, "\u6d47": 1, "\u51c9\u6c34": 1, "\u4ee5": 1, "\u6e05\u9192\u8fc7\u6765": 1}, "smells": {"\u805e": 2, "\u8d77\u4f86": 2, "\u9999": 2, "\u5594": 1, "\u82b1\u95fb": 1, "\u8d77\u6765": 1, "\u5f88": 1}, "considering": {"\u8003\u8651": 2, "\u53bb": 1}, "lacks": {"\u5230": 1, "\u7f3a\u4e4f\u7ecf\u9a8c": 1, ",": 1, "\u505a": 1, "\u5f97": 1, "[": 1}, "cough": {"\u54b3\u55fd": 4, "": 2}, "journey": {"\u65c5\u9014\u6109\u5feb": 1, "\uff01": 1, "\u65c5\u884c": 2, "\u662f": 1, "\u600e\u4e48": 1, "\u74b0\u904a": 1}, "granted": {"\u7406\u6240\u5f53\u7136": 2, "\u5730": 3, "\u8ba4\u4e3a": 1, "\u7ed3\u5a5a\u5178\u793c": 1, "\u89c9\u5f97": 1, "\u7406\u6240": 1, "\u7576\u7136": 1, "\u8a8d\u70ba": 1, "\u5c65\u884c": 1, "\u8afe": 1, "\u8a00": 1}, "18": {"\u6709": 1, "18": 2, "\u6b72": 1, "\u5c81": 1, "\u65f6\u5019": 1, "\u6765\u5230": 1}, "completely": {"\u5b8c\u5168": 7, "\u8aaa\u5be6\u8a71": 1, "": 2, "\u8f38": 1, "\u5b8c\u5168\u540c\u610f": 1, "\u53d8\u9ed1": 1}, "art": {"\u5c0d": 1, "\u85dd\u8853": 5, "\u4e00\u9ede": 1, "\u4e0d\u611f": 1, "\u4e00\u5802": 1, "\u4e00\u4ef6": 1, "\u827a\u672f\u4f5c\u54c1": 1}, "eleven": {"\u5341\u4e00\u70b9": 2, "\u9084": 1, "\u6709": 1, "\u5c31": 1, "\u5341\u4e00": 5, "\u9ede": 5, "\u9418": 2, "\u5feb": 1, "11": 3, "\u70b9": 3, "": 1, "\u4eca\u665a": 1, "\u7d04": 1, "\u65f6": 1, "\u6765\u770b": 1}, "programs": {"\u7bc0\u76ee": 1, "\u5c0d": 1, "\u5152\u7ae5": 1, "\u4e0d\u826f": 1, "\u4e3a\u6570\u4e0d\u591a": 1, "\u7535\u89c6\u8282\u76ee": 1, "\u5173\u6ce8": 1}, "influence": {"\u5f71\u97ff": 1}, "lower": {"\u5f97": 1, "\u8c03\u4f4e": 1, "\u4fbf\u5b9c": 1, "\u9ede": 1}, "widely": {"\u76ee\u524d": 1, "\u5728\u4e16\u754c\u4e0a": 1, "\u4f7f\u7528": 1, "\u5ee3\u6cdb": 1}, "headache": {"\u5934\u75db": 4, "\u6b32\u88c2": 1, "\u982d": 2, "\u75bc": 2, "\u5f97": 1, "\u53b2\u5bb3": 1}, "believes": {"\u76f8\u4fe1": 6, "\u90fd": 1, "\u7121\u8f9c": 1}, "lunatic": {"\u8868\u73b0": 1, "\u50cf": 1, "\u4e2a": 1, "\u75af\u5b50": 1}, "reconsider": {"\u91cd\u65b0": 1, "\u8003\u616e": 1, "\u6b64\u4e8b": 1}, "talks": {"\u8aaa": 1, "\u8d77": 1, "\u8a71": 2, "\u4f86": 1, "\u597d\u50cf": 1, "\u4ec0\u9ebc": 1, "\u6709\u65f6": 1, "\u8bf4\u8bdd": 1, "\u4e00\u4f4d": 1, "\u8fd9\u573a": 2, "\u8c08\u8bdd": 1, "\u5c06\u8981": 1, "\u6301\u7eed": 1, "\u8b1b": 1, "\u6a23\u5b50": 1}, "aisle": {"\u7d66": 1, "\u9760": 1, "\u8d70\u9053": 1}, "envelope": {"\u6211": 1, "\u90a3\u5929": 1, "\u624d\u80fd": 1, "\u4fe1\u5c01": 4, "\u5199\u9519": 1}, "housework": {"\u65bc": 1, "\u5bb6\u52d9": 1}, "ghosts": {"\u9b3c": 4, "\u5b58\u5728": 1, "\u9b3c\u9b42": 2, "\u6709": 2, "\u5e7d\u7075": 2, "": 1}, "copy": {"\u59a5\u5584": 1, "\u4fdd\u7ba1": 1, "\u539f\u7248": 1, "\u62f7\u8c9d": 3, "\u9ebb\u7169": 1, "\u66ff": 1}, "twin": {"Tom": 1, "\u6709\u500b": 1, "\u96d9": 3, "\u80de\u80ce": 3, "\u4e00\u5c0d": 1}, "fastest": {"\u662f": 2, "\u6700\u5feb": 3, "\u4e58\u98de\u673a": 1}, "runner": {"\u8dd1\u8005": 1, "\u8dd1": 1, "\u5f97": 1, "\u4eba": 1, "\u90a3\u4e2a": 1, "\u8d5b\u8dd1": 1, "\u8fd0\u52a8\u5458": 1, "\u8dc3\u8fc7": 1}, "inevitable": {"\u76f8\u9047": 1, "\u662f": 1, "\u5fc5\u7136": 1}, "affection": {"\u6bcf\u4e2a": 1, "\u5bf9": 1, "\u611f\u60c5": 1, "\u8981": 1, "\u611b": 1}, "kilograms": {"\u80d6": 1, "\u4e24": 1, "\u516c\u65a4": 1}, "romantic": {"\u975e\u5e38": 1, "\u6d6a\u6f2b": 1}, "machinery": {"\u9019\u500b": 1, "\u6a5f\u5668": 1, "\u6709\u4ec0\u9ebc": 1, "\u5730\u65b9": 1, "\u4e0d": 1, "\u5c0d": 1, "\u52c1": 1}, "solving": {"\u89e3\u6c7a": 2, "\u4e0a": 1}, "PKO": {"PKO": 1, "\u662f": 1, "\u610f\u601d": 1}, "embarrassed": {"\u8a71": 1, "\u8b93": 1, "\u89ba": 1, "\u5f97": 3, "\u5f88": 2, "\u5c37\u5c2c": 2, "": 1, "\u5979": 1, "\u4e0d\u597d\u610f\u601d": 1, "\u53bb\u6c42": 1, "\u5e2e\u5fd9": 1}, "permitted": {"\u5141\u8a31": 1, "\u5438\u7159": 1}, "eggplant": {"\u559c\u6b61": 1, "\u8304\u5b50": 1}, "Lonely": {"\u5b64\u7368": 2, "\u4eba\u6703": 1, "": 2, "\u662f": 1, "\u56e0\u70ba": 1, "\u4ed6": 1}, "captured": {"\u88ab\u6355": 1, "\u4e86": 3, "\u6293\u4f4f": 1, "\u5438\u5f15": 1, "\u6293": 1, "\u6b63\u5728": 1, "\u90a3\u500b": 1}, "thoughtful": {"\u5468\u5230": 1, "\u500b": 1, "\u9ad4\u8cbc": 1}, "lazy": {"\u5f88": 3, "\u61d2": 3, "\u8fd9\u4e2a": 1, "\u7537\u5b69\u5b50": 1}, "picking": {"\u660e\u65e9": 1, "\u6765": 1, "\u63a5": 1, "\u5728": 1, "\u4e4b\u4e2d": 1}, "owned": {"\u5931\u53bb": 1, "\u64c1\u6709": 1}, "inappropriate": {"\u4e00\u90e8\u5206": 1, "Tom": 1, "\u4e3e\u6b62": 1, "\u4e0d": 1, "\u592a": 1, "\u5408\u9002": 1}, "dumb": {"\u50bb": 3}, "Imagination": {"\u60f3\u50cf\u529b": 1, "\u5f71\u54cd": 1, "\u7740": 1, "\u751f\u6d3b": 1, "\u5404\u4e2a\u65b9\u9762": 1}, "area": {"\u9019": 1, "\u5730\u5340": 1, "\u5f88": 1, "\u533a\u57df": 2, "\u77ad\u89e3": 1, "\u5730\u65b9": 1, "\u8fd9\u533a": 1}, "criticizing": {"\u603b\u662f": 1, "\u6279\u8bc4": 1}, "Close": {"\u95ed\u4e0a": 2, "\u65f6\u5019": 1, "\u628a\u95e8": 2, "\u5173\u4e0a": 2, "\u5173\u95e8": 1, "\u8acb\u95dc": 1, "\u4e0a\u9580": 1, "\u95ed": 1, "\u4e0a": 1, "\u4f60\u4eec": 1, "\u51fa\u53bb": 1}, "West": {"\u5927\u90e8\u5206": 1, "\u4f86": 1, "\u81ea": 1, "\u897f\u6d77\u5cb8": 1}, "salesman": {"\u7576": 1, "\u63a8\u92b7\u54e1": 1, "\u70ba": 1, "\u751f": 1, "\u8aa4": 1, "\u63a8": 1, "\u92b7\u54e1": 1}, "per": {"\u4e00\u500b": 2}, "tour": {"\u65c5\u8cbb": 1, "\u9322": 1, "?": 1, "\u60f3": 1, "\u53bb": 1, "\u65c5\u6e38": 1}, "bizarre": {"\u591a\u4e48": 1, "\u8352\u5510": 1}, "perhaps": {"\u904e": 1, "\u9019": 1, "": 1, "\u6211": 1}, "climbing": {"\u5728": 1, "\u6500\u5347": 1}, "finger": {"\u624b\u6307": 3}, "thorn": {"\u982d": 1, "\u4e00\u6839": 1, "\u523a": 1}, "From": {"\u5f9e": 2, "\u8d77": 1, "\u60a8": 1, "\u662f\u4ece": 1, "\u54ea\u4e2a": 1, "\u6bd5\u4e1a": 1, "\u5929\u8272": 1}, "Well": {"\u597d": 1, "\u5427": 1, "": 3, "\u8b93": 1, "\u6211\u5011": 1, "\u90a3\u4e48": 1, "\u505a\u5f97\u597d": 1, "\u958b\u59cb": 1, "\u591c\u665a": 1, "\u957f": 1, "\u90a3\u9ebc": 1, "\u4f60": 1}, "homeless": {"\u5f53": 1, "\u65e0\u5bb6\u53ef\u5f52": 1, "": 1, "\u5728": 1, "\u90a3": 1}, "Grammar": {"\u8bed\u6cd5": 1, "\u590d\u6742": 1}, "Wo": {"\u6703": 1, "\u6211\u5bb6": 1, "\u559d": 1, "\u70b9": 1, "\u4e0d\u8981": 1}, "pets": {"\u517b": 1, "\u5404\u79cd": 1, "\u5ba0\u7269": 1}, "fallen": {"\u7c73\u4ef7": 1, "\u4e0b\u8dcc": 1}, "Carelessness": {"\u7c97\u5fc3\u5927\u610f": 1, "\u53ef\u80fd": 1, "\u5c0e\u81f4": 1, "\u56b4\u91cd": 1}, "Hemingway": {"\u6d77\u660e\u5a01": 1, "\u5927\u72e9": 1, "\u7375": 1}, "Foreigners": {"\u5916\u56fd\u4eba": 1, "\u771f": 1, "\u6709\u610f\u601d": 1, "": 2}, "whoever": {"\u628a": 3, "\u4eba": 3}, "shaving": {"\u6b63\u5728": 1, "\u522e": 2, "\u9b0d": 2, "\u5b50": 2, "\u6642": 1, "\u5019": 1, "\u5f04": 1, "\u50b7": 1}, "bathroom": {"\u6d74\u5ba4": 1, "\u6d17\u624b": 2, "\u9593": 2, "\u885b\u751f\u9593": 1, "\u5f53\u65f6": 1, "\u536b\u751f\u95f4": 1, "\u5ec1\u6240": 2, "\u6e05\u7406": 1, "\u5ec1": 1, "\u6240\u5728": 1}, "darkness": {"\u9700\u8981": 1, "\u6765": 1, "\u9ed1\u6697": 1}, "procrastinating": {"\u505a\u4e8b": 1, "\u8be5": 1, "\u679c\u65ad": 1, "\u4e0d\u80fd": 1, "\u518d": 1, "\u62d6\u5ef6": 1}, "logical": {"\u5408": 1, "\u903b\u8f2f": 1, "\u653e": 1, "\u8655": 1, "\u9580\u53e3": 1, "\u7b26\u5408": 1, "\u903b\u8f91": 1}, "effects": {"\u836f": 1, "\u6ca1\u6709": 1, "\u526f\u4f5c\u7528": 1}, "warn": {"\u8b66\u544a": 1, "\u522b": 1, "\u90a3\u6837": 1}, "insisted": {"\u575a\u6301": 3, "\u8ba9": 1, "\u53bb": 1, "\u8ba4\u4e3a": 1}, "Itch": {"\u7528": 1, "\u66b1": 1, "\u7a31": 1, "Itch": 1}, "monthly": {"\u6bcf\u500b": 1, "\u6708": 1, "\u8cbb": 1, "\u9322": 1}, "stole": {"\u5077": 3, "\u4e86": 4}, "folders": {"\u4e22": 1, "\u4e00\u4e2a": 1, "\u6587\u4ef6\u5939": 1}, "organ": {"\u6f14\u594f": 1, "\u7ba1\u98ce\u7434": 1}, "bothering": {"\u70e6": 1, "\u6709": 1, "\u4e8b": 1, "\u8ba9": 1, "\u70e6\u5fc3": 1}, "polite": {"\u79ae\u8c8c": 2, "\u8a66\u8457": 1, "\u6709": 2, "\u90a3\u4e2a": 1, "\u4eba": 1, "": 2, "\u53c8": 1}, "pink": {"\u7b14\u8bb0\u672c": 1, "\u7c89\u8272": 1, "\u90a3\u500b": 1, "\u7c89": 1, "\u7d05\u8272": 1}, "cholesterol": {"\u80c6\u56fa\u9187": 1, "\u5f88": 1, "\u9ad8": 1}, "potato": {"\u6210\u70ba": 1, "\u6574\u5929": 1, "\u6ce1": 1, "\u6c99\u767c": 1, "\u770b": 1, "\u96fb\u8996": 1, "\u4eba": 1, "\u571f\u8c46": 1, "": 2, "\u4ee5\u81f3\u4e8e": 1}, "couch": {"\u5728": 2, "\u4e0a": 1, "\u957f\u6c99": 1, "\u53d1": 1, "\u5ba2\u5385": 1, "": 1, "\u8eba": 1}, "Optimists": {"\u6a02": 1, "\u89c0\u8005": 1, "\u707d\u798d": 1, "\u4e2d": 2, "\u770b\u5230": 1, ",": 1, "": 2, "\u5728": 1, "\u6a5f\u6703": 1}, "opportunities": {"\u6a5f\u6703": 2, "\u8005": 1, "\u76e1\u529b": 1, "\u5730": 1, "\u5229\u7528": 1}, "attempted": {"\u8a66\u5716": 2, "\u807d": 1}, "delivered": {"\u5b83\u4eec": 1, "\u4ec0\u4e48": 1, "\u65f6\u5019": 1, "\u88ab": 1, "\u9001\u5230": 1}, "revolution": {"\u9769\u547d": 2, "\u8fd9\u573a": 1, "\u5df2\u7ecf": 1, "\u5e26\u6765": 1, "\u6539\u53d8": 1}, "republic": {"\u4e4b": 1, "\u6210\u70ba": 1, "\u4e86": 1, "\u4e00\u500b": 1}, "powder": {"\u5e03\u6ee1": 1, "\u7c89\u672b": 1}, "murdered": {"\u88ab": 1, "\u8b00\u6bba": 1, "\u4e86": 1}, "minister": {"\u8a2d\u6cd5": 1, "\u7576\u4e0a": 1, "\u90e8\u9577": 1}, "warnings": {"\u8b66\u544a": 1, "\u88ab\u5ffd\u89c6": 1}, "definition": {"\u5f55\u50cf\u673a": 1, "\u62cd": 1, "\u9ad8\u6e05": 1}, "notes": {"\u4f5c\u7b46": 1, "\u8a18": 1, "\u81ea\u5df1": 1, "\u7b14\u8bb0": 2}, "rapid": {"\u88ab": 1, "\u5feb\u901f": 1, "\u8fdb\u6b65": 1}, "amazed": {"\u60ca\u5446": 2, "\u90a3\u4e2a": 1, "\u540e": 1, "\u8981\u662f": 1, "\u6240\u77e5": 1, "\u4e00\u5207": 1, "\u4f1a": 1, "\u611f\u5230": 1}, "pox": {"\u8fd9": 1, "\u6c34\u75d8": 1, "\u75c7\u72b6": 1}, "towards": {"\u65e5\u5b50": 1, "\u9019\u7a2e": 1, "\u5c0d\u5f85": 1, "\u5411": 1, "\u53bb": 1, "\u53d8": 1}, "attitude": {"\u7528": 2, "\u614b\u5ea6": 2, "\u6001\u5ea6": 3, "\u5bf9": 1}, "Long": {"\u597d\u4e45\u4e0d\u89c1": 2, "": 1, "\u4f60": 1, "\u597d\u4e45": 1, "\u4e0d\u898b": 1, "\u771f\u662f": 1, "\u554a": 1}, "showing": {"\u603b": 1, "\u4e0d\u5230": 1}, "uncomfortable": {"\u8fd9\u4e2a": 1, "\u5750": 1, "\u7740": 1, "\u4e0d": 2, "\u8212\u670d": 2, "\u771f\u662f": 1}, "strengthens": {"\u4f7f": 1, "\u817f\u90e8": 1, "\u5f3a\u5065": 1}, "clubs": {"\u60a8": 1, "\u96b6\u5c5e": 1, "\u54ea\u5bb6": 1, "\u4ff1\u4e50\u90e8": 1, "\u7684": 1}, "shaved": {"\u5243": 1, "\u817f\u6bdb": 1}, "impatient": {"\u6709\u4e9b": 2, "\u8fc7\u4e8e": 2, "\u6027\u6025": 2, "\u7f3a\u4e4f": 1, "\u8010\u5fc3": 1}, "Rabbits": {"\u5154\u5b50": 1, "\u957f": 1, "\u7740": 1, "\u957f\u957f\u7684": 1, "\u77ed\u77ed\u7684": 1, "\u5c3e\u5df4": 1}, "tent": {"\u642d": 1, "\u5e33": 1, "\u7bf7": 1, "\u82b1": 1, "\u534a": 1}, "fax": {"\u4f20\u771f": 1, "\u6536\u5230": 1, "\u50b3\u771f": 1}, "trunk": {"\u6811\u5e72": 1}, "obstinate": {"\u5e74\u7d00": 1, "\u8d8a": 2, "\u8b8a": 1, "\u5f97": 1, "\u9811\u56fa": 1, "\u4e2a": 1, "\u5014\u5f3a": 1}, "connection": {"\u7279\u6b8a": 1, "\u806f": 1, "\u7e6b": 1}, "themselves": {"\u81ea\u52a9": 2, "\u8005": 2, "\u5929\u52a9": 2, "\u6642": 1, "\u5e38\u81ea\u8a00": 1, "\u81ea\u8a9e": 1}, "criticized": {"\u8981\u662f": 1, "\u8bf4": 1, "\u9519\u8bdd": 1, "\u4eba": 1, "\u8bae\u8bba": 1, "\u6211": 1, "\u6240\u6709\u4eba": 1, "\u6279\u8bc4": 1}, "doubts": {"\u67d0\u79cd\u7a0b\u5ea6": 1, "\u4e0a": 1, "\u8fd8\u662f": 1, "\u7591\u95ee": 1, "\u6e6f\u59c6\u61f7": 1, "\u7591": 1}, "Since": {"": 2, "\u8fd9": 1, "\u5bf9": 1, "\u7531\u4e8e": 1, "\u6211": 1}, "deserves": {"\u503c\u5f97": 1, "\u88ab": 2, "\u7d66\u4e88": 1, "\u7b2c\u4e8c\u6b21": 1}, "breathe": {"\u547c\u5438": 1, "\u4e00\u4e0b": 1, "\u65b0\u9bae": 1, "\u6df1\u547c\u5438": 1, "\u6709\u76ca\u5065\u5eb7": 1}, "South": {"\u5357\u7f8e\u6d32": 1}, "knit": {"\u7de8\u7e54": 1, "\u7ed9": 1, "\u7ec7": 1, "\u4ef6": 1}, "Call": {"\uff01": 1, "\u7ed9": 6, "\u6253\u7535\u8bdd": 7, "\u8054\u7cfb": 2, "\u6253": 1, "\u96fb\u8a71": 1, "\u4f86": 1}, "band": {"\u5f53": 1, "\u8d77\u6b65": 1, "\u65f6": 1, "\u6211\u4eec": 1, "\u7684": 1, "\u5c0f": 1, "\u4e00\u500b": 1, "\u6a02\u5718": 1, "\u88e1": 1, "\u6f14\u594f": 1}, "cities": {"\u627e": 1, "\u59d0\u59b9": 1, "\u57ce\u5e02": 3, "\u5927\u57ce\u5e02": 1, "\u4e4b\u4e00": 1}, "hire": {"\u5c0f": 1, "\u8981": 1, "\u96c7\u4f63": 1, "Tom": 1, "\u4e00\u53e3": 1, "\u6211": 1, "\u8acb": 1, "\u70ba": 1, "\u96c7": 1}, "answering": {"\u8981": 1, "\u63a5": 1, "\u96fb\u8a71": 1}, "express": {"\u8868\u9054": 3, "\u5df2\u7ecf": 1, "\u65e0\u6cd5": 1, "\u8bed\u8a00\u8868\u8fbe": 1, "\u89ba": 1, "\u5f97": 1, "\u96e3\u7528\u8a00\u8a9e": 1}, "thanks": {"\u8b1d\u610f": 1, "\u8fd8\u8981": 1, "\u4e0d\u4e86": 1, "": 2, "\u60f3": 1, "\u518d\u6765\u70b9": 1, "\u4e0d": 1, ",": 1}, "rolls": {"\u6625\u5377": 2}, "software": {"\u8edf\u9ad4": 1}, "breathed": {"\u8001\u4eba": 1, "\u54bd\u4e0b": 1, "\u6700\u540e": 1, "\u4e00\u53e3\u6c14": 1}, "Sendai": {"\u4eca\u5e74": 1, "\u4ed9\u53f0": 2, "\u5317\u65b9": 1}, "calm": {"\u5be7\u975c": 1, "\u4fdd\u6301": 1, "\u51b7\u975c": 1, "\u5426\u6975": 1, "\u6cf0": 1, "\u51b7\u9759\u4e0b\u6765": 1, "\u51b7\u9759": 1}, "independence": {"\u65bc": 1, "1947": 1, "\u5e74": 1, "\u812b\u96e2": 1, "\u7372\u5f97": 1, "\u7368\u7acb": 1}, "Britain": {"\u82f1\u570b": 3, "\u5df2\u7ecf": 1, "\u82f1\u56fd": 1}, "intrude": {"\u4fb5\u72af": 1, "\u9690\u79c1": 1}, "disguised": {"\u628a": 1, "\u5316\u88dd": 1, "\u6210": 2, "\u4e00\u500b": 1, "\u507d\u88dd": 1, "\u9003\u8dd1": 1}, "farm": {"\u6574\u5929": 1, "\u8fb2\u5834": 4, "\u519c\u573a": 2, "\u4e00\u500b": 1}, "divided": {"\u5e73\u5206": 1, "\u9019\u7b46": 1}, "farms": {"\u4ece": 1, "\u6ca1\u6709": 1, "\u519c\u573a": 1, "\u90fd": 1}, "fainted": {"": 1, "\u5c31": 1, "\u6655": 1}, "gritted": {"\u54ac\u7d27\u7259\u5173": 1}, "plant": {"\u90a3\u4e2a": 1, "\u5de5\u5382": 1, "\u5f00\u9664": 1}, "basket": {"\u628a": 1, "\u7c43\u5b50": 2, "\u653e\u5728": 1, "\u4e00\u500b": 1}, "rainfall": {"\u96e8\u52e2": 1, "\u5f88\u5927": 1}, "changing": {"\u6bcf\u4e00\u5206": 1, "\u5728": 3, "\u6539\u8b8a": 1, "\u6709\u4e9b": 1, "\u6771\u897f": 1, "\u8b8a\u5316": 1, "\u4e00\u5207\u90fd\u5728": 1, "\u53d8": 2, "\u7121\u8ad6": 1, "\u5982\u4f55": 1, "\u6211": 1, "\u4e0d": 1}, "victim": {"\u53d7\u5bb3\u8005": 1, "\u88e1": 1, "\u6b7b\u53bb": 1}, "closets": {"\u8863\u6ae5": 1}, "compact": {"\u9019\u500b": 1, "\u5149\u789f": 1}, "exception": {"\u4f8b\u5916": 2, "\u7834\u4f8b": 1, "\u4e00\u4e2a": 1}, "relies": {"\u7ecf\u6d4e": 1, "\u4f9d\u9760": 1, "\u592a\u592a": 1}, "brought": {"\u5e36\u4f86": 1, "\u7ed9": 2, "\u5e26": 2, "\u64ab\u990a": 3, "\u9577\u5927": 3, "\u5e6b": 1, "Mary": 1, "\u628a": 1, "\u5e36\u5230": 2, "\u88ab": 3, "\u5e36": 2, "\u8eca\u7ad9": 1, "\u957f\u5927": 1}, "More": {"\u5f88\u591a": 1, "\u6642\u5019": 1, "\u89aa\u81ea": 1, "\u8d85\u904e": 1, "\u4e8c\u5341": 1, "\u500b": 1}, "cooperation": {"\u611f\u8b1d": 2, "\u60a8": 2, "\u5408\u4f5c": 3, "\u4f60\u5011": 1}, "Bell": {"\u4efb\u4f55\u4eba": 1, "\u8d1d\u5c14": 2, "\u7535\u8bdd": 2, "\u7531": 2}, "shadow": {"\u5f71\u5b50": 1, "\u4e2a": 1, "\u80c6\u5c0f\u9b3c": 1}, "racial": {"\u79cd\u65cf\u6b67\u89c6": 1}, "loaf": {"\u804a\u52dd\u65bc\u7121": 1, "\u3001": 1, "\u6c92\u6709": 1, "\u500b": 1, "\u9eb5": 1, "\u5305": 1, "\u7e3d": 1, "\u6c92": 1}, "Shortly": {"\u767c\u751f": 1, "\u4e0d\u4e45": 1, "": 1}, "Real": {"\u771f\u6b63": 1, "\u53cb\u8c0a": 1, "\u91d1\u94b1": 1}, "valuable": {"\u6709": 1, "\u4ef7\u503c": 2, "\u548c\u739b\u4e3d": 1, "\u4e1c\u897f": 1}, "weapon": {"\u6b66\u5668": 2, "\u653e\u4e0b": 1}, "Depression": {"\u5341\u4e5d\u4e16\u7eaa": 1, "\u4e09\u5341": 1, "\u5e74\u4ee3": 1, "\u5927": 1, "\u8427\u6761": 1, "\u65f6\u671f": 1, "": 1, "\u5728": 1}, "crash": {"\u80a1\u5e02": 1, "\u4e0a\u500b": 1, "\u9019": 1, "\u589c\u6bc0": 1, "\u6839\u636e": 1, "\u7535\u89c6\u65b0\u95fb": 1, "\u5728": 1, "\u8eca\u798d": 1}, "statement": {"\u627f\u8a8d": 1, "\u8072\u660e": 1, "\u771f\u5be6": 1}, "access": {"\u5141\u8a31": 1, "\u8a2a\u554f": 1, "\u7d00\u9304": 1}, "records": {"\u5c0d": 2, "\u53d6\u4ee3": 1, "\u80f6\u6728": 1, "\u5531\u7247": 2}, "torn": {"\u9019\u68df": 1, "\u8001\u623f\u5b50": 1, "\u62c6\u9664": 2, "": 2, "\u4ee5": 1}, "supermarket": {"\u7a7a\u9593": 1, "\u7d66": 1, "\u8d85\u5e02": 6, "\u5076\u9047": 1, "\u8d85\u7d1a": 2, "\u5e02\u5834": 2, "\u627e": 1, "\u5927\u578b\u8d85\u5e02": 1, "\u59b9\u59b9": 1, "\u5728": 1}, "plastered": {"\u9189": 1, "\u4e86": 1}, "tents": {"\u4f1a": 1, "\u5e10\u7bf7": 1, "\u7ed9": 1}, "provide": {"\u63d0\u4f9b": 3, "\u4e00\u4e2a": 1, "\u517b\u6d3b": 1, "\u628a": 1, "\u6709\u7528": 1, "\u7ed9": 1}, "Cuff": {"\u628a": 1, "\u94d0": 1, "\u4e0a": 1}, "vowed": {"\u767c\u8a93": 1, "\u518d\u4e5f": 1, "\u4e0d": 1, "\u8ddf": 1, "\u8aaa\u8a71": 1}, "affairs": {"\u4e8b": 2, "\u5916\u570b\u4e8b\u52d9": 1, "\u4ed6": 1}, "snowed": {"\u96ea": 2, "\u5468": 1, "\u4e00\u4e0b": 1, "\u4e0b": 1}, "total": {"\u4e00\u5171": 1, "\u591a\u5c11": 1, "\u7684\u8bdd": 1, "\u6839\u672c": 1, "\u6beb\u65e0\u610f\u4e49": 1}, "insect": {"\u8fd9\u79cd": 1, "\u6606\u866b": 1, "\u4e2d": 1, "\u53eb": 1}, "giving": {"\u8ddf": 1, "\u904e\u4e0d\u53bb": 1, "\u7d66": 2, "\u653e\u5f03": 1, "\u8003\u8651": 2, "\u5468\u5168": 1, "\u5168\u795e\u8d2f\u6ce8": 1, "\u8209\u884c": 1, "\u5c31": 1}, "Dark": {"\u4e4c\u4e91": 1, "\u5f81\u5146": 1}, "established": {"\u8fd9": 1, "\u6240": 1, "\u5efa\u4e8e": 1, "1650": 1, "\u5e74": 1}, "escaped": {"\u5dee\u9ede": 1, "\u4e0a": 1, "\u6c92\u6709": 1, "\u4eba\u751f": 1, "\u9084": 1}, "truck": {"\u5361\u8eca": 4, "\u5361\u8f66": 2, "\u8ca8\u8eca": 1, "": 1, "\u4e00\u8f1b": 1, "\u4e00\u6761": 1, "\u78be\u8fc7": 1}, "closes": {"\u77e5\u9053": 1, "\u4ec0\u4e48": 1, "\u5173\u95e8": 1}, "pendant": {"\u9019\u500b": 1, "\u589c\u98fe": 1}, "birth": {"\u751f\u4e0b": 3, "\u4e00\u500b": 3, "\u751f": 2, "\u7537": 1, "\u5b30": 1, "\u5973\u5152": 1, "\u7684": 1}, "twins": {"\u96d9": 2, "\u80de\u80ce": 2, "\u5206\u51fa": 1, "\u5c0d": 1, "\u4e2d": 1, "\u8ab0": 2, "\u662f": 1}, "issue": {"\u5c0d": 2, "\u9019\u500b": 1, "\u554f\u984c": 2, "\u6709": 1, "\u751a\u9ebc": 1, "\u611f\u53d7": 1, "\u770b\u6cd5": 1}, "sock": {"\u889c\u5b50": 3, "\u4e00\u4e2a": 1, "\u5440": 1, "\u4e2a": 1, "\u6709\u4e2a": 1}, "serving": {"\u6b63\u5728": 1, "\u670d": 1, "\u65e0\u671f\u5f92\u5211": 1}, "handkerchief": {"\u8bf7\u95ee": 1, "\u624b\u5e15": 1, "\u94b1": 1}, "falls": {"\u661f\u671f\u65e5": 1}, "pay": {"\u4ed8": 7, "\u4ed8\u94b1": 2, "\u60a8": 1, "\u94b1": 2, "\u6ca1\u4ed8": 1, "\u9322": 3, "\u916c\u52b3": 1, "\u4f86\u4ed8": 1, "\u6c92": 1, "\u7d66\u5920": 1}, "sport": {"\u904b\u52d5": 1}, "sounded": {"\u706b\u8b66": 1, "\u8b66\u62a5": 1, "\u54cd": 1}, "bullied": {"\u88ab": 2, "\u6b3a\u8d1f": 1, "\u8001": 1, "\u662f": 1, "\u4eba": 1, "\u6b3a\u8ca0": 1}, "necessarily": {"\u8fd9\u9879": 1, "\u672a\u5fc5": 1}, "zipper": {"\u62c9": 1, "\u934a": 1, "\u5361\u5361": 1}, "Tsunamis": {"\u6d77\u562f\u5e2d": 1, "\u7a3b\u7530": 1, "": 1, "\u6df9\u6c92": 1}, "swept": {"\u6372": 2, "\u4e00\u80a1": 1, "\u5bd2\u6d41": 1, "\u4fb5\u88ad": 1}, "towns": {"": 1, "\u4e86": 1}, "lad": {"\u500b": 1, "\u597d\u4eba": 1}, "Chapter": {"\u7b2c\u4e09\u7ae0": 1, "\u8ba8\u8bba": 1}, "Louvre": {"\u57c3\u83f2\u5c14\u94c1\u5854": 1, "\u548c": 1, "\u5362\u6d6e\u5bab": 1, "\u540c": 1, "\u4e00\u5ea7": 1}, "unusual": {"\u5c0b\u5e38": 1, "\u7570\u5e38": 1, "\u90a3": 1, "\u5176": 1, "\u5c11\u6709": 1, "\u5f62\u72b6": 1, "\u88ab": 1, "\u7a81\u663e": 1, "\u51fa\u6765": 1}, "renewed": {"\u4e86": 1, "\u65b0": 1}, "despised": {"\u9023": 1, "\u50d5\u4eba": 1, "\u90fd": 1, "\u9119\u8996": 1, "\u770b\u4e0d\u8d77": 1}, "surrounding": {"\u5468\u570d": 1, "\u5730\u5340": 1}, "responsibility": {"\u5b8c\u5168": 1, "\u4e0d\u8d1f": 1, "\u8d23\u4efb": 2, "\u60a8": 1, "\u4e49\u52a1": 1}, "deny": {"\u5426\u8a8d": 1, "\u65e0\u6cd5": 1, "\u5426\u8ba4": 2, "": 1, "\u4e8b\u60c5": 1}, "resourceful": {"\u9b3c\u70b9\u5b50": 1, "\u771f\u591a": 1}, "reviews": {"\u5f71\u7247": 1, "\u5f97\u5230": 1, "\u8bc4\u4ef7": 1, "\u8912\u8d2c\u4e0d\u4e00": 1}, "boil": {"\u71d2\u958b": 1, "\u70ba": 1, "\u716e": 1, "\u99ac\u9234\u85af": 1}, "Flowers": {"\u9bae\u82b1\u76db": 1, "\u958b": 1}, "pours": {"\u798d": 1, "\u4e0d\u55ae": 1, "\u884c": 1, "\u4e0d\u4e0b\u96e8": 1, "\u5247": 1, "\u77e3": 1, "": 2, "\u4e00\u5b9a": 1, "\u662f": 1}, "pays": {"\u9019\u500b": 1, "\u6709": 1, "\u65e5": 1, "\u5713": 1, "\u5831\u916c": 1, "\u62a5\u916c": 1, "\u9ad8": 1}, "visits": {"\u6bcf\u6b21": 1, "\u9813\u90fd": 1, "\u770b": 1, "\u5169\u5929": 1, "\u63a2\u8a2a": 1, "\u53bb": 1}, "blowing": {"\u98ce": 1, "\u5317\u8fb9": 2, "\u6765": 1, "\u4e00\u9635": 1, "\u5439\u6765": 1}, "philosophy": {"\u91cc\u5b66": 1, "\u662f": 1, "\u54f2\u5b66": 1}, "pianist": {"\u92fc": 2, "\u7434\u5bb6": 2, "\u4e00\u4e2a": 1, "\u94a2\u7434\u5bb6": 1}, "match": {"\u4e00\u5834": 1, "\u6bd4\u8cfd": 2, "\u968a": 1, "\u8f38": 1, "\u5834": 1}, "policemen": {"\u8b66\u5bdf": 1, "\u4e86\u7aca": 1}, "pin": {"\u5b89\u975c": 1, "\u9023": 1, "\u91dd": 1, "\u5730\u4e0a": 1, "\u8072\u97f3": 1, "\u90fd": 1, "\u807d": 1, "\u5f97\u5230": 1}, "email": {"\u63a5\u7535\u8bdd": 1, "\u7ed9": 1, "\u53d1": 1, "\u4e86": 1, "\u90ae\u7bb1\u5730\u5740": 1, "\u5427": 1}, "draw": {"\u7ed9": 1, "\u753b": 5, "\u5f20": 1, "\u5e45\u753b": 1, "\u62bd\u7b7e": 1, "\u8d70": 1}, "chief": {"\u4e3b\u7ba1": 1, "\u9019\u4f4d": 1, "\u884c\u653f": 1, "\u9577": 1, "\u5b98": 1}, "stream": {"\u6cb3\u8fb9": 1, "\u6eaa\u6d41": 1, "\u65c1\u908a": 1}, "fooled": {"\u611a\u5f04": 1, "\u4e86": 2, "\u4e0d\u4f1a": 1, "\u4e0a\u5f53": 1, "\u5225": 1, "\u88ab": 1, "\u9a19": 1}, "consequences": {"\u51c6\u5907": 1, "\u627f\u62c5": 1, "\u540e\u679c": 1}, "classes": {"\u5fc5\u9808": 1, "\u4e0a": 1, "\u5169\u5802": 1, "\u7406\u5316": 1, "\u8ab2": 2, "\u5fc5\u987b": 1, "\u65e9\u4e0a": 1, "\u8bfe": 1, "\u56db\u5802": 1}, "Clint": {"\u514b\u6797\u4f0a": 1, "\u65af\u5a01\u7279": 1, "\u7576": 1, "\u5361\u6885\u723e\u5e02": 1}, "mayor": {"\u5e02\u9577": 2, "\u5c07": 1, "\u7af6\u9078": 1, "\u7ade\u9009": 1, "\u5e02\u957f": 2, "\u88ab\u9009\u4e3a": 1}, "Colorado": {"\u79d1\u7f85\u62c9\u591a\u5dde": 1, "\u4e00\u500b": 1}, "recorder": {"\u8fd9\u4e2a": 1, "\u5f55\u97f3\u673a": 1, "\u4e0d\u662f": 1}, "tape": {"\u78c1\u5e26": 2}, "silly": {"\u522b": 1, "\u72af\u50bb": 1, "\u6211": 1, "\u5fc5\u987b": 1, "\u4e00\u4e2a": 1, "\u8822": 1}, "loses": {"\u767c\u813e\u6c23": 1, "\u8f38": 1, "\u8fd9\u4e2a": 1, "\u6162": 1, "\u4e09\u5206\u949f": 1}, "Stick": {"\u628a": 2, "\u53e6": 1, "\u8cbc": 2}, "brush": {"\u4ee5\u4fbf": 1, "\u63d0\u5347": 1, "\u6eab\u7fd2": 1, "\u4e00\u4e0b": 1, "\u5237\u7259": 2, "\u5237": 2, "\u7259": 2, "\u6d17\u7259": 1}, "Fortune": {"\u597d\u8fd0": 1, "\u5411": 1, "\u9732\u51fa": 1, "\u7b11\u5bb9": 1}, "staff": {"\u5168\u4f53": 1, "\u4eba\u5458": 1, "\u901a\u5bb5\u8fbe\u65e6": 1, "\u5730": 1}, "blushed": {"\u5c31": 1, "\u81c9": 1, "\u7d05": 1, "\u4e86": 2, "\u8138\u7ea2": 1}, "Cancer": {"\u7b2c\u4e00\u9636\u6bb5": 1, "\u88ab": 1, "\u7684\u8bdd": 1, "\u6cbb\u6108": 1}, "dawn": {"\u9ece\u660e\u524d": 1, "\u706b\u52bf": 1, "\u9ece\u660e": 2, "\u6642": 1}, "timing": {"\u597d\u65f6\u673a": 1}, "thirds": {"\u4e8c\u5206": 1, "\u4e4b\u4e09": 1, "\u96c7\u5458": 1}, "engineers": {"\u5de5\u7a0b\u5e08": 2}, "pharmacy": {"\u6700\u8fd1": 1, "\u85e5\u623f": 1, "?": 1}, "Seine": {"\u585e\u7eb3\u6cb3": 1, "\u7a7f\u8d8a": 1}, "mammal": {"\u4e00\u7a2e": 1, "\u54fa\u4e73": 2, "\u52d5\u7269": 2}, "Thai": {"\u6cf0\u56fd\u83dc": 1, "\u600e\u4e48\u6837": 1}, "low": {"\u5f88": 2, "\u4f4e": 7, "\u4f4e\u8072": 1, "\u5730": 1}, "bathtub": {"\u6d74\u7f38": 3, "\u88e1": 3, "\u628a": 1}, "motel": {"\u6c7d\u8f66\u65c5\u9986": 1, "\u63a5\u5f85": 1, "\u591a\u8fbe": 1, "400": 1, "\u540d": 1}, "guests": {"\u5ba2\u4eba": 3, "\u4e3a": 1, "\u81ea\u5df1": 1, "\u5bf9": 1, "\u7c97\u9c81\u65e0\u793c": 1, "\u800c": 1}, "photogenic": {"\u5f88": 2, "\u4e0a": 2, "\u955c": 2}, "tongue": {"\u6bcd\u8bed": 2, "\u61c9\u8a72": 1, "\u5b78\u8457": 1, "\u9589\u4e0a": 1, "\u5634": 1}, "relatives": {"\u4eb2\u621a": 2, "\u597d\u53cb": 1, "\u80dc\u8fc7": 1, "\u5341\u4e2a": 1, "\u7121": 1, "\u89aa\u621a": 1}, "girls": {"\u8a8d\u8b58": 1, "\u5973\u5b69": 5, "": 1, "\u9019\u4e9b": 1, "\u7576\u4e2d": 1, "\u4f86": 1, "\u4f1a": 1, "\u500b\u5b50": 1, "\u719f\u7a14": 1}, "Food": {"\u98df\u7269": 1, "\u541e\u54bd": 1, "\u524d\u8981": 1, "\u7ecf\u8fc7": 1, "\u5480\u56bc": 1}, "secrets": {"\u6c92\u6709": 1, "\u79d8\u5bc6": 6, "\u5b88\u4f4f": 1, "\u5c0d": 1, "\u6beb\u7121\u96b1\u779e": 1}, "employee": {"\u4e0d\u662f": 2, "\u9019\u9593": 2, "\u6b63\u5f0f": 2, "\u8077\u54e1": 2}, "rushed": {"\u6025\u5fd9": 1, "\u5e36\u8457": 1, "\u597d\u6d88\u606f": 1, "\u8dd1": 1}, "pocket": {"\u4ed6\u7684\u9205\u5319": 1, "\u53e3\u888b": 3, "\u91cc": 2, "\u6478": 1, "\u7740": 1, "\u627e": 1, "\u8fd9": 1, "\u6709\u4e2a": 1}, "hiccups": {"\u6253\u55dd": 1, "\u4e86": 1}, "property": {"\u8ca1\u7522": 1, "\u628a": 1, "\u8d22\u4ea7": 1, "\u4f20\u7ed9": 1, "\u8ca1": 1, "\u7523": 1}, "Lansing": {"\u862d\u8f9b": 1, "\u5bc6\u897f\u6839\u5dde": 1, "\u9996\u5e9c": 1}, "updates": {"\u63d0\u4f9b": 1, "\u65b0": 1, "\u6d88\u606f": 1}, "zigzagged": {"\u873f\u8712": 1, "\u722c\u4e0a": 1, "\u9661\u5761": 1}, "path": {"\u5c0f\u8def": 3, "\u4e00\u689d": 1, "": 2, "\u800c\u662f": 1, "\u6a39\u6797": 1}, "strain": {"\u88ab": 1, "\u62c9\u65b7": 1, "\u538b\u529b": 1, "\u7279\u522b": 1, "\u5927": 1}, "heartedly": {"\u5168\u5fc3\u5168\u610f": 1, "\u5730": 1, "\u652f\u6301": 1}, "pork": {"\u4e0d\u5403": 1, "\u732a\u8089": 1}, "Monopoly": {"\u5927\u5bcc\u7fc1": 1, "\u4e00\u500b": 1, "\u5bb6\u5ead": 1, "\u71b1\u9580": 1, "\u904a\u6232": 1}, "Zealand": {"\u7d10\u897f\u862d": 1, "\u6765\u81ea": 1, "": 1, "\u739b\u4e3d": 1, "\u65b0\u897f\u5170": 1}, "wide": {"\u5a5a\u524d": 1, "\u5f35\u958b\u773c": 1, "": 2, "\u5a5a": 1}, "90": {"\u6d3b": 1, "\u5230": 1, "\u4e5d\u5341": 1, "\u6b72": 1}, "clocks": {"\u91cc": 1, "\u65f6\u949f": 1}, "Deal": {"\u767c\u724c": 1, "\u7d66": 1}, "conditions": {"\u5199\u4fe1": 1, "\u544a\u8bc9": 1, "\u4f60\u4eec": 1, "\u60c5\u51b5": 1}, "sandwich": {"\u8981": 1, "\u4ec0\u9ebc\u6a23": 1, "\u4e09\u660e\u6cbb": 2, "Tom": 1}, "contest": {"\u4e1c\u897f": 1, "\u6bd4\u8d5b": 1, "\u91cc": 1, "\u4e00\u7b49\u5956": 1}, "kid": {"\u5b69\u5b50": 3, "\u806a\u660e": 2, "\u5225": 1, "\u958b": 1, "\u73a9\u7b11": 1}, "doubling": {"\u6b63\u5728": 1, "\u628a": 1, "\u4ef7\u683c": 1, "\u6da8": 1, "\u4e00\u500d": 1}, "trade": {"\u7ecf\u8425": 1, "\u5916\u8d38": 1, "\u591a\u5e74": 1}, "Declarations": {"\u53d8\u91cf": 1, "\u58f0\u660e": 1, "C": 1, "C++": 1, "\u4e2d": 1, "\u6781\u5176\u91cd\u8981": 1}, "Sentences": {"\u53e5\u5b50": 1, "\u4ee5": 1, "\u5927": 1, "\u5beb": 1, "\u958b\u982d": 1}, "skis": {"\u6bcf\u5e74": 1, "\u6ed1\u96ea": 1}, "bother": {"\u4e00\u76f4": 1, "\u6253\u6270": 1, "\u4e0d\u597d\u610f\u601d": 1, "\u4e0d\u7528": 1, "\u9ebb\u70e6": 2, "\u4eba\u6703": 1, "\u6253\u64fe": 1}, "Finally": {"\u7d42\u65bc": 1, "\u4e86": 1, "\u7ec8\u4e8e": 2, "\u8fbe\u5230": 2, "\u81ea\u5df1": 2}, "prison": {"\u63a2\u671b": 1, "\u76e3": 3, "\u7344\u88e1": 3, "\u95dc": 1, "\u9032\u904e": 1, "\u76e3\u7344": 3, "\u6c92\u9032": 1, "\u4e00\u5ea7": 1}, "translated": {"\u628a": 2, "\u8bd1\u6210": 2, "\u65e5\u8bed": 1}, "document": {"\u6587\u6863": 1, "\u6587\u4ef6": 2, "\u4e0a": 1, "\u7c3d\u5b57": 1}, "uniforms": {"\u5168\u90e8": 1, "\u5236\u670d": 1}, "Suppose": {"\u5047\u5982": 1, "\u4f60": 1, "\u505a": 1}, "typical": {"\u5178\u578b": 2, "\u7684": 1}, "clerk": {"\u505a": 1, "\u79d8\u4e66": 1}, "planets": {"\u884c\u661f": 3}, "revolve": {"\u7e5e\u8457": 1, "\u8f49": 1, "\u4e0d\u662f": 1, "\u56f4\u7740": 1, "\u8f6c": 1}, "exists": {"\u795e": 1, "\u5b58\u5728": 3}, "Asian": {"\u4e9a\u6d32": 1, "\u5f88\u611f\u5174\u8da3": 1}, "ashamed": {"\u4e3a": 2, "\u81ea\u5df1": 1, "\u611f\u5230": 3, "\u7f9e\u803b": 2, "\u5e76": 1, "\u4e0d\u8ba9": 1, "\u89c9\u5f97": 1, "\u4e22\u8138": 1, "\u4f5c\u70ba": 1, "\u5167\u759a": 1, "\u6ca1\u7406\u7531": 2, "\u5bb3\u81ca": 2, "\u70ba": 1, "\u7f9e\u6065": 1, "\u5bb3\u7f9e": 1}, "mailman": {"\u90f5\u5dee": 2, "\u904e": 1, "\u5c0d\u8457": 1}, "paint": {"\u7c89\u5237": 2, "\u6cb9\u6f06": 2, "\u5f9e": 1, "\u812b\u843d": 1, "\u628a": 2, "\u6f06\u6210": 2, "\u51c6\u5907": 1, "\u5237\u5899": 1, "\u8ba9": 1, "\u6d82": 1, "\u5237": 1}, "nights": {"\u8fd9": 1, "\u5ea6\u8fc7": 1, "\u591c\u665a": 1, "\u4e4b\u4e00": 1}, "promising": {"\u4e00\u4f4d": 1, "\u6709": 1, "\u524d\u9014": 1}, "teachers": {"\u6240\u6709": 1, "\u8001\u5e08": 3, "\u65e0\u6cd5": 1, "\u8001\u5e2b": 1, "\u4e26\u4e14": 1, "\u559c\u611b": 1, "\u6559\u5b78": 1}, "hairdressers": {"\u7406\u53d1\u5e08": 1, "\u540c\u6027\u604b": 1}, "classmate": {"\u540c\u5b78": 3, "\u8ddf": 1, "\u5ac1\u7d66": 1}, "shut": {"\u9589": 1, "\u5634": 1, "\u95dc\u6389": 1, "\u628a": 2, "\u5173": 1, "\u623f\u91cc": 1, "\u9580\u95dc": 1, "\u4e0a": 1, "\u8fc7": 1, ",": 1, "": 1, "\u4f4f\u53e3": 1, "\u95ed\u5634": 1}, "regularly": {"\u7d93\u5e38": 1, "\u670d\u7528": 1, "\u85e5\u7269": 1, "\u5b9a\u671f": 1, "\u4f86\u770b": 1}, "warden": {"\u66b4\u52d5": 1, "\u4e00\u4f4d": 1, "\u76e3\u7344": 1, "\u9577": 1, "\u503c\u73ed": 1}, "happier": {"\u6709\u94b1\u4eba": 1, "\u672a\u5fc5": 1, "\u5e78\u798f": 1, "\u770b\u6765": 1, "\u9ad8\u5174": 1}, "forgiven": {"\u6ca1": 1, "\u539f\u8c05": 1, "\u8fc7": 1}, "hawk": {"\u96bb": 2, "\u9df9": 1, "\u6293": 1, "\u5230": 1, "\u4e00": 1}, "flows": {"\u5f9e": 1, "\u4e0b\u6d41": 1, "\u904e": 1}, "whistled": {"\u908a": 2, "\u5439\u53e3\u54e8": 1}, "advertised": {"\u520a\u767b": 1, "\u5e7f\u544a": 1, "\u767b\u5ee3": 1, "\u544a\u8ce3": 1}, "sum": {"\u4e2a": 1, "\u6570\u76ee": 1, "\u4e94": 1, "\u4e09": 1, "\u7e3d": 1, "\u516b": 1}, "basis": {"\u4e3b\u5f35": 1, "\u79d1\u5b78": 1, "\u6839\u64da": 1}, "overestimate": {"\u4e0d\u80fd": 1, "\u9ad8\u4f30": 1, "\u4ef7\u503c": 1}, "apparently": {"\u5f88": 1, "\u660e\u986f": 1, ",": 1, "\u5df2\u7d93": 1}, "starts": {"\u4e0b\u5468\u4e00": 1, "\u5f00\u5b66": 1, "\u9019\u500b": 1, "\u7bc0\u76ee": 1, "\u958b\u59cb": 1, "\u958b\u5b78": 1}, "Volleyball": {"\u6392\u7403": 1, "\u6709\u610f\u601d": 1}, "hi": {"\u6253\u4e86\u4e2a": 1, "\u62db\u547c": 1}, "cakes": {"\u86cb\u7cd5": 2, "\u90a3": 1, "\u4e24\u5757": 1}, "emotions": {"\u5b78\u6703": 1, "\u81ea\u5df1": 1, "\u60c5\u7dd2": 1}, "sunny": {"\u8d70": 1, "\u4e0b\u7740\u96e8": 1, "\u7684": 1, "\u65f6\u5019": 1}, "admired": {"\u548c\u739b\u4e3d": 1, "\u624b\u7275\u7740": 1, "": 2, "\u6bcf": 1, "\u4e00\u500b": 1, "\u8a8d\u8b58": 1, "\u611b\u6155": 1}, "scenery": {"\u4e00\u8d77": 1, "\u9019": 2, "\u6362\u6362": 1, "\u98ce\u666f": 1}, "conservative": {"\u8fc7\u53bb": 1, "\u5f88": 1, "\u4fdd\u5b88": 1}, "mustache": {"\u522e": 1, "\u80e1\u5b50": 1}, "wet": {"\u6e7f": 4, "\u4ece\u5934\u5230\u811a": 1, "\u6fd5": 5, "\u53c8": 2, "\u88ab": 1, "\u5f04": 1}, "partial": {"\u90a3": 1, "\u53ea\u662f": 1, "\u90e8\u5206": 1}, "masters": {"\u5171\u4f8d": 1, "\u4e8c": 1, "\u4e3b": 1}, "gains": {"\u90a3\u4e2a": 1, "\u5feb": 2, "\u4e94\u5206\u949f": 2, "\u8d70": 1}, "liable": {"\u6709": 1, "\u4e49\u52a1": 1, "\u8fd8\u503a": 1}, "jail": {"\u53bb\u8fc7": 1, "\u76d1\u72f1": 1, "\u56e0\u70ba": 1, "\u6848": 1, "\u7262": 1, "\u662f": 1, "\u5982\u4f55": 1, "\u51fa\u72f1": 1}, "carelessly": {"\u7c97\u5fc3\u5927\u610f": 1, ",": 1, "": 2, "\u8fd8": 1, "\u6ca1": 1, "\u610f\u8bc6": 1}, "injuries": {"\u4e0d\u80fd\u4e0d": 1, "\u4f24\u52bf": 1}, "hidden": {"\u5e8a": 1, "\u4e0b\u9762": 1, "\u85cf": 1}, "manual": {"\u6b63\u5728": 1, "\u4e00\u672c": 1, "\u5712\u85dd": 1, "\u624b\u518a": 1}, "swearing": {"\u518d": 1, "\u53d1\u8a93": 1}, "offensive": {"\u53d1\u8a00\u4eba": 1, "\u6781": 1, "\u6709": 1, "\u653b\u51fb\u6027": 1}, "comments": {"\u8bc4\u8bba": 3, "\u6b22\u8fce": 1, "\u4f5c": 1, "\u4efb\u4f55": 1, "\u8a55\u8ad6": 1}, "Obey": {"\u8981": 1, "\u542c": 1, "\u7684\u8bdd": 1}, "mere": {"\u53ea\u662f": 2, "\u500b": 1, "\u4e00\u4e2a": 1}, "erased": {"\u4e3a": 1, "\u64e6": 1, "\u628a": 1, "\u90a3\u6bb5": 1, "\u8bdd": 1, "\u91cc": 1, "\u5220\u9664": 1}, "blackboard": {"\u9ed1\u677f": 2, "\u6570\u5b66\u8001\u5e08": 1, "\u4e00\u4e2a": 1, "\u5706": 1}, "complaint": {"\u7406\u7531": 1, "\u62b1\u6028": 1}, "admonished": {"\u544a\u8aa1": 1, "\u4e0d\u8981": 1, "\u5435\u9b27": 1}, "apron": {"Mary": 1, "\u8bd5\u56fe": 1, "\u56f4\u88d9": 2, "\u56f4": 1, "\u8170": 2, "\u4e0a": 2, "": 2, "\u7136\u540e": 1, "\u628a": 2, "\u70e4\u9e21": 1, "\u4ece": 2, "\u7089\u5b50": 1, "\u91cc": 2, "\u7cfb": 1, "\u706b\u9e21": 1, "\u70e4\u7bb1": 1}, "tied": {"\u628a": 3, "": 2, "\u7528": 1, "\u7e69": 1, "\u7e6b": 1, "\u8457": 1, "\u7ed1\u5230": 1}, "welfare": {"\u798f\u5229": 2, "\u8fa6\u4e8b": 1, "\u8655": 1}, "consider": {"\u8ba4\u4e3a": 2, "\u8ba4\u771f": 1, "\u8003\u8651": 1, "\u4e8b": 1, "\u628a": 1, "\u6700": 1}, "impolite": {"": 1, "\u53bb": 1, "\u4e00\u4e2a": 1, "\u8ba4\u8bc6": 1, "\u7684": 1, "\u6709\u4e9b": 1, "\u4e0d": 1}, "madman": {"\u8868\u73b0": 2, "\u50cf": 2, "\u4e2a": 2, "\u75af\u5b50": 2}, "scored": {"\u961f": 1, "\u8fdb": 1, "\u7b2c\u4e00\u4e2a": 1, "\u7403": 1}, "witch": {"\u4e0d\u662f": 1, "\u5deb\u5a46": 1}, "crane": {"\u50cf": 1, "\u9019": 1, "\u9db4": 1, "\u5f9e": 1, "\u6c92": 1, "\u6709": 1, "\u60f3": 1, "\u904e": 1}, "Radio": {"\u7535\u89c6": 1, "\u4ee3\u66ff": 1, "\u6536\u97f3\u673a": 1}, "tasted": {"\u5690\u4e86": 1}, "bowling": {"\u4eab\u53d7": 2, "\u6253": 2, "\u4fdd\u9f84\u7403": 2, "": 2, "\u6211": 2, "\u6ca1\u6709": 2, "\u53bb": 2, "\u867d\u7136": 1}, "slip": {"": 3, "\u8ba9": 1, "\u8001\u4eba": 1, "\u5728": 1, "\u9019\u6a23": 1, "\u4e0d": 1}, "shortage": {"\u71c3\u6599": 1, "\u77ed\u7f3a": 1}, "checkout": {"\u7d50\u5e33": 1, "\u6ac3\u53f0": 1, "?": 1}, "engagement": {"\u5df2\u7d93": 1, "\u8a02\u5a5a": 1}, "announced": {"\u5ba3\u5e03": 2, "\u66b4\u98a8\u96e8": 1, "\u5373\u5c07": 1, "\u4f86\u81e8": 1}, "neutral": {"\u4e00\u4e2a": 1, "\u4e2d\u7acb": 1}, "crossing": {"\u7a7f\u8fc7": 2, "\u9a6c\u8def": 3, "\u8fc7": 1, "\u65f6": 1}, "pizzas": {"\u83dc\u55ae": 1, "\u7a2e\u6bd4\u85a9": 1}, "bulbs": {"\u4e09\u4e2a": 1, "\u706f\u6ce1": 1, "\u70e7\u574f": 1}, "UFO": {"\u770b": 1, "\u98db": 1, "\u789f": 1}, "activity": {"\u5c0f\u9547": 1, "\u5145\u6ee1": 1, "\u6d3b\u529b": 1}, "Sasayama": {"\u6703": 1, "\u7b71": 1, "\u5c71": 1}, "makes": {"\u8b93": 7, "\u61a4\u6012": 3, "\u5168\u90e8\u90fd\u662f": 1, "\u505a": 2, "\u716e": 1, "\u9019": 1, "\u4ec0\u9ebc": 1, "\u4efb\u4f55": 1, "\u70ba": 1}, "greater": {"\u7528\u6236": 1, "\u6bd4\u7f8e": 1, "\u570b": 1, "\u9084": 1, "\u591a": 1}, "complained": {"\u62b1\u6028": 5, "\u57cb\u6028": 1, "\u4ece\u6765\u4e0d": 1, "\u6c92\u6709": 1, "\u5de5\u8cc7": 1}, "acquainted": {"\u8a8d\u8b58": 4, "\u8ba4\u8bc6": 2, "\u4e00\u4e2a": 1, "\u4eba": 1}, "Highway": {"\u8d70": 1, "58": 1, "\u865f": 1, "\u9ad8\u901f\u516c\u8def": 1}, "leather": {"\u4e70": 1, "\u76ae\u978b": 1}, "banana": {"\u9999\u8549": 1, "\u5417": 1}, "Disney": {"\u8fea\u58eb\u5c3c": 1}, "budget": {"\u4e00\u90e8": 1, "\u4f4e\u6210\u672c": 1}, "delete": {"\u5220\u9664": 1, "\u5b83": 1}, "requirements": {"\u592a": 1, "\u80fd\u5920": 1, "\u6eff\u8db3": 1, "\u8981\u6c42": 1}, "involved": {"\u5225": 1, "\u9019\u500b": 1, "\u6253\u4ea4\u9053": 1, "\u88ab": 2, "\u5377\u8fdb": 1, "\u662f\u975e": 1, "\u4e2d": 1, "\u7275\u626f": 1, "\u5230": 1, "\u91cc": 1}, "programmer": {"\u8058\u8acb": 1, "\u4f5c": 1, "\u7a0b\u5f0f": 1, "\u8a2d\u8a08": 1, "\u505a": 1, "\u4e00\u4e2a": 1, "\u7a0b\u5e8f\u5458": 1}, "dedicated": {"\u628a": 1, "\u4e00\u751f": 1, "\u5949": 1, "\u737b\u7d66": 1, "\u79d1\u5b78": 1}, "part": {"\u4e00\u4efd": 1, "\u517c\u8077": 1, "\u90e8\u5206": 2, "\u8a71": 1, "\u5e0c\u671b": 1, "\u53c3\u52a0": 2, "\u90e8\u4efd": 1, "": 1, "\u7684": 1}, "fluency": {"\u6d41\u5229": 1, "\u8ba9": 1, "\u5f88": 1, "\u5403\u60ca": 1}, "Nagoya": {"": 1, "\u540d\u53e4\u5c4b": 5, "\u5728": 1, "\u56e0\u516c": 1, "\u5230": 2, "\u6d3d\u8ac7": 1, "\u696d\u52d9": 1}, "steady": {"\u4e00\u4e2a": 1, "\u56fa\u5b9a": 1, "\u7a69\u5b9a": 1, "\u5730": 1, "\u589e\u52a0": 1}, "divorce": {"\u8bf4": 1, ",": 1, "\u5979": 1, "\u96e2\u5a5a": 2, "\u548c": 1}, "Whether": {"\u559c\u4e0d\u559c\u6b22": 1, "\u6ca1\u5173\u7cfb": 1, "\u7ed3\u679c": 1, "\u4e0e\u5426": 1, "\u53d6\u51b3\u4e8e": 1, "\u81ea\u8eab": 1}, "kilogram": {"\u83e0\u863f": 1, "\u4e00": 1, "\u516c\u65a4": 1}, "grabbed": {"\u6293\u4f4f": 2, "\u90a3\u4e2a": 1}, "Ignorance": {"\u7121\u77e5": 1, "\u5c31\u662f": 1, "\u5e78\u798f": 1}, "agreement": {"\u8981": 1, "\u8fbe\u6210": 1, "\u534f\u5b9a": 1}, "sic": {"\u6211": 1, "\u5c31": 1, "\u653e\u72d7": 1}, "hail": {"\u6ca1": 1, "\u5fc5\u8981": 1, "\u53eb": 1, "\u51fa\u79df\u8f66": 1}, "Swiss": {"\u745e\u58eb\u4eba": 1, "\u6d88\u8017": 1, "\u4e0d\u5c11": 1}, "stormy": {"\u6709": 1, "\u98a8\u66b4": 1, "\u88e1": 1, "\u767b\u5c71": 1}, "watches": {"\u8c01": 1, "\u4e5f": 1, "\u6ca1\u5728": 1, "\u770b": 2}, "password": {"\u6beb\u4e0d\u8d39\u529b": 1, "\u60f3\u51fa": 1, "\u5bc6\u7801": 1}, "Summer": {"\u590f\u5929": 2, "\u8fc7\u53bb": 1, "\u5df2\u7d93": 1, "\u5f9e": 1}, "meaningless": {"\u8fd9": 1, "\u6beb\u65e0\u610f\u4e49": 1}, "cynical": {"\u4eba\u6703": 1, "\u96a8\u8457": 1, "\u589e\u9577": 1, "\u800c": 1, "\u66f4\u52a0": 1, "\u5730": 1, "\u73a9\u4e16\u4e0d\u606d": 1}, "discount": {"\u7528\u73fe": 1, "\u91d1\u4ed8": 1, "\u8a71": 1, "\u6703": 1, "\u6298\u6263": 1, "\u6253": 1, "\u6298": 1}, "tie": {"\u9818\u5e36": 5, "\u95dc": 1, "\u4fc2": 1, "\u7e3d\u662f": 2, "\u8981": 2, "\u4e0d\u4f1a": 1, "\u7cfb": 1, "\u9886\u5e26": 2, "\u90a3\u689d": 2, "\u642d": 1, "\u4e0d\u932f": 1, "\u9069\u5408": 1, "\u6253": 1, "\u4e00\u689d": 1, "\u7de3\u6545": 1}, "sincere": {"\u76f8\u4fe1": 2, "\u771f\u5fc3": 2, "\u5f88": 2, "\u8bda\u5b9e": 2}, "temple": {"\u5bfa\u5e99": 1, "\u4f55\u65f6": 1, "\u9020": 1}, "British": {"\u9060\u9060": 1, "\u65bc": 2, "\u82f1\u570b": 1, "\u200b": 1}, "amazes": {"\u8bb0\u5fc6\u529b": 1, "\u4f7f": 1, "\u60ca\u8bb6": 1}, "handles": {"\u8fd9": 1, "\u4e2a": 1, "\u67c4": 1, "\u5e73\u9505": 1, "\u5f00": 1}, "hundred": {"\u4e00\u4e2a": 2, "\u4f4e\u4e8e": 1, "300": 1, "\u7f8e\u91d1": 1}, "lacking": {"\u7f3a\u4e4f": 2, "\u5e38\u8bc6": 1}, "reluctantly": {"\u4e0d": 1, "\u60c5\u613f": 1, "\u5730": 1, "\u63d0\u6848": 1}, "cockroaches": {"\u87d1\u8782": 1}, "shooting": {"\u5c04\u51fb": 1, "\u69cd": 1, "\u64ca": 1, "\u662f": 2, "\u5341\u4e8c": 2, "\u6642": 2, "\u5de6\u53f3": 2, "\u62cd\u651d": 1}, "awfully": {"\u975e\u5e38": 2, "\u5c0d": 1, "\u611f\u5230": 1}, "Winners": {"\u512a\u52dd\u8005": 1, "\u85e5\u7269": 1}, "glanced": {"\u77a5": 1, "\u58bb": 1, "\u8868": 2, "\u4e00\u773c": 4, "\u770b": 2}, "postponed": {"\u90a3\u5929": 1, "": 1, "\u6bd4\u8d5b": 1, "\u4f1a": 1, "\u81f3": 1, "\u4e0b": 1, "\u63a8\u8fdf": 1, "\u5ef6\u9072": 1, "\u88ab": 1, "\u5ef6\u8fdf": 1}, "blocked": {"\u88ab": 2, "\u5c01\u9396": 1}, "landslide": {"\u5c71\u5d29": 1, "\u6240": 1, "\u963b\u65b7": 1}, "nation": {"\u5bf9": 1, "\u56fd\u6c11": 1, "\u8bb2\u8bdd": 1}, "stores": {"\u5340\u57df": 1, "\u5546\u5e97": 1}, "extinguisher": {"\u8a66\u8457": 1, "\u7528\u6ec5": 1, "\u706b\u5668": 1, "\u64b2": 1, "\u6ec5": 1}, "cafeteria": {"\u81ea\u52a9\u9910": 1, "\u5ef3": 1, "\u9910\u5ef3": 1}, "hurried": {"\u4e3a\u4e86": 1, "\u4e0d\u9519": 2, "\u8fc7": 2, "": 1, "\u4ed6": 1, "\u5306\u5306\u5fd9\u5fd9": 1, "\u52a0\u7d27": 1, "\u6b65\u4f10": 1, "\u4ee5": 1}, "Best": {"\u6240\u6709\u4eba": 1, "\u795d\u798f": 1, "\u4f60": 1}, "compartment": {"\u5b8c\u5168": 1, "\u662f": 1, "\u5076\u7136": 1, "\u60c5\u51b5": 1, "\u4e0b": 1, "\u5bc6\u5ba4": 1}, "Thou": {"\u4e0d\u53ef": 1, "\u6bba": 1, "\u4eba": 1}, "plus": {"\u4e00\u52a0\u4e8c": 1, "\u7b49\u4e8e": 1}, "Trouble": {"\u9ebb\u70e6": 1, "\u8bf4\u6765": 1, "\u5c31": 1, "\u6765": 1}, "snored": {"\u7761\u7740": 1, ",": 1, "": 2, "\u6253\u547c\u58f0": 1}, "Lips": {"\u904e": 1, "\u9152": 1, "\u5634\u5507": 1, "\u5c31\u5225": 1, "\u60f3": 1, "\u5507": 1}, "abstract": {"\u62bd\u8c61": 1, "\u70ba": 1, "\u5beb": 1, "\u5167\u5bb9": 1, "\u63d0\u8981": 1}, "named": {"\u4ee5": 2, "\u540d\u5b57": 2, "\u547d\u540d": 2, "\u53eb": 2, "\u66fe": 1}, "east": {"\u6771\u65b9": 2}, "personally": {"\u89aa\u81ea": 1, "\u62dc\u8a2a": 1, "\u60a8": 1}, "saluted": {"\u5411": 1, "\u90a3\u4f4d": 1, "\u5973\u58eb": 1, "\u95ee\u597d": 1}, "mortal": {"\u56fa\u6709": 1, "\u4e00": 1, "\u6b7b": 1, "\u7686": 1, "\u96e3\u514d": 1, "\u4e00\u6b7b": 1}, "completed": {"\u4f60\u4eec": 1, "\u5c31": 1, "\u5b8c\u6210": 2, "\u5927\u6a4b": 1, "\u5e74\u5e95": 1, "\u5b8c\u5de5": 1, "2": 1, "\u4ee5\u524d": 1, ",": 1, "": 1, "\u8fd9": 1, "\u56e0\u4e3a": 1, "\u6211": 1, "\u4e0d": 1}, "beard": {"\u957f\u80e1\u5b50": 1}, "bookcase": {"\u4e66\u67b6": 1, "\u9f50\u5e73": 1}, "mistyped": {"\u662f": 1, "\u6253": 1, "\u932f\u865f": 1, "\u78bc": 1}, "eclipse": {"\u770b": 2, "\u6708": 2, "\u8755": 2}, "Feel": {"\u6b61\u8fce": 1, "\u4f86": 1, "\u6765": 2, "\u611f\u53d7\u4e00\u4e0b": 1, "\u5c3d\u7ba1": 1, "\u63d0\u95ee": 1}, "warning": {"\u904e": 1, "\u4f46": 1, "\u4ed6": 1}, "railroad": {"\u8fd9": 1, "\u706b\u8f66\u7ad9": 1}, "Salmon": {"\u4e09\u6587": 1, "\u9b5a": 1, "\u6de1\u6c34": 1, "\u4e2d\u7522": 1, "\u5375": 1}, "Great": {"\u5df2\u7ecf": 1, "\u53d6\u5f97": 1, "\u5de8\u5927": 1, "\u8fdb\u5c55": 1}, "triple": {"\u64ca\u51fa": 1, "\u4e09\u58d8": 1, "\u5b89\u6253": 1}, "barks": {"\u5c0d\u8457": 1, "\u568e\u53eb": 1}, "sloshed": {"\u9189": 1, "\u4e86": 1}, "downstairs": {"\u697c\u4e0b": 1, "\u807d": 1, "\u898b": 1, "\u4e0b\u6a13": 1, "\u8072\u97f3": 1}, "seats": {"\u514d\u8d39": 1, "\u5ea7\u4f4d": 4}, "route": {"\u5e78\u904b": 1, "\u4e86": 1}, "Luckily": {"\u662f": 2, "\u5e78\u8fd0": 1, "\u6765": 1, "\u4ed8\u8d26": 1}, "racist": {"\u79cd\u65cf\u4e3b\u4e49\u8005": 1}, "Other": {"\u9664\u4e86": 2, "\u5916": 1, "\u4e0a\u73ed": 1}, "third": {"\u7535\u68af": 1, "\u4e0a\u4e09\u697c": 1, "\u4e09": 2, "\u697c": 1}, "Pale": {"\u6de1": 1, "\u4e00\u7a2e": 1, "\u542b\u91cf": 1}, "alcohol": {"\u9152\u7cbe": 2, "\u559d\u9152": 1, "\u95fb\u5230": 1, "\u4e2d": 1}, "feels": {"\u611f\u89c9\u826f\u597d": 1, "\u5589\u5499": 1, "\u5f88": 2, "\u5e72": 1, "\u611f\u89c9": 2, "\u70b9": 1}, "celebrity": {"\u540d\u4eba": 1, "\u4e86": 1}, "handyman": {"\u9019\u500b": 1, "\u5de5\u4eba": 1, "\u672c\u4f86": 1, "\u61c9\u8a72": 1, "\u9ede": 1, "\u9054": 1}, "Dutch": {"\u8377\u862d\u8a9e": 1, "\u8207": 1, "\u95dc": 1, "\u4fc2": 1, "\u5bc6\u5207": 1}, "serve": {"\u63d0\u4f9b": 2, "\u4e00\u6d41": 1, "\u7f8e\u98df": 1, "\u4e3a": 1, "\u670d\u52a1": 1, "\u611f\u5230": 1, "\u975e\u5e38\u9ad8\u5174": 1}, "t": {"\u8bb0\u5f97": 1, "\u5728": 1, "\u5b57\u6bcd": 1, "": 3, "t": 1}, "cups": {"\u7d66": 1, "\u4f86": 1, "\u5169\u676f": 1, "\u8bf7\u6765": 1, "\u4e24\u676f": 1}, "affectionate": {"\u5bf9": 1, "\u7231\u548c": 1, "\u7167\u987e": 1, "\u5c11": 1}, "uncooperative": {"\u4e0d": 1, "\u5408\u4f5c": 1}, "traffic": {"\u4ea4\u901a": 2, "\u50b7": 2, "\u4ea4\u901a\u4e8b\u6545": 4, "\u6e6f\u59c6\u6b7b": 1, "\u9019\u5834": 1, "\u6a2a\u7a7f\u9a6c\u8def": 1, "\u65f6": 1, "\u7559\u5fc3": 1}, "enemies": {"\u654c\u4eba": 3, "\u6ca1\u6709": 1, "\u7edd": 1}, "Bright": {"\u7e3d": 1, "\u60f3\u4e0d\u51fa": 1, "\u4ec0\u9ebc": 1, "\u597d": 1, "\u9ede\u5b50": 1}, "devoted": {"\u4e00\u751f": 2, "\u90fd": 1, "\u8d21\u732e": 1, "\u7ed9": 1, "\u79d1\u5b66\u4e8b\u4e1a": 1}, "dirt": {"\u4eec": 1, "\u5c18\u571f": 1, "\u91cc": 1, "\u6e38\u620f": 1}, "assigned": {"\u6307\u6d3e": 2, "\u505a": 2, "\u9019\u500b": 2, "\u628a": 2, "\u8270\u5de8": 1, "\u4efb\u52a1": 1, "\u7ed9": 1, "\u6d3e": 1, "\u7d66": 1}, "extension": {"\u9019\u689d": 1, "\u5ef6\u9577": 1, "\u7dda": 1, "\u592a\u77ed": 1}, "rejected": {"\u62d2\u7edd": 1, "\u88ab": 1, "\u62d2\u7d55": 1}, "swimmers": {"\u6e38\u6cf3": 1, "\u9078\u624b": 1, "\u5011": 1, "\u51cd\u50f5": 1}, "hometown": {"\u4e2d": 1, "\u8bbf\u95ee": 1, "\u6545\u4e61": 1, "\u5bb6\u4e61": 1, "\u590f\u4f11": 1, "\u56de\u4e61": 1, "\u770b\u671b": 1}, "reserved": {"\u8fd9\u4e2a": 1, "\u88ab": 1, "\u9884\u7ea6": 1, "\u9810\u8a02": 1}, "chapped": {"\u5634": 1, "\u88c2\u5f00": 1, "\u4e86": 1}, "classless": {"\u4e00\u4e2a": 1, "\u81ea\u79f0": 1, "\u6ca1\u6709": 1, "\u793e\u4f1a\u9636\u5c42": 1, "\u56fd\u5bb6": 1}, "Eat": {"\u5403": 2, "\u5427": 1, "": 1, "\u8d81": 1, "\u6ca1": 1, "\u51c9": 1, "\u4e0b": 1, "\u591a": 1, "\u70b9": 1}, "resembles": {"\u5f88": 2, "\u50cf": 4, "\u548c": 1, "\u9177\u4f3c": 1, "\u5c31": 1, "\u957f": 1, "\u5f97": 1}, "Remember": {"\u8bb0\u4f4f": 2, "\u8a18\u5f97": 3, "\u53bb": 2, "\u522b\u5fd8\u4e86": 1}, "Roll": {"\u4f20\u7ed9": 1}, "gentleman": {"\u4e00\u4e2a": 2, "\u7ec5\u58eb": 2, "\u4e0d\u4f1a": 2, "\u8fd9\u79cd": 1}, "And": {"\u6bcf\u4e2a": 1, "\u4f5c\u8d21\u732e": 1}, "insecure": {"\u5c0d": 1, "\u672a\u4f86": 1, "\u611f\u5230": 1, "\u6c92\u6709": 1, "\u5b89\u5168\u611f": 1}, "Think": {"\u8acb": 1, "\u601d\u8003": 1, "\u4e00\u4e0b": 1}, "writers": {"\u4f5c\u5bb6": 2, "\u600e\u4e48\u6837": 1}, "tendency": {"\u5728": 1, ",": 1, "\u5979": 1, "\u6709": 1, "\u8a87\u5f35": 1}, "ambitions": {"\u56e0\u70ba": 1, "\u91ce\u5fc3": 1, "\u5f88": 1}, "product": {"\u8205\u8205": 1, "\u4e0a\u4e2a\u6708": 1, "\u63a8\u51fa": 1, "\u4e00\u9879": 1, "\u4ea7\u54c1": 1}, "unfair": {"\u771f\u4e0d": 1, "\u516c\u5e73": 1}, "authorized": {"\u65e0\u6743": 1, "\u8fdb\u5165": 1, "\u90a3\u91cc": 1}, "scarf": {"\u90a3\u6761": 1, "\u56f4\u5dfe": 1}, "smoked": {"\u5f88\u4e45\u6ca1": 1, "\u62bd\u70df": 1}, "shall": {"\u8a72": 1, "\u5e7e\u9ede": 1}, "advance": {"\u63d0\u524d": 4, "\u5148": 1, "\u5e2e\u5fd9": 1, "\u60a8": 1, "\u9884\u5148": 1}, "drunken": {"\u56e0": 2, "\u9152": 2, "\u5f8c": 2, "\u800c": 1, "\u9189": 1}, "Ebay": {"eBay": 1, "\u8d2d\u7269": 1}, "blacks": {"\u8fd9\u4e2a": 1, "": 1, "\u767d\u4eba": 1, "\u548c": 1, "\u95f4": 1, "\u7684": 1}, "judgment": {"\u4e00\u76f4": 1, "\u90fd": 1, "\u5224\u65ad": 1}, "trusted": {"\u76f8\u4fe1": 2, "\u5230": 1}, "favor": {"\u8acb": 2, "\u5e6b": 3, "\u5fd9": 3, "\u5927\u5bb6\u4f19": 1, "\u5e2e": 1, "\u6211\u4e2a": 1, "\u80fd": 1, "\u4e00\u500b": 2, "\u8d0a\u6210": 1, "\u5fd9\u597d": 1}, "talents": {"\u5584\u7528": 1, "\u5929\u8d4b": 1}, "Mount": {"\u5c07": 1, "\u7acb\u5c71": 1}, "cow": {"\u90a3\u4e2a": 1, "\u6324": 1}, "advocate": {"\u5f53": 1, "\u8fa9\u62a4\u58eb": 1}, "parked": {"\u628a": 2, "\u505c": 2, "\u90a3\u908a": 1, "\u505c\u8457": 1, "\u90a3\u8f1b": 1, "\u554f": 2, "\u90a3\u88e1": 1}, "Foxes": {"\u72d0\u72f8": 2, "\u91ce\u751f\u52a8\u7269": 1}, "hens": {"\u6bcd\u9e21": 1}, "satisfactory": {"\u9019\u500b": 1, "\u4e0d\u662f": 1, "\u5f88": 1, "\u4ee4\u4eba": 1, "\u6eff\u610f": 1}, "shoot": {"\u958b": 2, "\u69cd": 1, "\u6253": 1, "\u5225\u52d5": 1, "": 2, "\u4e0d\u7136": 2, "\u6211": 2, "\u5c31": 1, "\u505c\u706b": 1}, "brandy": {"\u628a": 1, "\u767d\u862d": 1, "\u5730": 1, "\u5012": 1, "\u9032": 1, "\u73bb\u7483\u676f": 1, "\u88e1": 1}, "accessible": {"\u9019\u4e9b": 1, "\u8a18\u9304": 1, "\u516c\u773e": 1, "\u958b\u653e": 1}, "occur": {"\u4f55\u65f6": 1, "\u4f1a\u6765": 1, "\u5c31": 1, "\u767c\u751f": 1, "\u5728": 1, "\u8eab\u4e0a": 1}, "argued": {"\u4e89\u5435": 1, "\u540e": 1, "": 1, "\u4e00\u5468": 1, "\u90fd": 1, "\u6ca1\u6709": 1}, "elbows": {"\u624b\u8098": 1, "\u628a": 1}, "position": {"\u9002\u5408": 1, "\u8fd9\u4e2a": 1, "\u804c\u4f4d": 1}, "doorknob": {"\u8f49\u52d5": 1, "\u9580": 1, "\u628a": 1}, "noted": {"\u4e00\u4e2a": 1, "\u8457\u540d": 1}, "blank": {"\u76f4\u63a5": 1, "\u5730": 1}, "Swedish": {"\u8bf4": 1, "\u745e\u5178\u8bed": 1, "\u6211": 1, "\u4e5f": 1}, "ages": {"\u5df2\u7d93": 1, "\u5f88": 1, "\u9577": 1, "\u6642\u9593": 1, "\u6c92\u6709": 1, "\u898b\u5230": 1, "\u8001\u5c11\u7686\u5b9c": 1, "\u597d\u4e45\u4e0d\u89c1": 1, "": 1, "\u5e74\u7eaa": 1, "\u5927": 1, "\u53bb\u4e16": 1}, "punishment": {"": 2, "\u7f6a": 1, "\u61f2\u7f70": 1, "\u53ef\u4ee5": 1, "\u662f": 1}, "Riding": {"\u8173\u8e0f\u8eca": 1, "\u96d9\u8f09": 1}, "permission": {"\u6709": 1, "\u505c\u8eca": 1, "\u8a31": 1, "\u53ef": 1, "\u8bf7": 1, "\u5141\u8bb8": 1, "\u672a\u7d93": 2, "\u5141\u8a31": 4, "\u8acb": 1, "\u52ff": 1, "\u8acb\u6c42": 1, "\u63d0\u524d": 1}, "proceeded": {"\u7ee7\u7eed": 1}, "rescued": {"\u6551": 4, "\u7740": 1, "\u751f\u547d\u5371\u9669": 1, "\u90a3\u6761": 1, "\u706b\u5834": 1, "\u4e2d": 1, "\u9019\u500b": 1}, "drowning": {"\u4e00\u4e2a": 1, "\u6eba\u6c34": 1, ",": 1, "": 2, "\u4f7f": 1, "\u4ed6": 1, "\u514d": 1}, "cycling": {"\u9a91": 1, "\u81ea\u884c\u8f66": 1}, "side": {"\u53e6\u4e00\u7aef": 1, "\u53f3\u908a": 2, "\u4e00\u4e2a": 1, "\u8305\u5c4b": 1, "\u65c1\u908a": 2, "\u5c0d": 1, "\u9762": 1}, "conceal": {"\u4e0d\u80fd": 1, "\u63a9\u9970": 1, "\u5931\u671b": 1}, "burning": {"\u8981": 1, "\u70e7": 1, "\u56fe\u7247": 1, "\u5462": 1}, "barked": {"\u53eb": 2, "\u9019": 1, "\u8457": 1}, "safer": {"\u53bb": 1, "\u500b": 1, "\u66f4": 1, "\u5b89\u5168": 1, "\u5730\u65b9": 1}, "treasure": {"\u636e\u8bf4": 1, "\u7740": 1, "\u8d22\u5b9d": 1, "\u85cf\u5b9d": 1, "\u5730\u65b9": 1}, "patted": {"\u62cd\u62cd": 1}, "blew": {"\u98ce": 2, "\u522e\u5f97": 1, "\u592a\u731b": 1, ",": 1, "": 1, "\u88ab": 1, "\u522e\u8d77\u6765": 1}, "admire": {"\u4f69\u670d": 1, "\u7a31": 1, "\u8b9a": 1, "\u65b0\u6d0b": 1, "\u88dd": 1}, "courage": {"\u52c7\u6c23": 2, "\u5c0d": 1, "\u9a5a\u8a1d": 1}, "regret": {"\u5f8c": 2, "\u6094": 2, "\u6c38\u4e0d": 1}, "oysters": {"\u7261\u8823": 2, "\u80fd\u751f": 1, "\u7261\u86ce": 1, "\u5f53\u5b63": 1}, "darker": {"\u53d8\u5f97": 2, "\u8d8a\u6765\u8d8a": 2, "\u6697": 2}, "areas": {"\u8ba8\u538c": 1, "\u7981\u70df": 1, "\u533a": 1}, "dish": {"\u70b9": 1, "\u83dc": 1, "\u5728": 1, "\u5403": 1, "\u559d": 1, "\u767d\u9152": 1}, "yawned": {"\u6253\u54c8\u6b20": 1, "\u4e86": 1}, "agency": {"\u65c5\u884c\u793e": 1}, "flashlight": {"\u7ed9": 1, "\u4e00\u628a": 1, "\u624b\u7535\u7b52": 1}, "authority": {"\u6388\u6b0a": 1, "\u89e3\u50f1": 1}, "Admission": {"\u513f\u7ae5": 1, "\u514d\u8d39\u5165\u573a": 1, "\u9928\u5165": 1, "\u5834\u8cbb": 1}, "unify": {"\u7d71\u4e00": 1, "\u5718\u9ad4": 1}, "cameras": {"\u4e09\u53f0": 1, "\u651d\u5f71": 1, "\u6a5f": 1, "\u7167\u76f8": 1, "\u6a5f\u662f": 1, "\u88fd": 1, "\u9020": 1}, "teammates": {"\u662f": 1, "\u968a\u53cb": 1}, "bald": {"\u5f88\u5e74": 1, "\u8f15": 1, "\u5c31": 1, "\u79bf\u982d": 1}, "slice": {"\u8981": 1, "\u4f86": 1, "\u4e00\u584a": 1, "\u4e00\u7247": 1, "\u6bd4\u85a9\u9905": 1}, "brazen": {"\u6000\u7591": 1, "\u65e0\u803b": 1, "\u884c\u4e3a": 1, "\u5dee\u70b9": 1, "\u547d": 1}, "remote": {"\u9065\u63a7\u5668": 2, "\u7740": 1, "\u8c08": 1, "\u5f88\u4e45\u4ee5\u524d": 1, "\u6c99\u53d1": 1, "\u4e0b\u9762": 1}, "feared": {"\u8fd9\u4e2a": 1, "\u5bb3\u6015": 1, "\u9ed1\u591c": 1}, "whenever": {"\u4ec0\u9ebc": 1, "\u6642\u5019": 2, "\u90fd": 2, "\u53ef\u4ee5": 2, "\u4ec0\u4e48": 2, "\u65f6\u5019": 2, "\u60f3\u6765": 2, "\u96a8\u6642": 1, "": 1, "\u6211\u4ec0\u9ebc": 1}, "blinds": {"\u6253\u5f00": 1, "\u767e\u53f6\u7a97": 1, "": 2, "\u5411": 1}, "businessmen": {"\u5546\u4eba": 1}, "revealed": {"\u5df2\u7d93": 1, "\u88ab": 1, "\u63ed\u66c9": 1}, "stained": {"\u886c\u886b": 1, "\u88ab": 1, "\u9171\u6c41": 1, "\u5f04\u810f\u4e86": 1}, "whispered": {"\u8033\u908a": 1, "\u4f4e\u8072": 1, "\u8aaa": 2, "\u5c0d": 1, "\u5c0f\u8072": 1, "\u4e9b": 1, "\u4ec0\u9ebc": 1, "\u5c0f\u58f0": 1, "\u8bf4": 1}, "adjective": {"\u8fd9\u79cd": 1, "\u60c5\u51b5": 1, "\u4e0b": 1, "": 2, "\u5f62\u5bb9\u8bcd": 1, "\u653e\u5728": 1}, "consoling": {"\u5728": 1, "\u5b89\u6170": 1}, "survive": {"\u6c92\u6709": 1, "\u5f9e": 1, "\u5371\u6a5f\u4e2d": 1, "\u5016": 1, "\u5b58": 1, "\u751f\u5b58": 1, "\u4ee3\u4ef7": 1}, "employees": {"\u54e1\u5de5": 1}, "willingly": {"\u7edd\u4e0d\u4f1a": 1, "\u613f\u610f": 1, "\u72ec\u81ea": 1}, "views": {"\u6bcf": 1, "\u5c0d": 1, "\u770b\u6cd5": 1, "\u4f9d\u64da": 1, "\u5bcc\u6709": 1, "\u9084\u662f": 1}, "desktop": {"\u8fdf\u65e9\u4f1a": 1, "\u77e5\u9053": 1, "\u684c\u9762": 1, "\u5efa\u7acb": 1, "\u4e00\u4e2a": 1, "\u5feb\u6377\u65b9\u5f0f": 1, "\u6709": 1}, "Attack": {"\u9032\u653b": 1, "\u9632\u79a6": 1}, "probability": {"\u5f88": 1, "\u6709": 1, "\u53ef\u80fd": 1}, "hunch": {"\u9884\u611f": 1, "\u5230": 1, "\u5728": 1, "\u89c1": 1, "\u522b\u4eba": 1}, "kick": {"\u4e0d\u8981": 1, "\u81ea\u7518\u5815\u843d": 1, "\u70ba": 1, "\u611f\u5230": 1, "\u5f88": 1, "\u958b\u5fc3": 1}, "Carrots": {"\u80e1\u841d\u535c": 1, "\u4e09": 1}, "irregular": {"\u5b66\u4e60": 1, "\u4e0d\u89c4\u5219": 1, "\u52a8\u8bcd": 1}, "guidebook": {"\u8fd9\u672c": 1, "\u5bfc\u6e38": 1, "\u518c\u5b50": 1, "\u6216\u8bb8": 1, "\u5bf9": 1, "\u6709": 1, "\u5e2e\u52a9": 1, "\u6307\u5357": 1}, "repair": {"\u4fee\u597d": 1, "\u8b93": 2, "\u4fee\u7406": 4, "\u8eca\u5b50": 1, "\u5fc5\u9808": 1, "\u9019\u500b": 1, "\u641e\u5b9a": 1, ",": 1, "": 1}, "October": {"\u901d\u4e16": 1, "\u4e8e": 1, "10": 1, "\u6708": 1, "\u65e5": 1, "\u5341\u6708": 2}, "adopt": {"\u6536\u517b": 1, "\u4e00\u4e2a": 1}, "regard": {"\u5bf9\u4e8e": 1, "\u8fd9\u4e2a": 1, "\u65e0\u53ef\u5949\u544a": 1}, "Cheers": {"\u4e7e\u676f": 1, "!": 1}, "checking": {"\u68c0\u67e5": 2, "\u6c7d\u8f66": 1, "\u51fa": 1, "\u6545\u969c": 1}, "Breathe": {"\u7528": 1, "\u9f3b\u5b50": 1, "\u547c\u5438": 1}, "heart": {"\u5f97": 2, "\u809d\u8178\u5bf8\u65b7": 1, "\u4fc3\u819d\u8c08\u5fc3": 1}, "market": {"\u5e02\u5834": 1, "\u5e02\u573a": 1, "\u4e0a\u4e70": 1}, "petals": {"\u82b1\u74e3": 2, "\u6eff": 1, "\u71b1\u6c34": 1}, "bathed": {"\u5c0f\u6728\u5c4b": 1, "\u6c90\u6d74": 1, "\u4e4b\u4e2d": 1}, "moonlight": {"\u6708\u5149": 3, "\u771f\u7f8e": 2}, "acorns": {"\u98e2\u9913": 1, "\u8c6c": 1, "\u5922": 1, "\u5230": 1, "\u6a61\u6a39\u5b50": 1}, "secretive": {"\u4ec0\u9ebc": 1, "\u795e\u79d8": 1}, "thanked": {"\u611f\u8b1d": 3, "\u5230": 1, "\u5bf9": 1, "\u8868\u793a": 1, "\u611f\u8c22": 2, "\u9019\u500b": 1, "\u5149\u4e34": 1}, "penalty": {"\u6b7b\u5211": 2, "\u5e9f\u9664": 2}, "states": {"\u7f8e\u56fd": 1, "\u5dde": 2, "50": 1, "\u4e2a": 1}, "USA": {"\u90fd": 1, "\u88ab": 1}, "Rice": {"\u4eba\u5011": 1, "\u591a": 1, "\u96e8": 1, "\u5730\u5340": 1, "\u7a2e\u690d": 1, "\u6c34\u7a3b": 1}, "flood": {"\u6d2a\u6c34": 5, "\u8bb8\u591a": 1, "\u51b2\u8d70": 1}, "level": {"\u6d8c\u5230": 1, "\u9ad8\u5ea6": 1}, "windows": {"\u7a97\u6237": 2, "\u5f00\u7a97": 2, "\u4e0d\u8981": 1}, "positive": {"\u79ef\u6781": 2, "\u9762\u5bf9": 1, "\u4efb\u4f55": 1, "\u4e8b\u60c5": 1, "A\u578b": 1, "\u9633\u6027": 1, "\u78ba\u4fe1": 1, "\u78ba\u5b9a": 1}, "split": {"\u5e73\u5206": 1, "\u9019\u500b": 1, "\u5831\u916c": 1}, "disgusted": {"\u538c\u6076": 1}, "model": {"\u62ff": 1, "\u65b0\u6b3e": 1, "\u8eca\u4f5c": 1, "\u6bd4\u8f03": 1, "\u6f14\u5458": 1, "": 1}, "precise": {"\u5230": 1, "\u9039": 1, "\u78ba": 1, "\u5207": 1, "\u6642": 1, "\u9593": 1, "\u9084": 1}, "pardon": {"\u62b1\u6b49": 1, "\u90a3\u4e48": 1, "\u665a\u6765": 1}, "Hungarian": {"\u662f": 1, "\u5308\u7259\u5229\u4eba": 1}, "Hudson": {"\u4f4d": 1, "\u54c8\u5f97\u905c": 1, "\u6cb3": 1}, "clicked": {"\u95e8": 1, "\u5494\u54d2": 1, "\u4e00\u58f0": 1, "\u5173\u4e0a": 1}, "subway": {"\u642d": 1, "\u5730\u94c1": 2, "\u5730\u9435": 1}, "phones": {"\u73fe\u4ee3": 1, "\u4ef0\u8cf4": 1, "\u624b\u6a5f": 1}, "Skating": {"\u6e9c\u51b0": 1, "\u55dc\u597d": 2, "\u4e4b\u4e00": 2, "\u6ed1\u51b0": 1}, "Pork": {"\u732a\u8089": 1, "\u9002\u5408": 1}, "Mandarin": {"\u4e2d\u6587": 1, "\u4e0d\u597d": 1}, "April": {"\u56db\u6708": 4, "\u5230": 1, "\u660e\u5e74": 1, "\u5c31": 1, "\u6ee1": 1, "\u4e24\u5e74": 1, "\u5e74": 2, "\u65b0\u5b78": 1}, "farmer": {"\u8fb2\u592b": 1, "\u4e00\u628a": 1, "\u92f8\u5b50": 1}, "fundamental": {"\u5c0a\u91cd": 1, "\u61c9\u7576": 1}, "Respect": {"\u793e\u6703": 1, "\u57fa\u790e": 1}, "iron": {"\u5fc5\u9808": 1, "\u71a8": 1}, "spilled": {"\u7051": 1, "\u51fa\u53bb": 1, "\u6ea2\u51fa": 1, "\u53bb": 1, "\u70ba": 1, "\u6253\u7ffb": 1, "\u800c": 1, "\u6c92\u7528": 1}, "Having": {"\u56e0\u70ba": 1, "\u9ede": 1, "": 2, "\u6240\u4ee5": 1, "\u56e0\u4e3a": 1, "\u8fc7": 1, "\u6211": 1, "\u8fd9\u4e2a": 1, "\u57ce\u5e02": 1}, "claims": {"\u6e6f\u59c6\u8072": 1, "\u7a31": 1}, "typhoon": {"\u98b1": 3, "\u98a8": 3, "\u53f0\u98ce": 1, "\u5173\u7cfb": 1, "\u7684": 1, "\u4e86": 1}, "crow": {"\u96bb": 1, "\u70cf\u9d09": 1, "\u98db": 1, "\u8d70": 1}, "Crater": {"\u6700": 1, "\u85cd": 1, "\u706b\u5c71\u6e56": 1}, "tube": {"\u8acb\u8cb7": 2, "\u689d": 1, "\u5427": 1, "\u4e00\u652f": 1}, "toothpaste": {"\u7259\u818f": 3, "\u54ea\u513f": 1}, "J.F.": {"\u7ea6\u7ff0": 1, "\u7518\u8ffa\u8fea": 1, "\u5b89\u846c": 1, "\u963f\u9748\u9813": 1, "\u516c\u5893": 1}, "username": {"\u8be5": 1, "\u7528": 1, "\u77ed": 1, "\u4e00\u70b9": 1, "\u7528\u6237\u540d": 1}, "canary": {"\u91d1\u7d72\u96c0\u88ab\u4e00": 1, "\u96bb": 1, "\u8c93": 1, "\u6b7b": 1}, "Looks": {"\u770b\u6765": 1, "\u662f": 1, "\u6f2b\u957f": 1, "\u554a": 1}, "assist": {"\u4f86": 1, "\u5354\u52a9": 2}, "pupils": {"\u8fd9\u4e2a": 1, "\u6559\u6388": 1, "\u5bf9": 1, "\u5b66\u751f": 1, "\u5f88\u5927": 1, "\u5f71\u54cd\u529b": 1}, "realistic": {"\u73fe\u5be6": 1, "\u9ede": 1, "\u73b0\u5b9e": 1, "\u70b9": 1}, "humble": {"\u662f": 1, "\u8c26\u865a": 1, "\u7684": 1}, "controversial": {"\u8fd9\u4e2a": 1, "\u6709": 1, "\u4e89\u8bae": 1}, "burnt": {"\u767c\u751f": 1, "\u4e00\u5834": 1, "": 1, "\u623f\u5c4b": 1}, "meal": {"\u60a8": 1, "\u81b3\u98df": 1, "\u5403": 1, "\u5b8c\u98ef": 1, "\u518d": 1, "\u98ef": 2}, "Actually": {"\u5b9e\u9645\u4e0a": 1, "": 1}, "nephew": {"\u4f84\u5b50": 1, "\u96de\u86cb": 1, "\u904e\u654f": 1}, "allergic": {"\u5c0d": 3, "\u904e\u654f": 1, "\u85e5\u7269": 1, "\u904e": 1, "\u654f": 1}, "producers": {"\u6fb3\u5927\u5229\u4e9a": 1, "\u7535\u80fd": 1, "\u751f\u4ea7\u56fd": 1, "\u4e4b\u4e00": 1}, "Sahara": {"\u6492\u54c8\u62c9\u6c99\u6f20": 1, "\u5e7f\u88a4": 1, "\u65e0\u57a0": 1}, "smartest": {"\u4e0d\u6562\u76f8\u4fe1": 1, "\u4f60\u4eec": 1, "\u91cc\u9762": 1, "\u6700": 1}, "belly": {"\u6253": 1, "\u809a\u5b50": 1}, "Pigs": {"\u8c6c": 1, "\u8207": 1, "\u4eba\u985e": 1, "\u4e00\u4e9b": 1, "\u7279\u6027": 1, "\u76f8\u540c": 1}, "staring": {"\u5728\u770b": 1, "\u518d": 1, "\u76ef": 1, "\u7740": 1}, "tools": {"\u5de5\u5177": 2, "\u7528\u6765": 1, "\u9020": 1, "\u5e26\u8457": 1}, "apt": {"\u5f88": 1, "\u5bb9\u6613": 1, "\u9072": 1, "\u5230": 1}, "Gold": {"\u91d1\u5b50": 2, "\u6bd4\u6c34": 2, "\u91cd\u5f97": 2, "\u591a": 1}, "mysterious": {"\u8fd9\u4e2a": 2, "\u6c14\u6c1b": 2, "\u5f88": 1, "\u795e\u79d8": 2, "\u4e00\u79cd": 1}, "Edo": {"\u6c5f\u6236": 1, "\u6642\u4ee3": 1, "\u8cde": 1, "\u6708": 1, "\u5bb4\u6703": 1}, "Green": {"\u7da0\u8272": 1, "\u9069\u5408": 1}, "quarrels": {"\u8207": 1, "\u5435\u67b6": 1}, "gate": {"\u9580\u53e3": 1, "\u7b49\u8457": 1}, "spread": {"\u5857": 1, "\u53bb\u4e16": 1, "\u50b3\u904d": 1, "\u5404\u5730": 1, "\u764c\u7d30\u80de": 1, "\u5df2\u7d93": 1, "\u64f4\u6563": 1, "\u5230": 1}, "bookkeeping": {"\u6703": 1, "\u8a18": 1, "\u5e33": 1, "?": 1}, "stabbed": {"\u80cc\u4e0a": 1, "\u6233": 1, "\u4e00\u4e0b": 1}, "Frankly": {"\u5b9e\u8bdd": 1, "\u8bf4": 2, "\u6211": 1, "\u5766\u7387\u5730": 1}, "measures": {"\u91c7\u53d6": 1, "\u5f3a\u6709\u529b": 1, "\u9884\u9632\u63aa\u65bd": 1, "\u4f7f\u7528": 1, "\u5f3a\u5927": 1, "\u63aa\u65bd": 1, "\u6765": 1, "\u9884\u9632": 1}, "orphan": {"\u5b64\u513f": 1}, "poked": {"\u5dee\u9ede": 1, "\u6233": 1, "\u5230": 1}, "laws": {"\u6210\u89aa": 1, "\u7684": 1, "\u603b": 1, "\u8981": 1, "\u9075\u5b88": 1, "\u6cd5\u5f8b": 1}, "exhibition": {"\u5c55\u89c8": 1, "\u5df2\u7ecf": 1, "\u5f00\u653e": 1, "\u770b": 1, "\u5c55\u89bd": 1}, "youngsters": {"\u5e74\u8f7b\u4eba": 1}, "honesty": {"\u8cea\u7591": 1, "\u8aa0\u5be6": 1}, "newspapers": {"\u770b": 3, "\u62a5\u7eb8": 5, "\u592a": 2, "\u90a3\u5bb6": 2, "\u6742\u5fd7": 2}, "According": {"\u636e": 1, "\u5e7f\u64ad": 1, "\u91cc": 1, "\u8bb2": 1, "\u6839\u64da": 4, "\u5831\u5c0e": 1, "\u6628\u665a": 1, "": 2}, "opinions": {"\u610f\u898b": 1, "\u8fd9\u70b9": 1, "\u610f\u89c1": 1, "\u5206\u6b67": 1}, "Internet": {"\u4e92\u8054\u7f51": 1, "\u4e00\u79cd": 1, "\u65e0\u6cd5\u4f30\u91cf": 1, "\u8d44\u6e90": 1}, "Due": {"\u7531\u4e8e": 1, "\u53d8\u5dee": 1, "": 2}, "associate": {"\u5e38": 1, "\u628a": 1, "\u8054\u7cfb": 1, "\u8d77\u6765": 1, "\u500b": 1, "\u4e8b\u696d": 1, "\u5408\u5925\u4eba": 1}, "unsociable": {"\u6216\u8bb8": 1, "\u5584\u4e8e": 1, "\u793e\u4ea4": 1, "\u5e76": 1, "\u610f\u5473": 1, "\u548c": 1, "\u522b\u4eba": 1, "\u4ea4\u8c08": 1, "\u592a": 1, "\u4e0d": 1, "\u5408\u7fa4": 1}, "boxing": {"\u62f3\u51fb": 1, "\u4ed6": 1, "\u5988\u5988": 1}, "magician": {"\u9b54\u672f\u5e08": 2, "\u5438\u5f15": 1, "\u4eec": 1, "\u9b54\u6cd5\u5e08": 1}, "ease": {"\u5bb6\u91cc": 1, "\u653e\u677e": 1, "\u51cf\u8f7b": 1}, "pregnant": {"\u6000\u5b55": 1, "\u56db\u4e2a": 1, "\u4e86": 2, "\u6000": 1, "\u53cc\u80de\u80ce": 1}, "character": {"\u4e2d": 1, "\u54ea\u500b": 1, "\u89d2\u8272": 1, "\u6027\u60c5": 1, "\u53e4\u602a": 1}, "committed": {"\u64da": 1, "\u4e0a": 1, "\u4ed6": 1, "\u81ea\u6740": 1, "\u4e86": 1}, "congratulations": {"\u6216\u8bb8": 1, "\u7b2c\u4e00\u4e2a": 1, "\u7ed9": 1, "\u4f60": 1, "\u795d\u8d3a": 1, "\u4eba": 1}, "tailor": {"\u9019\u4f4d": 1, "\u88c1\u7e2b\u5e2b": 1, "\u70ba": 1, "\u897f\u88dd": 1}, "fingers": {"\u624b\u6307": 4, "\u8bd5\u56fe": 1, "\u8ba9": 1, "\u4e92\u76f8": 1, "\u4ea4\u9519": 1}, "intoxicated": {"\u9189": 1, "\u505c\u6b62": 2, "\u5047\u88c5": 2, "\u9189\u9152": 2}, "careless": {"\u522b": 1, "\u7c97\u5fc3": 1, "\u5927\u610f": 1, "\u4e0d": 1, "\u95dc\u5fc3": 1}, "Being": {"\u505a": 1, "\u8f9b\u82e6": 1, "\u8fd8": 1, "\u4e0d\u591f": 1}, "Breakfast": {"\u65e9\u996d": 2, "\u4e2d": 1, "\u4e00\u987f\u996d": 1, "\u65e9\u9910\u65f6\u95f4": 1, "\u4e03\u70b9": 1}, "4th": {"\u56db\u6a13": 1}, "Big": {"\u5927\u9c7c\u5403\u5c0f\u9c7c": 1}, "tourists": {"\u6e38\u5ba2": 1, "\u8d74": 1, "\u65c5\u6e38": 1}, "download": {"\u5047\u5982": 1, "\u6ca1\u6709": 1, "\u7a0b\u5e8f": 1, "\u5c31": 1, "\u53ef\u4ee5": 1}, "bugs": {"\u7a0b\u5f0f": 1, "\u932f\u8aa4": 1, "\u88ab": 1, "\u6539\u6b63": 1, "\u866b\u5b50": 1}, "owl": {"\u662f": 1, "\u500b\u591c": 1, "\u8c93\u5b50": 1}, "fantasy": {"\u4e00\u500b": 1, "\u5947\u5e7b": 1, "\u88e1": 1}, "responding": {"\u9019\u9ebc": 1, "\u9072": 1, "\u624d": 1, "\u56de": 1, "\u5fa9": 1}, "Nothing": {"\u4ec0\u4e48": 7, "\u6c92\u6709": 5, "\u4ec0\u9ebc": 2, "\u90fd": 2, "\u6ca1\u6709": 3, "\u4e8b": 1, "\u6ca1": 1, "\u6309": 1, "\u8def\u5b50\u8d70": 1}, "dump": {"\u7529": 1, "\u4e86": 1}, "buffet": {"\u5169": 1, "\u4eba\u4efd": 1, "\u81ea\u52a9": 1, "": 1}, "makeup": {"\u5986\u5316": 1, "\u6d53": 2, "\u5316": 2, "\u7740": 1, "\u6d53\u5986": 1}, "hates": {"\u8a0e\u53ad": 1, "\u6068": 2, "\u90fd": 1}, "carrots": {"\u80e1\u863f": 2, "\u8514": 2, "\u4f86": 1, "\u5207": 1}, "related": {"\u6751\u6c11": 1, "\u5f7c\u6b64": 1, "\u4eb2\u621a": 1, "\u548c\u5fb7\u8a9e": 1, "\u5169\u7a2e": 1, "\u76f8\u95dc": 1}, "beers": {"\u8bf7\u6765": 1, "\u4e24\u676f": 1, "\u5564\u9152": 1}, "calmed": {"\u98ce\u505c\u4e86": 1, "\u51b7\u975c": 1, "\u4e0b\u4f86": 1, "\u51b7\u9759\u4e0b\u6765": 1}, "MasterCard": {"\u53ef\u4ee5": 1, "\u7528": 1, "\u4e07\u4e8b\u8fbe": 1, "\u4fe1\u7528\u5361": 1}, "Mexico": {"\u58a8\u897f\u54e5": 3, "\u72ec\u81ea\u4e00\u4eba": 1, "\u642d": 1, "\u53bb": 1}, "shantytowns": {"\u8ca7\u6c11\u7a9f": 1}, "era": {"\u8eab": 1, "\u539f\u5b50\u80fd": 1, "\u6642\u4ee3": 2, "\u8eab\u8655": 1, "\u6838\u80fd": 1}, "sewing": {"\u8bfb": 1, "\u7ed9": 1, "\u542c": 1, "": 1, "\u53ef\u4ee5": 1}, "advantage": {"\u6765": 1, "\u597d\u597d": 2, "\u5229\u7528": 1, "\u5927": 1, "\u6240\u8981": 1, "\u4fbf\u662f": 1, "\u5343\u8f09\u96e3\u9022": 1, "\u597d": 1, "\u8655": 1}, "Olympic": {"\u5965\u8fd0\u4f1a": 1, "\u4e0d\u662f": 1, "\u83b7\u80dc": 1, "": 2}, "fake": {"\u4e70\u6765": 1, "\u753b\u662f": 1, "\u8d5d\u54c1": 1, "\u5b83\u4eec": 1, "\u5047": 2, "\u662f": 1}, "unnecessary": {"\u4e0d\u5fc5\u8981": 1, "\u610f\u89c1": 1, "": 1, "\u90a3\u4e48": 1, "\u4e00\u4e2a": 1, "\u5c31": 1}, "quality": {"\u8d27\u54c1": 1, "\u6709\u7740": 1, "\u6700\u9ad8": 1, "\u54c1\u8d28": 1}, "dyed": {"\u628a": 1, "\u67d3\u6210": 1, "\u85cd\u8272": 1, "\u67d3": 1}, "bones": {"\u624b\u65b7": 1, "\u4e9b": 1, "\u9aa8\u982d": 1}, "wild": {"\u4e1a\u4f59\u7231\u597d": 1, "\u62cd": 1, "\u91ce\u82b1": 1, "\u91ce\u517d": 1, "\u91ce\u751f\u52a8\u7269": 1}, "bakes": {"\u5468\u65e5": 1, "\u70e4": 1, "\u66f2\u5947": 1}, "tenor": {"\u5439": 1, "\u6b21": 1, "\u4e2d\u97f3": 1, "\u85a9": 1, "\u514b\u65af": 1, "\u98a8": 1}, "grandson": {"\u5b6b\u5b50": 1, "\u500b": 1}, "comfort": {"\u5b89\u6170": 2, "Tom": 1, "\u662f": 1, "\u60f3\u7740": 1, "Mary": 1}, "discussed": {"\u8a0e\u8ad6": 1, "\u9019\u500b": 1, "\u8fd9": 1, "\u6b63\u5728": 1, "\u8ba8\u8bba": 1}, "rocket": {"\u706b\u7bad": 1, "\u767c\u5c04": 1, "\u9032\u5165": 1, "\u592a\u7a7a": 1}, "rainbow": {"\u89c1\u5230": 1, "\u5f69\u8679": 1}, "blossom": {"\u82f9\u679c\u6811": 1, "\u4e0a": 1, "\u6302": 1, "\u7740": 1, "\u7f8e\u4e3d": 1, "\u82b1\u6735": 1}, "elated": {"\u771f\u662f": 1, "\u6b23\u559c\u82e5\u72c2": 1}, "puzzle": {"\u89e3\u958b": 1, "\u8b0e": 1, "\u6ca1\u4eba": 1, "\u89e3\u5f97": 1, "\u8c1c\u9898": 1, "\u89e3\u5f00": 1, "\u8c1c\u56e2": 1}, "spiders": {"\u8718\u86db": 2}, "length": {"\u957f\u5ea6": 1}, "shift": {"\u4e0a": 1, "\u591c\u73ed": 1}, "recognized": {"\u7acb\u523b": 1, "\u8a8d\u51fa": 1, "\u8072\u97f3": 1, "\u8ba4\u51fa": 2}, "drove": {"\u5f00": 1, "\u4e00\u9762": 2, "\u958b\u8eca": 1}, "suburbs": {"\u8981\u4f4f": 1, "\u90ca\u533a": 2, "\u7684\u8bdd": 1, "": 1, "\u6c7d\u8f66": 1}, "carries": {"\u5305\u91cc": 1, "\u6709": 1, "\u55b7\u5242": 1}, "pepper": {"\u80e1\u6912": 2, "\u7d66": 1, "?": 1}, "despise": {"\u5bcc\u4eba": 1, "\u4f1a": 1, "\u770b\u4e0d\u8d77": 1, "\u9119\u89c6": 1}, "execution": {"\u7f13\u671f": 1, "\u6267\u884c": 1, "\u6700\u540e": 1, "\u5173\u5934": 1, "\u51b3\u5b9a": 1, "\u4e0b\u6765": 1}, "expenses": {"\u867d\u7136": 1, "\u4f46\u662f": 1, "\u8fd8": 1, "\u5b58\u6b3e": 1, ",": 1, "": 2, "\u6240\u4ee5": 1}, "responsibilities": {"\u8d23\u4efb": 1}, "experience": {"\u7ecf\u9a8c": 3, "\u7d93\u9a57": 2, "\u4ec0\u4e48": 1, "\u4ed6\u5011": 1, "\u5bf9\u4e8e": 1, "\u65b0\u4f53\u9a8c": 1}, "sarcastic": {"\u771f": 1, "\u4f1a": 1, "\u6316\u82e6": 1, "\u4eba": 1}, "subscriptions": {"\u8a02\u8cfc": 1, "\u4eca\u5e74\u5e74\u5e95": 1, "\u652f\u4ed8\u6b3e": 1, "\u9805": 1}, "waiter": {"\u4e00\u5bb6": 1, "\u6d77\u6ee8": 1, "\u9910\u5385": 1, "\u670d\u52a1\u5458": 1}, "bent": {"\u5f2f": 1, "\u4e0b\u8170": 1, "": 1, "\u6367\u8d77": 1, "\u4e86": 1}, "grades": {"\u6210\u7e3e": 2, "\u9ad8": 1, "\u6539\u5584": 1}, "average": {"\u65bc": 2, "\u5e73\u5747\u6c34\u5e73": 2, "\u8868\u73fe": 1, "\u4f4e": 1}, "admit": {"\u627f\u8ba4": 4, "\u627f\u8a8d": 1, "\u7576\u6642": 1, "\u9ede": 1, "\u65b9\u6cd5": 1}, "draft": {"\u5728": 1, "\u5beb": 1, "\u6f14\u8b1b": 1, "\u8349\u7a3f": 1}, "tracks": {"\u8ddf\u7740": 1, "\u8e2a\u8ff9": 1}, "increase": {"\u6c7d\u8f66": 1, "\u6570\u91cf": 2, "\u589e\u957f": 2}, "Democracy": {"\u90a3\u4e9b": 1, "\u6211\u4eec": 1, "\u5c1d\u8bd5": 1, "\u8fc7": 1, "\u5f62\u6001": 1, "": 1, "\u6700\u5dee": 1}, "Mt": {"\u4e0a": 1, "\u904e": 1}, "Evidently": {"\u80af\u5b9a": 1, "\u4f1a": 1}, "apologetic": {"Tom": 1, "\u5e76": 1, "\u89c9\u5f97": 1, "\u62b1\u6b49": 1}, "knives": {"\u4e24\u628a": 1, "\u5200": 1, "\u56db\u628a": 1, "\u53c9": 1}, "bitterness": {"\u53d7\u4e0d\u4e86": 1, "\u82e6\u5473": 1}, "indigenous": {"\u8fd9\u79cd": 1, "\u690d\u7269": 1, "\u539f\u4ea7": 1, "\u4e8e": 1}, "bride": {"\u65b0\u5a18": 1, "\u597d\u50cf": 1}, "resist": {"\u62b5\u6297": 1, "\u4e0d\u4e86": 1, "\u751c\u98df": 1, "\u8bf1\u60d1": 1}, "middle": {"\u4f4d\u4e8e": 1, "\u4e2d\u5fc3": 1, "\u4e2d\u95f4": 1, "\u6709": 1, "\u4e00\u8f86": 1, "\u8def": 1, "\u4e2d\u592e": 1}, "logic": {"\u65e0\u6cd5": 1, "\u7406\u89e3": 1, "\u903b\u8f91": 4, "\u8ddf\u4e0d\u4e0a": 2}, "picks": {"\u590d\u82cf": 1, "\u8d77\u6765": 1}, "content": {"\u5c0d": 1, "\u611f\u5230": 1, "\u6eff\u610f": 1}, "dialog": {"\u6ca1\u6709": 1, "\u53c2\u4e0e": 1, "\u5bf9\u8bdd": 1}, "polar": {"\u5317\u6781\u718a": 1, "\u6b63\u5728": 1, "\u6b7b\u53bb": 1}, "hurts": {"\u80c3\u75db": 2, "\u75db": 2, "\u811a\u75db": 1, "\u771f\u75bc": 1, "\u80cc": 1, "\u6703": 1, "\u539f\u56e0": 1, "\u5934\u75db": 1}, "peel": {"\u5e6b": 1, "\u524a": 1, "\u4e00\u4e0b": 1}, "immigrants": {"\u4e00\u500b": 1, "\u79fb\u6c11": 2, "\u6539": 1}, "Sapporo": {"\u672d\u5e4c": 1, "\u5e02\u6c11": 1}, "Basho": {"Basho": 1, "\u662f": 1, "\u6700": 1, "\u5049\u5927": 1}, "developed": {"\u66b4\u98a8\u96e8": 1, "\u767c\u5c55": 1, "\u6210": 1, "\u4e00": 1, "\u500b": 1}, "toys": {"\u90a3\u5bb6": 1, "\u751f\u7522": 1, "\u73a9\u5177": 4, "\u9019\u500b": 1, "\u5c0f": 1, "\u6536\u8d77": 1}, "suitcases": {"\u5176\u4e2d": 1, "\u884c\u674e": 1, "\u4e0d\u89c1": 1}, "Divide": {"\u628a": 1, "\u62ab\u85a9": 1, "\u5206\u6210": 1, "\u4e09\u4efd": 1}, "afternoons": {"\u5468\u4e09": 1, "\u4e0b\u5348": 1, "\u6ca1\u8bfe": 1}, "Zimbabwe": {"\u6d25": 1, "\u5df4\u5e03": 1, "\u97cb": 1, "\u66fe\u7d93": 1}, "colony": {"\u6b96\u6c11\u5730": 2, "\u50cf\u662f": 1, "\u4fc4\u570b": 1}, "verify": {"\u80fd\u591f": 1, "\u8bc1\u5b9e": 1, "\u771f\u7684": 1}, "Oh": {"\u54e6": 2, "\u4e0d\u4f1a": 1, "\u5427": 1, "\u7684": 1}, "Alice": {"\u6ca1\u6709": 1, "\u7231\u4e3d\u4e1d": 1, "\u90a3\u6837": 1, "\u5986": 1}, "Ultraviolet": {"\u7d2b\u5916": 1, "\u7dda": 1, "\u53ef": 1, "\u5c0e\u81f4": 1, "\u764c": 1}, "tight": {"\u7528\u5c11": 1, "\u9810\u7b97": 1, "\u5f88\u7bc0": 1, "\u7701\u5730": 1}, "seasons": {"\u56db\u5b63": 1, "\u6700": 1, "\u5b63\u7bc0": 1}, "series": {"\u8fa6": 1, "\u4e00\u7cfb\u5217": 1, "\u97f3\u6a02\u6703": 1}, "heating": {"\u4fee": 1, "\u5fa9": 1, "\u6696": 1, "\u6c23": 1, "\u7cfb": 1, "\u7d71": 1}, "precious": {"\u4ec0\u9ebc": 1, "\u6771\u897f": 1, "\u8ddf\u611b": 1, "\u73cd\u8cb4": 1, "\u5b9d\u8d35": 1, "\u4e1c\u897f": 1}, "nearby": {"\u8001\u5a46": 1, "\u5728": 1, "\u9644\u8fd1": 1}, "buys": {"\u4e70": 2, "\u8fd9\u79cd": 1, "\u827a\u672f\u54c1": 1, "\u8cb7": 1, "\u6602\u8cb4": 1}, "Am": {"\u55ce": 2, "\u5417": 3, "\u80fd": 1, "\u8ba9": 1}, "poker": {"\u7528": 1, "\u4e00\u6574\u5929": 1, "\u6253\u6251\u514b": 1}, "Weeds": {"\u88e1": 1, "\u96dc\u8349": 1, "\u53e2\u751f": 1}, "98": {"98": 1, "\u540d": 1, "\u4eba\u751f": 1, "\u8fd8": 1}, "flies": {"\u5306\u5306": 1, "\u8d70\u8fc7": 1, "\u6642\u5149": 1, "\u98db\u901d": 1}, "arisen": {"\u51fa\u73b0": 1, "\u4e86": 1, "\u56f0\u96be": 1}, "Fresh": {"\u65b0\u9bae": 2, "\u6700": 1, "\u68d2": 1}, "fruits": {"\u6c34\u679c": 1, "\u6709\u76ca\u5065\u5eb7": 1}, "donuts": {"\u6bcf\u4e2a": 1, "\u661f\u671f\u65e5": 1, "\u793c\u62dc": 1, "\u5b8c": 1, "\u751c\u751c": 1, "\u5708": 1}, "wink": {"\u4e00\u591c": 1, "\u6c92": 1, "\u95d4\u773c": 1, "\u6c92\u7761": 1}, "attach": {"\u5fc5\u987b": 1, "\u8d34": 1, "\u5728": 1, "\u7533\u8bf7\u4e66": 1, "\u4e0a": 1}, "Theory": {"\u7406\u8bba": 1, "\u5f97": 1, "\u8054\u7cfb\u5b9e\u9645": 1}, "string": {"\u628a": 1, "\u7e69\u5b50": 1, "\u52a0\u5728": 1, "\u9019\u500b": 2}, "meadow": {"\u725b": 1, "\u7267\u8349": 1}, "Canadian": {"\u662f": 3, "\u52a0\u62ff\u5927\u4eba": 5, "Tom": 1, "\u548c": 1, "\u53ef\u80fd": 1}, "fan": {"\u6253\u958b": 1, "\u96fb\u98a8": 1, "\u6247": 1, "\u4e00\u968a": 1, "\u8ff7": 1, "?": 1}, "40,000": {"\u9019\u4ef6": 1, "\u82b1": 1, "40000": 1}, "survived": {"\u4e00": 1, "\u5016": 1, "\u514d": 1, "\u65bc": 1, "\u96e3": 1, "\u8fd9\u6b21": 1, "\u5e78\u5b58": 1, "\u4e0b\u6765": 1}, "congratulated": {"\u795d\u8cc0": 1, "\u52dd\u5229": 1}, "jar": {"\u8d77": 1, "\u7f50\u5b50": 1, "\u6807\u7b7e": 1}, "unanimously": {"\u8463\u4e8b\u4f1a": 1, "\u4e00\u81f4": 1, "\u4efb\u547d": 1, "\u4e3a": 1, "\u6267\u884c": 1, "\u603b\u88c1": 1}, "veterinary": {"Tom": 1, "\u7378": 1, "\u91ab": 1}, "background": {"\u80cc\u666f": 2}, "gawking": {"\u518d": 1, "\u50bb": 1, "\u770b\u7740": 1}, "pleasure": {"\u5171\u4e8b": 1, "\u6109\u5feb": 1, "\u8363\u5e78": 1, "\u6a02\u8da3": 1, "\u5c31\u662f": 1}, "fireplace": {"\u6642\u9418": 1, "\u5728": 1, "\u58c1\u7210": 1, "\u4e0a\u65b9": 1}, "hunter": {"\u730e\u4eba": 1, "\u5c04\u6b7b": 1, "\u7375\u4eba": 1, "\u6bba": 1}, "ahead": {"\u5728": 2, "\u524d\u9762": 2, "\u54b1\u4eec": 1, "\u5403\u996d": 1, "\u7e7c\u7e8c": 1, "\u524d": 1, "\u9032": 2, "\u5411\u524d": 1}, "adult": {"\u5927\u4eba": 1}, "shared": {"\u5171\u7528": 1, "\u9019\u9593": 1}, "fabulous": {"\u771f\u662f": 1, "\u6781\u597d": 1}, "prophecy": {"\u9884\u8a00": 1, "\u80fd\u529b": 1}, "electric": {"\u96fb\u5b50": 1}, "protection": {"\u4fdd\u8b77": 1}, "frequent": {"\u7ecf\u5e38": 1, "\u6765": 1, "\u8fd9\u4e2a": 1}, "vegetable": {"\u70ba": 1, "\u852c\u83dc": 1}, "slightest": {"\u6ca1\u6709": 1, "\u4e00\u70b9": 1, "\u5ff5\u5934": 1}, "misunderstood": {"\u4efb\u4f55": 1, "\u4e8b": 1, "\u88ab": 1, "\u8aa4\u89e3": 1}, "Hurry": {"\u5feb\u9ede": 3, "\u8d95\u5feb": 1, "!": 1, "\u5feb\u70b9": 3, "": 3, "\u4e0d\u7136": 1, "\uff01": 1, "\u4f60": 2, "\u5c31": 1, "\u8acb": 1, "\u8d76\u5feb": 1, "\u6703": 1}, "aid": {"\u522b\u5fd8\u4e86": 1, "\u5e26\u4e0a": 1, "\u6025\u6551\u7bb1": 1}, "watered": {"\u82b1\u56ed\u91cc": 1, "\u6d47\u6c34": 1}, "camping": {"\u9732\u8425": 1, "\u9732\u71df": 2, "\u5979": 1}, "beautifully": {"\u800c\u4e14": 1, "\u821e": 1, "\u5f97": 1, "\u5f88\u7f8e": 1}, "unwell": {"\u611f\u89c9": 1, "\u4e0d": 1, "\u8212\u670d": 1}, "But": {"\u4f46": 1, "\u533a\u522b": 1}, "watermelon": {"\u746a\u9e97\u5a6d": 1, "\u62b1\u8457": 1, "\u897f\u74dc": 3, "\u9019\u500b": 1, "\u4e00\u79cd": 1}, "construction": {"\u6b63\u5728": 1, "\u5efa": 1}, "stepped": {"\u8e29": 1, "\u8173": 1}, "Wine": {"\u8461\u8404\u9152": 2, "\u7528": 1, "\u505a\u6210": 1}, "digestion": {"\u5e6b": 1, "\u52a9\u6d88\u5316": 1}, "creature": {"\u4ea7\u7269": 1}, "develop": {"\u570b\u5bb6": 1, "\u958b\u767c": 1}, "nieces": {"\u5916\u7525\u5973": 1, "\u8fd9": 1, "\u4f84\u5973": 1}, "deceived": {"\u76f4\u5230": 1, "": 1, "\u4ed6": 2, "\u624d": 1, "\u5230": 1, "\u88ab": 1, "\u9a19": 1}, "moons": {"\u885b\u661f": 2}, "drowsy": {"\u8b8a\u5f97": 1, "\u660f\u660f\u6b32\u7761": 1}, "castles": {"\u5317\u90e8": 1, "\u7f8e\u9e97": 1, "\u57ce\u5821": 1, "\uff1f": 1}, "shattered": {"\u88ab": 1, "\u6253\u788e": 1}, "evident": {"\u5f88": 1, "\u660e\u986f": 1, "\u9019": 1, "\u4e0d\u8b49": 1, "\u81ea\u660e": 1}, "funerals": {"\u4e0a\u4e2a\u6708": 1, "\u53c2\u52a0": 1, "\u4e09\u573a": 1, "\u846c\u793c": 1}, "hiccuping": {"\u505c\u6b62": 2, "\u6253\u55dd": 2}, "coal": {"\u7b2c\u4e94": 1, "\u5927": 1, "\u7164\u70ad": 1, "\u4ea7\u5730": 1}, "occasionally": {"\u5076\u5c14": 5, "\u4f1a": 4, "\u6765": 1, "\u62dc\u8bbf": 1, "\u5076\u53d1\u4e8b\u4ef6": 1}, "snack": {"\u8db3\u5920": 1, "\u5403": 2, "\u4e00\u4e0b": 1, "\u9ede": 1, "\u5fc3": 1, "\u7576": 1, "\u96f6\u98df": 1}, "agreeable": {"\u4ee4\u4eba": 1, "\u6109\u5feb": 1, "\u4e2a": 1, "\u597d\u813e\u6c14": 1}, "personal": {"\u7d66": 1, "\u8cb7": 1, "\u500b": 1, "\u4eba": 1, "\u6536": 1, "\u79c1\u4eba": 1, "\u89aa\u81ea": 1, "\u904e\u554f": 1, "\u6b64\u4e8b": 1}, "current": {"\u9006\u6d41": 1, "\u822a\u884c": 1}, "By": {"\u987a\u4fbf": 2, "\u8bf4": 3, "\u4e00\u53e5": 2, "\u95ee": 1, "\u5bf9": 3, "": 2, "\u4e86": 1, "\u9806\u4fbf": 1, "\u7d66": 1, "\u8b1b\u4ef6": 1, "\u8bdd": 1, "\u542c\u8bf4": 1}, "ballpoint": {"\u80fd": 1, "\u7528": 1, "\u5706\u73e0\u7b14": 1, "\u5417": 1}, "cage": {"\u8ba4\u4e3a": 1, "\u8fd9": 1, "\u50cf": 1, "\u4e2a": 1, "\u9e1f\u7b3c": 1}, "foolish": {"\u8be5": 1, "\u8fd9\u79cd": 1, "\u611a\u8822": 1, "\u771f\u7b28": 1, "\u50bb": 1}, "honors": {"\u5149\u69ae": 1, "\u5730": 1}, "ancient": {"\u53e4\u5efa\u7b51": 1}, "extremely": {"\u7121\u6cd5": 1, "\u8868\u9054": 1, "\u5c0d": 1, "\u611f\u8b1d": 1, "\u975e\u5e38": 1}, "Twitter": {"Twitter": 3}, "desired": {"\u79bb": 1, "\u8981\u6c42": 1, "\u592a": 1, "\u8fdc": 1}, "Fear": {"\u6050\u60e7": 1, "\u5f88\u5feb": 1, "\u53d8\u6210": 1}, "anger": {"\u6124\u6012": 2, "\u6ca1\u6cd5": 1, "\u538b\u6291": 1, "\u81ea\u5df1": 1, "\u6012\u706b": 1}, "joined": {"\u53c2\u52a0": 1, "\u8ba8\u8bba": 1}, "cub": {"\u5c0f\u8001\u864e": 1, "\u770b\u8d77": 1, "\u4f86": 1, "\u50cf": 1, "\u96bb": 1, "\u8c93": 1}, "grumpy": {"\u813e\u6c14": 2, "\u4e0d\u592a\u53ef\u80fd": 1, "\u90a3\u4e48": 1, "\u574f": 1, "\u66b4\u8e81": 1}, "swallow": {"\u53ea": 1, "\u71d5\u5b50": 1, "\u7fc5\u8180": 1, "\u53d7\u4f24": 1}, "expectations": {"\u6ca1\u6709": 1, "\u8f9c\u8d1f": 1, "\u671f\u671b": 2}, "shade": {"\u6a39\u852d": 2, "\u4e0b": 2}, "spinning": {"\u81ea\u4f20": 1}, "generally": {"\u4e00\u822c": 2, "\u901a\u5e38": 1, "\u6211": 1, "\u65e9\u9910": 1, "\u5927\u81f4": 2, "\u4e0a": 1}, "escaping": {"\u5728": 1, "\u9003\u8dd1": 1}, "contact": {"\u8fc7\u53bb": 1, "\u8054\u7cfb": 3}, "Mix": {"\u628a": 1, "\u9eb5": 1, "\u7c89": 1, "\u5169": 1, "\u9846": 1, "\u96de": 1, "\u6df7\u5408": 1}, "Day": {"\u5723\u8a95\u7bc0": 1, "\u6bcd": 1, "\u89aa\u7bc0": 1}, "respect": {"\u5c0a\u656c": 4, "\u5e74\u8f7b\u4eba": 1, "\u8001\u4eba": 1}, "elderly": {"\u957f\u8f88": 1}, "everywhere": {"\u6211\u4ec0\u9ebc": 1, "\u5730\u65b9": 1, "\u90fd": 3, "\u904e": 1, "": 1, "\u7e3d\u662f": 1, "\u8ddf\u8457": 1, "\u53bb": 1, "\u54ea\u91cc": 1}, "enabled": {"\u667a\u6167": 1, "\u4f7f": 1, "\u80fd": 1, "\u8655\u7406": 1, "\u9019\u500b": 1}, "layout": {"\u6539": 2, "\u4e00\u4e0b": 2, "\u7248\u9762\u8bbe\u8ba1": 1, "\u5e03\u5c40": 1}, "website": {"\u7f51\u7ad9": 3}, "sunset": {"\u9019\u9ebc": 1, "\u7f8e\u7684": 1, "\u5915\u967d": 2, "\u7f8e\u9e97": 1, "": 1}, "patio": {"\u53bb": 1, "\u9732\u53f0": 1, "\u9662\u5b50": 1, "\u88e1": 1, "?": 1}, "majors": {"\u4e3b\u4fee": 1, "\u82f1\u570b": 1, "\u6587\u5b78": 1}, "ridiculous": {"\u82b1\u5149": 1, "\u6703": 1, "\u5f88": 1, "\u8352\u8b2c": 1}, "talkative": {"\u5065\u8c08": 1, "": 2}, "pockets": {"\u628a\u624b": 1, "\u63d2\u9032": 1, "\u53e3\u888b": 1, "\u88e1": 1}, "Abraham": {"\u4f2f": 1, "\u62c9\u7f55": 1, "\u00b7": 1, "": 2, "\u7f8e\u56fd": 1, "\u7b2c": 1, ",": 1, "\u751f\u4e8e": 1}, "president": {"16": 1, "\u603b\u7edf": 3}, "tremble": {"\u611f\u89ba": 1, "\u5230": 1, "\u5728": 1, "\u9707\u52d5": 1}, "Snow": {"\u50cf": 1, "\u767d\u96ea\u516c\u4e3b": 1, "\u4e00\u6a23": 1}, "owed": {"\u628a": 1, "\u6b20": 1, "\u8fd8\u7ed9": 1}, "snobbish": {"\u6709": 1, "\u4e00\u70b9": 1, "\u52bf\u5229": 1}, "conclusions": {"\u53ef\u4ee5": 1, "\u5984\u4e0b": 1, "\u7d50\u8ad6": 1}, "questioned": {"\u88ab": 1, "\u76d8\u95ee": 1}, "Lesson": {"\u7b2c\u5341": 1, "\u8ab2": 1, "\u8b80\u8d77": 1, "\u4ece": 1, "\u7b2c\u5341\u8bfe": 1}, "B.": {"\u8bf7": 1, "\u4e00\u6761": 1, "A": 1, "\u5230": 1, "B": 1, "\u7ebf": 1}, "Draw": {"\u753b": 2}, "visa": {"\u7c3d\u8b49": 1, "\u6709\u6548\u671f\u9650": 1, "\u9057\u61be": 1, "\u5730": 1, "\u542c\u8bf4": 1, "": 1, "\u6ca1": 1, "\u80fd": 1}, "pipe": {"\u7834\u88c2": 1, "\u6c34\u7ba1": 1, "\u50be\u7009": 1, "\u800c": 1, "\u51fa": 1}, "Afraid": {"\u6015": 1, "\u50b7\u5bb3": 1, "": 1}, "races": {"\u770b": 1, "\u6bd4\u8d5b": 1}, "Karaoke": {"\u5361\u62c9": 1, "OK": 1, "\u5c0d": 1, "\u6e1b\u8f15": 1, "\u58d3\u529b": 1, "\u6709\u76ca": 1}, "forgets": {"\u4ece\u6ca1": 1, "\u5fd8\u8bb0": 1, "\u5468\u5e74": 1, "\u7eaa\u5ff5\u65e5": 1, "\u9001\u7ed9": 1}, "returns": {"\u5728": 1, "\u4e0b\u4e2a\u661f\u671f": 1, "\u4e00": 1, "\u56de\u6765": 1}, "arrests": {"\u6839\u672c": 1, "\u5c31": 1, "\u6ca1": 1, "\u5b9e\u65bd": 1, "\u902e\u6355": 1, "\u884c\u52a8": 1}, "characteristic": {"\u51ed": 1, "\u97e7\u6027": 1, "\u514b\u670d": 1, "\u56f0\u96be": 1}, "Printing": {"\u6cb9\u58a8": 1, "\u5feb\u6ca1\u4e86": 1}, "screwed": {"\u641e\u7838": 1, "\u7b2c\u4e00": 1, "\u500b": 1, "\u97f3\u7b26": 1}, "smelled": {"\u623f\u91cc": 2, "\u6709": 2, "\u80a1": 2, "\u70df\u5473": 2, "\u95fb": 1, "\u8d77\u6765": 1}, "whining": {"\u518d": 1, "\u57cb\u6028": 1}, "festival": {"\u4e92\u5e2e\u4e92\u52a9": 1, ",": 1, "": 2, "\u628a": 1, "\u6821\u5e86": 1, "\u641e": 1}, "universe": {"\u5b87\u5b99": 1, "\u6d69\u701a": 1, "\u7121\u908a": 1}, "classical": {"\u6bd4\u8f03": 1, "\u4e00\u500b": 1, "": 3, "\u9084": 1, "\u559c\u6b22": 2, "\u65f6\u5019": 1, ",": 1}, "knock": {"\u8fdb\u6765": 2, "\u6572\u95e8": 3, "\u6572\u9580\u8072": 1}, "rate": {"\u532f\u7387": 1, "\u591a\u5c11": 1}, "New": {"\uff01": 2}, "Getting": {"\u5f88": 1, "\u96be": 1}, "undressed": {"\u8131\u5149": 1, "\u7761\u89c9": 1}, "thrilling": {"\u9a0e\u99ac": 1, "\u5f88": 1, "\u4ee4\u4eba": 1, "\u8208\u596e": 1}, "statesman": {"\u8fd9\u4e2a": 1, "\u5b69\u5b50": 1, "\u540e": 1, "\u6210\u4e3a": 1, "\u4e00\u4e2a": 1, "\u4f1f\u5927": 1, "\u653f\u6cbb\u5bb6": 1}, "firm": {"\u516c\u53f8": 2, "\u6709": 1, "\u575a\u5b9a": 1, "\u5bf9": 1, "\u4e00\u4e2a": 1, "\u5de8\u5927": 1}, "lack": {"\u7f3a\u4e4f": 2, "\u8d44\u672c": 1, "\u5012\u95ed": 1}, "Saturn": {"\u7e5e\u8457": 1, "\u571f\u661f": 1, "\u904b\u884c": 1}, "paradise": {"\u8fd9\u4e2a": 2, "\u5c9b": 1, "\u4eec": 1, "\u5929\u5802": 2}, "businessman": {"\u770b\u6765": 1, "\u662f": 1, "\u4e2a": 1, "\u5f88": 1, "\u5546\u4eba": 1}, "marks": {"\u6210\u7ee9": 1, "\u53d6\u5f97": 1, "\u512a\u7570": 1, "\u6210\u7e3e": 1}, "breaks": {"\u8eca\u5b50": 1, "\u58de": 1, "\u6211\u5011": 1}, "adults": {"\u5df2": 1, "\u6210\u5e74\u4eba": 1, "\u6210\u4eba": 2, "\u8868\u73b0": 1, "\u5f97": 1, "\u513f\u7ae5": 1, "\u90a3\u79cd": 1}, "extent": {"\u5728": 2, "\u4e00\u5b9a": 1, "\u7a0b\u5ea6": 2, "\u4e0a": 2, "\u610f\u898b": 1, "\u67d0\u79cd\u7a0b\u5ea6": 1, ",": 1, "": 1, "\u8ba4\u540c": 1}, "decorated": {"\u7528": 1, "\u73ab\u7470\u82b1": 1, "\u88c5\u9970": 1}, "emphasize": {"\u61c9\u8a72": 1, "\u91cd\u8996": 1, "\u90a3\u500b": 1}, "text": {"\u7ed9\u6211\u53d1": 1, "\u4e00\u6761": 1, "\u77ed\u4fe1": 1}, "worries": {"\u5f88": 1, "\u62c5\u5fc3": 1, "\u95ee\u9898": 1}, "cubed": {"\u7acb\u65b9": 1, "\u4e8c\u5341\u4e03": 1}, "span": {"\u8774\u8776": 1, "\u5bff\u547d\u77ed": 1}, "Halley": {"\u54c8\u96f7\u5f57\u661f": 1, "\u5c07": 1, "2061": 1}, "turkey": {"\u53ea": 1, "\u706b\u9e21": 1, "\u706b\u96de": 1, "\u7a81\u7136": 1, "\u7136\u540e": 1}, "lotion": {"\u80cc\u4e0a": 1, "\u6d82": 1, "\u4e9b": 1, "\u9632\u6652\u971c": 1}, "press": {"\u5225": 1, "\u9215": 1}, "pulse": {"\u8109\u640f": 2, "\u8108\u640f": 1, "\u6b63\u5e38": 1}, "nowhere": {"\u65e0\u5904\u53ef\u53bb": 1}, "yard": {"\u4e00\u500b": 1, "\u9662\u5b50": 3}, "disregarded": {"\u4e0d": 1, "\u9867": 1, "\u5fe0\u544a": 1}, "roughly": {"\u7ea6": 1, "\u56db\u500d": 1, "\u4e8e": 1}, "addressed": {"\u5c01\u4fe1": 2, "\u5bc4": 1, "\u7d66": 1}, "wrongly": {"\u5bc4\u9519": 1, "\u5730\u65b9": 1, "\u4e86": 1}, "apologized": {"\u70ba": 1, "\u6240": 1, "\u4e8b": 1, "\u9053\u6b49": 1}, "predicting": {"\u9884\u6d4b": 1, "\u80dc\u9009\u8005": 1, "\u505a\u5f97\u597d": 1}, "frog": {"\u88e1\u6709\u4e00": 1, "\u96bb": 2, "\u9752\u86d9": 2, "\u5403\u4e00": 1, "\u6d3b": 1, "": 1, "\u4f60": 1, "\u4e00\u5929": 1, "\u5176\u4ed6": 1, "\u7684": 1, "\u6642\u9593": 1}, "Demand": {"\u8fd9": 1, "\u51e0\u5e74": 1, "\u5bf9": 1, "\u4f5c\u4e1a": 1, "\u7597\u6cd5": 1, "\u9700\u6c42": 1, "\u8fc5\u901f": 1, "\u589e\u957f": 1}, "parking": {"\u505c\u8f66\u573a": 1, "\u514d\u8d39": 1}, "Reading": {"\u770b\u4e66": 1, "\u5f88": 1, "\u6709\u610f\u601d": 1}, "flame": {"\u706b": 1, "\u8f49\u5c0f": 1, "\u4e00\u9ede": 1}, "electrical": {"\u96fb\u5b50": 1}, "poisoner": {"\u5dee": 1, "\u52c1": 1, "\u4e0b\u6bd2": 1, "\u8005": 1, "\u65bc": 1, "\u4ed6\u5011": 1, "\u610f\u5716": 1}, "loss": {"\u60a8": 1, "\u5f25\u8865": 2, "\u635f\u5931": 3}, "blessing": {"\u628a": 1, "\u5f53\u4f5c": 1, "\u6069\u60e0": 1}, "edge": {"\u4e0d\u80fd": 1, "\u62ff": 1, "\u7740": 1, "\u7aef": 1}, "inn": {"\u706b\u8b66": 1, "\u767c\u751f": 1, "\u4f4f": 1, "\u65c5\u9928": 1}, "Four": {"\u56db\u5104": 1, "\u4ee5": 1, "\u4f5c\u70ba": 1, "4": 1, "\u4e0d\u5e78": 1, "\u6570\u5b57": 1}, "mission": {"\u500b": 1, "\u4efb\u52d9": 1, "\u9009": 1, "\u6765": 1, "\u505a": 1, "\u4efb\u52a1": 1}, "melt": {"\u5851\u6599": 1, "\u76d8\u5b50": 1, "\u70e4\u7bb1": 1, "\u91cc": 1, "\u4f1a\u5316": 1}, "swarm": {"\u4e00": 1, "\u7aa9": 1, "\u9ec3\u8702": 1, "\u8972\u64ca": 1, "\u5011": 1}, "Jesus": {"\u8036\u7a4c": 2}, "Rio": {"\u5982\u679c": 1, "\u8fdc\u79bb": 1, "\u533a\u57df": 1, ",": 1, "": 2, "\u91cc\u7ea6\u70ed\u5185\u5362": 1}, "News": {"\u5ee3\u64ad": 1, "\u5145\u65a5": 1, "\u8457\u6709": 1, "\u95dc": 1, "\u6700\u8fd1": 1, "\u65b0\u805e": 1}, "created": {"\u4eba\u751f": 1, "\u6765": 1, "\u5e73\u7b49": 1}, "posters": {"\u6d77\u62a5": 1, "\u90fd": 1, "\u5230": 1, "\u53bb": 1}, "available": {"\u6709\u7a7a": 1, "\u5269": 1}, "shuffle": {"\u4ed4\u7ec6": 1, "\u6d17\u724c": 1}, "robber": {"\u6293\u8457": 1, "\u5c0f\u5077": 1, "\u80f3\u818a": 1}, "snoring": {"\u7761\u7740": 1, ",": 1, "": 2, "\u6253\u547c\u58f0": 1}, "talent": {"\u4e0d\u7981": 1, "\u6b23\u8cde": 1, "\u624d\u83ef": 1}, "koala": {"\u70ba": 1, "\u7121": 1, "\u5c3e": 1, "\u718a": 1, "\u62cd\u7167": 1}, "Brazil": {"\u5df4\u897f": 3, "\u8fdc\u9053\u800c\u6765": 1, "\u9060": 1, "\u9053": 1, "\u800c": 1}, "Brasilia": {"\u9996\u90fd": 1, "\u5df4\u897f\u5229\u4e9a": 1}, "altogether": {"\u4e26": 1, "\u5b8c\u5168": 1}, "temper": {"\u813e\u6c14": 1, "\u6709\u70b9": 1, "\u574f": 1, "\u518d\u4e5f": 1, "\u5fcd\u4e0d\u4f4f": 1, "\u6c14": 1}, "apology": {"\u5173\u4e8e": 1, "\u90a3\u4ef6\u4e8b": 1, "\u9053\u6b49": 3, "\u6536\u5230": 1, "\u8fc7": 1, "\u4f60\u4e2a": 1}, "fireworks": {"\u7130\u706b": 1, ",": 1, "\u6211\u4eec": 1, "\u6865\u4e0a": 1, "\u5f97": 1}, "spectacular": {"\u771f": 1, "\u58ee\u89c2": 1}, "AI": {"AI": 1, "": 1}, "hall": {"\u5e02\u653f": 1, "\u5ef3": 1, "\u5e02\u653f\u5e9c": 2, "\u8d70\u5eca": 2, "\u88e1": 3, "\u5927\u5ef3": 1, "\u4e00\u652f": 1, "\u4e00\u90e8": 1}, "mist": {"\u4e00\u8258\u8239": 1, "\u4ece": 1, "\u96fe": 1, "\u4e2d": 1}, "bowl": {"\u7897": 3, "\u76db": 1, "\u65c1\u8fb9": 1}, "mislead": {"\u4e0d\u60f3": 1, "\u8aa4\u5c0e": 1}, "CD": {"CD": 5, "\u64ad\u653e": 3, "\u6a5f": 3, "\u4e00\u5c0f": 1, "\u90a3": 1, "\u5f97\u5230": 2}, "elephant": {"\u5927\u8c61": 3, "\u653b\u51fb": 1}, "ray": {"\u7247": 2, "\u663e\u793a": 1, "\u4e24\u6839": 1, "\u65ad": 1, "\u89c2\u5bdf": 1}, "required": {"\u5fc5\u987b": 1, "8": 1}, "sounds": {"\u5bf9": 1, "\u6765\u8bf4": 1, "\u807d": 3, "\u8d77\u4f86": 3, "\u5f88": 1, "\u4e0d\u932f": 1, "\u500b": 1}, "Publication": {"\u53d1\u8868": 1, "\u88ab": 1, "\u9884\u5b9a": 1, "\u90a3\u5929": 1}, "tuned": {"\u53f0": 1, "\u7434": 1, "\u5e94\u8be5": 1, "\u597d\u591a\u5e74": 1, "\u6ca1\u8c03": 1, "\u8fc7\u97f3": 1}, "billionaire": {"\u7e3d": 1, "\u68a6\u60f3": 1, "\u8457\u6210": 1, "\u70ba": 1, "\u5104\u842c": 1, "\u5bcc\u7fc1": 1}, "dreamed": {"\u662f": 1, "\u68a6": 1, "\u5230": 1}, "kettle": {"\u8336": 1, "\u58fa": 1, "\u6cb8": 1}, "launched": {"\u5bf9": 1, "\u53d1\u8d77": 1}, "attack": {"\u653b\u51fb": 2, "\u5fc3\u81df\u75c5": 1, "\u767c\u4f5c": 1, "\u4e86": 1, "\u5fc3\u810f\u75c5": 1}, "wages": {"\u7f77": 1, "\u5de5\u662f": 1, "\u6c92\u6709": 1, "\u5de5\u8cc7": 1}, "improved": {"\u6539\u5584": 2, "\u6709": 1, "\u9032\u6b65": 1, "\u5728": 1, "\u4e0b": 1, "\u7684": 1, "\u6cd5\u8bed": 1}, "manufactures": {"\u8fd9\u5bb6": 1, "\u751f\u4ea7": 1, "CD\u673a": 1}, "captivity": {"\u88ab": 1, "\u56da\u7981": 1, "\u4e86": 1}, "field": {"\u767c\u73fe": 1, "\u5be6\u5730": 1, "\u8003\u5bdf": 1, "\u6709": 1, "\u610f\u7fa9": 1}, "educational": {"\u6559\u80b2": 2}, "Actinium": {"\u9515": 1, "1899": 1, "\u5e74": 1, "\u4ed6": 1}, "description": {"\u5b83": 1, "\u7f8e": 1, "\u5f97": 2, "\u98a8": 1, "\u666f\u7f8e": 1, "\u7121\u6cd5": 1, "\u5f62\u5bb9": 1}, "Islam": {"\u4f0a\u65af": 1, "\u862d\u6559": 1, "\u5927\u7d04": 1, "\u4e03": 1, "\u4e2d": 1, "\u50b3\u5230": 1}, "energetic": {"\u6709\u70b9": 1, "\u6d3b\u6cfc": 1}, "stepping": {"\u9032\u5165": 1, "\u5340": 1}, "Mona": {"\u8499\u5a1c\u4e3d\u838e": 1, "\u6709\u7740": 1, "\u795e\u79d8": 1}, "temples": {"\u53e4\u5edf": 1}, "negotiation": {"\u8c08\u5224": 1, "\u4e2d\u6b62": 1}, "poisonous": {"\u6709\u6bd2": 1, "\u55ce": 1}, "bottles": {"\u820a": 1, "\u74f6\u5b50": 1, "\u6bcd\u4eb2": 1, "\u4e24\u74f6": 1, "\u6a59\u6c41": 1}, "departure": {"\u98a8\u66b4": 1, "\u63a8\u9072": 1, "\u8d77\u7a0b": 1}, "brighter": {"\u4e00\u500b": 1, "\u5927\u5b78": 1, "\u751f": 1, "\u6bd4": 1, "\u4ed6\u5011": 1}, "Rhine": {"\u840a\u8335": 2, "\u6cb3\u6d41": 2, "\u7d93": 2, "\u570b\u754c": 2}, "massive": {"\u6240": 1, "\u5927\u578b": 1, "\u6784\u9020": 1}, "basic": {"\u57fa\u672c": 3}, "rocks": {"\u5f80": 1, "\u77f3\u982d": 1}, "precedent": {"\u958b": 1, "\u5148\u6cb3": 1}, "1880": {"1880": 1, "\u5e74\u4ee3": 1, "\u91c7\u53d6": 1, "\u4e00\u79cd": 1, "\u793e\u4f1a\u4fdd\u969c": 1}, "onions": {"\u9664\u4e86": 1, "\u6d0b\u8471": 2, "\u8471": 1}, "coughing": {"\u53c8": 1, "\u5728": 1, "\u54b3\u55fd": 1}, "pig": {"\u66fe\u7ecf": 1, "\u50cf": 2, "\u732a": 2, "\u4e00\u6837": 2, "\u522b": 1, "\u731b\u5403": 1, "\u4e1c\u897f": 1}, "raising": {"\u63d0\u9ad8": 1, "\u6536\u8cbb": 1}, "Lift": {"\u8209\u8d77": 1, "\u53f3\u81c2": 1}, "Bible": {"\u5723\u7ecf": 2, "\u91cc": 1, "\u6709": 1, "\u4e00\u53e5": 1, "\u8bdd": 1, "": 1, "\u201c": 1, "\u4eba": 1, "\u4e0d\u80fd": 1}, "bush": {"\u4e0d\u8981": 1, "\u62d0\u5f4e\u62b9\u89d2": 1}, "defects": {"\u9019\u500b": 1, "\u7cfb\u7d71": 1, "\u6709\u4e9b": 1, "\u7f3a\u9677": 1}, "apart": {"\u628a": 2, "\u62c6\u5f00": 1, "\u8fd9\u4e2a": 1, "\u6298": 1, "\u6563\u67b6": 1}, "Jupiter": {"\u6728\u661f": 1, "\u592a\u967d\u7cfb": 1, "\u4e2d": 1}, "Einstein": {"\u56e0\u65af": 1, "\u5766": 1, "\u559c\u6b61": 1}, "pirates": {"\u6d77\u76dc": 1, "\u5011": 1, "\u4e0a": 1}, "mouths": {"\u8a72\u5c11": 1, "": 1, "\u90a3\u9ebc": 1, "\u6211\u5011": 1, "\u5f97\u5230": 1, "\u5169\u500b": 1, "\u5634\u5df4": 1, "\u96bb": 1}, "disappearance": {"\u5fc5\u987b": 1, "\u8c03\u67e5": 1, "\u5931\u8e2a\u6848": 1}, "overtime": {"\u8981": 1, "\u52a0\u73ed": 4, "\u5fc5\u9808": 1}, "freezing": {"\u5929\u6c23": 1, "\u597d": 1, "\u51b7": 1}, "pretending": {"\u684c\u524d": 1, "": 1, "\u88c5\u4f5c": 1}, "ugly": {"\u53c8": 2, "\u820a": 1, "\u96e3": 2, "\u770b": 2, "\u5f88": 1}, "fairies": {"\u795e\u8a71\u50b3\u8aaa": 1, "\u55ce": 1}, "imitation": {"\u4e00\u500b": 1, "\u4eff\u9020\u54c1": 1}, "deliver": {"\u4f60\u4eec": 1, "\u5468\u65e5": 1, "\u9001\u8d27": 1, "\u904b\u9001": 1}, "necktie": {"\u7d66": 1, "\u9019\u689d": 1, "\u9818\u5e36": 1}, "candles": {"\u5439\u706d": 1, "\u8721\u70db": 2, "\u6570\u4ee5\u5343\u8ba1": 1, "\u70b9\u4eae": 1}, "volumes": {"\u90a3": 1, "\u672c\u8bcd\u5178": 1, "\u5206\u4e3a": 1, "\u4e24\u5377": 1}, "organic": {"\u548c\u739b\u4e3d": 1, "\u62e5\u6709": 1, "\u4e00\u4e2a": 1, "\u5c0f\u578b": 1, "\u6709\u673a": 1}, "demonstration": {"\u51e0\u5341\u4e2a": 1, "\u5e74\u8f7b\u4eba": 1, "\u793a\u5a01\u6e38\u884c": 1}, "Several": {"\u4e86": 2}, "retract": {"\u64a4\u56de": 1, "\u4e4b\u524d": 1, "\u9648\u8ff0": 1}, "postcards": {"Tom": 1, "\u660e\u4fe1\u7247": 1, "\u7d66": 1}, "flatly": {"\u65b7\u7136": 1, "\u5730": 1, "\u9032\u53bb": 1}, "damaged": {"\u5c4b\u9802": 1, "\u66b4\u98a8\u96e8": 1, "\u640d\u58de": 1}, "mastered": {"\u7121\u6cd5": 2, "\u5de6\u53f3": 2, "\u5c31": 2, "\u88ab": 2, "\u638c\u63e1": 2}, "miracle": {"\u4e00\u4e2a": 1, "\u5947\u8ff9": 1}, "Kill": {"\u6bba": 1, "\u4e86": 1}, "invested": {"\u4f01\u5283": 1, "\u4e2d": 1, "\u6295\u5165": 1}, "marvels": {"\u8fd9": 1, "\u521b\u9020": 1, "\u5947\u8ff9": 1}, "handbag": {"\u624b\u63d0\u5305": 1}, "Refugees": {"\u96be\u6c11": 1, "\u6574\u4e2a": 1, "\u6d8c\u6765": 1}, "sleeved": {"\u77ed\u8896": 1, "\u886c\u886b": 1}, "golfer": {"\u4e2a": 1, "\u4e0d\u9519": 1, "\u9ad8\u5c14\u592b\u7403": 1, "\u624b": 1}, "prettiest": {"\u91cc\u9762": 1, "\u957f": 1, "\u5f97": 1, "\u6700": 2, "\u6f02\u4eae": 2}, "Things": {"\u5168\u90fd": 1, "\u4e00\u6a23": 1, "\u4e86": 1, "\u4e8b\u60c5": 1, "\u8981": 1, "\u5931\u63a7": 1}, "roared": {"\u5c31": 1, "\u9a6c\u514b": 1, "\u00b7": 1, "\u8bfa\u5f17\u52d2": 1, "\u65e9\u671f": 1, "\u6f14\u5531": 1, "\u6b4c\u66f2": 1, "\u300a": 1, "\u65e0\u7528": 1, "\u300b": 1, "": 1, "\u7edd\u5927\u591a\u6570": 1, "\u7684": 1, "\u4eba": 1, "\u4f9d\u7136": 1, "\u201c": 1}, "imagine": {"\u7121\u6cd5": 1, "\u60f3\u50cf": 1, "\u60f3\u8c61": 3, "\u884c\u8d70": 2}, "carrying": {"\u8eab\u4e0a": 1, "\u5fd9": 1, "\u62ff": 1}, "Pay": {"\u51fa\u53e3": 1, "\u8655": 1, "\u6536\u94f6\u53f0": 1, "\u4ed8\u6b3e": 1}, "marine": {"\u6b63\u5728": 1, "\u4ee5": 1, "\u6d77\u6d0b": 1, "\u751f\u7269\u5b66\u5bb6": 1}, "quarter": {"\u4e00\u523b": 1, "\u7b2c\u4e09\u5b63": 2}, "pointed": {"\u6559\u5e08": 1, "\u7528": 1, "\u6307\u7740": 1, "": 1, "\u8ddf": 1}, "eighth": {"\u516b\u6a13": 1, "\u592a\u9633\u7cfb": 1, "\u7b2c\u516b\u4e2a": 1}, "treatment": {"\u63a5\u53d7": 1, "\u6cbb\u7597": 2, "\u4e0d\u7fd2": 1, "\u6163": 1, "\u5f85\u9047": 1}, "thoroughly": {"\u96e8": 1, "\u4e2d": 1, "\u88ab": 1, "\u6dcb\u5f97": 1, "\u5168\u8eab": 1, "\u90fd": 1}, "streaked": {"\u4e2d": 1, "\u593e": 1, "\u6709": 1}, "gray": {"\u767d": 2, "\u7070\u8272": 2, "\u8d8a": 2, "\u4f86": 1}, "Vietnam": {"\u4e00\u4e2a": 1, "\u8d8a\u519b": 1, "\u9000\u5f79\u519b\u4eba": 1}, "receive": {"\u63a5\u5230": 1, "\u4f86": 1, "\u81ea": 1, "\u8d60\u4e0e": 1, "\u63a5\u53d7": 1, "\u66f4\u8ba9\u4eba": 1, "\u89c9\u5f97": 1, "\u5e78\u798f": 1, "\u6536\u5230": 1, "\u6b64": 1, "\u90ae\u4ef6": 1, "\u540e": 1, "\u5c3d\u5feb": 1}, "handling": {"\u5c0d": 1, "\u6709": 1, "\u4e00\u5957": 1, "\u5584": 1, "\u65bc": 1, "\u8655\u7406": 1, "\u5152\u7ae5": 1}, "purchase": {"\u4e70": 1}, "Scotch": {"\u518d\u4f86": 1, "\u4e00\u676f": 1, "\u5a01\u58eb\u5fcc": 1, "\u52a0\u6c34": 1}, "pancakes": {"\u714e\u997c": 1}, "damp": {"\u53c8": 2, "\u6e7f": 1}, "disadvantage": {"\u957f": 1, "\u574f\u4e8b": 1}, "hero": {"\u82f1\u96c4": 4, "\u662f": 1, "\u500b": 1, "\u4e2a": 1, "\u771f": 1}, "unforgettable": {"\u4e00\u573a": 1, "\u4ee4\u4eba\u96be\u5fd8": 1, "\u4e86": 1}, "occurred": {"\u53d1\u751f": 1, "\u6628\u665a": 1, "": 2, "\u70df\u82b1": 1, "\u60f3\u5230": 1, "\u4e00\u4e2a": 1}, "incredibly": {"\u7d2f\u6b7b": 1, "\u4e86": 1}, "pilot": {"\u4e00\u540d": 2, "\u98db\u884c\u54e1": 1, "\u68a6\u60f3": 1, "\u98de\u884c\u5458": 1}, "weaknesses": {"\u8c01": 1, "\u5f31\u70b9": 1}, "scholarship": {"\u7533\u8acb": 1, "\u734e\u5b78\u91d1": 2, "\u56e0\u70ba": 1, "\u4e00\u4efd": 1, "": 2, "Tom": 1}, "Sixteen": {"\u300c": 2, "\u5e7e\u6b72": 1, "\u300d": 1, "\u5341\u516d": 1, "\u6b72": 1, "": 1}, "delays": {"\u7d93\u904e": 1, "\u6578\u6b21": 1, "\u5ef6\u9072": 1, "\u4e4b": 1}, "properly": {"\u6b63\u78ba": 1, "\u5730": 1}, "brushing": {"\u5237\u7259": 2, "\u5728": 1}, "require": {"\u9700\u8981": 2}, "ruined": {"\u6bc1": 1, "\u4e86": 1}, "shock": {"\u9019": 1, "\u5c0d": 1, "\u5f88\u5927": 1, "\u9707\u64bc": 1}, "hypothesis": {"\u4e2a": 1, "\u5047\u8bbe": 1, "\u8fd9": 1, "\u731c\u60f3": 1}, "amounted": {"\u5e10\u5355": 1, "\u91d1\u989d": 1, "\u9ad8\u8fbe": 1}, "vote": {"\u60a8": 1, "\u5df2\u7d93": 1, "\u6295": 1, "\u7968": 1, "\u4e00\u5b9a": 1, "\u8981": 1, "\u7d66": 1, "\u6295\u7968": 1}, "matchbox": {"\u4e0d": 1, "\u706b\u67f4\u76d2": 1}, "coyote": {"\u4e1b\u6797": 1, "\u72fc": 1}, "giraffe": {"\u957f\u9888\u9e7f": 1, "\u662f": 1, "\u600e\u4e48": 1, "\u53eb": 1}, "cooperative": {"\u5408\u4f5c": 1}, "instantly": {"\u4e4b": 1, "\u5f8c": 1, "\u4fbf": 1, "\u904e\u4e16": 1}, "radium": {"\u4e86": 1, "\u9433": 1, "?": 1}, "demanded": {"\u8981\u6c42": 1, "\u6709\u4eba": 1, "\u89e3\u91ca": 1}, "rides": {"\u9a91": 1, "\u6280\u672f": 1, "\u4e0d\u9519": 1, "\uff01": 1}, "Anybody": {"\u8c01": 1, "\u90fd": 1, "\u4f1a": 1, "\u72af\u9519": 1, "\u4e0d\u7ba1\u662f\u8c01": 1, "\u603b": 1, "\u6ca1\u4eba\u597d": 1}, "worthless": {"\u4e00\u8f1b": 1, "\u8eca\u9f61": 1, "\u516b\u5e74": 1, "\u8eca\u5b50": 1, "\u6beb\u7121\u50f9\u503c": 1}, "Rainbow": {"\u5f69\u8679": 1, "\u6a4b": 1, "\u6709": 1, "\u591a": 1}, "opportunity": {"\u5931\u53bb": 1, "\u7edd\u4f73": 1, "\u673a\u4f1a": 1, "\u597d\u597d": 1, "\u628a\u63e1": 2, "\u6642\u6a5f": 1, "\u76e1\u529b": 2, "\u5730": 2, "\u5229\u7528": 2, "\u9019\u500b": 3, "\u6a5f\u6703": 4, "\u5584\u7528": 1}, "I.D.": {"\u8eab\u4efd": 1, "\u8b49": 1}, "commute": {"\u642d": 1, "\u4e0a\u4e0b": 1, "\u5b78": 1}, "arched": {"\u5f13\u8d77": 1, "\u80cc": 1, "": 1, "\u4f38": 1, "\u4e86": 1}, "Goodbye": {"\u518d\u89c1": 1}, "dim": {"\u5bf9": 1, "\u8bb0\u5fc6": 1, "\u5f88": 1, "\u6a21\u7cca": 1}, "marriage": {"\u548c\u739b\u4e3d": 1, "\u4e09\u5341\u5e74": 1, "\u5a5a\u59fb": 1, ",": 1, "": 1, "\u77e5\u9053": 1}, "00": {"\u6b64": 1, "\u5de6\u53f3": 1, "\u65e9\u4e0a": 3, "\u4e03\u70b9": 1, "\u4e03\u9ede": 2}, "discoveries": {"\u63d0\u51fa": 1, "\u4e00\u9023": 1, "\u4e32": 1, "\u91ab\u5b78": 1, "\u767c\u73fe": 1}, "abundant": {"\u81ea\u7136\u8d44\u6e90": 1, "\u5f88": 1, "\u4e30\u5bcc": 1}, "bodyguard": {"\u4fdd\u9556": 1, "\u7740": 1, "\u8033\u673a": 1}, "behaved": {"\u5834\u5408\u884c": 1, "\u70ba": 1, "\u8868\u73fe": 1, "\u4e0d\u597d": 1, "\u8868\u73b0": 1, "\u4e2a": 1, "\u75af\u5b50": 1}, "cheer": {"\u6539\u5584": 1, "": 2, "\u6240\u4ee5": 1}, "ache": {"\u5168\u8eab": 1, "\u9178\u75db": 1}, "underpants": {"\u7684": 2, "\u5167\u8932": 1}, "steps": {"\u8d70\u51fa": 1, "\u4ec0\u4e48\u6837": 1, "\u6b65\u4f10": 1}, "200": {"\u65f6\u5019": 1, "200": 2, "\u5169": 1, "\u767e\u5143": 1, "\u542b\u7a05": 1}, "unlocked": {"\u4ee4": 1, "\u9a5a\u8a1d": 1, "": 1, "\u9580": 1}, "aspired": {"\u7acb\u5fd7": 1, "\u4e00\u540d": 1}, "Allow": {"\u8acb": 2, "\u5141\u8a31": 2, "\u4e00\u4e0b": 1}, "stare": {"\u76ef\u8457": 4, "\u770b": 4, "\u4e0d": 2, "\u79ae\u8c8c": 4}, "folding": {"\u5728": 1, "\u53e0": 1, "\u8fde\u8863\u88d9": 1}, "Eating": {"\u5403": 4, "\u6709\u76ca\u4e8e": 1}, "suitable": {"\u9069\u5408": 3, "\u5973\u751f": 1, "\u5f88": 1, "\u9019\u4efd": 1, "\u4e3b\u984c": 1}, "underwear": {"\u5167": 1, "\u8863": 1, "\u4e86": 1}, "menu": {"\u559c\u6b22": 1, "\u83dc\u80b4": 1, "\u9ebb\u7169": 1, "\u7d66": 1, "\u83dc": 1, "\u55ae": 1}, "division": {"\u5011": 1, "\u6c92\u4e0a": 1, "\u904e": 1, "\u9664\u6cd5": 1}, "confirmed": {"\u4e00": 2, "\u8bc1\u5b9e": 2}, "result": {"\u7ed3\u679c": 4, "\u8fd9\u6837": 1, "\u7d50\u679c": 1, "\u4e00\u9ede": 1, "\u5152": 1, "\u4e5f": 1, "\u5c3d\u65e9": 1, "": 1}, "Hot": {"\u708e\u71b1": 1, "\u6f6e\u6fd5": 1, "\u4f7f": 1, "\u8b8a\u5f97": 1, "\u61f6\u6563": 1}, "Knowledge": {"\u77e5\u8bc6": 1, "\u5c31\u662f": 1}, "shutting": {"\u8acb": 1, "\u628a": 1, "\u9580\u95dc": 1, "\u4e0a": 1, "\u597d": 1}, "Last": {"\u6ee1\u6708": 1, "\u4e0a\u4e2a\u6708": 1, ",": 1, "\u6211\u4eec": 1, "\u751f": 1, "\u6d77\u4e0a": 1, "\u5ea6\u904e": 1}, "cheese": {"\u88fd": 1, "\u6210": 1, "\u4e73\u916a": 1, "\u6240\u6709\u4eba": 1, "": 1, "\u8bf7": 1, "\u8fd9\u5757": 1, "\u5c1d": 1, "\u5976\u916a": 1}, "listed": {"\u8fd9\u5bb6": 1, "\u8bc1\u5238": 1, "\u4ea4\u6613\u6240": 1, "\u4e0a\u5e02": 1}, "scuba": {"\u66fe": 1, "\u8a66": 1, "\u7528\u6c34": 1, "\u80ba\u6f5b\u6c34": 1}, "modifications": {"\u70b9": 1, "\u6539\u52a8": 1}, "sights": {"\u4e00\u4e24\u5929": 1, "\u6ca1": 1, "\u529e\u6cd5": 1, "\u901b": 1, "\u5b8c": 1}, "acid": {"\u9178\u6027": 1, "\u8150\u8680": 1}, "further": {"\u904a": 1, "\u5f97": 1, "\u9060": 1, "\u7d2f\u5f97": 1, "\u518d\u4e5f": 1, "\u4e0d\u52d5": 1, "\u4e0b\u4f86": 1, "": 1, "\u800c\u4e14": 1, "\u51c6\u5907": 1, "\u518d": 1, "\u524d\u8fdb": 1}, "respectful": {"\u4e0a\u53f8": 1, "\u7684\u8bdd": 1, "": 2, "\u5b66\u4f1a": 1, "\u5c0a\u656c": 1, "\u4ed6": 1, "\uff08": 1}, "environmental": {"\u4e00\u8282": 1, "\u5173\u4e8e": 1, "\u73af\u5883\u6c61\u67d3": 1}, "abolish": {"\u5e94\u8be5": 1}, "king": {"\u570b\u738b": 3}, "drug": {"\u6bd2\u54c1": 1, "\u56fd\u9645\u6027": 1}, "raise": {"\u9813\u662f": 1, "\u990a": 1, "": 1, "\u4f60": 1, "\u52a0\u85aa": 1}, "smack": {"\u8fc7": 1, "\u6247": 1, "\u4e00\u5df4\u638c": 1}, "tapes": {"\u78c1\u5e36": 1}, "surfboard": {"\u8feb\u4e0d\u53ca\u5f85": 1, "\u5730\u60f3": 1, "\u8bd5\u4e00\u4e0b": 1, "\u51b2\u6d6a\u677f": 1}, "products": {"\u4ea7\u54c1\u8d28\u91cf": 1, "\u540c\u7b49": 1}, "pirate": {"Tom": 1, "\u50cf": 1, "\u4e2a": 1, "\u6d77\u76d7": 1, "\u76d7\u7248": 1, "\u7535\u5f71": 1}, "justify": {"\u70ba\u4e86": 1, "\u6b63\u7576": 1, "\u76ee\u7684": 1, "\u4e26\u975e": 1, "\u53ef\u4ee5": 1, "\u4e0d\u64c7": 1, "\u624b\u6bb5": 1}, "Marriage": {"\u5a5a\u59fb": 2, "\u9020\u6210": 1, "\u4e3b\u56e0": 1}, "drugs": {"\u5c0d": 1, "\u6bd2\u54c1": 1, "\u8aaa\u4e0d": 1}, "Waiter": {"\u670d\u52a1\u751f": 1, "": 1, "\u6211": 1}, "agrees": {"\u540c\u610f": 1, "\u610f\u898b": 1}, "doors": {"\u95dc\u9589": 1, "\u9580": 2, "\u7a97\u6236": 1}, "bananas": {"\u9999\u8549": 5, "\u4e00\u9ede": 1, "\u4e5f": 3, "\u4e0d\u8981": 3, "\u4e00\u500b": 2}, "colds": {"\u611f\u5192": 5, "\u51ac\u5b63": 1}, "Dad": {"\u7238\u7238": 4, "\u4e86": 1, "\u7ed9": 1, "\u4e00\u4e2a": 1, "\u53ca\u6642": 1, "\u7236\u89aa": 1}, "charisma": {"\u4e86": 1, "\u9b45\u529b": 1}, "relieved": {"\u8981\u8bf4": 1, "\u7684\u8bdd": 1, ",": 1, "\u611f\u89c9": 1}, "glamorous": {"\u4e2a": 1, "\u8ff7\u4eba": 1, "\u5973\u5b69\u5b50": 1}, "alphabet": {"\u6bcd\u4eb2": 1, "\u8ba4\u5b57": 1}, "hardwood": {"\u786c": 1, "\u6728\u5730\u677f": 1, "\u52dd": 1, "\u904e": 1}, "loading": {"\u9019\u500b": 1, "\u7368\u81ea": 1, "\u628a": 1, "\u6771\u897f": 1, "\u642c\u4e0a": 1, "\u642c\u5bb6": 1}, "Queen": {"\u5973\u738b": 1, "\u4f0a\u9e97\u838e": 1, "\u767d": 1, "\u4e00\u4e16": 1, "\u65bc": 1, "1603": 1, "\u5e74": 1}, "guaranteed": {"\u751a\u9ebc": 1, "\u771f\u6b63": 1, "\u6709": 1, "\u4fdd\u8b49": 2}, "cheap": {"\u5f88": 4, "\u4fbf\u5b9c": 6, "\u8fd9\u4e2a": 1, "\u9019\u8eca": 1, "\u5f97": 2, "\u8b93": 1}, "prohibited": {"\u7981\u6b62": 1, "\u5438\u70df": 1, "\u4e25\u7981\u5438\u70df": 1}, "symbol": {"\u7b26\u865f": 1, "\u4ec0\u9ebc": 1, "\u610f\u601d": 1}, "indoors": {"\u5728\u5bb6": 1, "\u88e1": 1, "\u5f53": 1, "\u4e2a": 1, "": 2, "\u65f6\u95f4": 1, "\u90fd": 1, "\u9032\u5c4b": 1}, "Seen": {"\u4e0a\u770b": 1, "\u7684\u8bdd": 1, "\u770b\u8d77\u6765": 1, "\u50cf": 1}, "305": {"\u53ef\u4ee5": 1, "\u628a": 1, "\u9001\u5230": 1, "305": 1}, "astrophysicist": {"\u66fe\u7d93": 1, "\u904e": 1, "\u7576\u500b": 1, "\u592a\u7a7a": 1, "\u7269\u7406": 1, "\u5b78\u5bb6": 1}, "beholder": {"\u7f8e": 1, "\u9a7b\u7559": 1, "\u770b": 1, "\u90a3\u4e2a": 1, "\u4eba": 1, "\u773c\u91cc": 1}, "selling": {"\u8fd9\u5bb6": 1, "\u5356": 1, "\u5225": 1, "\u5c0f\u770b": 1, "\u5356\u4e66": 1, "\u5174\u8da3": 1}, "ducked": {"\u8981": 1, "\u53bb": 1, "\u4f46\u662f": 1}, "conflict": {"\u7ea0\u845b": 1}, "apologies": {"\u8aa0\u646f": 1, "\u6b49\u610f": 1}, "groaned": {"\u9019": 1, "\u540d": 1, "\u5730": 1, "\u547b\u541f": 1}, "Teachers": {"\u8001\u5e08": 1, "\u4f1a": 1, "\u72af\u9519": 1, "\u6559\u5e2b": 1, "\u4e86\u89e3": 1}, "style": {"\u4e2d\u5f0f": 1, "\u670d\u88dd": 1, "\u65b9\u5f0f": 2}, "dreamt": {"\u68a6": 1, "\u5230": 1, "\u4e86": 1}, "adjoins": {"\u5ba2\u5ef3": 1, "\u7dca": 1, "\u9130\u8457": 1, "\u9910\u5ef3": 1}, "briefly": {"\u7b80\u800c\u8a00\u4e4b": 1, "\u5f88\u5feb": 1, "\u5730": 1, "\u779f": 1}, "security": {"\u522b": 1, "\u4fdd\u5b89": 2, "\u5e2e": 1, "\u53eb": 1, "\u5bbe\u9986": 1}, "execute": {"\u5fc5\u987b": 1, "\u6267\u884c": 1}, "terrified": {"\u5225": 1, "\u88ab": 1, "\u5687\u58de": 1, "\u4e86": 1}, "spared": {"\u4e0d": 1, "\u907a\u9918\u529b": 1, "\u5e6b\u52a9": 1}, "Red": {"\u7ea2\u8272": 1, "\u4e0d": 1, "\u6d41\u884c": 1}, "folds": {"\u75c5\u4eba": 1, "\u6298": 1, "\u4e00\u5343": 1, "\u96bb": 1, "\u9db4": 1, "\u5979": 1, "\u5c31": 1, "\u6703": 1}, "court": {"\u6240\u8bf4": 2, "\u4e00\u5207": 2, "\u5c06": 2, "\u6210\u4e3a": 2, "\u5448": 2, "\u5802": 2, "\u8bc1\u4f9b": 2}, "prefectures": {"\u500b": 1, "\u7e23": 1, "?": 1}, "genuine": {"\u947d\u77f3": 1}, "Rather": {"\u6bd4\u8d77": 1, "\u5c11": 1, "\u62bd": 1, "\u83f8": 1, "": 1, "\u4f60": 1, "\u4f55\u4e0d": 1, "\u76f4\u63a5": 1, "\u628a": 1}, "putting": {"\u62d6\u5ef6": 1, "\u53bb": 1, "\u4e8b": 1}, "shelves": {"\u4e66\u67b6\u4e0a": 1, "\u6ca1\u6709": 1}, "assume": {"\u5047\u5b9a": 1, "\u90a3": 1}, "generate": {"\u96fb\u6d41": 1, "\u7522\u751f": 1, "\u78c1\u6027": 1}, "blessed": {"\u4e0a\u5e1d": 1, "\u8cdc\u4e88": 1, "\u8eab\u9ad4": 2, "\u5e78\u904b": 1, "\u6709": 1}, "anticipate": {"\u9810\u6599": 1, "\u6709": 1, "\u9ebb\u7169": 1}, "logically": {"\u6b63\u786e": 1, "\u547d\u9898": 1, "\u542c": 1, "\u8d77\u6765": 1, "\u7b26\u5408": 1, "\u903b\u8f91": 1}, "Popcorn": {"\u7206\u7c73\u82b1": 1, "\u559c\u6b22": 1, "\u96f6\u98df": 1}, "Sir": {"\u5148\u751f": 2, "": 1, "\u76d8": 1, "CD": 1, "\u9700\u8981": 1, "\u9884\u5b9a": 1}, "inspect": {"\u6211\u5011": 1, "\u53ef\u4ee5": 1, "\u6aa2\u67e5": 1}, "resides": {"\u73b0\u5728": 1, "\u4f4f": 1}, "waves": {"\u6d6a": 1, "\u62cd": 1, "\u5728": 1, "\u5ca9\u77f3": 1, "\u4e0a": 1}, "Disneyland": {"\u8fea\u58eb\u5c3c": 1, "\u6a02\u5712": 1}, "beggar": {"\u4e0d\u662f": 1, "\u4e5e\u4e10": 1}, "manufacture": {"\u751f\u4ea7\u65e5\u671f": 1, "\u76d6\u5b50": 1}, "approach": {"\u771f\u6b63": 1, "\u79d1\u5b66\u5bb6": 1, "\u4e0d\u4f1a": 1, "\u8fd9\u6837": 1, "\u53bb": 1, "\u601d\u8003": 1}, "imposing": {"\u76e1\u91cf": 1, "\u628a": 1, "\u4fe1\u5ff5": 1, "\u5f37\u52a0": 1, "\u8eab\u4e0a": 1}, "passes": {"\u4e8b\u60c5": 1, "\u8fc7\u53bb": 1, "\u5728": 1, "\u53d1\u751f": 1}, "ballpark": {"\u5750": 1, "\u5230": 1, "\u7403\u5834": 1}, "impression": {"\u7684\u8bdd": 1, "\u7ed9": 1, "\u7559\u4e0b": 2, "\u6df1\u523b": 1, "\u5370\u8c61": 1, "\u80fd": 1, "\u7b2c\u4e00\u5370\u8c61": 2, "\u6c38\u9060": 1, "\u6253\u9020": 1}, "teased": {"\u7740": 1, "\u8dd1": 1, "\u56de": 1, "\u5bb6\u91cc": 1, "\u7684": 1}, "Volcanic": {"\u706b\u5c71\u7070": 1, "\u963b\u7919": 1, "\u822a\u904b": 1}, "antiques": {"\u5bf9": 1, "\u53e4\u8463": 2, "\u5f88": 2, "\u9274\u8d4f\u529b": 1, "\u773c\u5149": 1, "\u597d": 1}, "Cows": {"\u725b": 1, "\u53ef": 1, "\u4ea7\u5976": 1, "\u5976\u725b": 1, "\u4e3a": 1}, "accumulated": {"\u6e6f\u59c6\u5c6f": 1, "\u4e86": 1, "\u5783\u573e": 1}, "suspicions": {"\u8fd9": 1, "\u6000\u7591": 1}, "leak": {"\u9019\u5834": 1, "\u5916": 1, "\u6d29": 1, "\u5f15\u8d77": 1, "\u8fd9\u4e9b": 1, "\u6cc4\u9732": 1}, "Probably": {"\u53ef\u80fd": 1, "\u5bf9": 1, "\u82b1\u7c89": 1, "\u7070\u5c18": 1, "\u8fc7\u654f": 1}, "gum": {"\u53e3\u9999\u7cd6": 1, "\u7c98\u5230": 1, "\u4e0a": 1}, "angle": {"90": 1, "\u5ea6": 1, "\u89d2": 1, "\u76f4\u89d2": 1}, "Tennis": {"\u7f51\u7403": 2, "\u559c\u6b22": 1, "\u8fd0\u52a8": 1}, "manage": {"\u89e3\u51b3": 1}, "reports": {"\u5831\u8f09": 1, "\u4e00\u67b6": 1, "\u98db\u6a5f": 1, "\u6708\u5e95": 1, "\u524d": 1, ",": 1, "": 1, "\u6211\u4eec": 1, "\u5fc5\u987b": 1}, "stadium": {"\u53bb\u904e": 1, "\u9ad4\u80b2\u9928": 1}, "Gravity": {"\u91cd\u529b": 1, "\u5c06": 1, "\u5e26": 1, "\u4e0b": 1, "\u5730\u7403\u8868\u9762": 1}, "bite": {"\u5f9e": 1, "\u54ac": 2, "\u6211": 1, "\u54ac\u4e86\u4e00\u53e3": 1}, "forced": {"\u88ab\u8feb": 3, "\u6740\u6389": 1, "\u51e0\u5339\u9a6c": 1, "\u8feb\u4f7f": 1, "\u51fa\u6765": 1}, "abate": {"\u98ce\u66b4": 1, "\u6ca1\u6709": 1, "\u51cf\u5f31": 1}, "handed": {"\u4ea4\u529f\u8ab2": 1, "\u628a": 2, "\u8a72": 1, "\u5377": 1, "\u4ea4\u7d66": 1, "\u905e\u7d66": 1}, "abducted": {"\u88ab": 1, "\u7ed1\u67b6": 1, "\u4e86": 1}, "karate": {"\u5df2\u7ecf": 1, "\u7a7a\u624b\u9053": 1}, "Neptune": {"\u6d77\u738b\u661f": 2}, "165": {"\u7e5e\u884c": 1, "\u4e00\u5468": 1, "\u8981": 1, "\u82b1": 1, "\u4e00\u767e\u516d\u5341\u4e94": 1, "\u5e74": 1}, "expelled": {"\u88ab": 1, "\u958b": 1, "\u9664\u4e86": 1}, "economical": {"\u8fd9\u8f86": 1, "\u8f66": 1, "\u7701\u6cb9": 1}, "recover": {"\u5f88": 1, "\u6642\u9593": 1, "\u624d\u80fd": 1, "\u6062": 1, "\u5fa9": 1}, "valid": {"\u5f20": 1, "\u4e09\u65e5": 1, "\u6709\u6548": 1, "\u5f35": 1, "\u6709\u6548\u671f": 1}, "happiest": {"\u95b1\u8b80": 1, "": 1, "\u6211": 1, "\u66fe": 1, "\u4e16\u754c": 1, "\u6700": 1, "\u5e78\u798f": 1}, "argue": {"\u5225": 1, "\u5435": 1, "\u4e86": 1}, "choose": {"\u53ef\u4ee5": 4, "\u9009\u62e9": 2, "\u9078\u64c7": 3}, "greeted": {"\u9762\u5e36": 2, "\u5411": 3, "\u6253\u62db\u547c": 3}, "goodnight": {"\u5fc5\u987b": 1, "\u8ddf": 1, "\u665a\u5b89": 1}, "bumped": {"\u78b0\u5230": 1, "\u649e": 1, "\u5230": 1, "\u4e00\u6839": 1, "\u67f1\u5b50": 1}, "closest": {"\u8ba4\u8bc6": 1, "\u90a3\u4e2a": 1, "\u5f97": 1, "\u6700\u9760\u8fd1": 1, "\u89c6\u4e3a": 1, "\u8981": 1, "\u597d": 1, "\u4e4b\u4e00": 1}, "unfamiliar": {"\u964c\u751f": 1, "\u60ca\u5413": 1, "\u5bf9": 1, "\u5355\u8bcd": 1, "\u4e0d\u719f": 1}, "theories": {"\u4e0d\u60f3": 1, "\u542c": 1, "\u7406\u8bba": 1}, "mysteries": {"\u81ea\u7136": 1, "\u5145\u6ee1": 1, "\u795e\u79d8": 1}, "physically": {"\u4eba": 1, "\u5728": 2, "\u5fc3": 1}, "fields": {"\u6761": 1, "\u7a7f\u8fc7": 1, "\u519c\u7530": 1}, "terribly": {"\u5c0d": 2, "\u611f\u5230": 2, "\u975e\u5e38": 2, "\u8ff7\u60d1": 1}, "happily": {"\u9ad8\u8208": 1, "\u5730": 1, "\u5fae\u7b11": 1}, "accurate": {"\u6e96": 1}, "gather": {"\u6bcf\u5468": 1, "\u8fd9\u513f": 1, "\u805a": 1, "\u731c\u60f3": 1}, "pigsty": {"\u4e2a": 1, "\u732a": 1, "\u7a9d": 1}, "inches": {"\u5929\u6c14\u9884\u62a5": 1, "\u4e0b": 1, "\u4e09": 1, "\u82f1\u5bf8": 2, "\u9ad8\u4e09": 1}, "Mathematics": {"\u6578\u5b78": 4, "\u5c0d": 2, "\u4f86\u8aaa": 2}, "sciences": {"\u79d1\u5b78": 1, "\u57fa\u790e": 1}, "Grandmother": {"\u5976\u5976": 1, "\u4e00\u7bb1": 1}, "Industry": {"\u6240": 1, "\u8ba4\u8bc6": 1, "\u5de5\u4e1a": 1, "\u90a3\u4e2a": 1, "\u65f6\u4ee3": 1}, "goals": {"\u8a31\u591a": 1, "\u76ee\u6a19": 2}, "disagreeing": {"\u6ca1\u6709": 1, "\u53cd\u5bf9": 1}, "dam": {"\u8fd9\u4e2a": 1, "\u6c34\u575d": 1, "\u7ed9": 1, "\u63d0\u4f9b": 1, "\u7535": 1}, "weeds": {"\u5e03\u6ee1": 1, "\u6742\u8349": 1, "\u5fc5\u9808": 1, "\u62d4\u9664": 1, "\u96dc\u8349": 1}, "neighbor": {"\u9130\u5c45": 3, "\u8acb": 1, "\u4f86": 1, "\u6709\u500b": 1, "\u76f2\u9130": 1, "\u5c45": 1}, "renovated": {"\u628a": 1, "\u5c4b\u5b50": 1, "\u7ffb\u65b0": 1, "\u4e00\u904d": 1}, "ambiguities": {"\u6709": 1, "\u5f88\u591a": 1, "\u4e0d": 1, "\u660e\u786e": 1, "\u5730\u65b9": 1}, "155": {"\u5973\u751f": 1, "\u8d85\u8fc7": 1, "155": 1}, "centimeters": {"\u516c\u5206": 2}, "within": {"\u4e00\u9031": 1, "\u4e4b\u5167": 1}, "daily": {"\u6bcf\u5929": 1, "\u8d39\u7528": 1, "\u591a\u5c11": 1}, "cheered": {"\u85c9\u7531": 1, "\u4f86": 1, "\u9f13\u821e": 1}, "Fluency": {"\u6d41\u5229": 1}, "pumps": {"\u7a7f\u8457": 1, "\u821e\u978b": 1}, "International": {"\u5c06": 1, "\u4e8e": 1, "\u5185": 1, "\u65b0": 1, "\u4e1c\u4eac\u56fd\u9645": 1, "\u673a\u573a": 1}, "January": {"\u4e00\u6708\u4efd": 1, "\u8981": 1, "\u53c2\u52a0\u8003\u8bd5": 1}, "Software": {"\u8f6f\u4ef6": 1, "\u6b63\u5728": 1, "\u4e0d\u65ad": 1, "\u8fdb\u5316": 1}, "kitten": {"\u4e00\u53ea": 1, "\u5c0f\u732b": 1}, "pillow": {"\u7d66": 1, "\u4e00\u500b": 1, "\u6795\u982d": 1, "\u6bdb\u6bef": 1, "\u597d": 1}, "hammer": {"\u9524\u5b50": 2, "\u90a3\u91cc": 1, "\u62ff\u8d70": 1}, "numb": {"\u51bb\u50f5": 1, "\u4e86": 2, "": 2, "\u65e0\u6cd5": 1, "\u53f3\u624b": 1, "\u9ebb": 1}, "Needless": {"\u7121\u9808": 1, "\u591a": 1, "\u8a00": 1, "": 2, "\u57fa\u672c": 1, "\u4eba\u6b0a": 1}, "spite": {"\u5c3d\u7ba1": 1, "\u4e0b\u7740\u96e8": 1, ",": 1, "": 1}, "graveyard": {"\u628a": 1, "\u57cb\u846c": 1, "\u65c1": 1, "\u5893\u5712": 1}, "shouted": {"\u5f53": 1, "\u5486\u54ee": 1, "\u65f6": 1, "\u4ed6": 1, "\u8116\u5b50": 1, "\u4e0a": 1}, "neck": {"": 1, "\u8116\u5b50": 1, "\u75bc": 1}, "target": {"\u76ee\u6807": 2}, "toast": {"\u5f80": 2, "\u5410\u53f8": 1, "\u4e0a\u653e": 2, "\u8bb8\u591a": 2, "\u8702\u871c": 2, "\u9762\u5305\u7247": 1}, "3rd": {"\u4e09\u865f": 1}, "gentle": {"\u8f15\u8f15\u5730": 1, "\u63a8": 1}, "repairing": {"\u7740": 1, "\u4fee": 2, "\u9019\u8eca": 1, "\u9019\u8f1b": 1, "\u4fee\u7406": 1}, "diplomacy": {"\u5916\u4ea4": 1, "\u65c5\u904a": 1, "\u696d": 1, "\u65b9\u9762": 1}, "compiling": {"\u7f16\u8bd1": 1, "\u7a0b\u5e8f": 1, "\u6709\u4e9b": 1, "\u56f0\u96be": 1}, "skinny": {"\u82d7\u6761": 1, "\u7626": 1, "\u793c\u8c8c": 1}, "pose": {"\u7576": 1, "\u63d0\u51fa": 1, "\u4f60": 1}, "Basketball": {"\u7bee\u7403": 1, "\u53ef": 1, "\u771f\u662f": 1, "\u6709\u610f\u601d": 1}, "acquired": {"\u525b": 1, "\u958b\u59cb": 1, "\u6642\u5019": 1, "\u9019": 1, "\u662f": 1, "\u9700\u8981": 1, "\u591a\u6b21": 1, "\u54c1\u5690": 1, "\u5b83": 1}, "wooden": {"\u5f20": 2, "\u6728\u684c": 1, "\u90a3": 1, "\u6728\u6905": 1}, "Release": {"\u653e\u5f00": 1}, "absconded": {"\u643a\u6b3e": 1, "\u6f5c\u9003": 1}, "Hong": {"\u5c31\u5feb": 1, "\u9999\u6e2f": 2, "\u62b5\u8fbe": 1}, "earthworm": {"\u86af\u8693": 1, "": 1, "\u5b83": 1}, "sunglasses": {"\u4e00\u526f": 1, "\u592a\u967d": 1, "\u773c\u93e1": 1, "\u5e7e\u526f": 1, "\u58a8\u93e1": 1}, "ideal": {"\u4e00\u4e2a": 1, "\u4f9b": 1, "\u4eec": 1, "\u73a9\u4e50": 1, "\u7406\u60f3": 1, "\u573a\u6240": 1}, "unfit": {"\u4e0d": 1, "\u9002\u5408": 1, "\u5f53": 1}, "physics": {"\u95dc\u65bc": 1, "\u7269\u7406": 1, "\u5b78": 1, "\u88ab": 1}, "daydreaming": {"\u4f5c": 1, "\u767d\u65e5": 1, "\u5922": 1, "\u5728": 1, "\u505a": 1, "\u767d\u65e5\u68a6": 1}, "aside": {"\u8ba9\u5f00": 1}, "freed": {"Tom": 1, "\u5c07\u9ce5": 1, "\u653e\u8d70": 1}, "cottages": {"\u597d\u51e0\u95f4": 1, "\u5c0f\u5c4b": 1, "\u5b64\u7acb": 1, "\u8d77\u6765": 1}, "solar": {",": 1, "": 2, "\u80fd": 1}, "skirts": {"\u9577\u88d9": 2}, "requires": {"\u9019": 1, "\u9700\u8981": 2, "\u614e\u91cd": 1, "\u4e00\u5927\u7b14\u94b1": 1}, "dessert": {"\u8981": 1, "\u751c\u9ede": 2, "\u5c3d\u91cf": 1, "\u7559": 1, "\u80c3": 1, "\u5403": 1, "\u751c\u70b9": 1}, "alcoholic": {"\u6bcd\u4eb2": 1, "\u662f": 1, "\u4e2a": 1, "\u9152\u9b3c": 1}, "plotting": {"\u6b63\u5bc6": 1, "\u8b00\u8981": 1, "\u6bba\u5bb3": 1}, "annoying": {"\u771f": 1, "\u70e6\u4eba": 1}, "topics": {"\u8ac7": 1, "\u8a71\u984c": 1}, "Classes": {"\u8bfe\u7a0b": 1, "\u4e0b\u5468": 1}, "growled": {"\u9019": 1, "\u5c0d": 1, "\u8457": 1, "\u4e00": 1, "\u500b": 1, "\u5c0f\u7537\u5b69": 1, "\u5486\u54ee": 1}, "frogs": {"\u8a31\u591a": 1, "\u9752\u86d9": 1}, "uneasy": {"\u6765\u4fe1": 1, "\u8ba9": 1, "\u4e0d\u5b89": 1, "\u77e5\u9053": 1, "\u4e0d\u81ea\u5728": 1, "": 1}, "nose": {"\u82e5": 1, "\u59ff\u614b": 1, "\u80fd": 1, "\u518d": 1, "\u4f4e": 1, "\u66f4": 1, "\u5b8c\u7f8e": 1, "\u9f3b\u5b50": 1}, "ticking": {"\u80fd": 1, "\u58f0\u97f3": 1, "\u6ef4\u7b54\u58f0": 1}, "focus": {"\u540c\u6642": 1, "\u6ce8\u610f": 2, "\u4e24\u4ef6\u4e8b": 1, "\u53ea": 1, "\u65b9\u9762": 1}, "emphasis": {"\u5f3a\u8c03": 1, "\u91cd\u8981\u6027": 1}, "thunder": {"\u96f7\u8072": 1, "\u5687\u5230": 1}, "junior": {"\u500b": 2, "\u521d\u4e2d\u751f": 1, "\u570b\u4e2d": 1, "\u751f": 1}, "Cool": {"\u51b7\u9759": 1, "\u70b9": 1}, "companies": {"\u516c\u53f8": 1, "\u5be6\u884c": 1, "8": 1, "\u5de5\u4f5c\u5236": 1}, "sigh": {"\u9b06": 1, "\u4e00\u53e3": 1, "\u6c23": 1}, "sofa": {"\u5f35\u6c99": 1, "\u767c\u5360": 1, "\u6c99\u767c": 2, "\u8f15": 1}, "nature": {"\u5927\u81ea\u7136": 1, "\u5929\u751f": 2}, "culture": {"\u6587\u5316": 2, "\u4eec": 1, "\u63a2\u8ba8": 1, "\u8bed\u8a00": 1}, "definitely": {"\u7edd\u5bf9": 2, "\u5c06\u8981": 1, "\u7d55\u4e0d": 1, "\u9019": 1, "\u8282\u65e5": 1}, "Wood": {"\u6728\u5934": 1, "\u4f1a": 1, "\u6f02\u6d6e": 1}, "appreciate": {"\u611f\u6fc0": 1, "\u6240": 1, "\u4e00\u5207": 1, "\u6b23\u8cde": 1}, "heaven": {"\u5275\u9020": 1, "\u5929\u5730": 1}, "pages": {"\u51e0\u9875": 1, "\u82f1\u6587": 1, "\u82b1": 1, "2": 1, "\u4e2a": 1}, "venture": {"\u6765": 1, "\u4e3a": 1, "\u98ce\u9669\u6295\u8d44": 1, "\u8d44\u91d1": 1}, "flush": {"\u5395\u6240": 1, "\u51b2\u6c34": 1, "\u6b63\u5e38": 1}, "attempt": {"\u8bd5\u56fe": 1, "\u6e38": 1, "\u8fc7\u6cb3": 1, ",": 1, "": 1}, "zeros": {"2010": 1, "\u8fd9\u4e2a": 1, "\u6570\u5b57": 1, "\u91cc": 1, "\u96f6": 1}, "terrorist": {"\u75db\u6068": 1, "\u6050\u6016\u4e3b\u4e49": 1, "\u7ec4\u7ec7": 1}, "letters": {"\u597d\u591a": 1, "\u4fe1": 2, "\u7528": 1, "\u5199\u4fe1": 2, "\u5199\u4e0b": 1, "\u5927\u5199\u5b57\u6bcd": 1}, "useless": {"\u771f": 1, "\u6c92\u7528": 1}, "military": {"\u9019": 1, "\u4e00\u500b": 1, "\u8ecd\u4e8b": 1, "\u57fa\u5730": 1}, "Stand": {"\u8d77\u7acb": 1, "\u9000\u5230": 1, "\u5f8c": 1, "\u9762": 1}, "overreacting": {"\u53cd\u5e94": 1, "\u8fc7\u5ea6": 1, "\u4e86": 1}, "seawater": {"\u6d77\u6c34": 1, "\u5b83": 1}, "theater": {"\u6232\u9662": 1, "\u78b0\u9762": 1, "\u5287\u5834": 1, "\u5267\u573a": 1, "": 1, "\u7ecf\u5e38": 1}, "attacked": {"\u9019": 2, "\u653b": 1, "\u64ca": 1, "\u500b": 1, "\u591c\u9593": 1, "\u653b\u64ca": 1, "\u62a8\u64ca": 1}, "boarding": {"\u6642\u5019": 1, "\u767b\u6a5f": 2, "\u8b93": 1, "\u60a8": 1, "\u8b49\u597d": 1}, "wiser": {"\u66f4\u52a0": 2, "\u5e74": 1, "\u9577": 1, "\u4e5f": 1, "\u6709": 1, "\u667a\u6167": 1}, "swimsuit": {"\u8bd5\u8fc7": 1, "\u8fd8": 1, "\u6cf3\u8863": 1, "\u6765": 1, "\u6362\u6210": 1, "\u66f4": 1, "\u4e00\u53f7": 1, "": 1}, "Social": {"\u4e0d\u540c": 1, ",": 1, "": 2}, "weak": {"\u4f53\u5f31": 1, "\u611f\u5230": 1, "\u865a\u5f31": 1}, "Trees": {"\u6a39": 1, "\u6703": 1, "\u9577": 1, "\u8349\u539f": 1}, "Shouting": {"\u5c0d": 1, "\u543c": 1, "\u4e00\u9ede": 1, "\u4e5f": 1, "\u6c92\u6709": 1}, "dignity": {"\u8bf7": 1, "\u81ea\u91cd": 1}, "assignment": {"\u7528": 1, "\u9884\u671f": 1, "\u66f4": 1, "\u957f": 1, "\u65f6\u95f4": 1, "\u6765": 1, "\u5b8c\u6210": 1, "\u4f5c\u4e1a": 1}, "spirits": {"\u7cbe\u795e": 1, "\u5f88": 1}, "gently": {"\u6eab\u67d4": 2, "\u5730": 2}, "believed": {"\u4fe1\u8fc7": 1, "\u76f8\u4fe1": 6, "\u7684\u8bdd": 2}, "waterfall": {"\u90a3\u513f": 1, "\u6709\u4e2a": 1, "\u5f88": 1, "\u7f8e\u7684": 1, "\u7011\u5e03": 1}, "Singing": {"\u5531\u6b4c": 1, "\u5f3a\u9879": 1}, "occasions": {"\u7279\u6b8a": 1, "\u5834": 1, "\u5408\u7a7f": 1, "\u897f\u88dd": 1}, "numerous": {"\u5927\u91cf": 1, "\u4e66\u67b6\u4e0a": 1}, "Married": {"\u5df2\u5a5a": 1, "\u6642\u5019": 1, ",": 1}, "officer": {"\u8b66\u5b98": 1, "\u4e86\u7aca": 1}, "typewriter": {"\u6253\u5b57": 1, "\u6a5f": 1, "\u597d\u50cf": 1, "\u6709\u4ec0\u9ebc": 1, "\u554f\u984c": 1}, "Back": {"\u4ee5\u524d": 1, "\u8b80": 1, "\u6642\u5019": 1, "\ufe50": 1, "\u516d\u9ede": 1, "\u5f80": 1, "\u540e\u9000": 1, "\u70b9": 1}, "Bears": {"\u718a\u4f1a": 1, "\u722c\u6811": 1}, "Stars": {"\u661f\u661f": 1, "\u4e2d": 1}, "bitten": {"\u88ab": 2, "\u4e86": 2, "\u96bb": 1, "\u54ac": 1}, "mosquito": {"\u868a\u5b50": 2, "\u53ee": 2}, "Hop": {"\u8df3\u8fdb\u6765": 1}, "tiny": {"\u81ea": 1, "\u4e00\u500b": 1, "\u5c0f": 1, "\u5c71\u57ce": 1}, "funeral": {"\u90fd": 1, "\u53c2\u52a0": 1, "\u846c\u793c": 1, "\u846c": 2, "\u79ae": 2, "\u8a02": 1}, "abandoned": {"\u653e\u5f03": 2, "\u4e86": 4, "\u653e\u68c4": 1, "\u629b\u5f03": 1, "\u90a3\u4e2a": 1}, "complaints": {"\u5df2\u7d93": 1, "\u53ad\u5026": 1, "\u6295\u8a34": 1}, "wrist": {"\u90a3\u500b": 1, "\u9019\u500b": 1, "\u624b\u8155": 1}, "tuner": {"\u505a": 1, "\u94a2\u7434": 1, "\u8c03\u97f3\u5e08": 1, "\u5f88\u591a\u5e74": 1}, "Embassy": {"\u6709\u6743": 1, "\u51fa\u5165": 1, "\u7f8e\u56fd\u5927\u4f7f\u9986": 1, "\u5927\u4f7f": 1, "\u9928": 1}, "eyed": {"\u76ef\u8457": 1, "\u53ef\u7591": 1, "\u770b": 1}, "preparation": {"\u56e0": 1, "\u6e96\u5099": 1, "\u800c": 1}, "handcuffs": {"\u94d0": 1}, "thumb": {"\u662f": 1, "\u500b\u5712": 1, "\u85dd": 1, "\u5de7\u624b": 1}, "1996": {"1996": 1, "\u5e74": 1}, "approve": {"\u540c\u610f": 2, "\u6e6f\u59c6\u6703": 1}, "worm": {"\u9e1f\u513f": 1, "\u6709": 1, "\u866b": 1, "\u5403": 1}, "Ever": {"\u81ea\u5f9e": 1, "\u6454\u5012": 1, "\u5f8c": 1, "": 1, "\u5979": 1, "\u4e0d\u66fe": 1}, "Believe": {"\u4e09\u4e2a": 1, "": 2, "\u4fe1\u4e0d\u4fe1": 1}, "neglected": {"\u6020\u5ffd": 1, "\u8077": 1, "\u5b88": 1, "\u4e86": 1}, "engrossed": {"\u6c89\u6d78": 1, "\u66f8\u88e1": 1}, "Stock": {"\u80a1\u7968": 1, "\u50f9\u683c": 1, "\u8dcc": 1, "\u81f3": 1, "\u6b77\u53f2": 1, "\u65b0\u4f4e": 1}, "mice": {"\u8c93\u5152": 1, "\u4e0d": 1, "": 3, "\u73a9": 1, "\u7684": 1, "\u8f15": 1, "\u5c71\u4e0a": 1, "\u65e0": 1, "\u8001\u864e": 1, "\u7334\u5b50": 1}, "Each": {"\u6bcf\u500b": 2, "\u90fd": 2, "\u4eba": 1, "\u6388\u734e": 1}, "locker": {"\u4e00": 1, "\u6ac3\u5b50": 1}, "goal": {"\u4e86": 3, "\u76ee\u6807": 4, "\u5e6b\u52a9": 1, "\u9054\u6210": 2, "\u6c92": 1}, "collected": {"\u6536\u96c6": 1, "\u4e86": 1, "\u4e00\u4e9b": 1, "\u8a0a\u606f": 1}, "Yari": {"\u66fe": 1, "\u69cd": 1, "\u5cb3": 1, "?": 1}, "disposal": {"\u53ef\u4ee5": 1, "\u968f\u4fbf": 1, "\u7528": 1}, "merely": {"\u8fd9\u4e48": 1, "\u5c31\u662f": 1, "\u4e3a\u4e86": 1, "\u5f00\u73a9\u7b11": 1}, "disassembled": {"\u628a": 1, "\u949f": 1, "\u62c6\u5f00": 1}, "barbeque": {"\u4eba\u5011": 1, "\u53ea": 1, "\u70e4\u8089": 1}, "3202": {"\u60f3\u8981": 1, "\u4e2a": 1, "\u7535\u8bdd": 1, "\u5230": 1, "": 1, "\u53f7\u7801": 1, "\u662f": 1, "3202": 1}, "fewer": {"\u4e0d\u4e0b": 1, "\u4e2a": 1, "\u6b7b": 1}, "Florence": {"\u4f5b\u7f57\u4f26\u8428": 1, "\u7f8e\u4e3d": 1}, "instruments": {"\u9664\u4e86": 1, "\u94a2\u7434": 1, "\u4ee5\u5916": 1, ",": 1, "": 2, "\u4f1a": 1, "\u73a9": 1}, "warrant": {"\u6709\u6743": 1, "\u641c\u67e5": 1}, "Harajuku": {"\u642d\u4e0a": 1, "\u53bb": 1, "\u539f\u5bbf": 1, "\u5df4\u58eb": 1}, "bombs": {"\u95f4": 1, "\u654c\u4eba": 1, "\u7684": 1, "\u70b8\u5f39": 1, "\u50cf": 1, "\u96e8\u70b9": 1}, "patients": {"\u7b49\u5019": 1, "\u5ba4\u91cc": 1, "\u4e94\u4f4d": 1, "\u60a3\u8005": 1, "\u75c5\u4eba": 1}, "scrambled": {"\u60f3\u8981": 1, "\u4f86": 1, "\u4e9b": 1, "\u7092\u86cb": 1}, "workday": {"\u4e0d\u662f": 1, "\u5de5\u4f5c\u65e5": 1, "\u5728": 1, "\u661f\u671f\u65e5": 1, "\u5de5\u4f5c": 1}, "ringtone": {"\u8981": 1, "\u600e\u9ebc": 1, "\u63db": 1, "\u9234": 1, "\u8072": 1, "\u5462": 1}, "complaining": {"\u53d7\u5920": 1, "\u62b1\u6028": 3, "\u7e3d": 1}, "forgotten": {"\u5df2\u7ecf": 1, "\u5fd8": 1}, "weed": {"\u5438": 1, "\u5927\u9ebb": 1}, "decreased": {"\u6e1b\u5c11": 1, "\u767e\u5206\u4e4b\u5341": 1}, "marital": {"\u80fd": 1, "\u544a\u8bc9": 1, "\u6211": 1, "\u5a5a\u59fb\u72b6\u51b5": 1, "\u5417": 1}, "owns": {"\u6709": 1, "\u4e00\u8f86": 1, "\u8dd1\u8f66": 1}, "Behave": {"\u89c4\u77e9": 1, "\u70b9": 1}, "leg": {"\u62c9": 1, "\u817f": 2}, "outdoors": {"\u6c92": 1, "\u6709\u5e38": 1, "\u5230": 1, "\u6236\u5916": 1}, "Drunk": {"\u9152": 1, "\u9a7e": 1, "\u4e2a": 1, "\u4e25\u91cd": 1}, "warmer": {"\u5929": 1, "\u65e5\u6e10": 1, "\u56de\u6696": 1, "\u4e00\u5929\u5929": 1, "\u70ed": 1, "\u8d77\u6765": 1, "\u5427": 1, "\uff01": 1, "\u6696": 1, "\u4e00\u4e9b": 1}, "among": {"\u5728": 1, "\u4e2d": 1, "\u6d41\u884c": 1, "\u81f4\u529b\u4e8e": 1, "\u4e3a": 1}, "tightly": {"\u7dca\u7dca": 1, "\u5730": 1, "\u62b1\u8457": 1}, "holidays": {"\u5047\u671f": 1, "\u7121\u6240": 1, "\u4e8b\u4e8b": 1, "\u5bd2\u5047": 1, "\u904e": 1, "\u6109\u5feb": 1}, "Entering": {"\u8fdb": 1, "\u5bb6\u95e8": 1, "\u540e": 1, "": 1, "\u6211": 1, "\u88ab": 1}, "blossoms": {"\u6afb\u82b1": 1}, "Shanghai": {"\u4e0a\u6d77": 2, "\u662f": 1, "\u5750": 1}, "suntan": {"\u6652\u9ed1": 1}, "via": {"\u7ecf\u7531": 1}, "Daddy": {"\u7239": 1, "\u5730": 1, "\u559c\u6b61": 1, "\u8b1b": 1, "\u4e8b": 1}, "differ": {"\u5404\u570b": 1, "\u6709": 2, "\u4e0d\u540c": 1, "\u98f2\u98df": 1, "\u7fd2\u6163": 1}, "springs": {"\u6e29\u6cc9": 1}, "significance": {"\u6ca1\u6709": 1, "\u9886\u4f1a": 1, "\u8fd9\u4e2a": 1, "\u610f\u4e49": 1}, "gazing": {"\u51dd\u89c6\u7740": 1, "\u6d0b\u5a03\u5a03": 1}, "weapons": {"\u6b66\u5668": 2, "\u9055\u6cd5": 1, "\u653e\u4e0b": 1, "\u4f60\u4eec": 1}, "Add": {"\u52a0": 1, "\u4e00\u4e01": 1, "\u9ede": 1}, "surfers": {"\u51b2\u6d6a\u8005": 1}, "entirely": {"\u7684\u8bdd": 1, "\u6839\u672c": 1, "\u6beb\u65e0\u610f\u4e49": 1}, "deputy": {"\u4e0d": 1, "\u5728": 1, ",": 1, "": 1, "\u4ed6": 1, "\u6211": 1}, "vulnerable": {"\u8fd8\u662f": 1, "\u8106\u5f31\u4e0d\u582a": 1}, "bound": {"\u6ce8\u5b9a": 2, "\u6703": 2, "\u51c6\u4f1a": 1, "\u5fc5\u5b9a": 1, "\u89ba\u5bdf": 1}, "Felicja": {"Felicja": 1, "\u770b\u96fb\u8996": 1}, "Such": {"\u9019\u6a23": 2, "\u4e8b\u60c5": 1, "\u53ef\u80fd": 1}, "patriotism": {"\u6709\u6ca1\u6709": 1, "\u4e00\u4e2a": 1, "\u6bd4": 1, "\u66f4": 1, "\u63d0\u5021": 1, "\u7231\u56fd\u4e3b\u4e49": 1}, "stubborn": {"\u4e2a": 1, "\u5014\u5f3a": 2}, "starved": {"\u9019\u4f4d": 1, "\u8001\u4eba": 1, "\u9913\u6b7b": 1}, "lifted": {"\u89ba\u5f97": 1, "\u597d\u50cf": 1, "\u88ab\u8209": 1, "\u8d77\u4f86": 1}, "betrayed": {"\u628a": 1, "\u544a\u8bc9": 1}, "graduate": {"": 1, "\u5c31": 1, "\u4e2d\u5b78": 1, "\u7562\u696d": 1}, "napkin": {"\u7d66": 1, "\u4e00\u5f35": 1, "\u9910\u5dfe": 1, "\u7d19": 1}, "seek": {"\u5c0b\u6c42": 1, "\u5354\u52a9": 1}, "mandatory": {"\u70f9\u996a": 1, "\u8bfe\u7a0b": 1, "\u4f5c\u4e3a": 1, "\u5fc5\u4fee\u8bfe": 1}, "rolling": {"\u90a3\u9ebc": 1, "": 1, "\u8b93": 1, "\u6211\u5011": 1}, "explosives": {"\u662f": 1, "\u7206\u70b8\u7269": 1}, "insured": {"\u7edd\u5bf9": 1, "\u4fdd\u9669": 1, "\u7d66": 1, "\u6295": 1, "\u4fdd\u96aa": 1}, "Drink": {"\u559d": 1, "\u9019": 1}, "athletic": {"\u597d": 1, "\u8fd0\u52a8": 1}, "gamble": {"\u5931\u696d": 1, "": 2, "\u70ba\u4e86": 1, "\u9b31\u60b6": 1, "\u7684": 1, "\u958b\u59cb": 1}, "455": {"455": 1, "\u540d\u5a66": 1, "\u5973": 1, "\u4e2d\u6703": 1, "\u6709": 1, "\u4e00\u540d": 1, "\u61f7\u5b55": 2, "\u7b2c\u4e8c\u5341": 1, "\u9031\u524d": 1, "\u6c92": 1, "\u6709\u610f": 1, "\u8b58\u5230": 1}, "taxis": {"\u8981": 1, "\u5169\u8f1b": 1, "\u51fa\u79df": 1, "\u8eca": 1}, "dived": {"\u8df3\u5165": 1}, "loaded": {"\u5f80": 1, "\u8eca\u88e1": 1, "\u88c5": 1}, "100,000": {"\u8fd9": 1, "\u5ea7": 1, "\u7ea6": 1, "\u6709": 1, "100": 1, "": 1}, "starve": {"\u77e5\u4e0d\u77e5\u9053": 1, "\u5168\u4e16\u754c": 1, "\u6bcf\u5e74": 1, "\u997f\u6b7b": 1, "\u5440": 1}, "puffs": {"\u8981": 1, "\u6ce1\u8299": 1}, "driven": {"\u4e0d\u8981": 1, "\u958b": 1}, "points": {"\u5f3a\u9879": 1, "\u662f": 1}, "meets": {"\u6bcf": 1, "\u548c": 1, "\u898b\u9762": 1, "\u6240\u6709": 1, "\u9047\u898b": 1, "\u4ea4\u670b\u53cb": 1}, "exceptionally": {"\u975e\u5e38": 1, "\u59d1\u5a18": 1}, "hopeful": {"\u5c0d": 1, "\u672a\u4f86": 1, "\u611f\u5230": 1, "\u6709": 1, "\u5e0c\u671b": 1}, "artistic": {"\u4e00\u9ede": 1, "\u4e5f": 1, "\u4e0d": 1, "\u61c2": 1, "\u85dd\u8853": 1}, "charm": {"\u65e7\u6751": 1, "\u5c4b": 1, "\u81ea\u5df1": 1, "\u4e00\u5b9a": 1, "\u9b45\u529b": 1}, "tinnitus": {"\u8033\u9e23": 1, "\u5417": 1}, "marathon": {"150": 1, "\u4e2a\u4eba": 1, "\u53c2\u52a0": 2, "\u9a6c\u62c9\u677e": 2, "\u5c06": 1}, "Hyogo": {"\u5175\u5e93\u53bf": 1, "\u7acb": 1, "\u5927\u5b66": 1, "\u5175\u5eab": 1}, "I.": {"": 3, "\u6211": 1, "\u65c5\u6e38": 1}, "van": {"\u90a3\u8f1b": 1, "\u6c7d\u8eca": 1, "\u649e\u5230": 1, "\u85cd": 1, "\u8272": 1, "\u9eb5": 1, "\u5305": 1}, "wrung": {"\u62e7\u5e72": 1, "\u6302": 1, "\u8d77\u6765": 1, "\u667e\u5e72": 1}, "Facts": {"\u4e8b\u5b9e": 1, "": 1, "\u7edf\u8ba1": 1}, "beans": {"\u8c46\u5b50": 2}, "investigation": {"\u8abf\u67e5": 2, "\u76f8\u95dc": 1, "\u6b63\u5728": 1, "\u9032\u884c": 1, "\u4e2d": 1}, "Kiss": {"\u543b": 1}, "determination": {"\u8981": 1, "\u4e0b": 1, "\u6c7a\u5fc3": 1}, "expressed": {"\u5c0d": 1, "\u8868\u9054": 1, "\u706b\u71b1": 1, "\u6fc0\u60c5": 1}, "passion": {"\u611b": 1, "\u767e\u9999\u679c\u6c41": 1}, "500": {"\u623f\u5b50": 1, "\u6709": 1, "500": 2, "\u9019": 1, "\u53f0": 1, "\u82b1\u8cbb": 1}, "guts": {"\u81bd\u5b50": 1, "\u5f88\u5927": 1}, "castle": {"\u56fe\u7247": 1, "\u4e00\u5ea7": 1, "\u57ce\u5821": 2}, "penny": {"\u4e0b": 1, "\u4e00\u5206": 1, "\u9322": 1, ",": 1, "": 2, "\u5c31": 1, "\u7b49": 1, "\u8cfa": 1, "\u4e86": 1}, "Subtract": {"\u516b": 1, "\u51cf\u53bb": 1, "\u4e09": 1, "\u5c31": 1, "\u80fd": 1, "\u5f97\u5230": 1, "\u4e94": 1}, "training": {"\u4e0d\u7ba1": 1, "\u8bad\u7ec3": 1, "\u591a\u4e48": 1, "\u8270\u82e6": 1, "\u6ca1\u6709": 1}, "meowed": {"\u732b\u53eb": 1}, "Restart": {"\u91cd\u65b0\u542f\u52a8": 1, "\u7535\u8111": 1}, "attributes": {"\u5c06": 1, "\u5f52\u529f\u4e8e": 1, "\u597d\u8fd0": 1}, "jungle": {"\u4e00\u672c": 1, "\u5173\u4e8e": 1, "\u4e1b\u6797": 1, "\u4e66": 1}, "adventure": {"\u5192\u9669": 2}, "moral": {"\u4ee5": 1, "\u541b\u5b50": 1, "\u4e4b": 1, "\u9053": 1}, "effect": {"\u5225": 1, "\u5373\u4f7f": 1, ",": 1, "\u5c0d": 1, "\u6211": 1}, "champion": {"\u5927\u5bb6": 1, "\u524d": 1, "\u51a0\u519b": 1, "\u5f97\u4e3b": 1, "\u53d1\u751f": 1}, "describe": {"\u544a\u8bc9": 1, "\u7ea2\u8336": 1, "\u7eff\u8336": 1}, "bounced": {"\u652f\u7968": 1, "\u88ab": 1, "\u9000\u7968": 1}, "crowded": {"\u6324\u6ee1": 1, "\u5e73\u65e5": 1, "\u6bd4\u8f03": 1, "\u64c1\u64e0": 1, "\u6324\u8fdb": 1, "\u90a3\u95f4": 1, "\u5c0f\u623f\u95f4": 1, "\u91cc": 1, "\u4e0a": 1, "\u64e0\u6eff": 1}, "undressing": {"\u8131\u8863\u670d": 1}, "forks": {"\u628a": 1, "\u53c9\u5b50": 1}, "basement": {"\u7a83\u8d3c": 1, "\u4ece": 1, "\u5730\u4e0b\u5ba4": 1, "\u7a97\u53e3": 1, "\u8fdb\u5165": 1}, "yield": {"\u61c9\u8a72": 1, "\u5728": 1, "\u4e4b\u4e0b": 1}, "temptation": {"\u5c48\u670d": 2, "\u8a98\u60d1": 2, "\u65bc": 1}, "abated": {"\u98ce\u66b4": 1, "\u51cf\u5f31": 1}, "neat": {"\u771f": 1, "\u6574\u6f54": 1}, "suits": {"\u8fd9": 1, "\u6761": 1, "\u9002\u5408": 1, "\u53ea\u8981": 1, "\u65b9\u4fbf": 1, "": 1, "\u90fd": 1, "\u4f60": 1}, "proficient": {"\u7cbe\u901a": 1, "\u6cd5\u8a9e": 1}, "shone": {"\u6c92": 1, "\u6c23": 1, "\u5979": 1, "\u7684": 1, "\u96d9\u773c": 1, "\u56e0\u70ba": 1, "\u5e78\u798f": 1}, "sleeve": {"\u6372": 1, "\u8d77": 1, "\u53f3": 1, "\u908a": 1, "\u8896\u5b50": 1}, "demonstrated": {"\u8fd9\u4f4d": 1, "\u7528": 1, "\u8bd5\u9a8c": 1, "\u8bba\u8bc1": 1, "\u8fd9\u4e2a": 1, "\u60f3\u6cd5": 1}, "itself": {"\u63a8\u95e8": 1, "\u597d": 1, "": 1, "\u81ea\u5df1": 1}, "disturbing": {"\u6ca1": 1, "\u6253\u6270\u5230": 1, "\u5427": 1, "\uff1f": 1}, "11": {"11": 2, "\u70b9": 1}, "networks": {"\u793e\u4ea4": 1, "\u7f51\u7edc": 1, "\u8fc7": 1, "\u79c1\u4eba": 1}, "manager": {"\u7d93\u7406": 1, "\u6279\u51c6": 1}, "Hide": {"\u4f60": 1, "\u85cf\u9032": 1, "\u6ac3\u5b50": 1, "\u88e1": 1, "\u53bb": 1}, "Selling": {"\u8ce3\u8eca": 1}, "online": {"\u5728": 2, "\u7db2": 1, "\u8def\u4e0a": 1, "\u7db2\u4e0a": 1, "\u4e00\u672c": 1}, "competed": {"\u56db\u5339": 1, "\u99ac": 1, "\u53c3\u52a0": 1}, "error": {"\u72af": 1, "\u4e2a": 1, "\u9519\u8bef": 1}, "carbonated": {"\u78b3\u9178": 1, "\u996e\u6599": 1}, "saving": {"\u70ba": 1, "\u5b58\u9322": 1, "\u5728": 1, "\u7701\u94b1": 1, "\u65b0\u8f66": 1}, "method": {"\u9019\u500b": 1, "\u65b9\u6cd5": 1, "\u4e00\u5b9a": 1, "\u6703": 1, "\u6210\u529f": 1}, "recall": {"\u60f3\u4e0d\u8d77": 1, "\u4f86": 1, "\u4e0a\u6b21": 1, "\u898b\u9762": 1, "\u60c5\u51b5": 1}, "advertising": {"\u70ba": 1, "\u4e00\u5bb6": 1, "\u5ee3\u544a": 1, "\u516c\u53f8": 1, "\u90a3": 1, "\u5bb6": 1, "\u5e7f\u544a": 1}, "Blood": {"\u5230\u5904": 1, "\u662f": 1, "\u8840": 1}, "swallows": {"\u770b\u5230": 1, "\u8d8a\u4f86\u8d8a": 1, "\u71d5\u5b50": 1}, "frightens": {"\u6709\u4e9b": 1, "\u5bb3\u6015": 1}, "optimistic": {"\u90a3\u4e48": 5, "\u4e50\u89c2": 5, "\u6ca1\u6709": 2, "\u6e6f\u59c6\u6a02": 1, "\u89c0": 1}, "invite": {"\u8bf7": 1, "\u53c2\u52a0": 1, "\u6d3e\u5bf9": 1}, "upside": {"\u753b": 1, "\u6302\u53cd": 1}, "ways": {"\u6d4b\u901f": 1, "\u65b9\u6cd5": 1, "\u5f88\u591a": 1}, "defeatist": {"\u62b1\u8457": 1, "\u5931\u6557": 1, "\u4e3b\u7fa9": 1, "\u7121\u6cd5": 1, "\u4e00\u5834": 1, "\u6f02\u4eae": 1, "\u4ed7": 1}, "include": {"\u9019\u500b": 2, "\u5305\u542b": 1}, "dancer": {"\u4e00\u500b": 1, "\u5f88\u597d": 1, "\u821e\u8005": 1, "\u8df3\u821e": 1, "\u8df3": 1, "\u5f97": 1, "\u5f88\u68d2": 1}, "stroganoff": {"\u600e\u9ebc": 1, "\u4fc4\u5f0f": 1, "\u7092": 1, "\u7247": 1}, "beef": {"\u725b\u8089": 3, "\u4f86": 1, "\"": 1, "": 1}, "pack": {"\u6253\u5305": 1}, "arrogance": {"\u5fcd\u53d7": 1, "\u50b2\u6162": 2, "\u53d7\u4e0d\u4e86": 1}, "Boys": {"\u4e00\u822c\u6765\u8bf4": 1, "": 4, "\u5973\u751f": 1, "\u7537\u5b69": 1, "\u5011": 1, "\u4e0d\u8981": 1}, "Hug": {"\u8bf7": 1, "\u62b1\u7d27": 1, "\u62b1\u62b1": 1, "\uff01": 1}, "sunflower": {"\u90a3": 1, "\u4e00\u6735": 1, "\u5411\u65e5\u8475": 1}, "Whoever": {"\u90a3\u4e9b": 1, "\u4e70\u6765": 1, "\u4eba": 1, ",": 1, "": 1, "\u4e0d": 1, "\u53bb": 1}, "caviar": {"\u9b5a\u5b50": 1, "\u91ac": 1}, "suited": {"\u9019\u4ef6": 1, "\u6d0b\u88dd": 2, "\u9069\u5408": 2, "\u90a3\u4ef6": 1}, "praying": {"\u5728": 1, "\u7948\u79b1": 1}, "Bringing": {"\u517b": 1, "\u5927": 1, "\u4e00\u4e2a": 1, "\u4e00\u9879": 1, "\u8270\u96be": 1}, "period": {"\u7b2c\u4e09": 1, "\u7bc0": 1, "\u662f": 1, "\u8ab2": 1, "\u4e00\u6bb5\u65f6\u95f4": 1}, "spending": {"\u5f85": 1, "\u5f97": 1, "\u8d8a\u6765\u8d8a": 1, "\u4e45": 1, "\u8eab\u4e0a": 1, "\u82b1": 1}, "afterwards": {"\u4ee5\u540e": 1, "\u5f80": 1, "\u54ea": 1, "\u8d70": 1}, "Visiting": {"\u5230": 1, "\u5f88\u8cb4": 1, "\u53c3\u89c0": 1, "\u89c0\u5149\u52dd": 1, "\u5730": 1, "\u7d2f\u58de": 1}, "decrease": {"\u8fd9\u79cd": 1, "\u836f\u4f1a": 1, "\u51cf\u8f7b": 1, "\u75bc\u75db": 1}, "scenic": {"\u98a8\u666f": 1, "\u512a\u7f8e": 1, "\u800c": 1}, "injure": {"\u6309\u7167": 1, "\u624b\u7eed": 1, "\u6765": 1, "\u7684\u8bdd": 1, "\u4f60": 1, "\u53ef\u80fd": 1}, "yelling": {"\u518d": 1, "\u558a\u53eb": 1, "\u6c92\u6709": 1, "\u5728": 1, "\u543c": 1}, "chest": {"\u80f8\u75db": 1, "": 1}, "handball": {"\u5e74": 1, "\u64cd\u5834": 1, "\u4e0a": 1, "\u624b\u7403": 1}, "discovery": {"\u6709": 1, "\u4e00\u500b": 1, "\u767c\u73fe": 1}, "Uncle": {"\u53d4\u53d4": 1}, "liking": {"\u559c\u6b22": 1}, "leaks": {"\u5c4b\u9802": 1, "\u6f0f\u6c34": 1}, "testified": {"\u4f5c\u8b49": 1, "\u8aaa": 1, "\u9019": 1, "\u540d": 1, "\u7537\u5b50": 1}, "signal": {"\u4fe1\u865f": 2, "\u8b93": 1}, "courageous": {"\u60a8": 1, "\u52c7\u6562": 2, "": 1}, "locating": {"\u96be\u4ee5": 1, "\u627e\u5230": 1}, "noodles": {"\u8981": 1, "\u9eb5": 1, "\u689d": 1, "\u9084": 1}, "concerts": {"\u4e00\u573a": 1, "\u97f3\u4e50\u4f1a": 1}, "quickest": {"\u6700\u5feb": 2, "\u65b9\u5f0f": 2, "\u4e58\u98de\u673a": 1}, "approaching": {"\u6b63": 1, "\u63a5\u8fd1": 1}, "bloom": {"\u6bd4\u5225": 1, "\u958b\u82b1": 1}, "conservationists": {"\u81ea\u7136\u73af\u5883": 1, "\u4fdd\u62a4\u4e3b\u4e49\u8005": 1, "\u62c5\u5fc3": 1, "\u6301\u7eed": 1, "\u5c60\u6740": 1, "\u9cb8\u9c7c": 1, "\u6b63": 1, "\u63a8\u52a8": 1, "\u8d70\u5411": 1, "\u706d\u7edd": 1}, "prevent": {"\u6ca1\u4ec0\u4e48": 1, "\u80fd": 1, "\u963b\u6b62": 1, "\u51fa\u53d1": 1}, "locate": {"\u65e0\u6cd5": 1, "\u627e\u5230": 1, "\u6839\u6e90": 1}, "parasol": {"\u628a": 1, "\u9633\u4f1e": 2}, "unmarried": {"\u751a\u9ebc": 1, "\u4e0d": 1, "\u7d50\u5a5a": 1}, "overweight": {"\u89c9\u5f97": 1, "\u80a5": 1, "\u4e0d\u6b62": 1, "\u5c0f\u65f6\u5019": 1, "\u9ede": 1, "\u8d85\u91cd": 2}, "cozy": {"\u4e00\u500b": 1, "\u8212\u9069": 1, "\u5c0f": 1, "\u88e1": 1}, "dumped": {"\u7529": 1, "\u9019\u9ebc": 1, "\u4e00\u500b": 1}, "starvation": {"\u6709": 1, "\u4e8e": 1, "\u9965\u997f": 1}, "Diplomats": {"\u5916\u4ea4\u5b98": 1, "\u6709": 1, "\u591a\u79cd": 1, "\u7279\u6743": 1}, "Hopefully": {"\u5e0c\u671b": 1, "\u559c\u6b61": 1, "\u4e4b": 1, "\u65c5": 1}, "governed": {"\u7d71\u6cbb": 1, "\u9019\u500b": 1, "\u570b\u5bb6": 1}, "Creationism": {"\u521b\u9020": 1, "\u4e3b\u4e49": 1, "\u4e00\u79cd": 1, "\u4f2a\u79d1\u5b66": 1}, "Lunch": {"\u5348\u9910": 2, "\u9001\u5230": 1, "\u4e86": 2}, "estimated": {"\u8fd9": 1, "\u5e45\u753b": 1, "\u88ab": 1, "\u4f30\u4ef7": 1, "\u6570\u767e\u4e07\u5143": 1}, "Mondays": {"\u661f\u671f\u4e00": 4, "\u6bcf\u500b": 1, "\u90fd": 1, "\u89ba": 1, "\u5f97": 1, "\u6182\u9b31": 1}, "hearing": {"\u542c\u8bf4": 1, "\u4e0d\u5c11": 1, "\u6536\u5230": 3, "\u4f86\u4fe1": 2, "\u80fd": 1, "\u4fe1": 1, "\u542c\u817b": 1}, "Shine": {"\u51fa\u9580": 1, "\u628a": 1, "\u64e6\u4eae": 1}, "detectives": {"\u4e24\u4e2a": 1, "\u4fa6\u63a2": 1}, "Wild": {"\u91ce\u751f": 1, "\u52d5\u7269": 1, "\u88e1": 1}, "libras": {"\u8fd9\u4ef6": 1, "\u5356": 1, "\u82f1\u9551": 1}, "blouse": {"\u886c\u886b": 2, "\u628a": 1, "\u896f\u886b": 1, "\u4e00": 1, "\u4e00\u4ef6": 1, "\u4e00\u6761": 1, "\u8fde\u8863\u88d9": 1}, "context": {"\u8fd9": 2, "\u5f97": 1, "\u770b": 2, "\u60c5\u51b5": 2, "\u8981": 1}, "Anniversaries": {"\u9031\u5e74": 1, "\u7d00\u5ff5": 1, "\u5f88": 1}, "Fantastic": {"\u5f88\u68d2": 1, "\u597d": 1, "\u68d2": 1}, "Beats": {"\u4e00\u65e0\u6240\u77e5": 1}, "Young": {"\u5c0f\u5b69": 1, "\u5bf9": 1, "\u5f88": 1, "\u6709": 1, "\u70ed\u60c5": 1}, "PTA": {"PTA": 1, "\u4ee3\u8868": 1, "\u610f\u601d": 1}, "pigeons": {"\u7740": 1, "": 2, "\u4e00\u8fb9": 2, "\u5582": 1}, "L.A.": {"\u66f4": 1, "\u6d1b\u6749\u77f6": 1}, "Running": {"\u8dd1\u6b65": 1, "\u5c0d": 1, "\u6709\u76ca": 1}, "beverage": {"\u559c\u6b22": 1, "\u996e\u6599": 1}, "scrap": {"\u7d66": 1, "\u4e00\u5f35": 1, "\u5ee2\u7d19": 1}, "rolled": {"\u6e6f\u59c6\u62c9": 1, "\u4e0b": 1}, "promoted": {"\u6649\u5347": 1, "\u4e86": 1}, "branch": {"\u5206\u5e97": 1, "\u4e0b\u4e2a\u6708": 1, "\u5f00\u5f20": 1}, "monster": {"\u4ece": 1, "\u5c71\u4e0a": 1, "\u8d70\u6765": 1, "\u4e00\u53ea": 1, "\u602a\u7269": 1}, "rivers": {"\u4f7f": 1, "\u6cb3\u6c34": 1, "\u6cdb\u6ee5": 1}, "Except": {"\u9664\u4e86": 1, "\u4e00": 1, "": 1}, "awake": {"\u60f3": 1, "Tom": 1, "\u5df2\u7ecf": 1, "\u9192": 2, "\u7740": 1}, "hundreds": {"\u5e7e\u767e\u672c": 1}, "Asians": {"\u4e9e\u6d32": 1, "\u4eba": 1, "\u4ee5": 1, "\u4f5c\u70ba": 1, "\u5171\u7528": 1}, "evidently": {"\u660e\u986f": 1, "\u4e86": 1}, "Collect": {"\u5148": 1, "\u6536\u597d": 1, "\u601d\u7eea": 1}, "Wolves": {"\u72fc": 1, "\u5687": 1, "\u5230": 1, "\u4e86": 1}, "Revolution": {"\u6cd5\u56fd": 1, "\u5927\u9769\u547d": 1, "1789": 1, "\u5e74": 1}, "leisure": {"\u5229\u7528": 1, "\u7a7a\u95f2": 1, "\u505a": 1, "\u5e03\u5a03\u5a03": 1}, "barbershop": {"\u7406": 1, "\u9aee": 1, "\u5e97": 1}, "puppies": {"\u975e\u5e38": 1, "\u5c0f\u72d7": 1}, "toured": {"\u6e38\u89c8": 1, "\u4e3b\u8981": 1}, "busier": {"\u5e73\u65f6": 1, "\u8fd8": 1, "\u5fd9": 1}, "horrible": {"\u53ef\u6015": 1, "\u591a\u4e48": 1, "\u7cdf\u7cd5": 1, "\u554a": 1}, "pleasures": {"\u4e00\u500b": 1, "\u6a02\u8da3": 1, "\u96fb\u8996": 1}, "mornings": {"\u89ba\u5f97": 1, "\u5bd2\u51b7": 1, "\u65e9\u6668": 1, "\u5f88": 2, "\u6bcf": 1}, "Sociopaths": {"\u53cd": 1, "\u793e\u4f1a": 1, "\u8005": 1, "\u6781\u5c11": 1, "\u4e3a": 1, "\u663e\u9732": 1, "\u61ca\u6094": 1, "\u7f6a\u6076": 1}, "So": {"\u90a3\u4e48": 1, "": 1, "\u60a8": 1, "\u5565": 1, "\u5462": 1, "\u90a3": 1}, "attained": {"\u7ec8\u4e8e": 1, "\u8fbe\u5230": 1, "\u81ea\u5df1": 1}, "frowned": {"\u76ba\u8457": 1, "\u7709\u982d": 1}, "speechless": {"\u60ca": 1, "\u5f97": 1, "\u76ee\u77aa\u53e3\u5446": 1}, "Nowadays": {"\u73fe\u5728": 2, "\u6709\u9b3c": 1, "\u958b\u8eca": 1, "\u53bb": 1}, "Men": {"\u7537\u4eba": 1, "\u5e94\u8be5": 1}, "glared": {"\u77aa": 1}, "whisky": {"\u8fd9\u79cd": 1, "\u5a01\u58eb\u5fcc": 1, "\u592a\u70c8": 1}, "doghouse": {"\u72d7": 1, "\u5c4b": 1, "\u5efa": 1}, "corners": {"\u4e2a": 1, "\u7edd\u5bf9": 1, "\u4e0d\u4f1a": 1, "\u5077\u5de5\u51cf\u6599": 1}, "ends": {"\u4ee5": 1, "\u5973\u4e3b\u89d2": 1, "\u544a\u7ec8": 1}, "transfer": {"\u6362\u4e58": 1, "?": 1}, "Place": {"\u60f3": 1, "\u653e\u5728": 2, "\u54ea\u88e1": 2, "\u5c31": 1}, "Environmental": {"\u74b0\u5883": 1, "\u6b63": 1, "\u7570\u5e38": 1, "\u60c5\u6cc1": 1}, "pollution": {"\u6c61\u67d3": 3, "\u8c08\u8bba": 1, "\u5373\u5c06": 1, "\u5bf9": 1, "\u5c55\u5f00\u8ba8\u8bba": 1}, "reflection": {"\u7a97\u6237": 1, "\u4e0a": 1, "\u6620\u50cf": 1}, "Jazz": {"\u878d\u5408": 2, "\u6416\u6efe\u6a02": 1, "\u8207": 1}, "cheeks": {"\u6cea\u6c34": 1, "\u6cbf\u7740": 1, "\u9762\u988a": 1, "\u6d41": 1, "\u4e0b\u6765": 1}, "Broccoli": {"\u897f\u85cd\u82b1": 1, "\u4e4b\u4e00": 1}, "healthiest": {"\u6700": 2, "\u5065\u5eb7": 2, "\u5c07": 1, "\u8996\u70ba": 1}, "distrusted": {"\u4e00\u76f4": 1, "\u4e0d": 1, "\u4fe1\u4efb": 1}, "contemporary": {"\u5b66\u4e60": 1, "\u73b0\u4ee3\u6587\u5b66": 1}, "Christ": {"\u4ee5": 1, "\u57fa\u7763": 1, "\u67e5\u7406\u65af": 1, "\u570b\u738b": 1, "\u4e4b": 1, "\u540d": 1}, "treatments": {"\u533b\u836f\u8d39": 1, "\u5927\u6982": 1, "\u8981": 1}, "flammable": {"\u53ef\u71c3": 1}, "tested": {"\u5230": 1, "\u6aa2\u67e5": 1}, "soil": {"\u571f\u58e4": 1, "\u9577": 1, "\u4e0d\u51fa": 1, "\u4efb\u4f55": 1, "\u6771\u897f\u4f86": 1}, "Over": {"\u7761": 1, "\u8fc7\u5934": 1, "\u4e0d\u662f": 1, "\u7406\u7531": 1}, "arrives": {"\u4e00": 1, "\u5230": 2, ",": 1, "": 1}, "consult": {"\u8bf7\u6559": 1, "\u4e00\u4e0b": 1, "\u8acb": 1, "\u6559": 1}, "skeptical": {"\u6000\u7591": 1}, "unsatisfied": {"\u5bf9": 1, "\u7ed3\u679c": 1, "\u4e0d\u6ee1": 1}, "barometer": {"\u6c14\u538b\u8ba1": 1, "\u4e0b\u964d": 1, "": 1}, "sale": {"\u8981\u5356": 1, "\u4e1c\u897f": 1, "\u51fa\u552e": 1, "\u8fd9\u4e2a": 1, "\u5356": 1, "\u4e0d\u5356": 1}, "scenario": {"\u574f": 1, "\u60c5\u5883": 1}, "dealing": {"\u64c5\u9577": 1, "\u61c9\u4ed8": 1, "\u5c0f\u5b69\u5b50": 1}, "Bali": {"12": 1, "\u6708\u4efd": 1, "\u5df4\u5398\u5c9b": 1, "\u6781\u5176": 1, "\u708e\u70ed": 1, "\u6f6e\u6e7f": 1}, "Talk": {"\u8aaa": 1, "\u5f97": 1, "\u7c21\u55ae": 1}, "toothache": {"\u7259\u75db": 1, "\u5f97": 1, "\u53b2\u5bb3": 1}, "Takeuchi": {"\u7af9": 1, "\u5167": 1, "\u6c92\u6709": 1}, "elephants": {"\u5927\u8c61": 2, "\u4e0a\u5199": 1, ",": 1, "": 2, "\u80fd": 1}, "delayed": {"\u88ab": 2, "": 1}, "argument": {"\u89c1": 1, "\u4e89\u8bba": 1}, "affair": {"\u9019\u4ef6": 1, "\u4e8b": 1, "\u7121\u95dc": 1, "\u4ef6": 1, "\u4e8b\u60c5": 1, "\u4f7f": 1, "\u4e00\u8209": 1, "\u6210\u540d": 1}, "predict": {"\u9810\u8a00\u6703": 1, "\u751a\u9ebc": 1, "\u5f88\u96be\u8bf4": 1, "\u5c06": 1, "\u600e\u6837": 1}, "towels": {"\u7ed9": 1, "\u6d74\u5ba4": 1, "\u62ff": 1, "\u51e0\u6761": 1, "\u6bdb\u5dfe": 1, "\u6765": 1}, "Dallas": {"\u958b": 1, "\u5361": 1, "\u8eca": 1, "\u5230": 1, "\u9054": 1, "\u62c9\u65af": 1}, "identified": {"\u78ba\u8a8d": 1, "\u662f": 1, "\u6bba": 1, "\u4eba": 1, "\u5147": 1, "\u624b": 1}, "obese": {"\u5f88\u80d6": 1, "": 1}, "dollar": {"\u5c0f": 1, "\u5b30\u5b69": 1, "\u6495\u6389": 1, "\u4e00\u5f35": 1, "\u5341\u7f8e\u5143": 1, "\u9214\u7968": 1}, "bawling": {"\u53ad\u7169": 1, "\u5c0d": 1, "\u8aaa": 1, "\u6559": 1}, "shirts": {"\u628a": 1, "\u896f\u886b": 1, "\u4e7e": 1, "\u6de8": 1}, "mommy": {"\u7576": 1, "\u5abd": 1}, "permanent": {"\u6c38\u4e45": 1, "\u6b63\u5f0f\u5de5": 1, "\u4e34\u65f6\u5de5": 1, "\u8981": 1}, "miles": {"\u5230": 1, "\u8ddd\u96e2": 1, "\u5169": 1, "\u82f1\u91cc": 1}, "Others": {"\u5176\u4ed6\u4eba": 1, "\u4e0d": 1}, "disheveled": {"\u6e6f\u59c6\u982d": 1, "\u767c": 1, "\u84ec\u4e82": 1}, "transmission": {"\u6703": 1, "\u958b\u624b": 1, "\u6392\u8eca": 1, "?": 1}, "Ten": {"\u518d": 1, "\u8fc7": 1, "\u5341\u5206\u949f": 1, "\u5c31": 1, "\u6ca1\u6cb9": 1, "\u5341\u5e74": 1, "\u5341\u9593": 1}, "relief": {"\u836f\u4f1a": 1, "\u8ba9": 1, "\u8212\u670d\u4e9b": 1}, "rabbi": {"\u4e2a": 1, "\u62c9\u6bd4": 1}, "Iceland": {"\u51b0\u5cf6": 1, "\u5c6c": 1, "\u65bc\u4e39\u9ea5": 1}, "reliable": {"\u8fd9\u4e2a": 1, "\u4eba": 1, "\u9760\u4e0d\u4f4f": 1}, "calculation": {"\u4f30\u8a08": 1, "\u5979": 1}, "jet": {"\u9019": 1, "\u67b6": 1, "\u5ba2\u6a5f": 1, "\u964d\u843d": 1}, "delighted": {"\u5f88": 1, "\u9ad8\u5174": 1, "\u89c1\u5230": 1}, "chosen": {"\u6216\u8005": 1, "\u88ab": 1, "\u9009\u4e2d": 1, "\u9009\u597d": 1, "\u4e13\u4e1a": 1}, "rear": {"\u540e\u95e8": 1, "\u66fe": 1, "\u5f00": 1, "\u7740": 1}, "equal": {"\u80fd\u591f": 1, "\u80dc\u4efb": 1, "\u8fd9\u4e2a": 1, "?": 1}, "Colombian": {"\u54e5\u4f26\u6bd4\u4e9a\u653f\u5e9c": 1, "\u8981": 1}, "ID": {"\u5e36\u4e0a": 1, "\u5b78\u751f\u5361": 1, "\u6709": 1}, "20th": {"\u901d\u4e16": 1, "\u4e8e": 1, "10": 1, "\u6708": 1, "20": 1, "\u65e5": 1}, "Prime": {"\u7e3d\u7406": 1, "\u767c\u8a00": 1, "\u4f30\u8a08": 1, "\u6fc0\u6012": 1, "\u5728\u91ce": 1, "\u9ee8": 1}, "blinded": {"\u611b\u60c5": 1, "\u8b93": 1, "\u76f2\u76ee": 1, "\u5230": 1, "\u770b\u4e0d\u5230": 1, "\u932f": 1}, "Thursday": {"\u4e0a\u9031": 1, "\u56db": 1, "\u793c\u62dc\u56db": 1}, "mentally": {"\u80af\u5b9a": 1, "\u8111\u5b50": 1, "\u7cca\u6389": 1}, "toaster": {"\u518d\u6b21": 1, "\u5f04\u58de": 1, "\u70e4": 1, "\u9eb5": 1, "\u5305": 1, "\u6a5f": 1}, "Dinosaurs": {"\u6050\u9f8d": 1, "\u5728": 1, "\u5f88\u4e45\u4ee5\u524d": 1, "\u6ec5": 1, "\u7d76": 1}, "occasional": {"\u6674": 1, "\u8f6c": 1, "\u9635\u96e8": 1}, "amount": {"\u6709\u4e9b": 1, "\u8a71": 1, "\u9053\u7406": 1}, "absence": {"\u7f3a\u5e2d": 1, "\u5bfc\u81f4": 1, "\u5404\u79cd": 1, "\u8c23\u8a00": 1, "\u4ea7\u751f": 1}, "swollen": {"\u8173": 1, "\u90fd": 1, "\u816b": 1}, "irresistible": {"\u4ee4\u4eba": 2, "\u96be\u4ee5": 2, "\u6297\u62d2": 3, "\u4e0d\u53ef": 1}, "replaced": {"\u88ab": 1, "\u66ff\u6362": 1, "\u4e0b\u6765": 1}, "mike": {"\u9ea5\u514b\u98a8": 1, "\u905e": 1, "\u7d66": 1}, "vaccinated": {"\u63a5\u79cd": 1, "\u6d41\u611f\u75ab\u82d7": 1}, "commission": {"\u624b\u7eed\u8d39": 1, "\u591a\u5c11": 1}, "items": {"\u68c0\u67e5": 1, "\u8d2d\u7269\u5355": 1, "\u9879\u76ee": 1}, "horses": {"\u9a6c": 2, "": 1, "\u90fd": 1, "\u99ac": 1}, "methods": {"\u65b9\u6cd5": 1, "\u79d1\u5b66": 1}, "internship": {"\u61c9\u5fb5": 1, "\u4e00\u500b": 1, "\u6691\u671f": 1, "\u5be6\u7fd2": 1}, "scumbag": {"\u500b": 1, "\u65e0\u8cf4": 1}, "Raise": {"\u4e3e": 1, "\u8d77\u6765": 1}, "Strictly": {"\u56b4\u683c": 1, "\u4f86\u8aaa": 1, "": 1}, "honor": {"\u89ba\u5f97": 1, "\u540d\u8b7d": 1, "\u53d7\u5230": 1, "\u5a01\u8105": 1}, "T.V.": {"\u5f00": 1, "\u7740": 1, "\u7535\u89c6": 1, "\u5b89\u5fc3": 1, "\u5462": 1}, "diplomatic": {"\u5916\u4ea4": 1, "\u9014\u5f84": 1}, "Me": {"\u6ca1\u60f3\u5230": 1, "": 1}, "scholar": {"\u6709": 1, "\u51e0\u5206": 1, "\u50cf": 1, "\u5b66\u8005": 1}, "Wear": {"\u7a7f": 2}, "Cash": {"\u73b0\u91d1": 1, "\u6350\u8d60": 1}, "paintbrush": {"\u653e\u4e0b": 1, "\u756b\u7b46": 1}, "warehouse": {"\u5009\u5eab": 1, "\u524d": 1}, "forties": {"\u56db\u5341\u591a": 1, "\u6b72": 1, "\u6642\u5019": 1, "\u518d\u6b21": 1}, "unfortunately": {"\u53ef\u60dc": 1, "\u8fd9": 1}, "tiger": {"\u4e0d\u662f": 2, "\u8001\u864e": 2}, "presents": {"\u7d66": 1, "\u79ae\u7269": 1}, "1950": {"\u51fa": 1, "\u751f\u4e8e": 1, "1950": 1, "4": 1, "\u6708": 1, "\u65e5": 1}, "landlord": {"\u5730\u4e3b": 1, "\u8981": 1, "\u63d0\u9ad8": 1}, "drowned": {"\u5dee\u70b9": 1, "\u5c31": 1, "\u6eba\u6c34": 1, "\u6df9\u6b7b": 3, "\u88ab": 2, "\u5dee\u9ede": 1}, "Clearly": {"\u986f\u7136": 1, ",": 1, "": 1}, "ignored": {"\u4e0d": 1, "\u9867": 1}, "uncles": {"\u53d4\u53d4": 1, "\u5011": 2, "\uff08": 1, "\u8205\u8205": 1, "\uff09": 1, "\u6709\u6642": 1, "\u6703": 1, "\u63a2\u671b": 1}, "divorces": {"\u7ed3\u5a5a": 1, "\u79bb\u5a5a": 1}, "colors": {"\u984f\u8272": 1, "\u56fd\u65d7": 1, "\u989c\u8272": 1, "\u7ea2\u767d": 1, "\u84dd": 1}, "steak": {"\u60a8": 1, "\u725b\u6392": 2, "\u8981": 1, "\u51e0\u5206": 1, "\u719f": 1, "\u89c9\u5f97": 1, "\u5b8c": 1, "\u90a3\u5757": 1, "\u5c31": 1}, "hostess": {"\u5a36": 1, "\u4e00\u4e2a": 1, "\u7a7a\u59d0": 1}, "Accuracy": {"\u51c6\u786e\u6027": 1, "\u8ba1\u7b97": 1, "\u4e2d": 1, "\u5f88": 1}, "external": {"\u628a": 1, "\u4fdd\u5b58": 1, "\u5916\u63a5\u5f0f": 1, "\u786c\u789f": 1}, "command": {"\u5f88\u597d": 1, "\u80fd\u529b": 1, "\u96d6\u7136": 1, "": 1, "\u4f46\u662f": 1}, "AC": {"\u4f60": 1, "\u51b7\u6c14": 1, "\u8c03": 1, "\u9ad8\u70b9": 1}, "rowing": {"\u5212\u8239": 1}, "features": {"\u7531": 1, "": 1, "\u52a0\u62ff\u5927": 1, "\u82f1\u8a9e": 1, "\u548c": 1, "\u82f1\u570b": 1, "\u5169\u8005": 1}, "leftovers": {"\u628a": 2, "\u5eda\u9918": 1, "\u9935": 1, "\u7d66": 1, "\u5403": 2, "\u5269\u4e0b": 1, "\u4e1c\u897f": 1, "\u7ed9": 1}, "divide": {"\u5206": 1}, "unicycle": {"\u8a66\u8a66": 1, "\u9a0e": 1, "\u7368\u8f2a\u8eca": 1}, "personality": {"\u4e2a\u6027": 1, "\u8fd8\u6709": 1, "\u65b9\u9762": 1, "\u4e86\u89e3": 1}, "hurricane": {"\u66b4\u98ce\u96e8": 1, "\u8fc7\u540e": 1, "\u7684": 1, "\u6210": 1}, "Wi": {"\u4e0d\u80fd": 1, "\u8acb": 1, "Wi": 1, "-": 1, "Fi": 1, "\u5bc6\u78bc": 1, "\u5462": 1, "?": 1}, "Lindbergh": {"Charles": 1, "": 2, "Lindbergh": 1, "\u65bc": 1, "1927": 1, "\u5e74": 1, "\u4e86": 1, "\u7b2c\u4e00\u6b21": 1, "\u7368\u81ea": 1}, "erase": {"\u62b9": 1, "\u53bb": 1, "\u4e0d\u597d": 1}, "memories": {"\u8bb0\u5fc6": 2, "\u4ec5": 1, "\u4e1c\u897f": 1, "\u5c31\u662f": 1}, "buildings": {"\u8bb8\u591a": 1, "\u5efa\u7b51": 1, "\u5927\u697c": 1, "\u5bd2\u9178": 1}, "fellow": {"\u500b": 1, "\u597d\u4eba": 1}, "pragmatic": {"\u611f\u60c5": 1, "\u652f\u6301": 1, "": 1, "\u7406\u6027": 1}, "unlock": {"\u80fd": 1, "\u6253\u5f00": 1}, "religious": {"\u4fe1\u6559": 1}, "crucial": {"\u4e00\u4e2a": 1, "\u5173\u952e\u70b9": 1}, "Fight": {"\u50cf": 1, "\u4e00\u6837": 1, "\u6218\u6597": 1}, "strings": {"\u4e3a": 1, "\u6697\u7bb1": 1, "\u64cd\u4f5c": 1}, "1636": {"\u59cb\u5efa": 1, "\u4e8e": 1, "1636": 1, "\u5e74": 1}, "hook": {"\u628a": 1, "\u639b": 1, "\u9264\u5b50": 1}, "interrupting": {"\u5c0d": 1, "\u4e0d\u8d77": 1, ",": 1, "": 1}, "data": {"\u9019\u500b": 1, "\u6578\u64da": 1, "\u4e00\u9ede": 1, "\u4e5f": 1, "\u6e96\u78ba": 1}, "resort": {"\u907f\u6691": 1, "\u52dd\u5730": 1}, "satisfy": {"\u4f17\u53e3\u96be\u8c03": 1}, "borders": {"\u4e0e": 1, "\u76f8\u90bb": 1}, "tender": {"\u4e00\u500b": 1, "\u6eab\u67d4": 1, "\u543b": 1}, "Mercury": {"\u6c34\u661f": 1, "\u592a\u967d\u7cfb": 1, "\u4e2d": 1, "\u6700\u5c0f": 1}, "ecstatic": {"\u5174\u594b\u4e0d\u5df2": 1}, "acquitted": {"\u6cd5\u5ead": 1, "\u5bf9": 1, "\u8c0b\u6740\u7f6a": 1, "\u540d": 1, "\u4f5c\u51fa": 1, "\u65e0\u7f6a\u5224\u51b3": 1}, "folks": {"\u5f97\u53bb": 1, "\u517b\u8001\u9662": 1}, "refuses": {"\u5c3d\u7ba1": 1, "\u62d2\u7edd": 1, "\u5b83": 1, "\u7ecf\u6d4e": 1, "\u653f\u7b56": 1}, "object": {"\u53cd\u5bf9": 1, "\u76f4\u547c\u5176\u540d": 1, "\u4e0d": 1, "\u540c\u610f": 1, "\u90a3\u513f": 1}, "greet": {"\u6ce8\u610f": 1, "\u5230": 1, "\u5834": 1, "": 1, "\u6c92\u5411": 1}, "deaf": {"\u5bf9": 1, "\u7f6e\u82e5\u7f54\u95fb": 1}, "comics": {"\u4ec0\u9ebc": 1, "\u90fd": 1, "\u505a": 1, "\u53ea\u662f": 1, "\u770b\u6f2b": 1, "\u756b": 1}, "gibberish": {"\u80e1": 1, "\u8aaa": 1}, "interfere": {"\u63d2\u624b": 1, "\u5e72\u6d89": 1, "\u4eba\u4e8b": 1, "\u52d9": 1, "\u6b0a\u529b": 1}, "Washing": {"\u6d17\u8863\u670d": 1}, "balance": {"\u5931\u53bb": 1, "\u5e73\u8861": 1, "\u6454": 1, "\u843d\u4e0b\u6765": 1}, "peg": {"\u639b": 1, "\u639b\u9264": 1}, "communicate": {"\u8981": 1, "\u8bbe\u6cd5": 1, "\u4ea4\u6d41": 2}, "windmill": {"\u53bb": 1, "\u8377\u5170": 1, ",": 1, "": 1, "\u89c1": 1}, "toward": {"\u90a3\u4e2a": 1, "\u671d": 1, "\u8dd1\u8fc7\u6765": 1}, "bites": {"\u88ab": 1}, "developing": {"\u53d1\u5c55\u4e2d\u56fd\u5bb6": 1}, "balloon": {"\u9019": 1, "\u9846": 1, "\u6c23\u7403": 1, "\u88ab": 1, "\u6a39\u7d46": 1, "\u4f4f": 1}, "gratify": {"\u575a\u6301": 1, "\u505a\u5bf9": 1, "\u4e8b\u60c5": 1, "\u8fd9": 1, "\u4f1a": 1, "\u4e00\u90e8\u5206": 2, "\u4eba": 2, "\u540c\u65f6": 1, "\u4f7f": 1}, "cheating": {"\u4e2d": 1, "\u4f5c\u5f0a": 1, "\u6642": 1, "\u88ab": 1}, "insufficient": {"\u62cd\u7167\u7247": 1, "\u5149\u7ebf": 1, "\u4e0d\u591f": 1, "\u4eae": 1}, "thirtieth": {"Tom": 1, "\u4e09\u5341": 1, "\u6b72": 1}, "fumbled": {"\u6478\u7d22": 1, "\u8457": 1, "\u4e00\u5f35": 1}, "Tower": {"\u53c2\u89c2": 1, "\u8fc7": 1, "\u5854": 2, "\u66fe": 1, "\u9435\u5854": 2, "\u53c3\u89c0": 1}, "resisting": {"\u505c\u6b62": 1, "\u62b5\u6297": 1}, "tend": {"\u5973\u4eba": 1, "\u5f80\u5f80": 1, "\u6d3b\u5f97": 1, "\u66f4": 1, "\u9577": 1}, "refreshing": {"\u51b7\u6c34": 1, "\u6691\u70ed": 1, "\u91cc": 1, "\u5341\u5206": 1, "\u63d0\u795e": 1}, "California": {"\u52a0\u5229\u798f\u5c3c\u4e9a": 1, "\u79cd": 1}, "Toyota": {"\u4e30\u7530": 1, "\u798f\u7279": 1}, "freshened": {"\u98ef\u524d": 1, "\u628a": 1, "\u68b3\u6d17\u6253\u626e": 1, "\u4e00\u4e0b": 1}, "yeast": {"\u7528": 1, "\u3001": 1, "\u53d1\u9175\u7c89": 1}, "Robots": {"\u600e\u4e48": 1, "\u53ef\u80fd": 1, "\u673a\u5668\u4eba": 2, "\u5462": 1, "\u4e0d\u4f1a": 1, "\u505a\u68a6": 1}, "aging": {"\u8001\u9f84\u5316": 1, "\u533b\u7597\u4fdd\u5065": 1, "\u652f\u51fa": 1}, "undergo": {"\u5c06": 1, "\u4f1a": 1, "\u63a5\u53d7": 1}, "astrology": {"\u81ea\u5df1": 1, "\u5360\u661f\u672f": 1}, "Indigenous": {"\u6fb3\u5927\u5229\u4e9a": 1, "\u571f\u8457": 1, "\u5df2\u7ecf": 1, "\u4e0a\u5343\u5e74": 1, "\u888b\u9f20": 1}, "Iraq": {"\u4f0a\u62c9\u514b": 1, "\u4f0a\u6717": 1, "\u6709": 1, "\u4ec0\u4e48": 1}, "zero": {"\u96f6\u4e0b": 1, "\u5341\u5ea6": 1}, "prescribed": {"\u533b\u751f": 1, "\u7ed9": 1, "\u5f00": 1}, "yourselves": {"\u4f60\u4eec": 1, "\u8fd9\u4e9b": 1, "\u5e2e\u4e0d\u4e86": 1, "\u81ea\u5df1": 1}, "pretends": {"\u88c5": 1, "\u542c\u4e0d\u89c1": 1}, "Turkish": {"\u500b": 1, "\u571f\u8033\u5176": 1, "\u50b3\u7d71": 1}, "risked": {"\u5192": 1, "\u7740": 1, "\u8d22\u4ea7": 1, "\u5371\u9669": 1}, "poison": {"\u5c0d": 2, "\u67d0\u4eba": 1, "\u6709\u5229": 2, "\u53e6\u5916": 1, "\u672a\u5fc5": 1}, "0": {"0": 1, "\u5ea6": 1, "\u6642": 1, "\u7d50\u6210": 1}, "freezes": {"\u51b0": 2}, "expressing": {"\u5728": 1, "\u8868\u8fbe": 1, "\u610f\u89c1": 1, "\u65f6\u5019": 1, "\u603b\u662f": 1, "\u614c\u5f20": 1}, "upon": {"\u8fc7\u7a0b": 1, "\u4e2d": 1, "": 1, "\u60f3\u5230": 1}, "Waikiki": {"\u4e58": 1, "\u51e0\u8def": 1, "\u8f66": 1, "\u6000\u57fa\u57fa": 1}, "industrial": {"\u5de5\u4e1a": 1, "\u57ce\u5e02": 1}, "deeply": {"\u4f1a": 1, "\u88ab": 2, "\u6df1\u6df1\u5730": 1, "\u8fd9": 1, "\u666f\u8272": 1, "\u6df1\u6df1": 1, "\u8ff7\u4f4f": 1}, "laundry": {"\u6d17\u8863\u670d": 1}, "DNA": {"DNA": 1, "\u68c0\u6d4b": 1, "\u8868\u660e": 1, ",": 1}, "diary": {"\u671f\u95f4": 1, ",": 1, "": 1, "\u4e86": 1, "\u5df2\u7d93": 1, "\u5beb": 1, "\u65e5\u8a18": 1}, "childishly": {"\u8bf4\u8bdd": 1, "\u5e7c\u7a1a": 1}, "strictly": {"\u544a\u8a34": 1, "\u53ea\u80fd": 2, "\u77e5\u9053": 1, "\u8981\u8bf4": 1, "\u77e5": 2}, "tricked": {"\u54c4": 1, "\u4f5c\u4e1a": 1}, "richest": {"\u4e16\u754c": 1, "\u6700": 2, "\u6709": 1, "\u9322": 1, "\u6240": 1, "\u6709\u94b1": 1, "\u5bb6\u4f19": 1}, "obviously": {"": 2, "\u5f88": 1}, "scar": {"\u6211\u4f1a": 1, "\u7559": 1, "\u75a4": 1}, "Forewarned": {"\u51e1\u4e8b": 1, "\u8981": 1, "\u9810\u5148": 1, "\u6e96\u5099": 1, "\u597d": 1}, "process": {"\u5411": 1, "\u89e3\u91cb": 1, "\u9019\u500b": 1, "\u904e\u7a0b": 1}, "booklet": {"\u9019\u672c": 1, "\u5c0f\u518a\u5b50": 1, "\u514d\u8cbb": 1}, "outskirts": {"\u6771": 1, "\u4eac\u90ca": 1, "\u5340": 1}, "reform": {"\u6539\u9769": 2}, "enjoys": {"\u559c\u6b61": 1, "\u4eab\u53d7": 1, "\u56ed\u827a": 1}, "desires": {"\u6574\u4e2a": 1, "\u9700\u8981": 1}, "exquisite": {"\u89c0\u5149\u5ba2": 1, "\u88ab": 1, "\u7368\u7279": 1, "\u666f\u81f4": 1, "\u6240": 1, "\u5438\u5f15": 1}, "scientists": {"\u6709": 1, "\u79d1\u5b78\u5bb6": 1, "\u8a8d\u70ba": 1, "\u6548\u61c9": 1, "\u865b\u69cb": 1}, "musicians": {"\u4e24": 1, "\u97f3\u4e50\u5bb6": 1}, "players": {"\u9009\u624b": 2, "\u591a\u5c11": 1, "\u6ca1": 1, "\u8d62": 1, "\u4e00\u6d41": 1}, "violated": {"\u4e0d\u61c9": 1, "\u53d7\u5230": 1, "\u4fb5\u72af": 1}, "mercy": {"\u53ef\u6190": 1, "\u4eba\u6c11": 1, "\u4efb": 1, "\u6191": 1, "\u6b98\u66b4": 1, "\u7368\u88c1\u8005": 1, "\u8655\u7f6e": 1}, "July": {"\u516d\u4e03": 1, "\u6708\u4efd": 1}, "lease": {"\u7b7e": 1, "\u79df\u7ea6": 1}, "signed": {"\u4e86": 2, "\u7c3d": 1}, "crew": {"\u73fe": 1, "\u4ee3\u8239": 1, "\u96bb": 1, "\u4e00\u5c0f": 1, "\u7d44": 1, "\u8239\u54e1": 1}, "Mission": {"\u4efb\u52a1": 1}, "swear": {"\u53d1\u8a93": 1, "\u4e5f": 1, "\u6ca1": 1}, "Science": {"\u70ba\u4f55": 1, "\u7591\u554f": 1, "\u7576\u4e0b": 1, "\u5c31\u662f": 1, "\u79d1\u5b78": 2, "\u958b\u7aef": 1}, "Sulfur": {"\u786b\u78fa": 1, "\u71c3": 1, "\u71d2\u8457": 1, "\u85cd\u8272": 1, "\u706b\u7130": 1}, "Pluto": {"\u7576": 1, "\u5728": 1, "\u9019\u500b": 1, "\u5e74\u7d00\u6642": 1, "": 1}, "dates": {"\u5c71\u4e0a": 1, "\u6b77\u53f2": 1, "\u53ef\u4ee5": 1, "\u8ffd\u6eaf\u5230": 1, "12": 1, "\u4e16\u7d00": 1}, "Unbelievable": {"\u96e3\u4ee5": 1, "\u7f6e\u4fe1": 1, "!": 1, "\u96be\u4ee5\u7f6e\u4fe1": 1}, "quarreling": {"\u603b\u548c": 1, "\u5435\u67b6": 1, "\u4e89\u5435": 1}, "Narita": {"\u62b5\u9054": 1, "\u6210\u7530": 1, "\u6a5f\u5834": 1}, "extreme": {"\u6709": 1, "\u9ede": 1, "\u6975": 1, "\u7aef": 1}, "medical": {"\u91ab\u7642": 2}, "Acid": {"\u9178\u96e8": 2, "\u4e0d\u662f": 2, "\u73b0\u8c61": 2}, "obscure": {"\u53e5\u53e5": 1, "\u5b50": 1, "\u6a21\u7cca": 1}, "Mr.": {"\u5982\u610f\u90ce\u541b": 1}, "Patience": {"\u8010\u5fc3": 1, "\u6709\u65f6\u5019": 1}, "effective": {"\u6709\u6548": 2}, "proposed": {"\u63d0\u8bae": 1, "\u5bf9": 1, "\u8fdb\u884c": 1}, "outrank": {"\u7684": 2, "\u7ea7\u522b": 1, "\u5728": 1, "\u4e4b\u4e0a": 1}, "chase": {"\u53ea": 1, "\u6293": 1, "\u8001\u9f20": 1}, "extraordinary": {"\u4e2a": 1, "\u4e0d": 1, "\u5bfb\u5e38": 1}, "wizard": {"\u662f": 1, "\u4e2a": 1, "\u672f\u58eb": 1}, "narrowly": {"\u96aa": 1, "\u4e9b": 1, "\u6bba\u5bb3": 1}, "Smith": {"\u805a\u4f1a": 1, "\u4e0a\u89c1": 1, "\u53f2\u5bc6\u65af": 1}, "Cherry": {"\u6a31\u82b1": 1, "\u5f00\u653e": 1}, "shouting": {"\u6211": 1, "\u542c\u5230": 1, "\u4e86": 1}, "encores": {"\u9019\u4f4d": 1, "\u6f14\u594f": 1, "\u5169\u9996": 1, "\u5b89": 1, "\u53ef\u66f2": 1}, "unexpected": {"\u771f\u662f": 1, "\u5f88": 1, "\u610f\u5916": 2, "": 1}, "Vote": {"\u6295\u7968": 1, "\u7d66": 1}, "declare": {"\u8981": 1, "\u7533\u5831": 1, "\u6771\u897f": 1}, "dolled": {"\u4e3a\u4e86": 1, "\u91cd\u8981": 1, ",": 1, "": 1, "\u5979": 1, "\u6253\u626e": 1}, "persuaded": {"\u7d93\u904e": 1, "\u9577\u4e45": 1, "\u722d\u8ad6": 1, "\u7d42": 1, "\u65bc": 1, "\u8aaa": 1, "\u670d": 1}, "threatened": {"\u5a01\u80c1": 2, "\u8981": 2, "\u516c\u5f00": 1}, "distasteful": {"\u8fd9": 1, "\u6709\u70b9": 1, "\u4ee4": 1, "\u4e0d\u5feb": 1}, "Education": {"\u6559\u80b2": 1, "\u4ece": 1, "\u5bb6\u5ead": 1}, "interpreted": {"\u8a8d\u70ba": 1, "\u5c31\u662f": 1, "\u8868\u793a": 1, "\u62d2\u7d55": 1}, "soap": {"\u7528": 1, "\u80a5\u7682": 1, "\u6d17\u624b": 1}, "fooling": {"\u96a8\u4fbf": 1, "\u958b": 1, "\u73a9\u7b11": 1}, "notebooks": {"\u7b46\u8a18": 1, "\u672c": 1, "\u6536\u8d77": 1, "\u4f86": 1}, "originally": {"\u672c\u6765": 1, "\u8fd9": 1, "\u95f4": 1, "\u91cc": 1}, "ours": {"\u4f60\u5011": 1, "\u968a\u4f0d": 1, "\u6211\u5011": 1, "\u5f37": 1}, "Car": {"\u6c7d\u8f66\u5c3e\u6c14": 1, "\u5728\u57ce\u9547": 1, "\u91cc": 1, "\u9020\u6210": 1}, "painter": {"\u500b": 1, "\u5f88\u68d2": 1, "\u756b\u5bb6": 1, "": 1}, "stalking": {"\u72ee\u5b50": 1, "\u5728": 1, "\u8ddf\u8e2a": 1, "\u730e\u7269": 1}, "3,000": {"\u603b\u5171": 1, "\u662f": 1, "3000": 1}, "gang": {"\u9019": 1, "\u5925": 1, "\u4eba": 1, "\u8a08\u5283": 1, "\u6436\u52ab": 1}, "leaning": {"\u9760\u8457": 1, "\u7246": 1}, "%": {"\u82f1\u6587": 1, "\u5f97\u5230": 1, "\u4e5d": 1, "\u5341\u5206": 1, "\uff05": 2}, "travelers": {"\u7528": 1, "\u65c5\u884c\u652f\u7968": 2, "\u652f\u4ed8": 1, "\u514c\u63db": 1}, "Everest": {"\u4efb\u4f55": 1, "\u5c71\u5cf0": 1, "\u90fd": 1, "\u8fbe": 1, "\u4e0d\u5230": 1, "\u73e0\u7a46": 1, "\u6717": 1, "\u746a\u5cf0": 1, "\u9ad8\u5ea6": 1}, "wit": {"\u5931\u696d": 1, "\u53c8": 1, "\u6c92\u9322": 1, "": 2, "\u771f": 1, "\u4e0d\u77e5": 1, "\u8a72\u4f55": 1, "\u53bb": 1}, "bookworm": {"\u5c31\u662f": 1, "\u6240\u8c13": 1, "\u4e66\u866b": 1}, "user": {"\u4e9a\u9a6c\u900a": 1, "\u7f51\u7ad9": 1, "\u7528\u6237": 1, "\u8bc4\u8bba": 1, "\u90fd": 1, "\u865a\u5047": 1}, "semester": {"\u7b2c\u4e8c": 1, "\u5b78\u671f": 1, "\u4e86": 1}, "slightly": {"\u9019\u500b": 1, "\u5690": 1, "\u8d77": 1, "\u4f86": 1, "\u6709": 1, "\u4e00": 1, "\u9ede": 1, "\u5473": 1}, "babysitting": {"\u662f": 1, "\u600e\u4e48": 1, "\u8bf4\u670d": 1, "\u7167\u987e": 1, "\u5c0f\u5b69": 1, "\u5462": 1}, "Ostriches": {"\u9d15\u9ce5": 1, "\u6703": 1, "\u98db": 1}, "Prepare": {"\u4e3a": 1, "\u505a": 1, "\u51c6\u5907": 1, "\u5427": 1}, "quitting": {"\u8f9e\u804c": 2}, "Later": {"\u540e\u6765": 1, "\u5199\u4fe1\u7ed9": 1}, "confidentially": {"\u53ea": 1, "\u548c": 1, "\u8bf4": 1, "\u54e6": 1}, "bygones": {"\u65e2\u5f80\u4e0d\u548e": 1}, "tributaries": {"\u4e9a\u9a6c\u900a\u6cb3": 1, "\u6709": 1, "\u5f88\u591a": 1, "\u652f\u6d41": 1}, "childish": {"\u4e0d\u8981": 1, "\u90a3\u4e48": 1, "\u5e7c\u7a1a": 1}, "Station": {"\u7ad9\u63db": 1}, "sixteen": {"16": 1, "\u5c81": 1}, "advise": {"\u5efa\u8b70": 1, "\u63db": 1, "\u5efa\u8bae": 1, "\u4e0d\u8981": 1, "\u5165\u4e0d\u6577\u51fa": 1, "\u52f8": 1}, "mutual": {"\u771f\u6b63": 1, "\u5efa\u7acb": 1, "\u5f7c\u6b64": 1, "\u57fa\u7840": 1}, "knob": {"\u8f49\u52d5": 1, "\u628a": 1, "": 1}, "adding": {"\u4f60": 1, "\u628a": 1, "\u52a0\u4e3a\u597d\u53cb": 1}, "1865": {"\u65bc": 1, "1865": 1, "\u5e74": 1}, "shaver": {"\u672c\u8be5": 1, "\u4e70\u4e0b": 1, "\u7535\u52a8": 1, "\u5243\u987b\u5200": 1, "\u8bd5\u4e00\u4e0b": 1}, "inconvenience": {"\u5bf9": 1, "\u8fd9\u6b21": 1, "\u5ef6\u8fdf": 1, "\u8868\u793a": 1, "": 2, "\u9020\u6210": 1, "\u7684": 1}, "delay": {"\u62b1\u6b49": 1}, "March": {"\u8a31\u591a": 1, "\u4e09\u6708\u4efd": 1, "\u7dbb\u653e": 1}, "65": {"65": 2, "\u5c81": 2, "\u9000": 1, "\u4f11": 1, "\u65f6\u5019": 1}, "tractor": {"\u958b": 1, "\u62d6\u62c9": 2, "\u6a5f": 2, "\u767c\u52d5": 1, "\u4e0d\u4e86": 1}, "Five": {"\u8acb\u7167": 1, "\u5e73\u5e38": 1, "\u4e00\u6a23": 1, "\u4e94\u52a0": 1, "\u4f96": 1}, "secretly": {"\u4e00\u76f4": 1, "\u6697\u604b\u7740": 1}, "Awesome": {"\u597d": 1, "\u68d2": 1}, "Suruga": {"\u5f9e\u99ff": 1, "\u6cb3\u7063": 1, "\u770b": 1, ",": 1, "": 1, "\u5bcc\u58eb\u5c71": 1}, "enthusiasm": {"\u6ca1\u6709": 1, "\u611f\u53d7": 1, "\u5230": 1, "\u70ed\u60c5": 1}, "Bush": {"\u5e03\u4ec0": 1, "\u7ee7": 1, "\u91cc\u6839": 1, "\u4e4b\u540e": 1, "\u5f53\u4e0a": 1}, "Beauty": {"\u7f8e\u8c8c": 1, "\u53ea\u662f": 1, "\u8868\u9762\u6027": 1, "\u4e1c\u897f": 1}, "illusion": {"\u90a3": 1, "\u5168\u662f": 1, "\u5e7b\u89c9": 1}, "shortest": {"\u60f3": 1, "\u4e00\u689d": 1, "\u8def": 1, "\u6700\u77ed": 1}, "injury": {"\u4e26\u975e": 1, "\u514d": 1, "\u65bc": 1, "\u53d7\u50b7": 1}, "goof": {"\u6240\u6709\u4eba": 1, "\u5077\u61d2": 1}, "appearances": {"\u4fdd\u4f4f": 1, "\u9762\u5b50": 1, "\u88ab": 1, "\u5916\u8c8c": 1, "\u8499\u853d": 1}, "dances": {"\u821e": 1, "\u8df3": 1}, "respects": {"\u5f88": 1, "\u5c0a\u91cd": 1, "\u5c0e\u5e2b": 1}, "search": {"\u5f97": 1, "\u67e5\u627e": 1, "\u4e00\u4e0b": 1, "\u7b14": 1}, "elders": {"\u6559\u80b2": 1, "\u5e94\u8be5": 1, "\u8001\u4eba": 1}, "Clothes": {"\u4eba\u8981": 1, "\u8863\u88dd": 1}, "crashed": {"\u6c7d\u8eca": 1, "\u649e\u4e0a": 1, "\u5728": 1}, "shops": {"\u6211\u5bb6": 1, "\u65c1\u8fb9": 1, "\u51e0\u5bb6": 1, "\u5546\u5e97": 1}, "Oil": {"\u6cb9": 1, "\u662f\u4ece": 1, "\u6a44\u6984": 1, "\u4e2d": 1, "\u63d0\u70bc": 1, "\u51fa\u6765": 1}, "knee": {"\u819d\u84cb": 2, "\u7a4d": 1, "\u96ea\u6df1": 1, "\u53ca": 1, "\u5904\u7406": 1, "\u819d\u76d6": 1, "\u4f24\u53e3": 1}, "discriminate": {"\u6b67\u89c6": 1, "\u4eba": 1}, "border": {"Tom": 1, "\u6ca1": 1, "\u529e\u6cd5": 1, "\u8fb9\u754c": 1}, "survivor": {"\u8fd9\u573a": 1, "\u707e\u96be": 1, "\u5e78\u5b58\u8005": 1, "\u4e00\u4e2a": 1, "\u5a74\u513f": 1}, "murmur": {"\u6eaa\u6d41": 1, "\u6f7a\u6f7a": 1, ",": 1, "": 1, "\u50ac": 1}, "mend": {"\u8acb": 1, "\u4fee\u7406": 1, "\u8ba9": 1, "\u8865\u597d": 1, "\u886c\u886b": 1}, "Old": {"\u8001\u4eba": 2, "\u5011": 1, "\u65e9\u5c31": 1}, "detergent": {"\u6d17\u8863": 1, "\u6db2": 1}, "switch": {"\u60a8": 1, "\u613f\u610f": 1, "\u6362": 1}, "lung": {"\u80ba\u764c": 3, "\u5f97\u5230": 1, "\u90a3\u4e2a": 1, "\u6b7b\u4e8e": 1}, "Skip": {"\u4e0d\u7ba1": 1}, "fatal": {"\u6709\u65f6\u5019": 1, "\u53e3\u8bef": 1, "\u5bf9": 1, "\u6765\u8bf4": 1, "\u81f4\u547d": 1}, "approved": {"\u540c\u610f": 1}, "VCR": {"\u4e0a": 1, "\u82b1": 1, "\u4f4e\u4ef7": 1, "\u5f55\u50cf\u673a": 1}, "editor": {"\u4e0d\u60f3": 1, "\u7f16\u8f91": 1}, "click": {"\u807d\u5230": 1, "\u9ede\u64ca": 1, "\u8072": 1}, "quarrelled": {"\u5435": 1, "\u8d77\u6765": 1}, "drawers": {"\u529e\u516c\u684c": 1, "\u62bd\u5c49": 1}, "accompanies": {"\u6bcd\u4eb2": 1, "\u966a": 1, "\u7740": 1}, "12": {"": 1, "\u6211": 1, "\u5b66\u4e60": 1, "\u4f46": 1, "\u5230": 1, "\u70b9": 1}, "Tigers": {"\u89ba\u5f97": 1, "\u9a5a\u8a1d": 1, "\u8001\u864e": 1, "\u968a": 1, "\u7adf\u7136": 1, "\u8f38\u6389": 1}, "Cold": {"\u51b7\u6218": 1, "\u4ee5": 1, "\u82cf\u8054": 1, "\u89e3\u4f53": 1}, "resolved": {"\u9019\u500b": 1, "\u5728": 1, "\u77ed": 1, "\u6642\u9593": 1, "\u5167": 1, "\u5c31": 1, "\u89e3\u6c7a": 1}, "fabric": {"\u9019\u4ef6": 1, "\u7531": 1, "\u8584\u7e54": 1, "\u7269": 1, "\u88fd": 1, "\u6210": 1}, "geography": {"\u5730\u7406": 1}, "feed": {"\u5582": 3, "\u8fc7": 1, "\u6765": 1, "\u4e70\u70b9": 1, "\u4e00\u4e0b": 1}, "peacefully": {"\u7761\u7720": 1, "\u4e2d": 1, "\u5b89\u8be6": 1, "\u5730": 1}, "tolerate": {"\u518d": 1, "\u5fcd\u53d7": 1}, "calculator": {"\u8a08\u7b97\u6a5f": 1, "\u96fb\u6c60": 1, "\u6c92\u96fb": 1}, "garbage": {"\u628a": 1, "\u5783\u573e": 1, "\u62ff\u51fa": 1, "\u53bb": 1}, "fries": {"\u60f3": 1, "\u505a": 1, "\u70b8\u85af\u6761": 1}, "shaking": {"\u5728": 1, "\u98a4\u52a8": 1}, "rudeness": {"\u60a8": 2, "\u8be5": 1, "\u4e3a": 1, "\u7c97\u9c81": 1}, "sand": {"\u9032": 1, "\u6c99": 1}, "reminds": {"\u8ba9": 2, "\u60f3\u5bb6": 1, "\u6765\u5230": 1, "\u8fd9\u4e2a": 1, "\u4f1a": 1, "\u60f3\u8d77": 1, "\u81ea\u5df1": 1}, "unnatural": {"\u628a": 1, "\u8bf4": 1, "\u5f97": 1, "\u901a\u987a": 1, "\u6d41\u7545": 1, "": 1, "\u5f88": 1, "\u5bb9\u6613": 1, "\u975e": 1, "\u6bcd\u8bed": 1}, "popcorn": {"\u8981": 1, "\u7206\u7c73\u82b1": 1}, "Foreign": {"\u5916\u56fd": 1, "\u6295\u8d44\u8005": 1, "\u6536\u56de": 1}, "waterproof": {"\u624b": 1, "\u9632\u6c34": 1}, "aches": {"\u5f88": 1, "\u75e0": 1}, "walls": {"\u628a": 1, "\u7246\u58c1": 1, "\u6f06\u6210": 1}, "dieting": {"\u5728": 3, "\u8282\u98df": 3, "\u4e2d": 1}, "hang": {"\u591a\u884c\u4e0d\u4e49\u5fc5\u81ea\u6bd9": 1, "\u4e0a": 1, "\u9592\u901b": 1}, "ignorance": {"\u8981": 1, "\u60f3": 1, "\u53ea": 1, "\u65e0\u77e5": 1}, "teapot": {"\u8acb\u7528": 1, "\u958b\u6c34": 1, "\u8336\u58fa": 1, "\u704c\u6eff": 1}, "Anyway": {"\u4e0d\u7ba1": 1, "\u600e\u6a23": 1, "": 1}, "distinguish": {"\u8981": 1, "\u5206\u6e05\u662f\u975e": 1, "\u56f0\u96e3": 1}, "relationship": {"\u95dc": 1, "\u4fc2": 1, "\u975e\u5e38": 1, "\u597d": 1}, "stroke": {"\u4e2d\u6691": 1}, "longing": {"\u8c01": 1, "\u5e0c\u671b": 1}, "derived": {"\u82f1\u6587": 1, "\u55ae\u5b57": 1, "\u6e90\u81ea": 1, "\u65bc": 1, "\u62c9\u4e01\u6587": 1}, "competitive": {"\u516c\u53f8": 1, "\u7684": 1, "\u5c06": 1, "\u4f1a": 1}, "homesick": {"\u60f3\u5bb6": 1, "\u5f88": 1, "\u60f3": 2, "\u5bb6": 2, "": 1, "\u800c\u662f": 1, "\u56e0\u70ba": 1}, "phrase": {"\u7247\u8a9e": 1, "\u60f3": 1, "\u53e5": 1, "\u8bdd": 1, "\u610f\u601d": 1}, "Ouch": {"\u597d": 1, "\u75db": 1, "\u88ab": 1, "\u95e8": 1, "\u5939\u5230": 1}, "base": {"\u662f": 1, "\u4ee5": 1, "\u70ba": 1, "\u57fa\u790e": 1, "?": 1}, "cupcakes": {"\u67d0\u4eba": 1, "\u628a": 1, "\u676f\u5f62": 1, "\u86cb\u7cd5": 1, "\u5b8c": 1}, "artificial": {"\u9019": 1, "\u6735": 1, "\u4eba\u9020\u82b1": 1}, "expired": {"\u904e\u671f": 2, "\u4e86": 2, "\u5df2\u7d93": 1}, "hen": {"\u96bb": 2, "\u4e86\u4e00": 1, "\u6bcd": 1, "\u96de": 1}, "becomes": {"\u7d50\u51cd": 1, "\u5f8c": 1, ",": 1, "": 1}, "admiring": {"\u6e6f\u59c6\u6b23": 1, "\u8cde": 1, "\u65b0\u8eca": 1, "\u540c\u6642": 1, "": 1, "\u649e": 1}, "floors": {"\u5927\u697c": 1, "\u5c42": 1}, "bamboo": {"\u7af9\u5b50": 1, "\u751f\u9577": 1}, "Break": {"\u505c\u624b": 1}, "designer": {"\u4e00\u540d": 1, "\u8a2d\u8a08": 1, "\u5e2b": 1}, "accomplish": {"\u9054\u6210": 1, "\u600e\u4e48": 1, "\u5b8c\u6210": 1, "\u7684": 1}, "Strange": {"\u8bf4\u6765": 1, "\u5947\u602a": 1, "\u4e0d": 1}, "overcome": {"\u5982\u4f55": 1, "\u514b\u670d": 1, "\u5347\u9ad8": 1, "\u4e2a": 1}, "wondering": {"\u60f3": 1, "\u4f1a": 1, "\u4e0d\u4f1a": 1, "\u6765": 1}, "contain": {"\u5305\u542b": 1, "\u4e86": 1}, "Language": {"\u8bed\u8a00": 1, "\u4eba\u4eec": 1, "\u4e0e": 1, "\u4ed6\u4eba": 1, "\u624b\u6bb5": 1}, "requested": {"\u5c31\u662f": 1, "\u60f3\u8981": 1, "\u6709\u4eba": 1, "\u8bf7": 1}, "Professional": {"\u5c08\u8077": 1, "\u6c92\u6709": 1}, "behaves": {"\u5bb9\u5fcd": 1, "\u505a\u4e8b": 1, "\u4e48": 1}, "Soldiers": {"\u8ecd\u4eba": 1, "\u5c65\u884c": 1}, "clue": {"\u4e00\u65e0\u6240\u77e5": 1}, "technology": {"\u73b0\u4ee3": 1, "\u79d1\u5b66\u6280\u672f": 1, "\u8ba9": 1, "\u751f\u6d3b": 1, "\u66f4\u52a0": 1, "\u8212\u9002": 1}, "directly": {"\u76f4\u63a5": 2, "\u90a3\u88e1": 1, "\u5f97\u5230": 1, "\u8bf4": 1}, "affect": {"\u5176\u4ed6\u4eba": 1, "\u6703": 1, "\u5f71\u97ff": 1, "\u884c\u70ba": 1}, "meth": {"\u4e2a": 1, "\u5438\u6bd2": 1, "\u7537": 1}, "construct": {"\u8b80\u5b8c": 1, "": 1, "\u6211": 1, "\u53ef\u4ee5": 1}, "180": {"\u5dee\u4e0d\u591a": 1, "180": 1}, "Tulips": {"\u9b31\u91d1\u9999": 1, "\u5c07": 1, "\u76db\u958b": 1}, "Singapore": {"\u65b0\u52a0\u5761": 2, "\u8857\u9053": 1, "\u4e0a": 1, "\u4f1a": 1, "\u88ab": 1, "\u7f5a\u6b3e": 1}, "pleased": {"\u90a3\u6761": 1, "\u8ba9": 1, "\u5f88": 2, "\u6ee1\u610f": 1, "\u5c0d": 1, "\u65bc": 1, "\u6eff\u610f": 1}, "encouragement": {"\u9f13\u52f5": 1}, "seaside": {"\u6d77\u8fb9": 1, "\u6361\u4e86\u4e2a": 1}, "deodorant": {"\u4e00\u4e0b": 1, "\u9664\u81ed\u5242": 1}, "leaned": {"\u8eab\u5b50": 1, "\u9760": 1, "\u80f3\u818a": 1}, "tower": {"\u5854": 1}, "association": {"\u7533\u8acb": 1, "\u6210\u70ba": 1, "\u5354\u6703": 1, "\u6703\u54e1": 1}, "pessimistic": {"\u4e0d\u8981": 1, "\u611f\u89c9": 1, "\u90a3\u4e48": 1, "\u60b2\u89c2": 1}, "dolls": {"\u628a": 1, "\u5a03\u5a03": 1, "\u9001\u7d66": 1, "\u5225\u4eba": 1}, "wrapped": {"\u7528": 1, "\u4e00\u689d": 1, "\u628a": 1, "\u88f9\u8d77": 1, "\u4f86": 1}, "issues": {"\u5fc5\u9808": 1, "\u89e3\u6c7a": 1, "\u554f\u984c": 1}, "gasoline": {"\u6cb9\u4ef7": 1, "\u4e0a\u6da8": 1, "\u53ef\u80fd\u6027": 1, "\u9ad8": 1}, "decline": {"\u5fc5\u987b": 1, "\u62d2\u7edd": 1}, "eligible": {"": 1, "\u4ed6": 1, "\u5c06": 1, "\u5f88": 1, "\u9002\u5408": 1}, "financial": {"\u4fc4\u7f57\u65af": 1, "\u9762\u4e34": 1, "\u7740": 1, "\u4e25\u91cd": 1, "\u8d22\u653f\u56f0\u96be": 1}, "impressions": {"\u4eba\u9645\u4ea4\u5f80": 1, "\u4e2d": 1, "": 2, "\u7b2c\u4e00\u5370\u8c61": 1, "\u51b3\u5b9a": 1, "\u53d1\u751f": 1, "\u7684": 1, "\u5185\u5bb9": 1}, "bluest": {"\u770b": 1, "\u6700\u85cd": 1}, "humiliate": {"\u4e0d\u662f": 1, "\u60f3\u8981": 1, "\u7f9e\u8fb1": 1}, "jointly": {"\u4e00\u8d77": 1, "\u4e3a": 1, "\u8fc7": 1}, "remarkable": {"\u7684": 2, "\u6709": 1, "\u986f\u8457": 1}, "Yokohama": {"\u65f6\u5019": 1, "\u6a2a\u6ee8": 1}, "Really": {"\u4f60": 1, "\u786e\u5b9a": 1}, "distract": {"\u5f53": 1, "\u6253\u6270": 1}, "abilities": {"\u5f88\u591a": 1, "\u624d\u80fd": 1}, "hammered": {"\u9189": 1, "\u4e86": 1}, "Finnish": {"\u662f": 1, "\u82ac\u5170\u4eba": 1}, "journal": {"\u7238\u7238": 1, "\u8bb0\u65e5\u8bb0": 1}, "cigar": {"\u9ede": 1, "\u96ea\u8304": 1}, "lit": {"\u4e86": 1}, "Hope": {"\u5e0c\u671b": 2, "\u518d\u6b21": 1, "\u5230": 1}, "strategy": {"\u4e0d\u662f": 1, "\u4e00\u79cd": 1, "\u7b56\u7565": 1}, "toothaches": {"\u5b9a\u671f": 1, "": 1, "\u5979": 1}, "whales": {"\u4eba\u4eec": 1, "\u9cb8": 1, "\u8bed\u8a00": 1}, "Continue": {"\u7e7c\u7e8c": 1, "\uff01": 1}, "bug": {"\u522b": 1, "\u6765": 1, "\u70e6": 1}, "intruded": {"\u4fb5\u72af": 1, "\u4e86": 1, "\u9690\u79c1": 1}, "disease": {"\u5f97": 1, "\u4e86": 1, "\u75c5": 1}, "fails": {"\u4e0d": 1, "\u5b88\u7ea6": 1}, "blocks": {"\u8857\u5340": 1, "": 2, "\u7136": 1, "\u5f8c": 1}, "Umbrellas": {"\u96e8\u4f1e": 1, "\u5356": 1}, "testing": {"\u5728": 1, "\u8bd5\u63a2": 1}, "vague": {"\u4e00\u500b": 2, "\u6a21\u7cca": 1}, "paragraph": {"\u6bb5\u843d": 1, "\u6a21\u7cca\u4e0d\u6e05": 1}, "searching": {"\u5927\u6982": 1, "\u4ece": 1, "\u4e00\u4e2a\u6708": 1, "\u524d": 1, "\u5c31": 1, "\u5f00\u59cb": 1, "\u627e": 1, "\u7269\u54c1": 1}, "justifies": {"\u70ba\u4e86": 1, "\u6b63\u7576": 1, "\u76ee\u7684": 1, "\u53ef\u4ee5": 1, "\u4e0d\u64c7": 1, "\u624b\u6bb5": 1}, "employment": {"\u5c0d": 1, "\u54e1\u5de5": 1, "\u5c31\u696d": 1}, "material": {"\u4e3a": 1, "\u4e00": 1, "\u6750\u6599": 1}, "vitamin": {"\u80e1\u863f": 1, "\u8514": 1, "\u4e2d": 1, "\u542b\u6709": 1, "\u5927\u91cf": 1, "\u7dad\u751f\u7d20": 1, "A": 1}, "2008": {"2008": 1, "\u5e74": 1, "\u76f8\u9047": 1}, "instructor": {"\u6559\u7df4": 1, "\u4e00\u9ede": 1}, "smoker": {"\u62bd\u70df": 1, "\u4eba": 1}, "allied": {"\u66fe": 1, "\u662f": 1, "\u540c\u76df\u56fd": 1}, "install": {"\u8fd9": 1, "\u7740": 1, "\u5b89\u88c5": 1, "\u5929\u7ebf": 1}, "Waste": {"\u6d6a\u8cbb": 1, "\u5247": 1, "\u5331\u4e4f": 1}, "Promises": {"\u627f\u8afe": 1, "\u4e0d\u5920": 1}, "19th": {"\u751f\u4e8e": 1, "19": 1}, "shovel": {"\u63e1\u7d27": 1, "\u94f2\u5b50": 1}, "region": {"\u4e00\u9023": 1, "\u4e32": 1, "\u707d\u96e3": 1, "\u8972\u64ca": 1, "\u5730\u5340": 1}, "lid": {"\u9019": 1, "\u84cb\u5b50": 1, "\u6253\u4e0d\u958b": 1}, "shirtless": {"\u8d64\u88f8": 1, "\u7740": 1, "\u4e0a\u8eab": 1}, "Goodbyes": {"\u79bb\u522b": 1, "\u8ba9": 1, "\u4eba": 1, "\u60b2\u4f24": 1}, "frost": {"\u539a": 1, "\u971c": 1, "\u5929\u6c23": 1, "\u56b4\u5bd2": 1}, "stingy": {"\u5f88\u5c0f": 1, "\u6c14": 1}, "ample": {"\u5145\u88d5": 1, "\u8d76\u4e0a": 1}, "Trim": {"\u5207\u9664": 1, "\u9019\u584a": 1, "\u8102\u80aa": 1}, "rises": {"\u7e3d": 1, "\u662f": 1, "\u5f9e": 1, "\u5347\u8d77": 1}, "arrow": {"\u5c04": 1, "\u9e7f\u4e00\u7bad": 1}, "Mastering": {"\u638c\u63e1": 1, "\u4e00\u95e8": 1}, "parallel": {"\u94c1\u8def": 1, "\u4e0e": 1, "\u516c\u8def": 1, "\u5e73\u884c": 1}, "helpful": {"\u60a8": 1, "\u90a3\u6837": 1, "\u7684\u8bdd": 1, "": 2, "\u53ef": 1}, "mopped": {"\u64e6": 1, "\u5730\u677f": 1}, "unfairly": {"\u88ab": 1, "\u4e0d\u516c\u5e73\u5730": 1, "\u5c0d\u5f85": 1}, "somewhat": {"\u6709\u70b9\u50cf": 1, "\u7236\u4eb2": 1}, "Up": {"\u5230": 1, "\u76ee\u524d\u4e3a\u6b62": 1, "\u8ba4\u4e3a": 1, "\u4f60": 1, "\u8fc7": 1}, "Wet": {"\u6fd5": 1, "\u8cbc\u8457": 1}, "woodcutter": {"\u738b\u5b50": 1, "\u4e0a": 1, "\u4e00\u500b": 1, "\u6a35\u592b": 1}, "premonition": {"\u9884\u611f": 1, "\u88ab": 1, "\u8bc1\u660e": 1, "\u6b63\u786e": 1}, "concept": {"\u8fd9": 1, "\u6982\u5ff5": 1}, "Despite": {"\u5c3d\u7ba1": 1, "\u5f88": 1, "\u5bcc\u6709": 1, "": 1, "\u8fd8\u662f": 1}, "peanuts": {"\u5bf9": 2, "\u82b1\u751f": 2, "\u8fc7\u654f": 2}, "restless": {"\u9ede": 1, "\u4e0d\u5b89": 1}, "ham": {"\u8be5": 1, "\u706b\u817f\u4e09\u660e": 1, "\u6cbb": 1}, "robot": {"\u9019\u500b": 1, "\u6a5f\u5668": 1, "\u4eba": 1, "\u5931\u63a7": 1}, "mixed": {"\u5c0d": 1, "\u9019\u4ef6": 1, "\u767e\u611f\u4ea4\u96c6": 1}, "veterinarian": {"\u9577": 1, "\u5927": 1, "\u5f8c": 1, "\u6210\u70ba": 1, "\u4e00\u540d": 1, "\u7378": 1, "\u91ab": 1}, "sink": {"\u810f": 1, "\u76d8\u5b50": 1, "\u653e\u8fdb": 1, "\u6c34\u6c60": 1, "\u91cc": 1}, "Beware": {"\u5c0f\u5fc3": 2}, "original": {"\u7368\u5230": 1, "\u898b\u89e3": 1}, "bounce": {"\u4f1a": 1, "\u4e1c\u5c71\u518d\u8d77": 1, "\u7684": 1}, "astonish": {"\u603b": 1, "\u5403\u60ca": 1}, "architecture": {"\u5176": 1, "\u53e4\u4ee3": 1, "\u5efa\u7bc9": 1, "\u800c": 1, "\u805e\u540d": 1}, "defended": {"\u57ce\u5e02": 1, "\u7531": 1, "\u4e00\u652f": 1, "\u5927\u519b": 1, "\u5b88\u536b": 1}, "nowadays": {"\u73b0\u5728": 1, "\u51e0\u4e4e": 1, "\u4e0d": 1, "\u770b\u7535\u89c6": 1}, "grasped": {"\u7528": 1, "\u5169": 1, "\u96bb": 1, "\u6293\u4f4f": 1}, "Hamamatsu": {"\u6bcf\u5e74": 1, "\u6ff1\u677e": 1, "\u7bc0": 1}, "trout": {"\u559c\u6b22": 1, "\u600e\u4e48": 1, "\u70e7": 1, "\u9c91\u9c7c": 1, "?": 1}, "Shinjuku": {"\u8bf7\u95ee": 1, "\u53ef\u4ee5": 2, "\u5230\u8fbe": 1, "\u65b0\u5bbf": 1}, "delightful": {"\u904e": 1, "\u6109\u5feb": 1}, "brain": {"\u8166": 1, "\u5916\u79d1": 1, "\u91ab\u751f": 1}, "update": {"\u66f4\u65b0": 1}, "Express": {"\u904b\u901a": 1}, "September": {"\u4e5d\u6708": 2, "\u6240": 1}, "encountered": {"\u9047\u5230": 1, "\u4e86": 1, "\u6545\u969c": 1}, "Taking": {"\u5e26": 1, "\u56e2\u4f53": 1, "\u4e00\u70b9": 1, "\u90fd": 1, "\u8d77\u98db": 1, "\u5bb9\u6613": 1}, "Biwa": {"\u7435\u7436\u6e56": 1}, "dialed": {"\u62e8\u6253": 1, "Tom": 1, "\u53f7\u7801": 1}, "wealth": {"\u7531": 1, "\u65bc": 1, "\u8ca1\u5bcc": 2, "": 1, "\u80fd\u5920": 1}, "Studying": {"\u51fa\u570b": 1, "\u7559\u5b78": 1, "\u5e38\u898b": 1}, "avoidable": {"\u53ef": 1, "\u907f\u514d": 1}, "harvest": {"\u671f\u671b": 1, "\u4eca\u5e74": 1, "\u8c50\u6536": 1}, "Ukrainian": {"\u4e4c\u514b\u5170": 1, "\u59d1\u5a18": 2, "\u5168\u4e16\u754c": 1}, "underwater": {"\u6f5c\u6c34": 1, "\u5417": 1}, "ships": {"\u95dc\u65bc\u8239": 1, "\u77e5\u8b58": 1}, "offered": {"\u62ff": 1, "\u7ed9": 1}, "Always": {"\u6c38\u9060": 1, "\u8981": 1, "\u5c0d": 1, "\u8aa0\u5be6": 1}, "Wow": {"\u54c7": 1, "!": 1, "": 2}, "suspicious": {"\u5bf9": 1, "\u4ec0\u4e48": 1, "\u90fd": 1, "\u6000\u7591": 1}, "Apples": {"\u860b\u679c": 1, "\u88ab": 1, "\u7576\u4f5c": 1}, "cruel": {"\u8ddf": 1, "\u8fd9\u6837\u7684\u8bdd": 1, "\u771f\u662f\u592a": 1, "\u6b8b\u5fcd": 1}, "thirteen": {"\u5341\u4e09\u5c81": 1, "\u79bb\u5bb6\u51fa\u8d70": 1}, "Akita": {"\u5230": 1, "\u79cb\u7530": 1, "\u8f66\u8d39": 1}, "fare": {"\u591a\u5c11": 2, "\u7968\u50f9": 1, "\u9322": 1}, "cared": {"\u95dc\u5fc3": 1}, "anyway": {"\u8fd8\u662f": 1, "\u8981\u8bf4": 1}, "Shame": {"\u771f": 1, "\u4e22\u8138": 1, "\uff01": 1}, "lovely": {"\u591a": 1, "\u53ef\u7231": 1, "\u554a": 1}, "Aso": {"\u963f\u8607\u5c71": 1, "\u4e00\u5ea7": 1, "\u6d3b\u706b\u5c71": 1}, "whomever": {"\u8fd9": 1, "\u8c01": 2, "\u5c31": 1, "\u5427": 1}, "skull": {"\u80f8\u4e0a": 1, "\u500b": 1, "\u982d": 1, "\u9aa8": 1}, "museums": {"\u51e0\u4e4e": 1, "\u4e0d": 1, "\u535a\u7269\u9986": 1}, "difficulties": {"\u5e2e\u52a9": 1, "\u514b\u670d": 1, "\u56f0\u96be": 1}, "tunes": {"\u4e9b": 1, "\u6f14\u594f": 1, "\u8c03\u5b50": 1}, "guarantee": {"\u786e\u4fdd": 1, "\u8fd9": 1, "\u4e00\u5207": 1, "\u4f1a": 1}, "nests": {"\u9e1f\u513f": 1, "\u7b51\u5de2": 1}, "betrays": {"\u771f\u6b63": 1, "\u51fa\u5356": 1}, "minimum": {"\u6700\u4f4e\u5de5\u8d44": 1, "\u591a\u5c11": 1}, "Texting": {"\u958b\u8eca": 1, "\u6642": 1, "\u6253\u5b57": 1}, "rights": {"\u6743\u5229": 1}, "Lightning": {"\u9583": 1, "\u96fb": 1, "\u5e38\u5e38": 1, "\u4f34\u96a8": 1, "\u8457": 1, "\u96f7\u9cf4": 1}, "unconscious": {"\u88ab": 1, "\u4eba": 1, "\u5012": 1, ",": 1, "": 1}, "importation": {"\u8be5\u56fd": 1, "\u4e25\u7981": 1, "\u8fdb\u53e3": 1, "\u7a00\u6709": 1}, "campfire": {"\u7fd2\u6163": 1, "\u7528\u71df": 1, "\u706b": 1, "\u505a\u83dc": 1}, "Stir": {"\u6405": 1, "\u4e00\u4e0b": 1}, "Cover": {"\u7576": 1, "\u967d\u5149": 1, "": 1}, "stew": {"\u9019": 1, "\u934b": 1, "\u58a9": 1, "\u6e6f\u805e": 1, "\u771f": 1}, "Light": {"\u628a": 1, "\u881f\u71ed": 1, "\u9ede\u71c3": 1}, "industry": {"\u8fd9\u4e2a": 1, "\u5c9b": 1, "\u6e14\u4e1a": 1}, "essay": {"\u5728": 1, "\u4e00\u7bc7": 1, "\u77ed\u6587": 1}, "atrocious": {"\u60e1\u52a3": 1, "\u5929\u6c23": 1}, "Liszt": {"\u674e\u65af\u7279": 1, "\u300a": 1, "\u88ab": 2, "\u9057\u5fd8": 1, "\u5706\u821e\u66f2": 1, "\u7b2c\u4e09\u9996": 1, "\u300b": 1, "\u57cb\u6ca1": 1, "\u540d\u66f2": 1}, "unidentified": {"UFO": 1, "\u4e0d\u660e": 1, "\u98db\u884c": 1, "\u7269\u9ad4": 1}, "bedrooms": {"\u5bb6": 1, "\u4e09\u500b": 1, "\u81e5\u5ba4": 1}, "confess": {"\u627f\u8ba4": 1, "\u5f88": 1}, "shampoo": {"\u54ea\u7a2e": 1, "\u6d17": 1, "\u9aee": 1, "\u6c34": 1}, "ups": {"\u4e2d": 1, "\u9ad8\u4f4e": 2, "\u8d77\u4f0f": 2, "\u4eba\u751f": 1, "\u5145\u6eff": 1}, "vases": {"\u5176\u4e2d": 1, "\u4e00\u4e2a": 1, "\u73bb\u7483": 1, "\u82b1\u74f6": 1}, "coral": {"\u73ca\u745a\u7901": 1, "\u8fd9\u4e2a": 1, "\u5730\u533a": 1, "\u4e3b\u8981": 1, "\u666f\u70b9": 1}, "executive": {"\u6267\u884c": 1}, "Wearing": {"\u7a7f\u8457": 1, "\u897f\u88dd": 1, "\u51fa\u4f86": 1}, "synchronize": {"\u6821": 1, "\u5c0d": 1, "\u4e00\u4e0b": 1, "\u9336": 1}, "strict": {"\u5c0d": 1, "\u6b64": 1, "\u56b4\u683c": 1}, "burden": {"\u90a3\u4e2a": 1, "\u5bf9": 1, "\u4e2a": 1, "\u8d1f\u62c5": 1}, "streets": {",": 1, "": 1, "\u6771\u4eac": 1, "\u8857\u4e0a": 1, "\u4eba": 1}, "susceptible": {"\u6613": 1, "\u60a3\u611f\u5192": 1}, "vat": {"Tom": 1, "": 2, "\u6454\u5012": 1, "\u8fdb": 1, "\u4e00\u6876": 1}, "browser": {"\u6d4f\u89c8\u5668": 1}, "Hundreds": {"\u6578\u4ee5\u767e\u8a08": 1, "\u6c34\u725b": 1, "\u8d70\u5411": 1, "\u6e56\u908a": 1}, "lines": {"\u84dd\u7ebf": 1, "\u4ee3\u8868": 1, "\u6cb3\u6d41": 1}, "Excess": {"\u79ae\u8c8c": 1, "\u904e\u5ea6": 1, "\u7169\u4eba": 1}, "feeds": {"\u5582": 1}, "err": {"\u7686": 1, "\u6709\u932f": 1, "": 2, "\u552f": 1, "\u8056\u8005": 1}, "Use": {"\u4f7f\u7528": 1, "\u6216": 1}, "punishes": {"\u5f9e\u4f86": 1, "\u6c92\u6709": 1, "\u61f2\u7f70": 1, "\u904e": 1}, "glitters": {"\u5149": 1, "\u770b": 1, "\u8868\u9762": 1, "\u4e0d\u8db3": 1, "\u5920": 1}, "Portugal": {"\u6765\u81ea": 1, "\u8461\u8404\u7259": 1}, "mistakenly": {"\u662f": 1, "\u8bef\u5220": 1, "\u8fd9\u4e2a": 1}, "cure": {"\u79d1\u5b66\u5bb6": 1, "\u4eec": 1, "\u6ca1\u6709": 1, "\u6cbb\u7597": 1, "\u65b9\u6cd5": 1}, "flawed": {"\u8a2d\u8a08": 1, "\u672c\u8eab": 1, "\u6709": 1, "\u554f\u984c": 1}, "1876": {"\u65bc": 1, "1876": 1, "\u5e74": 1, "\u8c9d\u723e": 1, "\u6240": 1}, "wealthy": {"\u4f7f": 1, "\u6210": 1, "\u6709\u94b1\u4eba": 1, "\u6709": 1, "\u9322": 1}, "accelerated": {"\u63d0\u901f": 1, "\u4e86": 1}, "Accidents": {"\u4e8b\u6545": 1, "\u767c\u751f": 1}, "aerobics": {"\u6bcf\u661f\u671f": 1, "\u4f5c": 1, "\u5065\u7f8e\u64cd": 1}, "dried": {"\u5728": 1, "\u65c1": 1, "\u70d8\u5e72": 1}, "uses": {"\u8fd8\u6709": 1, "\u7528": 1, "\u8fd9\u4e2a": 1}, "Turkey": {"\u571f\u8033\u5176": 1, "\u54ea\u513f": 1, "\u751f\u6d3b": 1, "?": 1}, "tolerated": {"\u90a3": 2, "\u5973\u58eb": 1, "\u5bb9\u5fcd": 1}, "karaoke": {"\u5361\u62c9": 1, "OK": 1, "\u5982\u6b64": 1}, "bar": {"\u4ed6\u4eec": 1, "\u5c31": 1, "\u628a": 1, "\u4f60": 1, "\u8e22": 1}, "Vienna": {"\u53bb": 1, "\u7dad\u4e5f\u7d0d": 1, "\u770b\u770b": 1}, "pairs": {"\u5169\u96d9": 1}, "Germans": {"\u5fb7\u56fd\u4eba": 1, "\u559d\u5564\u9152": 1}, "joints": {"\u7576\u5929": 1, "\u6c23\u8b8a": 1, "\u6211": 1, "\u7684": 1}, "gym": {"\u8a3b": 1, "\u4e00\u5bb6": 1, "\u5065\u8eab\u623f": 1}, "quitter": {"\u4e0d": 1, "\u8f15\u6613": 1, "\u653e\u68c4": 1}, "assumption": {"\u4e2a": 1, "\u8bbe\u60f3": 1}, "sandwiches": {"\u4e09\u660e\u6cbb": 1}, "coast": {"\u6751\u5c4b": 1, "\u6d77\u5cb8": 1}, "unavoidable": {"\u8fd9\u91cc": 1, "\u53d1\u751f": 1, "\u4e0d\u53ef\u907f\u514d": 1}, "Drinking": {"\u867d\u7136": 1, "\u591a\u70b9": 1, "\u5bf9": 1, "\u8eab\u4f53": 1, "\u597d\u5904": 1, "": 1, "\u591a": 1, "\u4e5f": 1}, "discs": {"\u8bb8\u591a": 1, "\u5531\u7247": 1}, "syrup": {"\u7cd6\u6d46": 1, "\u80a1": 1, "\u7518\u8349": 1, "\u5473\u9053": 1}, "applicants": {"\u6ca1\u6709": 1, "\u7533\u8bf7\u4eba": 1}, "Ignore": {"\u522b\u7406": 1}, "formed": {"\u4e3a\u4e86": 1, "\u53c2\u52a0": 1, "\u5212\u8239": 1, "": 1, "\u65b0": 1, "\u7684": 1}, "Stuff": {"\u4e8b\u60c5": 1, "\u96be\u514d\u4f1a": 1}, "forgiveness": {"\u5411": 1, "\u7687\u5e1d": 1, "\u8bf7\u6c42": 1, "\u9976\u6055": 1}, "grammatically": {"\u8fd9\u4e2a": 1, "\u5728": 1, "\u8bed\u6cd5": 1, "\u4e0a": 1, "\u6b63\u786e": 1}, "carpentry": {"\u64c5\u9577": 1, "\u505a": 1, "\u6728\u5de5": 1}, "deity": {"\u60a8": 1, "\u5ea7": 1, "\u5e99\u5b87": 1, "\u4f9b\u5949": 1, "\u54ea\u4e2a": 1, "\u795e": 1}, "alarmed": {"\u5bf9": 1, "\u4e0d\u8d1f\u8d23\u4efb": 1, "\u611f\u5230": 1, "\u60ca\u8bb6": 1}, "salmon": {"\u9019": 1, "\u5403\u8457": 1, "\u50cf": 1, "\u4e09\u6587": 1}, "stocks": {"\u628a": 1, "\u6295\u8cc7": 1, "\u65bc": 1, "\u80a1\u7968": 1}, "entering": {"\u963b\u6b62": 1, "\u8fdb": 1}, "hobbies": {"\u5174\u8da3\u7231\u597d": 1}, "GNP": {"\u570b": 1, "\u6c11\u751f": 1, "\u7522\u7e3d\u503c": 1, "\u8f03": 1, "\u4e0a": 1, "\u4e00\u5b63": 1, "1": 1}, "growth": {"\u6210\u9577": 2}, "exceed": {"\u4e0d\u8981": 1}, "tax": {"\u51cf\u5c11": 1, "\u8fdb\u53e3\u54c1": 1, "\u7a0e": 2}, "woolen": {"\u60f3": 1, "\u4e00\u4ef6": 1, "\u7f8a\u6bdb": 1, "\u88d9": 1}, "square": {"\u9762\u79ef": 1, "\u5e73\u65b9\u7c73": 1}, "survival": {"\u653e\u68c4": 1, "\u6240\u6709": 1, "\u751f\u5b58": 1}, "core": {"\u58de": 1, "\u900f": 1}, "Shiga": {"\u5230\u8fbe": 1, "\u5fd7": 1, "\u8d3a": 1, "\u9ad8\u539f": 1, "\u65f6\u4f1a": 1, "\u4e0b\u96ea": 1}, "Maruzen": {"\u4e66\u5546": 1, "Maruzen": 1, "\u90a3\u91cc": 1}, "bright": {"\u7231\u8fea\u751f": 1, "\u4e0d\u662f": 1, "\u4e2a": 1, "\u4f18\u79c0": 1}, "Had": {"\u8981\u662f": 1, "\u4f1a": 1, "": 1, "\u4ed6": 1}, "composition": {"\u628a": 1, "\u4f5c\u6587": 1, "\u62ff": 1, "\u7d66": 1, "\u8a02\u6b63": 1}, "Experience": {"\u7d93\u9a57": 1}, "countryside": {"\u4e61\u95f4": 1, "\u6811": 1}, "predicted": {"\u9884\u6d4b": 1, "\u4f1a": 1}, "tends": {"\u958b\u6703": 1, "\u5f80\u5f80": 2, "\u6703": 2, "\u4e0a\u5b78": 1, "\u9072\u5230": 1}, "boiling": {"\u653e": 1, "\u9ede": 1, "\u5230": 1, "\u6efe": 1, "\u6c34\u88e1": 1}, "Parents": {"\u7236\u6bcd": 1, "\u6559\u80b2": 1, "\u8bf4\u8c0e": 1, "\u4e0d\u597d": 1}, "thorns": {"\u6c92\u6709": 1, "\u4e0d": 1, "\u5e36\u523a": 1, "\u73ab\u7470": 1}, "ironing": {"\u886c\u886b": 1, "\u71a8": 1}, "whets": {"\u958b": 1, "\u80c3": 1}, "avoided": {"\u6230\u722d": 1, "\u4e0d\u60dc\u4e00\u5207": 1, "\u4ee3\u50f9": 1, "\u5730": 1, "\u53bb": 1, "\u907f\u514d": 1}, "recognition": {"\u4e00\u500b": 2, "\u8a8d\u53ef": 2}, "odd": {"\u6b63": 1, "\u5947\u602a": 1, "\u4e8b\u60c5": 1, "\u53d1\u751f": 1, "\u7740": 1, "\u4eba\u5011": 1, "\u53e4\u602a": 1}, "Watching": {"\u4e00\u7a2e": 1, "\u88ab\u52d5": 1, "\u6d3b\u52d5": 1}, "strawberry": {"\u8349\u8393": 1, "\u5473": 1}, "crawl": {"\u600e\u9ebc": 1, "\u6e38": 1, "\u81ea\u7531\u5f0f": 1}, "smiles": {"\u5c0d": 1, "\u5fae\u7b11": 1}, "softly": {"\u4f60": 1, "\u8bf4\u8bdd": 1, "\u5c0f\u70b9\u58f0": 1}, "donates": {"\u6350": 1, "\u4e00\u534a": 1, "\u7ed9": 1, "\u559c\u6b22": 1, "\u6148\u5584\u673a\u6784": 1}, "reread": {"\u8fd9\u4f4d": 1, "\u6bcd\u4eb2": 1, "\u91cd\u6e29": 1, "\u4fe1\u4ef6": 1}, "research": {"": 2, "\u90a3\u4e48": 1, "\u8fd9": 1, "\u4e0d\u80fd": 1}, "actions": {"\u6211\u4eec": 1, "\u91c7\u53d6": 1, "\u884c\u52a8": 1, "\u5bf9": 1}, "title": {"\u65b0\u66f8": 1, "\u66f8\u540d": 1}, "sashimi": {"\u559c": 1, "\u6b61\u751f": 1, "\u9b5a\u7247": 1, "": 1}, "hunters": {"\u730e": 1, "\u4eba\u4eec": 1, "\u7528": 1, "\u67aa": 1}, "aimed": {"\u7784\u51c6": 2, "\u90a3\u4e2a": 1, "\u624b\u67aa": 1, "\u6307\u5411": 1}, "stooped": {"\u64bf": 1, "\u8d77": 1, "\u4e00\u584a": 1, "\u9d5d": 1, "\u5375\u77f3": 1}, "rifle": {"\u6b65\u69cd": 1, "\u80cc": 1}, "peach": {"\u68f5": 1, "\u6843\u6811": 1}, "maintain": {"\u7dad\u6301": 1, "\u4e00\u500b": 1, "\u8072\u8b7d": 1, "\u96e3": 1}, "fright": {"\u5687": 1, "\u5f97": 1, "\u81c9\u8272": 1, "\u767c\u767d": 1}, "Jack": {"\u5091\u514b": 1, "\u505a": 1, "\u4e8b": 1, "\u5c31\u662f": 1, "\u7761\u89ba": 1}, "navy": {"\u52a0\u5165": 1, "\u6d77\u8ecd": 1}, "Teresa": {"\u7279\u857e": 1, "\u838e": 1, "\u4fee\u5973": 1, "\u88ab": 1, "\u6388\u4e88": 1}, "Nobel": {"\u8afe\u8c9d\u723e\u734e": 2}, "Room": {"839": 1, "\u53f7": 1, "\u623f\u95f4": 1}, "literally": {"\u6309\u7167": 1, "\u5b57\u9762\u4e0a": 1, "\u610f\u601d": 1}, "Leaves": {"\u6a39\u8449": 1, "\u6389\u843d": 1, "\u4e0b\u4f86": 1}, "fifteen": {"15": 1, "\u5206\u949f": 1, "\u5185": 1}, "tries": {"\u6765": 1, "\u8bd5\u8bd5": 1}, "canoe": {"\u4e58\u8457": 1, "\u7368": 1, "\u6728\u821f": 1, "\u5411\u6cb3": 1, "\u4e0b\u6e38": 1, "\u800c": 1, "\u884c": 1}, "miserly": {"\u5f88\u5c0f": 1, "\u6c14": 1}, "Books": {"\u66f8": 1, "\u70ba\u4e86": 1, "\u90a3\u4e9b": 1, "\u81ea\u5df1": 1, "\u53e6": 1, "\u4e00\u500b": 1}, "muttering": {"\u7528": 1, "\u5600\u5495": 1, "\u4e9b": 1, "\u4ec0\u4e48": 1}, "Ladies": {"\u5973\u58eb\u4eec": 1, "": 3, "\u7531\u4e8e": 1, "\u60c5\u51b5": 1, ",": 1}, "electrician": {"\u662f": 1, "\u4e00\u540d": 1, "\u96fb\u5de5": 1}, "laughter": {"\u7b11\u58f0": 1, "\u80af\u5b9a": 1, "\u6700\u4e3a": 1, "\u865a\u5ea6": 1}, "About": {"\u642d": 1, "\u5230": 1, "\u5927\u7d04\u8981": 1, "\u82b1": 1, "\u6642\u9593": 1}, "yelled": {"\u547c\u6551": 1}, "includes": {"\u8fd9\u4e2a": 1, "\u4ef7\u683c": 1, "\u542b": 1, "\u4e86": 1}, "dies": {"\u6b7b": 1, "\u771f\u662f": 1}, "observe": {"\u5fc5\u987b": 1, "\u9075\u5b88\u89c4\u5219": 1}, "washes": {"\u6d17\u8863\u670d": 1}, "footsteps": {"\u8ffd\u968f": 1, "\u811a\u6b65": 1}, "parts": {"\u628a": 1, "\u62ab\u85a9": 1, "\u5206\u6210": 1, "\u4e09\u4efd": 1}, "slid": {"\u5011": 1, "\u6ed1\u4e0b": 1, "\u5cb8\u908a": 1}, "greedy": {"\u8caa\u5a6a": 1}, "planes": {"\u5efa\u9020": 1, "\u6a21\u578b": 1, "\u98db\u6a5f": 1}, "jumping": {"\u559c\u6b61": 1, "\u8df3": 1, "\u7e69": 1}, "History": {"\u5386\u53f2": 1, "\u4e0d\u662f": 1, "\u8bfe": 1}, "continent": {"\u4e00\u500b": 1, "\u5927\u9678": 1, "": 2, "\u800c": 1}, "Dead": {"\u6b7b": 1, "\u4e0d": 1, "\u6703": 1, "\u544a\u5bc6": 1}, "Kuala": {"\u5409\u9686\u5761": 1, "\u4e00": 1, "\u904a": 1}, "Beethoven": {"\u8c9d\u591a\u82ac": 1, "\u662f": 1, "\u4e00\u500b": 1, "\u5049\u5927": 1, "\u97f3\u6a02\u5bb6": 1}, "elderberry": {"\u63a5\u9aa8\u6728": 1}, "Languages": {"\u8bed\u8a00": 1, "\u4e0d\u662f": 1, "\u5f3a\u9879": 1}, "prepare": {"\u4f5c": 1, "\u574f": 1, "\u51c6\u5907": 1}, "victory": {"\u9019": 1, "\u8f15": 1, "\u9b06": 1, "\u53d6\u5f97": 1, "\u52dd\u5229": 1}, "privilege": {"\u5f97\u5230": 1, "\u6d77\u6e7e": 1, "\u5185": 1, "\u6355\u9c7c": 1, "\u7279\u6743": 1}, "ambulances": {"\u6551\u62a4\u8f66": 1, "\u4f24\u8005": 1, "\u9001\u5f80": 1}, "legal": {"\u53f8\u6cd5\u5236\u5ea6": 1, "\u4e0a": 1, "\u6700\u597d": 1}, "Eiffel": {"\u827e\u83f2\u723e": 1, "\u62cd\u5f35": 1, "\u7d50": 1, "\u5a5a\u7167": 1}, "lectures": {"\u8b1b\u5ea7": 1, "\u9577": 1}, "avoids": {"\u76e1\u91cf": 1, "\u907f\u958b": 1}, "feathers": {"\u9e1f\u513f": 1, "\u8eab\u4e0a": 1, "\u94fa\u6ee1": 1, "\u7fbd\u6bdb": 1}, "disable": {"\u4f46\u613f": 1, "\u627e\u5230": 1, "\u5c4f\u853d": 1}, "Furniture": {"\u7528": 1, "\u4f18\u8d28": 1, "\u5bb6\u5177": 1}, "waving": {"\u63ee\u8457": 1}, "Terrific": {"\u5f88\u68d2": 1}, "response": {"\u56de\u590d": 1, "\u665a": 1}, "awkward": {"\u9019\u500b": 2, "\u4e00\u628a": 2, "\u5f88": 1, "\u96e3": 1, "\u4f7f\u7528": 1, "\u5f13": 2, "\u4e0d": 1, "\u7a31\u624b": 1}, "oars": {"\u8258": 1, "\u516d\u500b": 1, "\u69f3": 1}, "roast": {"\u591a\u4e00\u4e9b": 1, "\u70e4\u725b\u8089": 1, "\u600e\u9ebc\u6a23": 1, "?": 1}, "firemen": {"\u6d88\u9632": 1, "\u968a\u54e1": 1, "\u64b2": 1, "\u6ec5": 1}, "Comb": {"\u51fa\u9580": 1, ",": 1, "": 1, "\u982d": 1, "\u9aee": 1, "\u68b3": 1}, "Sammy": {"\u5c71\u7c73": 1, "\u6234\u7dad\u65af": 1}, "Students": {"\u901a\u5e38": 1, "\u5b66\u751f": 1, "\u4eec": 1}, "screaming": {"\u4e00\u5206\u949f": 1, "": 2, "\u90fd": 1}, "loaves": {"\u4e86\u5169\u689d": 1}, "glue": {"\u80f6\u6c34": 1, "\u7528": 1, "\u81a0\u6c34": 1, "\u9ecf\u5728": 1}, "antique": {"\u53e4\u73a9\u5e97": 1}, "Bear": {"\u7262": 1, "\u8a18": 1, "\u5efa\u8b70": 1}, "plants": {"\u690d\u7269": 1, "\u967d\u5149": 1}, "exhibits": {"\u770b": 1, "\u5c55\u89c8\u4f1a": 1}, "brooch": {"\u90a3": 1, "\u679a": 1, "\u80f8\u9488": 1, "\u4e22\u5931": 1}, "presidency": {"\u6709": 1, "\u8cc7\u683c": 1, "\u7576\u9078": 1, "\u7e3d\u7d71": 1}, "grave": {"\u5230": 1, "\u6b7b": 1, "\u90fd": 1, "\u6539\u4e0d\u4e86": 1, "\u90a3\u500b": 1}, "irritable": {"\u6709\u70b9": 1, "\u813e\u6c14": 1, "\u66b4\u8e81": 1}, "Esperanto": {"\u4e16\u754c": 1, "\u8a9e": 1, "16": 1, "\u500b": 1, "\u8a9e\u6cd5": 1, "\u898f\u5247": 1}, "thoughts": {"\u89c9\u5f97": 1, "\u600e\u4e48\u6837": 1}, "suffered": {"\u90a3": 1, "\u5bb6": 1, "\u4e8f\u635f": 1, "10": 1, "\u4ebf\u65e5\u5143": 1}, "seating": {"\u8fd9\u4e2a": 1, "\u80fd": 1, "\u5bb9\u7eb3": 1, "\u4eba": 1}, "brightly": {"\u591c\u7a7a": 1, "\u661f\u5149": 1, "\u660e\u4eae": 1}, "Bern": {"\u4f2f\u6069": 1, "\u9996\u90fd": 1}, "Helen": {"\u6d77\u502b": 1, "\u51f1\u52d2": 1, "\u773c\u76f2": 1, "": 1, "\u8033\u807e": 1, ",": 1}, "Preventive": {"\u9884\u9632\u63aa\u65bd": 1, "\u771f\u6b63": 1}, "rug": {"\u8fd9\u5757": 1, "\u5730\u6bef": 1, "\u624b\u5de5": 1, "\u5236\u4f5c": 1}, "characters": {"\u6703": 1, "\u5beb": 1, "\u6f22\u5b57": 1}, "Taiwanese": {"\u53f0\u7063": 1, "\u53e3\u5473\u6de1": 1}, "Maternal": {"\u6bcd\u7231": 1, "\u522b\u7684": 1, "\u4e1c\u897f": 1, "\u4f1f\u5927": 1}, "mid": {"\u6211\u4eec": 1, "\u7684": 1, "\u4e0b\u96e8": 1, ",": 1, "\u96e8\u5b63": 1, "\u4e00\u822c": 1, "\u5728": 1, "\u516d\u6708": 1}, "bless": {"\u4e0a\u5e1d\u4fdd\u4f51": 1, "\u7f8e\u56fd": 1}, "acknowledged": {"\u5f97\u77e5": 1, "\u9519\u8bef": 1}, "belonged": {"\u51b0\u5c9b": 1, "\u66fe": 1, "\u5c5e\u4e8e": 1, "\u4e39\u9ea6": 1}, "modest": {"\u7372\u5f97": 1, "": 1, "\u5979": 1, "\u4ecd": 1}, "improves": {"\u5c31": 1, "\u50cf": 1, "\u4e0a": 1, "\u7ea2\u9152": 1, "\u4e00\u6837": 1, "": 1, "\u4ed6": 1, "\u5e74\u9f84": 1, "\u7684": 1, "\u589e\u957f": 1}, "illuminated": {"\u9019\u500b": 1, "\u88ab": 1, "\u7167\u4eae": 1}, "Astronomy": {"\u5929\u6587": 1, "\u5b78": 1, "\u6d89\u53ca": 1, "\u6046\u661f": 1}, "operator": {"\u7535\u8bdd": 1, "\u8fd0\u8425\u5546": 1, "\u63d0\u793a": 1, "\u6765\u7535": 1, "\u4eba": 1, "\u7b49\u5019": 1, "\u63a5\u901a": 1}, "seventy": {"\u6d3b\u5230": 1, "70": 1, "\u6b72": 1}, "communication": {"\u4e00\u7a2e": 1, "\u6e9d\u901a": 1, "\u624b\u6bb5": 1}, "welcomed": {"\u70ed\u60c5": 1, "\u6b22\u8fce": 1, "": 1, "\u6211": 1, "\u611f\u89c9": 1}, "verge": {"\u5feb\u8981": 1, "\u8981": 1, "\u51fa\u6765": 1}, "ambassador": {"\u99d0": 1, "\u5927\u4f7f": 1}, "immune": {"\u73fe\u4eca": 1, "\u6bcf\u500b": 1, "\u5c0d": 1, "\u5929\u82b1": 1, "\u514d\u75ab": 1}, "mimic": {"\u9e1a\u9d61\u6703": 1, "\u6a21\u4eff": 1, "\u8072\u97f3": 1}, "Monkeys": {"\u7334\u5b50": 1, "\u80fd\u5b78\u6703": 1, "\u628a": 1, "\u6232": 1}, "marketing": {"\u8425\u9500\u90e8": 1, "\u8d1f\u8d23\u4eba": 1}, "tampered": {"\u649e\u8f66": 1, "\u662f\u56e0\u4e3a": 1, "\u4e0a": 1, "\u505a": 1, "\u624b\u811a": 1}, "kilo": {"\u4e00": 1, "\u516c\u65a4": 1, "?": 1}, "p.m.": {"\u4fdd\u7ba1": 1, "\u4e0b\u5348": 2, "\u4e09\u9ede": 1}, "shoulders": {"\u8111\u5b50": 1, "\u597d\u4f7f": 1}, "Save": {"\u62ef\u6551": 1}, "resented": {"\u5c0d": 1, "\u7a31\u70ba": 1, "\u5f88": 1, "\u53cd\u611f": 1}, "haystack": {"\u8fd9": 1, "\u597d\u6bd4": 1, "\u5927\u6d77\u635e\u9488": 1}, "II": {"\u7b2c\u4e8c\u6b21": 1, "\u4e16\u754c": 1, "\u5927\u6230": 1, "\u65bc": 1}, "21st": {"21": 1, "\u4e16\u7d00": 1, "\u662f": 1, "\u751a\u9ebc\u6a23": 1}, "spoil": {"\u628a": 1, "\u7d50\u5c40": 1, "\u63d0\u524d": 1, "\u900f\u9732": 1, "\u7d66": 1}, "twisted": {"\u953b\u70bc": 1, "\u65f6": 1, "\u626d\u4f24": 1, "\u811a\u8e1d": 1}, "Rain": {"\u96e8": 1, "\u8b93": 1, "\u6c92\u6709": 1, "\u8fa6\u6cd5": 1, "\u53bb": 1}, "slang": {"\u5b66\u4e60\u5916\u8bed": 1, "\u91cc": 1, "\u4fda\u8bed": 1}, "instrument": {"\u9664\u4e86": 1, "\u94a2\u7434": 1, "\u4ee5\u5916": 1, ",": 1, "": 2, "\u4f1a": 1, "\u73a9": 1}, "sauce": {"\u60f3\u8981": 1, "\u91ac\u6599": 1, "\u653e\u5728": 1}, "obtained": {"\u9019\u6b21": 1, "\u6295\u8cc7": 1, "\u4e2d": 1, "\u5f97\u5230": 1, "\u767e\u5206\u4e4b\u516b": 1, "\u6536\u76ca": 1}, "1689": {"\u8fd9": 1, "\u4e8e": 1, "1689": 1, "\u5e74": 1}, "Exercise": {"\u505a": 1, "\u8fd0\u52a8": 1, "\u6709\u5229\u4e8e": 1}, "repainted": {"\u9019": 1, "\u5ea7": 1, "\u6b63": 1, "\u91cd\u65b0": 1, "\u6cb9\u6f06": 1}, "traveler": {"\u53d1\u73b0": 1, "\u65c5\u884c\u8005": 1, "\u6b22\u559c": 1, "\u4e0d\u5df2": 1}, "laptop": {"\u7b14\u8bb0\u672c\u7535\u8111": 1, "\u53d1\u751f": 1, "\u6545\u969c": 1, "\u628a": 1, "\u7b46\u8a18\u672c": 1, "\u5077\u6389": 1}, "confirm": {"\u5373": 1, "\u4e0d\u80fd": 2, "\u786e\u8ba4": 1, "\u5426\u5b9a": 1}, "Imagine": {"\u60f3\u8c61": 1, "\u4e00\u4e0b": 1, ",": 1, "": 1, "\u4f60": 1, "\u6709": 1, "\u4e00\u53f0": 1}, "confined": {"\u5367\u5e8a\u4e0d\u8d77": 1}, "Catch": {"\u6293\u4f4f": 1}, "Opinion": {"\u4e00\u9ede": 1, "\u4e0a\u610f": 1, "\u898b": 1, "\u4e0d": 1, "\u4e00": 1}, "Cambridge": {"\u4ee5": 1, "\u4f18\u5f02": 1, "\u6210\u7ee9": 1, "\u6bd5\u4e1a": 1, "\u4e8e": 1, "\u5251\u6865\u5927\u5b66": 1}, "angel": {"\u50cf": 1, "\u5929\u4f7f": 1}, "Honda": {"\u8ce3": 1, "\u4e00\u53f0": 1, "\u8c50\u7530": 1, "\u8eca": 1}, "extremes": {"\u522b": 1, "\u8d70\u6781\u7aef": 1}, "awoke": {"\u7576": 2, "\u9192": 2, "\u4f86": 2, "": 4}, "postcard": {"\u4e00\u4f4d": 1, "\u5bc4": 1, "\u7d66": 1, "\u4e00\u5f35": 1, "\u660e\u4fe1\u7247": 1}, "aggressive": {"\u4e2a": 1, "\u5484\u5484\u903c\u4eba": 1}, "slamming": {"\u53ef\u4ee5": 1, "\u807d\u898b": 1, "\u7830\u7830": 1, "\u4f5c\u97ff": 1}, "sets": {",": 1, "": 2, "\u592a\u9633": 1, "\u4e0b\u5c71": 1, "\u6bd4": 1}, "hug": {"\u4e00\u500b": 1, "\u64c1\u62b1": 1, "\u751a\u9ebc": 1, "\u62b1": 1}, "32": {"\u83ef\u6c0f": 1, "32": 1, "\u5ea6": 1, "\u7d50\u6210": 1}, "incompetent": {"\u793e\u4f1a": 1, "\u4e0a\u6ee1": 1, "\u4e0d\u79f0\u804c": 1}, "quiz": {"\u6709": 1, "\u5c0f\u8003": 1}, "exploded": {"\u767c\u51fa": 1, "\u5de8\u97ff": 1, "\u7206\u70b8": 1}, "Celsius": {"\u96f6\u5ea6": 1, "\u6642": 1, "\u7d50\u51b0": 1}, "gay": {"\u5973\u6027\u670b\u53cb": 1, "\u559c\u6b22": 1, "\u540c\u5fd7": 1, "\u9152\u5427": 1}, "supported": {"\u6c92\u4eba": 1, "\u652f\u6301": 1, "\u52d5\u8b70": 1}, "intervene": {"\u5fc5\u987b": 1, "\u4ecb\u5165": 1}, "Cookie": {"Cookie": 1}, "Leaving": {"\u534a\u9014\u800c\u5e9f": 1, "\u6240": 1, "\u7cdf\u7cd5": 1, "\u4e8b\u60c5": 1}, "spur": {"\u66f4\u591a": 1, "\u6295\u8cc7": 1, "\u5728": 1, "\u5c07": 1, "\u523a\u6fc0": 1}, "economic": {"\u7d93\u6fdf": 2}, "compute": {"\u79d1\u5b78\u5bb6": 1, "\u5011": 1, "\u5730\u8a08": 1, "\u7b97\u51fa": 1, "\u8ddd\u96e2": 1}, "joining": {"\u53c3\u52a0": 1, "\u4e0d\u7528": 1, "\u6703\u54e1\u8cbb": 1}, "shyly": {"\u7f9e\u602f": 1, "\u5730": 1, "\u90a3\u500b": 1, "\u5e74": 1}, "based": {"\u89c2\u70b9": 1, "\u6ca1\u6709": 1, "\u57fa\u4e8e": 1}, "nominated": {"\u63d0\u540d": 1, "\u5361\u5c14\u6587": 1, "\u2022": 1, "\u67ef\u7acb\u829d": 1, "\u4e3a": 1, "\u526f": 1}, "fountain": {"\u94a2\u7b14": 1}, "details": {"\u62d2\u7edd": 1, "\u63d0\u4f9b": 1, "\u8be6\u7ec6\u4fe1\u606f": 1}, "Apparently": {"\u663e\u7136": 1, "": 1, "\u4ec0\u4e48": 1}, "confronted": {"\u6b63\u9762": 1, "\u81e8\u8457": 1, "\u56b4\u91cd": 1}, "competent": {"\u79f0\u804c": 1, "\u7684": 1, "\u9886\u5bfc\u4eba": 1}, "executed": {"\u8ba1\u5212": 1, "\u88ab": 1, "\u6267\u884c": 1}, "desks": {"\u4eec": 1, "\u5750\u5728": 1, "\u684c\u524d": 1}, "baloney": {"\u4e1c\u897f": 1, "\u80e1\u626f": 1}, "Humor": {"\u4f60": 1, "\u5c31": 1, "\u968f": 1, "\u610f\u5427": 1}, "parcel": {"\u5305\u88f9": 1}, "pray": {"\u5927\u5bb6": 1, "\u6765": 1, "\u7948\u7977": 1}, "Outside": {"\u6821\u5916": 1, "": 1, "\u89c1\u5230": 1, "\u5bb6": 1, "\u4f4f": 1, "\u5728": 1}, "snickered": {"\u6697\u4e2d": 1, "\u7b11": 1}, "wasted": {"\u6e6f\u59c6\u6d6a": 1, "\u8cbb": 1}, "photographer": {"\u662f": 1, "\u5c08\u696d": 1, "\u651d\u5f71\u5e2b": 1}, "Part": {"\u4e00\u90e8\u5206": 1}, "acting": {"\u597d": 1, "\u8be1\u5f02": 1}, "waist": {"\u8170\u56f4": 1, "\u591a\u5c11": 1}, "steals": {"\u5f9e": 1, "\u4e0d": 1, "\u5077": 1}, "microscope": {"\u663e\u5fae\u955c": 1, "\u671b\u8fdc\u955c": 1, "\u5dee\u522b": 1}, "distances": {"\u4e0d\u7fd2": 1, "\u6163": 1, "\u5f88": 1, "\u8def": 1}, "honorable": {"\u61c9\u8a72": 1, "\u5149\u69ae": 1, "\u5730": 1}, "smooth": {"\u5149\u6ed1": 2, "\u5a74\u513f": 1, "\u5c41\u80a1": 1}, "nasty": {"\u6bcf\u6b21": 1, "\u770b\u898b": 1, "\u7d66": 1, "\u9732\u51fa": 1, "\u53ad\u60e1": 1, "\u773c\u795e": 1}, "Drivers": {"\u53f8\u6a5f": 1, "\u7e6b": 1, "\u5b89\u5168": 1, "\u5e36": 1}, "jerk": {"\u771f\u662f": 1, "\u500b": 1, "\u50bb\u5b50": 1}, "ambition": {"\u4ee5\u524d": 1, ",": 1, "\u60f3": 1, "\u548c": 1, "\u4e00\u4f4d": 1}, "booked": {"\u8a02": 1, "\u4e86": 1, "\u4e00\u500b": 1, "\u4f4d\u5b50": 1}, "snowfall": {"\u56e0": 1, "\u5927\u96ea": 1, "\u803d\u6401": 1}, "Travel": {"\u65c5\u884c\u793e": 1, "\u7684": 1, "\u5229\u6da6": 1, "\u731b\u6da8": 1}, "clues": {"\u8b66\u65b9": 1, "\u6c92\u6709": 1, "\u767c\u73fe": 1, "\u7dda\u7d22": 1}, "laziest": {"\u636e\u6211\u6240\u77e5": 1, "\u6700\u61d2": 1}, "jiffy": {"\u9a6c\u4e0a": 1, "\u5c31": 1}, "offices": {"\u8fa6": 1, "\u516c\u5ba4": 1, "\u4e4b\u9593": 1, "\u6247": 1}, "Smoke": {"\u70df\u96fe": 1, "\u51fa\u73b0": 1, "\u4e86": 1}, "championship": {"\u7af6\u722d": 1, "\u51a0\u8ecd": 1}, "Drop": {"\u628a": 1, "\u653e\u4e0b": 1}, "deli": {"\u5bb6": 1, "\u719f\u98df\u5e97": 1, "\u91cc": 1}, "severe": {"\u5bf9": 1, "\u81ea\u5df1": 1, "\u5f88": 1, "\u4e25\u683c": 1}, "sung": {"\u542c": 1, "\u8fc7": 1, "\u7248": 1}, "state": {"\u4e00\u500b": 1, "\u570b\u5bb6": 1, "": 1, "\u4f46": 1, "\u537b": 1, "\u4e0d\u518d": 1, "\u80fd\u5920": 1}, "Calm": {"\u51b7\u9759": 1, "\u70b9": 1}, "dragon": {"\u706b\u9f99\u679c": 1}, "community": {"\u53c2\u52a0": 1, "\u793e\u56e2\u6d3b\u52a8": 1}, "Ebola": {"\u57c3": 1, "\u535a\u62c9": 1, "\u4eba\u7c7b": 1, "\u5df2\u77e5": 1, "\u81f4\u547d": 1, "\u75c5\u6bd2": 1, "\u4e4b\u4e00": 1}, "Friends": {"\u670b\u53cb": 1, "\u5c31": 1, "\u50cf": 1, "\u4e4b": 1, "\u56ed\u91cc": 1, "\u82b1\u6735": 1}, "performance": {"\u4e00\u5834": 1, "\u8868\u6f14": 1, "\u5728": 1, "\u5e7e\u9ede\u9418": 1}, "responded": {"\u6ca1\u56de": 1, "\u4fe1": 1}, "tourist": {"\u904a\u5ba2": 1, "\u8aee\u8a62": 1, "\u8655": 1, "?": 1}, "blink": {"\u4e00\u8f6c\u773c": 1, "\u5c31": 1, "\u8dd1": 1}, "predictions": {"\u9884\u6d4b": 1, "\u9519": 1}, "Waterloo": {"\u6cd5\u570b": 1, "\u4eba": 1, "\u6ed1\u9435\u76e7": 1, "\u4e4b": 1, "\u5f79": 1, "\u5403": 1, "\u6557\u4ed7": 1}, "stage": {"\u8bf7\u95ee": 1, "\u5267\u573a": 1, "\u540e\u95e8": 1, "\u54ea": 1}, "ethical": {"\u4e3a\u4e86": 1, "\u6551": 1, "\u8bb8\u591a": 1, "\u727a\u7272": 1, "\u662f\u5426": 1, "\u9053\u5fb7": 1}, "bandages": {"\u88c1\u5e03": 1, "\u505a": 1, "\u7ef7\u5e26": 1}, "normally": {"\u8fd9\u4e2a": 1, "\u65f6\u5019": 1, "\u8be5": 1}, "hoofbeats": {"\u4e0d\u8981": 1, "\u542c": 1, "\u98ce": 1, "\u5c31\u662f": 1, "\u96e8": 1}, "Nature": {"\u5927\u81ea\u7136": 1, "\u5f88": 1, "\u6177\u6168": 1}, "halfway": {"\u722c": 1, "\u5230": 1, "\u534a\u5c71\u8170": 1}, "tsunami": {"\u6d77\u5578": 1, "\u8b66\u62a5": 1, "\u89e3\u9664": 1}, "Opinions": {"\u89c2\u70b9": 1, "\u56e0\u4eba\u800c\u5f02": 1}, "decides": {"\u6210\u4e3a": 1, "\u51b3\u7b56": 1}, "hunt": {"\u6253\u730e": 1}, "frighten": {"\u6050\u6016\u7247": 1, "\u5230": 1, "\u5c0f\u5b69": 1}, "irritates": {"\u6fc0\u6012": 1, "\u4f60": 1, "\u6700\u597d": 1, "\u4e0d\u8981": 1, "\u7acb\u523b": 1}, "appearance": {"\u51fa\u73b0": 1, ",": 1, "": 1, "\u6211\u4eec": 1}, "otherwise": {"": 1, "\u4f60": 1, "\u6703": 1}, "depressing": {"\u4ee4\u4eba": 1, "\u4e27\u6c14": 1}, "prevents": {"\u8ba9": 1, "\u4e0d\u4e86": 1, "\u623f": 1}, "emotion": {"\u60c5\u7eea": 1, "": 1, "\u5b83": 2, ",": 1, "\u5c31": 1, "\u662f": 1}, "general": {"\u4e00\u822c": 1, "\u4f86": 1, "\u8aaa": 1, "": 1, "\u6d88\u8d39\u8005": 1, "\u559c\u6b61": 1, "\u6578\u91cf": 1, "\u52dd": 1}, "locking": {"\u8a18\u5f97": 1, "\u9396\u9580": 1}, "pretext": {"\u6253\u7740": 1, "\u89c1": 1, "\u5e4c\u5b50": 1, "\u6211\u5bb6": 1}, "priest": {"\u5df2\u7ecf": 1, "\u7267\u5e08": 1}, "demands": {"\u5c48\u670d": 1, "\u65bc": 1, "\u9019\u4e9b": 1, "\u8981\u6c42": 1}, "blisters": {"\u8173": 1, "\u8d77\u6c34\u6ce1": 1}, "shame": {"\u4e00\u500b": 1, "\u6065\u8fb1": 1}, "commit": {"\u4eba\u4eec": 1, "\u4f1a": 1, "\u81ea\u6740": 1, "?": 1}, "contented": {"\u77e5\u8db3\u5e38\u4e50": 1}, "Pacific": {"\u8fd9\u6761": 1, "\u6c47\u5165": 1, "\u592a\u5e73\u6d0b": 1}, "Instead": {"": 2}, "Blondes": {"\u91d1": 1, "\u5973\u90ce": 1, "\u8cfa": 1}, "lively": {"\u6709\u70b9": 1, "\u6d3b\u6cfc": 1}, "cancelled": {"\u53d6\u6d88": 1}, "grasp": {"\u7cbe\u901a": 1, "\u82f1\u6587": 1}, "instrumental": {"\u559c\u6b61": 1, "\u5668\u6a02": 1}, "fry": {"\u8fde": 1, "\u714e": 1, "\u9e21\u86cb": 1, "\u90fd": 1}, "quits": {"\u96e8": 1, "\u505c": 1, "\u5c31": 1}, "pacemaker": {"\u88dd": 1, "\u500b": 1, "\u5fc3\u81df": 1, "\u8d77\u640f\u5668": 1}, "4": {"\u65bc": 1, "4": 1, "\u9ede": 1}, "ambulance": {"\u53eb": 1, "\u6551\u62a4\u8f66": 1}, "Hungary": {"\u5308\u7259\u5229": 2, "\u6587": 1}, "underneath": {"\u64e6\u978b": 1, "\u588a": 1, "\u4e0b\u9762": 1, "\u9019": 1, "\u628a": 1}, "Mutual": {"\u76f8\u4e92\u7406\u89e3": 1, "\u80fd": 1, "\u4fc3\u8fdb": 1}, "permit": {"\u60a8": 1, "\u5141\u8bb8": 1}, "increased": {"\u906d\u53d7": 1, "\u5fc3\u810f\u75c5": 1, "\u56f0\u6270": 1, "\u4eba\u6570": 1, "\u589e\u52a0": 1}, "overconfident": {"\u8981": 1, "\u6ce8\u610f": 1, "\u4e0d\u8981": 1, "\u592a": 1, "\u81ea\u4fe1": 1}, "recite": {"\u80cc\u8bf5\u8bfe\u6587": 1, "\u4e86": 1}, "deeds": {"\u4e00\u4e2a": 1, "\u4e3a": 1, "\u884c\u4e3a": 1}} \ No newline at end of file diff --git a/TRANSLATE/alignments/intersect.align.o.json b/TRANSLATE/alignments/intersect.align.o.json new file mode 100644 index 0000000..e37f4ec --- /dev/null +++ b/TRANSLATE/alignments/intersect.align.o.json @@ -0,0 +1 @@ +{"sunscreen": {"\u6d82\u70b9": 1}, ".": {".": 14973, "\u8ff7\u8def": 2, "\u5982": 1, "\u7684": 75, "\u8fd9": 2, "\u9019\u500b": 2, "\u53ef\u80fd": 4, "\u5730": 2, "\u6ca1\u6709": 4, "\u8981": 2, "\u7279\u522b": 2, "\u53ef\u4e0d": 2, "\u90a3\u79cd": 2, "\u5f88": 33, "\u5927\u6d1e": 1, "\u53ea\u80fd": 2, "\u4ed6": 8, "\u7ea6\u7ff0": 1, ",": 1, "\u592a\u8d35": 1, "\u548c": 1, "\u7522\u751f": 1, "\u6210\u529f": 5, "\u80fd": 3, "": 43, "\u4f1a": 7, "\u597d": 7, "\u5730\u65b9": 2, "\u505a": 10, "\u5e2e\u52a9": 1, "\u7a7f\u8863\u670d": 2, "\u7535\u8bdd\u54cd": 3, "\u6539\u53d8": 2, "\u8aaa": 8, "\u4e2d": 1, "\u6253\u5230": 1, "\u5f53": 2, "\u4e86": 48, "\u535a\u7269": 1, "\u9003\u4e4b\u592d\u592d": 1, "\u5176\u4e2d": 1, "\u6c34\u6c7d": 1, "\u592a\u77ed": 1, "\u6765": 5, "\u7d66": 2, "\u70e7": 1, "\u201c": 2, "\u9003\u8d70": 1, "\u6211": 25, "\u5f97": 4, "\u53c8": 1, "10": 1, "\u9ebb\u70e6": 1, "\u751f": 1, "\u53ef\u4ee5": 3, "\u6709": 7, "\u7b2c\u4e00": 1, "\u770b\u4e0d\u89c1": 2, "\u6c92\u6709": 4, "\u662f": 15, "\u4e0d\u4f1a": 4, "\u6bd4\u8f03": 2, "\u5931\u53bb": 1, "\u5728": 12, "\u4e0d\u80fd": 4, "\u60f3": 5, "\u4f60": 15, "\u666f\u70b9": 1, "\u5408\u60c5\u5408\u7406": 1, "\u5c07": 1, "\u6309": 1, "\u5f97\u4e0d\u5230": 1, "\u63a5\u53d7": 2, "\u770b\u898b": 2, "\u90fd": 8, "\u540e": 3, "\u516d\u6708": 1, "\u6bd4\u8f83": 1, "\u56de\u4e8b": 1, "\u6709\u500b": 1, "\u592a": 1, "\u5230": 5, "\u4e0b": 1, "\u5c31\u522b": 1, "\u63d0\u9ad8": 1, "\u6cd5\u8bed": 1, "\u627e\u5230": 1, "\u6696\u548c": 1, "\u653e": 3, "\u4e0d": 22, "\u5df2": 1, "\u4e00\u5ea7": 1, "\u6073\u8bf7": 1, "\u770b\u5230": 3, "\u90a3\u4e48": 3, "\u9700\u8981": 1, "\u53f8": 1, "\u56de\u8986": 2, "\u559c\u6b61": 6, "\u6bba": 1, "\u6ed1\u51b0": 1, "\u7a7f\u9488": 1, "\u4e00\u573a": 1, "\u4f26\u6566": 2, "\u672c\u66f8": 1, "\u5f88\u5feb": 3, "\u4e24\u4e2a": 1, "\u4e0b\u96e8": 5, "\u518d": 2, "\u7121\u7406": 1, "\u6ca1\u6cd5": 1, "\u4efb\u4f55": 4, "\u8bfb": 1, "\u8272": 1, "\u65e0\u6cd5": 3, "\u5011": 1, "\u4ec0\u9ebc": 2, "\u4e70": 4, "\u653e\u5728": 1, "\u8d70": 2, "\u4e00\u4e2a": 5, "\u5fc3\u5730": 1, "\u9ec4\u8272": 1, "\u505a\u4e0d\u4e86": 1, "\u7559\u5728": 1, "\u8fdf\u5230": 1, "\u6b7b": 4, "\u611b": 4, "3": 1, "\u4e00\u4e1d": 1, "\u9593": 1, "\u4e0d\u5f97\u4e0d": 1, "\u5fc5\u987b": 2, "\u7686": 1, "\u8868\u73fe": 1, "\u5f97\u5c11": 1, "\u6ca1": 7, "\u8fd9\u4e2a": 5, "\u4e2a": 5, "\u5065\u5eb7": 1, "\u5e0c\u671b": 1, "\u770b\u770b": 1, "\u812b": 1, "\u5efa\u8b70": 1, "\u70b9\u706b": 1, "\u771f\u7684": 1, "\u6c14\u5019": 1, "\u5bb9\u6613": 1, "\u529e\u6cd5": 1, "\u4e0b\u8457": 4, "\u800c\u662f": 4, "\u51c6\u5907": 1, "\u770b": 2, "\u6211\u4eec": 2, "\u7e7c\u7e8c": 2, "\u8a18\u5f97": 1, "\u6253\u96fb\u8a71": 1, "\u54ed": 5, "\u9ebb\u7169": 1, "\u684c\u5b50": 1, "\u624d\u80fd": 1, "\u9084": 2, "\u53ea\u662f": 1, "\u8cb7": 1, "\u4e0b\u8dcc": 1, "\u62bd": 1, "\u52a0\u52b2": 1, "\u75be\u75c5": 1, "\u8ddf\u8457": 3, "\u8d76\u4e0a": 3, "\u5c31\u662f": 5, "\u4e00\u8f86": 2, "\u807d\u5230": 1, "\u4ec0\u4e48": 4, "\u8b80\u9ede": 2, "\u7279\u50f9": 1, "\u8f15": 2, "\u4e5f": 7, "\u77ee\u5c0f": 1, "\u6b3a\u9a19": 1, "\u9727\u805e": 1, "\u65bc": 3, "\u5f85": 3, "\u6210": 2, "\u904e": 3, "\u6c92": 3, "\u5f8c": 2, "\u5c31": 14, "\u559c\u6b22": 9, "\u5c0f": 2, "\u6703": 9, "\u4e70\u8f86": 1, "\u932f": 2, "\u5f88\u591a": 2, "\u9664\u4e86": 1, "\u809a\u5b50\u997f": 1, "\u4e4b": 1, "\u4e0d\u5feb": 2, "\u4e00\u76f4": 1, "\u56de\u5e94": 1, "\u4f86": 4, "\u958b\u59cb": 2, "\u63a5": 1, "\u5bc4\u7ed9": 1, "\u975e\u5e38": 4, "\u4e3a\u4ec0\u4e48": 1, "\u63a5\u4f4f": 1, "\u5b9e\u5728": 1, "\u540c\u610f": 1, "\u4f4f": 1, "\u5bc4": 1, "\u9000\u4f11": 1, "\u5927\u8863": 1, "\u4e0d\u597d": 3, "\u5fd8": 2, "\u53bb": 8, "\u65f6\u5019": 1, "\u7ed9": 3, "\u7167\u987e": 1, "\u9019\u4efd": 1, "\u4e0b\u624b": 1, "\u50cf": 1, "\u4e45": 1, "\u501f\u7ed9": 2, "\u4e0a\u73ed": 2, "\u7761\u8457": 1, "\u4e00\u500b": 4, "\u600e\u9ebc": 1, "\u8d77\u5e8a": 1, "\u6253\u5f00": 1, "\u559c\u611b": 1, "\u754f\u61fc": 1, "\u66f4\u52a0": 1, "\u4e0a": 3, "\u65e9\u70b9": 2, "\u6562": 1, "\u5171\u548c": 1, "\u653e\u677e": 1, "\u544a\u8bc9": 3, "\u90a3\u500b": 1, "\u4e0d\u7ba1": 1, "\u96c7": 1, "\u519c\u573a": 1, "\u6655\u5012": 1, "\u5a74\u513f": 1, "\u8d85\u7d1a": 1, "\u7b11": 2, "\u529e\u516c\u5ba4": 1, "\u5c01": 1, "\u5979": 6, "\u9053\u7406": 1, "\u7559\u4e0b": 1, "\u6ca1\u53bb": 1, "\u4eba": 2, "\u8209\u8d77": 1, "\u4e00\u70b9": 2, "\u5b8c": 1, "\u6b23\u8d4f": 1, "30": 1, "\u62ff": 1, "\u91cd\u8981": 1, "\u98db": 1, "\u6253": 5, "\u5b83": 2, "\u505c\u4f4f": 2, "\u6708": 1, "\u53e6": 1, "\u60f3\u8981": 2, "\u54ac": 2, "\u5bfb\u6c42": 1, "\u957f": 1, "\u7b14": 1, "\u8a2d\u5b9a": 1, "\u4fdd\u6301": 1, "\u9003\u751f": 1, "\u70b9": 3, "\u559d": 1, "\u8bf4": 5, "\u4e89\u7aef": 1, "\u4e00\u689d": 1, "\u7d42\u8eab": 1, "\u8a72": 1, "\u73a9": 1, "\u5728\u5bb6": 1, "\u5c0f\u5b69\u5b50": 1, "\u8b1b": 2, "\u5403": 1, "\u7a97\u5916": 1, "\u540d\u8bcd": 1, "\u660e\u767d": 1, "\u665a\u4e0a": 1, "\u91ab\u751f": 1, "\u4e00\u8d77": 2, "\u4e0a\u5e8a": 1, "\u767b\u4e0a": 1, "\u71d2\u6bc0": 1, "\u6e96": 1, "\u8d5e\u6210": 2, "\u5973\u4eba": 1, "\u7d50\u5a5a": 1, "\u5ef6\u8fdf": 1, "\u5371\u9669": 1, "\u81ea\u6bba": 1, "\u5b66": 1, "\u7f1d\u7eab": 1, "\u6eff": 1, "\u4e0a\u706b": 1, "\u7ea0\u6b63": 1, "\u5fc5\u9700": 1, "\u4e0d\u7528": 2, "\u4e00\u628a": 1, "\u51b0\u4e0a": 1, "\u6ed1\u5012": 1, "\u6478": 1, "\u5de5\u4f5c": 2, "\u71b1": 1, "\u5e6b": 2, "\u7761": 1, "\u65e9\u996d": 1, "\u6446\u8131": 1, "\u5176\u4ed6\u4eba": 3, "\u53d4\u53d4": 1, "\u6b63\u5728": 2, "\u5df2\u7ecf": 1, "\u62d2\u7edd": 1, "\u90ae\u5c40": 1, "\u96be\u4ee5": 2, "\u7b80\u964b": 1, "\u542c": 2, "\u7167\u9867": 1, "\u5b89\u5168": 1, "\u5bf9": 1, "\u4ee3\u8868": 1, "\u90a3\u68df": 1, "\u7121\u6cd5": 1, "\u66f4": 1, "\u751f\u6d3b": 1, "\u624d": 3, "\u8fd8": 2, "\u7ad9": 1, "\u901a\u8fc7": 1, "\u5c04": 1, "\u591a": 1, "\u65e0\u7528\u8bba": 1, "\u7740": 2, "\u96e2\u958b": 1, "\u6709\u70b9": 1, "\u8b1d\u8b1d": 3, "\u600e\u4e48": 1, "\u5acc\u897f": 1, "\u770b\u671b": 1, "\u8863\u670d": 1, "\u907f\u5f00": 1, "\u7235\u58eb": 1, "\u5760\u6bc1": 1, "\u8001": 1, "\u6700\u5feb": 1, "\u4e00\u9ede": 1, "\u65c5\u884c": 1, "\u65b0": 3, "\u5f39\u94a2\u7434": 1, "\u88ab": 2, "\u51fa\u53bb": 1, "\u9752\u7b4b": 1, "\u5f97\u5230": 1, "\u7761\u4e0b\u53bb": 1, "\u626d\u52a8": 1, "\u8cb4": 1, "\u8fd4\u56de": 1, "\u51fa\u9580": 1, "\u76f8\u4fe1": 1, "\u6765\u81ea": 1, "\u5931\u8d25": 2, "\u54b8": 1, "\u5141\u8bb8": 1, "\u4e60\u4fd7": 1, "\u958b\u69cd": 1, "\u4e00\u679d": 1, "\u4e0d\u60f3": 2, "\u4e00\u7ad9": 1, "\u7531": 1, "\u51fa\u5dee": 1, "\u81ea": 1, "\u6c23": 1, "\u60ca\u5446": 1, "\u843d\u5411": 1, "\u5f00\u59cb": 2, "\u7eca\u5012": 1, "\u706b\u8f66": 1, "\u7562\u696d": 1, "\u9032\u884c": 1, "\u62ff\u5230": 1, "\u67d4\u987a": 1, "\u670b\u53cb": 1, "\u4e00\u5206": 1, "\u623f\u5b50": 1, "\u8ba8\u538c": 1, "\u6240\u8bf4": 2, "\u9583\u720d": 1, "\u4ea4": 1, "\u9047\u5230": 1, "\u8d76\u4e0d\u4e0a": 1, "\u522b\u5fd8\u4e86": 1, "\u9ad8": 1, "\u53d7\u4f24": 1, "\u56de\u5230": 1, "\u5374": 1, "\u4e00\u6b65": 1, "\u4f11\u770b": 2, "\u6c64\u59c6": 2, "\u56de\u5bb6": 1, "\u65e5\u672c": 1, "\u65e7": 1, "\u6d3e": 1, "\u98fd": 1, "\u904e\u4e16": 1, "\u75c5\u5012": 1, "\u8b80": 2, "\u75c5": 2, "\u7b2c\u4e00\u73ed": 1, "\u5370\u5ea6": 1, "\u5360\u9886": 1, "\u51fa": 1, "\u5c31\u8981": 1, "\u5713": 1, "\u8fd9\u6837": 1, "\u4e0d\u662f": 2, "\u6216": 1, "\u898b": 1, "\u4ed6\u4eec": 1, "\u6c92\u4e8b": 1, "\u98db\u8d8a": 1, "\u97ff": 1, "\u53c2\u52a0": 1, "\u8fc7": 2, "\u4ece\u672a\u89c1\u8fc7": 1, "\u91cc\u6e38": 1, "\u56f4\u5899": 1, "\u5b8c\u6210": 1, "\u60ca\u8bb6": 1, "\u663e\u5f97": 1, "\u81ea\u5df1": 1, "\u65e0\u8f9c": 1, "\u65c5\u6e38": 1, "\u8fd8\u6709": 1, "\u5446": 2, "\u62d2\u7d55": 1, "\u8ac7\u8ad6": 1, "\u4e00\u58f0": 1, "\u770b\u70b9": 1, "\u5beb": 1, "\u7cbe\u901a": 1, "\u9580": 1, "\u4e0d\u4fbf": 1, "\u6491\u4e0d\u4f4f": 1, "\u751f\u75c5": 1, "\u767c\u73fe": 1, "\u5bb3\u5230": 1, "\u516c\u4ea4\u8f66": 1, "\u4e00\u4f1a\u513f": 1, "\u75db": 1, "\u5ba4\u5185": 1, "\u4ee5\u4e0a": 1, "\u8b8a\u6210": 1, "\u53d7\u5230": 1, "\u8fd9\u4e48": 1, "\u4e00\u68df": 1, "\u4e00\u7fa4": 1, "\u4f46": 1, "\u767e\u5206\u4e4b\u4e94\u5341": 1, "\u505a\u4f5c": 1, "\u4e0d\u8981": 1, "\u5f88\u5c11": 1, "\u5de6": 1, "\u4e94\u6708": 1, "\u6d3b\u8fc7": 1, "\u6709\u6240": 1, "\u8f66": 1, "\u8fdb\u6b65": 1, "\u51fa\u6765": 1, "\u6bcf\u500b": 1, "\u96f6": 1, "\u521a\u56de\u5230": 1, "\u9019\u4ef6": 1, "\u53ea\u597d": 1, "\u4e00\u6837": 1, "\u8acb": 1, "\u4e0d\u898b": 1, "\u96fb\u8a71": 1, "\u60f3\u8d77": 2, "\u5939": 1, "\u6eff\u70ba": 1, "\u9396\u9580": 1, "\u53d1\u75af": 1, "\u6212\u6389": 1, "\u79f0": 1, "\u95dc\u7bc0": 1, "\u50be\u76c6": 1, "\u56de\u4f86": 1, "\u7ec4\u6210": 1, "\u70ba": 1, "\u5feb": 1, "\u5173\u6389": 1, "\u5bb6\u91cc": 1, "\u683c\u9675\u862d": 1, "\u9519": 1, "\u4e0d\u591f": 1, "\u7ea2": 1, "\u8fa3": 1, "\u5750\u8f66\u53bb": 1, "\u672c": 1, "\u4e00": 1, "\u6563\u6b65": 1, "\u4ee5": 1, "\u767d\u8cbb": 1, "\u4e2d\u65ec": 1, "\u9ad8\u8208": 1, "\u8b19\u865b": 1, "\u8d8a\u6765\u8d8a": 1, "\u5bb6\u4eba": 1, "\u65f6\u5149": 1, "\u8d8a": 1, "\u8003\u4e0a": 1, "\u5f80\u5e38": 1, "\u904e\u4f86": 1, "\u8a8d\u771f": 1, "\u4ece\u6765\u4e0d": 1, "\u90a3\u4e2a": 1, "\u7eb8\u677f\u7bb1": 1, "\u4e8b": 1, "\u60f3\u6765": 1, "\u7537\u4eba": 1, "\u5f97\u8d77": 1, "\u8d5e\u540c": 1, "\u4e22": 1, "\u4e0a\u6620": 1, "\u739b\u4e3d": 1, "\u91ce\u9910": 1, "\u611f\u5192": 1, "\u505a\u51fa": 1, "\u611f\u5230": 1, "\u9072": 1, "\u53d1\u81ea\u5185\u5fc3": 1, "\u7acb\u5373": 1, "\uff02": 1, "\u5b78\u751f": 1, "\u5b78\u7fd2": 1, "\u5fc5\u8981": 1, "\u958b": 1}, "two": {"\u4e24\u4e2a": 18, "\u5169\u500b": 25, "\u800c\u4e14": 1, "\u5169": 6, "\u8981": 1, "\u61c9\u8a72": 1, "": 1}, "have": {"\u6709": 264, "\u5fc5\u9808": 30, "\u5fc5\u987b": 9, "\u6709\u65f6\u5019": 1, "\u5f97": 19, "": 15, "\u5df2\u7d93": 3, "\u6211": 2, "\u4e0d\u5fc5": 1, "\u4f46": 2, "\u6ca1\u6709": 1, "\u5047\u5982": 1}, "ties": {"\u8d38\u6613": 1}, "Excuse": {"\u4e0d\u597d\u610f\u601d": 2, "\u4e0d\u8d77": 3, "\u5bf9\u4e0d\u8d77": 2, "\u8bf7\u95ee": 2}, ",": {",": 776, "\"": 1, "\u4f1a": 1, "\u662f": 1, "\u201c": 1, "\u559d\u9152": 1, "\u4e5f": 1, "\u4e00\u5e74": 1}, "I": {"": 186, "\u6211": 4748, "\u201d": 2, "\u4e0d": 1, "\u8c22\u8c22": 2, "\u6c99\u54d1": 1, "\u8fd9": 1, "\u4f1a": 2, "\u627e": 1, "\"": 1, "\u4f60": 2, "\u5176\u4ed6": 1, "\u8bb0\u5f97": 1}, "lost": {"": 3, "\u4e22": 13, "\u8ff7\u8def": 10, "\u4e1f\u4e86": 10, "\u8ff7\u5931": 2, "\u5931\u53bb": 11, "\u5931\u6557": 1, "\u8f93": 1, "\u5d29\u76d8": 1, "\u907a\u5931": 1, "\u5979": 1, "\u628a": 1}, "You": {"\u4f60": 492, "": 9, "\u60a8": 7, "\u61c9\u8a72": 1, "\u4e0d\u5fc5": 3}, "seem": {"\u4f3c\u4e4e": 6, "\u770b\u8d77\u6765": 5, "\u770b\u4f86": 4, "\u4e0d\u592a\u597d": 1, "\u770b\u6765": 1}, "prejudiced": {"\u504f\u898b": 1}, "come": {"\u4f86": 60, "\u6765": 37, "\u6c92\u4f86": 3, "\u8bf7\u6765": 1, "\u4ed6": 2, "\u9032\u4f86": 5, "\u8fdb\u6765": 1, "": 1, "\u5c31": 1, "\u9a6c\u4e0a": 1, "\u8fc7\u6765": 1, "\u4f60": 1, "\u4f1a\u6765": 1}, "Do": {"\u5417": 145, "\u4e0d\u8981": 93, "\u55ce": 151, "\u5225": 18, "\u522b": 11, "\u6709": 2, "\u8b1b": 1, "\u4ec0\u4e48": 2, "": 1, "\u4f60": 1}, "you": {"\u4f60": 2318, "\u60a8": 66, "": 56, "\u4ed6": 1, "\u4f60\u4eec": 4, "\u53ea": 1, "\u6211": 8, "\u65e9\u9ede": 2, "\u60f3": 2, "\u6c38\u9060": 1, "\u4f1a": 1, "\u767c\u751f": 1, "\u4f60\u5bb6": 1, "\u6765": 1, "\u94b1": 1, "\u624d": 1, "\u4e0d": 3, "\u4e0d\u80fd": 4, "\u4f46": 1, "\u6ca1\u6cd5": 1, "\u6703": 1, "\u6ca1\u6709": 1, "\u69cd": 1, "\u4e0d\u4f1a": 1, "\u8bf7": 1, "\u524d\u4e9b\u65f6": 1, "\u592a": 1, "\u65f6\u5019": 1, "\u65e0\u6cd5": 1}, "know": {"\u77e5\u9053": 346, "\u4e86\u89e3": 3, "\u8ba4\u8bc6": 11, "\u8b93": 1, "\u8a8d\u8b58": 7, "\u5374": 1, "\u6211": 3, "\u4e00\u65e0\u6240\u77e5": 1, "\u8ba4\u4e3a": 1, "\u53ea\u662f": 1, "\u8ba9": 2, "\u7adf\u7136": 1, "\u60f3": 1, "\u4e0d": 1, "\u4ed6": 1, "\u90fd": 1, "": 1}, "what": {"\u4ec0\u4e48": 73, "\u4ec0\u9ebc": 28, "\u505a": 1, "\u5b83": 2, "\u751a\u9ebc": 17, "\u8bb0\u5f97": 1, "\u8be5": 1, "\u660e\u5929": 1, "\u5bb6\u4f19": 1, "\u6240": 2, "\u5e94\u8be5": 1, "\u60f3": 1, "\u5728": 2, "\u5730\u5740": 2, "\u53d1\u751f": 1, "\u5c31\u662f": 1, "\u4f1a": 1, "\u627e\u5230": 1, "\u6b63\u5728": 1, "\u77e5\u9053": 1, "\u662f": 1, "": 1}, "happened": {"\u53d1\u751f": 16, "\u600e\u4e48": 1, "\u767c\u751f": 16, "\u51fa": 1, "\u6070\u5de7": 2, "": 1, "\u4e5f": 1}, "?": {"\uff1f": 2304, "\u505a": 4, "?": 293, "\u662f": 18, "\u8981": 1, "\u600e\u9ebc": 2, "\u559c\u6b22": 2, "\u4e0d\u662f": 69, "\u6253\u7535\u8bdd": 1, "": 9, "\u6c64\u59c6": 1, "\u5e2e\u5fd9": 1, "\u4ec0\u4e48": 4, "\u8fd8\u662f": 3, "\u57f7\u7167": 1, "\u7eb8": 2, "\u7684": 4, "\u6ca1\u6709": 1, "\u82f1\u8a9e": 3, "\u5f00\u7a97": 1, "\u597d": 2, "\u5bf9": 2, "\u884c": 1, "\u5173\u6389": 1, "\u6211": 2, "\u6e38\u6cf3": 2, "\u6c92\u6709": 1, "\u4e0d\u4f1a": 1, "\u591a\u5c11": 3, "\u60f3\u8981": 1, "\u540d\u5b57": 1, "\u600e\u4e48": 1, "\u771f\u7684": 1, "\u8a71": 1, "\u4ed6": 1, "\u53d1\u751f": 1, "\u53e4\u5178": 1, "\u4e00\u904d": 1, "\u5e79": 1, "\u770b": 1, "\u5403\u665a\u996d": 1, "\u770b\u5230": 1, "\u5728": 2, "\u6212": 1, "\u884c\u674e": 1, "\u610f\u89c1": 1, "\u716e": 1, "\u751a": 1, "\u4e50\u5668": 2, "\u6709\u7a7a": 1, "\u90a3\u4e48": 1, "\u5c0d": 1, "\u54ea\u4e2a": 1, "\u804a\u5929": 1, "\u4e86": 4, "\u73b0\u5728": 1, "\u8fd8\u597d": 1, "\u4e66": 1, "\u8865\u5145": 1, "\u7531\u8c01\u6765": 1, "\u4e00\u4e2a": 1}, "supplies": {"\u8981\u7528": 1, "\u8865\u7ed9": 1}, "fed": {"\u53d7\u591f\u4e86": 1, "\u53d7\u591f": 1, "\u508d\u665a": 1, "\u5582": 1}, "this": {"\u8fd9": 112, "\u8fd9\u4e8b": 3, "\u8fd9\u4e2a": 85, "\u9019\u500b": 109, "\u9019": 103, "": 4, "\u524d": 1, "\u6765": 1, "\u6211": 1, "\u8fd9\u6837": 1}, "weather": {"\u5929\u6c14": 27, "\u5929\u6c23": 15, "\u4eca\u5929\u5929\u6c14": 3, "\u6c14\u5019": 2}, "This": {"\u9019": 137, "\u8fd9": 141, "": 2, "\u8fd9\u4e2a": 5, "\u9019\u500b": 4}, "is": {"\u662f": 1037, "\u7684": 416, "\u5f88": 2, "": 25, "\u5f88\u96be": 1, "\u559c\u6b22": 1, ",": 1, "\u6709": 1, "\u800c\u662f": 1, "\u7f8e\u4e2d\u4e0d\u8db3": 1, "\u8981": 1, "\u60c5\u7dd2": 1, "\u925b": 1, "\u6211\u4f1a": 1, "\u5979": 2, "\u4eec": 1, "\u201c": 1, "\u5b9e\u8df5": 1, "\u4ed6": 1, "\u98df\u7269": 1, "\u8001\u9f20": 1, "\u4f46": 1, "\u80fd": 1, "\u4e0d\u662f": 1, "\u8aaa": 1, "\u8fd9": 1, "\u6c34": 1, "\u77e5\u9053": 1, "\u53ea\u8981": 1, "\uff01": 1}, "cheapest": {"\u93ae": 2}, "store": {"\u5546\u5e97": 13, "\u5e97\u91cc": 1, "\u5e97": 3}, "decided": {"\u6c7a\u5b9a": 15, "\u51b3\u5b9a": 11, "\u6c7a": 1, "": 2}, "study": {"\u8b80\u66f8": 9, "\u5b78\u7fd2": 3, "\u8b80": 2, "\u52aa\u529b\u5b66\u4e60": 1, "\u5c3d\u7ba1": 1, "\u9700\u8981": 1, "\u8bfb\u4e66": 3, "\u60f3\u5b78\u65e5\u8a9e": 1, "\u5b66\u4e60": 8, "\u5b66": 4, "\u5728": 1, "\u6211": 1}, "every": {"\u6bcf\u5929": 68, "\u6bcf": 16, "": 1}, "We": {"\u6211\u5011": 355, "\u6211\u4eec": 273, "": 13, "\u4e09\u5e74": 1}, "do": {"\u505a": 299, "\u4ed6\u4eec": 1, "\u5c31": 3, "\u4f60": 4, "\u505a\u5230": 2, "\u4e0d": 3, "\u89c9\u5f97": 1, "\u6211": 2, "": 1, "\u6ca1\u4ec0\u4e48": 1, "\u7528": 1, "\u4f1a": 2, "\u5fc5\u987b": 1, "\u8077\u696d": 1, "\u4ec0\u4e48": 1, "\u5730": 1}, "care": {"\u4e0d\u5728\u4e4e": 6, "\u7167\u9867": 13, "\u7167\u987e": 7, "\u5728\u610f": 1, "\u5979": 1, "\u65e0\u6240\u8c13": 1, "\u56de\u5bb6": 1, "\u5173\u5fc3": 1, "\u95dc\u5fc3": 2, "\u95dc\u7167": 1, "\u5c31\u884c\u4e86": 1, "\u5173\u6ce8": 1, "\u5728\u4e4e": 1, "\u89e3\u51b3": 1}, "he": {"\u4ed6": 255, "": 28, "\u60f3\u8981": 2, "\u6b7b": 1, "\u56e0\u4e3a": 1}, "What": {"\u4ec0\u9ebc": 129, "\u8be5": 1, "\u4ec0\u4e48": 158, "\u60f3": 1, "\u751a\u9ebc": 7, "\u5462": 5, "\u554a": 7, "\u5982\u4f55": 1, "\u600e\u4e48": 2, "\u5e72\u4ec0\u4e48": 1, "\u4f60": 1, "\u4f1a": 2, "\u5728": 2, "": 1, "\u600e\u9ebc": 1, "\u5e72\u561b": 2}, "purpose": {"\u76ee\u7684": 7, "\u6545\u610f": 5, "\u4f86\u5230": 1}, "school": {"\u5b78\u6821": 45, "\u5b66\u6821": 56, "\u4e0a\u5b66": 18, "\u5b78": 12, "\u4e0a\u5b78": 3, "\u4fbf": 1, "\u53bb": 1}, "located": {"\u5750\u843d": 1}, "minutes": {"\u9418": 16, "\u5206\u949f": 5, "\u5341\u5206\u949f": 3}, "station": {"\u8eca\u7ad9": 23, "\u8f66\u7ad9": 7, "\u7ad9": 11, "\u706b\u8f66\u7ad9": 8, "\u8d76\u5f80": 1, "": 1}, "Speech": {"\u96c4": 1}, "silence": {"": 1, "\u5bc2\u9759\u65e0\u58f0": 1, "\u6c89\u9ed8": 2}, "aunt": {"\u963f\u59e8": 7, "\u59d1\u59d1": 7}, "sent": {"\u9001": 6, "\u5bc4\u7ed9": 1, "\u5bc4": 2, "\u628a": 1, "\u8acb\u4f86": 1, "\u9001\u56de": 1}, "me": {"\u6211": 131, "\u7d66": 11, "\u8ba9": 6, "\u5bf9": 2, "\u82b1": 1, "\u7ed9": 1, "": 2, "\u8ddf": 1, "\u5c0d": 1, "\u6700": 1, "\u544a\u8bc9": 1}, "a": {"\u4e00\u500b": 83, "\u4e00\u4e2a": 37, "\u4e2a": 46, "\u6709": 11, "\u500b": 12, "": 2, "\u6211": 2, "\u6703": 2, "\u662f": 4, "\u6c64\u59c6": 1, "\u90a3": 1, "\u4e86": 1, "\u9019": 1}, "birthday": {"\u751f\u65e5": 19, "\u751f\u65e5\u5feb\u4e50": 1, "\u5230": 1}, "present": {"\u79ae\u7269": 9, "\u793c\u7269": 7, "\u51fa\u5e2d": 3, "\u6b63\u662f": 1}, "Fuji": {"\u5bcc\u58eb\u5c71": 16, "": 1}, "inspiration": {"\u6500\u767b": 1}, "poem": {"\u4e86": 1, "\u5199\u8bd7": 1, "\u8a69": 1}, "warm": {"\u4fdd\u6696": 1, "\u6696\u548c": 1, "\u8eab\u4e0a": 1, "\u5929\u6c23": 1, "\u6eab\u6696": 3}, "bed": {"\u5e8a": 6, "\u5e8a\u4e0a": 6, "\u89ba": 4, "\u7761\u89ba": 2, "\u4e0a\u5e8a\u7761\u89c9": 1, "\u7761\u89c9": 7, "\u6574\u7406": 1, "\u5be2": 2, "\u5367\u5e8a": 1, "\u4e0a\u5e8a": 9, "\u6240\u4ee5": 1, "\u7761": 3, "\u6211": 1, "\u6211\u4eec": 1}, "better": {"\u597d": 18, "\u6700\u597d": 7, "\u66f4\u597d": 17, "\u505a\u5f97\u597d": 2, "\u6bd4\u8f03": 1, "\u505a": 1, "\u7559\u5728": 1, "\u52dd": 1, "\u90a3": 1, "\u6bd4": 1}, "than": {"\u6bd4": 130, "\u4e0d\u80fd": 1, "\u5f97\u5230": 1, "": 1, "\u4f46": 1, "\u7537\u751f": 1, "\u65e0\u6cd5": 1}, "no": {"\u6c92\u6709": 41, "\u623f\u95f4": 1, "\u4e0d": 4, "\u6ca1\u6709": 35, "\u6ca1": 9, "\u6c92": 2, "": 2, "\u5b69\u5b50": 1, "\u548c": 1, "\u4eba": 1, "\u5979": 1}, "bridges": {"\u4e24\u5ea7": 1}, "materials": {"\u6750\u6599": 3}, "from": {"\u5f9e": 51, "\u4ece": 54, "\u81ea": 1, "\u6536\u5230": 5, "\u6765": 1, "\u662f\u4ece": 1}, "Malaysia": {"\u99ac\u4f86\u897f\u4e9e": 1}, "She": {"\u5979": 895, "": 9}, "asked": {"\u554f": 20, "\u95ee": 19, "\u8981\u6c42": 13, "\u6c42\u52a9": 4, "\u8acb": 3, "": 1, "\u53eb": 1}, "question": {"\u554f\u984c": 24, "\u95ee\u9898": 6, "\u96e3\u984c": 1}, "proud": {"\u69ae": 4, "\u9a84\u50b2": 3, "\u9a55\u50b2": 2, "\u81ea\u8c6a": 2, "\u8363": 1, "\u50b2": 2, "\u8c6a": 1}, "He": {"\u4ed6": 1486, "": 8}, "told": {"\u544a\u8bc9": 36, "\u544a\u8a34": 31, "\u8bf4": 3, "\u8fc7": 4, "\u544a\u8bc9\u60a8": 1, "\u4f46\u662f": 1, ",": 1, "\u8aaa": 1}, "busy": {"\u5f88\u5fd9": 13, "\u6b63\u5fd9": 3, "\u5fd9": 40, "\u56e0\u4e3a": 1, "\u6709\u4e8b": 1, "\u4e0d\u5fd9": 3, "\u5fd9\u788c": 2, "\u60a8": 2}, "then": {"\u90a3\u65f6": 4, "\u90a3\u6642\u5019": 1, "\u90a3\u6642": 5, "\u90a3\u4e2a": 1, "\u5e38": 1}, "computer": {"\u7535\u8111": 8, "\u96fb\u8166": 11, "\u4e0a\u6709\u4e00": 1, "\u8ba1\u7b97\u673a": 3}, "complex": {"\u590d\u6742": 1, "\u8907": 1, "\u6709\u591a": 1}, "machine": {"\u673a\u5668": 4}, "should": {"": 9, "\u8be5": 17, "\u4f60": 3, "\u61c9\u8a72": 56, "\u8a72": 63, "\u5e94\u8be5": 78, "\u4e0d\u8be5": 8, "\u8ba4\u4e3a": 1, "\u8fc7\u6765": 1, "\u61c9": 1, "\u4e0d\u8a72": 4, "\u89ba\u5f97": 1, "\u6211": 1}, "they": {"": 7, "\u4ed6\u5011": 22, "\u4ed6\u4eec": 25, "\u80fd\u6bd4": 1}, "in": {"\u5728": 370, "\u88e1": 46, "\u8bf4": 1, "\u51fa": 1, "\u91cc": 10, "\u8fdb\u6765": 1, "": 3, "\u4e00\u67b6": 1, "\u542c\u4e0d\u61c2": 1, "\u73fe\u5728": 1, "\u5979": 1, "\u6211": 1}, "situation": {"\u60c5\u51b5": 6, "\u60c5\u6cc1": 5}, "mother": {"\u6bcd\u89aa": 37, "\u5abd\u5abd": 20, "\u5988\u5988": 22, "\u6bcd\u4eb2": 8, "\u5abd": 1, "\u4f46": 1, "\u5373\u4f7f": 1}, "kitchen": {"\u5eda\u623f": 7, "\u53a8\u623f": 7}, "many": {"\u591a\u5c11": 21, "\u591a": 5, "\u8bb8\u591a": 7, "\u8a31\u591a": 4, "\u5f88\u591a": 21, "\u5e7e\u500b": 1, "": 2}, "rackets": {"\u7403\u62cd": 2}, "always": {"\u4e00\u76f4": 24, "\u7e3d": 8, "\u603b\u662f": 26, "\u7e3d\u662f": 44, "\u6c38\u9060": 2, "": 4}, "meet": {"\u60f3\u898b": 2, "\u78b0\u5934": 1, "\u89c1\u5230": 1, "\u8ba4\u8bc6": 1, "\u9047\u898b": 3, "\u898b\u5230": 2, "\u540e\u4f1a\u6709\u671f": 1, "\u89c1": 2, "\u898b\u9762": 1, "\u898b": 7, "\u89c1\u9762": 1, "\u518d\u89c1\u9762": 1}, "job": {"\u5de5\u4f5c": 44, "\u5e72": 1, "\u8fd9\u4efd": 7, "\u9019\u4efd": 7, "\u53c8": 1, "\u4efd": 1, "\u73b0\u5728": 1}, "sight": {"\u89c2\u5149": 1, "\u6837\u5b50": 1, "\u4e00\u89c1\u949f\u60c5": 1, "\u4ed6": 1, "\u4e0d\u898b\u76e1\u982d": 1, "\u7537\u4eba": 1}, "bus": {"\u5df4\u58eb": 8, "\u516c\u8eca": 28, "\u516c\u5171": 5, "\u516c\u4ea4\u8f66": 8, "": 2, "\u516c\u4ea4": 1, "\u516c\u8f66": 1, "\u4e58\u8f66": 1, "\u642d": 1, "\u80af\u5b9a": 1, "\u932f": 1}, "collect": {"\u6536\u96c6": 1}, "stamps": {"\u90f5\u7968": 6, "\u90ae\u7968": 3}, "There": {"\u6709": 67, "\u6709\u4e2a": 4, "\u6c92\u6709": 2, "\u91cc": 1}, "harbor": {"\u6e2f\u53e3": 2}, "That": {"\u90a3": 121, "\u8fd9": 4, "\u5c31\u662f": 3, "": 1}, "hard": {"\u4e0d\u96be": 2, "\u52aa\u529b": 21, "\u4ed6\u5011": 1, "\u8f9b\u82e6": 4, "\u96e3": 4, "\u52aa\u529b\u5b66\u4e60": 2, "\u96be": 6, "\u5979": 1, "\u4ed6": 1, "\u56f0\u96e3": 1, "\u4e8b": 2, "\u7528\u529f": 1, "\u5594": 1, "\u6c7a\u5b9a": 1}, "objected": {"\u53cd": 2, "\u5728\u5916": 1, "\u570b\u7559\u5b78": 1}, "his": {"\u4ed6": 133, "\u662f": 1, "": 3, "\u4e0d": 1}, "use": {"\u4f7f\u7528": 18, "\u7528": 25, "\u7528\u5230": 1, "\u5c31": 1, "\u4f60": 1, "\u5229\u7528": 2, "\u6c92\u7528": 1}, "pool": {"\u6e38\u6cf3\u6c60": 4, "\u4ed6\u5011": 1, "\u6cf3\u6c60": 1}, "read": {"": 1, "\u9605\u8bfb": 4, "\u8bfb": 18, "\u8b80": 10, "\u6216\u8a31": 1, "\u8ba4\u4e3a": 1, "\u8bfb\u4e66": 1, "\u96be\u8bfb": 1, "\u6211": 1, "\u4e0d": 2, "\u8b80\u66f8": 1, "\u95b1\u8b80": 1}, "book": {"\u5c31\u8bfb": 1, "\u672c\u4e66": 44, "\u4e66": 14, "\u672c\u66f8": 51, "\u66f8": 53, "\u7684": 1, "\u9019": 1, "\u5728": 1, "\u4e00\u672c": 1, "\u90a3\u672c\u4e66": 4, "\u6211": 1, "\u628a": 2, "": 1}, "after": {"\u540e": 16, "\u7167\u9867": 8, "\u5f8c": 35, "\u554f\u5019": 1, "\u60f3\u8981": 4, "\u4e4b\u540e": 1, "\u653e\u5b66": 1}, "finished": {"\u5b8c": 23, "\u8b80\u5b8c": 3, "\u5b8c\u6210": 20, "\u7d50\u675f": 1, "\u7ed3\u675f": 1, "\u770b\u5b8c": 1, "\u505a\u4e0d\u4e86": 1}, "homework": {"\u529f\u8bfe": 1, "\u505a\u529f": 3, "\u529f\u8ab2": 10, "\u5fd8": 1, "\u4f5c\u4e1a": 7, "\u696d": 3, "\u4f5c\u696d": 16, "\u505a\u5b8c\u4f5c\u4e1a": 3, "\u529f": 1, "\u505a\u4f5c\u4e1a": 3, "\u6211": 2, "\u5e03\u7f6e": 1}, "Lincoln": {"\u6797\u80af": 5}, "self": {"\u6240\u8b02": 1}, "man": {"\u7537\u4eba": 43, "\u6210\u4eba": 1, "\u4eba": 5, "\u4e86": 1, "\u96c4\u5fc3\u58ee\u5fd7": 1}, "Like": {"\u6709\u5176\u7236\u5fc5\u6709\u5176\u5b50": 1, "\u559c": 1}, "responsible": {"\u8d1f\u8d23": 5, "\u8d1f\u6709\u8d23\u4efb": 1, "\u4e8b\u8ca0\u8cac\u4efb": 1, "\u9a7e\u9a76\u5458": 1, "\u8ca0\u8cac": 1}, "safety": {"\u8239\u957f": 1, "\u4e4b\u4e0a": 1, "\u5b89\u5168": 2}, "passengers": {"\u4e58\u5ba2": 6}, "When": {"\u5c0f": 1, "\u6642\u5019": 29, "\u65f6\u5019": 35, "\u4f55\u6642": 1, "": 1, "\u5e74\u8f7b": 1}, "heard": {"\u807d\u5230": 21, "\u542c\u8bf4": 8, "\u542c\u5230": 15, "\u6c92": 1, "\u807d": 3, "\u6d88\u606f": 2, "\u8fc7": 1, "\u6c92\u807d": 1, "\u542c\u89c1": 1, "": 1, "\u97f3\u8a0a": 1}, "it": {"": 11, "\u5b83": 136, "\u505a": 6, "\u6709\u4eba": 1, "\u4f1a": 2, "\u4e0d\u4ec5": 1, "\u5c31": 3, "\u505a\u5230": 5, "\u8b80": 1, "\u7ed9": 1, "\u4e0d\u8981": 1, "\u4f60": 1, "\u6ca1": 1, ",": 1, "\u4e86": 1, "\u90fd": 1, "\u8fd9": 1, "\u4e0d": 1, "\u6211": 1}, "reminded": {"\u90a3\u9996\u6b4c": 1}, "clock": {"\u6642\u9418": 3, "\u9418": 1, "\u9336": 1, "\u65f6\u949f": 1, "\u949f": 4, "\u8868\u4e0d\u8d70": 1, "\u591c\u4ee5\u7e7c\u65e5": 1}, "has": {"\u5df2\u7d93": 16, "\u6709": 34, "\u6c92\u6709": 1}, "stopped": {"\u505c\u6b62": 2, "\u505c": 4, "\u505c\u4e0b": 2, "": 1, "\u8bfb\u62a5": 1}, "Even": {"\u751a\u81f3": 1, "\u5118": 1, "\u5373\u4f7f": 2, "": 1, "\u5c31\u7b97": 1}, "Tom": {"\u6e6f\u59c6": 633, "\u6c64\u59c6": 1205, "Tom": 62, "\u8981": 2, "": 24, "\u80fd\u5920": 1, "\u4e0d\u95ee": 1, "\u66f4": 1, "\u6253\u7535\u8bdd": 1, "\u5c31": 1, "\u53bb": 2}, "anymore": {"\u4e0d\u518d": 9, "\u518d\u4e5f": 5, "\u8aaa\u8a71": 1, "\u518d": 1}, "she": {"": 13, "\u5979": 98}, "solved": {"": 1, "\u89e3\u6c7a": 5}, "problem": {"\u4e86": 1, "\u554f\u984c": 27, "\u95ee\u9898": 42, "\u6211": 1, "\u6240\u6709": 1, "\u4f60": 1, "\u9ebb\u70e6": 1}, "visit": {"\u62dc\u8a2a": 2, "\u62dc\u8bbf": 1, "\u8bbf\u95ee": 4, "\u6765\u770b": 1, "\u5149\u81e8": 2, "\u53c2\u89c2": 1}, "day": {"\u4e00\u5929": 37, "\u4e00\u6574\u5929": 15, "\u6574\u5929": 1, "\u6bcf\u5929": 9, "\u90a3\u5929": 2, "\u597d\u65e5\u5b50": 1, "\u7236\u6bcd": 1, "\u5e7e\u6703": 1, "\u5f85": 1, "\u90a3\u9ebc": 1}, "Monday": {"\u5468\u4e00": 5, "\u661f\u671f\u4e00": 7, "\u4e0a\u5468": 1, "": 1}, "Friday": {"\u5468\u4e94": 3, "": 1, "\u661f\u671f\u4e94": 3}, "knows": {"\u77e5\u9053": 23, "\u8ba4\u8bc6": 3, "\u719f\u6089": 1, "\u8a8d\u8b58": 3, "\u6bd4\u5c0d": 1}, "live": {"\u4f4f": 43, "\u751f\u6d3b": 12, "\u6d3b": 2, "\u60f3\u4f4f": 4, "": 1, "\u4f4f\u5728\u4e00\u8d77": 2, "\u9760": 1, "\u6211": 1, "\u6d3b\u8def": 1}, "Boston": {"\u6ce2\u58eb": 34, "\u6ce2\u58eb\u987f": 43}, "house": {"\u623f\u5b50": 77, "\u6211\u5bb6": 6, "\u5c4b\u5b50": 3, "": 1, "\u4ed6\u5bb6": 5, "\u5bb6": 10, "\u514d\u8d39": 1, "\u5728\u5bb6": 1, "\u4f60\u5bb6": 5, "\u6211": 2, "\u4e0d\u8d77": 1, "\u8bf4": 1, "\u4ed6\u4eec": 1, "\u69cb\u5efa": 1}, "Birds": {"\u98db\u884c": 1, "\u9ce5\u5152": 1, "\u4e0b\u86cb": 1}, "black": {"\u9ed1\u8272": 10, "\u9ed1\u8863\u670d": 2, "": 1}, "opening": {"\u6211": 1}, "your": {"\u958b": 1, "\u4f60": 217, "\u60a8": 23, "": 4, "\u7684": 1, "\u4f60\u5011": 1, "\u4e0d\u80fd": 1, "\u5168\u90fd": 1}, "letter": {"\u4f60": 2, "\u4fe1": 21, "\u5c01\u4fe1": 23, "\u4e00\u5c01\u4fe1": 16, "\u5199": 1, "\u4f86\u4fe1": 1, "\u6536\u5230": 1}, "mistake": {"": 1, "\u72af": 12, "\u932f\u8aa4": 8, "\u9519\u8bef": 2, "\u8fd8\u662f": 1, "\u932f": 2, "\u518d\u72af": 1, "\u641e\u9519": 1, "\u642d\u9519": 1}, "admitted": {"\u627f\u8a8d": 3, "\u627f\u8ba4": 4}, "dead": {"\u6b7b": 5, "\u90fd": 1, "": 1, "\u53bb\u4e16": 1, "\u73b0\u5728": 1, "\u6b7b\u8005": 1, "\u6c92\u6b7b": 1, "\u6b7b\u80e1\u540c": 1, "\u6ca1\u6b7b": 1}, "ten": {"\u5341\u5e74": 10, "\u5341\u500b": 1, "10": 13, "\u5341\u70b9": 3, "\u5341\u9ede": 1}, "law": {"\u6cd5\u5f8b": 12, "\u9075\u7eaa\u5b88\u6cd5": 1}, "likes": {"\u559c\u6b22": 30, "\u559c\u6b61": 27, "": 1}, "hot": {"\u70ed": 7, "\u71b1": 9, "\u708e\u70ed": 1, "\u70ed\u70b9": 1, "\u73fe\u5728": 1, "\u6027\u611f": 1, "\u708e\u71b1": 1}, "denying": {"\u53ef\u5426": 1}, "fact": {"\u4e8b\u5be6": 3, "\u5ffd\u7565": 1, "": 1}, "loves": {"\u611b": 11, "\u559c\u6b22": 2, "\u6bcf": 1, "\u7231": 1, "\u9019\u4e8b": 1}, "her": {"\u5979": 237, "": 5, "\u6ca1\u6709": 1, "\u8fd9": 1, "\u6211": 1, "\u4f60": 1, "\u6703": 2, "\u9047\u5230": 1}, "up": {"\u8d77\u5e8a": 36, "\u8d77": 3, "\u653e\u68c4": 8, "\u4f60": 1, "\u5c31\u8981": 1, "\u7531": 1, "\u9192": 1}, "six": {"\u516d\u70b9": 8, "\u516d\u9ede": 8, "\u516d\u9ede\u9418": 6, "6": 6, "\u516d\u500b": 4}, "born": {"\u51fa\u751f": 13, "\u751f": 1, "\u603b\u7edf": 1, "\u751f\u4e8e": 1}, "1972": {"\u4e00\u4e5d\u4e03\u4e8c\u5e74": 1}, "flew": {"\u653e\u98ce\u7b5d": 1, "\u98db\u8d8a": 1}, "with": {"\u548c": 76, "\u4e00\u8d77": 50, "\u8ddf": 59, "\u7528": 14, "\u4e0a": 1, "\u6211": 2, "\u8981": 1, "\u739b\u4e3d": 1}, "son": {"\u513f\u5b50": 19, "\u5152\u5b50": 14, "": 1, "\u5979": 1}, "out": {"\u51fa\u53bb": 42, "\u5916\u51fa": 7, "\u51fa\u9580": 5, "\u6211\u4eec": 1, "\u96e2\u958b": 1, "\u51fa\u4f86": 2, "\u51fa\u6765": 2, "\u624d": 1, "\u5c31": 1, "\u4f46\u5f53": 1, "\u51fa\u95e8": 2, "\u4ed6": 1}, "night": {"\u6628\u5929\u665a\u4e0a": 9, "\u6628\u665a": 67, "\u665a\u4e0a": 7, "\u5f88\u665a": 2, "\u6574\u591c": 1, "\u591c\u665a": 2, "\u6bcf\u665a": 5, "": 1, "\u4e00\u6574\u591c": 1, "\u65e5\u591c\u517c\u7a0b": 1}, "found": {"\u627e\u5230": 28, "": 2, "\u4f46": 2, "\u53d1\u73b0": 11, "\u767c\u73fe": 8, "\u89c9\u5f97": 1, "\u5f04\u6e05\u695a": 1, "\u770b": 1}, "under": {"\u5e95\u4e0b": 10, "\u90a3": 1, "\u4e66\u684c\u4e0b": 1, "\u624b\u4e0b": 1, "\u684c\u4e0b": 1}, "desk": {"\u684c\u5b50": 12, "\u4e66\u684c\u4e0a": 5, "\u5f35": 5, "\u66f8\u684c": 2, "\u684c": 2, "\u684c\u65c1": 1, "\u684c\u4e0a": 4}, "bullet": {"\u5b50\u5f48": 1, "": 1}, "going": {"\u8981": 73, "\u53bb": 23, "": 3, "\u4f1a": 4, "\u5c07": 2, "\u6253\u7b97": 2, "\u6240\u4ee5": 1, "\u53d1\u751f": 1, "\u51fa": 1, "\u5c31\u8981": 1}, "rid": {"\u6446\u8131": 1, "": 1, "\u8fd8": 1, "\u64fa\u812b": 1, "\u65e7\u4e66": 1}, "wife": {"\u8001\u5a46": 1, "\u59bb\u5b50": 21, "\u5ab3\u5987": 1, "\u592a\u592a": 3, "\u7d66": 1, "": 1}, "Hi": {"\u55e8": 3, "\u4f60\u597d": 1}, "How": {"\u600e\u4e48\u6837": 22, "\u591a\u5c11": 4, "\u591a": 11, "\u600e\u4e48": 24, "\u600e\u9ebc": 23, "\u591a\u4e45": 5, "\u4f60\u5011": 4, "\u5982\u4f55": 1, "\u600e\u9ebc\u6a23": 4, "\u5916\u9762": 1, "\u600e\u6a23": 7, "\u5462": 3, "\u4f60\u597d": 2}, "just": {"\u53ea\u662f": 36, "\u525b": 11, "\u521a": 12, "\u96e2\u958b": 1, "": 4, "\u5c31": 13, "\u6b63\u8981": 4, "\u4e26": 1, "\u53ea": 9, "\u7684": 1, "\u5c31\u662f": 8, "\u525b\u525b": 4, "\u521a\u521a": 3, "\u8ddf\u6211\u6765": 1, ".": 1, "\u521a\u597d": 2, "\u76f4\u63a5": 1, "\u521a\u56de\u5230": 1}, "plain": {"\u8001\u5f0f": 1, "\u7c21\u55ae": 1, "\u70b9\u513f": 1}, "worker": {"\u666e\u901a": 3, "\u5de5\u4eba": 1, "\u8077\u54e1": 1}, "name": {"\u540d\u5b57": 63, "\u4ed6": 2, "\u53eb": 2, "\u5e38\u89c1": 1}, "appear": {"\u51fa\u73fe": 3}, "on": {"\u4e0a": 145, "\u5728": 8, "\u957f\u6c99": 1}, "list": {"\u540d\u55ae": 5, "\u6e05\u55ae": 1, "\u540d\u5355": 3, "\u9152\u55ae": 1, "\u901a\u7f09\u4ee4": 1}, "hare": {"\u4e4c\u9f9f": 1}, "children": {"\u5b69\u5b50": 85, "\u6709": 1, "\u5c0f\u5b69": 5}, "kites": {"\u98a8\u7b8f": 1}, "story": {"\u6545\u4e8b": 31}, "work": {"\u5de5\u4f5c": 136, "\u4e0a\u73ed": 13, "\u70b9": 1, "\u505a\u597d": 1, "": 1, "\u4f60": 1, "\u5e0c\u671b": 1, "\u65e0\u6cd5": 1, "\u4e86": 1}, "as": {"\u4e00\u6a23": 22, "\u50cf": 12, "\u4e00\u6837": 15, "\u5c31": 2, "\u540c\u5e74": 1, "\u4f46": 2, "\u5c3d\u53ef\u80fd": 2, "\u60f3\u8c61": 4, "\u4e0d\u5982": 2, "\u90a3\u4e48": 1, "\u662f": 1, "\u90a3\u6837": 3, "\u4f60": 1, "": 1}, "age": {"\u5e74\u7d00\u6642": 1, "\u5e74\u7eaa": 3, "\u51e0\u5c81": 1, "\u5e74\u9f84": 2, "\u80fd": 1, "\u5e74\u9f61": 4, "\u540c\u5c81": 3, "\u540c\u9f84": 1, "\u7d00": 1}, "wonder": {"\u5e72\u4ec0\u4e48": 1, "\u62c5\u5fc3": 1, "\u77e5\u9053": 3, "\u53ef\u5beb": 1, "\u5e5a": 1, "\u7eb3\u95f7": 1, "\u8fd8\u8981": 1}, "today": {"\u4eca\u5929": 113, "": 1}, "my": {"\u7684": 230, "\u6211": 13, "": 2, "\u662f": 1, "\u9a91\u8f66\u53bb": 1, "\u6709": 1, "\u4e0d\u5230": 1, "\u652f\u6301": 1, "\u7528": 1, "\u8ab0": 1, "\u6539\u8b8a": 1}, "final": {"\u6700\u7ec8": 2}, "answer": {"\u56de\u7b54": 28, "\u90fd": 1, "\u7b54\u6848": 13, "\u5979": 1, "\u671f\u671b": 1, "\u7121\u6cd5": 1, "": 1}, "fall": {"\u89c9": 1, "\u79cb\u5929": 4, "\u6389\u843d": 1, "\u6454\u5012": 1, "\u5e73\u5e38": 1, "\u4f9d\u9760": 1, "\u76f8\u604b": 1}, "Mind": {"\u89c4\u77e9": 1}, "not": {"\u4e0d": 779, "\u4e0d\u662f": 131, "": 100, "\u6c92": 15, "\u6c92\u6709": 29, "\u6211": 15, "\u6ca1": 47, "\u4e0d\u8981": 17, "\u4e8b\u60c5": 1, "\u6ca1\u6709": 17, "\u4f46": 7, "\u7684": 1, "\u4ee5\u81f3\u4e8e": 1, "\u73b0\u5728": 1, "\u53cd\u9a73": 1, "\u5979": 1, "\u4f46\u662f": 5, "\u6709\u4e9b": 1, "\u90a3": 1, "\u4f60": 4, "\u4ed6": 1, "\u6015": 1, "\u4e5f": 1, "\u4e0d\u80fd": 1, "\u4e5f\u8a31": 1, "\u53ef\u662f": 1}, "need": {"\u9700\u8981": 130, "\u5fc5\u8981": 14, "\u4e0d\u7528": 2, "\u4e0d\u5fc5": 7, "": 2, "\u5f97\u53bb": 1, "\u62e5\u6709": 1}, "left": {"\u96e2\u958b": 11, "\u5269": 1, "\u79bb\u5f00": 6, "\u7559\u5728": 1, "\u8d70": 1, "\u7559\u4e0b": 2, "\u7d42": 1, ",": 1, "\u7559": 1, "\u5269\u4e0b": 2}, "ago": {"\u524d": 29, "\u524d\u53bb": 3, "\u5e74\u524d": 5, "\u5f88\u4e45\u4ee5\u524d": 1, "\u4e00\u5206": 1, "": 1, "\u5f88\u591a\u5e74": 1}, "Freedom": {"\u81ea\u7531": 3}, "very": {"\u975e\u5e38": 114, "\u5f88": 147, "": 2, "\u5df2\u7ecf": 1, "\u5979": 1, "\u89ba": 1}, "important": {"\u91cd\u8981": 31, "\u8d77": 1, "\u5065\u5eb7": 1}, "stayed": {"\u5f85": 5, "\u71ac\u591c": 1, "\u5bb6\u88e1": 2, "\u8eca\u88e1": 2, "\u5446": 2, "\u6240\u4ee5": 1, "\u4ed6\u5bb6": 1, "\u5728": 2, "\u7761\u5f97": 1, "\u592a\u51b7": 1}, "them": {"\u4ed6\u4eec": 24, "\u4ed6\u5011": 15, "": 1, "\u6211": 1, "\u8c01\u7ed9\u4e86": 1, "\u4ea4\u670b\u53cb": 1}, "through": {"\u6574\u4e2a": 1, "\u906d": 1, "\u4e86\u7ed3": 1}, "the": {"\u5728": 30, "\u4e86": 136, "\u7684": 69, "\u9019\u500b": 12, "\u665a": 1, "\u628a": 16, "\u8981": 1, "\u6c92\u6709": 1, "\u73b0\u5728": 1, "\u5979": 2, "\u4ed6": 1, "Mary": 1, "\u51fa\u53d1": 1, "\u4e0a": 1, "\u4e00\u5834": 1, "\u6211": 1, "\u4e00\u5929": 1, "": 1, "\u96c6\u4e2d\u7cbe\u529b": 1, "\u9a91\u8f66\u53bb": 1, "\u5c31": 1, "\u66f4": 1, "\u53bb": 1, "\u739b\u4e3d": 1}, "summer": {"\u590f\u5929": 20, "\u590f\u5b63": 1}, "wish": {"\u9858": 20, "\u8981\u662f": 6, "\u5e0c\u671b": 37}, "younger": {"\u8f15": 1, "\u5e74\u8f7b": 6, "\u5f1f\u5f1f": 1, "\u4e09\u6b72": 1, "\u56de\u5fc6\u8d77": 1, "\u4e09\u5c81": 2}, "overslept": {"\u8fc7\u5934": 2, "\u904e\u982d": 1}, "next": {"\u63a5\u4e0b\u6765": 1, "\u4e0b": 46, "\u4e0b\u9031": 7, "\u987a\u5ef6": 1, "\u4f60": 1, "\u8981": 1, "\u63a5\u4e0b": 1}, "how": {"\u600e\u9ebc": 7, "\u600e\u4e48": 34, "\u5982\u4f55": 23, "\u600e\u6837": 2, "\u529e\u6cd5": 1}, "play": {"\u6253": 38, "\u73a9": 11, "\u73a9\u800d": 2, "\u51fa\u53bb\u73a9": 1, "\u516c\u56ed": 1, "": 1, "\u8fd8": 2, "\u53c8": 1}, "golf": {"\u9ad8\u723e\u592b": 6, "\u9ad8\u5c14\u592b": 3, "\u9ad8\u5c14\u592b\u7403": 3}, "slipped": {"\u7eb8\u6761": 1, "\u6ed1\u4e86\u4e00\u8de4": 1, "\u6e9c\u51fa": 1}, "into": {"\u5f80": 1, "\u8fdb": 6, "\u9032\u5165": 1, "\u5979\u5011": 1, "\u8fdb\u5165": 1}, "room": {"\u623f\u95f4": 47, "": 1, "\u623f\u9593": 63, "\u6211\u5011": 1, "\u623f\u91cc": 1}, "dangerous": {"\u5371\u96aa": 14, "\u5371\u9669": 5, "\u8fd9": 1, "": 1}, "electricity": {"\u96fb\u662f": 1, "\u901a\u7535": 1, "\u96fb": 2}, "easy": {"\u5bb9\u6613": 33, "\u7b80\u5355": 5, "\u6c64\u59c6": 2, "\u9b06": 4, "\u7c21\u55ae": 1, "\u767c\u89ba": 1, "\u722c\u6811": 1, "\u653e": 1}, "new": {"\u65b0": 54, "\u65b0\u8eca": 4, "\u65b0\u8f66": 4, "\u8cb7": 2, "\u65b0\u9c9c\u4e8b": 2, "\u65b0\u4f86": 1, "\u65b0\u66f8": 2, "\u4f46\u662f": 1, "\u53bb": 1, "\u6211\u4eec": 1, "": 1, "\u4e86": 1}, "language": {"\u8bed\u8a00": 2, "\u8a9e\u8a00": 17, "\u4e0d\u662f": 1, "\u90a3\u91cc": 1}, "fifty": {"\u4e94\u5341\u5c81": 1, "\u4e94\u5341\u5e74": 1, "\u4e94\u5341": 2}, "accepting": {"\u4ea4\u53cb": 1}, "Facebook": {"Facebook": 12}, "crime": {"\u72af\u7f6a": 2}, "lightning": {"\u906d\u5230": 2, "\u96f7\u5288": 1, "\u9583\u96fb\u64ca": 1, "\u906d\u96f7\u51fb": 1}, "vision": {"\u613f\u666f": 1, "\u8bbe\u60f3": 1}, "fault": {"\u932f": 6, "\u9519": 3, "\u6311\u4e0d\u51fa": 2}, "good": {"\u597d": 117, "\u64c5\u9577": 9, "\u4e86": 2, "\u64c5\u957f": 2, "": 1, "\u4e0d\u597d": 1, "\u5f88\u597d": 12, "\u6709": 1, "\u597d\u5904": 2, "\u662f": 1, "\u4e0d\u932f": 1}, "restaurant": {"\u9910\u9986": 4, "\u996d\u5e97": 1, "\u5feb\u9910\u5e97": 1, "\u9910\u5385": 3, "\u9910\u9928": 2, "\u6700\u597d": 1}, "near": {"\u9644\u8fd1": 27, "\u8fd1": 3}, "here": {"\u8fd9\u513f": 44, "\u9019\u88e1": 126, "\u8fd9\u91cc": 78, "\u6c64\u59c6": 1, "\u4f86": 2, "\u53ef\u4ee5": 1, "\u9019": 3, "\u9084": 1, "\u4f60": 1, "\u6765": 1}, "Class": {"\u4e0a\u8ab2": 1}, "begin": {"\u958b\u59cb": 12, "\u5f00\u59cb": 9, "\u6211\u4eec": 1, "\u6211\u5011": 1}, "enjoyed": {"\u958b\u5fc3": 3, "\u771f\u76e1": 1, "\u665a\u4f1a": 1, "\u5fc3\u5730": 1}, "tonight": {"\u4eca\u665a": 48, "\u665a\u4e0a": 4, "": 1}, "nice": {"\u4e0d\u932f": 7, "\u597d\u4eba": 1, "\u89c1\u5230": 1, "\u7f8e\u4e3d": 1, "\u4f60\u597d": 1, "\u7ed9\u4f60\u4e2a": 1, "\u73a9": 1, "\u597d": 2, "\u6109\u5feb": 1, "\u597d\u8bdd": 1}, "car": {"\u8eca": 66, "\u958b\u8eca": 1, "\u8f66\u91cc": 3, "\u8eca\u5b50": 6, "\u8f66": 25, "\u4e00\u8f86\u8f66": 1, "\u8f86\u8f66": 1, "\u6c7d\u8eca": 2, "\u6c7d\u8f66": 2, "\u6211": 3, "\u8f86": 1}, "driving": {"\u958b": 3, "\u99d5\u99db": 6, "\u958b\u8457": 1, "\u566a\u8072": 1, "\u6574\u5929": 1, "\u5b83": 1, "\u8eca\u8f1b": 1}, "best": {"\u6700\u597d": 28, "\u800c\u70ba": 6, "\u505a\u5f97\u597d": 1, "\u6700": 4, "\u5c3d\u529b\u800c\u4e3a": 1, "\u5168\u529b\u4ee5\u8d74": 1, "\u76e1\u529b": 1, "\u5c3d\u529b": 1, "\u9019": 1, "\u5c3d\u5168\u529b": 1, "": 1}, "restaurants": {"\u9910\u9986": 1, "\u9910\u9928": 1}, "ever": {"\u8fc7": 10, "\u6c64\u59c6\u751f": 1, "\u904e": 2, "\u4ece": 1, "\u505a\u4e8b": 1, "\u66fe": 2}, "laughing": {"\u7b11": 13, "\u5632\u7b11": 1}, "laugh": {"\u5632\u7b11": 4, "\u7b11": 5, "\u7b11\u8bdd": 1, "\u9017\u4e50": 1, "\u9017\u4eba": 1, "\u6e6f\u59c6\u7b11": 1}, "him": {"\u4ed6": 298, ".": 1, "\u592a": 1, "\u60f3": 1, "": 2, "\u80fd": 1, "\u89c1": 1, "\u518d": 1, "\u5458\u5de5": 1, "\u8981": 1, "\u4e0d\u4f1a": 1, "\u5979": 1, "\u6211\u5011": 1}, "hurry": {"\u8457\u6025": 3, "\u6025\u4e8e": 1, "\u5662": 2, "\u8d95": 1, "\u6293\u7d27\u65f6\u95f4": 1, "\u5f88\u6025": 1, "\u5306\u5fd9": 3, "\u8d95\u5feb": 1, "\u5feb\u70b9": 1, "\u6293\u7d27": 2, "\u8d76\u5feb": 1, "\u5feb": 1, "\u6ca1": 1, "": 1}, "hair": {"\u9aee": 16, "\u5934\u53d1": 9, "\u982d": 1, "\u8910\u8272": 1, "\u7684": 1}, "soup": {"\u6e6f": 7, "\u6c64": 4}, "about": {"\u600e\u9ebc\u6a23": 7, "\u4e8b": 8, "\u8bf4": 1, "\u5bf9": 2, "\u5927\u7d04": 4, "\u8ac7": 4, "\u6b64": 1, "\u5173\u4e8e": 11, "\u5c0d": 1, "\u8003\u8651": 3, "\u95dc\u65bc": 1, "\u9019\u4e8b": 1, "\u5dee\u4e0d\u591a": 4, "\u95dc": 3, "\u6b63\u8981": 1, "\u8003\u616e": 2, "\u6709\u95dc": 1, "\u5b83": 1}, "round": {"\u4e00\u8f2a": 1, "\u5706\u684c": 1, "\u6574\u5e74": 1, "\u5706\u8138": 1, "\u5730\u7403": 1, "\u5713": 2}, "twelve": {"12": 3, "\u5341\u4e8c": 4}, "hours": {"\u5c0f\u65f6": 16, "\u5c0f": 16, "\u4e86": 2}, "train": {"\u706b\u8f66": 34, "\u706b\u8eca": 35, "\u932f": 1, "\u80fd": 1, "\u5c31\u8981": 1, "\u4f1a": 1, "\u8d76\u4e0a": 1, "": 1, "\u4e58\u706b\u8f66": 1}, "or": {"\u9084": 2, "\u8fd8\u662f": 10, "\u6216\u8005": 2, "": 7, "\u6216": 11, "\u4e00\u5169\u5929": 2, "\u4e5f": 1, "\u7ea2\u7ebf": 1}, "Get": {"\u76e1\u5feb": 1, "\u8d70\u958b": 1, "\u627e\u5230": 1, "\u5148\u4e0b\u624b\u4e3a\u5f3a": 1, "\u8db4\u4e0b": 1, "\u8f66\u91cc": 1, "\u6efe": 2, "\u6eda": 2, "\u8db4\u5728": 1, "\u96e2\u958b": 1}, "done": {"\u5b8c\u6210": 9, "\u505a": 18, "\u505a\u597d": 3, "\u600e\u4e48\u529e": 1, "\u5bf9\u6b64": 1, "\u672c": 2, "\u5b8c": 4, "\u5f9e\u672a": 1}, "stamp": {"\u90f5\u7968": 4, "\u8d34": 2}, "Is": {"\u5417": 54, "\u55ce": 28}, "else": {"\u8fd8\u6709": 3, "\u5225\u7684": 2, "\u9084": 4, "\u518d\u8bf4": 1, "\u8aaa\u5225": 1, "\u522b\u7684": 5, "\u9700\u8981": 1, "\u80dc\u8fc7": 1, "\u751a": 1, "\u5c31": 1, "\u5176\u4ed6\u4eba": 1, "\u8fd8": 2, "\u5176\u4ed6": 1}, "want": {"\u60f3\u8981": 66, "\u60f3": 173, "\u4e0d\u60f3": 87, "": 10, "\u8981": 40, "\u4f46": 1, "\u4f46\u662f": 1, "\u6211": 2}, "'d": {"\u6700\u597d": 39, "\u6211": 1, "\u5e0c\u671b": 2, "\u79bb\u5f00": 1, "\u6bd4\u8f83": 2, "\u597d\u5403": 1, "\u613f\u610f": 1, "\u5982\u679c": 1, "\u4f1a": 1, "\u4e5f": 1, "\u4f60\u5011": 1}, "take": {"\u5e36": 4, "\u82b1": 4, "\u6301\u7eed": 1, "\u62ff": 4, "\u63a5": 1, "\u5e26": 3, "\u597d\u597d": 1, "\u6162\u6162\u6765": 1, "\u591a\u957f\u65f6\u95f4": 4, "\u957f\u65f6\u95f4": 1}, "umbrella": {"\u5098": 10, "\u4f1e": 8, "\u96e8\u4f1e": 2, "\u4f60": 1}, "will": {"\u6703": 214, "\u5c06": 4, "\u4f1a": 81, "\u4ed6": 1, "": 19, "\u4e0d\u4f1a": 12, "\u6211\u4f1a": 62, "\u5c07": 28, "\u6211": 6, "\u5c31": 3, "\u6e6f\u59c6\u6703": 3, "\u4e0d\u7136": 1, "\u4f60": 2, "\u6765": 1, "\u5426\u5247": 3, "\u6211\u4eec": 1, "\u5979": 1, "\u8981": 2, "\u9858\u671b": 1, "\u6211\u5011": 1, "\u5b83": 1, "\u4e5f": 1, "\u6c38\u9060": 2, "\u6811\u53f6": 1}, "wait": {"\u7b49": 38, "\u7b49\u5230": 1, "\u7b49\u5f85": 6, "\u7b49\u4e00\u7b49": 3, "": 1, "\u6211\u4eec": 1}, "front": {"\u53f0\u524d": 1, "\u9762\u524d": 3, "\u6211": 1, "\u524d\u9762": 6}, "tired": {"\u5f88\u56f0": 1, "\u7d2f": 20, "\u7d2f\u6b7b": 2, "\u9ede\u7d2f": 2, "\u75b2\u5026": 1, "\u4e0d\u7d2f": 4, "\u53ad\u5026": 3, "\u56f0": 1, "\u538c\u5026": 3, "\u597d\u7d2f": 1}, "teacher": {"\u8001\u5e2b": 28, "\u8001\u5e08": 27, "\u6559\u5e2b": 9, "\u6210\u4e3a": 1, "\u7236\u89aa": 1, "\u6559\u5e08": 4, "\u6211": 1}, "assembled": {"\u79ae\u5802": 1, "\u4e0d\u5229": 1}, "students": {"\u5b78\u751f": 18, "\u5b66\u751f": 13}, "hardly": {"\u5e7e\u4e4e": 6, "\u6ca1\u7a7a": 1, "": 1, "\u5927\u7b11": 1}, "worth": {"\u503c\u5f97": 18, "\u503c\u5f97\u4e00\u770b": 1, "\u4f46": 1}, "discussing": {"\u8a0e\u8ad6": 2}, "marches": {"\u5982\u540c": 1}, "stomach": {"\u80c3": 3, "\u80c3\u6703": 1, "\u6211": 1}, "studied": {"\u5b66\u4e60": 3, "\u5b66": 5, "\u8b80": 4, "\u5b78\u7fd2": 6, "": 1}, "can": {"\u80fd": 89, "\u53ef\u4ee5": 93, "\u4e0d\u80fd": 85, "": 16, "\u65e0\u6cd5": 4, "\u7121\u6cd5": 15, "\u4e0d\u4f1a": 4, "\u7684": 1, "\u73b0\u5728": 1, "\u6211": 2, "\u8bf4": 1, "\u6050\u6015": 1, "\u4f60": 1, "\u4e0d\u5230": 1, "\u89ba\u5f97": 1, "\u90a3\u513f": 1, "\u4f46": 1}, "ceiling": {"\u5929\u82b1\u677f": 3}, "tried": {"\u8a66\u8457": 9, "\u8bd5\u56fe": 3, "\u8bd5": 5, "": 1, "\u5c1d\u8bd5": 1}, "lift": {"\u8209\u8d77": 2, "\u57ce\u88e1": 1, "\u628a": 1, "\u9001": 1, "\u62ac\u8d77": 2}, "box": {"\u7bb1\u5b50": 15, "\u76d2\u5b50": 10}, "but": {"": 115, "\u9664\u4e86": 7, "\u94b1": 1, "\u4f46\u662f": 2, "\u4f46": 1, "\u56fe\u4e66\u9986": 1}, "impossible": {"\u767c\u73fe": 1, "\u53ef\u80fd": 11, "\u6c34\u662f": 1, "\u662f": 1}, "Where": {"\u54ea\u91cc": 34, "\u54ea\u88e1": 55, "\u54ea\u513f": 21, "\u54ea": 7, "": 1, "\u5730\u65b9": 1}, "been": {"\u4e00\u76f4": 27, "\u53bb\u8fc7": 10, "\u53bb\u904e": 6, "\u5df2\u7d93": 8, "\u5df2\u7ecf": 5, "": 1, "\u9a97": 1, "\u6211": 1}, "All": {"\u6240\u6709": 24, "\u90fd": 4, "\u53ea\u8981": 1, "\u53ea\u6709": 1, "\u5168": 1}, "signs": {"\u8ff9\u8c61": 1}, "seldom": {"\u5f88\u5c11": 6, "\u6240\u4ee5": 1}, "church": {"\u6559\u5802": 16, "\u505a\u793c\u62dc": 2, ",": 1}, "anything": {"\u4ec0\u4e48": 26, "\u4efb\u4f55": 41, "": 4, "\u5b83": 1, "\u770b\u5230": 1, "\u751a\u9ebc": 9, "\u4e5f": 1, "\u6771\u897f": 3, "\u4ee5\u81f3\u4e8e": 1, "\u4e8b": 2, "\u90fd": 4, "\u4e1c\u897f": 4}, "eat": {"\u5403": 111, "\u4ec0\u4e48": 1, "\u4e0d\u5403": 6, "\u5403\u996d": 4, "\u6211": 1}, "like": {"\u559c\u6b61": 131, "\u4f60": 2, "\u60f3": 39, "\u559c\u6b22": 148, "\u50cf": 23, "\u4e0d": 1, "\u60f3\u8981": 2, "": 2, "\u4e00\u6837": 1, "\u6211": 2}, "sports": {"\u904b\u52d5": 6, "\u8fd0\u52a8": 3, "\u8dd1\u8eca": 1, "\u4f53\u80b2\u8fd0\u52a8": 1}, "accident": {"\u4e8b\u6545": 13, "\u610f\u5916": 13, "\u6c92\u767c": 1, "\u8eca\u798d": 3, "\u5076\u7136": 1, "\u767c\u751f": 1, "\u8f66\u7978": 1, "": 1, "\u5de5\u4f24": 1}, "seemed": {"\u539a\u539a\u7684": 1, "\u719f\u7761\u4e2d": 1}, "harder": {"": 2, "\u52aa\u529b": 5, "\u66f4\u52a0": 4, "\u4e0b\u56de": 1}, "if": {"\u5982\u679c": 38, "\u662f\u5426": 19, "\u662f\u4e0d\u662f": 4, "\u5c31": 3, "\u6709\u6ca1\u6709": 2, "\u8bf4\u8bdd": 1, "": 4, "\u597d\u50cf": 2, "\u8981\u662f": 1, "\u7684\u8bdd": 1}, "plan": {"\u8a08\u5283": 20, "\u8ba1\u5212": 15, "\u6211\u4eec": 1, "\u6253\u7b97": 17, "\u8a08\u756b": 6, "\u8d0a\u540c": 1, "\u4ed6": 1, "\u4f1a": 1}, "succeed": {"\u6210\u529f": 9, "\u5c31": 1, "\u6709\u6240": 1, "\u80dc\u5229": 1, "\u4f60": 1}, "stretched": {"\u4f38\u957f": 1}, "arm": {"\u624b\u81c2": 11, "\u633e": 1, "\u80f3\u818a": 2}, "repeat": {"\u8907": 1, "\u91cd\u590d": 2, "\u4e00\u904d": 1}, "sentence": {"\u53e5": 4, "\u53e5\u5b50": 11, "\u53e5\u53e5": 2, "\u4e00\u53e5": 1}, "add": {"\u52a0": 1, "\u52a0\u4e0a": 1, "\u52a0\u5728": 1, "\u4f60": 1}, "5": {"5": 6, "\u4e94\u9ede": 1}, "10": {"10": 4, "": 1, "\u5341\u9ede": 1}, "lunch": {"\u5348": 10, "\u904e\u5348": 1, "\u5348\u9910": 18, "\u5348\u996d": 11, "\u5348\u98ef": 4}, "shop": {"\u5496\u5561\u5e97": 1, "\u5e97": 5, "\u82b1\u5e97": 1, "\u9928": 1}, "something": {"\u4e1c\u897f": 22, "\u4e8b": 17, "\u4e8b\u60c5": 6, "\u6771\u897f": 22, "\u70b9": 7, "\u4e00\u4e9b": 1, "\u4e9b": 3, "\u4f60": 1, "\u8981": 2, "\u60f3": 1, "\u9ede": 1, "\u6709\u4e8b": 2, "\u4ec0\u4e48": 2}, "to": {"\u8981": 92, "\u60f3": 14, "\u53bb": 89, "\u4e0d\u8981": 1, "\u5230": 5, "\u5fc5\u9808": 4, "": 5, "\u9700\u8981": 1, "\u6211\u4eec": 1, "\u8be5": 1, "\u6211": 2, "\u4e58": 1, "\u4e0d\u4f1a": 1, "\u8fd9\u4e2a": 1, "\u4ed6": 1, "\u8ddf": 1}, "give": {"\u7ed9": 18, "\u7d66": 17, "\u653e\u5f03": 5, "\u8fd9": 2, "\u6ca1\u7ed9": 1, "\u4ea4\u7d66": 1, "\u6c38\u4e0d\u8a00\u5f03": 1, "\u4e5f": 1, "\u4e4b\u5916": 1, "\u66f8": 1}, "abroad": {"\u51fa\u56fd": 3, "\u570b": 2, "\u570b\u5916": 9, "\u56fd\u5916": 8, "\u51fa\u570b": 5, "\u5916\u56fd": 2}, "would": {"\u60f3": 35, "\u6703": 5, "\u4f46": 1, "\u4f1a": 12, "\u4e0d\u4f1a": 3, "\u60f3\u8981": 9, "\u751f\u7269": 1, "": 5, "\u613f\u610f": 1, "\u6e6f\u59c6\u6703": 1, "\u4f60": 1, "\u6240\u4ee5": 1}, "remember": {"\u8bb0\u5f97": 14, "\u5370\u8c61": 3, "\u8a18\u5f97": 15, "\u6211": 1, "\u4f46": 1, "\u60f3\u4e0d\u8d77": 1, "\u8bb0\u4e0d\u4f4f": 1, "\u8a18": 1, "\u8a18\u4f4f": 1, "\u8bb0\u4e0d\u8d77\u6765": 1, "\u7c21\u76f4": 1, "": 1}, "library": {"\u56fe\u4e66\u9986": 13, "\u5716\u66f8\u9928": 16, "\u6253\u7b97": 1}, "noticeable": {"\u4e24\u8005\u4e4b\u95f4": 1}, "chicken": {"\u96de\u8089": 3, "\u9e21\u76ae": 1, "\u96de": 2}, "undercooked": {"\u719f": 1}, "stop": {"\u7ad9\u724c": 2, "\u505c\u6b62": 5, "\u6c64\u59c6": 1, "\u505c\u4e0b": 3, "\u505c": 4, "\u505c\u4f4f": 1, "\u963b\u6b62": 4, "\u5df4\u58eb\u7ad9": 1, "\u516c\u4ea4\u8f66\u7ad9": 1, "\u4f1a\u8bd5": 1}, "street": {"\u8857": 7, "\u8857\u9053": 3, "\u99ac": 2, "\u7684": 1, "\u8857\u4e0a": 4, "\u689d\u8857": 1}, "oranges": {"\u6a59\u5b50": 4, "\u67f3\u6a59": 3, "\u6a58\u5b50": 3}, "variety": {"\u5404\u7a2e": 3}, "spices": {"\u9999\u6599": 1}, "feeling": {"\u611f\u89c9": 8, "\u597d\u4e9b": 1, "\u611f\u89ba": 3, "\u8212\u670d": 1, "\u4e0d\u7981": 1, "\u611f\u89c9\u826f\u597d": 1, "\u611f\u53d7": 1, "\u6709\u611f": 1, "\u6ca1\u4ec0\u4e48": 1, "\u4e0d\u9002": 1}, "tell": {"\u544a\u8bc9": 44, "\u544a\u8a34": 45, "\u8bf4": 3, "\u522b\u8ddf\u6211": 1, "\u544a\u53d1": 1, "\u6709\u4ef6": 2, "\u6211": 1, "\u4e5f": 1, "\u5fc5\u8981": 1}, "home": {"\u5728\u5bb6": 53, "\u56de\u5bb6": 74, "": 1, "\u56de\u5bb6\u5427": 3, "\u559c\u6b22": 1, "\u5bb6": 14, "\u6211": 2, "\u4f60": 1, "\u5c31": 2, "\u5bb6\u91cc": 1, "\u5927\u5bb6": 1, "\u5979": 1, "\u843d": 1, "\u60f3": 1}, "now": {"\u73fe\u5728": 80, "\u73b0\u5728": 94, "": 12, "\u600e\u4e48\u529e": 1, "\u77e5\u9053": 1}, "one": {"\u91cc": 1, "\u4eba": 42, "\u4e00\u500b": 12, "\u4e00\u4e2a": 9, "": 3, "\u4e4b\u4e00": 3, "\u529e": 1, "\u501f": 1, "\u5c31": 1}, "besides": {"\u9664\u4e86": 2}, "package": {"\u5305\u88f9": 5}, "servants": {"\u4ec6\u4eba": 1}, "dark": {"\u9ed1\u6697": 2, "\u5929\u9ed1": 5, "\u9ed1\u8272": 1, "\u592a\u6697": 2, "\u6697": 1, "\u5929\u6697": 2}, "far": {"\u9060": 7, "\u8fc7\u706b": 1, "\u5f88\u9060": 3, "\u76ee\u524d\u4e3a\u6b62": 1, "\u8fdc": 10, "\u5f88\u8fdc": 1}, "mahjong": {"\u9ebb\u5c07": 1, "\u9ebb\u5c06": 1}, "wallet": {"\u94b1\u5305": 8, "\u5305": 2}, "substituted": {"\u5b50\u627f\u7236\u4e1a": 1}, "said": {"\u8bf4": 59, "\u8aaa": 46, "\u201d": 2, "\u8fd9\u8bdd": 1, "\u90a3\u8a71": 2, "\u4f46": 1, "\u95f4": 1, "\u5c0d": 1}, "suggestion": {"\u8003\u8651": 1}, "believe": {"\u76f8\u4fe1": 49, "\u4fe1": 3, "\u4e0d\u4fe1": 2, "\u4fe1\u4efb": 1, "\u4e0d\u6562\u76f8\u4fe1": 2, "": 2, "\u5e76": 1, "\u4e5f": 1, "\u624d": 1}, "for": {"\u4e3a": 14, "\u7ed9": 1, "\u70ba": 16, "\u627e": 2, "\u6771\u897f": 1, "\u7d66": 13, "\u8981": 1, "\u5bf9": 1, "\u4e86": 4, "\u5e6b": 1, "\u5c0d": 1}, "deserve": {"\u5e94\u5f97": 1, "\u4e0d\u914d": 1}, "Waitress": {"\u670d\u52a1\u751f": 1}, "Please": {"\u8bf7": 72, "\u8acb": 123, "\u9ebb\u7169": 1, "\u4f60": 1, "": 2}, "call": {"\u6253\u7535\u8bdd": 9, "\u7ed9": 2, "\u53eb": 9, "\u7535\u8bdd": 3, "\u96fb\u8a71": 14, "\u6211": 1, "": 1}, "longest": {"\u6700\u957f": 2}, "tunnel": {"\u96a7\u9053": 2}, "Japan": {"\u65e5\u672c": 67, "": 1}, "Mary": {"\u548c\u739b\u4e3d": 14, "\u739b\u4e3d": 150, "\u746a\u9e97": 86, "\u5c31": 1, "\u6284": 1, "\u83b7\u5f97": 1, "\u4e0d\u60f3": 1, "Mary": 5, "\u5750\u5230": 1, "": 3, "\u4f60": 1}, "hungry": {"\u997f": 6, "\u9913": 8, "\u611f\u89c9": 1}, "must": {"\u5fc5\u9808": 27, "\u8be5": 7, "": 2, "\u4e00\u5b9a": 26, "\u80af\u5b9a": 2, "\u5fc5\u987b": 22, "\u4ed6": 1}, "knew": {"\u4ee5\u5916": 3, "\u77e5\u9053": 16, "\u8fd9\u4e48": 1, "\u8a8d\u8b58": 1, "\u746a\u9e97\u6703": 1, "\u610f\u8bc6": 1}, "did": {"\u6ca1": 30, "\u6ca1\u6709": 19, "\u6c92": 25, "\u505a": 27, "": 9, "\u751a\u9ebc": 3, "\u600e\u4e48": 5, "\u6c92\u6709": 22, "\u4ec0\u9ebc": 1, "\u4f46\u662f": 4, "\u4ec0\u4e48": 1, "\u70ba": 1}, "river": {"\u6cb3\u91cc": 4, "\u6cb3": 19, "\u6cb3\u6d41": 3, "\u6cb3\u88e1": 9}, "safe": {"\u5b89\u5168": 11, "\u5c31\u662f": 1, "\u4fdd\u9669\u67dc": 2, "\u653e\u5165": 1}, "swim": {"\u6e38\u6cf3": 52, "\u6e38": 8}, "Perseverance": {"": 1}, "success": {"\u6bc5\u529b": 1, "\u6210\u529f": 20, "\u795d\u4f60\u6210\u529f": 1, "\u5f97": 1}, "reverse": {"\u76f8\u53cd": 1}, "may": {"\u53ef\u80fd": 37, "": 6, "\u8bf7\u95ee": 1, "\u4e0d\u59a8": 1, "\u53ef\u4ee5": 6, "\u5e76": 1}, "tomorrow": {"\u660e\u5929": 164, "": 6, "\u4e0d": 1}, "afternoon": {"\u4e0b\u5348": 20, "\u4eca\u5929\u4e0b\u5348": 17, "": 3}, "Sundays": {"\u661f\u671f\u5929": 9, "": 1, "\u5468\u65e5": 3, "\u9031\u65e5": 3, "\u661f\u671f\u65e5": 5}, "account": {"\u8003\u8651": 2, "\u8d26\u6237": 2, "\u5e10\u53f7": 1, "\u89e3\u91ca": 1}, "recovered": {"\u6062\u590d": 2}, "health": {"\u5065\u5eb7": 19, "": 1}, "towel": {"\u6bdb\u5dfe": 6, "\u5e72": 1, "\u6d74\u5dfe": 1}, "soft": {"\u67d4\u8f6f": 1, "\u8f6f": 1, "\u771f\u7684": 1}, "fluffy": {"\u84ec\u677e": 1}, "wishes": {"\u7b79\u5212": 1}, "trip": {"\u65c5\u884c": 16, "\u65c5\u6e38": 3, "\u65c5\u9014\u6109\u5feb": 1, "\u7ed3\u675f": 1}, "subject": {"\u79d1\u76ee": 5, "\u8a71\u984c": 1, "\u4e3b\u9898": 1}, "think": {"\u8ba4\u4e3a": 59, "\u89c9\u5f97": 69, "\u8a8d\u70ba": 75, "\u60f3\u6cd5": 2, "": 6, "\u60f3": 17, "\u89ba\u5f97": 9, "\u4f46": 1, "\u4f60": 1}, "find": {"": 3, "\u627e\u5230": 21, "\u627e": 6, "\u4e0d\u5230": 10, "\u767c\u73fe": 1, "\u4e50\u961f": 1, "\u537b": 1, "\u67e5\u660e": 1, ",": 1}, "really": {"\u771f\u7684": 67, "\u771f": 10, "\u771f\u4e0d": 1, "\u771f\u662f": 5, "": 2, "\u975e\u5e38": 2, "\u771f\u6b63": 1, "\u5f88": 1}, "lose": {"\u6e1b\u80a5": 1, "\u5931\u53bb": 8, "\u8f93": 2, "\u8f38": 1}, "Let": {"\u5427": 63, "\u8b93": 55, "\u8ba9": 25, "\u8fdb\u53bb": 2, "\u8d70": 1, "\u4f11\u606f": 1}, "look": {"\u770b\u770b": 12, "\u8d77\u4f86": 6, "\u770b\u6765": 2, "\u770b\u8d77\u6765": 4, "\u770b": 2, "\u957f": 3, "\u627e": 3, "\u770b\u4e0a\u53bb": 7, "\u770b\u4e00\u770b": 1, "\u525b\u624d": 1}, "kissed": {"\u4eb2": 2, "\u4eb2\u543b": 3}, "cheek": {"\u8138\u988a": 3}, """: {"\u201c": 39, "\u300c": 1, "\"": 12, "": 2, "\u9ad8\u547c": 1}, "ringing": {"\u7535\u8bdd\u54cd": 3, "\u97ff": 1}, "If": {"\u5982\u679c": 83, "\u7684\u8bdd": 12, "\u8981\u662f": 1, "\u5c31": 1}, "true": {"\u771f\u7684": 25, "\u771f": 1, "\u771f\u5be6": 1, "": 1, "\u7684": 1}, "follows": {"\u670d\u4ece\u547d\u4ee4": 1, "\u7121\u8ad6": 1}, "say": {"\u4e0d": 1, "\u8bf4": 39, "\u8aaa": 40, "\u4e5f": 1, "\u62d2\u7edd": 1, "\u8981\u8bf4": 3, "\u8ddf": 1, "\u8bf4\u4e0d": 1}, "kind": {"\u5e94\u8be5": 1, "\u63a5\u89e6": 1, "\u54ea\u79cd": 2, "\u4ec1\u6148": 1, "\u771f\u597d": 2, "\u89aa\u5207": 1, "": 1, "\u4ec0\u9ebc\u6a23": 3, "\u771f\u662f": 1, "\u8fc7\u5f97": 1, "\u9592": 1, "\u597d\u5b69\u5b50": 1, "\u597d": 1, "\u4ec0\u4e48\u6837": 1, "\u4f60\u8001": 1, "\u53cb\u597d": 2, "\u56e0\u70ba": 1}, "thing": {"\u8bf4": 1, "\u4e8b": 2, "\u4e8b\u60c5": 2, "\u4ef6": 1, "\u73a9\u610f\u513f": 1, "\u597d\u4e8b": 2, "\u8bb0": 1, "\u505a": 1}, "when": {"\u65f6\u5019": 55, "\u7576": 24, "\u6642\u5019": 15, "\u65f6": 6, "\u4ee5\u53ca": 1, "\u4ed6": 1, "\u6211": 1, "\u662f": 1, "\u5c31": 1}, "word": {"\u8bcd": 8, "\u8bf4\u53e5\u8bdd": 1, "": 1, "\u4e00\u53e5": 1, "\u6574\u6574": 1, "\u4fdd\u8bc1": 2}, "Could": {"\u80fd": 27, ".": 1, "\u60a8": 1}, "where": {"\u54ea\u88e1": 20, "\u54ea\u91cc": 17, "\u5730\u65b9": 4, "\u54ea": 6, "\u54ea\u513f": 4, "\u4ed6": 2, "\u4f60": 1, "\u8981": 1, "\u77e5\u9053": 1, "\u7ad9": 1, "\u7684": 1, "": 1}, "over": {"\u904e\u4f86": 1, "\u8003\u616e": 1, "\u7d50\u675f": 2, "\u90a3\u908a": 2, "\u539f\u8c05": 1, "\u4fe1\u8bfb": 1, "\u590d\u539f": 1, "": 1}, "try": {"\u8a66\u8a66": 4, "\u8bf4": 1, "\u8bd5\u8bd5": 9, "\u8bd5\u4e00\u4e0b": 2, "\u8a66": 4, "\u8fd9\u4e8b": 1, "\u52aa\u529b": 2, "\u8a66\u7a7f": 1, "\u8bd5\u56fe": 1, "\u8bd5": 1, "\u5c3d\u91cf": 1, "\u5c1d\u8bd5": 2, "\u8a66\u8457": 1}, "Would": {"\u4e00\u4e0b": 1, "\u9ede": 3, "\u55ce": 6, "\u613f\u610f": 2}, "cat": {"\u8c93": 4, "\u732b": 21, "\u4e00": 1}, "why": {"\u70ba": 13, "": 1, "\u4e3a\u5565": 1, "\u4e3a\u4ec0\u4e48": 18, "\u8fd9": 1}, "turn": {"\u6389\u5934": 1, "\u4ea4": 1, "\u62d0": 1, "\u8f2a\u5230": 3, "\u5c0f\u58f0": 1, "\u51fa\u73fe": 1, "\u5173\u6389": 2, "\u628a": 1, "\u5173\u4e86": 1, "\u5c0f\u8072": 3, "\u5173\u95ed": 2, "\u95dc\u6389": 1, "": 1}, "dress": {"\u8863\u670d": 8, "\u90a3\u4ef6": 3, "\u88d9\u5b50": 6, "\u6d0b\u88dd": 4, "\u7a7f\u8457": 1, "\u7a7f\u8863\u670d": 1}, "dogs": {"\u72d7": 18, "\u8a13\u7df4": 1, "\u4e09": 1}, "alive": {"\u6d3b\u7740": 5, "\u4f9d\u65e7": 2, "\u6d3b": 3, "\u6d3b\u8457": 2, "\u53ef\u80fd": 1, "\u6211": 1}, "drive": {"\u958b\u8eca": 22, "\u5b78": 2, "\u5f00\u8f66": 13, "\u515c\u98a8": 1, "\u8f09": 2, "\u5f00": 2, "\u80fd\u8f09": 1, "\u9001": 1}, "lake": {"\u6e56\u908a": 1, "\u6e56": 7, "": 1, "\u6e56\u91cc": 2, "\u6e56\u4e0a": 1, "\u6e56\u88e1": 2, "\u6cb3\u8fb9": 1}, "Clean": {"\u6253\u626b": 1, "\u6536\u62fe": 1, "\u6253\u6383": 1, "\u6383": 1}, "subtle": {"\u7ec6\u81f4": 1}, "between": {"\u4e4b\u95f4": 7, "\u4e4b\u9593": 4, "\u597d\u574f\u4e0d\u5206": 1}, "innocent": {"\u6e05\u767d": 2, "\u65e0\u8f9c": 2, "\u4ed6": 1}, "bit": {"\u4e00\u9ede": 1, "\u54ac\u4e86\u4e00\u53e3": 1, "\u8b8a\u597d": 1, "\u72d7": 1, "\u4e00\u70b9": 2, "\u54ac": 1, "\u7a97\u6237": 1, "\u4e0d\u8981\u7d27": 1, "\u6709\u70b9\u50cf": 1, "\u4e0d\u9069": 1}, "worried": {"\u64d4\u5fc3": 10, "\u62c5\u5fc3": 6, "\u8b66\u5bdf": 1}, "surprised": {"\u9a5a\u8a1d": 2, "\u4e0d\u4f1a": 1, "\u5403\u60ca": 4, "\u60ca\u8bb6": 7, "\u60ca\u559c": 1, "\u5e94\u8be5": 1, "\u90fd": 1}, "came": {"\u6765": 11, "\u4e00\u4f86": 1, "\u4f86": 6, "\u7ed3\u679c": 1, "": 1, "\u9032\u4f86": 1, "\u60f3\u51fa": 1}, "dinner": {"\u5403\u665a\u996d": 1, "\u98ef": 17, "\u665a\u996d": 11, "\u665a\u9910": 13, "\u6b63\u9910": 1, "\u4f60": 1}, "yesterday": {"\u6628\u5929": 127, "": 1}, "Stay": {"\u63d2\u624b": 1, "\u8fdb": 2, "\u539f\u5730": 1, "\u7559\u5728": 2, "\u522b\u52a8": 1, "\u8db4\u7740": 1, "\u8eb2\u96e8": 1, "\u522b\u7ba1": 1}, "none": {"\u6bdb\u94b1": 3, "\u4e00\u4f4d": 1, "\u4e0d\u95dc": 2, "\u534a": 1, "": 1}, "tea": {"\u8336": 23, "\u559d\u8336": 4, "\u8336\u6c34": 2, "\u6c8f\u8336": 1, "": 1}, "interview": {"\u9762\u8a66": 2}, "hospital": {"\u91ab\u9662": 18, "\u6240\u5728": 1, "\u533b\u9662": 8, "\u53bb": 1, "\u73b0\u5728": 1}, "looking": {"\u627e": 28, "\u5c0b\u627e": 1, "\u770b": 3, "\u5728\u770b": 3, "\u770b\u8457": 1, "\u96a8\u4fbf": 1}, "books": {"\u4e66": 16, "\u66f8": 20, "\u518c": 1, "\u4e66\u7c4d": 1, "\u8fc7": 1, "\u4f60": 1, "\u6ca1\u4e66": 1}, "Roman": {"\u53e4\u7f57\u9a6c": 1}, "history": {"\u5386\u53f2": 6, "\u5386\u53f2\u4e66\u7c4d": 1, "\u6b77\u53f2": 4}, "tennis": {"\u7db2\u7403": 37, "\u7f51\u7403": 13, "\u6253\u7f51\u7403": 11, "\u5176\u4ed6\u4eba": 1}, "ticket": {"\u7968": 18, "\u51fa\u793a": 1, "\u552e\u7968": 1}, "stitch": {"\u5c0f\u6d1e": 1, "\u9632\u5fae": 1}, "Which": {"\u66f4": 2, "\u54ea\u4e2a": 9, "\u54ea": 22}, "spring": {"\u6625\u5929": 11, "\u6625\u5047": 1, "": 1}, "San": {"\u91d1\u5c71": 1}, "year": {"\u53bb\u5e74": 28, "\u4e00\u5e74": 14, "\u4eca\u5e74": 5, "\u660e\u5e74": 14, "": 1}, "sick": {"\u751f\u75c5": 11, "\u75c5": 10, "\u865a\u5f31": 1, "\u81e5\u75c5": 2, "\u6076\u5fc3": 1, "": 1, "\u75c5\u5012": 2, "\u6240\u4ee5": 1, "\u4ee5\u4e3a": 1}, "hint": {"\u63d0\u793a": 1}, "go": {"\u53bb": 248, "\u8d70": 40, "\u5c31": 4, "\u661f\u671f\u5929": 1, "\u6211": 3, "\u8ba9": 1, "\u4f60": 3, "\u6211\u4eec": 2, "\u77e5\u9053": 1, "\u4e0a": 1, "\u548c": 1, "\u4e86": 1, "": 1, "\u66fe": 1}, "follow": {"\u8ddf\u8457": 4, "\u90fd": 1, "\u9075\u5faa": 1, "\u5169\u500b": 1}, "business": {"\u4e8b\u513f": 1, "\u4e0d\u95dc": 1, "\u7ba1\u9592": 1, "\u4e8b": 2, "\u51fa\u5dee": 7, "\u4ed6": 1, "\u516c\u53f8\u5730\u5740": 1, "\u751f\u610f": 2, "\u6d3d\u5546": 1, "\u56e0\u4e3a": 1, "\u6d3d": 1, "\u516c\u4e8b": 1}, "spy": {"\u9593\u8adc": 1}, "explanation": {"\u8aaa\u660e": 2, "\u89e3\u91cb": 2, "\u89e3\u91ca": 1, "\u7406\u7531": 1}, "across": {"\u5c0d\u9762": 6, "\u6e21\u6cb3": 2, "\u6cb3\u5c0d\u9762": 1, "\u9762": 1}, "Somehow": {"\u8fd9\u4e48": 1}, "arrive": {"\u62b5\u9054": 2, "\u5230": 4, "\u6700\u5148": 1, "\u9054": 1, "\u8981\u5230": 1}, "message": {"\u7559\u8a00": 1, "\u53d1": 1, "\u6761": 1}, "smile": {"": 1, "\u5fae\u7b11": 7, "\u9762\u5e36": 1}, "that": {"\u90a3\u4e48": 14, "\u90a3\u4e2a": 20, "\u90a3\u500b": 20, "\u90a3\u6a23": 14, "\u90a3": 79, "\u4e0d": 1, "\u90a3\u4ef6\u4e8b": 5, "": 5, "\u8fd9\u4e2a": 1, "\u4fe1": 1, "\u90a3\u4e8b": 11, "\u8fd9\u6837": 1, "\u90a3\u9ebc": 3, "\u5e38": 1, "\u90a3\u6837": 1, "\u544a\u8bc9": 1, "\u7ecf\u5e38": 1, "\u4f46\u662f": 1}, "Canada": {"\u52a0\u62ff\u5927": 10}, "see": {"\u4f86\u770b": 11, "\u770b": 20, "\u898b": 24, "\u770b\u770b": 20, "\u898b\u5230": 1, "\u89c1\u5230": 11, "\u89c1": 5, "\u4f46\u662f": 1, "\u770b\u5230": 13, "\u7559\u610f": 1, "\u60f3\u89c1": 5, "\u7531": 1, "\u6211": 1, "": 2, "\u770b\u898b": 6, "\u4f60": 1, "\u770b\u5f97\u89c1": 1, "\u770b\u89c1": 1, "\u770b\u4e0d\u5230": 1, "\u8ddf": 1}, "still": {"\u8fd8": 26, "\u9084": 37, "\u4f9d\u7136": 3, "\u8fd8\u662f": 8, "\u4ecd\u7136": 8, "\u4f46": 2, "\u4ed6": 1, "": 4, "\u8fd8\u6709": 1}, "father": {"\u7236\u89aa": 69, "\u7238\u7238": 35, "\u7236\u4eb2": 41, "": 2, "\u4ed6": 1, "\u4e0d\u662f": 1}, "bike": {"\u81ea\u884c": 2, "\u5c71\u5730\u8f66": 1, "\u81ea\u884c\u8f66": 7, "\u4f60": 1, "\u8173\u8e0f\u8eca": 1}, "missed": {"\u60f3\u5ff5": 3, "\u9519\u8fc7": 8, "\u932f": 3, "\u60f3": 2, "\u7528\u76e1": 1, "\u4e00\u73ed": 1, "\u4ed6": 1}, "says": {"\u8aaa": 7, "\u8bf4": 23, "\u5979": 1, "\u4ed6": 1}, "and": {"\u548c": 153, "": 5, ",": 7, "\u7f8e\u570b": 1}, "grew": {"\u957f\u5927": 3, "\u9577\u5927": 5, "\u6210\u9577": 1, "\u5728": 1, "\u56de": 1}, "Australia": {"\u6fb3\u5927\u5229\u4e9a": 19, "\u6fb3\u6d32": 14}, "talk": {"\u201d": 1, "\u8c08\u8c08": 5, "\u8ac7\u8ad6": 1, "\u8bf4\u8bdd": 13, "\u8a71": 9, "\u6211\u4eec": 1, "\u8c08": 6, "\u8aaa": 1, "\u8c08\u8bdd": 1, "\u8ac7\u8a71": 1, "\u8ddf": 7, "\u8bb2\u8bdd": 1, "\u4f60": 1, "\u8a0e\u8ad6": 1, "\u8ac7": 2, "\u63d0": 1, "\u8bb2": 1, "\u60a8": 1, "\u4f60\u5011": 1}, "too": {"\u592a": 75, "\u4e5f": 22, "\u6211": 1, "\u90a3\u9ebc": 1, "": 6, "\u89c9\u5f97": 1, "\u4f46": 1, "\u7684": 1, "\u592a\u967d": 1, "\u56e0\u4e3a": 1, "\u6765\u8bf4": 1}, "much": {"\u591a": 43, "\u591a\u5c11": 46, "\u6211": 1, "\u5f88\u591a": 1, "\u4ee5\u524d": 1, "\u6bdb\u8863": 1, "\u5e2e\u4e0d\u4e0a": 1, "\u592a": 2, "\u4e0d\u591a": 3, "\u559d": 1}, "MP3": {"MP3": 1}, "!": {"\uff01": 96, "\u4f60": 1, "!": 16, "\u6709\u540d": 1, "\u5c31": 1, "\u51fa\u767c": 1, "": 5, "\u632f\u4f5c\u8d77": 1}, "lives": {"\u4f4f": 35, "\u751f\u6d3b": 5, "\u5728": 1, "\u9694\u58c1": 1, "\u4f4f\u8655": 1}, "York": {"\u7ebd\u7ea6": 8, "\u7d10\u7d04": 7, "\u5230": 1}, "mean": {"\u8ba4\u771f": 1, "\u610f\u601d": 11, "\u4e0d\u662f\u6545\u610f": 2, "\u541d\u556c": 1, "\u90a3\u6837": 1, "\u51f6": 1, "\u5c0f\u6c14": 1, "\u8bf4\u660e": 1}, "warrior": {"\u6230\u58eb": 1}, "harmful": {"\u6709\u5bb3": 1}, "moved": {"\u642c": 1, "\u642c\u5230": 3, "\u611f\u52a8": 2, "": 1}, "cheerful": {"\u958b\u6717": 1}, "Scary": {"\u5687": 2}, "back": {"\u56de\u6765": 42, "\u56de\u4f86": 27, "\u56de\u53bb": 3, "\u4f60\u4f55": 1, "\u56de": 3, "\u9084": 1, "\u5c0f\u65f6": 1, "\u6536\u56de": 1, "\u5c31": 1, "\u76f4\u5230": 1, "\u6c92\u9322": 1, "\u628a": 1}, "private": {"\u79c1\u7acb\u5b66\u6821": 2, "\u79c1\u4eba": 1, "\u79c1\u4e0b": 3, "\u79c1\u7acb\u9ad8\u4e2d": 1}, "saw": {"\u770b\u89c1": 19, "\u770b\u898b": 14, "\u770b\u5230": 17, "\u4f46": 2, "\u537b": 1, "\u898b": 1, "": 1, "\u4ec0\u4e48": 1}, "distance": {"\u8fdc\u5904": 3, "\u5e45\u753b": 1}, "satisfied": {"\u6eff\u610f": 5, "\u6ee1\u610f": 5, "\u6eff\u8db3": 1, "\u6211": 1}, "English": {"\u82f1\u8a9e": 84, "\u82f1\u8bed": 46, "": 4, "\u82f1\u6587": 17, "\u8457\u4f5c": 1, "\u6703": 3, "\u6211": 2, "\u4e00\u5c01": 1, "\u6bcd\u8bed": 1, "\u660e\u663e": 1, "\u5979": 1, "\u5169\u5e74": 1}, "ability": {"\u80fd\u529b": 2, "\u80fd\u5e72": 1}, "Tell": {"\u544a\u8a34": 14, "\u544a\u8bc9": 9, "\u8bb2\u8bb2": 1, "\u600e\u4e48\u5f04": 1}, "three": {"\u4e09\u500b": 15, "\u4e09\u4e2a": 11, "\u4e09": 6, "": 1, "\u4e09\u9ede\u9418": 4, "\u4e09\u5c81\u65f6": 2, "3": 1, "\u4e09\u5c81": 1}, "weeks": {"\u661f\u671f": 1, "\u4e24\u5468": 1, "\u4e09\u5468": 4, "\u5185\u4f1a": 1, "\u9031\u524d": 1, "\u9813\u5f85": 1}, "are": {"\u5728": 11, "\u662f": 9}, "reading": {"\u770b": 7, "\u8b80": 15, "\u8bfb\u5b8c": 4, "\u5728\u8bfb": 4, "\u9605\u8bfb": 7, "\u5728\u770b": 1, "\u6c92\u8b80": 1, "\u8bfb\u4e66": 2, "\u7e7c\u7e8c": 1, "\u7528\u4e8e": 1}, "finish": {"\u5b8c\u6210": 14, "\u4e3a\u6b62": 1, "\u5b8c": 3}, "task": {"\u6ca1\u6307\u671b": 1, "\u6240\u4ee5": 1, "\u4efb\u52a1": 1, "\u4efb\u52d9": 1}, "so": {"\u90a3\u4e48": 12, "\u9019\u9ebc": 29, "": 13, "\u8fd9\u4e48": 15, "\u5403": 1, "\u592a": 5, "\u591a": 1, "\u9019\u6a23": 2, "\u90a3\u9ebc": 2, "\u904e": 1, "\u5982\u6b64": 3, "\u6240\u4ee5": 2}, "short": {"\u77ed": 5, "\u77ed\u7bc7\u5c0f\u8bf4": 1, "\u7f3a\u94b1": 2, "\u77ed\u6682": 2, "\u77ed\u53d1": 2, "\u592a\u77ee": 2, "\u300c": 1}, "time": {"\u65f6\u95f4": 55, "\u65f6\u5019": 14, "\u6642\u9593": 50, "\u51e0\u70b9": 11, "\u6642\u5019": 11, "\u9192\u4f86": 1, "\u51c6\u65f6": 9, "\u4e00\u6b21": 4, "\u8fd9\u6b21": 1, "\u5e7e\u9ede\u9418": 1, ",": 1, "\u5076\u723e": 3, "\u6211": 1, "\u5e7e\u9ede": 1, "\u8a72": 1, "\u628a": 1, "\u958b\u5fc3": 1}, "Tokyo": {"\u6771\u4eac": 13, "\u4e1c\u4eac": 16, "\u4e00\u4e2a": 1, "": 1}, "woods": {"\u6a39\u6797": 2, "\u68ee\u6797": 2, "\u6811\u6797": 2}, "myself": {"\u81ea\u5df1": 32, "\u81ea\u8a00\u81ea\u8bed": 1}, "helmet": {"\u5b89\u5168\u5e3d": 1, "\u982d\u76d4": 1}, "certain": {"\u786e\u5b9a": 4, "\u51c6\u65f6": 1, "\u786e\u5207": 1, "\u78ba\u5b9a": 1, "\u786e\u4fe1": 1, "\u67d0\u65e5": 1}, "Street": {"\u8857": 1}, "old": {"\u8001\u4eba": 15, "\u65e7": 1, "\u8001": 14, "\u8001\u4eba\u5bb6": 3, "\u5e74\u7d00": 7, "\u5e7e\u6b72": 2, "\u5927": 6, "\u820a\u8eca": 1, "\u9019\u4f4d": 1, "\u5e74\u9f84": 1, "\u5f88\u820a": 1, "\u628a": 1, "\u4e00\u4e2a": 1, "\u5e74\u7eaa": 1}, "road": {"\u9a6c\u8def": 2, "\u99ac\u8def": 1, "\u8def": 8, "\u9053\u8def": 2, "\u99ac": 1}, "carefully": {"\u5c0f\u5fc3\u7ffc\u7ffc": 3, "\u8c28\u614e": 1, "\u4ed4\u7ec6": 3, "\u5c0f\u5fc3": 3, "\u8bb2\u8bfe": 1, "\u6df1\u601d\u719f\u8651": 1, "\u4ed4\u7d30": 1}, "help": {"\u5e2e": 24, "\u8bb8\u591a": 1, "\u5e2e\u52a9": 27, "\u5e6b\u52a9": 36, "\u6211": 3, "\u7ea6\u7ff0": 1, "\u5e6b": 39, "\u5e2e\u5fd9": 3, "\u5e6b\u5fd9": 13, "\u6c42\u52a9": 2, "\u5e5a": 1, "\u8bf7": 1, "\u627e": 1}, "us": {"\u6211\u4eec": 45, "\u6211\u5011": 64, "\u4f86": 1, "\u4e00\u6837": 1, "\u6765\u770b": 1, "": 1}, "sense": {"\u610f\u4e49": 5, "\u9053\u7406": 3, "\u901a": 3, "\u5b8c\u5168": 1, "\u662f\u975e\u4e0d\u5206": 1, "\u6ca1\u610f\u601d": 1}, "happy": {"\u5f00\u5fc3": 8, "\u5e78\u798f": 7, "\u6a02": 7, "\u6e6f\u59c6\u9ad8\u8208": 2, "\u9ad8\u5174": 16, "\u6703": 1, "\u9ad8\u8208": 15, "\u958b\u5fc3": 4, "\u4ed6": 3, "\u5feb\u6a02": 2, "\u5979": 1, "\u8208\u6709": 1, "\u5feb\u4e50": 1, "\u90fd": 1}, "apologize": {"\u9053\u6b49": 8}, "They": {"\u4ed6\u5011": 176, "\u4ed6\u4eec": 92, "": 1}, "years": {"\u4e09\u5e74": 12, "\u5169\u5e74": 1, "\u5e74": 9, "\u5f88\u591a\u5e74": 2, "\u4e24\u5e74": 1, "\u591a\u5e74": 2, "": 1, "\u6b72": 2}, "skier": {"\u6ed1\u96ea": 2}, "painting": {"\u90a3\u5e45": 1, "\u7e6a\u756b": 1, "\u4e00\u5e45": 2, "\u5e45\u753b": 1}, "sitting": {"\u6c64\u59c6": 1, "\u5750\u5728": 10, "\u5750\u5230": 1, "\u5ba4\u91cc": 1, "\u7ad9": 1}, "John": {"\u5750\u5728": 1, "\u7ea6\u7ff0": 3, "\u53bb": 1, "\u7d04\u7ff0": 1, "\u7ff0": 1}, "terrible": {"\u771f\u7cdf\u7cd5": 1, "\u53ef\u6015": 3, "\u58de": 1, "\u7cdf\u7cd5": 1}, "only": {"\u552f\u4e00": 29, "\u53ea\u6709": 13, "\u53ea": 15, "\u53ea\u662f": 4, "\u53ea\u80fd": 2, "\u4ec5": 1, "\u72ec\u5b50": 2}, "class": {"\u73ed\u7ea7": 4, "\u8ab2": 3, "\u8bfe": 3, "\u73ed\u4e0a": 6, "\u73ed\u91cc": 5, "\u73ed": 9, "\u540c\u73ed": 1, "\u73ed\u88e1": 1}, "Perfect": {"\u5b8c\u7f8e": 1}, "game": {"\u6e38\u620f": 4, "\u904a\u6232": 4, "\u6bd4\u8cfd": 13, "\u6bd4\u8d5b": 1, "\u73a9\u96fb\u8996": 1}, "till": {"\u6401\u5230": 1, "": 2, "\u4e09\u70b9": 1, "\u7b49\u5230": 5, "\u653e\u5230": 1, "\u7761": 1, "\u76f4\u5230": 4}, "Sunday": {"\u5468\u65e5": 9, "\u661f\u671f\u5929": 12, "\u4e0a\u5468\u65e5": 1, "\u9031\u65e5": 12, "": 1, "\u65e5": 3, "\u5468\u672b": 1, "\u660e\u5929": 1}, "Translate": {"\u9010\u5b57": 1}, "neither": {"\u4e5f": 1, "": 2, "\u65e2": 3}, "seen": {"\u89c1": 10, "\u770b\u89c1": 7, "\u904e": 5, "\u6c92\u898b": 1, "\u770b\u5230": 9, "\u6ca1\u89c1": 2, "\u597d\u4e45\u4e0d\u89c1": 1, "\u4f60": 2, "\u6211": 1}, "such": {"\u8fd9\u6837": 4, "\u9019\u6a23": 5, "\u9019\u7a2e": 1, "\u8981\u8bfb": 1, "\u597d\u5fc3": 1, "\u90a3\u79cd": 1}, "No": {"\u6c92": 3, "\u6ca1\u5173\u7cfb": 1, "\u6ca1\u6709": 10, "\u6ca1\u4eba\u4f1a": 1, ",": 1, "\u6ca1\u95e8": 1, "\u53ef": 1}, "calling": {"\u53eb": 2, "\u6253\u7535\u8bdd": 1, "\u505a\u5230": 1, "\u807d\u898b": 1}, "thief": {"\u5c0f\u5077": 10}, "conduct": {"\u884c\u4e3a": 1}, "oil": {"\u77f3\u6cb9": 3}, "company": {"\u516c\u53f8": 22, "\u966a\u4f34": 2, "\u4f19\u4f34": 2, "": 1}, "Oscar": {"\u5965\u65af\u5361": 1}, "TV": {"\u770b\u96fb\u8996": 14, "\u7535\u89c6": 11, "\u6211": 3, "\u96fb\u8996": 11, "\u7535\u89c6\u673a": 7, "\u770b\u7535\u89c6": 4}, "Did": {"\u55ce": 42, "\u5417": 15}, "write": {"\u5beb\u4fe1": 3, "\u5199": 13, "\u6c92\u5beb": 1, "\u5b57": 5, "\u5beb": 3, "\u6211": 1, "\u5199\u4fe1": 3, "\u5199\u5b57": 1, "\u5199\u4e0b": 1, "\u52e4": 1, "\u56de\u4fe1": 1}, "fat": {"\u80d6": 2, "\u80d6\u5b50": 1}, "studying": {"\u8b80": 1, "\u5b66": 3, "\u5b66\u4e60": 13, "\u5b78\u7fd2": 6, "\u8b80\u66f8": 3, "\u6e6f\u59c6": 1, "\u7814\u8b80": 1, "\u90fd": 1, "\u6e6f\u59c6\u5b78\u6cd5\u8a9e": 1}, "life": {"\u751f\u547d": 9, "\u4e00\u751f": 3, "\u751f\u6d3b": 12, "\u4eba\u751f": 6, "\u9577\u58fd": 1, "\u6211\u4eec": 1, "\u4f60": 1}, "Mars": {"\u706b\u661f": 4}, "Shall": {"\u7684": 1, "\u53e3\u4fe1\u513f": 1}, "family": {"\u5bb6\u5ead": 6, "\u5bb6\u91cc\u4eba": 1, "\u5bb6\u4eba": 12, "\u5168\u5bb6": 5, "\u4ed6\u5bb6": 2, "\u8fc7\u53bb": 1, "\u4e00\u5bb6\u4eba": 1}, "doctor": {"\u91ab\u751f": 27, "\u5927\u592b": 2, "\u533b\u751f": 28, "": 2, "\u53bb": 1, "\u770b\u75c5": 1}, "once": {"\u7acb\u523b": 10, "\u5076\u723e": 2, "\u4e00\u6b21": 18, "\u7acb\u9a6c": 1, "\u4e00\u5fc3\u4e24\u7528": 1, "": 1, "\u4e00\u904d": 1, "\u9a6c\u4e0a": 3, "\u8fc7\u53bb": 1}, "introduce": {"\u4ecb\u7d39": 5}, "push": {"\u6309\u4e86": 1, "\u63a8": 1, "\u9215": 1}, "month": {"\u6708": 23, "\u4e0b\u500b": 1, "\u4e0a\u500b\u6708": 6, "\u4e0b\u4e2a\u6708": 3}, "logged": {"\u767b\u51fa": 1, "\u9000\u51fa": 1}, "grateful": {"\u611f\u6fc0": 3, "\u975e\u5e38\u611f\u8c22": 1, "\u6703": 1}, "siblings": {"\u59ca\u59b9": 1, "\u5144\u5f1f\u59d0\u59b9": 3}, "thieves": {"\u5c0f\u5077": 1}, "Are": {"\u55ce": 67, "\u5417": 54, "\u7684": 1}, "Japanese": {"\u65e5\u672c": 22, "": 1, "\u65e5\u8bed": 4, "\u65e5": 8, "\u6709": 1}, "Some": {"\u6709\u4e9b": 9, "\u4e00\u4e9b": 1, "\u4e00\u90e8\u5206": 1}, "foods": {"\u53e3\u6e34": 1}, "mirror": {"\u955c\u5b50": 3}, "closet": {"\u8863\u67dc": 2, "\u6a71\u67dc": 1}, "fix": {"\u5b9a\u4e0b": 1, "\u4fee\u597d": 1}, "date": {"\u65e5\u671f": 3, "\u7ea6\u4f1a": 3, "\u7d04": 2, "\u5e7e\u865f": 1}, "special": {"\u7279\u522b": 2, "\u53cd": 1, "\u6211\u4eec": 1, "\u7279\u5225": 4}, "tickets": {"\u79c0": 1, "\u8f66\u7968": 1, "\u4e24\u5f20": 1}, "expensive": {"\u4f46\u662f": 1, "\u592a\u8d35": 4, "\u5f88\u8d35": 2, "\u4ef7\u683c\u4e0d\u83f2": 1, "\u8d35": 2, "\u6602\u8cb4": 1}, "Everybody": {"\u6bcf\u4e2a": 11, "\u6bcf\u500b": 7, "\u5927\u5bb6": 7}, "French": {"\u6cd5\u8bed": 58, "\u6cd5\u8a9e": 22, "\u5b66\u6cd5\u8bed": 4, "\u8a9e": 7, "\u6211": 1}, "guy": {"\u597d\u4eba": 4, "\u90a3\u5bb6\u4f19": 2, "\u5bb6\u4f19": 1, "\u6c92\u770b": 1, "\u500b": 1}, "freedom": {"\u81ea\u7531": 3}, "report": {"\u5831\u544a": 6, "\u62a5\u544a": 5, "\u4ea4\u5831": 2}, "London": {"\u4f26\u6566": 16, "\u502b\u6566": 19, "": 2}, "capital": {"\u9996\u90fd": 1, "\u5b57\u6bcd": 3}, "England": {"\u82f1\u56fd": 4}, "Thames": {"\u6cf0\u6664\u58eb\u6cb3\u7554": 1, "\u5514": 1}, "curry": {"\u5496\u55b1": 2, "\u5496\u54e9": 2}, "married": {"\u5ac1\u7ed9": 4, "\u7ed3\u5a5a": 16, "\u7d50\u5a5a": 20, "\u5b69\u5b50": 1, "\u5df2\u5a5a": 2, ",": 1, "\u9084": 1}, "rich": {"\u6709\u94b1\u4eba": 1, "\u9322": 4, "\u6709\u94b1": 4, "\u8b8a\u6709": 1, "\u5bcc\u6709": 2, "\u81f4\u5bcc": 1}, "Shounan": {"\u6e58\u5357": 1}, "tables": {"\u9580\u908a": 1}, "wondered": {"\u662f\u5426\u662f": 1, "\u5947\u602a": 2}, "Customs": {"\u98ce\u4fd7\u4e60\u60ef": 1}, "food": {"\u98df\u7269": 30, "": 1, "\u83dc": 3, "\u7cae": 2, "\u65e5\u672c\u6599\u7406": 3}, "dancing": {"\u5e86\u795d": 1, "\u8df3\u821e": 4, "\u821e\u8e48": 2}, "dying": {"\u4e0d\u6015\u6b7b": 2, "\u6015\u6b7b": 2, "\u8981\u6b7b": 1, "\u5feb\u8981": 1, "\u8feb\u5207\u9700\u8981": 1}, "bought": {"\u8cb7": 41, "\u4e70": 23}, "puppy": {"\u5c0f\u72d7": 2}, "doing": {"\u505a": 43, "\u5728": 1, "\u73b0\u5728": 2, "\u641e": 2, "\u8868\u73fe": 1, "\u5e72\u5417": 1}, "at": {"\u5728": 15}, "influential": {"\u533b\u5b66\u754c": 1}, "loudly": {"\u5927\u8072": 3, "\u5927\u58f0": 2}, "view": {"\u89c2\u70b9": 1, "\u6e56": 1, "\u6211": 1, "\u89c6\u91ce": 1, "\u6a02\u89c0": 1}, "evacuate": {"\u758f\u6563": 1}, "hypocritical": {"\u865a\u4f2a": 1}, "threw": {"\u6254": 9, "\u5757": 1, "\u6254\u6389": 1}, "rock": {"\u4e00\u584a": 1, "\u5ca9\u77f3": 3, "\u6447\u6eda\u4e50": 2, "\u5927\u77f3\u5934": 1}, "pond": {"\u6c60\u5858": 7, "\u8fd9\u4e2a": 1}, "treacherous": {"\u9669\u6076": 1}, "carpet": {"\u6bef\u5b50": 2, "\u5730\u6bef": 3}, "pitch": {"\u6f06\u9ed1": 1}, "outside": {"\u5916\u9762": 9, "\u7136\u540e": 1, "\u5f85\u5728\u5bb6\u91cc": 1}, "sure": {"\u786e\u5b9a": 18, "\u78ba\u5b9a": 18, "\u80af\u5b9a": 6, "\u4e0d": 1, "": 1, "\u6e05\u695a": 1}, "design": {"\u8bbe\u8ba1": 1}, "Nobody": {"\u6709\u4eba": 3, "\u90a3\u6837": 1, "\u7121\u6240": 1, "\u8fd9\u4ef6": 1, "\u4eba": 3, "\u8c01": 1}, "listen": {"\u807d": 13, "\u542c": 7}, "arrived": {"\u5230": 24, "\u9054": 6, "\u4ed6\u4eec": 1, "\u5230\u8fbe": 3, "\u62b5\u9054": 2, "10": 1, "": 1, "\u8d95\u5230": 2}, "bell": {"\u9234": 1, "": 1, "\u94c3\u54cd": 1, "\u9234\u97ff": 1}, "rang": {"\u97ff": 3, "": 4, "\u7535\u8bdd\u54cd": 5}, "living": {"\u8d77\u5c45\u5ba4": 1, "\u4f4f": 10, "\u67d0\u5730": 1, "\u751f": 1, "\u5ba2\u5ef3\u88cf\u6709\u4ec0": 1, "\u8cbb": 1}, "Nice": {"\u8a8d\u8b58": 1, "\u771f\u597d": 1}, "fired": {"\u89e3\u96c7": 4, "\u958b\u9664": 4, "\u89e3\u50f1": 1}, "Cities": {"\u8b93": 1}, "exciting": {"\u8208\u596e": 2, "\u4e00\u7bc7": 1}, "amends": {"\u5f4c\u88dc": 1}, "win": {"\u8d0f": 8, "\u8d62": 5, "\u7b97\u4f60\u72e0": 1, "\u8d62\u5f97": 1}, "immediately": {"\u99ac": 2, "\u9a6c\u4e0a": 3, "\u804a\u8d77\u6765": 1}, "Turn": {"\u5411\u5de6\u8f6c": 2, "\u95dc\u5c0f": 1, "\u5411\u53f3\u8f6c": 1, "\u8f49": 2, "\u8c03\u5927": 1, "\u8f49\u52d5": 1, "\u95dc\u4e86": 1, "\u8f6c\u8fc7": 1, "\u958b\u71c8": 2, "\u6253\u958b": 1}, "Jealousy": {"\u5ac9\u5992": 1}, "Who": {"\u8c01": 65, "\u8ab0": 44, "\u5566": 1}, "invented": {"\u53d1\u660e": 4, "\u767c\u660e": 2}, "translation": {"\u8bd1\u672c": 1, "\u7ffb\u8b6f": 2, "\u522b\u7528\u673a": 1}, "owner": {"\u4e3b\u4eba": 3}, "already": {"\u5df2\u7ecf": 25, "\u5df2\u7d93": 25, "": 2, "\u4e26": 1, "\u6211": 1, "\u8fc7": 1, "\u6e6f\u59c6\u5df1": 1}, "talked": {"\u8bdd": 4, "\u8ac7": 5, "\u8c08": 3, "\u5929\u660e": 1, "\u8bf4\u8bdd": 1, "\u804a\u5230": 1}, "student": {"\u5b66\u751f": 11, "\u5b78\u751f": 16, "": 1, "\u65b0\u751f": 1, "\u6211": 1}, "often": {"\u7ecf\u5e38": 21, "\u5e38\u5e38": 23, "\u4e0a\u8ab2": 1, "\u4e00\u6b21": 1, "\u7d93\u5e38": 9, "\u5e38": 1, "": 2, "\u4e0d\u5e38": 2, "\u5e94\u8be5": 1}, "absent": {"\u7fd8\u8bfe": 1, "\u7f3a\u52e4": 1, "\u5979": 1, "\u7f3a\u5e2d": 4, "\u65f7\u8bfe": 1, "\u9003\u5b78": 1, "\u4e94\u5929": 1, "\u662f\u56e0\u4e3a": 1}, "Why": {"\u70ba": 67, "\u4e3a\u4ec0\u4e48": 70, "\u5462": 1}, "stay": {"\u7559\u4e0b": 6, "\u5f85": 28, "\u7559\u5728": 9, "\u4f60": 1, "\u71ac\u591c": 1, "\u66f4": 1, "\u5446": 2, "\u6211": 3, "\u5c31": 1, "": 1, "\u6709\u5f85": 1, "\u6211\u4eec": 1}, "while": {"\u4e00\u6703\u5152": 7, "\u8d81": 4, "\u601d\u8003": 1, "\u4e00\u4f1a\u513f": 2, "\u4e00\u4f1a": 1, "\u80fd\u5f85": 1, "\u4e00\u9663\u5b50": 1}, "kindness": {"\u89aa\u5207": 1, "\u597d\u610f": 3}, "Have": {"\u8fc7": 3, "\u904e": 3}, "medicine": {"\u836f": 7, "\u5403\u836f": 1, "\u85e5": 5, "\u836f\u4f1a": 2, "\u85e5\u6703": 1}, "death": {"\u8eab\u4ea1": 1, "\u6015\u6b7b": 1, "\u6b7b\u4ea1": 2, "": 1, "\u4e0d\u6015\u6b7b": 4, "\u6b7b": 1, "\u89e3\u8131": 1}, "agreed": {"\u540c\u610f": 3, "\u9019\u9805": 2, "\u4e00\u65e9": 1, "\u613f": 1}, "move": {"\u522b\u52a8": 1, "\u52d5": 2, "\u642c": 4, "\u642c\u51fa\u53bb": 1, "\u79fb": 1, "\u5de6\u79fb": 1, "\u52a8": 1, "\u8a72": 1, "\u79fb\u51fa": 1}, "was": {"\u4e86": 8, "\u5f88": 3, "\u7684": 3, "\u88ab": 25, "\u662f": 13}, "snow": {"\u4e0b\u96ea": 13, "\u96ea": 13, "\u7a4d\u96ea": 1, "\u660e\u5929": 1, "\u96ea\u5730": 1}, "long": {"\u9577": 19, "\u4e45": 4, "\u592a\u4e45": 1, "\u591a\u4e45": 35, "\u5f88\u4e45": 8, "\u6642\u9593": 1, "\u4e86": 1, "\u6f2b\u957f": 1, "\u4e0d\u80fd": 1, "\u4e45\u7559": 1, "\u4e00\u982d": 1}, "flying": {"\u5922\u60f3": 1, "\u98de": 3, "\u5750": 1, "\u98db\u5f80": 1}, "sky": {"\u5929\u7a7a": 13, "\u5929\u4e0a": 7}, "eyelid": {"\u773c\u76ae": 1}, "away": {"\u7acb\u523b": 4, "\u4ed6\u4eec": 1, "\u9003\u8d70": 1, "\u8fdc\u79bb": 2, "\u9003\u8dd1": 2, "\u8fdc": 2, "\u9060": 1, "\u7acb\u5373": 1, "\u96e2\u958b": 1, "\u6211": 1}, "last": {"\u53bb\u5e74": 7, "\u4e0a\u6b21": 3, "\u6700\u540e": 8, "": 1, "\u5f8c": 2, "\u4e00\u5834": 1, "\u4e0a\u9031": 3}, "February": {"\u4e8c\u6708": 1, "\u77ed\u671f": 1}, "lot": {"\u5f88\u591a": 83, "\u8bb8\u591a": 4, "\u4f1a": 1, "\u5f88": 1}, "water": {"\u6c34": 52}, "volleyball": {"\u6392\u7403": 5}, "mathematics": {"\u6578\u5b78": 6, "\u6570\u5b66": 5, "\u6578\u5b78\u611f": 1}, "white": {"\u767d\u8272": 9, "\u9ed1\u72d7": 1, "\u4e00\u6761": 1}, "building": {"\u5efa\u7bc9\u7269": 2, "\u5efa\u7b51": 3, "\u8fd9\u5e62": 1, "\u5927\u697c": 2, "\u90a3\u68df": 1, "\u5e62": 1, "\u697c\u91cc": 1}, "native": {"\u6bcd\u8a9e": 4, "\u6bcd\u8bed": 7, "\u672c\u5730\u4eba": 1, "\u6bcd\u4eb2": 1}, "speakers": {"\u516c\u7acb": 1}, "any": {"\u4efb\u4f55": 40, "\u4e0b\u53bb": 2, "\u96a8\u6642": 2, "\u6ca1\u6709": 10, "\u518d\u89c1": 1, "\u4e0d\u518d": 1, "\u5c31\u8ba9": 1, "\u88fd": 1}, "glad": {"\u9ad8\u8208": 9, "\u529b": 5, "\u9ad8\u5174": 10, "\u592a\u597d\u4e86": 2, "\u6703": 1}, "weekend": {"\u9031\u672b": 15, "\u5468\u672b": 9}, "stink": {"\u53d1\u81ed": 1}, "speak": {"\u8b1b": 18, "\u8bf4\u8bdd": 12, "\u8aaa": 31, "\u4f60": 2, "\u8bf4": 3, "\u8ddf": 3}, "high": {"\u9ad8\u4e2d\u751f": 7, "\u9ad8\u4e2d": 8, "\u8a55\u50f9": 1, "\u9ad8\u4e2d\u6bd5\u4e1a": 1, "\u65e9\u8be5": 2, "\u9ad8\u4e2d\u5973\u751f": 1}, "exhausted": {"\u56f0\u6b7b": 1, "\u7b4b\u75b2\u529b\u76e1": 1, "\u5730\u7b4b": 1, "\u6781\u4e86": 1}, "sell": {"\u8ce3": 6, "\u5356": 2, "\u5f97\u5356": 1}, "price": {"\u50f9\u683c": 5, "\u4ef7\u683c": 4, "\u4e0b\u8dcc": 2}, "brother": {"\u5f1f\u5f1f": 26, "\u5144\u5f1f": 21, "\u54e5\u54e5": 31, "": 1}, "famous": {"\u6709\u540d": 8, "\u8457\u540d": 7, "\u4f60": 1, "\u805e\u540d": 1, "\u6210\u540d": 2}, "soccer": {"\u8db3\u7403": 10, "\u8e22\u8db3\u7403": 6, "\u8db3\u7403\u6bd4\u8d5b": 1}, "scared": {"\u5bb3\u6015": 5, "\u4e0d\u6015": 1, "\u53d7\u5230": 1, "\u6015": 2, "\u5413": 1}, "could": {"\u80fd": 18, "\u7121\u6cd5": 11, "\u4e0d\u5230": 1, "\u4e0d\u80fd": 9, "\u6240\u4ee5": 1, "\u4f60": 1, "\u505a\u5230": 4, "\u904e": 1, "\u80fd\u591f": 2, "\u60f3\u4e0d\u5230": 1, "\u53ef\u4ee5": 1}, "all": {"\u6240\u6709": 51, "\u90fd": 53, "\u5b8c\u5168": 9, "\u6839\u672c": 8, "\u4e00\u9ede": 2, "": 3, "\u6240": 1, "\u4e00\u70b9": 5, "\u4e00\u5207": 4, "\u5168\u90fd": 4, "\u4f60\u5011": 1, "\u4e00\u6574\u5929": 1, "\u5c31": 1, "\u8fde": 1, "\u8ba9": 1}, "questions": {"\u554f\u984c": 25, "\u95ee\u9898": 11, "\u65e0\u6cd5\u56de\u7b54": 1}, "single": {"\u5355\u8eab": 3, "\u55ae\u8eab": 3, "\u751a\u9ebc": 1}, "breath": {"\u5438": 2, "\u4e0a\u5c71": 1, "\u5c4f\u4f4f": 1}, "hold": {"\u6c23\u7136": 1, "\u80fd\u6490": 1, "\u80fd\u63e1": 1, "\u5ea7": 1}, "youth": {"\u8f15": 1}, "buy": {"\u4e70": 25, "\u8cb7": 31, "\u5c31": 1, "\u4e70\u4e0b": 1, "\u6211": 2, "\u624d": 1, "": 2, "\u5fc5\u9808": 1, "\u54ea\u91cc": 1, "\u8cb7\u9593": 1}, "gift": {"\u793c\u7269": 5, "\u79ae\u7269": 6}, "future": {"\u672a\u4f86": 2, "\u4ee5\u540e": 3, "\u5c06\u6765": 6, "\u672a\u6765": 2}, "blushing": {"\u8138\u7ea2": 2}, "dolphin": {"\u6d77\u8c5a": 3}, "trainer": {"\u9a6f\u517b": 1}, "we": {"\u6211\u4eec": 88, "\u6211": 1, "\u6211\u5011": 54, "": 22, "\u4f60\u4e48": 1}, "rest": {"\u4f11\u606f": 14, "\u9759\u517b": 1, "\u505c\u4e0b": 1}, "possible": {"\u5c3d\u5feb": 4, "\u53ef\u80fd": 3, "\u660e\u5929": 1, "\u8ffd\u8d95": 1, "\u5c3d\u65e9": 1, "\u76e1": 1, "\u76e1\u65e9": 2, "\u8fd9\u4e8b": 1, "\u4e0d\u592a\u53ef\u80fd": 1}, "strike": {"\u7f62\u5de5": 3}, "economy": {"\u7ecf\u6d4e": 5}, "down": {"\u5e72\u4ec0\u4e48": 1, "\u653e\u4e0b": 3, "\u5931\u671b": 4, "\u4e0b\u4f86": 1, "\u4e0b\u6765": 4}, "there": {"\u90a3\u91cc": 29, "\u90a3\u88e1": 66, "\u6709": 17, "\u90a3\u513f": 13, "\u6309\u65f6": 1, "\u518d": 1, "\u5c31": 1}, "Prices": {"\u7269\u4ef7\u4e0a\u6da8": 1, "\u4ef7\u683c": 2, "\u50f9\u683c": 1, "\u7269\u50f9": 1}, "guitar": {"\u5409\u4ed6": 17}, "hid": {"\u8eb2": 3, "\u85cf": 2, "\u85cf\u5230": 3, "\u85cf\u5728": 1}, "table": {"\u684c\u5b50": 28, "\u684c\u4e0a": 13, "\u5b83": 1}, "break": {"\u5e72\u8106": 1, "\u6b47\u6b47": 1, "\u9976": 1, "\u5f04\u574f\u4e86": 1, "\u6253\u65ad": 1, "\u6253\u7834": 2, "\u8ba9": 1, "\u4f11\u606f": 2}, "recommend": {"\u63a8\u85a6": 2, "\u63a8\u8350": 2}, "hotel": {"\u65c5\u9928": 13, "\u9152\u5e97": 6, "\u65c5\u9986": 1}, "drinking": {"\u559d": 2, "\u6212\u9152": 5, "\u559d\u5564\u9152": 1, "\u559d\u6389": 1, "\u559d\u9152": 1}, "movie": {"\u7535\u5f71": 8, "\u96fb\u5f71": 17, "\u60f3": 1}, "pushed": {"\u63a8\u8eca": 1, "\u62e5": 1}, "stirred": {"\u8336\u5319": 1}, "coffee": {"\u5496\u5561": 48, "\u559d\u5496\u5561": 9, "": 2, "\u9084": 1, "\u4e0a": 1}, "lived": {"\u4f4f": 18, "\u77e5\u9053": 1, "\u6d3b": 2}, "center": {"\u5e02\u4e2d\u5fc3": 3, "\u4e2d\u5fc3": 1}, "person": {"\u4eba": 17, "\u597d\u4eba": 8, "\u90a3\u4eba": 1, "\u4eb2\u81ea": 2, "\u89aa\u81ea": 2}, "late": {"\u9072": 17, "\u665a": 18, "\u8fdf\u5230": 21, "\u9072\u5230": 10, "\u592a\u665a": 3, "": 2, "\u518d\u4e0a": 1, "\u6703\u665a": 1, "\u8fdf": 1, "\u603b\u6765\u665a": 1}, "second": {"\u5f88\u5feb": 1, "\u7b2c\u4e8c\u672c": 1, "\u7537\u5395\u6240": 1, "\u82f1\u8a9e": 1, "\u7b2c\u4e8c\u4e2a": 1, "\u7b2c\u4e8c": 1, "\u4e8c": 1, "\u4e00\u4e0b": 2, "\u7b2c\u4e8c\u6b21": 1}, "Countless": {"\u65e0\u6570": 1}, "able": {"\u5979": 1, "\u80fd": 11, "\u80fd\u4f86": 1, "\u9879": 1, "\u93ae": 1, "\u80fd\u529b": 4, "\u80fd\u6765": 1, "\u4e70\u8f66": 1}, "whatever": {"\u4e0d\u7ba1": 1, "\u4efb\u4f55": 7, "\u65e0\u8bba": 1, "\u4e0d\u8bba": 2, "\u6771\u897f": 1}, "planted": {"\u7a2e": 1, "\u4e09\u68f5": 1}, "roses": {"\u73ab\u7470": 7}, "garden": {"\u82b1\u5712": 17, "\u82b1\u56ed": 7, "\u82b1\u56ed\u91cc": 4}, "rude": {"\u65e0\u793c": 1, "\u6211": 1, "\u9b6f": 2, "\u7121": 2}, "never": {"\u6c38\u8fdc": 11, "\u4ece\u6765": 5, "\u4ece\u6ca1": 9, "\u5f9e\u4f86": 11, "\u5f9e": 8, "\u518d\u4e5f": 1, "\u6c38\u9060": 5, "": 4, "\u5f9e\u4e0d": 2, "\u5be6\u969b": 1, "\u4ece\u6765\u4e0d": 1, "\u96bb": 1, "\u904e": 1, "\u4e0d\u4f1a": 1}, "forget": {"\u5fd8\u8bb0": 8, "\u5fd8\u8a18": 3, "\u5fd8": 9, "\u522b\u5fd8\u4e86": 6, "": 1}, "Hawaii": {"\u590f\u5a01\u5937": 4}, "plans": {"\u8a08\u5283": 3, "\u8ba1\u5212": 3, "\u5b89\u6392": 1, "\u9055\u80cc\u5df1\u9858": 1, "\u8a08\u756b": 1, "\u6bcf\u4ef6\u4e8b": 1}, "failed": {"\u5931\u6557": 3, "\u56de\u4fe1": 1, "\u5931\u8d25": 3, "": 1, "\u8a18\u6027": 1}, "Open": {"\u5f20\u5f00\u5634\u5df4": 1, "\u5f00\u95e8": 1, "\u5f00\u706b": 1, "\u7741\u5f00\u773c\u775b": 2}, "Moderate": {"\u9069\u5ea6": 1}, "necessary": {"\u5fc5\u8981": 12, "\u4e0d\u5fc5\u8981": 1}, "Underage": {"\u672a\u6ee1": 1}, "pound": {"\u4e00\u78c5": 1, "\u78c5": 1}, "hope": {"\u5e0c\u671b": 49, "\u6240\u4ee5": 1, "\"": 1}, "appreciates": {"\u6b23\u8d4f": 1}, "bring": {"\u5e26": 5, "\u5e36": 7, "\u5e26\u4e0a": 1, "\u5e26\u6765": 1, "\u5e36\u8457": 1, "\u5e26\u9152": 1, "\u5e26\u7ed9": 1}, "some": {"\u4e00\u70b9": 2, "\u4e00\u4e9b": 60, "\u9ede": 13, "\u4e9b": 17, "\u70b9": 2, "\u501f": 2}, "Can": {"\u80fd": 90, "\u53ef\u4ee5": 22, "\u55ce": 5, "": 1, "\u5417": 2}, "bath": {"\u6d17\u6fa1": 8, "\u6fa1": 5, "\u6d74\u5ba4": 2}, "interesting": {"\u6709\u8da3": 31, "\u6709\u610f\u601d": 7, "\u4f46\u662f": 1, "\u4f46": 1, "\u4e0d\u597d\u73a9": 1}, "piece": {"\u6761": 1, "\u4e00\u5757": 1, "\u5206": 1, "\u60c5\u5831": 1, "\u5c0f\u83dc\u4e00\u789f": 1}, "of": {"\u7684": 60, "\u8054\u7cfb": 1, "\u6211": 1, "\u5b8c\u5168": 1, "\u4ed6": 1}, "information": {"\u4fe1\u606f": 6, "\u8a0a": 1, "\u670d\u52d9\u53f0": 1, "\u591a\u5927": 1, "\u8a0a\u606f": 2}, "meat": {"\u8089": 10, "\u7d05\u8089": 1}, "dog": {"\u72d7": 81, "\u4f60": 1, "\u90a3": 2, "\u6211": 1, "\u5b83": 1}, "eating": {"\u5403": 25, "\u5403\u996d": 3, "": 1}, "breakfast": {"\u65e9": 11, "\u65e9\u9910": 24, "": 1, "\u65e9\u996d": 6, "\u5403": 1, "\u6240\u4ee5": 1}, "balcony": {"\u967d": 3}, "again": {"\u518d": 52, "\u53c8": 10, "": 3, "\u518d\u4f86": 1, "\u518d\u4e5f\u4e0d\u4f1a": 4, "\u518d\u6b21": 4, "\u542c\u8bf4": 1, "\u4f60": 2, "\u4e0b\u6b21": 1}, "Slight": {"\u5931\u4e4b\u6beb\u5398": 1}, "alone": {"\u72ec\u81ea": 6, "\u7368\u81ea\u4e00\u4eba": 1, "\u4e00\u4e2a": 8, "\u51fa\u95e8\u513f": 1, "\u4eba": 5, "\u5355\u72ec": 2, "\u5b64\u5355": 3, "\u7368\u81ea": 3, "": 1, "\u6211": 1, "\u72ec\u81ea\u4e00\u4eba": 1}, "waiting": {"\u7b49": 24, "\u7b49\u5019": 3, "\u7b49\u8457": 1, "": 1}, "natural": {"\u81ea\u7136": 4, "\u5929\u7136": 1, "\u5f97": 1}, "resources": {"\u8cc7\u6e90": 2}, "fun": {"\u73a9": 3, "\u597d\u73a9": 4, "\u6709\u8da3": 10, "\u5979": 1, "\u6349\u5f04": 1, "\u6709\u610f\u601d": 2, "\u6709": 1, "\u5f00\u5fc3": 2, "\u53d6\u7b11": 2, "\u8fd9\u5e2e": 1, "\u9b27": 1, "\u4e50\u5b50": 1}, "finding": {"\u4e0d\u5e78": 1, "\u627e\u5230": 3, "\u6beb\u4e0d": 1}, "favorite": {"\u6700": 26, "": 1}, "cooked": {"\u5bb6\u5e38\u83dc": 1, "\u4e00\u987f": 1, "\u4e00\u9910": 2, "\u716e": 1}, "thinking": {"\u8003\u616e": 3, "\u4e0d\u7981": 1, "\u60f3\u5230": 2, "\u5f53\u65f6": 1, "\u60f3\u8d77": 1, "\u4e0d\u5047\u601d\u7d22": 1}, "Europe": {"\u6b50\u6d32": 5, "\u6b27\u6d32": 10, "\u800c": 1}, "mailing": {"\u8a18": 1, "\u904e\u4fe1": 1}, "urgent": {"\u7d27\u6025": 1, "\u7dca\u6025": 2}, "people": {"\u4eba": 94, "\u8d85\u8fc7": 1, "": 2, "\u4eba\u4eec": 3, "\u8c08\u8bdd": 1, "\u6ee1\u8db3": 1}, "Although": {"\u867d\u7136": 3, "\u96d6\u7136": 1}, "alike": {"\u4e00\u6a21": 1}, "Kabul": {"\u5580\u5e03\u5c14": 1}, "infirmary": {"\u533b\u52a1\u5ba4": 1}, "It": {"\u5b83": 57, "\u8fd9": 25, "": 4, "\u9418": 1, "\u53bb": 1, "\u9019": 1, "\u662f": 2, "\u5f88": 1}, "belongs": {"\u5f52": 1, "\u651d\u5f71": 1, "\u5c6c": 3}, "smoking": {"\u6212\u70df": 12, "\u6212\u83f8": 3, "\u5438\u70df": 3, "\u6211": 1, "\u6212\u7159": 4, "\u7159": 3}, "address": {"\u5730\u5740": 20, "\u4f4f\u5740": 3, "\u4f60": 2}, "pattern": {"\u5716\u6848": 1}, "accompanied": {"\u4f34\u594f": 2, "\u966a": 1}, "piano": {"\u92fc\u7434": 29, "\u5f39\u94a2\u7434": 5, "\u94a2\u7434": 2, "\u5979": 1, "\u4ee5\u81f3\u4e8e": 1}, "Today": {"\u59ca\u59ca": 1, "\u4eca\u5929": 2}, "register": {"\u767b\u8a18": 1, "\u518a": 3}, "somewhere": {"\u67d0\u500b": 4, "\u67d0\u5904": 1, "\u5730\u65b9": 4, "\u5468\u56f4": 1, "\u522b\u5904": 2, "\u51fa\u53d1\u70b9": 1}, "dream": {"\u4e2a": 1, "\u5922": 6, "\u68a6": 4, "\u68a6\u60f3": 2}, "straight": {"\u76f4": 1, "\u76f4\u63a5": 1, "\u6ca1\u6234": 1, "\u76f4\u884c": 1}, "strange": {"\u5947\u602a": 20, "\u602a\u4eba": 1}, "Scotland": {"\u8607\u683c\u862d": 2}, "woollen": {"\u7d21\u7e54\u54c1": 1}, "broke": {"\u95d6\u5165": 1, "\u62cb\u9328": 1, "\u7834\u7522": 1, "\u6070\u597d": 1, "\u7838\u574f": 1, "\u6253\u7834": 3}, "tune": {"\u8fd9\u6b4c": 1, "\u66f2\u5b50": 2}, "thirsty": {"\u5f88\u6e34": 2, "\u4e0d\u6e34": 1, "\u6e34": 3, "\u53e3\u6e34": 1}, "understood": {"\u6c92": 1, "\u4e86\u89e3": 2, "\u5834\u5408\u8868": 1, "\u660e\u767d": 1}, "Paris": {"\u5df4\u9ece": 15, "\u5c31\u662f": 1}, "boy": {"\u7537\u5b69": 46, "\u5c0f\u7537\u5b69": 7}, "seventeen": {"\u5341\u4e03": 2, "17": 1}, "tall": {"\u9ad8": 29, "\u9ad8\u5927": 1}, "hands": {"\u624b": 18, "\u6d17\u624b": 2, "\u52a8\u624b": 1}, "One": {"\u4f46": 1, "\u4e00\u4e2a": 1, "\u4e0d\u5920": 1, "\u5176\u4e2d": 3}, "size": {"\u7801": 1, "\u5c3a\u5bf8": 3, "\u5e7e\u865f": 1, "\u5927\u5c0f": 3}, "seems": {"\u4f3c\u4e4e": 14, "\u770b\u7740": 1, "\u770b\u8d77\u6765": 4, "\u770b\u4f86": 8, "\u770b\u6765": 3, "\u8c8c\u4f3c": 1, "\u597d\u50cf": 4, "\u5728\u6211\u770b\u6765": 1}, "college": {"\u5927\u5b66": 9, "\u5927\u5b78": 8, "\u5927\u5b66\u751f": 3, "\u662f": 1, "\u5f97": 1, "\u80fd\u591f": 1}, "pounds": {"\u5169\u78c5": 1, "\u7529\u6389": 1, "\u4e09\u78c5": 1}, "butter": {"\u5976\u6cb9": 3, "\u9ec4\u6cb9": 3, "\u9762\u5305": 1}, "bomb": {"\u70b8\u6b7b": 2, "\u4e0a": 1}, "bad": {"\u574f": 3, "\u4e0d\u597d": 5, "\u7684": 1, "\u7cdf\u7cd5": 5, "\u91cd\u611f\u5192": 1, "\u574f\u4e8b": 1, "\u5b9e\u5728": 1, "\u53ef\u60dc": 1, "\u5f88\u7cdf": 1, "\u58de": 3, "\u9057\u61be": 1, "\u6709\u5bb3": 2, "\u96e3": 1, "\u4e0d\u884c": 1}, "example": {"\u699c\u6837": 2, "\u6811\u7acb": 1, "\u4f8b\u5b50": 2}, "supposed": {"\u8a72": 3, "\u77e5\u6cd5": 1, "\u5e94\u5f53": 1, "\u8be5": 2, "\u76f8\u5e94": 1}, "frightened": {"\u5687\u5230": 2, "\u5bb3\u6015": 1}, "workers": {"\u5de5\u4eba": 2, "\u4e0a\u73ed\u65cf": 1}, "died": {"\u6b7b": 16, "\u53bb\u4e16": 8, "": 2, "\u7236\u4eb2": 1, "\u55aa\u751f": 1}, "invisible": {"\u5c31": 2}, "crush": {"\u6697\u604b\u7740": 1, "\u7231": 2}, "morning": {"\u65e9\u4e0a": 69, "\u6628\u5929\u65e9\u4e0a": 1, "\u6628\u5929\u4e0a\u5348": 3, "\u4eca\u5929\u4e0a\u5348": 1, "\u4eca\u65e9": 1}, "let": {"\u8b93": 19, "\u8ba9": 27, "\u6c64\u59c6": 1, "": 6, "\u6240\u4ee5": 1, "\u4e0d\u8ba9": 1, "\u5141\u8a31": 1}, "be": {"\u5c31": 1, "\u4f1a": 9, "\u534a": 1, "\u5230": 1, "\u53ef\u80fd": 7, "\u6703": 5, "\u4e00\u5b9a": 1, "\u80fd": 1, "": 1, "\u6210\u4e3a": 1, "\u505a": 1}, "right": {"\u99ac": 4, "\u6b63\u78ba": 6, "\u9a6c\u4e0a": 4, "\u5c0d\u4e86": 2, "\u6b63\u786e": 1, "\u53f3": 1, "\u5bf9": 7, "\u7121\u6b0a": 1, "\u5c0d": 10, "\u4e0a\u53bb": 1, "\u53f3\u908a": 2, "\u6709\u6743": 1}, "deadline": {"\u671f\u9650": 1}, "paper": {"\u5831\u7d19": 3, "\u7eb8": 2, "\u4f60": 2, "\u62a5\u7eb8": 1, "\u7eb8\u98de\u673a": 1, "\u770b\u4e0b": 1, "\u7d19": 5}, "Traffic": {"\u4ea4\u901a": 3, "\u7d05\u7da0\u71c8": 1}, "downtown": {"\u5e02\u4e2d\u5fc3": 4}, "backed": {"\u5835\u585e": 1, "\u9032\u8eca": 1}, "These": {"\u9019\u4e9b": 21, "\u8fd9\u4e9b": 12}, "dresses": {"\u6d0b\u88dd": 1, "\u7a7f\u8457": 2, "\u82b1\u8d39": 1}, "large": {"\u5927": 5, "\u592a\u5927": 1, "\u5927\u623f\u5b50": 2, "\u5927\u5bb6\u5ead": 3, "\u5920\u7528": 1, "\u5927\u9b5a": 1}, "beautiful": {"\u6f02\u4eae": 24, "\u7f8e\u4e3d": 6, "\u7f8e\u9e97": 5, "\u7f8e": 5, "\u592a\u6f02\u4eae": 1, "": 1, "\u5f88\u7f8e": 2, "\u5f88\u6f02\u4eae": 2, "\u9753\u8f66": 1}, "women": {"\u5973\u4eba": 6, "\u5973\u751f": 1, "\u7537\u4eba": 1, "\u4e24\u4f4d": 1}, "heated": {"\u5e73\u606f": 1, "\u6fc0\u70c8": 1}, "elected": {"\u9078\u70ba": 4, "\u5f53\u9009": 5}, "chairman": {"\u4e3b\u5e2d": 4}, "committee": {"\u59d4\u54e1\u6703": 3, "\u59d4\u5458\u4f1a": 1}, "die": {"\u6b7b": 10, "\u4e0d\u6015\u6b7b": 1, "\u8be5\u6b7b": 1, "\u8bde\u751f": 1}, "pizza": {"\u6279\u85a9": 1, "\u85a9": 5, "\u6bd4\u8428": 2, "\u6bd4\u85a9": 1, "\u6279": 1}, "wearing": {"\u6234": 7, "\u7a7f\u8457": 4, "\u7a7f\u7740": 1}, "gloves": {"\u624b\u5957": 4}, "decision": {"\u6c7a\u5b9a": 5, "\u51b3\u5b9a": 4}, "Beer": {"\u5564\u9152\u74f6": 1}, "frozen": {"\u51bb\u6b7b": 1, "\u51bb\u51b0": 1}, "version": {"\u8bf4\u6cd5": 1, "\u6700\u65b0\u7248": 1}, "supplied": {"\u5145\u8db3": 1}, "soldiers": {"\u58eb\u5175": 5, "\u73a9\u5177\u5175": 1, "\u5c31": 1}, "Burn": {"\u70e7\u6389": 1}, "please": {"\u8acb": 49, "\u8bf7": 22, "\u8bf7\u95ee": 4, "\u4e00\u4e0b": 1, "\u80fd": 1, "\u90a3": 1, "": 3}, "later": {"\u7a0d": 2, "\u5f8c": 1, "\u4e00\u4f1a": 1, "\u5152": 1, "": 1, "\u665a": 2, "\u665a\u4e00": 1}, "Buy": {"\u4e00\u74f6": 1, "\u4e70\u70b9": 2}, "beer": {"\u5564\u9152": 19}, "ready": {"\u51c6\u5907": 19, "\u6e96\u5099": 10, "\u7518\u5fc3": 1}, "yet": {"\u8fd8": 22, "": 3, "\u9084": 11, "\u6c92\u5230": 1}, "check": {"\u7d50\u5e33": 1, "\u6aa2\u67e5": 2, "\u68c0\u67e5\u4e00\u4e0b": 1, "\u652f\u7968": 2, "\u68c0\u67e5": 1, "\u7b7e\u5230": 1, "\u5e33\u55ae": 1}, "case": {"\u8fd9\u6837\u7684\u8bdd": 1, "\u6848\u4ef6": 2, "\u842c\u4e00": 2, "\u4ee5\u9632": 1, "\u4e26\u975e": 1}, "change": {"": 1, "\u96f6\u94b1": 2, "\u96f6": 2, "\u6539\u53d8": 4, "\u6539\u8b8a": 9, "\u6362": 1, "\u66f4\u6539": 1, "\u63db": 1, "\u6211": 3, "\u6211\u4eec": 1}, "German": {"\u5fb7\u56fd\u4eba": 1, "\u5fb7\u8a9e": 3, "\u5fb7\u8bed": 4, "\u4e5f": 1}, "humor": {"\u5e7d\u9ed8\u611f": 3}, "addition": {"\u9084": 1}, "surrounded": {"\u6805\u680f": 1}, "boots": {"\u957f\u9774": 1, "\u9774\u5b50": 3}, "phone": {"\u96fb\u8a71": 16, "\u6253\u7535\u8bdd": 4, "\u7535\u8bdd": 1, "\u624b\u6a5f": 1, "": 1, "\u624b\u673a": 1, "\u7535\u8bdd\u7c3f": 1}, "took": {"\u5e36": 5, "\u8ba4\u4f5c": 1, "\u4f46": 1, "\u62ff": 2, "\u63a5\u624b": 1, "\u9001": 1, "\u82b1": 1}, "park": {"\u516c\u5712": 20, "\u516c\u56ed": 19, "\u505c": 1, "\u6ca1\u6cd5": 1, "\u505c\u8f66": 1, "\u505c\u8eca": 1}, "solve": {"\u89e3\u6c7a": 6, "\u89e3\u51b3": 5, "\u89e3\u51b3\u95ee\u9898": 1}, "Wait": {"\u7b49": 2, "\u7b49\u7b49": 2, "\u4e3a\u6b62": 1, "\u7247\u523b": 1, "\u7a0d": 1, "\u7b49\u8457": 1}, "wrote": {"\u5beb": 9, "\u5beb\u4e0b": 3, "\u5199": 16, "\u5beb\u4fe1": 1, "\u662f": 1, "\u5199\u4fe1": 1}, "Hamlet": {"\u54c8\u59c6\u96f7\u7279": 2}, "caught": {"\u6293\u4f4f": 6, "\u8d95\u4e0a": 1, "\u6293\u5230": 5, "\u6293": 3}, "love": {"\u7231": 20, "\u611b": 24, "\u6703": 1, "\u6211\u7231\u4f60": 2, "": 1, "\u7231\u60c5": 2, "\u559c\u6b22": 1}, "poet": {"\u8bd7\u4eba": 1, "\u8a69\u4eba": 5, "\u5049\u5927": 1}, "quiet": {"\u5b89\u975c": 13, "\u5b89\u9759": 4, "\u4fdd\u6301": 1, "\u5e94\u8be5": 1, "\u4fdd\u6301\u6c89\u9ed8": 1}, "blame": {"\u602a": 4, "\u8d23\u5907": 2}, "fox": {"\u72d0\u72f8": 7}, "twice": {"\u4e24\u6b21": 4, "\u5169\u6b21": 6, "\u5169\u500d": 1, "\u5169\u904d": 1}, "snare": {"\u6389\u5165": 1, "\u72e1\u5154\u4e09\u7a9f": 1}, "popular": {"\u6d41\u884c": 1, "\u6b61\u8fce": 2, "\u53d7\u6b61": 6}, "dislike": {"\u7368\u8655": 1}, "flash": {"\u95ea\u5149\u706f": 1}, "album": {"\u76f8\u7c3f": 2, "\u96c6\u90f5\u518a": 2, "\u5c08\u8f2f": 1}, "examined": {"\u6aa2\u67e5": 2}, "throat": {"\u5589\u56a8": 5}, "apple": {"\u860b\u679c": 16, "\u82f9\u679c": 12}, "small": {"\u592a\u5c0f": 3, "\u5c0f": 9, "": 2, "\u5973\u5b69": 1, "\u5f88\u5c0f": 2, "\u77ee\u5c0f": 1, "\u53ea\u80fd": 1, "\u7684": 1}, "first": {"\u7b2c\u4e00\u6b21": 16, "\u6c64\u59c6": 1, "\u7b2c\u4e00": 10, "\u5148": 10, "": 1, "\u7b2c\u4e00\u73ed": 3, "\u80fd": 1, "\u5b8c\u6210": 1, "\u4e00": 1, "\u8d77\u521d": 1}, "days": {"\u4e09\u5929": 13, "\u51e0\u5929": 5, "\u5169\u5929": 2, "\u5e7e\u5929": 1}, "wrong": {"\u932f\u8aa4": 2, "\u9519": 10, "\u932f": 16, "\u6545\u969c": 1, "\u600e\u4e48\u56de\u4e8b": 1, "\u9519\u8bef": 1, "\u932f\u8eca": 1, "\u6c92\u6709": 1, "\u6211": 1, "\u5343\u4e07": 1, "\u4e0d\u5bf9": 1, "": 1, "\u6ca1": 1}, "lie": {"\u8b0a": 5, "\u8bf4\u8c0e": 2, "": 1, "\u6492\u8c0e": 2}, "reached": {"\u8fbe\u5230": 1}, "13": {"\u5341\u4e09\u5e74": 1, "\u5341\u4e09": 1}, "1970": {"1970": 3}, "an": {"\u4e00\u4f4d": 2, "\u4e00\u500b": 20}, "thought": {"\u4ee5\u4e3a": 18, "\u8a8d\u70ba": 7, "\u6b63\u5982": 1, "\u60f3\u5230": 1, "\u8a18\u5f97": 1, "\u6ca1\u60f3\u5230": 1, "\u89c9\u5f97": 1, "": 1}, "either": {"\u4e5f": 3, "\u65e0\u6cd5\u89e3\u91ca": 1, "\u4e00\u4f4d": 1, "\u6211": 2, "": 1, "\u5b83\u4eec": 1, "\u90a3": 1}, "react": {"\u4f5c\u51fa": 1}, "understand": {"\u660e\u767d": 24, "\u7406\u89e3": 8, "\u61c2": 18, "\u4e86\u89e3": 6, "\u80fd": 1, "\u5c31": 2, "\u542c\u61c2": 1, "\u61c2\u5417": 1, "\u4e0d\u61c2": 1}, "door": {"\u95e8": 10, "\u9580": 26, "\u95dc\u9580": 9, "\u95e8\u53e3": 1, "": 2, "\u628a\u95e8": 1}, "slowly": {"\u6162\u6162": 4, "\u6162": 3, "\u6162\u70b9": 3, "\u958b\u6162": 1}, "joke": {"\u7b11\u8bdd": 2, "\u73a9\u7b11": 1, "\u7b11": 1}, "thirty": {"\u4e09\u5341": 6, "\u4e09\u5341\u5c81": 2, "30": 1, "11": 1, "\u534a": 2}, "yards": {"\u5835": 1}, "fishing": {"\u9493\u9c7c": 3, "\u91e3": 5, "\u4f1a": 1, "\u91e3\u9b5a": 3}, "concert": {"\u97f3\u6a02\u6703": 1, "\u97f3\u4e50\u4f1a": 8, "\u6f14\u5531\u4f1a": 1, "\u6f14\u5531": 1}, "above": {"\u843d\u4e0b": 1, "\u53c2\u89c1": 1, "\u53ca": 1}, "intelligent": {"\u806a\u660e": 3, "\u8070\u660e": 1, "\u8070": 1}, "won": {"\u8d62": 5, "\u8d0f": 8, "\u8d62\u5f97": 1}, "Suddenly": {"\u7a81\u7136": 5, "": 1}, "Throw": {"\u6254\u6389": 1, "\u4e1f": 1}, "Chiba": {"\u5343\u8449": 1}, "identity": {"\u3943": 1}, "eye": {"\u8996": 1, "\u773c": 1, "\u773c\u5149": 1, "\u4f1a\u513f": 1}, "advised": {"\u5efa\u8bae": 3, "\u5efa\u8b70": 2, "\u5831\u8b66": 1, "\u7167\u7740": 1}, "practical": {"\u53ef\u884c": 1, "\u5b9e\u7528": 1}, "Cars": {"\u8f66\u5b50": 1}, "innocence": {"\u65e0\u8f9c": 2}, "promised": {"\u7b54\u5e94": 1, "\u7b54\u61c9": 4, "\u8fc7\u4f1a": 1, "\u627f\u8bfa": 1}, "needs": {"\u9700\u8981": 7, "\u937e": 1, "\u6e05\u6d17": 2, "\u8fd9\u8f86": 1}, "careful": {"\u5c0f\u5fc3": 15, "\u4ed4\u7d30": 1, "": 1}, "rare": {"\u5f88\u5c11": 1, "\u8981\u751f": 1, "\u7a00\u5c11": 1}, "replace": {"\u6253\u5370\u673a": 1}, "empty": {"\u7a7a": 5}, "hour": {"\u5c0f\u65f6": 13, "\u6642": 11, "\u6211\u4eec": 1, "\u6211": 1, "\u82b1": 1, "\u4e00\u5c0f": 1}, "noisy": {"\u5435": 2, "\u5608\u96dc": 1}, "changed": {"\u6539\u8b8a": 2, "\u6539\u53d8": 6, "\u6ca1\u53d8": 2, "\u63db": 3, "\u5c31": 1}, "sing": {"\u5531": 6, "\u5531\u6b4c": 11}, "song": {"\u4e00\u9996\u6b4c": 1, "\u90a3\u9996\u6b4c": 2, "\u8fd9\u6b4c": 1, "\u9996\u6b4c": 8, "\u6b4c": 2}, "everything": {"\u4e00\u5207": 18, "\u6240\u6709": 7, "\u5168\u90e8": 2, "\u5931\u53bb": 1, "\u90fd": 4, "\u89c1\u8bc1": 1, "\u5168\u90fd": 1, "\u4e07\u80fd": 1}, "bread": {"\u9762\u5305": 8, "\u9eb5": 8, "\u53ea": 1, "\u5403": 1}, "offer": {"\u63d0\u4f9b": 1, "\u5831\u50f9": 1, "\u62a5\u4ef7": 4, "\u63d0\u8b70": 4}, "eaten": {"\u597d\u591a\u5929": 4, "\u904e\u5348": 3, "\u5403": 7, "\u5403\u98ef": 1, "\u90fd": 1, "": 1}, "hear": {"\u807d\u5230": 7, "\u542c\u5f97\u89c1": 3, "\u807d": 10, "\u807d\u898b": 3, "\u542c": 7, "\u542c\u89c1": 2, "\u542c\u5230": 7, "\u542c\u4e0d\u89c1": 2, "\u542c\u8bf4": 3, "\u4f46": 2, "\u4e5f": 1, "\u6211": 1, "\u542c\u542c": 1, "": 1}, "anyone": {"\u4efb\u4f55\u4eba": 20, "\u6c92": 1, "\u6709\u4eba": 11, "\u8c01": 2, "\u8ab0": 1}, "talking": {"\u8a71": 5, "\u8c08\u8bba": 2, "\u8bf4\u8bdd": 6, "\u8c08": 3, "\u8ba8\u8bba": 2, "\u4ec5\u4ec5": 1, "\u4e0d\u592a\u60f3": 1, "\u8ac7\u8ad6": 1, "\u4ea4\u8c08": 1, "\u6211\u5011": 1}, "count": {"\u4f9d\u9760": 1, "\u4fe1\u8cf4": 1, "\u6578": 1, "\u80fd\u6570": 2, "\u6307\u671b": 1, "\u76f8\u4fe1": 1}, "more": {"\u518d": 32, "\u591a": 36, "\u66f4": 41, "": 2, "\u7684": 1, "\u9084": 1, "\u66f4\u591a": 3, "\u6211\u4eec": 1}, "sorry": {"\u62b1\u6b49": 22, "\u5bf9\u4e0d\u8d77": 4, "\u907a\u61be": 3, "\u6211": 1, "\u9057\u61be": 1, "\u4e0d\u8d77": 4, "\u96be\u8fc7": 1, "": 1}, "hurt": {"\u4f24\u5bb3": 2, "\u75db": 2, "\u53d7\u4f24": 2, "\u50b7": 3, "\u75bc": 1, "\u50b7\u5bb3": 3, "\u6253\u51fb": 1, "\u53d7\u50b7": 1, "": 1, "\u4e5f": 1}, "feelings": {"\u611f\u60c5": 4, "\u611f\u53d7": 2, "\u611f\u89c9": 1}, "taxi": {"": 1, "\u51fa\u79df": 3, "\u642d\u8a08": 4, "\u51fa\u79df\u8f66": 6, "\u8a08\u7a0b": 5}, "city": {"\u57ce\u5e02": 25, "\u8fd9": 1, "\u6211\u5011": 1, "\u5e02\u5340": 2, "": 1, "\u5bf9": 1}, "Santa": {"\u5723\u8bde\u8001\u4eba": 1, "": 1}, "girlfriend": {"\u60f3\u8981": 1, "\u5973\u670b\u53cb": 11, "\u5973\u53cb": 2}, "smart": {"\u806a\u660e": 8, "\u806a\u660e\u4eba": 1}, "decent": {"\u8bda\u5b9e": 1}, "Mass": {"\u5546\u54c1": 1}, "perfect": {"\u7edd\u5999": 2, "\u5b8c\u7f8e": 6}, "police": {"": 4, "\u8b66\u5bdf": 23, "\u62a5\u8b66": 5, "\u8b66\u65b9": 6, "\u8b66\u5bdf\u5c40": 3}, "contains": {"\u676f\u5b50": 1}, "pen": {"\u7b46": 11, "\u7b14": 3, "\u94a2\u7b14": 8, "\u6211": 2, "\u92fc\u7b46": 3, "\u94c5\u7b14": 1}, "waited": {"\u7b49": 7, "\u7b49\u5f85": 2, "\u592a\u4e45": 1}, "friend": {"\u670b\u53cb": 51, "\u8001\u670b\u53cb": 2}, "badly": {"\u8fde\u8863\u88d9": 1, "\u975e\u5e38": 1}, "links": {"\u9023\u7d50": 1}, "clean": {"\u6253\u626b": 6, "\u6e05\u6383": 1, "\u5e72\u51c0": 5, "\u6de8": 1, "\u4f60": 1, "\u6383": 1}, "permits": {"\u6703": 1}, "museum": {"\u53bb": 1, "\u535a\u7269": 4}, "author": {"\u4f5c\u8005": 4}, "drank": {"\u559d": 9, "\u4e00\u6574\u74f6": 1}, "cup": {"\u4e00\u676f": 11, "\u676f\u5b50": 7, "\u8fb9": 1, "\u676f": 3, "\u559d\u4e00\u676f": 1}, "critical": {"\u6279\u8bc4": 1}, "Pilots": {"\u7121\u7dda\u96fb": 1}, "airport": {"\u6a5f\u5834": 5, "\u6211": 1, "\u673a\u573a": 8, ",": 1}, "cheaper": {"\u4fbf\u5b9c": 3, "\u9152\u4f1a": 1, "\u5169\u4ef6": 1}, "well": {"\u5f97": 35, "\u4e0a": 1, "\u597d": 12, "\u4e86\u89e3": 3, "\u4ed6": 1, "\u4e0d\u592a\u597d": 2, "\u4f1a": 1, "\u8fd8\u597d": 1, "\u4e0d\u9002": 1}, "Will": {"\u4f1a": 4, "\u613f\u610f": 3, "\u6e6f\u59c6\u771f": 1, "\u55ce": 1, "\u5417": 1, "\u53ef\u5426": 1}, "Sensing": {"\u55c5\u5230": 1, "\u9003\u8dd1": 1}, "even": {"\u751a\u81f3": 16, "\u8fde": 1, "\u751a\u6c92": 1, "": 3, "\u9023": 2, "\u6700\u540e": 1, "\u5373\u4f7f": 2}, "owes": {"\u6b78": 1, "\u60f3\u53bb": 1, "\u5f52\u7ed3": 1, "\u4e2a\u60c5": 1}, "luck": {"\u904b": 4, "\u597d\u8fd0": 3, "\u8fd0\u6c14": 1}, "foot": {"\u9a91\u8f66": 1, "\u5c71\u811a\u4e0b": 1, "\u53bb\u4e0a": 2, "\u6454\u4e0b\u6765": 1, "\u6b65\u884c": 1, "\u4ed6": 1, "\u8d70\u8def": 1, "\u5c71\u811a": 1}, "Thank": {"\u8c22\u8c22": 7, "\u611f\u8b1d": 1, "\u8b1d\u8b1d": 8, "": 1, "\u611f\u8c22": 2, "\u975e\u5e38\u611f\u8c22": 1, "\u8c22\u8c22\u60a8": 2}, "patience": {"\u8010\u5fc3": 3}, "kinds": {"\u5404\u79cd\u5404\u6837": 1, "\u5404\u7a2e": 1, "\u8a31\u591a\u7a2e": 1}, "open": {"\u6253\u958b": 11, "\u5f00": 2, "\u6253\u5f00": 4, "\u6211": 2, "\u958b\u8457": 5, "\u958b\u9580": 3, "\u5f00\u7a97": 2, "\u628a": 1, "\u8425\u4e1a": 1, "\u5f00\u5b66": 1}, "bottle": {"\u74f6\u5b50": 5, "\u4e00\u74f6": 5, "\u74f6\u7d05": 2}, "2,700": {"2": 1}, "world": {"\u82f1\u8a9e": 1, "\u4e16\u754c": 26, "\u842c\u7269": 1, "\u4e16\u754c\u5404\u5730": 1, "": 1, "\u5168\u4e16\u754c": 1}, "designed": {"\u8a2d\u8a08": 1, "\u5c08\u9580": 1}, "Asia": {"\u4e9e\u6d32": 2, "\u4e9a\u6d32": 4}, "Africa": {"\u975e\u6d32": 8}, "dining": {"\u600e\u4e48\u6837": 1, "\u9910\u5385": 1}, "cold": {"\u611f\u5192": 11, "\u660f\u8ff7\u4e0d\u9192": 2, "\u51b7": 32, "\u5ea7": 1, "": 1, "\u5bd2\u51b7": 4, "\u7740\u51c9": 3, "\u6cbb\u611f\u5192": 1, "\u8fd8\u662f": 1, "\u56e0\u4e3a": 1}, "forward": {"\u671f\u5f85": 18, "\u5f80\u524d\u8d70": 1}, "marry": {"\u5a36": 3, "\u7ed3\u5a5a": 5, "\u5ac1": 1, "\u5ac1\u7ed9": 1, "\u7d50\u5a5a": 1}, "May": {"\u80fd": 7, "\u53ef\u4ee5": 28, "": 1}, "oxygen": {"\u6c27\u6c14": 1}, "show": {"\u770b\u770b": 16, "\u51fa\u73fe": 3, "\u8be5": 1, "\u770b": 3, "\u8282\u76ee": 1, "\u6307\u8def": 1, "\u6211\u8def": 1, "\u5e36": 1}, "those": {"\u90a3\u4e9b": 15, "\u5176\u4e2d": 1}, "pictures": {"\u5716\u7247": 2, "\u7167\u7247": 8, "\u756b": 1, "\u62cd\u7167": 5, "\u5f35\u5716": 1}, "excuses": {"\u85c9\u53e3": 1}, "wise": {"\u806a\u660e\u4eba": 1}, "drink": {"\u559d": 29, "\u559d\u9152": 1, "\u98f2\u6599": 1, "\u559d\u4e00\u676f": 2, "\u5e36\u559d": 1, "\u559d\u6c34": 1, "": 2, "\u996e\u6599": 1}, "liquid": {"\u6db2\u9ad4": 1, "\u6db2\u4f53": 1}, "film": {"\u770b\u8fc7": 2, "\u90a3\u90e8": 1, "\u80f6\u5377": 2}, "Arabic": {"\u963f\u62c9\u4f2f\u8bed": 2}, "returned": {"\u4eec": 1, "\u6e6f\u59c6\u525b": 1, "\u501f\u6765": 1}, "cap": {"\u5e3d\u5b50": 1, "\u9876": 2, "\u9802": 1}, "evaporates": {"\u52a0\u71b1": 1}, "racket": {"\u7403\u62cd": 3}, "matter": {"\u600e\u4e48": 3, "\u95ee\u9898": 5, "\u554f\u984c": 5, "\u6ca1\u5173\u7cfb": 1, "\u91cd\u8981": 2, "\u4e0d\u7ba1": 4, "\u65e0\u8bba": 4, "\u90fd": 1, "\u600e\u4e48\u56de\u4e8b": 1, "\u65e0\u6240\u8c13": 1, "\u8fd9\u4ef6": 1}, "Oxford": {"\u725b\u6d25\u5927\u5b66": 2}, "qualified": {"\u52dd\u4efb": 1, "\u5408\u683c": 2}, "ran": {"\u8dd1": 15, "\u8c93": 1, "\u8ffd\u8457": 1}, "fast": {"\u5f88\u5feb": 6, "\u5feb": 15, "\u5403\u5feb\u9910": 2}, "catch": {"\u8d76\u4e0a": 3, "\u6355\u9c7c": 1, "\u8fd8": 1, "\u6253\u8eca": 1, "\u8d95": 3, "\u5927\u65e9": 1, "\u4e3a\u7684\u662f": 1, "\u8ffd\u4e0a": 1, "\u8d95\u4e0a": 1, "\u59d3": 1, "\u542c\u61c2": 1}, "other": {"\u5176\u4ed6": 12, "\u5e7e\u5929": 6, "": 2, "\u4e1c\u4eac": 1, "\u51e0\u5929": 1, "\u53e6": 1, "\u7684": 1}, "members": {"\u6210\u5458": 3, "50": 1}, "classmates": {"\u540c\u5b66": 2, "\u540c\u5b78": 1, "\u9ad8\u4e2d\u540c\u5b66": 1}, "husband": {"\u4e08\u592b": 15}, "possess": {"\u60f3\u5f97\u5230": 1}, "most": {"\u6700": 16, "\u5927\u90e8\u5206": 3, "\u6211\u4f1a": 1, "": 1}, "fence": {"\u67f5\u6b04": 3, "\u7c6c\u7b06": 1, "\u7bf1\u7b06": 1, "\u570d\u7246": 1, "": 1}, "income": {"\u6536\u5165": 3}, "cooks": {"\u70f9\u8abf": 1}, "gifts": {"\u5723\u8bde\u793c\u7269": 1}, "almost": {"\u5e7e\u4e4e": 17, "\u5dee\u70b9": 2, "\u5dee\u4e0d\u591a": 9, "\u51e0\u4e4e": 5}, "pass": {"\u901a\u904e": 3, "\u905e": 6, "\u901a\u8fc7": 3, "\u4ed6": 1, "\u9012\u7ed9": 2}, "test": {"\u6e2c\u9a57": 3, "\u8003\u8bd5\u5377": 1, "\u8003\u8a66": 7, "\u6d4b\u9a8c": 3, "\u8003\u8bd5": 1, "\u6d4b\u8bd5": 1, "\u53c3": 1, "\u518d\u6b21": 1, "\u8003": 1}, "sea": {"\u5927\u6d77": 1, "\u6d77\u8fb9": 2}, "blue": {"\u84dd\u8272": 6, "\u85cd\u8272": 1, "\u84dd": 1, "\u6d88\u6c89": 1, "\u5fc3\u60c5": 1, "\u95f7\u95f7\u4e0d\u4e50": 1, "\u67d0\u4e9b": 1}, "suggested": {"\u53d6\u6d88": 1, "\u5efa\u8b70": 3, "\u63d0\u8bae": 1, "\u95e8\u9501": 1}, "meeting": {"\u4f1a\u8bae": 13, "\u6703\u8b70": 17, "\u53c3\u52a0": 1, "\u90a3\u573a": 1, "\u4e00\u6b21": 1, "\u51fa\u5e2d\u4f1a\u8bae": 1, "\u89c1\u9762": 1}, "stand": {"\u5fcd\u53d7": 10, "\u7ad9": 2, "\u53d7\u4e0d\u4e86": 1, "\u610f\u601d": 1}, "noise": {"\u566a\u97f3": 11, "\u9020": 1}, "went": {"\u53bb": 21}, "along": {"\u76f8\u8655": 6, "\u6cbf\u8457": 1, "\u96e3\u76f8": 2, "\u8ddf\u7740": 1, "\u60f3\u6765": 1, "\u4e00\u8d77": 1, "\u4e00": 1, "\u9032\u884c": 1}, "truth": {"\u771f\u76f8": 35, "\u771f\u5b9e": 1, "\u5be6\u8a71": 2, "\u544a\u8a34": 1, "\u8aaa\u5be6\u8a71": 1, "\u771f\u8bdd": 1, "\u4e8b\u5b9e": 1}, "mask": {"\u9762\u5177": 1}, "things": {"\u4e8b\u60c5": 14, "\u53d1\u751f": 1, "\u6771\u897f": 5, "\u4e1c\u897f": 4, "\u4e8b\u592a": 1, "\u96e3": 1, "\u672a": 1, "\u4e8b\u60f3\u95ee": 1, "\u6709\u4e9b": 1, "\u591a": 1}, "seriously": {"\u770b\u5f97": 1, "\u6b63\u7d93": 1, "\u91cd\u8996": 1, "\u5f53\u771f": 1}, "start": {"\u958b\u59cb": 6, "\u5f00\u59cb": 17, "\u5047\u5982\u80fd": 1, "\u5f00\u7aef": 1, "\u4eca\u65e9": 1, "\u660e\u5929": 1}, "party": {"\u6d3e": 30, "\u805a\u4f1a": 10, "\u6d3e\u5bf9": 7, "\u805a\u6703": 5, "\u53bb": 1}, "everyone": {"\u6bcf\u500b": 5, "\u5927\u5bb6": 4, "\u6bcf\u4e2a": 3, "": 1, "\u6240\u6709\u4eba": 1, "\u5730": 1}, "smiling": {"\u7b11": 5, "\u5fae\u7b11": 3}, "gave": {"\u7d66": 39, "\u7ed9": 7, "\u8ba9\u6b65": 1}, "leave": {"\u8d70": 13, "\u96e2\u958b": 18, "\u79bb\u5f00": 14, "\u6700": 1, "\u51fa\u53d1": 2, "\u7559\u5728": 1, "\u6211": 2, "\u7559": 2, "\u7559\u7d66": 2, "\u5f00": 1, "\u54b1\u5011": 1, "\u6211\u4eec": 1}, "audacity": {"\u5927\u80c6": 1, "\u539a\u989c\u65e0\u803b": 2}, "sixty": {"\u516d\u5341\u5c81": 2}, "cool": {"\u5f88\u9177": 3, "\u559d": 1, "\u771f\u9177": 1, "\u6dbc\u723d": 1, "\u9670\u6dbc": 1}, "Watch": {"\u5f53\u5fc3": 2, "\u5c0f\u5fc3": 1, "\u770b\u8457": 3}, "cost": {"\u6027\u547d": 1, "\u4ee3\u4ef7": 1, "\u4e00\u5171": 1, "\u82b1": 3, "\u652f\u7b46": 1}, "child": {"\u5b69\u5b50": 35, "\u5c0f\u65f6\u5019": 2, "": 1, "\u5c0f\u5b69\u5b50": 1, "\u5c0f\u5b69": 1, "\u751f\u5b50": 1}, "automobile": {"\u8eca\u798d": 1}, "jeans": {"\u725b\u4ed4": 5}, "baseball": {"\u68d2\u7403": 39, "\u5792\u7403": 3, "\u4f1a": 1}, "team": {"\u968a": 1, "\u56e2\u961f": 1, "\u961f": 3, "\u9019\u968a": 1, "\u961f\u4f0d": 1, "\u652f\u7403": 1}, "strong": {"\u5f37": 4, "\u6fc3": 2, "\u5f37\u58ef": 4}, "together": {"\u4e00\u8d77": 27, "\u805a\u5728\u4e00\u8d77": 2, "\u76f8\u805a": 1}, "months": {"": 1, "\u6708": 15, "\u6709": 1, "\u6708\u524d": 1}, "experiment": {"\u5b9e\u9a8c": 2}, "SSH": {"SSH": 1}, "before": {"\u4ee5\u524d": 22, "\u4e4b\u524d": 24, "\u524d": 26, "": 1, "\u4e0d\u4e45": 2}, "taller": {"\u9ad8\u4e00": 1, "\u9ad8": 11, "\u6bd4": 1}, "eggs": {"\u9e21\u86cb": 9, "\u86cb": 8, "": 1}, "dozen": {"\u8bba": 1, "\u4e00\u6253": 3}, "exactly": {"\u6240\u8bf4": 1, "\u5c31\u662f": 4, "\u5230\u5e95": 3, "\u7a76\u7adf": 3, "\u53d1\u578b": 1, "\u6b63\u662f": 1, "\u6e05\u695a": 1}, "figured": {"\u4e86\u4f1a": 1, "\u4f9d\u9760": 1, "\u53d1\u73b0": 1}, "trouble": {"\u56f0\u96be": 1, "\u4f1a": 1, "\u9ebb\u7169": 8, "\u9ebb\u70e6\u4e8b": 1, "\u9ebb\u70e6": 3, "\u5e26\u6765": 2, "\u56f0\u96e3": 1}, "quickly": {"\u4f5c\u7b54": 1, "\u8fc5\u901f": 1, "\u5feb": 1, "\u5f88\u5feb": 1, "\u8d70\u51fa": 1, "\u6211": 2, "\u5c3d\u5feb": 1, "\u76e1\u5feb": 1}, "sits": {"\u4e00\u8fde": 1, "\u516b": 1}, "continents": {"\u4e03\u5927\u6d32": 1}, "earth": {"\u5730\u7403": 5, "\u5230\u5e95": 1, "": 2}, "become": {"\u4e00\u540d": 1, "\u6210\u4e3a": 10, "\u6210\u70ba": 10, "\u8b8a\u6210": 1, "\u600e\u9ebc": 1, "\u5f53": 1, "\u4ed6": 1}, "forecast": {"\u5929\u6c14\u9884\u62a5": 3, "\u6c23\u8c61": 1}, "shrines": {"\u795e\u793e": 1}, "Kyoto": {"\u4eac\u90fd": 16}, "attend": {"\u53c3\u52a0": 6, "\u53c2\u52a0": 5, "\u51fa\u5e2d\u4f1a\u8bae": 1, "\u51fa\u5e2d": 4, "\u90fd": 1}, "waste": {"": 1, "\u6d6a\u8cbb": 5, "\u6d6a\u8d39": 1, "\u6d6a\u8d39\u65f6\u95f4": 3}, "convince": {"\u6d6a\u8d39\u65f6\u95f4": 1, "\u6ca1\u80fd": 1, "\u8bf4\u670d": 3}, "customers": {"\u9867\u5ba2": 1}, "discover": {"\u767c\u73fe": 1}, "friends": {"\u670b\u53cb": 73, "\u6210\u70ba": 1, "\u5979": 1, "\u4e0d\u518d": 1, "\u5468\u570d": 1}, "idiot": {"\u7b28\u86cb": 2, "\u4f60\u4e2a": 1, "\u50bb\u74dc": 2, "\u5446\u74dc": 1, "\u8822\u8d27": 1, "\u50bb": 1, "\u767d\u75f4": 1, "\u9a82": 1}, "climbed": {"\u722c": 12, "\u722c\u4e0a": 2}, "wanted": {"\u60f3\u8981": 16, "\u56e0\u70ba": 1, "\u60f3": 20, "": 2, "\u5982\u679c": 2, "\u505a\u597d\u4e8b": 1}, "blast": {"\u7206\u70b8": 1, "\u75be\u98a8": 1}, "sleep": {"\u5165\u7761": 1, "\u7761": 19, "\u7761\u89ba": 3, "\u7761\u89c9": 8, "\u7761\u4e0d\u7740": 2, "\u6ca1": 1, "\u7684": 1, "\u5931\u7720\u75c7": 1, "\u4f46\u662f": 1}, "intend": {"\u6709\u5fd7": 1, "\u51fa\u570b\u7559\u5b78": 1, "\u6253\u7b97": 1}, "lawyer": {"\u5f8b\u5e08": 3, "\u5f8b\u5e2b": 2}, "town": {"\u6751\u5b50": 2, "\u93ae\u6709": 1, "\u9547\u4e0a": 2, "\u93ae": 3, "\u5e02\u533a": 1, "\u5c0f\u9547": 3, "\u57ce\u5e02": 2}, "looked": {"\u4ee5\u5f80": 1, "\u8f49\u79fb": 1, "\u56db\u5468": 1, "\u770b": 3, "\u5931": 1, "\u8d77\u4f86": 5, "\u7cbe\u795e": 1, "\u7167\u987e": 1}, "early": {"\u65e9\u8d77": 15, "\u6e05\u6668": 2, "\u5f88\u65e9": 9, "\u65e9\u4f86": 3, "\u65e9": 11, "\u7761": 1, "\u65e9\u5c31": 1, "\u65e9\u9ede": 2, "\u63d0\u65e9": 1, "\u4ed6": 1}, "burn": {"\u70e7\u6389": 1}, "pop": {"\u6d41\u884c": 1}, "music": {"\u97f3\u6a02": 19, "\u97f3\u4e50": 14, "\u5c31": 1, "\u662f": 1}, "control": {"\u7ba1\u675f": 1, "\u63a7\u5236": 5, "\u4e0d\u80fd\u81ea\u5df2": 1}, "put": {"\u653e\u5728": 26, "\u65e0\u6cd5\u5fcd\u53d7": 1, "\u53d7\u4e0d\u4e86": 1}, "drawer": {"\u62bd\u5c5c": 1, "\u62bd\u5c49": 1}, "conference": {"\u540e\u5929": 1, "\u5e72\u561b": 1, "\u4f1a\u8bae\u5ba4": 1}, "cake": {"\u86cb\u7cd5": 20}, "trust": {"\u76f8\u4fe1": 9, "\u4fe1\u4efb": 12, "\u4fe1\u8d56": 1, "": 1}, "longer": {"\u518d\u4e5f": 2, "\u4e0d\u518d": 10, "\u4e45": 5, "\u767d\u5929": 2, "\u60f3": 1, "\u4ed6\u4eec": 1, "\u6f38\u6f38": 1, "\u5b83": 1}, "pulling": {"\u4e00\u5339": 1, "\u73a9\u7b11": 1}, "cart": {"\u99ac\u8eca": 2}, "revise": {"\u5e94\u8be5": 1}, "money": {"\u9322": 71, "\u94b1": 55, "\u53ef\u80fd": 1, "\u4e5f": 2, "\u6709\u94b1": 1, "\u6211": 2, "\u8db3\u5920": 1, "\u53ef\u4ee5": 1, "\u8fd8\u6709": 1, "\u7ed9": 1}, "young": {"\u5e74\u8f15": 13, "\u8f15": 8, "\u5e74\u8f7b": 17, "\u5e74\u8f7b\u4eba": 1}, "spent": {"\u6574\u5929": 1, "\u82b1": 6, "\u6574\u500b": 1, "\u591c": 1}, "ground": {"\u6d88\u9632\u8f66": 1, "\u5730\u9762": 2, "\u843d\u5230": 1}, "chance": {"\u673a\u4f1a": 7, "\u5076\u9047": 2, "\u6a5f\u6703": 6, "\u6211\u4eec": 1, "\u96aa": 1, "\u5076\u7136": 1}, "pan": {"\u5e73\u5e95": 1}, "fire": {"\u706b": 12, "\u706b\u707d": 7, "\u7184\u706b": 1, "\u7740\u706b": 2, "\u5f00\u9664": 1, "\u5f88\u5927": 1}, "topic": {"\u63a2\u8a0e": 1, "\u500b\u984c": 1}, "Many": {"\u8a31\u591a": 4, "\u8bb8\u591a": 5, "\u88ab\u76d7": 1}, "calls": {"": 1, "\u7535\u8bdd": 1, "\u6bcf\u5929\u665a\u4e0a": 1}, "number": {"\u5c31": 1, "\u53f7": 2, "\u7535\u8bdd\u53f7\u7801": 7, "\u865f\u78bc": 4, "\u78bc": 2, "\u53f7\u7801": 1, "\u932f": 1, "\u6253\u9519": 1}, "annoyed": {"\u70e6\u6b7b": 1}, "build": {"\u5efa\u9020": 1, "\u5efa": 1, "\u9f13\u8d77\u52c7\u6c14": 1}, "swampy": {"\u6cbc\u6fa4": 1}, "leaves": {"\u6811\u53f6": 1, "\u958b\u52d5": 1, "\u53f6\u5b50": 2, "\u767c\u8eca": 1, "\u51fa\u53d1": 2, "\u672b\u73ed\u8f66": 1, "": 1}, "fell": {"\u6389": 2, "\u4e0a\u6389": 2, "\u8dcc\u5012": 2, "\u6454\u5012": 3}, "entire": {"\u6574\u5834": 1}, "drives": {"\u820a\u8eca": 1, "\u901f\u5ea6": 1, "\u958b\u8eca": 1, "\u958b": 1}, "hiding": {"\u7792": 2, "\u4e0d\u8ba9": 1, "\u85cf": 2, "\u9690\u85cf": 2, "\u8eb2": 1}, "Stop": {"\u65b9\u5bf8\u5927\u4e71": 1, "\u70e6\u8e81": 1, "\u522b": 2, "\u505c\u6b62": 2, "\u5ff5": 1}, "yourself": {"\u81ea\u5df1": 29, "\u7684": 1, "\u4e0d\u4f1a": 1, "\u50b7": 1, "\u5ba2\u6c23": 1}, "depend": {"\u9760": 2, "\u5168": 1, "\u6216\u8bb8": 1, "\u9760\u4f60\u4e86": 1, "\u8fc7\u4e8e": 1}, "learning": {"\u5440": 1, "\u5b78\u6cd5": 3, "\u5b78\u958b": 1, "\u5b78": 1, "\u5b66": 2, "\u5b78\u7fd2": 2}, "Try": {"\u7528\u597d": 1, "\u8bd5\u8bd5": 3, "\u8a66": 2, "\u5617\u8a66": 1}, "dishes": {"\u6d17\u7897": 5, "\u6d17\u76e4\u5b50": 3, "\u76e4": 1}, "plane": {"\u98db\u6a5f": 12, "": 3, "\u98de\u673a": 3, "\u67b6": 1}, "landing": {"\u8457\u9678": 1, "\u964d\u843d": 2}, "nearly": {"\u5dee\u70b9": 1, "\u5dee\u4e0d\u591a": 3, "\u5c06\u8fd1": 1, "\u4e09\u5341\u5e74": 1, "\u81ea": 1}, "afraid": {"\u5bb3\u6015": 16, "\u6015": 32, "\u4e0d\u6015": 3, "\u597d\u6015": 1, "": 2, "\u6050\u6015": 7, "\u62c5\u5fc3": 2, "\"": 1}, "make": {"\u72af\u932f": 1, "\u505a": 1, "\u8cfa": 1, "\u8ba9": 1, "\u8b93": 1, "\u591a\u4e00\u9ede": 1, "\u505a\u597d": 1}, "wonderful": {"\u4e86\u4e0d\u8d77": 1, "\u592a\u597d\u4e86": 1, "\u7f8e\u597d": 3, "\u7f8e\u5999": 2, "\u5f88\u68d2": 2, "\u6109\u5feb": 1, "\u4e00\u5ea7": 1}, "Alcohol": {"\u6d88\u8d39": 1}, "fought": {"\u4e24\u961f": 1}, "opened": {"\u4e00\u5f00": 1, "\u6253\u5f00\u95e8": 1, "\u6253\u958b": 1, "\u4e00\u958b": 1, "\u638f\u51fa": 1, "\u958b": 1}, "concern": {"\u4e8b": 1, "\u6bdb\u94b1": 1, "\u4e0d\u5173": 1}, "froze": {"\u8db3\u4ee5": 1}, "enough": {"": 3, "\u8db3\u591f": 11, "\u61c2\u4e8b": 1, "\u5920": 5, "\u98fd": 1, "\u4e0d\u591f": 4, "\u591f": 5, "\u8db3\u5920": 2, "\u505a\u591f": 1, "\u7d00\u5920": 4, ".": 1, "\u6211": 1, "\u53d7\u5920": 2}, "Training": {"\u8bad\u7ec3": 1}, "nothing": {"\u514d\u8cbb": 4, "\u6ca1\u4ec0\u4e48": 5, "\u4e8b": 4, "\u751a\u9ebc": 1, "\u82b1\u9322": 1, "\u6c92\u6709": 2, "\u4fc2": 1, "\u5173\u7cfb": 1, "\u65e0\u80fd\u4e3a\u529b": 1, "\u6ca1\u5173\u7cfb": 1, "\u90fd": 2, "\u4e00\u65e0\u6240\u77e5": 1, "\u505a\u4e0d\u4e86": 1, "": 1, "\u7121\u95dc": 1, "\u5f53\u65f6": 2, "\u6ca1\u7ed9": 1, "\u4e0e\u6211\u65e0\u5173": 1}, "While": {"\u70b9\u7740": 1, "\u770b\u4e66": 1}, "light": {"\u706f": 7, "\u5173\u706f": 1, "\u95dc\u71c8": 5, "\u706b": 2, "\u6e05\u6de1": 1, "\u5149\u7dda": 2, "\u5728": 1, "\u7da0\u71c8": 1}, "bookstore": {"\u66f8\u5e97": 2, "\u540e\u5728": 1}, "Hokkaido": {"\u5317\u6d77\u9053": 12}, "working": {"\u5de5\u4f5c": 14, "\u4e0a\u73ed": 2}, "sometimes": {"": 3, "\u6642": 5, "\u5076\u723e": 3, "\u6642\u6703": 2, "\u6709\u6642": 4, "\u6709\u65f6": 3, "\u6709\u65f6\u5019": 1, "\u662f": 1}, "Hippopotamuses": {"\u6cb3\u9a6c": 1}, "foreigner": {"\u5916\u570b": 1, "\u5916\u570b\u4eba": 1}, "country": {"\u56fd\u5bb6": 14, "\u570b\u5bb6": 5, "\u9109\u4e0b": 5}, "U.N.": {"\u8054\u5408\u56fd": 1}, "lonely": {"\u5bd2\u51b7": 1, "\u5b64\u5355": 2, "\u5b64\u72ec": 2, "\u5bc2\u5bde": 2, "\u6211": 1}, "baby": {"\u5b30\u5152": 12, "\u5b9d\u5b9d": 10, "\u5a74\u513f": 1, "\u50cf": 1, "": 1, "\u5bf6\u5bf6": 1, "\u751f": 1}, "crying": {"\u54ed": 17, "\u54ed\u6ce3": 4}, "Spring": {"\u6625\u5929": 9}, "funny": {"\u4e00\u5834": 1, "\u6211\u4eec": 1}, "speaks": {"\u8bb2": 2, "\u7528": 1, "\u548c\u6cd5\u8a9e": 1, "\u8bf4\u8bdd": 1, "\u8a71": 1}, "fever": {"\u767c\u71d2": 4, "\u5389\u5bb3": 1, "\u53d1\u70e7": 3, "\u8fd8": 1}, "head": {"\u8fd9\u4eba": 1, "\u5934": 3, "\u8ddf\u8b77": 1, "\u4e00\u4e2a\u5934": 1}, "sole": {"\u5173\u5fc3": 1}, "five": {"\u4e94\u5e74": 6, "5": 4, "\u4e94\u9ede\u9418": 5, "\u4e94\u5206": 1, "\u4e94\u9ede": 2, "\u4e94\u5c0f\u65f6": 1}, "main": {"\u4e3b\u8981": 6}, "reason": {"\u539f\u56e0": 9, "\u7406\u7531": 8}, "Sleep": {"\u5fc3\u81df\u75c5": 1}, "salad": {"\u6c99\u62c9": 2}, "tenth": {"\u5c31\u662f": 1, "\u5341\u65e5": 1}, "bag": {"\u888b\u5b50": 8, "\u5305\u5728": 1, "\u5305": 9, "\u4f60": 1, "\u5305\u662f": 1, "\u4e00\u4e2a\u5305": 1, "\u5305\u5f00": 1}, "blind": {"\u778e": 3, "\u76f2\u76ee": 2}, "grandfather": {"\u7956\u7236": 13, "\u723a\u723a": 3, "\u6211": 1, "\u723a": 1}, "nineties": {"\u4e5d\u5341\u591a": 1}, "camera": {"\u7167\u76f8": 6, "\u7167\u76f8\u673a": 7, "\u76f8\u673a": 6, "\u76f8\u6a5f": 13, "\u6444\u50cf\u673a": 1}, "arrested": {"\u902e\u6355": 7, "\u88ab\u6355": 2}, "Whose": {"\u9019\u66f8": 1, "\u8c01": 5, "\u8ab0": 5, "\u8fd9\u8f86": 1, "\u53f0\u6c7d": 2}, "guitarist": {"\u5409\u4ed6\u624b": 1}, "sister": {"\u59b9\u59b9": 30, "\u59d0\u59d0": 14, "\u59ca\u59ca": 1, "\u59d0\u59b9": 1, "": 3, "\u59d0\u5f1f": 1}, "university": {"\u4e0a\u5927\u5b78": 1, "\u5927\u5b66": 6, "\u5927\u5b66\u751f": 1}, "2": {"2": 4}, "30": {"30": 10, "\u534a\u5c0f\u65f6": 1}, "provided": {"\u63d0\u4f9b": 1, "\u4e4b\u5185": 1}, "promises": {"\u5b88\u7ea6": 1, "\u8fdd\u80cc": 1, "\u4fe1\u5b88": 3, "\u8afe\u8a00": 2}, "skiing": {"\u6ed1\u96ea": 4}, "winter": {"\u51ac\u5929": 12, "\u9759\u8c27": 2, "": 1, "\u5bd2\u5047": 1}, "keep": {"\u4e0b\u53bb": 1, "\u4fdd\u7559": 1, "\u4fe1\u5b88\u8bfa\u8a00": 1, "\u963b\u6b62": 1, "\u7559\u610f": 1, "\u4fdd\u6301": 2, "\u990a": 1, "\u5e76\u4e0d\u591a": 1, "\u505c\u653e": 1, "\u8ddf\u4e0a": 1, "\u7559\u7ed9": 1}, "eight": {"\u516b\u70b9": 2, "\u516b\u9ede\u534a": 2, "\u516b\u500b": 2, "\u516b\u9ede": 2, "8": 2}, "parents": {"\u7236\u6bcd": 45, "\u6211": 2, "": 1}, "drunk": {"\u9189": 5, "\u559d\u9189": 7, "\u9189\u91ba\u91ba": 1, "\u9189\u7121\u6cd5": 2, "\u6c92\u9189": 2, "\u6bcf\u5929": 1}, "recognize": {"\u8ba4\u4e0d\u51fa\u6765": 1, "\u8ba4\u5f97": 1, "\u4e8b\u5b9e": 1, "\u6211": 1, "\u8ba4\u51fa": 3}, "picture": {"\u4e00\u5e45": 3, "\u7167\u7247": 13, "\u56fe\u7247": 1, "\u753b": 1, "\u62cd\u7167": 1, "\u7167\u76f8": 1, "\u7167": 1}, "wall": {"\u7246\u4e0a": 4, "\u7246": 5, "\u5899\u4e0a": 6, "\u5899": 2}, "finds": {"\u53d1\u73b0": 3}, "device": {"\u88c5\u7f6e": 1}, "handsome": {"\u82f1\u4fca": 3, "\u4ed6": 1}, "leads": {"\u610f\u60f3\u4e0d\u5230": 1, "\u4e00\u689d": 1}, "mistakes": {"\u72af": 9, "\u9519\u8bef": 3, "\u72af\u9519": 1, "\u932f\u8aa4": 1, "\u641e\u9519": 1}, "cleaned": {"\u6e6f\u59c6\u6e05": 2, "\u6253\u6383": 2, "\u6025\u5fd9": 1}, "Italy": {"\u7fa9": 2, "\u610f\u5927\u5229": 5}, "bored": {"\u7121\u804a": 2, "\u538c\u5026": 1, "\u9577\u9577": 1}, "hill": {"\u5c0f\u4e18": 1, "\u5c71\u5761": 5, "\u4e0b\u5c71": 1, "\u8d70\u4e0a": 1, "\u5c71\u4e18": 3}, "bunch": {"\u4e00\u5806": 1}, "strangers": {"\u964c\u751f\u4eba": 3}, "games": {"\u73a9\u6e38\u620f": 1, "\u6bd4\u8cfd": 3, "\u9b06": 1, "\u7231\u770b": 1}, "allow": {"\u7d76": 1, "\u5141\u8bb8": 2, "\u90a3\u4e8b": 1, "\u5141\u8a31": 3}, "enjoy": {"\u4eab\u53d7": 2, "\u559c\u6b61": 1, "\u958b\u5fc3": 3, "\u8208": 1, "\u8868\u6f14": 1}, "bra": {"\u6587\u80f8": 1}, "Swimming": {"\u591c\u91cc": 1, "\u6e38\u6cf3": 3, "\u817f\u90e8": 1}, "tallest": {"\u6700\u9ad8": 11}, "mountain": {"\u5c71": 13, "\u5ea7": 1}, "succeeding": {"\u6a5f\u6703": 1}, "Put": {"\u7184\u706f": 1, "\u653e\u5728": 4, "\u653e\u56de": 2, "\u597d\u978b": 1}, "writer": {"\u4f5c\u5bb6": 6}, "Russian": {"\u4fc4\u7f57\u65af": 1, "\u4fc4\u8bed": 1, "\u4fc4\u8a9e": 2}, "sisters": {"\u59d0\u59b9": 6, "\u59ca\u59b9": 2, "\u4e94\u500b": 1, "\u5144\u5f1f\u59d0\u59b9": 1}, "video": {"\u89c6\u9891": 4, "\u5f71\u7247": 1, "\u73a9\u96fb\u8996": 1}, "indifferent": {"\u51b7\u6de1": 1}, "politics": {"\u653f\u6cbb": 3}, "likely": {"\u53ef\u80fd": 10}, "soon": {"\u5f88\u5feb": 30, "\u5feb": 8, "\u4e0d\u4e45": 2, "": 2, "\u5c3d\u5feb": 3, "\u540e": 1, "\u4e00": 2, "\u5c31": 1, "\u5feb\u70b9": 3, "\u671f\u5f85": 1}, "misunderstanding": {"\u8bef\u4f1a": 2}, "flat": {"\u8f2a\u80ce": 1}, "worn": {"\u7b4b\u75b2\u529b\u76e1": 2}, "each": {"\u4e92\u76f8": 6, "\u5f7c\u6b64": 5, "\u89c1\u9762": 1, "\u5bf9\u89c6": 1, "\u6bcf": 1, "\u6bcf\u4eba": 2, "\u65b9": 1, "\u8a8d\u8b58": 1}, "because": {"\u56e0\u70ba": 17, "\u56e0\u4e3a": 9, "": 11, ",": 1}, "playing": {"\u73a9": 9, "\u6253": 1}, "Wake": {"\u53eb\u9192": 2}, "uncle": {"\u53d4\u53d4": 31, "\u5230": 1, "\u8205\u8205": 2}, "comes": {"\u4f86": 5, "\u6765": 1, "\u6765\u81ea": 1, "\u6765\u770b": 1, "\u7948\u76fc": 1}, "failure": {"\u5fb9\u5e95": 1, "\u5931\u8d25": 3}, "objection": {"\u6211": 1, "\u53cd\u5c0d": 1, "\u5bf9\u4e8e": 1, "\u53cd": 1}, "fee": {"\u5bf9\u4ed8": 1, "\u4e94\u5c81": 1}, "choice": {"\u4f59\u5730": 1, "\u6c92\u6cd5": 1, "\u9078\u64c7": 1, "\u9009\u62e9": 3, "\u522b\u65e0\u9009\u62e9": 1, "": 1}, "relax": {"\u4f11\u9592": 1, "\u9b06": 3, "\u5f8c": 1, "": 2, "\u4f11\u606f": 1, "\u653e\u677e": 2}, "JST": {"JST": 1}, "stands": {"\u4ee3\u8868": 2, "\u9304\u53d6": 1, "": 1}, "actress": {"\u5973\u6f14\u5458": 1, "\u6f14\u54e1": 3}, "1,600": {"\u6d77\u62d4": 1}, "meters": {"\u7c73": 3, "\u4e09\u7c73": 1, "\u516c\u5c3a": 1}, "sons": {"\u513f\u5b50": 2, "\u5152\u5b50": 2, "\u4e03\u4e2a": 1}, "wanting": {"\u597d\u4e45": 1}, "briefcase": {"\u516c\u4e8b\u5305": 2}, "papers": {"\u6587\u4ef6": 4}, "fine": {"\u597d": 3, "\u7f8e\u597d": 1, "\u4eca\u5929\u5929\u6c14": 1, "\u53d8": 1, "\u6301\u7eed": 1, "\u5929\u6c14": 2, "\u5929\u6c23": 2, "\u6ca1\u4e8b": 1}, "intersection": {"\u5341\u5b57\u8def\u53e3": 1}, "dance": {"\u8df3\u821e": 6, "\u746a\u9e97\u821e": 1}, "boils": {"\u5ea6\u6cb8\u9a30": 2}, "degrees": {"\u651d": 4}, "milk": {"\u725b\u5976": 23, "\u6bd4\u8f03": 1, "\u559d\u725b\u5976": 3, "\u5496\u5561": 1}, "drum": {"\u6253\u9f13": 1}, "angry": {"\u5f88": 1, "\u751f\u6c14": 17, "": 1, "\u751f\u6c23": 11, "\u6c14": 4, "\u5979": 1, "\u6c23": 3}, "Mother": {"\u5ef3": 1, "\u6b63\u5fd9": 1, "\u5988\u5988": 1}, "reach": {"\u8054\u7cfb": 1, "\u76ee\u6a19": 3, "\u9023\u7d61": 1}, "asleep": {"\u7761\u7740": 8, "\u7761\u8457": 3, "": 1, "\u53d1\u89c9": 1, "\u5f88\u6c89": 1, "\u5165\u7761": 1}, "Wherever": {"\u7121\u8ad6": 3}, "hit": {"\u649e": 9, "\u649e\u4e0a": 1, "\u6253": 3, "\u88ab\u8f66\u649e": 1}, "holiday": {"\u7576\u7136": 1, "\u7bc0\u65e5": 1, "\u4f11\u5047": 1}, "circle": {"\u4e00\u4e2a\u5708": 2, "": 1}, "pencil": {"\u94c5\u7b14": 12, "\u925b": 5, "\u925b\u7b46": 6}, "dollars": {"\u4e07\u7f8e\u5143": 1, "\u7f8e\u5143": 22, "\u5341\u7f8e\u5143": 2, "\u5713": 1, "\u5341\u7f8e": 1}, "plenty": {"\u5e36\u8457": 1, "\u8db3\u591f": 1, "\u5927\u91cf": 1, "\u5145\u5206": 1, "\u5f88\u591a": 2, "\u5145\u8db3": 1, "\u94b1\u8d22": 1}, "Sing": {"\u5531\u9996\u6b4c": 1}, "100": {"100": 4}, "weight": {"\u4f53\u91cd": 2, "\u9ad4\u91cd": 4, "\u7626": 2, "\u51cf\u80a5": 2, "\u4e86\u9ad4": 1}, "drop": {"\u8f09": 1, "\u4e00\u6ef4\u6c34": 2, "\u6765\u8bbf": 1, "\u4e0b\u79ae": 1, "\u6389": 1, "\u987a\u4fbf\u53bb": 1, "\u6ef4\u96e8": 1}, "unlucky": {"\u5012\u9709": 1, "\u8d70\u8fd0": 1, "\u5f88\u5e78": 1}, "quick": {"\u53cd\u61c9": 1, "\u8fc5\u901f": 2}, "saying": {"\u8aaa": 11, "\u4e0d\u8a00\u800c\u55bb": 1, "\u8bf4": 2, "\u542c\u61c2": 1, "\u610f\u601d": 1}, "pride": {"\u4e00\u76f4": 1, "\u81ea\u8c6a": 1, "\u9a84\u50b2": 1}, "procedure": {"\u7a0b\u5e8f": 1}, "paid": {"\u82b1\u94b1": 1, "\u5de5\u8d44": 1, "\u4e94\u584a": 1, "\u4ed8": 1, "\u89c1": 2, "\u7947": 1, "\u4e94\u5143": 1}, "speech": {"\u6f14\u8bb2": 5, "\u6f14\u8b1b": 3}, "conversation": {"\u8ac7\u8a71": 5, "\u4ea4\u8ac7": 1, "\u4e0d\u9519": 1}, "fly": {"\u99d5\u99db": 1, "\u98db\u5230": 1, "\u5750\u98de\u673a": 1, "\u9e1f\u4f1a": 1}, "airplane": {"\u98db\u6a5f": 2, "\u6a5f\u6e96": 1}, "met": {"\u89c1\u9762": 2, "\u898b": 2, "": 3, "\u5728": 1, "\u9047\u5230": 5, "\u9047\u898b": 7, "\u78b0\u5230": 1, "\u89c1\u8fc7\u9762": 1, "\u6c92\u898b": 1, "\u53c8": 1, "\u524d": 1, "\u9047\u89c1": 1}, "Korea": {"\u97e9\u56fd": 1}, "walked": {"\u8d70": 2, "\u908a": 1, "\u6bb5": 1, "\u8d70\u5230": 1, "\u8d70\u8def": 1, "\u8d70\u4f86": 1}, "fear": {"\u5bb3\u6015": 1, "\u4e0d\u52d5": 1, "": 1}, "walk": {"\u6563\u6b65": 12, "\u8d70\u8def": 6, "\u6b65\u884c": 7, "\u905b\u72d7": 1, "\u8d70": 5, "\u8d70\u8d70": 1, "\u8981\u53bb": 1, "\u6563\u6563\u6b65": 1, "\u6211\u4eec": 1, "\u6563": 1}, "painted": {"\u5237\u6210": 2, "\u6f06\u6210": 1, "\u5237\u6f06": 1, "\u756b": 4, "\u5237": 1}, "moves": {"\u52a8": 1}, "player": {"\u9078\u624b": 4, "\u904b\u52d5\u54e1": 1, "\u7403\u624b": 2, "\u9ad8\u624b": 1}, "See": {"\u89c1": 2, "\u898b": 4, "\u4e00\u518d": 1, "\u4e0a\u898b": 1, "\u518d\u89c1": 4}, "Harry": {"\u54c8\u5229\u6ce2": 1}, "sudden": {"\u5ffd\u7136": 1, "\u7a81\u7136": 2}, "cloudy": {"\u96f2": 2, "\u5929\u8981": 1}, "week": {"\u661f\u671f": 6, "\u4e00\u9031": 5, "\u4e00\u5468": 9, "\u4e0a\u5468": 3, "\u6301\u7eed": 1, "\u62dc": 1, "\u4e0a\u9031": 6, "\u8fd9\u5468": 4, "\u4e0b\u5468": 3, "": 1, "\u6211": 1, "\u4e0b\u661f\u671f": 2, "\u8ba9": 1, "\u5f85": 1, "\u4e0a\u661f\u671f": 2}, "passports": {"\u8b77\u7167": 1}, "graduated": {"\u7562\u696d": 10}, "misprints": {"\u5370\u5237": 1}, "eighteen": {"\u5341\u516b": 2}, "spilt": {"\u6ffa\u51fa": 1, "\u6253\u7ffb": 1}, "boats": {"\u6e56\u4e0a": 1}, "warmed": {"\u6696\u548c": 2}, "Christmas": {"\u8056\u8a95\u7bc0": 7, "\u8056\u8a95": 4, "\u5723\u8bde\u8282": 4, "\u8036": 1, "\u5723\u8bde\u793c\u7269": 1}, "excellent": {"\u512a\u79c0": 5, "\u6770\u51fa": 1, "\u597d\u6781\u4e86": 1}, "cook": {"\u5eda\u5e2b": 3, "\u53a8\u5e08": 3, "\u505a\u98ef": 3, "\u505a\u83dc": 1, "\u70e7\u9c7c": 1, "\u505a\u996d": 1}, "accused": {"\u6307\u8d23": 2, "\u63a7\u544a": 1, "\u6307\u63a7": 3, "\u6307\u8cac": 1}, "happen": {"\u767c\u751f": 17, "": 1, "\u53d1\u751f": 16, "\u8ba4\u4e3a": 1, "\u4e0d\u5b9a": 1, "\u6709": 1, "\u4e0d": 1}, "miss": {"\u9519\u8fc7": 3, "\u60f3\u5ff5": 9, "\u60f3": 3, "\u4f60": 1, "\u6211": 1}, "Philippines": {"\u83f2\u5f8b\u5bbe": 1}, "earthquakes": {"": 1, "\u5730\u9707": 3}, "actually": {"\u771f": 1, "\u5be6\u969b\u4e0a": 1, "\u8d77": 1, "\u771f\u662f": 1, "\u771f\u6b63": 1, "\u5be6\u969b": 2, "\u5b9e\u9645\u4e0a": 1, "\u5176\u5be6": 1, "\u786e\u5b9e": 1}, "Mozart": {"\u83ab\u624e\u7279": 1}, "puzzled": {"\u8ff7\u832b": 1, "\u56f0\u60d1": 1, "\u96be\u5012": 1}, "certainly": {"\u5f53\u7136": 1, "\u786e\u5b9e": 1, "\u78ba\u5be6": 1}, "made": {"\u8ba9": 2, "\u8b93": 9, "\u4f7f": 1, "\u8fd9\u79cd": 2, "\u9003": 1, "\u505a": 2, "\u9020\u94b1": 1}, "faint": {"\u660f\u5012": 1}, "used": {"\u4f7f\u7528": 1, "\u4ee5\u524d": 29, "\u4e60\u60ef": 11, "\u8fc7\u53bb": 2, "\u4e0d": 1, "\u7fd2\u6163": 1, "\u66fe\u7ecf": 2, "\u4e8c\u624b": 1}, "by": {"\u88ab": 11, "\u5728": 1, "\u5750": 5, "\u524d": 1, "\u9760": 1}, "Sweet": {"\u795d": 1}, "policeman": {"\u8b66\u5bdf": 16}, "tow": {"\u62d6\u8d70": 1}, "suggest": {"\u5efa\u8b70": 4, "\u51fa\u53bb\u73a9": 2}, "Leave": {"\u96e2": 1, "\u7559\u7ed9": 1, "\u4f1a\u513f": 1, "\u78b0": 1, "\u539f\u5904": 1}, "Eighty": {"\u767e\u5206\u4e4b\u516b\u5341": 1}, "regrets": {"\u6094": 2, "\u9057\u61be": 1, "\u540e\u6094": 2}, "bank": {"\u94f6\u884c": 13, "\u9280\u884c": 6, "\u5bc4\u5e0c\u671b\u4e8e": 1, "\u90a3": 1}, "watering": {"\u6d47\u82b1": 1, "\u6f86": 2, "\u6d41\u773c\u6dda": 1}, "locked": {"\u9396\u8457": 1, "\u9396\u4e0a": 2, "\u9396\u9580": 1, "\u53cd\u9396": 1, "\u9396": 1}, "nine": {"\u4e5d\u9ede\u9418": 4, "\u4e5d\u70b9": 7, "\u4e5d\u9ede": 4, "\u671d\u4e5d\u665a\u4e94": 1}, "accepted": {"\u63a5\u53d7": 6, "": 1, "\u6c42\u5a5a": 1}, "invitation": {"\u9080\u8acb": 2, "\u8bf7\u5e16": 1}, "decide": {"\u6c7a\u5b9a": 7, "\u6743\u5229": 1, "\u53bb\u4e0d\u53bb": 1, "\u51b3\u5b9a": 1}, "education": {"\u6559\u80b2": 7}, "usually": {"\u901a\u5e38": 26, "\u6240\u4ee5": 1, "\u4e00\u822c": 7, "\u7d93\u5e38": 2}, "shower": {"\u6d17\u6fa1": 2, "\u6fa1": 3}, "evening": {"\u665a\u4e0a": 15, "": 2, "\u53bb": 1, "\u5fc3\u60c5": 1, "\u6df1\u591c": 1, "\u6628\u5929\u665a\u4e0a": 1}, "taking": {"\u600e\u9ebc\u6a23": 1, "\u6563\u6b65": 10, "": 1, "\u4f11": 1, "\u62cd\u7167\u7247": 1}, "leaving": {"\u96e2\u958b": 9, "\u79bb\u5f00": 2, "\u534a\u5e74": 1, "\u8981\u96e2": 2, "\u4e0b\u500b\u6708": 1}, "America": {"\u7f8e\u570b": 13, "\u7f8e\u56fd": 12, "\u7f8e\u6d32": 2}, "shelf": {"\u67b6\u4e0a": 3, "\u4e66\u67b6\u4e0a": 1, "\u67b6\u5b50": 4, "\u5e7e\u672c": 1}, "sweeping": {"\u6383\u8eca": 1, "\u6253\u626b": 1}, "garage": {"\u5eab": 2, "\u8f66\u5e93\u91cc": 1, "\u8eca\u5eab": 1}, "attention": {"\u6ce8\u610f": 3, "\u5728\u610f": 1, "\u5e76": 1, "\u4e13\u5fc3": 1, "\u5343\u4e07\u522b": 1, "\u5173\u6ce8": 1}, "advice": {"\u5efa\u8bae": 10, "\u610f\u89c1": 1, "\u5efa\u8b70": 5, "\u5fe0\u544a": 5, "\u8001\u5e08": 1, "\u6307\u5c0e": 1}, "smell": {"\u6c23\u5473": 1, "\u81ed": 1, "\u5473\u9053": 1, "\u6c14\u5473": 1, "\u95fb\u89c1": 1, "\u5473": 1}, "ashes": {"\u5927\u706b": 1}, "Farmers": {"\u519c\u6c11": 1}, "complain": {"\u62b1\u6028": 6}, "agree": {"\u540c\u610f": 28, "\u8d5e\u6210": 3, "": 1, "\u6211": 2}, "opinion": {"\u770b\u6cd5": 6, "\u610f\u898b": 9, "\u89c0\u9ede": 2, "\u60f3\u6cd5": 1}, "Dogs": {"\u55c5\u89c9": 1}, "unhappy": {"\u6211": 1, "\u5e78\u798f": 2, "\u4e0d\u5feb": 3, "\u4ed6": 1}, "power": {"\u529b\u91cf": 3}, "Women": {"\u5973\u6027": 1}, "trivial": {"\u9e21\u6bdb\u849c\u76ae": 1}, "rain": {"\u4e0b\u96e8": 30, "\u5c31": 1, "": 1, "\u96e8": 4, "\u5929": 1, "\u53ef\u80fd": 3, "\u4f1a": 1, "\u5927\u96e8": 1, "-": 1, "\u96e8\u4f1a": 1}, "haunted": {"\u9b27": 2, "\u9b3c\u5c4b": 1, "\u95f9\u9b3c": 1}, "fool": {"\u75af": 1, "\u50bb\u74dc": 3, "\u611a\u5f04": 2, "\u50bb\u5b50": 2, "": 1}, "States": {"\u7f8e\u56fd": 6, "": 1, "\u7f8e\u570b": 2}, "flowers": {"\u82b1": 15, "\u82b1\u6735": 1, "\u71b1\u611b": 1}, "vase": {"\u82b1\u74f6": 5}, "free": {"\u81ea\u7531": 1, "\u6709\u7a7a": 19, "\u7a7a\u95f2": 2, "\u514d\u8cbb": 3, "\u96a8\u6642": 4, "\u4f60": 1, "\u95f2\u6687": 1, "\u7a7a": 2, "\u96a8": 1}, "throw": {"\u6254": 5, "\u4e1f\u6389": 2}, "trash": {"\u5783\u573e": 3}, "swimming": {"\u6e38\u6cf3": 19, "\u80fd": 1, "\u53ef\u4ee5": 1}, "girl": {"\u5c0f\u5973\u5b69": 3, "\u5973\u751f": 1, "\u5973\u5b69": 26, "\u4ed6": 1, "\u59b3\u662f": 1, "": 1, "\u4e86": 1, "\u9aee": 1}, "Perhaps": {"\u4e5f\u8a31": 4, "\u4e5f\u8bb8": 2}, "cars": {"\u5169\u8f1b": 1, "\u8eca": 1, "\u7576\u5fc3": 2, "\u4e09\u8f86": 1, "\u4e24\u8f86\u8f66": 1}, "full": {",": 1, "\u98fd": 3, "\u9971": 2, "\u5145\u6eff": 1, "\u4f60": 1, "\u5c4b\u91cc": 1}, "secret": {"\u7955": 1, "\u4fdd\u5bc6": 3, "\u79d8\u5bc6": 13, "\u544a\u8a34": 1}, "ought": {"\u61c9\u8a72": 5, "\u5f81\u6c42\u610f\u89c1": 1, "\u61c2\u4e8b": 1, "\u6d3e\u5c0d": 1, "\u5632\u5f04": 1}, "barber": {"\u7406": 1, "\u7406\u53d1\u5e97": 2}, "shaves": {"\u9b0d": 2}, "men": {"\u7537\u4eba": 3, "": 1, "\u4e94\u500b": 1, "\u4e94\u4e2a": 1}, "depends": {"\u518d\u8bf4": 2, "\u53d6\u6c7a": 2, "\u9760": 1, "\u53d6\u51b3\u4e8e": 1}, "sold": {"\u5356": 2, "\u8ce3": 1, "\u5356\u7ed9": 1}, "soul": {"\u7075\u9b42": 2, "\u4eba\u5f71": 1}, "devil": {"\u9b54\u9b3c": 2}, "procrastinate": {"\u62d6\u5ef6": 1}, "run": {"\u8dd1": 6, "\u9003\u8d70": 2, "\u8dd1\u6b65": 3, "\u7528\u5b8c": 1, "\u8f3e\u904e": 2, "\u516c\u5171\u6c7d\u8f66": 1}, "green": {"\u7da0\u71c8": 1, "\u7da0\u8272": 4, "\u7eff\u8272": 2, "\u7eff\u8336": 1}, "someone": {"\u6709\u4eba": 10, "\u5546\u91cf\u4e00\u4e0b": 1, "\u89c1": 1, "\u5176\u4ed6\u4eba": 1, "\u67d0\u4eba": 2, "\u5225\u4eba": 2}, "loud": {"\u54cd": 1, "\u8072": 1, "\u5927\u8072": 5}, "getting": {"\u53d8\u8001": 1, "\u4e0b\u8eca": 2, "\u53d8\u5f97": 2, "\u5730\u597d": 2, "\u6211": 1, "\u8d8a\u4f86\u8d8a": 2, "\u8457\u70ba": 1}, "educated": {"\u7a0b\u5ea6": 1}, "desire": {"\u6df7\u4e3a\u4e00\u8c08": 1}, "worry": {"\u8a31\u591a": 1, "\u62c5\u5fc3": 4, "\u64d4\u5fc3": 10, "\u5728\u610f": 1}, "losing": {"\u4eba": 1, "\u5931\u53bb": 3}, "jobs": {"": 1, "\u5de5\u4f5c": 1}, "corner": {"\u8f49\u89d2": 2, "\u8f6c\u89d2\u5904": 2, "\u62d0\u89d2": 1, "\u8857\u89d2": 2, "\u89d2\u843d": 1}, "same": {"\u76f8\u540c": 6, "\u540c\u6837": 4, "\u4e00\u6837": 6, "\u540c\u6a23": 6, "\u540c\u4e00": 4, "\u7ee7\u7eed": 1, "\u540c": 1}, "hated": {"\u6068": 3}, "deal": {"\u518d\u7ba1": 1, "\u771f\u96e3": 1, "\u96e3\u5c0d": 1, "\u89e3\u51b3": 1, "\u4ea4\u6613": 2, "\u5927\u4e0d\u4e86": 1}, "Looking": {"\u700f\u89bd": 1}, "island": {"\u5cf6": 1, "\u5cf6\u4e0a": 1}, "ill": {"\u75c5": 5, "\u5367\u75c5\u5728\u5e8a": 1, "\u751f\u75c5": 3, "\u56e0\u4e3a": 1}, "undocumented": {"\u6f0f\u6d1e": 1}, "speed": {"\u901f\u5ea6": 1}, "professional": {"\u8fd0\u52a8\u5458": 1, "\u4e13\u4e1a": 1}, "basketball": {"\u7bee\u7403": 1, "\u6211": 1, "\u7c43\u7403": 2}, "stripes": {"\u689d\u7d0b": 1}, "healthy": {"\u5065\u5eb7": 7, "\u8eab\u4f53\u5065\u5eb7": 1}, "complete": {"\u964c\u751f": 1, "\u5b8c\u6210": 2}, "pretended": {"\u5047\u88dd": 1, "\u88dd\u4f5c": 1, "\u5047\u88c5": 2}, "loan": {"\u8cb8\u6b3e": 1, "\u94f6\u884c\u8d37\u6b3e": 1}, "wear": {"\u7a7f": 9, "\u77e5\u9053": 1, "\u6234": 1}, "might": {"\u53ef\u80fd": 20, "\u6216\u8bb8": 2, "": 2, "\u4e24\u70b9": 1, "\u4e5f\u8a31": 1}, "times": {"\u591a\u6b21": 5, "\u4e09\u500d": 1, "\u6b21": 1, "\u4e09\u6b21": 5, "\u591a\u4e09\u500d": 1, "\u500d": 2}, "Tomorrow": {"\u4f11\u606f\u65e5": 1, "\u660e\u5929": 1, "\u65e5\u5b50": 1}, "aching": {"\u75bc": 1, "\u6d51\u8eab": 1}, "sending": {"\u822a\u7a7a": 1}, "public": {"\u516c\u958b\u5834": 2, "\u5834\u5408": 2, "\u516c\u773e\u5834": 3, "\u5927\u5ead\u5e7f\u4f17": 1}, "lend": {"\u501f": 15, "": 2, "\u65e7": 1, "\u501f\u7ed9": 3, "\u4f60": 1}, "another": {"\u5927\u4f17": 1, "\u518d": 2, "\u9047\u4e0a": 1, "\u522b\u7684": 1, "\u9846": 1, "\u5176\u4ed6": 1, "\u63a5\u7740": 1}, "feel": {"\u611f\u53d7": 3, "\u611f\u89c9": 12, "\u89ba": 1, "\u89ba\u5f97": 3, "\u5b89\u6170": 1, "\u4e0d\u60f3": 2, "\u611f\u89ba": 4}, "accept": {"\u63a5\u53d7": 16, "\u6211\u5011": 1, "\u6211\u4eec": 1}, "note": {"\u4fbf\u6761": 1, "\u4fbf\u689d": 1, "\u516c": 1}, "fridge": {"\u51b0\u7bb1": 3}, "Maybe": {"\u4e5f\u8a31": 4, "\u6709\u70b9": 1, "\u4ea4\u8c08": 1, "\u4e5f\u8bb8": 2, "\u62fc\u547d": 1, "\u53ef\u80fd": 2, "\u6216\u8a31": 1, "\u9664\u6389": 1}, "exams": {"\u6302\u79d1": 1, "\u8003\u8bd5": 1, "\u843d\u699c": 1}, "remedial": {"\u8865\u4e60\u73ed": 1}, "horse": {"\u8dbe\u9ad8\u6c14\u626c": 1, "\u99ac": 5, "\u5339\u99ac": 1, "\u997f\u864e\u6251\u7f8a": 1, "\u4e0a\u9a6c": 1}, "given": {"\u7ed9": 1, "\u6ca1\u7ed9": 1, "\u5168\u90fd": 1}, "explain": {"\u89e3\u91cb": 7, "\u8aaa\u660e": 1, "\u89e3\u91ca": 8, "\u660e": 1, "\u8ddf": 1}, "difficult": {"\u96be": 20, "\u96e3": 17, "\u56f0\u96e3": 1, "\u4e00\u5b9a": 1, "\u7f6e\u4fe1": 1}, "novel": {"\u5c0f\u8bf4": 9, "\u672c\u5c0f": 2, "\u65b0\u5c0f": 1, "\u5c0f": 1}, "relaxed": {"\u9b06": 2}, "explode": {"\u8981\u70b8": 1, "\u899a": 1}, "repay": {"\u507f\u8fd8\u503a\u52a1": 1}, "using": {"\u517b\u6210": 1}, "looks": {"\u597d\u50cf": 1, "\u8d77\u4f86": 12, "\u50cf": 4, "\u770b\u8d77\u6765": 12, "\u770b\u4e0a\u53bb": 1, "\u770b": 1, "\u7684": 1, "": 2, "\u770b\u4f86": 1}, "cramped": {"\u4e0d\u900f\u6c14": 1}, "mood": {"\u5fc3\u60c5": 1, "\u4e0d\u8010\u70e6": 1}, "dripping": {"\u6c57": 1}, "ex": {"\u524d\u7537\u53cb": 2, "\u524d\u592b": 1}, "cured": {"\u6cbb\u597d": 2}, "finally": {"\u6700\u7ec8": 4, "\u7ec8\u4e8e": 3, "": 2, "\u7d42\u4e8e": 1, "\u7d42": 4}, "IBM": {"IBM": 2}, "sit": {"\u5750\u5728": 6, "\u5750\u4e0b": 7, "\u5750": 3}, "non": {"\u65e0\u70df": 1, "\u975e\u5438": 1}, "offended": {"\u5192\u72af": 2}, "got": {"\u5f97\u5230": 8, "\u4e0b": 2, "\u6709\u4e2a": 1, "\u4e86": 1}, "meaningful": {"\u6df1\u9577": 1}, "souvenir": {"\u7eaa\u5ff5\u54c1": 2}, "boss": {"\u8001\u677f": 8, "\u95c6": 7, "\u4e0a\u53f8": 1}, "stupid": {"\u5f88\u8822": 3, "\u50bb": 8, "\u611a\u8822": 4, "\u7b28\u86cb": 1, "\u771f\u8822": 1, "\u771f\u50bb": 1, "\u633a\u8822": 1, "\u5f88\u50bb": 1, "\u50bb\u5b50": 1}, "forever": {"\u8a18\u4f4f": 1, "\u6c38\u8fdc": 1, "\u6c38\u9060": 1, "\u5f7b\u5e95": 1, "\u957f\u751f\u4e0d\u6b7b": 2, "\u5b88\u4f4f": 1, "": 1}, "clown": {"\u5c0f\u4e11": 1}, "proposal": {"\u63d0\u6848": 1, "\u6bcf\u4e00\u9879": 1, "\u5efa\u8b70": 9, "\u4e0d\u5c51": 1, "\u63d0\u8bae": 1}, "scraped": {"\u522e\u4e0b": 1}, "detective": {"\u4fa6\u63a2": 1, "\u4fa6\u63a2\u5c0f\u8bf4": 2}, "flames": {"\u541e\u566c": 1, "\u706b": 1, "\u7740\u706b": 1}, "share": {"\u5171\u7528": 2, "\u5206\u4eab": 2}, "seminar": {"\u7814\u7a76\u4f1a": 1}, "watch": {"\u624b\u8868": 9, "\u9336": 18, "\u8868": 5, "\u8868\u4e0a": 1}, "Everyone": {"\u5927\u5bb6": 6, "\u6bcf\u4e2a": 9, "\u6240\u6709\u4eba": 2, "\u6bcf\u500b": 15, "\u90fd": 1, "": 1}, "eyes": {"\u773c\u775b": 25, "\u775c": 2, "\u773c": 1}, "photo": {"\u5f35\u6e6f\u59c6": 1, "\u767c\u7d66": 1, "\u7167\u7247": 3}, "places": {"\u5f88\u591a": 1, "\u5217\u6210": 1}, "tool": {"\u5de5\u5177": 1}, "captain": {"\u4f5c\u968a": 1, "\u968a\u9577": 2, "\u961f\u957f": 1, "\u7684": 1}, "policy": {"\u653f\u7b56": 1, "\u7684": 1}, "plastic": {"\u5851\u6599": 1, "\u5851": 1}, "theory": {"\u7406\u8bba": 5, "\u7406\u8ad6": 3}, "shine": {"\u98a8\u96e8\u7121\u963b": 1}, "revenge": {"\u5831\u4ec7": 1}, "elaborate": {"\u7cbe\u5fc3": 1}, "preparations": {"\u7c4c\u5099": 2}, "patient": {"\u75c5\u4eba": 6, "\u8010\u5fc3": 8}, "interested": {"\u611f\u5174\u8da3": 7, "\u8208\u8da3": 9, "\u4e0d\u611f\u5174\u8da3": 1, "\u5f88\u611f\u5174\u8da3": 1, "\u611f\u8208\u8da3": 1}, "ecology": {"\u751f\u6001\u5b66": 1, "\u751f\u614b": 1}, "stone": {"\u77f3\u5b50": 1, "\u77f3\u5934": 3, "\u77f3\u982d": 3}, "Love": {"\u8f6c\u52a8": 1, "\u76f8\u4eb2\u76f8\u7231": 1}, "Someone": {"\u6709\u4eba": 15, "\u76d1\u89c6": 1, "\u6253\u96fb\u8a71\u4f86": 1}, "encouraged": {"\u9f13\u52b1": 2, "\u9f13\u52f5": 1}, "Sometimes": {"\u6709\u65f6\u5019": 4, "\u662f": 1, "\u5076\u5c14": 1}, "2020": {"2020": 1}, "population": {"\u57ce\u5e02": 1, "\u4eba\u53e3": 8, "\u4eba\u53e3\u4f17\u591a": 1}, "upstairs": {"\u6a13\u4e0a": 2, "\u4e0a\u6a13": 2}, "little": {"\u5f88\u5c11": 4, "\u4e00\u70b9": 12, "\u4e00\u9ede": 13, "\u4e00\u4e9b": 1, "\u6709\u70b9": 5, "\u6211": 2, "\u6bb5\u65f6\u95f4": 1}, "undamaged": {"\u8d27\u7269": 1}, "Generally": {"\u4e00\u822c\u800c\u8a00": 1, "\u6bd4": 1}, "shy": {"\u4eba": 1, "\u5bb3\u7f9e": 5, "\u9766\u8146": 1}, "employed": {"\u50f1": 1}, "mistaken": {"\u8a8d\u6210": 1, "\u88ab\u8aa4": 1, "\u9519": 1}, "cousin": {"\u6211": 1, "\u8868\u5f1f": 1}, "chair": {"\u6905\u5b50": 12}, "10.00": {"\u5341\u5143": 1}, "rather": {"\u5be7\u53ef": 2, "\u53d1\u80b2": 1, "\u53d6\u6085": 1, "\u9858\u610f": 1, "\u5be7\u9858": 1, "\u6bd4\u8d77": 1, "\u76f8\u7576": 1, "\u5be7\u9858\u5f85": 1, "\u8ddf\u7740": 1}, "french": {"\u70b8\u85af": 1}, "2003": {"2003": 1}, "expect": {"\u671f\u671b": 7, "\u6307\u671b": 2, "\u78b0\u89c1": 1, "\u6ca1\u60f3\u5230": 1, "": 1, "\u671f\u5f85": 1, "\u56de\u4fe1": 1, "\u6253\u7b97": 1, "\u4f46": 1}, "news": {"\u6d88\u606f": 18, "\u65b0\u805e": 2, "\u65b0\u95fb": 1, "\u77e5\u9053": 1, "\u805e": 1}, "way": {"\u8def\u4e0a": 10, "\u8def": 2, "\u65b9\u5f0f": 11, "\u4e0a\u8def": 1, "\u8001\u670b\u53cb": 1, "\u8fa6\u6cd5": 3, "\u64cb": 1, "\u53e3\u6c23": 1, "\u51fa\u8def": 1, "\u64cb\u4f4f": 2, "\u8d70\u9032": 1, "\u9019\u91cc": 1, "\u6309": 1}, "crazy": {"\u760b\u72c2": 2, "\u7740\u8ff7": 1, "\u75af": 5, "\u760b": 4, "\u53d1\u75af": 2, "\u760b\u8001": 1}, "hotels": {"\u65c5\u9986": 1}, "snowing": {"\u96ea\u505c\u4e86": 2, "": 1, "\u4e00\u6574\u591c": 1}, "physician": {"\u6267\u4e1a": 1}, "wept": {"\u6574\u665a": 1}, "glasses": {"\u773c\u93e1": 7, "\u6234\u773c\u955c": 1, "\u773c\u955c": 4}, "spoke": {"\u8ac7\u5230": 1, "": 1, "\u8bb2": 1, "\u8bf4\u8bdd": 1, "\u4ea4\u6d41": 1}, "partially": {"\u90e8\u5206": 1}, "Take": {"\u62ff": 3, "\u62ff\u8d70": 1, "\u5e26": 1, "\u6162\u6162\u6765": 3, "\u52e4\u594b": 1, "\u7dca\u5f35": 1}, "Earthquakes": {"\u983b\u7e41": 1}, "factory": {"\u5de5\u5ee0": 2, "\u5de5\u5382": 5}, "jelly": {"\u679c\u51cd": 1}, "rope": {"\u7e69\u5b50": 5, "\u7ef3\u5b50": 3}, "doll": {"\u5a03\u5a03": 4, "\u6d0b\u5a03\u5a03": 3}, "ball": {"\u7403": 8, "\u7403\u985e": 1}, "floating": {"\u9806\u6d41\u800c\u4e0b": 1, "\u6d6e": 1}, "origins": {"\u8d77\u6e90": 2}, "Olympics": {"\u5965\u6797\u5339\u514b": 1, "\u5f00\u5e55\u5f0f": 1}, "hamburgers": {"\u6f22\u5821": 4}, "four": {"\u56db\u5e74": 2, "\u4e58\u4ee5": 2, "\u56db\u9ede": 1, "\u56db\u70b9": 1, "\u56db\u500b": 1, "4": 1, "\u4e09\u56db\u6b21": 1}, "speaker": {"\u8005": 4, "\u6e6f\u59c6\u65e5\u8a9e": 1}, "gain": {"\u8bcb\u6bc1": 1, "\u7684": 1, "\u5c0d\u65b9": 1}, "others": {"\u522b\u4eba": 6, "\u5225\u4eba": 8, "\u5176\u4ed6\u4eba": 5, "": 2, "\u4ed6\u4eba": 2}, "boyfriend": {"\u7537\u670b\u53cb": 6}, "loving": {"\u5173\u7231": 1, "\u70ed\u7231": 1}, "army": {"\u5f3a\u8feb": 1, "\u9678\u8ecd": 1}, "twenties": {"\u4e8c\u5341": 1, "\u8fd8": 1}, "begged": {"\u6c42": 2}, "deciding": {"\u51b3\u5b9a": 1}, "which": {"\u54ea": 3, "": 1, "\u662f": 1, "\u957f\u547d": 1}, "Kissing": {"\u8214": 2}, "Sorry": {"\u4e0d\u8d77": 6}, "credit": {"\u4e0d": 1, "\u4fe1\u7528\u5361": 3}, "imports": {"\u539f\u6599": 2}, "major": {"\u4e3b\u4fee": 4, "\u5927\u8c03": 1}, "directions": {"\u56db\u5468": 1, "\u554f\u8def": 1}, "simple": {"\u7c21\u55ae": 3, "\u6734\u7d20": 1, "\u7c21\u5355": 1, "\u7b80\u5355": 3}, "worrying": {"\u62c5\u5fc3": 2, "\u6709\u7528": 1}, "daughter": {"\u5973\u513f": 8, "\u5973\u5152": 18, "\u4ed6": 1, "\u4e09\u6b72": 1, "\u5c81": 1}, "older": {"\u5e74\u9f61": 1, "\u5e74\u7d00": 2, "\u5927": 1, "\u5169\u6b72": 2, "\u4e09\u5c81": 3, "\u4e00\u6a21\u4e00\u6837": 1, "\u59d0\u59d0": 1, "\u8001": 1, "\u5927\u4e09": 1}, "few": {"\u51e0\u5206\u949f": 5, "\u5be1\u6b32": 1, "\u4e00\u4e9b": 4, "\u5e7e\u500b": 3, "\u540e\u540e": 1, "\u4e4b": 1, "\u51e0\u4e2a": 5, "\u56f0\u4f4f": 1, "\u8bf4\u5f97\u597d": 1}, "caged": {"\u7c60\u5b50": 1}, "trousers": {"\u4e24\u6761": 1, "\u8932\u5b50": 1}, "hoarse": {"\u555e": 1}, "easygoing": {"\u96a8": 1}, "Coffee": {"\u9910": 1}, "ripped": {"\u6572\u7af9\u6760": 1, "\u626f\u6389": 1, "\u7834\u6d1e": 1}, "puts": {"\u6cb9": 1}, "cuter": {"\u53ef\u7231": 1}, "writing": {"\u5beb": 6, "\u817b": 1, "\u5199\u4fe1": 3, "\u5fd9\u4e8e": 1, "\u5beb\u4fe1": 4, "\u957f\u4fe1": 1, "\u5b8c\u4fe1": 1, "\u5199\u8fc7\u4fe1": 1}, "Learning": {"\u4e0d\u96be": 2, "\u5916\u8a9e": 1, "\u8f9b\u82e6": 1}, "anytime": {"\u6253\u7ed9": 1, "\u968f\u65f6": 1}, "burglar": {"\u5165\u5ba4": 1, "\u8cca": 4}, "fork": {"\u53c9\u5b50": 1}, "dirty": {"\u9ad2": 4, "\u5f88\u810f": 1, "\u810f": 1, "\u810f\u624b": 1}, "insist": {"\u575a\u6301": 1}, "scarcely": {"\u51e0\u4e4e": 2}, "borrow": {"\u501f\u652f": 1, "\u501f": 11, "\u501f\u7528": 2}, "suppose": {"\u731c\u60f3": 3, "\u8ba4\u4e3a": 1, "\u89ba\u5f97": 1, "\u6bd4\u8f83": 1}, "convenient": {"\u65b9\u4fbf": 3}, "fish": {"\u9b5a": 10, "\u9c7c": 8, "\u904e\u53bb": 1, "\u6761\u9c7c": 1}, "pants": {"\u88e4\u5b50": 3, "\u8932\u5b50": 3}, "destroyed": {"\u6467\u6bc0": 2, "\u6bc0": 1, "\u6467\u6bc1": 1}, "seventeenth": {"\u4e16\u7d00\u6642": 1, "17": 1}, "arguing": {"\u7ec6\u679d\u672b\u8282": 1}, "stops": {"\u4e00\u505c": 1, "\u505c": 6}, "raining": {"\u96e8": 5, "\u4e0b\u96e8": 8, "\u5929\u6b63": 1, "\u96e8\u6703": 1, "\u6211\u4eec": 1}, "listens": {"\u65c1\u8fb9": 1}, "bench": {"\u9577\u6905": 5, "\u957f\u6905": 2, "\u957f\u51f3": 1, "\u51f3": 1}, "baked": {"\u70e4": 3}, "seven": {"\u4e03\u9ede": 4, "7": 6, "\u4e03\u9ede\u9418": 4, "\u4e03\u5e74": 1}, "Pick": {"\u64bf": 1, "\u7535\u8bdd": 1}, "floor": {"\u5730\u4e0a": 6, "\u5730\u677f": 4, "\u6a13": 2}, "ask": {"\u8b93": 2, "\u95ee\u4e2a\u95ee\u9898": 2, "\u554f": 16, "\u95ee": 17, "\u4e0d\u6562": 1, "\u9ad8\u5bff": 1, "\u90a3": 1, "\u505a\u70b9\u4e8b": 1, "": 1}, "aspirin": {"\u963f\u53f8\u5339\u6797": 1}, "dare": {"\u6562": 3, "\u9019\u9ebc": 1, "\u9732\u9762": 1}, "killed": {"\u6bba": 6, "\u6c92\u4eba\u6b7b": 1, "\u81ea\u6740": 1}, "thank": {"\u611f\u8c22": 4, "\u611f\u8b1d": 4, "\u8c22": 1, "": 3, "\u5403\u9971": 1, "\u5f88\u9971": 1, "\u8b1d": 1}, "privacy": {"\u79c1": 1}, "cabin": {"\u5c4b\u91cc": 1, "\u4e00\u4e2a": 1}, "unique": {"\u7368\u7279": 1}, "facing": {"\u4e00\u9593": 1}, "screwball": {"\u602a\u4eba": 1}, "emergency": {"\u7d27\u6025\u60c5\u51b5": 2, "\u6025\u60c5": 1}, "honey": {"": 1}, "bicycle": {"\u81ea\u884c\u8f66": 15, "\u81ea\u884c": 13, "\u8173\u8e0f\u8eca": 6, "\u8e0f": 2, "\u4f60": 1}, "disaster": {"\u7f6a\u9b41\u7978\u9996": 1}, "sweater": {"\u5957\u886b": 1, "\u6bdb\u8863": 7, "": 1}, "jacket": {"\u5916\u8863": 1, "\u593e\u514b": 2, "\u5916\u5957": 4}, "Fancy": {"\u60f3\u4e0d\u5230": 1}, "Quite": {"\u4e0d\u5c11": 1, "\u5e78\u8fd0\u5730": 1}, "sushi": {"\u58fd\u53f8": 5, "\u5bff\u53f8": 4}, "singing": {"\u5531\u6b4c": 14, "": 1, "\u9664": 1}, "picky": {"\u6311\u5254": 1}, "Liz": {"\u4e86\u5229\u8332": 1}, "direct": {"\u76f4\u98de": 1}, "flights": {"\u822a\u73ed": 2}, "Sydney": {"\u6089\u5c3c": 2, "\u96ea\u68a8": 2}, "essentially": {"\u672c\u8cea": 1}, "poor": {"\u53ef\u601c": 1, "\u5f88\u7a77": 2, "\u7a77\u4eba": 4, "\u7aae": 2, "\u5bcc\u88d5": 1, "\u51fa\u8eab": 1, "\u7aae\u4eba": 1}, "nerve": {"\u81bd\u91cf": 1}, "vegetables": {"\u83dc": 1, "\u852c\u83dc": 11}, "started": {"\u5f00\u59cb": 10, "\u5929": 1, "\u958b\u59cb": 11, "\u53d1\u52a8": 1, "\u5fc3\u60c5": 1, "\u4eba": 1}, "Animals": {"\u52a8\u7269": 1, "\u96e2\u4e0d\u958b": 1}, "kept": {"\u7ee7\u7eed": 5, "\u6574\u591c": 1, "\u4f46": 1, "\u8afe\u8a00": 2, "\u7e7c\u7e8c": 3, "\u4f46\u662f": 1, "\u4e0d\u505c": 1, "\u9023\u7e8c": 1}, "played": {"\u653e\u5b66": 2, "\u73a9": 1, "\u63a5\u7403": 1}, "succeeded": {"\u6210\u529f": 3, "\u53e3\u4e2d": 1, "\u4ed6": 1, "\u53ef\u80fd": 1, "\u8d62\u5f97": 1}, "overhead": {"\u76f4\u5347\u98de\u673a": 1}, "wrap": {"\u5305\u88dd": 2, "\u5305\u8d77": 1}, "fifth": {"\u4e0b\u4e94": 1, "\u4e94": 2}, "studies": {"\u5b66\u4e60": 1, "\u5b66": 2, "\u97f3": 1, "\u7528\u529f": 1, "\u52aa\u529b\u5b66\u4e60": 1, "\u6c49\u8bed": 1}, "watched": {"\u90e8": 1, "\u770b\u8457": 1, "\u73a9\u800d": 1}, "U.S.": {"\u4eba\u80fd": 1}, "pretty": {"\u6f02\u4eae": 8, "\u5f88\u6f02\u4eae": 5, "\u53ef\u7231": 1, "\u53ef\u611b": 1, "\u633a": 2, "\u76f8\u5f53": 1, "\u5f00\u4f1a": 1}, "debate": {"\u8fa9\u8bba": 1}, "bee": {"\u871c\u8702": 2}, "sting": {"\u86f0\u4e86": 1}, "obeyed": {"\u670d\u4ece": 1}, "orders": {"\u547d\u4ee4": 3}, "20": {"20": 6}, "cannot": {"\u505a\u4e0d\u4e86": 1, "\u4e0d\u958b": 1, "\u90a3\u7a2e": 1, "\u6211": 1}, "salt": {"\u9e7d": 10, "\u76d0": 9}, "70": {"\u4e03\u5341\u5c81": 2}, "indispensable": {"\u5fc5\u4e0d\u53ef\u5c11": 2}, "page": {"\u9801": 3, "\u4e00\u9875": 2, "\u9801\u9762": 1}, "June": {"\u8aaa": 1, "\u4e0b\u4e00\u573a": 1, "\u516d\u6708": 1, "": 2}, "10th": {"\u5728": 1}, "needed": {"\u6709\u6ca1\u6709": 1, "\u5b78\u6cd5": 1, "\u6e6f\u59c6\u5e6b": 1, "\u6b63\u662f": 1, "\u9700\u8981": 1}, "influenced": {"\u5f71\u54cd": 1}, "picnic": {"\u91ce\u9910": 10, "\u5c31": 2, "\u4e0d": 1}, "Mail": {"\u5bc4": 1}, "dig": {"\u6316\u571f": 1}, "confused": {"\u7591\u60d1": 1, "\u56f0\u60d1": 8, "\u7cca\u5857": 1}, "amusing": {"\u4eec": 1}, "rained": {"\u4e0b\u96e8": 1, "\u4e0b\u5f97": 1, "\u6628\u5929\u4e0a\u5348": 1, "\u6b63\u8981": 1}, "asking": {"\u95ee": 2, "\u554f": 3, "\u4ed6": 1, "\u65e0\u7406\u53d6\u95f9": 1}, "cops": {"\u689d\u5b50": 1}, "Be": {"\u9759\u9759\u7684": 1, "\u5b88\u65f6": 1, "\u53cb\u5584": 1, "\u611f\u5230\u9ad8\u5174": 1, "\u6ce8\u610f\u5b89\u5168": 1, "\u5355\u884c\u9053": 1}, "collecting": {"\u6536\u96c6": 5}, "scientist": {"\u79d1\u5b78\u5bb6": 5}, "daughters": {"\u5973\u5152": 3, "\u5973\u513f": 1}, "anybody": {"\u8c01": 2, "\u4efb\u4f55\u4eba": 6, "\u6709\u4eba": 3, "\u90a3\u8fb9": 2}, "envied": {"\u7fa8\u6155": 1, "\u7fa1\u6155": 1}, "taxed": {"\u9ea6\u82bd": 1}, "cooking": {"\u5eda\u85dd": 2, "\u716e": 1, "\u505a\u996d": 4, "\u70f9\u98ea": 1, "\u4f5c\u98ef": 1}, "Look": {"\u770b": 4, "\u76f8\u7247": 1, "\u56db\u5904": 1, "\u770b\u770b": 1, "\u56de\u5934": 1, "\u5f53\u5fc3": 1, "\u77a7": 1, "\u770b\u7740": 1, "": 1, "\u770b\u8457": 1}, "x": {"X\u5149": 3}, "teeth": {"\u7259\u9f7f": 6}, "obvious": {"\u986f\u7136": 2, "\u660e\u986f": 5}, "lied": {"\u8b0a": 3, "\u8bf4\u8c0e": 1, "\u6492\u8c0e": 3, "\u8bf4\u8bdd": 1, "\u6b3a\u9a19": 1}, "impulse": {"\u5927\u53eb": 1}, "off": {"\u5173\u6389": 1, "\u4e0b\u8f66": 4, "\u5173\u95ed": 1, "\u812b\u6389": 1, "\u4f11": 1, "\u9001": 1, "\u5728": 1, "\u4f11\u5047": 1, "\u5047": 1, "\u4e0b": 3, "\u9001\u884c": 1, "\u4e0b\u8eca": 1, "\u4e0b\u932f": 1}, "France": {"\u6cd5\u56fd": 9, "\u6cd5\u570b": 7, "": 1}, "promise": {"\u4fdd\u8bc1": 3, "\u51e0\u65f6": 1, "\u524d\u9014": 1, "\u9055\u80cc": 1, "\u4fe1\u5b88\u8bfa\u8a00": 2, "\u8afe": 2, "\u627f\u8bfa": 1, "\u4fdd\u8b49": 1}, "fight": {"\u5435\u67b6": 1, "\u81f3\u6b7b": 1, "\u9a45\u6563": 1, "\u67b6": 1}, "hazel": {"\u6de1\u8910\u8272": 1}, "roller": {"\u56db\u8f2a": 1}, "skate": {"\u6e9c\u51b0": 2, "\u6ed1\u51b0": 1}, "human": {"\u5929\u6027": 1, "\u4eba\u6743": 1}, "nightmare": {"\u5669\u68a6": 2}, "shopping": {"\u8cfc\u7269": 3, "\u8d2d\u7269": 3, "\u4e00": 1, "\u4e70\u70b9": 1}, "place": {"\u5730\u65b9": 21, "\u81ea\u5df1": 1, "\u4f4f\u5904": 1, "\u53d6\u4ee3": 1, "\u91d1\u7aa9": 1, "\u53e4": 1, "\u65b0": 1}, "vibe": {"\u5f88\u5dee": 1}, "mud": {"\u8d70\u8fdb": 1, "\u70c2\u6ce5": 1}, "master": {"\u7cbe\u901a": 2, "\u5e74\u5185": 1, "\u77ed\u65f6\u95f4": 1}, "magazine": {"\u8a8c": 4, "\u6742\u5fd7": 4}, "end": {"\u4e16\u754c\u672b\u65e5": 1, "\u6700\u540e": 2, "\u7d50\u675f": 2, "\u7ed3\u675f": 2, "\u65e0\u4e0d": 1, "\u5468\u672b": 1, "\u7ed3\u5c40": 1}, "line": {"\u4e00\u884c": 1, "\u6211\u4e00": 1, "\u7559\u8a00": 1, "\u62ff\u624b": 1, "\u6392\u968a": 1}, "staying": {"\u4f4f": 1, "\u5f85": 4, "\u5f85\u8457": 1, "\u6b63\u5f85": 1, "\u4f4f\u5728\u4e00\u8d77": 1, "\u59d1\u59d1\u5bb6": 1, "\u8205\u8205\u5bb6": 1, "\u665a\u7761": 2}, "remarks": {"\u756a": 1}, "shell": {"\u8d1d\u58f3": 2, "\u86cb\u58f3": 1}, "map": {"\u4e16\u754c\u5730\u56fe": 1, "\u5730\u5716": 3, "\u5730\u56fe": 7, "\u5716": 1}, "lady": {"\u592b\u4eba": 1, "\u8001\u592a\u592a": 3, "\u5973\u4eba": 1, "\u5973\u58eb": 2, "\u5c0f\u59d0": 1}, "who": {"\u8ab0": 14, "\u8c01": 10, "\u9019\u4e8b": 1, "\u4eba": 2, "\u7531": 1, "\u77e5\u9053": 1}, "Nagasaki": {"\u65bc\u9577\u5d0e": 1}, "rainy": {"\u672a\u96e8\u7ef8\u7f2a": 1, "\u96e8\u5929": 2}, "Bee": {"\u87ab\u4eba": 1}, "painful": {"\u75db\u82e6": 4, "\u60b2\u50b7": 1}, "American": {"\u7f8e\u56fd": 6, "\u5979": 1, "\u7f8e\u570b": 3, "\u82f1\u8a9e": 1}, "familiar": {"\u719f\u6089": 5, "\u4f3c\u66fe\u76f8\u8bc6": 1}, "tears": {"\u6dda\u6c34": 1, "\u5fc3\u5730": 1, "\u65b0\u95fb": 1, "\u542b\u7740\u6cea": 1}, "aliens": {"\u5916\u661f\u4eba": 2}, "shook": {"\u63e1\u624b": 2, "\u6643": 1}, "doubt": {"\u7591\u95ee": 3, "\u6beb\u7121\u7591\u554f": 2, "\u61f7\u7591": 1, "\u6beb\u65e0\u7591\u95ee": 1, "\u786e\u5b9a": 1}, "called": {"\u53eb": 12, "\u96fb\u8a71": 6, "\u53d6\u6d88": 2, "\u746a\u8389": 1, "\u53eb\u6cd5": 1, "": 1}, "implying": {"\u6697\u793a": 2}, "Indian": {"\u5370\u5ea6": 1}, "hick": {"\u4e61\u5df4\u4f6c": 1}, "matters": {"\u91cd\u8981": 1, "\u89c0\u9ede": 1}, "stab": {"\u523a": 1}, "showers": {"\u6d74\u5ba4": 1, "\u6625\u96e8": 1}, "Those": {"\u90a3\u4e9b": 6, "\u65f6\u671f": 1, "\u67af\u6b7b": 1}, "apples": {"\u860b\u679c": 17, "\u82f9\u679c": 7, "\u66f4": 1}, "big": {"\u5f88\u5927": 13, "\u5927\u4e8b": 1, "\u5927": 20, "\u5927\u57ce\u5e02": 1, "\u80d6": 2, "\u6709": 1, "\u5c3d\u591f": 1, "\u76db\u5927": 1}, "manuscript": {"\u5267": 1}, "jumped": {"\u8df3": 3, "\u6c34\u4e2d": 1}, "backward": {"\u540e\u9000": 1}, "engineer": {"\u5de5\u7a0b\u5e08": 1, "\u5de5\u7a0b": 5}, "forgot": {"": 2, "\u5fd8": 16, "\u5fd8\u8bb0": 3, "\u6211": 1}, "close": {"\u8acb\u95dc": 1, "\u8fd1": 1, "\u5173\u95e8": 1, "\u5173\u4e86": 1, "\u9760\u8fd1": 2, "\u8eab\u8fb9": 1, "\u5bc6\u53cb": 1, "\u89aa\u5bc6": 2, "\u95dc\u8d77": 2, "\u79bb\u624b": 1}, "passing": {"\u9a5a\u8a1d": 1}, "dad": {"\u7236\u89aa": 1, "\u7236\u4eb2": 2, "\u7238\u7238": 1, "\u88cf": 1, "": 1}, "teens": {"\u4e8c\u5341": 1, "\u5341\u5e7e\u6b72": 1}, "hunting": {"\u4eba\u529b": 1, "\u6253\u730e": 1}, "fairly": {"\u76f8\u7576": 1, "\u76f8\u5f53": 2, "\u516c\u6b63": 1}, "punished": {"\u61f2\u7f70": 2, "\u53d7\u7f70": 2, "\u5c07": 1}, "burst": {"\u6cea\u6d41\u6ee1\u9762": 1, "\u7a81\u7136": 1, "\u6dda\u6d41": 1, "\u54c8\u54c8\u5927\u7b11": 1}, "decisions": {"\u51b3\u5b9a": 1}, "inch": {"\u5f97\u5bf8\u8fdb\u5c3a": 1}, "became": {"\u8b8a": 2, "\u6210\u4e3a": 1, "\u4e26": 1, "\u6210\u70ba": 4, "\u6210": 2}, "pens": {"\u652f": 2, "\u7b46": 1, "\u7b14": 1, "\u92fc\u7b46": 1, "\u5341\u652f": 1}, "temperature": {"\u6c14\u6e29": 1, "\u9ad4\u6eab": 3, "\u53d1\u70e7": 1, "\u767c\u71d2": 1}, "suddenly": {"\u7a81\u7136": 9}, "catching": {"\u7d27\u8ffd": 1}, "divorced": {"\u96e2\u5a5a": 5, "\u79bb\u5a5a": 3}, "wants": {"\u60f3\u8981": 15, "\u60f3": 4, "\u4f86\u8b80": 1, "\u60f3\u53bb": 1}, "carry": {"\u6613\u4e8e": 1, "\u96a8\u8eab": 1, "\u5e26\u5230": 1, "\u651c\u5e36": 2, "\u82b1\u9500": 1, "\u7ee7\u7eed": 1}, "amassed": {"\u7d2f\u7a4d": 1}, "Life": {"\u751f\u6d3b": 7, "": 2, "\u4eba\u751f": 1}, "chocolates": {"\u4e00\u76d2": 2}, "worse": {"\u7cdf": 2, "\u7cdf\u7cd5": 5, "\u5dee": 2, "\u66f4\u7cdf": 2, "\u5c31": 1, "\u4ec0\u9ebc": 1}, "Hang": {"\u639b": 1, "\u4e00\u4e0b": 1, "\u575a\u6301": 2, "\u575a\u6301\u4e0b\u53bb": 1}, "coat": {"\u5916\u5957": 7, "\u5927\u8863": 7}, "movies": {"\u96fb\u5f71": 13, "\u7535\u5f71": 3, "\u7535\u5f71\u9662": 1, "\u5979": 1, "\u7535\u5f71\u5427": 1}, "scolding": {"\u7f75": 1}, "curious": {"\u597d\u5947": 4, "\u6211": 1}, "himself": {"\u72ec\u81ea": 4, "\u7368\u81ea": 3, "\u81ea\u5df1": 3, "\u4eba": 1, "\u4eba\u4f1a": 1}, "spoken": {"\u4f60": 1, "\u8aaa": 1, "\u4eba\u6bd4": 1}, "sharp": {"\u5341\u4e00\u70b9": 1, "\u5200\u4e0d\u92d2\u5229": 1, "\u5b83": 1}, "indistinguishable": {"\u53cc\u80de\u80ce": 1}, "Somebody": {"\u6709\u4eba": 7}, "chopsticks": {"\u7b77\u5b50": 3}, "mattress": {"\u5e8a\u588a": 2}, "lucky": {"\u5e78\u8fd0": 2, "\u904b": 3, "\u5e78\u904b": 3}, "preferred": {"\u65e0\u6240\u4e8b\u4e8b": 1}, "zoo": {"\u52d5\u7269\u5712": 4, "\u52a8\u7269\u56ed": 2}, "chocolate": {"\u5de7\u514b\u529b": 7}, "vitamins": {"\u7dad": 1}, "Coal": {"\u7164": 2}, "fuels": {"\u5929\u7136": 1}, "fresh": {"\u65b0\u9c9c": 4, "\u68f2\u606f": 1, "\u8a18\u61b6": 1}, "Give": {"\u7ed9": 10, "\u7d66": 10, "\u8fd8\u7ed9": 1, "\u529b\u6240\u80fd\u53ca": 1}, "hate": {"\u8ba8\u538c": 11, "\u6068": 4, "\u5176\u5b9e": 1}, "okay": {"\u4e0d\u884c": 1, "\u6c92\u4e8b": 1, "": 1}, "get": {"\u5f97\u5230": 2, "\u65e9": 1, "\u662f\u4e0d\u662f": 3, "\u62ff": 1, "\u5e72\u6d3b": 1, "\u624d\u80fd": 1, "\u5230": 1, "\u4f86\u5230": 1, "\u5e26\u8d70": 1, "\u4f86\u7684": 1}, "registered": {"\u865f": 2}, "mail": {"\u5bc4": 7, "\u5bc4\u4fe1": 1, "\u90f5\u4ef6": 1, "\u5bc4\u51fa\u53bb": 1}, "panic": {"\u6050\u614c": 1}, "clothes": {"\u8863\u670d": 16, "\u7a7f\u4e0a": 1, "\u7a7f": 2, "": 1, "\u6362\u8863\u670d": 1}, "mosquitoes": {"\u868a\u5b50": 2}, "cottage": {"\u5c0f\u5c4b": 6, "\u6751\u5c4b": 1}, "refreshments": {"\u8336\u70b9": 1}, "storm": {"\u98ce\u66b4": 1, "\u66b4\u98a8\u96e8": 1, "\u66b4\u98a8": 2, "\u66b4\u98ce\u96e8": 2}, "thousand": {"1000": 6, "\u4e00\u842c": 2, "\u4e24\u5343": 1}, "yen": {"\u65e5\u5143": 17, "\u4e07\u65e5\u5143": 3}, "pressured": {"\u65bd\u538b": 1}, "ceremony": {"\u4eea\u5f0f": 2}, "began": {"\u5f00\u59cb": 12, "\u958b\u59cb": 14, "\u4ed6": 1, "\u7d27\u63a5\u7740": 1}, "woman": {"\u90a3\u4f4d": 1, "\u5973\u4eba": 19, "": 1}, "risky": {"\u5192\u96aa": 1}, "subarachnoid": {"\u5341\u56db\u5c81": 1}, "license": {"\u7684": 1, "\u57f7\u7167": 5, "\u7121\u7167": 1, "\u6ca1\u5230": 1, "\u9a7e\u7167": 1, "\u99d5\u99db": 1}, "sir": {"\u5148\u751f": 1}, "cheated": {"\u4f5c\u5f0a": 1, "\u9a19": 1, "": 1}, "biology": {"\u751f\u7269": 2, "\u751f\u7269\u5b66": 1}, "louder": {"\u6e05": 1, "\u5927\u8072": 1}, "brilliant": {"\u5927\u597d": 1}, "red": {"\u7ea2\u8272": 3, "\u7ea2": 1, "\u7d05\u8272": 12, "\u8138\u7ea2": 1, "\u4f1a": 1}, "Count": {"\u7b97": 1}, "save": {"\u4fdd\u7559": 1, "\u62ef\u6551": 2, "\u6e6f\u59c6\u76e1": 1}, "seat": {"\u5ea7\u4f4d": 6, "\u4f4d\u5b50": 5, "\u5165\u5ea7": 1, "\u5750": 1, "\u88ab\u53eb": 1}, "50": {"50": 4, "\u4e94\u5341": 1}, "unless": {"\u9664\u975e": 4}, "earlier": {"\u65e9\u9ede": 7, "\u65e9\u70b9": 4, "\u65e9": 4, "\u53eb": 1, "\u5f80\u5e38": 1, "\u66f4\u65e9": 1}, "tigers": {"\u8001\u864e": 2}, "threaten": {"\u5a01\u8105": 1}, "mind": {"\u4e0b\u5b9a": 1, "\u4e0d\u4ecb\u610f": 8, "\u7406\u667a": 2, "\u4ecb\u610f": 8, "\u4f60": 1, "\u51b3\u5b9a": 1, "\u5225": 1, "\u60f3\u6cd5": 2, "\u6211": 1}, "awesome": {"\u592a\u68d2\u4e86": 1, "\u5f88\u68d2": 1}, "hat": {"\u5e3d\u5b50": 21, "\u4f60": 1}, "enter": {"\u8fdb": 3, "\u9032\u5165": 4}, "classroom": {"\u6559\u5ba4": 8}, "sleepy": {"\u5f88\u56f0": 2, "": 1, "\u56f0": 6}, "banged": {"\u62f3\u982d": 1}, "1988": {"1988": 1}, "improve": {"\u5145\u5206\u5229\u7528": 1}, "impressive": {"\u4fe9": 1}, "rerun": {"\u91cd\u64ad": 1}, "burns": {"\u71d2": 2, "\u8017\u6cb9": 1}, "practice": {"\u7df4\u7fd2": 1, "\u7df4": 1, "\u7406\u8bba": 1}, "violin": {"\u5c0f\u63d0\u7434": 10}, "Year": {"\u65b0\u5e74": 3}, "Hard": {"\u656c\u4e1a\u7cbe\u795e": 1}, "reap": {"\u679c": 1, "\u79cd\u74dc\u5f97\u74dc": 1}, "understands": {"\u7406\u89e3": 3, "\u660e\u767d": 1, "\u4e86\u89e3": 1}, "Anyone": {"\u4efb\u4f55\u4eba": 1}, "dictionary": {"\u5b57\u5178": 25, "\u8bcd\u5178": 2}, "planet": {"\u884c\u661f": 5, "\u51a5\u738b\u661f": 1, "\u661f\u7403": 1}, "coin": {"\u4eba\u884c\u9053": 1}, "Because": {"\u56e0\u4e3a": 2, "\u8cb7": 1}, "tastes": {"\u6771\u897f": 1, "\u597d\u559d": 2, "\u5473\u9053": 3}, "bathe": {"\u6fa1": 1, "\u6d17\u6fa1": 1}, "war": {"\u6218\u4e89": 4, "\u6230\u722d": 1}, "credibility": {"\u4fe1\u8b7d": 1}, "conversationalist": {"\u4ea4\u8ac7\u8005": 1}, "tulips": {"\u90c1\u91d1\u9999": 1}, "examination": {"\u8003\u8bd5": 1, "\u8003\u8a66": 3, "\u8981\u70ba": 1}, "spelling": {"\u59d3": 1, "\u62fc\u5beb": 1}, "knife": {"\u5200": 8, "\u5200\u5b50": 2}, "starting": {"\u5f00\u59cb": 1}, "brand": {"\u5168\u65b0": 1}, "jogging": {"\u6162\u8dd1": 4, "\u8dd1\u6b65": 2}, "figure": {"\u4e86\u89e3": 1, "\u529e\u6cd5": 1}, "runs": {"\u8dd1\u5f97\u5feb": 2, "\u8dd1": 4, "\u7d93\u71df": 2, "\u8dd1\u6b65": 1}, "drawing": {"\u753b": 1, "\u53e3\u4e2d": 1}, "Doing": {"\u8fd9\u6837": 1, "\u505a\u8d77": 1}, "wakes": {"\u4e00\u9192": 1}, "lecture": {"\u8a13\u65a5": 1, "\u8bb2\u5ea7": 2}, "dreaming": {"\u505a\u68a6": 2}, "exceptions": {"\u898f\u5247": 1}, "shoulder": {"\u56de": 1, "\u80a9\u8180": 5, "\u80a9\u4e0a": 4}, "million": {"100": 4, "\u4e00\u767e\u4e07": 1, "\u4e09\u767e": 1}, "slight": {"\u5173\u7a97": 1, "\u8f15\u5fae": 2, "\u4e9b\u8bb8": 1}, "reserve": {"\u8ba2\u623f": 1, "\u55ae\u4eba": 1}, "hoped": {"\u66fe\u7ecf": 1, "\u672c": 1, "\u66fe": 1, "\u7372\u52dd": 1}, "trying": {"\u8bd5": 3, "\u8a66\u5716": 1}, "August": {"\u6ca1\u8bfe": 1, "\u516b\u6708\u4efd": 1}, "margarine": {"\u4eba\u9020\u9ec4\u6cb9": 2}, "instead": {"\u4ee3\u66ff": 2, "": 1}, "support": {"\u4e00\u5927\u5bb6\u5b50": 1, "\u990a\u6d3b": 1, "\u4ed6\u4eec": 1, "\u652f\u6301": 1, "\u7262\u56fa": 1}, "Come": {"\u5427": 4, "": 1, "\u8fc7\u6765": 4, "\u6765": 2, "\u8ddf\u6211\u6765": 2, "\u4e00\u8d9f": 1, "\u8ba9": 1, "\u8fdb\u6765": 3, "\u518d\u4f86": 1, "\u9032\u4f86": 1}, "career": {"\u751f\u6daf": 1}, "lips": {"\u5634\u5507": 1}, "wedding": {"\u5a5a\u79ae": 3, "\u5a5a\u793c": 4}, "Check": {"\u67e5": 1, "\u7d50\u5e33": 1, "\u68c0\u67e5\u4e00\u4e0b": 1}, "sin": {"\u7f6a": 1}, "gained": {"\u4e86\u9ad4": 1, "\u589e\u52a0": 1}, "breathing": {"\u67aa\u6740": 1}, "noises": {"\u5e72\u6270": 1}, "teaching": {"": 1, "\u6559": 2}, "Bring": {"\u62ff\u4f86": 1, "\u5e26": 1, "\u5e26\u7ed9": 1, "\u90a3\u672c": 1, "\u5e26\u5230": 1, "\u5e26\u6765": 1, "\u5e36\u4f86": 1}, "newspaper": {"\u5831\u7d19": 4, "\u4e4b\u524d": 1, "\u62a5\u7eb8": 9}, "dragged": {"\u722c\u8d77\u6765": 1}, "gives": {"\u7ed9\u5f97": 1, "\u5149": 1}, "stock": {"\u80a1\u5e02": 3, "\u5e93\u5b58": 1, "\u5bcc\u4eba": 1}, "hole": {"\u6d1e": 7, "\u5927\u6d1e": 2}, "evil": {"\u5584\u6076": 3}, "artists": {"\u827a\u672f\u5bb6": 2}, "exercise": {"\u953b\u70bc": 1, "\u904b\u52d5": 3, "\u7df4\u7fd2": 1}, "shoes": {"\u978b\u5b50": 13, "\u978b": 10, "\u53cc\u978b": 2, "\u7a7f\u978b": 1, "\u8131\u978b": 1}, "conveniently": {"\u4fbf\u5229": 1}, "built": {"": 1, "\u5efa\u9020": 2, "\u84cb": 3, "\u5efa": 2, "\u76d6": 1, "\u9020": 1}, "observatory": {"\u89c0\u6e2c": 1}, "sheet": {"\u4e00\u5f20": 1, "\u5e8a\u5355": 1}, "disappoint": {"\u5931\u671b": 1}, "Children": {"\u5011": 1, "\u4eec": 4, "\u6478\u9ed1": 1, "\u7761\u7720": 1, "\u513f\u7ae5": 1}, "juice": {"\u679c\u6c41": 16}, "participate": {"\u53c3\u8207": 1, "\u53c2\u52a0": 1, "\u5178\u793c": 1}, "booth": {"\u4ead": 1}, "clever": {"\u8070\u660e": 2}, "bucket": {"\u6876": 1, "\u6876\u5b50": 4, "\u8fd9\u6876": 1, "\u4e00\u6876": 1}, "sympathy": {"\u8868\u793a\u540c\u60c5": 1, "\u540c\u60c5": 1}, "prisoner": {"\u56da\u72af": 5}, "sued": {"\u72c0\u544a": 1}, "government": {"\u653f\u5e9c": 3, "\u9078\u51fa": 1}, "probably": {"\u53ef\u80fd": 15, "\u8822\u4e8b": 1, "\u5927\u6982": 2, "": 1}, "since": {"\u8d77": 6, "\u9762\u6709": 1, "\u5f9e": 2, "\u5fd9\u8457": 1}, "2013": {"2013": 3}, "Two": {"\u7b49\u4e8e": 1, "\u4e24\u676f": 2, "\u81ea\u4ece": 1}, "everybody": {"\u5927\u5bb6": 2, "\u6240\u6709\u4eba": 2}, "Ask": {"\u95ee": 6, "\u5d17": 1, "\uff01": 1, "\u95ee\u95ee": 2, "": 1}, "undone": {"\u8986\u6c34": 1, "\u9818": 1}, "energy": {"\u5145\u6ee1\u6d3b\u529b": 1, "\u8fd9\u9879": 1, "\u7cbe\u795e": 1}, "muggy": {"\u60b6\u71b1": 1}, "kidnapped": {"\u7ed1\u67b6": 1}, "standing": {"\u7ad9": 8, "\u6c64\u59c6": 1}, "afford": {"\u5bcc": 1, "\u8ca0\u64d4": 1, "\u4e0d\u8d77": 1, "\u8d77": 1, "\u4ed8\u4e0d\u8d77": 1, "\u4e70\u4e0d\u8d77": 4, "\u627f\u64d4": 1, "\u4ed8\u5f97": 1, "\u8d1f\u62c5": 1}, "primary": {"\u5c0f\u5b66\u751f": 1}, "artist": {"\u827a\u672f\u5bb6": 2}, "dye": {"\u91d1\u8272": 1}, "perfectly": {"\u7acb\u5834": 1}, "spend": {"\u5446": 2, "\u82b1": 3, "\u82b1\u70b9": 1, "\u591a\u628a": 1}, "remained": {"\u7368\u8eab": 1, "\u6c89\u9ed8\u4e0d\u8bed": 2, "\u7ec8\u751f": 1}, "totally": {"\u5b8c\u5168": 2, "\u6f06\u9ed1": 1}, "tire": {"\u6f0f\u6c14": 1}, "effort": {"\u52aa\u529b": 3, "\u4e0d\u52b3\u800c\u83b7": 3, "\u76e1": 1}, "boiled": {"\u5341\u53ea": 1}, "habit": {"\u524d\u6709": 1, "\u4e60\u60ef": 1}, "Read": {"\u8bfb": 1, "\u66f8\u7c4d": 1, "\u5ff5": 1}, "On": {"\u300c": 1}, "scissors": {"\u526a\u5200": 1}, "scratchy": {"": 1}, "begging": {"\u6211": 1, "\u6c42": 1}, "walking": {"\u8def": 1, "\u8fb9\u8d70\u8fb9\u770b": 1, "\u7368": 1, "\u591c\u665a": 1, "\u8d70": 2, "\u884c\u8d70": 1, "\u6f2b\u6b65": 1, "\u6b63": 1}, "Grab": {"\u6293\u4f4f": 4}, "picked": {"\u62ff": 1, "\u6458": 1, "\u6458\u82b1": 1, "\u6361\u8d77": 1, "\u62ff\u8d77": 1}, "resting": {"\u4f11\u606f": 2}, "century": {"\u4e16\u7eaa": 5}, "rescue": {"\u71df\u6551": 1, "\u62ef\u6551": 1}, "injured": {"\u53d7\u4f24": 1, "\u53d7": 3, "\u53d7\u50b7": 4}, "Bird": {"\u9e1f\u7c7b": 1}, "prize": {"\u5956\u9879": 1, "\u7b2c\u4e00\u540d": 3}, "glass": {"\u4e00\u676f": 12, "\u73bb\u7483\u676f": 2, "\u676f\u5b50": 1, "\u676f\u9152": 1}, "traveled": {"\u5468\u904a": 5, "\u66fe\u7d93": 1, "\u6d3d\u5546": 1, "\u65c5\u904a": 1, "\u73af\u6e38": 1}, "rugby": {"\u6a44\u6984\u7403": 2, "\u6a44\u6b16\u7403": 1}, "prefer": {"\u5b81\u613f": 1, "\u52dd": 3, "\u6bd4\u8d77": 2, "\u5be7\u9858": 2, "\u66f4": 2, "\u6bd4\u8f03": 1, "\u4f46": 1}, "clear": {"\u6674\u6717": 5, "\u6f84\u6e05": 3, "\u6e05\u9664": 1, "\u6e05\u695a": 3, "\u660e\u986f": 1, "\u52e2": 1, "\u6674": 1, "\u6c92": 1, "\u6e05\u7406": 1}, "risks": {"\u4f60": 1, "\u5192\u9669": 1, "\u98a8\u96aa": 1}, "profession": {"\u804c\u4e1a": 1, "\u4e13\u804c": 1}, "beginning": {"\u958b\u982d": 1, "\u6389\u5934\u53d1": 1, "\u521d": 1}, "held": {"\u4e3e\u529e": 1, "\u8209\u884c": 1, "\u6436\u52ab": 1}, "type": {"\u6253\u5b57": 1, "\u6bd4\u85a9\u985e": 1, "\u8840\u578b": 2, "\u7c7b\u578b": 1, "\u83dc": 1, "\u4ec0\u4e48\u6837": 1}, "coming": {"\u6703\u4f86": 2, "\u4f86": 14, "\u9019\u5929": 1, "\u8981\u6765": 1, "\u6765": 2, "\u8d77\u6765": 1, "\u8981\u904e": 1}, "explorers": {"\u63a2\u9669\u5bb6": 1}, "skeleton": {"\u6d1e\u7a74": 2}, "happiness": {"\u4e70\u4e0d\u5230": 1, "\u9676\u9189": 1, "\u5fc3\u91cc": 1}, "Air": {"\u7a7a\u6c14\u8d28\u91cf": 1}, "these": {"\u8fd9\u4e9b": 8, "\u9019\u4e9b": 17, "\u8111\u888b": 1, "": 1}, "Good": {"\u5e72": 1, "\u65e9\u4e0a\u597d": 1, "\u65e9\u5b89": 1, "\u795d\u4f60\u597d\u8fd0": 1, "\u665a\u5b89": 1, "": 1, "\u52a0\u6cb9": 1}, "Congratulations": {"": 1, "\u795d\u8d3a": 1, "\u606d\u559c": 1}, "consented": {"\u8001\u592a\u592a": 1}, "beat": {"\u6253\u8d25": 1}, "valuables": {"\u503c\u94b1": 1}, "toy": {"\u73a9\u5177": 6}, "wood": {"\u6728\u5236": 3, "\u6728\u67f4": 1, "\u6728": 1}, "listening": {"\u542c": 11, "\u807d": 10, "\u603b": 2, "\u4e86\u542c": 1}, "treats": {"\u5974\u96b8": 1}, "board": {"\u8463\u4e8b": 2, "\u8239\u4e0a": 1}, "meditate": {"\u6642\u5e38": 1}, "inside": {"\u6c92": 1, "\u7a7f\u53cd": 2, "\u88e1\u9762": 3}, "sooner": {"\u6c92\u6709": 2, "\u8fdf\u65e9\u4f1a": 1, "\u66f4\u5feb": 1, "\u65e9\u665a": 1}, "donate": {"\u732e": 1}, "blood": {"\u8840": 4, "\u6350\u8840": 1, "\u8840\u6db2": 1}, "turned": {"\u8c03": 1, "\u53cd\u590d": 1, "\u8b49\u660e": 2, "\u5374\u5f80": 1, "\u5c0b\u6c42": 1, "\u51fa\u73fe": 1, "\u8f49\u597d": 1}, "Arithmetic": {"\u7b97\u6570": 1}, "numbers": {"\u6570\u5b57": 2}, "largest": {"\u6700\u5927": 8}, "bedroom": {"\u5367\u5ba4": 4, "\u81e5\u5ba4": 4, "\u623f\u9593": 1}, "south": {"\u671d\u5357": 1, "\u7fa4\u9e1f": 1, "\u5357\u90e8": 1, "\u5357\u908a": 1}, "behind": {"\u5217\u8eca": 1, "\u9762": 2, "\u96a8\u624b": 2, "\u80cc\u540e": 1, "\u8eab": 1, "\u540e\u9762": 3}, "People": {"\u4eba\u5011": 8, "\u4eba\u4eec": 4, "\u4e0d\u8a72": 1, "\u4ed6\u4eba": 1}, "Taiwan": {"\u53f0\u7063": 1}, "Tuesday": {"\u5468\u4e8c": 2, "\u661f\u671f\u4e8c": 1}, "supply": {"\u8fd9\u5bb6": 1, "\u4e0d\u8db3": 1}, "stronger": {"\u5f37\u58ef": 1, "\u817f\u90e8": 1}, "disturbed": {"\u7f8e\u68a6": 1}, "bulletproof": {"\u9632\u5f48": 1}, "kill": {"\u628a": 1, "\u6740\u6b7b": 1, "\u81ea\u6bba": 2, "\u6740": 2, "\u6bba": 3, "\u6d88\u78e8": 1, "\u7528\u836f": 1}, "kilometers": {"\u516c\u91cc": 1, "\u4e94\u516c\u91cc": 1}, "travel": {"\u65c5\u884c": 14, "\u65c5\u6e38": 2, "\u74b0\u904a": 1, "\u53ef\u4ee5": 1, "\u6211": 1}, "Ginza": {"\u9280\u5ea7": 1}, "arriving": {"\u6765": 1, "\u6211\u4ec0\u9ebc": 1}, "sadness": {"\u5e73\u64ab": 1}, "owe": {"\u6b20": 12, "\u6b78\u529f": 1, "\u591a\u4e8f": 1}, "candle": {"\u706f\u706d\u4e86": 1}, "telephone": {"\u96fb\u8a71": 7, "\u7535\u8bdd": 2, "\u7535\u8bdd\u7c3f": 1, "\u4e00\u901a": 1, "\u901a\u7535\u8bdd": 1, "\u63a5": 1}, "delicious": {"\u7f8e\u5473": 7, "\u9910\u5ef3": 1}, "Translating": {"\u7ffb\u8bd1": 1}, "meant": {"\u610f\u601d": 3, "\u771f\u5b9e": 1}, "kite": {"\u98a8\u7b8f": 4, "\u98ce\u7b5d": 1}, "join": {"\u53c3\u52a0": 2, "\u52a0\u5165": 3}, "our": {"\u6211\u5011": 15, "\u6211\u4eec": 8}, "ended": {"\u7ed3\u675f": 3, "\u7d50\u675f": 8, "\u63d0\u65e9": 1}, "season": {"\u5b63\u8282": 3, "\u559c\u6b22": 1, "\u5b63\u7bc0": 1}, "gathers": {"\u6eda\u77f3": 2}, "proverb": {"\u8c1a\u8bed": 1}, "stewardess": {"\u7a7a\u59d0": 3}, "wreck": {"\u6b98\u9ab8": 1, "\u4e00\u767e\u591a\u4e2a": 1}, "Putting": {"\u4ed8\u8af8": 1}, "sensitive": {"\u654f\u611f": 2}, "blueberries": {"\u85cd\u8393": 1}, "strawberries": {"\u8349\u8393": 5}, "peaches": {"\u6843\u5b50": 2}, "Was": {"\u5835\u5899": 1, "\u5c31\u662f": 1}, "skating": {"\u8fc7\u540e": 1}, "needle": {"\u6296": 1}, "broken": {"\u574f": 1, "\u574f\u6389": 1, "\u5f04\u574f\u4e86": 1, "\u6454\u574f": 1}, "jam": {"\u679c\u91ac": 1, "\u4ed6": 1, "\u4ea4\u901a\u5835\u585e": 1}, "cute": {"\u53ef\u7231": 4, "\u53ef\u611b": 1, "\u6771\u897f\u840c": 1}, "cradle": {"\u6416": 1, "\u6447\u7bee": 1, "\u6416\u7c43": 1}, "parade": {"\u770b\u5230": 1}, "cry": {"\u54ed": 12, "\u5c31": 1, "\u751a\u81f3": 1, "\u522b\u54ed": 1, "\u771f": 1, "\u54ed\u54ed\u557c\u557c": 1, "\u6211": 1}, "awful": {"\u4e86": 1, "\u7cdf\u900f\u4e86": 1}, "post": {"\u90ae\u5c40": 5, "\u90f5\u5c40": 5, "\u6211": 1}, "canceled": {"\u53d6\u6d88": 2}, "sweet": {"\u751c": 4, "\u4e0d\u751c": 1, "\u592a\u597d\u4e86": 1, "\u5403\u751c": 1}, "cream": {"\u51b0\u6fc0\u51cc": 1, "\u51b0\u6dc7\u6dcb": 4, "\u5976\u6cb9": 3, "\u6dc7": 1}, "earns": {"\u8b00\u751f": 1, "\u4e24\u500d": 1, "\u591a\u4e09\u500d": 1}, "notebook": {"\u8a18\u672c": 1, "\u7b46\u8a18": 3, "\u7b46\u8a18\u672c": 1, "\u7b14\u8bb0\u672c": 1, "\u8166": 1}, "comparison": {"": 1}, "appointment": {"\u7d04": 2, "\u9810\u7d04": 2, "\u53e6": 1, "\u8d74\u7d04": 1}, "junk": {"\u8f66\u5e93": 1, "\u98df\u54c1": 1}, "discuss": {"\u8ba8\u8bba": 4, "\u5546\u91cf": 2, "\u8a0e\u8ad6": 1, "\u8ba8\u8bba\u4e00\u4e0b": 1, "\u8c08\u8bba": 1}, "knocked": {"\u6572\u9580": 1, "\u6ca1\u6709": 1, "\u62c6\u6389": 1, "\u6572": 1}, "doggy": {"\u6253\u5305": 1}, "tin": {"\u9280\u548c\u932b": 2}, "social": {"\u4eba\u54e1": 1}, "button": {"\u9215\u6263": 1, "\u6309": 1, "\u9846\u9215": 1, "\u886c\u8863": 1, "\u9215": 1}, "As": {"\u64da": 2, "\u53ea\u8981": 3, "\u4e00": 1, "": 1, "\u65e2\u7136": 1, "\u636e\u6211\u6240\u77e5": 1}, "World": {"1945": 3}, "1939": {"\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218": 2}, "beach": {"\u6d77\u6ee9": 7, "\u6c99\u7058": 3, "\u6d77\u908a": 3, "\u6d77\u7058": 1}, "prices": {"\u552e\u50f9\u7528\u7d05": 1}, "written": {"\u5beb": 6, "\u5199": 7, "\u5199\u7ed9": 2}, "ink": {"\u58a8\u6c34": 3, "\u65e0\u6240\u8c13": 1}, "chemistry": {"\u5316\u5b66": 2}, "whiter": {"\u76ae\u80a4": 1}, "wig": {"\u5047": 1, "\u5047\u53d1": 1}, "bitter": {"\u4ec7": 1}, "cover": {"\u8f66\u76d6": 1, "\u8d1f\u62c5": 1, "\u8cbb\u7528": 1}, "nurse": {"\u62a4\u58eb": 9}, "cash": {"\u73fe\u91d1": 2, "\u6212\u6307": 1, "\u9322": 1, "\u7f3a\u9322": 1}, "engaged": {"\u8a02\u5a5a": 1, "\u5802\u59ca\u59b9": 1}, "department": {"\u767e\u8ca8": 1, "\u6d88\u9632\u5458": 1, "\u4e00\u8d77": 1, "\u90e8\u9580": 2}, "official": {"\u5b98\u65b9": 1, "\u5b98\u54e1": 1}, "Interest": {"\u5229\u7387": 2}, "inflation": {"\u901a\u8d27\u81a8\u80c0": 1}, "had": {"\u958b\u5fc3": 1}, "Greek": {"\u770b\u4e0d\u61c2": 1, "\u6e90\u4e8e": 1, "\u4e00\u7a8d\u4e0d\u901a": 1}, "planning": {"\u9884\u5907": 1, "\u51c6\u5907": 1, "\u78ba\u8a8d": 1, "\u6253\u7b97": 4, "\u8fc7\u591c": 1, "\u4e8b\u513f": 1, "\u7559\u5bbf": 1}, "devoured": {"\u72fc\u541e\u864e\u54bd": 1}, "compared": {"\u4e0d\u7b97\u4ec0\u4e48": 1}, "vanished": {"\u4e0d\u89c1": 1}, "denies": {"\u5426\u8ba4": 1}, "stealing": {"\u5077": 3, "\u6293\u5230": 3}, "lies": {"\u8b0a": 2, "\u8bf4\u8c0e": 2, "\u770b\u7a7f": 1, "\u4f60": 1, "\u8eba": 1}, "keeps": {"\u6de8": 2, "\u8bfa\u8a00": 1, "\u6b21": 1}, "socks": {"\u896a\u5b50": 6, "\u91cc\u5916": 1, "\u889c\u5b50": 1, "\u8131": 1}, "footprints": {"\u8173\u5370": 1}, "radio": {"\u6536\u97f3": 10, "\u96fb\u53f0": 3, "\u6536\u97f3\u673a": 11, "\u5ee3\u64ad": 4, "\u7535\u53f0": 1, "\u5e7f\u64ad": 1}, "against": {"\u610f\u9858": 2, "\u53cd\u5bf9": 2}, "managed": {"\u8a2d\u6cd5": 4, "\u6210\u529f": 1, "\u7e3d\u7b97\u6e96": 1, "\u5730\u6e38": 1}, "lots": {"\u5f88\u591a": 3}, "hide": {"\u63a9\u76d6\u771f\u76f8": 1, "\u9690\u85cf": 2, "\u85cf\u8457": 1, "\u96b1\u779e": 1, "\u60f3\u4e0d\u5230": 1}, "Central": {"\u4e2d\u592e": 1}, "suspected": {"\u5acc\u7591": 1, "\u6000\u7591": 1}, "color": {"\u984f\u8272": 4, "\u989c\u8272": 4, "\u6ca1\u6709": 1}, "washed": {"\u6d17": 7, "\u6d17\u904e": 1, "\u7897\u76e4": 1}, "3.00": {"\u5165\u573a\u8d39": 1}, "sang": {"\u4e00\u8fb9": 1, "": 2, "\u5531": 2}, "holding": {"\u62ff": 1, "\u6444\u50cf\u673a": 1, "\u63e1": 2}, "fail": {"\u5931\u6557": 3, "\u4e0d": 1, "\u5931\u8d25": 1}, "Okinawa": {"\u51b2\u7ef3": 1}, "singer": {"\u6b4c\u624b": 11}, "cards": {"\u73a9\u724c": 1, "\u5361\u7247": 1, "\u6253\u724c": 2}, "nobody": {"\u8ac7\u8ad6": 1, "\u74b0\u9867": 1, "\u5728\u5efa": 1, "\u6c92": 1}, "Breathing": {"\u547c\u5438": 1}, "sponge": {"\u6d77\u7ef5": 1}, "force": {"\u5f37\u8feb": 1}, "fancy": {"\u9ad8\u6863": 2}, "boat": {"\u8239": 5, "\u5c0f\u8239": 3, "\u4e00\u8258\u8239": 2, "\u8239\u4e0a": 1}, "belong": {"\u793e\u5718": 1, "\u5c5e\u4e8e": 1, "\u4e1c\u897f": 1, "\u5c6c": 1}, "quite": {"\u5b8c\u5168": 1, "\u5341\u5206": 3, "\u96be\u8bfb": 1, "\u771f\u597d": 1}, "memory": {"\u8a18\u61b6\u529b": 5, "\u8bb0\u6027": 1, "\u8bb0\u5fc6\u529b": 1, "": 1}, "joking": {"\u5f00\u73a9\u7b11": 5, "\u73a9\u7b11": 4}, "Judging": {"\u6837\u5b50": 1, "\u5224\u65b7": 1}, "passed": {"\u904e\u4e16": 1, "": 1, "\u559d\u6655": 1, "\u9577": 1, "\u901a\u904e": 3, "\u53bb\u4e16": 6, "\u5979\u5bb6": 2}, "stick": {"\u95e8\u7259": 1, "\u62c4\u8457": 1}, "simplest": {"\u7b80\u4fbf": 1}, "Make": {"\u5f53": 1, "\u5feb\u70b9": 1, "\u52d9": 1, "\u786e\u8ba4": 1}, "liked": {"\u559c\u6b61": 2, "\u8d8a": 1, "\u7acb\u523b": 1}, "mall": {"\u5356\u573a": 1, "\u5546\u573a": 1}, "reads": {"\u8bfb": 5, "\u9605\u8bfb": 1}, "rats": {"\u8001\u9f20": 1}, "pools": {"\u6cf3\u6c60": 1}, "cluttered": {"\u5f88\u4e71": 1}, "closer": {"\u9760\u8fd1": 1}, "remind": {"\u60f3\u8d77": 3, "\u63d0\u9192": 2}, "moon": {"\u6708\u7403": 6, "\u6708\u4eae": 4, "\u5c06": 1, "\u6ee1\u6708": 1}, "satellite": {"\u536b\u661f": 1}, "absolutely": {"\u6b63\u78ba": 2, "\u7ee7\u7eed\u4e0b\u53bb": 1, "\u8d5e\u540c": 1, "\u5b9a": 1, "\u5b8c\u5168": 1}, "different": {"\u4e0d\u540c": 7, "\u4e00\u6837": 3, "\u9019\u6b21": 1}, "governor": {"\u5dde\u9577": 1}, "shirt": {"\u896f\u886b": 10, "\u886c\u886b": 1}, "air": {"\u7a7a\u6c14": 2, "\u6c23": 2, "\u98db\u6a5f": 4, "\u7a7a\u6c23": 3}, "imagination": {"\u60f3\u8c61": 3, "\u5e7b\u60f3": 1}, "preparing": {"\u6b63\u5fd9": 1, "\u51c6\u5907": 1, "\u665a\u98ef": 1}, "accustomed": {"\u4e60\u60ef": 2, "\u9002\u5e94": 1, "\u7fd2\u6163": 3, "\u8f9b\u52e4\u52aa\u529b": 1}, "honest": {"\u8001\u5b9e\u4eba": 3, "\u8bf4\u53e5\u5b9e\u8bdd": 1, "\u8bda\u5b9e": 1, "\u662f": 1, "\u8aa0\u5be6": 4, "\u5fe0\u539a\u8001\u5b9e": 1}, "skilled": {"\u9ad8\u624b": 1}, "refused": {"\u62d2\u7edd": 5, "\u62d2\u7d55": 6, "\u62d2": 2, "\u4f46\u662f": 1, "": 1}, "shake": {"\u63e1\u624b": 2, "\u548c\u89e3": 1, "\u6416\u52d5": 1}, "appeared": {"\u72d7": 1, "\u51fa\u73b0": 1}, "suspect": {"\u5acc\u7591\u4eba": 3}, "caucasian": {"\u767d\u4eba": 1}, "vegetarian": {"\u7d20\u98df\u4e3b\u4e49\u8005": 2, "\u7d20\u98df\u8005": 1}, "youngest": {"\u5973": 2, "\u6700\u5c0f": 1, "\u5e74\u8f7b": 1}, "west": {"\u5411\u897f\u98de": 1}, "coward": {"\u61e6\u592b": 3, "\u81bd": 1, "\u80c6\u5c0f\u9b3c": 1}, "set": {"\u5c07\u9ce5": 1, "\u653e\u706b": 1, "\u51fa\u53d1": 1, "\u4e00\u6574\u5957": 1}, "excuse": {"\u501f\u53e3": 2, "\u9b6f\u83bd": 1, "\u6682\u65f6": 1}, "defeated": {"\u6230\u52dd": 1}, "teaches": {"\u6559\u6cd5": 1, "\u6559": 4}, "practicing": {"\u7ec3": 1, "\u7df4\u7fd2": 1}, "excused": {"\u4e0d\u6765": 1, "\u901a\u8fc7": 1}, "lead": {"\u901a\u5230": 1}, "practiced": {"\u7df4\u7fd2": 1}, "becoming": {"\u60f3\u904e": 1, "\u5be6\u73fe": 1}, "ironed": {"\u71a8": 1}, "battle": {"\u6230\u9b25": 2, "\u6218\u6597": 1}, "barking": {"\u72d7\u53eb": 2, "\u767d\u8cbb\u529b": 1, "\u5420": 1}, "several": {"\u5e7e\u672c": 1, "\u5e7e\u6b21": 1, "\u51e0\u4e2a": 3, "\u597d\u51e0\u4e2a": 1}, "point": {"\u561b": 1, "\u89c0\u9ede": 1, "\u624b\u6307": 1, "\u5173\u952e": 1}, "crushed": {"\u6363\u788e": 1, "\u6575\u4eba": 1}, "garlic": {"\u5927\u849c": 2}, "Switch": {"\u4ec0\u4e48": 1}, "amazing": {"\u5927\u5403\u4e00\u60ca": 1, "\u795e\u5947": 1, "\u4f53\u9a8c": 1}, "dressed": {"\u6253\u626e": 1, "\u7a7f\u8863\u670d": 1, "\u7a7f": 1}, "autumn": {"\u79cb\u5929": 1}, "entrance": {"\u5165\u53e3": 1, "\u540e\u95e8": 1, "\u5165\u5b78": 2, "\u5165\u53e3\u5904": 1}, "elevator": {"\u96fb\u68af": 2, "\u6709\u4e00": 2, "\u5c31": 1}, "causing": {"\u9020\u6210": 1}, "bags": {"\u5305\u5305": 1}, "willing": {"\u9858\u610f": 5, "\u4e50\u610f": 2, "\u6a02\u610f": 1, "\u610f": 1, "\u613f\u610f": 3}, "Now": {"\u73b0\u5728": 2, "\u73fe\u5728": 5, "\u8d77\u6765": 1, "\u65f6\u673a": 1}, "unusually": {"\u5bd2\u51b7": 1}, "lights": {"\u95dc\u71c8": 2, "\u706f": 3, "\u80fd": 1, "\u71c8": 3, "": 1}, "Their": {"\u76ee\u5149": 1, "\u8eca\u53f8": 1, "\u5b30\u5b69": 1}, "fit": {"\u7cbe\u795e": 1, "\u5408\u8eab": 2, "\u9002\u5408": 1}, "grow": {"\u61c2\u4e8b": 1, "\u7a2e": 1, "\u957f\u5927": 2, "\u957f\u4e0d\u5927": 2, "\u7a2e\u82b1": 1, "\u9577\u5927": 1}, "knowing": {"\u65e0\u4ece": 1, "\u5411": 1, "\u63a5\u4e0b\u6765": 1}, "sun": {"\u592a\u9633": 1, "\u592a\u967d": 6, "\u967d\u5149": 1}, "tells": {"\u6307\u4f7f": 1, "\u5be6\u8a71": 1}, "learn": {"\u5b78": 2, "\u5b66\u6cd5\u8bed": 4, "\u5b66\u4f1a": 3, "\u5b78\u5230": 2, "\u6d3b\u5230\u8001": 1, "\u5b66": 3, "\u5b78\u7fd2": 1, "\u96e3\u5b78": 1, "\u5b66\u4e60": 3, "\u6613\u5b78": 1, "\u4e00\u9762": 1}, "curtain": {"\u8c22\u5e55": 1, "\u7a97\u7c3e": 1, "\u5e18\u5b50": 1, "\u7a97\u5e18": 1}, "throne": {"\u7ee7\u627f": 1}, "riding": {"\u9a0e\u8eca": 1}, "huge": {"\u5f88\u5927": 1, "\u81f4\u6b7b": 1}, "quit": {"\u8f9e\u53bb": 1, "\u4f55\u6642": 1, "\u8fad\u8077": 1, "\u8fad\u53bb": 1, "\u62bd\u7159": 1, "\u5f88\u5feb": 1, "\u8f9e\u6389": 1, "\u58de": 1, "\u6212\u6389": 1, "\u79bb\u5f00": 1, "\u5e72": 1, "\u73fe\u5728": 1}, "naive": {"\u5929\u771f": 1}, "prescription": {"\u836f\u65b9": 1, "\u5904\u65b9": 2}, "crimes": {"\u7f6a\u884c": 2}, "doctors": {"\u91ab\u751f": 1}, "hobby": {"\u55dc\u597d": 4, "\u7231\u597d": 2}, "coins": {"\u53e4\u9322\u5e63": 1, "\u786c\u5e63": 1}, "overeat": {"\u91cf": 1}, "Kobe": {"\u795e\u6236": 3}, "wears": {"\u6234\u5e3d\u5b50": 1}, "continue": {"\u7ee7\u7eed": 3, "\u7ee7\u7eed\u4e0b\u53bb": 1}, "past": {"\u8fc7\u53bb": 2, "\u904e\u53bb": 2, "": 1}, "Words": {"\u601d\u60f3": 1, "\u8a9e\u8a5e": 1}, "Step": {"": 1, "\u8fdb\u6765": 1}, "rode": {"\u9a0e": 2}, "jump": {"\u8df3": 4, "\u8df3\u7ef3": 1}, "kidding": {"\u5f00\u73a9\u7b11": 1}, "machines": {"\u81ea\u52a8\u552e\u8d27\u673a": 1, "\u8fd0\u8f6c": 1}, "fixing": {"\u4fee": 2}, "washing": {"\u6d17\u8863": 5, "\u6d17\u8eca": 1}, "sad": {"\u4f24\u5fc3": 3, "\u60b2\u50b7": 2, "\u6cae\u4e27": 1, "\u60b2\u4f24": 3, "\u96e3\u904e": 2, "\u96be\u8fc7": 3, "\u50b7\u5fc3": 1}, "half": {"\u4e00\u534a": 1, "\u534a\u4e2a": 2, "\u534a": 1, "\u534a\u500b": 1, "\u534a\u5c0f\u65f6": 1}, "definite": {"\u80af\u5b9a": 1}, "except": {"\u9664\u4e86": 13}, "printed": {"\u5370\u5237": 1}, "facts": {"\u5c6c\u5be6": 1, "\u4e8b\u5b9e": 4, "\u771f\u76f8": 1}, "gone": {"\u5979": 1, "\u8ba9": 1, "\u56de\u6ce2": 1, "\u5047": 1, "\u8d70": 3, "\u79bb\u5f00": 1, "\u6682\u65f6": 1, "\u5217\u8f66": 1}, "o": {"\u5341\u9ede\u9418": 4, "\u5de6\u53f3": 3, "9": 1, "\u5c07\u8fd1": 2, "12": 1}, "interpreter": {"\u64d4\u4efb": 2, "\u900f\u904e": 1}, "trading": {"\u666f\u6c14": 1}, "forty": {"40": 1}, "Hey": {"\u563f": 7}, "Starting": {"": 1}, "vacation": {"\u5047\u671f": 3, "\u5ea6\u5047": 7, "\u6691\u5047": 6, "\u4f11\u5047": 4}, "followed": {"\u8ddf\u7740": 3, "": 1, "\u6821": 1}, "nervous": {"\u7dca\u5f35": 3, "\u7d27\u5f20": 4}, "Osaka": {"\u5927\u962a": 6}, "Hakodate": {"\u51fd\u9928": 2}, "destination": {"\u76f4\u5954": 1, "\u8fbe\u5230": 1}, "possibility": {"\u53ef\u80fd": 1, "\u53ef\u80fd\u6027": 1, "\u4e0d\u5f97\u4e0d": 2}, "takes": {"\u4f54": 2, "\u98ef\u524d": 1, "\u6beb\u7121\u9593\u65b7": 1}, "watching": {"\u770b\u96fb\u8996": 1, "\u770b\u8457": 3, "\u770b": 1, "\u770b\u7535\u89c6": 1, "\u6211": 1}, "television": {"\u6e6f\u59c6\u7e3d": 1, "\u7535\u89c6\u673a": 5, "\u96fb\u8996": 5, "\u770b\u96fb\u8996": 1}, "difference": {"\u4e0d\u540c": 1, "\u533a\u522b": 9, "\u4e4b\u8655": 2, "\u5b9e\u8df5": 1, "\u5dee\u5225": 2, "\u4e0d\u540c\u70b9": 1}, "furniture": {"\u5bb6\u5177": 7, "\u6c92\u6709": 1, "\u4ff1": 1}, "dust": {"\u7070": 2, "\u5ba4\u5167": 1}, "latest": {"\u6700\u665a": 1}, "anxious": {"\u6025": 1, "\u62c5\u5fe7": 1, "\u6e34\u671b": 2}, "inform": {"\u544a\u77e5": 1}, "Pride": {"\u843d\u540e": 1, "\u5148\u884c\u8005": 1}, "heavy": {"\u5f88\u91cd": 1, "\u91cd": 2, "\u5927\u96e8": 4, "\u592a\u91cd": 2, "\u5305": 1}, "recycling": {"\u56de\u6536": 1}, "hiccup": {"\u6253\u55dd": 1}, "tore": {"\u788e\u7247": 1}, "bits": {"\u6495\u6210": 1}, "fog": {"\u96fe": 2, "": 1, "\u9727": 2}, "climb": {"\u767b": 1, "\u722c": 5, "\u722c\u6811": 1, "": 1}, "tidy": {"\u6574\u6d01": 1, "\u6574\u9f4a": 1}, "sobbing": {"\u555c\u6ce3": 2, "\u62bd\u6ce3": 1}, "sadly": {"\u5979": 1}, "cents": {"\u7f8e\u5206": 2}, "Send": {"\u91ab": 1}, "acts": {"\u56fd\u738b": 1, "\u8fc5\u901f": 1}, "walks": {"\u8d70\u8def": 3, "\u6e9c": 1, "\u5f88\u6162": 2}, "buses": {"": 1, "\u5927\u5df4": 2}, "yellow": {"\u6821\u8f66": 1, "\u9ec4": 2, "\u9ec4\u8272": 2}, "broccoli": {"\u5f88\u65b0": 1}, "Shake": {"\u63e1\u624b": 1}, "faster": {"\u8dd1\u5f97\u5feb": 1, "\u52a0\u5feb": 2, "\u5f53\u4e2d": 1}, "ship": {"\u8239": 2, "\u8258": 3}, "step": {"\u8d70\u8def": 1, "\u9000\u4e00\u6b65": 1, "\u811a\u4e0b": 1, "\u788e\u73bb\u7483": 1, "\u6211\u4eec": 1}, "stolen": {"\u5077": 18, "\u4ed6": 1}, "dryer": {"\u98a8\u6a5f": 2}, "sore": {"\u9178\u75db": 1, "\u96be\u53d7": 1, "\u8d85\u7ea7": 1, "\u5f88\u9178": 1}, "Six": {"\u9664\u4ee5": 1}, "hello": {"\u95ee\u597d": 2}, "moving": {"\u642c\u5230": 1, "\u7ee7\u7eed": 1, "\u79fb\u52d5": 1, "\u52a8": 1}, "flower": {"\u6735\u82b1": 3, "\u82b1": 2, "\u4e00\u6735": 2, "\u624b\u4e0a": 1}, "winner": {"\u8d62\u5bb6": 1}, "Airlines": {"\u806f\u5408": 1}, "course": {"\u7576\u7136": 4, "": 2}, "reservation": {"\u9884\u7ea6": 1, "\u9884\u8ba2": 1, "\u9884\u5b9a": 1, "\u9810\u8a02": 3}, "cattle": {"\u80a5": 1}, "fighting": {"\u6253": 1, "\u6253\u67b6": 1, "\u9b25\u722d": 1, "\u6230\u9b25": 1}, "Fire": {"\u706b": 2}, "received": {"\u6536\u5230": 7, "": 1}, "applications": {"\u56de\u61c9": 1}, "tree": {"\u4e00\u68f5\u6811": 1, "\u6a39\u4e0a": 1, "\u6a39": 4, "\u6811": 1, "\u6a39\u4e0b": 3, "\u6811\u4e0a": 4, "\u68f5": 2}, "languages": {"\u8bed\u8a00": 2, "\u4e09\u7a2e": 2, "\u8a9e\u8a00": 1, "\u7a2e": 1}, "Lie": {"\u4e0d\u52a8": 1, "\u8eba": 2}, "Malaria": {"\u7627\u75be": 1}, "heat": {"\u6eab\u4e0b": 1, "\u5927\u70ed\u5929": 1, "\u6696": 1}, "boring": {"\u65e0\u804a": 2, "\u7121\u804a": 3, "\u6211": 1, "\u8bfb": 1, "\u70e6": 1}, "8": {"\u4ed6": 1, "8": 2, "\u8ab2\u7a0b": 1}, "potatoes": {"\u571f\u8c46": 4, "\u99ac\u9234\u85af": 1}, "optimist": {"\u751f\u6027": 1, "\u4e50\u89c2\u4e3b\u4e49": 1, "\u6a02\u89c0": 1}, "covered": {"\u6342\u4f4f": 1, "\u8986\u76d6": 2, "\u8986\u84cb": 1, "\u96ea\u6240\u8986\u84cb": 2}, "face": {"\u8138": 2, "\u81c9": 4, "\u6d17\u8138": 1, "\u5316\u5986": 1, "\u4e22\u81c9": 1}, "Washington": {"\u534e\u76db\u987f": 2}, "handled": {"\u8655\u7406": 1, "\u72b6\u51b5": 1}, "receipt": {"\u6536\u64da": 1}, "misses": {"\u504f": 1, "\u60f3\u5ff5": 1}, "shorter": {"\u77ee": 3}, "unpleasant": {"\u7d93\u6b77": 1}, "degree": {"\u78a9\u58eb": 1}, "coma": {"\u6df1\u5ea6": 1}, "conscious": {"\u5230": 1}, "neighbors": {"\u6253\u6270\u5230": 1, "\u9130\u5c45": 3, "\u90bb\u5c45\u4eec": 1, "\u90bb\u5c45": 4}, "grass": {"\u8349\u5730": 5, "\u8349\u4e1b\u91cc": 1}, "borrowed": {"\u501f\u9322": 2, "\u501f\u624b": 1}, "ultrasound": {"\u8d85\u8072": 1}, "Spanish": {"\u897f\u73ed\u7259": 2, "\u897f\u73ed\u7259\u6587": 3, "\u897f\u73ed\u7259\u8bed": 2, "\u897f\u73ed\u7259\u4eba": 1}, "twenty": {"\u4e8c\u5341": 1, "\u4e8c\u5341\u4f4d": 1, "20": 2, "\u4e8c\u5341\u5e74": 3, "21": 1, "": 1, "\u4e8c\u5341\u4e94": 1}, "countries": {"\u570b\u5bb6": 5, "\u54ea\u4e9b": 1}, "laughed": {"\u7b11\u8a71": 2, "\u6545\u5730": 1, "\u7b11": 5, "": 1, "\u53d6\u7b11": 1, "\u5632\u7b11": 3}, "jokes": {"\u9017\u7b11": 1, "\u95f9\u7b11\u8bdd": 1, "\u8b1b": 1, "\u7b11\u8bdd": 3, "\u56fd\u9645": 1}, "invited": {"\u9080\u8acb": 8, "\u9080\u8bf7": 4, "\u53d7\u5230": 1, "\u9080": 1}, "chat": {"\u548c": 1, "\u804a": 1, "\u804a\u5929": 1, "\u4f60": 1, "\u804a\u5f97": 1}, "shipment": {"\u8239\u8fd0": 1}, "drugstore": {"\u85e5\u5e97": 1}, "making": {"\u6ce1\u8336": 1, "\u5f71": 1}, "science": {"\u79d1\u5b66": 4}, "math": {"\u6570\u5b66": 6}, "belt": {"\u5b89\u5168\u5e26": 1}, "batteries": {"\u7535\u6c60": 1}, "gun": {"\u69cd": 3, "\u67aa": 1}, "mention": {"\u63d0\u5230": 2, "\u8c22\u8c22\u4f60\u4eec": 1, "\u63d0": 1}, "appears": {"\u597d\u50cf": 2, "\u770b\u4f86": 1, "\u5f3a\u58ee": 1}, "deceitful": {"\u9a97\u5b50": 1}, "pineapple": {"\u83e0\u863f": 1}, "Might": {"\u4f4f\u5740": 1}, "fixed": {"\u4fee\u7406": 3, "\u4fee\u597d": 2}, "lining": {"\u7aae\u6c34\u76e1\u7591\u7121\u8def": 1, "\u62ab\u8457": 1}, "does": {"\u904b\u884c": 1, "\u4e0d": 1, "\u6ca1\u6709": 4, "\u5230\u5e95": 1, "\u4f46": 1}, "Canadians": {"\u52a0\u62ff\u5927\u4eba": 1, "\u60f3\u6709": 1}, "orange": {"\u6a59\u5b50": 7, "\u67f3\u6a59\u6c41": 3, "\u67f3\u6a59": 1, "\u6a59\u6c41": 1}, "vacant": {"\u51e0\u95f4": 1}, "The": {"\u4e86": 4}, "fingerprints": {"\u6307\u7eb9": 1}, "butterfly": {"\u8774\u8776": 1}, "prepared": {"\u6e96\u5099": 4, "\u4f46\u8981": 1, "\u6211": 1}, "holes": {"\u7a7f\u7834": 1}, "idea": {"\u4e3b\u610f": 15, "\u767c\u751f": 3, "\u60f3\u6cd5": 5, "\u4e00\u500b": 1, "\u4e2a": 1, "\u4e00\u65e0\u6240\u77e5": 2, "\u4e00\u4e2a": 1, "\u600e\u4e48\u529e": 1}, "nuts": {"\u75af": 1}, "deposit": {"\u5b58": 1}, "urban": {"\u90fd\u5e02": 1, "\u9077\u5f80": 1}, "skates": {"\u6e9c\u51b0\u978b": 1}, "Enjoy": {"\u5ea6\u5047": 1}, "Europeans": {"\u6b50\u6d32": 1, "\u6b27\u6d32\u4eba": 1}, "wine": {"\u8461\u8404\u9152": 12, "\u767d\u8461\u8404\u9152": 1, "\u9152": 5, "\u7d05\u9152": 1}, "nickname": {"\u6635\u79f0": 1}, "autistic": {"\u81ea\u95ed\u75c7": 1}, "mistook": {"\u8aa4": 3, "\u8aa4\u8a8d": 1}, "abstained": {"\u5f03\u6743": 1}, "Both": {"\u4e24\u4e2a": 1, "\u90fd": 1, "\u5f88\u5c0f": 1, "\u548c\u739b\u4e3d": 1, "\u5169\u500b": 1}, "system": {"\u5236\u5ea6": 2, "\u7cfb\u7edf": 3}, "mountaineering": {"\u611f\u8208\u8da3": 1}, "clipped": {"\u4fee\u526a": 1}, "sheep": {"\u7f8a": 3, "\u6570\u7f8a": 1}, "due": {"\u7531\u4e8e": 2, "\u4eec": 1}, "Change": {"\u63db": 1}, "lesson": {"\u5438\u53d6\u6559\u8bad": 2, "\u7b2c\u4e09\u8bfe": 1, "\u8bb0\u597d": 1}, "Lemons": {"\u6ab8\u6aac": 1}, "Neither": {"\u90a3\u4ef6\u4e8b": 1, "\u90a3\u4e48": 1}, "massage": {"\u6309\u6469": 1}, "manners": {"\u793c\u8c8c": 2, "\u79ae\u8c8c": 2, "\u8209\u6b62": 1}, "privately": {"\u4e00\u5206\u949f": 1}, "excited": {"\u6fc0\u52a8": 2, "\u5403\u4e0d\u4e0b": 1, "\u5174\u594b": 2, "\u6fc0\u52d5": 1}, "animals": {"\u52a8\u7269": 4, "\u52d5\u7269": 3}, "forces": {"\u6574\u7247": 1}, "occupied": {"\u5360\u9886": 1, "\u88ab": 1}, "body": {"\u5c38\u4f53": 1, "\u9178\u75db": 3}, "crossed": {"\u5220\u9664": 1, "\u904e\u6cb3": 1, "\u4e58\u8239": 1, "\u7ff9\u8457": 1}, "monopolies": {"\u5784\u65ad": 1}, "behavior": {"\u884c\u4e3a": 5}, "intolerable": {"\u65e0\u6cd5\u5fcd\u53d7": 1}, "Fill": {"\u586b\u6eff": 1, "\u586b\u5beb": 1, "\u6c34\u88dd": 1, "\u586b\u4e0a": 1}, "dry": {"\u4e7e": 4}, "convinced": {"\u8bf4\u670d": 1, "\u6df1\u4fe1": 1}, "waved": {"\u7ed9": 1, "\u6325\u624b": 2}, "Taxi": {"\u8eca\u8cbb": 1}, "Persian": {"\u6ce2\u65af\u732b": 1}, "sleeping": {"\u7761\u89c9": 6, "\u7761\u89ba": 3, "\u7761\u4e0b": 2, "\u7761\u89c9\u65f6": 1, "\u53d1": 1}, "feet": {"\u811a": 4, "\u6709\u516d": 1}, "equivalent": {"\u8bcd\u6c47": 1, "\u76f8\u5f53\u4e8e": 1, "\u52a0": 1}, "pain": {"\u75db": 4, "\u75db\u82e6": 6, "\u89ba": 1, "\u75bc\u75db": 1}, "nonsense": {"\u80e1\u8a00\u4e71\u8bed": 1, "\u80e1\u8bf4": 1, "\u7121\u7a3d\u4e4b\u8ac7": 1}, "helped": {"\u5e6b": 11, "\u5e6b\u52a9": 1, "\u746a\u9e97\u5e6b": 2, "\u5e2e": 4, "\u4eba": 1}, "weighed": {"\u8ba1\u91cf": 1}, "guess": {"\u731c\u5230": 5, "\u731c": 6, "\u4fc2": 1, "\u4e00\u8f88\u5b50": 1}, "6": {"\u516d\u9ede\u9418": 1, "6": 2, "\u516d\u9ede\u534a": 1}, "veranda": {"\u6696\u623f": 1}, "trusts": {"\u8a31\u591a": 1}, "blanket": {"\u6bef\u5b50": 3}, "highest": {"\u9ad8\u5cf0": 1}, "clenched": {"\u54ac\u7d27\u7259\u5173": 1, "\u63e1\u7d27": 1}, "recently": {"\u6700\u8fd1": 14, "\u4f46\u662f": 2, "\u521a": 1, "\u521a\u624d": 1}, "forgetful": {"\u5065\u5fd8": 2}, "Spell": {"\u62fc": 1}, "barely": {"\u51e0\u4e4e": 1, "\u6211": 1, "\u770b\u4e0d\u898b": 1, "\u6709\u591f": 1}, "secretary": {"\u79d8\u4e66": 3}, "CV": {"\u5c65\u6b77": 1}, "chased": {"\u8ffd": 1}, "rabbit": {"\u5154\u5b50": 3}, "skin": {"\u6fd5\u900f": 2, "\u76ae\u819a": 4}, "friendly": {"\u53cb\u597d": 3, "\u53cb\u5584": 2}, "international": {"\u56fd\u9645": 1, "\u570b\u969b": 1}, "adopted": {"\u6536\u517b": 1}, "brown": {"\u68d5\u8272": 1, "\u8910\u8272": 2, "\u8edf": 1, "\u6df1\u8910\u8272": 1}, "drinkers": {"\u98f2\u9152": 1}, "allowed": {"\u4e0d\u51c6": 3, "\u5141\u8bb8": 3, "\u4e0d": 1}, "own": {"\u5c6c": 1, "\u81ea\u5df1": 18, "\u773c\u770b": 1}, "baggage": {"\u884c\u674e": 4}, "imaginative": {"\u60f3\u50cf\u529b": 2}, "pronounce": {"\u600e": 1, "\u767c\u97f3": 1, "\u53d1\u97f3": 2}, "disappeared": {"\u6d88\u5931": 2, "\u4e0d\u89c1": 1}, "trace": {"": 1}, "results": {"\u751a\u9ebc\u6a23": 1}, "Meet": {"\u898b": 1}, "kidnappers": {"\u7d81": 1}, "unable": {"\u4e70\u8f66": 1, "\u751f\u65e5\u6d3e\u5bf9": 1, "\u4e3a\u65f6\u5df2\u665a": 1}, "central": {"\u6696\u6c14": 1}, "vain": {"\u767d\u8d39": 1, "\u767d": 1}, "shed": {"\u68da\u91cc": 1, "\u843d\u6cea": 1}, "eyesight": {"\u89c6\u529b": 4, "\u8996\u529b": 2, "\u5931\u660e": 1}, "checked": {"\u68c0\u67e5": 1, "\u5165\u4f4f": 1, "\u65f6\u95f4\u8868": 1}, "shows": {"\u812b\u53e3\u79c0": 1}, "ice": {"\u51b0\u584a": 1, "\u51b0": 4, "": 1}, "Fasten": {"\u7cfb\u4e0a": 2, "\u7e6b": 1}, "learned": {"\u5b66\u4f1a": 4, "\u5b78\u6703": 1, "\u6559\u517b": 1, "\u5c31\u5b66": 1}, "Never": {"\u72af\u932f": 1, "\u6c38\u8fdc": 1, "\u51b3\u4e0d": 1}, "helps": {"\u6240\u5728": 1}, "cut": {"\u526a": 4, "\u526a\u6210": 1, "\u5207": 2, "\u780d": 1, "\u526a\u77ed": 1}, "Talking": {"\u97f3\u6a02\u6703": 1}, "easily": {"\u5bb9\u6613": 10, "\u8f7b\u677e": 1, "\u4ed6": 1}, "pull": {"\u4e00\u8f86\u8f66": 1, "\u505c\u4e0b\u6765": 1}, "serious": {"\u8ba4\u771f": 6, "\u4e25\u8083": 2, "\u7dca": 1, "\u4e25\u91cd": 4, "\u56b4\u91cd": 1, "\u8a8d": 1}, "Short": {"\u77ed\u88d9": 1}, "fashion": {"\u904e\u6642": 3}, "Balls": {"\u5706": 1}, "exchange": {"\u4ea4\u63db": 1}, "hanging": {"\u639b": 1, "\u56fe": 1}, "lay": {"\u6e56\u6cca": 1, "\u8eba": 1}, "forest": {"\u68ee\u6797": 4, "\u6811\u6797": 1}, "meals": {"\u5403\u996d": 2, "\u996d\u540e": 1, "\u996d\u524d": 1}, "office": {"\u529e\u516c\u5ba4": 4, "\u516c\u5ba4": 14, "\u4ed6": 1, "\u8fd9\u5468": 1, "": 1}, "lying": {"\u6492\u8c0e": 3, "\u8aaa\u8b0a": 2, "\u6492\u8b0a": 1}, "chess": {"\u4e0b\u68cb": 2, "\u56fd\u9645\u8c61\u68cb": 1}, "key": {"\u9470\u5319": 8, "\u94a5\u5319": 7}, "Action": {"\u884c\u80dc": 1}, "honeymoon": {"\u871c\u6708": 1}, "words": {"\u51e0\u53e5": 1, "\u8a71": 1, "\u5355\u8bcd": 1, "\u9a5a": 1, "\u6df7\u6dc6": 1}, "cleared": {"\u6e05\u7406": 2, "\u6e05\u4e86\u6e05": 1, "\u63a5\u7740": 1}, "send": {"\u5bc4\u7ed9": 1, "\u5bc4\u4fe1": 1, "\u5bc4": 2, "\u53ef\u662f": 1, "\u9001\u5230": 1, "\u6d3e\u51fa": 1, "\u767c\u7d66": 1}, "snake": {"\u86c7": 3}, "Few": {"\u5f88\u5c11": 5}, "haircut": {"\u51fa\u767c": 1, "\u7406": 2}, "pronunciation": {"\u4ed6": 1, "\u53d1\u97f3": 2}, "guilt": {"\u96b1\u7d04": 1, "\u6709\u7f6a": 1}, "Driving": {"\u5149\u6ed1": 1}, "swam": {"\u904a": 1, "\u6cf3": 1, "\u6e38\u5230": 1, "\u6e38\u6cf3": 2}, "surprise": {"\u9a5a\u559c": 2, "\u5413\u552c": 1, "\u60ca\u559c": 3, "\u4e86": 1}, "Money": {"\u6a39\u4e0a": 1, "\u91d1\u94b1\u4e07\u80fd": 3, "\u91d1\u94b1": 3}, "legs": {"\u4e24\u53ea": 1, "\u817f": 4}, "lighter": {"\u5929\u8272": 1}, "guarding": {"\u5b88\u885b": 1}, "bridge": {"\u6a4b": 7, "\u6865": 2}, "dealt": {"\u5904\u7406": 3}, "window": {"\u7a97": 3, "\u7a97\u53e3": 4, "\u7a97\u6236": 16, "\u7a97\u5916": 1}, "brothers": {"\u5144\u5f1f": 11, "\u4e09\u540d": 1}, "anywhere": {"\u54ea\u513f": 3, "\u968f\u4fbf": 2}, "tragic": {"\u60b2\u5287": 1}, "cleaners": {"\u5438\u5c18\u5668": 1}, "rent": {"\u79df\u91d1": 5}, "napping": {"\u7761\u5348\u89c9": 1}, "politician": {"\u5f53\u5b98": 1, "\u653f\u6cbb\u5bb6": 4}, "checks": {"\u652f\u7968": 1}, "displeased": {"\u5f9e\u4f86": 1}, "stomachache": {"\u80c3\u75db": 2, "": 1}, "strength": {"\u529b\u6c14": 2, "\u5b9e\u529b": 1}, "scores": {"\u5206\u6570": 1}, "though": {"": 1, "\u731c\u5f97\u5230": 1, "\u5c3d\u7ba1": 1, "\u5bf9\u8bdd": 1}, "CDs": {"\u4e86\u807d": 1, "CD": 3}, "underrated": {"\u91cd\u8981\u6027": 1}, "messages": {"\u8a0a\u606f": 1}, "inflexible": {"\u6b7b\u677f": 1}, "limit": {"\u8d85\u901f": 2}, "supper": {"\u665a\u9910": 2, "\u665a": 5, "\u5403\u665a\u996d": 1, "\u665a\u996d": 1}, "ladder": {"\u68af\u5b50": 2}, "War": {"\u6218\u4e89": 1}, "agent": {"\u4e07\u4e00": 1}, "literal": {"\u5b57\u9762": 1}, "easier": {"\u7c21\u55ae": 2, "\u65e9\u9ede": 1, "\u7b80\u5355": 1}, "astonishment": {"\u4ee4": 1}, "losses": {"\u640d\u5931": 2}, "risk": {"\u5192": 2, "\u5192\u9669": 1, "\u98ce\u9669": 3, "\u5192\u7740\u5371\u9669": 1, "\u5192\u8457": 1}, "concerned": {"\u6d53": 1, "\u64d4\u5fc3": 2, "\u62c5\u5fc3": 1}, "China": {"\u4e2d\u56fd": 5, "\u4e2d\u570b": 7}, "nodded": {"\u70b9\u5934": 1}, "fruit": {"\u6c34\u679c": 12, "\u5403\u6c34\u679c": 2}, "Venice": {"\u5a01\u5c3c\u65af": 2}, "thick": {"\u7a20": 1}, "declined": {"\u5a49\u62d2": 1}, "Help": {"\u96a8\u4fbf": 2, "\u5403": 1, "\u5e2e\u5e2e": 1}, "chipped": {"\u51d1\u4efd\u5b50": 1}, "noon": {"\u4e2d\u5348": 13}, "reasons": {"\u7406\u7531": 2}, "lately": {"\u6700\u8fd1": 8, "": 1}, "hand": {"\u624b\u91cc": 5, "\u624b": 3}, "inviting": {"\u9080\u8bf7": 1}, "rules": {"\u9075\u5b88\u89c4\u5219": 5, "\u898f\u5247": 2, "\u89c4\u5219": 3, "\u89c4\u77e9": 1}, "birds": {"\u812b\u9003": 1, "\u6b4c\u5531": 2, "\u5c0f\u9e1f": 1}, "happens": {"\u53d1\u751f": 1, "\u4e0d\u8ad6": 1, "\u5e38\u6709": 1, "\u770b\u6703": 1}, "fussy": {"\u6311\u5254": 1}, "growing": {"\u5de5\u696d": 1}, "Saturdays": {"\u661f\u671f\u516d": 2, "\u9031\u516d": 2}, "moment": {"\u4e00\u6703": 1, "\u4ece\u6ca1": 1, "\u8bf7\u7a0d\u7b49": 1, "\u4e00\u6703\u5152": 2, "\u77ac\u9593": 1, "\u65f6\u523b": 1}, "Trust": {"\u76f8\u4fe1": 2}, "star": {"\u660e\u661f": 1, "\u661f\u661f": 3}, "tasty": {"\u597d\u5403": 1}, "warned": {"\u8b66\u544a": 6}, "lasted": {"\u6301\u7e8c": 3, "\u6301\u7eed": 1}, "whether": {"\u662f\u5426": 10, "\u4e0d\u6765": 1, "\u6709\u6ca1\u6709": 1, "\u6e6f\u59c6\u6703": 1, "\u574f": 2}, "novels": {"\u5c0f\u8bf4": 2, "\u65e0\u804a": 1, "\u5168\u5929": 1, "\u71ac\u591c": 1}, "heroes": {"\u82f1\u96c4": 2}, "Lend": {"\u501f\u7ed9": 1, "\u6709\u94b1": 1}, "passenger": {"\u7bee\u5b50": 1}, "School": {"\u4e0a\u8ab2": 2, "\u4e0a\u8bfe": 2, "\u4e0b\u5468\u4e00": 1}, "calendar": {"\u66c6": 3}, "restroom": {"\u9593": 1, "\u5ec1\u6240": 1, "\u6d17\u624b\u95f4": 1}, "rice": {"\u7c73\u996d": 2, "\u66f4": 2, "\u7c73": 3}, "difficulty": {"\u597d\u4e0d\u5bb9\u6613": 1, "\u56f0\u96e3": 3, "\u89e3\u6c7a": 1}, "Ogai": {"Ogai": 1}, "absorbed": {"\u8ff7\u4e0a": 1, "\u4e13\u6ce8": 1, "\u6c89\u8ff7\u4e8e": 1}, "clouds": {"\u5802\u4e0a": 1, "\u9ed1": 1, "\u4e91": 1, "\u4e4c\u4e91\u5bc6\u5e03": 1, "\u96f2\u6bd4": 1}, "until": {"\u624d": 1, "": 3, "\u7b49\u5230": 3, "\u76f4\u5230": 8, "\u4e4b\u524d": 2, "\u524d\u6765": 1}, "Chocolate": {"\u9435\u8cea": 2}, "spinach": {"\u83e0\u83dc": 4}, "frightening": {"\u5687": 1}, "candy": {"\u591a\u7cd6": 1, "\u7cd6\u679c": 2, "\u7cd6": 1, "\u751c\u98df": 1}, "richer": {"\u9547\u91cc": 1, "\u9322": 1}, "article": {"\u6587\u7ae0": 3, "\u7bc7\u6587\u7ae0": 1}, "Answer": {"\u63a5\u807d": 1, "\u56de\u7b54": 1}, "vodka": {"\u4f0f\u7279\u52a0": 2}, "costs": {"\u9ed1": 1, "\u5341\u5143": 1, "\u964d\u4f4e\u6210\u672c": 1, "\u91cd\u8981": 1}, "Keep": {"\u8fdb\u6765": 1, "\u53f3\u4fa7": 1, "\u7559": 2, "\u7ee7\u7eed": 3, "\u575a\u6301": 1}, "group": {"\u4e00\u7d44": 1, "\u56e2": 1, "\u4e00\u7fa4": 1, "\u770b\u5230": 1, "\u6210\u7fa4": 1}, "someday": {"\u67d0": 1, "\u4e00\u5929": 2, "\u6709\u671d\u4e00\u65e5": 1}, "During": {"\u6c64\u59c6": 1}, "invitations": {"\u53d1\u51fa": 1}, "ultimate": {"\u6700\u7ec8": 1}, "minute": {"\u60f3\u60f3": 1, "\u5206\u9418": 2, "\u4e00\u4e0b": 4, "\u4e00\u5206\u949f": 2, "\u4e00\u6703\u5152": 1, "": 1, "\u96a8\u6642": 1, "\u91ab\u751f\u99ac": 1}, "wagging": {"\u6416\u8457": 1}, "tail": {"\u5c3e\u5df4": 3}, "tough": {"\u786e\u5b9e": 1, "\u96be\u7f20": 1}, "hiking": {"\u8fdc\u8db3": 1}, "mansion": {"\u5c31\u662f": 1}, "conform": {"\u9075\u5b88\u89c4\u5219": 1}, "source": {"\u5f00\u6e90": 1}, "breaking": {"\u62c6": 1, "\u8fdd\u6cd5": 1}, "denied": {"\u5426\u8ba4": 2, "\u5426\u8a8d": 1}, "commerce": {"\u5927\u5742": 1, "\u5546\u696d": 1}, "boys": {"\u7537\u5b69\u5b50": 2, "\u7537\u751f": 5, "\u7537\u5b69": 1}, "Dry": {"\u5e72\u67f4": 1}, "astonished": {"\u60ca\u8bb6": 1, "\u611f\u5230": 1}, "Most": {"\u5927\u591a": 1, "\u5927\u591a\u6570": 2, "\u5927\u90e8\u4efd": 1, "\u591a\u6570": 1, "\u5927\u90e8\u5206": 1}, "surrender": {"\u5be7": 1, "\u6295\u964d": 2}, "Baikal": {"\u4fc4\u7f85\u65af": 2}, "deepest": {"\u6700\u6df1": 3, "\u6700\u6df1\u5904": 1}, "philosopher": {"\u54f2\u5b66\u5bb6": 1}, "hopeless": {"\u9806\u9053": 1}, "kids": {"\u5c0f\u5b69": 2, "\u5b69\u5b50": 5, "\u4ed6": 1, "\u66ff": 1, "\u5979\u4eec": 1}, "smoke": {"\u5438\u70df": 4, "\u5438\u7159": 1, "\u7159": 1, "\u65e2": 1}, "switched": {"\u4ea4\u6362": 1}, "hottest": {"\u6700\u71b1": 1}, "hating": {"\u6b62\u4f4f": 1}, "depended": {"\u94b1\u5e01": 1}, "metal": {"\u91d1\u5c5e": 3}, "worship": {"\u62dc\u5802": 1}, "progress": {"\u9032\u6b65": 5, "\u53d6\u5f97": 1, "\u8fdb\u6b65": 2}, "Welcome": {"\u6b22\u8fce": 4, "\u4f86\u5230": 1}, "suggesting": {"\u5be6\u969b": 1}, "wiped": {"\u8138\u4e0a": 1}, "matches": {"\u7528\u5c3d": 1}, "wake": {"\u662f": 1, "\u53eb\u9192": 3, "\u53ef\u4e0d\u53ef\u4ee5": 2, "\u5b30\u5152": 1, "\u8bbe\u6cd5": 1, "\u5e7e\u9ede": 2, "": 1, "\u9192\u9192": 1}, "customer": {"\u987e\u5ba2": 1}, "Honshu": {"\u672c\u5dde": 1}, "referring": {"\u6307": 2}, "31st": {"31": 1}, "exist": {"\u5b58\u5728": 4, "\u6e90\u6cc9": 1, "": 1}, "flag": {"\u65d7\u5b50": 1, "\u7f8e\u570b\u570b\u65d7": 1}, "skip": {"\u9003\u5b78": 2}, "diet": {"\u8282\u98df": 3, "\u6ca1\u6709": 1, "\u7bc0\u98df": 1, "\u51cf\u80a5": 2}, "Smiths": {"\u592b\u5a66": 1}, "counting": {"\u6307\u671b": 3, "\u4f9d\u8d56": 1, "\u7b97\u6709": 1}, "Throughout": {"\u6cbb\u7597": 1}, "cancer": {"\u764c\u75c7": 6}, "helping": {"\u5e6b\u5fd9": 1, "\u5e2e": 1, "\u96be\u9053": 2, "\u4e00\u7897": 1, "\u7ed9\u4e88": 1}, "foundation": {"\u8b20\u8a00": 1}, "concentrate": {"\u96c6\u4e2d": 1, "\u6211": 2, "\u6ce8\u610f\u529b": 1}, "chose": {"\u9009\u62e9": 1, "\u9078": 1}, "guys": {"\u4f60\u4eec": 5, "\u5bb6\u4f19": 3, "\u5565": 1, "\u4f60\u5011": 4}, "Wipe": {"\u7eb8\u5dfe": 1, "\u64e6\u64e6": 1}, "Strawberries": {"\u8349\u8393": 1, "\u552e\u50f9\u9ad8": 1}, "brains": {"\u597d\u4f7f": 1}, "snakes": {"\u86c7": 5}, "masterpiece": {"\u5b83": 1, "\u6770\u4f5c": 1}, "mad": {"\u90a3\u6642\u5019": 1, "\u751f\u6c14": 3, "\u75af": 2, "\u760b": 1, "\u4f1a": 1, "\u6c14": 4, "\u751f\u6c23": 1}, "voices": {"\u8072\u97f3": 1}, "slept": {"\u7761": 4, "\u7947": 1, "\u51e0\u5c0f\u65f6": 1}, "volcano": {"\u706b\u5c71": 1}, "remove": {"\u9664\u9508": 1}, "chickens": {"\u4e09\u53ea": 1}, "extended": {"\u505c\u7559": 1, "\u4f38\u957f": 1}, "great": {"\u771f\u662f": 4, "\u5927\u4e8b": 1, "\u5b9e\u7528": 1, "\u4f1f\u5927": 1}, "straightforward": {"\u76f4\u63a5": 1}, "weigh": {"\u91cd": 1}, "suitcase": {"\u884c\u674e": 1, "\u624b\u63d0\u7bb1": 5, "\u884c\u674e\u7bb1": 2, "\u591a\u91cd": 1}, "Valuable": {"\u5b9d\u8cb4": 1}, "comment": {"\u8bc4\u8bba": 1, "\u65e0\u53ef\u5949\u544a": 1, "\u9069": 1}, "onto": {"\u4e00\u5217": 1}, "row": {"\u7b2c\u4e00\u6392": 1, "\u6392\u6210": 1}, "Valentine": {"\u60c5\u4eba\u8282": 2}, "brave": {"\u52c7\u6562": 6, "\u4f46": 1}, "climate": {"\u65e5\u672c": 1, "\u9069\u61c9": 1, "\u6c14\u5019": 1}, "mild": {"\u603b\u4f53": 1, "\u6696\u548c": 1}, "grapes": {"\u8461\u8404": 4}, "remembers": {"\u62bd\u70df": 1}, "fair": {"\u516c\u5e73": 3, "\u66f8\u5c55": 1}, "port": {"\u6e2f\u53e3": 1, "\u79d1\u6bd4": 1}, "dentist": {"\u7259\u533b": 4, "\u91ab": 1}, "translating": {"\u7ffb\u8b6f": 2}, "Boil": {"\u71d2\u958b": 1}, "spare": {"\u5269\u4e0b": 1, "\u591a\u9918": 1, "\u9592\u6687": 1}, "1860": {"1860": 1}, "ear": {"\u8033\u6735": 3, "\u4e00": 1}, "mountains": {"\u5c71\u91cc": 1, "\u62cd\u5c71": 1, "\u5c71\u88e1": 1}, "driver": {"\u5f00\u8f66": 1, "\u53f8\u6a5f": 1, "\u53f8\u673a": 3}, "doubtful": {"\u4f1a\u6765": 1}, "around": {"\u5468\u570d": 4, "\u9644\u8fd1": 3, "\u8655": 1, "": 1, "\u56db\u8655": 1}, "laughs": {"\u7b11": 1, "\u5f97": 2}, "crowd": {"\u4eba\u7fa4": 7, "\u4e00\u5927\u7fa4": 1}, "gathered": {"\u805a\u96c6": 1}, "sat": {"\u5750\u5728": 11, "\u684c\u908a": 1, "\u5750\u4e0b": 2, "\u739b\u4e3d": 1, "\u5750": 3}, "cases": {"\u594f\u6548": 1}, "brakes": {"\u524e\u8eca": 1, "\u5239\u8f66": 2}, "seeing": {"\u898b": 2, "\u7ea6\u4f1a": 1, "\u770b\u898b": 1, "\u8457\u898b": 1, "\u770b\u5230": 1, "\u522e\u76ee\u76f8\u770b": 1, "\u54ea\u5152": 1}, "soldier": {"\u58eb\u5175": 3}, "shout": {"\u558a\u53eb": 2, "\u8072": 1, "\u4e0d\u8bb8": 1, "\u543c": 1}, "officers": {"\u62d8\u6355": 1}, "OK": {"\u6c92\u4e8b": 2, "": 1, "\u6b63\u5e38": 1, "\u597d": 1, "\u4fc2": 1, "\u6ca1\u5173\u7cfb": 1, "\u4e00\u5207\u987a\u5229": 1, "\u65b9\u4fbf": 1}, "119": {"\u706b\u707e": 1}, "childhood": {"\u7ae5\u5e74": 2, "\u4ece\u5c0f": 1}, "Wonderful": {"\u5f88\u68d2": 1}, "forgetting": {"\u5fd8\u8a18": 3}, "debt": {"\u503a": 1}, "Thousands": {"\u6210\u5343\u4e0a\u4e07": 2, "\u6578\u5343": 1}, "desperate": {"\u5904\u5728": 1}, "pair": {"\u4e00\u96d9": 2, "\u4e00\u53cc": 3}, "doorbell": {"\u95e8\u94c3": 2, "\u9580\u9234": 1}, "circus": {"\u7b2c\u4e00\u6b21": 1}, "Chinese": {"\u4e2d\u6587": 9, "\u4e2d\u570b": 2}, "club": {"\u793e": 2, "\u4ff1\u4e50\u90e8": 7, "\u6210\u54e1": 3, "\u4ff1": 1, "\u4ff1\u6a02\u90e8": 1}, "bark": {"\u72d7\u4f1a": 1}, "earned": {"\u6559\u66f8": 1, "\u751f": 1, "\u597d\u591a\u94b1": 1, "\u8d5a": 1}, "serpent": {"\u590f\u5a03": 1}, "9": {"9": 1, "\u4e5d\u9ede": 2, "\u4e5d\u70b9": 1, "": 1}, "loved": {"\u7231": 5, "": 1, "\u611b": 1}, "thinks": {"\u8ba4\u4e3a": 2, "\u4e86\u4e0d\u8d77": 1}, "aware": {"\u591a\u9ebc": 1, "\u8b58\u5230": 1, "\u771f": 1, "\u751f\u4e86\u75c5": 1}, "answered": {"\u56de\u4fe1": 2, "\uff02": 1, "\u908a": 1, "\u56de\u7b54": 1, "\u6c92\u4eba": 1, "\u6ca1\u56de": 2}, "taught": {"\u6559": 1, "\u6559\u6211\u5982\u4f55": 2, "\u5b78\u6cd5": 1, "\u5927\u90e8\u4efd": 1, "": 1}, "underestimated": {"\u4f4e\u4f30": 1}, "knowledge": {"\u61c2\u6cd5": 1, "\u8bfb\u61c2": 1, "\u77e5\u8b58": 1, "\u65e5\u6587": 1, "\u64da": 1}, "sailing": {"\u5e06\u8239": 1}, "upcoming": {"\u610f\u56fe": 1}, "Listen": {"\u542c": 1, "\u4ed4\u7ec6\u542c": 1}, "amplifier": {"\u63da": 1}, "teach": {"\u6559": 6, "\u6388": 1}, "tooth": {"\u4ee5\u773c\u8fd8\u773c": 1, "\u773c": 1}, "containers": {"\u5bb9\u5668": 1}, "ordered": {"\u4e2d\u9910": 2, "\u8ba2": 2, "\u9ede": 3, "\u547d\u4ee4": 1, "\u8a02\u8cfc": 3}, "act": {"\u884c\u52a8": 4}, "Italian": {"\u4e00\u4e2a": 1, "\u7fa9": 1}, "knocking": {"\u6572\u95e8": 3, "\u6572\u9580": 1}, "archer": {"\u5c04\u624b": 1}, "deer": {"\u9e7f": 2}, "sound": {"\u8d77\u4f86": 1, "\u4e00\u8072": 1, "\u8072\u97f3": 2, "\u6200\u611b": 1, "\u9ede\u602a": 1, "\u6e6f\u59c6\u807d": 1}, "motorcycle": {"\u6469\u6258\u8f66": 3, "\u6469\u6258": 3}, "mobile": {"\u624b\u6a5f": 1, "\u624b\u673a": 1}, "starving": {"\u997f\u6b7b": 1, "\u98e2\u9913": 1}, "proactive": {"\u79ef\u6781\u4e3b\u52a8": 1}, "fully": {"\u9f4a": 1, "\u6e05\u767d": 1}, "walker": {"\u8d70\u8def": 1}, "rung": {"\u6309\u9580\u9234": 1, "\u949f\u54cd": 1, "\u6ca1\u54cd": 1}, "scary": {"\u6050\u6016": 1}, "heights": {"\u6050\u9ad8": 1, "\u6050": 1}, "tires": {"\u7206": 1}, "armed": {"\u6b66\u88c5": 1, "\u6b66\u5668": 1}, "stairs": {"\u6a13\u68af": 2, "\u4e0a\u697c": 1, "\u4e0b\u6a13": 1}, "utmost": {"\u81f3\u5173\u91cd\u8981": 1}, "phoned": {"\u6c92": 1}, "running": {"\u8dd1\u6b65": 2, "\u5411\u7740": 1, "\u8dd1": 6, "\u5feb\u7528": 1, "\u516c\u4ea4": 1}, "shave": {"\u5243": 1, "\u9b0d": 3}, "Mistakes": {"\u5ffd\u89c6": 1}, "higher": {"\u5c3d": 1, "\u4f53\u6e29": 1}, "Saturday": {"\u661f\u671f\u516d": 4, "\u9031\u516d": 1, "\u516d": 1, "\u5468\u516d": 1}, "Birmingham": {"\u4f2f\u660e\u7ff0": 1}, "3": {"3": 6}, "Actions": {"\u97ff\u4eae": 1, "\u800c\u8a00": 1, "\u884c\u52d5\u52dd": 1}, "arms": {"\u62b1": 1, "\u61f7\u88e1": 1, "\u6000\u4e2d": 1}, "Compare": {"\u6bd4\u8f83": 1, "\u6bd4\u8f03": 2}, "answers": {"\u7b54\u6848": 3}, "settled": {"\u5b9a\u5c45": 1, "\u89e3\u6c7a": 1, "\u89e3\u51b3": 1, "\u5b89\u5bb6\u843d\u6237": 1}, "tours": {"\u4e00\u65e5": 1, "\u5168\u65e5": 1}, "cab": {"\u8a08\u7a0b": 2, "\u91cd\u4f24": 1, "\u51fa\u79df": 1, "\u8a08\u7a0b\u8eca": 1}, "illegal": {"\u9055\u6cd5": 1}, "intended": {"\u751a\u9ebc": 1, "\u672c\u4f86": 1}, "taxes": {"\u7a05": 1, "\u7f34\u7a0e": 1}, "winning": {"\u7372\u52dd": 1, "\u8d0f": 1}, "ride": {"\u9a91\u9a6c": 3, "\u8f7d": 2, "\u4fbf": 1, "\u9a0e": 2, "\u4e00\u7a0b": 1}, "Orange": {"\u67f3\u6a59\u6c41": 1}, "December": {"\u5341\u4e8c\u6708": 2}, "especially": {"\u7279\u5225": 2, "": 1}, "shining": {"\u7167\u8000": 1, "\u9633\u5149": 1}, "keys": {"\u94a5\u5319": 4, "\u9470\u5319": 3}, "closed": {"\u5c01\u9589": 1, "\u95ed\u4e0a": 2, "\u95dc\u8457": 1, "\u95ed\u4e0a\u773c\u775b": 1, "\u95a4": 1, "\u5173": 1, "\u7a97\u5b50": 1}, "cell": {"\u624b\u6a5f": 4, "\u624b\u673a": 1}, "liar": {"\u9a97\u5b50": 1, "\u9a19\u5b50": 2}, "40": {"40": 3}, "subjects": {"\u79d1\u76ee": 2}, "beside": {"\u65c1\u8fb9": 4}, "unfortunate": {"\u53ef\u6190": 1}, "robbed": {"\u6436\u8d70": 1, "\u5bb6\u9280\u884c": 1}, "Sales": {"\u7ffb\u756a": 1, "\u92b7\u552e": 1}, "repaired": {"\u661f\u671f\u4e94": 1, "\u96fb\u8996\u6a5f": 1, "\u62ff\u53bb": 1, "\u4fee": 1, "\u4fee\u7406": 2}, "brings": {"\u8cfa\u9032": 1}, "extra": {"\u984d": 2, "\u989d\u5916": 1, "\u591a\u4f59": 1}, "coworkers": {"\u6211\u5011": 1, "\u540c\u4e8b": 1}, "bird": {"\u9ce5": 5, "\u79f0\u547c": 1, "\u9e1f\u513f": 1}, "citizens": {"\u8001\u767e\u59d3": 1}, "Whichever": {"\u54ea\u6761": 1}, "couple": {"\u4e24\u5929": 1, "\u592b\u5987": 1, "\u5e7e\u6b21": 1, "\u500b": 1, "\u5e7e\u5929": 1}, "rumor": {"\u50b3\u805e": 2}, "lamp": {"\u4e00\u76cf\u706f": 1, "\u96fb\u71c8": 1}, "closing": {"\u95dc\u9580": 1, "\u95dc\u7a97": 1, "\u95dc\u4e0a": 1}, "cellular": {"\u4e00\u652f": 1}, "defibrillator": {"\u9664\u98a4": 1}, "particular": {"\u8b1b\u7a76": 1, "\u7279\u522b": 1}, "traveling": {"\u65c5\u884c": 9, "\u6ca1\u53bb": 1}, "value": {"\u5f53\u66f4": 1, "\u770b\u91cd": 1}, "cloud": {"\u4e91": 2}, "knitting": {"\u7f16\u7ec7": 1}, "lenses": {"\u96b1\u5f62": 2}, "Advertisements": {"\u616b\u607f": 1}, "Cheese": {"\u5976": 1}, "shot": {"\u5c04\u4e2d": 1, "\u69cd\u64ca": 1, "\u5c04": 2}, "tags": {"\u689d": 1}, "application": {"\u4e86\u5165": 1, "\u7533\u8acb": 1}, "jewelry": {"\u9996\u9970": 1, "\u73e0\u5bf6": 1}, "ribbon": {"\u4e0a\u7ed1": 1}, "sake": {"\u6211": 1}, "reporter": {"\u8bb0\u8005": 1, "\u8a18\u8005": 1}, "hopes": {"\u5c31": 1, "\u5e0c\u671b": 1, "\u505a\u5230": 2}, "deprived": {"\u5931\u660e": 1}, "useful": {"\u6709\u7528": 9}, "animal": {"\u52a8\u7269": 5, "\u4e00\u7121": 1}, "Picasso": {"\u7562\u52a0\u7d22": 1}, "resign": {"\u8fad\u8077": 3, "": 1, "\u8fad\u53bb": 1, "\u653e\u5f03": 1}, "ceases": {"\u6240\u4f5c\u6240\u4e3a": 1}, "tremendous": {"\u5de8\u5927": 1}, "sides": {"\u53cc\u65b9": 1, "\u5169\u9762": 1, "\u652f\u6301": 1}, "obey": {"\u4e4b\u5916": 1, "\u542c\u4ece": 1, "\u670d\u4ece": 1, "\u670d": 3, "\u6211\u8bdd": 1}, "sawing": {"\u952f": 1}, "professor": {"\u6559\u6388": 4, "\u5927\u5b66\u6559\u6388": 2}, "Harvard": {"\u54c8\u4f5b\u5927\u5b66": 2, "\u54c8\u4f5b": 7}, "friendship": {"\u53cb\u8c0a": 2, "": 1, "\u53cb\u8abc": 1, "\u53cb\u60c5": 1}, "sales": {"\u9500\u552e": 2}, "section": {"\u90e8\u95e8": 3}, "jeep": {"\u5409\u666e\u8f66": 1}, "voice": {"\u58f0\u97f3": 6, "\u5c0f\u70b9\u58f0": 1}, "tonal": {"\u6f22\u8a9e": 1}, "intervenes": {"": 1}, "direction": {"\u65b9\u5411\u611f": 1, "\u5357\u8f95\u5317\u8f99": 1}, "served": {"\u4f55\u65f6\u4f55\u5730": 1}, "audience": {"\u542c\u4f17": 2, "\u89c2\u4f17": 2}, "interest": {"\u8208\u8da3": 4, "\u4e0d\u611f\u5174\u8da3": 1}, "Germanic": {"\u65e5\u8033\u66fc": 1}, "intention": {"\u4e00\u5206\u94b1": 1, "\u521d\u8877": 1, "\u672c\u610f": 1, "\u6545\u610f": 1}, "rule": {"\u89c4\u77e9": 1, "\u89c4\u5219": 1, "\u89c4\u5b9a": 1}, "obliged": {"\u4e0d\u5f97\u4e0d": 2}, "tip": {"\u8bf4\u51fa": 1, "\u4f60\u4e9b": 1, "\u820c\u5c16": 1}, "voted": {"\u6295": 2}, "respond": {"\u56de\u5e94": 1, "\u56de\u7b54": 1}, "serial": {"\u8fde\u73af": 2}, "admission": {"\u5165": 1, "\u5165\u5834\u8cbb": 1}, "Salt": {"\u8150\u721b": 1}, "founded": {"\u5efa\u7acb": 1, "\u5275\u7acb": 1, "\u5efa": 1}, "trap": {"\u8bbe": 2}, "reasonable": {"\u901a\u60c5\u8fbe\u7406": 1, "\u4e0d\u5408\u7406": 1}, "stays": {"\u71ac\u591c": 1}, "luggage": {"\u884c\u674e": 6, "\u60a8": 1}, "refuse": {"\u62d2\u7d55": 1, "\u822c": 1}, "tiptoed": {"\u8e2e": 1}, "Sooner": {"\u9072\u65e9": 2}, "herself": {"\u5b88\u8457": 1, "\u81ea\u5df1": 1, "\u7368\u81ea": 3, "\u81ea\u5ea6": 1}, "Were": {"\u90a3\u6642": 1, "\u89aa": 1, "\u6628\u5929\u65e9\u4e0a": 1, "\u5f53\u65f6": 1, "\u6e96": 1}, "Foster": {"\u798f\u65af\u7279": 1}, "whale": {"\u6401\u6d45": 1, "\u6d3b\u751f\u751f": 1}, "Smiles": {"\u8868\u793a": 1}, "pressure": {"\u58d3\u529b": 2, "\u91cf\u91cf": 1, "\u4f4e\u8840\u538b": 1, "\u8840\u538b": 1, "\u9ad8\u8840\u538b": 1}, "persuade": {"\u8bf4\u670d": 1, "\u52f8": 1}, "regular": {"\u5b9a\u671f": 1, "\u56fa\u5b9a": 2}, "comfortable": {"\u8212\u670d": 5, "\u8212\u9069": 1}, "race": {"\u50cf\u662f": 1, "\u8dd1\u6b65": 1, "\u6e6f\u59c6\u8cfd": 1, "\u6bd4\u8d5b": 3}, "pressed": {"\u9215\u7136": 1}, "hesitation": {"\u6beb\u4e0d\u72b9\u8c6b": 1}, "resemblance": {"\u8ba9": 1}, "squeezed": {"\u69a8": 1, "\u69a8\u6c41": 1}, "avoid": {"\u907f\u514d": 2, "\u907f\u5f00": 1}, "taken": {"\u7a7f\u9519": 1, "\u5176\u5b9e": 1, "\u642d\u932f": 2, "\u7167": 2, "\u67b6\u98de\u673a": 1, "\u62ff\u9519": 1, "\u957f\u65f6\u95f4": 1, "\u90a3\u4e9b": 1}, "captive": {"\u56da\u7981": 1}, "disliked": {"\u559c\u6b61": 1}, "tomatoes": {"\u8543\u8304": 2, "\u756a\u8304": 1}, "melons": {"\u74dc": 1}, "discussion": {"\u5f97\u51fa": 1, "\u8a0e\u8ad6": 4}, "pepperoni": {"\u7fa9\u5f0f": 1}, "clearly": {"\u6e05\u695a": 5, "\u786e\u5b9e": 1}, "gambling": {"\u8d4c\u535a": 2, "\u8ced\u535a": 1}, "Anything": {"\u65b0\u9c9c\u4e8b": 1}, "Karuizawa": {"\u4e95\u6fa4": 2}, "request": {"\u8bf7\u6c42": 2, "\u8acb\u6c42": 2}, "suit": {"\u5957": 1, "\u897f\u88dd": 1, "\u897f\u88c5": 3, "\u65b9\u4fbf": 1, "\u65b0\u897f": 1, "\u4e00\u5957": 1, "\u505a\u4e00\u5957": 1, "\u884c": 1}, "Whenever": {"\u8ba9": 1}, "newspaperman": {"\u62a5\u4e1a": 1}, "ordinary": {"\u666e\u901a": 1, "\u5c0b\u5e38": 1, "\u773e": 1}, "Almost": {"\u51e0\u4e4e": 3, "\u5e7e\u4e4e": 2}, "heartless": {"\u65e0\u60c5": 1}, "Englishman": {"\u8bef\u8ba4\u4e3a": 1, "\u8aa4\u4ee5": 1}, "handy": {"\u65b9\u4fbf": 1, "\u80fd\u6d3e": 1}, "House": {"\u773e\u8b70": 1}, "listened": {"\u4ed4\u7d30": 1, "\u9580\u4e0a": 1}, "mailbox": {"\u4fe1\u7bb1": 2}, "Switzerland": {"\u745e\u58eb": 7}, "situated": {"\u5965\u5730\u5229": 1}, "Germany": {"\u5fb7\u56fd": 6, "\u5fb7\u570b": 5}, "First": {"\u9996\u5148": 1}, "missing": {"\u5c11": 4, "\u6ca1\u5c11": 1, "\u76ae\u593e": 1, "\u5931\u8e2a": 1}, "jealous": {"\u5ac9\u5992": 4, "\u5992\u5fcc": 1}, "usual": {"\u5f80\u5e38": 3, "\u5e73\u5e38": 1}, "Something": {"\u63a1\u53d6": 1, "\u51fa": 3, "\u6b63": 1, "\u804a\u80dc\u4e8e\u65e0": 1, "\u6bdb\u75c5": 1}, "cross": {"\u7a7f\u8fc7": 4}, "influences": {"\u5f71\u54cd\u529b": 1}, "Hold": {"\u7334\u6025": 1, "\u575a\u6301": 1, "\u63e1\u4f4f": 1}, "kiss": {"\u4eb2": 1, "\u6211": 1}, "pointless": {"\u7231\u60c5": 1}, "apply": {"\u4e0d\u7b26": 1}, "fill": {"\u88dd\u6eff": 2}, "hoping": {"\u6703\u4f86": 1}, "noticed": {"\u6ce8\u610f": 5, "\u9032\u53bb": 1}, "means": {"\u610f\u601d": 1, "\u6839\u672c": 1, "\u6211\u81ea": 1, "\u91cd\u5927": 2}, "fluently": {"\u6d41\u5229": 2, "\u6d41\u66a2": 1}, "Shut": {"\u95ed": 1, "\u9589\u5634": 1, "\u5173\u95e8": 1, "\u8acb\u95dc": 1, "\u628a\u95e8": 1}, "beating": {"\u5fc3\u8df3": 2, "\u6253\u7740": 1}, "deceive": {"\u6b3a\u9a19": 1}, "nail": {"\u91d8\u5b50": 1}, "comic": {"\u6f2b\u756b": 1}, "nap": {"\u5c0f\u61a9": 1}, "Everything": {"\u4e00\u5207": 2, "\u5c31\u7eea": 2, "\u8b8a\u6210": 1, "\u5c6c": 1, "\u987a\u5229": 1}, "earthquake": {"\u5730\u9707": 7}, "suffer": {"\u53d7\u82e6": 1}, "refrigerator": {"\u51b0\u7bb1": 4}, "examinations": {"\u5b66\u671f": 1}, "fashions": {"\u6f6e\u6d41": 1, "\u6642\u5c1a": 1}, "tense": {"\u7d27\u5f20": 1}, "unknown": {"\u4e0d\u660e": 1, "\u85dd\u8853\u5bb6": 1}, "expecting": {"\u9810\u8a08": 1, "\u671f\u5f85": 1, "\u4f86\u4fe1": 1}, "digital": {"\u5167\u5efa": 1, "\u6570\u7801\u76f8\u673a": 1}, "happening": {"\u6b63": 4, "\u51fa": 1, "\u53d1\u751f": 1, "\uff0d": 1}, "prejudice": {"\u5916\u7c4d": 1}, "quotes": {"\u5f15\u7528": 1}, "Shakespeare": {"\u838e\u58eb\u6bd4\u4e9e": 3}, "kicked": {"\u7403\u9580": 1, "\u8e22\u5f00": 1}, "Korean": {"\u5b78\u671d": 1, "\u97e9\u8bed": 1}, "apartment": {"\u516c\u5bd3": 5, "\u79df\u623f\u5b50": 1}, "fourth": {"\u56db\u6a13": 1}, "greatest": {"\u7f3a\u70b9": 1}, "welcome": {"\u8209\u8fa6": 1, "\u611f\u8c22": 1}, "consideration": {"\u7b2c\u4e00\u4ef6": 1, "\u8003\u8651\u4e00\u4e0b": 1, "\u4ed4\u7d30": 1}, "Unfortunately": {"\u9057\u61be": 1, "\u4e0d\u5e78": 2}, "fitting": {"\u54ea\u91cc": 1}, "universal": {"\u4e16\u754c\u6027": 1}, "cried": {"": 2, "\u54ed": 2, "\u4e00\u908a": 1, "\u90fd": 1}, "Pardon": {"\u4e0d\u8d77": 1}, "Quit": {"": 1, "\u6d3b": 1}, "capitals": {"\u5927\u5199\u5b57\u6bcd": 1, "\u5199\u5199": 1}, "deteriorating": {"\u6076\u5316": 1}, "retiring": {"\u9000\u4f11": 1}, "participants": {"\u53c2\u4e0e\u8005": 1, "\u53c3\u52a0\u8005": 1}, "least": {"\u6beb\u65e0\u610f\u4e49": 1, "\u81f3\u5c11": 5}, "handle": {"\u538b\u529b": 1, "\u64cd\u63a7": 1, "\u4f60": 1, "\u5c0d\u5f85": 1, "\u8655\u7406": 1, "\u89e3\u51b3": 1}, "introduced": {"\u4ecb\u7d39": 6, "\u4ecb\u7ecd": 1}, "Thanks": {"\u4e24\u4f4d": 1, "\u8c22\u8c22": 6, "\u8c22\u8c22\u60a8": 1, "\u611f\u8c22": 1, "\u5149\u81e8": 1}, "neighborhood": {"\u5c0f\u533a": 1, "\u9886": 1, "\u76f8\u5904": 1, "\u90bb\u8fd1": 1, "\u9644\u8fd1": 1, "\u9130\u5c45": 1}, "Tears": {"\u70ed\u6cea\u76c8\u7736": 1}, "ladies": {"\u9152\u6c34": 1, "\u4e94\u4e2a": 1}, "rewrite": {"\u91cd\u5beb": 1}, "cookies": {"\u997c\u5e72": 1, "\u9905": 1, "\u66f2\u5947": 1}, "order": {"\u4e0d\u8ba2": 1, "\u58de": 1, "": 2}, "Continent": {"\u5927\u9678": 1}, "senator": {"\u8bae\u5458": 1}, "were": {"\u4e4b\u524d": 1, "\u4e0d": 1, "\u4e0d\u9519": 1}, "Poor": {"\u72b6\u51b5\u4e0d\u4f73": 1}, "efficient": {"\u65e0\u53ef\u5426\u8ba4": 1}, "smiled": {"\u7b11": 3, "\u7b11\u4e86\u7b11": 1, "\u5fae\u7b11": 2}, "Go": {"\u8d70\u958b": 2, "\u7e7c\u7e8c": 1, "\u8d70": 2, "\u73a9\u5427": 1, "\u56de\u8fa6": 1, "\u8d76\u5feb": 1, "\u79bb\u5f00": 1, "\u56de\u5bb6\u5427": 1}, "fiction": {"\u79d1\u5e7b": 1}, "Yesterday": {"\u6628\u5929": 3}, "relevant": {"\u4e2d\u80af": 1, "\u5173\u7cfb": 1}, "entered": {"\u8fdb": 1, "\u6458\u4e0b": 1, "\u9032\u4f86": 1, "\u8fdb\u5165": 1}, "pie": {"\u82f9\u679c\u6d3e": 1, "\u6d3e": 3, "\u9921\u9905": 2}, "Walk": {"\u8d70\u5feb": 1}, "quietly": {"\u975c\u975c\u5730": 1, "\u5b89\u975c": 1, "\u6084\u6084\u5730": 1}, "@-@": {"\u7d1a": 1, "\u5750\u8f66": 1}, "insufferable": {"\u96be\u4ee5\u5fcd\u53d7": 1}, "independent": {"\u7368\u7acb": 1}, "collection": {"\u6536\u85cf": 1, "\u6536\u96c6": 1}, "pick": {"\u8d77": 1, "\u63a5": 6, "\u53bb": 1}, "envy": {"\u5ac9\u5992": 1}, "wherever": {"\u60f3\u53bb": 1, "\u5730\u65b9": 1}, "grammatical": {"\u6587\u6cd5": 1}, "seated": {"\u4e00\u4f1a": 1, "\u5750\u8457": 1}, "weatherman": {"\u6c14\u8c61\u5b66\u5bb6": 1}, "somebody": {"\u6709\u4eba": 3, "\u67d0\u4eba": 1, "\u90a3\u8fb9": 1, "\u4e2a\u4eba": 1}, "relieve": {"\u8a9e\u80fd": 1}, "circumstances": {"\u51fa\u56fd": 1}, "pet": {"\u990a\u4e00\u96bb\u9e1a\u9d61": 1}, "salary": {"\u5de5\u8d44": 3, "\u85aa\u6c34": 4}, "drama": {"\u6232\u5287": 2}, "loans": {"\u5ba2\u6237": 1}, "ones": {"\u6700\u5148": 1, "\u7ed3\u4e86\u5a5a": 1}, "absolute": {"\u7d55\u5c0d": 2}, "ski": {"\u5c71\u4e0a": 1}, "crutches": {"\u62d0\u6756": 2}, "principal": {"\u540d\u6821": 1, "\u6821\u957f": 1}, "deals": {"\u505a\u751f\u610f": 1}, "deleted": {"\u5220\u9664": 1, "\u522a": 1}, "file": {"\u6587\u4ef6": 2}, "stuck": {"\u98a8\u66b4\u56f0": 1, "\u88ab": 1, "\u88ab\u56f0": 1, "\u56f0\u4f4f": 1}, "hunger": {"\u98e2\u9913": 2, "\u997f\u6b7b": 1, "\u5145": 1}, "microwave": {"\u5fae\u6ce2\u7089": 1}, "ocean": {"\u6d77": 1}, "progressing": {"\u8fdb\u6b65": 1}, "exercising": {"\u898f\u5f8b": 1}, "drinks": {"\u98f2\u6599": 2, "\u5e7e\u676f": 1, "\u559d": 3}, "league": {"\u8054\u76df": 1}, "following": {"\u4e0b\u5217": 1, "\u8ddf\u8457": 1, "\u8ddf\u8e2a": 1}, "consists": {"\u7ec4\u6210": 2}, "magazines": {"\u8a8c": 5}, "architect": {"\u5efa\u7b51\u5e08": 2}, "disturb": {"\u6253\u6270": 3}, "role": {"\u751f\u6d3b": 1}, "filled": {"\u88dd\u6eff": 4, "\u5145\u6ee1": 1}, "import": {"\u8336\u8449": 1}, "India": {"\u5370\u5ea6": 4, "\u98de\u673a": 1, "\u61c9\u8a72": 1}, "meetings": {"\u4f1a\u8bae": 1, "\u6e05\u6668": 1}, "skirt": {"\u88d9\u5b50": 7}, "temporary": {"\u6682\u65f6": 1}, "realized": {"\u610f\u8b58": 2, "\u73af\u987e\u56db\u5468": 1}, "event": {"\u4e8b\u4ef6": 2, "": 1}, "deadlock": {"\u50f5\u5c40": 1}, "rings": {"\u97ff\u8d77": 2}, "smashed": {"\u6454\u6210": 1, "\u9189": 1}, "pieces": {"\u788e\u7247": 2, "\u4ef6": 1, "\u4e24\u5757": 1}, "narrow": {"\u689d\u8def": 2, "\u6751": 1}, "toothbrush": {"\u7259\u5237": 1}, "capacity": {"\u5ba2\u6eff": 1}, "separately": {"\u5206\u958b": 1}, "fond": {"\u9177\u7231": 1, "\u62cd\u7167\u7247": 1, "\u5927\u6e05\u65e9": 1}, "swims": {"\u6e38\u6cf3": 2, "\u6e38\u5f97": 2}, "Movie": {"\u5f71": 1}, "mouth": {"\u5927\u5634\u5df4": 1, "\u7740": 1, "\u5634": 1, "\u6311": 1, "\u7372": 2, "\u6211": 1}, "fluent": {"\u4e09\u79cd": 1, "\u6d41\u5229": 5, "\u6d41\u66a2": 1}, "Champagne": {"\u9999\u69df": 1}, "cleaner": {"\u5875\u5668": 1}, "dependent": {"\u4f9d\u7136": 1, "\u5543\u8001\u65cf": 1}, "sow": {"\u79cd\u74dc\u5f97\u74dc": 2}, "pry": {"\u79c1\u751f\u6d3b": 1, "\u63a2\u542c": 1}, "bill": {"\u5305\u4ed8": 1, "\u5355": 1, "\u5e33\u55ae": 1, "\u4ed8\u8cec": 1, "\u8d26\u5355": 2, "\u6cd5\u6848": 1}, "treated": {"\u5bf9\u5f85": 3, "\u5f53\u4f5c": 1, "\u7576\u6210": 1}, "slave": {"\u5974\u96b6": 1}, "Louder": {"\u5927\u58f0": 1}, "telling": {"\u5047\u8bdd": 1, "\u63a5\u4e0b\u6765": 1, "\u5565\u65f6\u5019": 1, "\u6c92\u7528": 1}, "murder": {"\u9019\u4eba": 1, "\u8b00\u6bba": 2, "\u6740": 1}, "socialize": {"\u6253\u4ea4\u9053": 1}, "conditioner": {"\u7a7a\u8c03": 1}, "top": {"\u9876\u76d6": 1, "": 1, "\u4e0a\u9762": 3, "\u9802\u4e0a": 1, "\u5c71\u9876": 1, "\u5c71\u9802": 2}, "mix": {"\u6df7": 1}, "referred": {"\u55ac\u53df": 1}, "Large": {"\u5f88\u5927": 1}, "Cosmetic": {"\u6574\u5bb9": 1}, "insurance": {"\u4fdd\u96aa": 3}, "differently": {"\u8ca7\u7aae": 2}, "depending": {"\u770b\u5f85": 1}, "amazingly": {"\u51fa\u4e4e\u610f\u6599": 1}, "diamond": {"\u94bb\u77f3": 2}, "football": {"\u4e0d": 1, "\u8db3\u7403": 4, "\u8e22\u8db3\u7403": 2}, "cleaning": {"\u6253\u6383": 1, "\u53d6\u56de": 1}, "gotten": {"\u7d42\u65bc": 1, "\u6b63\u8f68": 1}, "track": {"\u8ecc\u9053": 2, "\u8f68\u9053": 1, "\u60f3\u6cd5": 1}, "Hilton": {"\u5f00\u5230": 1, "\u5e0c\u723e\u9813": 1, "\u5e0c\u5c14\u987f": 1}, "amateur": {"\u5916\u884c": 1}, "gums": {"\u7259\u9f66": 1}, "bleeding": {"\u6d41\u8840": 3, "\u6b62\u8840": 1}, "Tickets": {"\u552e\u7968": 1, "\u6709\u7968": 1}, "skateboards": {"\u6ed1\u677f": 1}, "return": {"\u524d": 1, "\u8fd8\u7ed9": 1, "\u4ed6": 1, "\u56de": 2, "\u7121\u5bb6": 1}, "visitors": {"\u8bbf\u5ba2": 1, "\u8a2a\u5ba2": 1}, "Zip": {"\u5634": 1}, "Haste": {"\u6b32\u901f": 1}, "goes": {"\u4e0a\u5927\u5b78": 1, "\u5fc5": 1, "\u7ecf\u5e38": 1, "\u4e07\u4e8b\u5982\u610f": 1, "\u591c\u6821": 1, "\u8f66": 1}, "carried": {"\u633e": 1, "\u625b": 1, "\u6267\u884c": 1}, "pity": {"\u53ef\u60dc": 3, "\u9057\u61be": 3, "\u907a\u61be": 1}, "evasive": {"\u8eb2\u8eb2\u95ea\u95ea": 1, "\u542b\u7cca\u4e0d\u6e05": 1}, "partners": {"\u5546\u696d": 1, "\u5408\u4f5c\u4f19\u4f34": 1}, "assets": {"\u4e00\u767e\u4e07\u7f8e\u5143": 1}, "furnished": {"\u88dd\u5099": 1, "\u7f6e": 1}, "celebrate": {"\u6176\u795d": 1}, "below": {"\u6a13\u4e0b": 1, "\u4e0b\u9762": 1}, "beauty": {"\u4e00\u96d9": 1}, "possibly": {"\u63d0\u51fa": 1}, "National": {"\u56fd\u7acb\u5927\u5b66": 1}, "acquire": {"\u7fd2\u5f97": 1}, "suicide": {"\u81ea\u6bba": 3, "": 1}, "cigarette": {"\u62bd\u6839": 1, "\u9999\u70df": 1}, "behave": {"\u516c\u4f17": 1, "\u898f\u77e9": 1}, "naked": {"\u5149\u7740": 1, "\u8d64\u88f8": 1, "\u90a3\u4eba": 1}, "bankrupt": {"\u5012\u95ed": 1, "\u7834\u4ea7": 2}, "endure": {"\u9577\u9014": 1}, "heavily": {"\u5927\u96e8": 1, "\u4e0b\u5f97": 1}, "coincidence": {"\u5de7\u5408": 2}, "gladly": {"\u6a02\u610f": 2, "\u63d0\u8bae": 1}, "counts": {"\u5206\u79d2\u5fc5\u4e89": 1}, "scolded": {"\u8bad\u65a5": 1, "\u61f6\u60f0": 1}, "counted": {"\u4e0d\u7b97": 1}, "passport": {"\u62a4\u7167": 4, "\u8b77\u7167": 2, "\u5979": 1}, "photographs": {"\u4e09\u5f20": 1}, "cause": {"\u60f9": 1, "\u60f9\u4e8b": 1, "\u65e0\u6545": 1, "\u539f\u56e0": 2}, "stylish": {"\u6d41\u884c": 1}, "icy": {"\u5bfc\u81f4": 1}, "Weather": {"": 1}, "permitting": {"\u5141\u8bb8": 3}, "rush": {"\u4e0d\u6025": 1, "": 1}, "airplanes": {"\u6eff": 1, "\u6298\u7eb8": 1}, "nearest": {"\u6700\u8fd1": 7, "\u4ead": 1}, "600": {"\u516d\u5104": 1}, "pure": {"\u4e00\u9897": 1, "\u7d14\u91d1": 1}, "clapped": {"\u62cd": 3, "\u62cd\u624b": 1}, "grip": {"\u51b7\u9759\u4e0b\u6765": 1, "\u63a7\u5236": 1}, "confuse": {"\u51b3\u4e0d\u80fd": 1}, "grandmother": {"\u7956\u6bcd": 10}, "88": {"88": 1}, "evidence": {"\u8b49\u64da": 1, "\u8bc1\u636e": 2, "\u8bc1\u636e\u786e\u51ff": 1}, "symptoms": {"\u75c7\u72c0": 1}, "visited": {"\u62dc\u8a2a": 5, "\u63a2\u8996": 1, "\u53bb\u8fc7": 3, "\u6e38\u89c8": 1, "\u4e00\u4e2a": 1}, "turns": {"\u70ba\u4f55": 1, "\u8f2a\u6d41": 4, "\u6307\u793a": 1}, "retire": {"\u9000\u4f11": 4, "": 1}, "60": {"\u516d\u5341": 1}, "truthful": {"\u8bda\u5b9e": 1}, "parks": {"\u505c": 1}, "rotten": {"\u721b": 1}, "voyage": {"\u73af\u6e38\u4e16\u754c": 1}, "exact": {"\u542b\u4e49": 1, "\u78ba\u5207": 2, "\u8aaa\u51fa": 1}, "bid": {"\u51fa\u4ef7": 1}, "explosion": {"\u7206\u70b8": 5, "\u53d1\u751f": 1}, "grandchild": {"\u5b59\u5b50": 1}, "illustrated": {"\u7cbe\u7f8e": 1, "\u63d2\u756b": 1}, "weird": {"\u771f\u602a": 1, "\u5947\u602a": 3}, "jazz": {"\u7235\u58eb": 5, "\u7279\u5225": 1}, "toilet": {"\u5ec1\u6240": 5, "\u5395\u6240": 2}, "ranger": {"\u8b77\u6797": 1}, "continued": {"\u7e7c\u7e8c": 6, "\u7ee7\u7eed": 2}, "cares": {"\u5728\u610f": 1, "\u5173\u5fc3": 1, "\u7231": 1}, "perseverance": {"\u575a\u6301": 1}, "changes": {"\u6539\u8b8a": 1, "\u6539\u52a8": 1}, "highly": {"\u5fae\u4e4e\u5176\u5fae": 1}, "mess": {"\u5f04\u4e71": 1, "\u4e00\u5718\u7cdf": 1, "\u4e03\u516b": 1}, "fortune": {"\u4e00\u5927": 1, "\u8d22\u4ea7": 1, "\u5927\u7b14": 1}, "admires": {"\u6240\u756b": 1}, "thrown": {"\u8d95\u51fa": 1}, "At": {"\u7ec8\u4e8e": 1, "\u6700\u7ec8": 2, "\u5c0d": 1, "\u8d77\u521d": 1}, "lottery": {"\u5f69\u7968": 2, "\u4e2d\u5956": 1}, "custody": {"\u62d8\u7559": 2}, "carpenter": {"\u6728\u5320": 2}, "meddling": {"\u63d2\u624b": 1}, "trees": {"\u679c\u6811": 1, "\u53d8\u7ea2": 1, "\u780d\u5012": 2, "\u7eff": 1}, "Computers": {"\u8282\u7701": 1}, "jealousy": {"\u5ac9\u5992\u5fc3": 1}, "larger": {"\u8f03\u5927": 1, "\u592a\u967d\u6bd4": 1, "\u53d8\u5f97": 1}, "frequently": {"\u7d93\u5e38": 1}, "breast": {"\u6bcd\u4e73": 1}, "deep": {"\u6df1\u547c\u5438": 2, "\u6df1": 3}, "lens": {"\u96b1\u5f62": 1}, "rose": {"\u73ab\u7470\u82b1": 1, "\u7ea2\u73ab\u7470": 1, "\u6735\u73ab\u7470": 1}, "democracy": {"\u6c11\u4e3b": 2}, "quantities": {"\u4e5d\u6298": 1}, "handwriting": {"\u5b57": 1, "\u7b46\u8de1": 2}, "Stockholm": {"\u65af\u5fb7\u54e5\u723e\u6469": 1}, "However": {"\u9986\u5b50": 1}, "location": {"\u7cdf\u7cd5": 1, "\u4f4d\u7f6e": 1}, "rebuilding": {"\u91cd\u5efa": 1}, "qualms": {"\u6ca1\u6709": 1}, "Sumo": {"\u76f8\u64b2": 1}, "pencils": {"\u4e00\u652f": 1}, "disagree": {"\u770b\u6cd5": 1}, "Cross": {"\u5212\u6389": 2}, "56": {"\u7f57\u7d20": 1}, "egg": {"\u86cb": 2}, "buying": {"\u6574\u665a": 1, "\u4e00\u8f86": 1}, "sugar": {"\u7cd6": 5, "\u52a0\u7cd6": 2}, "Poland": {"\u6ce2\u862d": 1}, "Time": {"\u65f6\u95f4": 1, "\u5403\u996d\u65f6\u95f4": 1}, "punctual": {"\u5b88\u65f6": 2, "\u6e96": 1, "\u4e0d\u662f": 1, "\u91cd\u8996\u6e96": 1}, "having": {"\u66fe\u7ecf": 1, "\u8209\u884c": 2, "\u5712": 1, "\u5730\u73a9": 1}, "danger": {"\u5371\u96aa": 4, "\u751f\u547d\u5371\u9669": 1, "\u751f\u547d": 1, "\u5df2\u904e": 1}, "1,000": {"1000": 1}, "mouse": {"\u8001\u9f20": 4}, "timid": {"\u80c6\u5c0f": 1}, "initials": {"NTT": 1}, "Mom": {"": 1, "\u5abd\u5abd": 1, "\u5988\u5988": 1, "\u5abd": 1}, "caused": {"\u9020\u6210": 3, "\u5bf9": 1}, "damage": {"\u640d\u5bb3": 2}, "teas": {"\u8bf7\u6765": 1}, "Health": {"\u8d22\u5bcc": 1}, "attractive": {"\u8ff7\u4eba": 1}, "bottom": {"\u5fc3\u5e95": 1, "\u5e95\u90e8": 1, "\u5012\u6570": 1}, "Blenders": {"\u652a\u62cc\u6a5f": 1}, "Pace": {"\u91cf\u529b\u800c\u884c": 1}, "freeze": {"\u51b7\u51bb": 1, "\u7ed3\u51b0": 1}, "drenched": {"\u9663\u96e8": 1}, "clarifying": {"\u6f84\u6e05": 1}, "bars": {"\u7262": 3}, "Chicago": {"\u829d\u52a0\u54e5": 3}, "currently": {"\u76ee\u524d": 1, "\u4efb\u6559": 1}, "treat": {"\u5c0d\u5f85": 1, "\u5c0f\u5b69": 1, "\u8bf7\u5ba2": 1, "\u8acb": 1, "\u5ba2": 1}, "appropriate": {"\u9002\u5408": 1}, "issued": {"\u767c\u884c": 1}, "app": {"\u5e94\u7528": 1}, "confidence": {"\u81ea\u4fe1": 3, "\u4fe1\u5fc3": 1}, "Takasu": {"\u9ad8\u9808": 1}, "lion": {"\u72ee\u5b50": 1, "\u7345\u5b50": 1}, "beasts": {"\u517d\u7c7b": 1}, "retired": {"\u9000\u4f11": 6, "": 1}, "Lots": {"\u591a\u540d": 1}, "pajamas": {"\u7761\u8863": 2}, "reply": {"\u56de\u7b54": 1, "\u7b54\u590d": 2}, "extends": {"\u904d\u53ca": 1}, "traditional": {"\u4f20\u7edf": 2}, "similar": {"\u76f8\u4f3c": 3, "\u540c\u6837": 1, "\u7c7b\u4f3c": 2, "\u985e\u4f3c": 1}, "ninety": {"\u4e5d\u5341": 1}, "unlikely": {"\u4e0d\u592a\u53ef\u80fd": 5, "\u505a\u932f": 1}, "Only": {"\u53ea\u6709": 11}, "peace": {"\u548c\u5e73": 8, "\u5e73\u548c": 1}, "Politicians": {"\u522b\u6709\u7528\u5fc3": 1}, "false": {"[": 2}, "form": {"\u586b\u5beb": 2}, "remodeled": {"\u88dd\u6f62": 1}, "item": {"\u54ea\u7c7b": 1}, "atheist": {"\u65e0\u795e\u8bba\u8005": 1}, "lessons": {"\u94a2\u7434\u8bfe": 2}, "remembering": {"\u8bb0\u4eba": 1}, "edible": {"\u8fd9\u4e2a": 1}, "sporting": {"\u4f53\u80b2": 1}, "unwise": {"\u8070\u660e": 1}, "horribly": {"\u8b5c": 1}, "lean": {"\u501a": 1}, "voting": {"\u6295": 1}, "cutest": {"\u53ef\u611b": 1}, "action": {"\u884c\u52a8": 1, "\u8ca0\u8d77": 1}, "writes": {"\u5199\u4fe1\u7ed9": 1, "\u963f\u62c9\u4f2f\u6587": 1}, "Fools": {"\u521d\u751f": 1, "": 1}, "slow": {"\u4e94\u5206": 1, "\u9006\u98a8\u800c\u884c": 1, "\u6162\u4e0b": 1}, "scandal": {"\u4e11\u95fb": 1}, "both": {"\u90fd": 4, "\u4e24\u4e2a": 1, "\u65e2": 1}, "10,000": {"1": 1, "10000": 2, "000": 2}, "stories": {"\u611b\u60c5": 1, "\u6545\u4e8b": 1, "\u5f88\u611f\u5174\u8da3": 2, "\u5fd9\u4e8e": 1, "\u4e03\u5c64": 1}, "flunked": {"\u4e0d\u53ca\u683c": 1}, "sipped": {"\u555c\u98f2": 1}, "rap": {"\u8bf4\u5531": 1}, "declared": {"\u6cd5\u5ead": 1, "\u58f0\u79f0": 1}, "bulb": {"\u53d1\u5149": 1}, "Hollywood": {"\u840a\u5862": 1}, "Pizza": {"\u6bd4\u85a9": 1}, "paces": {"\u5e7e\u6b65": 1}, "barefooted": {"\u8d64\u811a": 1, "\u6f2b\u6b65": 2}, "disappointed": {"\u5931\u671b": 4}, "rely": {"\u4f9d\u8d56": 1, "\u4f9d\u8cf4": 1, "\u4f9d\u9760": 1}, "hats": {"\u6709\u5408": 1}, "ambiguous": {"\u6b64\u53e5\u6709": 1}, "Towada": {"\u548c\u7530": 1}, "surprising": {"\u53ef\u80fd": 1, "\u5403\u9a5a": 1}, "crops": {"\u4f5c\u7269": 1}, "Just": {"\u8aaa\u4e0d": 1, "\u7acb\u5834": 1, "": 2, "\u6211": 1, "\u5427": 1}, "superior": {"\u8d28\u91cf": 1}, "sensible": {"\u660e\u667a": 2}, "Grandpa": {"\u7237\u7237": 1}, "malnutrition": {"\u5c3c\u65e5\u5c14": 1}, "pale": {"\u82cd\u767d": 3, "\u634f\u4e86\u4e00\u628a\u6c57": 1, "\u8138\u8272": 1, "\u84bc\u767d": 1}, "shelter": {"\u6536\u5bb9": 1, "\u6811\u4e0b": 1}, "prosecutor": {"\u68c0\u5bdf\u5b98": 1}, "generous": {"\u5927\u65b9": 2}, "bear": {"\u627f\u53d7": 1, "\u5fcd\u53d7": 4, "\u65e0\u6cd5\u5fcd\u53d7": 1, "": 1, "\u8996\u7dda": 1}, "lifetime": {"\u4e00\u8f88\u5b50": 1}, "judge": {"\u5224\u65b7": 1, "\u6cd5\u5b98": 1}, "discovered": {"\u767c\u73fe": 3, "\u53d1\u73b0": 2, "\u767c\u89ba": 1, "\u65ad\u76d0": 1}, "vending": {"\u81ea\u52d5": 1}, "tattoo": {"\u6587\u8eab": 2}, "removed": {"\u53bb\u6389": 1}, "touch": {"\u78b0": 6, "\u8054\u7cfb": 1, "\u6478": 1, "\u806f\u7d61": 1, "\u611f\u52a8": 1, "": 1, "\u8054\u7edc": 1}, "photograph": {"\u7167\u7247": 4, "\u62cd\u7167": 1, "\u5f71\u96c6": 1}, "quarterback": {"\u9996\u53d1": 1}, "illness": {"\u91cd\u75c5": 2, "\u8eab\u4f53": 1}, "wash": {"\u6d17\u8eca": 2, "\u6d17": 7, "\u6d17\u5934": 1, "\u996d\u524d\u6d17\u624b": 1, "\u6e05\u6d17": 1}, "monkey": {"\u7334\u5b50": 4, "\u7334": 1}, "chips": {"\u96a8\u610f": 1, "\u4e00\u6574": 1}, "appointed": {"\u4efb\u547d": 3}, "director": {"\u7ecf\u7406": 1}, "shape": {"\u5916\u5f62": 2, "\u9ad4\u578b": 1}, "monk": {"\u51fa\u5bb6": 1}, "prince": {"\u738b\u5b50\u771f": 1}, "eager": {"\u6e34\u671b": 1, "\u5c31": 1}, "maybe": {"": 1, "\u4e5f\u8a31": 1}, "gold": {"\u5927\u5927\u7684": 1}, "7": {"7": 5}, "poems": {"\u8bd7": 1, "\u8a69": 1}, "spell": {"\u62fc": 3}, "confessed": {"\u627f\u8a8d": 1, "\u4f9b\u8ba4": 2}, "Columbus": {"\u54e5\u502b\u5e03": 1, "": 1}, "1492": {"1492": 1}, "parties": {"\u6d3e": 1}, "recovering": {"\u5eb7": 1, "\u9010\u6b65": 1}, "Wednesday": {"\u4e0a\u5468\u4e09": 1, "\u5468\u4e09": 1}, "sells": {"\u5356\u82b1": 1, "\u5356": 5, "\u8ce3": 1}, "speaking": {"\u8bf4\u8bdd": 2, "\u64c5\u9577": 2, "\u8bf4": 2, "\u6c92\u807d": 1}, "foreigners": {"\u5916\u56fd\u4eba": 2, "\u4e86": 1}, "brochure": {"\u5ba3\u50b3\u518a": 1}, "saddled": {"\u5f37\u8feb": 1}, "sweep": {"\u6253\u6383": 1}, "tricks": {"\u8be1\u8ba1": 1}, "Edison": {"\u611b\u8fea\u751f": 2}, "Algebra": {"\u4ee3\u6578": 1}, "fists": {"\u62f3\u5934": 1}, "normal": {"\u4e00\u5207\u6b63\u5e38": 2, "\u6b63\u5e38": 1}, "perform": {"\u7b2c\u4e8c\u6b21": 1}, "operation": {"\u624b\u672f": 3, "\u624b\u8853": 1}, "assistant": {"\u52a9\u7406": 2, "\u52a9\u624b": 3}, "shipping": {"\u8239\u904b": 1}, "resent": {"\u6068": 1}, "Raspberries": {"\u8986\u76c6\u5b50": 1}, "bend": {"\u5f4e\u66f2": 1}, "hired": {"\u96c7": 2, "\u5f55\u7528": 1}, "blamed": {"\u6307\u8cac": 1, "\u8d23\u5907": 1}, "mechanic": {"\u6280\u5e2b": 1}, "engine": {"\u5f15\u64ce": 2}, "achieved": {"\u5de8\u5927\u6210\u529f": 1}, "Beginners": {"\u521d\u5b78\u8005": 1}, "pleasant": {"\u4f5c": 1, "\u597d\u813e\u6c14": 1, "\u60a6\u8033": 1, "\u5ea6": 1}, "Hunger": {"\u8abf\u5473\u54c1": 1, "\u9965\u997f": 1}, "Bread": {"\u9762\u7c89": 2}, "inspired": {"\u6f14\u8aaa": 1}, "driest": {"\u4ee5\u4f86": 1}, "Say": {"\u4ee3": 1}, "cancel": {"\u53d6\u6d88": 1, "\u901a\u8bdd": 1}, "Cut": {"\u9592": 1}, "Turtles": {"\u6d77\u9f9f": 1}, "habits": {"\u55dc\u597d": 1}, "arrange": {"\u5b89\u6392": 1}, "subscribe": {"\u6709\u8a02": 1, "\u8a02\u95b1": 2}, "collars": {"\u71a8\u70eb": 1}, "palms": {"\u66f2": 1}, "knees": {"\u819d": 2}, "Above": {"\u5c24\u5176": 1}, "mine": {"\u7684": 1, "\u9019\u5152": 1, "": 1}, "startling": {"\u4ee4\u4eba\u5403\u60ca": 1}, "genius": {"\u5929\u624d": 3}, "blog": {"\u535a\u5ba2": 2}, "autobiography": {"\u665a\u5e74": 1}, "felt": {"": 2, "\u611f\u89c9": 6, "\u611f\u89c9\u826f\u597d": 1, "\u8ba9": 1}, "goodbye": {"\u4e0d\u8fad\u800c\u5225": 1, "\u518d\u89c1": 1}, "Rome": {"\u7f85\u99ac": 3, "\u7f57\u9a6c": 2, "\u7f57\u9a6c\u4e0d\u662f": 2}, "visiting": {"\u904a": 1, "\u7279\u5730": 1}, "buttons": {"\u6309\u9215": 1}, "traditions": {"\u4f20\u7edf": 1}, "loser": {"\u4e0d\u6210\u5668": 1}, "Summers": {"\u70ed": 1}, "teams": {"\u961f\u4f0d": 1, "\u7af6\u9010": 1}, "sheets": {"\u92ea": 1}, "Hello": {"\u4f60\u597d": 1}, "Move": {"\u817e": 1, "\u8f7b\u8f7b\u5730": 1}, "skies": {"\u6e05\u6717": 1}, "consent": {"\u6761\u4ef6": 1}, "importance": {"\u5927\u4e8b": 1}, "tossed": {"\u7528": 1}, "meter": {"\u5237\u65b0": 1}, "bulky": {"\u7b28\u91cd": 1}, "cats": {"\u8c93": 4, "\u732b\u4f1a": 1, "\u72d7": 1, "\u59ca": 1, "\u6709\u4e09\u96bb\u8c93\u548c\u5169": 1, "\u59b9\u59b9": 1, "\u732b": 1, "\u4e24\u53ea": 1, "\u51e0\u53ea": 1, "\u66f4": 2, "\u516d\u53ea": 1}, "misjudged": {"\u4ea7\u751f\u8bef\u89e3": 1}, "bet": {"\u8ced": 3, "\u8ced\u6ce8": 1}, "copies": {"\u590d\u5370": 1}, "novelist": {"\u5c0f\u8bf4\u5bb6": 1}, "kissing": {"\u543b": 1}, "common": {"\u5171\u540c": 3, "\u662f": 1, "\u5171\u540c\u70b9": 2, "\u5171\u540c\u4e4b\u5904": 1}, "microphone": {"\u9ea6\u514b\u98ce": 1, "\u6c92\u8d77": 1}, "thrilled": {"\u4e50\u610f": 1, "\u5174\u594b\u4e0d\u5df2": 2, "\u4e0d\u5df2": 1}, "risen": {"\u5347\u9ad8": 1, "\u6c34\u4f4d": 1}, "lock": {"\u9501": 3, "\u9396": 5, "\u9580\u9396": 1, "\u51fa\u95e8\u65f6": 1, "\u5c31": 1}, "depart": {"\u51fa\u53d1": 1, "\u516c\u5171\u6c7d\u8f66": 1}, "Study": {"\u597d\u597d\u5b66\u4e60": 1}, "lent": {"\u501f\u7d66": 1, "\u4e00\u76d8": 1, "\u501f\u7ed9": 1}, "spicy": {"\u8fa3": 2, "\u6709\u70b9": 1, "\u8f9b\u8fa3": 1}, "T": {"T": 1, "\u4e03\u6298": 1}, "smarter": {"\u806a\u660e": 1}, "cornered": {"\u7aae\u9f20": 1}, "songs": {"\u8001\u6b4c": 2, "\u6b4c": 2, "\u6cd5\u8bed\u6b4c": 1, "\u6bcf\u9996\u6b4c": 2}, "selected": {"\u4ef6": 1}, "midnight": {"\u5348\u591c": 2}, "interrupted": {"\u6253\u65ad": 1}, "translate": {"\u7ffb\u8bd1": 6, "\u9010\u5b57\u9010\u53e5": 1}, "raw": {"\u751f\u9c7c": 1, "\u751f\u9b5a": 1, "\u751f\u86cb": 1}, "captivate": {"\u807d\u773e": 1}, "escape": {"\u9003\u8dd1": 3, "\u9003\u907f": 1, "\u627e\u5230": 1, "\u9003\u4e0d\u51fa": 1, "\u9003\u751f": 1}, "household": {"\u5bb6\u52d9": 1}, "wind": {"\u98a8": 2, "\u51b7\u98ce": 2}, "indicates": {"\u66b4\u96e8": 1}, "spilling": {"\u6454": 1}, "foxes": {"\u5c71\u4e0a": 1}, "criminal": {"\u72af\u4eba": 1, "\u7f6a\u72af": 1}, "village": {"\u6751\u91cc": 2, "\u5c0f\u6751": 1, "\u90bb\u6751": 1, "\u6e14\u6751": 1, "\u6751\u5e84": 2}, "smaller": {"\u5c0f": 4}, "sizes": {"\u5c3a\u5bf8": 1}, "spoon": {"\u52fa\u5b50": 3}, "woke": {"\u5435\u9192": 1, "\u9192\u4f86": 1, "\u9192": 1, ":": 1, "\u5de6\u53f3": 1}, "trains": {"\u4e58\u5750": 1, "\u597d\u73a9": 1, "\u4e09\u5206": 1, "\u95f4\u9694": 1}, "card": {"\u5361\u7247": 2}, "attached": {"\u9644\u5728": 1}, "thin": {"\u771f\u7626": 1, "\u4e0a\u7a7a": 1, "\u592a\u8584": 1, "": 1}, "Lawyers": {"\u9a97\u5b50": 1}, "Crocodiles": {"\u9cc4\u9c7c": 1}, "talented": {"\u624d\u534e": 1, "\u624d\u80fd": 1}, "True": {"\u8b8a": 1}, "mom": {"\u5abd\u5abd": 1, "\u4e0d\u592a\u597d": 1, "\u5e45\u756b": 1}, "gets": {"\u65e9\u8d77": 1, "\u8d77\u5f97": 1, "\u96a8\u5fc3": 1, "\u559d\u7231": 1}, "worst": {"\u57ce\u88e1": 1, "\u6700\u5dee": 1, "\u6c11\u4e3b": 1, "\u5dee\u52b2": 1}, "chairperson": {"\u4e3b\u5e2d": 2}, "chairs": {"\u653e\u597d": 1, "\u5920": 1, "\u4e86\u4e0b": 1}, "gas": {"\u52a0\u6cb9\u7ad9": 1, "\u7164\u6c14": 1, "\u74e6\u65af": 3, "\u7164\u6c14\u8d39": 1}, "improving": {"\u9032\u6b65": 1}, "hugged": {"\u62e5\u62b1": 2, "\u62b1": 1}, "withered": {"\u67af\u840e": 1}, "sunrise": {"\u65e5\u51fa": 2, "\u5929\u4eae": 2}, "roof": {"\u5c4b\u9876": 3, "\u4ed6": 1}, "steam": {"\u6cb8\u817e": 1}, "greenhouse": {"\u6eab\u5ba4": 2}, "Visitors": {"\u963f\u723e": 1}, "appetite": {"\u80c3\u53e3": 1, "\u98df": 1}, "oldest": {"\u6700\u5927": 1}, "adjust": {"\u9002\u5e94": 2}, "Better": {"\u603b\u6bd4": 1, "\u603b": 1}, "dating": {"\u4ea4\u5f80": 1, "\u7d04": 1}, "capable": {"\u80fd\u529b": 1}, "silent": {"\u4fdd\u6301\u6c89\u9ed8": 3, "\u5b89\u975c": 1, "\u65e0\u58f0\u7535\u5f71": 1, "": 1, "\u793e\u5340": 1}, "1941": {"1941": 1}, "challenge": {"\u6311\u6230": 1, "\u6311\u6218": 1}, "underestimate": {"\u4f4e\u4f30": 4}, "Fur": {"\u6bdb": 1}, "propose": {"\u6c42\u5a5a": 2}, "smokes": {"\u559d\u9152": 2}, "Drive": {"\u99d5\u99db": 2, "\u5f80\u524d": 1, "\u5f00\u8f66": 1}, "project": {"\u9879\u76ee": 4, "\u8a08\u5283": 1}, "ongoing": {"\u8fdb\u884c": 1}, "Fish": {"\u9b5a\u96e2": 1, "\u76f8\u914d": 1, "\u9b5a": 2}, "partner": {"\u4f34": 1}, "known": {"\u6e05\u695a": 1, "\u65e9": 2, "\u76f8\u8b58": 1, "\u4e45": 1, "\u4e24\u5e74": 1}, "resigning": {"\u7121\u610f": 1, "\u8fad\u8077": 1}, "tablecloth": {"\u684c\u5e03": 1}, "28th": {"1888": 1}, "alarm": {"\u8b66\u62a5": 1, "\u9b27": 1, "\u95f9\u94c3": 1}, "included": {"\u5305\u62ec": 1}, "land": {"\u964d\u843d": 2, "\u4ed6": 1}, "notice": {"\u6ce8\u610f": 4, "\u9aea": 1}, "council": {"\u59d4\u5458\u4f1a": 1}, "upset": {"\u96be\u8fc7": 1, "\u4e0d\u5b89": 1, "\u9ad8\u5174": 1}, "gazed": {"\u671b\u8457": 2}, "Egypt": {"\u57c3\u53ca": 2}, "Smoking": {"\u62bd\u70df": 3}, "applied": {"\u6f5b\u5fc3": 1, "\u4e13\u6ce8": 1, "\u6e6f\u59c6\u7533": 1}, "lined": {"\u6309\u7167": 1}, "height": {"\u8eab\u9ad8": 3}, "dignified": {"\u5a01\u56b4": 1}, "dreams": {"\u795d": 1}, "equipment": {"\u9060\u96e2": 1}, "polish": {"\u64e6\u4eae": 1}, "gravy": {"\u91ac\u6c41": 1}, "overseas": {"\u51fa\u570b": 1, "\u570b\u969b": 1}, "detailed": {"\u8a73\u7d30": 1}, "cloth": {"\u6fd5\u5e03": 1}, "wounded": {"\u8d1f\u4f24": 1, "\u4f24": 1}, "woken": {"\u60e1": 1, "\u53eb\u9192": 1}, "eighty": {"\u516b\u5341\u4e00": 2, "\u516b\u5341": 1, "80": 1}, "Agriculture": {"\u519c\u4e1a": 1}, "protect": {"\u4fdd\u8b77": 2, "\u4fdd\u62a4": 3}, "endangered": {"\u7269\u79cd": 3}, "Chopin": {"\u856d\u90a6": 1}, "saved": {"\u7701": 2, "\u6551": 3}, "plates": {"\u500b\u76e4\u5b50": 1, "\u76e4\u5b50": 1}, "during": {"\u767d\u5929": 1, "\u671f\u95f4": 1}, "visitor": {"\u8a2a\u5ba2": 1, "\u5ba2\u4eba": 1}, "princess": {"\u516c\u4e3b": 2}, "weep": {"\u9ed8\u9ed8\u5730": 1}, "particularly": {"\u7279\u522b": 3}, "ring": {"\u6253\u7535\u8bdd": 2, "\u62ff\u6389": 2, "\u73af": 1}, "Politics": {"\u653f\u6cbb": 1}, "inseparable": {"\u5206\u4e0d\u958b": 1}, "overcoat": {"\u5374": 1, "\u5927\u8863": 1}, "although": {"": 1}, "Android": {"\u5f00\u53d1": 1}, "mat": {"\u5730\u6bef": 1}, "opposite": {"\u76f8\u53cd": 1}, "choices": {"\u9078\u9805": 1, "\u9009\u62e9": 1}, "emotional": {"": 2}, "flight": {"\u822a\u7a0b": 1, "\u98de\u884c": 1}, "bachelor": {"\u5355\u8eab": 1, "\u5355\u8eab\u6c49": 1}, "faces": {"\u81c9": 1, "\u9762\u5411": 1}, "selfish": {"\u81ea\u79c1": 2, "\u5979": 1}, "plays": {"\u746a\u9e97\u5f48": 1, "\u73a9": 1, "\u5f39": 2}, "Mexican": {"\u58a8\u897f\u54e5\u4eba": 1, "\u58a8\u897f\u54e5": 1}, "heavier": {"\u9084": 1}, "tomb": {"\u5e7c\u5e74": 1, "\u6416\u7c43\u88e1\u5b78": 1}, "former": {"\u524d\u592b": 1}, "diplomat": {"\u5916\u4ea4\u5b98": 1}, "sleeps": {"\u516b\u500b": 1, "\u767d\u5929": 1}, "schools": {"\u5979": 1, "\u8f6c\u6821": 1, "\u6362": 1}, "horizon": {"\u5730\u5e73\u7dda": 1}, "citizen": {"\u516c\u6c11": 1}, "ruin": {"\u7834\u574f": 1}, "Reporters": {"\u72b9\u8c6b": 1}, "buried": {"\u57cb": 2, "\u5b89\u846c": 1}, "insane": {"\u760b": 1, "\u8868\u73b0": 1}, "grade": {"\u7d1a": 1, "\u6210\u7e3e": 3}, "tear": {"\u5efa\u7bc9\u7269": 1}, "coach": {"\u6559\u7ec3": 2}, "crisis": {"\u806f": 1}, "Merry": {"\u5feb\u6a02": 1}, "God": {"\u4e0a\u5e1d": 4}, "pickpockets": {"\u6252\u624b": 2}, "indeed": {"\u60a3\u96e3": 1}, "guilty": {"\u5167\u759a": 1, "\u7f6a": 1, "\u6709\u7f6a": 1, "\u59bb\u5b50": 1}, "Graham": {"\u683c\u96f7\u5384\u59c6": 2}, "monkeys": {"\u7334\u5b50": 1, "\u5712\u88e1": 1}, "accomplished": {"\u4f7f\u547d": 1}, "anonymous": {"\u533f\u540d": 1}, "Wires": {"\u96fb\u7dda": 1}, "approval": {"\u7d66": 1}, "prove": {"\u8bc1\u660e": 3}, "presence": {"\u8fd9\u4ef6": 1}, "DJ": {"": 3}, "astronaut": {"\u592a\u7a7a": 1}, "telephones": {"\u4e0d\u901a": 1}, "Approximately": {"\u4e09\u5341\u4e2a": 1}, "stood": {"\u7ad9\u8457": 1, "\u7ad9": 1}, "published": {"\u51fa\u7248": 4, "\u53d1\u8868": 1}, "real": {"\u771f\u5b9e": 2, "\u771f\u5be6": 1, "\u771f\u6b63": 1, "\u8ba4\u771f": 1, "\u771f\u662f": 1}, "aged": {"\u4e2d\u5e74": 1}, "toolkit": {"\u5de5\u5177\u7bb1": 1}, "Dinner": {"\u534a\u524d": 1}, "unsure": {"": 1}, "solution": {"\u89e3\u51b3\u529e\u6cd5": 2, "\u65b9\u6cd5": 2, "\u60f3\u5230": 1}, "Otaru": {"\u6a3d": 1}, "tripod": {"\u4e09\u8173": 2}, "shelters": {"\u907f\u96be\u6240": 1}, "campus": {"\u5728\u6821": 2}, "wasting": {"\u6d6a\u8d39\u65f6\u95f4": 1}, "ASAP": {"\u5c3d\u5feb": 1}, "dozens": {"\u5341\u672c": 2}, "slowing": {"\u6162\u4e0b": 1}, "pheasant": {"\u91ce": 1}, "forgive": {"\u8bf7\u539f\u8c05": 1, "\u539f\u8c05": 3, "\u539f\u8ad2": 2}, "raincoat": {"\u96e8\u8863": 2}, "alert": {"\u8b66\u544a": 1, "\u8b66\u60d5": 1}, "Millions": {"\u6578\u767e\u842c": 1}, "builds": {"\u521b\u5efa": 1}, "houses": {"\u623f\u5c4b": 4, "": 1}, "raised": {"\u8209\u8d77": 2, "\u55d3\u97f3": 1}, "armchair": {"\u6276\u624b\u6905": 1}, "duty": {"\u503c\u52e4": 1, "\u514d\u7a05": 1, "\u7fa9\u52d9": 1, "\u8d23\u4efb": 1}, "foreign": {"\u5916\u8bed": 3, "\u5916\u570b": 4}, "attempts": {"\u5c1d\u8bd5": 1}, "liars": {"\u9a97\u5b50": 1}, "schedule": {"\u884c\u7a0b": 2, "\u51c6\u65f6": 1, "\u6642\u523b": 1, "\u9032\u5ea6": 1}, "letting": {"\u53d8\u5c0f": 1}, "paintings": {"\u5f88\u7f8e": 1, "\u9451\u8cde": 1}, "horror": {"\u60ca\u6050": 1, "\u6050\u6016": 1}, "determined": {"\u6c7a\u5fc3": 1, "\u8981\u6210": 1, "\u51b3\u5fc3": 1}, "My": {"\u7684": 2}, "punishing": {"\u60e9\u7f5a": 1, "\u61f2\u7f70": 1}, "experiences": {"\u7ecf\u5386": 1}, "actor": {"\u6f14\u54e1": 2, "\u6f14\u5458": 2}, "grows": {"\u7238\u79cd": 1, "\u4e86\u4f1a": 1}, "suspects": {"\u61f7\u7591": 1}, "contract": {"\u7b7e\u5408\u540c": 1, "\u5408\u540c": 2, "\u7c3d\u7d04": 1}, "Examine": {"\u8c03\u67e5": 1}, "tests": {"\u8fdb\u884c": 1, "\u8a55\u5206": 1}, "ears": {"\u8033\u6735": 4, "\u6d17\u8033": 1, "": 1}, "piloted": {"\u9886\u5165": 1}, "guide": {"\u64d4": 1}, "enemy": {"\u654c\u4eba": 3, "": 1, "\u6575\u4eba": 1}, "Yes": {"\u6703\u53bb": 1, "": 2, "\u665a\u4e0a": 1}, "cargo": {"\u8d27\u8239": 1}, "foolproof": {"\u9632\u50bb": 1}, "prevented": {"\u96e8": 1}, "reduce": {"\u8c03\u4f4e": 1, "\u80fd\u6e90\u9700\u6c42": 1}, "severely": {"\u56b4\u53b2": 1}, "increasing": {"\u4eba\u6570": 1}, "poured": {"\u6f51": 1, "\u6d47": 1}, "smells": {"\u805e": 2, "\u9999": 1}, "lacks": {"\u7f3a\u4e4f\u7ecf\u9a8c": 1}, "cough": {"\u54b3\u55fd": 4}, "journey": {"\u65c5\u9014\u6109\u5feb": 1, "\u65c5\u884c": 1, "\u74b0\u904a": 1}, "granted": {"\u7406\u6240\u5f53\u7136": 2, "\u7406\u6240": 1}, "18": {"18": 2}, "art": {"\u85dd\u8853": 5, "\u827a\u672f\u4f5c\u54c1": 1}, "eleven": {"\u5341\u4e00\u70b9": 2, "\u5341\u4e00": 5, "11": 3, "": 1}, "programs": {"\u4e0d\u826f": 1, "\u4e3a\u6570\u4e0d\u591a": 1}, "lower": {"\u8c03\u4f4e": 1, "\u4fbf\u5b9c": 1}, "widely": {"\u5728\u4e16\u754c\u4e0a": 1}, "headache": {"\u5934\u75db": 4, "\u75bc": 2}, "lunatic": {"\u75af\u5b50": 1}, "reconsider": {"\u6b64\u4e8b": 1}, "talks": {"\u8d77": 1, "\u6709\u65f6": 1, "\u4e00\u4f4d": 1, "\u8fd9\u573a": 1, "\u6a23\u5b50": 1}, "aisle": {"\u8d70\u9053": 1}, "envelope": {"\u624d\u80fd": 1, "\u4fe1\u5c01": 4}, "housework": {"\u5bb6\u52d9": 1}, "ghosts": {"\u9b3c": 4, "\u9b3c\u9b42": 2, "\u5e7d\u7075": 2}, "copy": {"\u62f7\u8c9d": 3}, "twin": {"\u96d9": 3}, "runner": {"\u8dd1\u8005": 1, "\u8dc3\u8fc7": 1}, "inevitable": {"\u5fc5\u7136": 1}, "affection": {"\u611f\u60c5": 1, "\u611b": 1}, "kilograms": {"\u4e24": 1}, "romantic": {"\u6d6a\u6f2b": 1}, "machinery": {"\u52c1": 1}, "solving": {"\u89e3\u6c7a": 2}, "PKO": {"PKO": 1}, "embarrassed": {"\u5c37\u5c2c": 2, "\u5f97": 1, "\u53bb\u6c42": 1}, "permitted": {"\u5438\u7159": 1}, "eggplant": {"\u8304\u5b50": 1}, "Lonely": {"\u5b64\u7368": 1}, "captured": {"\u88ab\u6355": 1, "\u5438\u5f15": 1, "\u6293": 1}, "thoughtful": {"\u5468\u5230": 1, "\u9ad4\u8cbc": 1}, "Follow": {"\u8ddf\u4e0a": 1, "\u8ddf\u8457": 1, "\u8ddf\u7740": 1}, "lazy": {"\u61d2": 3}, "picking": {"\u660e\u65e9": 1}, "owned": {"\u64c1\u6709": 1}, "inappropriate": {"\u4e3e\u6b62": 1}, "dumb": {"\u50bb": 3}, "Imagination": {"\u5404\u4e2a\u65b9\u9762": 1}, "area": {"\u5730\u5340": 1, "\u533a\u57df": 2, "\u77ad\u89e3": 1, "\u8fd9\u533a": 1}, "criticizing": {"\u6279\u8bc4": 1}, "Close": {"\u95ed\u4e0a": 2, "\u5173\u4e0a": 2, "\u5173\u95e8": 1, "\u8acb\u95dc": 1, "\u95ed": 1}, "West": {"\u897f\u6d77\u5cb8": 1}, "salesman": {"\u63a8\u92b7\u54e1": 1, "\u92b7\u54e1": 1}, "tour": {"\u65c5\u8cbb": 1, "\u65c5\u6e38": 1}, "bizarre": {"\u8352\u5510": 1}, "perhaps": {"": 1}, "Any": {"\u4efb\u4f55": 1, "\u4e4b\u4e2d": 1, "\u5c0f\u5b69": 1}, "climbing": {"\u6500\u5347": 1}, "thorn": {"\u523a": 1}, "Well": {"\u8b93": 1, "": 1, "\u505a\u5f97\u597d": 1, "\u591c\u665a": 1, "\u90a3\u9ebc": 1}, "homeless": {"\u65e0\u5bb6\u53ef\u5f52": 1}, "Grammar": {"\u8bed\u6cd5": 1}, "Write": {"\u4e0b\u4f86": 2, "\u5beb\u9ede": 1, "\u5beb\u4e0b": 1}, "Wo": {"\u6211\u5bb6": 1}, "pets": {"\u5ba0\u7269": 1}, "fallen": {"\u7c73\u4ef7": 1}, "Carelessness": {"\u5c0e\u81f4": 1}, "Hemingway": {"\u6d77\u660e\u5a01": 1}, "Foreigners": {"\u5916\u56fd\u4eba": 1}, "shaving": {"\u9b0d": 1, "\u5019": 1}, "bathroom": {"\u6d74\u5ba4": 1, "\u9593": 2, "\u885b\u751f\u9593": 1, "\u536b\u751f\u95f4": 1, "\u5ec1\u6240": 2, "\u5ec1": 1}, "procrastinating": {"\u679c\u65ad": 1, "\u62d6\u5ef6": 1}, "logical": {"\u903b\u8f2f": 1, "\u7b26\u5408": 1}, "effects": {"\u526f\u4f5c\u7528": 1}, "warn": {"\u8b66\u544a": 1}, "insisted": {"\u575a\u6301": 3}, "Itch": {"\u66b1": 1}, "stole": {"\u5077": 3}, "majored": {"\u54f2\u5b78": 1}, "folders": {"\u6587\u4ef6\u5939": 1}, "organ": {"\u7ba1\u98ce\u7434": 1}, "bothering": {"\u70e6": 1, "\u70e6\u5fc3": 1}, "polite": {"\u79ae\u8c8c": 2, "\u53c8": 1}, "pink": {"\u7c89\u8272": 1, "\u7c89": 1}, "cholesterol": {"\u80c6\u56fa\u9187": 1}, "potato": {"\u6ce1": 1, "": 1}, "Optimists": {"\u89c0\u8005": 1}, "attempted": {"\u8a66\u5716": 2}, "delivered": {"\u9001\u5230": 1}, "revolution": {"\u9769\u547d": 2}, "republic": {"\u4e86": 1}, "powder": {"\u7c89\u672b": 1}, "murdered": {"\u8b00\u6bba": 1}, "minister": {"\u7576\u4e0a": 1}, "warnings": {"\u88ab\u5ffd\u89c6": 1}, "Your": {"\u4fe1\u4f7f": 1}, "definition": {"\u9ad8\u6e05": 1}, "notes": {"\u4f5c\u7b46": 1, "\u7b14\u8bb0": 2}, "amazed": {"\u60ca\u5446": 2, "\u4f1a": 1}, "rapid": {"\u5feb\u901f": 1}, "pox": {"\u6c34\u75d8": 1}, "attitude": {"\u614b\u5ea6": 2, "\u6001\u5ea6": 3}, "Long": {"\u597d\u4e45\u4e0d\u89c1": 2, "\u4e0d\u898b": 1}, "showing": {"\u603b": 1}, "uncomfortable": {"\u8212\u670d": 2}, "strengthens": {"\u817f\u90e8": 1}, "charge": {"\u4e3b\u7ba1": 1, "\u4e3b\u4efb": 1}, "clubs": {"\u96b6\u5c5e": 1}, "shaved": {"\u817f\u6bdb": 1}, "impatient": {"\u6027\u6025": 2, "\u7f3a\u4e4f": 1}, "Rabbits": {"\u957f\u957f\u7684": 1}, "tent": {"\u7bf7": 1}, "fax": {"\u4f20\u771f": 1, "\u50b3\u771f": 1}, "trunk": {"\u6811\u5e72": 1}, "obstinate": {"\u9811\u56fa": 1, "\u5014\u5f3a": 1}, "rarely": {"\u7247": 1, "\u5f88\u5c11": 1}, "connection": {"\u806f": 1}, "themselves": {"\u5929\u52a9": 2, "\u5e38\u81ea\u8a00": 1}, "criticized": {"\u9519\u8bdd": 1, "\u6279\u8bc4": 1}, "doubts": {"\u8fd8\u662f": 1, "\u7591\u95ee": 1, "\u6e6f\u59c6\u61f7": 1}, "deserves": {"\u7d66\u4e88": 1}, "South": {"\u5357\u7f8e\u6d32": 1}, "knit": {"\u7de8\u7e54": 1, "\u7ec7": 1}, "correct": {"\u5c0d\u4e0d\u5c0d": 1, "\u5728\u6211\u770b\u6765": 1, "\u78ba\u662f": 1, "\u6b63\u78ba": 2, "\u53d1\u73b0\u9519\u8bef": 1, "\u6b63\u786e": 1}, "band": {"\u8d77\u6b65": 1, "\u6a02\u5718": 1}, "hire": {"\u5c0f": 1, "\u96c7\u4f63": 1, "\u4e00\u53e3": 1, "\u96c7": 1}, "answering": {"\u63a5": 1}, "express": {"\u8868\u9054": 2, "\u8bed\u8a00\u8868\u8fbe": 1}, "thanks": {"\u8b1d\u610f": 1, "\u8fd8\u8981": 1, "\u518d\u6765\u70b9": 1}, "rolls": {"\u6625\u5377": 1}, "software": {"\u8edf\u9ad4": 1}, "breathed": {"\u54bd\u4e0b": 1}, "Sendai": {"\u4ed9\u53f0": 2}, "calm": {"\u5be7\u975c": 1, "\u51b7\u975c": 1, "\u5426\u6975": 1, "\u51b7\u9759\u4e0b\u6765": 1, "\u51b7\u9759": 1}, "independence": {"1947": 1}, "intrude": {"\u9690\u79c1": 1}, "disguised": {"\u5316\u88dd": 1, "\u507d\u88dd": 1}, "farm": {"\u8fb2\u5834": 4, "\u519c\u573a": 2}, "divided": {"\u5e73\u5206": 1}, "farms": {"\u519c\u573a": 1}, "fainted": {"": 1, "\u6655": 1}, "gritted": {"\u54ac\u7d27\u7259\u5173": 1}, "plant": {"\u5f00\u9664": 1}, "basket": {"\u7c43\u5b50": 2}, "rainfall": {"\u96e8\u52e2": 1}, "changing": {"\u6bcf\u4e00\u5206": 1, "\u8b8a\u5316": 1, "\u4e00\u5207\u90fd\u5728": 1, "\u4e0d": 1, "\u53d8": 1}, "victim": {"\u53d7\u5bb3\u8005": 1}, "closets": {"\u8863\u6ae5": 1}, "compact": {"\u5149\u789f": 1}, "exception": {"\u4f8b\u5916": 2, "\u7834\u4f8b": 1}, "relies": {"\u592a\u592a": 1}, "brought": {"\u5e36\u4f86": 1, "\u5e26": 2, "\u64ab\u990a": 3, "Mary": 1, "\u5e36\u5230": 2, "\u5e36": 1, "\u957f\u5927": 1}, "More": {"\u89aa\u81ea": 1, "\u8d85\u904e": 1}, "cooperation": {"\u5408\u4f5c": 3}, "Bell": {"\u8d1d\u5c14": 2}, "shadow": {"\u5f71\u5b50": 1, "\u80c6\u5c0f\u9b3c": 1}, "racial": {"\u79cd\u65cf\u6b67\u89c6": 1}, "loaf": {"\u804a\u52dd\u65bc\u7121": 1, "\u9eb5": 1}, "Shortly": {"\u4e0d\u4e45": 1}, "Real": {"\u53cb\u8c0a": 1}, "valuable": {"\u4ef7\u503c": 2}, "weapon": {"\u6b66\u5668": 2}, "Depression": {"\u5341\u4e5d\u4e16\u7eaa": 1}, "statement": {"\u8072\u660e": 1}, "access": {"\u8a2a\u554f": 1}, "torn": {"\u62c6\u9664": 2}, "supermarket": {"\u7a7a\u9593": 1, "\u8d85\u5e02": 6, "\u8d85\u7d1a": 2, "\u5927\u578b\u8d85\u5e02": 1, "\u5728": 1}, "plastered": {"\u9189": 1}, "tents": {"\u5e10\u7bf7": 1}, "Cuff": {"\u94d0": 1}, "vowed": {"\u767c\u8a93": 1}, "snowed": {"\u5468": 1, "\u96ea": 1}, "total": {"\u4e00\u5171": 1, "\u6beb\u65e0\u610f\u4e49": 1}, "insect": {"\u6606\u866b": 1}, "giving": {"\u904e\u4e0d\u53bb": 1, "\u653e\u5f03": 1, "\u5468\u5168": 1, "\u5168\u795e\u8d2f\u6ce8": 1, "\u8209\u884c": 1, "\u8003\u8651": 1}, "Dark": {"\u4e4c\u4e91": 1}, "ideas": {"\u4e3b\u610f": 1, "\u5947\u5999": 1, "\u60f3\u6cd5": 1}, "established": {"\u5efa\u4e8e": 1}, "escaped": {"\u5dee\u9ede": 1, "\u4eba\u751f": 1}, "truck": {"\u5361\u8eca": 4, "\u5361\u8f66": 2, "\u8ca8\u8eca": 1, "": 1}, "closes": {"\u5173\u95e8": 1}, "pendant": {"\u589c\u98fe": 1}, "birth": {"\u751f\u4e0b": 3, "\u751f": 1, "\u7684": 1}, "twins": {"\u96d9": 2}, "issue": {"\u611f\u53d7": 1, "\u770b\u6cd5": 1}, "sock": {"\u889c\u5b50": 3}, "serving": {"\u65e0\u671f\u5f92\u5211": 1}, "handkerchief": {"\u624b\u5e15": 1}, "falls": {"\u661f\u671f\u65e5": 1}, "pay": {"\u4ed8": 7, "\u4ed8\u94b1": 2, "\u6ca1\u4ed8": 1, "\u916c\u52b3": 1, "\u4f86\u4ed8": 1, "\u7d66\u5920": 1}, "sport": {"\u904b\u52d5": 1}, "names": {"\u540d\u5b57": 1}, "safely": {"\u5e73\u5b89": 1, "\u5b89\u5168": 1}, "sounded": {"\u8b66\u62a5": 1}, "bullied": {"\u6b3a\u8d1f": 1, "\u6b3a\u8ca0": 1}, "necessarily": {"\u8fd9\u9879": 1}, "zipper": {"\u934a": 1}, "Tsunamis": {"\u6d77\u562f\u5e2d": 1}, "swept": {"\u6372": 2, "\u4e00\u80a1": 1}, "lad": {"\u597d\u4eba": 1}, "Chapter": {"\u7b2c\u4e09\u7ae0": 1}, "Louvre": {"\u57c3\u83f2\u5c14\u94c1\u5854": 1}, "unusual": {"\u5c0b\u5e38": 1, "\u7570\u5e38": 1, "\u5c11\u6709": 1}, "renewed": {"\u65b0": 1}, "despised": {"\u50d5\u4eba": 1, "\u770b\u4e0d\u8d77": 1}, "surrounding": {"\u5730\u5340": 1}, "responsibility": {"\u4e0d\u8d1f": 1, "\u4e49\u52a1": 1, "\u8d23\u4efb": 1}, "deny": {"\u5426\u8a8d": 1, "\u5426\u8ba4": 2}, "resourceful": {"\u9b3c\u70b9\u5b50": 1}, "reviews": {"\u8bc4\u4ef7": 1}, "boil": {"\u71d2\u958b": 1, "\u99ac\u9234\u85af": 1}, "Flowers": {"\u9bae\u82b1\u76db": 1}, "pours": {"\u798d": 1, "\u4e0d\u4e0b\u96e8": 1}, "visits": {"\u9813\u90fd": 1, "\u63a2\u8a2a": 1}, "blowing": {"\u5317\u8fb9": 2}, "philosophy": {"\u91cc\u5b66": 1}, "pianist": {"\u92fc": 2, "\u94a2\u7434\u5bb6": 1}, "match": {"\u6bd4\u8cfd": 1, "\u5834": 1}, "policemen": {"\u4e86\u7aca": 1}, "pin": {"\u91dd": 1}, "email": {"\u63a5\u7535\u8bdd": 1, "\u90ae\u7bb1\u5730\u5740": 1}, "draw": {"\u753b": 3, "\u62bd\u7b7e": 1}, "chief": {"\u4e3b\u7ba1": 1, "\u884c\u653f": 1}, "stream": {"\u6cb3\u8fb9": 1, "\u6eaa\u6d41": 1}, "fooled": {"\u611a\u5f04": 1, "\u4e0a\u5f53": 1, "\u9a19": 1}, "consequences": {"\u540e\u679c": 1}, "classes": {"\u5169\u5802": 1, "\u8bfe": 1, "\u56db\u5802": 1}, "Clint": {"\u514b\u6797\u4f0a": 1}, "mayor": {"\u5e02\u9577": 2, "\u5e02\u957f": 2}, "Colorado": {"\u79d1\u7f85\u62c9\u591a\u5dde": 1}, "tape": {"\u78c1\u5e26": 2}, "recorder": {"\u5f55\u97f3\u673a": 1}, "silly": {"\u72af\u50bb": 1, "\u8822": 1}, "loses": {"\u767c\u813e\u6c23": 1, "\u8f38": 1, "\u4e09\u5206\u949f": 1}, "Stick": {"\u8cbc": 2}, "brush": {"\u4ee5\u4fbf": 1, "\u6eab\u7fd2": 1, "\u5237\u7259": 2, "\u5237": 2, "\u6d17\u7259": 1}, "Fortune": {"\u9732\u51fa": 1}, "staff": {"\u5168\u4f53": 1}, "blushed": {"\u7d05": 1, "\u8138\u7ea2": 1}, "Cancer": {"\u7b2c\u4e00\u9636\u6bb5": 1}, "dawn": {"\u9ece\u660e\u524d": 1, "\u9ece\u660e": 2}, "timing": {"\u597d\u65f6\u673a": 1}, "thirds": {"\u4e8c\u5206": 1}, "Does": {"\u55ce": 3, "\u7814\u8b80": 1, "\u6bd4\u746a\u9e97": 1}, "pharmacy": {"\u85e5\u623f": 1}, "Seine": {"\u585e\u7eb3\u6cb3": 1}, "mammal": {"\u54fa\u4e73": 2}, "Thai": {"\u6cf0\u56fd\u83dc": 1}, "low": {"\u4f4e": 7, "\u4f4e\u8072": 1}, "bathtub": {"\u6d74\u7f38": 3}, "motel": {"\u6c7d\u8f66\u65c5\u9986": 1}, "guests": {"\u5ba2\u4eba": 3}, "photogenic": {"\u955c": 2}, "tongue": {"\u6bcd\u8bed": 1, "\u5b78\u8457": 1}, "relatives": {"\u4eb2\u621a": 2, "\u89aa\u621a": 1}, "girls": {"\u5973\u5b69": 2, "": 1, "\u7576\u4e2d": 1, "\u4f1a": 1, "\u500b\u5b50": 1}, "Food": {"\u541e\u54bd": 1}, "Since": {"\u6211": 1}, "secrets": {"\u79d8\u5bc6": 6, "\u6beb\u7121\u96b1\u779e": 1}, "employee": {"\u6b63\u5f0f": 2}, "rushed": {"\u597d\u6d88\u606f": 1}, "pocket": {"\u53e3\u888b": 3}, "hiccups": {"\u6253\u55dd": 1}, "property": {"\u8ca1\u7522": 1, "\u4f20\u7ed9": 1, "\u8ca1": 1}, "Lansing": {"\u862d\u8f9b": 1}, "cities": {"\u59d0\u59b9": 1, "\u5927\u57ce\u5e02": 1, "\u57ce\u5e02": 1}, "updates": {"\u63d0\u4f9b": 1}, "path": {"\u5c0f\u8def": 3, "\u800c\u662f": 1}, "zigzagged": {"\u873f\u8712": 1}, "strain": {"\u62c9\u65b7": 1, "\u538b\u529b": 1}, "heartedly": {"\u5168\u5fc3\u5168\u610f": 1}, "also": {"\u4e5f": 3, "\u9813\u4f86": 1, "\u8aaa\u8a71": 1}, "pork": {"\u732a\u8089": 1}, "Monopoly": {"\u5927\u5bcc\u7fc1": 1}, "Zealand": {"\u7d10\u897f\u862d": 1, "\u739b\u4e3d": 1, "\u65b0\u897f\u5170": 1}, "wide": {"\u5a5a\u524d": 1}, "90": {"\u4e5d\u5341": 1}, "clocks": {"\u65f6\u949f": 1}, "Deal": {"\u767c\u724c": 1}, "conditions": {"\u5199\u4fe1": 1}, "sandwich": {"\u4e09\u660e\u6cbb": 2}, "contest": {"\u4e00\u7b49\u5956": 1}, "doubling": {"\u6da8": 1}, "trade": {"\u7ecf\u8425": 1}, "member": {"\u4e00\u54e1": 1, "\u4ff1\u6a02\u90e8": 2, "\u6210\u70ba": 1}, "exam": {"\u8003\u8bd5": 2, "\u8003\u5f97": 1, "\u4f1a": 1, "\u8003\u8a66": 1}, "Not": {"\u91d1\u9322": 1}, "Declarations": {"\u53d8\u91cf": 1}, "Sentences": {"\u958b\u982d": 1}, "skis": {"\u6bcf\u5e74": 1}, "bother": {"\u6253\u6270": 1, "\u9ebb\u70e6": 1, "\u6253\u64fe": 1}, "Finally": {"\u7d42\u65bc": 1, "\u8fbe\u5230": 2}, "prison": {"\u76e3": 3, "\u76e3\u7344": 3}, "translated": {"\u8bd1\u6210": 2}, "document": {"\u6587\u6863": 1, "\u7c3d\u5b57": 1}, "uniforms": {"\u5236\u670d": 1}, "Suppose": {"\u5047\u5982": 1}, "typical": {"\u5178\u578b": 2}, "clerk": {"\u79d8\u4e66": 1}, "revolve": {"\u7e5e\u8457": 1, "\u56f4\u7740": 1}, "exists": {"\u5b58\u5728": 3}, "Asian": {"\u4e9a\u6d32": 1}, "ashamed": {"\u7f9e\u803b": 2, "\u4e22\u8138": 1, "\u4f5c\u70ba": 1, "\u6ca1\u7406\u7531": 2, "\u7f9e\u6065": 1, "\u5bb3\u7f9e": 1}, "mailman": {"\u90f5\u5dee": 2}, "without": {"\u5c31\u522b": 2, "\u6d3b\u4e0d\u4e0b\u53bb": 1, "\u65e0\u6cd5": 1, "\u6c92": 1}, "paint": {"\u7c89\u5237": 2, "\u6cb9\u6f06": 2, "\u6f06\u6210": 2, "\u5237\u5899": 1, "\u6d82": 1, "\u5237": 1}, "nights": {"\u5ea6\u8fc7": 1}, "promising": {"\u524d\u9014": 1}, "teachers": {"\u8001\u5e08": 3, "\u6559\u5b78": 1}, "hairdressers": {"\u7406\u53d1\u5e08": 1}, "classmate": {"\u540c\u5b78": 3}, "shut": {"\u9589": 1, "\u95dc\u6389": 1, "\u5173": 1, "\u9580\u95dc": 1, "": 1, "\u4f4f\u53e3": 1, "\u95ed\u5634": 1}, "regularly": {"\u670d\u7528": 1, "\u5b9a\u671f": 1}, "warden": {"\u66b4\u52d5": 1}, "happier": {"\u672a\u5fc5": 1, "\u770b\u6765": 1}, "forgiven": {"\u539f\u8c05": 1}, "hawk": {"\u9df9": 1}, "flows": {"\u4e0b\u6d41": 1}, "whistled": {"\u5439\u53e3\u54e8": 1}, "advertised": {"\u520a\u767b": 1, "\u767b\u5ee3": 1}, "sum": {"\u6570\u76ee": 1, "\u4e94": 1}, "basis": {"\u4e3b\u5f35": 1}, "overestimate": {"\u9ad8\u4f30": 1}, "apparently": {"\u660e\u986f": 1}, "starts": {"\u4e0b\u5468\u4e00": 1, "\u7bc0\u76ee": 1, "\u958b\u5b78": 1}, "Volleyball": {"\u6392\u7403": 1}, "hi": {"\u6253\u4e86\u4e2a": 1}, "emotions": {"\u60c5\u7dd2": 1}, "sunny": {"\u4e0b\u7740\u96e8": 1}, "wished": {"\u501f\u4e66": 1}, "admired": {"\u624b\u7275\u7740": 1, "\u611b\u6155": 1}, "scenery": {"\u4e00\u8d77": 1, "\u98ce\u666f": 1}, "conservative": {"\u4fdd\u5b88": 1}, "mustache": {"\u80e1\u5b50": 1}, "wet": {"\u6e7f": 4, "\u6fd5": 5}, "partial": {"\u90e8\u5206": 1}, "masters": {"\u5171\u4f8d": 1}, "gains": {"\u4e94\u5206\u949f": 2}, "liable": {"\u8fd8\u503a": 1}, "jail": {"\u76d1\u72f1": 1, "\u6848": 1, "\u51fa\u72f1": 1}, "carelessly": {"\u7c97\u5fc3\u5927\u610f": 1}, "records": {"\u5531\u7247": 2}, "injuries": {"\u4e0d\u80fd\u4e0d": 1}, "hidden": {"\u4e0b\u9762": 1}, "manual": {"\u5712\u85dd": 1}, "swearing": {"\u53d1\u8a93": 1}, "comments": {"\u8bc4\u8bba": 3, "\u8a55\u8ad6": 1}, "offensive": {"\u53d1\u8a00\u4eba": 1}, "drew": {"\u756b": 1, "\u53d6": 1}, "mere": {"\u53ea\u662f": 2}, "blackboard": {"\u9ed1\u677f": 2}, "complaint": {"\u7406\u7531": 1}, "admonished": {"\u544a\u8aa1": 1}, "apron": {"\u56f4\u88d9": 2}, "welfare": {"\u798f\u5229": 2}, "eats": {"\u4e4e": 1}, "impolite": {"": 1}, "madman": {"\u75af\u5b50": 2}, "scored": {"\u7b2c\u4e00\u4e2a": 1}, "witch": {"\u5deb\u5a46": 1}, "crane": {"\u904e": 1}, "Radio": {"\u4ee3\u66ff": 1}, "tasted": {"\u5690\u4e86": 1}, "bowling": {"\u4fdd\u9f84\u7403": 2}, "slip": {"\u8ba9": 1, "\u5728": 1, "\u4e0d": 1}, "shortage": {"\u77ed\u7f3a": 1}, "checkout": {"\u6ac3\u53f0": 1}, "announced": {"\u5ba3\u5e03": 2}, "neutral": {"\u4e2d\u7acb": 1}, "crossing": {"\u9a6c\u8def": 3}, "pizzas": {"\u83dc\u55ae": 1}, "bulbs": {"\u70e7\u574f": 1}, "UFO": {"\u789f": 1}, "activity": {"\u6d3b\u529b": 1}, "Sasayama": {"\u7b71": 1}, "terms": {"\u89d2\u5ea6": 1}, "greater": {"\u7528\u6236": 1}, "Wash": {"\u9032\u98df": 1, "\u76e4\u5b50": 1}, "complained": {"\u62b1\u6028": 5, "\u57cb\u6028": 1}, "Highway": {"58": 1}, "leather": {"\u76ae\u978b": 1}, "banana": {"\u9999\u8549": 1}, "Disney": {"\u8fea\u58eb\u5c3c": 1}, "budget": {"\u4f4e\u6210\u672c": 1}, "delete": {"\u5220\u9664": 1}, "requirements": {"\u6eff\u8db3": 1}, "involved": {"\u6253\u4ea4\u9053": 1, "\u5377\u8fdb": 1, "\u7275\u626f": 1}, "programmer": {"\u8058\u8acb": 1, "\u7a0b\u5e8f\u5458": 1}, "dedicated": {"\u5949": 1}, "part": {"\u517c\u8077": 1, "\u90e8\u5206": 2, "\u5e0c\u671b": 1, "\u90e8\u4efd": 1, "\u53c3\u52a0": 1}, "fluency": {"\u5403\u60ca": 1}, "Nagoya": {"": 1, "\u540d\u53e4\u5c4b": 5}, "steady": {"\u56fa\u5b9a": 1, "\u7a69\u5b9a": 1}, "divorce": {"\u5979": 1, "\u96e2\u5a5a": 1}, "Whether": {"\u559c\u4e0d\u559c\u6b22": 1, "\u4e0e\u5426": 1}, "kilogram": {"\u83e0\u863f": 1}, "Ignorance": {"\u7121\u77e5": 1}, "agreement": {"\u8fbe\u6210": 1}, "sic": {"\u6211": 1}, "hail": {"\u51fa\u79df\u8f66": 1}, "Swiss": {"\u745e\u58eb\u4eba": 1}, "stormy": {"\u98a8\u66b4": 1}, "watches": {"\u6ca1\u5728": 1}, "password": {"\u6beb\u4e0d\u8d39\u529b": 1}, "Summer": {"\u590f\u5929": 2}, "meaningless": {"\u6beb\u65e0\u610f\u4e49": 1}, "cynical": {"\u96a8\u8457": 1}, "discount": {"\u7528\u73fe": 1, "\u6298": 1}, "tie": {"\u9818\u5e36": 5, "\u8981": 2, "\u9886\u5e26": 2}, "sincere": {"\u771f\u5fc3": 2, "\u8bda\u5b9e": 2}, "temple": {"\u5bfa\u5e99": 1}, "British": {"\u9060\u9060": 1}, "amazes": {"\u8bb0\u5fc6\u529b": 1}, "handles": {"\u67c4": 1, "\u5f00": 1}, "lacking": {"\u5e38\u8bc6": 1, "\u7f3a\u4e4f": 1}, "reluctantly": {"\u60c5\u613f": 1}, "cockroaches": {"\u87d1\u8782": 1}, "shooting": {"\u5c04\u51fb": 1, "\u64ca": 1, "\u62cd\u651d": 1}, "Winners": {"\u512a\u52dd\u8005": 1}, "glanced": {"\u4e00\u773c": 4}, "postponed": {"\u6bd4\u8d5b": 1, "\u63a8\u8fdf": 1, "\u5ef6\u9072": 1, "\u5ef6\u8fdf": 1}, "landslide": {"\u5c71\u5d29": 1}, "nation": {"\u56fd\u6c11": 1}, "stores": {"\u5340\u57df": 1}, "extinguisher": {"\u7528\u6ec5": 1}, "cafeteria": {"\u81ea\u52a9\u9910": 1, "\u9910\u5ef3": 1}, "hurried": {"\u4ed6": 1, "\u5306\u5306\u5fd9\u5fd9": 1, "\u52a0\u7d27": 1}, "Best": {"\u795d\u798f": 1}, "compartment": {"\u5bc6\u5ba4": 1}, "stars": {"\u7e41\u661f": 1, "\u661f\u661f": 2, "\u5e03\u6ee1": 1, "\u7e41\u661f\u70b9\u70b9": 1}, "Thou": {"\u4e0d\u53ef": 1}, "plus": {"\u4e00\u52a0\u4e8c": 1}, "Trouble": {"\u8bf4\u6765": 1}, "snored": {"": 1}, "Lips": {"\u5c31\u5225": 1}, "abstract": {"\u62bd\u8c61": 1, "\u5167\u5bb9": 1}, "named": {"\u547d\u540d": 2, "\u66fe": 1}, "east": {"\u6771\u65b9": 2}, "personally": {"\u89aa\u81ea": 1}, "saluted": {"\u90a3\u4f4d": 1}, "mortal": {"\u56fa\u6709": 1, "\u96e3\u514d": 1}, ":": {"\u4e09\u5341\u5206": 2}, "beard": {"\u957f\u80e1\u5b50": 1}, "bookcase": {"\u4e66\u67b6": 1}, "mistyped": {"\u932f\u865f": 1}, "eclipse": {"\u8755": 2}, "Feel": {"\u6b61\u8fce": 1, "\u611f\u53d7\u4e00\u4e0b": 1, "\u63d0\u95ee": 1}, "warning": {"\u4f46": 1}, "railroad": {"\u706b\u8f66\u7ad9": 1}, "Salmon": {"\u6de1\u6c34": 1}, "Great": {"\u8fdb\u5c55": 1}, "triple": {"\u64ca\u51fa": 1}, "barks": {"\u568e\u53eb": 1}, "sloshed": {"\u9189": 1}, "downstairs": {"\u697c\u4e0b": 1, "\u4e0b\u6a13": 1}, "seats": {"\u5ea7\u4f4d": 4}, "route": {"\u4e86": 1}, "racist": {"\u79cd\u65cf\u4e3b\u4e49\u8005": 1}, "third": {"\u7535\u68af": 1, "\u697c": 1}, "alcohol": {"\u9152\u7cbe": 2, "\u559d\u9152": 1}, "feels": {"\u611f\u89c9\u826f\u597d": 1, "\u5589\u5499": 1, "\u611f\u89c9": 1}, "acquainted": {"\u8a8d\u8b58": 1, "\u8ba4\u8bc6": 1}, "celebrity": {"\u540d\u4eba": 1}, "Dutch": {"\u8377\u862d\u8a9e": 1}, "serve": {"\u63d0\u4f9b": 1, "\u7f8e\u98df": 1, "\u670d\u52a1": 1}, "t": {"": 1}, "cups": {"\u5169\u676f": 1, "\u8bf7\u6765": 1}, "affectionate": {"\u7231\u548c": 1}, "uncooperative": {"\u5408\u4f5c": 1}, "traffic": {"\u4ea4\u901a": 2, "\u4ea4\u901a\u4e8b\u6545": 4, "\u6a2a\u7a7f\u9a6c\u8def": 1}, "enemies": {"\u654c\u4eba": 3}, "Bright": {"\u60f3\u4e0d\u51fa": 1}, "devoted": {"\u8d21\u732e": 1}, "dirt": {"\u5c18\u571f": 1}, "assigned": {"\u6307\u6d3e": 2, "\u6d3e": 1}, "extension": {"\u5ef6\u9577": 1}, "swimmers": {"\u51cd\u50f5": 1}, "hometown": {"\u6545\u4e61": 1, "\u5bb6\u4e61": 1, "\u590f\u4f11": 1}, "reserved": {"\u9884\u7ea6": 1, "\u9810\u8a02": 1}, "chapped": {"\u88c2\u5f00": 1}, "classless": {"\u81ea\u79f0": 1}, "Banks": {"\u9280\u884c": 1, "\u5f00\u95e8": 1}, "snows": {"\u5929\u4e0b": 1}, "resembles": {"\u50cf": 2, "\u9177\u4f3c": 1}, "turning": {"\u56de\u53bb": 1, "\u8138\u7ea2": 1}, "Remember": {"\u8bb0\u4f4f": 2, "\u8a18\u5f97": 2}, "Roll": {"\u4f20\u7ed9": 1}, "gentleman": {"\u7ec5\u58eb": 2}, "And": {"\u4f5c\u8d21\u732e": 1}, "insecure": {"\u5b89\u5168\u611f": 1}, "Think": {"\u601d\u8003": 1}, "writers": {"\u4f5c\u5bb6": 1}, "tendency": {"\u6709": 1}, "ambitions": {"\u91ce\u5fc3": 1}, "dictionaries": {"\u4e94\u672c": 1}, "product": {"\u63a8\u51fa": 1}, "unfair": {"\u771f\u4e0d": 1}, "authorized": {"\u65e0\u6743": 1}, "scarf": {"\u56f4\u5dfe": 1}, "smoked": {"\u62bd\u70df": 1}, "shall": {"\u5e7e\u9ede": 1}, "advance": {"\u63d0\u524d": 4, "\u5148": 1, "\u9884\u5148": 1}, "Other": {"\u5916": 1}, "drunken": {"\u56e0": 2}, "Ebay": {"eBay": 1}, "blacks": {"\u767d\u4eba": 1}, "'": {"\u6b65\u884c": 1}, "judgment": {"\u5224\u65ad": 1}, "favor": {"\u5fd9": 2, "\u5927\u5bb6\u4f19": 1, "\u8d0a\u6210": 1, "\u5fd9\u597d": 1}, "talents": {"\u5929\u8d4b": 1}, "Mount": {"\u7acb\u5c71": 1}, "cow": {"\u6324": 1}, "placed": {"\u4e66\u67b6\u4e0a": 1}, "advocate": {"\u8fa9\u62a4\u58eb": 1}, "hens": {"\u6bcd\u9e21": 1}, "satisfactory": {"\u4ee4\u4eba": 1}, "shoot": {"\u69cd": 1, "\u5c31": 1, "\u6211": 1, "\u505c\u706b": 1}, "brandy": {"\u767d\u862d": 1}, "accessible": {"\u8a18\u9304": 1}, "occur": {"\u4f55\u65f6": 1, "\u8eab\u4e0a": 1}, "argued": {"\u4e89\u5435": 1}, "elbows": {"\u624b\u8098": 1}, "position": {"\u804c\u4f4d": 1}, "doorknob": {"\u8f49\u52d5": 1}, "noted": {"\u8457\u540d": 1}, "blank": {"\u76f4\u63a5": 1}, "couch": {"\u957f\u6c99": 1, "\u8eba": 1}, "Swedish": {"\u745e\u5178\u8bed": 1, "\u4e5f": 1}, "ages": {"\u898b\u5230": 1, "\u8001\u5c11\u7686\u5b9c": 1, "": 1, "\u5e74\u7eaa": 1}, "punishment": {"": 1}, "Riding": {"\u96d9\u8f09": 1}, "permission": {"\u8a31": 1, "\u5141\u8bb8": 1, "\u672a\u7d93": 2, "\u5141\u8a31": 2}, "proceeded": {"\u7ee7\u7eed": 1}, "rescued": {"\u6551": 4}, "drowning": {"\u6eba\u6c34": 1, "\u4f7f": 1}, "cycling": {"\u9a91": 1}, "side": {"\u53e6\u4e00\u7aef": 1, "\u53f3\u908a": 2, "\u8305\u5c4b": 1, "\u65c1\u908a": 2, "\u9762": 1}, "conceal": {"\u63a9\u9970": 1}, "burning": {"\u70e7": 1}, "safer": {"\u5b89\u5168": 1}, "treasure": {"\u8d22\u5b9d": 1, "\u85cf\u5b9d": 1}, "patted": {"\u62cd\u62cd": 1}, "blew": {"\u522e\u5f97": 1, "\u522e\u8d77\u6765": 1}, "admire": {"\u4f69\u670d": 1, "\u8b9a": 1}, "courage": {"\u52c7\u6c23": 2}, "regret": {"\u6094": 2}, "oysters": {"\u7261\u8823": 2, "\u7261\u86ce": 1}, "darker": {"\u6697": 2}, "areas": {"\u7981\u70df": 1}, "Every": {"\u6bcf\u6b21": 4, "\u51e1\u4eba": 1}, "dish": {"\u83dc": 1, "\u767d\u9152": 1}, "yawned": {"\u6253\u54c8\u6b20": 1}, "agency": {"\u65c5\u884c\u793e": 1}, "flashlight": {"\u624b\u7535\u7b52": 1}, "authority": {"\u6388\u6b0a": 1}, "Admission": {"\u514d\u8d39\u5165\u573a": 1, "\u9928\u5165": 1}, "unify": {"\u7d71\u4e00": 1}, "cameras": {"\u4e09\u53f0": 1, "\u6a5f\u662f": 1}, "teammates": {"\u968a\u53cb": 1}, "completed": {"\u5927\u6a4b": 1, "2": 1, "\u4e0d": 1}, "bald": {"\u79bf\u982d": 1}, "photos": {"\u7167\u7247": 1}, "dropped": {"\u8f1f\u5b78": 1, "\u5730\u677f": 1, "\u8089\u4ef7": 1, "\u5f04\u6389": 1}, "brazen": {"\u65e0\u803b": 1}, "helicopter": {"\u76f4\u5347": 1}, "remote": {"\u9065\u63a7\u5668": 2, "\u5f88\u4e45\u4ee5\u524d": 1}, "feared": {"\u9ed1\u591c": 1}, "whenever": {"\u6642\u5019": 1, "\u60f3\u6765": 2, "\u96a8\u6642": 1}, "blinds": {"\u767e\u53f6\u7a97": 1}, "businessmen": {"\u5546\u4eba": 1}, "revealed": {"\u63ed\u66c9": 1}, "stained": {"\u9171\u6c41": 1}, "whispered": {"\u8033\u908a": 1, "\u5c0f\u8072": 1, "\u5c0f\u58f0": 1}, "adjective": {"": 1}, "consoling": {"\u5b89\u6170": 1}, "survive": {"\u5371\u6a5f\u4e2d": 1, "\u4ee3\u4ef7": 1}, "employees": {"\u54e1\u5de5": 1}, "willingly": {"\u7edd\u4e0d\u4f1a": 1}, "views": {"\u4f9d\u64da": 1}, "desktop": {"\u684c\u9762": 1}, "Attack": {"\u9032\u653b": 1}, "hunch": {"\u9884\u611f": 1}, "kick": {"\u81ea\u7518\u5815\u843d": 1}, "Carrots": {"\u80e1\u841d\u535c": 1}, "irregular": {"\u4e0d\u89c4\u5219": 1}, "guidebook": {"\u5bfc\u6e38": 1, "\u6307\u5357": 1}, "October": {"\u901d\u4e16": 1, "\u5341\u6708": 2}, "adopt": {"\u6536\u517b": 1}, "regard": {"\u65e0\u53ef\u5949\u544a": 1}, "Cheers": {"\u4e7e\u676f": 1}, "ate": {"\u6574\u4e2a": 1, "\u5bb6\u88e1": 1}, "checking": {"\u68c0\u67e5": 2}, "Breathe": {"\u9f3b\u5b50": 1}, "heart": {"\u809d\u8178\u5bf8\u65b7": 1, "\u4fc3\u819d\u8c08\u5fc3": 1}, "market": {"\u5e02\u5834": 1, "\u5e02\u573a": 1}, "petals": {"\u82b1\u74e3": 2}, "bathed": {"\u5c0f\u6728\u5c4b": 1}, "moonlight": {"\u6708\u5149": 3}, "acorns": {"\u6a61\u6a39\u5b50": 1}, "secretive": {"\u795e\u79d8": 1}, "thanked": {"\u611f\u8b1d": 3, "\u8868\u793a": 1, "\u5149\u4e34": 1}, "penalty": {"\u6b7b\u5211": 1, "\u5e9f\u9664": 1}, "states": {"\u5dde": 2}, "Rice": {"\u7a2e\u690d": 1}, "flood": {"\u6d2a\u6c34": 5}, "level": {"\u6d8c\u5230": 1}, "positive": {"\u79ef\u6781": 2, "A\u578b": 1, "\u78ba\u4fe1": 1, "\u78ba\u5b9a": 1}, "split": {"\u5831\u916c": 1}, "disgusted": {"\u538c\u6076": 1}, "model": {"\u65b0\u6b3e": 1, "": 1}, "precise": {"\u9039": 1}, "pardon": {"\u665a\u6765": 1}, "Hungarian": {"\u5308\u7259\u5229\u4eba": 1}, "Hudson": {"\u54c8\u5f97\u905c": 1}, "clicked": {"\u5494\u54d2": 1}, "subway": {"\u5730\u94c1": 2, "\u5730\u9435": 1}, "phones": {"\u73fe\u4ee3": 1}, "Skating": {"\u6e9c\u51b0": 1, "\u6ed1\u51b0": 1}, "Pork": {"\u732a\u8089": 1}, "Mandarin": {"\u4e2d\u6587": 1}, "April": {"\u56db\u6708": 4}, "farmer": {"\u8fb2\u592b": 1}, "Respect": {"\u793e\u6703": 1}, "fundamental": {"\u5c0a\u91cd": 1, "\u61c9\u7576": 1}, "iron": {"\u71a8": 1}, "spilled": {"\u7051": 1, "\u6ea2\u51fa": 1, "\u6253\u7ffb": 1}, "Having": {"\u6240\u4ee5": 1}, "claims": {"\u6e6f\u59c6\u8072": 1}, "typhoon": {"\u98b1": 3, "\u53f0\u98ce": 1}, "crow": {"\u70cf\u9d09": 1}, "Luckily": {"\u4ed8\u8d26": 1}, "Crater": {"\u706b\u5c71\u6e56": 1}, "tube": {"\u8acb\u8cb7": 2}, "toothpaste": {"\u7259\u818f": 3}, "J.F.": {"\u7518\u8ffa\u8fea": 1}, "username": {"\u7528\u6237\u540d": 1}, "canary": {"\u91d1\u7d72\u96c0\u88ab\u4e00": 1}, "Looks": {"\u6f2b\u957f": 1}, "assist": {"\u5354\u52a9": 2}, "pupils": {"\u5f71\u54cd\u529b": 1}, "realistic": {"\u73fe\u5be6": 1, "\u73b0\u5b9e": 1}, "humble": {"\u8c26\u865a": 1}, "controversial": {"\u4e89\u8bae": 1}, "clothing": {"\u8863\u98df\u4f4f\u884c": 1}, "burnt": {"": 1}, "Compared": {"\u76f8\u6bd4": 1, "\u8f66\u6bd4": 1}, "meal": {"\u81b3\u98df": 1, "\u5b8c\u98ef": 1}, "Actually": {"\u5b9e\u9645\u4e0a": 1}, "nephew": {"\u4f84\u5b50": 1}, "whose": {"\u65e5\u8a9e": 1, "\u77e5\u540d": 1, "\u5b69\u5b50": 1}, "producers": {"\u7535\u80fd": 1}, "Sahara": {"\u6492\u54c8\u62c9\u6c99\u6f20": 1}, "smartest": {"\u4e0d\u6562\u76f8\u4fe1": 1}, "kid": {"\u806a\u660e": 2, "\u73a9\u7b11": 1}, "belly": {"\u809a\u5b50": 1}, "Pigs": {"\u4eba\u985e": 1}, "affected": {"\u6df1\u53d7\u611f\u52a8": 1, "\u59a8\u788d": 1}, "staring": {"\u5728\u770b": 1, "\u76ef": 1}, "tools": {"\u5de5\u5177": 2}, "apt": {"\u9072": 1}, "Gold": {"\u91d1\u5b50": 2}, "mysterious": {"\u6c14\u6c1b": 2}, "Edo": {"\u6c5f\u6236": 1}, "Green": {"\u7da0\u8272": 1}, "quarrels": {"\u5435\u67b6": 1}, "gate": {"\u9580\u53e3": 1}, "spread": {"\u5857": 1, "\u50b3\u904d": 1, "\u764c\u7d30\u80de": 1}, "bookkeeping": {"\u5e33": 1}, "stabbed": {"\u6233": 1}, "Frankly": {"\u5b9e\u8bdd": 1, "\u5766\u7387\u5730": 1}, "measures": {"\u9884\u9632\u63aa\u65bd": 1, "\u63aa\u65bd": 1}, "orphan": {"\u5b64\u513f": 1}, "poked": {"\u6233": 1}, "laws": {"\u6210\u89aa": 1, "\u9075\u5b88": 1}, "exhibition": {"\u5c55\u89c8": 1, "\u5c55\u89bd": 1}, "honesty": {"\u8cea\u7591": 1}, "newspapers": {"\u62a5\u7eb8": 5}, "According": {"\u636e": 1, "\u6839\u64da": 4, "": 1}, "opinions": {"\u610f\u898b": 1, "\u8fd9\u70b9": 1}, "repair": {"\u4fee\u7406": 4, "\u641e\u5b9a": 1}, "Internet": {"\u4e92\u8054\u7f51": 1}, "Due": {"\u53d8\u5dee": 1}, "unsociable": {"\u793e\u4ea4": 1, "\u5408\u7fa4": 1}, "boxing": {"\u62f3\u51fb": 1}, "magician": {"\u9b54\u672f\u5e08": 2, "\u9b54\u6cd5\u5e08": 1}, "ease": {"\u653e\u677e": 1, "\u51cf\u8f7b": 1}, "pregnant": {"\u6000\u5b55": 1, "\u6000": 1}, "character": {"\u89d2\u8272": 1, "\u6027\u60c5": 1}, "committed": {"\u64da": 1, "\u81ea\u6740": 1}, "congratulations": {"\u795d\u8d3a": 1}, "tailor": {"\u88c1\u7e2b\u5e2b": 1}, "fingers": {"\u624b\u6307": 4}, "intoxicated": {"\u9189": 1, "\u9189\u9152": 2}, "careless": {"\u7c97\u5fc3": 1, "\u5927\u610f": 1, "\u95dc\u5fc3": 1}, "breathe": {"\u6709\u76ca\u5065\u5eb7": 1}, "Being": {"\u8f9b\u82e6": 1}, "Breakfast": {"\u4e00\u987f\u996d": 1, "\u65e9\u996d": 1, "\u65e9\u9910\u65f6\u95f4": 1}, "4th": {"\u56db\u6a13": 1}, "Big": {"\u5927\u9c7c\u5403\u5c0f\u9c7c": 1}, "tourists": {"\u6e38\u5ba2": 1}, "download": {"\u53ef\u4ee5": 1}, "bugs": {"\u6539\u6b63": 1, "\u866b\u5b50": 1}, "owl": {"\u500b\u591c": 1}, "fantasy": {"\u5947\u5e7b": 1}, "responding": {"\u5fa9": 1}, "dump": {"\u7529": 1}, "$": {"\u7f8e\u5143": 2}, "buffet": {"\u4eba\u4efd": 1}, "makeup": {"\u5986\u5316": 1, "\u5316": 2}, "carrots": {"\u80e1\u863f": 2}, "related": {"\u6751\u6c11": 1, "\u548c\u5fb7\u8a9e": 1}, "crash": {"\u589c\u6bc0": 1, "\u7535\u89c6\u65b0\u95fb": 1}, "beers": {"\u8bf7\u6765": 1}, "calmed": {"\u98ce\u505c\u4e86": 1, "\u51b7\u975c": 1, "\u51b7\u9759\u4e0b\u6765": 1}, "MasterCard": {"\u4e07\u4e8b\u8fbe": 1}, "shantytowns": {"\u8ca7\u6c11\u7a9f": 1}, "Mexico": {"\u58a8\u897f\u54e5": 3}, "era": {"\u539f\u5b50\u80fd": 1, "\u8eab\u8655": 1}, "sewing": {"\u53ef\u4ee5": 1}, "expected": {"\u9810\u671f": 2, "\u6b63\u662f": 1, "\u60f3\u50cf": 1}, "advantage": {"\u597d\u597d": 1, "\u6240\u8981": 1, "\u8655": 1}, "Olympic": {"\u83b7\u80dc": 1}, "fake": {"\u753b\u662f": 1, "\u5047": 2}, "unnecessary": {"\u4e0d\u5fc5\u8981": 1, "\u610f\u89c1": 1}, "quality": {"\u8d27\u54c1": 1}, "dyed": {"\u67d3\u6210": 1, "\u67d3": 1}, "bones": {"\u624b\u65b7": 1}, "Without": {"": 1, "\u6211\u4eec": 1}, "wild": {"\u91ce\u82b1": 1, "\u91ce\u517d": 1, "\u91ce\u751f\u52a8\u7269": 1}, "bakes": {"\u66f2\u5947": 1}, "sign": {"\u7b7e\u540d": 1, "\u62a5\u540d": 1, "\u7c3d\u4e0a": 1}, "tenor": {"\u4e2d\u97f3": 1}, "grandson": {"\u5b6b\u5b50": 1}, "comfort": {"\u5b89\u6170": 2}, "discussed": {"\u8a0e\u8ad6": 1, "\u8ba8\u8bba": 1}, "rocket": {"\u706b\u7bad": 1}, "rainbow": {"\u5f69\u8679": 1}, "blossom": {"\u82f9\u679c\u6811": 1}, "elated": {"\u6b23\u559c\u82e5\u72c2": 1}, "puzzle": {"\u89e3\u958b": 1, "\u6ca1\u4eba": 1, "\u89e3\u5f00": 1}, "spiders": {"\u8718\u86db": 2}, "length": {"\u957f\u5ea6": 1}, "shift": {"\u591c\u73ed": 1}, "recognized": {"\u8a8d\u51fa": 1}, "drove": {"\u5f00": 1, "\u4e00\u9762": 1}, "suburbs": {"\u90ca\u533a": 2}, "carries": {"\u5305\u91cc": 1}, "pepper": {"\u80e1\u6912": 2}, "despise": {"\u5bcc\u4eba": 1, "\u9119\u89c6": 1}, "makes": {"\u61a4\u6012": 3, "\u5168\u90e8\u90fd\u662f": 1, "\u716e": 1}, "windows": {"\u5f00\u7a97": 2, "\u7a97\u6237": 1}, "execution": {"\u7f13\u671f": 1}, "expenses": {"\u8fd8": 1}, "responsibilities": {"\u8d23\u4efb": 1}, "experience": {"\u7ecf\u9a8c": 3, "\u7d93\u9a57": 2, "\u4ed6\u5011": 1, "\u65b0\u4f53\u9a8c": 1}, "sarcastic": {"\u6316\u82e6": 1}, "subscriptions": {"\u4eca\u5e74\u5e74\u5e95": 1}, "waiter": {"\u6d77\u6ee8": 1}, "bent": {"\u5f2f": 1}, "average": {"\u5e73\u5747\u6c34\u5e73": 2}, "admit": {"\u627f\u8ba4": 4, "\u7576\u6642": 1}, "draft": {"\u8349\u7a3f": 1}, "tracks": {"\u8e2a\u8ff9": 1}, "increase": {"\u6570\u91cf": 2}, "Democracy": {"\u5f62\u6001": 1}, "Evidently": {"\u80af\u5b9a": 1}, "apologetic": {"\u5e76": 1}, "knives": {"\u4e24\u628a": 1}, "bitterness": {"\u82e6\u5473": 1}, "indigenous": {"\u539f\u4ea7": 1}, "After": {"\u53d1\u5b8c": 1, "\u5f8c": 6, "": 1, "\u6211": 1}, "bride": {"\u65b0\u5a18": 1}, "resist": {"\u8bf1\u60d1": 1}, "middle": {"\u4e2d\u5fc3": 1, "\u4e2d\u592e": 1}, "logic": {"\u903b\u8f91": 4}, "picks": {"\u590d\u82cf": 1}, "content": {"\u6eff\u610f": 1}, "dialog": {"\u53c2\u4e0e": 1}, "polar": {"\u5317\u6781\u718a": 1}, "hurts": {"\u80c3\u75db": 2, "\u811a\u75db": 1, "\u771f\u75bc": 1, "\u80cc": 1, "\u5934\u75db": 1}, "peel": {"\u524a": 1}, "Foxes": {"\u91ce\u751f\u52a8\u7269": 1}, "immigrants": {"\u79fb\u6c11": 2}, "Sapporo": {"\u672d\u5e4c": 1}, "Basho": {"Basho": 1}, "completely": {"\u8aaa\u5be6\u8a71": 1, "\u8f38": 1, "\u5b8c\u5168\u540c\u610f": 1, "\u53d8\u9ed1": 1}, "developed": {"\u767c\u5c55": 1}, "toys": {"\u73a9\u5177": 4}, "suitcases": {"\u4e0d\u89c1": 1}, "Divide": {"\u62ab\u85a9": 1}, "Water": {"\u6c34": 2}, "afternoons": {"\u6ca1\u8bfe": 1}, "Zimbabwe": {"\u6d25": 1}, "colony": {"\u6b96\u6c11\u5730": 2}, "verify": {"\u8bc1\u5b9e": 1}, "Oh": {"\u54e6": 2, "\u4e0d\u4f1a": 1}, "Alice": {"\u7231\u4e3d\u4e1d": 1}, "Ultraviolet": {"\u7d2b\u5916": 1}, "tight": {"\u7528\u5c11": 1, "\u5f88\u7bc0": 1}, "seasons": {"\u56db\u5b63": 1, "\u5b63\u7bc0": 1}, "series": {"\u4e00\u7cfb\u5217": 1}, "heating": {"\u7d71": 1}, "precious": {"\u8ddf\u611b": 1, "\u5b9d\u8d35": 1}, "nearby": {"\u8001\u5a46": 1}, "poker": {"\u6253\u6251\u514b": 1}, "Weeds": {"\u53e2\u751f": 1}, "98": {"98": 1}, "returning": {"\u56de\u96fb": 1}, "flies": {"\u8d70\u8fc7": 1, "\u98db\u901d": 1}, "arisen": {"\u51fa\u73b0": 1}, "Fresh": {"\u65b0\u9bae": 2}, "fruits": {"\u6709\u76ca\u5065\u5eb7": 1}, "donuts": {"\u793c\u62dc": 1}, "wink": {"\u4e00\u591c": 1, "\u6c92\u7761": 1}, "attach": {"\u7533\u8bf7\u4e66": 1}, "Theory": {"\u8054\u7cfb\u5b9e\u9645": 1}, "string": {"\u52a0\u5728": 1}, "meadow": {"\u7267\u8349": 1}, "Canadian": {"\u52a0\u62ff\u5927\u4eba": 5}, "fan": {"\u96fb\u98a8": 1, "\u4e00\u968a": 1}, "40,000": {"40000": 1}, "survived": {"\u5016": 1, "\u5e78\u5b58": 1}, "congratulated": {"\u795d\u8cc0": 1}, "jar": {"\u7f50\u5b50": 1}, "unanimously": {"\u8463\u4e8b\u4f1a": 1}, "veterinary": {"\u7378": 1}, "background": {"\u80cc\u666f": 2}, "gawking": {"\u770b\u7740": 1}, "pleasure": {"\u5171\u4e8b": 1, "\u8363\u5e78": 1, "\u6a02\u8da3": 1}, "hers": {"": 2}, "fireplace": {"\u58c1\u7210": 1}, "hunter": {"\u730e\u4eba": 1, "\u7375\u4eba": 1}, "ahead": {"\u524d\u9762": 2, "\u54b1\u4eec": 1, "\u9032": 1, "\u5411\u524d": 1}, "adult": {"\u5927\u4eba": 1}, "shared": {"\u5171\u7528": 1}, "fabulous": {"\u6781\u597d": 1}, "prophecy": {"\u9884\u8a00": 1}, "electric": {"\u96fb\u5b50": 1}, "protection": {"\u4fdd\u8b77": 1}, "double": {"\u5169\u500d": 1, "\u4ef7\u94b1": 1}, "slightest": {"\u5ff5\u5934": 1}, "Work": {"\u5e72\u6d3b": 1}, "misunderstood": {"\u8aa4\u89e3": 1}, "Hurry": {"\u5feb\u9ede": 3, "\u8d95\u5feb": 1, "\u5feb\u70b9": 3, "\u8d76\u5feb": 1}, "aid": {"\u6025\u6551\u7bb1": 1}, "watered": {"\u6d47\u6c34": 1}, "camping": {"\u9732\u8425": 1, "\u9732\u71df": 2, "\u5979": 1}, "beautifully": {"\u821e": 1}, "unwell": {"\u8212\u670d": 1}, "watermelon": {"\u897f\u74dc": 3}, "construction": {"\u5efa": 1}, "stepped": {"\u8e29": 1}, "digestion": {"\u52a9\u6d88\u5316": 1}, "creature": {"\u4ea7\u7269": 1}, "develop": {"\u958b\u767c": 1}, "whole": {"\u5168\u73ed\u540c\u5b66": 1, "\u6574\u4e2a": 1, "\u8c28\u614e": 1}, "nieces": {"\u5916\u7525\u5973": 1, "\u4f84\u5973": 1}, "deceived": {"\u4ed6": 1, "\u9a19": 1}, "moons": {"\u885b\u661f": 2}, "drowsy": {"\u660f\u660f\u6b32\u7761": 1}, "castles": {"\u5317\u90e8": 1}, "shattered": {"\u6253\u788e": 1}, "evident": {"\u660e\u986f": 1, "\u4e0d\u8b49": 1}, "funerals": {"\u4e09\u573a": 1}, "hiccuping": {"\u6253\u55dd": 2}, "coal": {"\u7b2c\u4e94": 1}, "occasionally": {"\u5076\u5c14": 5, "\u5076\u53d1\u4e8b\u4ef6": 1}, "snack": {"\u5fc3": 1, "\u96f6\u98df": 1}, "agreeable": {"\u4ee4\u4eba": 1, "\u597d\u813e\u6c14": 1}, "current": {"\u9006\u6d41": 1}, "By": {"\u987a\u4fbf": 2, "": 1, "\u9806\u4fbf": 1, "\u542c\u8bf4": 1}, "ballpoint": {"\u5706\u73e0\u7b14": 1}, "cage": {"\u9e1f\u7b3c": 1}, "foolish": {"\u611a\u8822": 1, "\u771f\u7b28": 1, "\u50bb": 1}, "honors": {"\u5149\u69ae": 1}, "slice": {"\u6bd4\u85a9\u9905": 1}, "ancient": {"\u53e4\u5efa\u7b51": 1}, "extremely": {"\u8868\u9054": 1}, "towards": {"\u5411": 1}, "Twitter": {"Twitter": 3}, "Fear": {"\u6050\u60e7": 1}, "anger": {"\u6124\u6012": 2, "\u538b\u6291": 1}, "joined": {"\u8ba8\u8bba": 1}, "cub": {"\u5c0f\u8001\u864e": 1}, "grumpy": {"\u813e\u6c14": 2}, "swallow": {"\u7fc5\u8180": 1}, "expectations": {"\u8f9c\u8d1f": 1}, "associate": {"\u5408\u5925\u4eba": 1}, "shade": {"\u6a39\u852d": 2}, "spinning": {"\u81ea\u4f20": 1}, "escaping": {"\u9003\u8dd1": 1}, "contact": {"\u8054\u7cfb": 3}, "Mix": {"\u6df7\u5408": 1}, "Day": {"\u5723\u8a95\u7bc0": 1, "\u89aa\u7bc0": 1}, "being": {"\u8d2b\u7a77": 1, "\u771f\u559c": 1}, "respect": {"\u5c0a\u656c": 4}, "elderly": {"\u957f\u8f88": 1}, "tied": {"\u7e69": 1, "\u7ed1\u5230": 1}, "everywhere": {"": 1, "\u8ddf\u8457": 1}, "enabled": {"\u667a\u6167": 1}, "website": {"\u7f51\u7ad9": 3}, "layout": {"\u7248\u9762\u8bbe\u8ba1": 1, "\u5e03\u5c40": 1}, "sunset": {"\u5915\u967d": 2}, "patio": {"\u9732\u53f0": 1, "\u9662\u5b50": 1}, "majors": {"\u6587\u5b78": 1}, "ridiculous": {"\u82b1\u5149": 1}, "talkative": {"\u5065\u8c08": 1}, "pockets": {"\u63d2\u9032": 1}, "Abraham": {"\u4f2f": 1}, "president": {"16": 1, "\u603b\u7edf": 3}, "tremble": {"\u9707\u52d5": 1}, "Snow": {"\u767d\u96ea\u516c\u4e3b": 1}, "owed": {"\u8fd8\u7ed9": 1}, "snobbish": {"\u52bf\u5229": 1}, "conclusions": {"\u5984\u4e0b": 1}, "questioned": {"\u76d8\u95ee": 1}, "Lesson": {"\u7b2c\u5341": 1, "\u7b2c\u5341\u8bfe": 1}, "B.": {"B": 1}, "rains": {"\u4e0b\u96e8": 6}, "Choose": {"\u9078": 3}, "visa": {"\u7c3d\u8b49": 1, "\u80fd": 1}, "pipe": {"\u7834\u88c2": 1}, "Afraid": {"\u50b7\u5bb3": 1}, "races": {"\u6bd4\u8d5b": 1}, "Karaoke": {"\u6e1b\u8f15": 1}, "forgets": {"\u5468\u5e74": 1}, "returns": {"\u4e0b\u4e2a\u661f\u671f": 1}, "arrests": {"\u5b9e\u65bd": 1}, "characteristic": {"\u51ed": 1}, "Printing": {"\u6cb9\u58a8": 1}, "screwed": {"\u641e\u7838": 1}, "smelled": {"\u70df\u5473": 2}, "whining": {"\u57cb\u6028": 1}, "festival": {"\u4e92\u5e2e\u4e92\u52a9": 1}, "universe": {"\u5b87\u5b99": 1}, "classical": {"\u9084": 1, "\u559c\u6b22": 2}, "knock": {"\u6572\u95e8": 3, "\u6572\u9580\u8072": 1}, "rate": {"\u532f\u7387": 1}, "From": {"\u6bd5\u4e1a": 1, "\u5929\u8272": 1}, "Getting": {"\u96be": 1}, "undressed": {"\u8131\u5149": 1}, "thrilling": {"\u9a0e\u99ac": 1}, "statesman": {"\u4f1f\u5927": 1}, "lack": {"\u7f3a\u4e4f": 2}, "Saturn": {"\u571f\u661f": 1}, "paradise": {"\u5929\u5802": 2}, "businessman": {"\u5546\u4eba": 1}, "marks": {"\u6210\u7ee9": 1, "\u512a\u7570": 1}, "breaks": {"\u58de": 1}, "adults": {"\u6210\u5e74\u4eba": 1, "\u6210\u4eba": 2}, "extent": {"\u7a0b\u5ea6": 2, "": 1}, "decorated": {"\u88c5\u9970": 1}, "emphasize": {"\u91cd\u8996": 1}, "text": {"\u7ed9\u6211\u53d1": 1}, "worries": {"\u62c5\u5fc3": 1}, "cubed": {"\u7acb\u65b9": 1}, "span": {"\u5bff\u547d\u77ed": 1}, "Halley": {"\u54c8\u96f7\u5f57\u661f": 1}, "turkey": {"\u706b\u9e21": 1, "\u706b\u96de": 1, "\u7a81\u7136": 1, "\u7136\u540e": 1}, "less": {"\u5927\u6982": 1, "\u4e0d\u5230": 1, "\u4e0d\u8981": 1}, "lotion": {"\u9632\u6652\u971c": 1}, "press": {"\u9215": 1}, "pulse": {"\u8109\u640f": 2, "\u8108\u640f": 1}, "nowhere": {"\u65e0\u5904\u53ef\u53bb": 1}, "yard": {"\u9662\u5b50": 3}, "disregarded": {"\u9867": 1}, "roughly": {"\u56db\u500d": 1}, "wrongly": {"\u5bc4\u9519": 1}, "apologized": {"\u9053\u6b49": 1}, "predicting": {"\u80dc\u9009\u8005": 1}, "frog": {"\u9752\u86d9": 2}, "Demand": {"\u7597\u6cd5": 1}, "parking": {"\u505c\u8f66\u573a": 1}, "Reading": {"\u770b\u4e66": 1}, "considered": {"\u5168\u76e4": 1}, "flame": {"\u8f49\u5c0f": 1}, "electrical": {"\u96fb\u5b50": 1}, "poisoner": {"\u4e0b\u6bd2": 1}, "loss": {"\u635f\u5931": 3}, "blessing": {"\u6069\u60e0": 1}, "edge": {"\u7aef": 1}, "inn": {"\u706b\u8b66": 1}, "Four": {"\u56db\u5104": 1, "\u6570\u5b57": 1}, "mission": {"\u4efb\u52d9": 1, "\u9009": 1}, "melt": {"\u4f1a\u5316": 1}, "swarm": {"\u9ec3\u8702": 1}, "Jesus": {"\u8036\u7a4c": 2}, "Rio": {"": 1}, "News": {"\u5145\u65a5": 1}, "created": {"\u5e73\u7b49": 1}, "posters": {"\u6d77\u62a5": 1}, "available": {"\u6709\u7a7a": 1, "\u5269": 1}, "shuffle": {"\u6d17\u724c": 1}, "In": {"\u67d0\u79cd\u610f\u4e49": 1, "\u5beb\u4f5c": 1}, "robber": {"\u6293\u8457": 1}, "pub": {"\u9152\u9986": 2}, "snoring": {"": 1}, "talent": {"\u624d\u83ef": 1}, "koala": {"\u5c3e": 1}, "Brazil": {"\u5df4\u897f": 3}, "Brasilia": {"\u5df4\u897f\u5229\u4e9a": 1}, "temper": {"\u813e\u6c14": 1, "\u5fcd\u4e0d\u4f4f": 1}, "apology": {"\u9053\u6b49": 3}, "fireworks": {"\u7130\u706b": 1, "\u6865\u4e0a": 1}, "spectacular": {"\u58ee\u89c2": 1}, "AI": {"AI": 1}, "hall": {"\u5e02\u653f": 1, "\u5e02\u653f\u5e9c": 2, "\u8d70\u5eca": 2, "\u5927\u5ef3": 1}, "mist": {"\u96fe": 1}, "bowl": {"\u7897": 3}, "mislead": {"\u8aa4\u5c0e": 1}, "their": {"\u4ed6\u4eec": 3, "\u4e00\u7121": 1}, "CD": {"CD": 5, "\u90a3": 1}, "elephant": {"\u5927\u8c61": 3}, "ray": {"\u7247": 2}, "required": {"8": 1}, "Publication": {"\u53d1\u8868": 1}, "tuned": {"\u7434": 1}, "billionaire": {"\u8457\u6210": 1}, "rooms": {"\u597d\u597d": 1}, "kettle": {"\u58fa": 1}, "launched": {"\u53d1\u8d77": 1}, "attack": {"\u653b\u51fb": 2, "\u5fc3\u81df\u75c5": 1, "\u5fc3\u810f\u75c5": 1}, "improved": {"\u6539\u5584": 2, "\u9032\u6b65": 1, "\u7684": 1}, "wages": {"\u7f77": 1}, "manufactures": {"\u751f\u4ea7": 1}, "captivity": {"\u56da\u7981": 1}, "Here": {"\u4ee5\u4e0b": 1, "\u6211": 1, "\u5403\u665a\u996d": 1, "": 1}, "field": {"\u5be6\u5730": 1}, "Actinium": {"\u9515": 1}, "description": {"\u5f97": 1, "\u5f62\u5bb9": 1}, "Islam": {"\u4f0a\u65af": 1}, "energetic": {"\u6d3b\u6cfc": 1}, "stepping": {"\u5340": 1}, "Mona": {"\u8499\u5a1c\u4e3d\u838e": 1}, "temples": {"\u53e4\u5edf": 1}, "negotiation": {"\u8c08\u5224": 1}, "poisonous": {"\u6709\u6bd2": 1}, "bottles": {"\u820a": 1, "\u4e24\u74f6": 1}, "departure": {"\u63a8\u9072": 1}, "brighter": {"\u4ed6\u5011": 1}, "Rhine": {"\u840a\u8335": 2}, "massive": {"\u5927\u578b": 1}, "basic": {"\u57fa\u672c": 3}, "rocks": {"\u77f3\u982d": 1}, "precedent": {"\u5148\u6cb3": 1}, "1880": {"1880": 1}, "onions": {"\u6d0b\u8471": 2, "\u8471": 1}, "coughing": {"\u54b3\u55fd": 1}, "pig": {"\u732a": 2}, "raising": {"\u6536\u8cbb": 1}, "Lift": {"\u53f3\u81c2": 1}, "Bible": {"\u5723\u7ecf": 2}, "bush": {"\u62d0\u5f4e\u62b9\u89d2": 1}, "defects": {"\u7f3a\u9677": 1}, "apart": {"\u62c6\u5f00": 1, "\u6563\u67b6": 1}, "Jupiter": {"\u6728\u661f": 1}, "Einstein": {"\u56e0\u65af": 1}, "pirates": {"\u6d77\u76dc": 1}, "mouths": {"\u8a72\u5c11": 1}, "disappearance": {"\u5931\u8e2a\u6848": 1}, "space": {"\u592a\u7a7a": 1}, "overtime": {"\u52a0\u73ed": 4}, "freezing": {"\u5929\u6c23": 1}, "pretending": {"": 1}, "ugly": {"\u820a": 1}, "fairies": {"\u795e\u8a71\u50b3\u8aaa": 1}, "imitation": {"\u4eff\u9020\u54c1": 1}, "deliver": {"\u9001\u8d27": 1, "\u904b\u9001": 1}, "necktie": {"\u9818\u5e36": 1}, "candles": {"\u5439\u706d": 1, "\u8721\u70db": 1}, "volumes": {"\u5206\u4e3a": 1}, "organic": {"\u5c0f\u578b": 1}, "demonstration": {"\u51e0\u5341\u4e2a": 1}, "retract": {"\u64a4\u56de": 1}, "postcards": {"\u660e\u4fe1\u7247": 1}, "flatly": {"\u65b7\u7136": 1}, "damaged": {"\u640d\u58de": 1}, "mastered": {"\u638c\u63e1": 2}, "miracle": {"\u5947\u8ff9": 1}, "Kill": {"\u6bba": 1}, "invested": {"\u4f01\u5283": 1}, "marvels": {"\u521b\u9020": 1}, "handbag": {"\u624b\u63d0\u5305": 1}, "Refugees": {"\u96be\u6c11": 1}, "sleeved": {"\u77ed\u8896": 1}, "golfer": {"\u9ad8\u5c14\u592b\u7403": 1}, "prettiest": {"\u957f": 1}, "Things": {"\u5168\u90fd": 1, "\u5931\u63a7": 1}, "roared": {"\u9a6c\u514b": 1}, "imagine": {"\u60f3\u50cf": 1, "\u884c\u8d70": 2}, "carrying": {"\u8eab\u4e0a": 1, "\u62ff": 1}, "Pay": {"\u51fa\u53e3": 1}, "marine": {"\u6d77\u6d0b": 1}, "quarter": {"\u4e00\u523b": 1, "\u7b2c\u4e09\u5b63": 2}, "pointed": {"\u6307\u7740": 1}, "ourselves": {"\u522b\u81ea": 1, "\u958b\u5fc3": 2, "\u81ea\u5df1": 1}, "eighth": {"\u516b\u6a13": 1, "\u592a\u9633\u7cfb": 1}, "treatment": {"\u6cbb\u7597": 2, "\u5f85\u9047": 1}, "thoroughly": {"\u6dcb\u5f97": 1}, "streaked": {"\u593e": 1}, "Vietnam": {"\u8d8a\u519b": 1}, "receive": {"\u63a5\u5230": 1, "\u8d60\u4e0e": 1}, "handling": {"\u4e00\u5957": 1, "\u5584": 1}, "Scotch": {"\u52a0\u6c34": 1}, "pancakes": {"\u714e\u997c": 1}, "damp": {"\u6e7f": 1}, "believes": {"\u76f8\u4fe1": 3, "\u7121\u8f9c": 1}, "disadvantage": {"\u574f\u4e8b": 1}, "hero": {"\u82f1\u96c4": 4}, "unforgettable": {"\u4ee4\u4eba\u96be\u5fd8": 1}, "incredibly": {"\u7d2f\u6b7b": 1}, "pilot": {"\u98db\u884c\u54e1": 1, "\u98de\u884c\u5458": 1}, "weaknesses": {"\u5f31\u70b9": 1}, "scholarship": {"\u734e\u5b78\u91d1": 2}, "Sixteen": {"\u5341\u516d": 1}, "Should": {"\u8fd9\u4ef6": 1, "\u8a72": 1}, "delays": {"\u6578\u6b21": 1}, "brushing": {"\u5237\u7259": 2}, "ruined": {"\u6bc1": 1}, "shock": {"\u9707\u64bc": 1}, "hypothesis": {"\u5047\u8bbe": 1}, "amounted": {"\u5e10\u5355": 1}, "vote": {"\u6295": 1, "\u6295\u7968": 1}, "matchbox": {"\u706b\u67f4\u76d2": 1}, "coyote": {"\u72fc": 1}, "giraffe": {"\u957f\u9888\u9e7f": 1}, "cooperative": {"\u5408\u4f5c": 1}, "instantly": {"\u4fbf": 1}, "radium": {"\u9433": 1}, "demanded": {"\u89e3\u91ca": 1}, "rides": {"\u6280\u672f": 1}, "incident": {"\u4e00\u8209": 1, "\u4e8b\u6545": 1}, "Anybody": {"\u72af\u9519": 1, "\u4e0d\u7ba1\u662f\u8c01": 1}, "worthless": {"\u8eca\u9f61": 1}, "Rainbow": {"\u5f69\u8679": 1}, "opportunity": {"\u7edd\u4f73": 1, "\u628a\u63e1": 2, "\u6a5f\u6703": 3}, "I.D.": {"\u8eab\u4efd": 1}, "commute": {"\u4e0a\u4e0b": 1}, "arched": {"\u5f13\u8d77": 1}, "Goodbye": {"\u518d\u89c1": 1}, "dim": {"\u8bb0\u5fc6": 1}, "marriage": {"\u4e09\u5341\u5e74": 1, "": 1}, "00": {"\u6b64": 1, "\u4e03\u70b9": 1, "\u4e03\u9ede": 2}, "None": {"\u9019\u4e9b": 2}, "discoveries": {"\u91ab\u5b78": 1}, "abundant": {"\u81ea\u7136\u8d44\u6e90": 1}, "bodyguard": {"\u4fdd\u9556": 1}, "behaved": {"\u5834\u5408\u884c": 1, "\u75af\u5b50": 1}, "cheer": {"": 1}, "ache": {"\u9178\u75db": 1}, "underpants": {"\u5167\u8932": 1}, "steps": {"\u6b65\u4f10": 1}, "200": {"200": 2, "\u767e\u5143": 1}, "unlocked": {"\u9580": 1}, "burned": {"\u4e86\u4fe1": 1, "\u70e7\u4f24": 1, "\u5de6\u624b": 1}, "aspired": {"\u7acb\u5fd7": 1}, "stare": {"\u76ef\u8457": 4}, "folding": {"\u53e0": 1}, "suitable": {"\u9069\u5408": 3}, "underwear": {"\u8863": 1}, "menu": {"\u83dc\u80b4": 1, "\u55ae": 1}, "division": {"\u9664\u6cd5": 1}, "result": {"\u7ed3\u679c": 4, "\u7d50\u679c": 1, "": 1}, "confirmed": {"\u8bc1\u5b9e": 2}, "Hot": {"\u6f6e\u6fd5": 1}, "stranger": {"\u4e0d\u719f": 1, "\u964c\u751f\u4eba": 2, "": 1, "\u5916\u5730\u4eba": 1}, "Knowledge": {"\u77e5\u8bc6": 1}, "shutting": {"\u9580\u95dc": 1}, "Last": {"\u6ee1\u6708": 1, "\u4e0a\u4e2a\u6708": 1, "\u6d77\u4e0a": 1}, "cheese": {"\u4e73\u916a": 1, "\u8bf7": 1, "\u5c1d": 1}, "listed": {"\u8bc1\u5238": 1}, "scuba": {"\u80ba\u6f5b\u6c34": 1}, "modifications": {"\u6539\u52a8": 1}, "sights": {"\u4e00\u4e24\u5929": 1}, "acid": {"\u9178\u6027": 1}, "further": {"\u904a": 1, "\u7d2f\u5f97": 1, "\u800c\u4e14": 1, "\u524d\u8fdb": 1}, "respectful": {"\u4e0a\u53f8": 1}, "environmental": {"\u4e00\u8282": 1}, "king": {"\u570b\u738b": 3}, "drug": {"\u56fd\u9645\u6027": 1}, "raise": {"\u9813\u662f": 1, "": 1, "\u52a0\u85aa": 1}, "smack": {"\u4e00\u5df4\u638c": 1}, "tapes": {"\u78c1\u5e36": 1}, "surfboard": {"\u8feb\u4e0d\u53ca\u5f85": 1}, "searched": {"\u8d70\u5931": 1}, "products": {"\u4ea7\u54c1\u8d28\u91cf": 1}, "pirate": {"\u6d77\u76d7": 1, "\u76d7\u7248": 1}, "justify": {"\u6b63\u7576": 1}, "Marriage": {"\u5a5a\u59fb": 2}, "drugs": {"\u6bd2\u54c1": 1}, "Waiter": {"\u670d\u52a1\u751f": 1}, "agrees": {"\u610f\u898b": 1}, "doors": {"\u95dc\u9589": 1}, "bananas": {"\u9999\u8549": 5}, "colds": {"\u611f\u5192": 5}, "charisma": {"\u9b45\u529b": 1}, "relieved": {"\u611f\u89c9": 1}, "gray": {"\u7070\u8272": 2, "\u767d": 1}, "glamorous": {"\u5973\u5b69\u5b50": 1}, "alphabet": {"\u8ba4\u5b57": 1}, "parked": {"\u505c\u8457": 1, "\u505c": 1}, "hardwood": {"\u6728\u5730\u677f": 1}, "loading": {"\u642c\u4e0a": 1}, "Queen": {"\u5973\u738b": 1}, "guaranteed": {"\u4fdd\u8b49": 2}, "cheap": {"\u4fbf\u5b9c": 6}, "prohibited": {"\u7981\u6b62": 1, "\u4e25\u7981\u5438\u70df": 1}, "symbol": {"\u7b26\u865f": 1}, "Seen": {"\u4e0a\u770b": 1}, "305": {"305": 1}, "astrophysicist": {"\u7576\u500b": 1}, "beholder": {"\u9a7b\u7559": 1}, "selling": {"\u8fd9\u5bb6": 1, "\u5c0f\u770b": 1, "\u5356\u4e66": 1}, "ducked": {"\u4f46\u662f": 1}, "conflict": {"\u7ea0\u845b": 1}, "apologies": {"\u8aa0\u646f": 1}, "groaned": {"\u547b\u541f": 1}, "Teachers": {"\u72af\u9519": 1, "\u6559\u5e2b": 1}, "style": {"\u4e2d\u5f0f": 1}, "dreamt": {"\u68a6": 1}, "adjoins": {"\u5ba2\u5ef3": 1}, "laid": {"\u6d3e": 1}, "briefly": {"\u7b80\u800c\u8a00\u4e4b": 1, "\u779f": 1}, "security": {"\u4fdd\u5b89": 2}, "terrified": {"\u5687\u58de": 1}, "spared": {"\u907a\u9918\u529b": 1}, "Sit": {"\u8010\u5fc3": 1}, "Red": {"\u7ea2\u8272": 1}, "folds": {"\u5979": 1}, "court": {"\u5448": 2}, "prefectures": {"\u7e23": 1}, "genuine": {"\u947d\u77f3": 1}, "Rather": {"": 1}, "putting": {"\u62d6\u5ef6": 1}, "shelves": {"\u4e66\u67b6\u4e0a": 1}, "assume": {"\u5047\u5b9a": 1}, "generate": {"\u96fb\u6d41": 1}, "blessed": {"\u8cdc\u4e88": 1, "\u8eab\u9ad4": 1}, "anticipate": {"\u9810\u6599": 1}, "logically": {"\u547d\u9898": 1}, "Popcorn": {"\u7206\u7c73\u82b1": 1}, "Sir": {"\u5148\u751f": 2}, "waves": {"\u6d6a": 1}, "Disneyland": {"\u6a02\u5712": 1}, "beggar": {"\u4e5e\u4e10": 1}, "manufacture": {"\u751f\u4ea7\u65e5\u671f": 1}, "approach": {"\u79d1\u5b66\u5bb6": 1}, "imposing": {"\u4fe1\u5ff5": 1}, "passes": {"\u8fc7\u53bb": 1}, "ballpark": {"\u7403\u5834": 1}, "impression": {"\u6df1\u523b": 1, "\u7b2c\u4e00\u5370\u8c61": 2}, "teased": {"\u7684": 1}, "Volcanic": {"\u706b\u5c71\u7070": 1}, "antiques": {"\u53e4\u8463": 2}, "Cows": {"\u4ea7\u5976": 1, "\u5976\u725b": 1}, "accumulated": {"\u6e6f\u59c6\u5c6f": 1}, "leak": {"\u6d29": 1, "\u6cc4\u9732": 1}, "Probably": {"\u82b1\u7c89": 1}, "gum": {"\u53e3\u9999\u7cd6": 1}, "angle": {"90": 1}, "Between": {"\u5979": 1}, "Tennis": {"\u8fd0\u52a8": 1}, "manage": {"\u89e3\u51b3": 1}, "reports": {"\u5831\u8f09": 1, "\u6708\u5e95": 1}, "stadium": {"\u9ad4\u80b2\u9928": 1}, "Gravity": {"\u91cd\u529b": 1}, "problems": {"\u95ee\u9898": 6, "\u554f\u984c": 2, "\u76ee\u524d": 1, "\u627e\u4e8b": 1}, "bite": {"\u54ac": 2, "\u54ac\u4e86\u4e00\u53e3": 1}, "forced": {"\u88ab\u8feb": 3, "\u8feb\u4f7f": 1}, "abate": {"\u51cf\u5f31": 1}, "handed": {"\u4ea4\u529f\u8ab2": 1, "\u5377": 1, "\u905e\u7d66": 1}, "karate": {"\u7a7a\u624b\u9053": 1}, "165": {"\u7e5e\u884c": 1}, "Neptune": {"\u6d77\u738b\u661f": 2}, "economical": {"\u7701\u6cb9": 1}, "recover": {"\u6062": 1}, "valid": {"\u4e09\u65e5": 1, "\u6709\u6548\u671f": 1}, "happiest": {"\u95b1\u8b80": 1, "\u66fe": 1}, "argue": {"\u5435": 1}, "choose": {"\u9009\u62e9": 2, "\u9078\u64c7": 3}, "greeted": {"\u6253\u62db\u547c": 3}, "goodnight": {"\u665a\u5b89": 1}, "bumped": {"\u78b0\u5230": 1, "\u67f1\u5b50": 1}, "closest": {"\u6700\u9760\u8fd1": 1, "\u89c6\u4e3a": 1}, "unfamiliar": {"\u60ca\u5413": 1, "\u4e0d\u719f": 1}, "theories": {"\u7406\u8bba": 1}, "mysteries": {"\u5145\u6ee1": 1}, "physically": {"\u5fc3": 1}, "fields": {"\u519c\u7530": 1}, "accurate": {"\u6e96": 1}, "gather": {"\u805a": 1, "\u731c\u60f3": 1}, "pigsty": {"\u7a9d": 1}, "inches": {"\u82f1\u5bf8": 2}, "Mathematics": {"\u6578\u5b78": 4}, "sciences": {"\u57fa\u790e": 1}, "Grandmother": {"\u5976\u5976": 1}, "Industry": {"\u65f6\u4ee3": 1}, "goals": {"\u76ee\u6a19": 2}, "disagreeing": {"\u53cd\u5bf9": 1}, "dam": {"\u6c34\u575d": 1}, "weeds": {"\u6742\u8349": 1, "\u62d4\u9664": 1}, "Of": {"\u5f53\u7136": 1}, "neighbor": {"\u9130\u5c45": 3, "\u76f2\u9130": 1}, "renovated": {"\u7ffb\u65b0": 1}, "ambiguities": {"\u660e\u786e": 1}, "155": {"155": 1}, "centimeters": {"\u516c\u5206": 2}, "within": {"\u4e4b\u5167": 1}, "daily": {"\u8d39\u7528": 1}, "Call": {"\u6253\u7535\u8bdd": 7, "\u8054\u7cfb": 2}, "cheered": {"\u85c9\u7531": 1}, "Fluency": {"\u6d41\u5229": 1}, "pumps": {"\u821e\u978b": 1}, "International": {"\u4e1c\u4eac\u56fd\u9645": 1}, "January": {"\u4e00\u6708\u4efd": 1}, "Software": {"\u4e0d\u65ad": 1}, "Americans": {"\u7f8e\u570b": 1}, "kitten": {"\u5c0f\u732b": 1}, "pillow": {"\u6795\u982d": 1}, "hammer": {"\u9524\u5b50": 2}, "numb": {"\u51bb\u50f5": 1, "\u9ebb": 1}, "Needless": {"\u7121\u9808": 1}, "spite": {"\u4e0b\u7740\u96e8": 1}, "graveyard": {"\u57cb\u846c": 1}, "shouted": {"\u8116\u5b50": 1}, "neck": {"": 1, "\u8116\u5b50": 1}, "toast": {"\u5410\u53f8": 1, "\u9762\u5305\u7247": 1}, "3rd": {"\u4e09\u865f": 1}, "gentle": {"\u8f15\u8f15\u5730": 1}, "repairing": {"\u4fee": 2, "\u9019\u8f1b": 1}, "generally": {"\u901a\u5e38": 1, "\u6211": 1, "\u5927\u81f4": 1, "\u4e00\u822c": 1}, "diplomacy": {"\u65c5\u904a": 1}, "compiling": {"\u7f16\u8bd1": 1}, "skinny": {"\u82d7\u6761": 1}, "pose": {"\u63d0\u51fa": 1}, "Basketball": {"\u7bee\u7403": 1}, "acquired": {"\u9700\u8981": 1}, "wooden": {"\u6728\u684c": 1, "\u6728\u6905": 1}, "Release": {"\u653e\u5f00": 1}, "absconded": {"\u643a\u6b3e": 1}, "Hong": {"\u9999\u6e2f": 2}, "earthworm": {"\u86af\u8693": 1}, "sunglasses": {"\u4e00\u526f": 1, "\u5e7e\u526f": 1}, "ideal": {"\u4f9b": 1}, "unfit": {"\u9002\u5408": 1}, "physics": {"\u7269\u7406": 1}, "daydreaming": {"\u767d\u65e5": 1, "\u767d\u65e5\u68a6": 1}, "aside": {"\u8ba9\u5f00": 1}, "freed": {"\u5c07\u9ce5": 1}, "cottages": {"\u597d\u51e0\u95f4": 1}, "solar": {"\u80fd": 1}, "skirts": {"\u9577\u88d9": 2}, "requires": {"\u614e\u91cd": 1, "\u4e00\u5927\u7b14\u94b1": 1}, "dessert": {"\u751c\u9ede": 2, "\u751c\u70b9": 1}, "alcoholic": {"\u9152\u9b3c": 1}, "plotting": {"\u6b63\u5bc6": 1}, "annoying": {"\u70e6\u4eba": 1}, "sounds": {"\u8d77\u4f86": 3}, "topics": {"\u8a71\u984c": 1}, "Classes": {"\u8bfe\u7a0b": 1}, "growled": {"\u5486\u54ee": 1}, "frogs": {"\u9752\u86d9": 1}, "uneasy": {"\u6765\u4fe1": 1, "\u4e0d\u81ea\u5728": 1}, "nose": {"\u59ff\u614b": 1, "\u9f3b\u5b50": 1}, "ticking": {"\u6ef4\u7b54\u58f0": 1}, "focus": {"\u4e24\u4ef6\u4e8b": 1}, "emphasis": {"\u5f3a\u8c03": 1}, "thunder": {"\u96f7\u8072": 1}, "junior": {"\u521d\u4e2d\u751f": 1, "\u570b\u4e2d": 1}, "Cool": {"\u51b7\u9759": 1}, "companies": {"\u5be6\u884c": 1}, "sigh": {"\u4e00\u53e3": 1}, "touched": {"\u89e6\u52a8": 1}, "sofa": {"\u5f35\u6c99": 1, "\u6c99\u767c": 2}, "worked": {"\u5e02\u7acb": 1, "\u5de5\u4f5c": 2}, "nature": {"\u5927\u81ea\u7136": 1, "\u5929\u751f": 2}, "culture": {"\u6587\u5316": 2}, "definitely": {"\u7edd\u5bf9": 2, "\u7d55\u4e0d": 1}, "Wood": {"\u6728\u5934": 1}, "demand": {"\u4f9b\u7d66": 1}, "appreciate": {"\u611f\u6fc0": 1, "\u6b23\u8cde": 1}, "heaven": {"\u5275\u9020": 1}, "pages": {"\u51e0\u9875": 1}, "venture": {"\u98ce\u9669\u6295\u8d44": 1}, "flush": {"\u51b2\u6c34": 1}, "attempt": {"\u8fc7\u6cb3": 1}, "zeros": {"2010": 1}, "terrorist": {"\u75db\u6068": 1}, "letters": {"\u4fe1": 2, "\u5199\u4fe1": 2, "\u5927\u5199\u5b57\u6bcd": 1}, "useless": {"\u6c92\u7528": 1}, "paying": {"\u5f00\u5c0f\u5dee": 1}, "military": {"\u8ecd\u4e8b": 1}, "Stand": {"\u8d77\u7acb": 1, "\u9000\u5230": 1}, "overreacting": {"\u8fc7\u5ea6": 1}, "seawater": {"\u6d77\u6c34": 1}, "theater": {"\u6232\u9662": 1, "\u5287\u5834": 1, "\u5267\u573a": 1, "\u7ecf\u5e38": 1}, "attacked": {"\u653b": 1, "\u591c\u9593": 1, "\u62a8\u64ca": 1}, "boarding": {"\u767b\u6a5f": 2}, "wiser": {"\u667a\u6167": 1}, "swimsuit": {"\u8bd5\u8fc7": 1}, "Social": {"": 1}, "weak": {"\u4f53\u5f31": 1, "\u865a\u5f31": 1}, "Trees": {"\u8349\u539f": 1}, "Shouting": {"\u543c": 1}, "dignity": {"\u81ea\u91cd": 1}, "assignment": {"\u9884\u671f": 1}, "spirits": {"\u7cbe\u795e": 1}, "gently": {"\u6eab\u67d4": 2}, "showed": {"\u9818": 1, "\u521a\u597d": 1}, "believed": {"\u4fe1\u8fc7": 1, "\u76f8\u4fe1": 3}, "waterfall": {"\u7011\u5e03": 1}, "Singing": {"\u5f3a\u9879": 1}, "occasions": {"\u5408\u7a7f": 1}, "numerous": {"\u4e66\u67b6\u4e0a": 1}, "Dad": {"\u4e86": 1, "\u53ca\u6642": 1}, "Married": {"\u5df2\u5a5a": 1}, "officer": {"\u8b66\u5b98": 1}, "typewriter": {"\u6709\u4ec0\u9ebc": 1}, "Back": {"\ufe50": 1, "\u540e\u9000": 1}, "Bears": {"\u718a\u4f1a": 1}, "Stars": {"\u661f\u661f": 1}, "mosquito": {"\u53ee": 2}, "Hop": {"\u8df3\u8fdb\u6765": 1}, "tiny": {"\u5c71\u57ce": 1}, "funeral": {"\u846c\u793c": 1, "\u846c": 2}, "abandoned": {"\u653e\u5f03": 2, "\u653e\u68c4": 1, "\u629b\u5f03": 1}, "complaints": {"\u6295\u8a34": 1}, "wrist": {"\u624b\u8155": 1}, "tuner": {"\u8c03\u97f3\u5e08": 1}, "buys": {"\u827a\u672f\u54c1": 1, "\u6602\u8cb4": 1}, "Embassy": {"\u51fa\u5165": 1, "\u5927\u4f7f": 1}, "eyed": {"\u53ef\u7591": 1}, "preparation": {"\u56e0": 1}, "nor": {"": 2}, "handcuffs": {"\u94d0": 1}, "thumb": {"\u500b\u5712": 1}, "1996": {"1996": 1}, "worm": {"\u866b": 1}, "Ever": {"": 1}, "Believe": {"": 1}, "neglected": {"\u6020\u5ffd": 1}, "engrossed": {"\u6c89\u6d78": 1}, "Stock": {"\u65b0\u4f4e": 1}, "mice": {"\u8c93\u5152": 1, "": 1}, "locker": {"\u6ac3\u5b50": 1}, "firm": {"\u575a\u5b9a": 1, "\u5de8\u5927": 1}, "goal": {"\u76ee\u6807": 4, "\u9054\u6210": 2}, "collected": {"\u8a0a\u606f": 1}, "Yari": {"\u5cb3": 1}, "disposal": {"\u968f\u4fbf": 1}, "accidents": {"\u5169\u6b21": 1}, "meaning": {"\u610f\u601d": 1}, "merely": {"\u5f00\u73a9\u7b11": 1}, "disassembled": {"\u62c6\u5f00": 1}, "barbeque": {"\u70e4\u8089": 1}, "3202": {"\u53f7\u7801": 1}, "Paper": {"\u7d19": 1}, "fewer": {"\u4e0d\u4e0b": 1}, "Florence": {"\u4f5b\u7f57\u4f26\u8428": 1}, "instruments": {"\u73a9": 1}, "warrant": {"\u641c\u67e5": 1}, "Harajuku": {"\u642d\u4e0a": 1}, "bombs": {"\u96e8\u70b9": 1}, "patients": {"\u4e94\u4f4d": 1, "\u75c5\u4eba": 1}, "stuff": {"\u50f9\u503c": 1}, "scrambled": {"\u7092\u86cb": 1}, "workday": {"\u5de5\u4f5c\u65e5": 1, "\u661f\u671f\u65e5": 1}, "ringtone": {"\u9234": 1}, "complaining": {"\u62b1\u6028": 3}, "forgotten": {"\u5fd8": 1}, "weed": {"\u5927\u9ebb": 1}, "decreased": {"\u6e1b\u5c11": 1}, "marital": {"\u5a5a\u59fb\u72b6\u51b5": 1}, "owns": {"\u8dd1\u8f66": 1}, "realize": {"\u771f\u6b63": 1}, "Behave": {"\u89c4\u77e9": 1}, "leg": {"\u817f": 2}, "outdoors": {"\u6709\u5e38": 1}, "Drunk": {"\u9a7e": 1}, "warmer": {"\u65e5\u6e10": 1, "\u4e00\u5929\u5929": 1, "\u6696": 1}, "among": {"\u6d41\u884c": 1, "\u81f4\u529b\u4e8e": 1}, "tightly": {"\u7dca\u7dca": 1}, "holidays": {"\u4e8b\u4e8b": 1, "\u5bd2\u5047": 1}, "Entering": {"\u5bb6\u95e8": 1}, "dreamed": {"\u68a6": 1}, "blossoms": {"\u6afb\u82b1": 1}, "Shanghai": {"\u4e0a\u6d77": 2}, "suntan": {"\u6652\u9ed1": 1}, "via": {"\u7ecf\u7531": 1}, "Daddy": {"\u7239": 1}, "differ": {"\u5404\u570b": 1}, "springs": {"\u6e29\u6cc9": 1}, "significance": {"\u9886\u4f1a": 1}, "gazing": {"\u51dd\u89c6\u7740": 1}, "weapons": {"\u6b66\u5668": 2}, "Add": {"\u4e00\u4e01": 1}, "surfers": {"\u51b2\u6d6a\u8005": 1}, "entirely": {"\u6beb\u65e0\u610f\u4e49": 1}, "deputy": {"\u6211": 1}, "vulnerable": {"\u8106\u5f31\u4e0d\u582a": 1}, "bound": {"\u6ce8\u5b9a": 2, "\u51c6\u4f1a": 1, "\u5fc5\u5b9a": 1}, "Felicja": {"Felicja": 1}, "Such": {"\u9019\u6a23": 1}, "patriotism": {"\u63d0\u5021": 1}, "stubborn": {"\u5014\u5f3a": 2}, "starved": {"\u9913\u6b7b": 1}, "lifted": {"\u88ab\u8209": 1}, "graduate": {"": 1, "\u4e2d\u5b78": 1}, "napkin": {"\u9910\u5dfe": 1}, "seek": {"\u5c0b\u6c42": 1}, "mandatory": {"\u70f9\u996a": 1}, "rolling": {"\u6211\u5011": 1}, "explosives": {"\u7206\u70b8\u7269": 1}, "insured": {"\u4fdd\u9669": 1, "\u4fdd\u96aa": 1}, "athletic": {"\u8fd0\u52a8": 1}, "gamble": {"": 1}, "455": {"455": 1}, "taxis": {"\u5169\u8f1b": 1}, "dived": {"\u8df3\u5165": 1}, "loaded": {"\u88c5": 1}, "100,000": {"": 1}, "starve": {"\u77e5\u4e0d\u77e5\u9053": 1}, "puffs": {"\u6ce1\u8299": 1}, "driven": {"\u958b": 1}, "points": {"\u5f3a\u9879": 1}, "meets": {"\u898b\u9762": 1, "\u4ea4\u670b\u53cb": 1}, "exceptionally": {"\u59d1\u5a18": 1}, "hopeful": {"\u672a\u4f86": 1}, "artistic": {"\u85dd\u8853": 1}, "charm": {"\u65e7\u6751": 1}, "tinnitus": {"\u8033\u9e23": 1}, "marathon": {"\u9a6c\u62c9\u677e": 2}, "Hyogo": {"\u5175\u5e93\u53bf": 1, "\u5175\u5eab": 1}, "van": {"\u649e\u5230": 1}, "wrung": {"\u62e7\u5e72": 1}, "Facts": {"": 1}, "beans": {"\u8c46\u5b50": 2}, "yours": {"": 1, "\u4e0d\u5173": 1, "\u90a3\u4e2a": 1, "\u5f00\u9500": 1}, "assistance": {"\u5e6b\u52a9": 1}, "investigation": {"\u8abf\u67e5": 2}, "Kiss": {"\u543b": 1}, "determination": {"\u6c7a\u5fc3": 1}, "expressed": {"\u706b\u71b1": 1}, "500": {"500": 2}, "guts": {"\u81bd\u5b50": 1}, "castle": {"\u57ce\u5821": 2}, "penny": {"\u4e00\u5206": 1}, "Subtract": {"\u51cf\u53bb": 1}, "training": {"\u8bad\u7ec3": 1}, "meowed": {"\u732b\u53eb": 1}, "Restart": {"\u91cd\u65b0\u542f\u52a8": 1}, "attributes": {"\u5f52\u529f\u4e8e": 1}, "jungle": {"\u4e1b\u6797": 1}, "adventure": {"\u5192\u9669": 2}, "moral": {"\u541b\u5b50": 1}, "effect": {"\u6211": 1}, "champion": {"\u51a0\u519b": 1}, "explained": {"\u4ed4\u7ec6": 1}, "describe": {"\u7eff\u8336": 1}, "bounced": {"\u9000\u7968": 1}, "crowded": {"\u6324\u6ee1": 1, "\u5e73\u65e5": 1, "\u6324\u8fdb": 1, "\u64e0\u6eff": 1}, "undressing": {"\u8131\u8863\u670d": 1}, "forks": {"\u53c9\u5b50": 1}, "basement": {"\u7a83\u8d3c": 1}, "yield": {"\u4e4b\u4e0b": 1}, "temptation": {"\u8a98\u60d1": 2}, "abated": {"\u51cf\u5f31": 1}, "neat": {"\u6574\u6f54": 1}, "suits": {"\u6761": 1, "": 1}, "proficient": {"\u7cbe\u901a": 1}, "shone": {"\u5979": 1}, "sleeve": {"\u8896\u5b50": 1}, "Eat": {"\u51c9": 1}, "demonstrated": {"\u8bd5\u9a8c": 1}, "itself": {"\u63a8\u95e8": 1}, "disturbing": {"\u6253\u6270\u5230": 1}, "11": {"11": 2}, "networks": {"\u7f51\u7edc": 1}, "manager": {"\u7d93\u7406": 1}, "Hide": {"\u85cf\u9032": 1}, "Selling": {"\u8ce3\u8eca": 1}, "online": {"\u7db2": 1, "\u7db2\u4e0a": 1}, "competed": {"\u56db\u5339": 1}, "error": {"\u9519\u8bef": 1}, "carbonated": {"\u78b3\u9178": 1}, "saving": {"\u5b58\u9322": 1, "\u7701\u94b1": 1}, "method": {"\u65b9\u6cd5": 1}, "recall": {"\u898b\u9762": 1}, "advertising": {"\u5ee3\u544a": 1, "\u5e7f\u544a": 1}, "Blood": {"\u5230\u5904": 1}, "swallows": {"\u71d5\u5b50": 1}, "optimistic": {"\u4e50\u89c2": 5, "\u6e6f\u59c6\u6a02": 1}, "invite": {"\u6d3e\u5bf9": 1}, "occurred": {"": 1, "\u60f3\u5230": 1}, "upside": {"\u6302\u53cd": 1}, "ways": {"\u6d4b\u901f": 1}, "Three": {"\u4e27\u751f": 1}, "defeatist": {"\u4ed7": 1}, "include": {"\u5305\u542b": 1}, "Ca": {"\u6536\u5165": 1, "\u4e0d\u6210": 1}, "dancer": {"\u821e\u8005": 1, "\u5f88\u68d2": 1}, "beef": {"\u725b\u8089": 3}, "stroganoff": {"\u4fc4\u5f0f": 1}, "pack": {"\u6253\u5305": 1}, "arrogance": {"\u50b2\u6162": 2}, "Boys": {"\u4e00\u822c\u6765\u8bf4": 1, "": 1}, "Hug": {"\u62b1\u7d27": 1, "\u62b1\u62b1": 1}, "sunflower": {"\u5411\u65e5\u8475": 1}, "Whoever": {"\u4e70\u6765": 1}, "caviar": {"\u9b5a\u5b50": 1}, "suited": {"\u6d0b\u88dd": 2}, "praying": {"\u7948\u79b1": 1}, "Bringing": {"\u8270\u96be": 1}, "period": {"\u7b2c\u4e09": 1, "\u4e00\u6bb5\u65f6\u95f4": 1}, "spending": {"\u8d8a\u6765\u8d8a": 1, "\u8eab\u4e0a": 1}, "afterwards": {"\u5f80": 1}, "Visiting": {"\u5f88\u8cb4": 1, "\u89c0\u5149\u52dd": 1}, "decrease": {"\u75bc\u75db": 1}, "scenic": {"\u512a\u7f8e": 1}, "injure": {"\u624b\u7eed": 1}, "yelling": {"\u558a\u53eb": 1, "\u543c": 1}, "I.": {"\u65c5\u6e38": 1}, "chest": {"\u80f8\u75db": 1}, "handball": {"\u64cd\u5834": 1}, "discovery": {"\u767c\u73fe": 1}, "leaks": {"\u6f0f\u6c34": 1}, "testified": {"\u4f5c\u8b49": 1}, "signal": {"\u4fe1\u865f": 2}, "courageous": {"\u52c7\u6562": 2}, "locating": {"\u96be\u4ee5": 1}, "noodles": {"\u689d": 1}, "concerts": {"\u4e00\u573a": 1}, "quickest": {"\u6700\u5feb": 2}, "approaching": {"\u63a5\u8fd1": 1}, "bloom": {"\u6bd4\u5225": 1}, "conservationists": {"\u81ea\u7136\u73af\u5883": 1}, "prevent": {"\u963b\u6b62": 1}, "locate": {"\u6839\u6e90": 1}, "parasol": {"\u9633\u4f1e": 2}, "unmarried": {"\u7d50\u5a5a": 1}, "overweight": {"\u4e0d\u6b62": 1, "\u8d85\u91cd": 2}, "cozy": {"\u8212\u9069": 1}, "dumped": {"\u7529": 1}, "starvation": {"\u9965\u997f": 1}, "Diplomats": {"\u591a\u79cd": 1}, "Run": {"\u62fc\u547d": 1, "\u7528\u8dd1": 1}, "Hopefully": {"\u65c5": 1}, "governed": {"\u7d71\u6cbb": 1}, "Creationism": {"\u4e3b\u4e49": 1}, "Lunch": {"\u9001\u5230": 1, "\u5348\u9910": 1}, "purse": {"\u6211": 1, "\u5305\u88ab": 1, "\u5305\u5728": 1}, "estimated": {"\u4f30\u4ef7": 1}, "Mondays": {"\u661f\u671f\u4e00": 4}, "hearing": {"\u4e0d\u5c11": 1, "\u4f86\u4fe1": 2, "\u6536\u5230": 1, "\u542c\u817b": 1}, "Shine": {"\u64e6\u4eae": 1}, "suggestions": {"\u5efa\u8bae": 1, "\u63d0\u51fa": 1}, "detectives": {"\u4fa6\u63a2": 1}, "Wild": {"\u91ce\u751f": 1}, "libras": {"\u82f1\u9551": 1}, "context": {"\u60c5\u51b5": 2}, "Anniversaries": {"\u9031\u5e74": 1}, "Fantastic": {"\u5f88\u68d2": 1, "\u68d2": 1}, "Beats": {"\u4e00\u65e0\u6240\u77e5": 1}, "Young": {"\u70ed\u60c5": 1}, "grape": {"": 1}, "PTA": {"PTA": 1}, "pigeons": {"\u5582": 1}, "L.A.": {"\u6d1b\u6749\u77f6": 1}, "Running": {"\u6709\u76ca": 1}, "beverage": {"\u996e\u6599": 1}, "scrap": {"\u5ee2\u7d19": 1}, "rolled": {"\u6e6f\u59c6\u62c9": 1}, "promoted": {"\u6649\u5347": 1}, "branch": {"\u5206\u5e97": 1}, "monster": {"\u8d70\u6765": 1}, "rivers": {"\u6cdb\u6ee5": 1}, "Except": {"": 1}, "awake": {"\u9192": 2}, "hundreds": {"\u5e7e\u767e\u672c": 1}, "Asians": {"\u4e9e\u6d32": 1}, "evidently": {"\u660e\u986f": 1}, "Collect": {"\u6536\u597d": 1}, "provide": {"\u517b\u6d3b": 1}, "Wolves": {"\u72fc": 1}, "Revolution": {"\u5927\u9769\u547d": 1}, "leisure": {"\u5e03\u5a03\u5a03": 1}, "biggest": {"\u6700\u5927": 1, "\u7684\u7684": 1}, "barbershop": {"\u7406": 1}, "puppies": {"\u5c0f\u72d7": 1}, "toured": {"\u6e38\u89c8": 1}, "busier": {"\u5e73\u65f6": 1}, "horrible": {"\u53ef\u6015": 1, "\u591a\u4e48": 1}, "pleasures": {"\u6a02\u8da3": 1}, "mornings": {"\u65e9\u6668": 1, "\u6bcf": 1}, "Sociopaths": {"\u6781\u5c11": 1}, "So": {"": 1, "\u5565": 1}, "attained": {"\u8fbe\u5230": 1}, "frowned": {"\u76ba\u8457": 1}, "speechless": {"\u60ca": 1}, "Nowadays": {"\u6709\u9b3c": 1}, "Men": {"\u7537\u4eba": 1}, "glared": {"\u77aa": 1}, "whisky": {"\u592a\u70c8": 1}, "doghouse": {"\u5c4b": 1}, "corners": {"\u5077\u5de5\u51cf\u6599": 1}, "ends": {"\u5973\u4e3b\u89d2": 1}, "transfer": {"\u6362\u4e58": 1}, "Place": {"\u653e\u5728": 1}, "Environmental": {"\u74b0\u5883": 1}, "pollution": {"\u6c61\u67d3": 3}, "reflection": {"\u6620\u50cf": 1}, "Jazz": {"\u878d\u5408": 1}, "cheeks": {"\u6cea\u6c34": 1}, "Broccoli": {"\u897f\u85cd\u82b1": 1}, "distrusted": {"\u4fe1\u4efb": 1}, "contemporary": {"\u73b0\u4ee3\u6587\u5b66": 1}, "Christ": {"\u57fa\u7763": 1}, "treatments": {"\u533b\u836f\u8d39": 1}, "flammable": {"\u53ef\u71c3": 1}, "tested": {"\u6aa2\u67e5": 1}, "soil": {"\u571f\u58e4": 1}, "Over": {"\u8fc7\u5934": 1}, "arrives": {"": 1}, "consult": {"\u8bf7\u6559": 1, "\u6559": 1}, "skeptical": {"\u6000\u7591": 1}, "unsatisfied": {"\u4e0d\u6ee1": 1}, "barometer": {"\u6c14\u538b\u8ba1": 1}, "sale": {"\u8981\u5356": 1, "\u51fa\u552e": 1, "\u4e0d\u5356": 1}, "scenario": {"\u60c5\u5883": 1}, "dealing": {"\u61c9\u4ed8": 1}, "Bali": {"\u5df4\u5398\u5c9b": 1}, "Talk": {"\u7c21\u55ae": 1}, "toothache": {"\u7259\u75db": 1}, "Takeuchi": {"\u7af9": 1}, "confident": {"\u4fe1\u5fc3": 1}, "elephants": {"\u5927\u8c61": 1, "": 1}, "argument": {"\u4e89\u8bba": 1}, "affair": {"\u7121\u95dc": 1, "\u4e00\u8209": 1}, "predict": {"\u9810\u8a00\u6703": 1, "\u5f88\u96be\u8bf4": 1}, "towels": {"\u51e0\u6761": 1}, "Dallas": {"\u62c9\u65af": 1}, "identified": {"\u5147": 1}, "obese": {"\u5f88\u80d6": 1}, "Britain": {"\u82f1\u56fd": 1}, "dollar": {"\u6495\u6389": 1}, "bawling": {"\u53ad\u7169": 1}, "shirts": {"\u6de8": 1}, "mommy": {"\u5abd": 1}, "permanent": {"\u6c38\u4e45": 1, "\u6b63\u5f0f\u5de5": 1}, "miles": {"\u82f1\u91cc": 1}, "disheveled": {"\u6e6f\u59c6\u982d": 1}, "transmission": {"\u958b\u624b": 1}, "Ten": {"\u6ca1\u6cb9": 1, "\u5341\u5e74": 1, "\u5341\u9593": 1}, "relief": {"\u8212\u670d\u4e9b": 1}, "rabbi": {"\u62c9\u6bd4": 1}, "Iceland": {"\u51b0\u5cf6": 1}, "reliable": {"\u9760\u4e0d\u4f4f": 1}, "calculation": {"\u4f30\u8a08": 1}, "jet": {"\u5ba2\u6a5f": 1}, "delighted": {"\u89c1\u5230": 1}, "chosen": {"\u9009\u4e2d": 1, "\u9009\u597d": 1}, "rear": {"\u540e\u95e8": 1}, "equal": {"\u80dc\u4efb": 1}, "Colombian": {"\u54e5\u4f26\u6bd4\u4e9a\u653f\u5e9c": 1}, "For": {"\u5167\u7528": 1, "\u8d85\u5e02": 1}, "ID": {"\u5e36\u4e0a": 1, "\u6709": 1}, "20th": {"\u901d\u4e16": 1}, "impressed": {"\u6df1\u523b\u5370\u8c61": 1, "\u5370\u8c61": 1}, "passion": {"\u767e\u9999\u679c\u6c41": 1}, "Prime": {"\u7e3d\u7406": 1}, "blinded": {"\u611b\u60c5": 1}, "approve": {"\u6e6f\u59c6\u6703": 1}, "hung": {"\u60ac\u6302": 1, "\u639b": 1}, "Thursday": {"\u56db": 1, "\u793c\u62dc\u56db": 1}, "mentally": {"\u7cca\u6389": 1}, "toaster": {"\u5f04\u58de": 1}, "Dinosaurs": {"\u6050\u9f8d": 1}, "occasional": {"\u9635\u96e8": 1}, "amount": {"\u6709\u4e9b": 1, "\u9053\u7406": 1}, "absence": {"\u4ea7\u751f": 1}, "swollen": {"\u816b": 1}, "irresistible": {"\u6297\u62d2": 3}, "replaced": {"\u66ff\u6362": 1}, "mike": {"\u9ea5\u514b\u98a8": 1}, "vaccinated": {"\u63a5\u79cd": 1}, "wore": {"\u6df1\u8272": 1}, "commission": {"\u624b\u7eed\u8d39": 1}, "items": {"\u8d2d\u7269\u5355": 1}, "horses": {"\u9a6c": 2}, "methods": {"\u79d1\u5b66": 1}, "consider": {"\u8ba4\u771f": 1}, "internship": {"\u61c9\u5fb5": 1}, "scumbag": {"\u65e0\u8cf4": 1}, "Raise": {"\u4e3e": 1}, "Strictly": {"\u56b4\u683c": 1}, "honor": {"\u540d\u8b7d": 1}, "T.V.": {"\u5b89\u5fc3": 1}, "diplomatic": {"\u5916\u4ea4": 1}, "Me": {"\u6ca1\u60f3\u5230": 1}, "scholar": {"\u5b66\u8005": 1}, "Wear": {"\u7a7f": 1}, "yes": {"\u8be5": 1}, "Cash": {"\u6350\u8d60": 1}, "paintbrush": {"\u756b\u7b46": 1}, "personal": {"\u6536": 1, "\u904e\u554f": 1}, "warehouse": {"\u5009\u5eab": 1}, "forties": {"\u56db\u5341\u591a": 1}, "unfortunately": {"\u53ef\u60dc": 1}, "healthiest": {"\u8996\u70ba": 1}, "tiger": {"\u8001\u864e": 2}, "presents": {"\u79ae\u7269": 1}, "1950": {"1950": 1}, "landlord": {"\u5730\u4e3b": 1}, "drowned": {"\u6eba\u6c34": 1, "\u6df9\u6b7b": 3}, "Soccer": {"\u53d7\u6b22\u8fce": 1}, "Clearly": {"\u986f\u7136": 1}, "ignored": {"\u9867": 1}, "uncles": {"\u63a2\u671b": 1}, "divorces": {"\u79bb\u5a5a": 1}, "colors": {"\u984f\u8272": 1, "\u56fd\u65d7": 1}, "steak": {"\u725b\u6392": 2}, "hostess": {"\u7a7a\u59d0": 1}, "beyond": {"\u5bf9\u9762": 1}, "Accuracy": {"\u51c6\u786e\u6027": 1}, "external": {"\u5916\u63a5\u5f0f": 1}, "command": {"\u80fd\u529b": 1}, "taste": {"\u5634\u91cc": 1}, "AC": {"\u51b7\u6c14": 1}, "rowing": {"\u5212\u8239": 1}, "features": {"\u52a0\u62ff\u5927": 1}, "leftovers": {"\u5eda\u9918": 1, "\u5269\u4e0b": 1}, "divide": {"\u5206": 1}, "unicycle": {"\u7368\u8f2a\u8eca": 1}, "personality": {"\u4e2a\u6027": 1}, "hurricane": {"\u6210": 1}, "Wi": {"Wi": 1}, "Lindbergh": {"Charles": 1}, "erase": {"\u62b9": 1}, "memories": {"\u8bb0\u5fc6": 2}, "buildings": {"\u5efa\u7b51": 1, "\u5bd2\u9178": 1}, "fellow": {"\u597d\u4eba": 1}, "pragmatic": {"": 1}, "religious": {"\u4fe1\u6559": 1}, "crucial": {"\u5173\u952e\u70b9": 1}, "Fight": {"\u6218\u6597": 1}, "strings": {"\u6697\u7bb1": 1}, "1636": {"\u59cb\u5efa": 1}, "hook": {"\u9264\u5b50": 1}, "interrupting": {"": 1}, "data": {"\u6578\u64da": 1}, "resort": {"\u907f\u6691": 1}, "satisfy": {"\u4f17\u53e3\u96be\u8c03": 1}, "borders": {"\u76f8\u90bb": 1}, "tender": {"\u6eab\u67d4": 1}, "Mercury": {"\u6c34\u661f": 1}, "ecstatic": {"\u5174\u594b\u4e0d\u5df2": 1}, "acquitted": {"\u6cd5\u5ead": 1}, "fastest": {"\u6700\u5feb": 2}, "folks": {"\u517b\u8001\u9662": 1}, "considering": {"\u8003\u8651": 1}, "object": {"\u76f4\u547c\u5176\u540d": 1, "\u90a3\u513f": 1}, "greet": {"": 1}, "deaf": {"\u7f6e\u82e5\u7f54\u95fb": 1}, "comics": {"\u770b\u6f2b": 1}, "gibberish": {"\u80e1": 1}, "interfere": {"\u63d2\u624b": 1, "\u4eba\u4e8b": 1}, "Washing": {"\u6d17\u8863\u670d": 1}, "balance": {"\u5e73\u8861": 1}, "peg": {"\u639b\u9264": 1}, "communicate": {"\u4ea4\u6d41": 2}, "windmill": {"\u8377\u5170": 1}, "toward": {"\u8dd1\u8fc7\u6765": 1}, "developing": {"\u53d1\u5c55\u4e2d\u56fd\u5bb6": 1}, "balloon": {"\u6c23\u7403": 1}, "gratify": {"\u505a\u5bf9": 1}, "cheating": {"\u4f5c\u5f0a": 1}, "insufficient": {"\u5149\u7ebf": 1}, "thirtieth": {"\u4e09\u5341": 1}, "fumbled": {"\u6478\u7d22": 1}, "Tower": {"\u5854": 2, "\u9435\u5854": 2}, "resisting": {"\u62b5\u6297": 1}, "tend": {"\u6d3b\u5f97": 1}, "refreshing": {"\u6691\u70ed": 1}, "California": {"\u52a0\u5229\u798f\u5c3c\u4e9a": 1}, "Toyota": {"\u4e30\u7530": 1}, "freshened": {"\u68b3\u6d17\u6253\u626e": 1}, "yeast": {"\u53d1\u9175\u7c89": 1}, "Robots": {"\u673a\u5668\u4eba": 1}, "aging": {"\u8001\u9f84\u5316": 1}, "astrology": {"\u5360\u661f\u672f": 1}, "Indigenous": {"\u571f\u8457": 1}, "Iraq": {"\u4f0a\u62c9\u514b": 1}, "zero": {"\u96f6\u4e0b": 1}, "yourselves": {"\u5e2e\u4e0d\u4e86": 1}, "pretends": {"\u88c5": 1}, "Turkish": {"\u50b3\u7d71": 1}, "risked": {"\u8d22\u4ea7": 1}, "poison": {"\u6709\u5229": 1}, "0": {"0": 1}, "expressing": {"\u8868\u8fbe": 1}, "upon": {"\u8fc7\u7a0b": 1}, "Waikiki": {"\u51e0\u8def": 1}, "industrial": {"\u5de5\u4e1a": 1}, "deeply": {"\u6df1\u6df1\u5730": 1, "\u666f\u8272": 1}, "laundry": {"\u6d17\u8863\u670d": 1}, "DNA": {"DNA": 1}, "diary": {"\u4e86": 1, "\u65e5\u8a18": 1}, "childishly": {"\u5e7c\u7a1a": 1}, "strictly": {"\u53ea\u80fd": 1, "\u77e5": 1}, "tricked": {"\u54c4": 1}, "Nothing": {"\u8def\u5b50\u8d70": 1}, "richest": {"\u4e16\u754c": 1, "\u5bb6\u4f19": 1}, "obviously": {"": 1}, "scar": {"\u75a4": 1}, "Forewarned": {"\u51e1\u4e8b": 1}, "thread": {"": 1}, "process": {"\u904e\u7a0b": 1}, "booklet": {"\u9019\u672c": 1}, "outskirts": {"\u6771": 1}, "reform": {"\u6539\u9769": 2}, "desires": {"\u6574\u4e2a": 1}, "exquisite": {"\u89c0\u5149\u5ba2": 1}, "scientists": {"\u6548\u61c9": 1}, "musicians": {"\u97f3\u4e50\u5bb6": 1}, "players": {"\u9009\u624b": 2}, "violated": {"\u4e0d\u61c9": 1}, "affairs": {"\u5916\u570b\u4e8b\u52d9": 1}, "mercy": {"\u4eba\u6c11": 1}, "July": {"\u516d\u4e03": 1}, "lease": {"\u7b7e": 1}, "crew": {"\u4ee3\u8239": 1}, "Mission": {"\u4efb\u52a1": 1}, "swear": {"\u53d1\u8a93": 1}, "Science": {"\u79d1\u5b78": 2}, "Sulfur": {"\u786b\u78fa": 1}, "Allow": {"\u5141\u8a31": 1}, "Pluto": {"": 1}, "dates": {"\u8ffd\u6eaf\u5230": 1}, "Unbelievable": {"\u7f6e\u4fe1": 1, "\u96be\u4ee5\u7f6e\u4fe1": 1}, "quarreling": {"\u603b\u548c": 1, "\u4e89\u5435": 1}, "Narita": {"\u6210\u7530": 1}, "extreme": {"\u6975": 1}, "medical": {"\u91ab\u7642": 2}, "Acid": {"\u9178\u96e8": 2}, "obscure": {"\u6a21\u7cca": 1}, "Mr.": {"\u5982\u610f\u90ce\u541b": 1}, "effective": {"\u6709\u6548": 2}, "outrank": {"\u7ea7\u522b": 1}, "chase": {"\u6293": 1}, "extraordinary": {"\u5bfb\u5e38": 1}, "wizard": {"\u672f\u58eb": 1}, "Wine": {"\u505a\u6210": 1}, "narrowly": {"\u6bba\u5bb3": 1}, "Smith": {"\u4e0a\u89c1": 1}, "Cherry": {"\u6a31\u82b1": 1}, "shouting": {"\u542c\u5230": 1}, "encores": {"\u5169\u9996": 1}, "unexpected": {"\u610f\u5916": 1}, "Vote": {"\u6295\u7968": 1}, "declare": {"\u7533\u5831": 1}, "dolled": {"": 1}, "persuaded": {"\u9577\u4e45": 1}, "threatened": {"\u5a01\u80c1": 2}, "distasteful": {"\u4ee4": 1}, "Education": {"\u6559\u80b2": 1}, "soap": {"\u80a5\u7682": 1}, "fooling": {"\u96a8\u4fbf": 1}, "notebooks": {"\u6536\u8d77": 1}, "Winter": {"\u51ac\u5929": 1, "\u51ac\u5b63": 2}, "originally": {"\u672c\u6765": 1}, "ours": {"\u968a\u4f0d": 1}, "Car": {"\u6c7d\u8f66\u5c3e\u6c14": 1}, "painter": {"\u756b\u5bb6": 1}, "stalking": {"\u730e\u7269": 1}, "3,000": {"\u603b\u5171": 1}, "gang": {"\u5925": 1}, "leaning": {"\u9760\u8457": 1}, "%": {"\u4e5d": 1, "\uff05": 2}, "travelers": {"\u65c5\u884c\u652f\u7968": 2}, "Everest": {"\u5c71\u5cf0": 1}, "wit": {"\u771f": 1}, "bookworm": {"\u6240\u8c13": 1}, "user": {"\u4e9a\u9a6c\u900a": 1}, "semester": {"\u5b78\u671f": 1}, "slightly": {"\u5690": 1}, "babysitting": {"\u8bf4\u670d": 1}, "pulled": {"Mary": 1}, "Ostriches": {"\u9d15\u9ce5": 1}, "quitting": {"\u8f9e\u804c": 2}, "Later": {"\u540e\u6765": 1}, "confidentially": {"\u54e6": 1}, "bygones": {"\u65e2\u5f80\u4e0d\u548e": 1}, "tributaries": {"\u4e9a\u9a6c\u900a\u6cb3": 1}, "childish": {"\u5e7c\u7a1a": 1}, "Station": {"\u7ad9\u63db": 1}, "sixteen": {"16": 1}, "advise": {"\u63db": 1, "\u5165\u4e0d\u6577\u51fa": 1, "\u52f8": 1}, "grades": {"\u6210\u7e3e": 1}, "mutual": {"\u57fa\u7840": 1}, "knob": {"\u8f49\u52d5": 1}, "adding": {"\u52a0\u4e3a\u597d\u53cb": 1}, "1865": {"1865": 1}, "shaver": {"\u7535\u52a8": 1}, "inconvenience": {"\u9020\u6210": 1}, "March": {"\u4e09\u6708\u4efd": 1}, "65": {"65": 2}, "tractor": {"\u62d6\u62c9": 2}, "Five": {"\u8acb\u7167": 1}, "secretly": {"\u6697\u604b\u7740": 1}, "Awesome": {"\u68d2": 1}, "Suruga": {"\u5f9e\u99ff": 1}, "enthusiasm": {"\u70ed\u60c5": 1}, "Bush": {"\u5e03\u4ec0": 1}, "Beauty": {"\u7f8e\u8c8c": 1}, "illusion": {"\u5168\u662f": 1}, "shortest": {"\u6700\u77ed": 1}, "injury": {"\u514d": 1}, "goof": {"\u5077\u61d2": 1}, "appearances": {"\u4fdd\u4f4f": 1, "\u5916\u8c8c": 1}, "dances": {"\u821e": 1}, "respects": {"\u5c0e\u5e2b": 1}, "search": {"\u67e5\u627e": 1}, "Clothes": {"\u4eba\u8981": 1}, "crashed": {"\u649e\u4e0a": 1}, "shops": {"\u51e0\u5bb6": 1}, "Oil": {"\u6a44\u6984": 1}, "Show": {"\u770b\u4e0b": 1, "\u6211\u4e2a": 1}, "knee": {"\u819d\u84cb": 2, "\u819d\u76d6": 1}, "discriminate": {"\u6b67\u89c6": 1}, "border": {"\u8fb9\u754c": 1}, "survivor": {"\u5e78\u5b58\u8005": 1}, "murmur": {"\u6f7a\u6f7a": 1}, "Old": {"\u65e9\u5c31": 1}, "detergent": {"\u6db2": 1}, "switch": {"\u6362": 1}, "lung": {"\u80ba\u764c": 3}, "Skip": {"\u4e0d\u7ba1": 1}, "fatal": {"\u53e3\u8bef": 1}, "approved": {"\u540c\u610f": 1}, "VCR": {"\u4f4e\u4ef7": 1}, "editor": {"\u7f16\u8f91": 1}, "click": {"\u9ede\u64ca": 1}, "quarrelled": {"\u5435": 1}, "drawers": {"\u529e\u516c\u684c": 1}, "accompanies": {"\u966a": 1}, "12": {"\u4f46": 1}, "Tigers": {"\u8f38\u6389": 1}, "Cold": {"\u51b7\u6218": 1}, "fabric": {"\u8584\u7e54": 1}, "geography": {"\u5730\u7406": 1}, "feed": {"\u5582": 3}, "peacefully": {"\u5b89\u8be6": 1}, "calculator": {"\u8a08\u7b97\u6a5f": 1}, "garbage": {"\u62ff\u51fa": 1}, "fries": {"\u70b8\u85af\u6761": 1}, "interrupt": {"\u6253\u65ad": 1}, "shaking": {"\u98a4\u52a8": 1}, "rudeness": {"\u7c97\u9c81": 1}, "sand": {"\u6c99": 1}, "reminds": {"\u60f3\u5bb6": 1}, "unnatural": {"\u901a\u987a": 1}, "popcorn": {"\u7206\u7c73\u82b1": 1}, "Foreign": {"\u6295\u8d44\u8005": 1}, "waterproof": {"\u9632\u6c34": 1}, "allergic": {"\u904e\u654f": 1, "\u654f": 1}, "aches": {"\u75e0": 1}, "walls": {"\u7246\u58c1": 1}, "dieting": {"\u8282\u98df": 3}, "hang": {"\u591a\u884c\u4e0d\u4e49\u5fc5\u81ea\u6bd9": 1, "\u9592\u901b": 1}, "ignorance": {"\u65e0\u77e5": 1}, "teapot": {"\u8336\u58fa": 1}, "Anyway": {"\u4e0d\u7ba1": 1}, "distinguish": {"\u5206\u6e05\u662f\u975e": 1}, "relationship": {"\u4fc2": 1}, "stroke": {"\u4e2d\u6691": 1}, "indoors": {"\u65f6\u95f4": 1, "\u9032\u5c4b": 1}, "prefers": {"\u52dd": 1}, "derived": {"\u55ae\u5b57": 1}, "competitive": {"\u516c\u53f8": 1}, "Iron": {"\u94c1": 1}, "homesick": {"\u60f3\u5bb6": 1, "\u5bb6": 1, "\u800c\u662f": 1}, "phrase": {"\u7247\u8a9e": 1, "\u53e5": 1}, "Ouch": {"\u5939\u5230": 1}, "base": {"\u57fa\u790e": 1}, "cupcakes": {"\u676f\u5f62": 1}, "artificial": {"\u4eba\u9020\u82b1": 1}, "expired": {"\u904e\u671f": 2}, "hen": {"\u6bcd": 1}, "becomes": {"\u7d50\u51cd": 1}, "admiring": {"\u6e6f\u59c6\u6b23": 1}, "floors": {"\u5c42": 1}, "bamboo": {"\u7af9\u5b50": 1}, "Break": {"\u505c\u624b": 1}, "designer": {"\u8a2d\u8a08": 1}, "accomplish": {"\u9054\u6210": 1, "\u5b8c\u6210": 1}, "opportunities": {"\u6a5f\u6703": 1}, "Strange": {"\u8bf4\u6765": 1}, "overcome": {"\u5347\u9ad8": 1}, "enjoys": {"\u56ed\u827a": 1}, "wondering": {"\u4e0d\u4f1a": 1}, "contain": {"\u5305\u542b": 1}, "Language": {"\u624b\u6bb5": 1}, "requested": {"\u5c31\u662f": 1}, "Professional": {"\u5c08\u8077": 1}, "behaves": {"\u5bb9\u5fcd": 1}, "Soldiers": {"\u8ecd\u4eba": 1}, "clue": {"\u4e00\u65e0\u6240\u77e5": 1}, "technology": {"\u79d1\u5b66\u6280\u672f": 1}, "boxes": {"\u7bb1\u5b50": 1}, "directly": {"\u76f4\u63a5": 2}, "affect": {"\u884c\u70ba": 1}, "meth": {"\u5438\u6bd2": 1}, "construct": {"\u6211": 1}, "180": {"180": 1}, "Tulips": {"\u9b31\u91d1\u9999": 1}, "Singapore": {"\u65b0\u52a0\u5761": 2}, "pleased": {"\u90a3\u6761": 1, "\u6eff\u610f": 1}, "encouragement": {"\u9f13\u52f5": 1}, "seaside": {"\u6361\u4e86\u4e2a": 1}, "deodorant": {"\u9664\u81ed\u5242": 1}, "leaned": {"\u8eab\u5b50": 1}, "tower": {"\u5854": 1}, "association": {"\u5354\u6703": 1}, "headed": {"\u5c71\u95f4": 1}, "pessimistic": {"\u60b2\u89c2": 1}, "dolls": {"\u9001\u7d66": 1}, "wrapped": {"\u88f9\u8d77": 1}, "issues": {"\u89e3\u6c7a": 1}, "gasoline": {"\u6cb9\u4ef7": 1}, "decline": {"\u62d2\u7edd": 1}, "eligible": {"\u9002\u5408": 1}, "financial": {"\u8d22\u653f\u56f0\u96be": 1}, "impressions": {"\u4eba\u9645\u4ea4\u5f80": 1}, "bluest": {"\u6700\u85cd": 1}, "Elephants": {"\u5982\u4eca": 1}, "humiliate": {"\u7f9e\u8fb1": 1}, "remarkable": {"\u986f\u8457": 1}, "Yokohama": {"\u6a2a\u6ee8": 1}, "Really": {"\u786e\u5b9a": 1}, "distract": {"\u6253\u6270": 1}, "abilities": {"\u624d\u80fd": 1}, "hammered": {"\u9189": 1}, "Finnish": {"\u82ac\u5170\u4eba": 1}, "journal": {"\u8bb0\u65e5\u8bb0": 1}, "cigar": {"\u96ea\u8304": 1}, "strategy": {"\u7b56\u7565": 1}, "toothaches": {"\u5979": 1}, "whales": {"\u9cb8": 1}, "Continue": {"\u7e7c\u7e8c": 1}, "bug": {"\u70e6": 1}, "intruded": {"\u9690\u79c1": 1}, "disease": {"\u75c5": 1}, "fails": {"\u5b88\u7ea6": 1}, "blocks": {"\u8857\u5340": 1}, "Umbrellas": {"\u96e8\u4f1e": 1}, "testing": {"\u8bd5\u63a2": 1}, "paragraph": {"\u6a21\u7cca\u4e0d\u6e05": 1}, "searching": {"\u7269\u54c1": 1}, "justifies": {"\u6b63\u7576": 1}, "employment": {"\u5c31\u696d": 1}, "material": {"\u6750\u6599": 1}, "vitamin": {"\u7dad\u751f\u7d20": 1}, "2008": {"2008": 1}, "instructor": {"\u6559\u7df4": 1}, "allied": {"\u540c\u76df\u56fd": 1}, "install": {"\u5b89\u88c5": 1}, "Waste": {"\u5331\u4e4f": 1}, "Promises": {"\u627f\u8afe": 1}, "19th": {"19": 1}, "shovel": {"\u94f2\u5b50": 1}, "region": {"\u707d\u96e3": 1}, "lid": {"\u84cb\u5b50": 1}, "achieve": {"\u5730\u5b78": 1}, "shirtless": {"\u8d64\u88f8": 1}, "Goodbyes": {"\u79bb\u522b": 1}, "blouse": {"\u886c\u886b": 1}, "frost": {"\u539a": 1, "\u56b4\u5bd2": 1}, "stingy": {"\u6c14": 1}, "ample": {"\u5145\u88d5": 1}, "Trim": {"\u5207\u9664": 1}, "blocked": {"\u5c01\u9396": 1}, "rises": {"\u5347\u8d77": 1}, "Hope": {"\u518d\u6b21": 1}, "arrow": {"\u9e7f\u4e00\u7bad": 1}, "parallel": {"\u94c1\u8def": 1}, "helpful": {"\u53ef": 1}, "mopped": {"\u64e6": 1}, "unfairly": {"\u4e0d\u516c\u5e73\u5730": 1}, "somewhat": {"\u6709\u70b9\u50cf": 1}, "Up": {"\u76ee\u524d\u4e3a\u6b62": 1}, "Wet": {"\u8cbc\u8457": 1}, "woodcutter": {"\u738b\u5b50": 1}, "premonition": {"\u9884\u611f": 1}, "concept": {"\u6982\u5ff5": 1}, "Despite": {"\u8fd8\u662f": 1}, "peanuts": {"\u82b1\u751f": 2}, "restless": {"\u4e0d\u5b89": 1}, "hundred": {"\u4f4e\u4e8e": 1}, "ham": {"\u706b\u817f\u4e09\u660e": 1}, "robot": {"\u6a5f\u5668": 1}, "mixed": {"\u767e\u611f\u4ea4\u96c6": 1}, "veterinarian": {"\u7378": 1}, "sink": {"\u6c34\u6c60": 1}, "original": {"\u7368\u5230": 1}, "bounce": {"\u4e1c\u5c71\u518d\u8d77": 1}, "architecture": {"\u53e4\u4ee3": 1}, "defended": {"\u5927\u519b": 1}, "nowadays": {"\u770b\u7535\u89c6": 1}, "Hamamatsu": {"\u6ff1\u677e": 1}, "trout": {"\u9c91\u9c7c": 1}, "Shinjuku": {"\u65b0\u5bbf": 1}, "vague": {"\u6a21\u7cca": 1}, "delightful": {"\u6109\u5feb": 1}, "brain": {"\u5916\u79d1": 1}, "update": {"\u66f4\u65b0": 1}, "Express": {"\u904b\u901a": 1}, "September": {"\u4e5d\u6708": 2}, "encountered": {"\u6545\u969c": 1}, "Taking": {"\u56e2\u4f53": 1}, "Biwa": {"\u7435\u7436\u6e56": 1}, "dialed": {"\u62e8\u6253": 1}, "wealth": {"\u8ca1\u5bcc": 2}, "Studying": {"\u5e38\u898b": 1}, "avoidable": {"\u907f\u514d": 1}, "harvest": {"\u8c50\u6536": 1}, "Ukrainian": {"\u4e4c\u514b\u5170": 1}, "underwater": {"\u6f5c\u6c34": 1}, "ships": {"\u95dc\u65bc\u8239": 1}, "Always": {"\u8aa0\u5be6": 1}, "Wow": {"\u54c7": 1}, "suspicious": {"\u6000\u7591": 1}, "Apples": {"\u7576\u4f5c": 1}, "cruel": {"\u6b8b\u5fcd": 1}, "thirteen": {"\u5341\u4e09\u5c81": 1}, "Akita": {"\u79cb\u7530": 1}, "cared": {"\u95dc\u5fc3": 1}, "anyway": {"\u8981\u8bf4": 1}, "Shame": {"\u4e22\u8138": 1}, "lovely": {"\u53ef\u7231": 1}, "Aso": {"\u963f\u8607\u5c71": 1}, "whomever": {"\u8c01": 1}, "skull": {"\u80f8\u4e0a": 1}, "museums": {"\u535a\u7269\u9986": 1}, "difficulties": {"\u514b\u670d": 1}, "tunes": {"\u8c03\u5b50": 1}, "guarantee": {"\u786e\u4fdd": 1}, "nests": {"\u7b51\u5de2": 1}, "addressed": {"\u5bc4": 1}, "betrays": {"\u51fa\u5356": 1}, "minimum": {"\u6700\u4f4e\u5de5\u8d44": 1}, "terribly": {"\u8ff7\u60d1": 1}, "Texting": {"\u6253\u5b57": 1}, "participated": {"\u6599\u7406": 1}, "rights": {"\u6743\u5229": 1}, "Lightning": {"\u9583": 1}, "unconscious": {"": 1}, "importation": {"\u8be5\u56fd": 1}, "campfire": {"\u7528\u71df": 1}, "Stir": {"\u6405": 1}, "Cover": {"": 1}, "stew": {"\u934b": 1}, "Light": {"\u881f\u71ed": 1}, "industry": {"\u6e14\u4e1a": 1}, "essay": {"\u77ed\u6587": 1}, "signed": {"\u7c3d": 1}, "atrocious": {"\u60e1\u52a3": 1}, "Liszt": {"\u674e\u65af\u7279": 1}, "unidentified": {"UFO": 1}, "bedrooms": {"\u81e5\u5ba4": 1}, "confess": {"\u627f\u8ba4": 1}, "shampoo": {"\u54ea\u7a2e": 1}, "ups": {"\u9ad8\u4f4e": 2}, "vases": {"\u73bb\u7483": 1}, "coral": {"\u73ca\u745a\u7901": 1}, "executive": {"\u6267\u884c": 1}, "Wearing": {"\u897f\u88dd": 1}, "synchronize": {"\u6821": 1}, "strict": {"\u56b4\u683c": 1}, "burden": {"\u8d1f\u62c5": 1}, "streets": {"\u8857\u4e0a": 1}, "susceptible": {"\u6613": 1}, "vat": {"\u8fdb": 1}, "browser": {"\u6d4f\u89c8\u5668": 1}, "Hundreds": {"\u6578\u4ee5\u767e\u8a08": 1}, "lines": {"\u84dd\u7ebf": 1}, "Excess": {"\u904e\u5ea6": 1}, "feeds": {"\u5582": 1}, "err": {"\u6709\u932f": 1}, "Use": {"\u6216": 1}, "punishes": {"\u61f2\u7f70": 1}, "glitters": {"\u8868\u9762": 1}, "Portugal": {"\u8461\u8404\u7259": 1}, "mistakenly": {"\u8bef\u5220": 1}, "cure": {"\u79d1\u5b66\u5bb6": 1}, "flawed": {"\u672c\u8eab": 1}, "1876": {"1876": 1}, "wealthy": {"\u6709\u94b1\u4eba": 1, "\u9322": 1}, "accelerated": {"\u63d0\u901f": 1}, "Accidents": {"\u4e8b\u6545": 1}, "aerobics": {"\u6bcf\u661f\u671f": 1}, "dried": {"\u70d8\u5e72": 1}, "uses": {"\u8fd8\u6709": 1}, "Turkey": {"\u571f\u8033\u5176": 1}, "tolerated": {"\u5bb9\u5fcd": 1}, "karaoke": {"\u5361\u62c9": 1}, "bar": {"\u628a": 1}, "Vienna": {"\u7dad\u4e5f\u7d0d": 1}, "pays": {"\u62a5\u916c": 1}, "pairs": {"\u5169\u96d9": 1}, "Germans": {"\u5fb7\u56fd\u4eba": 1}, "joints": {"\u7576\u5929": 1}, "gym": {"\u5065\u8eab\u623f": 1}, "quitter": {"\u8f15\u6613": 1}, "assumption": {"\u8bbe\u60f3": 1}, "sandwiches": {"\u4e09\u660e\u6cbb": 1}, "coast": {"\u6d77\u5cb8": 1}, "unavoidable": {"\u4e0d\u53ef\u907f\u514d": 1}, "Drinking": {"\u591a\u70b9": 1}, "discs": {"\u5531\u7247": 1}, "mend": {"\u8865\u597d": 1}, "syrup": {"\u7cd6\u6d46": 1}, "applicants": {"\u7533\u8bf7\u4eba": 1}, "Ignore": {"\u522b\u7406": 1}, "formed": {"\u7684": 1}, "Stuff": {"\u96be\u514d\u4f1a": 1}, "forgiveness": {"\u7687\u5e1d": 1}, "grammatically": {"\u8bed\u6cd5": 1}, "carpentry": {"\u6728\u5de5": 1}, "deity": {"\u5e99\u5b87": 1}, "alarmed": {"\u4e0d\u8d1f\u8d23\u4efb": 1}, "salmon": {"\u4e09\u6587": 1}, "stocks": {"\u80a1\u7968": 1}, "entering": {"\u963b\u6b62": 1}, "hesitate": {"\u7336\u8c6b": 1}, "hobbies": {"\u5174\u8da3\u7231\u597d": 1}, "GNP": {"\u6c11\u751f": 1}, "growth": {"\u6210\u9577": 2}, "tax": {"\u7a0e": 2}, "woolen": {"\u88d9": 1}, "square": {"\u9762\u79ef": 1}, "survival": {"\u751f\u5b58": 1}, "core": {"\u900f": 1}, "Shiga": {"\u5fd7": 1}, "Maruzen": {"\u4e66\u5546": 1}, "bright": {"\u7231\u8fea\u751f": 1}, "composition": {"\u4f5c\u6587": 1}, "Experience": {"\u7d93\u9a57": 1}, "countryside": {"\u4e61\u95f4": 1}, "predicted": {"\u9884\u6d4b": 1}, "tends": {"\u5f80\u5f80": 2}, "boiling": {"\u6c34\u88e1": 1}, "Parents": {"\u6559\u80b2": 1}, "thorns": {"\u5e36\u523a": 1}, "ironing": {"\u71a8": 1}, "whets": {"\u80c3": 1}, "avoided": {"\u4ee3\u50f9": 1}, "recognition": {"\u8a8d\u53ef": 2}, "odd": {"\u6b63": 1, "\u53e4\u602a": 1}, "Watching": {"\u88ab\u52d5": 1}, "strawberry": {"\u5473": 1}, "crawl": {"\u81ea\u7531\u5f0f": 1}, "smiles": {"\u5fae\u7b11": 1}, "softly": {"\u5c0f\u70b9\u58f0": 1}, "donates": {"\u6350": 1}, "reread": {"\u91cd\u6e29": 1}, "research": {"\u8fd9": 1}, "actions": {"\u91c7\u53d6": 1}, "title": {"\u66f8\u540d": 1}, "sashimi": {"\u6b61\u751f": 1}, "hunters": {"\u730e": 1}, "aimed": {"\u7784\u51c6": 2, "\u624b\u67aa": 1}, "stooped": {"\u9d5d": 1}, "rifle": {"\u6b65\u69cd": 1}, "peach": {"\u6843\u6811": 1}, "maintain": {"\u7dad\u6301": 1}, "fright": {"\u81c9\u8272": 1}, "Jack": {"\u5091\u514b": 1}, "navy": {"\u6d77\u8ecd": 1}, "Teresa": {"\u7279\u857e": 1}, "Nobel": {"\u8afe\u8c9d\u723e\u734e": 2}, "Room": {"839": 1}, "literally": {"\u5b57\u9762\u4e0a": 1}, "Her": {"\u9e97": 1}, "Leaves": {"\u6a39\u8449": 1}, "Beware": {"\u5c0f\u5fc3": 1}, "fifteen": {"15": 1}, "tries": {"\u8bd5\u8bd5": 1}, "canoe": {"\u4e58\u8457": 1}, "miserly": {"\u6c14": 1}, "Books": {"\u70ba\u4e86": 1}, "muttering": {"\u5600\u5495": 1}, "Ladies": {"\u5973\u58eb\u4eec": 1}, "electrician": {"\u96fb\u5de5": 1}, "laughter": {"\u7b11\u58f0": 1}, "fare": {"\u7968\u50f9": 1}, "About": {"\u5927\u7d04\u8981": 1}, "Next": {"\u8be5\u8f6e": 1}, "yelled": {"\u547c\u6551": 1}, "includes": {"\u542b": 1}, "observe": {"\u9075\u5b88\u89c4\u5219": 1}, "washes": {"\u6d17\u8863\u670d": 1}, "footsteps": {"\u8ffd\u968f": 1}, "parts": {"\u62ab\u85a9": 1}, "slid": {"\u6ed1\u4e0b": 1}, "greedy": {"\u8caa\u5a6a": 1}, "service": {"\u670d\u52d9": 2}, "planes": {"\u6a21\u578b": 1}, "jumping": {"\u7e69": 1}, "History": {"\u5386\u53f2": 1}, "continent": {"": 1}, "Dead": {"\u544a\u5bc6": 1}, "Kuala": {"\u5409\u9686\u5761": 1}, "Beethoven": {"\u8c9d\u591a\u82ac": 1}, "elderberry": {"\u63a5\u9aa8\u6728": 1}, "Languages": {"\u5f3a\u9879": 1}, "prepare": {"\u4f5c": 1}, "victory": {"\u52dd\u5229": 1}, "privilege": {"\u6d77\u6e7e": 1}, "ambulances": {"\u4f24\u8005": 1}, "legal": {"\u53f8\u6cd5\u5236\u5ea6": 1}, "Eiffel": {"\u827e\u83f2\u723e": 1}, "lectures": {"\u8b1b\u5ea7": 1}, "avoids": {"\u907f\u958b": 1}, "feathers": {"\u94fa\u6ee1": 1}, "disable": {"\u5c4f\u853d": 1}, "Furniture": {"\u4f18\u8d28": 1}, "waving": {"\u63ee\u8457": 1}, "Terrific": {"\u5f88\u68d2": 1}, "response": {"\u56de\u590d": 1}, "awkward": {"\u5f13": 2}, "oars": {"\u69f3": 1}, "nations": {"\u73b0\u5df2": 1}, "hates": {"\u6068": 1}, "roast": {"\u591a\u4e00\u4e9b": 1}, "firemen": {"\u6d88\u9632": 1}, "To": {"\u4ee4": 1, "\u5b9e\u8bdd": 1}, "Comb": {"\u982d": 1}, "Sammy": {"\u5c71\u7c73": 1}, "screaming": {"\u90fd": 1}, "loaves": {"\u4e86\u5169\u689d": 1}, "glue": {"\u80f6\u6c34": 1, "\u81a0\u6c34": 1}, "antique": {"\u53e4\u73a9\u5e97": 1}, "Bear": {"\u8a18": 1}, "plants": {"\u690d\u7269": 1}, "exhibits": {"\u5c55\u89c8\u4f1a": 1}, "brooch": {"\u679a": 1}, "presidency": {"\u8cc7\u683c": 1}, "grave": {"\u6539\u4e0d\u4e86": 1}, "irritable": {"\u66b4\u8e81": 1}, "Esperanto": {"\u8a9e\u6cd5": 1}, "thoughts": {"\u600e\u4e48\u6837": 1}, "suffered": {"\u4e8f\u635f": 1}, "seating": {"\u5bb9\u7eb3": 1}, "brightly": {"\u591c\u7a7a": 1}, "Bern": {"\u4f2f\u6069": 1}, "Helen": {"\u6d77\u502b": 1}, "Preventive": {"\u9884\u9632\u63aa\u65bd": 1}, "rug": {"\u624b\u5de5": 1}, "characters": {"\u6f22\u5b57": 1}, "Taiwanese": {"\u53e3\u5473\u6de1": 1}, "Maternal": {"\u6bcd\u7231": 1}, "mid": {"\u6211\u4eec": 1}, "bless": {"\u4e0a\u5e1d\u4fdd\u4f51": 1}, "acknowledged": {"\u5f97\u77e5": 1}, "belonged": {"\u51b0\u5c9b": 1}, "modest": {"\u5979": 1}, "improves": {"": 1}, "illuminated": {"\u7167\u4eae": 1}, "Astronomy": {"\u5929\u6587": 1}, "operator": {"\u8fd0\u8425\u5546": 1}, "seventy": {"70": 1}, "communication": {"\u6e9d\u901a": 1}, "welcomed": {"\u70ed\u60c5": 1}, "verge": {"\u5feb\u8981": 1, "\u51fa\u6765": 1}, "ambassador": {"\u99d0": 1}, "immune": {"\u73fe\u4eca": 1}, "mimic": {"\u9e1a\u9d61\u6703": 1}, "Monkeys": {"\u80fd\u5b78\u6703": 1}, "marketing": {"\u8425\u9500\u90e8": 1}, "tampered": {"\u649e\u8f66": 1}, "kilo": {"\u516c\u65a4": 1}, "p.m.": {"\u4fdd\u7ba1": 1}, "shoulders": {"\u597d\u4f7f": 1}, "Save": {"\u62ef\u6551": 1}, "resented": {"\u53cd\u611f": 1}, "haystack": {"\u597d\u6bd4": 1}, "II": {"\u5927\u6230": 1}, "21st": {"\u4e16\u7d00": 1}, "spoil": {"\u7d50\u5c40": 1}, "twisted": {"\u626d\u4f24": 1}, "Rain": {"\u8fa6\u6cd5": 1}, "slang": {"\u5b66\u4e60\u5916\u8bed": 1}, "instrument": {"\u73a9": 1}, "sauce": {"\u91ac\u6599": 1}, "obtained": {"\u767e\u5206\u4e4b\u516b": 1}, "1689": {"1689": 1}, "Exercise": {"\u6709\u5229\u4e8e": 1}, "repainted": {"\u6cb9\u6f06": 1}, "traveler": {"\u65c5\u884c\u8005": 1}, "laptop": {"\u7b14\u8bb0\u672c\u7535\u8111": 1, "\u7b46\u8a18\u672c": 1}, "confirm": {"\u5426\u5b9a": 1}, "Imagine": {"\u6709": 1}, "confined": {"\u5367\u5e8a\u4e0d\u8d77": 1}, "suffering": {"\u60a3\u4e0a": 1}, "Catch": {"\u6293\u4f4f": 1}, "Opinion": {"\u4e0a\u610f": 1}, "Cambridge": {"\u4f18\u5f02": 1}, "angel": {"\u5929\u4f7f": 1}, "Honda": {"\u8c50\u7530": 1}, "extremes": {"\u8d70\u6781\u7aef": 1}, "awoke": {"": 2}, "postcard": {"\u660e\u4fe1\u7247": 1}, "aggressive": {"\u5484\u5484\u903c\u4eba": 1}, "slamming": {"\u7830\u7830": 1}, "sets": {"\u6bd4": 1}, "hug": {"\u64c1\u62b1": 1, "\u62b1": 1}, "32": {"\u83ef\u6c0f": 1}, "incompetent": {"\u4e0a\u6ee1": 1}, "quiz": {"\u5c0f\u8003": 1}, "exploded": {"\u5de8\u97ff": 1}, "Celsius": {"\u96f6\u5ea6": 1}, "gay": {"\u5973\u6027\u670b\u53cb": 1}, "supported": {"\u52d5\u8b70": 1}, "intervene": {"\u4ecb\u5165": 1}, "Cookie": {"Cookie": 1}, "Leaving": {"\u534a\u9014\u800c\u5e9f": 1}, "spur": {"\u523a\u6fc0": 1}, "economic": {"\u7d93\u6fdf": 2}, "compute": {"\u5730\u8a08": 1}, "joining": {"\u6703\u54e1\u8cbb": 1}, "shyly": {"\u7f9e\u602f": 1}, "based": {"\u57fa\u4e8e": 1}, "nominated": {"\u63d0\u540d": 1}, "fountain": {"\u94a2\u7b14": 1}, "details": {"\u8be6\u7ec6\u4fe1\u606f": 1}, "Apparently": {"\u663e\u7136": 1}, "confronted": {"\u6b63\u9762": 1}, "competent": {"\u79f0\u804c": 1}, "executed": {"\u6267\u884c": 1}, "desks": {"\u684c\u524d": 1}, "baloney": {"\u80e1\u626f": 1}, "Humor": {"\u610f\u5427": 1}, "parcel": {"\u5305\u88f9": 1}, "pray": {"\u7948\u7977": 1}, "Outside": {"\u6821\u5916": 1}, "cakes": {"\u4e24\u5757": 1}, "snickered": {"\u6697\u4e2d": 1}, "wasted": {"\u6e6f\u59c6\u6d6a": 1}, "photographer": {"\u5c08\u696d": 1}, "Part": {"\u4e00\u90e8\u5206": 1}, "acting": {"\u8be1\u5f02": 1}, "waist": {"\u8170\u56f4": 1}, "microscope": {"\u663e\u5fae\u955c": 1}, "distances": {"\u4e0d\u7fd2": 1}, "honorable": {"\u5149\u69ae": 1}, "smooth": {"\u5149\u6ed1": 2}, "nasty": {"\u53ad\u60e1": 1}, "Drivers": {"\u53f8\u6a5f": 1}, "jerk": {"\u50bb\u5b50": 1}, "ambition": {"\u4e00\u4f4d": 1}, "booked": {"\u8a02": 1}, "snowfall": {"\u5927\u96ea": 1}, "Travel": {"\u5229\u6da6": 1}, "clues": {"\u7dda\u7d22": 1}, "laziest": {"\u6700\u61d2": 1}, "jiffy": {"\u9a6c\u4e0a": 1}, "offices": {"\u6247": 1}, "Smoke": {"\u70df\u96fe": 1}, "championship": {"\u7af6\u722d": 1}, "deli": {"\u719f\u98df\u5e97": 1}, "severe": {"\u4e25\u683c": 1}, "fits": {"\u6bd4\u8428": 1}, "sung": {"\u7248": 1}, "state": {"\u80fd\u5920": 1}, "Calm": {"\u51b7\u9759": 1}, "dragon": {"\u706b\u9f99\u679c": 1}, "community": {"\u793e\u56e2\u6d3b\u52a8": 1}, "Ebola": {"\u57c3": 1}, "Friends": {"\u56ed\u91cc": 1}, "performance": {"\u8868\u6f14": 1}, "responded": {"\u6ca1\u56de": 1}, "tourist": {"\u8aee\u8a62": 1}, "blink": {"\u4e00\u8f6c\u773c": 1}, "predictions": {"\u9884\u6d4b": 1}, "Waterloo": {"\u6ed1\u9435\u76e7": 1}, "stage": {"\u5267\u573a": 1}, "ethical": {"\u727a\u7272": 1}, "bandages": {"\u88c1\u5e03": 1}, "bitten": {"\u54ac": 1}, "Each": {"\u6388\u734e": 1}, "normally": {"\u8be5": 1}, "hoofbeats": {"\u98ce": 1}, "Nature": {"\u6177\u6168": 1}, "halfway": {"\u534a\u5c71\u8170": 1}, "tsunami": {"\u89e3\u9664": 1}, "Opinions": {"\u56e0\u4eba\u800c\u5f02": 1}, "decides": {"\u51b3\u7b56": 1}, "hunt": {"\u6253\u730e": 1}, "frighten": {"\u6050\u6016\u7247": 1}, "irritates": {"\u7acb\u523b": 1}, "appearance": {"\u51fa\u73b0": 1}, "Eating": {"\u6709\u76ca\u4e8e": 1}, "otherwise": {"": 1}, "depressing": {"\u4e27\u6c14": 1}, "prevents": {"\u623f": 1}, "Speaking": {"\u5f88\u56f0": 1}, "emotion": {"\u60c5\u7eea": 1}, "general": {"": 1}, "cave": {"\u5c71\u6d1e": 1}, "locking": {"\u9396\u9580": 1}, "pretext": {"\u5e4c\u5b50": 1}, "priest": {"\u7267\u5e08": 1}, "demands": {"\u5c48\u670d": 1}, "blisters": {"\u8d77\u6c34\u6ce1": 1}, "shame": {"\u6065\u8fb1": 1}, "commit": {"\u81ea\u6740": 1}, "contented": {"\u77e5\u8db3\u5e38\u4e50": 1}, "Pacific": {"\u6c47\u5165": 1}, "Blondes": {"\u5973\u90ce": 1}, "lively": {"\u6d3b\u6cfc": 1}, "cancelled": {"\u53d6\u6d88": 1}, "grasp": {"\u7cbe\u901a": 1}, "instrumental": {"\u5668\u6a02": 1}, "fry": {"\u714e": 1}, "quits": {"\u505c": 1}, "pacemaker": {"\u5fc3\u81df": 1}, "4": {"4": 1}, "ambulance": {"\u6551\u62a4\u8f66": 1}, "Hungary": {"\u5308\u7259\u5229": 1}, "underneath": {"\u64e6\u978b": 1}, "Mutual": {"\u76f8\u4e92\u7406\u89e3": 1}, "permit": {"\u5141\u8bb8": 1}, "increased": {"\u906d\u53d7": 1}, "overconfident": {"\u81ea\u4fe1": 1}, "recite": {"\u80cc\u8bf5\u8bfe\u6587": 1}, "deeds": {"\u884c\u4e3a": 1}} \ No newline at end of file diff --git a/TRANSLATE/alignments/simple.align.v3.json b/TRANSLATE/alignments/simple.align.v3.json new file mode 100644 index 0000000..104053a --- /dev/null +++ b/TRANSLATE/alignments/simple.align.v3.json @@ -0,0 +1 @@ +{"sunscreen": {"\u9632\u6652": 1, "\u6d82\u70b9": 1}, "ties": {"\u5173\u7cfb": 1, "\u8d38\u6613": 1, "\u5f3a\u5927": 1}, "prejudiced": {"\u60f3\u6cd5": 1, "\u504f\u898b": 1, "\u570b\u5916": 1}, "cheapest": {"\u93ae": 2}, "Speech": {"\u96c4": 1, "\u5982": 1, "\u8faf": 1, "\u9280": 1}, "golden": {"\u96c4": 1, "\u5982": 1, "\u8faf": 1, "\u9280": 1}, "inspiration": {"\u4e00\u9996": 1, "\u9748\u611f": 1, "\u6500\u767b": 1}, "bridges": {"\u6865": 1, "\u4e24\u5ea7": 1}, "Malaysia": {"\u99ac\u4f86\u897f\u4e9e": 1, "\u6750\u6599": 1}, "rackets": {"\u7403\u62cd": 2}, "collect": {"\u90f5\u7968": 1}, "harbor": {"\u6e2f\u53e3": 2}, "reminded": {"\u90a3\u9996\u6b4c": 1, "\u60f3\u8d77": 1}, "1972": {"\u4e00\u4e5d\u4e03\u4e8c\u5e74": 1, "\u5341\u6708\u5341\u65e5": 1}, "bullet": {"\u5b50\u5f48": 2}, "tortoise": {"\u8d5b\u8dd1": 1, "\u4e4c\u9f9f": 1}, "hare": {"\u8d5b\u8dd1": 1, "\u4e4c\u9f9f": 1}, "raced": {"\u8d5b\u8dd1": 1, "\u4e4c\u9f9f": 1}, "kites": {"\u653e": 1, "\u98a8\u7b8f": 1}, "Mind": {"\u89c4\u77e9": 1}, "Freedom": {"\u81ea\u7531": 3}, "accepting": {"\u8b1d\u8b1d": 1, "\u9080\u8acb": 1, "\u4ea4\u53cb": 1}, "Facebook": {"Facebook": 13}, "Class": {"\u4e0a\u8ab2": 1, "\u516b\u9ede\u534a": 1}, "marches": {"\u80c3": 1, "\u5343\u519b\u4e07\u9a6c": 1, "\u5982\u540c": 1, "\u5f00\u8fc7": 1}, "ceiling": {"\u5929\u82b1\u677f": 3}, "signs": {"\u8ff9\u8c61": 1, "\u8868\u660e": 1}, "noticeable": {"\u4e24\u8005\u4e4b\u95f4": 1, "\u5dee\u522b": 1, "\u663e\u8457": 1}, "undercooked": {"\u4e0d\u5920": 1, "\u719f": 1, "\u96de\u8089": 1}, "spices": {"\u9019\u5bb6": 1, "\u9999\u6599": 1}, "package": {"\u5305\u88f9": 5}, "Waitress": {"\u70b9\u83dc": 1, "\u670d\u52a1\u751f": 1}, "tunnel": {"\u96a7\u9053": 2}, "longest": {"\u6700\u957f": 2}, "Perseverance": {"\u6bc5\u529b": 1, "\u5173\u952e": 1}, "reverse": {"\u76f8\u53cd": 1}, "recovered": {"\u6062\u590d": 2}, "fluffy": {"\u7279\u522b": 1, "\u84ec\u677e": 1, "\u8212\u670d": 1, "\u6761": 1, "\u67d4\u8f6f": 1, "\u6bdb\u5dfe": 1}, "cheek": {"\u8138\u988a": 3}, "subtle": {"\u5dee\u5f02": 1, "\u4e24\u5f20": 1, "\u4e4b\u95f4": 1, "\u7ec6\u81f4": 1, "\u56fe\u7247": 1}, "interview": {"\u9762\u8a66": 2}, "Roman": {"\u53e4\u7f57\u9a6c": 1, "\u5173\u4e8e": 1}, "Francisco": {"\u9019\u90e8": 1, "\u820a": 1, "\u91d1\u5c71": 1, "\u96fb\u5f71": 1}, "San": {"\u9019\u90e8": 1, "\u820a": 1, "\u91d1\u5c71": 1, "\u96fb\u5f71": 1}, "hint": {"\u63d0\u793a": 1}, "spy": {"\u9593\u8adc": 1}, "MP3": {"\u64ad\u653e\u5668": 1, "MP3": 2}, "warrior": {"\u6230\u58eb": 1, "\u5f31\u9ede": 1}, "weakness": {"\u6230\u58eb": 1, "\u5f31\u9ede": 1}, "harmful": {"\u6709\u5bb3": 1, "\u5438\u70df": 1}, "cheerful": {"\u958b\u6717": 1, "\u5feb\u6a02": 1, "\u500b\u6027": 1}, "Street": {"\u516c\u56ed": 1, "\u786e\u5b9a": 1, "\u8857": 1}, "Perfect": {"\u5b8c\u7f8e": 1}, "passage": {"\u6bb5\u843d": 1, "\u7ffb\u8b6f": 1, "\u9010\u5b57": 1}, "Translate": {"\u6bb5\u843d": 1, "\u7ffb\u8b6f": 1, "\u9010\u5b57": 1}, "oil": {"\u77f3\u6cb9": 3}, "Oscar": {"\u76db\u5927": 1, "\u597d\u83b1\u575e": 1, "\u9881\u5956\u5178\u793c": 1, "\u6d3b\u52a8": 1, "\u5965\u65af\u5361": 1}, "ceremonies": {"\u76db\u5927": 1, "\u597d\u83b1\u575e": 1, "\u9881\u5956\u5178\u793c": 1, "\u6d3b\u52a8": 1, "\u5965\u65af\u5361": 1}, "extravaganza": {"\u76db\u5927": 1, "\u597d\u83b1\u575e": 1, "\u9881\u5956\u5178\u793c": 1, "\u6d3b\u52a8": 1, "\u5965\u65af\u5361": 1}, "Mars": {"\u706b\u661f": 4}, "introduce": {"\u4ecb\u7d39": 5}, "thieves": {"\u5c0f\u5077": 1}, "foods": {"\u53e3\u6e34": 1}, "mirror": {"\u955c\u5b50": 3}, "freedom": {"\u81ea\u7531": 3}, "Shounan": {"\u6e58\u5357": 1}, "tables": {"\u65c1": 1, "\u9580\u908a": 1}, "celebrations": {"\u98ce\u4fd7\u4e60\u60ef": 1, "\u5e86\u795d": 1, "\u821e\u8e48": 1, "\u5305\u62ec": 1}, "Customs": {"\u98ce\u4fd7\u4e60\u60ef": 1, "\u5e86\u795d": 1, "\u821e\u8e48": 1, "\u5305\u62ec": 1}, "puppy": {"\u5c0f\u72d7": 2}, "influential": {"\u5f71\u54cd\u529b": 1, "\u533b\u5b66\u754c": 1}, "evacuate": {"\u4e94\u5206\u949f": 1, "\u697c": 1, "\u758f\u6563": 1, "\u6574\u680b": 1, "\u4e0d\u5230": 1}, "hypocritical": {"\u4ece\u6765": 1, "\u865a\u4f2a": 1}, "treacherous": {"\u6761\u8def": 1, "\u633a": 1, "\u9669\u6076": 1}, "pitch": {"\u4e00\u7247": 1, "\u6f06\u9ed1": 1, "\u5916\u9762": 1}, "amends": {"\u6c38\u9060": 1, "\u592a\u665a": 1, "\u5f4c\u88dc": 1}, "Jealousy": {"\u5ac9\u5992": 1, "\u90a3\u6a23": 1}, "owner": {"\u4e3b\u4eba": 3}, "eyelid": {"\u5de6": 1, "\u773c\u76ae": 1}, "twitching": {"\u5de6": 1, "\u773c\u76ae": 1}, "volleyball": {"\u6392\u7403": 5}, "speakers": {"\u4efb\u6559": 1, "\u5b78\u6821": 1, "\u6bcd\u8a9e": 1, "\u7576\u6642": 1, "\u516c\u7acb": 1}, "stink": {"\u53d1\u81ed": 1}, "blushing": {"\u8138\u7ea2": 2}, "communicated": {"\u4ea4\u6d41": 1, "\u5458": 1, "\u5f97\u6bd4": 1, "\u597d\u5f97\u591a": 1, "\u9a6f\u517b": 1}, "trainer": {"\u4ea4\u6d41": 1, "\u5458": 1, "\u5f97\u6bd4": 1, "\u597d\u5f97\u591a": 1, "\u9a6f\u517b": 1}, "guitar": {"\u5409\u4ed6": 17}, "teaspoon": {"\u8336\u5319": 1}, "stirred": {"\u8336\u5319": 1}, "Countless": {"\u661f\u661f": 1, "\u65e0\u6570": 1, "\u5929\u4e0a": 1, "\u95ea\u70c1": 1}, "twinkling": {"\u661f\u661f": 1, "\u65e0\u6570": 1, "\u5929\u4e0a": 1, "\u95ea\u70c1": 1}, "Hawaii": {"\u590f\u5a01\u5937": 4}, "Moderate": {"\u5fc5\u8981": 1, "\u8eab\u9ad4": 1, "\u9069\u5ea6": 1, "\u904b\u52d5": 1}, "Underage": {"\u5e74\u9f84": 1, "\u672a\u6ee1": 1, "\u996e\u9152": 1}, "appreciates": {"\u6b23\u8d4f": 1}, "balcony": {"\u967d": 3, "\u81fa": 3}, "inattention": {"\u8c2c\u4e4b\u5343\u91cc": 1, "\u5931\u4e4b\u6beb\u5398": 1}, "Slight": {"\u8c2c\u4e4b\u5343\u91cc": 1, "\u5931\u4e4b\u6beb\u5398": 1}, "alike": {"\u4e00\u6a21": 1}, "Kabul": {"\u963f\u5bcc\u6c57": 1, "\u5580\u5e03\u5c14": 1}, "Afghanistan": {"\u963f\u5bcc\u6c57": 1, "\u5580\u5e03\u5c14": 1}, "infirmary": {"\u533b\u52a1\u5ba4": 1}, "pattern": {"\u5716\u6848": 1}, "textiles": {"\u5176": 1, "\u7d21\u7e54\u54c1": 1}, "Scotland": {"\u8607\u683c\u862d": 2}, "woollen": {"\u5176": 1, "\u7d21\u7e54\u54c1": 1}, "invisible": {"\u96b1\u5f62": 2, "\u7a7f\u8863\u670d": 2, "\u82e5": 2}, "deadline": {"\u671f\u9650": 1, "\u8fd1": 1}, "downtown": {"\u5e02\u4e2d\u5fc3": 4}, "chairman": {"\u4e3b\u5e2d": 4}, "gloves": {"\u624b\u5957": 4}, "supplied": {"\u5145\u8db3": 1}, "Burn": {"\u770b\u5b8c": 1, "\u70e7\u6389": 1}, "humor": {"\u5e7d\u9ed8\u611f": 3}, "addition": {"\u5fb7\u6587": 1}, "surrounded": {"\u82b1\u56ed": 1, "\u56f4": 1, "\u6805\u680f": 1, "\u6728": 1}, "Hamlet": {"\u54c8\u59c6\u96f7\u7279": 2}, "hitting": {"\u649e": 1, "\u602a": 1}, "flash": {"\u9ed1\u6697": 1, "\u62cd\u7167": 1, "\u95ea\u5149\u706f": 1}, "1970": {"1970": 4}, "yards": {"\u7246\u9577": 1, "\u78bc": 1, "\u5835": 1}, "Chiba": {"\u5343\u8449": 1, "\u7403\u5834": 1}, "Stadium": {"\u5343\u8449": 1, "\u7403\u5834": 1}, "identity": {"\u8eab\u4efd": 1, "\u3943": 1, "\u6bba\u624b": 1}, "Cars": {"\u8f66\u5b50": 1, "\u5f88\u8d35": 1}, "replace": {"\u9f13": 1, "\u6362\u6389": 1, "\u6253\u5370\u673a": 1, "\u58a8\u7c89": 1}, "printer": {"\u9f13": 1, "\u6362\u6389": 1, "\u6253\u5370\u673a": 1, "\u58a8\u7c89": 1}, "cartridge": {"\u9f13": 1, "\u6362\u6389": 1, "\u6253\u5370\u673a": 1, "\u58a8\u7c89": 1}, "Santa": {"\u5723\u8bde\u8001\u4eba": 2}, "Dear": {"\u5723\u8bde\u793c\u7269": 1, "\u5973\u670b\u53cb": 1}, "decent": {"\u8bda\u5b9e": 1}, "production": {"\u964d\u4f4e": 1, "\u751f\u7522": 1, "\u5546\u54c1": 1}, "Mass": {"\u964d\u4f4e": 1, "\u751f\u7522": 1, "\u5546\u54c1": 1}, "links": {"\u9023\u7d50": 1}, "permits": {"\u9928": 1, "\u53c3\u89c0": 1, "\u535a\u7269": 1, "\u5141\u8a31": 1}, "critical": {"\u6279\u8bc4": 1, "\u660e\u767d": 1}, "Pilots": {"\u7121\u7dda\u96fb": 1, "\u98db\u884c\u54e1": 1, "\u6e9d\u901a": 1, "\u6a5f\u5834": 1}, "2,700": {"700": 1, "\u7a2e": 1, "\u8d85\u904e": 1, "2": 1}, "designed": {"\u8a2d\u8a08": 2}, "oxygen": {"\u7231": 1, "\u6c27\u6c14": 1}, "excuses": {"\u85c9\u53e3": 1}, "wise": {"\u806a\u660e\u4eba": 1, "\u8bdd": 1}, "evaporates": {"\u52a0\u71b1": 1, "\u84b8\u767c": 1, "\u6c34\u6c7d": 1}, "racket": {"\u7403\u62cd": 3}, "Oxford": {"\u725b\u6d25\u5927\u5b66": 2}, "desirable": {"\u60f3\u5f97\u5230": 1, "\u5f97\u4e0d\u5230": 1}, "possess": {"\u60f3\u5f97\u5230": 1, "\u5f97\u4e0d\u5230": 1}, "cooks": {"\u70f9\u8abf": 1, "\u65b9\u5f0f": 1, "\u96de\u8089": 1}, "gifts": {"\u5723\u8bde\u793c\u7269": 1}, "mask": {"\u9762\u5177": 1, "\u8a8d\u51fa": 1, "\u4ee5\u81f3": 1}, "sixty": {"\u516d\u5341\u5c81": 2}, "automobile": {"\u6c7d\u8eca": 1, "\u8eca\u798d": 1}, "SSH": {"\u8fdc\u7a0b": 1, "\u8fde\u63a5": 1, "SSH": 2}, "remotely": {"\u8fdc\u7a0b": 1, "\u8fde\u63a5": 1, "SSH": 1}, "continents": {"\u4e03\u5927\u6d32": 1}, "shrines": {"\u795e\u793e": 1}, "burn": {"\u770b\u5b8c": 1, "\u70e7\u6389": 1}, "pop": {"\u6d41\u884c": 1}, "cart": {"\u99ac\u8eca": 2}, "revise": {"\u8ba1\u5212": 1, "\u5ba1\u89c6": 1, "\u6240\u8bf4": 1, "\u91cd\u65b0": 1, "\u6839\u636e": 1}, "Nearly": {"\u9ed1\u8272": 1}, "swampy": {"\u6cbc\u6fa4": 1, "\u5efa\u9020": 1, "\u5efa\u7bc9\u7269": 1}, "Alcohol": {"\u6d88\u8d39": 1, "\u4e0a\u5347": 1}, "consumption": {"\u6d88\u8d39": 1, "\u4e0a\u5347": 1}, "fought": {"\u786c\u4ed7": 1, "\u4e24\u961f": 1, "\u573a": 1}, "Training": {"\u8bad\u7ec3": 1}, "Hokkaido": {"\u5317\u6d77\u9053": 12}, "Hippopotamuses": {"\u6cb3\u9a6c": 1}, "U.N.": {"\u8054\u5408\u56fd": 1, "\u52a0\u5165": 1}, "Spring": {"\u6625\u5929": 9}, "sole": {"\u5173\u5fc3": 1}, "salad": {"\u6c99\u62c9": 2}, "nineties": {"\u4e5d\u5341\u591a": 1, "\u7956\u7236": 1}, "guitarist": {"\u5409\u4ed6\u624b": 1}, "device": {"\u88c5\u7f6e": 1}, "bunch": {"\u4e00\u5806": 1}, "bra": {"\u746a\u9e97": 1, "\u9322\u85cf": 1, "\u88cf": 1, "\u6587\u80f8": 1}, "indifferent": {"\u51b7\u6de1": 1}, "misunderstanding": {"\u8bef\u4f1a": 2}, "Wake": {"\u53eb\u9192": 2}, "Standard": {"\u6a19\u6e96": 1, "JST": 1}, "JST": {"\u6a19\u6e96": 1, "JST": 2}, "1,600": {"1600": 1, "\u7c73": 1, "\u6d77\u62d4": 1}, "wanting": {"\u7535\u5f71": 1, "\u597d\u4e45": 1}, "briefcase": {"\u516c\u4e8b\u5305": 2}, "intersection": {"\u53f3\u8f6c": 1, "\u5341\u5b57\u8def\u53e3": 1}, "boils": {"\u5ea6\u6cb8\u9a30": 2}, "drum": {"\u6253\u9f13": 1}, "Wherever": {"\u7121\u8ad6": 3}, "Sing": {"\u5531\u9996\u6b4c": 1}, "procedure": {"\u7a0b\u5e8f": 1, "\u660e\u767d": 1}, "Korea": {"\u97e9\u56fd": 1}, "moves": {"\u52a8": 1, "\u5feb": 1}, "Harry": {"\u7279\u7684": 1, "\u65b0\u7247": 1, "\u54c8\u5229\u6ce2": 1}, "lame": {"\u7279\u7684": 1, "\u65b0\u7247": 1, "\u54c8\u5229\u6ce2": 1}, "Potter": {"\u7279\u7684": 1, "\u65b0\u7247": 1, "\u54c8\u5229\u6ce2": 1}, "passports": {"\u8b77\u7167": 1}, "misprints": {"\u932f\u8aa4": 1, "\u5370\u5237": 1, "\u4e00\u672c": 1, "\u5927\u81f4": 1, "\u96d6\u7136": 1}, "spilt": {"\u725b\u5976": 2, "\u6c92\u7528": 2}, "boats": {"\u6e56\u4e0a": 1}, "warmed": {"\u6696\u548c": 2}, "Mozart": {"\u83ab\u624e\u7279": 1}, "faint": {"\u660f\u5012": 1, "\u5feb": 1}, "Sweet": {"\u68a6": 1, "\u4f60\u597d": 1, "\u795d": 1}, "tow": {"\u62d6\u8d70": 1}, "Eighty": {"\u767e\u5206\u4e4b\u516b\u5341": 1, "\u5168\u4e16\u754c": 1, "\u8cc7\u8a0a": 1, "\u96fb\u8166": 1}, "ashes": {"\u70e7\u6210": 1, "\u7070\u70ec": 1, "\u5927\u706b": 1}, "Farmers": {"\u519c\u6c11": 1}, "keen": {"\u7075\u654f": 1, "\u55c5\u89c9": 1}, "Dogs": {"\u7075\u654f": 1, "\u55c5\u89c9": 1}, "trivial": {"\u5c0f\u4e8b": 1, "\u9e21\u6bdb\u849c\u76ae": 1}, "vase": {"\u82b1\u74f6": 5}, "trash": {"\u5783\u573e": 3}, "shaves": {"\u5b50": 2, "\u522e": 2, "\u9b0d": 2}, "devil": {"\u9b54\u9b3c": 2}, "procrastinate": {"\u62d6\u5ef6": 1}, "desire": {"\u6df7\u4e3a\u4e00\u8c08": 1, "\u7231\u60c5": 1, "\u6b32\u671b": 1}, "hated": {"\u6068": 3}, "Looking": {"\u700f\u89bd": 1, "\u6d6a\u8cbb": 1}, "undocumented": {"\u6587\u6863": 1, "\u6f0f\u6d1e": 1}, "feature": {"\u6587\u6863": 1, "\u6f0f\u6d1e": 1}, "stripes": {"\u689d\u7d0b": 1, "\u6c34\u5e73": 1}, "horizontal": {"\u689d\u7d0b": 1, "\u6c34\u5e73": 1}, "airmail": {"\u822a\u7a7a": 1, "\u90f5\u4ef6": 1}, "sending": {"\u822a\u7a7a": 1, "\u90f5\u4ef6": 1}, "fridge": {"\u51b0\u7bb1": 3}, "remedial": {"\u8865\u4e60\u73ed": 1}, "relaxed": {"\u9b06": 2, "\u653e": 2}, "repay": {"\u507f\u8fd8\u503a\u52a1": 1}, "dictionaries": {"\u5b57\u5178": 2}, "cramped": {"\u4e0d\u900f\u6c14": 1, "\u51fa\u53bb": 1, "\u5c3d\u5feb": 1, "\u5c4b\u5b50\u91cc": 1}, "dripping": {"\u6c57": 1, "\u6d41": 1}, "IBM": {"IBM": 3}, "offended": {"\u5192\u72af": 2}, "meaningful": {"\u6df1\u9577": 1, "\u4e00\u773c": 1, "\u610f\u5473": 1}, "souvenir": {"\u7eaa\u5ff5\u54c1": 2}, "clown": {"\u5c0f\u4e11": 1, "\u9b3c\u8138": 1}, "scraped": {"\u6ce5\u5df4": 1, "\u522e\u4e0b": 1, "\u9774\u5b50": 1}, "seminar": {"\u600e\u4e48\u6837": 1, "\u7814\u7a76\u4f1a": 1}, "tool": {"\u5de5\u5177": 1, "\u7279\u6b8a": 1}, "policy": {"\u653f\u7b56": 2}, "shine": {"\u98a8\u96e8\u7121\u963b": 1}, "revenge": {"\u5831\u4ec7": 1}, "elaborate": {"\u6d3e": 1, "\u7cbe\u5fc3": 1}, "preparations": {"\u7c4c\u5099": 2}, "2020": {"2020": 2, "\u589e\u52a0\u4e00\u500d": 1}, "doubled": {"2020": 1, "\u589e\u52a0\u4e00\u500d": 1}, "undamaged": {"\u635f\u574f": 1, "\u6beb\u65e0": 1, "\u8d27\u7269": 1}, "employed": {"\u5075\u63a2": 1, "\u79c1\u4eba": 1, "\u770b\u5b88": 1, "\u4e08\u592b": 1, "\u50f1": 1}, "10.00": {"\u5341\u5143": 1, "\u53ea\u8981": 1}, "french": {"\u70b8\u85af": 1}, "2003": {"2003": 2, "\u81ea\u4ece": 1, "\u8fd9\u91cc": 1}, "hotels": {"\u5e02\u4e2d\u5fc3": 1, "\u65c5\u9986": 1}, "wept": {"\u6574\u665a": 1}, "partially": {"\u90e8\u5206": 1}, "Earthquakes": {"\u8972\u64ca": 1, "\u983b\u7e41": 1}, "jelly": {"\u5473": 1, "\u679c\u51cd": 1, "\u8461\u8404": 1}, "origins": {"\u8d77\u6e90": 2}, "hamburgers": {"\u6f22\u5821": 4}, "credit": {"\u4fe1\u7528\u5361": 4}, "cricket": {"\u87cb\u87c0": 1, "\u7c60\u5b50": 1, "\u91ce\u751f": 1}, "caged": {"\u87cb\u87c0": 1, "\u7c60\u5b50": 1, "\u91ce\u751f": 1}, "hoarse": {"\u5168\u90fd": 1, "\u555e": 1, "\u6c99": 1}, "easygoing": {"\u96a8": 1}, "Coffee": {"\u9910": 1, "\u4f9b\u61c9": 1}, "puts": {"\u6bcf\u9031": 1, "\u52a0": 1, "\u5169\u6b21": 1}, "cuter": {"\u53ef\u7231": 1}, "fork": {"\u9ad2": 1, "\u53c9\u5b50": 1}, "convenient": {"\u65b9\u4fbf": 3}, "piddling": {"\u4e89\u5435": 1, "\u7ec6\u679d\u672b\u8282": 1, "\u6b63\u9898": 1}, "arguing": {"\u4e89\u5435": 1, "\u7ec6\u679d\u672b\u8282": 1, "\u6b63\u9898": 1}, "pies": {"\u860b\u679c": 1, "\u6d3e": 1}, "aspirin": {"\u963f\u53f8\u5339\u6797": 1}, "unique": {"\u6c23\u5473": 1, "\u7368\u7279": 1}, "screwball": {"\u602a\u4eba": 1}, "Fancy": {"\u60f3\u4e0d\u5230": 1, "\u9047\u898b": 1}, "picky": {"\u6311\u5254": 1}, "Liz": {"\u4e86\u5229\u8332": 1}, "direct": {"\u6ce2\u58eb\u987f": 1, "\u6089\u5c3c": 1, "\u4e4b\u95f4": 1, "\u76f4\u98de": 1}, "flights": {"\u822a\u73ed": 2}, "essentially": {"\u672c\u8cea": 1}, "nerve": {"\u81bd\u91cf": 1, "\u51fa\u4f86": 1}, "overhead": {"\u76f4\u5347\u98de\u673a": 1, "\u770b\u89c1": 1, "\u4e00\u67b6": 1, "\u5934\u9876": 1, "\u98de": 1}, "U.S.": {"\u4eba\u80fd": 1, "\u5341\u516b\u5c81": 1, "\u6295\u7968\u9009\u4e3e": 1, "\u5927\u591a\u6570": 1}, "debate": {"\u8fa9\u8bba": 1}, "sting": {"\u86f0\u4e86": 1}, "obeyed": {"\u670d\u4ece": 1, "\u547d\u4ee4": 1}, "Humans": {"\u6d3b": 1, "\u53ea\u80fd": 1}, "70": {"\u4e03\u5341\u5c81": 2, "\u6d3b": 2, "\u53ea\u80fd": 2}, "indispensable": {"\u5fc5\u4e0d\u53ef\u5c11": 2}, "influenced": {"\u5f71\u54cd": 1, "\u65b9\u5f0f": 1}, "picnic": {"\u91ce\u9910": 13}, "dig": {"\u6316\u571f": 1}, "amusing": {"\u6545\u4e8b": 1}, "cops": {"\u5168\u90fd": 1, "\u689d\u5b50": 1}, "taxed": {"\u6bd4\u8f83": 1, "\u53d1\u6ce1": 1, "\u6839\u636e": 1, "\u5f81\u7a0e": 1, "\u9152\u4f1a": 1, "\u9ea6\u82bd": 1}, "malt": {"\u6bd4\u8f83": 1, "\u53d1\u6ce1": 1, "\u6839\u636e": 1, "\u5f81\u7a0e": 1, "\u9152\u4f1a": 1, "\u9ea6\u82bd": 1}, "Dentists": {"\u7259\u533b": 1, "\u7259\u9f7f": 1}, "examine": {"\u7259\u533b": 1, "\u7259\u9f7f": 1}, "impulse": {"\u5927\u53eb": 1}, "hazel": {"\u5982\u6b64": 1, "\u6de1\u8910\u8272": 1}, "vibe": {"\u5f88\u5dee": 1, "\u5370\u8c61": 1}, "remarks": {"\u756a": 1}, "shore": {"\u8d1d\u58f3": 1, "\u6d77\u6ee9": 1}, "Nagasaki": {"\u65bc\u9577\u5d0e": 1}, "Bee": {"\u87ab\u4eba": 1}, "stings": {"\u87ab\u4eba": 1}, "aliens": {"\u5916\u661f\u4eba": 2}, "implying": {"\u6697\u793a": 2}, "Indian": {"\u83dc": 2}, "hick": {"\u4e61\u5df4\u4f6c": 1}, "stab": {"\u4f01\u56fe": 1, "\u523a": 1}, "manuscript": {"\u5e95\u7a3f": 1, "\u6700\u65b0": 1, "\u5267": 1}, "backward": {"\u540e\u9000": 1, "\u4e00\u6b65": 1}, "passing": {"\u901a\u904e": 1, "\u99d5\u99db": 1, "\u8003\u8a66": 1, "\u9a5a\u8a1d": 1}, "inch": {"\u5f97\u5bf8\u8fdb\u5c3a": 1}, "catching": {"\u7d27\u8ffd": 1}, "chocolates": {"\u4e00\u76d2": 2}, "scolding": {"\u7f75": 1}, "curious": {"\u597d\u5947": 5}, "indistinguishable": {"\u53cc\u80de\u80ce": 1, "\u6ca1\u6cd5": 1, "\u533a\u5206": 1}, "chopsticks": {"\u7b77\u5b50": 3}, "mattress": {"\u5e8a\u588a": 2}, "preferred": {"\u65e0\u6240\u4e8b\u4e8b": 1, "\u613f\u610f": 1}, "vitamins": {"\u9023": 1, "\u7dad": 1, "\u542b\u6709": 1, "\u547d": 1}, "Coal": {"\u7164": 2}, "fuels": {"\u71c3\u6599": 1, "\u5929\u7136": 1}, "panic": {"\u6050\u614c": 1}, "refreshments": {"\u5f00\u4f1a": 1, "\u8fc7\u540e": 1, "\u63a5\u7740": 1, "\u8336\u70b9": 1}, "pressured": {"\u65bd\u538b": 1}, "subarachnoid": {"\u51fa\u8840": 1, "\u86db\u7f51\u819c": 1, "\u5341\u56db\u5c81": 1}, "hemorrhage": {"\u51fa\u8840": 1, "\u86db\u7f51\u819c": 1, "\u5341\u56db\u5c81": 1}, "fourteen": {"\u51fa\u8840": 1, "\u86db\u7f51\u819c": 1, "\u5341\u56db\u5c81": 1}, "sir": {"\u99d5\u99db": 1, "\u57f7\u7167": 1}, "brilliant": {"\u524d\u9014": 1, "\u5927\u597d": 1, "\u9762\u524d": 1, "\u6446\u5728": 1}, "Count": {"\u7b97": 1}, "unless": {"\u9664\u975e": 4}, "tigers": {"\u8001\u864e": 2}, "threaten": {"\u5a01\u8105": 1}, "classroom": {"\u6559\u5ba4": 8}, "banged": {"\u62cd": 1, "\u62f3\u982d": 1}, "fist": {"\u62cd": 1, "\u62f3\u982d": 1}, "1988": {"1988": 2}, "impressive": {"\u6df1\u523b": 1, "\u9a84\u50b2": 1, "\u5370\u8c61": 1, "\u4fe9": 1}, "rerun": {"\u91cd\u64ad": 1, "\u8282\u76ee": 1}, "violin": {"\u5c0f\u63d0\u7434": 10}, "Year": {"\u65b0\u5e74": 3}, "dedication": {"\u656c\u4e1a\u7cbe\u795e": 1}, "Hard": {"\u656c\u4e1a\u7cbe\u795e": 1}, "Anyone": {"\u505a\u5230": 1}, "coin": {"\u4e00\u679a": 1, "\u786c\u5e63": 1, "\u4eba\u884c\u9053": 1}, "sidewalk": {"\u4e00\u679a": 1, "\u786c\u5e63": 1, "\u4eba\u884c\u9053": 1}, "credibility": {"\u4fe1\u8b7d": 1}, "conversationalist": {"\u4f5c\u70ba": 1, "\u8457\u4f5c": 1, "\u826f\u597d": 1, "\u4ea4\u8ac7\u8005": 1, "\u610f\u5473": 1, "\u8a71\u8005": 1}, "tulips": {"\u7f8e\u4e3d": 1, "\u90c1\u91d1\u9999": 1}, "brand": {"\u5168\u65b0": 1}, "wakes": {"\u4e00\u9192": 1, "\u653e": 1}, "dreaming": {"\u4ee5\u4e3a": 2, "\u505a\u68a6": 2}, "exceptions": {"\u4f8b\u5916": 1}, "margarine": {"\u9ec4\u6cb9": 2, "\u4ee3\u66ff": 2, "\u4eba\u9020\u9ec4\u6cb9": 2}, "career": {"\u751f\u6daf": 1, "\u5b8c\u86cb": 1}, "sin": {"\u7f6a": 1, "\u8bf4\u8c0e": 1}, "breathing": {"\u5339": 1, "\u547c\u5438\u56f0\u96be": 1, "\u9a6c": 1, "\u5df2": 1, "\u67aa\u6740": 1}, "noises": {"\u6216\u8005": 1, "\u566a\u97f3": 1, "\u5e72\u6270": 1}, "dragged": {"\u722c\u8d77\u6765": 1, "\u5e8a\u4e0a": 1, "\u7a7f\u4e0a": 1}, "evil": {"\u533a\u5206": 3, "\u5584\u6076": 3}, "artists": {"\u827a\u672f\u5bb6": 2}, "conveniently": {"\u4ea4\u901a": 1, "\u4f4d": 1, "\u4fbf\u5229": 1}, "observatory": {"\u661f\u8c61": 1, "\u5efa": 1, "\u77ad\u671b\u53f0": 1, "\u89c0\u6e2c": 1}, "disappoint": {"\u5931\u671b": 1}, "booth": {"\u4ead": 1}, "prisoner": {"\u56da\u72af": 5}, "damages": {"\u8ce0\u511f": 1, "\u72c0\u544a": 1}, "sued": {"\u8ce0\u511f": 1, "\u72c0\u544a": 1}, "2013": {"2013": 4}, "uncertain": {"\u6e05\u695a": 1, "\u5927\u5b66": 1}, "muggy": {"\u60b6\u71b1": 1}, "kidnapped": {"\u7ed1\u67b6": 1}, "primary": {"\u89e3\u51b3": 1, "\u5c0f\u5b66\u751f": 1}, "blonde": {"\u91d1\u8272": 1, "\u67d3\u6210": 1}, "dye": {"\u91d1\u8272": 1, "\u67d3\u6210": 1}, "scissors": {"\u526a\u5200": 1}, "scratchy": {"\u662f\u4e0d\u662f": 1, "\u53d8\u5f97": 1, "\u6c99\u54d1": 1, "\u611f\u5192": 1, "\u55d3\u5b50": 1}, "resting": {"\u4f11\u606f": 3}, "Bird": {"\u4e1a\u4f59\u7231\u597d": 1, "\u89c2\u5bdf": 1, "\u5f88\u597d": 1, "\u9e1f\u7c7b": 1}, "skies": {"\u5929\u7a7a": 2}, "skeleton": {"\u6d1e\u7a74": 2}, "explorers": {"\u63a2\u9669\u5bb6": 1, "\u9ab8\u9aa8": 1}, "deteriorated": {"\u6076\u5316": 1, "\u7a7a\u6c14\u8d28\u91cf": 1}, "Air": {"\u6076\u5316": 1, "\u7a7a\u6c14\u8d28\u91cf": 1}, "consented": {"\u8001\u592a\u592a": 1}, "valuables": {"\u503c\u94b1": 1, "\u7269\u54c1": 1}, "treats": {"\u5c0d\u5f85": 1, "\u5974\u96b8": 1}, "meditate": {"\u6642\u5e38": 1, "\u904e\u53bb": 1, "\u51a5\u60f3": 1}, "competitions": {"\u8d0f": 2, "\u6bd4\u8cfd": 2}, "donate": {"\u4e00\u6b21": 1, "\u732e": 1, "\u4e09\u4e2a": 1, "\u8840": 1}, "Arithmetic": {"\u7b97\u6570": 1, "\u5904\u7406": 1}, "Taiwan": {"\u53f0\u7063": 1}, "disturbed": {"\u7f8e\u68a6": 1, "\u58f0\u97f3": 1}, "bulletproof": {"\u9632\u5f48": 1, "\u4e00\u4ef6": 1, "\u8863": 1}, "vest": {"\u9632\u5f48": 1, "\u4e00\u4ef6": 1, "\u8863": 1}, "Ginza": {"\u9280\u5ea7": 1, "\u5730\u9435": 1, "\u642d\u4e58": 1}, "sadness": {"\u5e73\u64ab": 1, "\u60b2\u50b7": 1}, "Translating": {"\u7ffb\u8bd1": 1}, "moss": {"\u6eda\u77f3": 2, "\u82d4": 2, "\u4e0d\u751f": 2}, "gathers": {"\u6eda\u77f3": 2, "\u82d4": 2, "\u4e0d\u751f": 2}, "proverb": {"\u6eda\u77f3": 1, "\u82d4": 1, "\u4e00\u53e5": 1, "\u4e0d\u751f": 1, "\u8c1a\u8bed": 1}, "stewardess": {"\u7a7a\u59d0": 3}, "Putting": {"\u56f0\u96e3": 1, "\u60f3\u6cd5": 1, "\u5be6\u8e10": 1, "\u4ed8\u8af8": 1}, "criticism": {"\u654f\u611f": 2}, "sensitive": {"\u654f\u611f": 2}, "skating": {"\u8fc7\u540e": 1, "\u6ed1\u51b0": 1}, "parade": {"\u9605\u5175\u5f0f": 1, "\u4e00\u573a": 1}, "canceled": {"\u53d6\u6d88": 2}, "comparison": {"\u5f88\u5c0f": 1, "\u4e1c\u4eac": 1, "\u4f26\u6566": 1}, "doggy": {"\u6253\u5305": 1}, "tin": {"\u5206\u8fa8": 2, "\u9280\u548c\u932b": 2}, "1939": {"1939": 3, "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218": 2}, "chemistry": {"\u5316\u5b66": 2}, "whiter": {"\u76ae\u80a4": 1, "\u6bd4\u96ea": 1}, "bitter": {"\u4ec7": 1, "\u6575": 1}, "rates": {"\u5229\u7387": 2}, "Interest": {"\u5229\u7387": 2}, "inflation": {"\u901a\u8d27\u81a8\u80c0": 1, "\u5229\u7387": 1}, "devoured": {"\u72fc\u541e\u864e\u54bd": 1, "\u4e00\u987f": 1}, "vanished": {"\u4e0d\u89c1": 1}, "denies": {"\u5426\u8ba4": 1, "\u81ea\u884c\u8f66": 1}, "footprints": {"\u6c99\u7058": 1, "\u8173\u5370": 1}, "Central": {"\u516c\u5712": 1, "\u65b9\u5411": 1, "\u4e2d\u592e": 1, "\u54ea\u500b": 1}, "3.00": {"\u5165\u573a\u8d39": 1, "\u7f8e\u5143": 1}, "Okinawa": {"\u65f6\u85aa": 1, "\u6700\u4f4e": 1, "642": 1, "\u51b2\u7ef3": 1}, "642": {"\u65f6\u85aa": 1, "\u6700\u4f4e": 1, "642": 2, "\u51b2\u7ef3": 1}, "Breathing": {"\u547c\u5438": 1, "\u56f0\u96e3": 1}, "absorbs": {"\u5438\u6c34": 1, "\u6d77\u7ef5": 1}, "sponge": {"\u5438\u6c34": 1, "\u6d77\u7ef5": 1}, "force": {"\u5f37\u8feb": 1}, "fancy": {"\u5165\u4f4f": 2, "\u9ad8\u6863": 2, "\u9152\u5e97": 2}, "retirement": {"\u4e0d\u5feb": 1}, "simplest": {"\u529e\u6cd5": 1, "\u7b80\u4fbf": 1, "\u5f80\u5f80": 1, "\u89e3\u51b3\u95ee\u9898": 1}, "pools": {"\u6cf3\u6c60": 1}, "cluttered": {"\u5f88\u4e71": 1}, "closer": {"\u9760\u8fd1": 1}, "satellite": {"\u6708\u7403": 1, "\u536b\u661f": 1}, "governor": {"\u7576\u9078": 1, "\u5dde\u9577": 1}, "skilled": {"\u9493\u9c7c": 1, "\u9ad8\u624b": 1}, "fisherman": {"\u9493\u9c7c": 1, "\u9ad8\u624b": 1}, "caucasian": {"\u767d\u4eba": 1, "\u5973\u6027": 1, "\u5acc\u7591\u4eba": 1}, "west": {"\u98de\u673a": 1, "\u5411\u897f\u98de": 1}, "defeated": {"\u6230\u52dd": 1, "\u6575\u4eba": 1}, "practiced": {"\u7df4\u7fd2": 1, "\u5728\u5bb6": 1}, "ironed": {"\u71a8": 1}, "garlic": {"\u5927\u849c": 2}, "Switch": {"\u770b\u4e0d\u89c1": 1, "\u6253\u5f00": 1, "\u706f": 1}, "autumn": {"\u79cb\u5929": 1, "\u54ea\u4e2a": 1, "\u6625\u5929": 1}, "unusually": {"\u5bd2\u51b7": 1}, "throne": {"\u738b\u4f4d": 1, "\u7ee7\u627f": 1}, "naive": {"\u5929\u771f": 1}, "forgave": {"\u539f\u8c05": 1}, "overeat": {"\u5c0f\u5fc3": 1, "\u91cf": 1}, "Words": {"\u601d\u60f3": 2}, "rode": {"\u81ea\u884c": 2, "\u9a0e": 2}, "kidding": {"\u5f00\u73a9\u7b11": 1}, "fixing": {"\u4fee": 2, "\u6d17\u8863": 2}, "definite": {"\u80af\u5b9a": 1}, "printed": {"\u5370\u5237": 1, "\u82f1\u56fd": 1}, "trading": {"\u666f\u6c14": 1, "\u4e00\u7b14": 1, "\u4e0a\u4e2a": 1, "\u7092\u80a1": 1, "\u6512\u4e0b": 1}, "boom": {"\u666f\u6c14": 1, "\u4e00\u7b14": 1, "\u4e0a\u4e2a": 1, "\u7092\u80a1": 1, "\u6512\u4e0b": 1}, "forty": {"40": 1}, "Starting": {"\u96ea": 1, "\u661f\u671f": 1}, "Hakodate": {"\u51fd\u9928": 2}, "sheer": {"\u6d6a\u8cbb": 1}, "inform": {"\u544a\u77e5": 1, "\u90a3\u4ef6": 1}, "Pride": {"\u9a84\u50b2": 2}, "recycling": {"\u8003\u616e": 1, "\u56de\u6536": 1}, "hiccup": {"\u6253\u55dd": 1}, "schoolroom": {"\u6559\u5ba4": 1, "\u89d2\u843d": 1, "\u555c\u6ce3": 1}, "sadly": {"\u5fc3\u5730": 1, "\u56de\u7b54": 1, "\u50b7": 1}, "cents": {"\u4e94\u5341": 2, "\u7f8e\u5206": 2}, "broccoli": {"\u5f88\u65b0": 1, "\u9bae": 1, "\u897f\u85cd\u82b1": 1}, "Shake": {"\u63e1\u624b": 1}, "dryer": {"\u98a8\u6a5f": 2, "\u5439": 2}, "Six": {"\u4e8c": 1, "\u9664\u4ee5": 1, "\u516d": 1}, "winner": {"\u8d62\u5bb6": 1}, "Airlines": {"\u806f\u5408": 1, "\u624b\u7e8c": 1, "\u6ac3": 1, "\u767b\u6a5f": 1, "\u6aaf": 1, "\u822a\u7a7a\u516c\u53f8": 1, "\u8fa6\u7406": 1}, "cattle": {"\u80a5": 1, "\u725b": 1}, "advertisements": {"\u6536\u5230": 1, "\u56de\u61c9": 1, "\u7533\u8acb": 1}, "applications": {"\u6536\u5230": 1, "\u56de\u61c9": 1, "\u7533\u8acb": 1}, "Lie": {"\u8eba": 3}, "Malaria": {"\u50b3\u67d3": 1, "\u7627\u75be": 1}, "Washington": {"\u534e\u76db\u987f": 2}, "receipt": {"\u6536\u64da": 1}, "unpleasant": {"\u7d93\u6b77": 1}, "degree": {"\u5b78\u4f4d": 1, "\u78a9\u58eb": 1}, "coma": {"\u60a3\u8005": 1, "\u660f\u8ff7": 1, "\u6df1\u5ea6": 1, "\u5904\u4e8e": 1, "\u72b6\u6001": 1}, "ultrasound": {"\u6aa2\u67e5": 1, "\u8d85\u8072": 1}, "shipment": {"\u8fdf\u5230": 1, "\u7279\u522b": 1, "\u8239\u8fd0": 1, "\u4fdd\u9669": 1, "\u8fdf": 1, "\u4e07\u4e00": 1}, "drugstore": {"\u85e5\u5e97": 1}, "pineapple": {"\u4e0d\u5403": 1, "\u83e0\u863f": 1}, "Might": {"\u59d3\u540d": 1, "\u95ee": 1, "\u4f4f\u5740": 1}, "Canadians": {"\u52a0\u62ff\u5927\u4eba": 2}, "vacant": {"\u8fd8\u6709": 1, "\u7a7a\u623f": 1, "\u51e0\u95f4": 1}, "fingerprints": {"\u6307\u7eb9": 1}, "butterfly": {"\u8774\u8776": 2}, "holes": {"\u896a\u5b50": 1, "\u7a7f\u7834": 1}, "nuts": {"\u4e3b\u610f": 1, "\u75af": 1}, "deposit": {"\u5b58": 1}, "banks": {"\u5b58": 1}, "skates": {"\u6e9c\u51b0\u978b": 1, "\u514d\u8cbb": 1}, "Enjoy": {"\u5ea6\u5047": 1}, "autistic": {"\u81ea\u95ed\u75c7": 1}, "abstained": {"\u5f03\u6743": 1, "\u6295\u7968": 1}, "mountaineering": {"\u767b\u5c71": 1, "\u611f\u8208\u8da3": 1}, "clipped": {"\u7f8a": 1, "\u4fee\u526a": 1}, "Change": {"\u63db": 1, "\u706b\u8eca": 1, "\u4e00\u7ad9": 1}, "sour": {"\u9178": 1, "\u6ab8\u6aac": 1}, "Lemons": {"\u9178": 1, "\u6ab8\u6aac": 1}, "massage": {"\u6309\u6469": 1, "\u653e\u677e": 1}, "privately": {"\u79c1\u4e0b": 1, "\u4e00\u5206\u949f": 1, "\u8c08": 1}, "occupied": {"\u5360\u9886": 2}, "forces": {"\u6574\u7247": 1, "\u519b\u961f": 1, "\u9886\u571f": 1}, "monopolies": {"\u66fe\u7ecf": 1, "/": 1, "\u5784\u65ad": 1}, "intolerable": {"\u65e0\u6cd5\u5fcd\u53d7": 1}, "fares": {"\u8eca\u8cbb": 1, "\u8a08\u7a0b": 1, "\u6f32\u50f9": 1}, "Taxi": {"\u8eca\u8cbb": 1, "\u8a08\u7a0b": 1, "\u6f32\u50f9": 1}, "Persian": {"\u6ce2\u65af\u732b": 1, "\u7761\u89c9": 1, "\u4e0b\u9762": 1}, "scales": {"\u6d74\u5ba4": 1, "\u8ba1\u91cf": 1, "\u4f53\u91cd": 1}, "weighed": {"\u6d74\u5ba4": 1, "\u8ba1\u91cf": 1, "\u4f53\u91cd": 1}, "veranda": {"\u6696\u623f": 1}, "forgetful": {"\u5065\u5fd8": 2}, "Spell": {"\u62fc": 1, "\u540d\u5b57": 1}, "secretary": {"\u79d8\u4e66": 3}, "CV": {"\u6df1\u523b": 1, "\u7559\u4e0b": 1, "\u5370\u8c61": 1, "\u5c65\u6b77": 1}, "chased": {"\u8ffd": 1}, "drinkers": {"\u4e0d\u51c6": 1, "\u7981\u5165": 1, "\u98f2\u9152": 1}, "imaginative": {"\u60f3\u50cf\u529b": 2}, "trace": {"\u4e00\u4e1d": 1, "\u4e0d\u7559": 1, "\u8e2a\u8ff9": 1, "\u6d88\u5931": 1}, "kidnappers": {"\u653e\u68c4": 1, "\u7d81": 1, "\u532a": 1, "\u8de1\u8c61": 1}, "central": {"\u697c": 1, "\u6696\u6c14": 1, "\u8fd9\u680b": 1, "\u4e2d\u592e": 1}, "shows": {"\u812b\u53e3\u79c0": 1}, "abstain": {"\u533b\u9662": 1, "\u6212\u70df": 1, "\u4e0d\u5f97\u4e0d": 1}, "Short": {"\u77ed\u88d9": 1, "\u904e\u6642": 1}, "Balls": {"\u7403": 1, "\u5706": 1}, "Action": {"\u884c\u80dc": 1, "\u8a00": 1, "\u8fd9\u6837": 1, "\u5e76": 1}, "honeymoon": {"\u871c\u6708": 1}, "pronunciation": {"\u53d1\u97f3": 3}, "Driving": {"\u5f00\u8f66": 1, "\u8f66\u7978": 1, "\u5149\u6ed1": 1}, "slippery": {"\u5f00\u8f66": 1, "\u8f66\u7978": 1, "\u5149\u6ed1": 1}, "guarding": {"\u5b88\u885b": 1}, "dealt": {"\u5904\u7406": 3}, "tragic": {"\u54ed\u6ce3": 1, "\u76e1": 1, "\u7686": 1, "\u4ed6\u5006": 1, "\u60b2\u5287": 1, "\u9019\u4ef6": 1}, "telephoned": {"\u7acb\u523b": 1}, "cleaners": {"\u8ba8\u538c": 1, "\u5438\u5c18\u5668": 1}, "napping": {"\u68a6": 1, "\u7761\u5348\u89c9": 1, "\u602a": 1}, "checks": {"\u652f\u7968": 1}, "displeased": {"\u8868\u73fe": 1, "\u5f9e\u4f86": 1, "\u51fa\u4f86": 1}, "scores": {"\u5206\u6570": 1, "\u603b": 1, "\u5f97\u5c11": 1}, "underrated": {"\u4f4e\u4f30": 1, "\u91cd\u8981\u6027": 1}, "messages": {"\u8a0a\u606f": 1}, "inflexible": {"\u6b7b\u677f": 1}, "limit": {"\u8d85\u901f": 2}, "ladder": {"\u68af\u5b50": 2}, "agent": {"\u7d27\u6025\u60c5\u51b5": 1, "\u4ee3\u7406\u4eba": 1, "\u8054\u7cfb": 1, "\u4e07\u4e00": 1}, "literal": {"\u89e3\u91ca": 1, "\u5b57\u9762": 1}, "astonishment": {"\u4ee4": 1}, "nodded": {"\u70b9\u5934": 1}, "Venice": {"\u5a01\u5c3c\u65af": 2}, "thick": {"\u7a20": 1, "\u6c64": 1}, "chipped": {"\u6240\u6709\u4eba": 1, "\u751f\u65e5\u793c\u7269": 1, "\u51d1\u4efd\u5b50": 1}, "inviting": {"\u9080\u8bf7": 1, "\u5403\u996d": 1}, "fussy": {"\u76f8\u5f53": 1, "\u6311\u5254": 1}, "finishes": {"\u653e\u5b78": 1, "\u5b78\u6821": 1, "\u661f\u671f\u516d": 1, "\u4e2d\u5348": 1}, "tasty": {"\u597d\u5403": 1}, "heroes": {"\u82f1\u96c4": 2}, "passenger": {"\u5ea7\u4f4d": 1, "\u7bee\u5b50": 1}, "calendar": {"\u66c6": 3}, "Ogai": {"\u4f5c\u8005": 1, "Ogai": 2}, "spinach": {"\u83e0\u83dc": 4}, "Chocolate": {"\u9435\u8cea": 2}, "vodka": {"\u4f0f\u7279\u52a0": 2}, "invitations": {"\u9080\u8bf7": 1, "\u53d1\u51fa": 1}, "ultimate": {"\u76ee\u7684": 1, "\u6700\u7ec8": 1}, "wagging": {"\u8ddf\u8457": 1, "\u4e3b\u4eba": 1, "\u6416\u8457": 1}, "hiking": {"\u4f11\u606f": 1, "\u51fa\u53bb": 1, "\u8fdc\u8db3": 1, "\u5728\u5bb6": 1, "\u60f3\u5f85": 1}, "mansion": {"\u8c6a\u5b85": 1}, "conform": {"\u9075\u5b88\u89c4\u5219": 1}, "Dry": {"\u5e72\u67f4": 1, "\u65fa": 1, "\u71d2": 1}, "Baikal": {"\u6e56\u6cca": 2, "\u4fc4\u7f85\u65af": 2, "\u6700\u6df1": 2, "\u8c9d\u52a0\u723e\u6e56": 2}, "philosopher": {"\u54f2\u5b66\u5bb6": 1}, "hopeless": {"\u63d0": 1, "\u9806\u9053": 1, "\u7d55\u5c0d": 1}, "switched": {"\u4ea4\u6362": 1, "\u957f\u51f3": 1, "\u4f4d\u7f6e": 1}, "hottest": {"\u6700\u71b1": 1, "\u4eca\u5e74": 1}, "hating": {"\u6b62\u4f4f": 1, "\u4ec7\u6068": 1}, "metal": {"\u91d1\u5c5e": 3}, "depended": {"\u91cd\u91cf": 1, "\u94b1\u5e01": 1, "\u53d6\u51b3\u4e8e": 1}, "worship": {"\u812b": 1, "\u9032\u5165": 1, "\u79ae": 1, "\u62dc\u5802": 1, "\u4e0b\u4f86": 1}, "suggesting": {"\u5be6\u969b": 1, "\u751a\u9ebc": 1}, "wiped": {"\u8138\u4e0a": 1, "\u64e6": 1, "\u6c57\u6c34": 1}, "matches": {"\u7528\u5c3d": 1, "\u706b\u67f4": 1, "\u70b9\u706b": 1}, "customer": {"\u6c38\u8fdc": 1, "\u987e\u5ba2": 1}, "Honshu": {"\u5317\u90e8": 1, "\u672c\u5dde": 1}, "referring": {"\u6307": 2}, "31st": {"\u63d0\u9192": 1, "31": 1, "\u5230\u671f\u65e5": 1, "\u518d\u6b21": 1}, "skip": {"\u9003\u5b78": 2}, "Smiths": {"\u9644\u8fd1": 1, "\u53f2\u5bc6\u65af": 1, "\u592b\u5a66": 1, "\u6211\u5bb6": 1}, "foundation": {"\u8b20\u8a00": 1, "\u6beb\u7121": 1, "\u6839\u64da": 1}, "Finishing": {"\u62a5\u544a": 1}, "brains": {"\u597d\u4f7f": 1, "\u8111\u5b50": 1}, "voices": {"\u958b\u5fc3": 1}, "stains": {"\u9664\u9508": 1}, "remove": {"\u9664\u9508": 1}, "chickens": {"\u4e24\u53ea": 1, "\u516d\u53ea": 1, "\u517b": 1, "\u4e09\u53ea": 1, "\u9e21": 1}, "weigh": {"\u91cd": 1}, "Valuable": {"\u5b9d\u8cb4": 1, "\u5df2": 1}, "Valentine": {"\u60c5\u4eba\u8282": 2}, "brave": {"\u52c7\u6562": 7}, "grapes": {"\u8461\u8404": 4}, "remembers": {"\u8bb0\u5f97": 1}, "translating": {"\u7ffb\u8b6f": 2}, "Boil": {"\u71d2\u958b": 1}, "1860": {"\u7e3d\u7d71": 1, "1860": 2}, "doubtful": {"\u4f1a\u6765": 1}, "gathered": {"\u4eba\u7fa4": 1, "\u805a\u96c6": 1, "\u8fd9\u6761": 1, "\u8857\u4e0a": 1}, "cases": {"\u594f\u6548": 1, "\u6761": 1, "\u89c4\u5219": 1}, "officers": {"\u8cca": 1, "\u62d8\u6355": 1, "\u7aca": 1}, "119": {"\u9047\u5230": 1, "\u706b\u707e": 1, "119.": 1}, "Wonderful": {"\u5f88\u68d2": 1}, "forgetting": {"\u5fd8\u8a18": 3}, "desperate": {"\u7edd\u5883": 1, "\u5904\u5728": 1}, "circus": {"\u516d\u5c81": 1, "\u9a6c\u620f": 1, "\u5e26\u53bb": 1}, "bark": {"\u72d7\u4f1a": 1}, "tempted": {"\u590f\u5a03": 1}, "serpent": {"\u590f\u5a03": 1}, "Eve": {"\u590f\u5a03": 1}, "underestimated": {"\u4f4e\u4f30": 1}, "sailing": {"\u793e": 1, "\u53c3\u52a0": 1, "\u5e06\u8239": 1}, "upcoming": {"\u5373\u5c06\u6765\u4e34": 1, "\u9080\u8bf7": 1, "\u821e\u4f1a": 1, "\u610f\u56fe": 1, "Mary": 1}, "amplifier": {"\u8072\u5668": 1, "\u7d44\u88dd": 1, "\u63da": 1}, "containers": {"\u5bc6\u5c01": 1, "\u5bb9\u5668": 1}, "airtight": {"\u5bc6\u5c01": 1, "\u5bb9\u5668": 1}, "imperative": {"\u9a6c\u4e0a": 2, "\u884c\u52a8": 2}, "archer": {"\u9e7f": 1, "\u5c04\u624b": 1, "\u6253\u6b7b": 1}, "proactive": {"\u79ef\u6781\u4e3b\u52a8": 1}, "walker": {"\u8d70\u8def": 1}, "scary": {"\u6050\u6016": 1, "\u5c0f\u8bf4": 1}, "tires": {"\u7206": 1, "\u8f6e\u80ce": 1}, "utmost": {"\u81f3\u5173\u91cd\u8981": 1}, "phoned": {"\u502b\u6566": 1, "\u6253\u96fb\u8a71": 1}, "Mistakes": {"\u5ffd\u89c6": 1}, "overlooked": {"\u5ffd\u89c6": 1}, "platform": {"\u4f2f\u660e\u7ff0": 1, "\u7ad9\u53f0": 1}, "Birmingham": {"\u4f2f\u660e\u7ff0": 1, "\u7ad9\u53f0": 1}, "answers": {"\u7b54\u6848": 3}, "tours": {"\u904a": 2}, "illegal": {"\u505c": 1, "\u9055\u6cd5": 1}, "Orange": {"\u67f3\u6a59\u6c41": 1}, "especially": {"\u7279\u5225": 3}, "40": {"40": 4}, "unfortunate": {"\u53ef\u6190": 1, "!": 1}, "differs": {"\u5144\u5f1f": 1}, "coworkers": {"\u540c\u4e8b": 2}, "citizens": {"\u8001\u767e\u59d3": 1, "\u8ecd\u968a": 1, "\u52a0\u5165": 1}, "Whichever": {"\u54ea\u6761": 1, "\u9009": 1, "\u6309\u65f6": 1}, "cellular": {"\u8db3\u5920": 1, "\u4e00\u652f": 1, "\u624b\u6a5f": 1}, "defibrillator": {"\u9664\u98a4": 1, "\u5668": 1}, "knitting": {"\u7f16\u7ec7": 1}, "lenses": {"\u96b1\u5f62": 2, "\u773c\u93e1": 2}, "urge": {"\u5962\u4f88\u54c1": 1, "\u616b\u607f": 1}, "luxuries": {"\u5962\u4f88\u54c1": 1, "\u616b\u607f": 1}, "Advertisements": {"\u5962\u4f88\u54c1": 1, "\u616b\u607f": 1}, "Cheese": {"\u5976": 1, "\u505a\u6210": 1, "\u5976\u916a": 1}, "ribbon": {"\u4e1d\u5e26": 1, "\u4e00\u6839": 1, "\u9ec4": 1, "\u4e0a\u7ed1": 1}, "sake": {"\u4e0d\u518d": 1}, "deprived": {"\u4ea4\u901a": 1, "\u610f\u5916": 1, "\u9019\u5834": 1, "\u5931\u660e": 1}, "Picasso": {"\u756b": 1, "\u7562\u52a0\u7d22": 1, "\u5947\u602a": 1}, "tremendous": {"\u5de8\u5927": 1}, "sawing": {"\u770b\u89c1": 1, "\u952f": 1, "\u4e00\u68f5\u6811": 1}, "sales": {"\u9500\u552e": 2}, "jeep": {"\u5409\u666e\u8f66": 1}, "tonal": {"\u6f22\u8a9e": 1, "\u8072\u8abf": 1}, "intervenes": {"\u4fb5\u8972": 1, "\u7406\u6240": 1, "\u75be\u75c5": 1, "\u7576\u7136": 1}, "Germanic": {"\u65e5\u8033\u66fc": 1}, "obliged": {"\u4e0d\u5f97\u4e0d": 2}, "voted": {"\u6295": 2}, "serial": {"\u8fde\u73af": 2, "\u6740\u624b": 2}, "preserve": {"\u8150\u721b": 1}, "decay": {"\u8150\u721b": 1}, "Salt": {"\u8150\u721b": 1}, "trap": {"\u9677\u9631": 2, "\u8bbe": 2}, "tiptoed": {"\u8e2e": 1, "\u8173": 1, "\u5c16": 1}, "Hardly": {"\u59d0\u59b9": 1}, "Sooner": {"\u9072\u65e9": 2}, "Foster": {"\u9996\u6b4c\u66f2": 1, "\u6240\u5beb": 1, "\u798f\u65af\u7279": 1}, "pressed": {"\u6309": 1, "\u7b49\u5f85": 1, "\u9215\u7136": 1}, "hesitation": {"\u6beb\u4e0d\u72b9\u8c6b": 1}, "resemblance": {"\u6781\u4e86": 1, "\u9707\u60ca": 1}, "captive": {"\u56da\u7981": 1}, "melons": {"\u5b83\u4eec": 1, "\u74dc": 1}, "pepperoni": {"\u5982\u6b64": 1, "\u8fa3\u8178": 1, "\u61c2": 1, "\u62ab": 1, "\u70ba\u4f55": 1, "\u85a9": 1, "\u7fa9\u5f0f": 1}, "Karuizawa": {"\u4e95\u6fa4": 2}, "Whenever": {"\u5e74\u8f7b": 1, "\u542c\u5230": 1, "\u9996\u6b4c": 1, "\u6bcf\u6b21": 1, "\u56de\u5fc6\u8d77": 1}, "newspaperman": {"\u62a5\u4e1a": 1, "\u4eba\u58eb": 1}, "heartless": {"\u65e0\u60c5": 1}, "House": {"\u901a\u904e": 1, "\u9662\u722d\u8b70": 1, "\u773e\u8b70": 1, "\u8a72": 1, "\u6cd5\u6848": 1}, "mailbox": {"\u4fe1\u7bb1": 2}, "situated": {"\u4f4d\u4e8e": 1, "\u610f\u5927\u5229": 1, "\u6cd5\u56fd": 1, "\u5965\u5730\u5229": 1, "\u5fb7\u56fd": 1, "\u4e4b\u95f4": 1}, "First": {"\u7279\u50f9": 1, "\u767e\u8ca8": 1, "\u9996\u5148": 1, "\u6d3b\u52d5": 1}, "influences": {"\u5f71\u54cd\u529b": 1}, "pointless": {"\u7231\u60c5": 1}, "comic": {"\u6f2b\u756b": 1, "\u501f\u4e86": 1, "\u59b9\u59b9": 1}, "nap": {"\u5c0f\u61a9": 1, "\u5348\u996d": 1}, "suffer": {"\u53d7\u82e6": 1}, "refrigerator": {"\u51b0\u7bb1": 4}, "examinations": {"\u4e24\u6b21": 1, "\u8003\u8bd5": 1, "\u5b66\u671f": 1}, "term": {"\u4e24\u6b21": 1, "\u8003\u8bd5": 1, "\u5b66\u671f": 1}, "tense": {"\u770b\u8d77\u6765": 1, "\u7d27\u5f20": 1}, "prejudice": {"\u5458\u5de5": 1, "\u504f\u89c1": 1, "\u5916\u7c4d": 1}, "Shakespeare": {"\u838e\u58eb\u6bd4\u4e9e": 3}, "quotes": {"\u7d93\u5e38": 1, "\u5f15\u7528": 1}, "fourth": {"\u516c\u5bd3": 1, "\u56db\u6a13": 1}, "fitting": {"\u8bd5\u8bd5": 1, "\u8bd5\u8863\u95f4": 1}, "universal": {"\u4e16\u754c\u5404\u5730": 1, "\u4e16\u754c\u6027": 1}, "Pardon": {"\u8b1b": 1, "\u4e0d\u8d77": 1}, "capitals": {"\u540d\u5b57": 2}, "deteriorating": {"\u6076\u5316": 1, "\u89c6\u529b": 1}, "rewrite": {"\u91cd\u5beb": 1, "\u53e5": 1}, "Continent": {"\u7a31\u70ba": 1, "\u5927\u9678": 1, "\u66fe\u7d93": 1, "\u9ed1\u6697": 1}, "Poor": {"\u72b6\u51b5\u4e0d\u4f73": 1, "\u65c5\u884c": 1, "\u6ca1\u53bb": 1}, "efficient": {"\u65e0\u53ef\u5426\u8ba4": 1}, "fiction": {"\u79d1\u5e7b": 1}, "insufferable": {"\u96be\u4ee5\u5fcd\u53d7": 1}, "independent": {"\u7368\u7acb": 1}, "grammatical": {"\u932f\u8aa4": 1, "\u72af": 1, "\u6587\u6cd5": 1}, "weatherman": {"\u6c14\u8c61\u5b66\u5bb6": 1, "\u6709\u66b4\u98ce\u96e8": 1}, "sorrow": {"\u8a9e\u80fd": 1, "\u60b2\u50b7": 1, "\u6df1\u6df1": 1}, "relieve": {"\u8a9e\u80fd": 1, "\u60b2\u50b7": 1, "\u6df1\u6df1": 1}, "circumstances": {"\u51fa\u56fd": 1}, "pet": {"\u990a\u4e00\u96bb\u9e1a\u9d61": 1, "\u5bf5": 1, "\u7269": 1}, "drama": {"\u6232\u5287": 2}, "loans": {"\u8f83\u9ad8": 1, "\u5ba2\u6237": 1, "\u5229\u606f": 1, "\u6536\u53d6": 1, "\u8d37\u6b3e": 1, "\u98ce\u9669": 1}, "absolute": {"\u7d55\u5c0d": 2}, "necessity": {"\u5fc5\u8981": 1, "\u6771\u897f": 1, "\u96fb\u8166": 1, "\u7d55\u5c0d": 1}, "crutches": {"\u62d0\u6756": 2}, "file": {"\u6587\u4ef6": 3}, "microwave": {"\u5fae\u6ce2\u7089": 1}, "ocean": {"\u6d77": 1}, "majored": {"\u4e3b\u4fee": 2, "\u5927\u5b78": 2}, "progressing": {"\u4e2d\u6587": 1, "\u8fdb\u6b65": 1}, "exercising": {"\u898f\u5f8b": 1, "\u904b\u52d5": 1}, "league": {"\u8054\u76df": 1}, "consists": {"\u7ec4\u6210": 2}, "architect": {"\u5efa\u7b51\u5e08": 2}, "disturb": {"\u6253\u6270": 3}, "role": {"\u65e0\u8bba": 1, "\u59cb\u7ec8": 1, "\u4f5c\u7528": 1}, "import": {"\u9032\u53e3": 1, "\u8336\u8449": 1}, "event": {"\u4e8b\u4ef6": 3}, "deadlock": {"\u8bbe\u6cd5": 1, "\u6253\u7834": 1, "\u50f5\u5c40": 1}, "rings": {"\u97ff\u8d77": 2}, "toothbrush": {"\u7259\u5237": 1}, "separately": {"\u5305\u88dd": 1, "\u5206\u958b": 1}, "Movie": {"\u88fd": 1, "\u5f71": 1, "\u96fb": 1}, "Champagne": {"\u9999\u69df": 1}, "cleaner": {"\u5875\u5668": 1, "\u514d\u8cbb": 1, "\u5438": 1}, "Louder": {"\u5927\u58f0": 1}, "socialize": {"\u6253\u4ea4\u9053": 1}, "conditioner": {"\u7a7a\u8c03": 1}, "mix": {"\u751f\u610f": 1, "\u6df7": 1, "\u5feb\u4e50": 1}, "Chaucer": {"\u55ac\u53df": 1, "\u7236": 1, "\u82f1": 1}, "poetry": {"\u55ac\u53df": 1, "\u7236": 1, "\u82f1": 1}, "referred": {"\u55ac\u53df": 1, "\u7236": 1, "\u82f1": 1}, "surgery": {"\u4fdd\u96aa": 1, "\u6574\u5bb9": 1, "\u5927\u90e8\u4efd": 1, "\u624b\u8853": 1, "\u5305\u542b": 1}, "Cosmetic": {"\u4fdd\u96aa": 1, "\u6574\u5bb9": 1, "\u5927\u90e8\u4efd": 1, "\u624b\u8853": 1, "\u5305\u542b": 1}, "depending": {"\u53d6\u6c7a": 1, "\u89d2\u5ea6": 1, "\u5bcc\u88d5": 1, "\u8ca7\u7aae": 1, "\u770b\u5f85": 1}, "amazingly": {"\u51fa\u4e4e\u610f\u6599": 1}, "gotten": {"\u751f\u610f": 2}, "amateur": {"\u90a3\u6642": 1, "\u5916\u884c": 1}, "gums": {"\u7259\u9f66": 1, "\u6d41\u8840": 1}, "skateboards": {"\u8f6e\u6ed1\u978b": 1, "\u6ed1\u677f": 1}, "rollerblades": {"\u8f6e\u6ed1\u978b": 1, "\u6ed1\u677f": 1}, "Zip": {"\u95ed\u4e0a": 1, "\u5634": 1}, "Haste": {"\u4e0d\u9054": 1, "\u5247": 1, "\u6b32\u901f": 1}, "assets": {"\u4e00\u767e\u4e07\u7f8e\u5143": 1, "\u8d44\u4ea7": 1}, "celebrate": {"\u8056\u8a95\u7bc0": 1, "\u6176\u795d": 1}, "possibly": {"\u63d0\u51fa": 1, "\u89e3\u51b3\u95ee\u9898": 1}, "National": {"\u56fd\u7acb\u5927\u5b66": 1}, "acquire": {"\u7fd2\u5f97": 1, "\u76ee\u6a19": 1, "\u8a8d\u8b58": 1, "\u7a0b\u5ea6": 1, "\u9054\u5230": 1, "\u6bcd": 1, "\u8a9e\u8005": 1, "\u76f8\u7576": 1, "\u6210\u4eba": 1, "\u8a72": 1}, "endure": {"\u5fcd\u53d7": 1, "\u65c5\u884c": 1, "\u9577\u9014": 1}, "coincidence": {"\u5de7\u5408": 2}, "counts": {"\u5206\u79d2\u5fc5\u4e89": 1}, "counted": {"\u4e0d\u7b97": 1}, "photographs": {"\u4e09\u5f20": 1, "\u62a4\u7167": 1}, "stylish": {"\u6d41\u884c": 1}, "icy": {"\u9053\u8def": 1, "\u7ed3\u51b0": 1}, "600": {"\u5916\u8a9e": 1, "\u800c\u8a00": 1, "\u516d\u5104": 1, "\u7b2c\u4e8c": 1}, "88": {"88": 2}, "symptoms": {"\u75c7\u72c0": 1}, "60": {"\u516d\u5341": 1, "\u6b72\u6642": 1}, "truthful": {"\u8bda\u5b9e": 1}, "voyage": {"\u73af\u6e38\u4e16\u754c": 1}, "bid": {"\u51fa\u4ef7": 1}, "explosion": {"\u7206\u70b8": 6}, "grandchild": {"\u767b\u9646": 1, "\u5b59\u5b50": 1, "\u7b2c\u4e00": 1}, "ranger": {"\u8b77\u6797": 1}, "admires": {"\u5716\u756b": 1, "\u6240\u756b": 1}, "thrown": {"\u8d95\u51fa": 1, "\u9019\u68df": 1}, "custody": {"\u62d8\u7559": 2}, "carpenter": {"\u6728\u5320": 2}, "meddling": {"\u63d2\u624b": 1}, "jealousy": {"\u5ac9\u5992\u5fc3": 1, "\u9776\u5b50": 1}, "feeding": {"\u6bcd\u4e73": 1, "\u9935": 1}, "breast": {"\u6bcd\u4e73": 1, "\u9935": 1}, "lens": {"\u96b1\u5f62": 1, "\u773c\u93e1": 1}, "democracy": {"\u6c11\u4e3b": 2}, "quantities": {"\u4e5d\u6298": 1, "\u7279\u60e0": 1}, "quoted": {"\u4e5d\u6298": 1, "\u7279\u60e0": 1}, "mislaid": {"\u4e22": 1}, "Sweden": {"\u745e\u5178": 1, "\u65af\u5fb7\u54e5\u723e\u6469": 1}, "Stockholm": {"\u745e\u5178": 1, "\u65af\u5fb7\u54e5\u723e\u6469": 1}, "However": {"\u9986\u5b50": 1, "\u7f8e\u4e2d\u4e0d\u8db3": 1, "\u4f4d\u7f6e": 1, "\u7cdf\u7cd5": 1, "\u7269\u7f8e\u4ef7\u5ec9": 1}, "rebuilding": {"\u91cd\u5efa": 1}, "qualms": {"\u4e0d\u5b89": 1}, "Cross": {"\u5212\u6389": 2, "\u5355\u8bcd": 2}, "incorrect": {"\u5212\u6389": 2, "\u5355\u8bcd": 2}, "Square": {"\u5e7f\u573a": 1, "\u7f57\u7d20": 1, "56": 1}, "Russell": {"\u5e7f\u573a": 1, "\u7f57\u7d20": 1, "56": 1}, "56": {"\u5e7f\u573a": 1, "\u7f57\u7d20": 1, "56": 2}, "Warsaw": {"\u83ef\u6c99": 1, "\u6ce2\u862d": 1}, "Poland": {"\u83ef\u6c99": 1, "\u6ce2\u862d": 1}, "waits": {"\u7b49": 1}, "1,000": {"1000": 2}, "timid": {"\u80c6\u5c0f": 1, "\u751f\u7269": 1}, "NTT": {"\u7e2e\u5beb": 1, "NTT": 2}, "initials": {"\u7e2e\u5beb": 1, "NTT": 1}, "damage": {"\u640d\u5bb3": 2}, "teas": {"\u8336": 1, "\u4e24\u676f": 1, "\u8bf7\u6765": 1, "\u4e00\u676f": 1}, "attractive": {"\u8ff7\u4eba": 1, "\u4e00\u53cc": 1}, "smoothies": {"\u652a\u62cc\u6a5f": 1, "\u51b0\u6c99": 1, "\u4e0d\u932f": 1}, "Blenders": {"\u652a\u62cc\u6a5f": 1, "\u51b0\u6c99": 1, "\u4e0d\u932f": 1}, "Pace": {"\u91cf\u529b\u800c\u884c": 1}, "drenched": {"\u9047\u4e0a": 1, "\u6fd5\u900f": 1, "\u6dcb\u5f97": 1, "\u5168\u8eab": 1, "\u9663\u96e8": 1}, "clarifying": {"\u5e2e\u52a9": 1, "\u6f84\u6e05": 1, "\u611f\u8c22": 1}, "Chicago": {"\u829d\u52a0\u54e5": 3}, "appropriate": {"\u9002\u5408": 1, "\u73af\u5883": 1, "\u6362\u8863\u670d": 1}, "issued": {"\u767c\u884c": 1, "\u90f5\u7968": 1}, "app": {"\u5220\u9664": 1, "\u5e94\u7528": 1}, "Takasu": {"\u8a3a\u6240": 1, "\u9ad8\u9808": 1}, "clinic": {"\u8a3a\u6240": 1, "\u9ad8\u9808": 1}, "beasts": {"\u9e70": 1, "\u738b": 1, "\u9e1f\u7c7b": 1, "\u517d\u7c7b": 1}, "eagle": {"\u9e70": 1, "\u738b": 1, "\u9e1f\u7c7b": 1, "\u517d\u7c7b": 1}, "pajamas": {"\u7761\u8863": 2}, "extends": {"\u5168\u570b": 1, "\u5f71\u97ff": 1, "\u904d\u53ca": 1}, "traditional": {"\u4f20\u7edf": 2}, "ninety": {"\u4e5d\u5341": 1, "\u7956\u7236": 1}, "Politicians": {"\u522b\u6709\u7528\u5fc3": 1, "\u4ece\u6765\u4e0d": 1}, "inner": {"\u522b\u6709\u7528\u5fc3": 1, "\u4ece\u6765\u4e0d": 1}, "remodeled": {"\u88dd\u6f62": 1}, "item": {"\u54ea\u7c7b": 1}, "atheist": {"\u65e0\u795e\u8bba\u8005": 1}, "remembering": {"\u8bb0\u4eba": 1, "\u5584\u4e8e": 1}, "sporting": {"\u4ea7\u54c1": 1, "\u4f53\u80b2": 1}, "unwise": {"\u8a08\u756b": 1, "\u8070\u660e": 1}, "horribly": {"\u96e2": 1, "\u8b5c": 1}, "lean": {"\u501a": 1, "\u5899": 1}, "cutest": {"\u5c0f\u72d7": 1, "\u53ef\u611b": 1}, "scandal": {"\u4e11\u95fb": 1, "\u58f0\u8a89": 1, "\u4ee3\u4ef7": 1, "\u4ed8\u51fa": 1}, "flunked": {"\u4e0d\u53ca\u683c": 1, "\u8003\u8a66": 1}, "sipped": {"\u71b1": 1, "\u555c\u98f2": 1, "\u6162\u6162": 1}, "rap": {"\u8bf4\u5531": 1}, "bulb": {"\u53d1\u5149": 1, "\u706f\u6ce1": 1}, "paces": {"\u5e7e\u6b65": 1, "\u524d\u9032": 1}, "barefooted": {"\u6f2b\u6b65": 3, "\u4e60\u60ef": 3}, "hats": {"\u6709\u5408": 1, "\u5e97": 1, "\u5c3a\u5bf8": 1}, "ambiguous": {"\u6b64\u53e5\u6709": 1, "\u6b67\u7fa9": 1}, "Towada": {"\u6e56": 1, "\u805e\u540d": 1, "\u548c\u7530": 1, "\u5341": 1}, "crops": {"\u4f5c\u7269": 1}, "superior": {"\u8d28\u91cf": 1, "\u597d\u5f97\u591a": 1, "\u4e0a\u6bd4": 1}, "sensible": {"\u5fe0\u544a": 2, "\u660e\u667a": 2}, "Grandpa": {"\u7237\u7237": 1}, "malnutrition": {"\u4e07": 1, "\u5c3c\u65e5\u5c14": 1, "50": 1, "\u8425\u517b\u4e0d\u826f": 1, "\u9762\u4e34": 1, "\u4ecd\u7136": 1}, "Niger": {"\u4e07": 1, "\u5c3c\u65e5\u5c14": 1, "50": 1, "\u8425\u517b\u4e0d\u826f": 1, "\u9762\u4e34": 1, "\u4ecd\u7136": 1}, "prosecutor": {"\u5f15\u5bfc\u6027": 1, "\u95ee": 1, "\u68c0\u5bdf\u5b98": 1}, "leading": {"\u5f15\u5bfc\u6027": 1, "\u95ee": 1, "\u68c0\u5bdf\u5b98": 1}, "lifetime": {"\u4e00\u8f88\u5b50": 1, "\u4e00\u6b21": 1, "\u673a\u4f1a": 1, "\u8fd9\u6837": 1}, "tattoo": {"\u6587\u8eab": 2}, "removed": {"\u53bb\u6389": 1}, "quarterback": {"\u9996\u53d1": 1, "\u56db\u5206": 1, "\u536b": 1}, "director": {"\u7ecf\u7406": 1}, "monk": {"(": 1, "\u50e7": 1, ")": 1, "\u51fa\u5bb6": 1}, "spell": {"\u62fc": 3}, "Columbus": {"\u54e5\u502b\u5e03": 2}, "1492": {"1492": 2}, "foreigners": {"\u5916\u56fd\u4eba": 3}, "brochure": {"\u5ba3\u50b3\u518a": 1}, "saddled": {"\u5f37\u8feb": 1}, "sweep": {"\u6253\u6383": 1}, "Algebra": {"\u79d1\u76ee": 1, "\u4ee3\u6578": 1}, "fists": {"\u62f3\u5934": 1, "\u63e1\u7d27": 1}, "perform": {"\u624b\u672f": 1, "\u7b2c\u4e8c\u6b21": 1}, "shipping": {"\u8239\u904b": 1}, "resent": {"\u6068": 1}, "Raspberries": {"\u8986\u76c6\u5b50": 1, "\u5f88\u8cb4": 1}, "bend": {"\u5f4e\u66f2": 1, "\u624b\u81c2": 1, "\u53f3": 1}, "mechanic": {"\u7d44\u88dd": 1, "\u6280\u5e2b": 1, "\u53f0": 1}, "engine": {"\u5f15\u64ce": 2}, "Beginners": {"\u61c9": 1, "\u521d\u5b78\u8005": 1, "\u5148\u5b78": 1, "\u7fd2\u53e3": 1}, "Bread": {"\u9762\u7c89": 2, "\u9762\u5305": 2}, "inspired": {"\u6fc0\u52f5": 1, "\u6f14\u8aaa": 1}, "driest": {"\u4e7e\u65f1": 1, "\u516d\u6708": 1, "\u4ee5\u4f86": 1}, "cancel": {"\u53d6\u6d88": 2}, "chit": {"\u9592": 1, "\u804a": 1}, "Cut": {"\u9592": 1, "\u804a": 1}, "reptiles": {"\u6d77\u9f9f": 1, "\u722c\u884c\u52a8\u7269": 1}, "Turtles": {"\u6d77\u9f9f": 1, "\u722c\u884c\u52a8\u7269": 1}, "arrange": {"\u6211\u4f1a": 1, "\u4f60\u5bb6": 1, "\u5b89\u6392": 1, "\u4e2a\u4eba": 1, "\u63a5": 1}, "collars": {"\u71a8\u70eb": 1, "\u5916\u9762": 1, "\u7136\u540e": 1, "\u9886\u5b50": 1, "\u5148": 1}, "knees": {"\u819d": 2}, "palms": {"\u624b\u638c": 1, "\u66f2": 1, "\u653e\u5230": 1}, "bending": {"\u624b\u638c": 1, "\u66f2": 1, "\u653e\u5230": 1}, "Above": {"\u5c24\u5176": 1}, "startling": {"\u4ee4\u4eba\u5403\u60ca": 1}, "genius": {"\u5929\u624d": 3}, "blog": {"\u535a\u5ba2": 2}, "autobiography": {"\u50b3": 1, "\u665a\u5e74": 1, "\u81f4\u529b": 1}, "buttons": {"\u812b\u843d": 1, "\u6309\u9215": 1}, "traditions": {"\u4f20\u7edf": 1, "\u4fdd\u6301": 1}, "loser": {"\u4e0d\u6210\u5668": 1}, "Summers": {"\u70ed": 1}, "sheets": {"\u5e8a\u4e0a": 1, "\u92ea": 1, "\u5e8a\u55ae": 1}, "Hello": {"\u4f60\u597d": 1}, "consent": {"\u6761\u4ef6": 1}, "condition": {"\u6761\u4ef6": 1}, "tossed": {"\u8bd5": 1, "\u5634": 1, "\u671d": 1, "\u5b83\u4eec": 1, "\u63a5\u4f4f": 1, "\u4e22": 1, "\u8461\u8404": 1}, "meter": {"\u77ed\u8dd1": 1, "\u767e\u7c73": 1, "\u5237\u65b0": 1, "\u7d00\u9304": 1}, "dash": {"\u77ed\u8dd1": 1, "\u767e\u7c73": 1, "\u5237\u65b0": 1, "\u7d00\u9304": 1}, "bulky": {"\u7b28\u91cd": 1, "\u651c\u5e36": 1, "\u7bb1\u5b50": 1}, "misjudged": {"\u4ea7\u751f\u8bef\u89e3": 1, "\u5b9e\u5728": 1}, "copies": {"\u590d\u5370": 1, "\u4e09\u4efd": 1, "\u4e00\u9875": 1}, "novelist": {"\u5c0f\u8bf4\u5bb6": 1}, "kissing": {"\u543b": 1}, "smarter": {"\u806a\u660e": 1}, "rat": {"\u7aae\u9f20": 1, "\u56d3\u72f8": 1}, "cornered": {"\u7aae\u9f20": 1, "\u56d3\u72f8": 1}, "selected": {"\u9078": 1, "\u8056\u8a95": 1, "\u4ef6": 1}, "midnight": {"\u5348\u591c": 2}, "captivate": {"\u807d\u773e": 1, "\u5438\u5f15": 1, "\u5982\u4f55": 1}, "Soccer": {"\u8db3\u7403": 2}, "household": {"\u5bb6\u52d9": 1}, "indicates": {"\u66b4\u96e8": 1, "\u6697\u793a": 1, "\u5f37": 1, "\u5373": 1}, "spilling": {"\u7ea2\u9152": 1, "\u6454": 1}, "sizes": {"\u6bd4\u8f03": 1, "\u5c3a\u5bf8": 1}, "spoon": {"\u52fa\u5b50": 3}, "liars": {"\u5f8b\u5e08": 2}, "Lawyers": {"\u5f8b\u5e08": 1}, "Crocodiles": {"\u9cc4\u9c7c": 1, "\u7259\u9f7f": 1, "\u5c16\u5229": 1}, "chairperson": {"\u4e3b\u5e2d": 2}, "chairs": {"\u6905\u5b50": 3}, "withered": {"\u67af\u840e": 1, "\u82b1\u6735": 1}, "steam": {"\u53d8\u4e3a": 1, "\u84b8\u6c7d": 1, "\u6cb8\u817e": 1}, "greenhouse": {"\u6eab\u5ba4": 2}, "Visitors": {"\u904a\u5ba2": 1, "\u5351\u65af\u5c71": 1, "\u963f\u723e": 1}, "Alps": {"\u904a\u5ba2": 1, "\u5351\u65af\u5c71": 1, "\u963f\u723e": 1}, "1941": {"\u7206\u53d1": 1, "\u6218\u4e89": 1, "1941": 2}, "Fur": {"\u76ae\u5927\u8863": 1, "\u6253\u6298": 1, "\u6bdb": 1}, "coats": {"\u76ae\u5927\u8863": 1, "\u6253\u6298": 1, "\u6bdb": 1}, "propose": {"\u6c42\u5a5a": 2}, "ongoing": {"\u9879\u76ee": 1, "\u8fdb\u884c": 1}, "partner": {"\u5925": 1, "\u4f34": 1}, "resigning": {"\u8fad\u8077": 2}, "tablecloth": {"\u6ae5\u6ac3": 1, "\u684c\u5e03": 1}, "cabinet": {"\u6ae5\u6ac3": 1, "\u684c\u5e03": 1}, "28th": {"28": 1, "1888": 1}, "1888": {"28": 1, "1888": 2}, "included": {"\u65e9\u996d": 1, "\u5305\u62ec": 1}, "council": {"\u7ade\u9009": 1}, "gazed": {"\u671b\u8457": 2}, "Egypt": {"\u57c3\u53ca": 2}, "lined": {"\u6392\u961f": 1, "\u8eab\u9ad8": 1}, "dignified": {"\u5a01\u56b4": 1, "\u8d77\u4f86": 1}, "equipment": {"\u8a2d\u5099": 1, "\u96fb\u5668": 1, "\u9060\u96e2": 1}, "polish": {"\u64e6\u4eae": 1, "\u76ae\u978b": 1}, "gravy": {"\u91ac\u6c41": 1}, "detailed": {"\u8a0a\u606f": 1, "\u66f4\u591a": 1, "\u8a73\u7d30": 1}, "consumes": {"\u519c\u4e1a": 1}, "Agriculture": {"\u519c\u4e1a": 1}, "endangered": {"\u7269\u79cd": 3}, "species": {"\u7269\u79cd": 3}, "Chopin": {"\u856d\u90a6": 1, "\u5f48": 1}, "princess": {"\u516c\u4e3b": 2}, "weep": {"\u54ed\u6ce3": 1, "\u9ed8\u9ed8\u5730": 1}, "Politics": {"\u8208\u8da3": 1}, "inseparable": {"\u5206\u4e0d\u958b": 1}, "overcoat": {"\u5927\u8863": 2}, "although": {"\u5374": 1, "\u5927\u8863": 1, "\u51b7": 1}, "Android": {"\u5b89\u5353": 1, "\u5f00\u53d1": 1, "\u5e94\u7528": 1}, "opposite": {"\u76f8\u53cd": 1, "\u65b9\u5411": 1, "\u5f80": 1}, "selfish": {"\u81ea\u79c1": 3}, "diplomat": {"\u5916\u4ea4\u5b98": 1}, "horizon": {"\u843d\u5230": 1, "\u5730\u5e73\u7dda": 1, "\u592a\u967d": 1}, "ruin": {"\u7834\u574f": 1, "\u8003\u8bd5": 1}, "Reporters": {"\u5e72\u6d89": 1, "\u72b9\u8c6b": 1, "\u79c1\u751f\u6d3b": 1, "\u8bb0\u8005": 1}, "tear": {"\u820a": 1, "\u5efa\u7bc9\u7269": 1, "\u62c6\u9664": 1, "\u5169\u5929": 1, "\u9019\u68df": 1}, "coach": {"\u6559\u7ec3": 2}, "Merry": {"\u5feb\u6a02": 1, "\u8056\u8a95": 1}, "pickpockets": {"\u6252\u624b": 2, "\u5c0f\u5fc3": 2}, "indeed": {"\u60a3\u96e3": 1, "\u771f\u60c5": 1}, "Greene": {"\u683c\u96f7\u5384\u59c6": 2}, "Graham": {"\u683c\u96f7\u5384\u59c6": 2}, "monkeys": {"\u7334\u5b50": 2}, "anonymous": {"\u4fdd\u6301": 1, "\u8eab\u4efd": 1, "\u533f\u540d": 1}, "Wires": {"\u96fb\u7dda": 1, "\u904b\u9001": 1, "\u7528\u4f86": 1, "\u96fb\u529b": 1}, "convey": {"\u96fb\u7dda": 1, "\u904b\u9001": 1, "\u7528\u4f86": 1, "\u96fb\u529b": 1}, "prove": {"\u8bc1\u660e": 3}, "DJ": {"DJ": 4}, "astronaut": {"\u5973\u6027": 1, "\u592a\u7a7a": 1, "\u7b2c\u4e00": 1}, "telephones": {"\u4e0d\u901a": 1}, "Approximately": {"\u4e09\u5341\u4e2a": 1, "\u5e74\u8f7b\u4eba": 1, "\u7ea6": 1}, "aged": {"\u80d6\u5973\u4eba": 1, "\u4e2d\u5e74": 1}, "toolkit": {"\u9489\u5b50": 1, "\u6994\u5934": 1, "\u6765\u8bf4": 1, "\u5de5\u5177\u7bb1": 1}, "Dinner": {"\u665a\u9910": 1, "\u534a\u524d": 1, "\u958b\u98ef": 1, "\u516d\u9ede": 1}, "unsure": {"\u4ee5\u53ca": 1, "\u786e\u5b9a": 1}, "Otaru": {"\u6a3d": 1}, "tripod": {"\u4e09\u8173": 2, "\u67b6": 2}, "shelters": {"\u5efa\u7acb": 1, "\u907f\u96be\u6240": 1}, "campus": {"\u5728\u6821": 2}, "ASAP": {"\u5c3d\u5feb": 1}, "dozens": {"\u5341\u672c": 2, "\u5e7e": 2}, "slowing": {"\u6162\u4e0b": 1}, "pheasant": {"\u96de": 1, "\u91ce": 1}, "raincoat": {"\u96e8\u8863": 2}, "Millions": {"\u53d7": 1, "\u5f71\u97ff": 1, "\u6578\u767e\u842c": 1}, "modern": {"\u73b0\u4ee3": 1, "\u521b\u5efa": 1, "\u623f\u5c4b": 1}, "builds": {"\u73b0\u4ee3": 1, "\u521b\u5efa": 1, "\u623f\u5c4b": 1}, "armchair": {"\u8212\u9069": 1, "\u5f35": 1, "\u6276\u624b\u6905": 1}, "attempts": {"\u5c1d\u8bd5": 1}, "lawyers": {"\u5f8b\u5e08": 1}, "letting": {"\u53d8\u5c0f": 1}, "experiences": {"\u7ecf\u5386": 1}, "suspects": {"\u8b0a": 1, "\u61f7\u7591": 1}, "Examine": {"\u8c03\u67e5": 1}, "piloted": {"\u6e2f\u53e3": 1, "\u9886\u5165": 1}, "guide": {"\u5c0e": 1, "\u64d4": 1, "\u56ae": 1, "\u4efb\u6211\u7684": 1}, "cargo": {"\u8d27\u8239": 1, "\u56db": 1, "\u65e9": 1}, "foolproof": {"\u9632\u50bb": 1, "\u7cfb\u7d71": 1}, "severely": {"\u56b4\u53b2": 1, "\u90a3\u4f4d": 1, "\u65a5\u8cac": 1}, "lacks": {"\u7f3a\u4e4f\u7ecf\u9a8c": 1, "[": 1, "]": 1}, "18": {"18": 3}, "widely": {"\u5728\u4e16\u754c\u4e0a": 1, "\u5ee3\u6cdb": 1, "\u76ee\u524d": 1}, "lunatic": {"\u8868\u73b0": 1, "\u75af\u5b50": 1}, "reconsider": {"\u8003\u616e": 1, "\u91cd\u65b0": 1, "\u6b64\u4e8b": 1}, "aisle": {"\u4f4d\u5b50": 1, "\u8d70\u9053": 1, "\u9760": 1}, "envelope": {"\u4fe1\u5c01": 5}, "housework": {"\u5bb6\u52d9": 1}, "copy": {"\u62f7\u8c9d": 3}, "twin": {"\u80de\u80ce": 3, "\u96d9": 3}, "fastest": {"\u6700\u5feb": 3}, "inevitable": {"\u76f8\u9047": 1, "\u5fc5\u7136": 1}, "kilograms": {"\u80d6": 1, "\u4e24": 1}, "romantic": {"\u6d6a\u6f2b": 1}, "machinery": {"\u6709\u4ec0\u9ebc": 1, "\u6a5f\u5668": 1, "\u52c1": 1}, "PKO": {"PKO": 2}, "eggplant": {"\u8304\u5b50": 1}, "Lonely": {"\u5b64\u7368": 1, "\u4eba\u6703": 1, "\u754f\u61fc": 1, "\u4ed6\u4eba": 1}, "ensures": {"\u5b64\u7368": 1, "\u4eba\u6703": 1, "\u754f\u61fc": 1, "\u4ed6\u4eba": 1}, "owned": {"\u64c1\u6709": 1}, "Imagination": {"\u5f71\u54cd": 1, "\u5404\u4e2a\u65b9\u9762": 1, "\u60f3\u50cf\u529b": 1}, "affects": {"\u5f71\u54cd": 1, "\u5404\u4e2a\u65b9\u9762": 1, "\u60f3\u50cf\u529b": 1}, "criticizing": {"\u6279\u8bc4": 1}, "West": {"\u897f\u6d77\u5cb8": 1, "\u5927\u90e8\u5206": 1}, "Coast": {"\u897f\u6d77\u5cb8": 1, "\u5927\u90e8\u5206": 1}, "bizarre": {"\u6545\u4e8b": 1, "\u8352\u5510": 1, "\u591a\u4e48": 1}, "perhaps": {"\u6216\u8a31": 1, "\u8a18\u5f97": 1, "\u8b80": 1}, "thorn": {"\u4e00\u6839": 1, "\u523a": 1}, "homeless": {"\u7761\u89c9": 1, "\u5f20": 1, "\u957f\u6905": 1, "\u5e38": 1, "\u65e0\u5bb6\u53ef\u5f52": 1}, "Grammar": {"\u590d\u6742": 1, "\u8bed\u6cd5": 1}, "pets": {"\u5ba0\u7269": 1, "\u517b": 1}, "fallen": {"\u4e0b\u8dcc": 1, "\u7c73\u4ef7": 1}, "Carelessness": {"\u7c97\u5fc3\u5927\u610f": 1, "\u5c0e\u81f4": 1, "\u56b4\u91cd": 1}, "Hemingway": {"\u7375": 1, "\u5927\u72e9": 1, "\u6d77\u660e\u5a01": 1}, "Foreigners": {"\u5916\u56fd\u4eba": 1}, "shaving": {"\u5b50": 2, "\u522e": 2, "\u9b0d": 2}, "darkness": {"\u9002\u5e94": 1, "\u9ed1\u6697": 1}, "effects": {"\u526f\u4f5c\u7528": 1, "\u836f": 1}, "Itch": {"\u7a31": 1, "Itch": 2, "\u66b1": 1, "\"": 1}, "monthly": {"\u8cbb": 1, "\u74e6\u65af": 1}, "folders": {"\u4e22": 1, "\u6587\u4ef6\u5939": 1}, "organ": {"\u6f14\u594f": 1, "\u7ba1\u98ce\u7434": 1}, "cholesterol": {"\u80c6\u56fa\u9187": 1}, "pessimists": {"\u707d\u798d": 1, "\u89c0\u8005": 1, "\u60b2\u89c0": 1}, "Optimists": {"\u707d\u798d": 1, "\u89c0\u8005": 1, "\u60b2\u89c0": 1}, "delivered": {"\u9001\u5230": 1, "\u5b83\u4eec": 1}, "revolution": {"\u9769\u547d": 2}, "republic": {"\u5171\u548c": 1, "\u6cd5\u570b": 1}, "powder": {"\u5e03\u6ee1": 1, "\u684c\u4e0a": 1, "\u7c89\u672b": 1}, "murdered": {"\u8b00\u6bba": 1}, "minister": {"\u8a2d\u6cd5": 1, "\u7576\u4e0a": 1, "\u90e8\u9577": 1}, "warnings": {"\u88ab\u5ffd\u89c6": 1}, "definition": {"\u62cd": 1, "\u5f55\u50cf\u673a": 1, "\u9ad8\u6e05": 1, "\u89c6\u9891": 1}, "rapid": {"\u60ca\u5446": 1, "\u5feb\u901f": 1, "\u8fdb\u6b65": 1}, "pox": {"\u6c34\u75d8": 1, "\u75c7\u72b6": 1}, "showing": {"\u603b": 1, "\u4e0d\u5230": 1, "\u8fdf\u5230": 1}, "uncomfortable": {"\u8212\u670d": 2}, "strengthens": {"\u817f\u90e8": 1, "\u5f3a\u5065": 1}, "clubs": {"\u4ff1\u4e50\u90e8": 2}, "tails": {"\u8033\u6735": 1, "\u77ed\u77ed\u7684": 1, "\u957f\u957f\u7684": 1}, "Rabbits": {"\u8033\u6735": 1, "\u77ed\u77ed\u7684": 1, "\u957f\u957f\u7684": 1}, "tent": {"\u7bf7": 1, "\u534a": 1, "\u5e33": 1, "\u642d": 1}, "trunk": {"\u6811\u5e72": 1}, "South": {"\u6fb3\u6d32": 1, "\u5357\u7f8e\u6d32": 1}, "answering": {"\u63a5": 1}, "rolls": {"\u6625\u5377": 1}, "breathed": {"\u54bd\u4e0b": 1, "\u4e00\u53e3\u6c14": 1, "\u8001\u4eba": 1}, "Sendai": {"\u4ed9\u53f0": 2}, "independence": {"1947": 1, "\u812b\u96e2": 1, "\u7368\u7acb": 1}, "1947": {"1947": 2, "\u812b\u96e2": 1, "\u7368\u7acb": 1}, "farms": {"\u957f\u5927": 1, "\u519c\u573a": 1}, "gritted": {"\u54ac\u7d27\u7259\u5173": 1}, "rainfall": {"\u96e8\u52e2": 1, "\u6628\u665a": 1}, "victim": {"\u91ab\u9662": 1, "\u53d7\u5bb3\u8005": 1, "\u6b7b\u53bb": 1}, "closets": {"\u8863\u6ae5": 1}, "compact": {"\u5149\u789f": 1}, "disc": {"\u5149\u789f": 1}, "relies": {"\u592a\u592a": 1, "\u4f9d\u9760": 1}, "financially": {"\u592a\u592a": 1, "\u4f9d\u9760": 1}, "cooperation": {"\u5408\u4f5c": 3}, "discrimination": {"\u79cd\u65cf\u6b67\u89c6": 1}, "racial": {"\u79cd\u65cf\u6b67\u89c6": 1}, "Shortly": {"\u4e0d\u4e45": 1}, "Real": {"\u53cb\u8c0a": 1}, "weapon": {"\u6b66\u5668": 2}, "1930": {"\u80a1\u5e02": 1, "\u5d29\u76d8": 1, "\u5bcc\u4eba": 1, "\u5341\u4e5d\u4e16\u7eaa": 1, "\u8427\u6761": 1}, "Depression": {"\u80a1\u5e02": 1, "\u5d29\u76d8": 1, "\u5bcc\u4eba": 1, "\u5341\u4e5d\u4e16\u7eaa": 1, "\u8427\u6761": 1}, "torn": {"\u62c6\u9664": 2}, "plastered": {"\u9189": 1}, "tents": {"\u5e10\u7bf7": 1}, "Cuff": {"\u94d0": 1}, "vowed": {"\u767c\u8a93": 1, "\u8aaa\u8a71": 1, "\u518d\u4e5f": 1}, "snowed": {"\u96ea": 2}, "insect": {"\u6606\u866b": 1}, "1650": {"1650": 2, "\u5efa\u4e8e": 1}, "established": {"1650": 1, "\u5efa\u4e8e": 1}, "closes": {"\u5173\u95e8": 1}, "pendant": {"\u589c\u98fe": 1}, "sock": {"\u889c\u5b50": 3}, "serving": {"\u670d": 1, "\u65e0\u671f\u5f92\u5211": 1}, "handkerchief": {"\u624b\u5e15": 1}, "falls": {"\u661f\u671f\u65e5": 1}, "sounded": {"\u8b66\u62a5": 1, "\u706b\u8b66": 1, "\u54cd": 1}, "necessarily": {"\u8fd9\u9879": 1, "\u672a\u5fc5": 1}, "smoothly": {"\u934a": 1, "\u5361\u5361": 1}, "zip": {"\u934a": 1, "\u5361\u5361": 1}, "zipper": {"\u934a": 1, "\u5361\u5361": 1}, "Tsunamis": {"\u6d77\u562f\u5e2d": 1, "\u6372": 1, "\u7a3b\u7530": 1, "\u57ce\u93ae": 1, "\u6df9\u6c92": 1}, "lad": {"\u597d\u4eba": 1}, "Chapter": {"\u7b2c\u4e09\u7ae0": 1, "\u8ba8\u8bba": 1}, "Louvre": {"\u540c": 1, "\u57c3\u83f2\u5c14\u94c1\u5854": 1, "\u5362\u6d6e\u5bab": 1}, "Museum": {"\u540c": 1, "\u57c3\u83f2\u5c14\u94c1\u5854": 1, "\u5362\u6d6e\u5bab": 1}, "surrounding": {"\u5b89\u975c": 1, "\u5468\u570d": 1}, "resourceful": {"\u9b3c\u70b9\u5b50": 1, "\u771f\u591a": 1}, "Flowers": {"\u9bae\u82b1\u76db": 1}, "blowing": {"\u5317\u8fb9": 2}, "match": {"\u6bd4\u8cfd": 2}, "policemen": {"\u8cca": 1, "\u4e86\u7aca": 1, "\u902e\u6355": 1}, "pin": {"\u91dd": 1, "\u9023": 1, "\u5b89\u975c": 1, "\u6389": 1, "\u807d": 1}, "consequences": {"\u627f\u62c5": 1, "\u540e\u679c": 1}, "Eastwood": {"\u514b\u6797\u4f0a": 1, "\u5361\u6885\u723e\u5e02": 1, "\u65af\u5a01\u7279": 1, "\u5e02\u9577": 1}, "Clint": {"\u514b\u6797\u4f0a": 1, "\u5361\u6885\u723e\u5e02": 1, "\u65af\u5a01\u7279": 1, "\u5e02\u9577": 1}, "Carmel": {"\u514b\u6797\u4f0a": 1, "\u5361\u6885\u723e\u5e02": 1, "\u65af\u5a01\u7279": 1, "\u5e02\u9577": 1}, "Colorado": {"\u79d1\u7f85\u62c9\u591a\u5dde": 1, "\u8fb2\u5834": 1}, "tape": {"\u78c1\u5e26": 2}, "recorder": {"\u5f55\u97f3\u673a": 1}, "Stick": {"\u8cbc": 2, "\u90f5\u7968": 2}, "Fortune": {"\u9732\u51fa": 1, "\u597d\u8fd0": 1, "\u7b11\u5bb9": 1}, "staff": {"\u9500\u552e": 1, "\u4e00\u5468": 1, "\u5168\u4f53": 1, "\u901a\u5bb5\u8fbe\u65e6": 1, "\u4eba\u5458": 1}, "Cancer": {"\u6cbb\u6108": 1, "\u7b2c\u4e00\u9636\u6bb5": 1}, "phase": {"\u6cbb\u6108": 1, "\u7b2c\u4e00\u9636\u6bb5": 1}, "timing": {"\u597d\u65f6\u673a": 1}, "thirds": {"\u4e8c\u5206": 1, "\u96c7\u5458": 1, "\u4e4b\u4e09": 1}, "pharmacy": {"\u85e5\u623f": 1}, "Seine": {"\u585e\u7eb3\u6cb3": 1, "\u7a7f\u8d8a": 1}, "mammal": {"\u54fa\u4e73": 2, "\u52d5\u7269": 2}, "Thai": {"\u600e\u4e48\u6837": 1, "\u6cf0\u56fd\u83dc": 1}, "bathtub": {"\u6d74\u7f38": 3}, "400": {"400": 2, "\u63a5\u5f85": 1, "\u6c7d\u8f66\u65c5\u9986": 1, "\u591a\u8fbe": 1}, "motel": {"400": 1, "\u63a5\u5f85": 1, "\u6c7d\u8f66\u65c5\u9986": 1, "\u591a\u8fbe": 1}, "accommodate": {"400": 1, "\u63a5\u5f85": 1, "\u6c7d\u8f66\u65c5\u9986": 1, "\u591a\u8fbe": 1}, "photogenic": {"\u955c": 2}, "swallowed": {"\u524d\u8981": 1, "\u7ecf\u8fc7": 1, "\u5480\u56bc": 1, "\u541e\u54bd": 1}, "chewed": {"\u524d\u8981": 1, "\u7ecf\u8fc7": 1, "\u5480\u56bc": 1, "\u541e\u54bd": 1}, "Food": {"\u524d\u8981": 1, "\u7ecf\u8fc7": 1, "\u5480\u56bc": 1, "\u541e\u54bd": 1}, "employee": {"\u8077\u54e1": 2, "\u6b63\u5f0f": 2, "\u9019\u9593": 2}, "rushed": {"\u597d\u6d88\u606f": 1, "\u8dd1": 1, "\u6025\u5fd9": 1, "\u5e36\u8457": 1}, "pocket": {"\u53e3\u888b": 3}, "hiccups": {"\u6253\u55dd": 1}, "Lansing": {"\u9996\u5e9c": 1, "\u862d\u8f9b": 1, "\u5bc6\u897f\u6839\u5dde": 1}, "Michigan": {"\u9996\u5e9c": 1, "\u862d\u8f9b": 1, "\u5bc6\u897f\u6839\u5dde": 1}, "updates": {"\u6d88\u606f": 1}, "zigzagged": {"\u5c0f\u8def": 1, "\u9661\u5761": 1, "\u722c\u4e0a": 1, "\u873f\u8712": 1}, "slope": {"\u5c0f\u8def": 1, "\u9661\u5761": 1, "\u722c\u4e0a": 1, "\u873f\u8712": 1}, "steep": {"\u5c0f\u8def": 1, "\u9661\u5761": 1, "\u722c\u4e0a": 1, "\u873f\u8712": 1}, "heartedly": {"\u5168\u5fc3\u5168\u610f": 1}, "pork": {"\u4e0d\u5403": 1, "\u732a\u8089": 1}, "families": {"\u5927\u5bcc\u7fc1": 1, "\u71b1\u9580": 1, "\u904a\u6232": 1}, "Monopoly": {"\u5927\u5bcc\u7fc1": 1, "\u71b1\u9580": 1, "\u904a\u6232": 1}, "wide": {"\u5f35\u958b\u773c": 1, "\u5a5a": 1, "\u534a\u9589\u773c": 1, "\u5a5a\u524d": 1}, "clocks": {"\u65f6\u949f": 1}, "Deal": {"\u767c\u724c": 1}, "doubling": {"\u4e00\u500d": 1, "\u6da8": 1, "\u4ef7\u683c": 1}, "Sentences": {"\u5b57\u6bcd": 1, "\u958b\u982d": 1}, "skis": {"\u51ac\u5929": 1}, "translated": {"\u8bd1\u6210": 2}, "uniforms": {"\u5168\u90e8": 1, "\u5236\u670d": 1}, "Suppose": {"\u5047\u5982": 1, "1000": 1, "\u7f8e\u5143": 1}, "typical": {"\u5178\u578b": 2}, "exists": {"\u5b58\u5728": 3}, "Asian": {"\u5f88\u611f\u5174\u8da3": 1, "\u4e9a\u6d32": 1}, "mailman": {"\u90f5\u5dee": 2}, "nights": {"\u591c\u665a": 1, "\u5ea6\u8fc7": 1}, "promising": {"\u524d\u9014": 1}, "hairdressers": {"\u540c\u6027\u604b": 1, "\u7406\u53d1\u5e08": 1}, "classmate": {"\u540c\u5b78": 3}, "warden": {"\u76e3\u7344": 1, "\u66b4\u52d5": 1, "\u503c\u73ed": 1}, "riot": {"\u76e3\u7344": 1, "\u66b4\u52d5": 1, "\u503c\u73ed": 1}, "forgiven": {"\u539f\u8c05": 1}, "hawk": {"\u6293": 1, "\u9df9": 1}, "whistled": {"\u908a": 1, "\u5439\u53e3\u54e8": 1}, "overestimate": {"\u9ad8\u4f30": 1}, "apparently": {"\u660e\u986f": 1, "\u5b8c": 1}, "Volleyball": {"\u6392\u7403": 1}, "hi": {"\u6253\u4e86\u4e2a": 1, "\u62db\u547c": 1}, "cakes": {"\u86cb\u7cd5": 2}, "emotions": {"\u63a7\u5236": 1, "\u60c5\u7dd2": 1, "\u5b78\u6703": 1}, "conservative": {"\u8fc7\u53bb": 1, "\u4fdd\u5b88": 1}, "mustache": {"\u80e1\u5b50": 1, "\u522e": 1}, "partial": {"\u90e8\u5206": 1}, "masters": {"\u4e8c": 1, "\u5171\u4f8d": 1, "\u4e3b": 1}, "gains": {"\u4e94\u5206\u949f": 2, "\u5feb": 2}, "liable": {"\u8fd8\u503a": 1, "\u4e49\u52a1": 1}, "unaware": {"\u7c97\u5fc3\u5927\u610f": 1, "\u610f\u8bc6": 1}, "carelessly": {"\u7c97\u5fc3\u5927\u610f": 1, "\u610f\u8bc6": 1}, "injuries": {"\u4e0d\u80fd\u4e0d": 1, "\u4f24\u52bf": 1}, "swearing": {"\u53d1\u8a93": 1}, "offensive": {"\u653b\u51fb\u6027": 1, "\u8bc4\u8bba": 1, "\u6781": 1, "\u53d1\u8a00\u4eba": 1}, "blackboard": {"\u9ed1\u677f": 2}, "complaint": {"\u7406\u7531": 1}, "admonished": {"\u544a\u8aa1": 1, "\u5435\u9b27": 1}, "apron": {"\u56f4\u88d9": 2, "\u8170": 2, "\u7136\u540e": 2}, "welfare": {"\u798f\u5229": 2}, "madman": {"\u8868\u73b0": 2, "\u75af\u5b50": 2}, "scored": {"\u7403": 1, "\u7b2c\u4e00\u4e2a": 1, "\u961f": 1}, "witch": {"\u5deb\u5a46": 1}, "unlike": {"\u5922": 1, "\u7fd4": 1}, "crane": {"\u5922": 1, "\u7fd4": 1}, "Radio": {"\u4ee3\u66ff": 1, "\u6536\u97f3\u673a": 1, "\u7535\u89c6": 1}, "bowling": {"\u4eab\u53d7": 2, "\u867d\u7136": 2, "\u4fdd\u9f84\u7403": 2}, "shortage": {"\u77ed\u7f3a": 1, "\u71c3\u6599": 1}, "fuel": {"\u77ed\u7f3a": 1, "\u71c3\u6599": 1}, "checkout": {"\u6ac3\u53f0": 1, "\u7d50\u5e33": 1}, "announced": {"\u5ba3\u5e03": 2}, "engagement": {"\u8a02\u5a5a": 1}, "neutral": {"\u4e2d\u7acb": 1}, "crossing": {"\u9a6c\u8def": 3}, "pizzas": {"\u83dc\u55ae": 1, "\u7a2e\u6bd4\u85a9": 1}, "bulbs": {"\u70e7\u574f": 1, "\u706f\u6ce1": 1, "\u4e09\u4e2a": 1}, "Sasayama": {"\u5c71": 1, "\u660e\u5e74": 1, "\u7b71": 1}, "58": {"\u865f": 1, "\u9ad8\u901f\u516c\u8def": 1, "58": 2}, "Highway": {"\u865f": 1, "\u9ad8\u901f\u516c\u8def": 1, "58": 1}, "leather": {"\u9ed1\u8272": 1, "\u76ae\u978b": 1, "\u4e00\u53cc": 1}, "banana": {"\u9999\u8549": 1, "\u6d3e": 1}, "Disney": {"\u8fea\u58eb\u5c3c": 1}, "delete": {"\u5220\u9664": 1}, "requirements": {"\u6eff\u8db3": 1, "\u80fd\u5920": 1, "\u78ba\u5b9a": 1}, "fluency": {"\u5403\u60ca": 1, "\u6d41\u5229": 1}, "Nagoya": {"\u540d\u53e4\u5c4b": 6}, "pineapples": {"\u83e0\u863f": 1}, "kilogram": {"\u83e0\u863f": 1}, "Ignorance": {"\u7121\u77e5": 1}, "bliss": {"\u7121\u77e5": 1}, "agreement": {"\u534f\u5b9a": 1, "\u8fbe\u6210": 1}, "sic": {"\u653e\u72d7": 1, "\u79bb\u5f00": 1, "\u54ac": 1}, "hail": {"\u5fc5\u8981": 1, "\u51fa\u79df\u8f66": 1}, "consume": {"\u4e0d\u5c11": 1, "\u745e\u58eb\u4eba": 1}, "Swiss": {"\u4e0d\u5c11": 1, "\u745e\u58eb\u4eba": 1}, "stormy": {"\u767b\u5c71": 1, "\u98a8\u66b4": 1}, "cynical": {"\u5e74\u9f61": 1, "\u96a8\u8457": 1, "\u4eba\u6703": 1, "\u73a9\u4e16\u4e0d\u606d": 1, "\u589e\u9577": 1, "\u66f4\u52a0": 1}, "amazes": {"\u8bb0\u5fc6\u529b": 1}, "lacking": {"\u7f3a\u4e4f": 2}, "reluctantly": {"\u60c5\u613f": 1, "\u63d0\u6848": 1}, "cockroaches": {"\u87d1\u8782": 1}, "Winners": {"\u85e5\u7269": 1, "\u512a\u52dd\u8005": 1}, "glanced": {"\u4e00\u773c": 4}, "landslide": {"\u4ea4\u901a": 1, "\u963b\u65b7": 1, "\u5c71\u5d29": 1}, "stores": {"\u5340\u57df": 1}, "extinguisher": {"\u706b\u5668": 1, "\u8a66\u8457": 1, "\u7528\u6ec5": 1, "\u64b2": 1}, "Best": {"\u795d\u798f": 1, "\u6240\u6709\u4eba": 1}, "compartment": {"\u5076\u7136": 1, "\u5bc6\u5ba4": 1}, "Thou": {"\u4e0d\u53ef": 1}, "shalt": {"\u4e0d\u53ef": 1}, "plus": {"\u7b49\u4e8e": 1, "\u4e00\u52a0\u4e8c": 1}, "Trouble": {"\u9ebb\u70e6": 1, "\u8bf4\u6765": 1}, "snored": {"\u6253\u547c\u58f0": 1, "\u7761\u7740": 1, "\u54cd": 1}, "Lips": {"\u5c31\u5225": 1, "\u5507": 1, "\u5634\u5507": 1}, "liquor": {"\u5c31\u5225": 1, "\u5507": 1, "\u5634\u5507": 1}, "east": {"\u6771\u65b9": 2}, "personally": {"\u89aa\u81ea": 1, "\u62dc\u8a2a": 1}, "saluted": {"\u5973\u58eb": 1, "\u90a3\u4f4d": 1, "\u95ee\u597d": 1}, "beard": {"\u957f\u80e1\u5b50": 1}, "bookcase": {"\u4e66\u67b6": 1, "\u9f50\u5e73": 1}, "mistyped": {"\u932f\u865f": 1, "\u78bc": 1}, "eclipse": {"\u8755": 2}, "warning": {"\u4e0d\u7406": 1}, "Salmon": {"\u4e09\u6587": 1, "\u4e2d\u7522": 1, "\u5375": 1, "\u9b5a": 1, "\u6de1\u6c34": 1}, "Great": {"\u5de8\u5927": 1, "\u53d6\u5f97": 1, "\u8fdb\u5c55": 1}, "triple": {"\u64ca\u51fa": 1, "\u4e09\u58d8": 1, "\u5b89\u6253": 1}, "barks": {"\u5c0d\u8457": 1, "\u568e\u53eb": 1}, "sloshed": {"\u9189": 1}, "seats": {"\u5ea7\u4f4d": 4}, "racist": {"\u79cd\u65cf\u4e3b\u4e49\u8005": 1}, "Pale": {"\u9152\u7cbe": 1, "\u6de1": 1, "\u4f4e": 1}, "ale": {"\u9152\u7cbe": 1, "\u6de1": 1, "\u4f4e": 1}, "celebrity": {"\u540d\u4eba": 1}, "handyman": {"\u56f0\u4f4f": 1, "\u672c\u4f86": 1, "\u5e7e\u500b": 1, "\u5de5\u4eba": 1, "\u9054": 1, "\u4e2d\u5348": 1, "\u4ea4\u901a\u5835\u585e": 1, "\u5341\u4e8c": 1}, "closely": {"\u8377\u862d\u8a9e": 1, "\u4fc2": 1, "\u5bc6\u5207": 1, "\u5fb7\u8a9e": 1}, "Dutch": {"\u8377\u862d\u8a9e": 1, "\u4fc2": 1, "\u5bc6\u5207": 1, "\u5fb7\u8a9e": 1}, "t": {"\u8bb0\u5f97": 1, "\u4e0a\u753b": 1, "\u5b57\u6bcd": 1, "\u6a2a": 1, "t": 2}, "affectionate": {"\u7167\u987e": 1, "\u7231\u548c": 1}, "uncooperative": {"\u5408\u4f5c": 1}, "Bright": {"\u7e3d": 1, "\u60f3\u4e0d\u51fa": 1, "\u9ede\u5b50": 1}, "extension": {"\u7dda": 1, "\u592a\u77ed": 1, "\u5ef6\u9577": 1, "\u9019\u689d": 1}, "cord": {"\u7dda": 1, "\u592a\u77ed": 1, "\u5ef6\u9577": 1, "\u9019\u689d": 1}, "swimmers": {"\u9078\u624b": 1, "\u51cd\u50f5": 1}, "chapped": {"\u5634": 1, "\u88c2\u5f00": 1}, "classless": {"\u81ea\u79f0": 1, "\u793e\u4f1a\u9636\u5c42": 1}, "gentleman": {"\u7ec5\u58eb": 2}, "contribute": {"\u4f5c\u8d21\u732e": 1}, "And": {"\u4f5c\u8d21\u732e": 1}, "insecure": {"\u5b89\u5168\u611f": 1, "\u672a\u4f86": 1}, "Think": {"\u601d\u8003": 1}, "tendency": {"\u50be\u5411": 1, "\u8a87\u5f35": 1}, "exaggerate": {"\u50be\u5411": 1, "\u8a87\u5f35": 1}, "ambitions": {"\u91ce\u5fc3": 1}, "product": {"\u4e0a\u4e2a\u6708": 1, "\u4ea7\u54c1": 1, "\u4e00\u9879": 1, "\u63a8\u51fa": 1, "\u8205\u8205": 1}, "unfair": {"\u516c\u5e73": 1, "\u771f\u4e0d": 1}, "authorized": {"\u65e0\u6743": 1}, "scarf": {"\u56f4\u5dfe": 1, "\u90a3\u6761": 1}, "smoked": {"\u5f88\u4e45\u6ca1": 1}, "Ebay": {"eBay": 1, "\u8d2d\u7269": 1}, "blacks": {"\u767d\u4eba": 1, "\u4e89\u7aef": 1, "\u6108\u6f14\u6108\u70c8": 1, "\u9ed1\u4eba": 1}, "whites": {"\u767d\u4eba": 1, "\u4e89\u7aef": 1, "\u6108\u6f14\u6108\u70c8": 1, "\u9ed1\u4eba": 1}, "judgment": {"\u5224\u65ad": 1}, "talents": {"\u5584\u7528": 1, "\u5929\u8d4b": 1}, "Mount": {"\u7acb\u5c71": 1}, "Tate": {"\u7acb\u5c71": 1}, "cow": {"\u725b\u5976": 1, "\u6324": 1}, "advocate": {"\u8fa9\u62a4\u58eb": 1}, "hens": {"\u6bcd\u9e21": 1}, "satisfactory": {"\u6eff\u610f": 1, "\u89e3\u91cb": 1}, "brandy": {"\u5012": 1, "\u73bb\u7483\u676f": 1, "\u767d\u862d": 1, "\u9032": 1}, "accessible": {"\u516c\u773e": 1, "\u958b\u653e": 1, "\u8a18\u9304": 1}, "argued": {"\u4e89\u5435": 1, "\u4e00\u5468": 1}, "doorknob": {"\u8f49\u52d5": 1}, "blank": {"\u554f": 1}, "Swedish": {"\u745e\u5178\u8bed": 2}, "treason": {"\u61f2\u7f70": 1, "\u7f6a": 1, "\u7d42\u8eab": 1, "\u76e3\u7981": 1, "\u53db\u570b": 1}, "punishment": {"\u61f2\u7f70": 1, "\u7f6a": 1, "\u7d42\u8eab": 1, "\u76e3\u7981": 1, "\u53db\u570b": 1}, "proceeded": {"\u7ee7\u7eed": 1}, "drowning": {"\u6551": 2}, "cycling": {"\u81ea\u884c\u8f66": 1, "\u9a91": 1}, "conceal": {"\u5931\u671b": 1, "\u63a9\u9970": 1}, "disappointment": {"\u5931\u671b": 1, "\u63a9\u9970": 1}, "patted": {"\u80a9\u8180": 1, "\u62cd\u62cd": 1}, "yawned": {"\u6253\u54c8\u6b20": 1}, "flashlight": {"\u624b\u7535\u7b52": 1}, "authority": {"\u89e3\u50f1": 1, "\u6388\u6b0a": 1}, "groups": {"\u7d71\u4e00": 1, "\u8a66\u8457": 1, "\u5718\u9ad4": 1}, "unify": {"\u7d71\u4e00": 1, "\u8a66\u8457": 1, "\u5718\u9ad4": 1}, "teammates": {"\u968a\u53cb": 1}, "bald": {"\u5f88\u5e74": 1, "\u79bf\u982d": 1}, "defiance": {"\u5dee\u70b9": 1, "\u65e0\u803b": 1, "\u547d": 1}, "brazen": {"\u5dee\u70b9": 1, "\u65e0\u803b": 1, "\u547d": 1}, "feared": {"\u5bb3\u6015": 1, "\u9ed1\u591c": 1}, "blinds": {"\u767e\u53f6\u7a97": 1, "\u671b\u53bb": 1, "\u6253\u5f00": 1, "\u7a97\u5916": 1}, "businessmen": {"\u5546\u4eba": 1}, "revealed": {"\u63ed\u66c9": 1, "\u79d8\u5bc6": 1}, "stained": {"\u5f04\u810f\u4e86": 1, "\u9171\u6c41": 1}, "adjective": {"\u524d\u9762": 1, "\u540d\u8bcd": 1, "\u5f62\u5bb9\u8bcd": 1}, "noun": {"\u524d\u9762": 1, "\u540d\u8bcd": 1, "\u5f62\u5bb9\u8bcd": 1}, "consoling": {"\u5b89\u6170": 1}, "willingly": {"\u72ec\u81ea": 1, "\u7edd\u4e0d\u4f1a": 1, "\u613f\u610f": 1}, "views": {"\u5bcc\u6709": 1, "\u8ca7\u7aae": 1, "\u4f9d\u64da": 1, "\u770b\u6cd5": 1, "\u9084\u662f": 1}, "desktop": {"\u65b9\u4fbf": 1, "\u5efa\u7acb": 1, "\u5feb\u6377\u65b9\u5f0f": 1, "\u684c\u9762": 1, "\u8fdf\u65e9\u4f1a": 1}, "defense": {"\u9032\u653b": 1, "\u9632\u79a6": 1}, "Attack": {"\u9032\u653b": 1, "\u9632\u79a6": 1}, "hunch": {"\u9884\u611f": 1, "\u522b\u4eba": 1}, "verbs": {"\u4e0d\u89c4\u5219": 1, "\u52a8\u8bcd": 1}, "irregular": {"\u4e0d\u89c4\u5219": 1, "\u52a8\u8bcd": 1}, "adopt": {"\u6536\u517b": 1}, "regard": {"\u65e0\u53ef\u5949\u544a": 1, "\u5bf9\u4e8e": 1}, "Cheers": {"\u4e7e\u676f": 1, "!": 1}, "Breathe": {"\u547c\u5438": 1, "\u9f3b\u5b50": 1}, "petals": {"\u82b1\u74e3": 2}, "moonlight": {"\u6708\u5149": 3}, "bathed": {"\u4e4b\u4e2d": 1, "\u6708\u5149": 1, "\u6c90\u6d74": 1, "\u5c0f\u6728\u5c4b": 1}, "acorns": {"\u5922": 1, "\u6a61\u6a39\u5b50": 1, "\u98e2\u9913": 1}, "secretive": {"\u9019\u9ebc": 1}, "states": {"\u5dde": 2}, "penalty": {"\u5e9f\u9664": 2, "\u6b7b\u5211": 2}, "Rice": {"\u6c34\u7a3b": 1}, "regions": {"\u6c34\u7a3b": 1}, "grown": {"\u6c34\u7a3b": 1}, "split": {"\u5831\u916c": 1, "\u5e73\u5206": 1}, "reward": {"\u5831\u916c": 1, "\u5e73\u5206": 1}, "disgusted": {"\u538c\u6076": 1}, "precise": {"\u78ba": 1, "\u5207": 1, "\u9039": 1, "\u9593": 1}, "pardon": {"\u665a\u6765": 1}, "Hudson": {"\u7d10\u7d04": 1, "\u54c8\u5f97\u905c": 1, "\u4f4d": 1, "\u6cb3": 1}, "River": {"\u7d10\u7d04": 1, "\u54c8\u5f97\u905c": 1, "\u4f4d": 1, "\u6cb3": 1}, "clicked": {"\u5173\u4e0a": 1, "\u5494\u54d2": 1, "\u4e00\u58f0": 1, "\u95e8": 1}, "Skating": {"\u55dc\u597d": 2}, "Pork": {"\u9002\u5408": 1, "\u732a\u8089": 1}, "Mandarin": {"\u4e2d\u6587": 1}, "farmer": {"\u501f": 1, "\u8fb2\u592b": 1, "\u92f8\u5b50": 1}, "Respect": {"\u793e\u6703": 1, "\u57fa\u790e": 1}, "crow": {"\u70cf\u9d09": 1}, "Crater": {"\u85cd": 1, "\u706b\u5c71\u6e56": 1}, "toothpaste": {"\u7259\u818f": 3}, "tube": {"\u8acb\u8cb7": 2}, "username": {"\u7528\u6237\u540d": 1, "\u77ed": 1}, "canary": {"\u8c93": 1, "\u91d1\u7d72\u96c0\u88ab\u4e00": 1}, "Looks": {"\u554a": 1, "\u770b\u6765": 1, "\u6f2b\u957f": 1}, "assist": {"\u5354\u52a9": 2}, "pupils": {"\u5f71\u54cd\u529b": 1}, "humble": {"\u8c26\u865a": 1}, "controversial": {"\u4e89\u8bae": 1, "\u7406\u8bba": 1}, "burnt": {"\u71d2\u6bc0": 1, "\u706b\u707d": 1, "\u4e09\u68df": 1, "\u6628\u665a": 1, "\u623f\u5c4b": 1}, "nephew": {"\u4f84\u5b50": 1, "\u96de\u86cb": 1, "\u904e\u654f": 1}, "producers": {"\u7535\u80fd": 1, "\u6b27\u6d32": 1, "\u751f\u4ea7\u56fd": 1}, "vast": {"\u65e0\u57a0": 1, "\u6492\u54c8\u62c9\u6c99\u6f20": 1, "\u5e7f\u88a4": 1}, "desert": {"\u65e0\u57a0": 1, "\u6492\u54c8\u62c9\u6c99\u6f20": 1, "\u5e7f\u88a4": 1}, "Sahara": {"\u65e0\u57a0": 1, "\u6492\u54c8\u62c9\u6c99\u6f20": 1, "\u5e7f\u88a4": 1}, "smartest": {"\u73ed": 1, "\u806a\u660e": 1, "\u4e0d\u6562\u76f8\u4fe1": 1}, "belly": {"\u809a\u5b50": 1}, "characteristics": {"\u4eba\u985e": 1, "\u76f8\u540c": 1}, "beings": {"\u4eba\u985e": 1, "\u76f8\u540c": 1}, "Pigs": {"\u4eba\u985e": 1, "\u76f8\u540c": 1}, "tools": {"\u5de5\u5177": 2}, "Gold": {"\u91cd\u5f97": 2, "\u91d1\u5b50": 2, "\u6bd4\u6c34": 2}, "mysterious": {"\u6c14\u6c1b": 2}, "atmosphere": {"\u6c14\u6c1b": 2}, "Edo": {"\u5bb4\u6703": 1, "\u8cde": 1, "\u6c5f\u6236": 1}, "viewing": {"\u5bb4\u6703": 1, "\u8cde": 1, "\u6c5f\u6236": 1}, "Green": {"\u7da0\u8272": 1, "\u9069\u5408": 1}, "quarrels": {"\u5435\u67b6": 1}, "bookkeeping": {"\u8a18": 1, "\u5e33": 1}, "stabbed": {"\u80cc\u4e0a": 1, "\u6233": 1}, "orphan": {"\u6536\u517b": 1, "\u5b64\u513f": 1}, "poked": {"\u925b\u7b46": 1, "\u5dee\u9ede": 1, "\u6233": 1}, "youngsters": {"\u5e74\u8f7b\u4eba": 1}, "honesty": {"\u8aa0\u5be6": 1, "\u8cea\u7591": 1}, "Internet": {"\u4e92\u8054\u7f51": 1, "\u65e0\u6cd5\u4f30\u91cf": 1, "\u4fe1\u606f": 1, "\u8d44\u6e90": 1}, "invaluable": {"\u4e92\u8054\u7f51": 1, "\u65e0\u6cd5\u4f30\u91cf": 1, "\u4fe1\u606f": 1, "\u8d44\u6e90": 1}, "worsening": {"\u5ef6\u8fdf": 1, "\u53d8\u5dee": 1}, "Due": {"\u5ef6\u8fdf": 1, "\u53d8\u5dee": 1}, "boxing": {"\u62f3\u51fb": 1, "\u5b66": 1}, "congratulations": {"\u795d\u8d3a": 1, "\u6216\u8bb8": 1, "\u7b2c\u4e00\u4e2a": 1}, "tailor": {"\u897f\u88dd": 1, "\u7236\u89aa": 1, "\u88c1\u7e2b\u5e2b": 1}, "4th": {"\u5716\u66f8\u9928": 1, "\u56db\u6a13": 1}, "Big": {"\u5927\u9c7c\u5403\u5c0f\u9c7c": 1}, "download": {"\u7a0b\u5e8f": 1, "\u5047\u5982": 1, "\u4e0b\u8f7d": 1}, "owl": {"\u8c93\u5b50": 1, "\u500b\u591c": 1}, "fantasy": {"\u5947\u5e7b": 1}, "responding": {"\u56de": 1, "\u5fa9": 1, "\u624d": 1, "\u9019\u9ebc": 1}, "dump": {"\u7529": 1}, "buffet": {"\u8b1d\u8b1d": 1, "\u4eba\u4efd": 1, "\u5348\u9910": 1, "\u81ea\u52a9": 1}, "carrots": {"\u8514": 2, "\u80e1\u863f": 2}, "beers": {"\u8bf7\u6765": 1, "\u4e24\u676f": 1}, "MasterCard": {"\u4e07\u4e8b\u8fbe": 1, "\u4fe1\u7528\u5361": 1}, "shantytowns": {"\u8ca7\u6c11\u7a9f": 1, "\u58a8\u897f\u54e5": 1}, "Mexico": {"\u58a8\u897f\u54e5": 3}, "sewing": {"\u7f1d\u7eab": 1}, "Games": {"\u83b7\u80dc": 1, "\u53c2\u4e0e": 1, "\u5965\u8fd0\u4f1a": 1}, "Olympic": {"\u83b7\u80dc": 1, "\u53c2\u4e0e": 1, "\u5965\u8fd0\u4f1a": 1}, "bones": {"\u624b\u65b7": 1, "\u9aa8\u982d": 1, "\u624b\u81c2": 1}, "bakes": {"\u5468\u65e5": 1, "\u66f2\u5947": 1}, "saxophone": {"\u5439": 1, "\u85a9": 1, "\u514b\u65af": 1, "\u4e2d\u97f3": 1, "\u6b21": 1}, "tenor": {"\u5439": 1, "\u85a9": 1, "\u514b\u65af": 1, "\u4e2d\u97f3": 1, "\u6b21": 1}, "grandson": {"\u5b6b\u5b50": 1, "\u5b30\u5152": 1}, "comfort": {"\u5b89\u6170": 2}, "rocket": {"\u767c\u5c04": 1, "\u9032\u5165": 1, "\u706b\u7bad": 1, "\u592a\u7a7a": 1}, "rainbow": {"\u5f69\u8679": 1}, "blossom": {"\u82f9\u679c\u6811": 1, "\u7f8e\u4e3d": 1, "\u6302": 1, "\u82b1\u6735": 1}, "elated": {"\u6b23\u559c\u82e5\u72c2": 1}, "spiders": {"\u8718\u86db": 2}, "length": {"\u957f\u5ea6": 1, "\u7c73": 1, "30": 1, "\u8258": 1}, "shift": {"\u591c\u73ed": 1}, "suburbs": {"\u90ca\u533a": 2}, "carries": {"\u5305\u91cc": 1, "\u55b7\u5242": 1}, "spray": {"\u5305\u91cc": 1, "\u55b7\u5242": 1}, "pepper": {"\u80e1\u6912": 2}, "execution": {"\u5173\u5934": 1, "\u7f13\u671f": 1}, "eleventh": {"\u5173\u5934": 1, "\u7f13\u671f": 1}, "responsibilities": {"\u8d23\u4efb": 1}, "sarcastic": {"\u6316\u82e6": 1}, "subscriptions": {"\u8a02\u8cfc": 1, "\u4eca\u5e74\u5e74\u5e95": 1, "\u9805": 1, "\u652f\u4ed8\u6b3e": 1}, "waiter": {"\u6d77\u6ee8": 1, "\u9910\u5385": 1, "\u670d\u52a1\u5458": 1}, "bent": {"\u4e0b\u8170": 1, "\u5f2f": 1, "\u6c99\u5b50": 1, "\u6367\u8d77": 1}, "handful": {"\u4e0b\u8170": 1, "\u5f2f": 1, "\u6c99\u5b50": 1, "\u6367\u8d77": 1}, "grades": {"\u6210\u7e3e": 2}, "draft": {"\u8349\u7a3f": 1, "\u6f14\u8b1b": 1}, "tracks": {"\u9e7f": 1, "\u8ddf\u7740": 1, "\u8e2a\u8ff9": 1}, "Democracy": {"\u5c1d\u8bd5": 1, "\u5f62\u6001": 1, "\u90a3\u79cd": 1, "\u6700\u5dee": 1, "\u6c11\u4e3b": 1}, "Evidently": {"\u80af\u5b9a": 1}, "apologetic": {"\u5e76": 1}, "knives": {"\u56db\u628a": 1, "\u5200": 1, "\u4e24\u628a": 1, "\u53c9": 1}, "bitterness": {"\u82e6\u5473": 1, "\u53d7\u4e0d\u4e86": 1}, "indigenous": {"\u690d\u7269": 1, "\u539f\u4ea7": 1}, "bride": {"\u597d\u50cf": 1, "\u65b0\u5a18": 1}, "resist": {"\u62b5\u6297": 1, "\u751c\u98df": 1, "\u8bf1\u60d1": 1, "\u4e0d\u4e86": 1}, "logic": {"\u903b\u8f91": 4}, "picks": {"\u590d\u82cf": 1}, "dialog": {"\u5bf9\u8bdd": 1, "\u53c2\u4e0e": 1}, "bears": {"\u5317\u6781\u718a": 1, "\u6b7b\u53bb": 1}, "polar": {"\u5317\u6781\u718a": 1, "\u6b7b\u53bb": 1}, "peel": {"\u524a": 1, "\u571f\u8c46": 1}, "immigrants": {"\u79fb\u6c11": 2}, "Sapporo": {"\u5e02\u6c11": 1, "\u672d\u5e4c": 1}, "Basho": {"\u5049\u5927": 1, "\u8a69\u4eba": 1, "Basho": 2}, "developed": {"\u767c\u5c55": 1, "\u66b4\u98a8\u96e8": 1, "\u98b1": 1}, "toys": {"\u73a9\u5177": 4}, "suitcases": {"\u4e0d\u89c1": 1}, "Divide": {"\u5206\u6210": 1, "\u62ab\u85a9": 1, "\u4e09\u4efd": 1}, "afternoons": {"\u6ca1\u8bfe": 1, "\u5468\u4e09": 1, "\u4e0b\u5348": 1}, "colony": {"\u6b96\u6c11\u5730": 2}, "Zimbabwe": {"\u97cb": 1, "\u6d25": 1, "\u66fe\u7d93": 1, "\u5df4\u5e03": 1}, "verify": {"\u80fd\u591f": 1, "\u8bc1\u5b9e": 1}, "Alice": {"\u6d53": 1, "\u5986": 1, "\u5316": 1, "\u7231\u4e3d\u4e1d": 1}, "Ultraviolet": {"\u764c": 1, "\u5c0e\u81f4": 1, "\u76ae\u819a": 1, "\u7dda": 1, "\u7d2b\u5916": 1}, "nearby": {"\u9644\u8fd1": 1, "\u8d85\u5e02": 1, "\u8001\u5a46": 1}, "poker": {"\u6253\u6251\u514b": 1, "\u4e00\u6574\u5929": 1}, "Weeds": {"\u96dc\u8349": 1, "\u53e2\u751f": 1}, "sprang": {"\u96dc\u8349": 1, "\u53e2\u751f": 1}, "98": {"\u4eba\u751f": 1, "98": 2}, "fruits": {"\u6c34\u679c": 1, "\u6709\u76ca\u5065\u5eb7": 1, "\u65b0\u9bae": 1}, "Fresh": {"\u65b0\u9bae": 2}, "donuts": {"\u5708": 1, "\u751c\u751c": 1, "\u793c\u62dc": 1, "\u661f\u671f\u65e5": 1, "\u5b8c": 1}, "wink": {"\u6628\u665a": 2}, "attach": {"\u7533\u8bf7\u4e66": 1, "\u8d34": 1}, "Theory": {"\u7406\u8bba": 1, "\u8054\u7cfb\u5b9e\u9645": 1}, "meadow": {"\u725b": 1, "\u7267\u8349": 1}, "40,000": {"40000": 1, "\u9019\u4ef6": 1}, "congratulated": {"\u52dd\u5229": 1, "\u795d\u8cc0": 1}, "label": {"\u6807\u7b7e": 1, "\u7f50\u5b50": 1}, "jar": {"\u6807\u7b7e": 1, "\u7f50\u5b50": 1}, "unanimously": {"\u603b\u88c1": 1, "\u4e00\u81f4": 1, "\u8463\u4e8b\u4f1a": 1}, "CEO": {"\u603b\u88c1": 1, "\u4e00\u81f4": 1, "\u8463\u4e8b\u4f1a": 1}, "appoint": {"\u603b\u88c1": 1, "\u4e00\u81f4": 1, "\u8463\u4e8b\u4f1a": 1}, "veterinary": {"\u7378": 1, "\u91ab": 1}, "background": {"\u80cc\u666f": 2}, "gawking": {"\u50bb": 1, "\u770b\u7740": 1}, "fireplace": {"\u6642\u9418": 1, "\u58c1\u7210": 1, "\u4e0a\u65b9": 1}, "shared": {"\u9019\u9593": 1, "\u54e5\u54e5": 1, "\u5171\u7528": 1}, "fabulous": {"\u6781\u597d": 1}, "prophecy": {"\u9884\u8a00": 1}, "protection": {"\u4fdd\u8b77": 1}, "vegetable": {"\u6e6f": 1, "\u716e": 1}, "misunderstood": {"\u8aa4\u89e3": 1}, "kit": {"\u6025\u6551\u7bb1": 1, "\u522b\u5fd8\u4e86": 1, "\u5e26\u4e0a": 1}, "aid": {"\u6025\u6551\u7bb1": 1, "\u522b\u5fd8\u4e86": 1, "\u5e26\u4e0a": 1}, "watered": {"\u6d47\u6c34": 1, "\u82b1\u56ed\u91cc": 1}, "unwell": {"\u8212\u670d": 1}, "watermelon": {"\u897f\u74dc": 3}, "construction": {"\u5efa": 1}, "Wine": {"\u8461\u8404\u9152": 2}, "digestion": {"\u8461\u8404\u9152": 1, "\u52a9\u6d88\u5316": 1}, "develop": {"\u958b\u767c": 1, "\u8cc7\u6e90": 1}, "moons": {"\u885b\u661f": 2}, "drowsy": {"\u665a": 1, "\u98ef": 1, "\u8b8a\u5f97": 1, "\u660f\u660f\u6b32\u7761": 1}, "northern": {"\u57ce\u5821": 1, "\u5fb7\u570b": 1, "\u5317\u90e8": 1}, "castles": {"\u57ce\u5821": 1, "\u5fb7\u570b": 1, "\u5317\u90e8": 1}, "shattered": {"\u6253\u788e": 1, "\u82b1\u74f6": 1}, "funerals": {"\u4e0a\u4e2a\u6708": 1, "\u846c\u793c": 1, "\u4e09\u573a": 1}, "hiccuping": {"\u6253\u55dd": 2}, "producer": {"\u4ea7\u5730": 1, "\u7164\u70ad": 1, "\u7b2c\u4e94": 1}, "coal": {"\u4ea7\u5730": 1, "\u7164\u70ad": 1, "\u7b2c\u4e94": 1}, "ballpoint": {"\u5706\u73e0\u7b14": 1}, "cage": {"\u9e1f\u7b3c": 1}, "Twitter": {"Twitter": 4}, "desired": {"\u8fdc": 1, "\u79bb": 1}, "Fear": {"\u53d8\u6210": 1, "\u6050\u60e7": 1, "\u6124\u6012": 1}, "joined": {"\u8ba8\u8bba": 1}, "cub": {"\u770b\u8d77": 1, "\u8c93": 1, "\u5c0f\u8001\u864e": 1}, "grumpy": {"\u813e\u6c14": 2}, "wings": {"\u71d5\u5b50": 1, "\u7fc5\u8180": 1}, "swallow": {"\u71d5\u5b50": 1, "\u7fc5\u8180": 1}, "shade": {"\u6a39\u852d": 2, "\u4f11\u606f": 2}, "spinning": {"\u81ea\u4f20": 1}, "escaping": {"\u9003\u8dd1": 1}, "Mix": {"\u86cb": 1, "\u96de": 1, "\u9846": 1, "\u6df7\u5408": 1, "\u7c89": 1}, "elderly": {"\u957f\u8f88": 1}, "enabled": {"\u7d93\u9a57": 1, "\u667a\u6167": 1, "\u8655\u7406": 1}, "layout": {"\u6539": 2}, "sunset": {"\u5915\u967d": 2}, "majors": {"\u6587\u5b78": 1, "\u4e3b\u4fee": 1}, "ridiculous": {"\u82b1\u5149": 1, "\u8352\u8b2c": 1}, "talkative": {"\u5065\u8c08": 1}, "pockets": {"\u53e3\u888b": 1, "\u628a\u624b": 1, "\u63d2\u9032": 1}, "tremble": {"\u611f\u89ba": 1, "\u9707\u52d5": 1}, "Snow": {"\u767d\u96ea\u516c\u4e3b": 1}, "White": {"\u767d\u96ea\u516c\u4e3b": 1}, "owed": {"\u8fd8\u7ed9": 1, "\u6b20": 1}, "snobbish": {"\u52bf\u5229": 1}, "conclusions": {"\u7d50\u8ad6": 1, "\u5984\u4e0b": 1}, "Draw": {"\u753b": 2}, "B.": {"B": 1, "\u753b": 1, "\u7ebf": 1, "\u4e00\u6761": 1, "A": 1}, "pipe": {"\u51fa": 1, "\u50be\u7009": 1, "\u6c34\u7ba1": 1, "\u7834\u88c2": 1}, "Afraid": {"\u771f\u76f8": 1, "\u6015": 1, "\u50b7\u5bb3": 1, "\u611f\u60c5": 1}, "hurting": {"\u771f\u76f8": 1, "\u6015": 1, "\u50b7\u5bb3": 1, "\u611f\u60c5": 1}, "races": {"\u6bd4\u8d5b": 1}, "anniversary": {"\u5a5a\u793c": 1, "\u5fd8\u8bb0": 1, "\u5468\u5e74": 1, "\u7eaa\u5ff5\u65e5": 1, "\u9001\u7ed9": 1}, "forgets": {"\u5a5a\u793c": 1, "\u5fd8\u8bb0": 1, "\u5468\u5e74": 1, "\u7eaa\u5ff5\u65e5": 1, "\u9001\u7ed9": 1}, "returns": {"\u56de\u6765": 1, "\u4e0b\u4e2a\u661f\u671f": 1}, "arrests": {"\u884c\u52a8": 1, "\u5b9e\u65bd": 1, "\u902e\u6355": 1, "\u6839\u672c": 1}, "tenacity": {"\u97e7\u6027": 1, "\u514b\u670d": 1, "\u51ed": 1}, "characteristic": {"\u97e7\u6027": 1, "\u514b\u670d": 1, "\u51ed": 1}, "Printing": {"\u6cb9\u58a8": 1, "\u5feb\u6ca1\u4e86": 1}, "screwed": {"\u97f3\u7b26": 1, "\u641e\u7838": 1, "\u7b2c\u4e00": 1}, "tobacco": {"\u623f\u91cc": 2, "\u70df\u5473": 2}, "smelled": {"\u623f\u91cc": 2, "\u70df\u5473": 2}, "whining": {"\u57cb\u6028": 1}, "universe": {"\u6d69\u701a": 1, "\u7121\u908a": 1, "\u5b87\u5b99": 1}, "limitless": {"\u6d69\u701a": 1, "\u7121\u908a": 1, "\u5b87\u5b99": 1}, "rate": {"\u532f\u7387": 1}, "undressed": {"\u7761\u89c9": 1, "\u8131\u5149": 1}, "thrilling": {"\u9a0e\u99ac": 1}, "statesman": {"\u4f1f\u5927": 1, "\u957f\u5927": 1}, "lack": {"\u7f3a\u4e4f": 2}, "Saturn": {"\u571f\u661f": 1, "\u904b\u884c": 1, "\u7e5e\u8457": 1}, "paradise": {"\u5929\u5802": 2}, "businessman": {"\u5546\u4eba": 1, "\u770b\u6765": 1}, "breaks": {"\u8d70\u8def": 1, "\u58de": 1}, "decorated": {"\u73ab\u7470\u82b1": 1, "\u88c5\u9970": 1}, "emphasize": {"\u91cd\u8996": 1, "\u4e8b\u5be6": 1}, "text": {"\u7ed9\u6211\u53d1": 1, "\u77ed\u4fe1": 1, "\u4e00\u6761": 1}, "cubed": {"\u4e8c\u5341\u4e03": 1, "\u7acb\u65b9": 1}, "span": {"\u5bff\u547d\u77ed": 1}, "Halley": {"2061": 1, "\u54c8\u96f7\u5f57\u661f": 1, "\u56de\u4f86": 1}, "2061": {"2061": 2, "\u54c8\u96f7\u5f57\u661f": 1, "\u56de\u4f86": 1}, "Comet": {"2061": 1, "\u54c8\u96f7\u5f57\u661f": 1, "\u56de\u4f86": 1}, "lotion": {"\u80cc\u4e0a": 1, "\u6d82": 1, "\u9632\u6652\u971c": 1}, "press": {"\u6309": 1, "\u9215": 1}, "nowhere": {"\u65e0\u5904\u53ef\u53bb": 1}, "disregarded": {"\u5fe0\u544a": 1, "\u9867": 1}, "roughly": {"\u56db\u500d": 1, "\u4e9a\u6d32": 1, "\u5927\u5c0f": 1, "\u6b27\u6d32": 1, "\u7ea6": 1}, "wrongly": {"\u5bc4\u9519": 1}, "apologized": {"\u9053\u6b49": 1}, "election": {"\u80dc\u9009\u8005": 1, "\u505a\u5f97\u597d": 1}, "predicting": {"\u80dc\u9009\u8005": 1, "\u505a\u5f97\u597d": 1}, "frog": {"\u9752\u86d9": 2}, "parking": {"\u514d\u8d39": 1, "\u505c\u8f66\u573a": 1}, "Reading": {"\u770b\u4e66": 1}, "intent": {"\u610f\u5716": 1, "\u4e0b\u6bd2": 1, "\u5eda\u5e2b": 1, "\u52c1": 1}, "poisoner": {"\u610f\u5716": 1, "\u4e0b\u6bd2": 1, "\u5eda\u5e2b": 1, "\u52c1": 1}, "blessing": {"\u6069\u60e0": 1, "\u5f53\u4f5c": 1}, "inn": {"\u65c5\u9928": 1, "\u706b\u8b66": 1}, "melt": {"\u70e4\u7bb1": 1, "\u4f1a\u5316": 1, "\u5851\u6599": 1, "\u76d8\u5b50": 1}, "stove": {"\u70e4\u7bb1": 1, "\u4f1a\u5316": 1, "\u5851\u6599": 1, "\u76d8\u5b50": 1}, "swarm": {"\u9ec3\u8702": 1, "\u8972\u64ca": 1, "\u7aa9": 1}, "hornets": {"\u9ec3\u8702": 1, "\u8972\u64ca": 1, "\u7aa9": 1}, "Jesus": {"\u8036\u7a4c": 2}, "Janeiro": {"\u91cc\u7ea6\u70ed\u5185\u5362": 1, "\u8fdc\u79bb": 1, "\u533a\u57df": 1}, "de": {"\u91cc\u7ea6\u70ed\u5185\u5362": 1, "\u8fdc\u79bb": 1, "\u533a\u57df": 1}, "Rio": {"\u91cc\u7ea6\u70ed\u5185\u5362": 1, "\u8fdc\u79bb": 1, "\u533a\u57df": 1}, "News": {"\u65b0\u805e": 1, "\u6536\u97f3": 1, "\u7206\u70b8": 1, "\u5145\u65a5": 1, "\u8457\u6709": 1, "\u5ee3\u64ad": 1}, "posters": {"\u6d77\u62a5": 1}, "shuffle": {"\u6d17\u724c": 1, "\u4ed4\u7ec6": 1}, "robber": {"\u5c0f\u5077": 1, "\u6293\u8457": 1, "\u80f3\u818a": 1}, "snoring": {"\u6253\u547c\u58f0": 1, "\u7761\u7740": 1, "\u54cd": 1}, "talent": {"\u4e0d\u7981": 1, "\u624d\u83ef": 1}, "koala": {"\u7121": 1, "\u718a": 1, "\u5c3e": 1, "\u62cd\u7167": 1}, "Brasilia": {"\u5df4\u897f\u5229\u4e9a": 1}, "Brazil": {"\u5df4\u897f": 3}, "altogether": {"\u4fe1\u4efb": 1}, "apology": {"\u9053\u6b49": 3}, "spectacular": {"\u58ee\u89c2": 1, "\u7130\u706b": 1}, "AI": {"AI": 2, "\u4eba\u5de5\u667a\u80fd": 1}, "mist": {"\u4e00\u8258\u8239": 1, "\u96fe": 1}, "bowl": {"\u7897": 3}, "mislead": {"\u8aa4\u5c0e": 1}, "ray": {"\u7247": 2}, "required": {"8": 1}, "Publication": {"\u6587\u7ae0": 1, "\u53d1\u8868": 1, "\u9884\u5b9a": 1}, "timed": {"\u6587\u7ae0": 1, "\u53d1\u8868": 1, "\u9884\u5b9a": 1}, "coincide": {"\u6587\u7ae0": 1, "\u53d1\u8868": 1, "\u9884\u5b9a": 1}, "tuned": {"\u8fc7\u97f3": 1, "\u597d\u591a\u5e74": 1, "\u7434": 1, "\u53f0": 1, "\u6ca1\u8c03": 1}, "billionaire": {"\u7e3d": 1, "\u5bcc\u7fc1": 1, "\u5104\u842c": 1, "\u8457\u6210": 1, "\u68a6\u60f3": 1}, "kettle": {"\u8336": 1, "\u6cb8": 1, "\u58fa": 1}, "wages": {"\u5de5\u662f": 1, "\u7f77": 1, "\u6539\u5584": 1, "\u5de5\u8cc7": 1}, "manufactures": {"CD\u673a": 1, "\u751f\u4ea7": 1, "\u5de5\u5382": 1, "\u8fd9\u5bb6": 1}, "captivity": {"\u56da\u7981": 1}, "field": {"\u610f\u7fa9": 1, "\u5be6\u5730": 1, "\u8003\u5bdf": 1}, "description": {"\u5f62\u5bb9": 2}, "Islam": {"\u5927\u7d04": 1, "\u4f0a\u65af": 1, "\u50b3\u5230": 1, "\u862d\u6559": 1, "\u4e03": 1, "\u4e16\u7eaa": 1, "\u4e2d\u570b": 1}, "7th": {"\u5927\u7d04": 1, "\u4f0a\u65af": 1, "\u50b3\u5230": 1, "\u862d\u6559": 1, "\u4e03": 1, "\u4e16\u7eaa": 1, "\u4e2d\u570b": 1}, "energetic": {"\u6d3b\u6cfc": 1}, "stepping": {"\u9032\u5165": 1, "\u5340": 1}, "Mona": {"\u8499\u5a1c\u4e3d\u838e": 1, "\u6709\u7740": 1}, "enigmatic": {"\u8499\u5a1c\u4e3d\u838e": 1, "\u6709\u7740": 1}, "Lisa": {"\u8499\u5a1c\u4e3d\u838e": 1, "\u6709\u7740": 1}, "temples": {"\u53e4\u5edf": 1, "\u6709\u540d": 1}, "negotiation": {"\u4e2d\u6b62": 1, "\u8c08\u5224": 1}, "poisonous": {"\u6709\u6bd2": 1}, "brighter": {"\u8070\u660e": 1, "\u751f": 1, "\u5927\u5b78": 1}, "Rhine": {"\u570b\u754c": 2, "\u6cd5\u570b": 2, "\u840a\u8335": 2, "\u6cb3\u6d41": 2, "\u7d93": 2, "\u5fb7\u570b": 2}, "massive": {"\u5927\u578b": 1, "\u6784\u9020": 1}, "structure": {"\u5927\u578b": 1, "\u6784\u9020": 1}, "precedent": {"\u5148\u6cb3": 1}, "1880": {"\u91c7\u53d6": 1, "1880": 2, "\u793e\u4f1a\u4fdd\u969c": 1, "\u5fb7\u56fd": 1, "\u5236\u5ea6": 1}, "raising": {"\u6536\u8cbb": 1, "\u63d0\u9ad8": 1}, "fees": {"\u6536\u8cbb": 1, "\u63d0\u9ad8": 1}, "Lift": {"\u53f3\u81c2": 1, "\u8209\u8d77": 1}, "Bible": {"\u5723\u7ecf": 2}, "bush": {"\u62d0\u5f4e\u62b9\u89d2": 1}, "defects": {"\u660e\u986f": 1, "\u7f3a\u9677": 1, "\u7cfb\u7d71": 1}, "Jupiter": {"\u6728\u661f": 1}, "System": {"\u6728\u661f": 1}, "Solar": {"\u6728\u661f": 1}, "Einstein": {"\u56e0\u65af": 1, "\u5766": 1}, "pirates": {"\u6d77\u76dc": 1}, "boarded": {"\u6d77\u76dc": 1}, "mouths": {"\u8a72\u5c11": 1, "\u807d": 1, "\u8033\u6735": 1, "\u5634\u5df4": 1, "\u61c9": 1, "\u90a3\u9ebc": 1, "\u624d": 1}, "disappearance": {"\u5931\u8e2a\u6848": 1, "\u8c03\u67e5": 1}, "overtime": {"\u52a0\u73ed": 4}, "freezing": {"\u51b7": 1}, "ugly": {"\u96e3": 2}, "fairies": {"\u795e\u8a71\u50b3\u8aaa": 1}, "imitation": {"\u4eff\u9020\u54c1": 1}, "necktie": {"\u9818\u5e36": 1, "\u9019\u689d": 1}, "candles": {"\u8721\u70db": 2}, "volumes": {"\u5206\u4e3a": 1, "\u672c\u8bcd\u5178": 1, "\u4e24\u5377": 1}, "organic": {"\u62e5\u6709": 1, "\u6709\u673a": 1, "\u519c\u573a": 1, "\u5c0f\u578b": 1}, "demonstration": {"\u793a\u5a01\u6e38\u884c": 1, "\u51e0\u5341\u4e2a": 1, "\u5e74\u8f7b\u4eba": 1}, "retract": {"\u9648\u8ff0": 1, "\u64a4\u56de": 1}, "previous": {"\u9648\u8ff0": 1, "\u64a4\u56de": 1}, "postcards": {"\u660e\u4fe1\u7247": 1}, "flatly": {"\u9032\u53bb": 1, "\u65b7\u7136": 1, "\u62d2\u7d55": 1}, "damaged": {"\u66b4\u98a8\u96e8": 1, "\u5c4b\u9802": 1, "\u640d\u58de": 1}, "mastered": {"\u5916\u570b": 2, "\u4e00\u5e74": 2, "\u638c\u63e1": 2}, "miracle": {"\u5947\u8ff9": 1}, "marvels": {"\u521b\u9020": 1, "\u5947\u8ff9": 1, "\u836f": 1}, "handbag": {"\u624b\u63d0\u5305": 1}, "Refugees": {"\u96be\u6c11": 1, "\u6d8c\u6765": 1, "\u6574\u4e2a": 1}, "sleeved": {"\u77ed\u8896": 1}, "golfer": {"\u4e0d\u9519": 1, "\u9ad8\u5c14\u592b\u7403": 1}, "roared": {"\u65e9\u671f": 1, "\u9ad8\u547c": 1, "\u8d5e\u6210": 1, "\u6f14\u5531": 1, "\u9a6c\u514b": 1, "\u8bfa\u5f17\u52d2": 1, "\u65e0\u7528": 1, "\u4f9d\u7136": 1, "\u65e0\u7528\u8bba": 1, "\u7edd\u5927\u591a\u6570": 1, "\u6b4c\u66f2": 1}, "Knopfler": {"\u65e9\u671f": 1, "\u9ad8\u547c": 1, "\u8d5e\u6210": 1, "\u6f14\u5531": 1, "\u9a6c\u514b": 1, "\u8bfa\u5f17\u52d2": 1, "\u65e0\u7528": 1, "\u4f9d\u7136": 1, "\u65e0\u7528\u8bba": 1, "\u7edd\u5927\u591a\u6570": 1, "\u6b4c\u66f2": 1}, "Mark": {"\u65e9\u671f": 1, "\u9ad8\u547c": 1, "\u8d5e\u6210": 1, "\u6f14\u5531": 1, "\u9a6c\u514b": 1, "\u8bfa\u5f17\u52d2": 1, "\u65e0\u7528": 1, "\u4f9d\u7136": 1, "\u65e0\u7528\u8bba": 1, "\u7edd\u5927\u591a\u6570": 1, "\u6b4c\u66f2": 1}, "Pay": {"\u6536\u94f6\u53f0": 1, "\u4ed8\u6b3e": 1, "\u8655": 1, "\u51fa\u53e3": 1}, "cashier": {"\u6536\u94f6\u53f0": 1, "\u4ed8\u6b3e": 1, "\u8655": 1, "\u51fa\u53e3": 1}, "biologist": {"\u751f\u7269\u5b66\u5bb6": 1, "\u6d77\u6d0b": 1}, "marine": {"\u751f\u7269\u5b66\u5bb6": 1, "\u6d77\u6d0b": 1}, "pointed": {"\u6307\u7740": 1, "\u6559\u5e08": 1}, "thoroughly": {"\u6dcb\u5f97": 1, "\u5168\u8eab": 1, "\u6fd5": 1}, "streaked": {"\u593e": 1}, "Vietnam": {"\u8d8a\u519b": 1, "\u9000\u5f79\u519b\u4eba": 1}, "veteran": {"\u8d8a\u519b": 1, "\u9000\u5f79\u519b\u4eba": 1}, "Scotch": {"\u5a01\u58eb\u5fcc": 1, "\u52a0\u6c34": 1, "\u4e00\u676f": 1, "\u518d\u4f86": 1}, "pancakes": {"\u714e\u997c": 1, "\u65e9\u9910": 1}, "disadvantage": {"\u574f\u4e8b": 1}, "hero": {"\u82f1\u96c4": 4}, "unforgettable": {"\u4e00\u573a": 1, "\u4ee4\u4eba\u96be\u5fd8": 1, "\u4e8b\u4ef6": 1}, "incredibly": {"\u7d2f\u6b7b": 1}, "weaknesses": {"\u5f31\u70b9": 1}, "scholarship": {"\u734e\u5b78\u91d1": 2}, "Sixteen": {"\u300d": 1, "\u5e7e\u6b72": 1, "\u5341\u516d": 1, "\u300c": 1}, "delays": {"\u5ef6\u9072": 1, "\u98db\u6a5f": 1, "\u96e2\u958b": 1, "\u7d42": 1, "\u7d93\u904e": 1, "\u6578\u6b21": 1}, "brushing": {"\u5237\u7259": 2}, "ruined": {"\u6bc1": 1}, "shock": {"\u9707\u64bc": 1}, "amounted": {"\u9ad8\u8fbe": 1, "\u5e10\u5355": 1, "\u91d1\u989d": 1, "\u7f8e\u5143": 1}, "matchbox": {"\u706b\u67f4\u76d2": 1, "\u6536\u97f3\u673a": 1}, "coyote": {"\u4e1b\u6797": 1, "\u72fc": 1}, "giraffe": {"\u957f\u9888\u9e7f": 1}, "cooperative": {"\u5408\u4f5c": 1}, "instantly": {"\u649e": 1, "\u4fbf": 1, "\u904e\u4e16": 1}, "radium": {"\u8ab0": 1, "\u9433": 1}, "rides": {"\u6280\u672f": 1, "\u4e0d\u9519": 1, "\u6469\u6258\u8f66": 1, "\u9a91": 1}, "worthless": {"\u5e7e\u4e4e": 1, "\u4e00\u8f1b": 1, "\u6beb\u7121\u50f9\u503c": 1, "\u8eca\u9f61": 1, "\u516b\u5e74": 1}, "Rainbow": {"\u5f69\u8679": 1}, "Bridge": {"\u5f69\u8679": 1}, "I.D.": {"\u5e36": 1, "\u8b49": 1, "\u5fd8": 1, "\u8eab\u4efd": 1}, "commute": {"\u516c\u8eca": 1, "\u4e0a\u4e0b": 1, "\u642d": 1, "\u5b78": 1}, "arched": {"\u5f13\u8d77": 1, "\u4f38": 1, "\u61d2\u8170": 1, "\u80cc": 1}, "Goodbye": {"\u518d\u89c1": 1}, "dim": {"\u8bb0\u5fc6": 1, "\u6a21\u7cca": 1}, "discoveries": {"\u91ab\u5b78": 1, "\u4e00\u9023": 1, "\u63d0\u51fa": 1, "\u4e32": 1}, "abundant": {"\u81ea\u7136\u8d44\u6e90": 1, "\u4e30\u5bcc": 1}, "earpiece": {"\u8033\u673a": 1, "\u4fdd\u9556": 1}, "bodyguard": {"\u8033\u673a": 1, "\u4fdd\u9556": 1}, "cheer": {"\u60c5\u6cc1": 1, "\u632f\u4f5c\u8d77": 1, "\u6539\u5584": 1}, "underpants": {"\u5167\u8932": 1, "\u6fd5": 1}, "steps": {"\u8d70\u51fa": 1, "\u4ec0\u4e48\u6837": 1, "\u6b65\u4f10": 1}, "unlocked": {"\u4ee4": 1, "\u4e0a\u9396": 1, "\u9a5a\u8a1d": 1}, "aspired": {"\u6f14\u54e1": 1, "\u7acb\u5fd7": 1}, "Allow": {"\u5141\u8a31": 2}, "stare": {"\u76ef\u8457": 4, "\u79ae\u8c8c": 4}, "folding": {"\u8fde\u8863\u88d9": 1, "\u53e0": 1}, "suitable": {"\u9069\u5408": 3}, "underwear": {"\u9ad2": 1, "\u8863": 1}, "division": {"\u9664\u6cd5": 1, "\u6c92\u4e0a": 1}, "Hot": {"\u708e\u71b1": 1, "\u61f6\u6563": 1, "\u8b8a\u5f97": 1, "\u6f6e\u6fd5": 1}, "Knowledge": {"\u77e5\u8bc6": 1}, "shutting": {"\u9580\u95dc": 1}, "listed": {"\u8bc1\u5238": 1, "\u4ea4\u6613\u6240": 1, "\u4e0a\u5e02": 1, "\u8fd9\u5bb6": 1}, "scuba": {"\u8a66": 1, "\u80ba\u6f5b\u6c34": 1, "\u7528\u6c34": 1}, "diving": {"\u8a66": 1, "\u80ba\u6f5b\u6c34": 1, "\u7528\u6c34": 1}, "modifications": {"\u6539\u52a8": 1}, "superiors": {"\u4e0a\u53f8": 1, "\uff08": 1, "\uff09": 1, "\u5b66\u4f1a": 1}, "respectful": {"\u4e0a\u53f8": 1, "\uff08": 1, "\uff09": 1, "\u5b66\u4f1a": 1}, "environmental": {"\u8bb2\u5ea7": 1, "\u73af\u5883\u6c61\u67d3": 1, "\u5173\u4e8e": 1, "\u4e00\u8282": 1}, "drug": {"\u6bd2\u54c1": 1, "\u56fd\u9645\u6027": 1}, "smack": {"\u6247": 1, "\u4e00\u5df4\u638c": 1}, "tapes": {"\u78c1\u5e36": 1}, "surfboard": {"\u8bd5\u4e00\u4e0b": 1, "\u51b2\u6d6a\u677f": 1, "\u5730\u60f3": 1, "\u8feb\u4e0d\u53ca\u5f85": 1}, "products": {"\u540c\u7b49": 1, "\u4ea7\u54c1\u8d28\u91cf": 1}, "justify": {"\u4e0d\u64c7": 1, "\u76ee\u7684": 1, "\u4e26\u975e": 1, "\u6b63\u7576": 1}, "Waiter": {"\u70b9\u83dc": 1, "\u670d\u52a1\u751f": 1}, "agrees": {"\u610f\u898b": 1}, "bananas": {"\u9999\u8549": 5}, "charisma": {"\u4f4e\u4f30": 1, "\u9b45\u529b": 1}, "relieved": {"\u8981\u8bf4": 1, "\u8f7b\u677e": 1}, "glamorous": {"\u8ff7\u4eba": 1, "\u5973\u5b69\u5b50": 1}, "alphabet": {"\u8ba4\u5b57": 1, "\u8bb0\u5f97": 1, "\u6559": 1}, "hardwood": {"\u6728\u5730\u677f": 1, "\u786c": 1}, "loading": {"\u5361\u8eca": 1, "\u6771\u897f": 1, "\u642c\u5bb6": 1, "\u642c\u4e0a": 1}, "Queen": {"\u4e00\u4e16": 1, "\u4f0a\u9e97\u838e": 1, "1603": 1, "\u5973\u738b": 1}, "Elizabeth": {"\u4e00\u4e16": 1, "\u4f0a\u9e97\u838e": 1, "1603": 1, "\u5973\u738b": 1}, "1603": {"\u4e00\u4e16": 1, "\u4f0a\u9e97\u838e": 1, "1603": 2, "\u5973\u738b": 1}, "guaranteed": {"\u4fdd\u8b49": 2}, "symbol": {"\u7b26\u865f": 1}, "Seen": {"\u4e0a\u770b": 1, "\u6708\u7403": 1, "\u770b\u8d77\u6765": 1, "\u76ae\u7403": 1}, "305": {"\u9001\u5230": 1, "305": 2, "\u65e9\u9910": 1}, "astrophysicist": {"\u7576\u500b": 1, "\u66fe\u7d93": 1, "\u7269\u7406": 1, "\u5b78\u5bb6": 1, "\u592a\u7a7a": 1}, "beholder": {"\u9a7b\u7559": 1, "\u773c\u91cc": 1, "\u7f8e": 1}, "ducked": {"\u907f\u5f00": 1}, "apologies": {"\u8aa0\u646f": 1, "\u6b49\u610f": 1}, "groaned": {"\u547b\u541f": 1}, "dreamt": {"\u68a6": 1}, "adjoins": {"\u7dca": 1, "\u9130\u8457": 1, "\u5ba2\u5ef3": 1, "\u9910\u5ef3": 1}, "execute": {"\u547d\u4ee4": 1}, "terrified": {"\u5687\u58de": 1}, "pains": {"\u907a\u9918\u529b": 1}, "spared": {"\u907a\u9918\u529b": 1}, "Red": {"\u6d41\u884c": 1, "\u7ea2\u8272": 1}, "folds": {"\u6298": 1, "\u9858\u671b": 1, "\u4e00\u5343": 1}, "cranes": {"\u6298": 1, "\u9858\u671b": 1, "\u4e00\u5343": 1}, "prefectures": {"\u7e23": 1}, "genuine": {"\u947d\u77f3": 1}, "Rather": {"\u6bd4\u8d77": 1, "\u6212": 1, "\u4f55\u4e0d": 1}, "cigarettes": {"\u6bd4\u8d77": 1, "\u6212": 1, "\u4f55\u4e0d": 1}, "cutting": {"\u6bd4\u8d77": 1, "\u6212": 1, "\u4f55\u4e0d": 1}, "putting": {"\u62d6\u5ef6": 1}, "shelves": {"\u4e66\u67b6\u4e0a": 1}, "assume": {"\u5047\u5b9a": 1}, "magnetism": {"\u96fb\u6d41": 1, "\u78c1\u6027": 1}, "generate": {"\u96fb\u6d41": 1, "\u78c1\u6027": 1}, "anticipate": {"\u9810\u6599": 1}, "logically": {"\u7b26\u5408": 1, "\u903b\u8f91": 1, "\u547d\u9898": 1}, "Popcorn": {"\u7206\u7c73\u82b1": 1, "\u96f6\u98df": 1}, "inspect": {"\u6aa2\u67e5": 1}, "resides": {"\u6ce2\u58eb\u987f": 1}, "Disneyland": {"\u8fea\u58eb\u5c3c": 1, "\u6a02\u5712": 1}, "beggar": {"\u4e5e\u4e10": 1}, "manufacture": {"\u76d6\u5b50": 1, "\u751f\u4ea7\u65e5\u671f": 1}, "approach": {"\u79d1\u5b66\u5bb6": 1, "\u601d\u8003": 1, "\u8fd9\u6837": 1}, "beliefs": {"\u4fe1\u5ff5": 1, "\u5225\u4eba": 1, "\u76e1\u91cf": 1, "\u5f37\u52a0": 1}, "imposing": {"\u4fe1\u5ff5": 1, "\u5225\u4eba": 1, "\u76e1\u91cf": 1, "\u5f37\u52a0": 1}, "ballpark": {"\u5750": 1, "\u516c\u8eca": 1, "\u7403\u5834": 1}, "teased": {"\u5bb6\u91cc": 1, "\u8dd1": 1, "\u56de": 1, "\u6349\u5f04": 1}, "ash": {"\u822a\u904b": 1, "\u963b\u7919": 1, "\u706b\u5c71\u7070": 1}, "Volcanic": {"\u822a\u904b": 1, "\u963b\u7919": 1, "\u706b\u5c71\u7070": 1}, "disrupted": {"\u822a\u904b": 1, "\u963b\u7919": 1, "\u706b\u5c71\u7070": 1}, "antiques": {"\u53e4\u8463": 2}, "accumulated": {"\u6e6f\u59c6\u5c6f": 1, "\u5783\u573e": 1}, "suspicions": {"\u6d88\u606f": 1, "\u8bc1\u5b9e": 1}, "Probably": {"\u7070\u5c18": 1, "\u8fc7\u654f": 1, "\u82b1\u7c89": 1}, "pollen": {"\u7070\u5c18": 1, "\u8fc7\u654f": 1, "\u82b1\u7c89": 1}, "gum": {"\u53e3\u9999\u7cd6": 1, "\u7c98\u5230": 1, "\u978b\u5b50": 1}, "angle": {"90": 1, "\u76f4\u89d2": 1, "\u89d2": 1}, "Tennis": {"\u7f51\u7403": 2}, "manage": {"\u89e3\u51b3": 1}, "stadium": {"\u53bb\u904e": 1, "\u9ad4\u80b2\u9928": 1}, "Gravity": {"\u5e26": 1, "\u5730\u7403\u8868\u9762": 1, "\u91cd\u529b": 1}, "abate": {"\u51cf\u5f31": 1, "\u51e0\u4e2a": 1, "\u98ce\u66b4": 1}, "abducted": {"\u7ed1\u67b6": 1}, "karate": {"\u7a7a\u624b\u9053": 1}, "Neptune": {"\u6d77\u738b\u661f": 2}, "165": {"\u4e00\u5468": 1, "\u7e5e\u884c": 1, "\u4e00\u767e\u516d\u5341\u4e94": 1, "\u592a\u967d": 1}, "expelled": {"\u5b78\u6821": 1, "\u5152\u5b50": 1}, "economical": {"\u8fd9\u8f86": 1, "\u7701\u6cb9": 1}, "valid": {"\u7968": 2}, "argue": {"\u5435": 1}, "greeted": {"\u6253\u62db\u547c": 3}, "goodnight": {"\u665a\u5b89": 1}, "theories": {"\u7406\u8bba": 1}, "mysteries": {"\u5145\u6ee1": 1}, "physically": {"\u5fc3": 1}, "happily": {"\u5e74\u8f15": 1}, "pigsty": {"\u7a9d": 1, "\u732a": 1}, "inches": {"\u82f1\u5bf8": 2}, "Mathematics": {"\u6578\u5b78": 4}, "sciences": {"\u57fa\u790e": 1, "\u79d1\u5b78": 1, "\u6578\u5b78": 1}, "Grandmother": {"\u860b\u679c": 1, "\u5976\u5976": 1, "\u9001": 1, "\u4e00\u7bb1": 1}, "goals": {"\u76ee\u6a19": 2}, "dam": {"\u6c34\u575d": 1, "\u7535": 1}, "renovated": {"\u7ffb\u65b0": 1, "\u4e00\u904d": 1, "\u9130\u5c45": 1, "\u5c4b\u5b50": 1}, "ambiguities": {"\u660e\u786e": 1}, "centimeters": {"\u516c\u5206": 2}, "155": {"155": 2, "\u73ed": 1, "\u5e73\u5747": 1, "\u8eab\u9ad8": 1, "\u5973\u751f": 1}, "daily": {"\u8d39\u7528": 1}, "cheered": {"\u85c9\u7531": 1, "\u9f13\u821e": 1, "\u807d": 1}, "Fluency": {"\u6d41\u5229": 1}, "pumps": {"\u821e\u978b": 1}, "International": {"\u673a\u573a": 1, "\u4e1c\u4eac\u56fd\u9645": 1, "\u51e0\u5206\u949f": 1, "\u964d\u843d": 1}, "January": {"\u4e00\u6708\u4efd": 1, "\u53c2\u52a0\u8003\u8bd5": 1}, "evolving": {"\u4e0d\u65ad": 1, "\u8f6f\u4ef6": 1, "\u8fdb\u5316": 1}, "Software": {"\u4e0d\u65ad": 1, "\u8f6f\u4ef6": 1, "\u8fdb\u5316": 1}, "pillow": {"\u6795\u982d": 1, "\u6bdb\u6bef": 1}, "Needless": {"\u8a00": 1, "\u57fa\u672c": 1, "\u4eba\u6b0a": 1, "\u61c9\u7576": 1, "\u7121\u9808": 1}, "respected": {"\u8a00": 1, "\u57fa\u672c": 1, "\u4eba\u6b0a": 1, "\u61c9\u7576": 1, "\u7121\u9808": 1}, "spite": {"\u51fa\u53bb": 1, "\u4e0b\u7740\u96e8": 1}, "graveyard": {"\u6559\u5802": 1, "\u65c1": 1, "\u5893\u5712": 1, "\u57cb\u846c": 1}, "neck": {"\u8116\u5b50": 2}, "shouted": {"\u5486\u54ee": 1, "\u9752\u7b4b": 1, "\u66b4\u8d77": 1}, "veins": {"\u5486\u54ee": 1, "\u9752\u7b4b": 1, "\u66b4\u8d77": 1}, "toast": {"\u8702\u871c": 2, "\u4e0a\u653e": 2, "\u5f80": 2}, "3rd": {"\u4e09\u865f": 1}, "gentle": {"\u63a8": 1, "\u8f15\u8f15\u5730": 1}, "tourism": {"\u696d": 1, "\u6709\u7528": 1, "\u65c5\u904a": 1, "\u65b9\u9762": 1, "\u5916\u4ea4": 1}, "diplomacy": {"\u696d": 1, "\u6709\u7528": 1, "\u65c5\u904a": 1, "\u65b9\u9762": 1, "\u5916\u4ea4": 1}, "compiling": {"\u7a0b\u5e8f": 1, "\u7f16\u8bd1": 1}, "skinny": {"\u793c\u8c8c": 1, "\u82d7\u6761": 1, "\u7626": 1}, "pose": {"\u63d0\u51fa": 1, "\u7b54\u6848": 1}, "Basketball": {"\u7bee\u7403": 1}, "acquired": {"\u53e3\u5473": 1, "\u591a\u6b21": 1, "\u525b": 1, "\u7fd2\u6163": 1, "\u54c1\u5690": 1}, "Release": {"\u653e\u5f00": 1}, "absconded": {"\u6f5c\u9003": 1, "\u643a\u6b3e": 1}, "Hong": {"\u9999\u6e2f": 2}, "Kong": {"\u9999\u6e2f": 2}, "wriggled": {"\u86af\u8693": 1, "\u626d\u52a8": 1}, "earthworm": {"\u86af\u8693": 1, "\u626d\u52a8": 1}, "ideal": {"\u73a9\u4e50": 1, "\u4f9b": 1, "\u6d77\u6ee9": 1, "\u573a\u6240": 1, "\u7406\u60f3": 1}, "unfit": {"\u9002\u5408": 1}, "physics": {"\u95dc\u65bc": 1, "\u51fa\u7248": 1, "\u4e00\u672c": 1, "\u7269\u7406": 1, "\u5b78": 1}, "aside": {"\u8ba9\u5f00": 1}, "freed": {"\u653e\u8d70": 1, "\u5c07\u9ce5": 1}, "cottages": {"\u597d\u51e0\u95f4": 1, "\u5b64\u7acb": 1, "\u6d2a\u6c34": 1, "\u5c0f\u5c4b": 1}, "isolated": {"\u597d\u51e0\u95f4": 1, "\u5b64\u7acb": 1, "\u6d2a\u6c34": 1, "\u5c0f\u5c4b": 1}, "alcoholic": {"\u9152\u9b3c": 1}, "plotting": {"\u6b63\u5bc6": 1, "\u8b00\u8981": 1, "\u6bba\u5bb3": 1}, "topics": {"\u8ac7": 1, "\u8a71\u984c": 1}, "Classes": {"\u4e0b\u5468": 1, "\u8bfe\u7a0b": 1}, "growled": {"\u5c0f\u7537\u5b69": 1, "\u5486\u54ee": 1}, "frogs": {"\u6c60\u5858": 1, "\u9752\u86d9": 1}, "ticking": {"\u6ef4\u7b54\u58f0": 1, "\u542c\u5230": 1, "\u58f0\u97f3": 1, "\u949f": 1}, "emphasis": {"\u91cd\u8981\u6027": 1, "\u5f3a\u8c03": 1}, "Cool": {"\u51b7\u9759": 1}, "companies": {"\u5de5\u4f5c\u5236": 1, "8": 1, "\u5be6\u884c": 1}, "implemented": {"\u5de5\u4f5c\u5236": 1, "8": 1, "\u5be6\u884c": 1}, "sigh": {"\u9b06": 1, "\u4e00\u53e3": 1}, "culture": {"\u6587\u5316": 2}, "floats": {"\u6728\u5934": 1, "\u6f02\u6d6e": 1}, "Wood": {"\u6728\u5934": 1, "\u6f02\u6d6e": 1}, "pages": {"\u7ffb\u8bd1": 1, "2": 1, "\u51e0\u9875": 1}, "venture": {"\u98ce\u9669\u6295\u8d44": 1, "\u8d44\u91d1": 1}, "flush": {"\u5395\u6240": 1, "\u51b2\u6c34": 1, "\u6b63\u5e38": 1}, "attempt": {"\u8bd5\u56fe": 1, "\u6e38": 1, "\u8fc7\u6cb3": 1}, "zeros": {"\u96f6": 1, "2010": 1}, "2010": {"\u96f6": 1, "2010": 2}, "terrorist": {"\u7ec4\u7ec7": 1, "\u75db\u6068": 1, "\u6050\u6016\u4e3b\u4e49": 1}, "organizations": {"\u7ec4\u7ec7": 1, "\u75db\u6068": 1, "\u6050\u6016\u4e3b\u4e49": 1}, "useless": {"\u6c92\u7528": 1}, "military": {"\u57fa\u5730": 1, "\u8ecd\u4e8b": 1, "\u9644\u8fd1": 1}, "overreacting": {"\u8fc7\u5ea6": 1, "\u53cd\u5e94": 1}, "seawater": {"\u54b8": 1, "\u6d77\u6c34": 1}, "salty": {"\u54b8": 1, "\u6d77\u6c34": 1}, "boarding": {"\u767b\u6a5f": 2}, "wiser": {"\u667a\u6167": 1, "\u66f4\u52a0": 1}, "swimsuit": {"\u5458\u5de5": 1, "\u6362\u6210": 1, "\u56de": 1, "\u6cf3\u8863": 1, "\u4e00\u53f7": 1, "\u8bd5\u8fc7": 1}, "customs": {"\u4e60\u4fd7": 1, "\u5404\u5f02": 1}, "Social": {"\u4e60\u4fd7": 1, "\u5404\u5f02": 1}, "prairies": {"\u6a39": 1, "\u8349\u539f": 1}, "Trees": {"\u6a39": 1, "\u8349\u539f": 1}, "Shouting": {"\u543c": 1, "\u96fb\u8166": 1}, "dignity": {"\u81ea\u91cd": 1}, "assignment": {"\u9884\u671f": 1}, "spirits": {"\u7cbe\u795e": 1}, "gently": {"\u80a9\u4e0a": 2, "\u6eab\u67d4": 2}, "waterfall": {"\u90a3\u513f": 1, "\u7f8e\u7684": 1, "\u6709\u4e2a": 1, "\u770b\u89c1": 1, "\u7011\u5e03": 1}, "occasions": {"\u897f\u88dd": 1, "\u5408\u7a7f": 1, "\u5834": 1, "\u7279\u6b8a": 1}, "numerous": {"\u4e66\u67b6\u4e0a": 1}, "bookshelf": {"\u4e66\u67b6\u4e0a": 1}, "Married": {"\u5df2\u5a5a": 1, "\u55ae\u8eab": 1}, "officer": {"\u8cca": 1, "\u8b66\u5b98": 1, "\u4e86\u7aca": 1, "\u902e\u6355": 1}, "typewriter": {"\u6253\u5b57": 1, "\u6709\u4ec0\u9ebc": 1, "\u597d\u50cf": 1}, "Bears": {"\u718a\u4f1a": 1, "\u722c\u6811": 1}, "Stars": {"\u661f\u661f": 1, "\u51fa\u73fe": 1, "\u5929\u7a7a": 1}, "mosquito": {"\u53ee": 2}, "Hop": {"\u8df3\u8fdb\u6765": 1}, "complaints": {"\u6295\u8a34": 1, "\u53ad\u5026": 1}, "wrist": {"\u5e74\u8f15": 1, "\u624b\u8155": 1}, "tuner": {"\u8c03\u97f3\u5e08": 1, "\u94a2\u7434": 1, "\u5f88\u591a\u5e74": 1}, "eyed": {"\u76ef\u8457": 1, "\u53ef\u7591": 1}, "suspiciously": {"\u76ef\u8457": 1, "\u53ef\u7591": 1}, "preparation": {"\u56e0": 1, "\u7f3a\u4e4f": 1, "\u6e96\u5099": 1, "\u5931\u6557": 1}, "handcuffs": {"\u94d0": 1}, "thumb": {"\u500b\u5712": 1, "\u5de7\u624b": 1, "\u85dd": 1}, "1996": {"\u7562\u696d": 1, "1996": 2}, "worm": {"\u9e1f\u513f": 1, "\u65e9\u8d77": 1, "\u866b": 1}, "Ever": {"\u5eda\u623f": 1, "\u6454\u5012": 1, "\u4e0d\u66fe": 1, "\u81ea\u5f9e": 1}, "Believe": {"\u4fe1\u4e0d\u4fe1": 1, "\u4e09\u4e2a": 1}, "duties": {"\u8077": 1, "\u5b88": 1, "\u6020\u5ffd": 1}, "neglected": {"\u8077": 1, "\u5b88": 1, "\u6020\u5ffd": 1}, "engrossed": {"\u66f8\u88e1": 1, "\u6c89\u6d78": 1}, "plunged": {"\u8dcc": 1, "\u81f3": 1, "\u65b0\u4f4e": 1, "\u80a1\u7968": 1}, "Stock": {"\u8dcc": 1, "\u81f3": 1, "\u65b0\u4f4e": 1, "\u80a1\u7968": 1}, "locker": {"\u6ac3\u5b50": 1}, "collected": {"\u8a0a\u606f": 1}, "Yari": {"\u69cd": 1, "\u722c": 1, "\u5cb3": 1}, "disposal": {"\u968f\u4fbf": 1}, "merely": {"\u5f00\u73a9\u7b11": 1}, "disassembled": {"\u949f": 1, "\u62c6\u5f00": 1}, "barbeque": {"\u70e4\u8089": 1}, "5625": {"\u53f7\u7801": 1, "\uff0d": 1, "\u4e1c\u4eac": 1, "3202": 1, "5625.": 1}, "3202": {"\u53f7\u7801": 1, "\uff0d": 1, "\u4e1c\u4eac": 1, "3202": 2, "5625.": 1}, "fewer": {"50": 1, "\u4e0d\u4e0b": 1}, "Florence": {"\u7f8e\u4e3d": 1, "\u610f\u5927\u5229": 1, "\u4f5b\u7f57\u4f26\u8428": 1}, "instruments": {"\u4ee5\u5916": 1, "\u4e50\u5668": 1, "\u94a2\u7434": 1}, "warrant": {"\u641c\u67e5": 1, "\u516c\u5bd3": 1, "\u6709\u6743": 1}, "Harajuku": {"\u539f\u5bbf": 1, "\u5df4\u58eb": 1, "\u642d\u4e0a": 1}, "bombs": {"\u654c\u4eba": 1, "\u843d\u5411": 1, "\u70b8\u5f39": 1, "\u96e8\u70b9": 1}, "scrambled": {"\u7092\u86cb": 1}, "ringtone": {"\u63db": 1, "\u9234": 1, "\u624b\u6a5f": 1, "\u8072": 1}, "forgotten": {"\u5fd8": 1, "\u540d\u5b57": 1}, "weed": {"\u5438": 1, "\u5927\u9ebb": 1}, "decreased": {"\u6e1b\u5c11": 1, "\u767e\u5206\u4e4b\u5341": 1, "\u6536\u5165": 1}, "status": {"\u5a5a\u59fb\u72b6\u51b5": 1}, "marital": {"\u5a5a\u59fb\u72b6\u51b5": 1}, "owns": {"\u8dd1\u8f66": 1, "\u9ec4\u8272": 1, "\u4e00\u8f86": 1}, "Behave": {"\u89c4\u77e9": 1}, "outdoors": {"\u6236\u5916": 1, "\u6709\u5e38": 1}, "Drunk": {"\u9a7e": 1}, "tightly": {"\u62b1\u8457": 1, "\u7dca\u7dca": 1}, "tripped": {"\u5bb6\u95e8": 1, "\u7eca\u5012": 1, "\u57ab\u5b50": 1}, "Entering": {"\u5bb6\u95e8": 1, "\u7eca\u5012": 1, "\u57ab\u5b50": 1}, "blossoms": {"\u6afb\u82b1": 1}, "Shanghai": {"\u4e0a\u6d77": 2}, "via": {"\u7ecf\u7531": 1, "\u4f26\u6566": 1}, "Daddy": {"\u8b1b": 1, "\u7239": 1}, "springs": {"\u6e29\u6cc9": 1}, "significance": {"\u610f\u4e49": 1, "\u9886\u4f1a": 1}, "gazing": {"\u51dd\u89c6\u7740": 1, "\u6d0b\u5a03\u5a03": 1}, "weapons": {"\u6b66\u5668": 2}, "Add": {"\u52a0": 1, "\u4e00\u4e01": 1}, "pinch": {"\u52a0": 1, "\u4e00\u4e01": 1}, "surfers": {"\u6d77\u6ee9": 1, "\u51b2\u6d6a\u8005": 1}, "inconsequential": {"\u6839\u672c": 1}, "entirely": {"\u6839\u672c": 1}, "deputy": {"\u4ee3\u7406\u4eba": 1}, "vulnerable": {"\u8106\u5f31\u4e0d\u582a": 1}, "Felicja": {"Felicja": 2, "\u770b\u96fb\u8996": 1}, "Such": {"\u9019\u6a23": 2}, "patriotism": {"\u7231\u56fd\u4e3b\u4e49": 1, "\u63d0\u5021": 1, "\u6709\u6ca1\u6709": 1}, "starved": {"\u8001\u4eba": 1, "\u9913\u6b7b": 1}, "lifted": {"\u88ab\u8209": 1, "\u8d77\u4f86": 1, "\u597d\u50cf": 1}, "betrayed": {"\u79d8\u5bc6": 1}, "napkin": {"\u9910\u5dfe": 1}, "seek": {"\u5c0b\u6c42": 1, "\u5354\u52a9": 1}, "mandatory": {"\u4f5c\u4e3a": 1, "\u70f9\u996a": 1, "\u5fc5\u4fee\u8bfe": 1, "\u8bfe\u7a0b": 1}, "explosives": {"\u7206\u70b8\u7269": 1}, "Drink": {"\u679c\u6c41": 1}, "athletic": {"\u8fd0\u52a8": 1}, "depression": {"\u6392\u9063": 1, "\u9b31\u60b6": 1, "\u5fc3\u60c5": 1, "\u8ced\u535a": 1}, "cope": {"\u6392\u9063": 1, "\u9b31\u60b6": 1, "\u5fc3\u60c5": 1, "\u8ced\u535a": 1}, "gamble": {"\u6392\u9063": 1, "\u9b31\u60b6": 1, "\u5fc3\u60c5": 1, "\u8ced\u535a": 1}, "455": {"455": 2, "\u61f7\u5b55": 1, "\u6709\u610f": 1, "\u4e2d\u6703": 1, "\u540d\u5a66": 1, "\u5973": 1, "\u9031\u524d": 1, "\u7b2c\u4e8c\u5341": 1, "\u8b58\u5230": 1}, "twentieth": {"455": 1, "\u61f7\u5b55": 1, "\u6709\u610f": 1, "\u4e2d\u6703": 1, "\u540d\u5a66": 1, "\u5973": 1, "\u9031\u524d": 1, "\u7b2c\u4e8c\u5341": 1, "\u8b58\u5230": 1}, "pregnancy": {"455": 1, "\u61f7\u5b55": 1, "\u6709\u610f": 1, "\u4e2d\u6703": 1, "\u540d\u5a66": 1, "\u5973": 1, "\u9031\u524d": 1, "\u7b2c\u4e8c\u5341": 1, "\u8b58\u5230": 1}, "taxis": {"\u5169\u8f1b": 1, "\u51fa\u79df": 1}, "dived": {"\u8df3\u5165": 1, "\u6e38\u6cf3\u6c60": 1}, "loaded": {"\u88c5": 1, "\u8eca\u88e1": 1, "\u5f80": 1}, "100,000": {"000.": 1, "\u7ea6": 1}, "starve": {"\u5168\u4e16\u754c": 1, "\u997f\u6b7b": 1, "\u77e5\u4e0d\u77e5\u9053": 1, "\u5440": 1}, "puffs": {"\u4e00\u6253": 1, "\u5976\u6cb9": 1, "\u6ce1\u8299": 1}, "hopeful": {"\u672a\u4f86": 1}, "artistic": {"\u7236\u89aa": 1, "\u61c2": 1, "\u85dd\u8853": 1}, "charm": {"\u9b45\u529b": 1, "\u5c4b": 1, "\u65e7\u6751": 1}, "tinnitus": {"\u8033\u9e23": 1}, "marathon": {"\u9a6c\u62c9\u677e": 2}, "van": {"\u649e\u5230": 1, "\u85cd": 1, "\u90a3\u8f1b": 1, "\u6c7d\u8eca": 1, "\u8272": 1, "\u7d05\u8272": 1, "\u5305": 1}, "wrung": {"\u62e7\u5e72": 1, "\u6bdb\u5dfe": 1, "\u6302": 1, "\u667e\u5e72": 1}, "Facts": {"\u7edf\u8ba1": 1, "\u67d4\u987a": 1}, "pliable": {"\u7edf\u8ba1": 1, "\u67d4\u987a": 1}, "statistics": {"\u7edf\u8ba1": 1, "\u67d4\u987a": 1}, "beans": {"\u8c46\u5b50": 2}, "investigation": {"\u8abf\u67e5": 2}, "Kiss": {"\u543b": 1}, "determination": {"\u6c7a\u5fc3": 1}, "expressed": {"\u706b\u71b1": 1, "\u8868\u9054": 1, "\u6fc0\u60c5": 1, "\u8a69\u4eba": 1}, "500": {"500": 3}, "guts": {"\u81bd\u5b50": 1}, "castle": {"\u57ce\u5821": 2}, "penny": {"\u4e00\u5206": 1, "\u8cfa": 1, "\u7701": 1, "\u7b49": 1}, "Subtract": {"\u51cf\u53bb": 1, "\u4e94": 1, "\u516b": 1}, "training": {"\u8270\u82e6": 1, "\u8bad\u7ec3": 1, "\u591a\u4e48": 1}, "meowed": {"\u732b\u53eb": 1}, "Restart": {"\u91cd\u65b0\u542f\u52a8": 1}, "attributes": {"\u5f52\u529f\u4e8e": 1, "\u597d\u8fd0": 1}, "jungle": {"\u5173\u4e8e": 1, "\u4e00\u672c": 1, "\u4e1b\u6797": 1, "\u5192\u9669": 1}, "adventure": {"\u5192\u9669": 2}, "moral": {"\u541b\u5b50": 1, "\u9053": 1}, "champion": {"\u5f97\u4e3b": 1, "\u5927\u5bb6": 1, "\u51a0\u519b": 1, "\u6e34\u671b": 1}, "describe": {"\u7eff\u8336": 1, "\u533a\u522b": 1, "\u7ea2\u8336": 1}, "bounced": {"\u9000\u7968": 1, "\u652f\u7968": 1}, "undressing": {"\u8131\u8863\u670d": 1}, "basement": {"\u7a83\u8d3c": 1, "\u7a97\u53e3": 1, "\u5730\u4e0b\u5ba4": 1}, "temptation": {"\u5c48\u670d": 2}, "abated": {"\u51cf\u5f31": 1, "\u98ce\u66b4": 1}, "neat": {"\u6574\u6f54": 1}, "proficient": {"\u7cbe\u901a": 1, "\u6cd5\u8a9e": 1}, "shone": {"\u96d9\u773c": 1, "\u9583\u720d": 1, "\u5abd\u5abd": 1, "\u751f": 1}, "joy": {"\u96d9\u773c": 1, "\u9583\u720d": 1, "\u5abd\u5abd": 1, "\u751f": 1}, "sleeve": {"\u6372": 1, "\u8896\u5b50": 1, "\u908a": 1, "\u53f3": 1}, "demonstrated": {"\u8bba\u8bc1": 1, "\u60f3\u6cd5": 1, "\u8fd9\u4f4d": 1, "\u8bd5\u9a8c": 1}, "disturbing": {"\u6253\u6270\u5230": 1}, "networks": {"\u5206\u4eab": 1, "\u7f51\u7edc": 1, "\u79c1\u4eba": 1, "\u793e\u4ea4": 1, "\u4fe1\u606f": 1}, "Hide": {"\u85cf\u9032": 1, "\u6ac3\u5b50": 1}, "Selling": {"\u8ce3\u8eca": 1}, "error": {"\u72af": 1}, "carbonated": {"\u78b3\u9178": 1, "\u996e\u6599": 1}, "recall": {"\u898b\u9762": 1, "\u60f3\u4e0d\u8d77": 1, "\u4e0a\u6b21": 1}, "Blood": {"\u5230\u5904": 1, "\u8840": 1}, "swallows": {"\u8d8a\u4f86\u8d8a": 1, "\u71d5\u5b50": 1}, "frightens": {"\u5bb3\u6015": 1, "\u5a5a\u59fb": 1}, "invite": {"\u6d3e\u5bf9": 1}, "upside": {"\u6302\u53cd": 1, "\u753b": 1}, "ways": {"\u6d4b\u901f": 1}, "measure": {"\u6d4b\u901f": 1}, "defeatist": {"\u62b1\u8457": 1, "\u4ed7": 1, "\u614b\u5ea6": 1, "\u4e3b\u7fa9": 1, "\u5931\u6557": 1}, "stroganoff": {"\u4fc4\u5f0f": 1, "\u7247": 1, "\u7092": 1, "\u725b\u8089": 1}, "pack": {"\u6253\u5305": 1, "\u624b\u63d0\u7bb1": 1}, "arrogance": {"\u50b2\u6162": 2}, "sunflower": {"\u5411\u65e5\u8475": 1, "\u4e00\u6735": 1}, "simply": {"\u4e70\u6765": 1, "\u800c\u5df2": 1}, "Whoever": {"\u4e70\u6765": 1, "\u800c\u5df2": 1}, "caviar": {"\u9b5a\u5b50": 1, "\u91ac": 1}, "suited": {"\u7d05\u8272": 2, "\u6d0b\u88dd": 2, "\u9069\u5408": 2}, "praying": {"\u7948\u79b1": 1}, "Bringing": {"\u8270\u96be": 1, "\u4e00\u9879": 1, "\u517b": 1, "\u5b9d\u5b9d": 1}, "decrease": {"\u75bc\u75db": 1, "\u51cf\u8f7b": 1, "\u836f\u4f1a": 1}, "scenic": {"\u805e\u540d": 1, "\u98a8\u666f": 1, "\u512a\u7f8e": 1}, "procedures": {"\u624b\u7eed": 1}, "injure": {"\u624b\u7eed": 1}, "handball": {"\u624b\u7403": 1, "\u64cd\u5834": 1, "\u4e00\u7fa4": 1}, "playground": {"\u624b\u7403": 1, "\u64cd\u5834": 1, "\u4e00\u7fa4": 1}, "Uncle": {"\u53d4\u53d4": 1, "\u8fb2\u5834": 1}, "liking": {"\u7406\u7531": 1}, "testified": {"\u7537\u5b50": 1, "\u4f5c\u8b49": 1}, "signal": {"\u4fe1\u865f": 2}, "courageous": {"\u52c7\u6562": 2}, "locating": {"\u96be\u4ee5": 1}, "noodles": {"\u98ef": 1, "\u7c73": 1}, "quickest": {"\u65b9\u5f0f": 2, "\u6700\u5feb": 2, "\u65c5\u884c": 2}, "locate": {"\u6839\u6e90": 1, "\u65e0\u6cd5": 1}, "parasol": {"\u9633\u4f1e": 2}, "unmarried": {"\u7d50\u5a5a": 1, "\u751a\u9ebc": 1}, "cozy": {"\u8212\u9069": 1}, "dumped": {"\u7529": 1, "\u9019\u9ebc": 1}, "starvation": {"\u9965\u997f": 1}, "privileges": {"\u591a\u79cd": 1, "\u5916\u4ea4\u5b98": 1}, "Diplomats": {"\u591a\u79cd": 1, "\u5916\u4ea4\u5b98": 1}, "Hopefully": {"\u4e2d\u570b": 1, "\u65c5": 1}, "governed": {"\u7d71\u6cbb": 1}, "Creationism": {"\u4f2a\u79d1\u5b66": 1, "\u521b\u9020": 1, "\u4e3b\u4e49": 1}, "pseudo": {"\u4f2a\u79d1\u5b66": 1, "\u521b\u9020": 1, "\u4e3b\u4e49": 1}, "Lunch": {"\u5348\u9910": 2}, "estimated": {"\u6570\u767e\u4e07\u5143": 1, "\u4f30\u4ef7": 1, "\u5e45\u753b": 1}, "Mondays": {"\u661f\u671f\u4e00": 4}, "Shine": {"\u64e6\u4eae": 1, "\u51fa\u9580": 1, "\u978b\u5b50": 1}, "detectives": {"\u4fa6\u63a2": 1, "\u5acc\u7591\u4eba": 1, "\u8ddf\u7740": 1}, "Wild": {"\u68ee\u6797": 1, "\u91ce\u751f": 1, "\u52d5\u7269": 1}, "libras": {"\u82f1\u9551": 1, "\u5341\u4e8c": 1}, "Anniversaries": {"\u9031\u5e74": 1, "\u7d00\u5ff5": 1}, "Beats": {"\u4e00\u65e0\u6240\u77e5": 1}, "Young": {"\u79d1\u5b66": 1, "\u5c0f\u5b69": 1, "\u5e38\u5e38": 1}, "PTA": {"PTA": 2}, "pigeons": {"\u5750": 1, "\u957f\u6905": 1, "\u804a\u5929": 1, "\u516c\u56ed": 1, "\u4e00\u8fb9": 1, "\u5582": 1, "\u9e3d\u5b50": 1}, "L.A.": {"\u6d1b\u6749\u77f6": 1}, "Running": {"\u8dd1\u6b65": 1}, "beverage": {"\u996e\u6599": 1}, "scrap": {"\u5ee2\u7d19": 1}, "promoted": {"\u6649\u5347": 1}, "branch": {"\u4e0b\u4e2a\u6708": 1, "\u5206\u5e97": 1, "\u5f00\u5f20": 1}, "monster": {"\u8d70\u6765": 1, "\u5de8\u5927": 1, "\u602a\u7269": 1, "\u4e00\u53ea": 1}, "Except": {"\u5927\u5bb6": 1}, "awake": {"\u9192": 2}, "hundreds": {"\u5e7e\u767e\u672c": 1}, "Asians": {"\u4f5c\u70ba": 1, "\u5171\u7528": 1, "\u4e9e\u6d32": 1}, "evidently": {"\u660e\u986f": 1, "\u751f\u75c5": 1}, "Collect": {"\u6536\u597d": 1, "\u5148": 1, "\u601d\u7eea": 1}, "Wolves": {"\u72fc": 1}, "scare": {"\u72fc": 1}, "1789": {"1789": 2, "\u6cd5\u56fd": 1, "\u5927\u9769\u547d": 1}, "Revolution": {"1789": 1, "\u6cd5\u56fd": 1, "\u5927\u9769\u547d": 1}, "leisure": {"\u5e03\u5a03\u5a03": 1, "\u5229\u7528": 1, "\u7a7a\u95f2": 1}, "barbershop": {"\u5e97": 1, "\u7406": 1, "\u6253\u7b97": 1}, "puppies": {"\u5c0f\u72d7": 1}, "toured": {"\u6e38\u89c8": 1}, "busier": {"\u5e73\u65f6": 1}, "pleasures": {"\u96fb\u8996": 1, "\u6a02\u8da3": 1}, "remorse": {"\u6781\u5c11": 1, "\u663e\u9732": 1, "\u7f6a\u6076": 1, "\u61ca\u6094": 1, "\u53cd": 1}, "Sociopaths": {"\u6781\u5c11": 1, "\u663e\u9732": 1, "\u7f6a\u6076": 1, "\u61ca\u6094": 1, "\u53cd": 1}, "display": {"\u6781\u5c11": 1, "\u663e\u9732": 1, "\u7f6a\u6076": 1, "\u61ca\u6094": 1, "\u53cd": 1}, "attained": {"\u8fbe\u5230": 1, "\u76ee\u6807": 1}, "frowned": {"\u7709\u982d": 1, "\u76ba\u8457": 1}, "speechless": {"\u60ca": 1, "\u76ee\u77aa\u53e3\u5446": 1}, "glared": {"\u77aa": 1}, "whisky": {"\u5a01\u58eb\u5fcc": 1, "\u592a\u70c8": 1}, "doghouse": {"\u5efa": 1, "\u5c4b": 1}, "corners": {"\u5077\u5de5\u51cf\u6599": 1, "\u7edd\u5bf9": 1}, "ends": {"\u5973\u4e3b\u89d2": 1, "\u5c0f\u8bf4": 1, "\u544a\u7ec8": 1}, "heroine": {"\u5973\u4e3b\u89d2": 1, "\u5c0f\u8bf4": 1, "\u544a\u7ec8": 1}, "transfer": {"\u6362\u4e58": 1}, "Environmental": {"\u74b0\u5883": 1, "\u60c5\u6cc1": 1, "\u7570\u5e38": 1}, "abnormal": {"\u74b0\u5883": 1, "\u60c5\u6cc1": 1, "\u7570\u5e38": 1}, "reflection": {"\u7a97\u6237": 1, "\u6620\u50cf": 1}, "combination": {"\u878d\u5408": 1, "\u6416\u6efe\u6a02": 1}, "fusion": {"\u878d\u5408": 1, "\u6416\u6efe\u6a02": 1}, "Jazz": {"\u878d\u5408": 1, "\u6416\u6efe\u6a02": 1}, "cheeks": {"\u9762\u988a": 1, "\u6cea\u6c34": 1, "\u6d41": 1, "\u6cbf\u7740": 1}, "Broccoli": {"\u897f\u85cd\u82b1": 1}, "distrusted": {"\u4fe1\u4efb": 1}, "contemporary": {"\u73b0\u4ee3\u6587\u5b66": 1}, "King": {"\u67e5\u7406\u65af": 1, "\u57fa\u7763": 1}, "Christ": {"\u67e5\u7406\u65af": 1, "\u57fa\u7763": 1}, "flammable": {"\u53ef\u71c3": 1}, "tested": {"\u6aa2\u67e5": 1, "\u91ab\u9662": 1}, "soil": {"\u571f\u58e4": 1, "\u4e0d\u51fa": 1, "\u6771\u897f\u4f86": 1}, "Over": {"\u8fc7\u5934": 1, "\u7761": 1, "\u8fdf\u5230": 1, "\u7406\u7531": 1}, "unsatisfied": {"\u4e0d\u6ee1": 1, "\u7ed3\u679c": 1}, "falling": {"\u4e0b\u964d": 1, "\u6c14\u538b\u8ba1": 1}, "barometer": {"\u4e0b\u964d": 1, "\u6c14\u538b\u8ba1": 1}, "scenario": {"\u60c5\u5883": 1}, "dealing": {"\u64c5\u9577": 1, "\u5c0f\u5b69\u5b50": 1, "\u61c9\u4ed8": 1}, "Bali": {"\u6708\u4efd": 1, "\u5df4\u5398\u5c9b": 1, "\u6f6e\u6e7f": 1, "\u708e\u70ed": 1, "\u6781\u5176": 1}, "Talk": {"\u7c21\u55ae": 1}, "toothache": {"\u53b2\u5bb3": 1, "\u7259\u75db": 1}, "Takeuchi": {"\u9080\u8acb": 1, "\u7af9": 1}, "towels": {"\u6d74\u5ba4": 1, "\u51e0\u6761": 1, "\u6bdb\u5dfe": 1}, "Dallas": {"\u5361": 1, "\u9054": 1, "\u62c9\u65af": 1}, "identified": {"\u78ba\u8a8d": 1, "\u5147": 1}, "murderer": {"\u78ba\u8a8d": 1, "\u5147": 1}, "obese": {"\u5f88\u80d6": 1}, "dollar": {"\u6495\u6389": 1, "\u5341\u7f8e\u5143": 1, "\u5b30\u5b69": 1, "\u9214\u7968": 1}, "bawling": {"\u6559": 1, "\u53ad\u7169": 1}, "mommy": {"\u5abd": 1}, "miles": {"\u8ddd\u96e2": 1, "\u516c\u5712": 1, "\u82f1\u91cc": 1}, "Others": {"\u5176\u4ed6\u4eba": 1, "\u4e50\u89c2": 1}, "disheveled": {"\u6e6f\u59c6\u982d": 1, "\u767c": 1, "\u84ec\u4e82": 1}, "transmission": {"\u6392\u8eca": 1, "\u958b\u624b": 1}, "rabbi": {"\u62c9\u6bd4": 1}, "reliable": {"\u9760\u4e0d\u4f4f": 1}, "calculation": {"\u6839\u64da": 1}, "landed": {"\u6771\u4eac": 1, "\u5ba2\u6a5f": 1, "\u67b6": 1, "\u964d\u843d": 1}, "jet": {"\u6771\u4eac": 1, "\u5ba2\u6a5f": 1, "\u67b6": 1, "\u964d\u843d": 1}, "rear": {"\u5f00": 1, "\u540e\u95e8": 1}, "Colombian": {"\u54e5\u4f26\u6bd4\u4e9a\u653f\u5e9c": 1}, "20th": {"\u901d\u4e16": 1, "10": 1}, "blinded": {"\u611b\u60c5": 1, "\u76f2\u76ee": 1, "\u770b\u4e0d\u5230": 1}, "toaster": {"\u5f04\u58de": 1, "\u5305": 1, "\u518d\u6b21": 1}, "Dinosaurs": {"\u5f88\u4e45\u4ee5\u524d": 1, "\u7d76": 1, "\u6050\u9f8d": 1}, "extinct": {"\u5f88\u4e45\u4ee5\u524d": 1, "\u7d76": 1, "\u6050\u9f8d": 1}, "occasional": {"\u9635\u96e8": 1, "\u6674": 1, "\u8f6c": 1}, "sorts": {"\u8c23\u8a00": 1, "\u7f3a\u5e2d": 1, "\u4ea7\u751f": 1}, "absence": {"\u8c23\u8a00": 1, "\u7f3a\u5e2d": 1, "\u4ea7\u751f": 1}, "rumors": {"\u8c23\u8a00": 1, "\u7f3a\u5e2d": 1, "\u4ea7\u751f": 1}, "swollen": {"\u816b": 1, "\u8173": 1}, "irresistible": {"\u6297\u62d2": 3}, "mike": {"\u9ea5\u514b\u98a8": 1, "\u905e": 1}, "vaccinated": {"\u6d41\u611f\u75ab\u82d7": 1, "\u63a5\u79cd": 1}, "flu": {"\u6d41\u611f\u75ab\u82d7": 1, "\u63a5\u79cd": 1}, "commission": {"\u624b\u7eed\u8d39": 1}, "items": {"\u8d2d\u7269\u5355": 1, "\u9879\u76ee": 1}, "methods": {"\u79d1\u5b66": 1}, "internship": {"\u6691\u671f": 1, "\u5be6\u7fd2": 1, "\u61c9\u5fb5": 1}, "scumbag": {"\u65e0\u8cf4": 1}, "Raise": {"\u4e3e": 1}, "Strictly": {"\u5713": 1, "\u56b4\u683c": 1}, "honor": {"\u540d\u8b7d": 1, "\u5a01\u8105": 1}, "stake": {"\u540d\u8b7d": 1, "\u5a01\u8105": 1}, "T.V.": {"\u5b89\u5fc3": 1, "\u5f00": 1, "\u7535\u89c6": 1}, "diplomatic": {"\u89e3\u51b3": 1, "\u9014\u5f84": 1, "\u5916\u4ea4": 1}, "Me": {"\u6ca1\u60f3\u5230": 1, "\u8d62": 1}, "scholar": {"\u5b66\u8005": 1, "\u51e0\u5206": 1}, "Cash": {"\u6350\u8d60": 1, "\u73b0\u91d1": 1}, "donations": {"\u6350\u8d60": 1, "\u73b0\u91d1": 1}, "paintbrush": {"\u756b\u7b46": 1, "\u653e\u4e0b": 1}, "warehouse": {"\u746a\u9e97": 1, "\u5009\u5eab": 1, "\u7b49": 1}, "forties": {"\u7d50\u5a5a": 1, "\u56db\u5341\u591a": 1, "\u518d\u6b21": 1}, "unfortunately": {"\u53ef\u60dc": 1}, "1950": {"1950": 2, "\u51fa": 1, "4": 1}, "landlord": {"\u5730\u4e3b": 1, "\u63d0\u9ad8": 1, "\u79df\u91d1": 1}, "Clearly": {"\u986f\u7136": 1}, "uncles": {"\uff08": 1, "\u53d4\u53d4": 1, "\uff09": 1, "\u8205\u8205": 1, "\u6709\u6642": 1, "\u63a2\u671b": 1}, "divorces": {"\u7ed3\u5a5a": 1, "\u539f\u56e0": 1, "\u79bb\u5a5a": 1}, "steak": {"\u725b\u6392": 2}, "hostess": {"\u7a7a\u59d0": 1, "\u5a36": 1}, "arithmetic": {"\u8ba1\u7b97": 1, "\u51c6\u786e\u6027": 1}, "Accuracy": {"\u8ba1\u7b97": 1, "\u51c6\u786e\u6027": 1}, "external": {"\u786c\u789f": 1, "\u5916\u63a5\u5f0f": 1}, "AC": {"\u8c03": 1, "\u51b7\u6c14": 1, "\u9ad8\u70b9": 1}, "rowing": {"\u8f2a\u6d41": 1, "\u5212\u8239": 1}, "features": {"\u5177\u6709": 1, "\u7279\u8272": 1, "\u200b": 1, "\u5169\u8005": 1}, "unicycle": {"\u8a66\u8a66": 1, "\u9a0e": 1, "\u7368\u8f2a\u8eca": 1}, "hurricane": {"\u8fc7\u540e": 1, "\u66b4\u98ce\u96e8": 1, "\u5e9f\u589f": 1}, "Wi": {"Wi": 2, "\u5bc6\u78bc": 1, "Fi": 1}, "Fi": {"Wi": 1, "\u5bc6\u78bc": 1, "Fi": 2}, "memories": {"\u8bb0\u5fc6": 2}, "erase": {"\u62b9": 1, "\u8bb0\u5fc6": 1}, "fellow": {"\u597d\u4eba": 1}, "pragmatic": {"\u7406\u6027": 1, "\u611f\u60c5": 1}, "unlock": {"\u94a5\u5319": 1, "\u6253\u5f00": 1}, "religious": {"\u4fe1\u6559": 1}, "crucial": {"\u5173\u952e\u70b9": 1}, "Fight": {"\u6218\u6597": 1}, "strings": {"\u6697\u7bb1": 1, "\u64cd\u4f5c": 1}, "1636": {"\u54c8\u4f5b": 1, "\u59cb\u5efa": 1, "1636": 2}, "hook": {"\u639b": 1, "\u5916\u5957": 1, "\u9264\u5b50": 1}, "interrupting": {"\u6253\u64fe": 1, "\u4e0d\u8d77": 1}, "data": {"\u6578\u64da": 1, "\u6e96\u78ba": 1}, "resort": {"\u907f\u6691": 1, "\u52dd\u5730": 1}, "satisfy": {"\u4f17\u53e3\u96be\u8c03": 1}, "borders": {"\u4e0e": 1, "\u76f8\u90bb": 1}, "smallest": {"\u6700\u5c0f": 1, "\u6c34\u661f": 1}, "Mercury": {"\u6700\u5c0f": 1, "\u6c34\u661f": 1}, "ecstatic": {"\u5174\u594b\u4e0d\u5df2": 1}, "acquitted": {"\u8c0b\u6740\u7f6a": 1, "\u6cd5\u5ead": 1, "\u4f5c\u51fa": 1, "\u65e0\u7f6a\u5224\u51b3": 1}, "folks": {"\u517b\u8001\u9662": 1, "\u5f97\u53bb": 1}, "greet": {"\u6c92\u5411": 1, "\u6253\u62db\u547c": 1, "\u5834": 1}, "comics": {"\u756b": 1, "\u770b\u6f2b": 1}, "gibberish": {"\u80e1": 1}, "Washing": {"\u6d17\u8863\u670d": 1}, "balance": {"\u5e73\u8861": 1, "\u6454": 1, "\u843d\u4e0b\u6765": 1}, "peg": {"\u639b": 1, "\u639b\u9264": 1}, "windmill": {"\u8377\u5170": 1, "\u98ce\u8f66": 1}, "Netherlands": {"\u8377\u5170": 1, "\u98ce\u8f66": 1}, "balloon": {"\u6a39\u7d46": 1, "\u9846": 1, "\u6c23\u7403": 1}, "gratify": {"\u4e00\u90e8\u5206": 1, "\u6ee1\u8db3": 1, "\u540c\u65f6": 1, "\u53e6": 1, "\u505a\u5bf9": 1}, "cheating": {"\u8003\u8a66": 1, "\u6293\u5230": 1, "\u4f5c\u5f0a": 1}, "insufficient": {"\u62cd\u7167\u7247": 1, "\u5149\u7ebf": 1, "\u4eae": 1, "\u4e0d\u591f": 1}, "thirtieth": {"\u661f\u671f\u4e00": 1}, "fumbled": {"\u6478\u7d22": 1}, "resisting": {"\u62b5\u6297": 1}, "refreshing": {"\u51b7\u6c34": 1, "\u63d0\u795e": 1, "\u6691\u70ed": 1, "\u4e00\u676f": 1}, "California": {"\u6a59\u5b50": 1, "\u79cd": 1, "\u52a0\u5229\u798f\u5c3c\u4e9a": 1}, "Ford": {"\u798f\u7279": 1, "\u4e30\u7530": 1}, "Toyota": {"\u798f\u7279": 1, "\u4e30\u7530": 1}, "freshened": {"\u665a": 1, "\u98ef\u524d": 1, "\u68b3\u6d17\u6253\u626e": 1}, "yeast": {"\u53d1\u9175\u7c89": 1, "\u9762\u5305": 1}, "Robots": {"\u673a\u5668\u4eba": 1, "\u505a\u68a6": 1}, "aging": {"\u8001\u9f84\u5316": 1, "\u652f\u51fa": 1, "\u533b\u7597\u4fdd\u5065": 1}, "undergo": {"\u624b\u672f": 1}, "astrology": {"\u5360\u661f\u672f": 1}, "Iran": {"\u533a\u522b": 1, "\u4f0a\u6717": 1, "\u4f0a\u62c9\u514b": 1}, "Iraq": {"\u533a\u522b": 1, "\u4f0a\u6717": 1, "\u4f0a\u62c9\u514b": 1}, "prescribed": {"\u5f00": 1, "\u836f": 1}, "yourselves": {"\u5e2e\u4e0d\u4e86": 1}, "pretends": {"\u542c\u4e0d\u89c1": 1, "\u88c5": 1}, "tradition": {"\u50b3\u7d71": 1, "\u571f\u8033\u5176": 1}, "Turkish": {"\u50b3\u7d71": 1, "\u571f\u8033\u5176": 1}, "risked": {"\u8d22\u4ea7": 1, "\u5192": 1}, "poison": {"\u53e6\u5916": 1, "\u6709\u5229": 1, "\u672a\u5fc5": 1, "\u67d0\u4eba": 1}, "Centigrade": {"0": 1}, "0": {"0": 2}, "expressing": {"\u614c\u5f20": 1, "\u610f\u89c1": 1, "\u8868\u8fbe": 1}, "Waikiki": {"\u4e58": 1, "\u51e0\u8def": 1, "\u6000\u57fa\u57fa": 1}, "industrial": {"\u5de5\u4e1a": 1}, "DNA": {"\u68c0\u6d4b": 1, "DNA": 2, "\u8868\u660e": 1, "\u65e0\u8f9c": 1}, "childishly": {"\u5e7c\u7a1a": 1}, "tricked": {"\u54c4": 1}, "obviously": {"\u8fd8\u6709": 1, "\u660e\u663e": 1}, "scar": {"\u75a4": 1, "\u6211\u4f1a": 1, "\u7559": 1}, "forearmed": {"\u9810\u5148": 1, "\u51e1\u4e8b": 1, "\u6e96\u5099": 1}, "Forewarned": {"\u9810\u5148": 1, "\u51e1\u4e8b": 1, "\u6e96\u5099": 1}, "process": {"\u89e3\u91cb": 1, "\u904e\u7a0b": 1}, "booklet": {"\u514d\u8cbb": 1, "\u5c0f\u518a\u5b50": 1, "\u9019\u672c": 1}, "outskirts": {"\u6771": 1, "\u5340": 1, "\u4eac\u90ca": 1}, "reform": {"\u6539\u9769": 2}, "desires": {"\u6574\u4e2a": 1}, "exquisite": {"\u7368\u7279": 1, "\u666f\u81f4": 1, "\u5438\u5f15": 1, "\u89c0\u5149\u5ba2": 1}, "imaginary": {"\u865b\u69cb": 1, "\u79d1\u5b78\u5bb6": 1, "\u6548\u61c9": 1}, "scientists": {"\u865b\u69cb": 1, "\u79d1\u5b78\u5bb6": 1, "\u6548\u61c9": 1}, "musicians": {"\u97f3\u4e50\u5bb6": 1, "\u5144\u5f1f": 1, "\u4e24": 1}, "violated": {"\u4fb5\u72af": 1, "\u4e0d\u61c9": 1}, "mercy": {"\u4eba\u6c11": 1, "\u6b98\u66b4": 1, "\u7368\u88c1\u8005": 1, "\u6191": 1, "\u8655\u7f6e": 1, "\u53ef\u6190": 1}, "dictator": {"\u4eba\u6c11": 1, "\u6b98\u66b4": 1, "\u7368\u88c1\u8005": 1, "\u6191": 1, "\u8655\u7f6e": 1, "\u53ef\u6190": 1}, "lease": {"\u7b7e": 1, "\u79df\u7ea6": 1}, "crew": {"\u8239\u54e1": 1, "\u73fe": 1, "\u4e00\u5c0f": 1, "\u4ee3\u8239": 1, "\u7d44": 1}, "Mission": {"\u4efb\u52a1": 1}, "swear": {"\u53d1\u8a93": 1}, "Science": {"\u79d1\u5b78": 2}, "Sulfur": {"\u71d2\u8457": 1, "\u786b\u78fa": 1, "\u71c3": 1, "\u706b\u7130": 1, "\u85cd\u8272": 1}, "Pluto": {"\u5e74\u7d00\u6642": 1, "\u51a5\u738b\u661f": 1}, "dates": {"\u6559\u5802": 1, "\u8ffd\u6eaf\u5230": 1, "\u4e16\u7d00": 1, "\u8001": 1}, "twelfth": {"\u6559\u5802": 1, "\u8ffd\u6eaf\u5230": 1, "\u4e16\u7d00": 1, "\u8001": 1}, "Narita": {"\u62b5\u9054": 1, "\u6210\u7530": 1, "\u6a5f\u5834": 1}, "extreme": {"\u6975": 1, "\u7aef": 1}, "Acid": {"\u73b0\u8c61": 2, "\u9178\u96e8": 2}, "phenomenon": {"\u73b0\u8c61": 2, "\u9178\u96e8": 2}, "obscure": {"\u5b50": 1, "\u6a21\u7cca": 1, "\u53e5\u53e5": 1}, "Mr.": {"\u5982\u610f\u90ce\u541b": 1}, "Patience": {"\u6b66\u5668": 1, "\u6709\u65f6\u5019": 1}, "proposed": {"\u63d0\u8bae": 1, "\u8fdb\u884c": 1}, "outrank": {"\u7ea7\u522b": 1, "\u4e4b\u4e0a": 1, "\u8bb0\u4f4f": 1}, "chase": {"\u6293": 1}, "extraordinary": {"\u5bfb\u5e38": 1}, "wizard": {"\u672f\u58eb": 1}, "narrowly": {"\u96aa": 1, "\u6bba\u5bb3": 1}, "Smith": {"\u53f2\u5bc6\u65af": 1, "\u805a\u4f1a": 1, "\u4e0a\u89c1": 1}, "encores": {"\u92fc": 1, "\u7434\u5bb6": 1, "\u53ef\u66f2": 1, "\u5169\u9996": 1, "\u5b89": 1, "\u6f14\u594f": 1}, "Vote": {"\u6295\u7968": 1}, "declare": {"\u7533\u5831": 1, "\u6771\u897f": 1}, "dolled": {"\u6253\u626e": 1, "\u7ea6\u4f1a": 1, "\u7cbe\u5fc3": 1}, "persuaded": {"\u670d": 2, "\u7d42": 2}, "threatened": {"\u5a01\u80c1": 2}, "distasteful": {"\u4ee4": 1, "\u4e0d\u5feb": 1}, "refusal": {"\u62d2\u7d55": 1}, "interpreted": {"\u62d2\u7d55": 1}, "soap": {"\u6d17\u624b": 1, "\u80a5\u7682": 1}, "fooling": {"\u73a9\u7b11": 1, "\u96a8\u4fbf": 1}, "notebooks": {"\u6536\u8d77": 1, "\u7b46\u8a18": 1, "\u672c": 1}, "originally": {"\u5bb6\u5177": 1, "\u672c\u6765": 1}, "ours": {"\u4f60\u5011": 1, "\u968a\u4f0d": 1, "\u5f37": 1}, "Car": {"\u5728\u57ce\u9547": 1, "\u6c7d\u8f66\u5c3e\u6c14": 1}, "exhaust": {"\u5728\u57ce\u9547": 1, "\u6c7d\u8f66\u5c3e\u6c14": 1}, "causes": {"\u5728\u57ce\u9547": 1, "\u6c7d\u8f66\u5c3e\u6c14": 1}, "painter": {"\u756b\u5bb6": 1, "\u5f88\u68d2": 1}, "prey": {"\u730e\u7269": 1, "\u8ddf\u8e2a": 1}, "stalking": {"\u730e\u7269": 1, "\u8ddf\u8e2a": 1}, "3,000": {"3000": 1, "\u603b\u5171": 1}, "gang": {"\u5925": 1, "\u6436\u52ab": 1}, "robbery": {"\u5925": 1, "\u6436\u52ab": 1}, "leaning": {"\u9760\u8457": 1, "\u7246": 1}, "travelers": {"\u65c5\u884c\u652f\u7968": 2}, "Everest": {"\u6717": 1, "\u9ad8\u5ea6": 1, "\u73e0\u7a46": 1, "\u8fbe": 1, "\u5c71\u5cf0": 1, "\u746a\u5cf0": 1, "\u4e0d\u5230": 1}, "wit": {"\u4e0d\u77e5": 1, "\u6c92\u9322": 1, "\u8a72\u4f55": 1, "\u4f55": 1}, "bookworm": {"\u6240\u8c13": 1, "\u4e66\u866b": 1}, "user": {"\u7528\u6237": 1, "\u865a\u5047": 1, "\u8bc4\u8bba": 1, "\u4e9a\u9a6c\u900a": 1}, "semester": {"\u5b78\u671f": 1, "\u7d50\u675f": 1, "\u7b2c\u4e8c": 1}, "slightly": {"\u5473": 1, "\u5690": 1}, "babysitting": {"\u7167\u987e": 1, "\u5c0f\u5b69": 1, "\u8bf4\u670d": 1}, "Ostriches": {"\u9d15\u9ce5": 1}, "Prepare": {"\u5c06\u6765": 1}, "quitting": {"\u8f9e\u804c": 2}, "Later": {"\u5199\u4fe1\u7ed9": 1, "\u540e\u6765": 1}, "confidentially": {"\u54e6": 1}, "bygones": {"\u65e2\u5f80\u4e0d\u548e": 1}, "tributaries": {"\u652f\u6d41": 1, "\u4e9a\u9a6c\u900a\u6cb3": 1}, "childish": {"\u5e7c\u7a1a": 1}, "Station": {"\u6771\u4eac": 1, "\u706b\u8eca": 1, "\u7ad9\u63db": 1}, "mutual": {"\u57fa\u7840": 1, "\u53cb\u8c0a": 1, "\u5efa\u7acb": 1, "\u5f7c\u6b64": 1, "\u4fe1\u4efb": 1}, "knob": {"\u6253\u958b": 1, "\u8f49\u52d5": 1}, "adding": {"\u52a0\u4e3a\u597d\u53cb": 1}, "1865": {"1865": 2}, "shaver": {"\u7535\u52a8": 1, "\u8bd5\u4e00\u4e0b": 1, "\u5243\u987b\u5200": 1, "\u4e70\u4e0b": 1, "\u672c\u8be5": 1}, "inconvenience": {"\u5ef6\u8fdf": 1, "\u4e0d\u4fbf": 1, "\u8868\u793a\u9057\u61be": 1, "\u5e76": 1, "\u8fd9\u6b21": 1}, "65": {"65": 3}, "tractor": {"\u62d6\u62c9": 2}, "gallons": {"\u8acb\u7167": 1, "\u5e73\u5e38": 1, "\u4f96": 1, "\u4e94\u52a0": 1}, "Five": {"\u8acb\u7167": 1, "\u5e73\u5e38": 1, "\u4f96": 1, "\u4e94\u52a0": 1}, "secretly": {"\u6697\u604b\u7740": 1}, "Awesome": {"\u68d2": 1}, "Suruga": {"\u6cb3\u7063": 1, "\u5f9e\u99ff": 1}, "Bay": {"\u6cb3\u7063": 1, "\u5f9e\u99ff": 1}, "enthusiasm": {"\u611f\u53d7": 1}, "Bush": {"\u91cc\u6839": 1, "\u4e4b\u540e": 1, "\u7ee7": 1, "\u5f53\u4e0a": 1, "\u5e03\u4ec0": 1}, "Reagan": {"\u91cc\u6839": 1, "\u4e4b\u540e": 1, "\u7ee7": 1, "\u5f53\u4e0a": 1, "\u5e03\u4ec0": 1}, "illusion": {"\u5168\u662f": 1, "\u5e7b\u89c9": 1}, "shortest": {"\u6700\u77ed": 1, "\u4e00\u689d": 1}, "injury": {"\u514d": 1, "\u4e26\u975e": 1, "\u53d7\u50b7": 1}, "goof": {"\u5077\u61d2": 1, "\u6240\u6709\u4eba": 1}, "dances": {"\u821e": 1}, "homeroom": {"\u5c0e\u5e2b": 1}, "respects": {"\u5c0e\u5e2b": 1}, "elders": {"\u8001\u4eba": 1}, "Clothes": {"\u4eba\u8981": 1, "\u8863\u88dd": 1}, "shops": {"\u51e0\u5bb6": 1, "\u6211\u5bb6": 1}, "extracted": {"\u662f\u4ece": 1, "\u6a44\u6984": 1, "\u63d0\u70bc": 1}, "olives": {"\u662f\u4ece": 1, "\u6a44\u6984": 1, "\u63d0\u70bc": 1}, "Oil": {"\u662f\u4ece": 1, "\u6a44\u6984": 1, "\u63d0\u70bc": 1}, "discriminate": {"\u6b67\u89c6": 1}, "border": {"\u529e\u6cd5": 1, "\u7a7f\u8fc7": 1, "\u8fb9\u754c": 1}, "survivor": {"\u707e\u96be": 1, "\u5a74\u513f": 1, "\u8fd9\u573a": 1, "\u5e78\u5b58\u8005": 1}, "brook": {"\u6eaa\u6d41": 1, "\u6f7a\u6f7a": 1, "\u50ac": 1, "\u5165\u7720": 1}, "lulls": {"\u6eaa\u6d41": 1, "\u6f7a\u6f7a": 1, "\u50ac": 1, "\u5165\u7720": 1}, "murmur": {"\u6eaa\u6d41": 1, "\u6f7a\u6f7a": 1, "\u50ac": 1, "\u5165\u7720": 1}, "detergent": {"\u6db2": 1, "\u6d17\u8863": 1}, "switch": {"\u5ea7\u4f4d": 1, "\u6362": 1, "\u613f\u610f": 1}, "lung": {"\u80ba\u764c": 3}, "fatal": {"\u6765\u8bf4": 1, "\u6709\u65f6\u5019": 1, "\u53e3\u8bef": 1}, "VCR": {"\u5f55\u50cf\u673a": 1, "\u4f4e\u4ef7": 1}, "editor": {"\u7f16\u8f91": 1}, "click": {"\u9ede\u64ca": 1, "\u8072": 1}, "quarrelled": {"\u5f1f\u5f1f": 1, "\u5435": 1}, "drawers": {"\u529e\u516c\u684c": 1, "\u62bd\u5c49": 1}, "accompanies": {"\u966a": 1}, "12": {"\u56fe\u4e66\u9986": 1, "\u9192": 1, "\u624d": 1, "\u672c": 1, "\u6253\u7b97": 1}, "Tigers": {"\u7adf\u7136": 1, "\u6bd4\u8cfd": 1, "\u968a": 1, "\u8f38\u6389": 1, "\u9a5a\u8a1d": 1, "\u8001\u864e": 1}, "resolved": {"\u6848\u4ef6": 1, "\u77ed": 1}, "fabric": {"\u88fd": 1, "\u7269": 1, "\u8584\u7e54": 1, "\u9019\u4ef6": 1}, "geography": {"\u5730\u7406": 1}, "feed": {"\u5582": 3}, "peacefully": {"\u5b89\u8be6": 1, "\u7761\u7720": 1}, "tolerate": {"\u5fcd\u53d7": 1, "\u566a\u97f3": 1}, "calculator": {"\u8a08\u7b97\u6a5f": 1, "\u6c92\u96fb": 1, "\u96fb\u6c60": 1}, "garbage": {"\u522b\u5fd8\u4e86": 1, "\u5783\u573e": 1, "\u62ff\u51fa": 1}, "rudeness": {"\u7c97\u9c81": 1, "\u9053\u6b49": 1}, "unnatural": {"\u975e": 1, "\u5374": 1, "\u6d41\u7545": 1, "\u901a\u987a": 1, "\u6bcd\u8bed": 1}, "popcorn": {"\u7206\u7c73\u82b1": 1}, "investors": {"\u5916\u56fd": 1, "\u6536\u56de": 1, "\u6295\u8d44\u8005": 1}, "Foreign": {"\u5916\u56fd": 1, "\u6536\u56de": 1, "\u6295\u8d44\u8005": 1}, "withdrew": {"\u5916\u56fd": 1, "\u6536\u56de": 1, "\u6295\u8d44\u8005": 1}, "waterproof": {"\u9336": 1, "\u9632\u6c34": 1}, "walls": {"\u7246\u58c1": 1, "\u7da0\u8272": 1, "\u6f06\u6210": 1}, "dieting": {"\u8282\u98df": 3}, "ignorance": {"\u81ea\u4fe1": 1, "\u65e0\u77e5": 1}, "teapot": {"\u8acb\u7528": 1, "\u8336\u58fa": 1, "\u704c\u6eff": 1, "\u958b\u6c34": 1}, "Anyway": {"\u6c38\u9060": 1, "\u600e\u6a23": 1}, "relationship": {"\u4fc2": 1}, "stroke": {"\u4e2d\u6691": 1}, "derived": {"\u55ae\u5b57": 1, "\u62c9\u4e01\u6587": 1, "\u6e90\u81ea": 1}, "Latin": {"\u55ae\u5b57": 1, "\u62c9\u4e01\u6587": 1, "\u6e90\u81ea": 1}, "eroded": {"\u7ee7\u7eed": 1, "\u7ade\u4e89": 1, "\u524a\u5f31": 1, "\u4f18\u52bf": 1, "\u79bb\u5f00": 1}, "competitive": {"\u7ee7\u7eed": 1, "\u7ade\u4e89": 1, "\u524a\u5f31": 1, "\u4f18\u52bf": 1, "\u79bb\u5f00": 1}, "Ouch": {"\u75db": 1, "\u5939\u5230": 1, "\u95e8": 1}, "cupcakes": {"\u86cb\u7cd5": 1, "\u5b8c": 1, "\u676f\u5f62": 1, "\u67d0\u4eba": 1}, "expired": {"\u904e\u671f": 2}, "hen": {"\u6bcd": 1, "\u96de": 1, "\u4e86\u4e00": 1}, "bamboo": {"\u7af9\u5b50": 1, "\u751f\u9577": 1}, "Break": {"\u505c\u624b": 1}, "designer": {"\u8a2d\u8a08": 1, "\u5e2b": 1}, "Strange": {"\u8bf4\u6765": 1, "\u6d88\u606f": 1, "\u5947\u602a": 1}, "Language": {"\u4ea4\u6d41": 1, "\u8bed\u8a00": 1, "\u4e0e": 1, "\u4ed6\u4eba": 1}, "Professional": {"\u5c08\u8077": 1, "\u56fa\u5b9a": 1, "\u6536\u5165": 1}, "Soldiers": {"\u5c65\u884c": 1, "\u8ecd\u4eba": 1, "\u547d\u4ee4": 1}, "clue": {"\u4e00\u65e0\u6240\u77e5": 1}, "technology": {"\u8212\u9002": 1, "\u73b0\u4ee3": 1, "\u79d1\u5b66\u6280\u672f": 1, "\u66f4\u52a0": 1}, "affect": {"\u5176\u4ed6\u4eba": 1, "\u5f71\u97ff": 1, "\u884c\u70ba": 1}, "meth": {"\u7537": 1, "\u5438\u6bd2": 1}, "addict": {"\u7537": 1, "\u5438\u6bd2": 1}, "construct": {"\u8b80\u5b8c": 1, "\u4e00\u68df": 1, "\u69cb\u5efa": 1}, "180": {"\u5dee\u4e0d\u591a": 1, "180": 2}, "Tulips": {"\u76db\u958b": 1, "\u9b31\u91d1\u9999": 1}, "Singapore": {"\u65b0\u52a0\u5761": 2}, "encouragement": {"\u9f13\u52f5": 1}, "deodorant": {"\u9664\u81ed\u5242": 1}, "leaned": {"\u8eab\u5b50": 1, "\u9760": 1, "\u80f3\u818a": 1}, "tower": {"\u5854": 1, "\u6700\u9ad8": 1}, "association": {"\u5354\u6703": 1, "\u6703\u54e1": 1, "\u7533\u8acb": 1}, "pessimistic": {"\u60b2\u89c2": 1}, "wrapped": {"\u88f9\u8d77": 1, "\u6bef\u5b50": 1, "\u4e00\u689d": 1}, "gasoline": {"\u6cb9\u4ef7": 1, "\u4e0a\u6da8": 1, "\u53ef\u80fd\u6027": 1}, "financial": {"\u8d22\u653f\u56f0\u96be": 1, "\u9762\u4e34": 1, "\u4fc4\u7f57\u65af": 1}, "impressions": {"\u4eba\u9645\u4ea4\u5f80": 1, "\u767e\u5206\u4e4b\u4e94\u5341": 1, "\u5185\u5bb9": 1, "\u7b2c\u4e00\u5370\u8c61": 1, "\u5c06\u8981": 1}, "determine": {"\u4eba\u9645\u4ea4\u5f80": 1, "\u767e\u5206\u4e4b\u4e94\u5341": 1, "\u5185\u5bb9": 1, "\u7b2c\u4e00\u5370\u8c61": 1, "\u5c06\u8981": 1}, "humiliate": {"\u7f9e\u8fb1": 1}, "jointly": {"\u9879\u76ee": 1}, "remarkable": {"\u9032\u6b65": 1, "\u986f\u8457": 1}, "Yokohama": {"\u6a2a\u6ee8": 1}, "Really": {"\u786e\u5b9a": 1}, "distract": {"\u6253\u6270": 1}, "abilities": {"\u624d\u80fd": 1}, "hammered": {"\u9189": 1}, "Finnish": {"\u82ac\u5170\u4eba": 1}, "journal": {"\u8bb0\u65e5\u8bb0": 1}, "cigar": {"\u96ea\u8304": 1}, "strategy": {"\u7b56\u7565": 1}, "toothaches": {"\u7259\u533b": 1, "\u7259\u75db": 1, "\u5b9a\u671f": 1}, "Continue": {"\u7e7c\u7e8c": 1}, "intruded": {"\u9690\u79c1": 1, "\u4fb5\u72af": 1}, "fails": {"\u5b88\u7ea6": 1}, "blocks": {"\u8f49": 1, "\u5de6": 1, "\u7136": 1, "\u8857\u5340": 1}, "Umbrellas": {"\u96e8\u4f1e": 1}, "testing": {"\u8bd5\u63a2": 1}, "paragraph": {"\u6bb5\u843d": 1, "\u6a21\u7cca\u4e0d\u6e05": 1}, "searching": {"\u7269\u54c1": 1, "\u4e00\u4e2a\u6708": 1, "\u5927\u6982": 1}, "justifies": {"\u4e0d\u64c7": 1, "\u76ee\u7684": 1, "\u6b63\u7576": 1}, "employment": {"\u54e1\u5de5": 1, "\u5c31\u696d": 1, "\u4fdd\u8b49": 1}, "material": {"\u6750\u6599": 1}, "vitamin": {"\u7dad\u751f\u7d20": 1, "\u8514": 1, "\u542b\u6709": 1, "\u80e1\u863f": 1, "A": 1}, "A.": {"\u7dad\u751f\u7d20": 1, "\u8514": 1, "\u542b\u6709": 1, "\u80e1\u863f": 1, "A": 1}, "2008": {"\u4e00\u5e74": 1, "2008": 2, "\u76f8\u9047": 1, "\u7d50\u5a5a": 1}, "instructor": {"\u61c9": 1, "\u99d5\u99db": 1, "\u6559\u7df4": 1, "\u8a72": 1}, "allied": {"\u610f\u5927\u5229": 1, "\u540c\u76df\u56fd": 1, "\u5fb7\u56fd": 1}, "antenna": {"\u8bd5": 1, "\u5b89\u88c5": 1, "\u5929\u7ebf": 1}, "install": {"\u8bd5": 1, "\u5b89\u88c5": 1, "\u5929\u7ebf": 1}, "Waste": {"\u5247": 1, "\u5331\u4e4f": 1, "\u6d6a\u8cbb": 1}, "Promises": {"\u4e0d\u5920": 1, "\u627f\u8afe": 1}, "19th": {"\u4e16\u7eaa": 1, "19": 1}, "shovel": {"\u63e1\u7d27": 1, "\u94f2\u5b50": 1}, "shirtless": {"\u4e0a\u8eab": 1, "\u8d64\u88f8": 1}, "Goodbyes": {"\u79bb\u522b": 1, "\u60b2\u4f24": 1}, "stingy": {"\u5f88\u5c0f": 1, "\u6c14": 1}, "ample": {"\u8d76\u4e0a": 1, "\u5145\u88d5": 1}, "Trim": {"\u5207\u9664": 1, "\u8089": 1, "\u9019\u584a": 1, "\u8102\u80aa": 1}, "rises": {"\u7e3d": 1, "\u5347\u8d77": 1, "\u592a\u967d": 1}, "arrow": {"\u5c04": 1, "\u9e7f\u4e00\u7bad": 1}, "Mastering": {"\u4e00\u95e8": 1, "\u5916\u8bed": 1, "\u638c\u63e1": 1}, "parallel": {"\u5e73\u884c": 1, "\u94c1\u8def": 1, "\u516c\u8def": 1, "\u4e0e": 1}, "helpful": {"\u5e2e\u5230": 1}, "mopped": {"\u5730\u677f": 1, "\u64e6": 1}, "unfairly": {"\u4e0d\u516c\u5e73\u5730": 1, "\u5c0d\u5f85": 1}, "somewhat": {"\u6709\u70b9\u50cf": 1}, "Up": {"\u76ee\u524d\u4e3a\u6b62": 1, "\u9605\u8bfb": 1, "\u4e66\u7c4d": 1}, "Wet": {"\u76ae\u819a": 1, "\u8cbc\u8457": 1, "\u6fd5": 1}, "woodcutter": {"\u5973\u5152": 1, "\u738b\u5b50": 1, "\u6a35\u592b": 1}, "premonition": {"\u8bc1\u660e": 1, "\u9884\u611f": 1}, "concept": {"\u6982\u5ff5": 1, "\u660e\u767d": 1}, "Despite": {"\u5bcc\u6709": 1, "\u6ee1\u8db3": 1}, "riches": {"\u5bcc\u6709": 1, "\u6ee1\u8db3": 1}, "peanuts": {"\u5fd8\u8bb0": 2, "\u8fc7\u654f": 2, "\u82b1\u751f": 2}, "restless": {"\u4e0d\u5b89": 1}, "ham": {"\u706b\u817f\u4e09\u660e": 1, "\u6cbb": 1}, "veterinarian": {"\u7378": 1, "\u91ab": 1}, "sink": {"\u810f": 1, "\u653e\u8fdb": 1, "\u6c34\u6c60": 1, "\u76d8\u5b50": 1}, "original": {"\u898b\u89e3": 1, "\u7368\u5230": 1}, "bounce": {"\u4e1c\u5c71\u518d\u8d77": 1}, "architecture": {"\u7f85\u99ac": 1, "\u5176": 1, "\u53e4\u4ee3": 1, "\u805e\u540d": 1, "\u5efa\u7bc9": 1}, "defended": {"\u5927\u519b": 1, "\u4e00\u652f": 1, "\u5b88\u536b": 1}, "grasped": {"\u7e69\u5b50": 1}, "Hamamatsu": {"\u7bc0": 1, "\u6ff1\u677e": 1, "\u98a8\u7b8f": 1}, "trout": {"\u70e7": 1, "\u9c91\u9c7c": 1}, "Shinjuku": {"\u5982\u4f55": 1, "\u65b0\u5bbf": 1}, "brain": {"\u91ab\u751f": 1, "\u8166": 1, "\u5916\u79d1": 1}, "surgeon": {"\u91ab\u751f": 1, "\u8166": 1, "\u5916\u79d1": 1}, "update": {"\u66f4\u65b0": 1}, "Express": {"\u8fa6": 1, "\u904b\u901a": 1, "\u516c\u5ba4": 1}, "encountered": {"\u6545\u969c": 1, "\u9047\u5230": 1}, "Biwa": {"\u6e56": 1, "\u7435\u7436\u6e56": 1}, "dialed": {"\u62e8\u6253": 1, "\u53f7\u7801": 1}, "Studying": {"\u5e38\u898b": 1, "\u7559\u5b78": 1, "\u51fa\u570b": 1}, "harvest": {"\u4eca\u5e74": 1, "\u8c50\u6536": 1}, "Ukrainian": {"\u5168\u4e16\u754c": 1, "\u59d1\u5a18": 1, "\u4e4c\u514b\u5170": 1}, "underwater": {"\u6f5c\u6c34": 1}, "offered": {"\u7968": 1, "\u97f3\u4e50\u4f1a": 1}, "Wow": {"\u597d\u4e45": 1, "\u4e0d\u898b": 1, "!": 1, "\u54c7": 1}, "Apples": {"\u860b\u679c": 1, "\u7576\u4f5c": 1, "\u751c\u9ede": 1}, "thirteen": {"\u79bb\u5bb6\u51fa\u8d70": 1, "\u5341\u4e09\u5c81": 1}, "Akita": {"\u5927\u962a": 1, "\u8f66\u8d39": 1, "\u79cb\u7530": 1}, "cared": {"\u95dc\u5fc3": 1}, "anyway": {"\u8981\u8bf4": 1}, "Shame": {"\u4e22\u8138": 1}, "lovely": {"\u554a": 1, "\u53ef\u7231": 1}, "Aso": {"\u963f\u8607\u5c71": 1, "\u6d3b\u706b\u5c71": 1}, "skull": {"\u9aa8": 1, "\u80f8\u4e0a": 1}, "museums": {"\u535a\u7269\u9986": 1}, "tunes": {"\u8ba4\u51fa": 1, "\u8c03\u5b50": 1, "\u6f14\u594f": 1}, "guarantee": {"\u786e\u4fdd": 1}, "nests": {"\u9e1f\u513f": 1, "\u7b51\u5de2": 1}, "betrays": {"\u51fa\u5356": 1}, "Texting": {"\u6253\u5b57": 1, "\u958b\u8eca": 1}, "Lightning": {"\u96fb": 1, "\u5e38\u5e38": 1, "\u4f34\u96a8": 1, "\u9583": 1, "\u96f7\u9cf4": 1}, "unconscious": {"\u5730\u677f": 1, "\u5012": 1, "\u4e0d\u7701\u4eba\u4e8b": 1, "\u53a8\u623f": 1}, "importation": {"\u91ce\u751f\u52a8\u7269": 1, "\u8be5\u56fd": 1, "\u8fdb\u53e3": 1, "\u4e25\u7981": 1, "\u7a00\u6709": 1}, "campfire": {"\u7fd2\u6163": 1, "\u505a\u83dc": 1, "\u7528\u71df": 1}, "Stir": {"\u6c64": 1}, "Cover": {"\u906e\u4f4f": 1, "\u967d\u5149": 1}, "stew": {"\u7f8e\u5473": 1, "\u8d77\u4f86": 1, "\u58a9": 1, "\u6e6f\u805e": 1, "\u934b": 1}, "Light": {"\u9ede\u71c3": 1, "\u881f\u71ed": 1}, "industry": {"\u5c9b": 1, "\u6e14\u4e1a": 1, "\u4f9d\u9760": 1}, "essay": {"\u4e00\u7bc7": 1, "\u8b80": 1, "\u77ed\u6587": 1}, "atrocious": {"\u60e1\u52a3": 1}, "unidentified": {"\u7269\u9ad4": 1, "UFO": 1, "\u98db\u884c": 1, "\u4e0d\u660e": 1}, "bedrooms": {"\u81e5\u5ba4": 1, "\u4e09\u500b": 1}, "confess": {"\u7d2f": 1}, "shampoo": {"\u54ea\u7a2e": 1, "\u6d17": 1}, "downs": {"\u9ad8\u4f4e": 2, "\u8d77\u4f0f": 2}, "ups": {"\u9ad8\u4f4e": 2, "\u8d77\u4f0f": 2}, "vases": {"\u73bb\u7483": 1, "\u82b1\u74f6": 1}, "Wearing": {"\u897f\u88dd": 1, "\u7ad9": 1, "\u51fa\u4f86": 1}, "synchronize": {"\u6821": 1, "\u9336": 1}, "strict": {"\u6b64": 1, "\u56b4\u683c": 1}, "burden": {"\u8d23\u4efb": 1, "\u8d1f\u62c5": 1}, "susceptible": {"\u6613": 1, "\u60a3\u611f\u5192": 1}, "vat": {"\u786b\u9178": 1, "\u6454\u5012": 1, "\u4e00\u6876": 1}, "sulfuric": {"\u786b\u9178": 1, "\u6454\u5012": 1, "\u4e00\u6876": 1}, "browser": {"\u6d4f\u89c8\u5668": 1}, "buffaloes": {"\u6e56\u908a": 1, "\u6578\u4ee5\u767e\u8a08": 1, "\u6c34\u725b": 1}, "Hundreds": {"\u6e56\u908a": 1, "\u6578\u4ee5\u767e\u8a08": 1, "\u6c34\u725b": 1}, "lines": {"\u5730\u56fe": 1, "\u84dd\u7ebf": 1, "\u6cb3\u6d41": 1}, "represent": {"\u5730\u56fe": 1, "\u84dd\u7ebf": 1, "\u6cb3\u6d41": 1}, "Excess": {"\u904e\u5ea6": 1, "\u7169\u4eba": 1, "\u79ae\u8c8c": 1}, "politeness": {"\u904e\u5ea6": 1, "\u7169\u4eba": 1, "\u79ae\u8c8c": 1}, "feeds": {"\u5582": 1}, "err": {"\u552f": 1, "\u6055": 1, "\u6709\u932f": 1, "\u8056\u8005": 1, "\u7686": 1}, "divine": {"\u552f": 1, "\u6055": 1, "\u6709\u932f": 1, "\u8056\u8005": 1, "\u7686": 1}, "punishes": {"\u6bcd\u89aa": 1, "\u61f2\u7f70": 1, "\u5f9e\u4f86": 1}, "glitters": {"\u4e0d\u8db3": 1, "\u5920": 1, "\u8868\u9762": 1, "\u5149": 1}, "Portugal": {"\u6765\u81ea": 1, "\u8461\u8404\u7259": 1}, "mistakenly": {"\u8bef\u5220": 1, "\u6587\u4ef6": 1}, "cure": {"\u79d1\u5b66\u5bb6": 1}, "flawed": {"\u672c\u8eab": 1, "\u8a2d\u8a08": 1}, "1876": {"1876": 2, "\u8c9d\u723e": 1, "\u767c\u660e": 1}, "accelerated": {"\u63d0\u901f": 1}, "aerobics": {"\u6bcf\u661f\u671f": 1, "\u4e00\u6b21": 1, "\u5065\u7f8e\u64cd": 1}, "dried": {"\u6e7f": 1, "\u65c1": 1, "\u70d8\u5e72": 1}, "uses": {"\u8fd8\u6709": 1}, "Turkey": {"\u54ea\u513f": 1, "\u571f\u8033\u5176": 1}, "tolerated": {"\u5973\u58eb": 1, "\u5bb9\u5fcd": 1}, "karaoke": {"\u5982\u6b64": 1}, "bar": {"\u8e22": 1, "\u9152\u5427": 1, "\u51fa": 1}, "Vienna": {"\u7dad\u4e5f\u7d0d": 1}, "Germans": {"\u5fb7\u56fd\u4eba": 1, "\u559d\u5564\u9152": 1}, "joints": {"\u95dc\u7bc0": 1, "\u75bc\u75db": 1, "\u7576\u5929": 1, "\u6c23\u8b8a": 1, "\u51b7": 1}, "gym": {"\u5065\u8eab\u623f": 1, "\u8a3b": 1, "\u518a": 1}, "quitter": {"\u653e\u68c4": 1, "\u8f15\u6613": 1}, "assumption": {"\u8bbe\u60f3": 1}, "sandwiches": {"\u4e09\u660e\u6cbb": 1, "\u65e9\u9910": 1}, "coast": {"\u6751\u5c4b": 1, "\u6d77\u5cb8": 1}, "unavoidable": {"\u4e0d\u53ef\u907f\u514d": 1, "\u8fd9\u91cc": 1}, "Drinking": {"\u8eab\u4f53": 1, "\u4e00\u6b21\u6027": 1, "\u597d\u5904": 1, "\u591a\u70b9": 1, "\u867d\u7136": 1}, "discs": {"\u5531\u7247": 1}, "syrup": {"\u7518\u8349": 1, "\u5473\u9053": 1, "\u7cd6\u6d46": 1}, "licorice": {"\u7518\u8349": 1, "\u5473\u9053": 1, "\u7cd6\u6d46": 1}, "flavoring": {"\u7518\u8349": 1, "\u5473\u9053": 1, "\u7cd6\u6d46": 1}, "applicants": {"\u5408\u683c": 1, "\u7533\u8bf7\u4eba": 1}, "Ignore": {"\u522b\u7406": 1}, "formed": {"\u7ec4\u6210": 1, "\u4e00\u652f": 1, "\u6bd4\u8d5b": 1, "\u5212\u8239": 1, "\u961f\u4f0d": 1}, "Stuff": {"\u96be\u514d\u4f1a": 1}, "emperor": {"\u8bf7\u6c42": 1, "\u7687\u5e1d": 1, "\u9976\u6055": 1}, "forgiveness": {"\u8bf7\u6c42": 1, "\u7687\u5e1d": 1, "\u9976\u6055": 1}, "grammatically": {"\u8bed\u6cd5": 1}, "carpentry": {"\u64c5\u9577": 1, "\u6728\u5de5": 1}, "deity": {"\u4f9b\u5949": 1, "\u5e99\u5b87": 1, "\u54ea\u4e2a": 1, "\u795e": 1}, "irresponsible": {"\u4e0d\u8d1f\u8d23\u4efb": 1, "\u6001\u5ea6": 1}, "alarmed": {"\u4e0d\u8d1f\u8d23\u4efb": 1, "\u6001\u5ea6": 1}, "salmon": {"\u4e09\u6587": 1, "\u5403\u8457": 1, "\u9b5a": 1}, "stocks": {"\u80a1\u7968": 1}, "GNP": {"\u6c11\u751f": 1, "\u4e00\u5b63": 1, "\u7522\u7e3d\u503c": 1, "1": 1, "\u8f03": 1, "\u7b2c\u4e09\u5b63": 1}, "1": {"\u6c11\u751f": 1, "\u4e00\u5b63": 1, "\u7522\u7e3d\u503c": 1, "1": 2, "\u8f03": 1, "\u7b2c\u4e09\u5b63": 1}, "preceding": {"\u6c11\u751f": 1, "\u4e00\u5b63": 1, "\u7522\u7e3d\u503c": 1, "1": 1, "\u8f03": 1, "\u7b2c\u4e09\u5b63": 1}, "tax": {"\u7a0e": 2}, "woolen": {"\u6eab\u6696": 1, "\u4e00\u4ef6": 1, "\u88d9": 1}, "square": {"\u9762\u79ef": 1, "1000": 1, "\u5de5\u5382": 1, "\u5e73\u65b9\u7c73": 1}, "survival": {"\u653e\u68c4": 1, "\u751f\u5b58": 1}, "core": {"\u900f": 1, "\u58de": 1}, "Heights": {"\u4e0b\u96ea": 1, "\u65f6\u4f1a": 1, "\u5fd7": 1, "\u8d3a": 1, "\u9ad8\u539f": 1}, "Shiga": {"\u4e0b\u96ea": 1, "\u65f6\u4f1a": 1, "\u5fd7": 1, "\u8d3a": 1, "\u9ad8\u539f": 1}, "Bookstore": {"\u4e66\u5546": 1, "Maruzen": 1}, "Maruzen": {"\u4e66\u5546": 1, "Maruzen": 2}, "bright": {"\u7231\u8fea\u751f": 1, "\u4f18\u79c0": 1}, "Had": {"\u8ba1\u5212": 1, "\u6539\u53d8": 1, "\u8981\u662f": 1}, "composition": {"\u8a02\u6b63": 1, "\u4f5c\u6587": 1}, "corrected": {"\u8a02\u6b63": 1, "\u4f5c\u6587": 1}, "Experience": {"\u7d93\u9a57": 1}, "countryside": {"\u4e61\u95f4": 1, "\u6811": 1}, "tends": {"\u5f80\u5f80": 2}, "Parents": {"\u8bf4\u8c0e": 1}, "thorns": {"\u73ab\u7470": 1, "\u5e36\u523a": 1}, "ironing": {"\u71a8": 1}, "whets": {"\u80c3": 1}, "avoided": {"\u6230\u722d": 1, "\u4ee3\u50f9": 1, "\u4e0d\u60dc\u4e00\u5207": 1}, "recognition": {"\u8a8d\u53ef": 2}, "passive": {"\u6d3b\u52d5": 1, "\u88ab\u52d5": 1, "\u770b\u96fb\u8996": 1}, "Watching": {"\u6d3b\u52d5": 1, "\u88ab\u52d5": 1, "\u770b\u96fb\u8996": 1}, "strawberry": {"\u5473": 1, "\u51b0\u6dc7\u6dcb": 1}, "crawl": {"\u6e38": 1, "\u81ea\u7531\u5f0f": 1}, "softly": {"\u5c0f\u70b9\u58f0": 1}, "donates": {"\u6148\u5584\u673a\u6784": 1, "\u85aa\u6c34": 1, "\u6350": 1, "\u4e00\u534a": 1}, "charity": {"\u6148\u5584\u673a\u6784": 1, "\u85aa\u6c34": 1, "\u6350": 1, "\u4e00\u534a": 1}, "reread": {"\u513f\u5b50": 1, "\u91cd\u6e29": 1, "\u8fd9\u4f4d": 1, "\u5076\u5c14": 1, "\u4fe1\u4ef6": 1}, "research": {"\u7814\u7a76": 1, "\u79f0\u4e4b\u4e3a": 1}, "actions": {"\u91c7\u53d6": 1, "\u884c\u52a8": 1}, "title": {"\u66f8\u540d": 1, "\u65b0\u66f8": 1}, "sashimi": {"\u6b61\u751f": 1, "\u559c": 1, "\u9b5a\u7247": 1}, "hunters": {"\u7784\u51c6": 1, "\u730e": 1, "\u67aa": 1}, "stooped": {"\u9d5d": 1, "\u64bf": 1, "\u4e00\u584a": 1, "\u5375\u77f3": 1}, "pebble": {"\u9d5d": 1, "\u64bf": 1, "\u4e00\u584a": 1, "\u5375\u77f3": 1}, "rifle": {"\u80a9\u4e0a": 1, "\u6b65\u69cd": 1, "\u80cc": 1}, "peach": {"\u6843\u6811": 1, "\u79cd": 1, "\u9662\u5b50": 1, "\u68f5": 1}, "maintain": {"\u7dad\u6301": 1, "\u8072\u8b7d": 1, "\u96e3": 1}, "fright": {"\u767c\u767d": 1, "\u81c9\u8272": 1}, "Jack": {"\u7761\u89ba": 1, "\u5091\u514b": 1}, "navy": {"\u6d77\u8ecd": 1, "\u52a0\u5165": 1}, "Teresa": {"\u6388\u4e88": 1, "\u4fee\u5973": 1, "\u7279\u857e": 1, "\u838e": 1}, "Nobel": {"\u8afe\u8c9d\u723e\u734e": 2}, "839": {"839": 2}, "Room": {"839": 1}, "literally": {"\u5b57\u9762\u4e0a": 1}, "Leaves": {"\u6a39\u8449": 1, "\u5341\u6708": 1, "\u6389\u843d": 1, "\u4e0b\u4f86": 1}, "fifteen": {"\u5206\u949f": 1, "15": 1}, "tries": {"\u8bd5\u8bd5": 1}, "canoe": {"\u884c": 1, "\u4e58\u8457": 1, "\u4e0b\u6e38": 1, "\u7368": 1, "\u6728\u821f": 1, "\u5411\u6cb3": 1}, "miserly": {"\u5f88\u5c0f": 1, "\u6c14": 1}, "Books": {"\u53e6": 1}, "muttering": {"\u5600\u5495": 1, "\u542c\u5230": 1}, "Ladies": {"\u610f\u5916": 1, "\u5973\u58eb\u4eec": 1, "\u7740\u9646": 1, "\u63a8\u8fdf": 1, "\u673a\u573a": 1}, "gentlemen": {"\u610f\u5916": 1, "\u5973\u58eb\u4eec": 1, "\u7740\u9646": 1, "\u63a8\u8fdf": 1, "\u673a\u573a": 1}, "electrician": {"\u96fb\u5de5": 1}, "laughter": {"\u7b11\u58f0": 1, "\u80af\u5b9a": 1, "\u6700\u4e3a": 1, "\u865a\u5ea6": 1}, "yelled": {"\u547c\u6551": 1}, "includes": {"\u4ef7\u683c": 1, "\u542b": 1}, "dies": {"\u9057\u61be": 1}, "observe": {"\u9075\u5b88\u89c4\u5219": 1}, "footsteps": {"\u811a\u6b65": 1, "\u8ffd\u968f": 1}, "parts": {"\u5206\u6210": 1, "\u62ab\u85a9": 1, "\u4e09\u4efd": 1}, "slid": {"\u5cb8\u908a": 1, "\u6ed1\u4e0b": 1}, "greedy": {"\u8caa\u5a6a": 1}, "planes": {"\u98db\u6a5f": 1, "\u5efa\u9020": 1, "\u6a21\u578b": 1}, "jumping": {"\u5973\u5152": 1, "\u7e69": 1}, "History": {"\u8bfe": 1, "\u4e3b\u4fee": 1}, "Greenland": {"\u683c\u9675\u862d": 1, "\u5927\u9678": 1}, "continent": {"\u683c\u9675\u862d": 1, "\u5927\u9678": 1}, "tales": {"\u544a\u5bc6": 1}, "Dead": {"\u544a\u5bc6": 1}, "Lumpur": {"\u904a": 1, "\u503c\u5f97": 1, "\u5409\u9686\u5761": 1}, "Kuala": {"\u904a": 1, "\u503c\u5f97": 1, "\u5409\u9686\u5761": 1}, "musician": {"\u5049\u5927": 1, "\u8c9d\u591a\u82ac": 1, "\u97f3\u6a02\u5bb6": 1}, "Beethoven": {"\u5049\u5927": 1, "\u8c9d\u591a\u82ac": 1, "\u97f3\u6a02\u5bb6": 1}, "elderberry": {"\u63a5\u9aa8\u6728": 1, "\u679c\u6c41": 1}, "Languages": {"\u8bed\u8a00": 1}, "forte": {"\u8bed\u8a00": 1}, "privilege": {"\u6355\u9c7c": 1, "\u6d77\u6e7e": 1}, "bay": {"\u6355\u9c7c": 1, "\u6d77\u6e7e": 1}, "ambulances": {"\u533b\u9662": 1, "\u4f24\u8005": 1, "\u6551\u62a4\u8f66": 1, "\u9001\u5f80": 1}, "finest": {"\u53f8\u6cd5\u5236\u5ea6": 1}, "legal": {"\u53f8\u6cd5\u5236\u5ea6": 1}, "lectures": {"\u8b1b\u5ea7": 1}, "avoids": {"\u746a\u9e97": 1, "\u907f\u958b": 1, "\u76e1\u91cf": 1}, "feathers": {"\u767d\u8272": 1, "\u7fbd\u6bdb": 1, "\u9e1f\u513f": 1, "\u94fa\u6ee1": 1}, "disable": {"\u529e\u6cd5": 1, "\u8bc4\u8bba": 1, "\u5c4f\u853d": 1, "\u4f46\u613f": 1}, "Furniture": {"\u5bb6\u5177": 1, "\u4f18\u8d28": 1, "\u6750\u6599": 1}, "waving": {"\u6253\u62db\u547c": 1, "\u63ee\u8457": 1}, "Terrific": {"\u5f88\u68d2": 1}, "response": {"\u665a": 1, "\u56de\u590d": 1}, "bow": {"\u5f13": 2}, "awkward": {"\u5f13": 2}, "oars": {"\u516d\u500b": 1, "\u8258": 1, "\u69f3": 1}, "roast": {"\u600e\u9ebc\u6a23": 1, "\u70e4\u725b\u8089": 1, "\u591a\u4e00\u4e9b": 1}, "firemen": {"\u968a\u54e1": 1, "\u6d88\u9632": 1, "\u64b2": 1}, "Comb": {"\u68b3": 1, "\u51fa\u9580": 1}, "Davis": {"\u5c71\u7c73": 1, "\u6234\u7dad\u65af": 1}, "Sammy": {"\u5c71\u7c73": 1, "\u6234\u7dad\u65af": 1}, "Students": {"\u901a\u5e38": 1, "\u7406\u89e3": 1}, "screaming": {"\u4e00\u5206\u949f": 1, "\u7136\u540e": 1, "\u5c16\u53eb": 1}, "loaves": {"\u4e86\u5169\u689d": 1, "\u5305": 1}, "antique": {"\u53e4\u73a9\u5e97": 1}, "Bear": {"\u8a18": 1, "\u7262": 1}, "plants": {"\u690d\u7269": 1, "\u967d\u5149": 1}, "exhibits": {"\u5c55\u89c8\u4f1a": 1}, "brooch": {"\u8ba4\u51fa": 1, "\u80f8\u9488": 1, "\u679a": 1, "\u51e0\u4e2a": 1, "\u4e22\u5931": 1}, "presidency": {"\u7576\u9078": 1, "\u8cc7\u683c": 1, "\u7e3d\u7d71": 1}, "grave": {"\u7fd2\u6163": 1, "\u6539\u4e0d\u4e86": 1}, "irritable": {"\u813e\u6c14": 1, "\u66b4\u8e81": 1}, "16": {"\u8a9e\u6cd5": 1}, "Esperanto": {"\u8a9e\u6cd5": 1}, "grammar": {"\u8a9e\u6cd5": 1}, "suffered": {"\u4e8f\u635f": 1, "10": 1, "\u4ebf\u65e5\u5143": 1}, "billion": {"\u4e8f\u635f": 1, "10": 1, "\u4ebf\u65e5\u5143": 1}, "seating": {"200": 1, "\u5bb9\u7eb3": 1}, "brightly": {"\u591c\u7a7a": 1, "\u660e\u4eae": 1, "\u661f\u5149": 1, "\u4eca\u665a": 1}, "Bern": {"\u4f2f\u6069": 1}, "Keller": {"\u6d77\u502b": 1, "\u773c\u76f2": 1, "\u8033\u807e": 1, "\u555e": 1, "\u51f1\u52d2": 1}, "Helen": {"\u6d77\u502b": 1, "\u773c\u76f2": 1, "\u8033\u807e": 1, "\u555e": 1, "\u51f1\u52d2": 1}, "actual": {"\u9884\u9632\u63aa\u65bd": 1}, "Preventive": {"\u9884\u9632\u63aa\u65bd": 1}, "handmade": {"\u5236\u4f5c": 1, "\u624b\u5de5": 1, "\u8fd9\u5757": 1}, "rug": {"\u5236\u4f5c": 1, "\u624b\u5de5": 1, "\u8fd9\u5757": 1}, "characters": {"\u6f22\u5b57": 1}, "milder": {"\u53e3\u5473\u6de1": 1, "\u53f0\u7063": 1, "\u83dc": 1}, "Taiwanese": {"\u53e3\u5473\u6de1": 1, "\u53f0\u7063": 1, "\u83dc": 1}, "Maternal": {"\u4f1f\u5927": 1, "\u522b\u7684": 1, "\u6bcd\u7231": 1}, "bless": {"\u4e0a\u5e1d\u4fdd\u4f51": 1}, "belonged": {"\u51b0\u5c9b": 1, "\u5c5e\u4e8e": 1, "\u4e39\u9ea6": 1}, "modest": {"\u4ecd": 1, "\u8b19\u865b": 1, "\u5982\u6614": 1}, "improves": {"\u7ea2\u9152": 1, "\u53d8\u5f97": 1, "\u5e74\u9f84": 1, "\u8d8a\u6765\u8d8a": 1, "\u968f\u7740": 1}, "Astronomy": {"\u5929\u6587": 1, "\u6046\u661f": 1, "\u5b78": 1, "\u6d89\u53ca": 1}, "caller": {"\u8fd0\u8425\u5546": 1, "\u63d0\u793a": 1, "\u63a5\u901a": 1, "\u7b49\u5019": 1, "\u6765\u7535": 1}, "operator": {"\u8fd0\u8425\u5546": 1, "\u63d0\u793a": 1, "\u63a5\u901a": 1, "\u7b49\u5019": 1, "\u6765\u7535": 1}, "seventy": {"70": 1}, "communication": {"\u6e9d\u901a": 1}, "warmly": {"\u6b22\u8fce": 1, "\u5bb6\u4eba": 1}, "welcomed": {"\u6b22\u8fce": 1, "\u5bb6\u4eba": 1}, "ambassador": {"\u5927\u4f7f": 1, "\u99d0": 1}, "smallpox": {"\u73fe\u4eca": 1, "\u5929\u82b1": 1, "\u514d\u75ab": 1}, "immune": {"\u73fe\u4eca": 1, "\u5929\u82b1": 1, "\u514d\u75ab": 1}, "mimic": {"\u9e1a\u9d61\u6703": 1, "\u6a21\u4eff": 1}, "Monkeys": {"\u7334\u5b50": 1, "\u6232": 1, "\u80fd\u5b78\u6703": 1}, "marketing": {"\u8425\u9500\u90e8": 1, "\u8d1f\u8d23\u4eba": 1}, "tampered": {"\u662f\u56e0\u4e3a": 1, "\u624b\u811a": 1, "\u649e\u8f66": 1, "\u5239\u8f66": 1}, "kilo": {"\u9999\u8549": 1}, "p.m.": {"\u4e0b\u5348": 2}, "shoulders": {"\u597d\u4f7f": 1, "\u8111\u5b50": 1}, "resented": {"\u53cd\u611f": 1, "\u7a31\u70ba": 1, "\u61e6\u592b": 1}, "haystack": {"\u5927\u6d77\u635e\u9488": 1, "\u597d\u6bd4": 1}, "21st": {"\u60f3\u8c61": 1, "\u4e16\u7d00": 1, "21": 1, "\u751a\u9ebc\u6a23": 1}, "spoil": {"\u7d50\u5c40": 1, "\u63d0\u524d": 1, "\u900f\u9732": 1}, "ending": {"\u7d50\u5c40": 1, "\u63d0\u524d": 1, "\u900f\u9732": 1}, "ankle": {"\u626d\u4f24": 1, "\u953b\u70bc": 1, "\u811a\u8e1d": 1}, "twisted": {"\u626d\u4f24": 1, "\u953b\u70bc": 1, "\u811a\u8e1d": 1}, "Rain": {"\u8fa6\u6cd5": 1, "\u6563\u6b65": 1}, "slang": {"\u5b66\u4e60\u5916\u8bed": 1, "\u4fda\u8bed": 1}, "instrument": {"\u4ee5\u5916": 1, "\u4e50\u5668": 1, "\u94a2\u7434": 1}, "investment": {"\u9019\u6b21": 1, "\u767e\u5206\u4e4b\u516b": 1, "\u6536\u76ca": 1}, "obtained": {"\u9019\u6b21": 1, "\u767e\u5206\u4e4b\u516b": 1, "\u6536\u76ca": 1}, "1689": {"\u51fa\u7248": 1, "1689": 2}, "Exercise": {"\u8fd0\u52a8": 1, "\u6709\u5229\u4e8e": 1}, "repainted": {"\u91cd\u65b0": 1, "\u6cb9\u6f06": 1}, "traveler": {"\u6b22\u559c": 1, "\u4e0d\u5df2": 1, "\u65c5\u884c\u8005": 1, "\u706f\u5149": 1, "\u8fdc\u5904": 1}, "confirm": {"\u786e\u8ba4": 1, "\u5426\u5b9a": 1, "\u5373": 1}, "Imagine": {"\u5047\u5982": 1, "\u673a": 1, "\u65f6\u5149": 1, "\u60f3\u8c61": 1, "\u4e00\u53f0": 1}, "confined": {"\u5367\u5e8a\u4e0d\u8d77": 1}, "Opinion": {"\u4e0a\u610f": 1}, "Cambridge": {"\u4f18\u5f02": 1, "\u6bd5\u4e1a": 1, "\u5251\u6865\u5927\u5b66": 1, "\u6210\u7ee9": 1}, "angel": {"\u5929\u4f7f": 1}, "Honda": {"\u8ce3": 1, "\u8c50\u7530": 1, "\u4e00\u53f0": 1}, "extremes": {"\u8d70\u6781\u7aef": 1}, "awoke": {"\u96ea": 2, "\u9192": 2, "\u5929\u6b63": 2, "\u4e0b\u8457": 2}, "postcard": {"\u660e\u4fe1\u7247": 1}, "aggressive": {"\u5484\u5484\u903c\u4eba": 1}, "slamming": {"\u7830\u7830": 1, "\u4f5c\u97ff": 1, "\u807d\u898b": 1}, "sets": {"\u66f4\u65e9": 1, "\u4e0b\u5c71": 1, "\u5f80\u5e38": 1, "\u51ac\u5929": 1, "\u592a\u9633": 1}, "32": {"\u83ef\u6c0f": 1, "32": 2}, "Fahrenheit": {"\u83ef\u6c0f": 1, "32": 1}, "incompetent": {"\u4e0d\u79f0\u804c": 1, "\u4e0a\u6ee1": 1}, "quiz": {"\u5c0f\u8003": 1}, "exploded": {"\u5de8\u97ff": 1, "\u7206\u70b8": 1, "\u767c\u51fa": 1}, "Celsius": {"\u7d50\u51b0": 1, "\u96f6\u5ea6": 1}, "motion": {"\u52d5\u8b70": 1, "\u6c92\u4eba": 1}, "supported": {"\u52d5\u8b70": 1, "\u6c92\u4eba": 1}, "intervene": {"\u4ecb\u5165": 1}, "Cookie": {"\u6bcd\u89aa": 1, "Cookie": 2}, "unfinished": {"\u7cdf\u7cd5": 1, "\u534a\u9014\u800c\u5e9f": 1}, "Leaving": {"\u7cdf\u7cd5": 1, "\u534a\u9014\u800c\u5e9f": 1}, "spur": {"\u7d93\u6fdf": 1, "\u66f4\u591a": 1, "\u523a\u6fc0": 1}, "compute": {"\u8ddd\u96e2": 1, "\u7b97\u51fa": 1, "\u4e4b\u9593": 1, "\u79d1\u5b78\u5bb6": 1, "\u5730\u8a08": 1}, "joining": {"\u53c3\u52a0": 1, "\u6703\u54e1\u8cbb": 1}, "shyly": {"\u7f9e\u602f": 1, "\u4e00\u773c": 1}, "fountain": {"\u94a2\u7b14": 1}, "details": {"\u8be6\u7ec6\u4fe1\u606f": 1}, "Apparently": {"\u663e\u7136": 1}, "confronted": {"\u7d93\u6fdf": 1, "\u81e8\u8457": 1, "\u6b63\u9762": 1, "\u56b4\u91cd": 1}, "leaders": {"\u79f0\u804c": 1, "\u9886\u5bfc\u4eba": 1}, "competent": {"\u79f0\u804c": 1, "\u9886\u5bfc\u4eba": 1}, "executed": {"\u8ba1\u5212": 1}, "desks": {"\u684c\u524d": 1}, "baloney": {"\u80e1\u626f": 1}, "Humor": {"\u968f": 1, "\u610f\u5427": 1}, "parcel": {"\u5305\u88f9": 1, "\u5730\u5740": 1}, "pray": {"\u7948\u7977": 1, "\u5927\u5bb6": 1}, "Outside": {"\u7eb8\u677f\u7bb1": 1, "\u6821\u5916": 1}, "cardboard": {"\u7eb8\u677f\u7bb1": 1, "\u6821\u5916": 1}, "homes": {"\u7eb8\u677f\u7bb1": 1, "\u6821\u5916": 1}, "snickered": {"\u6697\u4e2d": 1, "\u7b11": 1}, "photographer": {"\u5c08\u696d": 1, "\u651d\u5f71\u5e2b": 1}, "Part": {"\u4e00\u90e8\u5206": 1, "\u6545\u4e8b": 1}, "acting": {"\u8be1\u5f02": 1}, "steals": {"\u8aa0\u5be6": 1}, "microscope": {"\u671b\u8fdc\u955c": 1, "\u663e\u5fae\u955c": 1, "\u5dee\u522b": 1}, "telescope": {"\u671b\u8fdc\u955c": 1, "\u663e\u5fae\u955c": 1, "\u5dee\u522b": 1}, "distances": {"\u4e0d\u7fd2": 1, "\u6163": 1}, "honorable": {"\u5149\u69ae": 1, "\u8fad\u8077": 1}, "smooth": {"\u5149\u6ed1": 2}, "sees": {"\u53ad\u60e1": 1, "\u9732\u51fa": 1, "\u6bcf\u6b21": 1, "\u773c\u795e": 1}, "nasty": {"\u53ad\u60e1": 1, "\u9732\u51fa": 1, "\u6bcf\u6b21": 1, "\u773c\u795e": 1}, "Drivers": {"\u53f8\u6a5f": 1, "\u5e36": 1, "\u7e6b": 1}, "jerk": {"\u50bb\u5b50": 1}, "ambition": {"\u7ed3\u5a5a": 1, "\u96c4\u5fc3\u58ee\u5fd7": 1}, "booked": {"\u4f4d\u5b50": 1, "\u8a02": 1}, "snowfall": {"\u56e0": 1, "\u803d\u6401": 1, "\u5927\u96ea": 1}, "clues": {"\u7dda\u7d22": 1, "\u8b66\u65b9": 1}, "laziest": {"\u636e\u6211\u6240\u77e5": 1, "\u6700\u61d2": 1}, "jiffy": {"\u56de\u6765": 1, "\u9a6c\u4e0a": 1}, "offices": {"\u6247": 1, "\u8fa6": 1, "\u516c\u5ba4": 1, "\u4e4b\u9593": 1}, "Smoke": {"\u70df\u96fe": 1}, "championship": {"\u7af6\u722d": 1, "\u51a0\u8ecd": 1}, "Drop": {"\u653e\u4e0b": 1, "\u5200": 1}, "deli": {"\u719f\u98df\u5e97": 1}, "sung": {"\u9996\u6b4c": 1, "\u7248": 1}, "Calm": {"\u51b7\u9759": 1}, "dragon": {"\u706b\u9f99\u679c": 1}, "activities": {"\u793e\u56e2\u6d3b\u52a8": 1}, "community": {"\u793e\u56e2\u6d3b\u52a8": 1}, "Ebola": {"\u57c3": 1, "\u5df2\u77e5": 1, "\u4eba\u7c7b": 1, "\u75c5\u6bd2": 1, "\u535a\u62c9": 1}, "viruses": {"\u57c3": 1, "\u5df2\u77e5": 1, "\u4eba\u7c7b": 1, "\u75c5\u6bd2": 1, "\u535a\u62c9": 1}, "virulent": {"\u57c3": 1, "\u5df2\u77e5": 1, "\u4eba\u7c7b": 1, "\u75c5\u6bd2": 1, "\u535a\u62c9": 1}, "Friends": {"\u56ed\u91cc": 1, "\u751f\u547d": 1, "\u82b1\u6735": 1}, "performance": {"\u5e7e\u9ede\u9418": 1, "\u8868\u6f14": 1}, "responded": {"\u4fe1": 1, "\u6ca1\u56de": 1}, "blink": {"\u4e00\u8f6c\u773c": 1, "\u8dd1": 1}, "predictions": {"\u9519": 1}, "Waterloo": {"\u6ed1\u9435\u76e7": 1, "\u6557\u4ed7": 1, "\u6cd5\u570b": 1, "\u5f79": 1}, "stage": {"\u5267\u573a": 1, "\u540e\u95e8": 1}, "sacrifice": {"\u6551": 1, "\u727a\u7272": 1}, "ethical": {"\u6551": 1, "\u727a\u7272": 1}, "bandages": {"\u7ef7\u5e26": 1, "\u88c1\u5e03": 1}, "hoofbeats": {"\u98ce": 1}, "zebras": {"\u98ce": 1}, "halfway": {"\u534a\u5c71\u8170": 1, "\u722c": 1}, "tsunami": {"\u8b66\u62a5": 1, "\u89e3\u9664": 1}, "Opinions": {"\u89c2\u70b9": 1, "\u56e0\u4eba\u800c\u5f02": 1}, "decides": {"\u51b3\u7b56": 1}, "hunt": {"\u6253\u730e": 1}, "frighten": {"\u5c0f\u5b69": 1, "\u6050\u6016\u7247": 1}, "irritates": {"\u7acb\u523b": 1, "\u505a\u51fa": 1, "\u53cd\u5e94": 1}, "otherwise": {"\u7acb\u523b": 1, "\u5426\u5247": 1}, "depressing": {"\u4e27\u6c14": 1}, "prevents": {"\u623f": 1, "\u4e0d\u4e86": 1, "\u4f4e": 1, "\u85aa\u6c34": 1}, "involuntary": {"\u8bf4\u660e": 1, "\u53d1\u81ea\u5185\u5fc3": 1, "\u60c5\u7eea": 1, "\u6d41\u9732": 1, "\u53ea\u8981": 1, "\u771f\u8bda": 1}, "emotion": {"\u8bf4\u660e": 1, "\u53d1\u81ea\u5185\u5fc3": 1, "\u60c5\u7eea": 1, "\u6d41\u9732": 1, "\u53ea\u8981": 1, "\u771f\u8bda": 1}, "general": {"\u6d88\u8d39\u8005": 1, "\u6578\u91cf": 1, "\u8cea\u91cf": 1}, "consumers": {"\u6d88\u8d39\u8005": 1, "\u6578\u91cf": 1, "\u8cea\u91cf": 1}, "quantity": {"\u6d88\u8d39\u8005": 1, "\u6578\u91cf": 1, "\u8cea\u91cf": 1}, "locking": {"\u9396\u9580": 1, "\u8a18\u5f97": 1}, "pretext": {"\u5e4c\u5b50": 1, "\u6253\u7740": 1, "\u6211\u5bb6": 1}, "priest": {"\u7267\u5e08": 1, "\u5144\u5f1f": 1}, "demands": {"\u5c48\u670d": 1}, "blisters": {"\u8d77\u6c34\u6ce1": 1, "\u8173": 1}, "shame": {"\u6065\u8fb1": 1}, "Pacific": {"\u8fd9\u6761": 1, "\u6c47\u5165": 1, "\u6cb3": 1, "\u592a\u5e73\u6d0b": 1}, "Instead": {"\u6b27\u6d32": 1}, "Blondes": {"\u984f\u8272": 1, "\u8cfa": 1, "\u5973\u90ce": 1}, "earn": {"\u984f\u8272": 1, "\u8cfa": 1, "\u5973\u90ce": 1}, "lively": {"\u6d3b\u6cfc": 1}, "grasp": {"\u7cbe\u901a": 1}, "instrumental": {"\u5668\u6a02": 1}, "fry": {"\u9e21\u86cb": 1, "\u751a\u81f3": 1, "\u714e": 1, "\u8fde": 1}, "quits": {"\u505c": 1}, "pacemaker": {"\u5fc3\u81df": 1, "\u88dd": 1, "\u8d77\u640f\u5668": 1}, "4": {"\u7d50\u675f": 1, "\u4e0b\u5348": 1, "4": 2, "\u6703\u8b70": 1}, "ambulance": {"\u6551\u62a4\u8f66": 1}, "Hungary": {"\u6587": 1, "\u5308\u7259\u5229": 1}, "underneath": {"\u64e6\u978b": 1, "\u4e0b\u9762": 1, "\u9470\u5319": 1, "\u588a": 1}, "Mutual": {"\u76f8\u4e92\u7406\u89e3": 1, "\u4fc3\u8fdb": 1}, "promotes": {"\u76f8\u4e92\u7406\u89e3": 1, "\u4fc3\u8fdb": 1}, "understanding": {"\u76f8\u4e92\u7406\u89e3": 1, "\u4fc3\u8fdb": 1}, "increased": {"\u906d\u53d7": 1, "\u4eba\u6570": 1, "\u56f0\u6270": 1, "\u5fc3\u810f\u75c5": 1}, "overconfident": {"\u81ea\u4fe1": 1}, "texts": {"\u8ba8\u538c": 1, "\u80cc\u8bf5\u8bfe\u6587": 1}, "recite": {"\u8ba8\u538c": 1, "\u80cc\u8bf5\u8bfe\u6587": 1}, "deeds": {"\u8d1f\u8d23": 1}} \ No newline at end of file diff --git a/TRANSLATE/cmn.tsv b/TRANSLATE/cmn.tsv new file mode 100644 index 0000000..f9262ad --- /dev/null +++ b/TRANSLATE/cmn.tsv @@ -0,0 +1,24026 @@ +Put on some sunscreen . 涂点 防晒 吧 . +The two nations have strong trade ties . 这 两个 国家 有 强大 的 贸易 关系 . +Excuse me , I am lost . 不好意思 , 我 迷路 了 . +You seem to be prejudiced against ideas that come from foreign countries . 你 似乎 對 來 自 國外 的 想法 有 偏見 . +Do you know what is happened ? 你 知道 发生 了 什么 事情 吗 ? +Our supplies are running out . 我们 的 供给 要用 完 了 . +I am fed up with this weather . 我 受够了 这 天气 . +This is the cheapest store in town . 這 是 鎮 上 最 便宜 的 商店 . +I decided to study every day . 我 決定 每天 用功 讀書 . +We do not care what he does . 我們 不在乎 他 做 什麼 . +What is the purpose of your visit ? 你 此行 的 目的 是 什麼 ? +The school is located within five minutes ' walk of the station . 學校 坐落 於 距離 車站 步行 五分 鐘 的 地方 . +Speech is silver , but silence is golden . 雄 辯 如 銀 , 沉默 如 金 . +My aunt sent me a birthday present . 我 阿姨 送 了 我 一個 生日 禮物 . +After climbing Mt . Fuji , I got the inspiration for a poem . 攀登 富士山 後 , 我 得到 了 一首 詩 的 靈感 . +This will keep you warm . 这个 能 保暖 . +Any bed is better than no bed . 任何 床 都 比 沒有 床 好 . +There were two bridges . 那里 有 两座 桥 . +We get the materials from Malaysia . 我們 從 馬來西亞 得到 材料 . +She asked me a question . 她 問 了 我 一個 問題 . +I am proud of you . 我 以 你 為 榮 . +He told me that he was busy then . 他 告诉 我 他 那时 很忙 . +A computer is a complex machine . 电脑 是 个 复杂 的 机器 . +What should they do in this situation ? 在 这种 情况 下 , 他们 该 做 什么 ? +My mother is busy in the kitchen . 我 的 母親 在 廚房 裡 正忙 著 . +How many rackets do you have ? 你 有 多少 支 球拍 ? +I have always wanted to meet you . 我 一直 想見 你 . +His job is driving a sight @-@ seeing bus . 他 的 工作 是 驾驶 观光 巴士 . +I collect stamps . 我 收集 郵票 . +We know that . 我们 知道 . +There are many ships in the harbor . 港口 內 有 許多 船 . +That was not so hard , was it ? 那 不难 , 是 吧 ? +I objected to his paying the bill . 我 反 對 他 付 帳 單 . +You are allowed to use the hotel is swimming pool . 你 有权 使用 旅馆 的 游泳池 . +I read the book after I had finished my homework . 我 做 完 我 的 功课 后 , 就读 这 本书 . +President Lincoln was what we call a self @-@ made man . 林肯 總統 就是 我們 所謂 白手起家 的 男人 . +Like father , like son . 有其父必有其子 . +The captain is responsible for the safety of passengers . 船长 要 为 乘客 安全 负责 . +When I heard that song , it reminded me of when I was a kid . 我 聽到 那首歌 時 , 它 讓 我 想起 了 我 小 的 時候 . +The clock has stopped . 時鐘 已經 停止 了 . +Even Tom does not do that anymore . 甚至 湯姆 都 不再 做 了 . +At last , she solved the problem . 最 後 , 她 解決 了 這個 問題 . +I visit him every other day . 我 每隔 一天 拜訪 他 . +He works from Monday to Friday . 他 周一 到 周五 上班 . . +Tom knows that I used to live in Boston . 湯姆 知道 我 在 波士 頓 住 過 . +This is the house where I live . 这 是 我 住 的 房子 . +Birds fly . 鳥類 飛行 . +She is always dressed in black . 她 總 是 穿著 黑色 的 衣服 . +Excuse me for opening your letter by mistake . 對 不起 , 我 錯 開 了 你 的 信 . +He was admitted without taking the exam . 他 承認 沒有 參 加考 試 . +He has been dead for ten years . 他 已經 死 了 十年 . +He broke the law . 他 触犯 了 法律 . +Tom likes it hot . 汤姆 喜欢 热 的 . +There is no denying the fact . 這 是 無 可否 認 的 事實 . +He loves her . 他 愛 她 . +Do you get up at six ? 你 六点 起床 吗 ? +I was born on October 10th , 1972 . 我 在 一九七二年 十月十日 出生 . +He flew a kite with his son . 他 和 他 的 儿子 放风筝 了 . +Did you go out last night ? 你 昨天晚上 出去 了 嗎 ? +She found her purse under the desk . 她 在 桌子 底下 找到 了 她 的 錢 包 . +He was killed by a single bullet . 他 被 一顆 子彈 打死 了 . +I am going to get rid of all this stuff . 我 要 摆脱 这 一切 . +I no longer wish to be your wife . 我 不想 做 你 老婆 了 . +Hi . 嗨 . +How is it going at school ? 学校 怎么样 ? +I am just a plain old office worker . 我 只是 一個 普通 的 老式 上班族 . +My name does not appear on the list . 我 的 名字 沒有 出現 在 名單 上 . +A hare raced with a tortoise . 兔子 和 乌龟 赛跑 . +The children were flying kites . 孩子 們 在 放 風箏 . +Is it true or did Tom make that story up ? 這 是 事實 還 是 Tom 編 的 故事 ? +You work as hard as he did at your age . 你 跟 他 在 你 這個 年紀時 一樣 努力 工作 . +I wonder what I should do today . 我 在 想 我 今天 该 干什么 . +That is my final answer . 这 是 我 的 最终 回答 . +I can not fall asleep . 我 睡不着 觉 . +Mind your manners . 规矩 点 . +You do not need to do this . 你 不 需要 做 这事 . +He left ten minutes ago . 他 十分 鐘 前 離開 了 . +Freedom is very , very important . 自由 非常 非常 重要 . +We stayed with them all through the summer . 我们 整个 夏天 都 和 他们 待 在 一起 . +I wish I were younger . 但 願 我 年 輕 一點 . +I overslept . 我 睡 过头 了 . +I do not know what I am going to do next . 我 不 知道 接下来 我 要 做 什么 . +She does not know how to play golf . 她 不 知道 怎麼 打 高爾夫 球 . +He slipped me a note . 他 悄悄地 递给 我 一张 纸条 . +Do not look into my room . 不要 往 我 房间 里 看 . +It is dangerous to fool around with electricity . 隨便 亂 弄 電是 危險 的 . +It is not that easy to learn a new language after fifty . 五十岁 以后 学 一门 新 的 语言 不是 那么 容易 . +Thanks for accepting my friend request on Facebook . 謝謝 你 接受 我 Facebook 的 交友 邀請 . +I have nothing to do with that crime . 这个 犯罪 和 我 一点 关系 都 没有 . +His house was struck by lightning . 他 的 房子 遭到 雷擊 . +I had a vision . 我 有 一个 愿景 . +It was not my fault . 那 不是 我 的 錯 . +Do you know of any good restaurant near here ? 你 知道 这儿 附近 有 什么 好 餐馆 吗 ? +Class does not begin until eight @-@ thirty . 八點半 開始 上課 . +I really enjoyed myself tonight . 今晚 我 玩 得 很 開心 . +That is a nice car you are driving . 你 開 的 那輛 車 很 不錯 . +This is one of the best restaurants I have ever eaten in . 这 是 我 吃 过 的 最好 的 餐馆 之一 . +He is always laughing . 他 总是 在 笑 . +Do not laugh at him for making a mistake . 不要 因为 他 犯 了 一个 错误 就 嘲笑 他 . +There is no need to hurry . 沒有 必要 著急 . +There is a hair in my soup . 我 的 湯 裡 有 一根 頭 髮 . +How about another round ? 再 來 一輪 怎麼樣 ? +I spent twelve hours on the train . 我 在 火车 上待 了 12 小时 . +Are you going or not ? 你 去 還 是 不 去 ? +Get it done as soon as possible . 盡快 把 它 完成 . +I need a stamp . 我 需要 一張 郵票 . +Is there anything else you want ? 还有 什么 想要 的 吗 ? +You 'd better take an umbrella with you . 你 最好 隨身 帶 把 傘 . +I will wait for you in front of the radio station . 我 會 在 電 台前 等 你 . +You are looking tired . 你 看起来 很困 了 . +The teacher assembled the students in the hall . 老師 在 禮堂 把 學生 們 集合 起來 . +It is hardly worth discussing . 這 幾乎 不 值得 討論 . +An army marches on its stomach . 胃 里 如同 千军万马 开过 . +He studied very hard . 他 学习 非常 努力 . +A fly can walk on the ceiling . 蒼蠅 能 在 天花板 上 走 . +She tried to lift the box , but found it impossible to do . 她 試著 舉起 箱子 , 但 發現 不 可能 做到 . +Where have you been ? 你 一直 在 哪里 ? +All the signs are that she is getting better . 所有 迹象 表明 她 好 起来 了 . +He seldom goes to church . 他 很少 去 教堂 . +Do you want anything to eat ? 您 想 吃 点 什么 吗 ? +I like sports . 我 喜歡 運動 . +The accident seemed to have something to do with the heavy snow . 事故 似乎 和 厚厚的 积雪 有关 . +Work harder if you plan to succeed . 如果 你 計劃 要 成功 , 就要 更加 努力 地 工作 . +He stretched out his arm to take the book . 他 伸长 了 手臂 为了 能 拿到 书 . +The teacher made me repeat the sentence . 老師 讓 我 重 複 了 這 句 話 . +It is easy to add 5 to 10 . 5 加 10 很 简单 . +We had lunch at a little coffee shop . 我們 在 一家 小 咖啡店 吃 午 飯 . +I have something to give you . 我 有些 东西 要 给 你 . +He studied abroad . 他 出国 留学 了 . +You can use this car . 你 可以 使用 這輛 車 . +I would like to come with you . 我 想 和 你 一起 走 . +I remember returning the book to the library . 我 记得 我 把 书 还 到 图书馆 了 . +There are noticeable differences between the two . 两者之间 有 显著 的 差别 . +The chicken is undercooked . 雞肉 還 不夠 熟 . +The bus stop is across the street . 公車 站牌 就 在 街 對 面 . +Do you like oranges ? 你 喜歡 橙子 嗎 ? +This store has a variety of spices . 這家 商店 有 各種 香料 . +I get the feeling you are trying to tell me something . 我 感觉 你 想 告诉 我 什么 事 . +She is not at home now . 她 現在 不 在家 . +There was no one in the room besides Tom and Mary . 除了 汤姆 和玛丽 , 房间 里 没有 人 . +He held a package under his arm . 他 把 一個 包裹 挾 在 腋下 . +Tom made his servants eat in the dark . 汤姆 让 他 的 仆人 们 在 黑暗 下 进餐 . +Is your school far from your home ? 你 的 學校 離 你家 很 遠 嗎 ? +Do you know how to play mahjong ? 你 知道 怎麼 打 麻將 嗎 ? +I have lost my wallet . 我 掉 了 我 的 钱包 . +He substituted for his father . 子承父业 . +Tom said he 'd think about my suggestion . 汤姆 说 他 会 考虑 我 的 问题 . +I can not believe that . 我 不能 相信 . +I would do anything for Tom . 我会 为 汤姆 做 任何 事 . +You deserve to succeed . 你 的 成功 是 应得 的 . +Waitress , I would like to order . 服务生 , 我 要 点菜 . +Please give me a call . 请 给 我 打电话 . +He is in the kitchen . 他 在 厨房 . +Where is the longest tunnel in Japan ? 日本 最长 的 隧道 在 哪里 ? +Tom and Mary are very hungry . 汤姆 和玛丽 很 饿 . +You must do it . 你 必須 去 做 . +Everybody but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I know him by sight , but not by name . 我 知道 他 的 样子 , 但 不 知道 他 的 名字 . +This river is safe to swim in . 在 这条 河里 游泳 很 安全 . +Perseverance , as you know , is the key to success . 就 像 你们 知道 的 那样 , 毅力 是 成功 的 关键 . +He did the reverse of what I asked . 他 做 的 和 我 要求 的 相反 . +He may come tomorrow afternoon . 他 明天 下午 可能 會來 . +I stay at home on Sundays . 我 星期天 在家 . +You must take his age into account . 你 该 考虑 他 的 年纪 . +We need to make a plan . 我们 需要 做 计划 . +Father recovered his health . 爸爸 恢复 了 健康 . +This towel is so soft and fluffy . It feels good ! 这 条 毛巾 蓬松 又 柔软 , 特别 舒服 . +We must take into account the wishes of all the family in planning a trip . 筹划 旅行 的 时候 , 我们 必须 考虑 到 全家人 的 意愿 . +What subject do you like best ? 你 最 喜歡 哪 一個 科目 ? +I do not think it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +She really wants to lose weight . 她 真的 想 減肥 . +Let is take a look . 讓 我們 看看 吧 . +Tom kissed Mary on the cheek . 汤姆 亲 了 玛丽 脸颊 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 来 接 . ” +If that were true , what would you do ? 如果 这 是 真的 , 您 要 怎么办 ? +Tom follows orders . 汤姆 服从命令 . +You should not say that kind of thing when children are around . 孩子 们 在 旁边 的 时候 , 你 不 应该 说 那种 事 . +Do you know the meaning of this word ? 您 知道 这个 词 的 意思 吗 ? +Could you tell me where Tom is ? 你 能 告訴 我 湯姆 在 哪裡 嗎 ? +Come on over to have a try . 你 過來 試試 看 . +Would you look after my cat ? 你 可以 照顧 一下 我 的 貓 嗎 ? +He asked me why I was laughing . 他 問 我 為 什麼 在 笑 . +Let is turn back . 我们 掉头 吧 ! +She made me a nice dress . 她 做 了 一件 好看 的 衣服 給 我 . +All the dogs are alive . 所有 狗 都 活着 . +Let is drive to the lake . 讓 我們 開車 到 湖邊 . +Clean your room . 打扫 一下 你 的 房间 . +It is easy to make friends , but hard to get rid of them . 交朋友 很 容易 , 但 擺脫 他們 很 難 . +There are subtle differences between the two pictures . 这 两张 图片 之间 有 细致 的 差异 . +I am innocent . 我 是 清白 的 . +I am not the least bit worried . 我 一點 也 不 擔心 . +She was surprised that he showed up . 她 很 驚訝 他 出現 了 . +Tom came over to my house for dinner yesterday . 汤姆 昨天 来 我家 吃晚饭 . +Stay out of this . 别 插手 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +Here is your tea . 这 是 你 的 茶 . +You will have to play it by ear at the interview . 在 面試 的 時候 你 必須 見 機 行事 . +It is hard to say what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants to work in a hospital . 他 想 在 醫院 工作 . +I am looking for books on Roman history . 我 在 找 关于 古罗马 历史 的 书 . +I am going to play tennis . 我 要 去 打 網球 . +I lost my ticket . What should I do ? 我 丢 了 我 的 票 . 我 該 怎麼 辦 ? +A stitch in time saves nine . 小洞 及時 補 , 免遭 大洞 苦 . +Which do you like better , spring or fall ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +I saw the film in San Francisco last year . 我 去年 在 舊 金山 看 這部 電影 . +You should take care of your sick mother . 你 應該 照顧 你 生病 的 母親 . +Would you give me a hint ? 你 可以 给 我 一个 提示 吗 ? +I know that he was busy . 我 知道 他 忙 . +No matter where you go , I will follow you . 無論 你 去 哪裡 我 都 會 跟著 你 . +Tom asked me to tell you he did not plan on going to Boston with you . 汤姆 让 我 告诉 你 他 没有 计划 和 你 一起 去 波士顿 . +It is your business to take care of them . 照顾 他们 是 你 自己 的 事儿 . +One of them is a spy . 他們 其中 一 人 是 間諜 . +I demand an explanation for this mistake . 我 要求 說明 這個 錯誤 . +His house is across from mine . 他 的 房子 在 我 的 對面 . +Somehow I thought you 'd say that . 我 就 知道 你 会 这么 说 . +When will they arrive ? 他們 何時 抵達 ? +Would you like to leave a message ? 你 要 留言 嗎 ? +I will wait . 我 會 等 . +Tom could not help but smile . 汤姆 帮不了 , 只能 笑笑 . +I do not care all that much . 我 不 那么 在意 . +She came from Canada to see me . 她 從 加拿大 來看 我 . +I am still hungry . 我 还 饿 着 呢 . +My father goes to work by bike . 我 父親 騎 自行 車 去 上班 . +I missed you . 我 想念 你 . +He says he will not come . 他 說 他 不 會 來 . +Both Tom and his wife grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +" You talk too much , " he said . “ 你 说 得 太 多 了 , ” 他 说道 . +I want an MP3 player ! 我 想要 一个 MP3 播放器 ! +She lives in New York . 她 住 在 纽约 . +Do you really mean that ? 你 是 认真 的 吗 ? +The warrior is conscious of both his strength and his weakness . 戰士 知道 自己 的 力量 和 弱點 . +Smoking is harmful to your health . 吸烟 有害 健康 . +We just moved in . 我們 才 剛 搬 進來 . +I get a kick out of her cheerful personality . 她 開朗 的 個性 使 我 覺得 快樂 . +Scary , is not it ? 嚇 人 , 不是 麼 ? +Tom just got back from Australia . 汤姆 刚 从 澳大利亚 回来 . +Do you go to a private school ? 你 在 私立学校 读书 吗 ? +I saw a light in the distance . 我 看见 远处 有 灯光 . +I know you are going to say no . 我 知道 你 要 說 不 . +I am not satisfied with my English ability . 我 不 滿意 我 的 英語 能力 . +Tell me what to do . 告訴 我 該 做 什麼 . +She has been sick for three weeks . 她 已經 病 了 三個 星期 了 . +What are you reading ? 你 在 看 什么 ? +We did not expect him to finish the task in so short a time . 我们 没指望 过 他 在 那么 短 的 时间 里 完成 工作 . +I was in Tokyo yesterday . 我 昨天 在 東京 . +I walked in the woods by myself . 我 自己 走進 了 樹林 裡 . +Go get your helmet . 戴 上 你 的 安全帽 . +I am fairly certain Tom lives on Park Street . 我 很 确定 汤姆 住 在 公园 街 . +The old man walked across the road carefully . 老人 小心翼翼 地 过 了 马路 . +Mary is going to help us tomorrow . 玛丽 明天 会来 帮 我们 . +That makes no sense at all . 这 没有 任何 意义 . +I do not think she is happy . 我 觉得 她 不 开心 . +You have got to apologize . 你 應該 道歉 . +They moved here three years ago . 他們 三年 前 搬到 了 這裡 . +You 'd better go home . 你 最好 回家 . +He was a very good skier when he was little . 他 年 輕 時 很 會 滑雪 . +How old is that painting ? 那幅 画 有 多少 年 了 ? +At that time , Tom was sitting between Mary and John . 在 那个 时候 , 汤姆 正 坐在 玛丽和 约翰 中间 . +It was terrible . 真糟糕 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +Perfect ! 完美 ! +We have to put off the game till next Sunday . 我们 不得不 把 游戏 搁到 下 周日 了 . +Translate the passage word for word . 逐字 地 翻譯 這個 段落 . +I have neither seen nor heard of such a thing . 我 没 见 过 也 没 听 过 这样 的 事 . +No one is calling you a thief . 沒 人 叫 你 小偷 . +One must be responsible for one is conduct . 人 要 为 自己 的 行为 负责 . +I work for an oil company . 我 為 一家 石油 公司 工作 . +The Oscar ceremonies are Hollywood is biggest extravaganza . 奥斯卡 颁奖典礼 , 是 好莱坞 最 盛大 的 活动 . +We enjoyed watching TV . 我們 喜歡 看電視 . +Did not you write a letter to him ? 你 沒 寫信 給 他 嗎 ? +I am so fat . 我 好 胖 哦 . +Mary is studying in her room . 瑪麗 在 她 的 房間 裡 讀 書 . +I just got your letter yesterday . 我 昨天 剛 收到 你 的 信 . +How hot is that ? 那個 東西 有 多 熱 ? +Is there life on Mars ? 火星 上 有 生命 嗎 ? +" Shall I have him call you when he gets back ? " " Yes , please . " “ 等 他 回来 , 我 要 让 他 给 你 打电话 吗 ? ” “ 是 的 , 谢谢 . ” +You 'd better go to see your family doctor at once . 你 最好 立刻 去 看 你 的 家庭 醫生 . +Let me introduce you to him . 讓 我 把 你 介紹 給 他 . +Did you push the button ? 你 按了 按 鈕 嗎 ? +That was a month ago . 那 是 一個 月 前 了 . +Tom was very sick . 汤姆 很 虚弱 . +I should not have logged off . 我 不 應該 登出 . +They will be grateful . 他們 會 感激 . +Tom has no siblings . Tom 沒有 兄弟 姊妹 . +Do you believe me ? 你 相信 我 吗 ? +I am very happy . 我 很 幸福 . +Beware of thieves . 注意 小偷 . +Are you Japanese ? 你 是 日本 人 嗎 ? +Some foods make you thirsty . 有些 食物 令人 口渴 . +He picked up a mirror and examined his tongue . 他 拿 了 面 镜子 细看 自己 的 舌头 . +Tom hung his jacket in the hall closet . 汤姆 把 他 的 夹克 挂 在 大厅 衣柜 里 . +We have to fix the date for our trip quickly . 我们 必须 快点 定下 旅游 日期 . +We are special . 我们 很 特别 . +The show was wonderful , but the tickets were too expensive . 这场 秀 棒极了 , 但是 门票 太贵 了 . +Everybody knew Tom was good at French . 每个 人 都 知道 汤姆 的 法语 很 好 . +I think you are a really nice guy . 我 認為 你 真的 是 一個 好人 . +Would you like to go abroad ? 你 想 出 國 嗎 ? +All I want is my freedom . 我 只要 自由 . +I will study your report . 我 會 研究 你 的 報告 . +Did Tom not know what to do ? 汤姆 不 知道 该 做 什么 吗 ? +London , the capital of England , is on the Thames . 英国 首都 伦敦 在 泰晤士河畔 . +I ate curry last night . 我 昨晚 吃 了 咖喱 . +She married a rich man . 她 嫁给 了 一个 有钱人 . +Tell me what you did to Shounan . 告诉 我 你 对 湘南 做 了 什么 . +Tom was sitting alone at one of the tables near the door . 湯姆 獨自 坐在 門邊 一個 桌子 旁 . +I wondered if her story was true . 我 想 知道 她 的 故事 是否是 真的 . +You should not have done it . 你 不 應 該 做 的 . +Customs include food , celebrations and dancing . 风俗习惯 包括 食物 , 庆祝 和 舞蹈 . +I am not afraid of dying . 我 不怕死 . +Our mother bought us a puppy . 我們 的 媽媽 買 了一 隻 小狗 給 我們 . +What will you be doing at this time tomorrow ? 你 明天 这个 时候 会 是 在 做 什么 ? +He is very influential in the world of medicine . 他 在 医学界 有 很大 的 影响力 . +Please speak more loudly . 請 說 大聲 一點 兒 . +I understood Tom is point of view . 我 理解 汤姆 的 观点 . +We have less than five minutes to evacuate the whole building . 我们 有 不到 五分钟 来 疏散 整栋 楼 的 人 . +I have never known anyone as hypocritical as you . 我 从来 没有 见 过 谁 像 你 这么 虚伪 的 . +He threw a rock into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +I 'd like something to eat . 我 想 吃 点 东西 . +The road is very treacherous . 这 条路 挺 险恶 . +We want a new carpet . 我们 想要 一条 新 毯子 . +Tom did not write back to Mary . 汤姆 没 给 玛丽 写 回复 . +It is pitch black outside . 外面 一片 漆黑 . +I am not sure . 我 不 确定 . +You can use my car if you like . 如果 你 喜歡 你 可以 用 我 的 車 . +This is a stupid design . 这份 设计 很蠢 . +Nobody would listen to me . 沒 有人 會 聽 我 說 . +He arrived after the bell rang . 鈴 響 後 他 就 到 了 . +I said that . 我 是 那樣 說 的 . +Tom is in the living room . 汤姆 在 起居室 里 . +Nice to meet you . 很 高興 認識 你 . +I told Tom what to do . 我 告诉 了 汤姆 要 做 什么 . +When was Tom fired ? 湯姆 什麼 時候 被 解雇 的 ? +She is as busy as Tom . 她 和 湯姆 一樣 忙 . +Cities are exciting places , but also stressful . 城市 是 令人 興奮 的 地方 , 但 也 會 讓 人 產生 壓力 . +It is never too late to make amends . 彌補 永遠 不 會 太晚 . +I can win this time . 我 這 回能 贏 . +Leave the room immediately . 馬 上 離開 房間 . +Turn left . 向左转 . +Jealousy made him do that . 嫉妒 讓 他 那樣 做 . +Who invented that ? 那 是 谁 发明 的 ? +Which translation of this book do you think is better , the French one or the English one ? 你 觉得 这 本书 的 哪个 译本 比较 好 ? 法语 的 还是 英语 的 ? +I am the owner of this house . 我 是 這 房子 的 主人 . +I already talked to this student . 我 已经 和 这个 学生 谈 过 话 了 . +He is often absent from school . 他 经常 翘课 . +Why do not you stay a little while ? 你 為 什麼 不 留下 來 一會兒 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 親切 . +Have you taken your medicine yet ? 您 已经 吃 过 药 了 吗 ? +There is been a death in his family . 他 的 家 不幸 有人 身亡 . +I agreed with her . 我 同意 她 . +Do not move ! 别动 ! +It was beginning to snow . 開始 下雪 了 . +This tunnel is twice as long as that one . 這條 隧道 是 那 條 的 兩倍 長 . +I think you should open an account here . 我 认为 你 应该 在 这里 开 个 账户 . +Do you ever dream about flying through the sky ? 你 曾經 夢想 在 天空 飛翔 嗎 ? +My left eyelid is twitching . 我 的 左 眼皮 在 跳 . +Do I have to do it right away ? 我 必須 立刻 做 嗎 ? +He has not written to us since last February . 他 從 去年 二月 開始 就 沒 寫信 給 我們 . +He is good at driving . 他 擅長 駕駛 . +He may have lost his way . 他 可能 迷路 了 . +We use a lot of water every day . 我們 每天 用 很多 的 水 . +I am playing volleyball now . 我 现在 在 打 排球 . +It is time for dinner . 吃 晚 飯 的 時間 到 了 . +I like mathematics . 我 喜歡 數學 . +That white building is a hospital . 那棟 白色 的 建築物 是 一家 醫院 . +At the time there were no native English speakers teaching in any public school . 當時 沒有 任何 以 英語 為 母語 的 人 在 公立 學校 任教 . +I am glad to have her company . 我 很 高興 有 她 的 陪伴 . +What did you do over the weekend ? 你 整個 週末 做 了 什麼 ? +You stink . 你 身上 发臭 了 . +Do you speak French ? 你 會 講 法語 嗎 ? +I was a high school student at that time . 我 当时 是 高中生 . +It is not important . 这 不 重要 . +I am exhausted . 困死 了 . +I would not sell that at any price . 任何 價格 我 都 不 會 賣 . +I am married . 我 结婚 了 . +I will think it over . 我 會 考慮 一下 . +His little brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +I was scared all the time . 我 一直 很 害怕 . +Tell me what to do with it . 告诉 我 拿 它 做 什么 . +I could answer all the questions . 我 能 回答 所有 的 問題 . +There was a lot of snow last year . 去年 下 了 很多 雪 . +He asked after you . 他 問候 了 你 . +Which book is yours ? 哪 本 是 你 的 书 ? +Are you single ? 你 是 单身 吗 ? +Take a breath and hold it . 深 吸 一口 氣然 後 屏住 氣 . +If I had worked hard in my youth , I would be successful now . 如果 我 年 輕 的 時候 努力 工作 , 我 現在 就 成功 了 . +Tom asked Mary to buy a gift for John . 汤姆 叫 玛丽 买 一份 礼物 给 约翰 . +I am really concerned about your future . 我 真的 很 關心 你 的 未來 . +You are blushing . 你 脸红 了 . +The dolphin and trainer communicated much better than we expected . 海豚 和 驯养 员 交流 得比 我们 所 期望 的 好得多 . +We can rest . 我们 可以 休息 . +I need it as quickly as possible . 我 尽快 需要 . +The strike affected the nation is economy . 罢工 影响 了 国家 经济 . +What are you doing down there ? 你 在 那里 干什么 ? +Prices are going up . 物价上涨 了 . +He is very good at playing guitar . 他 很 擅長 彈 吉他 . +Tom hid himself under the table . Tom 躲 在 桌子 底下 . +She came here as soon as she heard it . 她 一來 這裡 就 聽到 了 . +He made a clean break with them . 他 跟 他们 干脆 地 断绝来往 了 . +Could you recommend another hotel ? 你 能 推薦 另一家 旅館 嗎 ? +Tom is drinking some water . 汤姆 在 喝 点 水 . +How about going to see a movie tonight ? 今晚 看 电影 怎么样 ? +We got behind the car and pushed . 我們 到 車子 後 面 推車 . +You do not need to help me . 你 不用 帮 我 . +She stirred her coffee with a teaspoon . 她 用 茶匙 搅 她 的 咖啡 . +He lived in the center of London . 他 住 在 倫敦 市中心 . +Not a single person arrived late . 沒有 一個 人 遲 到 . +He will be back in a second . 他 很快 就 会 回来 . +Countless stars were twinkling in the sky . 无数 星星 在 天上 闪烁 . +She was able to answer whatever was asked . 不管 问 了 什么 , 她 都 能 回答 . +I will give you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +She planted roses in the garden . 她 在 花園 裡 種 了 玫瑰 . +It is rude of him not to give me a call . 他 不 打电话 给 我 真是 无礼 . +I will never forget going to Hawaii with her . 我 永远 不会 忘记 那次 跟 她 一起 去 夏威夷 . +My plans failed one after the other . 我 的 計劃 一個 接 一個 的 失敗 了 . +He said , " I want to be a doctor . " 他 說 : 「 我 想成 為 醫生 . 」 +Open your mouth and close your eyes . 张开嘴巴 闭上眼睛 . +Moderate exercise is necessary for good health . 適度 運動 對 身體 健康 是 必要 的 . +Underage drinking is a crime . 未满 年龄 饮酒 是 罪行 . +We bought a pound of tea . 我們 買 了 一磅 的 茶 . +I hope Tom appreciates it . 我 希望 汤姆 欣赏 它 . +Could you bring me some water ? 能 给 我 带 一点 水 来 吗 ? +Can you come for dinner tonight ? 你 今天 晚上 能 來 吃 飯 嗎 ? +Where can I take a bath ? 我 能 在 哪裡 洗澡 ? +That is an interesting piece of information . 这 是 条 有趣 的 信息 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He threw a piece of meat to a dog . 他 朝 狗 扔 了 一块 肉 . +The family is eating breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +I will see you again this afternoon . 今天下午 我 會 再 見 到 你 . +Slight inattention can cause a great disaster . 失之毫厘 , 谬之千里 . +I do not want to go alone . 我 不想 独自 前往 . +You should not keep them waiting so long . 你 不该 让 他们 等 那么 久 . +Japan is not rich in natural resources . 日本 並 不 擁有 豐富 的 自然 資源 . +Tom was very scared . 湯姆 非常 害怕 . +Do you think Tom is having fun ? 你 認為 湯姆 玩 得 高興 嗎 ? +He had no luck in finding work . 他 不幸 找 不到 工作 . +Tom said he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +What is your favorite home @-@ cooked food ? 你 最 喜歡 的 家常菜 是 什麼 ? +I am thinking of going to Europe . 我 正在 考慮 去 歐洲 . +I remember mailing the letter . 我 記 得 寄 了 信 . +He failed to answer the letter . 他 沒有 回信 . +I have an urgent message from Tom . 我 收到 汤姆 的 一条 紧急 消息 . +How is your family ? 你 家里人 都 还好 吗 ? +There are too many people there . 那裡 太 多 人 了 . +Although old , he is still very much alive . 虽然 上 了 年纪 , 他 依旧 充满活力 . +Those two are exactly alike . 那 兩個 是 一模 一樣 的 . +Tom says he is not sure if he can do that , but he says he will try . 汤姆 说 他 不 确定 是否 能 做到 , 但是 他 说 会 尝试 . +Kabul is the capital of Afghanistan . 喀布尔 是 阿富汗 的 首都 . +I wish you could have been there . 要是 你 能 在 那裡 就 好 了 . +You had better go to the infirmary . 你 最好 去 一下 医务室 . +It belongs to me now . 它 现在 归 我 了 . +My father has already given up smoking and drinking . 我 爸爸 已经 戒烟 戒酒 了 . +Please tell me what you think . 請 告訴 我 你 的 想法 . +I do not have the address now . 我 沒有 現在 的 地址 . +I noticed a pattern . 我 注意 到 一個 圖案 . +I accompanied her on the piano . 我 為 她 作 鋼琴 伴奏 . +Today is my sister is birthday . 今天 是 我 姊姊 的 生日 . +Can I register for that class ? 我 可以 登記 這 堂 課 嗎 ? +Does Tom drink coffee ? 汤姆 喝咖啡 吗 ? +He lives somewhere about here . 他 住 在 這 附近 某個 地方 . +I had a good dream last night . 昨晚 , 我 做 了 个 好 梦 . +Go straight down this street and turn right at the third light . 沿着 这 条路 直 走 , 到 第三个 红绿灯 的 地方 右转 . +There is something strange going on . 正 有 什么 奇怪 的 事情 发生 着 . +I would not do that if I were you . 如果 我 是 你 , 我 就 不 做 那件事 . +Scotland is famous for its woollen textiles . 蘇格蘭 以 其 羊毛 紡織品 而 著名 . +He broke into a house . 他 闖入 一間 房子 . +What is the name of this tune ? 这歌 叫 什么 名字 ? +I am very thirsty . 我 很渴 . +Tom was able to make himself understood in French when he visited Paris . 在 巴黎 , 沒 有人 能夠 理解 湯姆 的 法文 . +A boy of seventeen is often as tall as his father . 十七 歲 的 男孩 常常 長 得 和 他 父親 一樣 高 . +Put your hands up . 手 举 起来 . +What do you want ? 你 想要 什麼 ? +One can not help many , but many can help one . 一个 人 帮不了 许多 个 , 但 许多 人能 帮助 一个 . +This size is too large for me . 这个 码 对 我 来说 太 大 了 . +You did not write anything . 你 甚麼 也 沒寫 . +My brother seems to enjoy himself at college . 我 弟弟 似乎 在 大学 过 得 很 愉快 . +I have decided . 我 決定 了 . +She bought two pounds of butter . 她 買 了 兩磅 的 奶油 . +May I have a talk with you ? 我 能 和 你 谈谈 吗 ? +This bomb can kill a lot of people . 这个 炸弹 可以 炸死 很多 人 . +You have set a bad example . 你 做 了 个 坏 榜样 . +What is this supposed to mean ? 這 該 是 甚麼 意思 ? +They were frightened . 他們 被 嚇到 了 . +Many of the workers died of hunger . 许多 工人 死 于 饥饿 . +If I were invisible , I would not have to wear anything . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +He has had a crush on her . 他 一直 暗恋着 她 . +I got up very late this morning . 今天 早上 我 起 得 很 晚 . +Please let me try the game . 請 讓 我 試試 這個 遊戲 吧 . +My father got home late last night . 我 父親 昨晚 很 晚才 回家 . +I was having a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I will be right with you . 我 馬 上 就 来 . +The deadline is approaching . 期限 近 了 . +Have you read today is paper yet ? 你 看 過 今天 的 報紙 了 嗎 ? +Traffic downtown is all backed up . 市中心 的 交通 都 堵塞 了 . +These dresses are too large . 這些 洋裝 太 大 . +He is a sucker for beautiful women . 他 非常 喜歡 漂亮 的 女人 . +I really like to read . 我 真 喜欢 阅读 . +I tried very hard to put an end to their heated argument . 我 努力 地 平息 他們 不斷 加溫 的 爭執 . +She was elected chairman of the committee . 她 當 選為 委員會 主席 . +Why do you want to die ? 你 为什么 想 死 ? +I really do not know Tom . 我 真不 了解 汤姆 . +My father likes pizza . 我 父親 喜歡 批薩 . +He is wearing gloves . 他 戴 着 手套 . +I do not get what you mean . 我 不 明白 你 的 意思 . +We left the final decision to him . 我們 讓 他 做 最 後 的 決定 . +She was in a hurry to see her father . 她 急于 见 她 的 父亲 . +Beer bottles are made of glass . 啤酒瓶 是 玻璃 做 的 . +We were nearly frozen to death . 我们 几乎 被 冻死 了 . +I do not believe Tom is version of the story . 我 不 相信 汤姆 的 说法 . +They supplied the soldiers with enough food and water . 他们 给 士兵 提供 了 充足 的 食物 和 水 . +Burn this letter after you finish reading it . 看完 这 封信 请 把 它 烧掉 . +I was struck by lightning . 我 被 雷劈 了 . +Here is a book . 這裡 有 一本 書 . +Would you please come again later ? 請 您 稍 後 再 來 好 嗎 ? +Buy Tom a beer . 给 汤姆 买 一瓶 啤酒 . +It is not quite ready yet . 还 没 怎么 准备 好 . +I would like to check out right now . 我 想現 在 結帳 離開 . +In that case , I will change my mind . 这样的话 , 我会 改变 主意 . +You are German , are not you ? 你 是 德国人 , 不是 吗 ? +You have a good sense of humor . 你 很 有 幽默感 . +In addition to English , he speaks German . 除了 英文 , 他 還 說 德文 . +The garden was surrounded by a wooden fence . 花园 被 木 栅栏 围 了 起来 . +She was wearing long boots . 她 穿着 长靴 . +The phone rang . 電話 正在 響 . +My mother took me to the park . 媽媽 帶 我 去 公園 . +Can you solve this problem ? 你 能 解決 這個 問題 呢 嗎 ? +Wait a moment . 等 一下 . +A lot of people came today . 今天 來 了 很多 人 . +Who wrote Hamlet ? 哈姆雷特 是 誰 寫 的 ? +We caught the thief . 我们 抓住 了 小偷 . +You must not go out after dinner . 晚 飯 後 你 不 可以 外出 . +The boy I love does not love me . 我 爱 的 那个 男孩 不 爱 我 . +I think he is something of a poet . 我 觉得 他 有 几分 像 个 诗人 . +The next one is for you . 下 一个 给 你 . +We will stay quiet . 我們 會 保持 安靜 . +I do not blame you for hitting him . 我 不 怪 你 撞 到 他 . +No one comes to visit me anymore . 已经 没人来 拜访 我 了 . +A fox is not caught twice in the same snare . 一只 狐狸 不会 两次 掉入 同一个 陷阱 里 . +What does Tom know about me ? 汤姆 知道 我 的 什么 ? +You should quit smoking . 你 應該 戒菸 . +They say that golf is very popular in Japan . 他们 说 高尔夫 在 日本 很 流行 . +I dislike being alone . 我 不 喜歡 獨處 . +The flash was not working , so he could not take a picture in the dark . 因为 闪光灯 坏 了 , 他 不能 在 黑暗 中 拍照 . +She showed me her album . 她 給 我 看 她 的 相簿 . +I do not have a computer . 我 沒有 電腦 . +How is your wife , Tom ? 你 媳妇 怎么样 , 汤姆 ? +It is not necessary to answer that letter . 沒有 必要 回 那 封信 . +The doctor examined my throat . 醫生 檢查 了 我 的 喉嚨 . +This apple is too small . 這個 蘋果 太小 . +I met Tom for the first time three days ago . 我 三天 前 第一次 见 汤姆 . +I can speak English . 我 會 講 英語 . +If you really want to know , why do not you ask Tom ? 如果 你 真的 想 知道 的话 , 为什么 不问 一下 汤姆 呢 ? +You are always late . 你 总是 迟到 . +It is wrong to tell a lie . 說 謊 是 錯誤 的 . +Prices have reached a 13 @-@ year high . 价格 已经 达到 了 十三年 以来 的 最高点 . +He went to London in 1970 . 他 在 1970 年 前往 倫敦 . +I am looking for an old man . 我 正在 尋找 一位 老人 . +Can you just please go ? 能 請 你 離開 嗎 ? +She thought that I was a doctor . 她 以为 我 是 大夫 . +I do not like either tea or coffee . 我 不 喜歡 茶 也 不 喜歡 咖啡 . +Tom was the first to react . 湯姆 是 最先 作出 反應 的 . +I want you to understand why you have to do this . 我 想 让 你 明白 为啥 你 必须 这么 做 . +I will not need any help . 我 不 需要 任何 帮助 . +The door opened slowly . 门 慢慢 地 开 了 . +I do not get the joke . 我 没 明白 那个 笑话 . +The wall is thirty yards long . 這 堵 牆長 三十 碼 . +I have never gone fishing at night . 我 从没 在 晚上 钓鱼 . +She enjoyed herself at the concert . 她 在 音樂會 上 玩 得 很 開心 . +A rock fell from above . 一块 岩石 从 上面 落下 . +I think that I am intelligent . 我 觉得 我 很 聪明 . +They won . 他们 赢 了 . +Suddenly , it started to rain very hard . 突然 就 下起 了 大雨 . +Throw it away . 扔掉 +She is going to Chiba Stadium . 她 將 去 千葉 球場 . +We know the identity of Tom is killer . 我 㥃 知道 了 湯姆 的 殺手 的 身份 . +Tom will not let you in his house . 汤姆 不会 让 你 进 他 的 屋子 . +Tom looked Mary in the eye . 湯姆 與 瑪麗 對 視 . +Did you have a good time last night ? 你 昨天晚上 過 得 好 嗎 ? +The doctor advised my father to cut down on smoking . 医生 建议 我 父亲 减少 吸烟 . +His ideas are always practical . 他 的 主意 总是 可行 的 . +Cars are expensive . 车子 很贵 . +He put on an air of innocence . 他 摆出 一副 无辜 的 样子 . +What time is it now in Boston ? 波士顿 现在 几点 ? +I promised him that I would come today . 我 答应 他 我 今天 会来 . +I can recommend this book to you . 我 可以 向 你 推薦 這 本書 . +In another two weeks you will be able to get out of the hospital . 再 过 两周 你 就 可以 出院 了 . +Tom needs to be very careful . 湯姆 需要 很 小心 . +It is rare to meet nice people like you . 很少 能 见到 像 你 那么 好 的 人 . +Please replace the empty ink cartridge in the printer . 请 把 打印机 里面 的 空 的 墨粉 鼓 换掉 . +It is an hour is drive from here to there . 从 这里 到 那里 驾车 一 小时 . +You sure were noisy last night . 你 昨晚 確實 很 吵 . +Has anything changed ? 有 任何 事情 改變 了 嗎 ? +You are tired , are not you ? 你 累 了 , 不是 吗 ? +Please sing a song . 請 唱 一首歌 . +Please tell me everything is OK . 請 告訴 我 一切 都 好 . +I eat bread . 我 吃 面包 . +She bit into the apple . 她 咬了一口 蘋果 . +She left here right away . 她 馬 上 離開 了 這裡 . +I expected him to offer some help . 我 期待 他 提供 一些 幫助 . +I went to school in Boston . 我 曾经 在 波士顿 上学 . +I have not eaten anything for days . 我 好多天 没 吃 东西 了 . +I did not hear anyone talking . 我 沒 聽到 任何人 在 說 話 . +You can count on it . 你 可以 依靠 它 . +Let is not talk about it any more . 讓 我們 不要 再 談論 它 了 . +I am so sorry I hurt your feelings . 我 很 抱歉 伤害 了 你 的 感情 . +It is very hard getting a taxi in this city . 在 这个 城市 , 很难 打到 的 . +I phone him every day . 我 每天 都 给 他 打电话 . +Dear Santa , I want a girlfriend for Christmas . 圣诞老人 , 我 想要 一个 女朋友 当 圣诞礼物 . +She is really smart , is not she ? 她 真的 很 聪明 , 不是 吗 ? +Tom is a decent sort of guy . 汤姆 是 个 诚实 的 男孩 . +Mass production reduced the price of many goods . 大量 生產 降低 許多 商品 的 價格 . +Do you have plans for tonight ? 今晚 有 什么 计划 吗 ? +Perhaps he missed the train . 他 可能 错过 了 火车 . +I thought we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +We go fishing once in a while . 我們 偶爾 去 釣 魚 . +This glass contains water . 這個 杯子 裡 有 水 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +I waited for my friend for an hour . 我 等 我 的 一个 朋友 等 了 一 小时 . +I know this is important to you . 我 知道 这 对 您 来说 很 重要 . +Do you often come here ? 您 经常 来 这儿 吗 ? +She wants a new dress badly . 她 很 想要 一条 新 的 连衣裙 . +Here are some interesting links . 這裡 有些 有趣 的 連結 . +I should clean my room . 我 应该 打扫 我 的 房间 . +My dad does not like soccer . 我 爸爸 不 喜欢 足球 . +If time permits , I will visit the museum . 如果 時間 允許 , 我 會 去 參觀 博物 館 . +This is not my car . 這 不是 我 的 車 . +Who is the author of this book ? 這 本書 的 作者 是 誰 ? +He drank a cup of coffee . 他 喝 了 一杯 咖啡 . +I can not understand why you are so critical of him . 我 不 明白 为什么 你 这么 批评 他 . +Pilots communicate with the airport by radio . 飛行員 用 無線電 與 機場 溝通 . +Show me a cheaper one , please . 請 給 我 看看 便宜 一點 的 . +Tom is able to swim well . 湯姆 游泳 可以 游 得 很 好 . +Will you stay at home ? 你 会 待 在家 吗 ? +Sensing danger , he ran away . 他 一 嗅到 风声 不 对 , 就 逃之夭夭 了 . +I was able to find out his address . 我 能 找到 他 的 地址 . +They do not even know why . 他們 甚至 不 知道 為 什麼 . +He owes his success to good luck . 他 將 他 的 成功 歸 於 好 運 . +How much does it cost ? 多少 錢 ? +He will come on foot or by bicycle . 他 走路 或者 骑车 过来 . +Thank you for your patience . 谢谢 你 的 耐心 . +You work hard . 你 工作 努力 . +Do you want to stay any longer ? 你 想 再 待 下去 嗎 ? +He has all kinds of books . 他 有 各种各样 的 书 . +Please open the bottle . 請 打開 瓶子 . +English is just one of over 2,700 languages in the world today . 今天 , 英語 只是 世界 上 超過 2 , 700 種 語言 的 其中 之一 . +He designed the new building . 他 設計 了 新 建筑 . +Elephants live in Asia and Africa . 大象 生活 在 亞洲 和 非洲 . +How about dining out tonight ? 我们 今晚 出去 吃 怎么样 ? +I do not really use Facebook that much . 我 並 沒有 花 那麼 多 時間 在 Facebook 上 . +It is just a cold . 只是 感冒 而已 . +You can use this computer any time . 你 可以 隨時 使用 這 台 電腦 . +I am looking forward to seeing you again . 我 期待 再 見 到 你 . +He knows better than to marry her . 他 聰明 到 不 會 娶 她 . +May I speak with the teacher ? 我 能 和 老师 说话 吗 ? +Why do not you wait here while I finish what I am doing ? 为什么 你 不 在 这里 等到 我 做 完 为止 ? +Love is like oxygen . 爱 就 像 氧气 . +Please show me those pictures . 請 讓 我 看看 那些 圖片 . +We need some more coffee . 我們 需要 多 一點 咖啡 . +He made many excuses for being late . 他 為 遲 到 找 了 很多 的 藉口 . +A wise man would not say such a thing . 一个 聪明人 不会 说 这种 话 . +You should drink a lot of liquid . 你 應該 喝 大量 的 液體 . +I have seen the film before . 我 已经 看过 这部 电影 了 . +We were on the train for ten hours . 我們 在 火車 上 十個 小 時 . +Arabic is read from right to left . 阿拉伯语 要 从 右 往 左 读 . +The students have returned . 学生 们 回来 了 . +I have lost my cap . 我 把 帽子 弄 丟了 . +Who is that guy ? 那家伙 是 谁 ? +Water evaporates when it is heated . 當 水 被 加熱 時 , 水汽 蒸發 . +Choose your favorite racket . 選擇 你 喜歡 的 球拍 . +What is the matter with you ? 你 怎么 了 ? +I am a student at Oxford University . 我 是 牛津大学 的 学生 . +He is not qualified for the job . 他 不 勝任 這份 工作 . +She ran very fast to catch up with the other members . 她 跑 得 很快 是 为了 赶上 其他 成员 . +He is on goods terms with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +What is your husband is name ? 你 丈夫 叫 什么 ? +It is the things that we do not possess which seem to us most desirable . 得不到 的 东西 就 最 想得到 . +Tom will paint the fence tomorrow . Tom 明天 將漆 柵欄 . +He has a nice income . 他 收入 可观 . +He studies history at college . 他 在 大学 修读 历史 . +She cooks chicken the way I like . 她 用 我 喜歡 的 方式 烹調 雞肉 . +I have to buy Christmas gifts . 我 必须 要 买 圣诞礼物 了 . +How much is that mountain bike ? 那 辆 山地车 多少 钱 ? +You should study harder . 你 應 該 更 努力 學習 . +She will almost certainly pass the test . 她 幾乎 確定 會 通過 測驗 . +The sea is blue . 大海 是 蓝色 的 . +Are they students ? 他們 是 學生 嗎 ? +You are a student . 您 是 學生 . +She suggested to me that I call off the meeting . 她 建议 我 取消 会议 . +I can not stand that noise any longer . 我 不能 再 忍受 那 噪音 了 . +We go to school by bus . 我們 乘 公共 汽車 去 上 學 . +I went to a park this morning . 今天 早上 我 去 了 公园 . +I get along with my younger brother . 我 與 我 的 弟弟 相處 融洽 . +I wish you had told me the truth then . 但 願 你 那時候 就 告訴 我 真相 . +He wore a mask so that no one could recognize him . 他 戴 著 面具 以至 於 沒 有人 認出 他 . +Do not take things so seriously . 不要 把 事情 看得 這麼 嚴重 . +Let is start the party . 讓 我們 開始 這個 派 對 吧 . +I got her to clean my room . 我 讓 她 清掃 了 我 的 房間 . +Not everyone is smiling . 不是 每個 人 都 在 笑 . +Tom gave me a pen . 湯姆 給 了 我 一枝 筆 . +I was about to leave when you came in . 你 来 的 时候 我 刚好 要 走 . +I am amazed at your audacity . 我 对 你 的 大胆 感到 很 惊讶 . +He must be over sixty . 他 应该 超过 六十岁 了 . +His car is really cool . 他 的 車 真的 很酷 . +Watch out ! 当心 ! +The accident almost cost him his life . 事故 差点 让 他 丢 了 性命 . +She is just a child . 她 只是 個 孩子 . +She was killed in an automobile accident . 她 死 於 一場 汽車 車禍 . +Tom did not wear jeans yesterday . 湯姆 昨天 沒穿 牛仔 褲 . +Our baseball team is very strong . 我們 的 棒球 隊 很 強 . +I want us to do it together . 我 想 讓 我們 一起 做 . +The towel was not useful at all . 毛巾 完全 没起 作用 . +Three months is too short a time to finish the experiment . 要 完成 实验 , 三个 月 太短 了 . +I have been here for a long time . 我 在 這裡 很 長 一段 時間 了 . +I often use SSH to access my computers remotely . 我 经常 使用 SSH 来 远程 连接 到 我 的 电脑 . +You have been late for school more often than before . 你 比 以前 更 容易 上課 遲到 了 . +Your plan seems better than mine . 你 的 計劃 似乎 比 我 的 好 . +I wish I were a little taller . 但 願 我 長 高一 點 . +We buy eggs by the dozen . 鸡蛋 是 论 打买 的 . +That is exactly what he said . 这 就是 他 所说 的 . +I will let you know when I have figured it out . 我 搞 明白 了会 告诉 你 . +You said you were in trouble . How can I help ? 你 说 你 有 困难 . 我 能 帮忙 吗 ? +You do not have to answer quickly . 你 不必 快速 作答 . +He often sits for many hours reading books . 他 常常 坐 着 看书 一连 好几个 小时 . +There are seven continents on the earth . 地球 上 有 七大洲 . +Mary wants to become a teacher . 瑪麗 想成 為 一名 教師 . +Now it is time for the weather forecast . 现在 是 天气预报 的 时间 . +There are many shrines in Kyoto . 京都 有 許多 神社 . +I will attend . 我 會 參加 . +Tom told Mary not to waste her time trying to convince John to help . 汤姆 对 玛丽 说 , 不要 浪费时间 去 说服 约翰 来 帮忙 . +Tom seems nice . 汤姆 看着 是 个 好人 . +We have more customers than we can count . 我們 的 顧客 比 我們 可以 計數 的 更多 . +This hotel does not have a swimming pool . 這個 酒店 沒有 游泳池 . +Call me if you discover anything . 如果 你 發現 什麼 , 請 打 給 我 . +Tom and I are friends . 湯姆 和 我 是 朋友 . +You really are an idiot . 你 真的 是 ( 一 ) 個 笨蛋 . +It is all your fault . 都 是 你 的 错 . +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +This is the very book you wanted . 這 是 你 非常 想要 的 書 . +Tom was injured in the blast . 汤姆 在 爆炸 中 受伤 . +I wish to see my father . 我 希望 看看 我 的 父親 . +I have just had lunch . 我 剛 吃 過午 飯 . +Your wife is mad at you . 你 太太 在 生 你 的 氣 . +I could not get to sleep . 我 無法 入睡 . +Let is go to a movie . 讓 我們 去 看 電影 . +I intend to become a lawyer . 我 有志 成为 一名 律师 . +She is everything to him . 她 是 他 的 一切 . +He lives just across the road . 他 就 住 在 馬路 對面 . +We could not do that . 我们 做 不到 . +That is no business of his . 那 不關 他 的 事 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +She looked more beautiful than ever . 她 似乎 比 以往 任何 时候 都 漂亮 . +She gets up early every morning . 她 每天 早上 早起 . +When you have finished reading this letter , burn it . 看完 这 封信 请 把 它 烧掉 . +Why should we help ? 为什么 我们 应该 要 帮助 ? +His house was small and old . 他 的 房子 又 小 又 旧 . +I do not think this is correct . 我 觉得 这 不是 真的 . +I like pop music . 我 喜歡 流行 音樂 . +No one can control him . 沒人 管束 或 開導 他 . +I put it in the drawer . 我 把 它 放在 抽屜 裡 . +Tom , Mary and John are all here . 湯姆 、 瑪麗 和 約翰 都 在 這裡 . +The conference is to be held in Tokyo the day after tomorrow . 会议 将 在 后天 于 东京 举行 . +My mother is making a cake . 我 的 母親 在 做 蛋糕 . +I do not trust him any longer . 我 再也 不 相信 他 了 . +Go straight home . 直接 回家 . +Tom is out cold . 汤姆 正 昏迷不醒 . +I saw a horse pulling a cart . 我 看見 一匹 馬拉著 一架 馬車 . +In the light of what you told us , I think we should revise our plan . 根据 你 所说 的话 , 我 认为 我们 应该 重新 审视 我们 的 计划 . +Where did you get the money to buy that dress ? 你 從 哪兒 弄來 的 錢 去 買 那件 衣服 ? +I am still young . 我 還 年輕 . +I spent all day in the library . 我 整天 待 在 图书馆 . +He has a lot of money . 他 有 很多 钱 . +The house burned to the ground before the fire truck arrived . 消防车 到达 之前 , 房子 就 全 烧 了 . +Nearly all Japanese have dark hair . 几乎 所有 的 日本 人 头发 都 是 黑色 的 . +I have missed another chance . 我 又 失去 了 一次 机会 . +Take the pan off the fire . 把 平底 鍋離 火 . +I can see you are good at this . 我 看 你 擅长 做 这事 . +The topic is worth discussing . 這 是 值得 探討 的 話題 . +Many young people in Japan eat bread for breakfast . 許多 日本 的 年 輕 人 吃 麵 包 當 作 早餐 . +How did you find my house ? 你 怎么 找到 我 的 房子 的 ? +This is a good movie . 這 是 一部 好 電影 . +" Is that Tom calling again ? " " Yes . He calls every evening these days . I should not have given him my number . " “ 又 是 汤姆 的 电话 ? ” “ 嗯 . 最近 他 每天晚上 都 会 打 过来 . 当时 就 不该 给 他 我 的 号码 的 . ” +Do what you think is right . 做 你 認為 正確 的 事 . +I was quite annoyed . 我 被 烦死 了 . +I had some calls to make . 我 要 打 几个 电话 . +You can not build buildings on swampy land . 你 不能 在 沼澤 地上 建造 建築物 . +Tom is laughing . 汤姆 在 笑 . +The leaves fell to the earth . 树叶 掉 在 地上 . +Tom slept through the entire movie . 湯姆 在 整場 電影 放映 時 都 在 睡覺 . +I am afraid of dying . 我 怕死 . +My father drives a very old car . 我 的 父親 開 一輛 舊車 . +Are you hiding something ? 你 是不是 瞒 着 我 什么 ? +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 就 方寸大乱 了 . +Do your best . 盡力 而為 . +Could you please tell me again why you are late ? 你 能 再 向 我 解释 一遍 你 为什么 迟到 了 吗 ? +Does Tom play tennis ? 湯姆 打 網球 嗎 ? +You can not depend on Tom . 你 不能 靠 湯姆 . +Are there any other suggestions ? 還 有 其他 建議 嗎 ? +Would you like to know how I did that ? 你 想 知道 我 怎么 做到 的 吗 ? +What are you learning at school ? 你 在 学校 学 些 什么 呀 ? +Try to make the most of your time . 尽量 试 着 用好 你 的 时间 . +My job is washing dishes . 我 的 工作 是 洗碗 . +The plane made a perfect landing . 這 架 飛機 完美 的 著陸 了 . +Are you feeling better now ? 你 觉得 好些 了 吗 ? +I am glad I could help out . 能够 出 一份 力 太好了 . +Tom nearly died tonight . 汤姆 昨晚 差点 死 了 . +He is as tall as his father . 他 和 他 爸爸 一样 高 . +She had died before I arrived . 她 在 我 到 達 之前 去世 了 . +Do not be afraid to make a mistake . 別 害怕 犯錯 . +You are a wonderful woman . 你 是 位 了不起 的 女性 . +Alcohol consumption is increasing every year . 酒 的 消费 每年 都 在 上升 . +The two teams fought very hard . 两队 打 了 场 硬仗 . +It might snow tonight . 晚上 也许 会 下雪 . +As soon as the door opened , they ran away . 门 一开 , 他们 就 逃走 了 . +Do not you know that ? 你 不 知道 那件事 吗 ? +This does not concern you . 这 不是 你 的 事 . +The weather was so cold that the lake froze over . 天 冷 得 足以 让 湖 结冰 . +" Would you like any more ? " " No , I have had enough . " " 你 想 再 多 吃 點 嗎 ? " " 不 , 我 吃 飽 了 . " +Training will be provided . 会 有 训练 . +He gave it to me for nothing . 他 免費 把 它 給 了 我 . +He is alone . 他 獨自一人 . +While I was reading in bed last night , I fell asleep with the light on . 我 昨晚 在 床上 看书 的 时候 点着 灯 就 睡 了 . +You can buy it at any bookstore . 你 可以 在 任何 一家 書店 買到 它 . +I want something to write on . 我 想要 可以 在 上面 寫 字 的 東西 . +That is what I have to do . 那 是 我 必須 做 的 . +He has been to Hokkaido . 他 曾 去過 北海道 . +She is been working all day long . 她 已經 工作 了 一整天 . +If you want something to be done right , sometimes you have just got to do it yourself . 如果 你 想 做 对 一件 事 , 有时候 你 得 亲力亲为 . +Hippopotamuses love water . 河马 喜欢 水 . +I am a foreigner . 我 是 一個 外國 人 . +Not every country belongs to the U.N. 不是 所有 国家 都 加入 了 联合国 . +This city is cold and lonely without you . 没有 你 , 这 座 城市 寒冷 又 孤寂 . +Was the baby crying then ? 那時 嬰兒 正在 哭 嗎 ? +Spring will be here soon . 春天 快 來 了 . +We saw a funny movie last Sunday . 我們 上 星期天 看 了 一場 很 有趣 的 電影 . +He speaks poor French . 他 讲 不好 法语 . +I wish I could help you . 但 願 我 可以 幫助 你 . +Do you have a fever and a sore throat ? 你 發燒 和 喉嚨 痛 嗎 ? +What he said was over my head . 这人 讲 的 我 完全 听不懂 . +She left her gloves in the car . 她 把 她 的 手套 留在 車 上 了 . +I wish I could speak English . 但 願 我 會 講 英語 . +That is my sole concern . 这 是 我 唯一 关心 的 . +That is impossible . 这 不 可能 . +I have known her for five years . 我 已經 認識 她 五年 了 . +I wish you could come with us . 但 願 你 可以 跟 我們 一起 來 . +You should check it out . 你 應該 檢查 一下 . +That was not the main reason Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +She kissed him on the cheek . 她 在 他 的 脸颊 上 吻 了 一下 . +Sleep deprivation increases risk of heart attacks . 睡眠不足 增加 心臟病 發作 的 危險 . +Would you like some salad ? 你 要 來 點 兒 沙拉 嗎 ? +You have to leave . 你 得 走 了 . +Do you live here ? 你 住 這裡 嗎 ? +Tom knows it is over . 湯姆 知道 它 結束 了 . +Were you tired last night ? 昨晚 你 累 了 嗎 ? +She will return home next Sunday , that is , the tenth . 她 下 周日 回家 , 也 就是 10 号 . +What do you have in your bag ? 你 的 袋子 裡 有 什麼 ? +I love you more than you love me . 我 愛 你 多 於 你 愛 我 . +I am blind in the right eye . 我 的 右眼 瞎 了 . +My grandfather is in his nineties . 我 祖父 九十多 歲 了 . +I bought a camera the other day . 我 前 幾天 買 了 一台 照相 機 . +I got arrested . 我 被 逮捕 了 . +She looked away . 她 轉移 了 視線 . +This book is popular with students . 這 本書 受到 學生 的 歡迎 . +Whose book is this ? 這書 是 誰 的 ? +I will not be home next Sunday . 我 下 周日 不 在家 . +I would like to be a guitarist . 我 想要 成为 吉他手 . +She went there yesterday . 她 昨天 去 那裡 . +My sister goes to a university . 我 妹妹 上大學 . +I should be ready by 2 : 30 . 我 应该 在 2 : 30 准备 好 . +I provided him with food . 我 提供 了 他 食物 . +Tom often does not keep his promises . 汤姆 经常 不 守约 . +My family goes skiing every winter . 我 的 家人 每年 冬天 去 滑雪 . +I will keep doing it . 我 要 一直 做 下去 . +I will call for you at eight tomorrow morning . 我 明早 八点 来接 你 . +Your parents did not come , did they ? 你 的 父母 沒來 , 是 嗎 ? +Tom was so drunk that he did not even recognize me . 汤姆 醉 得 连 我 都 认不出来 了 . +Where do you want to go ? 你 想 去 哪裡 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +I like children . That is why I became a teacher . 我 喜欢 孩子 . 这 就是 为什么 我 成为 了 教师 . +I should have gone to Australia with Tom . 我 本该 和 汤姆 一起 去 澳大利亚 . +You will get into trouble if your girlfriend finds out the truth . 如果 你 女朋友 发现 真相 的话 , 你 会 有 麻烦 的 . +I am new at this kind of work . 我 新 接触 這種 工作 . +You should have shown him the device . 你 应该 给 他 看看 这 装置 . +Tom was not as handsome as Mary said he was . 汤姆 并 不是 玛丽 说 得 那样 英俊 . +A little bit of luck sometimes leads to an unexpected success . 一點點 的 運氣 有 時會 導致 意想不到 的 成功 . +Do not be afraid to make mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +Are you tired ? 你 累 了 嗎 ? +The room was cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I do not know what Tom saw . 我 不 知道 汤姆 看到 了 什么 . +He has gone to Italy to study music . 他 已經 去 義 大利 學習音 樂 了 . +It is not a dream at all . 它 根本 不是 夢 . +You look bored . 你 看 起來 很 無聊 . +Turn to the left . 向左转 . +The school is on the hill . 学校 在 小丘 上面 . +Tom was with a bunch of strangers . 汤姆 和 一堆 陌生人 在 一起 +I do not have time to play games with you . 我 没 时间 跟 你 玩游戏 . +I will never allow you to do that . 我 絶 不 會 讓 你 去 做 . +I really enjoy your company . 我 非常 享受 你 的 陪伴 . +Mary hid the money in her bra . 瑪麗 把 錢藏 在 了 文胸 裏 . +Swimming at night is dangerous . 夜里 游泳 很 危险 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I have a Facebook account . 我 有 一个 Facebook 的 帐号 . +He has no chance of succeeding . 他 沒有 成功 的 機會 . +Put out the light . 熄灯 . +This writer is Russian . 这个 作家 是 俄罗斯 人 . +I do not have any sisters . 我 没有 姐妹 . +I have not yet watched that video . 我 还 没 看过 那段 视频 . +Lots of people in Japan are indifferent to politics . 很多 日本 人 对 政治 冷淡 . +He is likely to arrive soon . 他 可能 很快 就 到 了 . +There must be some misunderstanding between us . 我们 之间 肯定 有 误会 . +My bicycle has a flat tire . 我 的 腳踏車 輪胎 沒氣 了 . +Tom was all worn out . 湯姆 完全 筋疲力盡 了 . +They helped each other with homework . 他們 互相 幫忙 做功 課 . +Tom got into trouble because of Mary . 湯姆 因為 瑪麗 陷入 了 麻煩 . +She told me that her mother had bought it for her . 她 告诉 我 她 妈妈 买 给 她 了 . +You can ask the child that is playing over there . 你 可以 問問 在 那裡 玩 的 孩子 . +You have to move . 你 得行 動 了 . +Wake me up early tomorrow morning . 明天 早上 早點 叫醒 我 . +My uncle gave me a gift . 我 叔叔 送 了 我 一样 礼物 . +Our teacher comes to school by car . 我們 老師 開車 來 學校 . +The project was a complete failure . 這個 計劃 徹底 的 失敗 了 . +How about another piece of cake ? 要 不要 再 來 一塊 蛋糕 ? +I have no objection to paying a special fee if it is necessary . 如果 必要 的话 , 我 不 反 对付 特别 费用 . +Why do you need this money ? 你 為 什麼 需要 這筆 錢 ? +I had no choice . 那时 我 没有 选择 的 余地 . +What is it like being Tom is girlfriend ? 做 汤姆 的 女朋友 怎么样 ? +Do you have a lot of time to relax ? 你 有 很多 休閒 時間 嗎 ? +JST stands for Japan Standard Time . JST 代表 日本 標準 時間 . +He married an actress . 他 和 一个 女演员 结婚 了 . +I will attend the next meeting . 我会 参加 下次 的 会议 . +There is some water left . 还 剩 一点 水 . +She went over the list to see if her name was there . 她 走 過去 看看 她 的 名字 是否 在 清單 上 . +This city is 1,600 meters above sea level . 这 座 城市 海拔 1600 米 . +He has three sons . 他 有 三个 儿子 . +I am at home . 我 在家 裡 . +Open the door , please . 请 开门 . +I have been wanting to see that movie for a long time . 我 想 看 那 电影 想 好久 了 . +My briefcase is full of papers . 我 的 公事包 裡 裝滿 了 文件 . +Everybody is fine . 每个 人 都 好 . +Turn right at the next intersection . 请 在 下 一个 十字路口 右转 . +Would you like to dance with me ? 你 愿意 和 我 跳舞 吗 ? +Water boils at one hundred degrees . 水 在 攝 氏 100 度沸騰 . +I do not want any milk at all . 我 完全 不要 牛奶 . +She can play the drum . 她 會 打鼓 . +I was angry because he was late . 因為 他 遲到 了 , 所以 我 很 生 氣 . +Both of my sisters are married . 我 的 两个 姐妹 都 结婚 了 . +Mother has a coffee shop . 媽媽 有 一個 咖啡 廳 . +How can I reach you ? 我 怎么 联系 你 ? +Tom fell asleep . 汤姆 睡着 了 . +The dog walked across the street . 這 隻 狗 穿 過 街道 . +Wherever you go , I will follow . 無論 你 去 哪裡 我 都 會 跟著 你 . +It has not been easy . 它 不 容易 . +I was almost hit by a car . 我 幾乎 被 車 撞 到 了 . +You have worked hard for months and have certainly earned a holiday . 你 已經 辛苦 地 工作 好 幾個 月 了 , 當然 可以 休假 . +She drew a circle on a piece of paper with a pencil . 她 用 铅笔 在 纸 上 画 了 一个圈 . +What would you do if you had ten thousand dollars ? 如果 你 有 一 万美元 , 你 想 做 什么 呢 ? +I have plenty of money with me . 我 身上 帶著 很多 錢 . +Sing us a song , please . 請 為 我們 唱首歌 吧 . +Very few people live to be 100 . 很少 人 活到 100 岁 . +Please come . 请来 吧 . +I am just worried about my weight . 我 只是 担心 我 的 体重 . +I will drop you off at the station . 我 載 你 到 車站 . +Let is start right away . 我们 立刻 开始 吧 . +I do not see much of him . 我 不常 見到 他 . +I really am unlucky ! 我 真的 很 倒霉 ! +She has a very quick mind . 她 反應 很快 . +I do not have any children . 我 没有 孩子 . +He has been studying for two hours . 他 学 了 两个 小时 . +What are they saying ? 他們 在 說 什麼 ? +Hey , I may have no money , but I still have my pride . 嗨 , 我 可能 没 钱 , 但 我 一直 有 我 的 骄傲 . +You do not understand the procedure . 你 不 明白 程序 . +Are you being paid for doing this ? 是 有人 花钱 让 你 做 这事 吗 ? +How are your parents getting along ? 你 的 父母 是 如何 相處 的 ? +I liked Tom is first book more than the second . 相比 第二本 , 我 更 喜欢 汤姆 的 第一 本书 . +I could not get the point of his speech . 我 不能 抓到 他 演讲 的 重点 . +We do not have any bread left . 我們 沒 麵 包 了 . +You have to leave . 你們 得 走 了 . +Tom interrupted our conversation . 湯姆 打斷 了 我們 的 談話 . +My father can fly an airplane . 我 的 父親 會 駕駛 飛機 . +Do you remember where we first met ? 你 还 记得 我们 第一次 见面 是 在 哪里 吗 ? +Is this your first time in Korea ? 你 是 第一次 来 韩国 吗 ? +Tom walked out . 湯姆 走 了 出去 . +I can hear you , but I can not see you . 我 听得见 你 , 但 我 看不见 你 . +What is your biggest fear ? 你 最 害怕 的 是 什么 ? +We took a walk along the river . 我們 沿著 河 散步 . +It is not hard to understand . 不 難 理解 . +My mother told us an interesting story . 我 的 媽媽 給 我們 講 了 個 有趣 的 故事 . +I have neither time nor money . 我 沒有 時間 , 也 沒有 錢 . +I am very sorry I came home so late . 我 很 抱歉 那么 晚 回家 . +He painted the ceiling blue . 他 把 天花板 刷成 了 蓝色 . +Tom moves quickly . 汤姆 动 得 好 快 . +He may become a baseball player . 他 可能 成為 一個 棒球 選手 . +See you tomorrow . 明天 见 . +The new Harry Potter movie is pretty lame . 哈利波 特的 新片 十分 差 . +All of a sudden , it became cloudy . 忽然 天氣 轉為 多 雲 . +He has been sick for a week . 他 病 了 一 星期 . +They took our passports . 他們 拿 了 我們 的 護照 . +Do not you play tennis ? 你 不 打 網球 嗎 ? +He graduated from high school this spring . 今年 春天 他 從 高中 畢業 了 . +There are some misprints , but all in all , it is a good book . 雖然 有 一些 印刷 錯誤 , 但 大致 上 說 來 , 這 是 一本 好 書 . +He took me to the station . 他 帶 我 到 車站 . +I learned to drive a car when I was eighteen and got a driver is license . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +It is no use crying over spilt milk . 為 濺出 的 牛奶 哭 也 沒用 . +There were some boats on the lake . 湖上 有 一些 船 . +Tom wrote that song three years ago . 汤姆 三年 前 创作 了 那首歌 . +I warmed myself in the bath . 我 泡 了 个 澡 身体 暖和 起来 了 . +I am looking forward to Christmas . 我 期待 聖誕節 的 到 來 . +I plan to go there . 我 打算 去 那裡 . +Her husband is an excellent cook . 她 丈夫 是 個 優秀 的 廚師 . +She grew roses . 她種 了 玫瑰 . +She was accused of telling a lie . 她 被 指责 说 了 谎 . +It may never happen . 它 可能 從 沒 發生 過 . +Do not miss the bus . 不要 错过 公车 . +Last year in the Philippines , earthquakes and tidal waves resulted in the deaths of more than 6,000 people . 去年 在 菲律宾 , 地震 和 海啸 造成 了 超过 6000 人 的 死亡 . +I can drive a car . 我会 开车 . +Do you actually believe that ? 你 真 信 吗 ? +Do you like Mozart is music ? 你 喜歡 莫扎特 的 音樂 嗎 ? +I was puzzled about what to do next . 我 对 以后 做 什么 很 迷茫 . +I certainly would not want to be seen with Tom . 我 当然 不想 被 人 看见 跟 汤姆 在 一起 . +You did a good job . 你 干 得 很 好 . +Tom made me do that . 是 汤姆 让 我 做 的 . +That was not the main reason why Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +We know this . 我们 知道 . +I feel like I am going to faint . 我 覺得 我 快 昏倒 了 . +Our school is in the center of the town . 我们 学校 在 市中心 . +English is used by many people . 英語 是 被 許多 人 使用 . +Sweet dreams ! 祝 你好 梦 . +The policeman did not tow your car away . 警察 沒有 拖走 你 的 車 . +I suggest that you do not trust Tom too much . 我 建議 你 別 太 相信 湯姆 . +What is my room number ? 我 的 房间 号 是 多少 ? +Leave my car alone . 離 我 的 車 遠 一點 . +Eighty percent of all information on computers around the world is in English . 全世界 百分之八十 電腦 上 的 資訊 都 是 用 英語 寫 的 . +Tom regrets his mistake . 湯姆 為 他 的 錯誤 後 悔 . +I have got to go to the bank . 我 要 去 银行 了 . +This is your book . 這 是 你 的 書 . +Tom is a fat man . 湯姆 是 個 胖子 +Father is watering flowers . 父亲 在 浇花 . +The door is locked at nine o 'clock . 這個 門 在 九點鐘 的 時候 是 鎖著 的 . . +I accepted her invitation . 我 接受 了 她 的 邀請 . +Tom could not decide where to begin . 湯姆 不能 決定 從 哪裡 開始 . +He always left the problem of his children is education to his wife . 他 總是 把 孩子 的 教育 問題 留給 他 的 妻子 . +She took me for my brother . 她 把 我 认作 我 弟弟 了 . +You do not have to answer right away . 你 不用 马上 回答 . +I usually take a shower in the evening . 我 通常 在 晚上 洗澡 . +How about taking a rest ? 休息 一下 怎麼樣 ? +She is leaving for America tonight . 她 今晚 離開 去 美國 . +They have been married two years . 他們 已經 結婚 兩年 了 . +He got down the book from the shelf . 他 從 架上 拿下 書 . +She plays tennis in the morning . 她 早上 打 網球 . +I have two children away at university . 我 有 两个 出去 上 大学 的 孩子 . +I thought Tom would be worried . 我 以为 汤姆 会 感到 担心 . +We know . 我们 知道 . +Do you play soccer ? 你 踢足球 嗎 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +My father is sweeping the garage . 我 父親 正在 清 掃車 庫 . +You must pay attention to his advice . 你 一定 要 注意 他 的 建议 . +I can not put up with this smell . 我 不能 忍受 這種 氣味 . +Do you come here often ? 您 经常 来 这儿 吗 ? +What are you reading now ? 你 現在 在 讀 甚麼 ? +The fire reduced the house to ashes . 房子 被 大火 烧成 了 灰烬 . +Farmers always complain about the weather . 农民 总是 抱怨 天气 . +Where can you get tickets ? 在 哪里 可以 买 到 车票 ? +I could not agree with his opinion . 我 不 同意 他 的 看法 . +They are high school students . 他們 是 高中生 . +Dogs have a keen sense of smell . 狗 的 嗅觉 灵敏 . +Tom has not yet told us what he wants us to buy . 汤姆 还 没 对 我们 说 他 希望 我们 买 什么 呢 . +I 'd be unhappy , but I would not kill myself . 我会 不 高兴 , 但 我 不会 自杀 . +Do not underestimate my power . 不要 小看 我 的 力量 . +Women eat lighter meals when they are eating with a guy . 當 女性 跟 一個 男人 吃 飯 時 , 女性 會 吃 得 比較 少 . +This is not a trivial matter . 这 不是 鸡毛蒜皮 的 小事 . +Will it rain tomorrow ? 明天 会 下雨 吗 ? +They say that old house is haunted . 據 說 老房子 鬧 鬼 . +I think that what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +He is no fool . 他 没 疯 . +He is proud of having been educated in the United States . 他 对 自己 在 美国 读 过 书 这件 事 感到 很 骄傲 . +I could hardly hear him . 我 幾乎 聽 不到 他 的 聲音 . +Excuse me . 对不起 . +I love drinking tea . 我 很 愛 喝茶 . +Please add my name to the list . 請 在 名單 上 加上 我 的 名字 . +Tom has more books than Mary . 湯姆 的 書 比瑪麗 的 還 多 . +Tom will never do it again . 汤姆 再也 不 做 了 . +They always complain . 他們 總 是 抱怨 . +Tom is the one , is not he ? 湯姆 就是 那 一個 , 不是 他麼 ? +Mary put some flowers in the vase . 玛丽 把 一些 花 放进 了 花瓶 . +I am a free man . 我 是 一個 自由 的 人 . +Do not throw trash here . 别 在 这儿 扔 垃圾 . +I went swimming in the river yesterday . 我 昨天 去 河里 游泳 了 . +You look like a little girl . 你 看来 是 个 小女孩 . +Tom is wrong . 湯姆 錯 了 . +Perhaps it will rain in the afternoon . 也許 下午 會 下雨 . +Why do you have two cars ? 他 為 什麼 有 兩輛 車 ? +You are never satisfied with anything I do . 你 對 我 做 的 任何 事 都 不 滿意 . +I want something to drink . 我 想 喝 點 什麼 . +No more , thank you . I am full . 不 , 谢谢 , 我 饱 了 . +She has a lot of English books . 她 有 很多 英文 書 . +Tom did not tell me his secret . 湯姆 沒有 告訴 我他 的 祕 密 . +You ought not to go out . 你 不 應該 出門 . +A barber is a man who shaves and cuts men is hair . 理 髮 師 是 為 男人 刮 鬍 子 和 剪 頭 髮 的 人 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +I am cool . 我 很酷 . +The man sold his soul to the devil . 这 男人 把 他 的 灵魂 卖 给 魔鬼 . +I do not procrastinate as much as I used to . 我 不 像 我 以前 那么 拖延 了 . +What did you do with your camera ? 你 用 你 的 照相机 做 了 什么 ? +I think I can run as fast as Tom . 我 认为 我 能 跑 得 跟 汤姆 一样 快 . +What did you do last night ? 你 昨晚 做 了 什麼 ? +The light is green . 現在 是 綠燈 . +Is there someone that can drive ? 有人 会 开车 吗 ? +The music was very loud . 那 音乐 声音 十分 响 . +I am getting old . 我 在 变老 . +People are more educated now than they used to be . 现在 的 人 教育 程度 比 以前 高 得 多 . +Do not confuse desire with love . 不要 把 欲望 和 爱情 混为一谈 . +It is likely to rain all weekend . 可能 整個 週末 都 下雨 . +Today , many people worry about losing their jobs . 今天 , 許多 人 擔心 失去 工作 . +What is over there ? 那 是 什么 ? +Has he met them today ? 他 今天 見 他們 了 嗎 ? +I should really get some sleep . 我 真該 睡 一 覺 了 . +There is a pub just around the corner . 在 轉角 有 一家 酒吧 . +You made the same mistake as last time . 你 犯 了 跟 上次 相同 的 錯誤 . +They hated Tom . 他們 恨 湯姆 . +I saw you driving your new car . 我 看到 你 開著 你 的 新車 . +I can not deal with this problem anymore . 我 不能 再管 这 问题 了 . +Tom is a true man . 汤姆 是 个 真 男人 . +I am lost . 我 迷失 了 . +I do not plan to stay very long . 我 沒有 打算 停留 太久 . +Tom is here because of me . 因为 我 , 汤姆 在 这里 . +Looking at your Facebook friends ' photos is a waste of time . 在 Facebook 上 瀏覽 朋友 的 照片 是 在 浪費 時間 . +There is no way off the island . 沒有 辦法 離開 這個 島 . +You are really wonderful . 你 真是 太好了 . +I play tennis once in a while . 我 偶爾 打 網球 . +He was ill , so he could not come . 他 病 了 , 所以 他 不能 來 . +It is not a bug , it is an undocumented feature . 这 不是 一个 漏洞 , 而是 一个 没有 写 进 文档 的 特性 . +You should drive at a safe speed . 你 應該 以 安全 速度 駕駛 . +What did you have to eat ? 你 必須 吃 什麼 ? +I have always wanted to be a professional basketball player . 我 一直 想 成为 一名 职业 篮球 运动员 . +The stripes were horizontal . 條紋 是 水平 的 . +Tom looked pretty healthy last night . 汤姆 昨晚 看来 很 健康 . +As far as I am concerned , she is a complete stranger . 她 对 我 来说 是 一个 完全 陌生 的 人 . +I have got things under control . 我 控制 住 了 . +He pretended to be a doctor . 他 假裝 是 一名 醫生 . +Could you please repeat what you just said ? 您 可以 再 重复 一遍 刚才 说 的话 吗 ? +He got a loan from the bank . 他 從 銀行 得到 了 貸款 . +What do you think I should wear on my date tomorrow ? 你 觉得 我 明天 约会 穿 什么 好 呢 ? +I might say yes . 我 可能 会 说 是 . +She said that she had been happy . 她 說 她 以前 很快 樂 . +He has been to Europe many times . 他 去過 歐洲 很 多次 了 . +Tomorrow is my day off . 明天 是 我 的 休息日 . +I bought this book the other day . 我 前 幾天 買 了 這 本書 . +This is not good . 这 不好 . +She was aching all over . 她 全身 都 疼 . +His speech was short and to the point . 他 的 演讲 简短 且 切中要害 . +I often played tennis with her . 我 常常 和 她 打 網球 . +See above . 参见 上 文 . +I am sending you a birthday present by airmail . 我 寄 給 你 一個 航空 郵件 生日 禮物 . +I went there because I wanted to . 我 去 了 那裡 , 因為 我 想 去 . +You will soon get used to speaking in public . 你 很快 就 會 習慣 在 公開場 合 講話 了 . +Can you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +I am just another man . 我 只是 个 大众 脸 . +I can do it in a week . 我 可以 在 一週 內 做 . +There is food on the desk . 书桌上 有 食物 . +I need some help with my work . 我 在 我 的 工作 上 需要 一些 幫助 . +Can you hear me ? 你 听得见 吗 ? +If you need a pen , I will lend you one . 如果 你 需要 笔 的话 , 我 借 你 一支 . +That is exactly how I feel . 那 就是 我 的 感受 . +He did not accept their invitation . 他 沒有 接受 他們 的 邀請 . +Tom says he left a note . 汤姆 说 他 留 了 张 便条 . +Do we have milk in the fridge ? 我们 冰箱 里 有 牛奶 吗 ? +Do not pay any attention to what your father says . 别 在意 你 父亲 说 的话 . +Maybe you will succeed . 也許 你 會 成功 . +I do not want to fail my exams . 我 不想 挂科 . +Do you have it ? 你们 有 吗 ? +He was playing tennis all day . 他 整天 打 網球 . +We lost it . 我们 失去 了 它 . +I think you went too far . 我 觉得 您 过火 了 . +She has to take a remedial course in English . 她 需要 上 英语 补习班 . +She asked me where I was going . 她 問 了 我 要 去 哪裡 . +It is going to rain this evening . 今天 晚上 會 下雨 . +Get off your high horse , Tom . 别 那么 趾高气扬 , 汤姆 . +He is getting better bit by bit . 他 一點 一點 地 變好 . +I did not recognize anyone in the room . 房子 里面 的 人 我 一个 也 不 认得 . +We should have worked harder . 我們 應該 工作 得 更 努力 . +What is Tom given us ? 汤姆 给 了 我们 什么 ? +How am I going to explain this ? 我 要 怎麼 解釋 ? +It is difficult to understand this novel . 这部 小说 很 难 读懂 . +I relaxed at home last Sunday . 我 上個 星期天 在家 裡 放 輕 鬆 . +I thought my head would explode . 我 觉得 我 的 头 要炸 了 . +It was a lot of fun . 它 很 好玩 . +I have been here a long time . 我 在 這裡 很 長 一段 時間 了 . +I must repay the debt . 我 必须 偿还债务 . +Put the book where you found it . 把 書 放在 你 找到 的 地方 . +I did not see him . 我 没 见到 他 . +You should try to form the habit of using your dictionaries . 你们 该 养成 使用 字典 的 习惯 . +How long have you been abroad ? 你 在 國外 多久 了 ? +It looks like it will rain today , too . 今天 也 好像 會 下雨 . +Are you still living with your parents ? 你 依然 和 父母 住 一起 吗 ? +Please stop that right now . 请 即刻 停止 . +I want to move out of this cramped room as soon as I can . 我 想 尽快 从 这个 不透气 的 屋子里 出去 . +He is rarely in a good mood . 他 很少 心情 很 好 . +I am dripping with sweat . 我 正 流 着 汗 . +It is likely to rain again . 很 有 可能 还 会 下雨 . +My ex @-@ husband no longer lives in this city . 我 前男友 不再 住 在 這個 城市 了 . +He cured my illness . 我 的 病 给 他 治好 了 . +He finally became the president of IBM . 他 最终 成 了 IBM 的 总裁 . +He wants something cold to drink . 他 想 喝 些 冷 飲 . +I would like to sit in the non @-@ smoking section . 我 想 坐在 无烟 区 . +I was offended by his behavior . 他 的 行為 冒犯 了 我 . +He has no house in which to live . 他 没有 房子 住 . +I have got everything that you want . 我 已經 得到 了 一切 你 想要 的 東西 . +She gave me a meaningful look . 她 意味 深長 地 看 了 我 一眼 . +It is not anything like as cold as it was yesterday . 今天 沒有 像 昨天 那麼 冷 . +I think I have found the answer . 我 想 我 找到 答案 了 . +I have never seen him wearing jeans . 我 從來 沒有 看 過 他 穿 牛仔 褲 . +How often do you see him ? 您 多久 见 他 一次 ? +Who is dying ? 誰 要死 了 ? +This will be a good souvenir of my trip around the United States . 这 将 是 我 环绕 美国 旅行 中 一个 很好 的 纪念品 . +Swimming is easy for me . 游泳 對 我 來說 很 容易 . +I like this dog . 我 喜欢 这 只 狗 . +Between you and me , I think our boss is stupid . 我 觉得 我们 老板 很蠢 , 这 我 就 只 跟 你 说 . +Should Tom be worried ? Tom 應該 要 擔心 嗎 ? +I will remember you forever . 我 會 永遠 記住 你 的 . +The clown made a funny face . 小丑 做 了 个 鬼脸 . +I have a proposal . 我 有個 提案 . +He scraped the mud off his boots . 他 刮下 靴子 上 的 泥巴 . +I am a detective . 我 是 个 侦探 . +The house was in flames . 房子 被 火 吞噬 了 . +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +That was wrong . 那样 是 错 的 . +May I share this table with you ? 我 可以 跟 你 共用 這 張 桌子 嗎 ? +I met him just as he was coming out of school . 正 當 他 從 學校 回來 的 時候 , 我 遇見 了 他 . +Take care . 照顾 好 自己 . +How was the seminar ? 这 研究会 怎么样 ? +He drank a whole bottle of milk . 他 喝 了 一整瓶 的 牛奶 . +How is it going ? 你們 好 嗎 ? +Are you wearing a watch ? 你 有 戴 手表 吗 ? +Do you have to make dinner ? 你 必须 做 晚饭 吗 ? +Everyone knew Tom was the one who did it . 大家 都 知道 是 汤姆 做 的 +She could not attend that party because she was sick . 她 因 病 不能 出席会议 . +My eyes hurt . 我 的 眼睛 痛 . +There is a photo of Tom on Mary is desk . 在 瑪麗 的 桌上 有 張湯姆 的 照片 . +Kyoto has many places to see . 在 京都 , 有 很多 的 景点 值得一看 . +You will need a special tool to do it . 你 会 需要 一个 特殊 的 工具 来 做 这件 事 . +They made him captain of the team . 他們 要 他 作隊 長 . +He had decided on a new policy . 他 已經 決定 了 新 的 政策 . +We have a great team . 我们 有个 好极了 的 团队 . +These boxes are made of plastic . 這些 箱子 是 由 塑料 製 成 的 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +You do not need money . 你 不 需要 錢 . +He may be able to come tomorrow . 他 也 許 明天 能來 . +I will be there rain or shine . 風雨無阻 我 都 會 在 那裡 . +There is a cup on the table . 桌上 有個 杯子 . +Tom wanted revenge . 湯姆 想 報仇 . +She made elaborate preparations for the party . 她 精心 籌備 了 這個 派 對 . +I will be your first patient . 我 將 是 你 的 第一 個 病人 . +He must finish his homework today . 他 今天 必須 完成 他 的 功課 . +It was through his influence that she became interested in ecology . 她 开始 对 生态学 感兴趣 , 是 受到 他 的 影响 . +I do not recommend eating in that restaurant . The food is awful . 我 不 推荐 在 那家 餐馆 吃饭 . 食物 糟糕 透 了 . +I study for 3 hours every day . 我 每天 讀書 三個 小 時 . +Who threw a stone at my dog ? 谁 朝 我 的 狗 扔 的 石子 ? +Love makes the world go round . 爱 让 世界 转动 . +It was just a matter of time . 这 只是 时间 上 的 问题 . +Do you know when they will arrive ? 你 知道 他们 什么 时候 到 吗 ? +Someone told me about that . 有人 跟 我 說 這件 事 . +Tom encouraged his son to study French . 汤姆 鼓励 他 儿子 学法语 . +What did you go to Kyoto for ? 你 為 什麼 去 京都 ? +Sometimes things that happen do not make sense . 有时候 , 发生 的 事情 并 不是 合情合理 的 . +Please let me go . 請 讓 我 走 . +Who was here ? 谁 来 了 这里 ? +He has gone abroad by himself . 他 一个 人 去 了 国外 . +By the year 2020 , the population of our city will have doubled . 在 2020 年 以前 , 我們 的 城市 的 人口 將 增加一倍 . +My room is upstairs on the left . 我 的 房間 在 樓上 的 左邊 . +There was little water in the well . 這 口 井裡 的 水 很少 . +It is been ten years since I came to this town . 我 來 這個 鎮有 十年 了 . +The goods arrived undamaged . 货物 毫无 损坏 地 到达 了 . +Generally , Japanese people are shy . 一般而言 , 日本 人 很 害羞 . +She employed a private detective to keep a watch on her husband . 她 僱 了 一個 私人 偵探 看守 她 的 丈夫 . +That is a hard question to answer . 那 是 一個 很 難 回答 的 問題 . +I think you have mistaken me for someone else . 我 想 你 將 我 認成 別人 了 . +He is not my brother . He is my cousin . 他 不是 我 的 兄弟 . 他 是 我 的 表弟 . +Would you like anything to eat ? 您 想 吃 点 什么 吗 ? +That is the chair that I really like . 那 是 我 真的 很 喜歡 的 椅子 . +I am good at soccer . 我 擅長 足球 . +It only costs $ 10.00 ! 只要 十元 ! +I 'd rather not go out this evening . 我 今天 晚上 寧可 不要 出門 . +I ate french fries . 我 吃 了 炸薯 條 . +Tom has lived here since 2003 . 汤姆 自从 2003 年 就 住 在 这里 . +How many days are there in a week ? 一周 有 几天 ? +We expect a lot from him . 我們 對 他 期望 很多 . +He is glad to hear the news . 他 很 高興 聽到 這個 消息 . +Buy some milk on your way home . 回来 的 路上 买点 牛奶 . +I am crazy about you . 我 為 你 瘋狂 . +Would you care for another cup of coffee ? 再 来 一杯 咖啡 怎么样 ? +There are many hotels downtown . 市中心 有 很多 旅馆 . +I am glad Mary is not my wife . 我 很 高兴 玛丽 不是 我 的 妻子 . +Stay out of my kitchen . 别 进 我 的 厨房 . +It is stopped snowing . 雪停了 . +I was the last one to turn in my test . 我 是 最后 交 的 考试卷 . +Are you a practicing physician ? 你 是 执业 医师 吗 ? +She wept the entire night . 她 一 整晚 都 在 哭 . +I can hardly see without my glasses . 沒有 了 我 的 眼鏡 我 幾乎 看不到 . +He is the boy we spoke about the other day . 他 是 前 幾天 我們 談到 的 那個 男孩 . +I saw a girl with long hair . 我 看见 一个 长 头发 的 女生 . +Tom did not need to finish that work by today . 汤姆 不必 今天 就 完成 那 工作 . +Your father is pretty tall . 你 爸爸 很 高 . +You are partially correct . 你 部分 正确 . +Why exactly did you need to do that ? 你 到底 为什么 要 这么 做 ? +Some of them seem to be too difficult . 其中 一些 似乎 太 难 了 . +Do not you want to know why ? 你 不想 知道 为什么 吗 ? +He is a friend of my brother is . 他 是 我 弟弟 的 一個 朋友 . +It is not a watch . 這 不是 手 錶 . +Take as much as you like . 你 爱 拿 多少 就 拿 多少 . +She warmed herself by the fire . 她 在 火 旁邊 讓 自己 暖和 起來 . +Few students could understand what he said . 幾乎 沒有 學生 能 懂 他 所 說 的 話 . +In case of fire , ring the bell . 萬 一 發 生火 災 , 按 鈴 . +We should call the police . 我們 應 該 叫 警察 來 . +Tom is my older brother . Tom 是 我 哥哥 . +I really want to see you . 好 想 見 到 你 +Earthquakes frequently hit Japan . 地震 頻繁 地 襲擊 日本 . +He works in a factory . 他 在 一家 工廠 工作 . +I like grape jelly best . 葡萄 味 的 果凍 是 我 最 喜歡 的 . +How long will this rope hold ? 這條 繩子 能撐 多久 ? +My sister made me a beautiful doll . 我 妹妹 做 了 一個 漂亮 的 娃娃 給 我 . +A ball is floating down the river . 一個 球 正 順流而下 . +What are the origins of the Olympics ? 奥林匹克 的 起源 是 什么 ? +I am sick and tired of hamburgers . 我 吃 膩 了 漢堡 . +I studied English for four years with a native speaker . 我 跟 英语 母语 者 学 了 四年 英语 . +You gain nothing by speaking ill of others . 通过 诋毁 别人 , 你 得不到 什么 . +I would like to introduce you to my parents . 我 想 介紹 你 給 我 父母 認識 . +Tom did not know Mary had a boyfriend . 湯姆 不 知道 瑪麗 有 男朋友 . +Children need loving . 孩子 们 需要 关爱 . +The army forced him to resign . 军队 强迫 他 辞职 . +She must still be in her twenties . 她 一定 還 只是 二十 幾歲 . +He is still very much alive . 他 依旧 充满活力 . +The cat is under the table . 猫 在 桌子 底下 . +Tom begged me to let him go home early . 汤姆 求 我 让 他 早点 回家 . +I go to bed after I study . 我 讀 完 書 之 後 就 去 睡 覺 . +We are finding it difficult deciding on which one to buy . 我们 觉得 很 难 决定 买 哪 一个 . +I bought a camera two days ago . 兩天 前 我 買 了 一台 照相 機 . +Kissing a person who smokes is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +Tom wondered why there was a dog in his house . 汤姆 奇怪 为什么 他 的 房子 里 有 只 狗 . +I am still angry about that . 我 还是 为 那 生气 . +I just was not paying attention . 我 只是 没 注意 . +Sorry , we do not accept credit cards . 對 不起 , 我們 不 接受 信用卡 . +I hope it will be fine tomorrow . 我 希望 明天 將 是 美好 的 . +Japan imports various raw materials from abroad . 日本 從 國外 進口 各種 原料 . +Tom likes swimming . 湯姆 喜歡 游泳 . +I am going to major in French . 我 將 主修 法文 . +He looked in all directions , but did not see anyone . 他 看 了 看 四周 , 但 沒 看見 任何人 . +Do whatever you think is right . 做 你 認為 正確 的 事 . +What we had to do was really quite simple . 我們 要 做 的 很 簡單 . +He is always worrying about his daughter . 他 一直 很 担心 他 的 女儿 . +I cannot help thinking that my son is still alive . 我 不禁 想 我 的 儿子 一直 都 在 生 . +Tom is French is already rather good . 汤姆 的 发育 已经 很 好 了 . +He is much older than he looks . 他 的 實際 年齡 比 他 看 起來 老 得 多 . +I am not a doctor . 我 不是 醫生 . +He seems to be rich . 他 看 起來 很 有 錢 . +Will you listen to me for a few minutes ? 您 愿意 听 我 说 几分钟 话 吗 ? +They kissed . 他们 亲吻 了 . +A caged cricket eats just as much as a free cricket . 籠子 裡 的 蟋蟀 吃 得 跟 野生 的 蟋蟀 一樣 多 . +I bought two pairs of trousers . 我 买 了 两条 裤子 . +They were all hoarse from shouting . 他們 全都 叫 到 沙 啞 了 . +Who did you talk with ? 你 和 谁 说话 呢 ? +Tom seems to be easygoing . 湯姆 看來 隨 和 . +Coffee will be served after the meal . 咖啡 將 會 在 餐 後 供應 . +I do not like that guy . 我 不 喜欢 那家伙 . +I still love her . 我 仍然 爱 着 她 . +Tom does not have a lot of freedom . 汤姆 没有 很多 自由 . +Tom got ripped off . 汤姆 被 敲竹杠 了 . +Tom puts gas in his car twice a week . 湯姆 每週 幫 車子 加 兩次 油 . +You are cuter than Mary . 你 比 玛丽 可爱 . +He lives alone . 他 一个 人 生活 . +My mother is writing a letter now . 我 母親 現在 正在 寫 一封信 . +He is interested in many things . 他 對 很多 事情 都 有 興趣 . +Our car broke down last night . 我們 的 昨晚 車 拋錨 了 . +Learning French is not difficult . 学法语 不难 . +You can call me anytime you like . 你 喜欢 什么 时候 打给 我 就 什么 时候 打 . +Would you please look over my report ? 你 可以 仔細 檢查 一下 我 的 報告 嗎 ? +A burglar broke into my house while I was away on a trip . 一个 入室 盗窃者 趁 我 去 旅游 的 时候 闯入 了 我家 . +Tom wanted something else . 湯姆 想要 別的 東西 . +This fork is dirty . 這 把 叉子 是 髒 的 . +They insist that he should go . 他们 坚持 让 他 走 . +She spoke scarcely a word of English . 她 几乎 不 说 英语 . +Could I borrow a pencil ? 我 能 借支 铅笔 吗 ? +I suppose you like him . 我 猜想 您 喜欢 他 . +It is much more convenient . 这 方便 得 多 了 . +I am not as tall as you . 我 沒 有 你 高 . +He often eats fish for dinner . 他 晚 飯 經常 吃 魚 . +I ripped my pants . 我 扯掉 了 自己 的 裤子 . +Much of London was destroyed in the seventeenth century . 倫敦 許多 部份 在 十七 世紀時 被 摧毀 . +Why do not we stop arguing over these piddling matters and get to the issues at hand ? 为什么 我们 不 停止 为 细枝末节 的 争吵 而 进入 正题 呢 ? +Let is go as soon as it stops raining . 只要 雨 一停 我们 就 走 . +He often sits by me and listens to music . 他 经常 坐在 我 旁边 听 音乐 . +He is still sitting on the bench . 他 還 坐在 長椅 上 . +I baked some apple pies . 我 烤 了 蘋果 派 . +He is often mistaken for a student . 他 常常 被誤 認為 是 個 學生 . +I have breakfast at seven . 我 在 七點 吃 早 飯 . +Pick up the pencil from the floor . 從 地上 撿 起 這 支 鉛 筆 . +I cannot find fault with him . 我 挑不出 他 的 毛病 . +When did Tom ask you to do that ? 湯姆 是 甚麼 時候 讓 你 去 做 的 ? +What is aspirin made of ? 阿司匹林 是 用 什么 做 的 ? +Will I be the only one going to the party ? 会 不会 只有 我 一个 人 去 聚会 ? +He is taller than his brother . 他 比 他 的 弟弟 高 . +I will do my best . 我 會 盡力 而為 . +How dare you speak like that ? 您 怎么 敢 这样 说话 ? +We know it was you that killed Tom . 我們 知道 昰 你 殺 了 湯 姆 . +I thank you very much for your kindness . 我 十分 感谢 你 的 好意 . +Are you still at home ? 你們 還 在家 裡 嗎 ? +I was just about to come looking for you . 我 剛才 正要 找 你 . +Please come back as soon as possible . 请 尽快 回来 . +We must respect other people is privacy . 我們 必須 尊重 別人 的 私 隱 . +Tom was waiting inside his cabin . 汤姆 在 他 的 小 屋里 等 着 . +These flowers have a unique smell . 這些 花 有 一種 獨特 的 氣味 . +He is able to play the guitar . 他 會 彈 吉他 . +I 'd like a room facing the garden . 我 想要 一間 面 對 花園 的 房間 . +He is a screwball . 他 是 一個 怪人 . +Did Tom tell you it was an emergency ? 你 告诉 汤姆 那 是 紧急情况 了 吗 ? +What is wrong , honey ? 出 什么 事 了 , 宝贝 ? +This is my bicycle . 这 是 我 的 自行车 . +It sounds as if he were to blame for the disaster . 听 起来 好像 他 是 这场 灾难 的 罪魁祸首 . +You 'd better wear a sweater under your jacket . 您 最好 在 外衣 里 穿 一件 套衫 . +Fancy meeting you here ! 想不到 會 在 這裡 遇見 你 ! +Quite a few Americans like sushi . 不少 的 美國 人 喜歡 壽司 . +I am good at singing . 我 唱歌 很 好听 . +I am not picky . I will eat anything . 我 不 挑剔 , 我 什么 都 吃 . +I saw Liz this morning . 今天 早上 我 看到 了利茲 . +Are there any direct flights between Boston and Sydney ? 请问 波士顿 和 悉尼 之间 有 直飞 航班 吗 ? +It is essentially a question of time . 它 本質 上 是 一個 時間 的 問題 . +She took care of the poor little bird . 她 照顾 可怜 的 小鸟 . +Whose idea was it to call the police ? 想 报警 的 是 谁 ? +She had the nerve to speak out . 她 有 膽量 說 出來 . +What vegetables do you like to eat ? 你 喜歡 吃 什麼 菜 ? +He started to speak English . 他 开始 说 英语 了 . +It was very cold yesterday morning . 昨天早上 很 冷 . +Animals are afraid of fire . 动物 怕 火 . +She kept working . 她 继续 工作 . +He played baseball after school . 他 放学 后 打 棒球 . +I feel fine . 我 感觉 很 好 . +We succeeded . 我们 成功 了 . +I saw a helicopter flying overhead . 我 看见 一架 直升飞机 在 头顶 飞 . +Please wrap it like a Christmas present . 請 把 它 包裝 得 像 一個 聖誕 禮物 . +She went down to the fifth floor . 她 下五 樓 去 了 . +Tom works in Boston . 湯姆 在 波士 頓 工作 . +It is just around the corner . 就 在 转角处 . +Will you help me move this desk ? 你 能 幫 我 搬 這 張 桌子 嗎 ? +She studies mathematics . 她 学习 数学 +I think about it often . 我 经常 想着 它 . +He was home alone at the time . 他 当时 一个 人 在家 . +I watched a great movie yesterday . 我 昨天 看 了 部 很棒 的 電影 . +In the U.S. , most people can vote when they reach eighteen years of age . 在 美国 , 大多数 人能 在 十八岁 后 投票选举 . +He married a pretty girl . 他 娶 了 一個 漂亮 的 女孩 . +He participated in the debate . 他 参加 辩论 +I got a bee sting . 我 被 蜜蜂 蛰了 一下 . +Give it back . 还 回去 +They obeyed orders . 他们 服从 了 命令 . +He took her out for a drive . 他 帶 她 出去 兜風 了 . +There is a bus every 20 minutes . 每 20 分钟 有 一 班车 . +She returned the book to the library . 她 把 書 還 給 了 圖書館 . +She cannot do without her car . 沒有 車 她 做不了 事 . +Pass me the salt , would you ? 把 鹽 遞 給 我 好 嗎 ? +I have an umbrella in my car . 我 的 车里 有 伞 . +He is not as intelligent as his brother . 他 沒 有 他 弟弟 聰明 . +What time did you get to bed last night ? 你 昨天 甚麼 時候 睡覺 ? +Humans only live about 70 years . 一个 人 只能 活 七十岁 左右 . +When will we go ? 我們 甚麼 時候 出發 ? +Your assistance is indispensable for us . 您 的 帮助 对 我们 来说 是 必不可少 的 . +Let is begin on page 30 . 讓 我們 從 第 30 頁 開始 . +Tom is happy . 湯姆高興 . +They are leaving in three days , that is to say June 10th . 他們 將 在 三天 後 離開 , 那 也 就是 說 在 六月 十日 . +Tom came to see if Mary needed any help . 汤姆 过来 看看 玛丽 有没有 什么 需要 帮忙 的 . +I think that our living together has influenced your habits . 我 觉得 我 和 你 一起 住 影响 了 你 生活 的 方式 . +We will go on a picnic tomorrow . 我們 明天 要 去 野餐 . +Mail this letter . 把 这 封信 寄 了 . +You can dig dirt from the ground . 你 可以 在 地上 挖土 . +Please tell me . 請 告訴 我 . +I know none of them . 他们 中 的 任何 一位 我 都 不 认识 . +We are still a little confused . 我們 還 是 有 點 疑惑 . +She read an amusing story to the children . 她 给 孩子 们 读 了 个 有趣 的 故事 . +It rained yesterday . 昨天 下雨 了 . +She is asking how that is possible . 她 问 这 怎么 可能 . +Please pass me the salt . 請 把 鹽 遞 給 我 . +Tom told the cops everything . 湯姆 全都 告訴 了 條子 . +Do you have any plans for tonight ? 今晚 有 什么 计划 吗 ? +You are not too late . 你 還 不 太晚 . +Be still . 静静的 , 别动 . +His hobby is collecting old stamps . 他 的 兴趣爱好 是 收集 旧 邮票 . +He said , " I want to be a scientist . " 他 說 : “ 我 想成 為 科學家 . ” +The police will look into the case . 警察 会 调查 这 起 案件 . +Whose is this ? 这 是 谁 的 ? +I should not have logged off . 我 不该 退出 的 . +He has a son and two daughters . 他 有 一個 兒子 和 兩個 女兒 . +We did not see anybody . 我们 谁 也 没 看见 . +I envied his new house . 我 羨慕 他 的 新房子 . +Beer is taxed according to its malt content , so low @-@ malt beer is cheaper . 因为 啤酒 会 根据 麦芽 含量 去 征税 , 所以 发泡 酒会 比较 便宜 . +What are your weekend plans ? 你 週末 有 什麼 計劃 ? +I will miss your cooking . 我 會 想念 你 的 廚藝 . +Look there . 看 那里 . +I love that story . 我 喜欢 那个 故事 . +What is the time in Boston now ? 波士顿 现在 几点 ? +Dentists take x @-@ rays to examine your teeth . 牙医 用 X光 检查 你 的 牙齿 . +It is obvious that he lied . 顯然 地 他 撒 了 謊 . +He dropped in at the bookstore . 他 順道 去 了 這家 書店 . +I felt an impulse to cry out loud . 我 突然 好 想 大叫 . +My aunt gave me an album . 我 姑姑 給 了 我 一本 集郵冊 . +I was very tired last night . 我 昨晚 很 累 了 . +Turn it off . 把 它 关掉 . +He is from France . 他 是从 法国 来 的 . +She knows me . 她 认识 我 . +I promise I will do it . 我 保证 我会 做 的 . +I do not like studying . 我 不 喜欢 学习 . +I went there by bus and train . 我 搭 公車 和 火車 去 那裡 . +They always fight over little things . 他们 总是 为了 小事 吵架 . +Everyone wanted a piece of the cake . 每个 人 都 想 分 一点 蛋糕 . +You have such beautiful , hazel eyes . 你 有 如此 美麗 的 淡褐色 眼睛 . +Can we roller @-@ skate in this park ? 我們 可以 在 這個 公園 裡 玩 四輪 溜冰 嗎 ? +It is human nature . 它 是 人 的 天性 . +He goes to London once a month . 他 一個 月 去 一次 倫敦 . +He is already too far away to hear us . 他 已經 離 得 太 遠 聽 不到 我們 了 . +Your brother got married , did not he ? 你 哥哥 結婚 了 , 不是 嗎 ? +I had a really bad nightmare last night . 昨晚 我 做 了 一个 可怕 的 噩梦 . +She went shopping with her mother . 她 和 她 母親 去 購物 . +What is your phone number ? 你 电话号码 是 多少 ? +This place gives me a really bad vibe . 这 地方 给 我 一个 很差 的 印象 . +Do not step in the mud . 别 走进 泥地 . +To master English is difficult . 精通 英語 是 困難 的 . +We had a lot to drink . 我们 喝 了 很多 . +This is really difficult to deal with . 這件 事 真難 處理 . +I am sorry to put you through that . 很 抱歉 让 你 遭 这 罪 . +She put the magazine on the table . 她 把 雜 誌 放在 桌上 . +When will the world come to an end ? 世界末日 是 什么 时候 ? +That novel is not for children . 那 本小 說 不 適合 兒童 . +Write on every other line . 每隔 一行 寫 . +The teacher let the boy go home . 老師 讓 這個 男孩 回家 . +I learned to drive a car and got a driver is license when I was eighteen . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +Let me know where you are staying . 讓 我 知道 你 住 在 哪裡 . +I do not like these remarks . 我 不 喜歡 這 番 話 . +I can not go with you because I am very busy . 我 不能 和 你们 一起 去 , 因为 我 很忙 . +I found a beautiful shell on the shore . 我 在 海滩 上 发现 了 一个 漂亮 的 贝壳 . +Please turn off the light before you go to bed . 上床睡觉 之前 请 关灯 . +Tom is lonely and unhappy . 汤姆 又 孤单 又 不幸 . +Have a look at the world map . 来 看看 世界地图 . +Tom and Mary went to the best restaurant in town . 汤姆 和玛丽 去 了 镇上 最好 的 饭店 . +I do not want something like this to happen . 我 不想 这种 事 发生 . +This is the lady who wants to see you . 這位 就是 誰 想 見 你 的 夫人 . +Tom is a student . 湯姆 是 個 學生 . +He was born in Nagasaki . 他 出生 於長崎 . +I am interested in sports . 我 对 运动 感兴趣 . +Do you know which road leads to my house ? 你 知道 哪 一條 路 到 我家 嗎 ? +You 'd better keep your money for a rainy day . 你 最好 未雨绸缪 . +Please be careful not to get hurt . 请 小心 不要 受伤 了 . +You have got something in your teeth . 牙齿 卡 了 点 东西 . +Help yourself to anything you would like to eat . 想 吃 什么 就 吃 什么 吧 . +My mother is a lawyer . 我 妈妈 是 律师 . +Bee stings can be very painful . 蜜蜂 螫人 可以 是 非常 痛苦 的 . +What is in front of you ? 在 你 面前 是 什麼 東西 ? +It rained hard last night . 昨晚 雨 下得 很大 . +He is not an American . 他 不是 美国 人 . +She kept me waiting for 30 minutes . 她 让 我 等 了 半小时 . +I am familiar with this neighborhood . 我 對 這 附近 很 熟悉 . +I saw tears in her eyes . 我 在 她 的 眼睛 裡 看到 淚水 . +Not all aliens are bad . 不是 所有 外星人 都 坏 . +I entered the room and shook hands with him . 我 走進 了 房間 與 他 握手 . +I do not doubt it . 我 没有 疑问 . +Please write with a pen . 请 用 钢笔 写 . +There is no admission fee for children under five . 五岁 以下 的 小孩 票价 全面 . +Did you hear your name called ? 你 聽見 有人 叫 你 的 名字 嗎 ? +Tom finally did something right . 汤姆 最终 做 了 点 正确 的 事 . +I am as old as he is . 我 和 他 同年 . +She has many friends in the United States . 她 有 很多 美国 朋友 . +He lived abroad for much of his life . 他 大半生 都 住 在 国外 . +Where did you go last Sunday ? 上周日 你 去 哪儿 了 ? +None of them could understand what she was implying . 他們 沒 有人 了解 她 暗示 什麼 . +Do you like Indian food ? 你 喜歡 印度 菜 嗎 ? +They wash their hands . 他們 洗手 . +I need your advice . 我 需要 你 的 意见 . +Tom is a hick . 汤姆 是 个 乡巴佬 . +This must be my book . 这 肯定 是 我 的 书 . +Everything matters . 任何 事情 都 是 重要 . +Which do you like better , this or that ? 你 更 喜欢 哪个 , 这个 还是 那个 ? +I thought Tom would win . 我 认为 汤姆 会 赢 . +You 'd better go to bed at once . 你 最好 立马 去 睡觉 . +I will not attend the party . 我 将 不 出席 派对 . +Tom tried to stab me . 汤姆 企图 刺 我 . +Where are the showers ? 浴室 在 哪里 ? +Those apples are big . 那些 蘋果 很大 . +Why were you late this morning ? 今天 早上 你 為 什麼 遲到 了 呢 ? +He showed me the manuscript of his new play . 他 给 我 看 了 他 最新 剧 的 底稿 . +His horse jumped over the fence . 他 的 馬 跳 過 了 柵欄 . +Tom took a step backward . 汤姆 后退 一步 . +The engineer told us how to use the machine . 工程师 告诉 我们 如何 使用 机器 . +I am sorry , I forgot to do my homework . 对不起 , 我 忘 了 作业 这 回事 了 . +Please close the door . 請關 上門 . +My father is suffering from a cold . 我 父親 感冒 了 . +He amazed everyone by passing his driving test . 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 覺得 驚訝 . +She was very proud of her father . 她 為 她 的 父親 感到 非常 驕傲 . +I have nothing to do with the crime . 这个 犯罪 和 我 一点 关系 都 没有 . +Ask your dad to help you . 請 你 父親 幫 你 . +I want to go to school and study hard . 我 想 上学 并 努力学习 . +My daughter is in her late teens . 我 的 女兒 快 二十 歲 了 . +What are you talking about ? 你 说 的 是 什么 ? +What if Tom says no ? 汤姆 说 不行 会 怎样 呢 ? +We will need a head hunting agency to find the right man for this executive position . 我們 需要 人力 仲介公司 幫 我們 找到 合適 的 人 來 擔任 這個 管理 職位 . +It is fairly warm today . 今天 相當 暖和 . +He does not like being punished . 他 不 喜歡 被 懲罰 . +Spring will come soon . 春天 快 來 了 . +I do not eat bread . 我 不吃 面包 . +Tom burst into tears . 汤姆 泪流满面 . +You were late , were not you ? 你 遲到 了 , 不是 嗎 ? +We have some decisions to make . 我们 要 做 些 决定 . +Can you do some shopping for me ? 你 能 幫 我 買 些 東西 嗎 ? +Give him an inch and he will take a yard . 得寸进尺 . +My father became old . 我 爸爸 變 老 了 . +I have had a good sleep . 我 睡 得 很 好 . +How many pens do you have ? 你 有 多少 支 铅笔 ? +The temperature has suddenly dropped . 气温 突然 下降 了 . +We have lots of catching up to do . 我们 要 紧追 . +Tom is divorced and has a daughter . Tom 離婚 了 , 他 有個 女兒 . +Nobody wants you to do that . 没 人 想要 你 那样 做 . +Tom wants a computer small enough to easily carry . 汤姆 想要 个 小 得 易于 携带 的 电脑 . +He amassed a large fortune before he died . 他 死 前 累積 了 龐大 的 財富 . +His brother goes to school by bus . 他 哥哥 搭 公車 去 學校 . +Life is like a box of chocolates . 生活 就 像 一盒 巧克力 . +Which is your book ? 哪 本書 是 您 的 ? +It just gets worse . 它 变 糟 了 . +Hang up your coat , please . 請 把 你 的 外套 掛 起來 . +I often go to the movies . 我 常常 去 看 電影 . +We are going to be here all day . 我們 要 在 這裡 待 一整天 . +Do you like swimming ? 你 喜欢 游泳 吗 ? +I was not scolding you . 我 不是 在 罵 你 . +I am not curious . 我 不 好奇 . +Tom was advised by Mary not to go there by himself . 玛丽 建议 汤姆 不要 独自 去 . +Tom did not know what Mary thought about it . 汤姆 不 知道 玛丽 对 它 怎么 想 . +I am tired of writing . 我 写 腻 了 . +I have just spoken to your French teacher and he says you are doing well in his class . 我 刚 跟 你 的 法语 老师 谈 过 话 , 他 说 你 在 课堂 上 表现 得 很 好 . +Be at the station at 11 o 'clock sharp . 十一点 准时 到 车站 . +Call the police ! 报警 ! +The twins are indistinguishable from each other . 这 双胞胎 没法 区分 . +She succeeded in getting him to tell the truth . 她 成功 地 从 他 口中 得知 了 真相 . +Somebody is eating . 有人 在 吃 东西 . +Is it difficult eating with chopsticks ? 用 筷子 吃饭 难 吗 ? +Tom hid his money under his mattress . 湯姆 把 錢藏 在 床墊 底下 . +I am busy all the time . 我 总是 有事 . +We could do something big . 我们 能 做 点 大事 . +I was very , very lucky . 我 非常 非常 幸运 . +He preferred working to doing nothing . 他 更 愿意 工作 而 不是 无所事事 . +Let is take the children to the zoo . 讓 我們 帶 孩子 們 去 動物園 . +Tom and Mary were tired of waiting . 湯姆 和 瑪麗 等 煩 了 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +I almost always play baseball after school . 我 幾乎 總是 在 放學 後 打 棒球 . +Do you have Tom is address ? 你 有 汤姆 的 住址 吗 ? +Even chocolate contains vitamins . 連 巧克力 中 也 含有 維 他 命 . +Coal and natural gas are natural fuels . 煤 和 天然 氣 是 天然 燃料 . +These apples look very fresh . 这些 苹果 看起来 很 新鲜 . +Give me your phone number . 给 我 你 的 电话号码 . +Nobody tried to help Tom . 没 人 试图 帮 汤姆 . +The clock stopped . 鐘 停 了 . +I hate studying . 我 讨厌 学习 . +She does not like soccer . 她 不 喜欢 足球 . +We will come back tomorrow . 我们 明天 回来 . +This is not okay . 這個 不行 . +I did not get everything I wanted . 我 沒有 得到 我 所有 想要 的 . +I would not be too surprised if this song became a hit . 如果 这歌 成名 , 我 不会 太 惊讶 . +Please send this by registered mail . 請用 掛 號 寄 這個 . +That fish lives in fresh water . 那 魚 棲息 在 淡 水域 中 . +Do not panic ! 不要 恐慌 ! +Tom is not a fool . 汤姆 不是 傻瓜 . +His clothes always smell bad . 他 的 衣服 總是 很 臭 . +I hate mosquitoes . 我 恨 蚊子 . +Tom fell off his bike . 汤姆 从 他 的 自行车 上掉 了 下来 . +I saw a cottage in the distance . 我 看见 远处 有 一间 小屋 . +This is true . 這 是 真的 . +I met him by chance on the train this morning . 今天 早上 我 在 火车 上 偶遇 他 . +We will continue the meeting after some light refreshments . 茶点 过后 我们 接着 开会 . +Put the box down . 把 箱子 放下 . +How much is this pen ? 这 支 钢笔 要 多少 钱 ? +They arrived late because of the storm . 因为 风暴 , 他们 晚 到 了 . +Is one thousand yen enough ? 1000 日元 够不够 ? +Please show me your stamp album . 請 讓 我 看看 你 的 集郵冊 . +He pressured me . 他 向 我 施压 . +The ceremony began with his speech . 仪式 以 他 的 讲话 开始 . +I guess it depends on the weather . 我 想 這 取決 於 天氣 . +I do not remember much about that woman . 我 对 那位 女士 印象 不 深 . +I did not ask Tom for help . 我 没有 找 Tom 帮忙 . +I do not want to do anything risky . 我 不想 做 任何 冒險 的 事 . +He walks slowly . 他 慢慢 地 走 . +What would you like to do in the future ? 以后 打算 干什么 ? +My father died of a subarachnoid hemorrhage when I was fourteen . 我 十四岁 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +May I see your driver is license , sir ? 先生 , 我 可以 看看 你 的 駕駛 執照 嗎 ? +Tom searched inside the closet . 汤姆 搜查 了 衣柜 里面 . +I want something cold to drink . 我 想 喝 冷 飲 . +He cheated on the biology exam . 他 在 生物 學 考試 時 作弊 . +Could you please talk a bit louder ? I can not hear very well . 你 能 大声 点 讲 吗 ? 我 听 不 太 清 . +A brilliant future lay before him . 大好 的 前途 摆在 他 面前 . +She wore a red dress . 她 穿 了 一条 红色 的 裙子 . +Count me in . 算 我 一个 . +Can you save this seat for me ? 你 可以 幫 我 保留 這個 座位 嗎 ? +I thought the questions were easy . 我 認為 這些 問題 很 容易 . +It cost him 50 dollars to rent a car in Hawaii . 他 花 了 50 美元 在 夏威夷 租 了 一辆 汽车 . +I was surprised . 我 吃惊 了 . +Do not speak unless you have something worth saying . 除非 你 有 什么 值得 说 的话 要说 , 否则 就别 吭声 . +You ought to have come here earlier . 你 應 該 早點 來 的 . +I agree with your opinion . 我 同意 您 的 意見 . +What do tigers eat ? 老虎 吃 什么 东西 ? +Did Tom ever threaten you ? 湯姆 威脅 過 你 嗎 ? +I do not believe it at all . 我 根本 不信 . +That river is long . 那 條 河流 很 長 . +Clean up the room . 收拾 房间 . +I want to be a baseball player . 我 想 成為 一名 棒球 運動員 . +I do not quite agree with you . 我 不 太 同意 你 的 看法 . +May I ask a question ? 我 能 问个问题 吗 ? +Tom has made up his mind to go to Boston to study . 湯姆 已經 下定 決心 要 去 波士 頓 唸 書 . +It is really awesome . 太棒了 . +He told us an interesting story . 他 给 我们 讲 了 一个 有趣 的 故事 . +We do not have any more bread . 我們 沒 麵 包 了 . +What will you use it for ? 你 會 用 它 來 做 什麼 ? +Take off your hat when you enter a classroom . 进 教室 的 时候 请 把 帽子 摘 了 . +I am familiar with the author is name . 我 對 這位 作者 的 名字 很 熟悉 . +What kind of woman do you think I am ? 你 认为 我 是 哪种 女人 ? +You had better read a lot of books while you are young . 你 最好 在 年轻 的 时候 多 读点 书 . +Learning a foreign language is difficult . 學習 外語 是 困難 的 . +When will you come back to school ? 你何 時會 回學校 ? +You look sleepy . 你 看起来 很困 了 . +She banged the table with her fist . 她 用 拳頭 拍 了 桌子 . +I was born in 1988 . 我 生于 1988 年 . +She took full advantage of her stay in London to improve her English . 她 充分利用 她 住 在 伦敦 的 优势 , 提高 英语 . +Here is something very important . 這裡 有些 非常 重要 的 東西 . +You have plenty of time . 你 有 足够 的 时间 . +You have both been very impressive today . I am proud of you . 今天 你们 俩 很 让 人 印象 深刻 . 我 为 你们 感到 骄傲 . +This program is a rerun . 这个 节目 是 重播 . +Tom said that he 'd leave the door open . 汤姆 说 他 打算 让 门 开 着 . +Paper burns quickly . 紙 燒 得 快 . +Are you lost ? 您 迷路 了 吗 ? +You should practice playing the violin every day . 你 應該 每天 練習 拉 小提琴 . +My plan is to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +Hard work and dedication will bring you success . 努力 工作 和 敬业精神 使 你 成功 . +Why did you stay at home yesterday ? 你 昨天 為 甚麼 在家 ? +Can you put me up tonight ? 今晚 可以 住 你家 嗎 ? +Tom begged his father to buy him a new bicycle . 湯姆 求 他 父親 給 他 買 新 自行 車 . +You reap what you sow . 種 什麼 因 得 什麼 果 . +This bus will take you to the museum . 這輛 公車 會 載 你 去 博物 館 . +Nobody understands me . 没有 人 理解 我 . +Anyone can do that . 任何人 都 可以 做到 . +This dictionary is mine . 这本 字典 是 我 的 . +The house I am living in is not very large . 我 住 的 房子 不是 太大 . +The problem is been solved . 問題 已 解決 . +My father likes strong coffee . 我 父親 喜歡 濃 咖啡 . +Did she come here to relax ? 她 來 這裡 放 鬆 的 嗎 ? +Are you feeling better , Tom ? 你 感覺 好 點 了 嗎 , 湯姆 ? +They waited for their teacher . 他們 等待 著 他們 的 老師 . +Earth is a planet . 地球 是 一個 行星 . +My mother speaks French better than my father speaks English , so they usually speak to each other in French . 我 母亲 的 法语 比 我 父亲 的 英语 要 好 , 所以 他们 通常 用 法语 交流 . +Tom overslept . 汤姆 睡 过头 了 . +I found a coin on the sidewalk . 我 在 人行道 上 發現 了 一枚 硬幣 . +" Why are not you going ? " " Because I do not want to . " “ 为什么 你 不 来 ? ” “ 因为 我 不想 . ” +We will not go out if it does not stop raining . 雨 不停 , 我们 不会 出去 . +When you are hungry , anything tastes good . 當 你 餓 的 時候 , 任何 東西 都 好吃 . +She seems to be unhappy . 她 看起来 不 幸福 . +I bathe once a day . 我 每天 洗 一次 澡 . +It is been a long war . 这 是 场 长久 的 战争 . +Tom lost his credibility . 湯姆 失去 了 信譽 . +The old man is very kind . 這位 老人家 非常 仁慈 . +Being a good conversationalist does not just mean being a good speaker of English . 作為 一個 良好 的 交談者 , 並 不 只 意味 著作 一個 英語 說 得 好 的 說 話者 . +Can I borrow some money from you ? 我 可以 向 你 借 一些 錢 ? +Those tulips are beautiful . 那些 郁金香 很 美丽 . +You do not have to take an examination . 你 不 需要 考试 . +Tom is going to help us . 汤姆 要 帮助 我们 . +What is the spelling of your family name ? 你 的 姓 怎麼 拼 ? +I need a knife . 我 需要 一把 刀 . +I am starting to dislike her . 我 开始 不 喜欢 她 了 . +Stay put till I get to you . 待 在 原地 , 直到 我 找到 你 . +It is brand new . 这 是 全新 的 . +I do not see why not . 我 看不出 为什么 不 . +I got warm from jogging for an hour . 我 慢跑 了 一个 小时 , 身上 变 暖和 了 . +I can not figure him out . 我 不 了解 他 . +Tom runs fast . 汤姆 跑得快 . +Mary went down to the kitchen . 瑪麗 下 樓 到 廚房 . +We got him to carry our bag . 我們 讓 他 幫 我們 拿 袋子 . +Keep the change ! 不用 找 零钱 了 . +He is drawing a picture . 他 正在 画 一幅 画 . +Tom really needs help now . 湯姆 現在 真的 需要 幫助 . +Tom is room is dirty . 汤姆 的 房间 很脏 . +Would you like to eat something ? 您 想 吃 点 什么 吗 ? +Doing this is a lot of fun . 这样 做 很 有趣 +As soon as she wakes up , we will turn on the music . 她 一醒 , 我们 就 放 音乐 . +Is this your first time in Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me a lecture on drinking . 他 因 我 喝酒 而 訓斥 我 . +I thought that I was dreaming . 我 还 以为 我 在 做梦 呢 . +There are exceptions to every rule . 每 條 規則 都 有 例外 . +Does Tom need to stay home today ? 湯姆 今天 需要 留在 家裡 嗎 ? +Please speak in a louder voice . 請 說 話 大聲 一點 . +I looked over my shoulder . 我 回 過 頭 去 . +This is worth one million yen . 這 值 100 萬 日元 . +There is something wrong with my car . 我 的 車子 故障 了 . +Would you mind if I shut the window ? I have a slight cold . 你 不介意 我 关窗 吧 ? 我 有点 着凉 了 . +I would like to reserve a hotel room . 我 想要 订房 . +She works from nine . 她 九点 开始 工作 . +In case it rains , I will not go . 萬一 下雨 , 我 就 不 去 . +He has a lot of books on history . 他 有 很多 历史书籍 . +I had hoped that my mother would live until I got married . 我 曾经 希望 我 妈妈 能 活到 我 结婚 的 时候 . +You are so right . 你 真是太 對了 . +There is no point in trying again . 再 试 也 无济于事 了 . +There is no school during August . 8 月份 没课 . +She used margarine instead of butter . 她 用 人造黄油 代替 了 黄油 . +He has a large family to support . 他 有 一大家子 要養 . +She and I are classmates . 她 和 我 是 同學 . +Can I see that ? 我 能 看看 那个 吗 ? +Come if you can . 如果 你 能 就 來 吧 . +His political career has ended . 他 的 政治 生涯 完蛋 了 . +She did not like her husband drunk . 她 不 喜欢 让 自己 丈夫 喝醉 . +You should set a good example to your children . 你 应该 给 你 的 孩子 们 树立 好 的 榜样 . +It is spring . 春天 了 +He left the house without saying goodbye . 他 沒 說 再 見 就 離開 了 房子 . +What is love ? 愛 是 什麼 ? +You have beautiful lips . 你 的 嘴唇 很漂亮 . +It does not make sense to me . 这 对于 我 来说 没 任何 意义 . +Would you like to eat lunch together ? 要 一起 吃 午餐 吗 ? +It might be a wedding . 這 可能 是 一場 婚禮 . +Check your dictionary . 查 你 的 字典 . +Both my parents are at home now . 我 父母 現在 都 在家 . +Is it always a sin to tell a lie ? 说谎 总是 一种 罪 吗 ? +I have gained weight . 我 增加 了體 重 . +Is it true that Tom can not swim ? 汤姆 真的 不会 游泳 吗 ? +I do not know if I can go to the party . 我 不 知道 我 是否 可以 去 派对 . +I have not seen him in a long time . 我 很久没 见 过 他 了 . +Tom is writing a letter to his best friend . 汤姆 在 给 他 最好 的 朋友 写信 . +I do not know if he would have done it for me . 我 不 知道 他 是否 已经 为 我 做好 了 . +When will it start ? 什么 时候 开始 ? +He is just pulling your leg . 他 只是 跟 你 開 玩笑 . +I shot the horse because it had trouble breathing . 我 枪杀 了 那 匹 马 , 因为 他 已 呼吸困难 . +What are you after ? 你 想要 什麼 ? +Did you get my letter ? 你 收到 了 我 的 信 了 嗎 ? +He was always annoyed in the city by noises of one sort or another . 他 在 城市 里 一直 受到 噪音 或者 其他 的 干扰 . +For the teacher , teaching her was fun . 對 教師 來說 , 教 她 很 有趣 . +Please make the bed . 請 整理 床鋪 . +You are not to leave this room . 你 不 可以 離開 這個 房間 . +Bring me the newspaper , please . 請 把 報紙 拿來 給 我 . +Tom dragged himself out of bed and put on his clothes . 汤姆 从 床上 爬起来 , 穿上 了 衣服 . +It takes me ten minutes to walk to school . 我 走路 10 分钟 能 到 学校 . +He dropped his books on the floor . 他 的 書 掉 在 地板 上 了 . +She lived there about five years . 她 住 在 那裡 大約 5 年 了 . +She likes oranges . 她 喜歡 柳橙 . +Our teacher gives us a lot of homework . 我们 的 老师 给 作业 给得 很多 . +Tom is a very good tennis player . 湯姆 是 一個 非常 好 的 網球 選手 . +My father is very much involved in the stock market now . 我 爸爸 现在 非常 专注 于 股市 . +We moved to New York last fall . 我們 去年 秋天 搬到 了 紐約 . +I got a hole in my jeans . 我 的 牛仔 褲 破 了 一個 洞 . +I saw Tom three hours ago . 我 在 三 小时 前 见 过 汤姆 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +He is one of the greatest artists in Japan . 他 是 日本 最 伟大 的 艺术家 之一 . +I need to exercise more often . 我 需要 更 经常 地 锻炼 . +I like your shoes . 我 喜欢 你 的 鞋子 . +Those dogs are big . 那些 狗 都 很大 . +I do not speak Japanese . 我 不 说 日语 . +Our house is conveniently located . 我們 的 房子 位 於 交通 便利 的 地方 . +He built an observatory to study the stars . 為了 觀測 星象 , 他 建 了 一座 瞭望台 . +Bring me a sheet of paper , please . 请 带 一张 纸 给 我 . +I am not as stupid as you think I am . 我 不 像 你 想 的 那么 傻 . +Do not disappoint him . 别 让 他 失望 . +Tom helped me with the move . 汤姆 帮 我 搬 了 家 . +Children like fruit juice . 孩子 們 喜歡 果汁 . +I did not participate in the conversation . 我 沒有 參與 這個 談話 . +Where is the nearest telephone booth ? 最近 的 電話 亭 在 哪裡 ? +It might rain . 可能 会 下雨 . +What are you writing ? 你 在 寫 什麼 ? +This apple is very red . 这 只 苹果 非常 红 . +It must be done more carefully . 应该 更 谨慎 地 处理 它 . +He looks like a clever boy . 他 看 起來 像是 個 聰明 的 男孩 . +That is a book . 那 是 一本 書 . +This bucket has a hole in it . 這個 桶 有個 洞 . +I ate the apple . 我 吃 了 這個 蘋果 . +There is no use crying over spilt milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Everybody showed sympathy toward the prisoner . 每个 人 都 对 囚犯 表示同情 . +They sued the government for damages . 他們 狀告 政府 賠償 損失 . +Tom said that Mary was probably still studying French . 汤姆 说 玛丽 可能 还 在 学法语 +Tom has been here since 2013 . 湯姆 從 2013 年 起 一直 在 這裡 . +I have nothing to say . 我 没什么 可说 的 . +Two times two is four . 二 乘以 二 等于 四 . +Tom is an excellent father . 汤姆 是 个 杰出 的 爸爸 . +I got along with everybody . 我 和 大家 相處 . +Tom is still uncertain about whether to go to college or not . 汤姆 还 不 清楚 要 不要 上 大学 . +Mary wore a simple white dress . 玛丽 穿 了 一条 朴素 的 白 裙子 . +I do not feel well . 我 感觉 不 舒服 . +The problem is who is going to tell him the truth . 問題 是 誰 要 告訴 他 真相 . +He will be back home soon . 他 很快 就 會 回家 . +I would really like to know why he did something like that . 我 真的 很 想 知道 他 為 什麼 做 了 像 那樣 的 事 . +I have no time to read . 我 没 时间 阅读 . +I was at home then . 那个 时候 , 我 在家 . +Ask him what to do next . 问 他 下 一步 该 做 什么 . +Tom is going to tell Mary he is busy . 汤姆 会 和玛丽 说 他 很忙 . +You got here fast . 你 來 得 很快 . +What is done cannot be undone . 覆水 難收 . +Let is take a bus . 讓 我們 搭 公車 吧 . +He is full of energy . 他 充满活力 . +Have you finished reading that novel ? 你 读完 那 本 小说 了 吗 ? +I am used to it by now . 我 现在 已经 习惯 它 了 . +Is Tom there already ? 汤姆 已经 在 那里 了 吗 ? +It is less muggy today than it was yesterday . 今天 不 比 昨天 悶熱 . +We went on a picnic together . 我們 一起 去 野餐 了 . +How long are you going to stay in Japan ? 你 會 在 日本 多久 ? +My pen is new . 我 的 钢笔 是 新 的 . +That child may have been kidnapped on his way home . 那个 孩子 可能 在 回家 的 路上 被 绑架 了 . +Mary paid five dollars for her lunch . 玛丽 用 5 美元 买 了 午饭 . +He was standing at the door . 他 站 在 了 门口 . +There is nothing I would not do for Tom . 没有 我 不会 给 汤姆 做 的 事 . +I am now rich enough to afford to get anything I want . 我 现在 富 得 能 买 我 想要 的 任何 东西 . +This problem is too difficult for primary school children to solve . 这个 问题 让 小学生 解决 太 难 了 . +I get up at six . 我 六點 起床 . +You 'd better go now . 你 最好 现在 就 走 . +Not everybody can be an artist . 不是 所有人 都 能 当 艺术家 的 . +Mary prefers to dye her hair blonde . 玛丽 更 想 把 头发 染成 金色 . +I do not have time to meet up with you . 我 没 时间 跟 您 碰头 . +I am a good cook . 我 是 个 好 厨师 . +I understand your position perfectly . 我 十分 理解 你 的 立場 . +How many years did Tom spend in Boston ? 汤姆 在 波士顿 呆 了 几年 ? +That is what I want . 那 就是 我 想要 的 . +You should put safety before everything else . 你 應該 把 安全 放在 其他 一切 之上 . +She made a lot of spelling mistakes . 她 犯 了 很多 拼寫 錯誤 . +I am leaving at four . 我 四點 要 離開 . +He remained single all his life . 他 一生 獨身 . +She enjoyed herself a lot at the party . 她 在 聚會 上 玩 得 很 開心 . +I was totally confused . 我 完全 不 懂 了 . +My house is big . 我家 很大 . +The situation went from bad to worse . 情況 越來越 糟糕 . +The tire leaks air . 轮胎 漏气 了 . +With a little more effort , he would have succeeded . 如果 他 当时 再 努力 一点 , 他 就 成功 了 . +You should have kept it secret . 你 應該 保密 的 . +My mother boiled ten eggs . 妈妈 煮 了 十只 蛋 . +I think I am going to go now . 我 认为 我 现在 该 走 了 . +I am in the habit of taking some exercise before breakfast . 我 在 吃 早餐 前有 運動 的 習慣 . +Read this now . 现在 读 这个 . +I am sure you will be interested . 我 确定 你 會 感 興趣 . +" Where is your book ? " " On the table . " 「 你 的 書 在 哪 ? 」 「 在 桌上 . 」 +These scissors do not cut well . 这 把 剪刀 不好 用 . +There was nobody in the garden . 花園 裡 沒 有人 . +I have had a scratchy throat since this morning . I wonder if I have caught a cold . 早上 起来 , 嗓子 变得 很 沙哑 , 我 想 是不是 感冒 了 . +I am not asking you . I am begging you . 我 不是 要求 你 , 我 是 恳请 你 . +This food does not agree with me . 这 食物 不 适合 我 . +We saw him walking across the street . 我們 看見 他 正在 過 馬 路 . . +Please have a look at this book . 请 看 这 本书 . +Grab a hold of the rope . 抓住 繩子 . +Do not make fun of old people . 不要 捉弄 老人家 . +Tom picked up a pencil . 汤姆 拿 起 铅笔 . +Tom is resting at the moment . 汤姆 现在 在 休息 . +He looked around , but he saw no one . 他 看 向 四周 , 但 沒 看到 任何人 . +One hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I do not think he will come . 我 不 認為 他 會 來 的 . +Your shoes are here . 你 的 鞋 在 这儿 . +When did she promise to meet him ? 她 答应 几时 见 他 ? +You can not go outside . 你 不能 到 外面 去 . +What is happened ? 怎么 了 ? +He may not be happy . 他 可能 不 高兴 . +I am going to help you rescue Tom . 我 要 幫 你 營救 湯姆 . +I heard you were injured trying to help Tom . 我 听说 你 在 试图 帮助 汤姆 的 时候 受伤 了 . +Bird watching is a nice hobby . 观察 鸟类 是 个 很好 的 业余爱好 . +The prize will not be given to her . 奖项 是 不会 授给 她 的 . +May I ask you some more questions ? 我 可以 問 你 一些 問題 嗎 ? +Please give me a glass of water . 请 你 给 我 一杯 水 . +Do you have a map ? 你 有 地圖 嗎 ? +Tom is quite drunk now . 汤姆 现在 醉醺醺 的 了 . +She traveled around the world . 她 周遊 世界各地 . +I like rugby , but not as much as I like basketball . 我 喜欢 橄榄球 , 但 不 像 我 喜欢 篮球 那么 喜欢 . +He 'd prefer not to eat that . 他 宁愿 不吃 这个 . +Do you have any free time this weekend ? 這個 週末 你 有 時間 嗎 ? +The skies are clear . 天空 很 晴朗 . +In order to do that , you have to take risks . 要 这么 做 , 你 需要 冒险 . +He is a doctor by profession . 他 的 职业 是 医生 . +A capital letter is used at the beginning of a sentence . 一個 大 寫 字母 被 使用 在 一個 句子 的 開頭 . +I want to participate . 我 想 参加 . +Tom lives near me . 湯姆 住 在 我 的 附近 . +He held a ball . 他 举办 了 一场 舞会 . +I am learning how to type . 我 正在 學 如何 打字 . +I believe he is coming tomorrow . 我 相信 他 明天 會來 . +I do not care if it snows . 我 不在乎 是否 下雪 . +The explorers discovered a skeleton in the cave . 探险家 们 在 洞穴 里 发现 了 骸骨 . +Money cannot buy happiness . 钱 买不到 幸福 . +Playing tennis is fun . 打 網球 很 有趣 . +Air quality has deteriorated these past few years . 这些 年 空气质量 恶化 了 . +I did something really stupid . 我 做 了 很蠢 的 事 . +I did not understand a single word Tom said . 我 不 明白 湯姆 說 了 什麼 . +Good job ! 干 的 好 ! +I hear you passed the entrance exam . Congratulations ! 我 听说 你 通过 了 入学考试 . 恭喜 你 了 ! +A lot of people swim here in the summer . 许多 人 夏天 在 这里 游泳 . +I have to write a letter . Do you have some paper ? 我 要 写 一封信 . 你 有 纸 吗 ? +He consented to help the old lady . 他 同意 幫助 這位 老太太 . +He will never beat me . 他 永远 不会 打败 我 的 . +I wonder if this is love . 我 不 知道 這 是不是 愛 . +You should keep your valuables in a safe place . 你 该 把 你 的 值钱 物品 保存 在 一个 安全 的 地方 . +That toy is made of wood . 这个 玩具 是 木制 的 . +You are not even listening . 你 就 没在 听 . +He treats me like his slave . 他 對待 我 就 像 他 的 奴隸 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 是 一個 大 成功 . +Give me something to write on . 給 我 一些 我 可以 在 上面 寫 字 的 東西 . +He used to meditate in the morning . 他 過去 時常 在 早上 的 時候 冥想 . +They won many competitions . 他們 贏 了 許多 比賽 . +I found a taxi , but there was no driver inside . 我 找到 了 一輛 出租 車 , 但 裏 面 卻 沒 有 司 機 . +I am sorry I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +I donate blood every three months . 我 每 三个 月 献 一次 血 . +Tom turned up the TV . 汤姆 把 电视 调 大声 . +Arithmetic deals with numbers . 算数 处理 数字 . +I am glad I could be of service . 能够 出 一份 力 太好了 . +This school was founded in 1970 . 这 所 学校 是 1970 年 建成 的 . +The largest bedroom faces south . 最大 的 卧室 朝南 . +Tom made some mistakes on the test . 湯姆 在 考試 中 犯 了 一些 錯誤 . +The train arrived ten minutes behind time . 列車 晚 到 了 十分 鐘 . +As soon as he saw a policeman , he ran away . 他 一 看见 警察 就 逃走 了 . +Many friends saw him off . 許多 朋友 為 他 送行 . +We bought a round table . 我们 买 了 张 圆桌 . +People in Taiwan work hard . 在 台灣 人們 工作 很 努力 . +What a wonderful family . 多 美好 的 家庭 啊 ! +Are you free on Tuesday ? 周二 你 有空 吗 ? +When I first met Tom , I did not like him much . 我 第一次 見 到 湯姆 時 , 我 不 太 喜歡 他 . +The store can supply us with anything we need . 这家 商店 可以 提供 所有 我们 需要 的 东西 . +He is stronger than you . 他 比 你 強壯 . +My sleep was disturbed by the sound . 那 声音 搅 了 我 的 美梦 . +This ticket is good for three days . 這 張 票 的 有效期 是 三天 . +What about you ? 您 呢 ? +You did not come to school yesterday . 你 昨天 没 来 学校 . +Please sit down . 請 坐下 . +It is almost six . 差不多 六点 了 . +Tom was wearing a bulletproof vest , so the bullet did not kill him . 湯姆 穿著 一件 防彈 衣 , 所以 子彈 沒 把 他 殺 死 . +We ran three kilometers . 我們 跑 了 三 公里 . +I like to travel . 我 喜歡 旅行 . +Tom was at home . 汤姆 在家 的 . +She got on the subway at Ginza . 她 在 銀座 搭乘 了 地鐵 . +The weather is good today . 今天天气 很 好 . +Tom knew when Mary would be arriving . 汤姆 知道 玛丽 什么 时候 来 . +She helped him overcome his sadness . 她 幫助 他 平撫 了 他 的 悲傷 . +I owe Tom some money . 我 欠 湯姆 錢 . +I have already read today is paper . 我 已經 看 過 了 今天 的 報紙 . +Please wake me up at six tomorrow . 請 在 明天 六點 叫 我 起來 . +He drank a lot yesterday . 昨天 他 喝 了 很多 . +I forgot it in the garage . 我 把 它 忘 在 车库里 了 . +Tom does not know where Mary lives . 汤姆 不 知道 玛丽 住 在 哪里 . +I am going to Europe next week . 我 下週 要 去 歐洲 . +Do you know what he said ? 你 知道 他 說 了 什麼 嗎 ? +When the lights went out , Tom lit a candle . 灯灭了 , 汤姆 点 起 了 蜡烛 . +I wrote down that telephone number . 我 寫下 了 那個 電話 號碼 . +She cooked us a delicious dinner . 她 为 我们 煮 了 一顿 美味 的 晚餐 . +Translating this sentence will be very easy . 翻译 这个 句子 会 很 容易 . +She may realize later what I meant . 她 可能 以 後 會 明白 我 的 意思 . +Tom tried to kill Mary . 汤姆 试 着 杀死 玛丽 . +Flying a kite can be dangerous . 放 風箏 可以 是 危險 的 . +Our school is very close to the park . 我们 学校 离 公园 非常 近 . +Why do not you join our party ? 你 為 什麼 不 參加 我們 的 派 對 ? +Can we go back now ? 我們 現在 能 回去 嗎 ? +I have been cheated before . 我 以前 被 騙 過 . +Where is my apple juice ? 我 的 蘋 果汁 在 哪 ? +The war has not ended . 战争 还 没 结束 . +Get away ! 走開 ! +You have done a lot . 你 做 了 很多 . +Can you help us ? 你 能 幫 我們 嗎 ? +She left early in the morning . 她 清晨 離開 了 . +Winter is my favorite season . 冬天 是 我 最 喜欢 的 季节 . +Where is my dad ? 我 父亲 在 哪里 ? +" A rolling stone gathers no moss " is a proverb . “ 滚石 不生 苔 ” 是 一句 谚语 . +A stewardess was rescued from the wreck . 一名 空姐 從 飛機 殘骸 中 被 救出 來 了 . +Putting ideas into practice is difficult . 把 想法 付諸 實踐 是 困難 的 . +I do not trust him any more . 我 不再 相信 他 了 . +He was very busy all day . 他 一整天 都 很忙 . +Do not be too sensitive to criticism . 不要 对 批评 太 敏感 了 . +Right now , we have blueberries , blackberries , cherries , strawberries , peaches and nectarines . 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 草莓 、 桃子 和 油桃 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everybody wanted to eat . 每个 人 都 想 吃 . +Was this wall built to keep people out or to keep them in ? 建造 这 堵墙 是 为了 把 人 隔 在 外面 还是 把 他们 留在 里面 ? +That is life . 這 就是 生活 . +Is this the train for New York ? 這 班 是 去 紐約 的 火車 嗎 ? +There was nothing left in the fridge . 冰箱 里 什么 都 没 剩下 . +After the accident , Tom decided to stop skating . 事故 过后 , 汤姆 觉得 停止 滑冰 了 . +I do not think anyone can do this . 我 认为 没 人 能 做到 . +My hands were shaking too much to thread the needle . 我 的 手 抖 得 太 厉害 , 没法 穿针 了 . +I would like to go . 我 想要 去 . +He did not hear his name called . 他 没 听见 有人 叫 他 的 名字 . +What if something gets broken ? 要是 有 东西 坏 了 呢 . +He did not know what to do next . 他 不 知道 下 一步 要 做 什麼 . +You must not eat too much . 你 不该 吃 太 多 . +Can you really swim ? 你 真的 會 游泳 嗎 ? +She made jam from the apples . 她 用 蘋果 做 了 果醬 . +How long did you live there ? 你 住 在 那裡 多久 了 ? +How cute ! 多 可爱 啊 ! +I have some pictures to show you . 我 有 一些 照片 給 你 看 . +I will never forget what you told me . 我 將 永遠 不 會 忘記 你 告訴 過 我 的 話 . +The baby is sleeping in the cradle . 嬰兒 正在 搖 籃裡 睡覺 . +Good morning . 早上好 ! +He bought his daughter a dress . 他 買 了 一件 洋裝 給 他 女兒 . +They are much taller than us . 他們 比 我們 高 得 多 . +Do not forget about me . 別 忘 了 我 . +I caught sight of a parade on my way home . 在 回家 的 路上 , 我 看到 一场 阅兵式 . +Do you think that my work is easy ? 你 觉得 我 的 工作 简单 吗 ? +The baby started to cry . 宝宝 开始 哭 了 . +I was very surprised to hear the news . 我 听到 这个 消息 很 惊讶 . +Please show me what to do next . 請 告訴 我 下 一步 該 做 什麼 . +Tom is thirty . 汤姆 今年 三十岁 . +I know I did an awful thing . 我 知道 , 我 做 了 很 可怕 的 事 . +I am proud of my father . 我 为 我 父亲 而 自豪 . +I have just returned from the post office . 我 刚 从 邮局 回来 . +I will stop by your place on my way home . 我 回家路上 会 在 你 那里 停下 . +I am a student of this school . 我 是 这个 学校 的 学生 . +You should not eat here . 你 不该 在 这里 吃饭 . +Tom probably does not know why the picnic was canceled . 湯姆 大概 不 知道 為 什麼 野餐 取消 了 . +I like them . 我 喜欢 他们 . +I have got to stop eating such sweet ice cream . 我 必须 停止 吃 那么 甜 的 冰激凌 . +Why do not you have some sushi ? 为什么 不 尝尝 寿司 ? +He earns his living by writing . 他 靠 寫作 謀生 . +Give me the notebook . 把 筆 記本 給 我 . +In comparison with Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +Is our appointment today or tomorrow ? 我們 約 的 是 今天 還是 明天 ? +How did you get to know each other ? 你们 怎么 互相 认识 的 ? +Tom has no idea what to do with all the junk in his garage . 汤姆 不 知道 拿 他 车库 的 那些 废物 怎么办 . +We still have many other things to discuss . 我们 还有 许多 别的 事情 要 讨论 . +You must not be late for school . 你 上學 不 可以 遲 到 . +Is Tom at school ? 汤姆 在 学校 吗 ? +Did not you hear her speaking French ? 你 沒 聽到 她 說 法語 嗎 ? +Look at that picture on the desk . 看看 桌上 的 那 張 相片 . +Her mother knocked on the door . 她 的 母親 敲門 . +I think we need a doggy bag . 看來 我們 得 打包 了 . +Can you tell silver and tin apart ? 你 能 分辨 銀和錫 嗎 ? +I am a social worker . 我 是 個 社會 工作 人員 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +The button came off . 這 顆 鈕扣 脫落 了 . +As far as I know , your letter is under that book . 據 我 所知 , 你 的 信 在 那 本書 下面 . +The Second World War lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +Do not forget to bring a camera . 别忘了 带 个 相机 . +Let is clear up this problem . 把 问题 澄清 一下 . +This may take a while . 这 要 花 时间 . +I will show you around town . 我 會 帶 你 逛逛 這個 鎮 . +She did not need to do that work . 她 不 需要 做 那個 工作 . +My father is free this afternoon . 我 父親 今天下午 有空 . +I just did not want to go to work yesterday . 昨天 我 只是 不想 去 工作 . +Which way is the beach ? 去 海滩 走 哪条 路 ? +It is warm for this time of year . 對 一年 的 這個 時候 來說 , 天氣 很 溫暖 . +The sale prices are written in red ink . 售價用紅 墨水 寫 . +Keep quiet . 保持 安静 ! +I am nearly finished . 我 差不多 完成 了 . +She is not prettier than her mother . 她 没有 比 她 妈妈 更 漂亮 . +I hate chemistry . 我 讨厌 化学 . +Her skin is whiter than snow . 她 的 皮肤 比雪 还 白 . +Tom wears a wig . 湯姆 戴 假 髮 . +They are bitter enemies . 他們 是 仇 敵 . +How long are you going to stay ? 你 准备 待 多久 ? +If I were healthy , I would be happy . 如果 我 很 健康 , 我 會 很快 樂 . +Tom put a cover over his car . 汤姆 给 车盖 上套 . +I am playing baseball . 我 在 打 棒球 . +Do not open your book . 不要 打开 你 的 书 . +Tom is mother is a nurse at the hospital that is across the street from where Mary lives . 汤姆 的 妈妈 是 一名 护士 , 她 所在 的 医院 就 在 玛丽 住 的 那条 街 的 对面 . +I will send a message to Tom . 我会 给 汤姆 发 信息 . +We still do not know why . 我們 仍然 不 知道 為 什麼 . +He is always running short of cash . 他 的 現金 總是 不夠 用 . +I am married and have two children . 我 结婚 了 , 而且 有 两个 孩子 . +Do not tell anyone this . 不要 告訴 任何人 這件 事 . +He is afraid of the dog . 他 怕 那 只 狗 . +I would like your picture . 我 想要 你 的 照片 . +I am engaged to her . 我 跟 她 訂婚 了 . +I bought it at a department store . 我 在 百貨 公司 買 了 它 . +Now it is official . 现在 它 是 官方 的 . +Interest rates and inflation were high . 利率 和 通货膨胀 很 高 . +I expect you to work harder . 我 希望 你 更加 努力 地 工作 . +We had a good time last night . 我們 昨晚 玩 得 很 開心 . +I do not have a cat . 我 没有 猫 . +I like that person . 我 喜欢 那个 人 . +What is wrong with you ? 你 到底 怎么回事 啊 ? +It is not easy to train dogs . 訓練 狗 是 不 容易 的 . +He told me to be kind to others . 他 叫 我 对 别人 好 一点 . +My mother made me a Christmas cake . 母親 做 了 一個 聖誕 蛋糕 給 我 . +Watch out ! There is a big hole there . 小心 ! 在 那裡 有 一個 大洞 . +That was all Greek to me . 我 完全 看不懂 . +I was planning on going to the beach today , but then it started to rain . 我 本来 预备 今天 去 海滩 的 , 但 接着 天 就 开始 下雨 了 . +He devoured his meal . 他 狼吞虎咽 地 吃 了 一顿 . +Our problems are nothing compared to hers . 我们 的 问题 和 她 的 比 起来 不算什么 . +We like music . 我們 喜歡 音樂 . +I just want to be Tom is friend . 我 只 想 做 汤姆 的 朋友 . +Tom vanished . 汤姆 不见 了 . +That boy denies stealing the bicycle . 那个 男孩 否认 偷 了 自行车 . +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 而 烦躁 了 . +It is wrong to tell lies . 說 謊 是 錯誤 的 . +I waited for him all day long . 我 等 了 他 一整天 . +I had a feeling this might happen . 我 早 有 一種 感覺 這 可能 會 發生 . +Come on , try again . 来 , 再 试试看 . +He always keeps his room clean . 他 總是 把 他 的 房間 保持 乾 淨 . +Take off your socks . 把 襪子 脫掉 . +I doubt if Tom is single . 我 怀疑 汤姆 是 单身 . +When do you practice the piano ? 你 什麼 時候 練 習彈 鋼琴 ? +It is impossible to live without water . 生活 沒有 水是 不 可能 的 . +I am sorry I was so rude . 對 不起 , 我 太 無理 了 . +Come and dance with me . 过来 和 我 跳舞 啊 ! +We found the footprints in the sand . 我們 發現 了 沙灘 上 的 腳印 . +Turn the radio down a little . 把 收音 機 的 聲音 關小 一點 . +We are going downtown to eat pizza . 我們 要 去 市中心 吃 比 薩 . +At what age did you have your first girlfriend ? 你 几岁 交 了 第一个 女朋友 ? +He made me go against my will . 他 讓 我 違背 了 我 的 意願 . +He does not know how to play golf . 他 不 知道 如何 打 高爾夫 球 . +I managed to get there in time . 我 設法 及時 到 那裡 . +He has lots of money . 他 有 很多 钱 . +My grandfather was a policeman . 我 的 祖父 是 警察 . +She did not try to hide the truth . 她 没有 试图 掩盖真相 . +Do you like any of these pictures ? 你 喜歡 這些 照片 裡 的 任何 一張 嗎 ? +Somebody caught me by the arm . 有人 抓住 了 我 的 手臂 . +I thought you were my friend . 我 以为 你 是 我 的 朋友 . +Which way is Central Park ? 中央 公園 在 哪個 方向 ? +This is the man who is suspected by the police . 这 是 被 警察 认为 有 嫌疑 的 男子 . +Do you know what color she likes ? 你 知道 她 喜歡 什麼 顏色 嗎 ? +This guitar is so expensive that I can not buy it . 这 吉他 太贵 了 , 我 没法 买下 . +I washed the dishes after supper . 晚饭 后 我 洗 了 碗碟 . +Admission is $ 3.00 at the door . 入场费 是 3 美元 . +He sang while working . 他 一边 唱歌 一边 工作 . +Who is that woman holding the flowers ? 那个 拿 着 花 的 女人 是 谁 ? +Why did we fail ? 我們 為 甚麼 失敗 了 ? +He has been ill in bed for four days . 他 已 卧病在床 四天 了 . +The minimum wage in Okinawa is 642 yen per hour . 冲绳 的 最低 时薪 是 每 小时 642 日元 . +You should not have eaten so much ice cream . 你 不 應 該 吃 這麼 多 冰淇淋 . +Do you like snow ? 你 喜欢 雪 吗 ? +You are no singer . 你 不是 歌手 . +They killed time playing cards . 他們 玩牌 來 殺 時間 . +I know what his name is . 我 知道 他 叫 什么 名字 . +Everybody talks about the weather , but nobody does anything about it . 每個 人 都 在 談論 天氣 , 但是 沒 有人 為 它 做 任何 事情 . +He gave his children a good education . 他 給 了 他 的 孩子 們 良好 的 教育 . +We are going to have a test today . 我們 今天 將 有 一個 考試 . +Tom did not waste any time , did he ? 湯姆 不 浪費 一點 時間 , 不是 麼 ? +Breathing was difficult . 呼吸 困難 . +He bought me a new dictionary . 他 買 給 我 一本 新 字典 . +I can not understand this at all . 我 一點 也 不 懂 這個 . +What is your house like ? 你 的 房子 如何 ? +A sponge absorbs water . 海绵 吸水 . +We can not force people to do that . 我們 不能 強迫 人 去 做 . +Tom and Mary stayed in a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +The boat can still be seen . 船 还 能 看见 . +I caught the last bus . 我 趕上 了 最 後 一班 公車 . +Which club do you belong to ? 你 屬 於 哪個 社團 ? +They go to church on Sunday . 他們 禮 拜 天上 教堂 . +Have you eaten your lunch yet ? 你 吃 過午 飯 了 嗎 ? +I have not quite finished eating . 我 還 沒有 完全 吃 完 . +You have a good memory . 你 的 記憶力 很 好 . +That is soft . 这 很 软 . +We will be late if we do not hurry . 再 不 快点 就 迟到 了 噢 . +Please call the fire department . 请 叫 消防员 . +I would like to show you something . 我 有 东西 想 给 你 看看 . +I do not like eggs . 我 不 喜欢 鸡蛋 . +Put on some clothes . 你 穿 點 東西 . +Do you think I am joking ? 你 觉得 我 是 在 开玩笑 吗 ? +My father is in the habit of reading the newspaper before breakfast . 我 父亲 有个 习惯 , 早餐 之前 读 报纸 . +Judging from the look of the sky , it is likely to rain . 看看 天 的 样子 , 要 下雨 了 . +I took the fact for granted . 我 忽略 了 事实 . +You are driving too fast . 你 開 得 太 快 了 . +His father passed away last year . 他 的 父親 去年 過世 了 . +There is no money left in my bank account . 我 的 银行 账户 里 没 留下 钱 . +What Tom said was not true . 湯姆 說 的 不是 真的 . +His life after retirement was unhappy . 他 退休 後 的 生活 不快 樂 . +My front teeth stick out . 我 门牙 突出 . +The simplest way is often the best way to solve a problem . 解决问题 最 简便 的 方法 往往 是 最好 的 办法 . +Tell Tom I am sorry . 告诉 汤姆 我 很 抱歉 . +Make yourself at home . 就 当 在家 一样 . +I thought your parents liked me . 我 認為 你 的 父母 喜歡 我 . +Tom never did that when he was younger . 汤姆 年轻 时 从不 那么 干 . +Tom is got nothing to hide . 汤姆 没有 什么 可 隐藏 . +Do you understand what I mean ? 你 知道 我 的 意思 嗎 ? +Tom went to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +Where is the nearest shopping mall ? 最近 的 大 卖场 在 哪里 ? +My husband reads the newspaper while eating breakfast . 我 丈夫 一边 吃 早餐 一边 读 报纸 . +The cat caught the rats . 猫 抓住 了 老鼠 . +He caught hold of the rope . 他 抓住 了 绳子 . +I do not like to swim in pools . 我 不 喜歡 在 泳池 裡 游泳 . +We will always be friends . 我们 永远 都 会 是 朋友 . +Tom and Mary is home is cluttered . 汤姆 和玛丽 的 家 很乱 . +I am ready to go back home . 我 準備 回家 了 . +Tom heard this and got angry . 聽到 這事 之 後 , 湯姆為 之 色 變 . +Tom takes the bus to the city . 湯姆 搭 公車 去 市區 . +He is coming closer . 他 在 靠近 . +You remind me of myself . 你 让 我 想起 我 自己 . +The moon is the earth is only satellite . 月球 是 地球 唯一 的 卫星 . +You are absolutely right . 你 完全 正確 . +Will this year be different ? 今年 将 会 不同 以往 吗 ? +Everybody wished he had been elected governor . 每個 人 都 希望 他 當選 州長 . +Please show me the green shirt . 請 給 我 看看 這件 綠色 的 襯衫 . +Thank you just the same . 还是 要说 谢谢 的 . +People can not live without air . 没有 空气 , 人 无法 存在 . +We gave our mother a watch . 我們 給 了 母親 一支 手 錶 . +It is just your imagination . 这 只是 你 的 想象 . +Are you free in the afternoon ? 你 下午 有空 嗎 ? +We had a late lunch at two . 我們 在 兩點鐘 吃 了 晚 午餐 . +How long does it take ? 要 花 多久 時間 ? +What did she buy at the shop ? 她 在 店 裡 買 了 什麼 ? +She is busy preparing for the trip . 她 正忙 著 準備 這次 旅行 . +He will come back sooner or later . 他 迟早会 回来 的 . +The people here are accustomed to the cold . 这里 的 人 习惯 了 寒冷 . +You seem to be an honest man . 你 看起来 像 个 老实人 . +My father is a skilled fisherman . 我 爸爸 是 个 钓鱼 高手 . +He refused to shake hands with me . 他 拒绝 跟 我 握手 . +She has gone shopping . 她 去 购物 了 . +I stayed up all night again . 我 又 熬夜 了 . +All of a sudden , three dogs appeared in front of us . 突然 之間 , 三 隻 狗 出 現 在 我 們 面前 . +This desk is designed for children . 這 張 書 桌 是 專門 為 兒童 設計 的 . +The suspect is a caucasian female . 嫌疑人 是 一位 白人 女性 . +I will get there as soon as I can . 我会 尽可能 早 地 到 那儿 . +I am a vegetarian . 我 是 素食主义者 . +The youngest daughter was particularly beautiful . 么 女 長 得 特別 漂亮 . +The plane flew toward the west . 飞机 向西飞 了 . +I bought a dozen pencils today . 我 今天 買 了 一打 鉛筆 . +You are not a coward . 您 不是 个 懦夫 . +I got up early in the morning . 我 早上 很早 起床 . +I will find you a good doctor . 我 會 幫 你 找 個 好 醫生 . +That is what I like . 我 就 喜欢 它 . +Tom set the bird free . Tom 將鳥 放走 . +He is old enough to understand it . 他 已經 到 了 能 瞭解 它 的 年紀 . +I can help you , too . 我 也 能 幫 你 . +Tom is a man of few wants . 汤姆 是 个 寡欲 的 人 . +He wrote down the telephone number . 他 寫下 這個 電話 號 碼 了 . +I have no excuse . 我 没有 借口 . +They gave him up for lost . 他們 為 失敗 放棄 了 他 . +We need you to tell us why you were absent all last week . 我们 要 你 告诉 我们 你 为什么 整个 上周 都 缺勤 . +We defeated the enemy . 我們 戰勝 了 敵人 . +Tom teaches French . 湯姆 教法 語 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 餐具 . +Do you want to get some lunch ? 你 想 吃 点 午饭 吗 ? +Tom says he is tired . 汤姆 说 他 累 了 . +He broke in on our conversation . 他 打斷 了 我們 的 談話 . +She spends a lot of time practicing the piano . 她 花 很多 时间 练 钢琴 . +How is your wife ? 你 太太 怎么样 ? +The accident happened near his home . 事故 發生 在 他家 附近 . +May I be excused from tomorrow is class ? 明天 的 课 我 能 不来 吗 ? +Where does this street lead to ? 這條 街 通到 哪裡 ? +He practiced every day at home . 他 每天 在家 練習 . +Have you ever thought of becoming a nurse ? 你 曾經 想過 當 個護士 嗎 ? +She ironed her shirt . 她 熨 了 衬衫 . +I have a little money . 我 有 一些 錢 . +Tom died in battle . 湯姆 在 戰鬥 中 死 了 . +I prefer tea to coffee . 我 喜歡 茶 勝 過 咖啡 . +She has a husband and two daughters . 她 有 丈夫 和 兩個 女兒 . +Tom did not attend the meeting . 湯姆 沒有 参加 會議 . +I could hear dogs barking all night . 我 整夜 都 能 听到 狗叫 . +There is a cat under the desk . 书桌下 有 一只 猫 . +She gave me several books . 她 給 了 我 幾本 書 . +What is the point in doing that ? 幹 嘛 那麼 麻煩 ? +Tom crushed the garlic . 汤姆 捣碎 了 大蒜 . +Switch on the light . I can not see anything . 把 灯 打开 . 我 什么 都 看不见 了 . +I think you are really amazing . 我 觉得 你 真是 让 人 大吃一惊 . +He dressed up as a woman . 他 打扮 得 像 女人 一樣 . +You can not say no . 你 无法 说 “ 不 ” . +Do you like any of these pictures ? 你 喜歡 這些 畫 裡 的 任何 一幅 嗎 ? +Who is that man ? 那 男人 是 谁 ? +Which do you like better , spring or autumn ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +You are an idiot . 你个 傻子 ! +She saw a young man at the entrance . 她 在 入口 看到 一個 年輕 男人 . +I am really tired . 我 累死 了 . +Take the elevator to the fifth floor . 搭乘 電梯 到 五 樓 . +I looked , but I did not see anything . 我 看 過 了 , 但是 沒 看到 什麼 東西 . +They blamed Tom for causing the accident . 他们 指责 汤姆 造成 了 事故 . +I do not want to eat lunch now . 我 现在 不想 吃 午饭 . +Will you lend me your dictionary ? 把 你 的 字典 借 給 我 好 嗎 ? +One of my bags is missing . 我 的 一個 包包 不見 了 . +He was willing to work for others . 他 願意 為 別人 工作 . +Now they have three children . 现在 他们 有 三个 孩子 . +The weather is unusually cold . 天气 非常 寒冷 . +You and I are good friends . 你 和 我 是 好 朋友 . +Could you turn off the lights ? 你 可以 關燈 嗎 ? +Their eyes met . 他們 目光 相接 . +Take things a little more seriously . 對 事情 比較 正經 嚴肅 . +Answer my question carefully . 仔细 回答 我 的 问题 . +I am feeling fit . 我 覺得 精神 很 好 . +I think it is time for you to grow up . 我 觉得 你 是 时候 该 懂事 了 . +I am very grateful for everything you have done for me . 非常感谢 你 所 做 的 一切 . +I do not think my life is very interesting . 我 不 認為 我 的 人生 很 有趣 . +Stay with us . 和 我们 留在 一起 吧 ! +If I get rich , I will buy it . 如果 我 有钱 , 我 就 会 买 它 . +I have no way of knowing that . 我 无从 知道 . +If there was no sun , all the animals would be dead . 如果 没有 太阳 , 那 所有 生物 都 会 死 . +What language is spoken in America ? 在 美國 的 人 說 什麼 語言 ? +Coal is not always black . 煤 并不一定 都 是 黑 的 . +Let is take it easy . 讓 我們 放 輕 鬆 吧 . +I would rather live by myself than do as he tells me to do . 我 寧願 自己 獨立 生活 也 不要 他 來 指使 我 . +English is difficult to learn . 英語 很 難 學 . +I do not know where he comes from . 我 不 知道 他 從 哪裡 來 . +It is very hot here in the summer . 这里 夏天 非常 炎热 . +His house is somewhere about here . 他家 在 这儿 某处 . +The curtain fell . 谢幕 了 . +He can speak Russian as well . 他 还 会 说 俄语 . +She left the hospital an hour ago . 她 一 小时 前 离开 了 医院 . +I thought you were listening . 我 以为 你 在 听 . +He will succeed to the throne . 他 会 继承 王位 . +I prefer riding to walking . 我 喜歡 騎車 勝 過 走路 . +I am tall . 我 个子 高 . +I bought a hat at the store . 我 在 這家 商店 買 了 一頂 帽子 . +She lives in a huge house . 她 住 在 一個 很大 的 房子 裡 . +What do you want now ? 您 现在 想要 什么 ? +I can help you out . 我 能 幫 你 . +This is all I know . 這 是 我 所 知道 的 . +Would you please have a look at these papers ? 請 你 看看 這些 文件 . +I do not want to quit this job . 我 不想 辞去 这份 工作 . +Let is discuss the problem with them . 让 我们 和 他们 讨论 这个 问题 吧 . +Ask Tom . 去 问 汤姆 . +I am crazy about you . 我 为 你 着迷 . +Which ones are Tom is ? 哪个 是 汤姆 的 ? +I did not hear it . 我 没 听见 . +The boy who lives next door often comes home late . 隔壁 的 男孩 常常 晚 回家 . +I will get some help . 我会 需要 帮助 . +She is a bit naive . 她 有点 天真 . +No one knows . 沒 有人 知道 . +I will give you a prescription . 我会 给 你 开 个 药方 . +Is this everything ? 这 就是 全部 吗 ? +They forgave him for his crimes . 他们 原谅 了 他 的 罪行 . +Do you have any friends who are doctors ? 你 有 朋友 是 醫生 嗎 ? +My hobby is collecting old coins . 我 的 嗜好 是 收集 古錢幣 . +You had better be careful not to overeat . 你 最好 小心 不要 吃 過 量 . +Where were you yesterday morning ? 你 昨天上午 在 哪裡 ? +Do I have to stay in the hospital ? 我 必須 留在 醫院 嗎 ? +Would you lend me your knife ? 你 可以 借 我 你 的 刀 嗎 ? +She graduated from Kobe University . 她 畢業 於 神戶 大學 . +He did not show up at the party . 他 沒有 在 派 對 上 出現 . +I just want you to come . 我 只是 想要 你 来 . +Tom wears a hat every day . Tom 每天 都 戴帽子 . +You continue making the same mistakes time after time . 你 每次 都 继续 犯 同样 的 错误 . +She has a pretty doll . 她 有个 漂亮 的 洋娃娃 . +I just do not want to marry Tom . 我 只是 不想 和 汤姆 结婚 . +I did my best . 我 做得好 到 不能 再 好 了 . +I do not know whether I have time or not . 我 不 知道 我 有 沒有 時間 . +Do not worry about the past . 不要 担心 过去 . +Words express thoughts . 語 言表 達 思想 . +There is a beautiful park near my home . 我家 附近 有个 漂亮 的 公园 . +Step out of the car and place your hands behind your back . 下车 , 把手 放在 背后 . +He rode his bicycle there . 他 是 騎 自行 車 去 的 . +How high can you jump ? 你 能 跳 多 高 ? +He likes anything sweet . 他 喜歡 一切 甜 的 東西 . +I have a daughter . 我 有 一个 女儿 . +They sometimes help us . 他們 有 時 幫 我們 . +I will see you next month . 我 下個 月會 來看 你 . +My uncle has a flower shop near the station . 我 叔叔 在 車站 附近 有 一家 花店 . +Let me die . 让 我 去 死 . +Are you kidding ? 你 在 开玩笑 吗 ? +The vending machines are over there . 自动售货机 在 那边 . +We have the same problem . 你 的 问题 和 我 的 一样 . +I think I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +It is me . 是 我 . +The news made her sad . 这个 消息 让 她 很 伤心 . +I like fish . 我 喜欢 鱼 . +Both of my sisters are not married . 我 的 兩個 姊妹 並非 都 結婚 了 . +Do not leave your work half finished . 别 留 着 一半 工作 没 干 . +What is your favorite type of pizza ? 你 最 喜歡 的 比薩類 型 是 甚麼 ? +What is your name ? 你 叫 什么 名字 ? +It is definite that he will go to America . 他 肯定 要 去 美国 . +I work every day except Sunday . 除了 星期天 我 每 一天 都 工作 . +It was just as I thought . 这 正如 我 想 的 一样 . +Tom stayed home . 湯姆 留在 家裡 . +Have you been fired ? 你 曾經 被 開除 過 嗎 ? +They are about the same age . 他们 年龄 相仿 . +This book was printed in England . 这 本书 在 英国 印刷 . +Are you sure of your facts ? 你 確定 你 的 資料 屬實 嗎 ? +Nobody can know everything . 沒 有人 能 無所 不知 . +She had already gone when I arrived . 當 我 到 的 時候 , 她 已經 走 了 . +Do you like Japanese food ? 你 喜欢 日本 菜 吗 ? +The party ended at ten o 'clock . 派 對 在 十點鐘 結束 . +I am taking care of my grandfather . 我 照顧 我 的 爺爺 . +My uncle made me serve as interpreter . 我 叔叔 讓 我 擔任 翻譯 . +How old are you ? 你 幾歲 ? +I almost forgot all about that . 我 幾乎 忘 了 所有 關於 那件事 . +He amassed a fortune in stock trading during the last boom . 他 在 上个 景气 时期 炒股 攒下 了 一笔 钱 . +I must finish this work first . 我 必須 先 完成 這個 工作 . +He must be about forty . 他 应该 40 岁 左右 吧 . +Hey , what are you doing here ? 嘿 , 你 在 這 做 什麼 ? +Starting tomorrow , it is going to snow for a week . 雪 从 明天 开始 下 , 一直 持续 一个 星期 . +It is cold . 天 很 冷 . +You need a vacation . 你 需要 個 假期 . +How long are you planning to stay ? 你 准备 待 多久 ? +Tom followed Mary into the room . 汤姆 跟着 玛丽 进入 了 房间 . +I was very nervous as the plane took off . 飛機 起飛 的 時候 我 很 緊張 . +This plane flies between Osaka and Hakodate . 這 架 飛機 往返 於 大阪 和 函館 之間 . +They made straight for their destination . 他們 直奔 目的地 . +Tom has something very important to tell Mary . 湯姆 有 很 重要 的 事 要 告訴 瑪麗 . +What time will you have breakfast ? 你 什麼 時候 吃 早餐 ? +There is no possibility of his coming . 他 不 可能 來 . +Tom does not usually eat breakfast . 汤姆 一般 不吃 早饭 . +This table takes up too much space . 這 張 桌子 太 佔 空間 了 . +Tell me how to solve the problem . 告訴 我 如何 解決 這個 問題 . +Now tell us what we want to know . 现在 告诉 我们 我们 想 知道 的 . +Tom is always watching television . 湯姆總 是 在 看電視 . +It is a sheer waste of time . 這 完全 是 浪費 時間 . +Maybe you should study harder next time . 你 下回 可能 该 更 努力学习 . +The world is beautiful . 萬物 真 美好 . +We had a slight difference of opinion . 我們 的 看法 有 一點 不同 . +All the furniture was covered with dust . 所有 的 家具 都 佈 滿 了 灰 塵 . +Come here by ten at the latest . 最晚 十點 前來 這裡 . +He is anxious to see you . 他 急 於 要 見 你 . +I must help her at any cost . 我 必须 不惜一切 代价 帮助 她 . +We should inform them about that . 我们 应该 把 那件 事情 告知 他们 . +He prefers French to German . 他 喜歡 法語 勝 過 德語 . +If you could go back and start your life again , from what age would you like to start ? 假如能 回到 过去 让 人生 再 来 一遍 的话 , 你 希望 能 回到 几岁 的 时候 ? +Pride goes before a fall . 骄傲 使 人 落后 . +You can not do two things at once . 你 不能 一心两用 . +He is old enough to know better . 他 已經 長大 該 懂事 了 . +There is nothing better than taking a nice walk . 没有 什么 比 散步 更好 的 了 . +We are friends . 我们 是 朋友 . +This table is heavy . 这 张 桌子 很重 . +He has written a letter . 他 写 了 一封信 . +Why should anyone be surprised ? 为什么 任何人 应该 感到 惊喜 ? +I spoke with him about the matter . 我 跟 他 談 過 這個 問題 . +We have got to start thinking about recycling . 我們 必須 開始 考慮 回收 . +I do not like anything . 我 什么 都 不 喜欢 . +I hiccup a lot . 我 经常 打嗝 . +Tom tore the ticket to bits . 湯姆 把 票 撕成 碎片 . +I really enjoyed last night . 我 昨晚 真盡 興 . +I let my sister use my new computer . 我 让 我 妹妹 用 我 的 新 电脑 . +I have done bad things that I should be punished for . 我 做 了 該 受罰 的 壞事 . +We got lost in the fog . 我们 在 雾 中 迷了路 . +What did she say ? 她 说 了 什么 ? +There is nothing you can do for Tom . 你 無法 為 湯姆 做 甚麼 . +She has plenty of books . 她 有 大量 的 書 . +The box was not empty . 箱子 不是 空 的 . +Tom is accustomed to getting up early . 汤姆 习惯 早起 . +I feel like going out today . 我 今天 想 出門 . +She will be a famous artist in the future . 她 将来 会 是 一个 有名 的 艺术家 . +I have always wanted to climb Mt . Fuji . 我 一直 想 登 富士山 . +Have you washed the car yet ? 你 洗過 車子 了 嗎 ? +There was nothing on the radio about the accident . 電台 沒有 提到 這個 事故 . +The cottage was clean and tidy . 小屋 干净 又 整洁 . +Take care ! 照顾 好 自己 . +It all depends on the weather . 一切 都 取決 於 天氣 . +The girl was sobbing in the corner of the schoolroom . 女孩 在 教室 的 角落 啜泣 . +" He used to love me , " she answered sadly . 他 以前 愛 我 , 她 傷 心地 回答 . +You only gave me fifty cents . 你 只 給 了 我 五十 美分 . +Send for a doctor at once . 立即 送 醫 . +He acts as if he were a king . 他 做 得 好像 自己 是 国王 一样 . +What is it ? 這 是 什麼 啊 ? +He walks fast . 他 走路 很快 . +In the United States , school buses are yellow . 在 美国 , 校车 是 黄色 的 . +The broccoli today is not very fresh . 今天 的 西藍花 不是 很新 鮮 . +Shake my hand . 和 我 握手 . +Which goes faster , a ship or a train ? 船 和 火车 哪个 跑得快 ? +Mary is tall . 瑪麗 很 高 . +Watch your step . 走路 小心 . +Tom has lost his mind . 湯姆 失去 理智 了 . +Somebody has stolen my hair dryer . 有人 偷 了 我 的 吹 風機 . +I am sore all over . 我 全身 酸痛 . +Six divided by two equals three . 六 除以 二 得 三 . +Please say hello to your family . 带 我 向 你家 人 问好 . +Tom told us this morning that he and Mary were moving to Boston . 汤姆 告诉 我 今天上午 他 和玛丽 要 搬到 波士顿 . +How do I explain that to Tom ? 我 怎麼 跟 湯姆 解釋 ? +What do we want ? 我們 要 什麼 ? +Please get dressed . 请 穿衣服 . +This flower is the most beautiful of all flowers . 这 朵花 是 所有 花 中 最 漂亮 的 . +It is good to be a winner . 做 个 赢家 很 好 . +I think that I now have enough money to buy the car I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Where is the United Airlines check @-@ in counter ? 聯合 航空公司 辦理 登機 手續 的 櫃 檯 在 哪 裡 ? +Will Tom really do that ? 湯姆真 要 做 嗎 ? +The time will soon come when man will be able to travel to the moon . 在 不久 的 将来 人类 会 可以 去 月球 旅游 . +Of course she passed the test . 當然 , 她 通過 了 測驗 . +Tom has a reservation . 汤姆 有 预约 . +You are the one who suggested that we travel together . 你 是 那個 建議 我們 一起 旅行 的 人 . +Their cattle are all fat . 他們 的 牛 都 很 肥 . +He threw a piece of meat to a dog . 他 丢 了 块 肉 给 一条 狗 . +I know what is in the box . 我 知道 盒子 裡 有 什麼 . +I have more money than Tom . 我 比 汤姆 有钱 . +I can hardly understand what he says . 我 幾乎 無法 了解 他 說 的 話 . +I am too sleepy to do my homework . 我 太 累 了 , 做不了 功课 . +Can we stop fighting ? 我们 能 不 打 了 吗 ? +I was somewhere else . 我 在 另 一个 地方 . +Fire is always dangerous . 火 總是 危險 的 . +We have received a lot of applications in answer to our advertisements . 我們 已經 收到 了 很多 回應 我們 廣告 的 申請 . +He said that you had better go . 他 說 你 最好 去 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +She will be here this evening . 她 今天 晚上 將 在 這裡 . +Does anyone else have any advice ? 有人 還 有 什麼 建議 嗎 ? +She was sitting under a tree . 她 在 一棵树 下 坐 着 . +What languages are spoken in America ? 在 美国 人们 说 哪些 语言 ? +Lie still . 躺 着 不动 . +We climbed the mountain last year . 我們 去年 爬上 了 這 座 山 . +There is not a drop of water left . 沒有 剩下 一滴水 . +Malaria is carried by mosquitoes . 瘧疾 是 由 蚊子 傳染 的 . +I do not like studying in this heat . 我 不 喜歡 在 這麼 熱 的 氣 溫下 唸 書 . +They are not afraid of hard work . 他們 不怕 艱苦 的 工作 . +This is so boring . 这 太 无聊 了 . +I do not like eggs . 我 不 喜欢 吃 鸡蛋 . +He usually goes to work at 8 a.m. 通常 , 他 早上 8 点 去 上班 . +I do not play tennis that well . 我 网球 打 得 不 那么 好 . +I quickly ate lunch . 我 迅速 地 吃 了 午飯 . +I want some potatoes . 我 要 几个 土豆 . +Tom is single and has a three @-@ year @-@ old daughter . Tom 單身 , 他 有個 三歲 的 女兒 . +She refused to do what they wanted . 她 拒絕 做 他們 想要 的 事 . +As long as you keep quiet , you can stay here . 只要 你 保持 安靜 , 你 可以 留在 這裡 . +Hand me my towel . 幫 我 遞 一下 毛巾 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +America is very big . 美洲 很大 . +Why did not you tell Tom that you were married ? 你 为什么 不 告诉 汤姆 你 已经 结婚 了 ? +Who died ? 谁 死 了 ? +I am an optimist by nature . 我 生性 樂觀 . +Everyone likes Tom . 大家 都 喜歡 湯姆 . +Tom covered his face with his hands . 汤姆 用 他 的 手 捂住 了 他 的 脸 . +You can get from Washington to New York by train . 你们 可以 乘火车 从 华盛顿 去 纽约 . +How do you want this handled ? 你 想 怎麼 處理 ? +I 'd like a receipt , please . 麻煩 我 要 一張 收據 . +I can not tell you now . 我 現在 不能 告訴 你 . +I need some good advice . 我 需要 一些 好 的 忠告 . +The answer misses the point . 回答 偏 了 . +Could I get some tea ? 可以 给 我 一些 茶水 吗 ? +He is shorter than Tom . 他 比 湯姆 矮 . +Is there anything that needs to be done ? 有 甚麼 事 要 做 嗎 ? +He was the first to come . 他 是 第一 個 來 的 . +It is up to you to decide . 由 你 來 決定 . +We had an unpleasant experience there . 我們 在 那裡 有 一個 不 愉快 的 經歷 . +He got a master is degree in law . 他 得到 了 法律 碩士 學位 . +We may need some . 我們 可能 需要 一些 . +The patient is in a deep coma . 患者 现在 处于 深度 昏迷 状态 . +I do not like the way you laugh at her . 我 不 喜欢 你 嘲笑 她 的 方式 . +I am going to learn French . 我 要 学法语 . +To make matters worse , he is not even conscious of annoying his neighbors . 让 事情 更 糟糕 的 是 , 他 没有 注意 到 他 打扰到 了 邻居 . +The grass looks nice . 草地 看来 不错 . +What time do you close ? 你们 几点 关门 ? +I borrowed money from my father . 我 向 我 父親 借錢 . +I 'd like you to have an ultrasound . 我 想 讓 你 接受 超聲 檢查 . +Spanish is spoken in twenty countries . 有 二十 個 國家 說 西班牙 語 . +They all laughed at his jokes . 他們 全都 被 他 的 笑話 逗笑 了 . +She invited Tom and me to the party . 她 邀請 我 和 湯姆 去 派 對 . +I would like to have a cup of coffee . 我 想要 一杯 咖啡 . +I wish you a happy birthday . 我 祝 你 生日快乐 . +Tom , I want to have a chat with you . Tom , 我 想 和 你 談談 . +I do not like wearing socks . 我 不 喜歡 穿 襪子 . +Tom headed out the door . 汤姆 向 门 走 去 . +I asked Tom what he was reading . 我 问 了 汤姆 在读 什么 . +She was born in America . 她 生 在 美洲 . +In case the shipment is delayed , we have special delay insurance . 万一 船运 迟 了 , 我们 有 特别 的 迟到 保险 . +Is it really that hard to speak French ? 说 法语 真 有 那么 难 吗 ? +Where is the nearest drugstore ? 最近 的 藥店 在 哪裡 ? +She was making tea . 她 正在 泡茶 . +I like both science and math . 科学 和 数学 我 都 喜欢 . +I want you to take a break . 我 想 讓 你 歇歇 . +Just give me your name and address . 只要 給 我 你 的 姓名 和 住址 . +I had a dream about him . 我 夢 到 了 他 . +We got to be friends . 我们 交 了 朋友 . +Do you like apples ? 你 喜欢 苹果 吗 ? +Whose fault is it ? 是 誰 的 錯 呢 ? +I did not sell Tom my car . 我 没 把 我 的 车 卖 给 汤姆 . +Tom would still be alive if he had been wearing his seat belt . 要是 汤姆 系 上 安全带 的话 , 他 就 不会 死 的 . +You need to pay extra for the batteries . 电池 要 额外 付钱 . +Who touched my gun ? 誰 碰 了 我 的 槍 ? +Tom is afraid to go out alone at night . 汤姆 害怕 晚上 一个 人 出门儿 . +I wish I could buy you everything you wanted . 我 希望 我 能 买下 你 想要 的 所有 东西 . +Send for the doctor at once . 立刻 派 人 去 請 醫生 來 . +I love her and she loves me . 我 愛 她 , 她 也 愛 我 . +Everyone except Tom ate pizza . 所有人 除了 汤姆 都 吃 了 比萨 . +The radio did not mention the incident . 電台 沒有 提到 這個 事故 . +She appears to have many friends . 她 看 起來 好像 有 很多 朋友 . +Tom is my grandfather . Tom 是 我 爺爺 . +Tom is deceitful . 汤姆 是 个 骗子 . +I caught three fish yesterday . 昨天 我 釣 了 三條 魚 . +What is the point in doing that ? 那樣 做 有 什麼 用 ? +I was late for school this morning . 我 今天 早上 上學 遲到 . +I will go by myself . 我 會 自己 走 . +I feel cold . 我 觉得 冷 . +I have been busy writing a short story . 我 一直 忙于 写 一部 短篇小说 . +Why do not you eat pineapple ? 你 為 什麼 不吃 菠蘿 ? +Might I ask your name and address ? 我 能 问 一下 您 的 姓名 和 住址 吗 ? +It cost me a thousand yen to get my bicycle fixed . 修理 我 的 腳踏車 花 了 我 一千 日 圓 . +I did not tell Tom what needed to be done . 我 沒 告訴 湯姆 要 做 甚麼 . +Every cloud has a silver lining . 山 窮水盡疑無路 , 柳暗花明又一村 . +How does this work ? 這 是 怎麼 運行 的 ? +It is hard to quit smoking . 戒烟 难 . +We are Canadians . 我們 是 加拿大人 . +What does he say in his letter ? 他 在 信 上 说 什么 ? +I am glad I could help . 能够 出 一份 力 太好了 . +He was a rugby player . 他 曾 是 个 英式 橄榄球 运动员 . +I will be watching you . 我 會 看著 你 . +No one will see us . 沒 有人 會 看到 我們 . +Please send us more information . 請 給 我們 更 多 訊 息 . +Can I eat this orange ? 我 能 吃 这 只 橙子 吗 ? +There were several rooms still vacant . 还有 几间 空房 . +The time has come when I must tell you the truth . 現在 是 我 必須 告訴 你 真相 的 時候 了 . +You swim better than me . 你 游泳 游得 比 我 好 . +Did the police find any fingerprints ? 警察 找到 指纹 了 吗 ? +You really are tall , are not you ? 你 真的 很 高 , 不是 嗎 ? +I caught a beautiful butterfly . 我 抓到 一 隻 漂亮 的 蝴蝶 . +I want you to be prepared . 我 想 讓 你 準備 好 . +I have worn holes in my socks . 我 把 襪子 穿破 了 . +Do you have a knife ? 你 有 刀 吗 ? +He put the book on the shelf . 他 把 书 放在 了 书架上 . +The last person I told my idea to thought I was nuts . 最后 一个 听 我 说 我 的 主意 的 人 认为 我 疯 了 . +They were always making jokes . 他们 一直 闹笑话 . +Some people do not like to deposit their money in banks . 有些 人 不 喜欢 把 钱 存 银行 . +I feel like everybody is watching me . 我 感觉 大家 都 在 关注 我 . +I have lived here since I was a boy . 我 还是 一个 小男孩 的 时候 就 住 在 这里 . +Traffic is a major urban problem . 交通 是 都市 的 一個 主要 問題 . +You can borrow my car anytime . 你 隨時 可以 借用 我 的 車 . +You are free to go . 你 可以 走 了 . +We work every day but Sunday . 我們 除了 週日 每 一天 都 工作 . +I hope everything will be fine in the end . 我 希望 最后 一切 都 好 . +Who do you want to talk to ? 你 想 跟 誰 說 話 ? +I got the roller skates for nothing . 我 免費 得到 溜冰鞋 . +Enjoy your holidays . 度假 愉快 ! +Open your book to page nine . 打開 你 的 書 到 第九 頁 . +Who did you give it to ? 你 把 它 給 誰 了 ? +The next concert will take place in June . 下一场 音乐会 将 在 六月份 举办 . +She went to the park with him . 她 跟 他 去 公園 了 . +Grab that . 抓住 那个 . +He is hard to get along with . 他 這個 人 很 難相 處 . +How much will it all cost ? 一共 要 多少 錢 ? +Europeans like to drink wine . 歐洲 人 都 愛 喝 葡萄酒 . +Please do not use my name . 請 不要 用 我 的 名字 . +What is your nickname ? 你 的 昵称 是 甚麼 ? +Tom is not interested in Mary at all . 汤姆 对 玛丽 一点 也 不感兴趣 +Is Tom autistic ? 汤姆 有 自闭症 吗 ? +Give me something to eat . 給 我 點 東西 吃 . +I managed to make him understand it . 我 設法 讓 他 明白 了 . +He mistook me for my mother . 他 把 我 誤 認為 是 我 的 母親 . +Tom abstained from voting . 汤姆 投票 弃权 . +I wonder if you are as busy as we are . 我 担心 你 會 跟 我們 一樣 忙 . +Both Tom and Mary can speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +How often did you visit Kyoto ? 你 多常 造訪 京都 ? +This is exactly what I wanted . 我 想要 的 就是 这个 . +This blue sweater is very pretty . 這件 藍色 毛衣 很漂亮 . +This message does not make sense . 這個 消息 沒有 道理 . +They changed the system . 他們 改變 了 制度 . +Tom is interested in mountaineering . 湯姆 對 登山 感興趣 . +That is the reason he became angry . 那 就是 他 生气 的 理由 . +The fire was out . 火 熄灭 了 . +He clipped the sheep . 他 為 羊 隻 修剪 羊毛 . +There is no one in the room . 沒 有人 在 房間 裡 . +She will have to cook for everyone . 她 將 必須 為 大家 做飯 . +I plan to never drink again . 我 打算 絕 不再 喝酒 . +The plane was three hours late due to bad weather . 由于 天气 不好 , 飞机 迟到 了 3 小时 . +I will visit him tomorrow . 明天 我 將 拜訪 他 . +Change trains at the next station . 在 下 一站 換 火車 . +We had a conversation about baseball . 我們 交談 了 有關 棒球 的 事 . +Do I have to take off my shoes here ? 在 這裡 我 必須 脫 鞋 嗎 ? +I went there yesterday . 昨天 我 去 了 那裡 . +I hope that Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +We have been going out three months . 我們 外出 了 三個 月 . +Lemons are sour . 檸檬 是 酸 的 . +He forgot to turn off the light . 他 忘 了 關燈 . +Could you please repeat that ? 你 能 重复 一遍 吗 ? +Neither Tom nor Mary will do that . 湯姆 和 瑪麗 都 不 會 做 那件事 . +Let is play soccer . 去 踢足球 吧 . +I want a massage . I need to relax . 我 想要 按摩 . 我 需要 放松 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +Can I talk to you privately for a minute ? 我 能 跟 你 私下 谈 一分钟 吗 ? +I gave her a lift to town . 我 載 她 去 城裡 了 . +I do not think Tom will go to Boston next weekend . 我 不 認為 湯姆 下週 會 去 波士 頓 . +The situation has not changed at all . 情况 丝毫 没有 改变 . +How about tomorrow night at nine ? 明天 晚上 九点 怎么样 ? +Tom was excited to go to the concert . 汤姆 为 去 音乐会 而 激动 . +Hey , your dog just bit me . 嘿 , 你 的 狗 刚 咬 了 我 . +Why does not he tell me jokes anymore ? 為 甚麼 他 不再 跟 我 講 笑 話 了 ? +I love jokes about animals . 我 爱 听 有关 动物 的 笑话 . +The armed forces occupied the entire territory . 军队 占领 了 整片 领土 . +This is the room where the body was found . 这 就是 发现 尸体 的 房间 . +It was her little sister that broke her toy . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +Your name has been crossed off the list . 你 的 名字 已经 从 名单 删除 了 . +I went there many times . 我 去 那裡 很 多次 了 . +He was opposed to monopolies . 他 反对 垄断 . 他 曾经 / 以前 反对 垄断 +Have not I seen you before ? 我 以前 沒見 過 你 嗎 ? +Your behavior is intolerable . 你 的 行为 让 人 无法忍受 . +Fill it up . 把 它 填滿 . +The well has run dry . 這 口 井 乾 涸了 . +That is what I hope . 我 希望 如此 . +I studied for one hour . 我 讀 了 一個 小 時 的 書 . +We almost had Tom convinced . 我们 差不多 说服 Tom 了 . +She waved at me before she got on board the plane . 她 上 飞机 前 , 给 我 招 了 招手 . +Taxi fares will go up next month . 計程 車費 將 在 下 個 月 漲價 . +A Persian cat was sleeping under the table . 波斯猫 在 桌子 下面 睡觉 . +The children washed their feet . 孩子 们 洗 了 他们 的 脚 . +That Japanese word has no equivalent in English . 那个 日文 词汇 没有 对应 的 英文 . +There are a lot of eggs in the box . 这个 盒子 里 有 很多 蛋 . +How is your last name written ? 你 的 姓氏 怎么 写 ? +Where do you have pain ? 你 哪裡 痛 ? +I want to eat some cake first . 我 想 先 吃 點 蛋糕 . +We just want to find Tom . 我們 只是 想 找 Tom . +Are you afraid of dogs ? 你 怕 狗 吗 ? +Let is end this nonsense . 让 我们 结束 这 胡言乱语 . +I feel a lot better today . 我 今天 感觉 好多 了 . +Are we done ? 我们 完成 了 吗 ? +Please turn on the radio . 请 打开 收音机 . +Her birthday party will be held tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +They helped him get to Canada . 他們 幫 他 去 加拿大 . +I could not stop myself from laughing . 我 不能 忍著 不 笑 . +He is highly intelligent . 他 聪明 得 很 . +I weighed myself on the bathroom scales . 我 用 浴室 的 体重 计量 了 体重 . +Can you guess my age ? 你 能 猜到 我 的 年龄 吗 ? +She almost passed out . 她 几乎 喝晕 了 . +I usually get up at 6 : 00 . 我 通常 在 六點鐘 起床 . +I do not like my hair at all . 我 根本 不 喜歡 我 的 頭 髮 . +Is Tom swimming ? 汤姆 在 游泳 吗 ? +They have a very nice veranda . 他们 有 一个 非常 漂亮 的 暖房 . +I do not think Tom trusts many people . 我 不 認為 湯姆 相信 許多 人 . +I got her to clean my room . 我 讓 她 把 我 的 房間 弄乾 淨 . +Please give me a blanket . 請 給 我 送 一塊 毯子 . +Quite by chance , I met my old friend at the airport . 很 幸运地 , 我 在 机场 遇到 了 我 的 老朋友 . +Let me explain it to Tom . 讓 我 跟 湯姆 說明 . +What mountain do you think is the second highest in Japan ? 你 认为 日本 第二 高峰 是 哪 座 山 ? +I am sure Tom will do his best . 我 确定 汤姆 会 尽力去做 . +What did you answer ? 你 回答 了 什么 ? +Tom clenched his teeth . 汤姆 咬紧牙关 . +I can not afford to play tennis . 我 負擔 不 起 打 網球 的 費用 . +Tom has recently become forgetful . Tom 最近 变得 健忘 了 . +Spell your name , please . 请 拼 一下 您 的 名字 . +I was barely able to work . 我 几乎 不能 工作 了 . +Mary is Tom is secretary . 玛丽 是 汤姆 的 秘书 . +Your CV has really impressed me . 你 的 履歷 給 我 留下 深刻 的 印象 . +It was raining when we arrived . 我們 到 的 時候 正在 下雨 . +I have a dog . 我 有 一条 狗 . +Did you call Tom ? 给 汤姆 打 过 电话 了 吗 ? +I need to get some stamps . 我 需要 一些 郵票 . +What do you call this flower ? 這個 花 叫 什麼 名字 ? +My father died four years ago . 我 的 父親 四年 前 去世 了 . +Tom is Mary is ex @-@ boyfriend . 汤姆 是 玛丽 的 前男友 . +The dog chased the rabbit . 狗 追 兔子 . +Do you feel lucky ? 你 觉得 幸运 吗 ? +She got wet to the skin . 她 渾身 濕透 了 . +Tom is friendly to everyone . 汤姆 对 每个 人 都 很 友好 . +English has become an international language . 英语 成为 了 一门 国际 语言 . +You had better not stay up late . 你 最好 不要 熬夜 . +They adopted the little girl . 他们 收养 了 那个 小女孩 . +Why have you been late to school every day this week ? 為 什麼 你 這個 禮 拜 每天 上學 都 遲 到 ? +I was sore for three weeks . 我 难受 三周 了 . +You have good reason to be angry . 你 有 充分 的 理由 生氣 . +Who is that woman in the brown coat ? 那个 穿 棕色 大衣 的 女人 是 谁 ? +I have just been to the post office . 我 剛剛 去 了 郵局 . +No drinkers allowed . 飲酒 者 不准 禁入 . +She wants to move out and find a place of her own . 她 想 搬出去 , 找 個 屬 於 自己 的 地方 . +Here is my baggage . 这 是 我 的 行李 . +The situation is worse than I 'd thought . 情況 比 我 想 的 還壞 . +She knows your mother very well . 她 對 你 的 母親 很 熟悉 . +My dad is busy . 我 爸爸 很忙 . +He used to be an imaginative boy . 他 曾經 是 一個 富有 想像力 的 男孩 . +The cat is watching the fish . 猫 看着 鱼 . +I 'd love to come with you . 我 想 和 你 一起 去 . +She can not play the piano very well . 她 無法 把 鋼琴 彈 得 很 好 . +How do you pronounce your name ? 你 怎 麼 唸 你 的 名字 ? +He disappeared without a trace . 他 消失 了 , 不留 一丝 踪迹 . +Let is discuss the matter right now . 让 我们 马上 讨论 这个 问题 吧 . +If you would move over , there would be room for everyone . 如果 您 移 過 去 一點 , 每個 人 就 可以 有空 間 了 . +I will see to it . 我 會 留意 的 . +What will the results be ? 結果 會 是 甚麼樣 的 ? +I knew this day was coming . 我 知道 這天 要來 . +Meet me there . 在 那裡 見 我 . +I was ten minutes late for school . 我 上學 遲到 了 十分 鐘 . +My uncle gave me a gift . 我 叔叔 给 了 我 一份 礼物 . +The kidnappers showed no sign of giving up . 這些 綁 匪 沒有 放棄 的 跡象 . +He is unable to buy a car . 他 不能 买车 . +Is there central heating in this building ? 这栋 楼 里面 有 中央 暖气 系统 吗 ? +I have a few friends here . 我 在 这儿 有 一些 朋友 . +All our efforts were in vain . 我们 所有 的 努力 都 白费 了 . +Tom hid in the shed . 汤姆 躲 在 棚里 . +We are looking for him . 我们 在 找 他 . +Tom is birthday was yesterday . 汤姆 的 生日 是 昨天 . +You are always as busy as a bee . 你 總是 跟 蜜蜂 一樣 地 忙碌 . +Who is the girl standing over there ? 站 在 那儿 的 女孩 是 谁 ? +Have you had your eyesight checked recently ? 你 最近 检查 视力 了 吗 ? +I love watching talk shows . 我 愛 看 脫口秀 . +Do not play in the street . 別 在 馬 路上 玩 . +Did you hear about the fire yesterday ? 你 聽 說 了 昨天 的 火災 嗎 ? +Tell me again . 重新 告訴 我 . +He objected to his wife working outside . 他 反对 妻子 在外 工作 . +This is ice . 這 是 冰塊 . +Fasten your seat belts . 系上 你們 的 安全带 . +You let me down . 你 让 我 失望 了 . +Tom wondered where Mary had learned French . 汤姆 想 知道 玛丽 在 哪里 学会 了 法语 . +I had to abstain from smoking while I was in the hospital . 在 医院 的 时候 , 我 不得不 戒烟 . +Never be afraid of making mistakes . 不要 害怕 犯錯 . +I do not think he will say yes . 我 不 認為 他 會 同意 . +I suggested that she go alone . 我 建議 她 一個 人 去 . +A map helps us to know where we are . 地图 帮助 我们 知道 所在 的 位置 . +Where did you get your hair cut ? 你 在 哪裡 剪 頭 髮 ? +People who break the law are punished . 觸犯 法律 的 人 受到 懲罰 . +Talking during a concert is rude . 在 音樂會 中 說 話 是 不 禮貌 的 . +He gets tired easily . 他 很 容易 觉得 累 . +I heard a car pull up . 我 听到 一辆车 停 了 下来 . +Her daughter has become a beautiful woman . 她 的 女兒 已經 變成 一個 漂亮 的 女人 . +That book was interesting . 那 本書 很 有趣 . +I was unable to go to his birthday party . 我 那时 没法 去 他 的 生日派对 . +I am not serious . 我 不是 认真 的 . +Short skirts are already out of fashion . 短裙 已經 過時 了 . +Balls are round . 球 是 圆 的 . +Could you exchange rooms with me ? 可以 跟 我 交換 房間 嗎 ? +He likes music very much . 他 非常 喜歡 音樂 . +The doctor gave it to her . 醫生 把 它 給 了 她 . +The picture is hanging on the wall . 畫 掛 在 牆上 . +A beautiful lake lay just beyond the forest . 森林 外 有 一个 美丽 的 湖泊 . +My father often reads the newspaper during meals . 我 父亲 经常 在 吃饭 时 读 报纸 . +The soldiers are ready for battle . 士兵 們 準備 好要 戰鬥 了 . +I will be in my office from ten tomorrow . 我 明天 十点 起会 在 办公室 里 . +Stay there . 留在 这里 别动 . +Tom is living somewhere in Boston . 湯姆 住 在 波士 頓 某地 . +I feel like eating something sweet . 我 想 吃 點 甜 的 東西 . +He is lying through his teeth . 他 明显 在 撒谎 . +Tom is an important person . 湯姆 是 個 重要 的 人 . +We often played chess after school . 我們 常常 在 放學 後 下棋 . +Tom , we have to talk . 汤姆 , 我们 必须 谈谈 . +Bring the key . 帶 鑰匙 來 . +Action speaks louder than words , but not nearly as often . 行胜 于 言 , 但 并 不是 所有 情况 都 是 这样 . +I got my friends to help me . 我 請 我 的 朋友 來 幫助 我 . +We want to spend our honeymoon in Australia . 我们 想 在 澳大利亚 过 蜜月 . +Can I have a few words with you ? 可不可以 和 你 说 几句 ? +They cleared the street of snow . 他們 清理 了 街上 的 積雪 . +I will send it to you tomorrow . 我 明天 把 它 寄给 你 . +Is the snake alive or dead ? 這條 蛇 是 活 的 還 是 死 的 ? +Few students knew his name . 很少 学生 知道 他 的 名字 . +I need something to write with . 我 需要 一些 用來 寫 字 的 東西 . +I want to get a haircut before I go on the trip . 我 想 在 出發 旅行 前 剪 個 頭 髮 . +Tom can write almost like a native speaker , but his pronunciation is terrible . Tom 写作 可以 写 的 像 本国 人 一样 , 可是 他 的 发音 很烂 +She had a vague feeling of guilt . 她 隱約 地 有 一種 的 內疚 感 . +I 'd love to find out why she said so . 我 很 想 找出 她 为什么 这么 说 的 原因 . +Driving on a slippery road can lead to a car wreck . 在 光滑 的 路上 开车 会 导致 车祸 . +He swam across the river . 他 遊 過 了 河 . +Do you know if Tom has spoken to Mary recently ? 你 是否 知道 最近 湯姆 跟 瑪麗 有 沒有 說 過 話 ? +I think I have done enough . 我 認為 我 做 得 夠 了 . +How did you get back so soon ? 你 怎么 回来 得 这么 快 ? +I have a surprise for you . 我 帶 了 一個 驚喜 給 你 . +Have you ever seen Tom when he is angry ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +Money does not grow on trees . 錢 不 會 從 樹上 長 出來 . +People have two legs . 人 有 两只 脚 . +It is getting lighter outside . 外面 天色 越來越 亮 了 . +The soldiers were guarding the bridge . 士兵 們 守衛 著 這 座 橋 . +Do not let them forget me . 别 让 他们 忘 了 我 . +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +He drives very fast . 他 開車 速度 非常 快 . +Where is the next train going ? 下 一列 火車 去 哪裡 ? +Please open the window . 麻煩 你 開 一下 窗 . +I do not like to sing in public . 我 不 喜歡 在 公共 場合 唱歌 . +The baby went to sleep at once . 這個 小 嬰兒 立刻 去 睡覺 了 . +We are just like brothers . 我們 就 像 兄弟 一樣 . +Do not worry . You will make it . 不要 擔心 . 你 辦 得到 的 . +He and I walked together . 我 和 他 一起 走 . +When are you going to quit smoking ? 你 何時 要 戒煙 ? +He knows how to make a radio . 他 知道 如何 做 收音机 . +Do you think animals have a soul ? 你 认为 动物 有 灵魂 吗 ? +I can not find him anywhere . 我 在 哪儿 都 没 找到 他 . +What is your favorite game to play with friends ? 你 最 喜歡 和 朋友 玩 什麼 遊戲 ? +They both cried after hearing the tragic news . 聽到 這件 悲劇 , 他倆 盡 皆 哭泣 . +I was watching TV when the phone rang . 电话响 的 时候 , 我 在 看电视 . +She answered in tears . 她 很 傷 心地 回答 . +She tried to kill herself . 她 企圖 自殺 . +I telephoned her at once . 我 立刻 打 電話 給 她 . +I like playing baseball . 我 喜歡 打 棒球 . +Cats hate vacuum cleaners . 猫 很 讨厌 吸尘器 . +Everyone is laughing . 每個 人 都 在 笑 . +You are a month behind in your rent . 你 的 租金 遲交 了 一個 月 . +Where were you yesterday ? 您 昨天 在 哪儿 ? +While napping , I had a strange dream . 我 睡午觉 的 时候 做 了 个 怪 梦 . +I am able to drive a car . 我会 开车 . +Try some . 试试 吧 . +I am not good at mathematics . 我 的 數學 不好 . +You sound like a politician . 你 说话 像 个 当官 的 . +We accept checks . 我們 接受 支票 . +I wrote this book . 我 写 了 这 本书 . +If she was displeased , she never showed it . 如果 她 不 高興 , 她 從來 不 表現 出來 . +I do not see why I had to come along . 我 不 明白 为什么 我 得 跟着 去 . +We gave blood to help the child . 我們 捐血 來 幫助 這個 孩子 . +That song was written by Tom . 那首歌 是 Tom 寫 的 . +Her oldest daughter got married . 她 的 大 女兒 結婚 了 . +Bring him in . 带 他 进来 . +I am not very good at golf . 我 不 太 擅长 打 高尔夫球 . +I have had enough . 我 已經 吃 飽 了 . +I have a stomachache , doctor . 我 胃痛 , 醫生 . +My strength is all gone . 我 的 力气 耗尽 了 . +Why are you here ? 你 為 什麼 在 這 ? +His scores are always better than mine , even though he does not study very much . 他 的 分数 总 比 我 高 , 尽管 他 学习 得少 一点 . +He asked her to call him later . 他 要求 她 稍 後 打 電話 給 他 . +I listened to some CDs last night . 我 昨晚 了聽 一些 唱片 光碟 . +When will you go out ? 你 什麼 時候 要 出去 ? +The importance of music is underrated . 音乐 的 重要性 被 低估 了 . +Are there any messages for me ? 有 任何 給 我 的 訊息 嗎 ? +Will you give me a light ? 借 個 火 好 嗎 ? +I want this camera . 我 要 這 台 相機 . +Are you still at home ? 你 還 在家 裡 嗎 ? +My car burns a lot of gas . 我 的 車子 很 耗油 . +It is my brother is . 它 是 我 兄弟 的 . +You do not need to call me . 你 不必 打电话 给 我 . +The men is room is on the second floor . 男厕所 在 二楼 . +I am not inflexible . 我 不是 死板 的 . +It is going to get cold tonight . 今晚 天气 会 变冷 . +What is she doing ? 她 在 做 什麼 ? +Do not go above the speed limit . 不要 超速 . +You can watch TV after supper . 晚餐 之 後 你 才 可以 看電視 . +She fell down the ladder . 她 从 梯子 上 摔 了 下来 . +War does not make anybody happy . 战争 不会 使 任何人 幸福 . +I had a good time this evening . 今天 晚上 我 玩 得 很 開心 . +In case of an emergency , get in touch with my agent . 万一 有 紧急情况 , 联系 我 的 代理人 . +Tom has lived in Boston for over a year . 汤姆 住 在 波士顿 已经 一年 多 了 . +I found you , did not I ? 我 找到 你 了 , 没有 么 ? +Would you pass the salt , please ? 請 你 把 鹽 遞 過 來 好 嗎 ? +Do you have a car ? 你 有 车 吗 ? +Who are you ? 你 是 誰 ? +He explained the literal meaning of the sentence . 他 解释 了 句子 的 字面 意思 . +You should begin with easier questions . 你 應 該 先 從 最 簡單 的 問題 開始 . +She is drunk with happiness . 她 陶醉 在 幸福 裡 . +That is perfect . 那 是 完美 的 . +I am sure Tom wanted to come along . 我 确定 汤姆 想来 . +To my astonishment , my money was gone . 令 我 惊讶 的 是 , 我 的 钱 没 了 . +The losses are incalculable . 損失 是 無法 估計 的 . +She was more beautiful than all the others . 她 比 其他人 都 漂亮 . +Do this work by tomorrow if possible . 如果 可能 的话 , 在 明天 前 做好 这个 工作 . +Come if you can . 你 能 来 就 来 ! +He asked me a question . 他 問 了 我 一個 問題 . +It is a risk that Tom and I are not willing to take . 我 和 汤姆 都 不 愿意 冒 这个 险 +As far as I am concerned , this coffee is too strong . 这 咖啡 对 我 来说 太 浓 了 . +China is about twenty @-@ five times as large as Japan . 中国 的 版图 大概 是 日本 的 二十五倍 . +This word comes from Greek . 這個 詞 來 源于 希臘語 . +Tom kept talking all night . 湯姆 整夜 一直 在 說 話 . +Tom is now studying in his room . 湯姆 現在 在 他 的 房間 裡 學習 . +People who will lie for you , will lie to you . 会 为 你 说谎 的 人 , 就 会 对 你 说谎 . +Tom nodded approval . 汤姆 点头 同意 . +Please help yourself to some fruit . 請 你 隨便 吃 點 水果 . +What are you doing tonight ? 你 今晚 在 做 什麼 ? +They say that Venice is a beautiful city . 他們 說 威尼斯 是 個 漂亮 的 城市 . +The soup is thick . 汤 很 稠 . +Tom does not know if Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +The old man lived there by himself . 這個 老人 獨自 住 在 那裡 . +No one was killed in the fire . 沒人死 在 火 裡 . +Tom probably would not do something that stupid . 湯姆 可能 不 會 做 蠢事 . +Where are your things ? 你 的 東西 在 哪裡 ? +I should have declined . 我 本 应 婉拒 . +I came here to thank you . 我 來 感謝 你 . +I am fond of cars . 我 喜歡 車 . +Tom plays the violin well . 汤姆 拉 小提琴 拉 得 很 好 . +My camera was stolen on the train . 我 的 照相机 在 火车 上 被 偷 了 . +I usually walk to school . 一般 我 步行 去 学校 . +Help yourself to whatever you like . 隨 你 喜歡 隨便 吃 . +It is pretty simple . 它 真 簡单 . +The air felt a little cold . 空气 有点 冷 . +Tom could not go to college because his family did not have enough money . 因为 家里 钱 不够 所以 汤姆 没能 念 大学 . +We all chipped in to buy our teacher a birthday present . 我们 所有人 凑份子 给 老师 买 生日礼物 . +It is me that is wrong . 是 我 错 了 . +I have never stopped loving Tom . 我 從 沒 停止 過 愛 湯姆 . +I thought Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +Do you really want me to go there right now ? 你 真 想 让 我 马上 到 那里 去 吗 ? +Let me tell you the reasons that I do not agree with you . 让 我 来 告诉 你 我 不 赞成 你 的 理由 . +I bought a red sports car . 我 買 了 一輛 紅色 的 跑車 . +You should have worked harder . 你 應 該 要 更 努力 的 . +I have not had much sleep lately . 我 最近 没 怎么 睡觉 . +I have just started playing tennis . 我 剛 開始 打 網球 . +My brother is holding a camera in his hand . 我 弟弟 手里 拿 着 一个 摄像机 . +Thank you for inviting me to dinner . 谢谢 你 邀请 我 吃饭 . +All you can do is to wait . 所有 你 能 做 的 就是 等待 . +We must obey the rules . 我们 必须 遵守规则 . +This little girl let the birds escape . 這個 小女孩 讓 小 鳥 脫逃 了 . +Are not you happy about this ? 你 對 此 不 高興 嗎 ? +They will let us know what happens . 他们 会 让 我们 知道 发生 了 什么 . +Tom is quite fussy . 汤姆 相当 挑剔 . +Tom is house has a nice garden . 湯姆 的 住宅 有 一個 不錯 的 花園 . +Industry was growing quickly . 工業 發展 迅速 . +I got it for next to nothing . 我 簡直 不用 花錢 就 買到 了 . +School finishes before noon on Saturdays . 學校 在 星期六 中午 之前 放學 . +Do you have this in a bigger size ? 你 有 比 這個 再 大 一點 的 尺寸 嗎 ? +Can I speak to the head nurse ? 我 能 跟護 士長 說 話 嗎 ? +We used to play in the park . 我们 过去 常 在 公园 玩 . +She stayed there for a moment . 她 在 那裡 留 了 一會 . +" Trust me , " he said . “ 相信 我 . ” 他 说 . +Tom told Mary something she did not want to hear . 湯姆 告訴 了 瑪麗 她 不想 知道 的 事 . +Who is your favorite TV star ? 谁 是 你 最 喜爱 的 电视 明星 ? +Is it tasty ? 好吃 嗎 ? +She warned him not to go alone . 她 警告 了 他 不要 一個 人 去 . +I will not eat ice cream . 我 不 會 吃 冰淇淋 . +I am going to go tell Tom . 我 要 告诉 汤姆 . +I like to play basketball . 我 喜歡 打 籃球 . +What time is it in Boston ? 波士顿 现在 几点 ? +What have you come here for ? 您 来 这儿 干嘛 ? +We will have learned English for five years next year . 到 明年 我们 学 英语 就 有 5 年 了 . +The lecture lasted for two hours . 這場 演講 持續 了 兩個 小 時 . +I heard the door close . 我 听到 门 关了 . +Has anybody here been to Hawaii ? 这儿 有人 去过 夏威夷 吗 ? +You are not coming , are you ? 你 不 會 來 , 是 嗎 ? +I like to watch baseball games . 我 喜歡 看 棒球 比賽 . +Do you know whether or not she can speak English ? 你 知道 她 是否 會 講 英語 嗎 ? +She is going to France next week . 她 下週 要 去 法國 . +I do not like novels without heroes . 我 不 喜欢 没有 英雄 的 小说 . +I am grateful for what Tom did . 我 很 感激 汤姆 所 做 的 . +Be quiet , all of you . 你們 所有 的 人 都 安靜 . +Could you tell me where I can get a bus ? 你 能 告诉 我 能 在 哪里 上 公交车 吗 ? +Where does she want to go ? 她 想 去 哪裡 ? +Lend me your dictionary , please . 请 把 你 的 字典 借给 我 . +Tom put the large picnic basket on the passenger seat next to him . 汤姆 把 那个 大 野餐 篮子 放在 他 旁边 的 乘客 座位 上 . +What is not necessary ? 什麼 是 不必要 的 ? +This word is difficult to pronounce . 這個 字 很 難 發音 . +Can I have some tea ? 可以 给 我 一些 茶水 吗 ? +School begins at half past eight . 學校 八點半 開始 上課 . +Excuse me . Do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +The girl did not say anything . 這個 女孩 什麼 也 沒 說 . +She hung the calendar on the wall . 她 把 日 曆 掛 在 牆 上 了 . +Do you want to go somewhere ? 你 打算 去 什么 地方 吗 ? +It is just your imagination . 那 只是 你 的 想象 . +You 'd better get away from here at once . 你 最好 立刻 離開 這裡 . +May I go to the restroom ? 我 可以 去 洗手 間 嗎 ? +I am eating rice . 我 在 吃 米饭 . +We have a test tomorrow . 我们 明天 有个 测验 . +They answered their teacher is question with difficulty . 他们 好不容易 才 回答 了 他们 老师 的 问题 . +It is likely to rain tomorrow . 明天 有 可能 會 下雨 . +We enjoyed listening to the music . 我們 喜歡 聽 音樂 . +Ogai is his favorite author . Ogai 是 他 最 喜欢 的 作者 . +She was absorbed in the video . 她 迷上 了 视频 . +He had his head in the clouds in class . 他 在 課 堂上 心不在焉 . +They will not come until tomorrow . 他們 明天 才 會 來 . +She is capable of teaching English . 她 可以 教 英语 . +Japan is in Asia . 日本 在 亚洲 . +What size shoes do you wear ? 你 穿 幾號 的 鞋子 ? +I saw a dirty dog enter the garden . 我 看见 一条 脏 狗 进 了 花园 . +The baby started crying . 宝宝 开始 哭 了 . +Chocolate has more iron than spinach . 巧克力 含有 比 菠菜 更多 的 鐵質 . +She played the guitar and he sang . 她 彈 吉他 , 他 唱歌 . +You are frightening me . 你 在 嚇 我 . +I am playing the piano now . 我 現在 正在 彈 鋼琴 . +I never should have let Tom eat so much candy . 我 不論 甚麼 時候 都 不該 讓 湯姆 吃 那麼 多糖 . +It will cost you more to go by plane . 搭 飛機 將 花 你 比較 多 的 錢 . +You cannot achieve anything without effort . 没有 什么 是 不劳而获 的 . +He is richer than anyone else in this town . 他 比 镇里 的 其他人 都 有钱 . +She remained silent all day . 她 一整天 都 沉默不语 . +My father did not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +Excuse me , but may I open the window ? 不好意思 , 请问 我 可以 开窗 吗 ? +This article is nonsense . 這 文章 是 胡 說 . +He suddenly became very happy . 他 突然 變得 非常 開心 . +Answer the telephone , will you ? 請 你 接聽 一下 電話 , 好 嗎 ? +Why are not you listening ? 你 為 甚麼 不 聽 ? +Tom is in the other room drinking vodka . Tom 在 別的 房間 喝 伏特加 . +Why is Tom still at school ? 为社么 汤姆 还 在 学校 ? +She speaks a little Arabic . 她 说 一点 阿拉伯语 . +My sister is shorter than you . 我 妹妹 比 你 矮 . +There are many beautiful parks in London . 伦敦 有 很多 漂亮 的 公园 . +We do not like our neighbors , and they do not like us , either . 我們 不 喜歡 我們 的 鄰居 , 而 他們 也 不 喜歡 我們 . +The black telephone costs more than the white . 黑 的 电话 比 白 的 花钱 多 . +I will not see her again . 我 不 會 再 見 她 . +It is impossible to go out now . 現在 不 可能 出去 . +Keep the dog out . 别 让 狗 进来 . +I hid under the table . 我 藏 在 桌子 底下 . +This pencil is better than that one . 這 支 鉛 筆 比那 隻 好 . +Tom should be here soon . 汤姆 应该 很快 就 到 . +Which group do you want to join ? 你 想 加入 哪 一組 ? +I did not get your name . 我 沒 聽 清楚 你 的 名字 . +Put some water into the vase . 在 花瓶 裡 裝 些 水 . +It is better than nothing . 有 比 沒有 好 . +I would like to visit your country someday . 我 想 某 一天 拜访 你 的 国家 . +During the exam , Tom cheated off Mary . 在 考试 的 时候 , 汤姆 作弊 抄 了 玛丽 的 答案 . +We sent out the invitations yesterday . 我们 昨天 发出 了 邀请 . +What is the ultimate purpose of education ? 教育 的 最终 目的 是 什么 ? +Let me think for a minute . 让 我 想想 . +I can make that happen . 我 不能 让 那事 发生 . +The dog followed its master , wagging its tail . 狗 搖著 尾巴 跟著 主人 . +You 'd better check this out . 你 最好 检查一下 这个 . +We are eating apples . 我們 在 吃 蘋果 . +My father has a restaurant . 我 父亲 有家 餐馆 . +The boy eats bread . 這個 男孩 吃 麵 包 . +Tom certainly has a tough job . 汤姆 确实 有个 麻烦 的 工作 . +When does the next train leave ? 下 一班 火車 什麼 時候 開 ? +She looks a lot like her mother . 她 非常 像 她 的 母亲 . +Tom will do that . 湯姆會 做 . +Tom wanted to stay home and relax instead of hiking with his children . 汤姆 想待 在家 休息 而 不是 和 他 的 孩子 们 出去 远足 . +Compared to our house , yours is a mansion . 跟 我们 的 房子 比 , 你 的 就是 个 豪宅 . +We must conform to the rules . 我们 必须 遵守规则 . +All of my software is open source . 我 的 软件 全都 是 开源 的 . +I only want one . 我 只 想要 一件 东西 . +You did not need to come so early . 你 不必 這麼 早來 . +They are breaking down the wall . 他們 正在 拆 這面 牆 . +Maybe they have something . 他们 可能 有点 什么 . +No problem ! 没 问题 ! +None of this makes any sense . 這裡 頭 沒有 一件 事 說 得 通 . +What were you doing in Boston ? 你 在 波士顿 做 了 什么 ? +The boy denied having stolen the bicycle . 那个 男孩 否认 偷 了 自行车 . +The train will probably arrive at the station before noon . 火车 大概 会 在 中午 前 到 站 . +Let is clean our room . 打扫 我们 的 房间 吧 . +Osaka is the center of commerce in Japan . 大坂 是 日本 的 商业中心 . +Tell him to mind his own business . 告訴 他 別 多 管閒 事 . +There are some boys in the park . 公園 裡 有 一些 男孩子 . +Dry wood burns well . 干柴 燒 得 旺 . +I was truly astonished . 我 真是 惊讶 . +Most Americans like hamburgers . 大多 數 的 美國 人 喜歡 漢堡 . +These boxes are heavy . 这些 箱子 是 重 的 . +I borrow money . 我 借 錢 . +I 'd rather die than surrender . 我 寧 死不降 +Tom just wants my money . 湯姆 就是 想要 我 的 錢 . +A doctor told me that eating eggs was bad for me . 一位 医生 告诉 过 我 , 吃 鸡蛋 对 我 的 健康 有害 . +Lake Baikal in Russia is the deepest lake in the world . 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +I wanted to become a philosopher . 我 想 成为 哲学家 . +Could you help us after school ? 你 能 在 放學 後 幫助 我們 嗎 ? +I can come at three . 我 三點鐘 可以 來 . +By the way , my English is absolutely hopeless . 順道 一 提 , 我 的 英語 是 絕對 沒有 希望 了 . +Do you have kids ? 你們 有 小孩 嗎 ? +That is not a cat . It is a dog . 那 不是 猫 . 那 是 狗 . +He will not live a long life . 他 不 會 長壽 . +The sky is clear almost every day . 天空 幾乎 每天 是 晴朗 的 . +Could you please not smoke in this room ? 请问 你 能 不 在 房间 里 吸烟 吗 ? +Tom and Mary switched places on the bench . 汤姆 和玛丽 在 长凳 上 交换 了 位置 . +Today is the hottest day this year . 今天 是 今年 最熱 的 一天 . +What is the matter with you ? 你 怎么 了 ? +Tom wanted to see me . 汤姆 想见 我 . +What time did your friend go home ? 你 朋友 幾點鐘 回家 ? +People need to stop hating . 人们 需要 止住 仇恨 . +You look like you are confused . 你 看 起來 有 困惑 . +The show was very interesting . You should have seen it . 演出 真的 很 有意思 , 你 该 去 看看 的 . +The value of the coins depended on the weight of the metal used . 钱币 的 价值 取决于 所 使用 的 金属 的 重量 . +It is about a ten @-@ minute drive from here . 從 這裡 大約 10 分鐘 車程 . +Would you please lend me some money ? 你 能 借 我些 钱 吗 ? +Tom is not a good worker . 湯姆 不是 個 好 工人 . +Take your hat off when you enter a house of worship . 當 你 進入 禮 拜堂 時 , 把 你 的 帽子 脫 下來 . +How long did that take ? 那 持续 了 多久 了 ? +He is making great progress in English . 他 的 英語 有 很大 的 進步 . +Welcome . 欢迎 . +Actually , I am not suggesting anything . 實際 上 , 我 沒有 建議 甚麼 . +I go to bed late at night . 我 晚上 很晚 就 寢 . +Tom is not the only one here who is a good singer . 汤姆 不是 这里 唯一 的 好 歌手 . +Tom has not given us anything . 汤姆 什么 也 没给 我们 . +Do you mind turning on the TV ? 你 介意 打開 電視 嗎 ? +He became a famous singer . 他 成为 了 著名 的 歌手 . +All you can do is wait . 所有 你 能 做 的 就是 等待 . +Call the police ! 叫 警察 ! +I am going to the park . 我 去 公園 . +I speak English every day . 我 每天 都 说 英语 . +He wiped the sweat from his face . 他 擦 去 了 脸上 的 汗水 . +Could you write it down , please ? 請 你 寫 下來 好 嗎 ? +I hope everything will turn out well in the end . 我 希望 最后 一切 都 好 . +Mary is sitting at the desk . 瑪麗正 坐在 辦公 桌旁 . +How much is this hat ? 这 顶 帽子 多少 钱 ? +She was asked to write her name in ink . 她 被 要求 用 墨水 写下 她 的 名字 . +If you eat that much , you will get a stomachache . 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +The shell of an egg is easily broken . 蛋壳 容易 破碎 . +Is this car your friend is ? 這輛 車 是 你 朋友 的 嗎 ? +There is nothing I can do . 沒有 我 可以 做 的 事 . +I wish Tom were my younger brother . 但 願 湯姆 是 我 的 弟弟 . +Perhaps it will rain tomorrow . 也許 明天 會 下雨 . +Tom ran out of matches so he could not light the fire . 汤姆 用尽 了 火柴 , 不能 点火 了 . +We helped them as well . 我們 也 幫助 他們 . +I bought a book . 我 買 了 一本 書 . +Tom misses Boston . 汤姆 想念 波士顿 了 . +Your reason is very good . 你 的 理由 很 充分 . +Good morning . It is time to wake up . 早安 . 是 該 醒來 的 時候 了 . +I am interested in music . 我 對 音樂 有 興趣 . +This is only one of the things we found . 这 只是 我们 发现 的 东西 之一 . +Let is talk over a cup of coffee . 让 我们 边 喝咖啡 边 谈 . +It is already past five o 'clock . 已經 過 了 五點鐘 . +It is stupid of you to believe in him . 你 相信 他 真是太 愚蠢 了 . +You are a good cook , are not you ? 你 很 會 做菜 , 不是 嗎 ? +Are you a teacher or a student ? 您 是 老师 , 还是 学生 ? +He knows how to play baseball . 他 知道 怎么 玩 棒球 . +This coat fits you perfectly . 這件 大衣 十分 適合 你 . +Tell me what you want . 告訴 我 你 要 什麼 . +We saw the ground covered with snow . 我们 看见 地面 被 雪 覆盖 了 . +Is the customer always right ? 顾客 永远 是 正确 的 吗 ? +Hokkaido is to the north of Honshu . 北海道 在 日本 本州 的 北部 . +I wish Tom were my younger brother . 我 希望 湯姆 是 我 的 弟弟 . +I do not know what you are referring to . 我 不 知道 你 指 的 是 什么 . +Keep it quiet . 保持 安静 +Tom is waiting for everyone to leave . 汤姆 等 着 每个 人 都 离开 . +This shirt costs ten dollars . 這 襯衫 要 十元 . +Would you mind lending me your pen ? 你 介意 把 你 的 筆 借 給 我 嗎 ? +Let me remind you again that March 31st is the due date . 讓 我 再次 提醒 你 3 月 31 日 是 到期日 . +I want to know why I am here . 我 想 知道 我 為 甚麼 在 這裡 . +I do not believe such things exist . 我 不 相信 這樣 的 事情 存在 . +Some boys came into the classroom . 有些 男孩 走進 了 教室 . +I do my homework after school . 我 在 放学 後 做作 業 . +I want to eat out tonight . 我 今晚 想 出去 吃 . +What do you want now ? 你 现在 想要 什么 ? +The flag is up . 旗子 升起 了 . +They always skip school . 他們 總是 逃學 . +She is on a diet . 她 在 节食 中 . +Tom is interested in mathematics . 湯姆 是 對 數學感 興趣 . +He should thank you . 他 應該 感謝 您 . +You will get used to this in three or four weeks . 你 在 三 或 四周 内会 习惯 这个 . +The Smiths live in my neighborhood . 史密斯 夫婦 住 在 我家 附近 . +Keep children away from the pond . 让 孩子 远离 池塘 . +Many people were killed in the war . 很多 人 在 戰爭 中 被 殺 . +Help yourself to a piece of cake . 你们 自己 吃 蛋糕 . +I am counting on you . 我 就 指望 你 了 . +Throughout the five years of painful cancer treatments , he managed to keep a stiff upper lip . 这 五年 痛苦 的 癌症 治疗 他 终于 坚持 下来 了 . +Mary is helping her mother . 瑪麗 正在 幫忙 她 的 母親 . +You can drive a car , can not you ? 你 會 開車 , 不是 嗎 ? +He goes to the office by car . 他 開車 去 辦 公室 . +The rumor was without foundation . 謠言 是 毫無 根據 的 . +I think we should concentrate on other things . 我 想 我们 应 集中 于 另外 的 事情 . +You chose this job yourself , right ? 你 自己 选择 了 这份 工作 , 是 吗 ? +We have plenty of time tonight . 今晚 我们 有 充分 的 时间 . +What is up with you ? 你 怎么 了 ? +He lives somewhere around the park . 他 住 在 公园 周围 的 某个 地方 . +I helped my brother move his desk . 我 幫 我 弟弟 搬 了 他 的 書桌 . +What have you guys done to me ? 你们 到底 对 我 做 了 什么 ? +I can not sleep at all ! 完全 睡不着 . +Which bed do you want to use ? 你 想 睡 哪 張 床 ? +Finishing the report by tomorrow is next to impossible . 在 明天 前 完成 报告 几乎 是 不 可能 的 . +Why did not you dance with him ? 你 為 什麼 不 跟 他 跳舞 呢 ? +Wipe the pan dry with a paper towel . 用 纸巾 把 那 口 锅 擦干 . +Strawberries are in season now . 現在 是 草莓 的 季節 . +Tom has brains . 汤姆 脑子 好使 . +He is not at all afraid of snakes . 他 一點 也 不怕 蛇 . +I like this picture , not just because it is famous , but because it really is a masterpiece . 我 喜欢 这 幅画 , 不仅 是因为 它 的 名气 , 而是 因为 它 真的 是 一个 杰作 . +Tom is a very bad person . 汤姆 是 个 非常 坏 的 人 . +You guys looked mad . 你們 那時候 看 起來 在 生氣 . +He worked last night without taking a break . 他 昨晚 都 在 工作 , 彻夜未眠 . +Did you make this doll by yourself ? 这个 娃娃 是 你 自己 做 的 吗 ? +I will be absent from home in the afternoon . 下午 我 不 在家 . +As he spoke , pictures came into my mind . 他 说 的 时候 , 我 脑 中 浮现 出 了 画面 . +Tom has admitted he was there that night . 汤姆 承认 他 那晚 是 在 那里 . +I heard the children is happy voices . 我 聽到 孩子 們 開心 的 聲音 . +It is warm today , is not it ? 今天 很 溫暖 , 不是 嗎 ? +Is this your car ? 這 是 你 的 車 嗎 ? +You did not need to bring your umbrella . 你 不必 帶 你 的 傘 . +I do not know who he is . 我 不 知道 他 是 谁 . +Prices are high . 价格 高 . +Tom slept until noon . 汤姆 睡 到 中午 . +The volcano has become active again . 這 座 火山 又 開始 活動 了 . +I am on my way . 我 这 就 上路 . +Let is begin with this problem . 从 这个 问题 开始 吧 . +Do you have anything to remove stains ? 你 有 除锈 的 东西 吗 ? +How much is this ? 這 是 多少 ? +You talk too much . 你 說 太 多 了 . +We have two dogs , three cats , and six chickens . 我们 养 了 两只 狗 、 三只 猫 和 六只 鸡 . +Wash your feet . 洗 您 的 脚 . +She extended her stay by five days . 她 多 停留 了 五天 . +I have been learning to drive . 我 一直 在 學開 車 . +Is not this weather just great ! 天氣 真是 太好了 ! +I am not as strong as I used to be . 我 不 跟 以前 一樣 強壯 了 . +What is the matter ? 怎么 了 ? +He is very straightforward . 他 说话 很 直接 . +Let is get together again ! 讓 我們 再 聚在一起 ! +Do you weigh more than Tom ? 你 有 比 湯姆 重 嗎 ? +There is nothing to be afraid of . 没什么 好怕 的 . +He can speak Russian , too . 他 也 會 說 俄語 . +Ask Tom again . 再 问 一下 汤姆 吧 . +Somebody has stolen my suitcase . 有人 偷 了 我 的 行李 . +Tom does not look like his father at all . 汤姆 和 他 的 父亲 长 得 一点 也 不 像 . +She is mad at me . 她 跟 我 生气 了 . +Valuable time has been lost . 宝貴 的 時間 已 失去 . +Thanks for the comment . 谢谢您 的 评论 . +He came . 他 来 了 . +I am bored . 我 覺 得 很 無聊 . +Would you like to eat something ? 你 想 吃 點 東西 嗎 ? +He wrote a letter yesterday . 昨天 他 写 好 了 信 . +I am waiting for him . 我 在 等 他 . +She needs our help . 她 需要 我們 的 幫忙 . +Is there anything in the box ? 盒子 裡 有 任何 東西 嗎 ? +It is dangerous to jump onto a moving train . 跳 上 一列 正在 开 的 火车 是 很 危险 的 . +I just heard something . 我 只是 听到 了 一些 消息 . +Which book is better ? 哪 一本 書 比較 好 ? +I did not know you were going to be here . 我 不 知道 你 要 來 這裡 . +The charge for a front row seat is 5 dollars . 第一排 的 座位 5 美元 . +She forgot to mail the letter . 她 忘 了 寄信 . +Today is Valentine is Day . 今天 是 情人节 +You are very brave . 您 非常 勇敢 . +I wish you success . 祝你成功 . +I am looking for a present for my mother . 我 正在 为 我 的 妈妈 寻找 礼物 . +You are old enough to know better than to act like that . 你 夠 大 了 知道 不要 那樣 做 . +We needed to learn French . 我們 需要 學法 語 . +Generally speaking , the climate of Japan is mild . 总体 上 说 , 日本 的 气候 温和 . +I like grapes , but I can not eat so many . 我 虽然 喜欢 吃 葡萄 , 但是 我 吃 不了 那么 多 . +He still remembers the day his mother found out he was smoking . 他 还 记得 他 妈妈 发现 他 正在 抽烟 的 那天 . +It will not take long to finish the job . 完成 这个 工作 不会 花太 长时间 . +Tom was wrong . 汤姆 错 了 . +He went to New York by airplane . 他 搭 飛機 到 紐約 了 . +I think I will stay . 我 認 我 會 留下 . +He came home late last night . 他 昨晚 很 晚 回家 . +It will soon be time for dinner . 不久 就要 吃 正餐 了 . +She told me that she would go to Paris in August . 她 跟 我 说 八月份 她 会 去 巴黎 . +Be fair . 公平 点 . +That white dress looks good on you . 你 穿 那件 白色 的 衣服 很 好看 . +Kobe is famous for its port . 神戶 是 著名 的 港口 . +She said that she was ill . 她 说 她 病 了 . +My job is to wash the dishes . 我 的 工作 是 洗盤子 . +He was made a fool of by his neighbors . 他 被 他 的 邻居们 愚弄 了 . +She married a rich old man . 她 嫁给 了 个 有钱 老头 . +How much time has passed ? 過 了 多 長 時間 ? +I had my teeth examined at the dentist is . 我 在 牙医 那儿 检查 了 牙齿 . +Tom lives here . 汤姆 住 在 这里 . +What time will you leave the office ? 你 几点 离开 办公室 ? +Let is take a ten @-@ minute break . 讓 我們 休息 10 分鐘 . +We have three kids . 我們 有 三個 孩子 . +I am tired of translating . 我 厭倦 了 翻譯 . +I asked twenty friends to the party . 我 請 了 二十位 朋友 參加 派 對 . +Life would be so much better if you did not care so much . 如果 你 不 计较 太 多 , 生活 会 更 容易 些 . +Can you play the piano ? 你 會彈 鋼琴 嗎 ? +Boil the water . 把 水 燒開 . +Would you please wait for a minute ? 請 你 等 一下 好 嗎 ? +I am glad someone told me . 真 高兴 有人 告诉 我 . +We have plenty of time to spare . 我們 還 剩下 很多 時間 . +I wish I could go to the party with you . 我 希望 我 能 和 你 一起 参加 派对 . +Lincoln was elected President in 1860 . 林肯 在 1860 年 當 選為 美國 總統 . +I am very tired , but I can not get to sleep . 我 很 累 , 但 我 还是 没 办法 入睡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +I have two sons . 我 有 兩個 兒子 . +Do not stand in front of me . 不要 站 在 我 前面 . +They may have missed the train . 他們 可能 錯 過 了 火車 . +Wash your face and hands . 洗 你 的 臉 和 手 . +He stuck his pencil behind his ear . 他 把 他 的 鉛筆 放在 他 的 耳朵 後 面 . +Run and hide in the mountains . 跑 到 山里 躲起来 . +You are a good driver . 你 开车 很 好 . +I am doubtful whether he will come . 我 怀疑 他 是否 会来 . +There is a fence around the house . 這棟 房子 的 周圍 有 籬笆 . +Do you want some company ? 你 想要 伙伴 吗 ? +She does nothing but complain . 她 什麼 都 不 做 只 會 抱怨 . +Everybody laughs . 每個 人 都 在 笑 . +A crowd gathered on this street . 人群 聚集 在 这条 街上 . +I have not eaten for days . 我 好多天 沒 吃 東西 了 . +When I arrived , it was raining . 當 我 到 達 時 , 天正 下著 雨 . +He arrived after I had left . 我 走 之后 他 到达 了 . +You have to give Tom more time . 你 必須 給 湯姆 更 多 時間 . +I sat by his side . 我 坐在 他 旁边 . +I wrote a letter to my mother . 我 寫 了 一封信 給 我 的 母親 . +Check , please . 請 結帳 . +He suggested that we go for a swim . 他 提议 大家 一起 去 游泳 . +We have got another problem . 我們 又 遇上 問題 了 . +You should give up smoking . 你 應該 戒菸 . +We depend on you . 我们 可 全 指望 你 了 . +This rule does not apply in all cases . 这 条 规则 不是 任何 情况 下 都 奏效 的 . +What should I bring ? 我 该 带 些 什么 ? +Something is wrong with the brakes . 剎車 出 了 問題 . +It is not difficult to speak English . 說 英語 不 難 . +I will be seeing you . 我 會 見 到 你 . +I am too busy to go . 我 太 忙 了 不能 去 . +Were you a soldier ? 你 是 士兵 嗎 ? +Tom heard a shout . 汤姆 听到 了 一声 喊叫 . +The police officers arrested the burglar . 警察 拘捕 了 這個 竊 賊 . +We hope Tom is OK . 我們 希望 湯姆 沒事 . +He looks older than my brother . 他 看 起來 年紀 比 我 的 兄弟 大 . +You may as well tell me all about it . 你 不妨 告訴 我 一切 . +One more bottle of wine , please . 麻煩 再來 一瓶 葡萄酒 . +I know that Tom is hungry . 我 知道 湯姆 餓 了 . +I am still the boss here . 我 仍 是 这里 的 老板 . +Who is this boy ? 这个 男孩 是 谁 ? +It is nothing to worry about . 沒 什麼 好 擔心 的 . +Please drive carefully . 請 小心 駕駛 . +In case of fire , call 119 . 遇到 火灾 打 119. +Tom likes sitting on the floor . 汤姆 喜欢 坐在 地上 . +Our train leaves at eight @-@ thirty . 我們 的 火車 在 八點半 出發 . +It is actually not that difficult . 實際上 沒有 那麼 難 . +Tom laid the newspaper on the table . 汤姆 把 报纸 放在 桌上 . +He is poor . 他 很穷 . +He is not a teacher but a doctor . 他 不是 老師 , 而是 醫生 . +Do you know what I am doing ? 你 知道 我 在 做 什麼 嗎 ? +I had a happy childhood . 我 的 童年 很 快乐 . +Tom wants to know more about Mary is past . 汤姆 想要 知道 更 多 关于 玛丽 的 过去 . +Wonderful ! 很棒 ! +Why did not you call me yesterday evening ? 怎么 你 昨晚 没有 给 我 打电话 ? +What exactly happened there ? 那裡 究竟 發生 了 什麼 事 ? +I am constantly forgetting names . 我 經常 忘記 別人 的 名字 . +He is up to his ears in debt . 他 浑身 是 债 . +Thousands of people wanted to know the answer . 成千上万 的 人 想要 知道 答案 . +I am in a desperate situation . 我 处在 绝境 . +I got a new pair of shoes . 我 得到 了 一雙 新鞋 . +I was about to leave when the doorbell rang . 门铃 响 的 时候 , 我 正 准备 出门 . +It is not that simple . 它 沒有 那麼 簡單 . +At the age of six , I was taken to a circus for the first time . 在 我 六岁 的 时候 , 我 第一次 被 带去 看 马戏 . +Do you speak Chinese ? 你 會 說 中文 嗎 ? +It is totally dark outside . 外面 一片 漆黑 . +Does she know your phone number ? 她 知道 你 的 電話 號碼 ? +Everyone wants to meet you . You are famous ! 大家 都 想 见到 你 , 你 太 有名 了 ! +I will be at home in the morning . 我 早上 會 在家 . +He belongs to the camera club . 他 參加 攝影 社 . +A dog will bark at strangers . 狗会 对 陌生人 叫 . +He earned his living as a teacher . 他 以 教書 為 生 . +The serpent tempted Eve . 蛇 誘惑 了 夏娃 . +My plane leaves at six o 'clock . 我 搭 的 飛機 在 六點鐘 起飛 . +I will get the work done in a week . 我会 一周 内 完成 这个 工作 的 . +Would 9 o 'clock be all right ? 9 點 可以 嗎 ? +Tom wanted Mary to say that she loved him . 汤姆 想 让 玛丽 说 爱 他 . +These are pens . 這些 是 筆 . +To make matters worse , it began snowing . 更 糟糕 的 是 開始 下雪 了 . +I usually have a light breakfast . 我 早餐 通常 吃 得 很 清淡 . +I do not want the present Tom gave me . 我 不 想要 汤姆 给 我 的 礼物 . +Do not let Tom lie on the floor . 别 让 汤姆 躺 在 地板 上 . +" How did you get my phone number ? " " Tom gave it to me . " “ 你 怎么 知道 我 的 电话号码 的 ? ” “ 汤姆 告诉 我 的 . ” +Tom thinks there is hope . 汤姆 认为 有 希望 . +Tom would never have let us go if Mary had not gone with us . 如果 玛丽 不 跟着 我们 , 汤姆 不会 让 我们 走 . +A glass of wine , please . 一杯 葡萄酒 , 謝謝 . +" Thanks , guys . " " Do not mention it . " “ 谢谢你们 . ” “ 不用谢 . ” +She seems rich . 她 看來 有 錢 . +I have heard you have been sick . 我 听说 你 病 了 . +Problems that can be solved with money are not real problems . 錢 可以 解決 的 問題 都 不是 問題 . +Are you aware of how much she loves you ? 你 知道 她 有 多麼 愛 你 嗎 ? +Will you sell your car to me ? 你 可以 把 你 的 車 賣 給 我 嗎 ? +I forgot the date of the meeting . 我 忘 了 會議 的 日期 . +Have you answered that letter yet ? 你 回信 了 嗎 ? +He drives a car , does not he ? 他 開車 , 不是 嗎 ? +Tom laughed for no reason . 湯姆 無 故地 笑 . +Tom taught me French . 汤姆 教 了 我 法语 . +Another bottle of wine , please . 麻煩 再 一瓶 葡萄酒 . +I have been reading this for a few hours . 我 一直 讀 這個 讀 了 幾個 小 時 . +I have never underestimated Tom . 我 从没 低估 汤姆 . +He has a good knowledge of French . 她 很 懂法 語 . +I belong to the sailing club . 我 參加 帆船 社 . +He is a bad driver . 他 是 個 糟糕 的 司機 . +Please ask at the information desk . 請 向 服務台 詢問 . +I want to stay here longer . 我 想 在 这里 再 待 一会 . +Tom does not believe he could do that . 湯姆 不 相信 他 能 做到 . +This movie is worth seeing again . 這部 電影 值得 再 看一遍 . +I am afraid of death . 我 怕死 . +I like going to watch baseball . 我 喜歡 去 看 棒球 . +Tom is living with his uncle now . 湯姆 現在 跟 他 叔叔 住在一起 . +Tom has no intention of asking Mary to the upcoming dance . Tom 没有 意图 去 邀请 Mary 去 即将来临 的 舞会 . +You are joking ! 你 在 開 玩笑 吧 ! +I live in a big city . 我 住 在 一个 大城市 里 . +My eyesight is getting worse . 我 的 视力 正 慢慢 下降 . +No intelligent person drinks and then drives . 沒有 聰 明人 喝了酒 再 開車 . +My father has never been abroad . 我 父親 從來 沒有 出過 國 . +Here is your change . 這 是 你 零 錢 . +I do not know what I am doing . 我 不 知道 我 在 做 甚麼 . +Did you write ? 你 写 吗 ? +I ran as fast as possible to catch up with him . 我 盡力 追趕 他 . +She asked him questions . 她 問 了 他 問題 . +I guess that would be all right . 我 猜 那 應該 可以 的 . +We grow vegetables in our garden . 我們 在 我們 的 花園 裡 種 蔬菜 . +We are going to eat a lot tonight so I hope you are not on a diet . 我们 今晚 会 吃 很多 , 所以 我 希望 你 没有 在 节食 . +I told the policeman what I knew . 我 告訴 了 警察 我 所 知道 的 . +He always keeps his word . 他 总是 遵守 诺言 . +We are a family of five . 我家 有 5 口人 . +He took me to the park yesterday . 昨天 他 帶 我 去 公園 . +Have you seen all these movies ? 你 把 電影 全 看 了 嗎 ? +Listen . 听 着 . +I built an amplifier yesterday . 昨天 我 組裝 了 一個 揚 聲器 . +It is a good start . 这 是 一个 好 的 开端 . +I wish I did not have to work . 我 希望 我 不必 工作 . +Make another appointment at the front desk . 在 服務 台 另外 預約 . +I 'd be grateful to you if you could teach me to do that . 如果 你 能 教 我 怎麼 做 , 我 會 很 感激 . +I will tell Tom tomorrow . 我 明天 告訴 湯姆 . +I believe that he will do fine . 我 相信 他 會 做 得 很 好 . +If you need anything , let me know . 如果 你 需要 任何 東西 , 讓 我 知道 . +Are they all the same ? 他们 都 是 一样 的 吗 ? +Please leave . 請 你 離開 . +I will ask him tomorrow . 我 明天 會 問 他 . +An eye for an eye , a tooth for a tooth . 以眼还眼 以牙还牙 +These containers are airtight . 這些 容器 是 密封 的 . +We ordered Chinese food . 我们 点 了 中餐 . +It is imperative for you to act at once . 你 必须 马上 行动 . +One is Japanese and the other is Italian . 一个 是 日本 人 , 另 一个 是 意大利人 . +She is making progress with her English . 她 的 英語 正在 進步 中 . +I think someone is knocking on the door . 我 想 有人 在 敲门 . +I thought he loved you , but as it is , he loved another girl . 我 以為 他 愛 你 , 但 事實上 , 他 愛 另 一個 女孩 . +The archer killed the deer . 射手 打死 了 鹿 . +Do you eat out often ? 你 常常 外食 嗎 ? +How long is your spring vacation ? 你 春假 放 多久 ? +It does not sound like Tom . 聽 起來 不 像 湯姆 . +Let me see that . 讓 我 看看 . +I did not pay attention to what they were saying . 他们 说 了 什么 , 我 并 不 注意 . +It is nearly six . 差不多 六点 了 . +You can have a ride on my motorcycle . 你 可以 骑 上 我 的 摩托车 去 遛 一圈 . +Do you have a mobile phone ? 你 有 手機 嗎 ? +I think my French is not very good . 我 认为 我 的 法语 不太好 . +Have a nice trip ! 旅途愉快 ! +Let is eat now . I am starving . 咱们 吃 吧 ! 我 饿死 了 . +She was tired , but she kept working . 她 累 了 , 但 她 繼續 工作 . +We do not expect Tom to live much longer . 我们 不 指望 汤姆 能 活 得 更 久 . +Can I help you ? 我 能 幫 你 嗎 ? +I am not your mother . 我 不是 你們 的 媽媽 . +You should have stayed in the car . 你 該 留在 車裡 . +You have to be proactive . 你 必须 积极主动 . +Tom will be there for a few days . 汤姆 会 在 几天 后后 到达 那里 . +The room is fully furnished . 房間 裡 家具 齊 全 . +This is your only chance . 這 是 你 唯一 的 機會 . +This clock is mine . 這 個 錶 是 我 的 . +He is a fast walker . 他 走路 很快 . +We were astonished to hear what had happened . 我们 听到 所 发生 的 事 , 感到 很 惊讶 . +He turned over the matter in his mind . 他 在 心里 反复 思量 这件 事 . +Have you already rung the doorbell ? 你 已經 按門鈴 了 嗎 ? +Have you ever been to America ? 你 去過 美國 嗎 ? +I have never read such a scary novel . 我 从没 读 过 那么 恐怖 的 小说 . +Tom is afraid of heights . 汤姆 恐高 . +I no longer love him . 我 已经 不 爱 他 了 . +Which cap is yours ? 哪 顶 帽子 是 你 的 ? +I have almost no money with me . 我 身上 幾乎 沒有 錢 . +I want some orange juice . 我 想要 一點 柳橙汁 . +Tom did not agree to do it . 汤姆 不 同意 做 . +Tom told me that he 'd be right back . 汤姆 告诉 我 他 会 马上 回来 . +They were both drunk . 他們 兩個 都 喝醉 了 . +It is too big . 它 太 大 了 . +I have already finished the job . 我 已經 完成 了 這項 工作 . +I will call you back . 我会 给 你 回 电话 的 . +One of your tires is flat . 你 的 轮胎 爆 了 一个 . +This desk takes up too much room . 這 張 桌子 太 佔 空間 了 . +I will be back in ten minutes . 我 10 分钟 后 回来 . +I am eating rice . 我 在 吃 米饭 . +He is armed to the teeth . 他 武装 到 牙 齒 . +We have never had this problem before . 我們 從 前 從 沒有 過 這個 問題 . +He is rather hard to please . 取悅 他 很 難 . +I slipped and fell down the stairs . 我 滑了一跤 並 從 樓梯 上 摔 下來 . +I heard the front doorbell ring . 我 聽到 前門 的 門鈴 響 了 . +You may not remember me , but I remember you . 你 可能 不 記得 我 了 , 但 我 記得 你 . +This is a matter of the utmost importance . 这件 事 至关重要 . +They have no idea what is going on . 他們 不 知道 正在 發生 甚麼 . +Tom is not doing what he is supposed to be doing . 湯姆 沒 有 做 他 該 做 的 事 . +I hate you . 我 恨 你 . +She has not phoned since she went to London . 自 她 去 了 倫敦 後 , 就 沒 再 打電話 了 . +Let is go by bus . 讓 我們 坐 公共 汽車 去 . +That boy is running . 这个 男孩子 在 跑步 . +I have decided to shave my head . 我 已经 决定 把 我 的 头发 剃 了 . +Please tell the truth . 请 把 真实 的 情况 说 出来 . +I know the facts . 我 知道 事实 . +Tom is standing in the garden . 汤姆 在 花园里 站 着 . +Mistakes like these are easily overlooked . 这种 错误 很 容易 被 人 忽视 . +They are very big apples . 他們 是 非常 大 的 蘋果 . +Please close the door behind you . 請 隨手 關門 . +They were not listening to music . 他們 沒 在 聽 音樂 . +Do you know how to drive a car ? 你 知道 如何 開車 嗎 ? +You should not have lent the money to such a person . 你 不 應 該 借 錢 給 這樣 的 人 . +I overslept . 我 睡 過頭 了 . +They are having breakfast now . 他們 現在 正在 吃 早 飯 . +Tom did the best he could , but he was not able to get a higher grade than Mary . 汤姆 尽 了 全力 , 但 他 还是 不能 获得 比 玛丽 更 高 的 等级 . +Do you know Tom well ? 你 很 了解 汤姆 吗 ? +I went to the park last Saturday . 上個 星期六 我 去 了 公園 . +The train for Birmingham leaves from platform 3 . 去 伯明翰 的 火车 从 3 号 站台 出发 . +Actions speak louder than words . 行動 比 語言 更 響亮 . +Which shoes are you going to put on ? 你 将 穿 哪 双鞋 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +I go to school . 我 去 学校 . +The moment I held the baby in my arms , it began to cry . 我 一把 孩子 抱 在 手里 , 他 就 开始 哭 了 . +Compare your answers with the teacher is . 把 你 的 答案 和 老师 的 比较 一下 . +They got married and settled near Boston . 他們 結 了 婚 並 定居 在 波士 頓 附近 . +May I have a glass of milk , please ? 请问 能 给 我 一杯 牛奶 吗 ? +Do you have any day tours ? 你 有 任何 一日 遊 的 行程 嗎 ? +I work with her boyfriend . 我 和 她 的 男朋友 在 一起 上班 . +How much money did you spend in Boston ? 你 在 波士顿 花 了 多少 钱 ? +She takes private piano lessons . 她 上 私人 鋼琴 課 . +I took a cab to the station . 我 搭 了 計程 車 到 車站 . +We may be late for school . 我們 上學 可能 會 遲 到 . +I will do whatever you want me to do . 无论 你 要 我 做 什么 , 我 都 会 去 做 的 . +Were you playing tennis yesterday morning ? 你 昨天上午 打网球 了 吗 ? +It is illegal to park your car here . 把 車 停 在 這裡 是 違法 的 . +Tom knew what Mary intended to do . 湯姆 知道 瑪麗 想 做 甚麼 . +I can teach you how to swim . 我 能 教 你 怎样 游泳 . +I agree with your opinion about taxes . 我 同意 你 對 於 稅 的 意見 . +I received your letter . 我 收到 了 您 的 信 . +He is hard to deal with . 他 很 難對 付 . +We have little chance of winning . 我們 獲勝 的 機會 很少 . +I can not wait forever . 我 不能 永远 地 等 . +Can you ride a horse ? 您 会 骑马 吗 ? +Orange juice , please . 柳橙汁 , 麻煩 你 . +Did you actually see the accident ? 你 真的 看到 了 這 起 事故 嗎 ? +December has thirty @-@ one days . 十二月 有 三十 一天 . +He plays baseball every day . 他 每天 都 打 垒球 . +She especially likes music . 她 特別 喜愛 音樂 . +The moon is shining . 月光 在 照耀 著 . +You can come in . 你 可以 進來 . +Tom does not remember where he put his keys . 汤姆 不 记得 他 把 钥匙 放在 哪里 了 . +She told us the road was closed . 她 告訴 我們 道路 被 封閉 了 . +" Have you seen my cell phone ? " " It is on the table . " " 你 有 看到 我 的 手機 嗎 ? " " 它 在 桌子 上 . " +That is a stupid question . 这 是 一个 愚蠢 的 问题 . +World War II lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +What am I to do now ? 怎么办 ? +I am a liar . 我 是 个 骗子 . +Tom died in his kitchen . 汤姆 是 在 自家 厨房 里 死 的 . +More than 40 percent of students go on to university . 40 % 以上 的 学生 去 读 大学 . +He can read well enough . 他 能 讀 得 很 好 . +What subjects are you taking at school ? 你 在 學校 裡 讀 哪些 科目 ? +All of a sudden , it began raining . 突然 開始 下雨 . +Sit beside me . 坐 我 旁边 . +How unfortunate ! 可憐 ! +The man robbed her bag . 這 名 男子 搶走 了 她 的 包包 . +He differs from his brother . 他 和 他 兄弟 不 一样 . +Sales should double this year . 今年 销售 会 翻番 . +It was fun playing in the park . 在 公園 裡 玩 很 有趣 . +My car broke down this morning and will not be repaired until Friday . 我 的 车 今天 早上 坏 了 , 星期五 才能 修好 . +My wife is part @-@ time job brings in a little extra money . 我 太太 兼職 的 工作 賺進 了 一些 額 外 的 錢 . +You gain more than you spend when you go to college . 上大學 的 時候 , 你 得到 的 比 付出 的 還 多 . +I must have caught a cold . 我 肯定 着凉 了 . +I can do it without her help . 沒有 她 的 幫忙 我 也 能 做 . +Tom and I are not friends . We are just coworkers . 湯姆 跟 我 不是 朋友 , 我們 只是 同事 . +A bird is singing in the tree . 一 隻 鳥 正在 樹上 唱歌 . +Be careful not to catch a cold . 小心 不要 感冒 了 . +His father eats there twice a week . 他 爸爸 一週 在 那裡 吃 兩次 . +A great number of citizens went into the army . 許多 老百姓 加入 了 軍隊 . +Whichever route you take , you will get there in time . 不管 你 选 哪条 路 , 你 都 能 按时 到 那里 . +Tom has something else to say . 湯姆 還 有 想 說 的 事 . +You may take anything you like . 你 可以 拿 你 喜歡 的 東西 . +They will get married next month . 他們 將 在 下 個 月 結婚 . +Do not let that happen again ! 不要 再 让 这种 事 发生 了 ! +Tom did not have to thank me . 汤姆 不必 谢 我 . +I went fishing last Monday . 上 个 周一 我 去 钓鱼 了 . +The party has been put off until next Tuesday . 聚会 已经 推迟 到 了 下 周二 . +Could you lend me your bicycle for a couple of days ? 你 能 把 你 的 自行车 借 我 两天 吗 ? +I do not think Tom understands that . 我 不 認為 湯姆 明白 . +I laughed at his joke . 他 的 笑話 讓 我 大笑 了 . +Tom does not pay attention in school . 汤姆 在 学校 里 不 专心 . +Tom did not have dinner last night . 湯姆 昨晚 沒 吃 晚餐 . +I worked hard last month . 我 上個月 很 努力 工作 . +Where will you go for the vacation ? 你 要 去 哪裡 度假 ? +I guess I waited too long . 我 好像 等 太久 了 +You are the best man for the job . 你 是 最 適合 做 這份 工作 的 人 . +Tom is uncle keeps a lot of sheep . 湯姆 的 叔叔 養 了 很多 羊 . +This book is really interesting . 這 本書 真的 很 有趣 . +That film is for children . 那部 電影 是 給 小孩 看 的 . +The rumor turned out to be true . 這個 傳聞 後 來 被 證明 是 真的 了 . +Shut the door , please . 請 關門 . +There was a cottage on the side of the hill . 山坡 上 有 一间 村屋 . +What do you intend to do ? 你 想 做 什麼 ? +He hung a lamp from the ceiling . 他 把 一盏灯 挂在 了 天花板 上 . +I am closing the door . 我 在 關門 . +I do not have much money on me . 我 身上 沒有 很多 錢 . +I want a cellular phone , but I do not have enough money to pay for one . 我 想要 一支 手機 , 但是 我 沒有 足夠 的 錢 買 一支 . +I have never met him . 我 從來 沒有 見 過 他 . +We must make a new start . 我們 必須 重新 開始 . +There is not any milk in the glass . 這個 玻璃杯 裡 沒有 任何 的 牛奶 . +Why would they need to do that ? 为什么 他们 会 需要 那么 做 呢 ? +This is a defibrillator . 这 是 一个 除颤 器 . +I am not very particular about food . 我 對 食物 不是 很 講究 . +He loves traveling . 他 愛 旅行 . +As more paper money came into use , the value fell . 当更 多 的 纸币 投入使用 , 价格 就 下跌 了 . +I left it on the table . 我 把 它 留在 桌上 了 . +Is there a cat on the table ? 桌子 上有 只 猫 吗 ? +There was not a cloud in the sky . 天上 没有 一片 云 . +She was busy with her knitting . 她 忙 着 编织 . +Did you find your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Advertisements urge us to buy luxuries . 廣告 慫恿 我們 買 奢侈品 . +He got hurt when he fell down . 他 跌倒 的 時候 受 了 傷 . +Cheese is made from milk . 奶酪 是 用 奶 做成 的 . +She was sick in bed yesterday . 她 昨天 臥病 在 床 . +Tom is lucky he did not get shot . 湯姆 沒 被 射中 真 走 運 . +May I see your claim tags ? 我 可以 看看 你 的 行李 條 嗎 ? +How do you write your last name ? 你 的 姓氏 怎么 写 ? +We must go to school . 我们 必须 去 学校 了 . +They say that love is blind . 人们 说 爱情 是 盲目 的 . +She made out the application for admission . 她 提出 了入 學 申請 . +I am a little tired . 我 有 點累 . +Mary does not usually wear jewelry . 玛丽 通常 不 戴 首饰 . +We took a wrong turn . 我們 拐 錯 彎 了 . +I could hear her sobbing in her bedroom . 我 能 聽見 她 在 她 的 臥室 裡 抽泣 . +Tom is taller than his mother . 湯姆 比 他 的 母親 高 . +Let us go home . 让 我们 回家吧 . +The girl wore a yellow ribbon in her hair . 那 女孩 的 头发 上绑 了 一根 黄 丝带 . +I can not believe my eyes . 我 无法 相信 自己 的 眼睛 . +Do you think we should send for the doctor ? 你 認為 我們 應 該 派 人 去 請 醫生 來 嗎 ? +I stopped smoking for the sake of my health . 為了 健康 , 我 不再 抽 菸 . +He is a reporter for Time magazine . 他 是 时代 杂志 的 记者 . +I did not want this . 我 不 想要 這個 . +Ask at the police box over there . 問 那邊 的 警察 崗 哨 . +How about you ? 你們 呢 ? +What did you come here to do ? 您 来 这儿 干嘛 ? +Tom needs to study more if he hopes to pass this class . 汤姆 如果 想 通过 这 门 课 , 就 需要 加劲 学习 . +Who is playing the piano ? 谁 在 弹钢琴 ? +There are more important things in life . 人生 里 有 更 重要 的 事情 . +Suddenly , everything fell silent . 突然 间 , 鸦雀无声 . +The traffic accident deprived him of his sight . 這場 交通 意外 讓 他 失明 了 . +This chair is made of plastic . 這 把 椅子 是 用 塑 膠 製 成 的 . +I want to clean the house before my parents come . 我 想 在 我 父母 来 之前 收拾 干净 屋子 . +The horse is a useful animal . 马 是 种 很 有用 的 动物 . +Picasso is paintings seem strange to me . 畢加索 的 畫 對 我 來說 似乎 很 奇怪 . +My uncle gave me a book . 我 的 叔叔 給 了 我 一本 書 . +What are you doing that for ? 你 正在 做 的 那個 東西 是 做 什麼 用 的 ? +She decided to resign . 她 決定 辭職 了 . +His behavior never ceases to surprise me . 他 的 所作所为 总是 让 我 惊讶 . +The job offer still stands . 這份 工作 錄取 仍然 有效 . +The pressure was tremendous . 壓力 很 巨大 . +The two sides hold talks this week . 双方 本周 举行会谈 . +Do I have to bring my son to your office ? 我 必須 帶 我 的 兒子 到 你 的 辦 公室 嗎 ? +I do not think she takes after her mother . 我 不 觉得 她 像 她 妈妈 . +I can not do anything but obey him . 我 除了 聽 從 他 之外 什麼 也 不能 做 . +I saw him sawing a tree . 我 看见 他 正在 锯 一棵树 . +What season do you like the best ? 您 最 喜欢 哪个 季节 ? +One of us has to go . 我们 中 的 一个 得 走 . +Which is your book ? 哪 本 是 你們 的 書 ? +He is a professor of biology at Harvard . 他 是 哈佛大学 的 生物学 教授 . +How I have missed you ! 我 多麼 想念 你 ! +I am able to drive a car . 我 會 開車 . +Our friendship was put to the test . 我们 的 友谊 受到 了 考验 . +He lost his eyesight in an accident . 他 在 一次 意外 中 失去 了 他 的 視力 . +Who is in charge of the sales section ? 谁 负责 销售 部门 ? +He likes listening to the radio . 他 喜歡 聽 廣播 . +Tom got out of the jeep . 汤姆 从 吉普车 上 下来 了 . +His voice is pleasant to listen to . 他 的 声音 听 着 很 舒服 . +They have decided to get married next month . 他們 已經 決 定下 個 月 結婚 . +I read an exciting story . 我 讀 了 一篇 精彩 的 故事 . +Chinese is a tonal language . 漢語 是 一個 聲調 語言 . +We take health for granted until illness intervenes . 我們 視 健康 為 理所 當然 , 直到 疾病 侵襲 . +You can keep this one for yourself . 你 可以 把 這個 保留 給 自己 . +Wherever you go , I will follow . 無論 你 到 哪裡 , 我 都 會 跟著 你 . +She was in a hurry . 她 在 趕 時間 . +The birds sang . 鳥兒 歌唱 . +Do you know how to eat with chopsticks ? 你 會 用 筷子 吃 飯 嗎 ? +I do not know where my watch is . 我 不 知道 我 的 手 錶 在 哪 裡 . +You have a really good sense of direction . 你 的 方向感 很 好 . +When and where is breakfast served ? 早饭 在 何时何地 用 ? +I have finished my homework . 我 已經 完成 我 的 作業 . +I will say something about it . 我 會 談 談 它 . +We had a large audience . 我们 有 很多 听众 . +He has no interest in politics . 他 對 政治 沒有 興趣 . +Keep to the right . 靠 右侧 通行 . +Do not go out after dark . 天黑 以 後 不要 出門 . +They are trying to control you . 他們 設法 控制 你 . +English is a Germanic language . 英語 是 一種 日耳曼 語 . +Tom had no intention of giving Mary any money . 汤姆 不想 给 玛丽 一分钱 . +He lives just around the corner . 他 就 住 在 拐角 的 地方 . +She might know that we are here . 她 或许 知道 我们 在 这儿 . +You broke the rule . 你 坏 了 规矩 . +Do you know me ? 你 認識 我 嗎 ? +Tom does not eat red meat . 湯姆 不吃 紅肉 +If you had left home a little earlier you would have been in time . 如果 你 早点 出门 的话 , 你 就 能 赶上 了 . +She was obliged to give up the plan . 她 不得不 放弃 这个 计划 . +His name was on the tip of my tongue , but I could not remember it . 我 都 快要 说出 他 的 名字 了 , 可 就是 记不起来 . +Have you already voted ? 您 已經 投 了 票 了 嗎 ? +It is your turn . 輪到 你 了 . +That is a pencil . 那 是 一支 铅笔 . +I talked to Tom . 我 和 汤姆 说 了 话 . +That is because you are a girl . 那 是 因為 妳是 女生 . +Did Tom respond ? 汤姆 有 回应 了 吗 ? +Tom had no idea Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +Do not put it on my desk . 不要 把 它 放在 我 的 桌子 上 . +May I pay with a credit card ? 我 能 用 信用卡 支付 吗 ? +I have always kept my word . 我 一直 遵守 我 的 諾言 . +The admission is ten dollars a person . 入 會 費 一個 人 十美元 . +I am afraid of dogs . 我 怕 狗 . +I want to become rich . 我 想 變有 錢 . +I will give you a bike for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +Her older daughter is married . 她 的 大 女兒 結婚 了 . +There was not a tree in sight . 看不到 任何 一棵 樹 . +I lost my camera the other day . 那天 我 丢 了 我 的 照相机 . +Salt helps to preserve food from decay . 鹽 可以 幫助 保存 食物 避免 腐爛 . +The university was founded by his father twenty years ago . 大学 在 20 年前 由 他 的 父亲 建立 . +I know how to set a trap . 我 知道 怎么 设 陷阱 . +We are both reasonable people . 我们 是 两个 通情达理 的 人 . +He often stays up late at night . 他 經常 在 晚上 熬夜 . +I could not hear you . 我 听不见 你 . +We can not know what the future has in store . 人 不 知道 未來 可能 發生 什麼 事 . +I lost my luggage . 我 的 行李 丢 了 . +I do not know whether to accept or to refuse . 我 不 知道 是否 該 同意 或 拒絕 . +He tiptoed so no one heard him . 他 踮 著 腳 尖 走 , 所以 沒 有人 聽到 他 . +She is determined to become a secretary . 她 下决心 要 成为 秘书 . +I am very interested in French . 我 對 法語 很感 興趣 . +I do not do it anymore . 我 已经 不再 做 这个 了 . +I do not quite understand what he says . 我 不 太 明白 他 说 什么 . +You should not break promises . 你 不该 违背 你 的 诺言 . +Hardly anyone thinks that we are sisters . 几乎 没有 人 认为 我们 是 姐妹 . +English is studied in China , too . 英語 在 中國 也 被 學習 了 . +Sooner or later his luck will run out . 遲早 他 的 運氣 會用 完 . +Tom is older than I am . 湯姆 年紀 比 我 大 . +There was complete silence . 一片 寂静无声 . +She kept the secret to herself . 她 守著 這個 秘密 . +None of your business . 这 不是 你 的 事 . +My room looks out on the street . 從 我 的 房間 望出去 是 街道 . +My father always speaks in a very loud voice . 我 父親 總是 說 話 很大 聲 . +Were you at school at that time ? 那時 你 在 學校 嗎 ? +He will be very busy next month . 下个月 他 会 很忙 . +Tom was afraid to ask for help . 汤姆 不敢 求助 . +We want to go home . 我們 想 回家 . +Tom gave Mary the cold shoulder . 汤姆 给 玛丽 冷 的 肩膀 . +What are you watching ? 你 在 看 什么 ? +Tom sat on that park bench for nearly three hours . 汤姆 在 公园 的 长椅 上 坐 了 将近 三个 小时 . +Why did she come home early ? 為 什麼 她 早 回家 了 ? +This song was written by Foster . 這 首歌曲 是 由 福斯特 所寫 的 . +A wounded whale washed up on the beach . 一条 受伤 的 鲸鱼 在 海滩 边 搁浅 了 . +Smiles do not always indicate pleasure . 微笑 並 不 一定 表示 高興 . +I work best under pressure . 我 在 壓力 之下 工作 表現 最好 . +Tom failed to persuade Mary . 汤姆 没 能 说服 玛丽 . +Fill it with regular , please . 請 定期 填寫 . +You should not eat too much candy . 你 不 應 該 吃 太 多 糖果 . +You do not believe Tom , do you ? 你 不 信任 汤姆 , 对 吗 ? +You look tired . 你 看 起來 很 疲倦 . +This is my friend . 這 是 我 的 朋友 . +Why do you need my help ? 你 為 甚麼 需要 我 幫助 ? +The price of eggs is going up . 蛋 的 價格 正在 上漲 . +I feel comfortable . 我 感觉 很 舒服 . +Were you expecting to win ? 你 打算 赢 吗 ? +The bus leaves in five minutes . 公車 將 在 五分 鐘 後 開動 . +How do you get your children to eat vegetables ? 你 怎样 让 你 的 孩子 们 吃 蔬菜 ? +Why did you try to run away ? 为什么 你 企图 逃走 ? +It looks like Tom won the race . 看 起來 像是 湯姆 贏 得 了 比賽 . +He pressed the button and waited . 他 按 下 按 鈕然 後 等待 著 . +That river is dangerous . 那 條 河 是 危險 的 . +I need to take a shower . 我 需要 洗 个 澡 . +I have not been getting enough sleep lately . 我 最近 一直 睡眠不足 . +Without the slightest hesitation , he sold his own car . 他 毫不犹豫 地 把 自己 的 车 卖 了 . +We were talking about something at that time , but I do not remember what . 我们 那时 在 谈论 事情 , 但 我 不 记得 是 什么 了 . +I was surprised at his strong resemblance to his father . 他 像 极了 他 父亲 , 这 让 我 震惊 . +I really like this story . 我 真 喜歡 這 故事 . +She squeezed the juice from many oranges . 她 榨 了 許多 柳橙汁 . +Tom has a girlfriend in Boston . Tom 有個 在 波士 頓 的 女友 . +Where did you meet Tom ? 你 是 在 哪里 认识 汤姆 的 ? +I avoid discussing personal subjects with my boss . 我 避免 跟 老板 讨论 个人 话题 . +I will make you happy . 我会 让 你 幸福 的 . +What made you so angry ? 什麼 讓 你 這麼 生氣 ? +You should read many books when you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +Keep Tom safe . 确保 汤姆 安全 . +I 'd like a window seat , please . 請 給 我 靠 窗口 的 位子 . +I still have not found work . 我 還 沒有 找到 工作 . +Someone has taken my shoes by mistake . 有人 穿错 了 我 的 鞋 . +Tom is being held captive . 汤姆 被 囚禁 了 . +She disliked him . 她 不 喜歡 他 . +He likes to cook for his family . 他 喜歡 為 家人 做飯 . +I 'd rather do it by myself . 我 更 願意 自己 做 . +I do not like the taste of tomatoes . 我 不 喜歡 蕃茄 的 味道 . +They made up and became friends again . 他們 和解 了 , 並 再次 成為 了 朋友 . +You did what was necessary . 你 做 了 必要 的 事 . +I was already tired . 我 已经 累 了 . +They are melons . 它们 是 瓜 . +Tom has no friends to play with . 湯姆 沒有 朋友 可以 一起 玩耍 . +Watch him and do the same thing . 看著 他 並且 跟 他 做 同樣 的 事情 . +They came up with a plan after a long discussion . 他们 终于 在 漫长 的 讨论 之后 得出 了 一个 计划 . +I do not understand why pepperoni pizza is so popular . 我 不 懂 為何 義式 辣腸 披 薩 如此 受歡 迎 . +Have you been to London before ? 你 以前 去過 倫敦 嗎 ? +Say it clearly . 說 清楚 . +I knew he would accept . 我 知道 他 会 接受 的 . +Stop gambling . 戒掉 赌博 吧 . +I have a friend whose father is a teacher . 我 有 一個 朋友 , 他 的 父親 是 老師 . +I got up early . 我 起床 早 . +Anything new ? 有 什么 新鲜事 吗 ? +He goes to Karuizawa every year . 他 每年 都 去 輕 井澤 . +Why were you late ? 你 为什么 迟到 ? +Tom was not thirsty . 汤姆 不渴 . +He refused my friend request . 他 拒绝 了 我 加 好友 的 请求 . +He made me a suit . 他 给 我 做 了 套 衣服 . +You should have stayed in the car . 你 該 留在 車裡 . +Whenever I hear that song , I remember my youth . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +Tom made up his mind to become a newspaperman . 汤姆 决定 做 报业 人士 . +He is no ordinary student . 他 不是 个 普通 的 学生 . +Almost everyone came . 几乎 每个 人 都 来 了 . +Look , it is my problem . 看 , 这 是 我 的 问题 . +I received a letter written in English yesterday . 昨天 , 我 收到 一封 用 英语 写 的 信 . +You did not need to take a taxi . 你 不必 搭計 程車 . +He is so heartless . 他 是 这么 的 无情 . +Please stay as long as you wish . 你 想待 多久 就 待 多久 . +There is no clock in my room . 我 的 房间 里 没有 时钟 . +Have we made progress ? 我們 取得 進步 了 嗎 ? +He took me for an Englishman . 他 误认为 我 是 一个 英国人 . +Do not tell me you did not know . 别跟我 说 你 不 知道 . +That is very handy . 这 很 方便 . +You have put on weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +The bill was passed after a hard fight in the House . 該 法案 在 眾議 院爭議 後 獲得 通過 . +There is no need for you to study . 你 沒有 讀書 的 必要 . +He plays tennis very well . 他 打网球 打 得 很 好 . +Tom has lost weight recently . 湯姆 最近 變 瘦 了 . +Let is play tennis in the afternoon . 今天下午 讓 我們 打 網球 吧 . +Everybody did that . 每个 人 都 做 了 那事 . +Tom listened carefully . 湯姆 仔細 聽 . +It is time to leave . 是 时候 离开 了 . +I found her letter in the mailbox . 我 在 信箱 中 發現 了 她 的 信 . +Switzerland is situated between France , Italy , Austria and Germany . 瑞士 位于 法国 、 意大利 、 奥地利 和 德国 之间 . +First off , I 'd like you to come with me to a department store sale . 首先 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +I 'd rather stay than go . 我 寧願 待 在 這裡 而 不 去 . +They made their way across the river . 他們 渡河 前 進 . +Have you ever traveled by plane ? 你 曾經 坐 飛機 旅行 過 嗎 ? +A ring and some cash are missing . 少 了 一个 戒指 和 一点 现金 . +They are jealous of our success . 他们 嫉妒 我们 的 成功 . +Did you buy her something for Christmas ? 你 聖誕節 買 東西 給 她 了 嗎 ? +Let is eat sushi . 讓 我們 吃 壽司 吧 . +The meeting ended earlier than usual . 會議 比 往常 早 結束 . +Something must be done ! 必須 採取 一些 行動 了 ! +He gave the same answer as before . 他 給 了 跟 以前 一樣 的 回答 . +Spring will come soon . 春天 就要 来 了 . +Children really like playing on the beach . 孩子 们 非常 喜欢 在 海滩 上 玩耍 . +I saw an old woman cross the street . 我 看见 一个 老太太 穿过 了 马路 . +Did they live here ? 他們 從 前 住 這 嗎 ? +Please send me a letter . 請 寄信 給 我 . +Her English is excellent . 她 的 英语 好极了 . +That is my problem . 這 是 我 的 問題 . +What are your influences ? 你 的 影响力 是 什么 ? +Hold your horses , young man . 別 那麼 猴急 , 年 輕 人 . +He wants to kiss her . 他 想 亲 她 . +Tell me where to put these books . 告訴 我 這些 書要 放在 哪裡 . +How many children do you have ? 你 有 幾個 小孩 ? +May we swim here ? 我们 能 在 这里 游泳 吗 ? +I will give you this book . 我会 把 这 本书 给 你 . +He knows how to swim . 他 会 游泳 . +I bought a pair of shoes . 我 買 了 一雙 鞋子 . +Tom watched TV yesterday . Tom 昨天 看 了 电视 . +Life without love is just totally pointless . 没有 爱情 的 生活 毫无意义 . +What Tom said does not apply in this situation . 汤姆 所 言 不符 时局 . +I still need an answer . 我 仍然 需要 一个 答案 . +Which one of the two brothers did you see ? 你 见到 的 是 两 兄弟 中 的 哪 一个 ? +How do you feel now ? 你 现在 感觉 如何 ? +Please fill this bucket with water . 請 把 這個 桶子 裝滿 水 . +He left an hour ago . 他 一 小时 前 走 了 . +I was hoping Tom would come here today . 我 希望 湯姆 有 一天 會來 這裡 . +He was accused of murder . 他 被 控告 杀人罪 . +Everyone noticed . 所有人 都 注意 到 了 . +Tom certainly is an interesting person . 汤姆 这 人 确实 很 有意思 . +The taxi I took was very old and small . 我 打 的 这辆 出租车 很 老 , 也 很小 . +Do you realize what this means ? 你 知道 這 是 甚麼 意思 嗎 ? +He speaks French fluently . 他 说 法语 说 得 很 流利 . +You know too much . 你 知道 得 太 多 了 . +I feel lonely . 我 觉得 很 孤独 . +I do not need anything . 我 不 需要 任何 東西 . +Is Monday OK ? 周一 可以 吗 ? +I will explain it to her . 我会 跟 她 解释 的 . +Someone came . 有人 来 了 . +Do not tell lies . 别 说谎 ! +Shut your eyes . 闭 上 你们 的 眼睛 . +You and Tom must be happy . 你 和 湯姆 一定 很 高興 . +I can not play tennis very well . 我 網球 打 的 不是 很 好 . +The girl is small for her age . 就 她 的 年齡 來說 , 這個 女孩 算是 矮小 的 . +What do you suppose this could be ? 你 认为 这 是 什么 ? +Tom left his umbrella on the bus . 汤姆 把 伞 落在 了 巴士 上 . +Tom felt his heart beating faster . 湯姆 感覺 他 心跳 加快 . +I received a letter three months later . 我 在 三個 月 後 收到 了 一封信 . +Tom was the one that told us about the problem . 湯姆 是 告訴 我們 問題 的 人 . +Can I bring Tom ? 我 可以 带上 汤姆 吗 ? +I accompanied her on a walk . 我 陪 她 散步 . +I can seldom find time for reading . 我 很少 能 抽出 时间 看书 . +Who is that ? 那 是 谁 ? +It is wrong to deceive people , but worse to deceive yourself . 欺騙 別人 是 錯 的 , 但 更糟 的 欺騙 自己 . +The nail tore his jacket . 這個 釘子 撕破 了 他 的 夾克 . +I warned you not to come here . 我 警告 過 你 別 來 這裡 . +I have never told anyone about this . 我 没 跟 任何人 说 过 这个 . +I borrowed this comic from his sister . 我 向 他 的 妹妹 借了 這個 漫畫 . +London , where I live , used to be famous for its fog . 我 住 的 地方 - 倫敦 , 從前 以 霧聞 名 . +He knows almost nothing about that animal . 他 幾乎 對 那個 動物 一無 所知 . +Tom did not give me back my money . 湯姆 沒有 還 我 錢 . +Take whichever you want . 拿 你 想要 的 . +I understand . 我 明白 了 . +Are you going to attend the meeting ? 你 要 參加 會議 嗎 ? +Children often hate spinach . 小孩 一般 都 討厭 菠菜 . +Tom very often takes a nap for an hour after lunch . 汤姆 很 经常 在 午饭 后 小憩 一 小时 . +You have not washed your hands yet , have you ? 你 还 没 洗手 , 不是 吗 ? +May I say something ? 我 可以 說 些 什麼 嗎 ? +I went to sleep about 10 o 'clock . 我 在 10 點 左右 去 睡 覺 . +Everything will be OK . 一切 都 会 好 的 . +We had an earthquake last night . 昨晚 我們 這裡 發生 了 地震 . +I heard a strange sound . 我 聽見 一聲 怪響 . +Do you really want Tom to suffer ? 你 真 想 讓 湯姆 受苦 嗎 ? +My whole body hurts . 我 全身 酸痛 . +There is a bottle of white wine in the refrigerator . 冰箱 里 有 一瓶 白葡萄酒 . +There is not any film in this camera . 這個 相機 裡 沒有 胶卷 . +She lives in a large house . 她 住 在 一棟 大房子 裡 . +We have two examinations during this term . 这个 学期 我们 有 两次 考试 . +It is very expensive to keep up with the latest fashions . 跟上 最近 潮流 时尚 是 件 非常 花钱 的 事儿 . +You look tense . 你 看起来 很 紧张 . +You know I am right . 你 知道 我 是 正确 的 . +Please tell me about your problem . 請 告訴 我 你 的 問題 . +The cause of the fire was unknown . 火災 的 原因 不明 . +Tom has been expecting Mary . 湯姆 預計 瑪莉 會 來 . +I have caught a bad cold . 我 得 了 重感冒 . +I can not stand him . 我 受不了 他 . +I am on my way to the meeting right now . 我 在 前往 会议 的 路上 . +I slept only two hours . 我 祇 睡 了 兩 小 時 . +My cell phone has a built @-@ in digital camera . 我 的 手機 有 內建 的 數位 相機 . +Something is happening in Boston . 在 波士顿 正 发生 着 什么 事 . +I need to complete it as soon as possible . 我 需要 尽快 完成 . +I do not have a prejudice against foreign workers . 我 对 外籍 员工 没有 偏见 . +I asked the doctor some questions . 我 問 了 醫生 一些 問題 . +I am getting off at the next station . 我 下 一站 下车 . +I had some trouble in finding his house . 我 很 難 找到 他 的 房子 . +He often quotes from Shakespeare . 他 經常 引用 莎士比亞 . +Tom dealt the cards . Tom 处理 了 卡片 . +We can seat you soon . 我们 很快 就 可以 安排 您 入座 . +Tom does not even try to help Mary . 汤姆 甚至 没 打算 帮 玛丽 . +As soon as I get to London , I will drop you a line . 我一 到 伦敦 就 会 给 你 留言 的 . +There is a back entrance . 有 后门 . +He kicked the ball into the goal . 他 把 球 踢 進 了 球門 . +My friend is studying Korean . 我 的 朋友 在 學朝 鮮語 . +I have just been to my uncle is house . 我 剛剛 去 了 我 叔叔 家 . +The problem was very difficult . 這個 問題 非常 困難 . +My apartment is on the fourth floor . 我 的 公寓 在 四樓 . +His greatest fault is talking too much . 他 最大 的 缺点 就是 话 太 多 . +I still can not speak French . 我 还是 不会 说 法语 . +We had a welcome party for her . 我們 為 她 舉辦 了 一個 歡迎 會 . +Do not throw out this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +You have to get this work finished by noon . 你 必須 在 中午 以前 完成 這個 工作 . +The first thing you have to take into consideration is time . 你 应该 考虑 的 第一件 事 是 时间 . +Unfortunately , it rained . 很 遗憾 , 下雨 了 . +We will have to go back . 我们 还 得 回去 . +Where does it hurt ? 哪裡 疼 ? +I will get you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +Freedom is not free . 自由 是 有 代价 的 . +Tom saw Mary crying . 湯姆 看見 瑪麗 在 哭 . +I would like to try this on . Where are the fitting rooms ? 我 想 试试 这件 . 请问 哪里 是 试衣间 ? +Can anyone answer my question ? 有人 可以 回答 我 的 問題 嗎 ? +Let me give you some advice . 讓 我 給 你 一些 建議 . +He is beginning to lose his hair . 他 开始 掉头发 了 . +You made the mistake on purpose , did not you ? 你 故意 犯 這個 錯 , 是 嗎 ? +We ran down the hill . 我們 跑 下山 . +What is your job ? 你 做 什麼 工作 ? +May I put it here ? 我 可以 把 它 放在 这儿 吗 ? +The information you gave me is of little use . 你 給 我 的 資料 沒有 多大 的 用處 . +The soccer game is tomorrow . 明天 有 足球 比賽 . +English is a universal language and is used all over the world . 英語 是 一種 世界性 的 語言 , 用 於 世界各地 . +Who told you the story ? 誰 告訴 你 這個 故事 ? +She cried when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 哭 了 . +Pardon me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +She is a well @-@ known singer . 她 是 一个 著名 的 歌手 . +Quit talking , will you ? 不要 说话 , 好不好 ? +The bucket was full of water . 这桶 装满 了 水 . +Please wait until I come back . 請 等到 我 回來 . +Write your name in capitals . 写下 你 名字 的 大写字母 . +Tom is eyesight is deteriorating . Tom 的 视力 正在 恶化 . +My father is retiring next spring . 我 爸爸 明年 春天 就要 退休 了 . +Your cake is delicious . 你 的 蛋糕 很 美味 . +What is it that Tom wants to eat ? 汤姆 想 吃 的 是 什么 ? +Those are my pants . 那些 是 我 的 褲子 . +I saw him run away . 我 看見 他 逃跑 了 . +The participants were for the most part women . 参与者 大部分 是 女性 . +It is been raining since early morning . 從 清晨 開始 一直 下雨 . +I kept on singing . 我 繼續 唱歌 . +The cat is looking at the fish . 猫 看着 鱼 . +The things he says are not the least bit important . 他 说 的话 根本 毫无意义 . +You could not handle the pressure . 你 不能 处理 压力 . +He introduced me to his parents . 他 把 我 介紹 給 他 的 父母 認識 . +Let me see it . 讓 我 看看 . +Something did happen . 有 什么 事 发生 了 . +Let is go and swim in the river . 讓 我們 去 河裡 游泳 吧 . +The lights in the bathroom are not working . 洗手间 的 灯 坏掉 了 . +Compared to Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +We ran in the park . 我们 在 公园 里 跑 了 步 . +Please do that . 麻煩 您 那樣 做 . +Thanks to both of you . 感谢 你们 两位 . +Children love playing on the beach . 孩子 們 喜歡 在 沙灘 上 玩 . +The whole neighborhood was surprised at the news . 整个 小区 对 这个 消息 很 惊讶 . +It is supper time . 吃 晚 飯 的 時間 到 了 . +You come back soon , OK ? 你 早點 回來 , 行 嗎 ? +I have not eaten for many days . 我 好多天 沒 吃 東西 了 . +Tears filled her eyes . 她 热泪盈眶 . +No problem . 没关系 . +Her father passed away last week . 她 的 父親 上週 去世 了 . +" Are the drinks free ? " " Only for ladies . " “ 酒水 免费 吗 ? ” “ 仅 女士 而已 . ” +He called me a taxi . 他 替 我 叫 了 一部 計程 車 . +I would rather stay at home than go out . 比起 出门 , 我 更 喜欢 待 在家 . +What do you plan to major in at college ? 你 计划 去 大学 后 主修 什么 吗 ? +We are all at risk . 我们 都 在 冒险 . +You will be able to see the difference very easily . 你们 很 容易 就 能 看出 区别 . +You should rewrite this sentence . 你 應該 重寫 這 句 話 . +He is living abroad at the moment . 他 现在 住 在 国外 . +Take as many cookies as you want . 想 吃 多少 饼干 就 吃 多少 . +I would like to pay in cash . 我 想用 現金 支付 . +You are very shy . 你 很 害羞 . +Tom will wait . 湯姆會 等 . +It is fun to travel . 旅行 是 乐事 . +Tom can run fast . Tom 可以 跑 得 很快 . +It is very difficult . 这 很 难 . +You can bank on that . 你 可以 寄希望于 此 . +If it looks like an apple and it tastes like an apple , it is probably an apple . 如果 看起来 像 个 苹果 而且 吃 起来 也 像 苹果 的话 , 可能 就是 苹果 . +She asked how to cook the fish . 她 问 了 怎么 烧鱼 . +Why do not we order pizza ? 为什么 我们 不订 披萨 呢 ? +Tom said that he lost his key . 汤姆 说 他 丢 了 钥匙 . +He gave a nice present to me . 他 送给 我 一份 漂亮 的 礼物 . +It was rather easy for them . 這 是 對 他們 來說 相當 容易 . +He is American . 他 是 美国 人 . +He drank very little of the water . 他 喝 很少 的 水 . +Africa was once called the Dark Continent . 非洲 曾經 被 稱為 黑暗 大陸 . +He does not like to eat fish . 他 不 喜歡 吃 魚 . +" Who is in the car ? " " Tom is . " “ 谁 在 车里 ? ” “ 汤姆 . ” +The senator was censured by the congressional ethics committee . 议员 受到 了 议会 道德 委员会 的 谴责 . +That was years ago . 那 是 好 幾 年前 . +He objected to our plan . 他 反 對 我們 的 計劃 . +Who are your most interesting friends ? 你 最 有趣 的 朋友 是 誰 ? +Where were you ? 之前 你 在 哪里 ? +We do not have time . 我们 没 时间 . +We were worried . 我们 很 担心 . +Poor health prohibited him from traveling . 因为 健康 状况不佳 , 他 没去 成 旅行 . +It is too expensive . 这 太贵 了 . +He went by bicycle . 他 骑 自行车 去 的 . +There is no denying that she is very efficient . 无可否认 她 非常 有 能力 . +She smiled . 她 笑 了 . +Go away . 走開 ! +Tom likes science fiction . 汤姆 喜欢 科幻 . +Yesterday , the weather was very nice . 昨天 天气 非常 好 . +He looks old for his age . 他 看 起來 比 他 的 實際 年齡 大 . +My stomach is full . 我 吃 得 很 飽 . +She is two years older than you . 她 比 你 大 兩歲 . +Do you have a TV ? 你 有 电视 吗 ? +Are you happy ? 你 开心 吗 ? +He looks like a good boy . 他 看 起來 是 個 好 男孩 . +I thought his opinion was relevant . 我 認為 他 的 意見 很 中肯 . +He hid behind the door . 他 藏到 了 门 后 . +Tom can not get over Mary . 汤姆 不能 原谅 玛丽 . +Tom could not get to sleep till after three last night . 汤姆 昨晚 三点 多 才 睡着 . +Tom was not smiling when he entered the room . 汤姆 进 房间 时 没有 微笑 . +I want to eat apple pie . 我 想 吃 苹果派 . +He went to New York on Monday . 他 星期一 去 了 紐約 . +Walk faster , or you will miss the train . 走快 一點 , 不然 你 會 錯 過 火車 . +That is our school . 那 是 我们 的 学校 . +The dog came running to me . 狗 向着 我 跑 了 过来 . +Tom quietly closed the bedroom door . 湯姆 靜靜地 關上 了 臥室 的 門 . +I love this car . 我 愛 這 台 車 . +She was washing the dishes . 那時 她 正在 洗碗 . +Is there a hospital near here ? 這 附近 有 醫院 嗎 ? +Try it once more . 再 試 一次 . +You are always busy . 你 一直 忙 . +I often play soccer after school . 我 常常 在 放學 後 踢足球 . +Did you tell on me ? 你 告发 我 了 吗 ? +Could you please sign the register ? 請 您 在 登記 冊 上 簽名 好 嗎 ? +I suggest we go out on Friday . 我 建议 我们 星期五 出去玩 . +It is too loud . 它 太 大聲 . +Do you plan to stay long ? 你 打算 長 時間 停留 嗎 ? +I will always love you , no matter what happens . 不論 發生 了 什麼 事 , 我 會 永遠 愛 你 . +She set out on a trip last week . 她 上週 去 旅行 了 . +My brother is a first @-@ year student . 我 弟弟 是 個 一年 級 的 學生 . +Tom is insufferable . 汤姆 令人 难以忍受 . +What would you like ? 你 想要 甚麼 ? +Where do you work now ? 你 现在 在 哪里 工作 ? +He is independent of his parents . 他 獨立 於 他 的 父母 . +I would like to have a look at your collection of stamps . 我 想 看看 您 的 邮票 收藏 . +We have to pick a name for the child . 我們 要 給 孩子 起 個 名字 . +I am willing to take your offer . 我 願意 接受 你 的 報價 . +Many people envy Tom is success . 许多 人 嫉妒 汤姆 的 成功 . +Could you turn down the radio ? 您 能 把 收音机 开 小声 一点 吗 ? +Is Tom in a lot of trouble ? 汤姆 是不是 麻烦事 很多 ? +Although he is rich , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +I think we should be able to go wherever we want to . 我 認為 我們 應 該 能 去 我們 想去 的 地方 . +He made a few grammatical mistakes . 他 犯 了 一些 文法 錯誤 . +Is this Tom is ? 这 是 汤姆 的 吗 ? +You are Tom is friend , are not you ? 你 是 湯姆 的 朋友 , 不是 嗎 ? +What else do you want me to say ? 你 想 让 我 再说 什么 ? +Please remain seated for a few minutes . 请 坐 一会 . +The weatherman says there is a storm on the way . 气象学家 说 会 有暴风雨 . +There is somebody in there . 有人 在 那里 . +I wish I could talk to you . 我 希望 能 与 你 谈话 . +We went swimming at the beach . 我們 去 海邊 游泳 . +I think he will do his best . 我 認為 他 會 盡力 而為 . +We are friends from way back . 我们 是 老朋友 了 . +No words can relieve her deep sorrow . 沒有 什麼 話 語能 減輕 她 深深 的 悲傷 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +No , I did not write it . 不 , 我 沒 寫 . +Do you want to come in ? 你 想 进来 吗 ? +I think he will not come . 我 认为 他 不会 来 . +The circumstances did not allow me to go abroad . 情况 不 允许 我 出国 . +See you soon ! 一會兒 見 ! +Do you feel tired ? 你 覺 得 累 嗎 ? +Life cannot exist without water . 水 是 生命 的 源泉 . +It is been ten years since we last met . 我們 離 上次 見 面有 十年 了 . +She keeps a parrot as a pet . 她 養一隻鸚鵡 作 為 寵 物 . +He earns double my salary . 他 的 工资 是 我 的 两倍 . +I belong to the drama club . 我 參加 戲劇 社 . +You do not know who I am . 您 不 知道 我 是 谁 . +Banks charge higher interest on loans to risky customers . 银行 对 风险 客户 收取 较高 的 贷款 利息 . +We will probably be the first ones there . 我們 可能 是 最先 到 那裡 的 . +A computer is an absolute necessity now . 電腦 現在 是 一個 絕對 必要 的 東西 了 . +We went to the mountains to ski . 我們 去 山上 滑雪 . +Will you pick me up at seven tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +A young girl on crutches asked Tom where he lived . 一个 拄着 拐杖 的 年轻 女孩 问 汤姆 他 住 在 哪里 . +He has just become a principal . 他 剛 成為 一 名校 長 . +Did you just get to know him ? 你 是不是 刚 认识 他 ? +I do not make deals with people like you . 我 不 跟 你 这样 的 人 做生意 . +Do you know how to recover a deleted file ? 你 知道 怎么 恢复 已 删除 的 文件 吗 ? +I need someone to talk with . 我 得 找 人 商量一下 . +I am stuck here in Boston because of the storm . 我 因為 風暴困 在 波士 頓 . +May I borrow your knife ? 我 能 借 一下 你 的 刀 吗 ? +We had a heavy rain last night . 昨晚 下 了 一場 大雨 . +He put the book on the table . 他 把 书 放在 了 桌上 . +Where is the telephone book ? 电话簿 在 哪里 ? +I am very sorry that I came home so late . 我 很 抱歉 那么 晚 回家 . +The old man died from hunger . 這位 老人 死 於 飢餓 . +I do not want to hurt his feelings . 我 並 不想 傷害 他 的 感情 . +Tom does not have a microwave oven . 汤姆 没有 微波炉 . +My house is close to a bus stop . 我 的 房子 靠近 一個 公車 站牌 . +Three months later , Tom was dead . 三個 月 后 , 湯姆 死 了 . +I do not even know if Tom went to college or not . 我 甚至 不 知道 汤姆 有没有 上 过 大学 . +Tom did not have enough time to eat lunch . 湯姆 沒 時間 吃 午 飯 . +What more would you want ? 你 還 想要 什麼 ? +We can hear the ocean from here . 我們 從 這裡 可以 聽到 海 的 聲音 . +She plays golf every weekend . 她 每 周末 都 打 高尔夫球 . +Everybody lies . 每个 人 都 会 说谎 . +He majored in drama at college . 他 在 大學 主修 戲劇 . +She is progressing in Chinese . 她 中文 有 进步 . +I believe in exercising regularly . 我 相信 規律 的 運動 . +Tom is not watching TV now . 湯姆 現在 沒 在 電視 . +I gave Tom one of those . 我 给 了 汤姆 其中 之一 . +I would like to order drinks now . 我 現在 想 點 飲料 . +Tom is out of your league . 汤姆 不 在 你 的 联盟 里 . +Answer the following questions in English . 用 英語 回答 下列 問題 . +The committee consists of four members . 委员会 由 四个 成员 组成 . +Do you have any Japanese magazines ? 你 有 任何 日本 雜 誌 嗎 ? +I am sleepy . 我 困 了 . +It is not always cold in Hokkaido . 北海道 並 不 總是 寒冷 . +What you say makes no sense . 你 說 的 話 沒有 道理 . +Which hat is yours ? 哪 顶 帽子 是 你 的 ? +A famous architect built this house . 一个 有名 的 建筑师 造 了 这个 房子 . +I would like to reserve a single room . 我 想 預訂 一間 單人 房 . +I know what you are doing . 我 知道 你 在 做 什么 . +I did not mean to disturb you . 我 不是 想 打扰 你 . +Let him play your guitar . 讓 他 彈 你 的 吉他 . +Japan is famous for Mt . Fuji . 日本 以 富士山 聞名 . +It is too late to apologize . 现在 道歉 也 迟 了 . +She did not turn up . 她 沒有 出現 . +Computers are certainly playing an important role in our life , whether we like it or not . 无论 我们 是否 喜欢 电脑 , 它 在 我们 的 生活 中 始终 起 着 重要 的 作用 . +I am going to make you a drink . 我 去 弄 飲料 給 你 . +She filled her bag with apples . 她 在 她 的 袋子 裡 裝滿 了 蘋果 . +We import tea from India . 我們 從 印度 進口 茶葉 . +What were the meetings like ? 会议 怎么样 ? +He was watching TV last night . 他 昨晚 在 看電視 . +There are too many things to do ! 要 做 的 事太 多 了 ! +I do not know when he will come again . 我 不 知道 他 什麼 時候 會 再來 的 . +It is time to talk . 到 談話 的 時間 了 . +I have a new car . 我 有 辆 新车 . +Good evening . 晚上 好 ! +Do not worry about this . 別 為 此 擔心 . +Be on time . 要 守时 ! +My aunt made a new skirt for me . 我 阿姨 做 了 一條 新 裙子 給 我 . +When did you come to Japan ? 你 何時 來 日本 的 ? +She says he will not give up smoking . 她 說 他 不 會 戒煙 . +They said the situation was only temporary . 他们 说 情况 只是 暂时 的 . +Now I need you to leave . 現在 我 需要 你 離開 . +I met him while I was coming home . 當 我 回家 時 , 我 遇見 了 他 . +Tom realized that he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +He plays the guitar very well . 他 吉他 彈 得 很 好 . +Let me get my violin . 让我拿 一下 我 的 小提琴 . +Life is fun . 人生 是 有趣 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +This is an important event . 这 是 个 重要 事件 . +Please show me your driver is license . 請 讓 我 看看 您 的 駕駛 執照 . +My mother made a sweater for me . 我 媽媽 為 我 做 了 一件 毛衣 . +Close the door , please . 請 關門 . +We must try to break the deadlock . 我们 必须 设法 打破 这个 僵局 . +The bell rings at eight . 鈴聲 在 八點鐘 響起 . +Will you explain the rule to me ? 你 能 帮 我 说明 一下 规则 吗 ? +The bottle smashed to pieces . 瓶子 摔成 了 碎片 . +I am not your mother . 我 不是 你 母親 . +The road is too narrow for cars . 這 條路 對 汽車 來說 太 窄 了 . +That is my toothbrush . 這 把 是 我 的 牙刷 . +The bus was filled to capacity . 這輛 公車 客滿 了 . +How far is it from the airport to the hotel ? 從 機場 到 旅館 多遠 ? +You can probably guess what happens though . 但 你 很 可能 猜得到 会 发生 什么 . +The old man walked with a stick . 這個 老人 拄著 一根 拐杖 走路 . +I am getting off at the next stop . 我 將 在 下 一站 下車 . +He did not listen to music . 他 没有 听 音乐 . +Could you wrap this separately , please ? 請 你 分開 包裝 好 嗎 ? +Is this Tom is ? 这 是 汤姆 的 东西 吗 ? +I am going to stop trying to be friendly with you . 我 不 跟 你 要 好 了 . +She is fond of playing tennis . 她 酷爱 打网球 . +It is fine today . 今天天气 很 好 . +I want a girlfriend . 我 想 找 女朋友 . +He swims better than I do . 他 游泳 比 我 好 . +Movie making is an exciting job . 電 影 製 作 是 一 個 令人 興奮 的 工作 . +Tom has a pretty big mouth . 汤姆 是 一个 大嘴巴 . +It was nice meeting you here . 在 这里 见到 您 真是 太好了 . +Tom is fluent in three languages . 汤姆 掌握 了 三种 语言 . +Would you please look after the children ? 你 可以 照顧 一下 孩子 們 嗎 ? +Champagne , please . 给 我 香槟 , 谢谢 . +Tom used to work here . 汤姆 过去 在 这里 工作 . +I got this vacuum cleaner for nothing . 我 免費 得到 了 這個 吸 塵器 . +She is still dependent on her parents . 她 现在 依然 依靠 父母 生活 . +It is said that she is a well @-@ known actress . 據 說 她 是 個 知名 的 女 演員 . +As you sow , so shall you reap . 种瓜得瓜 , 种豆得豆 . +Do not pry into my private life . 不要 插手 我 的 私生活 . +You are in trouble now . 你 有 麻烦 了 . +Would you care for some tea ? 你 要 喝 點 茶 嗎 ? +Please pick me up at the airport at five . 請 於 五點鐘 到 機場 接 我 . +Where is your bag ? 你 的 包在 哪裡 ? +I have to say no . 我 必须 拒绝 . +Are you the owner of this house ? 你 是 這棟 房子 的 主人 嗎 ? +I think we were well @-@ prepared . 我 認為 我們 準備 好 了 . +She sent me a letter . 她 寄给 我 一封信 . +Tom was the first to arrive and the last to leave . 湯姆 最先 來 , 最 後 走 . +I was the last one to see Tom . 我 是 见 汤姆 的 最后 一个 . +Tom took out his wallet and paid the bill . 湯姆 拿出 錢 包付 了 賬 . +I refuse to be treated like a slave by you . 我 拒绝 被 你 像 奴隶 一样 对待 . +Louder , please . 请 大声 一点 . +My father sometimes goes abroad . 我 父親 偶爾 出國 . +Tom does not know whether Mary is telling the truth or not . 汤姆 不 知道 玛丽 说 的 是 真话 还是 假话 . +He does not have to go to school . 他 不必 上學 . +When was it built ? 它 是 什麼 什麼 時候 蓋 的 ? +I will stand by you whatever happens . 不论 发生 什么 事 , 我 都 会 在 你 身边 . +You do not look so happy . 你 看来 不 大 高兴 . +The man is wanted for murder . 這人 因謀 殺 被 通緝 . +I do not like to socialize . 我 不 喜欢 跟 人 打交道 . +I have got one for you . 我 給 你 帶 了 一個 . +The air conditioner has got out of order . 空调 坏 了 . +Tom wants to be the boss . 湯姆 想 當 老 闆 . +The top of Mt . Fuji was covered with snow . 富士山 顶盖 满 了 雪 . +How did you like the party ? 你 覺得 這個 派 對 如何 ? +Much of what they wrote about never happened . 他們 寫 的 很多 都 沒 發生 . +I do not like to mix business with pleasure . 我 不 喜欢 把 生意 和 快乐 混 在 一起 . +They referred to Chaucer as the father of English poetry . 他們 視 喬叟 為 英 詩 之 父 . +Large , is not it ? 很大 , 不是 嗎 ? +There is no doubt about it . 關於 此事 毫無疑問 . +Why did you quit ? 你 為 什麼 辭職 ? +Cosmetic surgery is not covered by most insurance plans . 大部份 的 保險 計劃 不 包含 整容 手術 . +I took a shower . 我 洗 了 澡 . +People look at things differently depending on whether they are rich or poor . 人們 看待 事情 的 角度 不同 取決 於 他們 是 富裕 或 貧窮 . +I did not know Tom was going to tell us what to do . 我 不 知道 汤姆 会 告诉 我们 该 怎么 做 +As soon as she comes , we will begin . 她 一 到 , 我们 就 开始 . +He answered my question with a " no . " 他 用 一個 " 不 " 回答 了 我 的 問題 . +It was amazingly easy . 这 出乎意料 地 容易 . +You may have been the last person to see Tom . 你 可能 是 最 後 一個 見 湯姆 的 人 . +This diamond is not real . 这 颗 钻石 不是 真的 . +He likes neither baseball nor football . 他 既 不 喜欢 棒球 , 又 不 喜欢 足球 . +I have finished cleaning my room . 我 已經 打掃 完 我 的 房間 了 . +My business has at last gotten on the right track . 我 的 生意 終於 上 了 軌道 . +He asked her seven times to marry him . 他 求 她 跟 他 结婚 七次 . +No one voted against it . 没有 人 投 反对票 . +Tom was never happy . 湯姆 從不 高興 . +I am convinced that things will change for the better . 我 深信 事情 会往 更好 的 方向 转变 . +The Hilton Hotel , please . 请 开到 希尔顿酒店 . +Come along with me . 请 跟我来 . +I was still an amateur at that time . 我 那時 還 是 個 外行 . +Tom is a very good man . 汤姆 是 个 很好 的 人 . +I think we should try it . 我 認為 我們 該 試試 . +May I have something to drink ? 我 可以 喝 點 東西 嗎 ? +My gums are bleeding . 我 的 牙齦 流血 . +Tickets are on sale now . 现在 售票 . +I think skateboards are usually cheaper than rollerblades . 我 觉得 一般 滑板 比 轮滑鞋 便宜 . +He divorced his wife last month . 上個月 他 和 妻子 離婚 了 . +Please return the book by tomorrow . 請 明天 前 還 書 . +You must be joking ! 你 一定 是 开玩笑 ! +They passed by her house yesterday . 他們 昨天 路 過 她家 . +Stay down ! 趴着 ! +We do not get many visitors here . 我们 这里 没有 很多 访客 . +Zip your lips . 闭上 你 的 嘴 . +Haste makes waste . 欲速 則 不達 . +This is not salt . 这 不是 盐 . +I think it was a good day . 我 認為 那 是 個 好日子 . +He is not a high school student . 他 不是 個 高中生 . +They have twelve children . 他们 有 12 个 孩子 . +Tom said he has not decided what needs to be done . 湯姆 說 他 還 沒 決定 要 做 甚麼 . +My brother goes to college in Tokyo . 我 兄弟 在 東京 上大學 . +" Pass me the salt , please . " " Here you are . " “ 请 把 盐 递给 我 . ” “ 拿 着 . ” +I could not convince him of his mistake . 我 没能 让 他 相信 他 的 错误 . +She got very angry with her children . 她 对 她 的 孩子 非常 生气 . +She carried the box under her arm . 她 把 箱子 挾 在 手臂 下 . +He was very patient . 他 非常 有 耐心 . +What a pity ! 太 可惜 了 ! +My house is close to the park . 我 的 房子 靠近 公園 . +There is a telephone in my room . 我 的 房里 有 部 电话 . +Do you want to go on a picnic with me ? 你 想 跟 我 去 野餐 吗 ? +I can not change what happened yesterday . 我 没法 改变 昨天 发生 的 事情 . +We have a little time left . 我們 還 有 一點 時间 . +Why do not you come dancing with me ? 为什么 你 不 来 跟 我 跳舞 ? +Do you have enough money ? 你 的 钱 够 吗 ? +Why are you being so evasive ? 你 为什么 这么 躲躲闪闪 ? +Tom and I were business partners . Tom 跟 我 是 商業 夥 伴 . +It is time to eat lunch . 午餐 時間 到 了 . +He does not speak our language . 他 不 會 說 我們 的 語言 . +We have to do our best . 我们 要 尽力而为 . +Do not you have to work ? 你 不用 工作 吗 +He has over a million dollars in assets . 他 有 超过 一百万美元 的 资产 . +They furnished the library with new books . 他們 在 圖書館 裝備 了 新 的 書籍 . +I do not know what to say . 我 不 知道 说 什么 . +You 'd better not go there again . 你 最好 不要 再 去 那裡 . +We celebrate Christmas every year . 我們 每年 都 慶祝 聖誕節 . +My room is just below . 我 的 房間 就 在 樓下 . +She has an eye for beauty . 她 有 一雙 美麗 的 眼睛 . +I 'd rather stay at home . 我 寧願待 在家 裡 . +I have already told Tom he can not go to Mary is party . 我 已經 告訴 湯姆 他 不能 去 瑪麗 的 聚會 了 . +Tom stayed at this hotel for three weeks . 汤姆 在 这 宾馆 待 了 三周 . +Is the room big enough for you ? 這間 房間 對 你 來說 夠 大 嗎 ? +Could you possibly suggest a way to solve the problem ? 你 能 提出 解决问题 的 方法 吗 ? +He is a professor at the National University . 他 是 国立大学 的 一名 教授 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +If a person has not had a chance to acquire his target language by the time he is an adult , he is unlikely to be able to reach native speaker level in that language . 如果 一個 人 在 成人 前 沒有 機會 習得 目標 語言 , 他 對 該 語言 的 認識 達到 母 語者 程度 的 機會 是 相當 小 的 . +She attempted suicide . 她 企圖 自殺 . +He stopped for a quick cigarette . 他 停下来 抽根 烟 . +Everyone except Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom knows how to behave in public . 汤姆 知道 在 公众 场合 怎么样 自处 . +I have seen Tom naked . 我 见 过 汤姆 光着 . +He did not mean to hurt you . 他 不是故意 要 傷害 你 . +The company is going to go bankrupt really soon . 公司 很快 就要 倒闭 了 . +Can she endure a long trip ? 她 能 忍受 長途 旅行 嗎 ? +She is having lunch now . 她 现在 正在 吃 午餐 . +The boy is full of promise . 这个 男孩 很 有 前途 . +How did you get to know him ? 你 是 怎么 认识 他 的 ? +I can not wait to go on a vacation . 我 等不及 要 去 度假 . +It has been raining heavily for three hours . 下 了 三 小 時 大雨 . +Tom does not think this is a coincidence . 汤姆 不 认为 这 是 一个 巧合 . +I will gladly help you . 我 會 很 樂意 幫助 你 . +Every minute counts . 分秒必争 . +How soon can we leave ? 我们 过 多久 才能 离开 ? +You may use this car . 你 可以 使用 這輛 車 . +They were scolded by the teacher . 他们 被 老师 训斥 了 . +His advice counted for little . 他 的 建議 不算 什麼 . +I need your passport and three photographs . 我 需要 你 的 护照 和 三张 照片 . +We had a lot of rain yesterday . 昨天 下 很多 雨 . +Are you students at this school ? 你 是 這 所 學校 的 學生 嗎 ? +I like to eat . 我 喜歡 吃 . +I am sorry to cause you all this trouble . 我 很 抱歉 给 你 惹 来 所有 的 这些 麻烦 . +This is not very stylish . 這 不是 很 流行 . +Why can not you come ? 你 為 什麼 不能 來 ? +Tom gave Mary a ride to Boston . 汤姆 载 玛丽 去 波士顿 . +Many accidents resulted from the icy conditions of the road . 道路 结冰 导致 了 很多 起 事故 . +Weather permitting , we will leave in an hour . 如果 天气 允许 的话 , 我们 1 小时 后 出发 . +He is afraid of death . 他 害怕 死亡 . +There is no rush . 不急 . +I want to play . 我 想 去 玩 . +What do you like to do in your free time ? 您 空闲 时间 喜欢 做 什么 ? +The sky was filled with airplanes . 天上 滿 是 飛機 . +I can not find my wallet . 我 找 不到 我 的 錢 包 了 . +Whose pencil is this ? 这 支 铅笔 是 谁 的 ? +He arrived in Tokyo yesterday . 他 昨天 抵達 東京 . +What time will you leave ? 你 什麼 時候 離開 ? +Where is the nearest train station ? 最近 的 火车站 在 哪里 ? +The doctor advised him to do more exercise . 醫生 建議 他 多 做 運動 . +It all seems so strange . 看起来 全都 太 奇怪 了 . +There is only one store on the island . 在 這個 島上 只有 一家 商店 . +For the other 600 million people , English is either a second language or a foreign language . 對 於 其他 的 六億 人口 而言 , 英語 不是 第二 語言 就是 外語 . +She has a pure heart . 她 有 一颗 纯洁 的 心 . +I thought Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +It is dangerous to drive so fast . 車 開得 這麼 快 很 危險 . +I have a high fever . 我 烧 得 很 厉害 . +He has at least one thousand books . 他 至少 有 一千本 書 . +It is difficult to speak three languages . 說 三種 語言 是 很困 難 的 . +Shakespeare is the name of a writer . 莎士比亞 是 一位 作家 的 名字 . +Tom knows how to play mahjong , I think . 汤姆 知道 怎么 玩 麻将 , 我 觉得 . +He died recently . 他 最近 去世 了 . +I like eating fruit . 我 喜歡 吃水果 . +Tom clapped his hands . 湯姆 拍 了 手 . +He cleared his throat . 他 清了清 喉嚨 . +Will you join us ? 你 會 參加 嗎 ? +There are twelve months in a year . 一年 有 十二 個 月 . +Get a grip on yourself . 冷静下来 ! +That is how I learned English . 我 就是 这么 学会 英语 的 . +They did not speak French very well . 他們 說 法語 說 得 不太好 . +I 'd be crazy to do that . 我 做 那事 会 疯 . +We have an elevator in our new house . 我們 的 新家 有一 臺 電 梯 . +We must never confuse the two . 我们 决不能 混淆 两者 . +What is Tom saying ? 湯姆 在 說 甚麼 ? +Her grandmother lived to be 88 years old . 她 的 祖母 活到 了 88 岁 . +I need evidence . 我 需要 證據 . +All you have to do is to take care of yourself . 你 要 做 的 只是 照顾 好 你 自己 . +I think I am going to cry . 我 想 我 要 哭 了 . +What should be done ? 怎么办 ? +What symptoms do you have ? 你 有 什麼 症狀 ? +What time does your plane leave ? 你 的 飛機 什麼 時候 起飛 ? +I want it to be different this time . 我 想 让 这次 变得 不 一样 . +It is free . 它 是 免費 的 . +If you do your best , you will succeed . 如果 你 盡力 而為 , 你 就 會 成功 . +He visited his uncle yesterday . 昨天 他 拜訪 了 他 的 叔叔 . +Mary said she would do her homework . 瑪麗 說 她 會 做 她 的 功課 . +I do not want something bad to happen to us . 我 可不 想要 坏事 发生 在 我们 身上 . +It is sort of strange . 有 點 奇怪 . +We have arrived . 我們 已經 到 了 . +When does Tom eat breakfast ? 汤姆 什么 时候 吃 早饭 ? +Tom could have called the police . 汤姆 本 可以 报警 的 . +He has not yet turned in the report this month . 他 這個 月 還 沒有 提交 報告 書 . +Nobody knows why he turns down my help . 沒 有人 知道 他 為何 拒絕 我 幫 忙 . +I used to play alone when I was a child . 我 小时候 常常 独自 玩耍 . +I hope to retire from work when I am 60 years old . 我 希望 在 六十 歲時 退休 . +Tom gave Mary a nice present . 湯姆 給 了 瑪麗 一個 不錯 的 禮物 . +Tom is about to fall asleep . 湯姆 要 睡著 了 . +We know so little about you . 我們 對 你 知道 得 不 多 . +I walked up the hill . 我 走上 山 了 . +He was too young to live alone . 他 太 年 輕 了 無法獨自 生活 . +Would you please turn off the TV ? 请 把 电视机 关掉 好 吗 ? +I do not think he is truthful . 我 不 觉得 他 很 诚实 . +I am thirsty . 我 渴 了 . +I had a telephone call from her . 我 有 一通 來 自 她 的 電話 . +She can play the piano very well . 她 可以 把 鋼琴 彈 得 很 好 . +I heard him play the piano once . 我 聽 過 一次 他 彈 鋼琴 . +Do you really want it ? 你 真的 想要 嗎 ? +This is where Tom usually parks his car . 汤姆 通常 把 他 的 车 停 在 这里 . +I would like some more water . 请 再 给 我 一些 水 . +I was not aware that Tom was sleeping . 我 不 知道 湯姆 在 睡覺 . +I often went fishing with him . 我 經常 和 他 去 釣 魚 . +Half of these apples are rotten . 這些 蘋果 的 其中 一半 都 爛 了 . +Mary went on a voyage around the world . 玛丽 去 环游世界 了 . +She furnished the room with beautiful furniture . 她 用 漂亮 的 家具 佈 置 了 房 間 . +He was seen to go upstairs . 有人 看見 他 上樓 . +I can not get at the exact meaning of the sentence . 我 抓 不到 句子 的 确切 含义 . +His brother is always watching TV . 他 的 弟弟 總是 在 看電視 . +How much did you bid ? 你 出价 多少 ? +The explosion that followed killed many people . 很多 人 在 随后 的 爆炸 中 死去 . +Maybe my grandchild will be the first person to set foot on Mars . 可能 我 的 孙子 会 是 登陆 火星 的 第一 人 . +This book is beautifully illustrated . 这 本书 有 精美 的 插图 . +She introduced me to her brother . 她 把 我 介紹 給 她 的 弟弟 認識 . +She has a strong objection to my plan . 她 強烈 反對 我 的 計畫 . +Something is really weird here . 這裡 有些 事 真怪 . +I like jazz . 我 喜歡 爵士 樂 . +I have to go to the toilet . 我 要 去 廁所 . +I used to be a forest ranger . 我 以前 是 護林 人 . +My house is near the station . 我家 离 火车站 很 近 . +He continued working all day . 他 繼續 工作 了 一整天 . +Tom knows exactly how I like my hair done . 汤姆 很 清楚 我 喜欢 什么样 的 发型 . +Tom did not tell me her name . 湯姆 沒有 告訴 我 她 的 名字 . +There is something I want to tell you . 有件 事情 我 要 对 你 说 . +Do not you miss anything ? 难道 你 不 想念 什么 吗 ? +Is the party over ? 聚會 結束 了 嗎 ? +Answer my questions . 回答 我 的 問題 . +Have you heard from him recently ? 你 最近 有 他 的 消息 嗎 ? +They do not need a reason . 他们 不 需要 理由 . +I was the second to last person to hear the bad news . 我 是 倒数 第二个 得知 这个 坏消息 的 . +What do you call this bird in English ? 这 鸟 你们 用 英语 怎么 称呼 ? +I do not think she cares very much . 我 不 认为 她 很 在意 . +Please take a look at this . 请 看看 这里 . +I was surprised by his perseverance . 我 对 他 的 坚持 感到 很 惊讶 . +Have there been any changes ? 有 過 任何 改變 嗎 ? +Tom is taller than you . 汤姆 比 你 高 . +I am responsible for that . 我 对此 负有责任 . +I know that it is highly unlikely that anyone knows me . 我 知道 有人 认识 我 的 可能性 微乎其微 . +If you make a mess , clean it up . 如果 你 弄乱 了 , 你 来 打扫 . +He left his son a large fortune . 他 留給 了 他 的 兒子 一大 筆 財富 . +I want you to stay a little longer . 我 想 让 你 再 呆 一会 . +Everyone admires the pictures painted by him . 每個 人 都 很 欣賞 他 所畫 的 圖畫 . +Do you drink coffee ? 你 喝咖啡 嗎 ? +He got thrown out of the house . 他 被 趕出 了 這棟 房子 . +She is far better today than yesterday . 她 今天 比 昨天 要 好 很多 . +At last , it began to rain . 终于 开始 下雨 了 . +If I won the lottery , I 'd buy a new car . 如果 我中 了 彩票 , 我会 买辆 新车 . +He went to stay with his cousin . 他 去 和 他 的 表弟 待 在 一起 了 . +The man was held in police custody . 這個 男人 被 警察 拘留 了 . +Who said that to you ? 是 谁 给 你 说 那个 的 呢 ? +If you are wrong , then I am wrong , too . 如果 你 錯 了 , 那麼 我 也 錯 了 . +I will send my mother a letter . 我会 给 我 的 母亲 寄 封信 . +My grandfather is a carpenter . 我 爺 爺 是 個 木匠 . +Stop meddling . 别 再 插手 . +They water the fruit trees . 他们 给 果树 浇水 . +There is no need to speak so loud . 沒有 必要 說 話 這麼 大聲 . +Computers save us a lot of time and trouble . 电脑 为 我们 节省 了 很多 时间 , 解决 了 很多 问题 . +Turn off the light . 關燈 . +It has nothing to do with you . 跟 你 沒 有 關 係 . +I am hoping that that will happen . 我 希望 那 會 發生 . +Her success made her the target of jealousy . 她 的 成功 让 她 成为 嫉妒心 的 靶子 . +Do you have a larger size ? 你 有 比 較大 的 尺寸 嗎 ? +How many pieces of baggage do you have ? 请问 您 有 多少 件 行李 ? +Mt . Fuji is Japan is tallest mountain . 富士山 是 日本 最高 的 山 . +It is a nice day , is not it ? 美丽 的 一天 , 不是 吗 ? +Tom comes here every now and then . 汤姆 常 来 这里 . +She was frequently late for school . 她 經常 上學 遲到 . +Why do you want to study abroad ? 为什么 你 想到 外国 读书 ? +I did not enjoy it very much . 我 不是 很 喜歡 它 . +What is the weather like there ? 那儿 是 什么 天气 ? +We just have to make sure Tom is planning to be here . 我們 只是 需要 確認 Tom 有 要 來 這 . +That was not the main reason that Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +I am breast @-@ feeding my baby . 我 餵 我 的 孩子 母乳 . +Take a deep breath and then relax . 深呼吸 , 然 後 放 鬆 . +I have put all of my energy into this plan . 我 在 这项 计划 上 投入 了 所有 精力 . +I miss you very much . 我 非常 想 你 . +I am looking for my contact lens . 我 在 找 我 的 隱形 眼鏡 . +This rose is beautiful . 這 玫瑰花 很 美麗 . +Freedom is the center of American democracy . 美國 民主 的 中心思想 是 自由 . +Do not forget to put out the fire . 不要 忘 了 熄火 . +For quantities of 20 or more , we can allow you a special discount of 10 % on the prices quoted . 20 个 以上 九折 特惠 . +How strange ! 真 奇怪 . +How often have you been to Europe ? 你 曾 多常 去過 歐洲 ? +I have mislaid my baggage . 我 的 行李 丢 了 . +Do you feel any pain in your stomach ? 你 的 胃會 痛 嗎 ? +Do you know whose handwriting this is ? 你 知道 这 是 谁 的 字 吗 ? +Stockholm is the capital of Sweden . 斯德哥爾摩 是 瑞典 的 首都 . +That place is food is delicious and their prices are low . However , their location is not good . 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 位置 . +There was no money for rebuilding . 沒有 重建 的 錢 . +What can Tom do ? 汤姆 能 做 什么 ? +He had no qualms in doing so . 他 这么 做 , 没有 任何 不安 . +You know quite a lot about Sumo . 你 對 相撲 知道 得 很多 . +She visited the old man in the hospital every day but Sunday . 她 每天 都 去 探視 在 醫院 裡 的 老人 , 除了 星期天 . +I do not really want to live in Australia . 我 不怎么 想住 在 澳大利亚 . +" Where have you been ? " " I have been to the barber is . " 你 去 哪儿 了 ? 我 去 了 理发店 . +This is exactly what I need . 这 正是 我 需要 的 东西 . +You should always do your best . 你 應 該 永遠 盡力 而為 . +The train got in on time . 火车 准时 到 了 . +I tried to call Tom back . 我 試著 叫 湯姆 回來 . +They are already here . 他們 已經 在 這裡 了 . +Let is wait for a while and see how you do . 讓 我們 等 一會兒 看看 你 怎麼 做 . +I work every day but Sunday . 除了 星期天 我 每 一天 都 工作 . +They got out of the car . 他們 下 了 車 . +I will show you how to catch fish . 我会 向 你 展示 怎样 捕鱼 . +We are next @-@ door neighbors . 我们 是 隔 着 墙 的 邻居 . +My father often goes to the United States on business . 我 爸爸 经常 去 美国 出差 . +I feel sad every now and then . 我 常常 覺得 悲傷 . +I am sure Tom will not have any trouble finding us . 我 确定 汤姆 找到 我们 没有 任何 问题 . +I agree with that opinion . 我 同意 那個 意見 . +Has the bell rung ? 钟响 过 了 吗 ? +She did not have any pencils . 她 一支 铅笔 也 没有 . +I disagree with you . 我 不 同意 你 的 看法 . +I would like fruit juice . 我 想要 果汁 . +Make it quick . 快点 . +We have time to spare . 我們 有 多餘 的 時間 . +There is a park near my house . 我家 附近 有 一個 公園 . +I used to play tennis in high school . 我 高中 时 曾 打网球 +Cross out the incorrect words . 划掉 错误 的 单词 . +This table is made of wood . 这 张 桌子 是 木制 的 . +She lived at 56 Russell Square . 她 住 在 罗素 广场 56 号 . +I have an egg . 我 有 一只 蛋 . +Give me the number . 把 那个 号码 给 我 . +People have been buying me drinks all night . 人們 整晚 都 在 給 我 買 飲料 . +Tom finished college last year . 湯姆 去年 上完 了 大學 . +I like your car . 我 喜欢 您 的 车 . +It is for you to decide . 這 由 你 來 決定 . +I did nothing out of the ordinary . 我 沒 做 不 尋常 的 事 . +I invited him to the party and he accepted . 我 邀请 他 去 派对 , 他 接受 了 . +I want to learn French . 我 要 学法语 . +To be very honest with you , I do not think I can do that . 和 你 说句实话 , 我 觉得 我 做 不到 . +I am not used to drinking coffee without sugar . 我 不 习惯 喝 无 糖 咖啡 . +I will see to it . 由 我 来 做 . +Follow me into the room . 跟 我 进 房间 . +Please do not say that . 请 不要 这样 说 . +The capital of Poland is Warsaw . 波蘭 的 首都 是 華沙 . +Time waits for no one . 时间 不 等 人 . +She does not like people who are not punctual . 她 不 喜欢 不 守时 的 人 . +I could not remember ever having met her . 我 不 记得 曾经 见 过 她 . +He was not aware of the danger . 他 沒 有意 識到 自己 有 危險 . +I am sure they can hear us . 我 確定 他們 能 聽見 我們 的 聲音 . +I understand your feelings . 我 明白 你 的 感受 . +You were not here then . 你 那時 不 在 這裡 . +He paid 1,000 yen for this book . 他 花 了 1000 日元 買 這 本書 . +Do you often travel abroad ? 你 经常 去 国外 旅行 吗 ? +It is very kind of you to help me . 你 幫 我 真好 . +A mouse is a timid creature . 老鼠 是 胆小 的 生物 . +I was not busy yesterday . 我 昨天 不忙 . +What did you do last Christmas ? 去年 圣诞节 做 了 什么 了 ? +I have already told you the truth . 我 已經 告訴 你 真相 了 . +There will be snow tomorrow . 明天 會 下雪 喔 ! +There are a lot of books in the library . 圖書館 裡 有 很多 書 . +She is in the restroom . 她 在 上 廁所 . +What do the initials NTT stand for ? NTT 這個 縮寫 是 什麼 意思 ? +Mom , I am hungry . 妈妈 , 我 肚子饿 了 . +The storm caused a lot of damage . 暴風雨 造成 了 很大 的 損害 . +It is my money . 那 是 我 的 钱 . +She loves children . 她 愛 孩子 . +Tom is shy . 汤姆 害羞 . +How can you say that ? 你 怎麼 能 那麼 說 ? +I wish you good luck . 我 祝您 好运 . +Two teas and a coffee , please . 请来 两杯 茶 和 一杯 咖啡 . +I agree with him on that point . 我 在 那 一個 觀點 上 同意 他 . +There is no way to win . 沒有 辦法 贏 . +It is your book . 它 是 你 的 書 . +I had my watch stolen yesterday . 我 的 手 錶 昨天 被 偷 了 . +This question is very simple . 这个 问题 很 简单 . +I thought I was dreaming . 我 还 以为 我 在 做梦 呢 . +Health is above wealth . 健康 比 财富 重要 . +Why are they angry ? 他们 为什么 在 生气 ? +Her father died when she was three . 她 父亲 在 她 三岁时 死 了 . +She has attractive eyes . 她 有 一双 迷人 的 眼睛 . +It seems very interesting . 它 似乎 很 有趣 . +I wake him at six every morning . 我 每天 早上 6 点 叫醒 他 . +Who did you talk to ? 你 和 谁 说话 呢 ? +I thank you from the bottom of my heart . 我 打 心底 里 感激 你 . +We are almost like brothers . 我們 幾乎 像 兄弟 一樣 . +Blenders are nice for people who really like smoothies . 攪拌機 對 真的 喜歡 冰沙 的 人 來說 很 不錯 . +Pace yourself . 量力而行 . +Can you freeze it ? 你 能 冷冻 它 吗 ? +How much will it cost ? 这 要 多少 钱 ? +I was caught in a shower and got drenched to the skin . 我 遇上 了 陣雨 被 淋得 全身 濕透 . +I appreciate your help in clarifying this . 我 感谢 你 帮助 澄清 . +The police will put you behind bars for twenty years . 警方 會 把 你 關 在 牢 裡 二十年 . +Why did you do that ? 你 為 什麼 要 那樣 做 呢 ? +I remember seeing you last year . 我 記得 去年 看 過 你 . +He is leaving Chicago tomorrow . 他 明天 將 離開 芝加哥 . +She knows a lot about the latest fashions . 她 很 了解 最新 的 時尚 趨勢 . +There is not anyone in the room . 房間 裡 沒有 任何人 . +He and his sisters are currently living in Tokyo . 他 和 他 的 姐妹 们 目前 都 住 在 东京 . +I chose the wrong one . 我 選 了 錯 的 那個 . +Get Tom . 找到 汤姆 . +There was a heavy rain last night . 昨晚 下 大雨 . +I need you here . 我 需要 你 在 這裡 . +The pond is 3 meters deep . 这个 池塘 有 三米 深 . +I will be busy tomorrow . 我 明天 会 很忙 . +I suppose he will be back soon . 我 想 他 会 很快 回来 的 . +He invented an excuse for being late . 他 为 他 的 迟到 制造 了 一个 借口 . +The weather forecast says it will be fine tomorrow . 根據 氣象 預報 , 明天 會 是 晴天 . +Tom should be worried . Tom 應該 要 擔心 . +Why do you let Tom treat you that way ? 你 為 甚麼 讓 湯姆 那麼 對待 你 ? +Congratulations ! 祝贺 你 . +I had to change clothes because what I was wearing was not appropriate for the situation . 我 必须 要 换衣服 , 因为 我 现在 穿 的 衣服 不 适合 这个 环境 . +Tom does not need to wear glasses anymore . 汤姆 不 需要 再 戴眼镜 了 . +New stamps will be issued next month . 新 郵票 將 於 下 個 月 發行 . +This is not important . 這個 不 重要 . +What is for dinner tonight ? 今天 晚饭 吃 什么 . +Tomorrow I am going to Paris . 明天 我 去 巴黎 . +He is a famous baseball player . 他 是 一位 著名 的 棒球 選手 . +I need advice . 我 需要 些 建议 . +I will drive you to the airport . 我会 开车 送 你 去 机场 . +I deleted the app . 我 删除 了 这个 应用 . +There is not a drop of water left . 沒有 剩下 一滴水 . +You have to have confidence . 你 必须 得 自信 . +I will give you a ride . 我会 让 你 搭 个 便 车 . +I have too many things on my mind these days . 这 几天 我 脑袋 里 的 事情 太 多 了 . +He does not believe me at all . 他 根本 不 相信 我 . +How old is this zoo ? 這間 動物園 多久 了 ? +Please do not tell this to your parents . 请 不要 告诉 你 父母 . +She went to the Takasu clinic . 她 去 了 高須 診所 . +If the lion is the king of beasts , the eagle is the king of birds . 狮子 是 兽类 之 王 的话 , 鹰 就是 鸟类 之 王 . +How many books does he have ? 他 有 多少 册 图书 ? +I wish I had a better memory . 但 願 我 有 好 一點 的 記憶力 . +How was the interview ? 面試 怎麼樣 ? +When he retired , his son took over the business . 他 退休 的 时候 , 他 儿子 接手 了 他 的 生意 . +Lots of famous people come here . 許 多名 人 來 這裡 . +Tom is worried for his safety . 湯姆 擔心 他 的 安全 . +I wish I could go to Japan . 要是 能 去 日本 就 好 了 . +I 'd like a glass of water . 我 想要 一杯 水 . +Mary likes milk very much . 瑪麗 很 喜歡 牛奶 . +I ate breakfast in my pajamas . 我 穿著 睡衣 吃 早 飯 . +I want to make a pie . 我 想 做 个 派 . +How did you reply ? 你 回答 了 什么 ? +Would you like a cup of coffee ? 来 杯 咖啡 吗 ? +She became a true friend of mine . 她 成為 我 的 一位 真正 的 朋友 . +This is not true love . 這 不是 真實 的 愛情 . +How long do you plan on staying here ? 你 打算 在 这儿 待 多久 ? +I have to take medicine . 我 必须 吃药 . +We have breakfast in the kitchen . 我們 在 廚房 裡 吃 早餐 . +Speaking English is a lot of fun . 說 英語 很 有趣 . +His influence extends all over the country . 他 的 影響 遍及 全國 . +Sumo is a traditional Japanese sport . 相扑 是 日本 传统 的 体育 活动 . +Your bicycle is similar to mine . 你 的 腳踏車 和 我 的 很 相似 . +Is Tom helping Mary ? 汤姆 在 帮 玛丽 吗 ? +My grandfather lived to be ninety . 我 的 祖父 活到 了 九十 歲 . +I recognize that what he says is the truth . 我 承认 他 说 的 是 事实 . +I think it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +You said you had important news . 你 說 你 有 重要 新聞 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +His wife is one of my friends . 他 的 妻子 是 我 的 一個 朋友 . +What is the name of that river ? 這條 河 的 名字 是 什麼 ? +This is my mother . 这 是 我 的 妈妈 . +Do not disturb me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +They are having a party tomorrow . 明天 他們 將 舉行 派 對 . +Only peace can save the world . 只有 和平 能够 拯救 世界 . +My parents will not let me date . 我 父母 不让 我 和 男生 约会 . +She pretended not to hear him yesterday . 昨天 她 裝作 沒有 聽見 他 . +Do you like to drink wine ? 你 喜歡 喝 紅 酒 嗎 ? +You worry too much about your weight . 你 太 担心 您 的 体重 了 . +She put on her hat . 她 戴 上 了 她 的 帽子 . +Politicians never tell us their inner thoughts . 政治家 从来不 告诉 我们 他们 的 别有用心 . +It turned out that the rumor was false . 谣言 [ 最后 ] 证明 是 假 的 . +He is not as tall as you are . 他 沒 你 高 . +He told me to do it , so I did it . 他 让 我 做 , 我 就 做 了 . +Did something happen ? 發生 了 什麼 事 嗎 ? +I am going to the restroom . 我 去 下 洗手间 . +I remember seeing him . 我 记得 见 过 他 . +Tom told me that I should do that . 湯姆 告訴 我 我 應 該 去 做 . +I will get you something nice . 我会 给 点 你好 东西 . +Tom filled out the application form . 湯姆 填寫 了 申請 表 . +I made some mistakes on the test . 我 在 考试 时 犯 了 些 错 . +Everyone knows the law . 大家 都 知道 這個 法律 . +I have been looking for a new job for a long time . 我 已经 找 了 很久 的 工作 . +Their house is being remodeled . 他們 的 房子 正在 裝潢 . +He asked me questions similar to those asked by many others . 他 和 许多 其他人 一样 问 了 我 同样 的 问题 . +I will call you . 我会 打电话 给 你 . +What is your favorite item of clothing ? 你 最 喜欢 哪类 的 衣服 ? +I am an atheist . 我 是 无神论者 . +His face turned pale . 他 的 脸 失去 了 所有 颜色 . +She takes piano lessons once a week . 她 每周 上 一次 钢琴课 . +You should not waste your time . 你 不该 浪费 你 的 时间 . +She went to the museum by taxi . 她 搭計 程車 去 博物 館 了 . +He is not good at remembering names . 他 不 善于 记人 名 . +Every cloud has a silver lining . 每 朵 雲 都 披著 銀衣 . +Is this edible ? 这个 能 吃 吗 ? +They sell sporting goods . 他们 卖 体育 产品 . +Even with all his money , he is unhappy . 儘 管 他 有 那 麼 多 錢 , 他 並 不快 樂 . +I know where she is . 我 知道 她 在 哪里 . +I do not know what to say to make you feel better . 我 不 知道 该 说 什么 来 安慰 你 . +What you see is what you get . 你 看到 什麼 拿 什麼 . +I felt that the plan was unwise . 我 覺得 這 計畫 不是 很 聰明 . +They are children . 她们 是 孩子 . +I walk my dog in the park every morning . 我 每天 早上 到 公园 里 遛狗 . +She can sing better than anybody else in her class . 她 唱 歌唱 得比 班上 任何 一個 人 好 . +Tom is crying outside right now . 湯姆 現在 正在 外面 哭 . +Everything is going horribly wrong for Tom . 對 湯姆 來說 一切 都 開始 錯 得 離 譜 . +Do not lean against the wall . 别 倚 着 墙 . +Stop talking . 不要 说话 了 . +He has three times as many books as I have . 他 有 我 的 三倍 的 书 . +The clouds are getting darker . 雲 越來越 黑 . +Who are you voting for ? 你 投 给 谁 ? +Is this your first visit to Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me whatever help I needed . 他 給 了 我 任何 我 需要 的 幫助 . +This is the cutest puppy I have ever seen . 這 是 我 見 過 最 可愛 的 小狗 . +Now is the time for action . 现在 是 行动 的 时候 了 . +Where do you play tennis ? 你 在 哪裡 打 網球 ? +Tom can swim faster than anyone else I know . 汤姆 是 我 认识 的 人 当中 游泳 最快 的 . +I think we have found what we were looking for . 我 認為 我們 找到 我們 正在 找 的 東西 了 . +Let me take your blood pressure . 讓 我 量量 你 的 血壓 . +You should follow your teacher is advice . 您 應 遵循 你老 師 的 建議 . +He seldom writes to his father . 他 很少 写信给 他 父亲 . +People are counting on us . 人们 正在 依赖 着 我们 . +Are you busy tomorrow afternoon ? 明天 下午 你 忙 嗎 ? +Tom does not have a lot of money . 汤姆 没有 很多 钱 . +Fools rush in where angels fear to tread . 初生 之 犢 不畏 虎 . +I looked around , but saw nobody . 我 環顧 四周 , 卻 沒 看見 任何人 . +They gave us very little trouble . 他們 幾乎 不 給 我們 添 麻煩 . +He has been very busy this week . 他 這個 星期 一直 很 忙碌 . +Is ten thousand yen enough ? 一萬 日元 夠 嗎 ? +You 'd better send for a doctor . 你 最好 派 人 去 請 醫生 來 . +Were you serious ? 你 是 认真 的 吗 ? +It is amazing . 太 神奇 了 . +My watch is five minutes slow . 我 的 錶 慢 了 五分 鐘 . +He went to Paris to study French . 他 到 巴黎 學習法 語 . +I can not afford a car . 我 買 不起 車子 . +Being sick is very boring . 生病 很 無聊 . +Tom can not go home until after 2 : 30 . 汤姆 在 2 : 30 之后 才能 回家 . +His doctor advised him to quit smoking . 他 的 医生 建议 他 戒烟 . +That scandal cost him his reputation . 丑闻 让 他 付出 了 失去 声誉 的 代价 . +He has a brother and two sisters . 他 有 一个 兄弟 和 两个 姐妹 . +It began to snow . 開始 下雪 了 . +The dog is blind in one eye . 那 狗 一只 眼 是 瞎 的 . +The taxi picked up two passengers . 這輛 計程 車 載 了 兩名 乘客 . +You may use my new car . 你 可以 使用 我 的 新車 . +I do not blame you . 我 不 怪 你 . +We have got to go . 我们 必须 走 了 . +Tom and Mary were both born in Boston . 湯姆 和 瑪麗 都 生 在 波士 頓 . +I am sure they will win . 我 確定 他們 會 贏 . +I visited my friend Tom yesterday . 我 昨天 拜訪 了 我 的 朋友 湯姆 . +He gave me 10,000 yen . 他 给 了 我 1 万日元 . +I could answer all the questions . 我 可以 回答 所有 问题 . +You do not like love stories , do you ? 你 不 喜歡 愛情 故事 , 是 嗎 ? +She is Tom is older sister . 她 是 Tom 的 姐姐 . +They flunked their exams . 他們 考試 不及格 . +He sipped the hot coffee slowly . 他 慢慢 地 啜飲 熱 咖啡 . +Do you like rap ? 你 喜欢 说唱 音乐 吗 ? +Are you here on business ? 你 来 这里 出差 的 ? +They go to church every Sunday . 他們 每個 星期天 上 教堂 . +The court declared him innocent on the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +A light bulb gives light . 灯泡 发光 . +He saw a dog near the door . 他 在 門 附近 看到 了一 隻 狗 . +You owe me something . 你 欠 我 點 東西 . +I run every day . 我 每天 跑步 . +Hollywood is not what it used to be . 好 萊塢 不是 以前 的 樣子 了 . +Pizza is my favorite food . 比薩 是 我 最 喜歡 的 食物 . +They stepped a few paces forward . 他們 前進 了 幾步 . +You have not changed at all . 你 真的 一点 没变 . +Tom knew he should help Mary . 湯姆 知道 他 該 幫 瑪麗 . +I have no doubt about it . 我 没有 疑问 . +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 赤脚 漫步 . +He was disappointed that things did not turn out as he 'd hoped . 事情 没能 如他 所 愿 让 他 感到 失望 . +Please hurry . 请 抓紧时间 . +Do not rely too much on others . 别 老 依赖 别人 . +There are no hats in that store that fit me . 那個 店 裡 沒 有合 我 尺寸 的 帽子 . +When can we eat ? 我們 什麼 時候 可以 吃 ? +I was surprised to see a lion . 我 很 驚訝 竟然 看到 了 獅子 . +This sentence is ambiguous . 此句有 歧義 +Lake Towada is famous for its beauty . 十 和田 湖 以 它 的 美麗 聞名 . +Tom is probably still studying French . 汤姆 可能 还 在 学法语 . +I have something interesting to tell you that you might find surprising . 我 有点 有趣 的 事 要 告诉 你 , 你 可能 会 吃惊 . +We grow a variety of crops . 我們 種植 各種 的 作物 . +Does this bus go to the beach ? 這輛 公車 去 海灘 嗎 ? +The taxi has arrived . 出租车 到 了 . +If you sing , we will sing with you . 如果 你 唱 , 我們 就 跟著 唱 . +Mary helped her mother with the cooking . 瑪麗幫 她 母親 做飯 . +Just say no . 只要 說不 . +This carpet is superior to that one in quality . 这 地毯 在 质量 上比 那个 好得多 . +Would you like a little more salad ? 请问 您 要 多 来 点儿 沙拉 吗 ? +What are you after ? 你 想要 什么 ? +That patient may die at any time . 病人 随时 会 死 . +The birds flew to the south . 群鸟 南翔 . +His advice is always very sensible . 他 的 忠告 总是 很 明智 . +Grandpa bought it for me ! 爷爷 买 给 我 的 ! +We have not thought about it . 我们 还 没 考虑 . +I feel like another beer . 我 想 再 来 一杯 啤酒 . +Do you have a lot of pens ? 你 有 很多 笔 吗 ? +It was a calm winter evening . 这 是 个 静谧 的 冬夜 . +Tom is laughing . 汤姆 在 笑 . +It is easy to swim . 游泳 很 簡單 . +We enjoyed watching the baseball game . 我們 喜歡 看 棒球 比賽 . +The policeman took the thief by the arm . 警察 抓著 小偷 的 胳膊 . +Half a million children still face malnutrition in Niger . 尼日尔 仍然 有 50 万 孩子 面临 着 营养不良 . +You can not do anything about that . 你 什么 也 做不了 . +He looks kind of pale . 他 有点 苍白 . +Take the first street to the right . 第一 條街 右 轉 . +The old man gave the child shelter . 這位 老人 收容 了 這個 孩子 . +Tom was too afraid to do anything . Tom 太 胆小 了 以至于 做不了 任何 事 +The coffee is cold . 咖啡 是 冷 的 . +The prosecutor asked me a leading question . 检察官 问 了 我 一个 引导性 的 问题 . +Tom is wearing the same clothes he wore yesterday . 汤姆 穿着 跟 昨天 穿 的 衣服 . +I like running . 我 喜欢 跑步 . +These shoes are too big for me . 这 双鞋 对 我 来说 太 大 了 . +Do I have to go to the party ? 我 需要 去 派 對 嗎 ? +Wait ! 等等 ! +You know I have no choice , do not you ? 你 知道 我 沒法 選擇 , 不是 麼 ? +I think you are sitting in my seat . 我 想 你 坐到 我 的 座位 了 . +Let is get divorced . 我们 离婚 吧 . +Tom is a very generous man . 湯姆 是 個 大方 的 人 . +Please answer my question . 請 回答 我 的 問題 . +I met a friend of Mary is . 我 遇到 了 瑪麗 的 一位 朋友 . +Is this ladder strong enough to bear my weight ? 这个 梯子 是否 足够 坚固 以 承受 我 的 重量 ? +Who is the author of this story ? 这本 小说 的 作者 是 谁 ? +I am the one you want . 我 就是 你 要 找 的 人 . +Tom is still in Boston . 汤姆 还 在 波士顿 . +An opportunity like this only comes along once in a lifetime . 一辈子 只 会 出现 一次 像 这样 的 机会 . +I , too , have been to Boston many times . 我 也 去过 波士顿 很 多次 . +We saw the children enter the room . 我們 看到 了 孩子 們 進入 這個 房間 . +Do not judge a man by his clothes . 不要 以 穿著 來 判斷 一個 人 . +I have discovered something interesting . 我 發現 了 一些 有趣 的 東西 . +She is very pretty . 她 很 可爱 . +Will he come tomorrow ? 他 明天 会 来 吗 ? +My body aches all over . 我 全身 酸痛 . +Could you say that one more time ? 你 能 再 說 一次 嗎 ? +You have to follow the rules . 你 必须 遵守规则 . +This vending machine is not working . 這 台 自動 販賣 機 故障 了 . +He has just left home . 他 刚 离开 家 . +She is good at getting around rules . 她 擅 於 逃避 規則 . +I had to get my tattoo removed . 我 必須 把 文身 去掉 . +You are not at all wrong . 你 并 不 完全 错误 . +Do not touch my camera . 不要 碰 我 的 相機 . +Tom looked at the photograph . 汤姆 看 了 看 照片 . +Tom is our starting quarterback . 汤姆 是 我们 的 首发 四分 卫 . +We are in a hurry . 我們 很急 . +He said that he wanted some money . 他 說 他 要 一些 錢 . +She lost her way and on top of that it began to rain . 她 迷路 了 , 紧接着 天 开始 下雨 了 . +He pretended to be my friend . 他 假装 是 我 的 朋友 . +Have you ever had any serious illness ? 你 曾经 得 过 重病 吗 ? +She talked as she walked . 她 邊 走 邊 談 . +Look around . 四处 看看 . +I will show you some pictures . 我 會 給 你們 看 些 照片 . +My father made me wash the car . 我 父親 要 我 洗車 . +English is spoken in many countries . 許多 國家 的 人 說 英語 . +Why is the sky blue ? 为什么 天 是 蓝 的 ? +Was Tom asleep ? 汤姆 睡着 了 吗 ? +I do not know when he came back from France . 我 不 知道 他 是 什么 时候 从 法国 回来 的 . +I know what I am doing . 我 知道 我 在 做 什么 . +The monkey climbed up a tree . 猴子 爬上 了 树 . +Put some more wood on the fire . 再 往 火 裡 添 些 木柴 . +I wish you were close to me . 我 希望 你 在 我 身边 . +Tom is very angry now . 汤姆 现在 很 生气 . +Tom is on good terms with John . 汤姆 和 约翰 关系 很 好 . +Help yourself to more potato chips . 隨意 多 吃 點 洋芋片 吧 . +The situation is worse than I thought . 情況 比 我 想 的 還壞 . +He is a good guy . 他 是 個 好人 . +They appointed him as a director . 他们 任命 他 为 经理 . +The earth is similar to an orange in shape . 地球 的 外形 和 橙子 相似 . +Tom drank some juice . Tom 喝 了 些 果汁 . +Tom has decided to become a monk . 汤姆 ( Tom ) 决定 出家 为 僧 . +I met the prince himself . 我 见到 了 王子真 人 . +I will show you the picture . 我会 给 你 看 图片 . +They made me really angry . 他们 让 我 很 生气 . +She is eager to live in Australia . 她 渴望 住 在 澳洲 . +I think it was wrong . 我 认为 它 错 了 . +When I was young , I used to climb trees a lot . 我 年 輕 時 經常 爬 樹 . +She turned down every proposal . 她 拒绝 了 每一项 提议 . +What should I do ? 我 该 做 什么 ? +My father told me where to go . 我 爸爸 告诉 我 去 哪儿 . +Tom might be here by 2 : 30 , but then , maybe not . tom 两点 半 可能 会 到 , 不过 , 也 可能 不会 +I have ten pens more than you do . 我 比 你 多 10 支 钢笔 . +The days are getting longer and longer . 白天 变得 越来越 长 . +I can not bear the pain . 我 無法 忍受 這個 痛苦 . +If you want a pencil , I will lend you one . 如果 你 需要 铅笔 , 我 借 你 一支 . +Please give me some advice on what I should do . 请 给 我 提提 建议 , 我 该 做 什么 . +There was a big gold star on the door . 在 門上 有 一個 大大的 金色 星星 . +It is on the house . 这 是 免费 的 . +He just arrived . 他 刚 到 . +He always wanted to study Japanese . 他 一直 想學日語 . +My train left at 7 and arrived in New York at 10 . 我 乘 的 火车 7 点 出发 , 10 点 到 了 纽约 . +I bought this camera yesterday . 我 昨天 買 了 這 台 相機 . +That was three days ago . 这 是 三天 之前 了 . +I asked each boy three questions . 我 問 了 每個 男孩 三個 問題 . +I think Tom is good . 我 觉得 Tom 人 很 好 . +I do not like winter . 我 不 喜欢 冬天 . +What he said would happen has happened . 他 說 會 發生 的 事情 已經 發生 了 . +Tell me when to begin . 告诉 我 什么 时候 开始 . +She was in America last month . 她 上 個 月 在 美國 . +Your answer is wrong . 你 的 回答 是 错 的 . +I wish we had won the game . 但 願 我們 贏 了 這場 比賽 就 好 了 . +That was really boring . 那 真是 無聊 . +I do not know if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +Who wrote these poems ? 这 是 谁 写 的 诗 ? +He works with me at the office . 他 跟 我 在 這間 辦 公室 一起 工作 . +How do you spell your name ? 你 怎麼 拼 你 的 名字 的 ? +I am translating a book . 我 在 翻譯 一本 書 . +I confessed to stealing the money . 我 承認 偷 了 錢 . +What is the price of this cap ? 这 顶 帽子 多少 钱 ? +America was discovered by Columbus in 1492 . 美國 在 1492 年 被 哥倫布 發現 . +Would you mind opening the window ? 你 介意 打開 窗戶 嗎 ? +I love parties . 我 愛 派 對 . +He promised me he would be here at six . 他 答應 我 六點鐘 的 時候 他 會 在 這裡 . +The patient is steadily recovering . 這個 病人 正在 穩定 地 康 復 中 . +How can I get in touch with you ? 我 怎么 联系 你 ? +She has been absent since last Wednesday . 从 上周三 起 , 她 一直 缺席 . +She sells flowers . 她 卖花 . +Are you speaking to me ? 你 在 跟 我 说话 吗 ? +I have to stay home . 我 得 留在 家 . +She does not like the way I speak . 她 不 喜欢 我 说话 的 方式 . +His hobby is painting pictures of flowers . 他 的 爱好 是 画 有 花 的 图 . +He is afraid of snakes . 他 怕 蛇 . +She sent this book to me . 她 寄 這 本書 給 我 . +I still do not understand what is going on . 我 還 是 不 明白 出 了 什麼 事 . +These people hate all foreigners . 这些 人 讨厌 所有 的 外国人 . +She had an appointment with the doctor . 她 跟 醫生 預約 看診 了 . +Can this be eaten ? 这个 能 吃 吗 ? +What a good idea ! 多 好 的 主意 啊 ! +Could you send me a brochure ? 你 能 寄 宣傳冊 給 我 嗎 ? +Christmas is soon , is not it ? 聖誕節 很快 就 到 了 , 不是 嗎 ? +She saddled him with the work . 她 強迫 他 做 這個 工作 . +I would like to go to the movies . 我 想 去 看 電影 . +Is there a hotel around here ? 附近 有 酒店 吗 ? +Tom says he is not feeling any better . Tom 说 他 感觉 不 舒服 . +I do not worry about the risk . 我 不 担心 风险 . +Where is Tom is classroom ? 湯姆 的 教室 在 哪裡 ? +It is dangerous to swim in this river . 在 這條 河裡 游泳 很 危險 . +I am too drunk to do that . 我 喝醉 了 , 做 不到 . +Let is go to the picnic . 讓 我們 去 野餐 . +Tom smiled at Mary , and she smiled back . 汤姆 对 玛丽 笑了笑 , 她 也 笑 着 回应 了 . +Where is your dog ? 你 的 狗 在 哪里 ? +She hated him . 她 恨 他 . +I am currently a teacher at this school . 我 现在 在 这 所 学校 任教 . +I had her sweep my room . 我 讓 她 打掃 了 我 的 房間 . +My father likes pizza very much . 我 父親 非常 喜歡 披 薩 . +Tell Tom I will be there in a minute . 告诉 Tom 我 将 在 一分钟 内 到达 这里 . +How many times have you seen this ? 你 看 这 看 了 多少 次 ? +Old dogs can learn new tricks . 老 的 犬 可以 学 新 的 诡计 . +Edison invented the electric lamp . 愛迪生 發明 了 電燈 . +The dog is dead . 这条 狗 死 了 . +I won ! 我 赢 了 . +I heard her singing . 我 听见 她 唱歌 了 . +Did you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +I know that I know it , but I can not remember it . 我 知道 我 知道 它 , 但 我 想不起 來 了 . +Algebra is my favorite subject . 代數 是 我 最 喜歡 的 科目 . +Are you a college student ? 你 是 大学生 吗 ? +Tom clenched his fists . 汤姆 握紧 了 他 的 拳头 . +Why are you so smart ? 为什么 你 的 脑袋 那么 聪明 呢 ? +I have already considered that possibility . 我 已经 考虑 过 那种 可能性 了 . +Please add my name to the list . 請 把 我 的 名字 加在 名單 上 . +I 'd like another beer . 我 想 再 来 一杯 啤酒 . +I am the one who has to do this . 我 是 必須 去 做 這事 的 人 . +Should not you be studying ? 你 不 应该 在 学习 吗 ? +I have a lot of regrets . 我 觉得 太 遗憾 了 . +Everything is normal . 一切正常 . +Doctors refused to perform a second operation . 医生 们 拒绝 做 第二次 手术 . +Let is see what is in the box . 看看 我 會 在 盒子 裡 找到 什麼 ? +He made me his own assistant . 他 让 我 做 他 的 助理 . +I tried to change her mind , but I could not . 我 試著 改變 她 的 心意 , 但 我 沒有 辦法 . +Where is the problem ? 哪裡 有 問題 ? +I would like to buy half a cake . 我 想 买 半个 蛋糕 . +Hi . 你好 . +I work for a shipping company . 我 為 一家 船運 公司 工作 . +I wish I had a car . 但 願 我 有 一輛 車 . +Why do you resent me ? 你 为什么 恨 我 ? +Raspberries are very expensive . 覆盆子 很貴 . +You seem to ask Tom a lot of questions . 你 看來 問 了 湯姆 很多 問題 . +Today , I am feeling a lot better . 我 今天 感觉 好多 了 . +I still have a question . 我 還 有 个 問題 . +I need you . 我 需要 你 . +What is your favorite radio station ? 你 最 喜歡 的 電台 是 什麼 ? +Would you mind if I used your car ? 如果 用 了 你 的 車 , 你 會 介意 嗎 ? +Be friendly . 友好 点 . +That is exactly what I have been telling Tom . 那 就是 我 告诉 汤姆 的 . +Turn back , please . 请 回来 . +I can not bend my right arm . 我 無法 彎曲 我 的 右 手臂 . +This has nothing to do with you . 跟 你 没 半 毛钱 关系 . +She is my older sister . 她 是 我 的 姐姐 . +There is a church near my house . 我家 附近 有 一座 教堂 . +He is afraid of snakes . 他 害怕 蛇 . +Is there anybody who can drive a car ? 有人 会 开车 吗 ? +He was almost hit by a car . 他 差點 被 一輛 汽車 撞上 了 . +Please turn off the lights . 請 關燈 . +Do you like this book ? 你 喜欢 这 本书 吗 ? +I am fairly confident I can do that . 我 相当 有 自信 我 能 做到 这 一点 . +Who are you waiting for ? 你 在 等 誰 ? +I think I know who did it . 我 認為 我 知道 是 誰 做 的 . +Tom has already hired a new lawyer . 湯姆 已經 雇 了 新律 師 . +I feel very sorry for your sister . 我 對 你 姐姐 感到 非常 遺憾 . +I want you out of my room . 我 想 讓 你 離開 我 的 房間 . +Tom did not tell me he did not know how to swim . 汤姆 没有 告诉 我 他 不会 游泳 . +I am so happy . 我 好 高興 . +Let him in . 让 他 进来 . +I need a lot of books . 我 需要 很多 書 . +She continued with the work . 她 繼續 工作 . +He blamed me for the accident . 他 為 這個 意外 指責 我 . +Do you know why she is so angry ? 你 知道 她 為 什麼 這麼 生氣 嗎 ? +The mechanic assembled the engine . 這 名 技師 組裝 了 這 台 引擎 . +You need not have taken an umbrella with you . 你 其实 没 必要 带 伞 . +She achieved great success in her business . 她 在 她 的 事業 上 取得 了 巨大成功 . +Would you like to have a drink before dinner ? 晚饭 前 您 想 喝一杯 吗 ? +A cat came out from under the desk . 一 隻 貓 從 桌 底下 出來 . +As for me , I have nothing to say . 以 我 之 见 , 我 无话可说 . +You are not a doctor . 您 不是 医生 . +Beginners should learn spoken English first . 初學者 應 先學 習口 說 英語 . +He is not what he used to be . 他 不再 是 以前 的 那个 他 了 . +You can not use this washing machine . 你 不能 用 這 臺 洗衣 機 . +Hey , can you turn the lights off ? 喂 , 你 能 把 灯 关掉 吗 ? +I had a pleasant dream last night . 我 昨晚 作 了 一個 好 夢 . +She plays tennis every Sunday . 她 每個 星期天 打 網球 . +When did it begin to rain ? 什么 时候 开始 下雨 的 ? +I wish to go to Hawaii . 我 希望 去 夏威夷 . +Where will you have lunch today ? 你 今天 將 在 哪裡 吃 午餐 ? +I asked her a difficult question . 我 問 了 她 一個 難題 . +We will fly there in 50 minutes . 50 分鐘 之內 我們 將 飛到 那裡 . +Hunger is the best sauce . 饑 餓 是 最好 的 調味品 . +Bread is made from flour . 面包 是 面粉 做 的 . +His lie got him into trouble when his boss discovered the truth . 当 他 老板 发现 真相 的 时候 , 谎言 给 他 带来 了 麻烦 . +His speech inspired all the boys . 他 的 演說 激勵 了 所有 的 男孩 . +This has been the driest six months in thirty years . 這 是 三十 年代 以來 最 乾旱 的 六月 . +Do not lie to Tom and me . 不要 对 我 和 汤姆 撒谎 . +She has very nice @-@ looking handwriting . 她 的 筆跡 很美 . +She decided to quit her job . 她 決定 辭去 工作 . +She has had to stay here . 她 不得不 待 在 这儿 . +I like shopping with Tom . 我 喜歡 跟 湯姆 購物 . +People still think Tom is a liar . 人们 仍然 认为 汤姆 说谎 . +Say hello to your father for me . 代 我 向 你 父親 問 好 . +They will not tell us anything . 他們 甚麼 也 不 會 告訴 我們 . +We must cancel our trip to Japan . 我們 必須 取消 我們 去 日本 的 旅行 . +Cut the chit @-@ chat and get to work . 別 閒 聊 了 , 開始 工作 . +You can hold my hand . 你 能握 我 的 手 . +Turtles are reptiles . 海龟 是 爬行动物 . +They have the same habits . 他們 有 相同 的 嗜好 . +Go on with your work . 繼續 工作 ! +He had to stay in bed . 他 得 卧床 休息 . +If it happened to Tom , it could happen to you . 如果 那 發生 在 Tom 身上 , 也 可能 會 發生 在 你 身上 . +I have just finished breakfast . 我 剛 吃 完 了 早 飯 . +I will arrange for someone to pick you up at your home . 我会 安排 一下 , 叫 个人 去 你家 接 你 . +She pulled him out of the mud . 她 把 他 从 烂泥 中 拽 出来 了 . +Traffic lights work all the time . 紅綠燈 一直 在 運作 . +Tom took a step back and fell . 湯姆 後 退一步 跌倒 了 . +Do you subscribe to any magazines ? 你 有訂 閱 任何 雜 誌 嗎 ? +I have some English books . 我 有 一些 英文 書 . +The old man got in her way . 這個 老人 擋 了 她 的 路 . +It is important to help each other . 重要 的 是 要 互相 幫助 . +Tom wrote Mary a long letter , but he did not send it to her . 汤姆 给 玛丽 写 了 封 长信 , 可是 没有 寄给 她 . +I like winter better than summer . 我 喜歡 冬天 勝 過 夏天 . +That is all I know about him . 这 就是 我 关于 他 知道 的 一切 . +Would you like another beer ? 再 来 一杯 啤酒 怎么样 ? +Iron the inside of collars first , and then the outside . 先 熨烫 领子 的 里面 , 然后 是 外面 . +I helped my father yesterday . 昨天 我 帮 了 我 爸爸 . +I can place the palms of my hands on the floor without bending my knees . 我 不用 曲 膝 就 能 把 我 的 手掌 放到 地上 . +I paid two thousand yen for the book . 我 用 两千 日元 买 了 这 本书 . +Above all , be patient . 尤其 是 要 有 耐心 . +It is not mine . 不是 我 的 . +I think the train will come soon . 我 想 火車 很快 就 會 來 了 . +Doctors have discovered some startling facts . 医生 发现 了 一些 令人吃惊 的 事实 . +Her son is a genius . 她 儿子 是 个 天才 . +I am looking for a place to sit . 我 正在 找 个 地方 坐下 . +Do you have a non @-@ smoking section ? 你們 有 非吸 煙區 嗎 ? +Tom did not tell me much about it . 汤姆 没 跟 我 说 太 多 关于 它 的 事 . +He may be jogging around the park . 他 可能 在 公園 周圍 慢跑 . +Have you ever written a blog ? 你 写 过 博客 吗 ? +He devoted the last years of his life to writing his autobiography . 他 晚年 致力 於 寫 自 傳 . +When I came home , I felt very hungry . 我 回到 家 的 时候 , 感觉 非常 饿 . +I think you are stupid . 我 认为 你 傻 . +I want to marry a girl like her . 我 想 和 一个 像 她 那样 的 女孩 结婚 . +I am afraid I have offended you . 我 怕 我 冒犯 了 你 . +I am not married to Tom . 我 没 跟 汤姆 结婚 . +I asked her out on a date . 我 請 她 出去 約 會 . +Turn right . 向右转 . +He left without saying goodbye . 他 不辭而別 . +What did you find out ? 你 發現 了 甚麼 ? +I miss you . I need to see you . Could I come over ? 我 想 你 . 我 需要 见 你 . 我 能 来 吗 ? +Without the sun , there would be no life . 沒有 太陽 就 沒有 生命 . +Go when you want . 你 想 走 的 时候 就 走 吧 . +I am not so brave . 我 没 那么 勇敢 . +Tom was not going to do anything to you . 汤姆 不 打算 给 你 做 任何 事 . +She plays tennis every day . 她 每天 都 打网球 . +You can not live without water . 沒有 水 你 不能 生活 . +There is no sugar . 没有 糖 . +I ran a race with him . 我 和 他 比賽 跑步 . +They all looked for the lost child . 他們 都 在 尋找 這個 失 蹤 的 孩子 . +The bell rings at noon . 正午 時分 鐘聲 響起 . +How was your weekend ? 你 週末 過 得 怎麼樣 ? +Rome is a city worth visiting . 羅馬 這個 城市 值得 一 遊 . +I do not like science . 我 不 喜欢 科学 . +Let is play tennis this afternoon . 讓 我們 今天下午 打 網球 . +I was expecting it ! 我 一直 在 期待 着 ! +One of your buttons has come off . 你 的 一個 按鈕 脫落 了 . +We must keep up the family traditions . 我们 必须 保持 家庭 传统 . +This is all he has to do . 這 是 所有 他 必須 做 的 事 . +I grew up near a river . 我 在 一條 河 的 附近 長大 . +I am a loser . 我 是 個 不成器 的 人 . +It is about to rain . 天 快要 下雨 了 . +Do you think Tom will show up ? 你 認為 湯姆會 出現 嗎 ? +Where are the strawberries ? 草莓 在 哪裡 ? +We are looking for a nice house to live in . 我们 在 找 一个 漂亮 的 屋子 住 . +Summers are very hot in Kyoto . 京都 的 夏天 很 热 . +Speaking English is difficult . 說 英語 很 難 . +I do not like big dogs . 我 不 喜歡 大 狗 . +This is a very important meeting . 這 是 個 很 重要 的 會議 . +You look as healthy as ever . 你 看 起來 健康 如昔 . +You do not have to work so hard . 你 不必 這麼 辛苦 地 工作 . +There is enough light to read by . 有 足夠 的 光線 讀書 . +Yes , of course . 是 的 , 當然 . +He is old enough to drive . 他 夠 開車 的 年紀 了 . +She is hiding the truth from us . 她 不让 我们 知道 真相 . +Someone is watching you . 有人 在 看著 你 . +How is the weather there ? 那儿 是 什么 天气 ? +You do not need to carry lunch with you . 你 不 需要 隨身 帶著 午餐 . +This chair has to be fixed . 这 张 椅子 需要 修理 . +We have only got one chance . 我们 只有 一次 机会 . +You will exist but you will never know what it is to live . 你 活着 , 但是 却 不 知道 为什么 活着 . +How many teams are there ? 那里 有 多少 队伍 ? +She waited for you for two hours . 她 等 了 你 兩個 小 時 . +He will play baseball tomorrow . 他 明天 將 打 棒球 . +She put sheets on her bed . 她 在 她 的 床上 鋪 了 床單 . +You get up early , do not you ? 你 很早 起床 , 不是 嗎 ? +I hate being alone on Valentine is Day . 我 讨厌 在 情人节 一 人 独处 . +Tom might be able to attend the meeting . 汤姆 可能 能 参加 会议 . +You can no longer hurt me . 你 不再 能 伤害 到 我 了 . +Hello ! 你好 . +It is going to rain soon . 天 快要 下雨 了 . +Japanese office workers work very hard . 日本 上班族 工作 得 非常 辛苦 . +Tom is certain to come on time . 汤姆 一定 会 准时 来 的 . +This car is easy to handle . 這輛 車 很 容易 操控 . +I will show you some pictures . 我 會 讓 你 看 照片 . +Move over . 腾 一下 地方 . +I am very busy this week . 这周 我 非常 忙 . +She asked me if anything was the matter . 她 问 我 是不是 发生 了 什么 事 . +Are you a high school student ? 你 是 高中生 嗎 ? +He made his way through the crowd . 他 設法 穿 過 了 人群 . +The skies are clear . 天空 很 清朗 . +We will only consent on that condition . 我们 只 会 在 那样 的 条件 下 同意 . +I am going out this afternoon . 今天下午 我 會 外出 . +She is getting better day by day . 她 一天 一天 地好 轉 . +Tom can not swim . 汤姆 不会 游泳 . +Now is the time to act . 现在 是 行动 的 时候 了 . +This is considered to be a matter of great importance . 这 被 认为 是 一件 大事 . +I have already changed my clothes . 我 已經 換 了 我 的 衣服 . +She tossed me grapes and I tried to catch them with my mouth . 她 朝 我 丢 葡萄 , 我 试 着 用 嘴 接住 它们 . +Do not let me down . 别 让 我 失望 . +Stop worrying . 别 担心 了 . +His record is a new world record in the 100 @-@ meter dash . 他 刷新 了 百米 短跑 的 世界 紀錄 . +This box is too bulky to carry . 這個 箱子 太 笨重 了 無法 攜帶 . +I have done enough already . 我 已经 做够 了 . +Tom has many cats . 湯姆 有 很多 貓 . +If I have misjudged you , I am terribly sorry . 如果 我 对 你 产生误解 , 我 实在 抱歉 . +I told her what should be done . 我 告诉 了 她 应该 做 什么 . +Do not waste your time . 别 浪费时间 . +How do I get my dog to eat dog food ? 怎么样 才能 让 我 的 狗 吃 狗 粮 ? +We are going to stay in Boston all month . 我們 整個 月 都 要 待 在 波士 頓 . +I bet Tom forgot . 我 打 賭 湯姆 忘 了 . +Please make three copies of each page . 请 把 每 一页 复印 三份 . +She loves chocolate , too . 她 也 喜欢 巧克力 . +They treat me like a child . 他们 把 我 当 小孩 . +Go outside and play now . 現在 出去 玩吧 . +I have a friend whose father is a famous novelist . 我 有 一位 父亲 是 著名 小说家 的 朋友 . +I agree . 我 同意 . +Why do not you talk to him ? 你 為 甚麼 不 跟 他 講 ? +I gave you a book . 我 给 了 你 一 本书 . +Tom did not know exactly what it was that Mary wanted him to do . 汤姆 不 知道 玛丽 到底 让 他 做 什么 . +Do not be late for school again . 不要 再上 學遲 到 了 . +I saw you kissing Tom . 我 看到 了 你 在 吻 汤姆 了 . +He forgot that he bought her a present . 他 忘记 给 她 买 过 一个 礼物 了 . +He is my brother , not my father . 他 是 我 哥哥 , 不是 我 爸爸 . +They are children . 他们 是 孩子 . +Have you all eaten ? 你們 吃飯 了 嗎 ? +What is going on with you ? 你 怎么 了 ? +She and I have nothing in common . 我 和 她 沒有 共同 之處 . +What are you doing ? 你 做 什麼 ? +I helped him with his homework . 我 幫 他 做 他 的 家庭 作業 . +I am from Boston . 他 來 自 波士 頓 . +I do not think I really have a problem . 我 不 認為 我 真的 有 問題 . +Read this book . 看 这 本书 . +This was the most interesting book that she had ever read . 這 是 她 讀 過 最 有趣 的 書 . +Next time I will come earlier . 下 一次 我 會 早 一點 到 . +There is nothing I can do about it . 我 对此 无能为力 . +How high can you jump ? 您 能 跳 多 高 ? +" I will do it tomorrow . " " You said that yesterday ! " “ 我 明天 再 做 . ” “ 这话 你 昨天 就 说 过 了 ! ” +I am sorry I do not agree with you on that matter . 很 抱歉 那个 问题 我 不 赞成 你 . +It has nothing to do with me . 它 跟 我 没关系 . +There is a computer on the table . 桌子 上有一 臺 電 腦 . +Tom put his hand over the microphone . 汤姆 把手 放在 麦克风 上 . +I 'd be thrilled to do that . 我 很 乐意 这么 做 . +My brother gave me a cute doll . 我 哥哥 給 了 我 一個 可愛 的 娃娃 . +The cost of living has risen . 生活 費 升高 了 . +He told me to wash my face . 他 叫 我 洗脸 . +There were a lot of people in the park . 公园 里 有 很多 人 . +When I opened the door , I broke the lock . 我 开门 的 时候 弄坏了 锁 . +A Japanese would not do such a thing . 日本 人 不 會 做 這種 事 . +The telephone rang several times . 電話 響 了 好 幾次 . +What time does the train for New York depart ? 去 纽约 的 火车 几点 出发 ? +I have so many clothes I do not know what to wear tomorrow . 我 有 那么 多 衣服 , 以至于 我 不 知道 明天 穿 什么 了 . +She looks young . 她 看起来 很 年轻 . +Study hard . 好好学习 . +Do I have to take this medicine ? 我 必須 吃 這個 藥 嗎 ? +I lent Tom my camera . 我 把 我 的 相機 借給 了 湯姆 . +I began playing golf years ago . 幾 年前 我 開始 打 高爾夫 球 . +I do not mind if it is hot and spicy . 辣 点儿 没关系 . +This T @-@ shirt is too small for me . 這件 T 卹 太小 了 . +You are probably smarter than you think . 你 可能 比 你 想 的 更 聪明 . +I got up early as usual . 我 和 往常 一样 起得 很早 . +A cornered rat will bite a cat . 窮鼠 囓狸 . +He asked her to marry him , and she accepted . 他 向 她 求婚 , 而 她 同意 了 . +You disappointed me . 你 让 我 失望 了 . +You are too drunk to drive . 你 酒 喝 得 太 醉 了 不能 開車 . +I have always been proud of you . 我 一直 以 您 为 荣 . +He sang some old songs . 他 唱 了 些 老歌 . +I am sure that it will be fun . 我 确定 它 将 会 很 有趣 +He is crazy about soccer . 他 酷爱 足球 . +You were late for work . 你 上班 迟到 了 . +He selected a Christmas gift for her . 他 給 她 選 了 件 聖誕 禮物 . +What do you think should be done about it ? 你 觉得 对此 该 做 什么 ? +Let me think for a while . 讓 我 思考 一下 . +It is almost midnight here . 這裡 已經 是 午夜 了 . +I , for one , am for the plan . 就 個 人 而言 , 我 贊同 這個 計劃 . +He interrupted our conversation . 他 打断 了 我们 的 谈论 . +I called her up . 我 叫 她 起来 . +How long did it take you to translate this book ? 你 用 了 多少 时间 来 翻译 这 本书 ? +He does not eat raw fish . 他 不吃 生鱼 . +How tall is your youngest brother ? 你 最小 的 弟弟 身高 多 高 ? +He knows how to captivate his audience . 他 知道 如何 去 吸引 他 的 聽眾 . +I will take him . 我会 去 接 他 的 . +Why are you asking me ? 你 為 什麼 問 我 ? +I will help you escape . 我会 帮 你 逃跑 的 . +We will play soccer after school . 我們 放學 後 會 去 踢足球 . +You should not tell him anything about her . 你 不 應該 告訴 他 任何 關於 她 的 事 . +Soccer is more popular than tennis . 足球 比 網球 更 受歡 迎 . +All you can do is trust one another . 你们 除了 信任 对方 , 没什么 要 做 的 了 . +The road is too narrow for cars . 這 條路 太 窄 汽車 無法 通行 . +We got an interesting piece of information . 我們 得到 了 一份 有趣 的 情報 . +It was impossible to find an answer . 不 可能 找 得到 答案 . +You are a good person . 您 是 一個 好人 . +She was busy with household work . 她 忙 於 家務 . +No one thinks Tom will win the race . 沒人 認為 湯姆賽 跑 會 贏 . +The strong wind indicates that a storm is coming . 強 風 暗示 著 即 將 到 來 的 暴雨 . +Sometimes I can not help myself . 有时候 我 帮不了 自己 . +The police assembled a lot of evidence against him . 警察 收集 了 很多 对 他 不利 的 证据 . +I have nothing more to do today . 我 今天 沒有 更 多 的 事 要 做 的 了 . +He had the right idea . 他 的 想法 是 对 的 . +Tom hoped that Mary would not die . 汤姆 希望 玛丽 别 死 . +Tom admitted to spilling the red wine . Tom 承认 了 他 摔 了 红酒 . +Did you know that some foxes lived on this mountain ? 你 知道 有些 狐狸 住 在 這 座 山上 嗎 ? +Is everybody ready ? 所有人 都 准备 好了吗 ? +She left here in a hurry . 她 匆忙 地 離開 了 這裡 . +The criminal has not been caught yet . 那個 犯人 還 沒 被 抓到 . +The village has no electricity . 村里 没 通电 . +My father has five brothers and sisters . 我 父親 有 五個 兄弟姐妹 . +Do you have any smaller sizes ? 你 有 任何 比較 小 的 尺寸 嗎 ? +Let is try it out . 我们 试试 . +We need one more spoon . 缺 一把 勺子 . +We gave the car a push . 我們 推 了 車 . +You know what I want to hear . 你 知道 我 想 聽 甚麼 . +What woke you up ? 什麼 吵醒 你 了 ? +I like to ride on trains . 我 喜歡 乘坐 火車 . +A card was attached to the gift . 一張 卡片 被 附在 了 禮物 上 . +On the whole , the event was successful . 整體 而言 , 這個 事件 是 成功 的 . +I am very sleepy . 我 非常 困 . +I am really bad at this . 我 实在 不 擅长 这个 . +Tom is quite thin , is not he ? 汤姆 真瘦 , 不是 么 ? +Lawyers are all liars . 律师 都 是 骗子 . +I can not stand that noise . 我 不能 忍受 那個 噪音 . +Tom turned right when he should have turned left . 汤姆 本该 往 左转 却往 右转 了 . +Crocodiles have sharp teeth . 鳄鱼 有 尖利 的 牙齿 . +I usually go to school by bus . 我 經常 搭 公車 上 學 . +Tom is a very talented writer . 汤姆 是 个 很 有 才华 的 作家 . +True love never grows old . 真 愛 不 會 變 老 . +My mom gets out of bed before me . 我 媽媽 比 我 早起 . +Please shut the door behind you . 請 隨手 關門 . +This is the worst hotel in town . 這 是 城裡 最 糟糕 的 旅館 . +I got to the station this morning . 我 今天上午 到 了 車站 . +We elected her chairperson . 我們 選 她 為 主席 . +Take good care of yourself . 照顾 好 你 自己 . +I think so . 我 想 是 這樣 的 . +My room is very small . 我 的 房間 很小 . +His uncle died five years ago . 他 的 叔叔 五年 前 去世 了 . +Man is the only animal that talks . 人类 是 唯一 彼此 交谈 的 动物 . +Please put those chairs away . 請 把 那些 椅子 放好 . +That is a good question . 那 是 一個 很好 的 問題 . +It appears that she had a nice time at the party . 看來 她 似乎 在 派 對 上 玩 得 很 開心 . +I have been coming to work one train earlier lately . 我 已經 搭 了 最近 比較 早 一點 的 火車 來 上班 . +Let is stop at the next gas station . 我们 在 下 个 加油站 停 一下 . +Maybe we should talk . 大概 我们 需要 交谈 . +You can stay as long as you like . 你 想要 待 多久 就 待 多久 . +Your English is improving . 你 的 英語 正在 進步 . +Tom hugged Mary . 汤姆 拥抱 了 玛丽 . +Neither Tom nor I did that . 汤姆 和 我 都 没有 那么 做 . +They know nothing . 他們 什麼 都 不 知道 . +He went to the dentist . 他 去 看 牙医 了 . +All the flowers in the garden withered . 所有 花園 裡 的 花朵 都 枯萎 了 . +Thank you very much for everything . 非常 感謝 你 所 做 的 一切 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 如何 到 火車 站 嗎 ? +She followed him home to find out where he lived . 她 跟 他 到 家 , 以 知道 他 住 哪 . +Their wedding is tomorrow . 他們 明天 舉行 婚禮 . +Spring is just around the corner . 春天 就要 来 了 . +You are lucky to have such a good job . 你 很 幸運 能有 這麼 好 的 工作 . +I remember meeting her somewhere . 我 記得 我 在 某個 地方 見 過 她 . +My brother is small but strong . 我 哥哥 雖然 矮小 可是 很 強壯 . +Do you really need a car ? 你 真的 需要 车 吗 ? +We woke up very early in order to see the sunrise . 我们 起得 很早 为了 看到 日出 . +I do not sleep well . 我 睡 不好 . +Do you like spinach ? 你 喜歡 菠菜 嗎 ? +How do you want your hair cut ? 你 想 將 頭 髮 剪成 怎樣 ? +I am in trouble . 我 有 麻煩 了 . +What time does the first train leave ? 第一班 火车 什么 时候 出发 ? +I have heard nothing from him yet . 我 沒 有 他 的 任何 消息 . +Tom disappeared . 汤姆 不见 了 . +She climbed down from the roof . 她 从 屋顶 上 下来 了 . +Water turns into steam when it is boiled . 水 沸腾 后 变为 蒸汽 . +I would like to help you . 我 愿意 帮 你 . +I do not like her . 我 不 喜歡 她 . +They grow strawberries in their greenhouse . 他們 在 他們 的 溫室 裡 種 植 草莓 . +He can swim very fast . 他 能 游 得 很快 . +You have no right to do that . 你 無權 那麼 做 . +We are having lunch . 我們 在 吃 午餐 . +We need your help . 我們 需要 你 的 幫忙 . +He traveled around the country . 他 周遊 全國 各地 . +The leaves fell . 叶子 落 了 . +Visitors to Switzerland admire the Alps . 遊客 到 瑞士 欣賞 阿爾 卑斯山 . +I told you to get out . 我 告诉 过 你 出去 . +Would you like me to take a look ? 你 能 让 我 看看 吗 ? +Let is go back to lesson three . 让 我们 回到 第三课 . +He has a good appetite . 他 的 胃口 很 好 . +Tom is our oldest son . 汤姆 是 我们 最大 的 儿子 . +Thank you for drawing a bird for me . 謝謝 你 為 我 畫 鳥 . +Can you wake me up at seven o 'clock tomorrow morning ? 你 明天 早上 七點 可不可以 叫 我 起床 . +She gave me whatever help I needed . 她 給 了 我 任何 我 需要 的 幫助 . +I wish I had not said that at the party . 我 希望 我 在 聚會 上 沒 說 過 那話 . +What time does it start ? 什么 时候 开始 ? +He himself did it . 是 他 自己 做 的 . +Tell me when to stop . 告訴 我 甚麼 時候 停下 . +What were you up to last night ? 你 昨天晚上 做 什麼 ? +Tell me again where you live . 再 跟 我 說 一次 , 你 住 哪 ? +Our eyes take time to adjust to the dark . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +A man must work . 男人 应该 工作 . +Does Tom have a girlfriend ? 湯姆 有 女朋友 嗎 ? +Better late than never . 迟 做 总比 不 做好 . +Does not Tom go to Australia every month ? 汤姆 不是 每个 月 都 去 澳大利亚 吗 ? +Who told you that Tom and I are dating ? 谁 告诉 你 我 和 汤姆 在 交往 的 ? +It seems as if I am the only person here capable of doing it . 看来 我 是 这里 唯一 有 能力 做 这件 事 的 人 . +I do not like this idea . 我 不 喜歡 這個 主意 . +The train is due to arrive at noon . 火車 該 在 中午 到 . +The sheet is on the bed . 床单 在 床上 . +I really need a drink now . 我 现在 真 需要 来 杯 喝 的 . +The couple had a son . 这 对 夫妇 生 了 个 儿子 . +Tom needs to see you in ten minutes . 湯姆 需要 在 十分 鍾 內 見 到 你 . +I go into town every weekend . 我 每 周末 都 会 去 市区 . +He told us an interesting story . 他 告訴 了 我們 一個 有趣 的 故事 . +Put the gun on the table . 把 槍 放在 桌子 上 . +The museum is open from Monday to Friday . 博物馆 周一 到 周五 开门 . +Yes , I have a good idea . 是 的 , 我 有 一個 好 主意 . +I borrowed Tom is phone this morning . 我 今天 早上 跟 Tom 借手 機 . +I thought it best to remain silent . 我 想 最好 還是 保持沉默 . +What newspaper do you subscribe to ? 你 訂閱 了 什麼 報紙 ? +The law is not always fair . 法律 並 不 總是 公平 的 . +War broke out in 1941 . 战争 于 1941 年 爆发 . +Tom is not a good person . 湯姆 不是 好人 . +I have never been this happy before . 我 从未 这么 高兴 . +She cut the apple with a knife . 她 用 刀子 切 蘋果 . +We accept your challenge . 我們 接受 你們 的 挑戰 . +I do not like this jacket . 我 不 喜歡 那件 夾克 . +Do not underestimate my power . 不要 低估 我 的 力量 . +Everyone is here except for him . 除了 他 每個 人 都 在 這裡 . +Fur coats are on sale . 毛 皮大衣 在 打折 . +I want to drink something cold . 我 想 喝 冷 飲 . +I am going to propose to her . 我 打算 向 她 求婚 . +We could see nothing but fog . 除了 雾 我 看不见 任何 东西 . +Where is the nearest police station ? 最近 的 警察局 在 哪里 ? +What did you open it with ? 你 用 什么 打开 的 ? +What do you usually do after dinner ? 你 通常 晚 飯 後 做 什麼 ? +My father neither smokes nor drinks . 我 的 父親 不 抽 菸 也 不 喝酒 . +Drive carefully . 安全 地 駕駛 . +Tom suddenly looked concerned . 湯姆 突然 看 起來 在 擔心 . +The project is ongoing . 该 项目 正在 进行 中 . +I found it easy to speak English . 我 發覺 說 英語 很 簡單 . +He cleaned his room on Sunday . 他 在 週日 打掃 他 的 房間 . +Fish cannot live out of water . 魚離 開水 就 無法 生存 . +Some of my friends can speak English well . 我 的 一些 朋友 英语 说 得 很 好 . +I would do it if I could . 我 如果 能 做 就 做 了 . +He will be a good husband to my sister . 他 会 是 我 妹妹 的 好 丈夫 的 . +I want to see a movie . 我 要 去 看 電影 . +I take a bath every day . 我 每天 洗 一次 澡 . +I am your partner . 我 是 你 的 夥 伴 . +What is Tom so angry about ? 湯姆 為 了 甚麼 生氣 ? +I let Tom watch a little TV after he finished his homework . 我 让 Tom 在 做完作业 后 看 一点 电视 . +Bring it to me . 把 它 带给 我 . +My job is washing dishes . 我 的 工作 是 洗盤子 . +Tom should have known better . 汤姆 应该 更 清楚 . +She is my daughter . 她 是 我 女儿 . +Do you know what I mean ? 你 知道 我 的 意思 嗎 ? +I have no intention of resigning . 我 無意 辭職 . +I know why you are happy . 我 知道 你 为什么 高兴 . +The tablecloth is in the cabinet . 桌布 在 櫥櫃 裡 . +My legs are smaller than yours . 我 的 腿 比 你 的 小 . +Tom does not trust the police . 湯姆 並 不 信任 警察 . +He was born on July 28th , 1888 . 他 出生 於 1888 年 7 月 28 日 . +The fire alarm rang . 火警 警报 响 了 . +What happened here ? 这儿 发生 了 什么 事 ? +It really comes in handy . 這 真的 能派 上 用場 . +I wish I could swim . 我 希望 我 會 游泳 . +No problem at all ! 没有 任何 问题 ! +Is breakfast included ? 包括 早饭 吗 ? +I want to be as tall as Tom . 我 想 和 Tom 一樣 高 . +Not everyone who lives here is rich . 並 不是 每個 住 在 這裡 的 人 都 是 富有 的 . +Tomorrow , he will land on the moon . 明天 他 会 在 月球 降落 . +Did you notice anything strange ? 你 注意 到 奇怪 的 地方 了 嗎 ? +You should run for city council . 你 应该 去 竞选 城市 委员会 . +If you do not behave , Santa will not come . 你 一旦 不 做 个 乖孩子 , 圣诞老人 就 不会 来 噢 . +I know you are upset . 我 知道 你 难过 . +At night , she gazed at the moon . 她 在 夜晚 望著 月亮 . +She is neither rich nor famous . 她 既 没钱 , 也 不 出名 . +You will understand someday . 你 有 一天 會 明白 . +A fire broke out in my neighborhood last night . 昨晚 我 领 居家 着火 了 . +What language is spoken in Egypt ? 在 埃及 说 什么 语言 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +He applied himself to the study of music . 他 潛心 研究 音樂 . +Your dog is very big . 你 的 狗 非常 胖 . +What does this mean ? 这 是 什么 意思 ? +Do you have a garage ? 你 有 車庫 嗎 ? +The teacher lined the children up in order of height . 老师 按照 身高 给 孩子 们 排队 . +Can we lock this door ? 我們 能 鎖 門 嗎 ? +Did you go anywhere during the summer vacation ? 这个 暑假 你 有 去 哪儿 玩 吗 ? +Can I borrow your car tonight ? 我 今晚 可以 借 一下 你 的 车 吗 ? +Tom will never see you again . 汤姆 再也不会 见 你 了 . +I have eight brothers and sisters . 我 有 八個 兄弟姐妹 . +You look very dignified . 你 看 起來 很 威嚴 . +He realized his dream of becoming an artist . 他 實現 了 當 兿 術 家 的 梦想 . +I hope you have sweet dreams . 祝 你好 梦 . +Keep away from the electrical equipment . 遠離 電器 設備 . +I got him to polish my shoes . 我 要 他 擦亮 我 的 皮鞋 . +This is never going to end . 這個 永遠 結束 不了 . +Would you like some more gravy ? 你 想 再 來 些 醬汁 嗎 ? +Do you plan to go overseas ? 你 打算 出國 嗎 ? +We will know the truth before long . 我們 不久 將 知道 真相 . +I just said something very stupid . 我 刚 说 了 很蠢 的话 . +Do not talk to me like this . 不要 这样 对 我 讲话 . +Are you busy now ? 現在 您 忙 嗎 ? +I had lost my pen . 我 弄 丟了 我 的 筆 . +I can only speak for myself . 我 只能 代表 我 自己 講 話 . +He lives in a village near Osaka . 他 住 在 大阪 附近 一座 鎮 上 . +Listen and listen carefully . 听 而且 听 仔细 . +I want more detailed information . 我 要 更多 詳細 的 訊息 . +When did you begin playing golf ? 你 什麼 時候 開始 打 高爾夫 球 ? +I am going to take a bath . 我 打算 洗 个 澡 . +Do you feel like going swimming ? 你 想 去 游泳 嗎 ? +Would you like to go ? 你 想 去 嗎 ? +Clean the window with a damp cloth . 用 濕布 清潔 窗戶 . +Switzerland is a beautiful country . 瑞士 是 一個 美麗 的 國家 . +Tom has been wounded . Tom 负伤 了 . +I feel as if I have woken up from a nightmare . 我 覺得 我 好像 從 惡 夢 中 驚醒 . +She is now eighty @-@ one years old . 她 現在 八十一 歲 了 . +It does not matter . 没关系 . +I think this medicine will do you good . 我 想 这 药会 对 您 有 好处 的 . +Agriculture consumes a great amount of water . 农业 需要 消耗 的 大量 水 . +How will we protect ourselves ? 我們 怎麼 保護 自己 ? +I like to take a walk after meals . 我 喜欢 饭后 散步 . +Tom began to learn French about three years ago . 汤姆 大约 三年 前 开始 学法语 . +There are many endangered species . 有 許多 瀕 危 物种 . +Once he had written the letter , he sent it . 信 一 写 好 , 他 就 把 它 寄 了 . +Hang on ! 等 一下 ! +I just knew you would say that . 我 就 知道 你 会 这么 说 . +He wants to be a tennis player . 他 想 成為 一名 網球 選手 . +What were you doing this morning ? 今天 早上 你 在 做 什么 ? +I can play Chopin . 我 會 彈 蕭邦 . +Tom is very good at doing things with his hands . 汤姆 善于 动手 做事 . +He was late for school yesterday . 他 昨天 上学 迟到 了 . +You just saved me a lot of time . 你 省 了 我 好多 時間 . +Keep on smiling . 保持 微笑 . +How many plates do we have ? 我們 有 多少 個盤子 ? +He does not have a job . He is retired . 他 没有 工作 , 他 退休 了 . +I belong to a tennis club . 我 是 网球 俱乐部 的 会员 . +I intend to study abroad next year . 我 打算 明年 出國留學 . +I still live at my dad is place . 我 還 住 在 我 父親 的 房子 裏 . +A friend of mine came to see me during the day . 我 的 一個 朋友 在 白天 的 時候 來看 我 . +I have got time . 我 有 时间 . +I am glad to see you again . 很 高興 再次 見 到 你 . +I thought Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He is doing his best . 他 在 全力以赴 . +I want to see him very much . 我 非常 想 见到 他 . +Tom looks very happy . 汤姆 看起来 非常 开心 . +My cats will love this . 我 的 猫会 爱 上 这个 . +I am worried about Tom . 我 在 為 湯姆 擔心 . +This noise is driving me crazy . 這個 噪聲 快 把 我 逼 瘋 了 . +I want you to open the window . 我 要 你 把 窗戶 打開 . +The visitor sat across from me . 訪客 坐在 我 的 對面 . +Were you serious about that ? 你 对 那 是 认真 的 吗 ? +Tom is never going to cry . 汤姆 永远 不会 哭 . +She dreamed that she was a princess . 她 梦见 她 是 一个 公主 . +My mother did nothing but weep . 我 的 母亲 只是 默默地 哭泣 . +There are seven men and four women in my section . 在 我 的 部门 里 有 七 男 四女 . +Whose book is this ? 這 是 誰 的 書 ? +Tom is parents were not particularly pleased . 汤姆 的 父母 不是 特别 高兴 . +This is what Tom would want me to do . 這 是 湯姆會 想 讓 我們 做 的 . +My aunt made me a new skirt . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +I wanted to show it to you . 我 想 把 它 給 你 看 . +I will give you a ring . 我会 打电话 给 你 . +Politics leaves him cold . 他 對 政治 沒有 興趣 . +He and I were inseparable friends during our time together in school . 我 和 他 在 學生 時代 是 分不開 的 朋友 . +I almost did not meet her . 我 幾乎 沒有 遇見 她 . +Can you guess what I have here ? 你 能 猜到 我 有 什么 吗 ? +You make life worth living . 你 讓 生命 值得 活下去 . +Fill the bucket with water . 把 水裝 滿 桶子 . +Keep your eyes open . 睜 大 你 的 眼睛 . +The child had no overcoat on although it was very cold . 尽管 天气 很 冷 , 孩子 却 没有 大衣 穿 . +I am developing an Android application . 我 正在 开发 一个 安卓 应用 . +The dog was sleeping on the mat . 狗 在 地毯 上 睡觉 . +Look what happened . 看看 發生 了 什麼 . +Turn on the radio , please . 请 打开 收音机 . +It is a pity they are getting divorced . 很 遗憾 他们 离婚 了 . +Why are not you married yet ? 你 为啥 还 不 结婚 ? +I plan to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +He played tennis all day long . 他 整天 打 網球 . +Tom went down the hill . 汤姆 走 下 山坡 . +You 'd better take an umbrella with you in case it rains . 以防 下雨 你 最好 带 把 伞 . +They went in opposite directions . 他們 往 相反 的 方向 去 . +Where did you go yesterday ? 你 昨天 去 哪裡 了 ? +How can I get to the police station ? 我 怎么 去 警察局 ? +Is it all there ? 全都 在 那裡 嗎 ? +The boy was naked to the waist . 男孩 赤裸 着 上身 . +Could you tell me what my choices are ? 你 能 告訴 我 我 的 選項 是 甚麼 嗎 ? +I would like mine rare . 我 的 牛排 要生 的 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 情緒 化 是 不好 的 . +Tom likes hot curry . 湯姆喜 歡辣 咖哩 . +I forgot to telephone him today . 我 今天 忘 了 打 電話 給 他 . +Mary placed her baby in a car seat for the flight . 航程 中瑪麗 把 她 的 寶寶 放在 嬰兒 汽車 座椅 上 . +Are you a bachelor ? 你 是 单身 吗 ? +This should be a lot of fun . 這 應 該 很 有意思 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +He had his socks on inside out . 他 将 袜子 的 里外 穿反 了 . +She made faces at that woman . 她 對 那個 女人 做 了 鬼 臉 . +It seems to me that she is a little selfish . 我 觉得 她 有点 自私 . +I thought that Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +A trip to America was equivalent to a two @-@ year salary for her . 去 美国 旅行 一次 相当于 她 两年 的 工资 . +The cab driver was not seriously injured . 出租车 司机 没有 受 重伤 . +That is a lot of cash . 那 是 很多 錢 . +Ca not you stay a little longer ? 你 不能 待 久 一點 嗎 ? +Tom closed his eyes and began to count sheep . 汤姆 闭上 了 眼睛 开始 数羊 . +We are heroes . 我們 是 英雄 . +Mary plays the piano . 瑪麗彈 鋼琴 . +You should always tell the truth . 你 應 該 永遠 說 實話 . +My dad died before I was born . 我 出生 前 , 我 父亲 就 死 了 . +Has not Tom told you anything ? 汤姆 什么 都 没 告诉 你 吗 ? +She scolded her son for being lazy . 她 罵 她 的 兒子 懶惰 . +A Mexican taught him Spanish . 一個 墨西哥人 教 了 他 西班牙文 . +Which is heavier , lead or gold ? 哪個 比較 重 , 鉛 還 是 黃金 ? +What is learned in the cradle is carried to the tomb . 幼年 時學 的 東西 , 一輩子 不 會 忘 記 . +When he was a child , he would go fishing on Sundays . 他 小时候 , 星期天 会 去 钓鱼 . +Tom is Mary is former husband . 湯姆 是 瑪麗 的 前夫 . +I think that it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Do not interrupt our conversation . 不要 打斷 我們 的 談話 . +You should be a diplomat . 你 应该 做 一个 外交官 . +She usually sleeps for eight hours . 她 通常 睡 八個 小 時 . +I will go to Hokkaido tomorrow . 我 明天 要 去 北海道 . +When she saw that they had no schools , she started one . 当 她 发现 他们 还 没有 学校 , 她 就 办 了 一个 . +The sun went below the horizon . 太陽 落到 地平線 下 了 . +I am a citizen of the world . 我 是 世界 公民 . +I want you to help us find out who killed Tom . 我 想 讓 你 幫 我們 查出 來 誰 殺 了 湯姆 . +Do you have a red pencil ? 你 有 紅色 的 鉛 筆 嗎 ? +Tom can not sleep without a light on . Tom 没 办法 在 没有 亮灯 的 时候 入睡 . +I think exams ruin education . 我 认为 考试 破坏 教育 . +Tom just got divorced , too . 湯姆 也 剛 離婚 . +I woke up at five this morning . 我 今天 早上 五點 醒來 . +Reporters do not hesitate to intrude into people is privacy . 记者 没有 犹豫 地 去 干涉 了 人们 的 私生活 . +Tom was already at work . 湯姆 已經 在 上班 了 . +She won many competitions . 她 贏 了 許多 比賽 . +I have a very sore arm where you hit me . 你 打 在 我 手臂 上 的 地方 超级 痛 . +I took off my hat and entered the church . 我 摘下 帽子 进 了 教堂 . +Tom was buried Monday . 汤姆 在 周一 被 埋 了 . +Has Tom gone insane ? Tom 瘋 了 嗎 ? +Would you please turn the TV off ? 请 把 电视机 关掉 好 吗 ? +We sometimes meet them . 我們 有 時會 見到 他們 . +What grade is your sister in ? 你 的 妹妹 唸 幾 年 級 ? +I do not like summer . 我 不 喜欢 夏天 . +I can call Tom if you want . 如果 你 想要 的话 , 我 可以 打电话 给 汤姆 . +Is the door open ? 門 開著 嗎 ? +They will tear down the old building in two days . 他們 將 在 兩天 內 拆除 這棟 舊 的 建築物 . +Tom lied . 汤姆 说谎 了 . +Fasten your seat belt , please . 請 繫 好 安全 帶 . +My father is too busy to take a walk . 我 父親 太 忙 而 無法 去 散步 . +She liked tennis and became a tennis coach . 她 喜欢 网球 并 成为 了 一个 网球 教练 . +Let is go ! 我們 走 吧 ! +In a crisis , you must get in touch with your teacher . 在 危險 的 時候 你 必須 跟 你 的 老師 聯 繫 . +She always looked happy , but never was . 她 總是 看 起來 很快 樂 , 但 實際 上 從來 不快 樂 . +Merry Christmas ! 聖誕 快樂 . +You must return the book to him . 这 本书 你 该 还给 他 . +I am quite satisfied with my life . 我 对 我 的 人生 很 满意 . +I do not mind if you go to bed before I get home . 我 不介意 你 在 我 回到 家 之前 先 去 睡觉 . +Do you believe in God ? 你 相信 上帝 吗 ? +Something may have happened to him . 他 可能 發生 了 什麼 事情 . +He will be back in ten minutes . 他 十分 鐘 後 會 回來 . +He got engaged to my cousin . 他 和 我 的 堂姊妹 订婚 了 . +Look out for pickpockets . 小心 扒手 . +A friend in need is a friend indeed . 患難 見 真情 . +Is this snake safe to touch ? 摸 這條 蛇 安全 嗎 ? +You make me feel so guilty . 你 讓 我 感到 很 內疚 . +You can not keep a secret . 你 不能 有 秘密 . +I want to go to see a movie . 我 要 去 看 電影 . +Graham Greene is a favorite author of mine . 格雷厄姆 葛林 是 我 最 喜歡 的 作家 之一 . +She makes herself up every morning . 她 每天 早上 自己 起床 . +It is easy for monkeys to climb trees . 猴子 爬树 容易 . +Look back ! 回头 看 ! +It is pretty heavy . 它 真 重 . +I could have told you that . 我 應該 告訴 過 你 了 . +He accomplished his mission . 他 完成 了 他 的 使命 . +You want to remain anonymous . 你 想 保持 匿名 身份 . +Tom is wearing gloves . 汤姆 戴 着 手套 . +She will care for you from now on . 从 现在 开始 , 由 她 来 照顾 你 . +Wires are used to convey electricity . 電線 被 用來 運送 電力 . +Tom will not be able to do that job . 汤姆 做不了 那 项 工作 +With your approval , I would like to offer him the job . 如果 您 同意 , 我 想 給 他 這份 工作 . +Do not put anything on top of the box . 盒子 上面 不要 放 任何 東西 . +Do you really think that Tom will not come ? 你 真的 认为 汤姆 不会 去 吗 ? +She made room for an old lady . 她 讓 座 給 一位 老太太 . +I just wanted to prove to myself that I could do this . 我 只 想 向 自己 证明 我 可以 做到 . +I told you not to talk about the matter in her presence . 我 跟 你 说 过 她 在 的 时候 不要 说 这件 事 . +We must not break our promise . 我們 不能 違背 我們 的 承諾 . +I will not be here tomorrow . 我 明天 不 在 这儿 . +Can I try this on ? 我 能 试一下 吗 ? +Please speak more clearly . 请 说 得 更 清楚 些 . +I washed the dishes after supper . 晚饭 后 我 洗 了 餐具 . +He is a DJ . 他 是 一个 DJ . +She will be the first Japanese woman astronaut . 她 將 會 成為 日本 第一 個 女性 太空 人 . +None of the telephones are working . 所有 的 電話 都 不通 . +My uncle lives near the school . 我 叔叔 住 在 学校 附近 . +Get them before they get us . 先下手为强 , 后 下手 遭殃 . +Mom is getting dinner ready . 媽媽 快 把 晚餐 準備 好 了 . +Tom has an old car . 湯姆 有 輛 舊車 . +I hope he will be able to come ! I would like to see him . 我 希望 他 能 來 ! 我 想 見 他 . +Approximately thirty young people attended . 约 有 三十个 年轻人 到 了 . +Can you help me find a job ? 你 能 幫 我 找 一個 工作 嗎 ? +Please tell me your name . 請 告訴 我 你 的 名字 . +I stood waiting for a bus . 我 站著 等 公車 . +Have you checked our supplies recently ? 你 最近 检查 我们 的 补给 了 吗 ? +If it is not too expensive , I will do that . 如果 不是 太贵 的话 , 我会 买 的 +Speak clearly . 講 清楚 . +This is by far the best novel that has been published this year . 这 显然 是 今年 出版 的 最好 的 小说 . +You can trust him to keep his word . 你 可以 相信 他 会 信守诺言 . +Do you want to hear what I think ? 你 想 聽 聽 我 是 怎麼 想 的 嗎 ? +Stay out of the rain . 躲雨 . +Tom can not tell Mary his real feelings . 汤姆 不能 把 他 的 真实 感受 告诉 玛丽 . +She is a middle @-@ aged fat woman . 她 是 個 中年 胖女人 . +To the man who only has a hammer in the toolkit , every problem looks like a nail . 对 工具箱 里 只有 一把 榔头 的 人 来说 , 所有 的 问题 都 像 钉子 . +Tom wanted to see Mary is room . 湯姆 想 看看 瑪麗 的 房間 . +I know it is time to go , but I want to stay longer . 我 知道 該 走 了 , 但 我 想 留 久 一點 . +My mother gets up early every morning . 我 媽媽 每天 早上 早起 . +I will treat you to dinner . 晚饭 我 请客 . +Dinner will be ready by six @-@ thirty . 晚餐 將 在 六點 半前 開飯 . +My team is always losing . 我们 队 总是 输 . +He was unsure how he would get there , and when . 他 不 确定 他 怎么 到 哪里 , 以及 什么 时候 . +She thought of a good solution . 她 想到 了 一个 好 的 解决办法 . +I do not know whether she will come . 我 不 知道 她 是否 會來 . +She has always lived in Otaru . 她 一直 住 在 小 樽 . +This is the real world . 這 是 真實 的 世界 . +You will have to wait and see . 你 得 等一等 看 . +Are you saying you do not want to go to Tom is party ? 你 的 意思 是 你 不想 去 汤姆 的 派对 ? +I worry about him . 我 擔心 他 . +I have been looking for my tripod . 我 一直 在 找 我 的 三腳 架 . +We are going to set up shelters . 我们 要 建立 避难所 . +I met her on campus yesterday . 我 昨天 在校 園裡 遇到 了 她 . +They want this . 他們 想要 這個 . +Why are we wasting time with this ? 为什么 我们 在 这 上面 浪费时间 ? +I need it ASAP . 我 尽快 需要 . +Is eating with chopsticks difficult ? 用 筷子 吃 飯 難 嗎 ? +He has dozens of English books . 他 有 幾 十本 的 英文 書籍 . +I am willing to share . 我 乐意 分享 . +Tom asked me if I liked chocolate . 汤姆 问 我 是否 喜欢 巧克力 . +That dog is big . 這 隻 狗 很大 . +He left high school at seventeen . 他 十七 歲 的 時候 離開 了 高中 . +Please give me a break . 饶 了 我 吧 ! +Are you free tomorrow ? 你 明天 有空 吗 ? +I do not mind lending you the money provided you pay it back within a month . 假如能 一个月 之内 还 上 的话 , 我 可以 把 钱 借给 你 . +Can you lend me 10,000 yen ? 你 能 借 給 我 10000 日元 ? +Tom lied to the others . 汤姆 向 其他人 撒谎 了 . +What happened ? The car is slowing down . 發生 了 什麼 事 ? 車子 慢下 來 了 . +Do not blame Tom for what Mary did . 别 为 玛丽 犯 的 错 责备 汤姆 . +That is a pheasant . 那 是 一 隻 野 雞 . +I have seen that . 我 見 過 . +That is weird , is not it ? 那 真 奇怪 , 不是 么 ? +They will understand that . 他們 會 明白 . +Fire is always dangerous . 火 是 非常 危險 的 . +I met him on his way home . 在 他 回家 的 路上 我 遇見 了 他 . +Please forgive me . 请原谅 我 . +You 'd better put on a raincoat . 您 最好 穿 一件 雨衣 . +It takes time . 这 需要 时间 . +Can you guess what I have ? 你们 能 猜到 我 有 什么 吗 ? +Do you study every day ? 您 每天 都 讀 書 嗎 ? +Are you and Tom leaving together ? tom 和 你 一起 離開 嗎 ? +Tom is the one that has been waiting the longest . 汤姆 是 等 了 最长 时间 的 人 . +I would rather not go there alone . 我 寧可 不要 單獨 去 那裡 . +I will alert Tom . 我会 警告 汤姆 . +Millions were affected that day . 那天 有 數百萬 人 受 影響 . +That architect builds very modern houses . 那个 建筑师 创建 了 非常 现代 的 房屋 . +Thank you very much for the wonderful dinner last night . 非常 感謝 您 昨晚 美妙 的 晚餐 . +They are eating apples . 他們 正在 吃 蘋果 . +I would like to go skiing with her . 我 想 和 她 去 滑雪 . +I am a high school student . 我 是 个 高中生 . +Will you use this ? 你 要 用 這個 嗎 ? +He raised his hand . 他 舉起 他 的 手 . +I would like to see your father . 我 想 去 看 你 的 父親 . +Tom came back . 湯姆 回來 了 . +He studied hard . 他 努力 學習 . +We bought a comfortable new armchair . 我們 買 了 張 舒適 的 扶手椅 . +Do not translate English into Japanese word for word . 不要 逐字逐句 的 把 英文 翻譯 成 日文 . +Have you finished reading the book ? 你 讀 完 這 本書 了 嗎 ? +I can not remember . 我 想不起 來 . +You 'd better not smoke while on duty . 當 你 值勤 時 最好 不要 抽煙 . +What do you think I have been doing ? 你 觉得 我 之前 在 做 什么 ? +Would you like to have some coffee ? 你 要 喝 點 咖啡 嗎 ? +She said something to him . 她 對 他 說 了 些 話 . +Are you going to come back ? 你 要 回來 嗎 ? +We should sit down . 我們 應該 坐下 . +I was absent from the party . 我 沒 去 派 對 . +Which way should we go ? 我们 应该 往 哪个 方向 走 ? +Tell us what to do next . 告訴 我們 下 一步 該 怎麼 做 . +I will dream about you . 我会 梦 到 你 的 . +They are afraid of us . 他們 害怕 我們 . +She asked him to open the window . 她 要求 他 打開 窗戶 . +She used to play tennis on Sunday . 她 以前 在 週日 打 網球 . +I did not know you did not know how to swim . 我 不 知道 你 不 會 游泳 . +It is not easy to learn a foreign language . 学会 一门 外语 不 容易 . +His mother is an English teacher . 他 的 母親 是 一位 英語 教師 . +He has a good reading knowledge of French . 他 能 很好 地 读懂 法语 . +All of my attempts have failed . 我 所有 的 尝试 都 失败 了 . +There was no water in the river . 這條 河 的 水 乾 了 . +The baby has finally stopped crying . 婴儿 终于 不 哭 了 . +His house is not far from this store . 他家 离 这间 商店 不远 . +I need a bigger box . 我 需要 個 更 大 的 箱子 . +Tom wants to tell you about Mary . 汤姆 想 跟 你 说 玛丽 的 事 . +All lawyers are liars . 律师 都 是 骗子 . +It is not practical . 这 不 实用 . +She cannot do without her car . 她 離 不開 她 的 車 . +We should have taken the schedule into consideration . 我们 本该 考虑一下 行程 . +The rain is letting up . 雨 变小 了 . +Do not you want to go out ? 你 不想 出去 嗎 ? +He went back to the store . 他 回 店里 去 了 . +They burst into tears . 他們 突然 哭 了 . +Can I ask you a question ? 我 能 问 您 一个 问题 吗 ? +Her look says that she loves you . 她 的 樣子 在說 她 愛 你 . +We do not think it is serious . 我们 认为 这 不 严肃 . +I did not trust Tom and he did not trust me , either . 我 不 信任 汤姆 而且 汤姆 也 不 信任 我 . +These paintings are beautiful . 這些 畫 很美 . +I have to go to bed . 我 该 上床 了 . +Tom watched in horror . 汤姆 惊恐 地 盯 着 . +I think he is happy . 我 想 他 很快 樂 . +Did you have a good rest ? 休息 好 嗎 ? +Does your school have a library ? 你 的 学校 有 图书馆 吗 ? +He was determined to go abroad . 他 下定 決心 要 出國 了 . +What are you guys going to do ? 你们 这些 家伙 想 去 干什么 ? +Nobody is too old to learn . 活到老 學到 老 . +Tom enjoyed himself at the party . 汤姆 在 晚会 玩 的 很 开心 . +My friends do not play tennis . 我 的 朋友 不 打 網球 . +Apart from on rainy days , I always ride my bike to work . 除了 雨天 , 我 都 是 骑车去 上班 的 . +The bus does not always come on time . 巴士 不 总是 能 准点 到达 . +Did not I tell you so ? 我 不是 告訴 過 你 了 嗎 ? +Happy New Year ! 新年 快 樂 ! +I feel sick . 我 有点 恶心 . +I do not go to school on Sunday . 我 周日 不 去 学校 . +Grab this . 抓住 这个 . +My legs still hurt . 我 的 腿 还是 很痛 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +Who is she ? 她 是 谁 ? +I accept the offer . 我 接受 了 报价 . +Your dog is very big . 您 的 狗 非常 胖 . +She did not want to speak to anyone . 她 不想 跟 任何人 說 話 . +What are you punishing them for ? 您 为什么 惩罚 他们 ? +What is it that you want ? 你 想要 什麼 ? +He is had many unhappy experiences . 他 有 许多 不 愉快 的 经历 . +I think this book is easy . 我 觉得 这 本书 很 简单 . +They tried very hard to gain an advantage over one another . 他們 很 努力 地 超過 對方 獲得 優勢 . +Tom lost . 汤姆 输 了 . +Do you want to be an actor in a movie ? 你 想 成為 一名 電影 演員 嗎 ? +My father grows rice . 我 爸种 水稻 . +They can not hear me either . 他們 也 不能 聽見 我 說 話 . +He suspects me of telling a lie . 他 懷疑 我 說 謊 . +She is fond of taking pictures . 她 喜欢 拍照片 . +I can cook . 我会 做饭 . +It was very cold this morning . 今天 早上 很 冷 . +Do not sign the contract in pencil . 别 用 铅笔 签合同 . +What is that building ? 那栋 建筑 是 什么 呢 ? +English is not easy , but it is interesting . 英语 不 简单 , 但是 很 有趣 . +This is just between you and me . 这 只是 我们 之间 的 秘密 . +Examine this . 调查 下 这个 . +While I was reading , I fell asleep . 當 我 讀 書 的 時候 , 我 睡著 了 . +There was a large crowd in the park . 公园 里 有 一大群 人 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +I see her sweeping the room . 我 看见 她 在 打扫 房间 . +I will never forget the day when I first met him . 我 永远 不会 忘记 那天 我 第一次 与 他 见面 . +Could you come up here ? 你 能 来 这里 吗 ? ? +That red dress looks good on her . 她 穿 那件 紅色 的 衣服 很 好看 . +If I had the money , I 'd buy a new house . 如果 我 有 錢 , 我 會 買 一個 新房子 . +Do not leave me here alone . 別 把 我 一個 人 留在 這裡 . +We should run some tests . 我们 应该 进行 测试 . +Why are your ears so big ? 為 什麼 你 的 耳朵 這麼 大 ? +Tom comes home almost every weekend . 湯姆 幾乎 每個 週末 都 回家 . +I do not understand this sentence . 我 不 明白 這 句 話 . +The reservation is already made . 预订 好 了 . +He is old enough to drive . 他 年 紀夠 大 可以 開車 . +I study French after dinner every day . 我 每天 吃 过 晚饭 后 都 会 学法语 . +Tom wants to pay back the money he owes . 汤姆 想去 还 欠 的 钱 . +My grandfather is fond of taking a walk early in the morning . 我 的 爷爷 喜欢 大清早 的 散步 . +I always eat before going to school . 我 总是 在 上学 前 先 吃饭 . +The boat was piloted safely into harbor . 船 被 安全 地 领入 港口 . +This is my business address . 这 是 我 的 公司地址 . +He acted as my guide . 他 擔 任我的 嚮 導 . +I expect her back by six o 'clock . 我 希望 她 六點 前 回來 . +I found the boy fast asleep . 我 发觉 男孩儿 酣然 入睡 了 . +It is so hard . 太 难 了 . +Tom is in the house . 湯姆 在家 裡 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +Do it when you have time . 你 有 时间 再 做 吧 . +" Is he going to swim tomorrow ? " " Yes , he is . " " 他 明天 會去 游泳 嗎 ? " " 是 的 , 他 會 . " +The cargo ship arrived four hours early . 货船 早 到 了 四 小时 . +I have been here for many years . 我 在 這裡 已經 很多年 了 . +No security system is foolproof . 沒有 防傻 的 安全 系統 . +The rain prevented me from going . 雨 大 得 让 我 不能 走 . +Did anyone call me while I was out ? 我 出去 的 时候 有人 打 我 电话 吗 ? +She gave us a present . 她 給 了 我們 一個 禮物 . +I think we should reduce the price . 我 觉得 我们 得 调低 价格 . +We are looking forward to seeing you and your family . 我们 很 期待 见到 您 和 您 的 家人 . +Tom left a note for Mary on her desk . 湯姆 給 瑪麗 在 她 桌上 留 了 便條 . +I got something nice for you . 我 给你个 好 东西 . +You may as well come with me . 你 不如 跟 我 一起 來 . +None of my friends drink coffee . 我 的 朋友 都 不 喝咖啡 . +I got scolded severely by that teacher . 我 被 那位 老師 嚴厲 斥責 了 . +The number of people who go abroad has been increasing . 出国 的 人数 一直 在 增加 . +Watch your step . 小心 脚下 . +Money talks . 金钱万能 . +He poured cold water over himself . 他 往 他 自己 身上 潑 了 一盆 冷水 . +I do not like her face . 我 不 喜歡 她 的 臉 . +You used to smoke , did not you ? 你 以前 吸煙 , 不是 嗎 ? +We will ask Tom and see what he thinks . 我們 要 問 問 湯姆 , 看看 他 怎麼 想 . +He was an honest man . 他 以前 是 个 诚实 的 人 . +That smells bad . 那 不好 聞 . +I do not want to wait . 我 不想 等 . +How many kids do you have ? 你 有 幾個 孩子 ? +The meeting lasted until 5 . 會議 一直 持續 到 5 點 鐘 . +He is doing very well considering he lacks experience . 考虑 到 他 缺乏经验 , 他 做 得 [ 已经 ] 非常 好 了 . +Have you seen all these movies ? 你 把 這些 電影 全 看 了 嗎 ? +Who told you that ? 是 谁 给 你 说 那个 的 呢 ? +I feel like a rest . 我 想 休息 一下 . +I made a bet that she would win the game . 我 賭 她 贏 這 比賽 . +We can see Mt . Fuji clearly today . 今天 我們 可以 清楚 地 看到 富士山 . +Can we do it ? 我们 能 做到 吗 ? +This is the house I lived in when I was young . 这 是 我 年轻 时候 住 的 房子 . +He really likes baseball . 他 非常 喜欢 棒球 . +I did not meet anyone there . 我 在 那裡 沒 遇見 任何人 . +He is always forgetting things . 他 總是 忘記 事情 . +Everybody knows his name . 每個 人 都 知道 他 的 名字 . +We understand . 我们 明白 . +The bus will take you to the center of the city . 巴士 会 把 你们 带到 市中心 . +I would like to go home now . 我 現在 想 回家 了 . +Everyone but Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I will finish my homework by nine . 我 會 在 九點 前 完成 我 的 作業 . +Tom , you have got to get up . 湯姆 , 你 必須 起床 了 . +Do you have a cough ? 你 咳嗽 嗎 ? +Tom never should have tried doing that by himself . 汤姆 从来不 应该 尝试 自己 一个 人 做 那些 . +Have a pleasant journey . 旅途愉快 ! +I think that you ought to apologize to her . 我 認為 你 應該 跟 她 道歉 . +He lives across the street from us . 他 住 在 我們 街 對 面 . +You 'd better not go . 你 最好 不要 去 . +I took it for granted that she would come to our wedding . 我 理所当然 地 认为 她 会 参加 我们 的 结婚典礼 . +She is not as young as she looks . 她 没 她 看上去 那么 年轻 . +Are you over 18 ? 你 有 18 歲 了 嗎 ? +Tom took off his wedding ring . 汤姆 拿掉 了 他 的 婚戒 . +Are those two going out ? 那 兩個 要 出去 嗎 ? +I trust him . 我 信赖 他 . +Tom , I want you to handle this one . 汤姆 , 我 想要 你 来 操作 这 一个 . +The leaves of the trees in the garden have turned completely red . 花园里 树上 的 叶子 已经 完全 变红 了 . +Do you know much about art ? 你 對 藝術 知道 得 多 嗎 ? +I am not afraid of dying . 我 不怕死 . +There is a cat in the kitchen . 廚房 裡有一 隻 貓 . +I go to bed at eleven . 我 十一点 上床 . +Tom asked Mary to stop the car . 湯姆 讓 瑪麗 停住 車 . +I can not find my ticket . 我 找 不到 我 的 票 . +Mother was busy getting ready for dinner . 母親 正忙 著 準備 晚餐 . +Have a good Christmas . 祝您 有 一個 愉快 的 聖誕節 . +I have won first prize ! 我 贏 得 了 第一名 ! +What is new ? 有 什么 新鲜事 吗 ? +Many TV programs have a bad influence on children . 許多 電視 節目 對 兒童 有 不良 的 影響 . +Can you name one of their songs ? 你 能够 说出 一首 他们 的 歌 的 名字 吗 ? +If you are happy , I am happy . 如果 你 高興 , 我 就 高興 . +I think we should lower the price . 我 觉得 我们 得 调低 价格 . +He would not agree to our proposal . 他 不 同意 我們 的 建議 . +English is by far the most widely @-@ spoken language in the world . 英語 是 目前 在世界上 使用 最 廣泛 的 語言 . +Tom says Mary was not tired . 湯姆 說 瑪麗 不累 . +I have a bad headache today . 今天 我 头痛 欲裂 . +I am sure Tom can not swim . 我 确定 汤姆 不会 游泳 . +He believes that he can prove it . 他 相信 他 能 证明 它 . +Do you have a cell phone ? 你 有 手機 嗎 ? +Welcome to our home . 欢迎 来到 我们 家 . +He acted like a lunatic . 他 表现 的 像 个 疯子 . +I saw Tom . 我 看見 湯姆 了 . +She seemed to have been ill . 好像 她 病 了 . +I have to go to the toilet . 我 要 去 上 廁所 . +I will reconsider the matter . 我 會 重新 考慮 此事 . +I can not remember any of it . 我 对 这些 都 没有 印象 . +I will fight to the death . 我会 战斗 至死 . +Do you have younger brothers ? 你 有 弟弟 嗎 ? +He talks as if he knows everything . 他 說 起 話 來 好像 他 什麼 都 知道 . +I 'd like an aisle seat , please . 請 給 我 靠 走道 的 位子 . +Tom told me not to open the envelope until my birthday . 汤姆 告诉 我 , 到 我 生日 那天 我 才能 打开 信封 . +We have many rainy days in June . 六月 下 了 很多 天 的 雨 . +I trust that I can see you again . 我 相信 我 能 再 見 到 你 . +Do you miss me ? 你 想 我 了 ? +I do not like living in the country . 我 不 喜歡 住 在 鄉下 . +She was busy with housework . 她 忙 於 家務 . +I grew up in Boston . 我 在 波士 頓 成長 . +Wherever she goes , she is well liked . 無論 她 去 哪裡 , 她 都 是 惹 人 喜愛 的 . +Do you believe there are ghosts ? 你 相信 鬼 存在 吗 ? +I got a shave and a haircut . 我 刮 了 鬍 子 並 理 了 髮 . +I hung the calendar on the wall . 我 把 日 曆 掛 在 牆 上 . +I wish he had attended the meeting . 要是 他 有 參加 這場 會議 就 好 了 . +Can I rest a bit ? 我 能 休息 一会儿 吗 ? +She ordered the book from London . 她 从 伦敦 订 了 这 本书 . +I keep the master copy under lock and key . 我 妥善 保管 原版 拷貝 . +Tom has a twin brother . Tom 有個 雙 胞胎 兄弟 . +I am the fastest runner . 我 是 最快 的 跑者 . +I belong to the swimming club . 我 是 游泳 社 的 成員 . +My problem is I do not trust you . 我 的 问题 是 我 不 信任 你 . +Tom needs to speak to Mary . 湯姆 需要 跟 瑪麗 說 話 . +How long did it take you to finish reading that book ? 你 看 完 這 本書 要 多少 時間 ? +This is a pencil . 這 是 一支 鉛筆 . +You are a real friend . 你 是 個 真正 的 朋友 . +Is this your daughter ? 這 是 你 的 女兒 嗎 ? +The man reading a paper over there is my uncle . 在 那儿 看 报纸 的 男人 是 我 叔叔 . +Tom and Mary stayed at a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +Birds sing . 鳥兒 歌唱 . +Their meeting was inevitable . 他們 的 相遇 是 必然 的 . +My mother gets up earlier than anyone else . 妈妈 起得 比 谁 都 早 . +There is a man at the door who wants to see you . 门口 有个 男人 想见 你 . +Tom did not show me anything . 湯姆 甚麼 也 沒 給 我 看 . +We are out of stock now . 我们 现在 缺乏 库存 . +Everyone knows of his affection for that dog . 每个 人 都 知道 他 对 那 狗 的 感情 . +Tom is drinking juice . Tom 正在 喝 果汁 . +I have put on two kilograms this summer . 这个 夏天 我 胖 了 两 公斤 . +He does not like tennis . 他 不 喜欢 网球 . +Tom is extremely romantic . 汤姆 非常 的 浪漫 . +I am reading a book now . 我 現在 正在 讀 一本 書 . +Everything is ready . 一切 就绪 . +Tom does not want to come . 汤姆 不想 来 . +I expect you to be punctual . 我 期待 你 能 準 時 . +I am fed up with English . 我 受够 英文 了 . +English is not easy , but it is interesting . 英语 不 容易 , 但 很 有意思 . +The police broke up the fight . 警察 驅散 了 這場 鬥 毆 . +I did not go to school yesterday . 昨天 你 没有 去 学校 . +There is no film in this camera . 這個 相機 裡 沒有 胶卷 . +Where is the vodka ? 伏特加 在 哪里 ? +Something must be wrong with the machinery . 這個 機器 一定 有什麼 地方 不 對 勁 . +Let is play baseball ! 讓 我們 來 打 棒球 吧 ! +Is anybody there ? 那边 有人 吗 ? +I had difficulty in solving this problem . 我 在 解決 這個 問題 上 有 困難 . +I do not know why you are here . 我 不 知道 你 為 甚麼 在 這裡 . +They have been married for ten years . 他們 已經 結婚 十年 了 . +Turn off the gas . 把 煤气 关 了 ! +I think that would be fun . 我 認為 那 會 很 有意思 . +Do you know what PKO stands for ? 你 知道 PKO 是 什么 意思 吗 ? +You can have this watch for nothing . 你 可以 免費 擁有 這 支 手 錶 . +I was embarrassed by what she said . 她 說 的 話 讓 我 覺 得 很 尷尬 . +Can I borrow your digital camera tonight ? 我 今晚 能 借 你 的 数码相机 吗 ? +Smoking is not permitted on the train . 不 允許 在 火車 上 吸煙 . +I like eggplant . 我 喜歡 茄子 . +Lonely people tend to be afraid of meeting others , which ensures they will always be lonely . 孤獨 的 人會 孤獨 , 是 因為 他 畏懼 他人 . +Can I carry this on the plane ? 我 能 把 这个 东西 带到 飞机 上 吗 ? +I took the children to school . 我 帶 孩子 們 去 上 學 . +He wants affection . 他 要 愛 . +I heard Tom was captured . 我 听说 汤姆 被捕 了 . +That was the best day of my life . 那 是 我 生命 中 最美 的 一天 . +My mother is reading a magazine . 我 媽媽 正在 讀 一本 雜 誌 . +Tom probably knows someone who can teach us French . 湯姆 應該 知道 有 誰 可以 教 我們 法文 . +She is very thoughtful and patient . 她 非常 周到 和 耐心 . +Follow that car . 跟上 那辆车 . +I had a nightmare . 我 做 噩梦 了 . +This is just for you . 這 是 只 給 你 的 . +I am not stupid . 我 不是 笨蛋 . +He is lazy . 他 很 懒 . +Are you picking me up at 7 tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +My sister is older than my brother . 我 姐姐 比 我 哥哥 大 . +She asked me for help . 她 向 我 求助 . +What is your hobby ? 你 的 爱好 是 什么 ? +He lost everything he owned . 他 失去 了 他 擁有 的 一切 . +I am so stupid . 我 真蠢 . +She has three brothers . 她 有 三个 兄弟 . +Some people felt that Tom is behavior was inappropriate . 一部分 人 感觉 Tom 的 行为 举止 不 太 合适 . +It makes no difference to me whether he comes or not . 他 来 不来 对 我 来说 没 区别 . +Tom is not dumb . 汤姆 不 傻 . +You should have done it earlier . It can not be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +What happened in the park ? 公園 裡 發生 了 甚麼 ? +That bicycle is too small for you . 那輛 腳 踏 車 對 你 來說 太小 了 . +Are your eyes open ? 你 睜 著 眼 嗎 ? +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Maybe next time . 也许 下 一次 吧 . +Imagination affects every part of our lives . 想像力 影响 着 我们 生活 的 各个方面 . +The area was quiet . 這 地區 很 安靜 . +Tom has lost his keys . 湯姆 遺失 了 他 的 鑰匙 . +A rabbit has long ears and a short tail . 兔子 有 长耳朵 和 短 尾巴 . +Tom knew what Mary had done . 湯姆 知道 瑪麗 做 了 甚麼 . +Tom says he is very rich . 湯姆 說 他 很 有 錢 . +May I ask how old you are ? 请问 您 老人家 高寿 ? +Why do not you go to sleep ? 你 怎么 不 睡觉 呢 ? +I am listening to music . 我 正在 听 音乐 . +She has been to Paris . 她 去过 巴黎 . +I am telling you the truth . 我 在 告訴 你 真相 . +The plane flew over the mountain . 這 架 飛機 飛越 了 這 座 山 . +You are always criticizing me ! 你 总是 批评 我 ! +I am making dinner . 我 准备 晚餐 . +Close your mouth . 闭上 你 的 嘴 . +This is my first time to visit Australia . 这 是 我 第一次 来 澳大利亚 +The students were for the most part from the West Coast . 大部分 的 學生 來 自 西海岸 . +They work really hard . 他们 工作 的 很 辛苦 . +You have not even asked me what I think . 你 甚沒 問 過 我 怎麼 想 . +You are a mean old man . 你 这个 吝啬 的 老头 . +He makes a living as a salesman . 他 當 推銷員 為 生 . +How many times a day do you look at yourself in the mirror ? 你 一天 照 几次 镜子 ? +You will get used to living here in no time . 你 很快 就 会 习惯 住 在 这里 . +I agree to your proposal . 我 同意 你 的 建議 . +How much is the tour per person ? 一個 人 的 旅費 多少 錢 ? +I do not drink coffee at all . 我 一点 咖啡 也 不 喝 . +Did he go to see Mary ? 他 去 看 瑪麗 了 嗎 ? +He grew up in a little village . 他 在 一個 小村 莊裡 長大 . +I will come back . 我会 回来 的 . +What a bizarre story ! 多么 荒唐 的 故事 ! +He swims better than I do . 他 游泳 游得 比 我 好 . +Why are you so worried ? 你 這麼 擔心 做 什麼 ? +I stayed with my uncle last week . 我 上週 跟 我 叔叔 住在一起 . +The train should be on time . 火车 应当 准点 到 . +We spent the entire day on the beach . 我們 一整天 在 沙灘 上 . +To live without air is impossible . 沒 有空 氣 生活 是 不 可能 的 . +It worried me that she looked pale . 她 虚弱 的 样子 让 我 捏了一把汗 . +What do you want it for ? 你 要 它 干什么 ? +Did you watch TV tonight ? 你 今晚 看電視 了 嗎 ? +We enjoy reading books . 我们 喜欢 阅读 书籍 . +Tom did not want to do that . 湯姆 不想 去 做 那件事 . +It is getting cloudy . It may rain soon . 雲 愈來愈 多 , 可能 快 下雨 了 . +The boy enjoyed painting a picture . 這個 男孩 喜歡 繪畫 . +I am thinking of going abroad . 我 在 考慮 出國 . +I have been in Japan for two months . 我 在 日本 已經 兩個 月 了 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Is this book yours ? 這 是 你 的 書 嗎 ? +I have to cook dinner today . 我 今天 要 准备 晚饭 . +I do not remember seeing the letter , but perhaps I read it . 我 不 記得 我 看 過 這 封信 , 但 或許 我 讀 過 它 . +Any student can answer that question . 任何 學生 都 可以 回答 這個 問題 . +Do you need help ? 你 需要 帮助 吗 ? +Would you mind closing the window ? 你 介意 我 關窗 戶 嗎 ? +May I try it on ? 我 能 试一下 吗 ? +What goes up must come down . 会 起 必 会 落 . +Let me make you some tea . 讓 我 給 你 沏茶 . +He was willing to help others . 他 願意 幫助 別人 . +Prices have been climbing steadily . 價格 一直 在 穩定 地 攀升 . +Why can not we go and see Tom ? 為 甚麼 我們 不能 去 看 湯姆 ? +I have always fed my dogs in the early evening . 每个 傍晚 我 都 会 喂 我 的 狗狗 们 . +How did your journey begin ? 你 的 旅行 是 怎么 开始 的 ? +I like potatoes . 我 喜歡 土豆 . +Did you bring them ? 你 把 它们 带来 了 么 ? +Tom studied French . 汤姆 学习 了 法语 . +Mom , can I go swimming ? 妈妈 , 我 能 去 游泳 吗 ? +I have a thorn in my finger . 我 的 手指 頭 有 一根 刺 . +I watched TV this morning . 我 今天 早上 看 了 电视 . +From now on , try harder . 從 現在 起 , 更加 努力 . +Is there anything you can not do ? 有 你 不能 做 的 事 吗 ? +It is difficult to give up smoking . 戒烟 难 . +Well , let is get going ! 好 吧 , 讓 我們 出發 吧 ! +I often slept on that bench when I was homeless . 当 我 无家可归 的 时候 , 我 常 在 那 张 长椅 上 睡觉 . +They only sell women is shoes here . 这里 只 卖 女鞋 . +Grammar is a very complex thing . 语法 是 很 复杂 的 . +Write it down before you forget it . 在 你 忘 記 之前 把 它 寫 下來 . +Wo not you come over to my place ? 你 不 會 來 我家 嗎 ? +We have almost finished our work . 我們 幾乎 完成 了 我們 的 工作 . +My apartment is near here . 我 的 公寓 在 這 附近 . +I arrived in London . 我 到 達 倫敦 了 . +The letter was written by Tom . 這 信 是 湯姆 寫 的 . +Tom is working on a new novel . 汤姆 正 致力于 一部 新 小说 . +How much do you love me ? 你 有 多 爱 我 ? +I almost laughed out loud . 我 差點 大聲 笑 了 出來 . +Mary arrived at the hospital . 瑪麗 到 了 醫院 . +I wrote a letter asking him to return a bit earlier . 我 写 了 封信 , 叫 他 早点 回 . +Why is he here ? 为什么 他 在 这儿 ? +Please show your ticket . 请 出示 您 的 票子 . +You guys looked mad . 你们 疯 了 吧 +What do you want for Christmas ? 想要 什么样 的 圣诞节 礼物 呢 ? +My father made me a delicious lunch . 我 父親 為 我 做 了 一頓 美味 的 午餐 . +Do you mind if I turn off the light ? 您 介 不介意 我 把 灯 关了 ? +I want to retire soon . 我 想 早點 退休 . +She kept various kinds of pets . 她 养 各种 不同 的 宠物 . +I saw a dog swim across the river . 我 見 過 狗 游泳 渡河 . +Please remind me to mail the report tomorrow . 请 提醒 我 明天 把 报告 寄 了 . +Do you know the boy in the picture ? 你 认识 画 里面 的 男孩 吗 ? +Who was playing ? 誰 在 玩 ? +What on earth are you talking about ? 你 到底 在 談 什麼 ? +The price of rice has fallen . 米价 下跌 了 . +I knew I was going to win . 我 知道 我会 赢 . +I am only thinking of you . 我 只 想到 你 . +Carelessness can lead to a serious accident . 粗心大意 可能 導致 嚴重 的 事故 . +Hemingway enjoyed big game hunting in Africa . 海明威 喜歡 在 非洲 的 大狩 獵 . +I would like to talk about your situation . 我 想 談 談 你 的 情況 . +Foreigners are interesting , are not they ? 外国人 真 有意思 , 不是 吗 ? +See you again next Monday . 下週 一再 見 . +" What should I do ? " I said to myself . “ 我 该 做 什么 呢 ? ” 我 自言自语 道 . +He wrote to his parents . 他 寫信 給 他 的 父母 . +Give this book to whoever wants it . 把 這 本書 給 想要 的 人 . +Please close the door quietly . 請 安靜 地 關門 . +I have not finished my homework yet . 我 还 没 做完作业 . +I go to the library two or three times a week . 我 一週 去 圖書館 兩 、 三次 . +We had a chat for a while . 我們 聊 了 一會兒 . +Do it as soon as possible . 尽早 做 . +My father is shaving in the bathroom . 我 爸爸 正在 浴室 裡 刮 鬍 子 . +He is just my age . 他 和 我 同岁 . +I really do not sing . 我 真的 不会 唱 . +Our eyes take time to adjust to the darkness . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +Tom laughed . 汤姆 笑 了 . +When was she born ? 她 是 什么 时候 出生 的 ? +He likes math , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +Do you hate me ? 你 讨厌 我 吗 ? +I should stop procrastinating . 我 做事 该 果断 . +I wish I were a good singer . 但愿 我 是 一个 好 歌手 . +He does not like us . 他 不 喜欢 我们 . +The most logical place to keep your shoes is near the door . 最 合 逻輯 的 放 鞋 處 是 門口 附近 . +What are you looking at ? 你 在 看 什么 ? +This medicine does not have side effects . 这 药 没有 副作用 . +I am seeing her this evening . 我 打算 今晚 和 她 约会 . +I really agree with you . 我 非常 同意 你 . +He found the box under the table . 他 在 桌子 底下 發現 了 這個 盒子 . +I want to ask you some questions about Tom . 我 想 问 你 一些 关于 汤姆 的 问题 . +I came to warn you not to do that . 我 来 警告 你 别 那样 做 . +My parents objected to my studying abroad . 我 父母 反對 我 出 國留學 . +Why do not you give it another try ? 你 為 什麼 不再 試 一次 ? +I want to travel around the world . 我 要 環遊 世界 . +She insisted that I should see the doctor . 她 坚持 让 我 去 看 医生 . +I will call you up tomorrow . 明天 我 給 你 打 電話 . +I take my health seriously . 我 重視 自身 的 健康 . +She wants to attend the party . 她 想 參加 這個 派 對 . +Tom bought a camera at a store not too far from here . Tom 在 离 这里 不远 的 一家 商店 里 买 了 一台 相机 . +You have got to be joking ! 你 一定 是 开玩笑 ! +I did not notice the light turn red . 我 沒有 注意 到 燈 變 紅色 了 . +I go by the nickname " Itch . " 我 用 我 的 暱 稱 " Itch " . +I did not expect to see you at a place like this . 我 都 没 想 过 会 在 这里 碰见 你 . +I work every day except for Sundays . 除了 星期天 我 每 一天 都 工作 . +How much is your monthly gas bill ? 你 每個 月 的 瓦斯 費 多少 錢 ? +I think I know who stole your watch . 我 認為 我 知道 是 誰 偷 了 你 的 手 錶 . +She is not as old as Mary . 她 沒 有 瑪麗 年紀 大 . +I had a good sleep last night . 我 昨晚 睡 得 很 好 . +I majored in philosophy at my university . 我 在 大學 主修 哲學 . +What are you going to do today ? 你 今天 要 做 什麼 ? +Tom is a violin teacher . 湯姆 是 小提琴 教師 . +We had a mild winter last year . 去年 冬天 很 暖和 . +I have lost one of my folders . 我 丢 了 我 的 一个 文件夹 . +Give me that book . 把 书 给 我 . +I should not have sold my house . 我 不该 把 我 的 房子 卖 了 的 . +I am very hungry now . 我 現在 非常 餓 . +I fell asleep while reading a book . 我 看书 的 时候 睡着 了 . +You do not need to be there . 你 不必 去 那裡 . +Here is your bag . 你 的 袋子 在 這裡 . +Who are those guys ? 那些 家伙 是 谁 ? +What are you reading ? 你 在看 什麼 ? +She went for a walk . 她 去 散步 了 . +I feel like going to the movies . 我 想 去 看 電影 . +My father likes traveling by air . 我 父親 喜歡 搭 飛機 旅行 . +Let me help you with your luggage . 讓 我 幫 您提 行李 . +See you tomorrow at school . 明天 在 學校 見 . +It will not make any difference . 这 没有 任何 区别 . +Tom can do so much better than me . 湯姆 可以 比 我 做得好 很多 . +Are you able to play organ ? 你 能 演奏 管风琴 吗 ? +Stop bothering me . 不要 烦 我 . +Tom waved . 汤姆 挥手 了 . +What are you eating ? 在 吃 什么 呢 ? +There is nothing more painful than losing one is child . 沒有 比 失去 孩子 更 讓 人 悲傷 的 事 . +Something weird is going on . 正 有 什么 奇怪 的 事情 发生 着 . +Do not let her go out after dark . 天黑 後 不要 讓 她 出門 . +I do not want Tom seeing this . 我 不想 讓 湯姆 看見 這個 . +He might change his mind . 他 可能 會 改變 心意 . +It is not polite to point at others . 用 手指 別人 是 不 禮貌 的 . +Fools rush in where angels fear to tread . 天使 畏懼 處 , 愚人 敢 闖入 . +He was accused of stealing money . 他 被 指控 偷 錢 . +My notebook is pink . 我 的 笔记本 是 粉色 的 . +She helped me to clear snow away . 她 幫 我 清除 積雪 . +My cholesterol is high . 我 的 胆固醇 很 高 . +He was able to solve the problem . 他 能 解決 這個 問題 . +I thought that Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +I 'd bought it the week before . 我 一周 前 已經 買 了 . +I go to church on Sunday . 周日 我 去 做礼拜 . +A couch potato is something that I do not want to be . 我 不想 成為 整天 泡 在 沙發 上 看 電視 的 人 . +He is old enough to understand it . 他 年 紀夠 大 可以 瞭解 它 . +Optimists see opportunities in disasters while pessimists find disasters in every opportunity . 樂 觀者 在 災禍 中 看到 機會 , 悲觀 者 在 機會 中 看到 災禍 . +I attempted to solve the problem . 我 試圖 解決 這個 問題 . +I have not changed . 我 没 改变 . +I think we should not let Tom do that again . 我 認為 我們 不該 讓 湯姆 再 那麼 做 . +What is so fun about taking pictures of trains ? 拍 火车 的 照片 什么 的 , 有 什么 好玩 的 呀 ? +Tom knows Mary was here . 湯姆 知道 瑪麗 在 這裡 . +Wait for me . 等等 我 . +Children like chocolate . 孩子 们 喜欢 巧克力 . +Do not think about it now . 現在 別 想 這事 . +How soon can they be delivered ? 它们 什么 时候 能 被 送到 ? +My vacation went by quickly . 我 的 假期 一下 就 過 完 了 . +Have you already eaten supper ? 你 已经 吃晚饭 了 吗 ? +I guess I have not made myself clear . 我 想 我 沒有 把 話 說 清楚 . +I want another beer . 我 想 再 来 一杯 啤酒 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 運動 . +Keep in mind that you must die . 你 要 想到 你 必须 死 . +I am just about done . 我 差不多 完成 了 . +After the revolution , France became a republic . 革命 之 後 , 法國 成為 了 一個 共和 國 . +He has a cold . 他 着凉 了 . +Tomorrow I have to go shopping . 明天 我 得 购物 . +The table is covered with powder . 桌上 布满 了 粉末 . +Somebody was murdered . 有人 被 謀殺 了 . +I got lost in the forest . 我 在 树林 里 迷路 了 . +He made his way to the minister . 他 設法 當上 了 部長 . +The warnings were ignored . 警告 被忽视 . +Are you talking to me ? 你 在 跟 我 说话 吗 ? +She plays the violin very well . 她 小提琴 演奏 得 非常 好 . +Is anyone absent today ? 今天 有人 缺席 嗎 ? +I would like to meet your older sister . 我 想 認識 你 姐姐 . +Tom can not go out because he has a lot of homework . 汤姆 因为 有 很多 作业 不能 外出 . +We have got to get you some help . 我们 不得不 给 你 一点 帮助 了 +What do you eat for breakfast ? 你 早餐 吃 什麼 ? +Your letter made me happy . 你 的 來 信使 我 快樂 . +We promised to stand by him in case of trouble . 我們 承諾 萬一 他 有 麻煩 的 時候 支持 他 . +Tom wished he had not won . 汤姆 希望 他 没有 赢 . +My camera can shoot high @-@ definition video . 我 的 录像机 可以 拍 高清 视频 . +Money rules the world . 金钱万能 . +This is Tom is car . 這 是 湯姆 的 車 . +She is wearing a hat . 她 戴 著 一頂 帽子 . +I need to take notes . 我 需要 作筆 記 . +You lied to me , did not you ? 你 對 我 說 了 謊 , 沒有 嗎 ? +I made my way through the crowd . 我 穿 過 了 人群 向前走 . +I am amazed at his rapid progress in English . 我 被 他 英语 的 快速 进步 惊呆 了 . +I found the test difficult . 我 觉得 这个 测试 很 难 . +The child has a case of chicken pox . 这 孩子 有 水痘 的 症状 . +I wish you the best of luck . 祝 你好 運 . +It is not too late for you . 对 你 来说 还 不 太晚 . +Those trains run every three minutes . 這些 火車 每 三分 鐘 發車 . +What do you make of his attitude towards us these days ? 你 做 了 什麼 讓 他 這些 日子 用 這種 態度 對待 我們 ? +My grandfather sometimes talks to himself when he is alone . 我 祖父 一个 人 的 时候 , 有时 会 自言自语 . +Long time , no see . I hear that you have changed your job again . 好久不见 . 听说 你 又 换 工作 了 ? +Being late is always better than not showing up at all . 迟到 总 比 不到 好 . +She was appointed chairperson . 她 被 任命 為 主席 . +How much does this watch cost ? 这 只 表 多少 钱 ? +Hey , relax . 嘿 , 放松 点 . +This chair is uncomfortable . 这个 椅子 坐 着 不 舒服 . +Swimming strengthens the legs . 游泳 使 腿部 强健 . +I am cold . 我 冷 . +There are only three women in this class . 這個 班 只有 三個 女生 . +I need to find out when we need to be there . 我 需要 知道 我们 什么 时候 需要 到 那里 . +You are not a coward . 你 不是 个 懦夫 . +I just talked to the person in charge . 我 刚 跟 主管 人 谈 过 . +I am here to help you . 我 來 這裡 幫 你 . +Tell Tom I need to borrow his car . 告訴 湯姆 我 需要 借 他 的 車 . +The longer I stayed in Paris , the more I liked it . 在 巴黎 待 得 越 久 , 我 就 越 喜欢 巴黎 . +I am very happy . 我 很快 樂 . +Do you belong to any clubs ? 您 隶属 哪家 俱乐部 吗 ? +He began to feel afraid . 他 开始 害怕 了 . +I would not buy that for Tom . 我 不 會 給 湯姆 買 那 東西 . +Tom has low blood pressure . 汤姆 有 低血压 . +Would you please open the door ? 請 你 開門 好 嗎 ? +I do not think that it is necessary . 我 想 没 这个 必要 . +These apples are very big . 这些 苹果 很大 . +Have you ever shaved your legs ? 你 剃 过 腿毛 吗 ? +If you need my advice , I 'd be glad to give it to you . 如果 你 需要 我 的 建议 , 我 很 愿意 告诉 你 . +I got up at seven this morning . 我 今天 早上 7 点 起床 . +Tom does not want to talk about it . 汤姆 不想 谈 这件 事 . +People usually do not like what they do not understand . 人们 通常 不 喜欢 他们 不 理解 的 事物 . +I think Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +Rabbits have long ears and short tails . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +It took us half an hour to set up the tent . 搭 帳 篷 花 了 我們 半 小 時 . +The matter is all settled . 這個 問題 都 被 解決 了 . +Please send it to me by fax . 请 把 它 传真 给 我 . +All you have to do is say the word , and I will leave . 你 只要 说句话 , 我 就 走 . +This is Tom is umbrella . 這 是 湯姆 的 雨 傘 . +He made himself heard across the room . 他 讓 對面 的 房間 都 能 聽到 他 的 聲音 . +We got to the station at six . 我們 六點鐘 到 了 車站 . +Are you Tom is mother ? 你 是 湯姆 的 母親 嗎 ? +I will get in touch with you soon . 我 會 很快 跟 你 聯絡 . +Like it or not , we have to attend that meeting . 不管 喜 不 喜歡 , 我們 都 得 參加 那個 會議 . +Here is your book . 這 是 你 的 書 . +Please send me your photo . 請 把 您 的 照片 發給 我 . +Ten teams competed for the prize . 十支 隊伍 競逐 獎項 . +She is more pretty than beautiful . 說 她 美 不如 說 她 可愛 . +Tom sat on a tree trunk . 汤姆 坐在 了 树干 上 . +He became more obstinate as he grew older . 他 年紀 越 大 變 得 越 頑固 . +It rarely snows in this area . 这 片 区域 很少 下雪 . +Do you take pride in your work ? 你 为 你 的 工作 感到 自豪 吗 ? +A man can not escape his past . 人 無法 逃避 過去 . +We have a special connection . 我們 有 特殊 聯 繫 . +That is an interesting idea . 那 是 个 有趣 的 主意 . +I know who lives in this house . 我 知道 谁 住 在 这 房子 里 . +They will not find Tom . 他们 不会 找到 汤姆 . +This is my younger sister . 这 是 我 的 妹妹 . +God helps those who help themselves . 自助 者 天助 . +I do not mind being criticized when I am wrong . 要是 我 说 错话 被 人 议论 , 我 是 不管 的 . +Take your time . There is no rush . 慢慢 來 , 不急 . +I asked for my father is help . 我 請 我 父親 幫忙 . +In a way you are right , but I still have doubts . 在 某种程度 上 你 是 对 的 , 但 我 还是 有 疑问 . +Are you going outside ? 你 去 外面 吗 ? +No problem . 没 问题 . +Since he is old , this task must be difficult for him . 他 老 了 , 所以 这 任务 对 他 来说 一定 很 难 . +Everyone deserves a second chance . 每個 人 都 值得 被 給予 第二次 機會 . +Can I do anything to help ? 我 能 幫 上 忙 嗎 ? +Maybe you are right . 也许 您 有 道理 . +I want to breathe some fresh air . 我 想 呼吸 一下 新鮮 空氣 . +Australia is smaller than South America . 澳洲 比 南美洲 小 . +Tom likes to knit . 湯姆 喜歡 編織 . +I saw it with my own eyes . 我 親 眼看 見 了 . +Call the police . 报警 ! +I wonder if what I wrote was correct . 我 在 想 我 寫 的 對不對 . +The smell of food made me hungry . 食物 的 味道 讓 我 餓 了 . +The apple does not fall far from the tree . 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Maybe you are working too hard . 可能 你 工作 得 太 拼命 ? +You need to register by Monday . 你 需要 在 星期一 前 註 冊 . +You can always count on Tom . 你 可以 永遠 信賴 湯姆 . +She got through her work before five . 她 在 五點鐘 前 做 完 了 她 的 工作 . +How did you enjoy the party ? 你 在 派 對 上 玩 得 開心 嗎 ? +When we started out , our band could only find small clubs in small cities that would hire us . 当 我们 起步 时 , 我们 的 乐队 只能 找 小 城市 里 的 小 俱乐部 雇 我们 . +You will be answering the phones . 你 要 接 電話 . +I do not know how to express my thanks . 我 不 知道 如何 表達 我 的 謝意 . +She was satisfied with the new dress . 那条 新 裙子 让 她 很 满意 . +Do you know why spring rolls are called spring rolls ? 你 知道 春卷 为什么 叫 春卷 吗 ? +He often plays the guitar . 他 常常 彈 吉他 . +She took my hand . 她 握住 我 的 手 . +I am not at all tired . 我 根本 不累 . +My grandfather gets up early . 我 的 祖父 早起 . +Tom is now a software engineer . 湯姆 現在 是 軟體 工程 師 . +I can not put up with the heat any longer . 我 受不了 这 大热天 了 . +Do you know what happened ? 你 知道 发生 了 什么 事情 吗 ? +She taught me how to write a poem . 她 教我如何 写诗 . +The old man breathed his last . 老人 咽下 了 最后 一口气 . +She is going to Sendai this spring . 她 今年 春天 要 去 仙台 . +They made us work all night . 他們 要 我們 整夜 工作 . +She is proud that her son has become a doctor . 她 为 自己 的 儿子 成为 医生 而 自豪 . +What is your problem ? 你 有 什么 问题 ? +She gave us some useful information . 她 給 了 我們 一些 有用 的 訊息 . +My mom does not speak English very well . 我 妈妈 英语 说 得 不太好 . +He could not run very fast . 他 無法 跑 得 非常 快 . +It is difficult to quit smoking . 戒烟 难 . +How are things at school ? 学校 怎么样 ? +A few years ago , our room had little furniture in it . 幾 年前 , 我們 的 房間 裡 沒有 什麼 家具 . +All their efforts were in vain . 他們 的 努力 都 白 費 了 . +Tom turned red . 汤姆 脸红 了 . +Tom is a very good person . 汤姆 是 个 很好 的 人 . +A nurse took my temperature . 一個 護士 量 了 我 的 體溫 . +After a storm comes a calm . 暴風 過 後 是 寧靜 . +India gained independence from Britain in 1947 . 印度 於 1947 年 脫離 英國 獲得 獨立 . +My uncle gave me the watch . 我 叔叔 給 了 我 這 支 錶 . +I got a good night is sleep . 我 睡 了 个 好 觉 . +She was crying as she answered . 她 邊 哭 邊 回答 . +Do not intrude on her privacy . 不要 侵犯 她 的 隐私 . +We know what we are doing . 我們 知道 我們 在 做 什麼 . +He disguised himself as a woman . 他 把 自己 化裝 成 一個 女人 . +May I go out to play ? 我 可以 出去玩 嗎 ? +I worked on the farm all day . 我 整天 在 農場 上 工作 . +We divided the money between us . 我們 平分 這筆 錢 . +How should I know ? 我 怎麼 知道 ? +Please take your seat . 请 坐 . +I have never lived on a farm , but both of my parents grew up on farms . 我 从 没有 住 在 农场 , 但 我 的 父母 都 在 农场 长大 . +She took care of my dog . 她 照顧 了 我 的 狗 . +We are anxious about her safety . 我们 为 她 的 安全 担忧 . +Do not touch these . 不要 碰 這些 . +We ate curry rice last night . 我們 昨晚 吃 了 咖哩 飯 . +Are you a student ? 你 是 學生 嗎 ? +Is there any mail for me today ? 今天 有 給 我 的 郵件 嗎 ? +Tom made a list of places he wants to visit . 汤姆 把 他 想去 的 地方 列成 了 一张 清单 . +How long do you plan on staying in this country ? 你 打算 在 这个 国家 待 多久 ? +I am watering the flowers . 我 在 澆 花 . +On hearing the news , she fainted . 听到 消息 , 她 晕倒 了 . +I was not busy last week . 我 上周 不忙 . +We are both here for the same reason . 我們 來 這裡 是 為了 同一 個 原因 . +Tom gritted his teeth . 汤姆 咬紧牙关 . +This river is dangerous for children to swim in . 孩子 在 这条 河里 游泳 太 危险 了 . +I am 30 years old now . 我 现在 30 岁 了 . +Many workers were laid off at that plant . 那个 工厂 开除 了 很多 工人 . +Tom sat beside Mary . 汤姆 坐在 玛丽 旁边 . +You must get this homework finished by the day after tomorrow . 你 必須 在 後 天 以前 完成 回家 作業 . +Mary set the basket on the table . 瑪麗 把 籃子 放在 桌子 上 了 . +If I had known that you were here , I would have come at once . 如果 我 早 知道 你 在 这儿 的话 , 我 马上 就 来 了 . +He is sleeping like a baby . 他 正 睡着 , 像 个 婴儿 一样 . +I will lend you this dictionary . 我 會 借 給 你 這 本 字典 . +Should I help you ? 我 该 帮 你 吗 ? +" What is going on in the cave ? I am curious . " " I have no idea . " “ 洞 里 发生 了 什么 ? 我 很 好奇 . ” “ 我 一点 也 不 知道 . ” +That car is quite new . 那辆车 十分 新 . +We had a heavy rainfall last night . 昨晚 雨勢 很大 . +I did not think Tom would be scared . 我 没想到 汤姆 会 害怕 . +The world is changing every minute . 世界 每一分 鐘 都 在 改變 . +I am a man . 我 是 个 男人 . +Tom made fun of me . 汤姆 拿 我 开心 . +They were so young . 他們 是 那麼 年輕 . +Tom did not understand what Mary really meant . 汤姆 不 知道 玛丽 真实 的 意思 . +Tom has no time . 汤姆 没有 时间 . +The victim died at a hospital in Boston . 受害者 在 醫院 裡 死去 了 . +He spoke for one hour . 他 讲 了 一 小时 . +She is getting married this fall . 她 今年 秋天 要 結婚 . +He is very kind . 他 非常 親切 . +She refused my offer to help her . 她 拒絕 讓 我 幫助 她 . +Tom says it is quite important . 汤姆 说 它 十分 重要 . +Could I see you a minute , please ? 讓 我 看 你 一會兒 好 嗎 ? +Did you play tennis yesterday ? 你 昨天 打网球 了 吗 ? +Would you like tea or something ? 你 需要 茶 或者 别的 什么 吗 ? +Whose turn is it ? 輪到 誰 了 ? +This room has two closets for clothing . 這 房間 有 兩個 衣櫥 . +He has seven sons . 他 有 七个 儿子 . +Look what I made for you . 看 我 为 你 做 了 什么 . +What are you going to do this weekend ? 你 這個 週末 要 做 什麼 ? +Do you know whether or not it will rain tomorrow ? 您 是否 知道 , 明天 会 不会 下雨 ? +That job paid well . 这份 工作 工资 很 高 . +Tom has no money . Tom 沒有 錢 . +I will wait a day or two . 我 會 等 一兩天 . +He regrets not having worked harder at school . 他 后悔 在校 时 没 用功读书 . +Tom wanted to see Mary . 湯姆 想 見 瑪麗 . +I found a good place to buy fruit a couple of days ago . 前 几天 我 发现 了 一个 买 水果 的 好 地方 . +It is easy to answer the question . 这个 问题 很 容易 回答 . +She gave me this compact disc . 她 給 了 我 這個 光碟 . +I am sorry to trouble you . 我 很 抱歉 給 你 添 麻煩 了 . +He could not get the job . 他 無法 得到 這份 工作 . +I do not know anything about his past . 我 不 知道 任何 有關 他 過去 的 事 . +I did not mean that . 我 沒有 那個 意思 . +You 'd better go back home now . 你 現在 最好 回家 . +Can I try on this jacket ? 我 可以 試穿 這件 外套 嗎 ? +Who will take care of the baby ? 誰 將 照顧 這個 嬰兒 ? +He set fire to the school building . 他 放火 燒 了 校舍 . +Please put the book on the shelf . 請 把 書 放在 架子 上 . +My brother will not be at home tomorrow . 我 的 兄弟 明天 不 在家 . +I lost my notebook today . 今天 我 的 筆記 本 掉 了 . +My father put a fence around the garden . 我 父亲 在 花园 边上 装 了 篱笆 . +That is an exception . 那 是 例外 . +I am never at home on Sundays . 我 周日 从来 都 不 在家 . +That is mine . 那 是 我 的 . +He relies on his wife financially . 他 经济 上 依靠 他 的 太太 . +My aunt brought me some flowers . 我 阿姨 給 我 帶來 了 一些 花 . +More often than not , she had to go in person . 很多 時候 她 要 親自 去 . +Tom had a decision to make . 湯姆 要 做 個 決定 . +I appreciate your cooperation . 我 感謝 您 的 合作 . +These machines are not working now . 这些 机器 目前 不 运转 . +I am very tired right now . 我 現在 很 累 . +Tom said he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +I 'd like you to have a blood test . 我 希望 你 做 血液 檢查 . +You make me happy . 你 讓 我 快樂 . +He can drive a car . 他 會 開車 . +I can not explain it either . 我 也 无法解释 . +My whole family is from Boston . 我 全家 來 自 波士 頓 . +Everyone knows that Bell invented the telephone . 任何人 都 知道 贝尔 发明 了 电话 . +He is afraid of his own shadow . 他 怕 自己 的 影子 . +He is opposed to racial discrimination . 他 反对 种族歧视 . +She is already sleeping . 她 已经 睡下 了 . +Half a loaf is better than none . 聊勝於無 、 有 比 沒有 好 . +Shortly after the accident , the police came . 事故 發生 後 不久 , 警察 來 了 . +I wish I had not bought this . 我 希望 我 沒 買 這 東西 . +I want a good dictionary . 我 想要 本好 词典 . +I made a paper plane . 我 造 了 架 纸飞机 . +Real friendship is more valuable than money . 真正 的 友谊 比 金钱 更 有 价值 . +See you at the party . 在 派 對 上見 . +Put your weapon down . 把 你 的 武器 放下 . +During the Depression in the 1930 is , many wealthy people lost everything in the stock market crash . 在 十九世纪 三十 年代 的 大 萧条 时期 , 许多 富人 在 股市 崩盘 中 失去 了 一切 . +What fruit do you like the best ? 您 最 喜歡 什麼 水果 ? +What is the population of India ? 印度 的 人口 有 多少 ? +She acknowledged that my statement was true . 她 承認 我 的 聲明 是 真實 的 . +The soldier gave water to me . 士兵 給 了 我 水 . +We do what we want to do . 我們 做 我們 想 做 的 . +That should not be hard for you . 那 对 你 来说 应该 不难 . +She gave me access to her records . 她 允許 了 我 對 她 的 訪問 紀錄 . +How rude of you ! 你 真 粗 魯 ! +You must be back by 10 o 'clock . 你 必須 在 10 點 前 回來 . +You certainly play the piano well . 你 一定 鋼琴 彈 得 很 好 . +I am getting off at the next station . 我 會 在 下 一站 下車 . +Do you want this job or not ? 你 想 不 想要 這 工作 ? +The old houses were torn down to make room for a supermarket . 這棟 老房子 被 拆除 了 , 以 騰出 空間 給 超級 市場 . +While reading a book , I fell asleep . 我 看书 的 时候 睡着 了 . +Tom is plastered . 汤姆 醉 了 . +I think that is awful . 我 看 那 糟透了 . +Are you still cold ? 你 还 冷 吗 ? +How much money do you owe Tom ? 你 欠 湯姆 多少 錢 ? +When did you buy it ? 你 甚麼 時候 買 的 ? +Did you find anything interesting ? 你 找到 有趣 的 東西 了 嗎 ? +One language is never enough . 一種 語言 是 永遠 不夠 的 . +You are absolutely right . 你 完全 正確 . +As we went around the corner , the lake came into view . 当 我们 走 到 转角处 , 湖 就 映入 了 眼帘 . +The school will provide tents for us . 学校 会 提供 帐篷 给 我们 . +Cuff him . 把 他 铐 上 . +Are they actually friends ? 他們 真是 朋友 嗎 ? +I can not find my umbrella anywhere . 我 任何 地方 都 找 不到 我 的 傘 . +I vowed that I would never speak to her again . 我 發誓 再也 不 跟 她 說話 了 . +Do you have plans tonight ? 今晚 有 什么 计划 吗 ? +Please lock the door . 請 把 門鎖 上 . +Do not pry into the affairs of others . 不要 探听 别人 的 事 . +Tom is a native speaker of French . 汤姆 是 法语 母语 者 . +It cost me ten thousand yen to have my television set repaired . 把 我 的 電視機 修好 花 了 我 一萬 日元 . +It snowed from Monday to Friday . 雪 从 周 一下 到 周五 . +What is the total amount of money you spent ? 你 一共 花 了 多少 钱 ? +I went swimming in the river . 我 去 了 河裡 游泳 . +What do you call this insect in English ? 这种 昆虫 在 英语 中 叫 什么 ? +We hardly have time to eat breakfast . 我们 几乎 没空 吃 早饭 . +He is giving me a hard time . 他 跟 我 過不去 . +I arrived here yesterday . 我 昨天 到 這裡 的 . +She said she had been happy . 她 說 她 以前 很快 樂 . +I want to have this letter registered . 我 想要 用 掛 號 寄 這 封信 . +Dark clouds are a sign of rain . 乌云 是 下雨 的 征兆 . +I have so many ideas . 我 有 那麼 多 的 主意 . +Do not make fun of people . 不要 取笑 人 . +The school was established in 1650 . 这 所 学校 建于 1650 年 . +He is terrible at math . 他 的 数学 很 不好 . +He lost his way in the woods . 他 在 森林 中 迷了路 . +Come to my house this afternoon . 今天下午 到 我家 来 一趟 . +I barely escaped being hit by the truck . 我 差點 被 卡車 撞 上 . +Do you have any idea when the bank closes ? 你 知道 银行 什么 时候 关门 吗 ? +They have been here for an hour . 他們 已經 在 這裡 一個 小 時 了 . +I will give you this pendant . 我 會 給 你 這個 墜飾 . +Hold on . 坚持 . +She gave birth to a healthy baby . 她 生下 了 一個 健康 的 嬰兒 . +My children are twins . 我 的 孩子 是 雙 胞胎 . +Tom can not remember anything . 汤姆 什么 都 记不住 . +I will go by taxi . 我 坐 出租 車 去 . +Take a book and read it . 拿 本书 读 ! +How do you feel about the issue ? 你 對 這個 問題 有 甚麼 感受 ? +This book was easy . 這 本書 很 容易 . +Tom and Mary even always wear the same color clothes . 汤姆 和玛丽 甚至 经常 穿 同样 颜色 的 衣服 . +She felt like taking a walk . 她 想 去 散步 . +Please remember to mail the letter . 請 記得 把 信 寄出去 . +We need to leave . 我们 必须 走 了 . +There is a hole in your sock . 你 的 袜子 破 了 一个 洞 呀 . +Tom said he loved me . 汤姆 说 他 爱 我 . +Birds lay eggs . 鳥 下蛋 . +They are all innocent children . 他们 都 是 无辜 的 孩子 . +Tom is serving a life sentence . 汤姆 正在 服 无期徒刑 . +How much is this handkerchief ? 请问 这个 手帕 多少 钱 ? +Please show me around . 請 帶 我 到 處 看看 . +Why did not you turn up on Saturday ? 你 為何 週六 沒來 ? +Tom asked Mary who her boyfriend was . 汤姆 问 玛丽 她 的 男朋友 是 谁 . +She gave me a book for Christmas . 她 給 了 我 一本 的 書作 為 聖誕 禮物 . +My birthday falls on Sunday . 我 的 生日 在 星期日 . +That was the most interesting novel that I had ever read . 这 是 我 所 读 过 的 最 有趣 的 小说 . +Do not ask me anything . 什麼 都 別 問 我 . +She walked very carefully . 她 小心翼翼 地 走 . +I have eaten one apple . 我 吃 了 一個 蘋果 . +English is spoken in Australia . 在 澳洲 的 人 說 英語 . +What did you guys go see ? 你们 去 看 啥 了 ? +May I go to the movies tonight ? 我 今晚 可以 去 看 電影 嗎 ? +Tom did not have enough money to pay the rent . 汤姆 没有 足够 的 钱 付 租金 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 多愁善感 是 不好 的 . +The admission is ten dollars a person . 入場費 一個 人 10 美元 . +It is very cold . 非常 冷 . +My favorite sport is baseball . 我 最 喜歡 的 運動 是 棒球 . +Did you go to school yesterday ? 你 昨天 去 上 學 了 嗎 ? +It is difficult to give up smoking . 戒煙 很 難 . +What are your names ? 你們 叫 什麼 名字 ? +He is studying in the library now . 他 現在 在 圖書館 讀書 . +This is the only book I have . 这 是 我 仅 有 的 一 本书 . +They arrived here safely yesterday . 他們 昨天 平安 抵達 這裡 . +The fire alarm sounded . 火警 警报 响 了 . +We went swimming in the river . 我們 去 河裡 游泳 . +Would you care for more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Tom was bullied . 汤姆 被 欺负 了 . +I am staying home . 我 在家 裡 待著 . +Who did you speak with ? 你 和 谁 说话 呢 ? +I still do not know your name . 我 到 現在 還 是 不 知道 你 的 名字 . +" Is he going to swim tomorrow ? " " Yes , he is . " “ 他 明天 去 游泳 吗 ? ” “ 没错 ” +Children do not like to go out in the dark . 孩子 們 不 喜歡 摸黑 外出 . +This work is not necessarily easy . 这项 工作 未必 容易 . +He speaks both English and French . 他 會 講 英語 和法語 . +This zipper does not zip smoothly . 這 拉 鍊 卡卡 的 . +Tsunamis swept through rice fields and flooded the towns . 海嘯席 捲 稻田 , 淹沒 了 城鎮 . +Is there anything that I should not eat ? 有 什么 东西 是 我 不该 吃 的 吗 ? +He is a good lad . 他 是 個 好人 . +What do you say to taking a walk in the park ? 去 公园 散步 你 觉得 怎么样 ? +We will deal with this problem in Chapter 3 . 我们 在 第三章 讨论 这个 问题 . +The dog went away . 這 隻 狗 跑 走 了 . +You ought to have come to see me yesterday . 你 昨天 應該 來看 我 的 . +I doubt if he will come to school today . 我 懷疑 他 今天 是否 會來 上學 . +Listen carefully . 仔细听 着 . +Sorry , but can you show me the way to the next village ? 能 不能 麻烦 你 告诉 我 去 邻村 怎么 走 ? +Let is not discuss it . 我们 不要 讨论 它 . +My father will kill me . 我 爸会 杀 了 我 的 . +You used to be able to see the church from here . 你 以前 可以 從 這裡 看到 教堂 . +The Eiffel Tower is in the same city as the Louvre Museum . 埃菲尔铁塔 和 卢浮宫 在 同 一座 城市 . +I think that it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Get out of bed ! 起床 ! +I am watching TV now . 我 正在 看电视 . +I need to know tomorrow . 我 明天 需要 知道 . +I was tired today so I went to bed early . 我 今天 累 , 所以 我 睡 得 早 . +I heard an unusual sound . 我 聽到 一個 不 尋常 的 聲音 . +An uncle of mine gave me some useful advice . 我 的 一个 叔叔 给 我 了 一些 有用 的 建议 . +This gives me renewed hopes . 这 给 了 我 新 的 希望 . +Have you heard from Tom ? 汤姆 那里 有 联系 过 你 吗 ? +He painted the door over white . 他 把 門 漆成 了 白色 . +How many books do you think you have read so far ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +Come and see me tomorrow . 明天 来 看看 我 . +You are quite forgetful . 你 很 健忘 . +I walked along the river . 我 沿着 河 走 了 段 路 . +If you hurry , you will catch up with him . 如果 你 快 一点 , 还 能 赶上 他 . +Even his servants despised him . 連 他 的 僕人 都 鄙視 他 +When do you want to go ? 你 什麼 時候 要 去 ? +I walked as far as the station . 我們 走到 跟 火車 站 那樣 遠 的 地方 . +He climbed Mt . Fuji . 他 爬 上 了 富士山 . +She laughed at the sight of his hat . 看到 他 的 帽子 , 她 笑 了 . +Did Tom break something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Are you meeting someone here ? 你 在 这里 是 要 见 谁 吧 ? +The surrounding area was very quiet . 周圍 的 地區 非常 安靜 . +I have been on vacation . 我 在 休假 . +I do not take any responsibility at all . 我 完全 不负 任何 责任 . +Tom did not actually see what happened . 湯姆 沒有 真正 看見 發生 了 甚麼 . +Do you deny that you went there ? 你 否認 你 去 了 那裡 嗎 ? +Scotland can be very warm in September . 蘇格蘭 在 9 月 可以 變 的 很 溫暖 . +Tom is not lying . 湯姆 沒有 說謊 . +You are very resourceful . 你 鬼点子 真多 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +The movie received mixed reviews . 影片 得到 的 评价 褒贬不一 . +Bring the water to a boil . 把 水 燒開 . +His office is past the bank on your left . 经过 银行 , 左边 就是 他 的 办公室 了 . +Flowers bloom . 鮮花盛 開 . +You do not have to hide . 你 不用 藏著 . +Tom showed interest in the plan . 湯姆 對 這個 計劃 有 興趣 . +She does not care how she dresses . 她 不在乎 她 的 穿著 . +I am new here . 我 是 新來 的 . +Good luck . 祝你好运 . +Let is begin . 讓 我們 開始 吧 . +It never rains but it pours . 禍 不單 行 . +How do you feel ? 你 感觉 如何 ? +This job pays 10,000 yen a day . 這個 工作 一天 有 10 , 000 日 圓 的 報酬 . +Can I have it ? 可以 给 我 吗 ? +You must go to bed now . 你 現在 必須 上床 睡覺 . +What are you reading ? 你 在 看 什么 ? +He could not remember my address . 他 不 記得 我 的 地址 了 . +Tom visits Mary every time he goes to Boston . 湯姆 每次 去 波士 頓都 去 看 瑪麗 . +The wind is blowing from the north . 风 从 北边 来 . +Tom is a good friend of Mary is . 汤姆 是 玛丽 的 一个 好 朋友 . +I do not want to participate in the ceremony . 我 不想 参加 典礼 . +Tom studies philosophy at college . 汤姆 在 大学 里学 的 是 哲学 . +I have missed so much . 我 错过 了 太 多 . +You are here . 你 在 这里 . +Her father is an excellent pianist . 她 的 父親 是 一位 優秀 的 鋼 琴家 . +Have you eaten dinner ? 你 吃 晚 飯 了 嗎 ? +There is a soccer match tomorrow . 明天 有 一場 足球 比賽 . +You can not buy this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +He ate a box of chocolates . 他 吃 了 一盒 巧克力 . +Tom is leaving Boston tomorrow . 湯姆 明天 離開 波士 頓 . +The policemen arrested the burglar . 警察 逮捕 了竊 賊 . +We must take into account the fact that he is young . 我们 必须 考虑 到 他 很 年轻 . +Tom and Mary can both speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +This is a picture of my family . 這 是 一張 我 全家 的 照片 . +His son wants to be a lawyer . 他 儿子 想 当 律师 . +It was so still that you would have heard a pin drop . 安靜 到 連 針 掉 在 地上 的 聲音 你 都 會 聽 得到 . +I am looking forward to seeing you . 我 期待 著見 到 你 . +He did not answer the phone , so I sent him an email . 他 没有 接电话 , 所以 我 给 他 发 了 封 邮件 . +He does not know much about Japan . 他 不是 很 了解 日本 . +She is a girl , but she is brave . 她 是 個 女孩 , 但 她 勇敢 . +It is by no means certain . 这 根本 不是 确定 的 . +Should we be worried ? 我們 應 該 要 擔心 嗎 ? +Do not you like baseball ? 你 不 喜欢 棒球 吗 ? +This is my friend . 這個 是 我 的 朋友 . +Tom was the only boy in the entire class . 汤姆 是 班里 唯一 的 男生 . +Can you swim ? 你 會 游泳 嗎 ? +Maybe you could draw me a picture . 你 可以 给 我 画 张 画 . +Tom has gone back home to Boston . 湯姆 回波 士頓 的 家 去 了 . +I paid him five dollars . 我 付 了 他 五塊 美元 . +He is the chief of my department . 他 是 我 部門 的 主管 . +He is a friend of my brother is . 他 是 我 哥哥 的 朋友 . +We got a good price for that . 我們 得到 了 一個 很好 的 價格 買 那個 東西 . +I saw him wash the car . 我 看見 他 洗車 . +He was playing the piano and she was singing . 他 彈 鋼琴 , 她 唱歌 . +He sat next to the stream . 他 坐在 河边 . +She fooled him . 她 愚弄 了 他 . +I put some cream in my coffee . 我 在 我 的 咖啡 裡 放 了 一些 奶油 . +I am prepared to accept the consequences . 我 准备 好 了 承担 后果 . +It was love at first sight . 那 是 一见钟情 . +When was the last time you spent time on Facebook ? 你 上 一次 用 Facebook 是 什麼 時候 ? +This book of his is not interesting at all . 他 的 这 本书 一点 意思 也 没有 . +That is too bad . 太 可惜 了 ! +He has to take two science classes . 他 必須 上 兩堂 理化 課 . +That is the man who lives next door . 那 是 住 在 隔壁 的 男人 . +I wish she had come last night . 但 願 她 昨晚 來 就 好 了 . +Tom was the only one who was punished . 湯姆 是 唯一 受罰 的 人 . +Clint Eastwood was elected mayor of Carmel . 克林伊 斯威特 當 選為 卡梅爾市 市長 . +That hotel was very near the lake . 這家 旅館 非常 靠近 湖 . +Sorry to be late . 對 不起 我 來 晚 了 . +We are almost broke . 我們 快 破產 了 . +There is no reason that I should give up my plan . 沒有 理由 让 我 放弃 我 的 计划 . +Tom will now be proud of me . 汤姆 现在 会 以 我 为 傲 . +He has a large farm in Colorado . 他 在 科羅拉多州 有 一個 大 農場 . +It is ten minutes before eleven . 還 有 十分 鐘 就 十一 點 . +It makes me feel sad . 这 让 我 感到 沮丧 . +He has no choice but to resign . 他 沒有 選擇 , 只能 辭職 . +I take full responsibility for the action . 我 會 為 這次 行動 負起 全責 . +Somebody is playing the piano . 有人 正在 彈 鋼琴 . +Please translate the sentence below . 请 把 下面 的 句子 翻译 一下 . +I still have not finished my homework . 我 还 没 完成 作业 . +This tape recorder is not new . 这个 磁带 录音机 不是 新 的 . +He had hoped to succeed , but he did not . 他 本 希望 可以 成功 , 但是 他 没有 . +Has something happened ? 發生 了 什麼 事 嗎 ? +Do not be silly . I can not do it . 别 犯傻 . 我 能 做到 . +Be quiet , or the baby will wake up . 安靜 , 否則 嬰兒 會 醒來 . +He will play golf next Sunday . 他 下 週日 將 打 高爾夫 球 . +I do not feel like eating anything . 我 不想 吃 任何 東西 . +Do you keep in contact with your high school classmates ? 你 还 和 你 的 高中同学 保持联系 吗 ? +Thanks for your reply . 谢谢 你 的 答复 . +I 'd better go home . 我 回家 比較 好 . +I want a new shirt . What do you want ? 我 要 一件 新 衬衫 . 你 想要 什么 ? +This hotel was built last year . 這家 旅館 是 去年 蓋 的 . +I agree with that . 我 同意 . +Tom was hiding something . 湯姆 在 藏 甚麼 . +I could not agree with you more . 我 非常 同意 你 . +He loses his temper quite easily . 他 很 容易 發脾氣 . +Tom is not planning to stay . 湯姆 不 打算 留下 . +Tom seems to know how . 湯姆 看來 知道 那 是 怎樣 . +Does anyone want some more pie ? 有人 想要 更多 的 餡餅 嗎 ? +I can not find my pen . 我 找 不到 我 的 筆 . +Tom did not let me answer Mary is question . 湯姆 沒 有 讓 我 回答 瑪莉 的 問題 . +Can you tell us a bit more about that ? 能 再 告诉 我 一点 吗 ? +May I introduce myself ? 我 可以 自我 介紹 嗎 ? +I will do it tomorrow . 我 明天 再 做 . +Stick another stamp on the envelope . 把 另 一張 郵票 貼 在 信封 上 . +Tom is thirty . 汤姆 今年 三十岁 . +Tom has been sick in bed for three weeks . 汤姆 已经 因 病 卧床 三周 了 . +That bicycle is mine . 那 自行车 是 我 的 . +She studied abroad in order to brush up her English . 她 在 國外 學習 以便 提升 她 的 英語 . +Can you please tell me your name once more ? 请问 你 能 再 告诉 我 一遍 你 的 名字 吗 ? +I usually go to school by bicycle . 我 通常 騎 自行 車 去 上 學 . +Something is wrong with my watch . 我 的 錶 出 了 毛病 . +How important can it be ? 它 能 有 多 重要 ? +We think Tom will be back soon . 我們 認為 湯姆會 很快 回來 . +If I were you , I would not do it . 如果 我 是 你 , 我 就 不 做 那件事 . +I have not seen you around here before . 我 以前 在 这里 没见 过 你 . +I intend to go there . 我 打算 去 那裡 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He has all but finished the work . 他 幾乎 已經 完成 這個 工作 了 . +This coffee is too strong for me . 這個 咖啡 對 我 來說 太 濃 了 . +Does Tom still like jazz ? 湯姆 還 喜歡 爵士 樂 嗎 ? +That man stole my wallet . 那 男人 偷 了 我 的 钱包 . +Tom is in danger . 湯姆 有 危險 . +He loved to laugh and enjoy life . 他 爱 笑 以及 享受 生活 . +I am disappointed that I was not able to go with her . 我 很 失望 我 沒能 和 她 一起 去 . +I remember giving him the key . 我 記得 給 了 他 鑰匙 . +Is this your apple ? 這 是 你們 的 蘋果 嗎 ? +Tom thought he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +Tell me more about Tom . 告诉 我 汤姆 的 情况 . +What are we having for dinner ? 我们 晚饭 吃 什么 ? +This is the end . 這 是 結束 . +Are you free right now ? 你 現在 有空 嗎 ? +What did you hear ? 您 听到 什么 了 ? +Fortune smiled on him . 好运 向 他 露出 了 笑容 . +These pictures are really very beautiful . 这些 照片 真美 . +The entire sales staff has worked around the clock for a week . 全体 销售 人员 通宵达旦 地 工作 了 一周 . +Is that all you have to do ? 这些 都 是 你 不得不 做 的 吗 ? +They are very big . 他們 非常 大 . +The boy has learned to read . 男孩 學會 了 閱讀 . +He saw her and blushed . 他 看到 她 就 臉 紅 了 . +Cancer can be cured easily if it is found in its first phase . 癌症 如果 在 第一阶段 被 发现 的话 是 很 容易 治愈 的 . +You have a way with women . 你 对 女人 有 一套 . +It was before dawn that they got the fire under control . 他们 在 黎明前 控制 住 了 火势 . +He is just gone on leave . 他 剛 請 假 走 了 . +I envy the friendship Tom and Mary have . 我 羨慕 Tom 和 Mary 之間 的 友誼 . +They are talking about music . 他们 在 谈 音乐 . +He went to New York on business . 他 去 紐約 出差 了 . +I hope that you will get well soon . 我 希望 您 快 就 会 好 起来 . +Tom is thrilled . 汤姆 兴奋不已 . +Nice timing . 好时机 . +It was our secret . 它 是 我們 的 秘密 . +Tom is eyes are blue . 汤姆 的 眼睛 是 蓝色 的 . +She got married against her father is will . 她 違背 了 她 父親 的 意願 結 了 婚 . +How well do you know Tom ? 你 了解 汤姆 多少 ? +She insisted that it was my fault . 她 坚持 认为 那 是 我 的 错 . +In my opinion , he is correct . 在我看来 , 他 是 有 道理 的 . +We were attacked from both sides . 我們 被 兩面 夾擊 了 . +What a beautiful flower ! 多 漂亮 的 花 啊 ! +You 'd better not go out today . 你 今天 最好 不要 出門 . +Two thirds of the employees of this company are engineers . 这个 公司 二分 之三 的 雇员 是 工程师 . +She went into her room to change her dress . 她 进 了 她 的 房间 换 裙子 . +Did you get the package I sent you ? 你 收到 我 寄 給 你 的 包裹 了 嗎 ? +Nobody had ever heard of it . 从 没有 人 听说 过 这件 事 . +You can not understand this sentence , can you ? 你 不 懂 这 句句 子 , 不是 吗 ? +Does she speak English ? 她 會 說 英語 嗎 ? +You must be at the station by 5 o 'clock . 五點 以前 你 必須 在 車站 . +Wait here till he comes back . 在 这儿 等到 他 回来 为止 . +Where is the closest pharmacy ? 最近 的 藥房 在 哪裡 ? +This is a small town . 这 是 个 小镇 . +Let is just eat . 我們 吃 吧 . +The Seine flows through Paris . 塞纳河 穿越 了 巴黎 . +A dolphin is a kind of mammal . 海豚 是 一種 哺乳 動物 . +Mary looks like her mother . 瑪麗 長 得 像 她 媽媽 . +Write your name in capitals . 把 你 的 名字 用 大 写写 下来 . +How about Thai food ? 泰国菜 怎么样 ? +How about playing chess tonight ? 今晚 下棋 怎麼樣 ? +He could not understand the sentence . 他 無法 理解 這 句 話 . +My blood pressure is low . 我 的 血压 很 低 . +I will not stay silent . 我 不 會 保持沉默 的 . +Look out ! 当心 ! +I will be flying to Boston . 我 将要 飞 到 波士顿 去 . +Everything seems OK . 一切 看上去 正常 . +He likes to sing in the bathtub . 他 喜歡 在 浴缸 裡 唱歌 . +Just put yourself in my shoes . 你 站 在 我 的 立場 上 考慮 看看 . +How do you make a box ? 你 怎么 做 箱子 ? +The motel can accommodate as many as 400 guests . 汽车旅馆 可以 接待 多达 400 名 客人 . +I would like to speak with Tom alone . 我 想 和 汤姆 单独 谈一谈 . +Learning English is hard work . 學習 英語 很 辛苦 . +My room is very small . 我 的 房間 非常 小 . +This watch is broken . 这个 手表 坏掉 了 . +She said she was happy . 她 说 了 她 很 幸福 . +What does your aunt do ? 你 姑姑 是 做 什麼 的 ? +How about a drink after the game ? 比賽 結束 後 喝一杯 怎麼樣 ? +Did you do this on your own ? 這 是 你 自己 做 的 嗎 ? +Tom does not want to lose Mary . 汤姆 不想 失去 玛丽 . +You are drunk ! 你 喝醉 了 ! +I am bleeding . 我 在 流血 . +Do you want to be rich ? 你 想 致富 嗎 ? +I do not feel like studying English today . 我 今天 不想 学习 英语 . +I have never seen you so happy . 我 从没 见 过 你 这么 高兴 . +I think this is true . 我 想 这 是 真的 . +Tom did better this time than he did last time . 汤姆 这次 做 得 比 上次 好 . +I will have another beer . 我会 再 喝一杯 啤酒 . +I think that Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +What is your mother tongue ? 你 的 母语 是 什么 ? +They never tell a lie . 他们 从不 说谎 . +You may be late for school . 您 上學 可能 會 遲 到 . +I often visit my relatives . 我 常常 访问 我 的 亲戚 . +I played tennis with my brother . 我 和 我 的 兄弟 打 網球 . +Tom was mistaken . 汤姆 错 了 . +My camera is different from yours . 我 的 相機 跟 你 的 不同 . +I need a friend . 我 需要 个 朋友 . +I am sure that he will succeed . 我 相信 他 會 成功 . +As long as you are here , I will stay . 只要 你 在 這兒 , 我 就 會 留下 來 . +Should we have some lunch ? 我們 該 吃 午飯 了 吧 ? +Someone is calling you . 有人 在 叫 你 . +Do you know where I live ? 你 知道 我 住 哪 吗 ? +Something strange is going on . 正 有 什么 奇怪 的 事情 发生 着 . +I know those girls . 我 認識 那些 女孩 . +The lake was frozen . 湖 冻冰 了 . +I did not mean to do that . 我 没 想 那样 做 的 . +How much longer will you stay in Boston ? 你 在 波士顿 再 待 多久 ? +Tom likes chocolate cake a lot . 汤姆 很 喜欢 巧克力 蛋糕 . +I have brown hair . 我 的 头发 是 褐色 的 . +His clothes are out of fashion . 他 的 衣服 過時 了 . +Food should be chewed before being swallowed . 食物 在 吞咽 前要 经过 咀嚼 . +You seemed surprised . 你 看起来 很 吃惊 . +Since I was sick , I did not go to school . 由于 我 生病 了 , 我 便 没去 上学 . +Shut up ! 閉嘴 ! +I did everything by myself . 我 全 靠 自己 . +I know nothing about her . 我 对 她 一无所知 . +We do not have any secrets . 我們 沒有 秘密 . +She tried . 她 试 过 了 . +She is not a full @-@ time employee of this company . 她 不是 這間 公司 正式 的 職員 . +The fish in this restaurant is delicious . 這家 餐廳 的 魚 很 好吃 . +She rushed home with the good news . 她 急忙 帶著 好消息 跑 回家 . +I introduced Mary to my parents . 我 把 玛丽 介绍 给 我 的 父母 了 . +He came to see you yesterday . 他 昨天 來看 你 . +Where do the airport buses leave from ? 机场 大巴 从 哪里 出发 ? +I felt comfortable . 我 感觉 很 舒服 . +I am asking you what you think . 我 问 你 你 在 想 什么 . +Pass me the salt , please . 请 给 我 盐 . +There is something strange happening . 正 有 什么 奇怪 的 事情 发生 着 . +I want you to stay here until I get back . 我 想 你 待 在 这里 直到 我 回来 . +Tom put his keys in his pocket . 湯姆 把 他的鈅匙 放在 他 的 口袋 裡 . +I have hiccups . 我 打嗝 了 . +Why do not you come visit us ? 为什么 你 不 来看 我们 ? +We got up after midnight . 我们 在 午夜 之后 起床 . +This is my property . 這 是 我 的 財產 . +Lansing is the state capital of Michigan . 蘭辛 是 密西根州 的 首府 . +He behaves as if he were insane . 他 表现 得 像 疯 了 一样 . +I met him at the station . 我 在 車站 遇見 他 . +It is a waste of time and money . 这 是 在 浪费时间 和 金钱 . +Kyoto and Boston are sister cities . 京都 和 波士顿 是 姐妹 城市 . +Who do you suggest we talk to ? 你 建議 我們 跟 誰 講 話 ? +Please let me take your picture . 請 讓 我 為 你 拍照 . +Thanks for the updates . 谢谢 提供 新 消息 . +I had my bicycle stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Do you live with your parents ? 你 和 你 的 父母 同住 嗎 ? +She usually gets up early . 她 通常 很早 起床 . +The path zigzagged up the steep slope . 蜿蜒 的 小路 爬上 了 陡坡 . +Mary closed the door quietly . 瑪麗 悄悄地 關上 了 門 . +Was Tom surprised ? 汤姆 吃惊 吗 ? +Close the door on your way out . 出去 的 时候 把门 关上 . +The rope broke under the strain . 繩子 被 拉斷 了 . +Is it going to rain tomorrow ? 明天 会 下雨 吗 ? +I support you whole @-@ heartedly . 我 全心全意 地 支持 你 . +Tom also has one . 汤姆 也 有 一个 . +He had his car stolen last night . 昨晚 他 的 車 被 偷 了 . +This is a post office and that is a bank . 这 是 邮局 , 那 是 银行 . +Tom is friendly to me . 湯姆 對 我 友好 . +Tom does not eat pork . 湯姆 不吃 猪肉 . +Watch my camera for me . 幫 我 看著 我 的 相機 . +Monopoly is a popular game for families to play . 大富翁 是 一個 家庭 玩 的 熱門 遊戲 . +I helped my father with the work . 我 幫 我 父親 做 這個 工作 . +They speak English in New Zealand . 他們 在 紐西蘭 講 英語 . +It is still fresh in my memory . 我 仍然 記憶 猶新 . +This is a great day . 真是 美好 的 一天 . +Tom is coach likes him . 汤姆 的 教练 喜欢 他 . +It is worth the wait . 它 是 值得 等待 的 . +I am not sure Tom would help . 我 不 確定 湯姆 能 不能 幫忙 . +We are not scared of anybody . 我们 谁 都 不怕 . +What time does the movie start ? 電影 什麼 時候 開始 ? +It does not really matter . 那 不 真的 重要 . +I got a phone call from him just as I was about to go to bed . 我 正要 上床 的 時候 接到 了 他 打來 的 電話 . +Keep your eyes wide open before marriage , half shut afterwards . 婚前 張開眼 , 婚 後 半閉眼 . +Let is get our photograph taken . 讓 我們 來 拍照 吧 . +They told me that I would feel a little better if I took this medicine . 他們 告訴 我 吃 完 這個 藥 我 就 會 覺得 舒服 一點 . +We have run short of money . 我们 缺钱 了 . +My grandfather lived to be 90 years old . 我 的 祖父 活 到 九十 歲 . +It stopped snowing an hour ago . 一個 小 時 前 雪停了 . +He leaves for school at seven . 他 七點鐘 去 學校 . +That is the same story as I heard when I was a child . 那 跟 當 我 是 個 孩子 時所 聽到 的 是 同樣 的 故事 . +I would like to talk to Tom alone . 我 想 和 汤姆 单独 谈一谈 . +In my room , there are no clocks . 我 的 房间 里 没有 时钟 . +We went all out to get the job done . 我们 全力以赴 来 完成 工作 . +What is the purpose of your visit ? 您 此行 的 目的 是 什麼 ? +Deal us the cards . 發牌 給 我們 . +He wants to go to Africa . 他 想要 去 非洲 . +Do you have one ? 你 有 嗎 ? +I could not bear to look at her . 我 无法忍受 看着 她 . +I did not want to listen to Tom singing . 我 不想 聽 湯姆 唱歌 . +There is nobody in the building now . 現 在建 築 裡 沒 人 . +I promise that I will come . 我 保证 我会 来 . +He is a teacher . 他 是 教师 . +Please write to me about conditions at your school . 请 写信 告诉 我 你们 学校 的 情况 . +What kind of sandwich do you want ? 你 要 什麼樣 的 三明治 ? +She got first prize in the eating contest . 她 在 吃 东西 比赛 里 得 了 一等奖 . +We had a kid just last year . 就 在 去年 我們 有 了 一個 孩子 . +I am doubling my prices . 我 正在 把 价格 涨 一倍 . +My father has been engaged in foreign trade for many years . 我 父亲 经营 外贸 多年 . +Tom was like a member of our family . 湯姆 像是 我們 家庭 的 一員 . +The friend who I thought would pass the exam failed it . 那个 我 认为 会 通过 考试 的 朋友 失败 了 . +The sun gives us light and heat . 太陽 提供 我們 光 和 熱 . +Not everything can be bought with money . 不是 所有 的 東西 都 可以 用 金錢 買到 . +Tom did not say a single word . 湯姆 甚麼 也 没 說 . +What did you tell your boss ? 你 跟 你 的 老板 说 什么 了 ? +Nobody is going to shed any tears if that old building gets torn down . 没有 人会 为 这个 旧 建筑物 的 拆除 而 落泪 . +She is at work right now . 她 现在 正在 工作 . +You are quite right . 你 是 對 的 . +There is a bank in front of the station . 车站 前 有个 银行 . +Declarations of variables are extremely important in C and C + + . 变量 的 声明 在 C 和 C++ 中 极其重要 . +I paid ten dollars for this cap . 我 付 了 十美元 買 這 頂 帽子 . +I will never speak to you again . 我 再也不会 跟 你 说话 了 . +I will bring one more towel . 我 再 拿 块 毛巾 过来 . +Are you and Tom working together ? 你 跟 湯姆 一起 工作 嗎 ? +Tom did not say where he was planning to go . 湯姆 沒 說 他 打算 去 哪裡 . +Good night . 晚安 . +You should have started by now . 你 早就 該 開始 了 . +Is it true Tom can not read or write ? 汤姆 真的 不会 读 也 不会 写 吗 ? +I agreed with him on that point . 我 在 那 一點 上 同意 他 . +Can he speak English ? 他 會 講 英語 嗎 ? +He took care of the business after his father is death . 在 他 父亲 死 后 , 他 接管 了 公司 . +You could have answered that question . 你 本 可以 回答 那 问题 . +Sentences begin with a capital letter . 句子 以 一個 大 寫 字母 開頭 . +I heard the telephone ringing . 我 听到 电话响 了 . +He skis in Hokkaido every winter . 他 每年 冬天 在 北海道 滑雪 . +You will soon get used to Japanese food . 你 很快 就 会 习惯 吃 日本料理 了 . +She is as beautiful as her mother . 她 跟 她 媽媽 一樣 漂亮 . +Quit gambling . 戒掉 赌博 吧 . +I should not have done it . 我 本 不 应该 做 的 . +We have seen no one . 我们 谁 也 没 看见 . +I saw a woman in black . 我 看见 一个 穿 黑衣服 的 女人 . +He began to eat his breakfast . 他 開始 吃 他 的 早餐 了 . +I hope Tom loses . 我 希望 湯姆 輸 . +I am going out for a while . 我 出去 一会儿 . +I am sorry to bother you so often . 一直 打扰 你 不好意思 . +Be patient . 耐心 等 着 . +I filled the bucket with water . 我 在 桶子 裡 裝滿 了 水 . +Maybe he will not become famous . 也許 他 不 會 成名 . +Finally , it is Friday . 終於 星期五 了 . +She visited her husband in prison . 她 探望 了 她 在 監 獄裡 的 丈夫 . +You are not fast enough . 你 不够 快 . +Tom translated the document into French . 汤姆 把 文档 译成 法语 . +He is a thief . 这 是 一个 小偷 . +He stayed there for three days . 他 在 那裡 待 了 三天 . +Stop making a fool of yourself . 停止 愚弄 你 自己 . +The school is on top of the hill . 學校 在 山丘 頂上 . +She was beautiful when she was young . 她 年轻 时 很 美丽 . +She got out of the car . 她 从 车里 出来 了 . +I have to go shopping . I will be back in an hour . 我 该 去 买 东西 了 , 我 一 小时 后 回来 . +I should have gone home earlier . 我 該 早點 回家 . +If you heard her speak English , you would take her for an American . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 美国 人 呢 . +He cannot have done such a thing . 他 不 可能 做 那種 事 . +They were all dressed in uniforms . 他們 全部 穿 制服 了 . +May I come and see you tomorrow ? 我 明天 可以 來看 你 嗎 ? +I want to drive . 我 想 開車 . +Suppose you had a thousand dollars , what would you do with it ? 假如 你 有 1000 美元 , 你 会 用 它 做 什么 呢 ? +Why should I go to school ? 为什么 我 应该 去 上学 ? +Mary has a bad back . It is hard for her to lift things . 瑪麗 的 背 不好 , 她 很 難 把 東西 舉起 來 . +I hope Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +This is my dictionary . 这 是 我 的 字典 . +This is typical . 这 是 典型 的 . +I asked him to wait here . 我 請 他 在 這裡 等 . +Tom certainly is good at baseball . 汤姆 打 棒球 打 的 非常 好 . +She is a clerk in the supermarket . 她 在 超市 做 秘书 . +I had a little fever this morning . 今天上午 我 有 一點 兒 發燒 . +He caught a cold . 他 着凉 了 . +He was kind enough to lend me some money . 他 够 大方 , 借了 我 一点 钱 . +She is on a diet . 她 在 节食 . +He came to my rescue . 他 拯救 了 我 . +I will provide you with all the necessary information . 我 會 給 你 所有 必要 的 信息 . +There is no water . 沒有 水 . +You are too young to retire . 你 太 年輕 , 不能 退休 . +I am afraid of dogs . 我 怕 狗 . +The planets revolve around the sun . 行星 繞著 太陽 轉 . +Do you believe that God exists ? 你 相信 神 存在 嗎 ? +I am interested in Asian history . 我 对 亚洲 的 历史 很感兴趣 . +This is my wife . 这 是 我 的 妻子 . +Did you lock the door ? 你 有 關門 嗎 ? +A little knowledge is a dangerous thing . 只有 一點點 的 知識 是 危險 的 事 . +It looks like it is going to snow . 看起 來 快 下雪 了 . +He is fluent in Chinese . 他 能 說 流利 的 中文 . +My father helped me with my homework . 我 爸爸 幫 我 做作 業 . +She was ashamed of her children is behavior . 她 为 自己 孩子 的 行为 感到 羞耻 . +Water boils at 100 degrees . 水 在 攝 氏 100 度沸騰 . +I noticed she was wearing a new hat . 我 注意 到 她 当时 戴 了 顶 新 帽子 . +Please do not speak so fast . 請 不要 說 得 這麼 快 . +She is correct for sure . 她 的 確是 正確 的 . +He bought a small house in Kyoto . 他 在 京都 買 了 一個 小 房子 . +Do you like music ? 你 爱 音乐 吗 ? +The doctor called him back . 医生 把 他 叫 了 回来 . +Tom was not in bed . 湯姆 不 在 床上 . +Did you bring a hair dryer ? 你 有 帶 吹 風機 嗎 ? +He was standing at the street corner . 他 站 在 街角 . +I am not ashamed of my father being poor . 我 父亲 很穷 并 不让 我 觉得 丢脸 . +He accused me of having stolen his watch . 他 指控 我 偷 了 他 的 手表 . +Her mother will continue to work . 她 母亲 将 继续 工作 . +He hit the ball with his racket . 他 用 他 的 球拍 擊球 . +That is a huge challenge . 这 是 一个 巨大 的 挑战 . +I brought you a little something . 我 给 你 带 了 点 东西 . +Has the mailman already come ? 郵差 已經 來 過 了 嗎 ? +I know this area pretty well . 我 很 瞭解 這 地方 . +Do not start without me . 我 不 在 就别 开始 . +He is not at home . 他 不 在家 . +I made a few changes . 我 做 了 点 改动 . +I can not stay . 我 不能 留下 . +I hope he has not had an accident . 我 希望 他 沒發 生意 外 . +I did not need to paint the fence . 我 不 需要 粉刷 圍牆 . +It was one of the best nights I have had . 这 是 我 度过 的 最好 的 夜晚 之一 . +He is no fool . 他 不是 傻子 . +This book is quite difficult . 这 本书 很 难读 . +This desk is mine . 這 張 書 桌 是 我 的 . +I am not writing a letter . 我 不是 正在 寫信 . +He lives in that house over there . 他 住 在 那邊 的 那間 房子 . +You should have attended the meeting . 你 應該 參加 這個 會議 的 . +The ship went up in flames . 船 起 了 火 . +He is a promising student . 他 是 一位 有 前途 的 学生 . +I caught a cold two days ago . 我 兩天 前 感冒 了 . +Tom was a bit puzzled by Mary is answer . 汤姆 被 玛丽 的 回答 困惑 了 一下 . +Please shut the door . 請 關門 . +Where do you live now ? 你 现在 住 在 哪里 ? +Tom learned how to do that from his grandfather . 汤姆 从 他 祖父 那里 学会 了 怎么 做 . +I have a pair of shoes . 我 有 一双 鞋 . +He ran as fast as he could . 他 跑 得 能 有 多快 就 有 多 快 . +None of the teachers could solve the problem . 所有 的 老师 都 无法 解决 这个 问题 . +It is not something I am very good at . 这 不是 我 所 擅长 的 事 . +I only want to know the facts . 我 只 想 知道 事实 . +Tom should have handled the situation differently . 汤姆 应该 用 别的 方式 处理 这 状况 . +The best hairdressers are gay . 最好 的 理发师 是 同性恋 . +She is my classmate . 她 是 我 的 同學 . +You should have come yesterday . 你 昨天 應該 來 的 . +Let me give you a lift as far as the station . 讓 我 送 你 到 車 站 吧 . +How did your test go ? 你 的 测验 怎么样 ? +Can you please shut up ? 你 可以 閉 嘴 嗎 ? +I felt good tonight . 我 今晚 感觉良好 . +What is the weather like today ? 今天天气 怎么样 ? +A face with too much make up looks strange . 化妆 太 浓 的话 脸会 看着 很 奇怪 . +Are you taking any medicine regularly ? 你 經常 服用 任何 藥物 嗎 ? +There was only one warden on duty when the riot started . 暴動 開始 時 只有 一位 監獄 長 值班 . +The rich are not always happier than the poor . 有钱人 未必 比 穷人 幸福 . +Tom has not forgiven anybody . 汤姆 没 原谅 过 任何人 . +I need a cab . 我 需要 一輛 出租 車 . +There was no money left in my wallet . 我 钱包 里 没钱 了 . +My room is twice as big as his . 我 的 房間 是 他 的 兩倍 大 . +I wish more people felt the same way . 我 希望 更 多 人 以 相同 的 方式 来 感受 . +The hawk caught a mouse . 這 隻 鷹 抓 到 一 隻 老鼠 . +She was almost late for school . 她 上學 幾乎 遲到 . +He did not agree to my proposal . 他 不 同意 我 的 建議 . +I like reading . 我 喜欢 阅读 . +These things are not mine ! 这些 东西 不是 我 的 ! +The river flows under the bridge . 河 從 橋 下流 過 . +He whistled as he walked . 他 邊 走 邊 吹口哨 . +I advertised my house in the newspaper . 我 在 报纸 上 刊登 了 我 的 房子 的 广告 . +He returned from China . 他 从 中国 回来 了 . +A thousand dollars is a large sum . 1000 美元 是 个 大 数目 . +You should be kind to others . 对 其他人 你 应该 和善 一点 . +Do you like flying ? 你 喜歡 坐 飛機 嗎 ? +She kissed him on the cheek . 她 亲吻 他 的 脸颊 . +Even children can read this book . 即使 是 小孩 也 能讀 這 本書 . +There is no scientific basis for these claims . 這些 主張 沒有 科學 的 根據 . +We cannot overestimate the value of health . 我们 不能 高估 健康 的 价值 . +It is impossible to predict earthquakes . 預測 地震 是 不 可能 的 . +Tom has apparently done that already . 很 明顯 , 湯姆 已經 做 完 了 . +I have not made much progress . 我 还 没有 取得 那么 大 的 进展 . +Is this the bus to Oxford ? 这 是 去 牛津大学 的 车 吗 ? +My hobby is playing the piano . 我 的 嗜好 就是 彈 鋼琴 . +What are you looking at ? 你 在看 什麼 ? +School starts next Monday . 下周一 开学 . +We will get a phone call from him tonight for sure . 今晚 我們 肯定 會 接到 他 的 電話 . +I do not know . 我 一无所知 . +I have no idea who she is . 我 不 知道 她 是 谁 . +Tom is doing what he loves . 汤姆 在 做 他 喜欢 做 的 事 . +She quit smoking . 她 停下 來 抽煙 . +He has not come already , has he ? 他 並 沒有 來 , 不是 嗎 ? +Unfortunately , there was no one around . 很 不幸 , 没有 人 在 身边 . +How do you spell your family name ? 你 的 姓 怎麼 拼 ? +This desk is better than that one . 這 張 書桌 比 那 張 好 . +Volleyball is a lot of fun . 排球 很 有意思 . +Please help me . 請 幫 我 . +Can you jump rope ? 你 能 跳绳 吗 ? +Why do not we have lunch together ? 為 什麼 我們 不 一起 吃 午 飯 呢 ? +I am getting off at the next station . 我 下 一站 下车 . +Tom said hi . 汤姆 打了个 招呼 . +I can see the light . 我 能 看到 光線 . +He is about your age . 他 跟 您 年纪 差不多 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +These are cakes that she baked herself . 這些 是 她 自己 烤 的 蛋糕 . +She graduated from high school last year . 去年 她 從 高中 畢業 了 . +Tom visited Boston last year . 湯姆 去年 去 了 波士 頓 . +He tried to speak French to us . 他 試著 跟 我們 講法 語 . +This job does not pay . 这份 工作 不 付钱 的 . +I think I should get right to work . 我 認為 我 該 馬 上去 工作 . +You are always late . 你 总是 迟到 . +You should learn to control your emotions . 你 應該 學會 控制 自己 的 情緒 . +It was raining when we left , but by the time we arrived , it was sunny . 我们 走 的 时候 下着雨 , 到 的 时候 有 太阳 . +I carried the box on my shoulder . 我 把 盒子 扛 在 肩上 . +Tom wished he had not borrowed the book from Mary . 汤姆 希望 他 没有 从 玛丽 那里 借书 . +I 'd like for you to go . 我 希望 你 去 . +I can not adjust myself to the climate here . 我 不能 讓 自己 適應 這裡 的 氣候 . +All of you did good work . 你們 所有 的 人 都 做 得 很 好 . +I would like to make an overseas call . 我 想 打 個 國際 電話 . +Tom and Mary admired the scenery as they held hands . 汤姆 和玛丽 手牵着 手 , 一起 欣赏 风景 . +He visited many countries in Asia . 他 訪 問 過 許多 亞洲 國家 . +I prefer rice to bread . 比起 面包 , 我 更 喜欢 米饭 . +Tom was conservative . 汤姆 过去 很 保守 . +You are in a safe place . 您 在 一个 安全 的 地方 . +You can not speak English , can you ? 你 不会 说 英语 , 是 吗 ? +He shaved his mustache off . 他 刮 了 他 的 胡子 . +We have not seen anyone . 我们 谁 也 没 看见 . +The city was destroyed by fire . 這個 城市 毀 於 火災 . +I am tired of homework . 我 厭倦 了 功課 . +The blanket is still wet . 这个 毯子 还是 湿 的 . +It was only a partial success . 那 只是 部分 的 成功 . +No man can serve two masters . 没有 人 可以 共侍 二 主 . +The clock gains five minutes a day . 那个 钟 每天 都 快 了 五分钟 . +You are liable for the debt . 你 有 义务 还债 . +I need to study math . 我 需要 学习 数学 . +Are you afraid of Tom ? 你 會 怕 Tom 嗎 ? +I studied for a while this morning . 我 今天 早上 讀 了 一會兒 書 . +I can not stand the noise . 我 不能 忍受 這個 噪音 . +Have you ever been in jail ? 你 去过 监狱 吗 ? +Will it snow tonight ? 今晚 会 下雪 吗 ? +I will attend the meeting . 我 將 參加 這個 會議 . +Mom , can I go swimming ? 媽 , 我 可以 去 游泳 嗎 ? +He looks old , but he is still in his twenties . 他 看上去 老 , 但 他 还 不到 30 岁 . +They were carelessly unaware of the danger . 他们 粗心大意 , 还 没 意识 到 危险 . +One thousand dollars will cover all the expenses for the party . 1000 美元 将 负担 聚会 的 全部 费用 . +All of them agreed to the proposal . 他們 所有 的 人 都 同意 這項 建議 . +He is not breaking the law . 他 没 违法 . +CDs have taken the place of records . CD 已经 取代 了 胶木 唱片 . +We did not break in . 我们 没有 打断 . +Did you buy a nice bicycle ? 你 買 了 輛 好 自行 車 嗎 ? +She appears to have a lot of friends . 她 看 起來 好像 有 很多 朋友 . +It is dangerous to drink too much . 酒 喝 太 多 很 危险 . +Have you gone to see a doctor ? 你 去 看过 医生 了 吗 ? +There were many people at the concert . 音乐会 上 有 很多 人 . +You think I am mad , do not you ? 你 認為 我 瘋 了 , 不是 麼 ? +Tom can not find Mary . 汤姆 找 不到 玛丽 . +She asked him to mail that letter . 她 請 他 寄 那 封信 . +This happens all the time . 這 是 常有 的 事 . +Life has been very hard . 生活 很 艰苦 . +I missed you . 我 想 你 . +I am a student . 我 是 个 学生 . +You and I have the same idea . 你 和 我 有 相同 的 想法 . +It makes no sense at all . 这 没有 任何 意义 . +Is that your car ? 那 是 你 的 車 嗎 ? +Her parents can not help worrying about her injuries . 她 的 父母 不能不 担心 她 的 伤势 . +His new novel is worth reading . 他 的 新小 說 值得 一 讀 . +I will not allow you to use my pen . 我 不 允许 你 用 我 的 钢笔 . +Can you translate this song for me ? 你 能 为 我 翻译 这 首歌 吗 ? +He has been teaching for 20 years . 他 已經 教 了 20 年 . +I am too excited to eat anything . 我 興奮 得 吃不下 任何 東西 . +Come on . I want to show you something . 来 吧 . 我 想 让 你 看点 东西 . +She cried . 她 哭 了 . +Please turn on the radio . 请 将 收音机 打开 . +Drive on . 往前 开 . +I wonder why he did that . 我 不 知道 他 為 什麼 那樣 做 ? +Put on some clothes . 穿 上 點 衣服 . +I got on the wrong bus . 我 上 錯車 了 . +How much is this umbrella ? 這 把 傘 多少 錢 ? +How much money do you have hidden under your bed ? 你 在 你 的 床 下面 藏 了 多少 钱 ? +This is a picture of my sister . 這 是 我 姊姊 的 照片 . +Get out ! 出去 ! +I have run out of money . 我 錢 已經 用完 了 . +She was reading a gardening manual . 她 正在 讀 一本 園藝 手冊 . +Stop swearing , please . 请 别 再 发誓 了 . +Both you and I are men . 你 和 我 都 是 男人 . +Why is snow white ? 为什么 雪 是 白色 的 呢 ? +The speaker is comments were highly offensive . 发言人 的 评论 极 有 攻击性 . +I will never be able to live this down . 我 以 後 不能 在 這 鎮 上 生活 了 . +How many things did you buy ? 你 買 了 多少 東西 ? +Is he still interested ? 他 還 有 興趣 嗎 ? +We are going out tonight . 我们 今晚 出去 . +Who drew it ? 誰 畫 的 ? +Obey your teachers . 要 听 老师 的话 . +I gave my cold to him . 我 的 感冒 传染 了 他 . +It is not easy to master English . 要 精通 英語 不 容易 . +Tom is happy here . 湯姆 在 這裡 很 高興 . +Are you also from Boston ? 你 也 是 從 波士 頓來 的 嗎 ? +She decided to resign from her job . 她 決定 辭去 她 的 工作 . +She is a mere child . 她 只是 個 孩子 . +Let is talk about what you did in Boston . 让 我们 谈谈 你 在 波士顿 做 的 事 . +I want to write an article . 我 想 写 篇文章 . +The boy is playing with his toy soldiers . 男孩 在 玩 玩具兵 . +Would you like a tour ? 你 想 去 旅游 嗎 ? +I wish I were a good singer . 但 願 我 是 一個 好 歌手 . +I knew what Tom was doing . 我 知道 汤姆 在 做 什么 . +We suspected him of lying . 我们 怀疑 他 说谎 了 . +This book is too difficult for you to read . 这 本书 对 你 来说 读 起来 太 难 了 . +Do not forget to take a camera . 别忘了 带 个 相机 . +" Why are you going to Japan ? " " To attend a conference in Tokyo . " “ 你 去 日本 干嘛 ? ” “ 去 东京 参加 一个 会议 . ” +Is Tom a common name in your country ? 在 你们 国家 , 汤姆 是 个 常见 的 名字 吗 ? +I erased the blackboard for the teacher . 我 为 老师 擦 黑板 . +There is no cause for complaint . 没有 理由 抱怨 . +He admonished them for being noisy . 他 告誡 他們 不要 吵鬧 . +The nurse will tell you how to do it . 护士 会 告诉 你 怎么 做 . +This novel is boring . 這 本小 說 很 無聊 . +He lost his eyesight in that accident . 他 在 那次 意外 中 失去 了 他 的 視力 . +Let is shake hands . 讓 我們 握手 吧 . +I work under her . 我 在 她 手下 工作 . +You should have woken me . 你 应该 叫醒 我 . +He lives by himself . 他 独自 生活 . +She bit him . 她 咬 了 他 . +Mary tied an apron around her waist and then took the turkey out of the oven . Mary 试图 把 围裙 围 在 腰 上 , 然后 把 烤鸡 从 炉子 里 拿 出来 . +Tom does not think that will do any good . 汤姆 认为 那 没有 好处 . +He works at the welfare office . 他 在 福利 辦事 處 上班 . +I want to see your mother . 我 想 看看 你 的 母親 . +Are you really willing to help ? 你 是 真的 很 樂意 幫忙 嗎 ? +Please wait till he comes back . 請 等到 他 回來 . +He shook hands with his friend . 他 和 他 的 朋友 握手 . +Let is get started . 让 我们 开始 吧 . +This dog eats almost anything . 這 隻 狗 幾 乎 吃 任何 東西 . +Would you please give me some more tea ? 你 能 再 给 我 点 茶 吗 ? +It is time to take a bath . 是 时候 洗 个 澡 了 . +Where are you planning to spend the night ? 你 打算 去 哪儿 过夜 ? +They consider it impolite to disagree with someone they do not know very well . 他们 认为 , 去 反驳 一个 不 认识 的 人 有些 不 礼貌 . +He began to shout . 他 開始 喊叫 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +You have three minutes to surrender . 限 你 三分 鐘 內 投降 +He spends lots of money on clothes . 他 在 衣服 上 花 了 很多 錢 . +We will meet again . 后会有期 . +I am sick . 我 生病 了 . +That is so perfect . 那 是 完美 的 . +I can not live without you . 沒有 你 我 活不下去 . +The food is not very good here . 這裡 的 食物 不是 很 好 . +I am still sleepy . 我 还 很困 . +He acted like a madman . 他 表现 的 像 个 疯子 . +Our team scored the first goal . 我们 队 进 了 第一个 球 . +I hope I can see you at Christmas . 我 期望 能 在 圣诞节 见到 你 . +Tom wore ripped jeans . 汤姆 穿 了 破洞 牛仔裤 . +I am not a witch . 我 不是 巫婆 . +It goes without saying that health is important . 不用说 , 健康 是 重要 的 . +It would be crazy to do that again . 再 来 一次 就 真是 发疯 了 . +The crane , unlike the dog , has never dreamed of flying . 不 像 狗 , 這 隻 鶴 從 來 沒 有 夢 想 過 飛 翔 . +He told me the story of his life . 他 给 我 讲述 了 他 的 一生 . +I am so excited . 我 很 激动 . +Time for dinner . 吃饭时间 到 了 . +There is no chair to sit upon . 沒有 椅子 坐 . +Keep it . 留 着 吧 . +Radio is been replaced by the TV . 电视 代替 了 收音机 . +Tom has lost his interest in studying French . 汤姆 已经 对 学法语 不感兴趣 了 . +I kept singing . 我 继续 唱歌 . +What I want is not tea , but coffee . 我 要 的 不是 茶 , 而是 咖啡 . +The cat caught a mouse . 猫 抓住 了 老鼠 . +They tasted the bread . 他們 嚐了 麵 包 . +He may have taken the wrong train . 他 可能 搭錯 火車 了 . +Although I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I can not shake off my cold . 我 的 感冒 怎麼 也 不 會 好 . +This is a secret just between you and me , so do not let it slip out . 这 只是 你 和 我 之间 的 秘密 , 所以 不要 让 它 流出去 . +There was a shortage of fuel . 燃料 短缺 . +Where is the checkout counter ? 結帳 櫃台 在 哪裡 ? +They have announced their engagement . 他們 已經 宣布 訂婚 了 . +He comes here every three days . 他 每 三天 來 這裡 一次 . +We want candy . 我們 想要 糖 . +She was at a loss for words to express her feeling . 她 已经 无法 用 语言表达 她 的 感觉 了 . +I can not sleep at all . 完全 睡不着 . +I have heard that name somewhere before . 我 在 别处 听 过 那个 名字 . +There is a book here . 這裡 有 一本 書 . +Switzerland is a neutral country . 瑞士 是 一个 中立 的 国家 . +You should come back immediately . 你 应该 马上 回来 . +She decided to marry him . 她 决定 和 他 结婚 . +Turn off the TV . 关闭 电视机 +I saw him crossing the road . 我 看见 他 穿过 了 马路 . +Only six people were present at the party . 只有 六個 人 參加 了 派 對 . +How many different kinds of pizzas are on the menu ? 菜單 上 有 多少 種比薩 ? +I may have made a mistake . 我 可能 犯 了 个 错 . +I had a vision . 我 有 一个 设想 . +Tom can not have done what you think he did . 汤姆 还 不能 做 完 你 认为 他 能 的 事 . +Sorry it took me so long to write to you . 對 不起 , 我 過 了 這麼 長 的 時間 才 回 你 的 信 . +Three bulbs have burned out . 三个 灯泡 烧坏 了 . +Let is take a rest . 我们 休息 一下 吧 . +I got a letter from her today . 我 今天 收到 了 她 的 信 . +Just then , the bus stopped . 就 在 那时 , 公交车 停住 了 . +You could count to ten when you were two . 在 你 兩歲 時 , 你 可以 數 到 十 . +" When will you be back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +The telephone rang a few minutes later . 几分钟 后 , 电话响 了 . +She told me to open the window . 她 告訴 我 把 窗戶 打開 . +The top of the mountain is covered in snow . 山顶 被 雪 覆盖 了 . +Please take off your coat . 請 脫下 您 的 外套 . +She has not heard the news yet . 她 还 没 听到 这个 消息 . +I want to eat something that is not sweet . 我 想 吃 点 不甜 的 东西 . +I slept on the bus . 我 在 公交车 上 睡觉 了 . +I will leave that to you . 我 會 留 給 你 . +Some people like summer , and others like winter . 有人 喜歡 夏天 , 有人 喜歡 冬天 . +I do not care what he does . 我 不在乎 他 做 什麼 . +Have you ever seen a UFO ? 你 看 過 飛 碟 嗎 ? +Tom has changed his mind again . 汤姆 又 改变 了 他 的 主意 . +The town was full of activity . 小镇 充满 了 活力 . +I need more time . 我 需要 更 多 时间 . +Will you live in Sasayama next year ? 你 明年 會 住 在 筱 山 嗎 ? +It makes me feel good . 它 讓 我 感覺 很 好 . +Did you show it to your parents ? 你 給 你 父母 看 了 嗎 ? +He looked like a doctor . 他 看 起來 像 個 醫生 . +He behaved like a madman . 他 表现 的 像 个 疯子 . +Let me in . 让 我 进去 . +Tom did not know what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +Can I catch a taxi near here ? 我 能 在 這 附近 打車 嗎 ? +Tom is the tallest in his family . 湯姆 是 他家 裡 最高 的 . +I will take your suitcase to your room . 我 會 把 你 的 手提箱 拿到 你 的 房間 . +Is it near your house ? 它 在 你家 附近 嗎 ? +There is no way to know . 沒有 辦法 知道 . +I want him to play the guitar . 我 要 他 彈 吉他 . +She thinks of everything in terms of money . 她 對 任何 事 都 用 錢 的 角度 來看 . +We kept quiet . 我们 保持 了 沉默 . +Tom told Mary he had a lot of money . 湯姆 告訴 瑪麗 他 有 很多 錢 . +She gave me these old coins . 她 給 了 我 這些 舊 硬幣 . +Which countries have you visited ? 你 去过 哪些 国家 ? +He was late because of the snow . 他 因為 下雪 所以 遲 到 了 . +The number of people on Facebook is greater than the population of the United States . Facebook 的 用戶 比美 國 人口 還 多 . +I thought that I told you to stay away from my computer . 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +In this kind of weather , it is best to stay home and not go outside . 这种 天气 下 最好 待在家里 不要 外出 . +Thank you for the wonderful dinner . 為 這 美好 的 晚餐 謝謝 你 . +I look forward to your next visit . 我 期待 著 您 的 再次 光臨 . +Wash your hands before eating . 進食 前 先 洗手 . +Tom and I were not the ones who complained . 汤姆 和 我 不是 抱怨 的 人 . +Many books have been stolen . 很多 书 被盗 了 . +I got acquainted with him in France . 我 在 法國 認識 了 他 . +I returned the book to the library . 我 把 書 還 給 圖書館 . +These shoes do not fit my feet . 這些 鞋 不合 我 的 脚 . +You have to study more . 你 该 学 得 更 多 . +I took Highway 58 . 我 走 58 號 高速公路 . +Tom bought a pair of black leather shoes . 汤姆 买 了 一双 黑色 皮鞋 . +He should apologize for being rude to the guests . 他 应该 为 自己 对 客人 的 粗鲁无礼 而 道歉 . +He runs as fast as you . 他 跑 得 跟 你 一樣 快 . +Sooner or later , we will know the truth . 我們 遲早 會 知道 真相 . +Could you please drive me home ? 你 可以 載 我 回家 嗎 ? +Have you ever eaten a banana pie ? 你 吃 过 香蕉 派 吗 ? +What is for supper ? 我们 晚饭 吃 什么 ? +Does Tom live in Boston ? 汤姆 住 在 波士顿 吗 ? +He likes Disney . 他 喜欢 迪士尼 . +How did you do on your exam ? 考得 如何 ? +This is a low @-@ budget movie . 這 是 一部 低成本 的 電影 . +He would not look at my proposal . 他 不 會 考慮 我 的 建議 . +Where were you last night ? 昨天晚上 你 在 哪裡 ? +This is all the money I have on me . 這 是 我 身上 所有 的 錢 . +Her hair grew back . 她 的 頭 髮 長 回 來 了 . +You can delete that now . 你 现在 可以 删除 它 . +Tom gave Mary half of the apple . 汤姆 给 玛丽 半个 苹果 . +I am not quite sure if we can meet your requirements . 我 不 太 確定 我們 是否 能夠 滿足 你 的 要求 . +I want something to read . 我 要 些 讀 的 東西 . +I do not know what time it is . 我 不 知道 現在 幾點鐘 . +I have already had lunch . 我 已經 吃 過 午餐 了 . +Did you go to school ? 你 去 學校 了 嗎 ? +Do not get involved with that guy . 別 和 這個 人 打交道 . +They accused me of having broken my promise . 他们 指责 我 没有 信守诺言 . +He will come back . 他 会 回来 的 . +All the apple trees were cut down . 所有 苹果树 都 被 砍倒 了 . +We both know why I am here . 我們 都 知道 我 為 甚麼 在 這裡 . +Is this a river ? 這 是 一條 河 嗎 ? +Should not somebody be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +She hired him as a programmer . 她 聘請 他 作 程式 設計 師 . +I can not stand this noise any longer . 我 無法 再 忍受 這個 噪音 了 . +I can not put up with it . 我 无法忍受 它 了 . +His father dedicated his life to science . 他 的 父親 把 一生 奉 獻給 了 科學 . +I still can not believe I did it . 我 仍旧 无法 相信 我 居然 做 了 这种 事 . +I am looking for a part @-@ time job . 我 正在 找 一份 兼職 的 工作 . +Two months have passed since he left for France . 自从 他 离开 去 法国 , 已经 有 两个 月 了 . +I have never heard of Tom . 我 從 沒聽 說 過 湯姆 . +Can I get you something to drink ? 我 可以 帶喝 的 東西 給 你 嗎 ? +When are you leaving ? 你 什么 时候 离开 ? +Keep off the grass . 不要 踩 草地 . +I am amazed at your fluency in English . 你 流利 的 英语 让 我 很 吃惊 . +What is that big building in front of us ? 我们 面前 的 这幢 高楼 是 什么 ? +We captured the thief . 我们 抓住 了 小偷 . +I am sick . 我 病 了 . +I have two sons . One is in Tokyo and the other is in Nagoya . 我 有 两个 儿子 , 一个 在 东京 , 另 一个 在 名古屋 . +I will be back at seven o 'clock . 我 會 在 七點鐘 回來 . +What did you do to make Tom cry ? 你 做 了 甚麼 事 把 湯姆 惹 哭 了 ? +I did it myself . 我 自己 做 的 . +I am not afraid to die . 我 不怕死 . +Did he tell you what to do ? 他 告訴 過 你 要 做 什麼 嗎 ? +She divorced her husband . 她 與 丈夫 離婚 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 練習 . +Do you have a steady boyfriend ? 你 有 一个 固定 的 男朋友 吗 ? +I might make a mistake . 我 可能 犯 了 個 錯 . +She told him she wanted a divorce . 她 告诉 他 说 , 她 想要 离婚 . +Whether you like it or not does not matter . 你 喜不喜欢 没关系 . +They skip school all the time . 他們 總是 逃學 . +See you around . 再见 ! +How much does a kilogram of pineapples cost ? 菠蘿 一 公斤 多少 錢 ? +Tom is no longer a member of this club . 汤姆 不再 是 俱乐部 的 成员 了 . +Let me explain it to you . 讓 我 給 你 說 明 . +I am the best . 我 是 最好 的 . +You will be able to drive a car in a few days . 幾天 之 後 你 就 可以 開車 了 . +Tell them we are coming . 告诉 他们 我们 要来 了 . +She is a quiet person . 她 是 個 安靜 的 人 . +The policeman grabbed the boy is arm . 警察 抓住 了 那个 男孩 的 手臂 . +We help each other out . 我們 互相 幫忙 . +Ignorance is bliss . 無知 就是 幸福 . +A dog followed me to my school . 一 隻 狗 跟 著 我 到 我 的 學 校 . +I do not know when she will come back . 我 不 知道 她 什么 时候 会 回来 . +Tom has been struck by lightning three times . 湯姆 被 閃電擊 中 過 三次 . +He will be here around four o 'clock . 他 会 在 四点 左右 到达 这里 . +The boy can count to ten . 这 小男孩 能数 到 十 . +She is good at speaking English . 她 擅長 說 英語 . +I need to go to the toilet . 我 要 去 廁所 . +I am just writing a letter to my girlfriend . 我 只是 在 写 一封信 给 我 的 女友 . +Tom told me what to say . 汤姆 告诉 我 该 说 什么 . +You are a beautiful young woman . 你 是 一个 美丽 的 女人 . +We have to come to some agreement . 我们 要 达成 一些 协定 . +I have always kept my promises . 我 一直 信守 我 的 諾言 . +I want you to tell me the truth . 我 想 你 把 真相 告诉 我 . +We have ordered Chinese food . 我们 点 了 中餐 . +That is right ! 對了 ! +The Japanese have dark eyes . 日本 人 有 黑色 的 眼睛 . +If you do not leave , I will sic my dogs on you . 如果 你 不 离开 , 我 就 放狗 出来 咬 你 . +You 'd better do it soon . 你 最好 尽快 去 做 . +I played tennis . 我 打 網球 了 . +Let me try another one . 让 我 试试 别的 . +It will be cloudy . 天要 变 多云 了 . +I will open the window a bit . 我 把 窗户 打开 一点 . +What is this ? 這 是 什麼 ? +There is no need to hail a taxi . 没 必要 叫 出租车 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 非常 成功 . +There was no one left but me . 除了 我 没有 人 離開 . +My bike was stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Could you say that in plain English ? 你 會 說 簡單 的 英語 嗎 ? +She managed to drive a car . 她 成功 地 開車 了 . +The sky was clear when I left home . 当 我 离开 家 的 时候 天空 很 明朗 . +The Swiss consume a large amount of beer . 瑞士人 消耗 不少 啤酒 . +Tom got a late start this morning . 汤姆 今早 出发 晚 了 . +Let me ask a stupid question . 我 来 问 个 有点 傻 的 问题 . +He picked flowers for her . 他 为 她 摘 了 些 花 . +I think it is dangerous to climb a mountain on a day when it is stormy . 我 認為 在 有 風暴 的 時候 裡 登山 很 危險 . +There was a big earthquake last night . 昨晚 有 一場 大 地震 . +You must study more . 你 该 学 得 更 多 . +That mountain is easy to climb . 那 座 山 很 容易 爬 . +It is never too late to learn . 活到老 , 学到老 . +Do not try to do this by yourself . 别 想 靠 你 自己 做 这事 . +I do not have to clean my room . 我 不用 打扫 房间 . +I owe ten dollars to her . 我 欠 她 10 美元 . +We have decided not to fire you . 我们 决定 不 开除 你 . +I can not shut it down . 我 不能 關掉 它 . +She cooked us a wonderful meal . 她 為 我們 煮 了 豐盛 的 一餐 . +Not knowing what to do , I asked the teacher for advice . 因为 不 知道 做 什么 , 所以 我 向 老师 寻求 建议 . +Nobody watches her . 谁 也 没在 看 她 . +That is none of your business . 那 不關 你 的 事 . +Turn right at the next corner . 在 下 一個 轉角 右 轉 . +Tom has Mary is address . 汤姆 有 玛丽 的 地址 . +We easily figured out the password . 我们 毫不费力 地 想出 了 密码 . +Summer is over . 夏天 过去 了 . +Would you like another apple ? 你 要 再 來 顆 蘋果 嗎 ? +I am going to bed . Good night . 我 要 睡 了 . 晚安 . +Tom often reads when his children are not at home . 汤姆 经常 在 孩子 们 不 在家 时 阅读 . +We have spent too much time here . 我們 在 這裡 花 了 太 多 時間 . +No one can keep me from going there . 没 人 能 阻止 我 去 那儿 . +She has a cottage by the sea . 她 在 海边 有 一间 小屋 . +That is quite meaningless . 这 毫无意义 . +I know him by name , but not by sight . 我 知道 他 的 名字 , 但 不 知道 他 长 什么样 . +All those things are true . 那些 事 都 是 真的 . +The box is too heavy to carry . 這個 箱子 太重 了 無法 攜帶 . +Try this . 试试 这个 . +How much do I owe you ? 我 欠 您 多少 ? +What did you major in at college ? 你 大學 時 主修 什麼 ? +Do you want to die here ? 你 想 死 在 這裡 嗎 ? +I am tired of working a nine @-@ to @-@ five job . 我 厭倦 了 做 朝九晚五 的 工作 . +Tom knows many French songs . 汤姆 知道 许多 法语歌 . +I should not have eaten the whole bag of potato chips . 我 不该 把 一整 包 薯片 都 吃 完 的 . +Can we trust them ? 我们 能 信任 他们 吗 ? +Tom fell off his bicycle . 汤姆 从 他 的 自行车 上掉 了 下来 . +People grow more cynical with age . 人會 隨著 年齡 的 增長 而 更加 地 玩世不恭 . +He wants a book to read . 他 想 找 本書 來讀 . +Is there a discount if you pay in cash ? 用現 金付 的 話 會 有 折扣 嗎 ? +Tom can change . 湯姆 能 改變 . +I do not care what color ink , just bring me a pen . 颜色 无所谓 , 给 我 一支 笔 就行了 . +Come here quickly . 快 來 這裡 . +I do not understand what you are saying . 我 不 了解 你 在 說 什麼 . +I really need to read all this . 我 真的 需要 把 这 都 读 了 . +There is an urgent message for you . 你 有 一個 緊急 的 訊息 . +I have lost my umbrella . 我 丢 了 我 的 伞 . +They had to work all year round . 他們 一 整年 都 必須 工作 . +The world is running out of oil . 世界 上 的 石油 快用 完 了 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +Tom called the police . 汤姆 叫 了 警察 . +Tom was the only boy in the class . 汤姆 是 班里 唯一 的 男生 . +You ought to tell Tom that you will likely be late . 你 应该 告诉 汤姆 你 可能 会 迟到 . +I am anxious to see you . 我 渴望 見 到 你 . +Turn up the TV . 把 电视 声音 调大 点儿 . +I guess that is how Tom found me . 我 猜 那 就是 汤姆 找到 我 的 方法 . +This tie does not go with my suit . 這條 領帶 跟 我 的 西裝 不配 . +Do you know where Tom is waiting for us ? 你 知道 汤姆 在 哪里 等 我们 吗 ? +I do not think that he is sincere . 我 不 相信 他 是 真心 的 . +What book are you reading ? 你 在读 哪 本书 ? +Tom did a very good job today . 湯姆 今天 做 得 非常 好 . +We had bad weather yesterday . 昨天 天氣 很糟 . +I asked Tom a few questions . 我 问 了 汤姆 几个 问题 . +They know what happened . 他们 知道 发生 了 什么 . +At last , we reached our destination . 我们 终于 达到 了 我们 的 目标 . +Do not make a fool of me . 别 把 人家 当 傻瓜 . +I am almost finished reading this book . 我 就要 读完 这 本书 了 . +When was this temple built ? 这个 寺庙 是 何时 造 的 ? +I am not going to do anything to you . 我 不 會 對 你 做 任何 事 . +Come here , all of you . 你们 全都 过来 . +You must look over the contract before you sign it . 你 在 签字 前 必须 察看 这 合同 . +When did you change your address ? 你 什麼 時候 更改 了 你 的 地址 ? +Do you believe what he said ? 你 相信 他 說 的 話 嗎 ? +I am buying a new car . 我 在 买 一辆 新车 . +The population of London is much greater than that of any other British city . 倫敦 的 人口 遠遠 多 於 其他 英國 城市 的 人口 . +His memory amazes me . 他 的 记忆力 使 我 惊讶 . +Here is a pan without handles . 这 是 个 没有 柄 的 平锅 . +Tom and I have known each other for a long time . 湯姆 和 我 相識 很 久 了 . +A hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I can not give up smoking . 我 無 法戒 煙 . +He is lacking in common sense . 他 缺乏 常识 . +You will not need it . 你 不 會 需要 它 . +I got your fax the other day . 我 前 幾天 收到 了 你 的 傳真 . +He asked me two questions . 他 問 了 我 兩個 問題 . +There was no water in the well . 這 口 井裡 沒有 水 . +He reluctantly agreed to my proposal . 他 不 情愿 地 同意 了 我 的 提案 . +She usually goes to bed at nine . 她 经常 九点 睡觉 . +I 'd very much like to go . 我 非常 想 离开 . +I can not sleep at night . 我 有 失眠症 . +Is it safe to eat cockroaches ? 吃 蟑螂 安全 吗 ? +Stop shooting . 停止 射击 . +It is awfully hot today . 今天 非常 熱 . +He was invited to be the chairman of the club . 他 受邀 做 俱乐部 的 主席 . +The day after tomorrow is Tom is birthday . 後 天 是 湯姆 的 生日 . +What is today is date ? 今天 幾號 ? +What is your name ? 叫 什麼 名字 ? +Winners do not use drugs . 優勝者 不 使用 藥物 . +Tom glanced at the clock on the wall . 湯姆 瞥 了 墻 上 的 表 一眼 . +We ran short of money . 我们 缺钱 了 . +A bottle of red wine , please . 請來 瓶紅 酒 . +If it rains on that day , the game will be postponed until the next fine day . 如果 那天 下雨 , 比赛 会 顺延 至 下 一个 晴天 . +Tom is perfect , is not he ? 湯姆 是 完美 的 , 不是 麼 ? +Watch yourself . 自己 当心 啊 . +They made him sign the contract . 他們 讓 他 簽約 了 . +You have got to set the alarm clock before you go to bed . 在 你 上床 睡覺 之前 , 你 必須 把 鬧 鐘 設定 好 . +I met a friend at the airport . 我 在 机场 见 了 个 朋友 . +Are you angry with Tom ? 你 在 生 汤姆 的 气 吗 ? +Traffic was blocked by a landslide . 交通 被 山崩 所 阻斷 . +Get me a ticket , please . 請 給 我 一張 票 . +Tom is not stupid . 汤姆 不 傻 . +They do not have to know . 他們 不 需要 知道 . +Put the book on the bottom shelf . 把 這 本書 放在 架子 的 底部 . +Money can not buy everything . 金钱 不能 买 到 所有 的 东西 . +I can not remember . 我 記 不得了 . +The President spoke to the nation on TV . 总统 在 电视 上 对 国民 讲话 . +You should have told me a long time ago . 很久以前 你 就 應該 告訴 我 的 . +I do not know and neither does he . 我 不 知道 , 他 也 不 知道 . +There are many stores in this area . 這個 區域 有 很多 商店 . +We have so many things left to do . 我们 有 许多 未 完成 的 事 . +Tom used a fire extinguisher to try and put the fire out . 湯姆 試著 用滅 火器 把 火 撲 滅 . +He is always smiling . 他 总是 在 笑 . +He is as smart as any other boy in the class . 他 和 班上 其他 男生 一样 聪明 . +Quit smoking if you do not want to die early . 如果 你 想 活 得 久 一点 就 戒烟 . +I am satisfied with his progress . 我 對 他 的 進步 感到 很 滿意 . +I want your love . 我 要 你 的 愛 . +Tom is going to be proud of you . 湯姆 要 以 你 為 傲 了 . +I love my wife . 我 爱 我 的 妻子 . +Please do not tell your parents this . 请 不要 告诉 你 父母 . +What do you want to tell me ? 你 想 跟 我 说 什么 ? +He eats lunch at a cafeteria . 他 在 自助餐 廳 吃 午餐 . +We go out together every weekend . 我們 每個 週末 都 一起 出去 . +He hurried to the station so he would not miss the train . 为了 不错 过 火车 , 他 匆匆 赶往 了 车站 . +I will write or phone you next week . 下周 我会 给 你 写信 或 打电话 的 . +Best wishes from all of us . 我们 所有人 都 祝福 你 . +I found the secret compartment quite by accident . 我 完全 是 在 偶然 的 情况 下 发现 了 密室 . +He caught a cold . 他 感冒 了 . +Please take off your shoes . 請 脫掉 你 的 鞋子 . +They announced that a storm was coming . 他們 宣布 了 暴風雨 即將 來臨 . +You can see a lot of stars in the sky . 你 能 看到 天空 中 的 繁星 . +Tom needed to wash his car . 湯姆 需要 洗 他 的 車 . +Give some meat to the dog . 給 這 隻 狗 一些 肉 . +My father goes jogging every morning . 我 父親 每天 早上 去 慢跑 . +London is famous for its fog . 倫敦 以 霧 著名 . +I think I lost my keys . 我 觉得 我 把 钥匙 丢 了 . +He will not be able to do the work . 他 没 能力 做 这个 工作 . +I bought her a nice Christmas present . 我 給 她 買 了 一個 不錯 的 聖誕 禮物 . +We reached the top of the mountain . 我們 到 達 了 山頂 . +When listening to a lecture , you should be quiet . 听 讲座 时 , 你 应该 保持 安静 . +Tom wants a glass of water . 汤姆 想要 一杯 水 . +I like to read . 我 喜欢 阅读 . +You must keep your eyes open . 你 得 留意 一下 . +Why did you come here ? 你 為 什麼 來 這裡 ? +Tom fell down . 湯姆 摔倒 了 . +It is absolutely impossible for me to go on like this . 让 我 像 这样 继续下去 是 绝对 不 可能 的 . +It is the right thing to do . 這 是 正確 的 事情 . +The bread is not fresh . 面包 不 新鲜 . +Thou shalt not kill . 不可 殺 人 . +One plus two equals three . 一加二 等于 三 . +I do not think you ought to . 我 認為 你 不 應該 . +Trouble began immediately . 麻烦 说来 就 来 . +I do not agree with you . 我 不 同意 你 的 看法 . +He snored loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +Did you hear about what is happened to Tom ? 你 有没有 听说 汤姆 出 了 什么 事 ? +Lips that touch liquor shall not touch mine . 碰 過 酒 的 嘴唇 就別 想 碰 我 的 唇 . +Would you lend me a pencil ? 能 借 我 支 铅笔 吗 ? +What is your schedule for tomorrow ? 你 明天 的 行程 安排 是 什麼 ? +That child has few friends . 那 孩子 沒有 什麼 朋友 . +Some abstract art is difficult to understand . 一些 抽象 藝術 是 很 難 理解 的 . +She kept me waiting for 30 minutes . 她 让 我 等 了 30 分钟 . +I wish I were rich . 但 願 我 很 有 錢 . +Father named me after his aunt . 父親 以 他 姑姑 的 名字 為 我 命名 . +Do not underestimate your own strength . 不要 低估 自己 的 实力 . +You do not have a fever . 你 没 发烧 . +I did not expect it to be that big . 我 没想到 它 有 那么 大 . +We are not stupid . 我們 不 傻 . +Be sure to drop us a line as soon as you get to London . 别忘了 一 到 伦敦 就 给 我们 留言 啊 . +Nagoya is to the east of Kyoto . 名古屋 在 京都 的 東方 . +I will personally visit you . 我 會 親自 拜訪 您 . +He saluted the lady . 他 向 那位 女士 问好 . +Man is mortal . 人 固有 一 死 . +I plan to catch the 10 : 30 train . 我 打算 搭 十點 三十分 的 火車 . +If you won a million yen , what would you do ? 如果 你 中 了 一百万 日元 的 奖 , 你 会 怎么 做 ? +You should have completed it long ago . 你们 很久 前 就 应该 完成 了 . +The guy with a beard is Tom . 长胡子 的 是 汤姆 . +They all looked for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +Do you want to drink some water ? 你 要 喝水 嗎 ? +Put your hat on . 戴 上 你 的 帽子 . +She is poor , but she is happy . 她 很 窮 , 但是 她 很快 樂 . +He is getting along well with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +The bookcase is level with the table . 书架 和 桌子 齐平 . +I must have mistyped the number . 我 一定 是 打 錯號 碼 了 . +Did you see yesterday is eclipse ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +His grandmother looks healthy . 他 祖母 看 起來 很 健康 . +I have no particular reason to do so . 我 没有 特别 的 理由 去 做 . +Feel free to stay . 歡迎 留下 來 . +Will he be able to come tomorrow ? 他 明天 能来 吗 ? +I warned him , but he ignored the warning . 我 警告 過 他 , 但 他 不理 會 警告 . +You do not seem to like Tom . 你 看來 不 喜歡 湯姆 . +Tom spoke about the problem with Mary . 汤姆 跟 玛丽 说 了 这 问题 . +Is that the railroad station ? 这 是 火车站 吗 ? +Please remember what he said . 請 記住 他 說 的 話 . +That is very sweet of you . 您 真是 太好了 . +Stay out of my room . 别 进 我 的 房间 . +It is nothing serious . 這 沒 什麼 要 緊 的 . +Tom or somebody said that . 汤姆 或 某人 说 了 那事 . +Salmon lay their eggs in fresh water . 三文 魚 在 淡水 中產 卵 . +I did not have time to watch TV yesterday . 我 昨天 沒時間 看電視 . +Great progress has been made . 已经 取得 巨大 进展 . +Tom hit a triple . 湯姆 擊出 三壘 安打 . +The dog always barks at me . 狗 總是 對著 我 嚎叫 . +I wanted red shoes . 我 要 紅色 的 鞋子 . +He asked that we be silent . 他 要求 我們 安靜 . +I have no knife to cut with . 我 沒有 刀子 可用 來 切 . +Which book is yours ? 哪 本書 是 你們 的 ? +How much does this hat cost ? 这 顶 帽子 多少 钱 ? +Someone has been here . 有人 來 過 這裡 . +The boy entered by the back door . 那個 男生 從 後 門 進來 了 . +Tom is sloshed . 汤姆 醉 了 . +She married him . 她 嫁给 了 他 . +Wait for me downstairs . 在 楼下 等 我 +Pride goes before a fall . 骄傲 是 失败 的 先行者 . +Did they buy the juice ? 他們 有 買 果汁 嗎 ? +I can not find my suitcase . 我 找 不到 我 的 手提箱 . +Do you want some more tea ? 你 想 再 要点 茶 吗 ? +I just do not want to marry you . 我 就是 不想 嫁 給 你 . +Will you please explain the meaning of this sentence to me ? 您 能 为 我 解释 这 句句 子 的 意思 吗 ? +The bottle is filled with water . 這個 瓶子 裝滿 了 水 . +There were no more free seats . 没有 更 多 免费 座位 了 . +Luckily , we found an escape route . 幸運 的 是 , 我們 找到 了 逃生 通道 . +Let is get off here . 我们 在 这里 下车 吧 . +You remind me of a boy I used to know . 你 让 我 想起 我 过去 认识 的 一个男孩 . +You should wear a coat . 你 應 該 穿 一件 大衣 . +Tom is a racist . 汤姆 是 种族主义者 . +Bring me a bucket of water . 給 我 一桶 水 . +Other than Sundays , I work every day . 除了 星期天 我 每 一天 都 工作 . +Are you looking for work ? 你 是 在 找 工作 吗 ? +Are you sure Tom can do that ? 你 確定 湯姆 能 做 嗎 ? +Put in a little more sugar . 多 放 一點 糖 . +I will give you a call tomorrow . 明天 我 給 你 打 電話 . +He did not give me much advice . 他 没 给 我 多少 建议 . +You 'd better go by bus . 你 最好 坐 公共 汽車 去 . +I took the elevator to the third floor . 我 乘 电梯 上三楼 . +I did not mean to keep it secret . 我 不是 有意 要 保密 的 . +My brother is not as tall as I was two years ago . 我 弟弟 没 我 两年 前 高 . +We enjoyed singing songs together . 我們 喜歡 一起 唱歌 . +Pale ale is a low @-@ alcohol beer . 淡 啤酒 是 一種 酒精 含量 低 的 啤酒 . +That feels good . 感觉良好 . +Do not worry about it . 不要 擔心 它 . +Can I make a reservation for golf ? 我 能 预定 一下 打 高尔夫球 吗 ? +I saw a strange woman there . 我 看见 那儿 有个 奇怪 的 女人 . +Is not Tom from Australia ? 汤姆 不是 澳洲 来 的 吗 ? +I got acquainted with him last night . 我 昨晚 認識 了 他 . +You are a celebrity now . 你 现在 是 名人 了 . +The handyman was supposed to arrive at twelve noon , but got stuck in a traffic jam for a few hours . 這個 工人 本來 應該 在 中午 十二 點 到 達 , 但 他 被 交通堵塞 困住 了 幾個 小 時 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +We are very disappointed in you . 我们 对 你 很 失望 . +Dutch is closely related to German . 荷蘭語 與 德語 關 係 密切 . +I think Tom lied to us . 我 觉得 汤姆 对 我们 撒谎 了 . +This hotel does not serve lunch . 這家 旅館 不 提供 午餐 . +Interest rates are still low . 利率 还是 低 . +This is the best pizza I have ever eaten . 這 是 我 吃 過 的 最好 的 比薩 . +I think Tom is talented . 我 認為 湯姆 有 才能 . +Remember to cross your t is . 记得 在 字母 t 上画 上 横 . +They fell into the conversation immediately . 他们 很快 就 聊起来 了 . +Please bring us two cups of coffee . 請 給 我們 來 兩杯 咖啡 . +Tom found new evidence . 汤姆 发现 了 新 的 证据 . +My father was no less affectionate and tender to me than my mother was . 我 爸爸 对 我 的 爱和 照顾 不 比 我 妈妈 少 . +Tom has been uncooperative . 湯姆 不 合作 . +There were few people on the beach . 沙灘 上 的 人 非常少 . +Let me read the paper when you have finished with it . 报纸 看完 后 借 我 看下 . +You will have to start at once . 你 必须 马上 开始 . +Tom does not pay much attention to how he dresses . Tom 没有 花费 精力 去 打扮 自己 . +We have to do something , Tom . 汤姆 , 我们 必须 要 做 点 什么 . +If you do not understand , ask . 如果 你 不 懂 , 那 就 问 . +He got injured in a traffic accident . 他 在 一場 交通 意外 中 受 了 傷 . +He is not going to buy a camera . 他 不 打算 买 一个 摄像机 . +She slept for a few hours . 她 睡 了 几小时 . +Do not ask me for money . 不要 問 我 要 錢 . +I could not leave Tom . 我 不能 離開 湯姆 . +Tom is an unknown artist . Tom 是 個 不 知名 的 藝術家 . +I will be happy to attend your party . 我 很快 樂能 參加 你 的 派 對 . +She has no enemies . 她 没有 敌人 . +You look really nervous . 你 看起来 真的 很 紧张 . +Watch him and do what he does . 看著 他 並 跟著 他 做 . +My mother is not at home . 我 媽媽 不 在家 . +I asked her for a date . 我 向 她 提出 約 會 的 請求 . +I will treat you . 我 請 你 . +Bright ideas never occur to me . 我 總 想不出 什麼 好 點子 . +I was the one who had to tell Tom . 该 由 我 告诉 汤姆 . +Can you speak English ? 你們 會 說 英語 嗎 ? +Her father devoted his life to science . 她 父亲 把 一生 都 贡献 给 科学事业 了 . +I sometimes watch TV . 我 有 時 看 電視 . +The children were playing in the dirt . 孩子 们 在 尘土 里 游戏 . +She assigned him to the job . 她 指派 他 做 這個 工作 . +I ran as fast as possible . 我 盡 可能 地 跑 快 一點 . +Perhaps you are right . 也许 您 有 道理 . +Someone pushed me inside . 有人 推 我 到 裡面 . +Who can say what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +This extension cord is too short . 這條 延長 線 太短 了 . +I rejected the offer . 我 拒绝 了 报价 . +I asked a policeman for directions . 我 向 一個 警察 問路 . +Do you know my name ? 你 知道 我 的 名字 嗎 ? +The swimmers were numb with cold . 游泳 選手 們 凍僵 了 . +He visited his hometown for the first time in ten years . 他 10 年 中 第一次 访问 他 的 故乡 . +Is anybody in there ? 那边 有人 吗 ? +Is there a zoo in the park ? 公园 里 有 动物园 吗 ? +This table is reserved . 这个 桌子 被 预约 了 . +I have chapped lips . 我 的 嘴 裂开 了 . +Do you think the weather will be fine tomorrow ? 你 觉得 明天 天气 会 变 好 吗 ? +Well , girls , it is time to go . 那么 , 女孩 们 , 是 时候 出发 了 . +Her father made her tell him everything . 她 的 父親 要 她 告訴 他 一切 . +I do forgive Tom . 我 真的 原谅 汤姆 . +When does it begin ? 什么 时候 开始 ? +America likes to claim that it is a " classless " society . 美国 是 一个 自称 没有 社会阶层 的 国家 . +I usually walk to school . 我 通常 走 去 学校 . +Eat and drink . 吃 吧 , 喝 吧 . +They say love is blind . 人们 说 爱情 是 盲目 的 . +Are you free this afternoon ? 你们 今天下午 有空 吗 ? +This is delicious . 很 美味 . +You ought to ask him for advice . 你 应该 向 他 征求意见 . +I go to bed very early . 我 很 早就 去 睡 覺 . +Banks open at nine o 'clock . 銀行 九點 開門 +I saw your brother the other day . 前 幾天 我 看到 了 你 哥哥 . +Why do you want to study abroad ? 为什么 您 想到 外国 读书 ? +These days it snows quite a lot . 这些 天下 了 好多 雪 . +Even though I studied English for 6 years in school , I am not good at speaking it . 尽管 我 在 学校 学 了 6 年 英语 , 我 还是 说 不好 . +He was the first person to arrive . 他 是 第一 個 到 達 的 人 . +I was awfully confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can understand what she is saying . 我 能 了解 她 在 說 什麼 . +This could hurt our business . 这 会 打击 我们 的 生意 . +I hear they are pretty good . 我 听说 他们 挺 好 . +My sister resembles my mother . 我 妹妹 很 像 我 妈妈 . +I am as hungry as a horse . 我 餓 得 像 匹馬 . +I am not turning back . 我 不 回去 . +Tom stayed in Australia for three years . 汤姆 在 澳大利亚 呆 了 三年 . +Let me introduce my mother to you . 讓 我 向 你 介紹 我 的 母親 . +Remember Tom is advice . 记住 汤姆 的 建议 . +Tom probably does not know how to do that as well as Mary . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Roll the ball to me . 把 球 传给 我 . +He is a head taller than me . 他 比 我 高 一个头 . +I do not care . 我 无所谓 . +The boy came running into the room . 小男孩 跑 進 了 房間 . +My father works at a factory . 我 父亲 在 工厂 工作 . +A gentleman would not do such a thing . 一个 绅士 是 不会 做 这种 事 的 . +Tom does not want to let Mary go . Tom 不想 让 Mary 走 +I do not know what I should do now . 我 不 知道 现在 应该 做 什么 . +Are you interested in politics ? 你 对 政治 感兴趣 吗 ? +And everyone has the ability to contribute . 每个 人 都 有 能力 作贡献 . +Sorry , but I can not hear you very well . 對 不起 , 但 我 聽 不 清 你 說 的 話 . +I should be studying English , but I want to watch a movie . 我 真的 應該 學 英語 , 但是 我 想 看 電影 . +She felt insecure about her future . 她 對 她 的 未來 感到 沒有 安全感 . +Tom waited outside . 湯姆 在 外面 等 . +Do you understand ? 你 明白 了 嗎 ? +As for me , I have no objection . 对于 我 , 我 不 反对 . +He plays baseball tomorrow . 他 明天 將 打 棒球 . +How could things get worse ? 事情 怎麼 變 糟 的 ? +I have to get to sleep ! I have got classes tomorrow . 我 必须 去 睡觉 了 ! 我 明天 早上 有 课 . +Think about tomorrow . 請 思考 一下 明天 . +Do not come into my room . 不要 進入 我 的 房間 . +What do you think of those Japanese writers ? 你 觉得 那些 日本 作家 怎么样 ? +It seems to me that she has a tendency to exaggerate . 在 我 看來 , 她 有 一種 誇張 的 傾向 . +Maybe we should open it now . 我們 現在 可能 該 打開 它 . +I want to brush up my English . 我 要 溫習 一下 我 的 英文 . +It soon began to rain very hard . 很快 就 會 開始 大雨 了 . +The revolution has brought about many changes . 这场 革命 已经 带来 了 很多 改变 . +Tom worked hard to get the work done on time . 汤姆 努力 工作 按时 完成 工作 . +Since he has ambitions , he works hard . 因為 他 有 野心 , 他 很 努力 地 工作 . +This is too expensive ! 这 太贵 了 . +I have to say this . 我 得 说 这事 . +She is busy now and can not speak to you . 她 现在 忙 , 不能 跟 你 说话 . +It is your favorite song . 它 是 你 最 喜歡 的 歌 . +He convinced me of his innocence . 他 让 我 相信 他 是 无辜 的 . +He has more than five dictionaries . 他 有 五本 以上 的 字典 . +All I really want to do is talk to Tom . 我 真正 想 做 的 就是 跟 湯姆 說 話 . +My uncle is company launched a new product last month . 舅舅 的 公司 上个月 推出 了 一项 新 产品 . +I am glad I was there . 我 很 高興 我 在 那裡 . +Leave this to me . 把 这个 留给 我 吧 . +Please wait until the end of this month . 本月 结束 之前 请 等待 . +Only six people came to the party . 只有 六個 人 參加 了 派 對 . +Come along with us . 跟 我們 一起 來 吧 . +That was really unfair . 那 真不 公平 . +You are not authorized to enter there . 你 无权 进入 那里 . +She is not afraid of anything . 她 不 害怕 任何 東西 . +The paint was coming off the wall . 油漆 從 牆上 脫落 . +She kept on working . 她 繼續 工作 . +She must have done it yesterday . 她 昨天 一定 已經 做 過 了 . +A big tree fell in the storm . 一棵 大樹 在 暴風 中 倒下 . +I look forward to seeing you again . 我 期待 著 再次 見 到 你 . +Why are you wearing that scarf ? 你 为什么 戴 那条 围巾 ? +I asked him to open the window . 我 請 他 把 窗戶 打開 . +I have not smoked for ages . 我 很久没 有 抽烟 了 . +I agree with him . 我 同意 他 . +We will continue . 我们 要 继续下去 . +What time shall I pick you up ? 我 該 幾點 去 接 你 ? +I will let you know in advance . 我会 让 你 提前 知道 . +I only know him by name . 我 只 知道 他 的 名字 . +May I help you ? 我 能 幫 你 嗎 ? +Do you have a lot of money on you ? 你 身上 有 很多 钱 吗 ? +Can you do that by yourself ? 你 自己 一個 人 能 做 嗎 ? +Other than Sundays , I work every day . 我 除了 星期天 外 每天 都 上班 . +The policeman arrested him for drunken driving . 警察 因 酒 後 駕駛 逮捕 了 他 . +I like shopping on Ebay . 我 喜欢 在 eBay 上 购物 . +This is a bad thing . 這 是 件 壞 事 . +They broke into the jewelry shop . 他們 闖進 了 珠寶 店 . +I eat meat three times a week . 我 每週 吃 肉 三次 . +I go to church on Sundays . 周日 我 去 做礼拜 . +The conflict between blacks and whites in the city became worse . 在 这个 城市 , 白人 和 黑人 间 的 争端 愈演愈烈 . +They hugged . 他们 拥抱 . +They trust Tom . 他们 信任 汤姆 . +Mother prepared lunch for me . 妈妈 为 我 准备 了 午饭 . +Speaking English is not easy . 說 英語 是 不 容易 的 . +I was in London last month . 上個月 我 在 倫敦 . +Get me the newspaper . 去 拿 一下 报纸 . +It is ten minutes ' walk to the station . 步行 到 車 站 要 花 十分 鐘 . +It is not good for anybody . 这 对 任何人 都 不好 . +I have always trusted your judgment . 我 一直 都 相信 你 的 判断 . +Where is the kitchen ? 厨房 在 哪 ? +I was very relaxed . 我 很 放 鬆 . +Write your name and address on this envelope . 把 你 的 姓名 和 地址 寫 在 這個 信封 上 . +He likes to watch baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I heard our dog barking all night . 我 聽到 我們 的 狗叫 了 一整夜 . +She fainted when she saw blood . 她 看见 血 就 晕 了 . +I was not alone then . 我 当时 不 孤单 . +I have no friends to help me . 我 没 朋友 帮 我 . +I asked him for a favor . 我 請 他 幫 忙 . +He makes good use of his talents . 他 善用 他 的 天赋 . +I just want to be happy . 我 只 想 高兴 . +She is going to Mount Tate . 她 將 去 立山 . +He told me an interesting story . 他 告訴 了 我 一個 有趣 的 故事 . +I do not like being the one who always has to milk the cow . 我 不 喜欢 做 那个 总是 挤 牛奶 的 人 +He placed the book on the shelf . 他 把 书 放在 了 书架上 . +I know that life is short . 我 知道 生命 是 短暂 的 . +I am just playing the devil is advocate . 我 在 给 魔鬼 当 辩护士 . +What is your opinion on that ? 关于 那个 你 有 什么 看法 ? +I got on the train for London . 我 登上 去 伦敦 的 火车 . +Something is changing . 有些 東西 在 變化 . +English is studied all over the world . 世界各地 都 讀 英語 . +A cold front swept over Europe . 一股 寒流 侵袭 了 欧洲 . +He is getting along with his neighborhood . 他 和 他 的 邻居 相处 . +Please speak a little more slowly . 請 講 慢 一點 . +He parked his car in front of the building . 他 把 车 停 在 大楼 前 . +Foxes eat hens . 狐狸 吃 母鸡 . +The explanation is by no means satisfactory . 這個 解釋 不是 很 令人 滿意 . +Can you feel the difference ? 你 能 感受 到 不同 之處 嗎 ? +I am looking forward to seeing him . 我 期待 再次 見 到 他 . +This coffee is too hot for me to drink . 这 咖啡 热 得 我 没 办法 喝 . +I will never see him again . 我 永遠 不 會 再 看到 他 . +I like chocolate . 我 喜歡 巧克力 . +He was scared you would shoot him . 他 害怕 你 會 開 槍 打 他 . +I am not tired at all . 我 根本 不累 . +She poured brandy into the glasses . 她 把 白蘭 地 倒 進 玻璃杯 裡 . +She is very clever . 她 很 聰明 . +That is Tom is mother . 那 是 汤姆 的 妈妈 . +See you later . 再见 . +What if Tom is still alive ? 如果 汤姆 还 活着 呢 ? +I also had a very good time . 我 也 过 得 很 愉快 . +Those records are not accessible to the public . 這些 記錄 不 對 公眾 開放 . +Nobody knows when the earthquake will occur . 没有 人 知道 地震 何时 会来 . +After they argued , they did not speak to each other for a week . 他们 争吵 后 , 一周 都 没有 再 说话 . +What is this ? 這 是 什麼 啊 ? +She gave birth to a daughter yesterday . 她 昨天 生 了 一個 女兒 . +Do not put your elbows on the table . 不要 把 你 的 手肘 放在 桌子 上 . +Do you think he is good for the position ? 你 认为 他 适合 这个 职位 吗 ? +I turned the doorknob . 我 轉動 了 門 把 . +Tom is looking for someone to take Mary is place . Tom 正在 找 其他人 代替 Mary . +I canceled my hotel reservation . 我 取消 了 我 旅館 的 預訂 . +Let is have a few drinks tonight . 讓 我們 今晚 喝 幾杯 . +Tom is a very good singer . 汤姆 是 个 很好 的 歌手 . +I can not find fault with him . 我 挑不出 他 的 毛病 . +It is not a road , but a path . 它 不是 一條 路 , 而是 一條 小徑 . +My mother opened the door very carefully . 我 妈妈 小心翼翼 地 打开门 . +What have I got to lose ? 我 要 失去 什么 ? +Could I park my car here ? 我 能 把 我 的 车 停 在 这儿 吗 ? +Do you have a fever ? 你 發燒 了 嗎 ? +May I borrow your bike ? 我 能 借 一下 您 的 自行车 吗 ? +Put it back on the desk . 把 它 放回 桌子 上 . +She is a noted singer . 她 是 一个 著名 的 歌手 . +You are not going in the right direction . 你 要 南辕北辙 了 . +What did he ask you ? 他 問 你 什麼 ? +She has blue eyes . 她 有 蓝色 的 眼睛 . +Everybody looks up to Tom . 每个 人 都 看 向 汤姆 . +There is a basket under the table . 桌子 底下 有 一個 籃子 . +He accepted her gift . 他 接受 了 她 的 礼物 . +I asked him point @-@ blank . 我 直接 地 問 了 他 . +I play volleyball a lot . 我 常 打 排球 . +Let is eat while the food is warm . 讓 我們 趁 熱 吃 吧 . +Tom is asleep on the couch . 汤姆 在 长沙 发 上 睡着 了 . +This wine tastes great . 這 葡萄酒 非常 好喝 . +He is a man of ability . 他 是 个 能干 的 男人 . +I speak Swedish . 我 说 瑞典语 . +There is something I want you to see . 我 有 东西 想 给 你 看看 . +It is my job . 這 是 我 份 內 的 事 . +Feel this . 来 感受一下 这个 . +That is a great poem . 這 是 一首 很棒 的 詩 . +Tom is a French teacher . 汤姆 是 法语 老师 . +I have not seen you for ages . 我 已經 有 很 長 的 時間 沒有 見到 你 了 . +In some countries , the punishment for treason can be life in prison . 在 一些 國家 , 叛國 罪 的 懲罰 可以 是 終身 監禁 . +He is three years older than her . 他 比 她 大 三岁 . +I do not understand any French . 我 一点 法语 都 不 懂 . +Riding double on a bicycle is dangerous . 腳踏車 雙載 是 危險 的 . +Tom is as tall as his father . 湯姆 跟 他 爸爸 一樣 高 . +Where is the pain ? 哪裡 痛 ? +I am busy . 我 很忙 . +Are we allowed to take pictures here ? 这里 允许 拍照 吗 ? +What did you get for Christmas ? 你 耶 誕節 得到 了 什麼 ? +We got permission to park here . 我們 有 在 這裡 停車 的 許 可 . +He came home three hours later . 他 三個 小 時 後 回家 了 . +She proceeded with the work . 她 继续 工作 . +I have a computer . 我 有 一台 电脑 . +You will never be alone . 你 永远 不会 一个 人 的 . +He rescued a boy from drowning . 他 救 了 一个 溺水 的 男孩 . +I think we are ready to do that . 我 认为 我们 准备 好 了 . +We all like cycling . 我们 都 喜欢 骑 自行车 . +She used to live with him . 她 以前 和 他 住 一起 . +Are you for real ? 你 是 认真 的 吗 ? +I do not feel very well . I should go home . 我 感覺 不太好 , 我 該 回家 . +I was not quite sure what to say . 我 不 太 確定 要 說 什麼 . +I do not understand at all . 我 完全 不 懂 . +Tom was fired . 湯姆 被 解僱 了 . +That movie is for children . 那部 電影 是 給 小孩 看 的 . +The river is on the other side of the hill . 河 在 山丘 的 另一端 . +I have finished reading the book . 我 看 完 了 这 本书 . +Tom could not conceal his disappointment . 汤姆 不能 掩饰 他 的 失望 . +Why are you burning these pictures ? 为什么 你 要 烧 这些 图片 呢 ? +Give me the report . 给 我 报告 . +The dog barked at the mailman . 狗 對著 郵差 叫 . +What does this word mean ? 这个 词 是 什么 意思 ? +He is studying at his desk . 他 正在 他 的 書 桌旁 讀書 . +He had to clean his room . 他 不得不 打扫 了 他 的 房间 . +Tom was a teacher for nearly thirty years . 汤姆 当 教师 约 三十年 了 . +I suggest we move to a safer location . 我 建議 我們 去 個 更 安全 的 地方 . +It is said that treasure is buried in this area . 据说 这个 区域 埋 着 财宝 . +Nobody knows where he has gone . 沒 有人 知道 他 去 了 哪裡 . +He was wet all over . 他 从头到脚 都 湿 了 . +He patted me on the shoulder . 他 拍拍 我 的 肩膀 . +He is a learned man . 他 是 个 有 教养 的 人 . +Tom is hope was to win first prize . 湯姆 希望 贏 得 第一名 . +The wind blew too hard for them to play in the park . 风 刮得 太猛 , 他们 没法 在 公园 里 玩 了 . +This is my book . 这 是 我 的 书 . +I admire you for your courage . 我 佩服 你 的 勇氣 . +Can you use a computer ? 您 会 使用 计算机 吗 ? +I regret eating those oysters . 我 後 悔 吃 了 那些 牡蠣 . +The sky grew darker and darker . 天空 变得 越来越 暗 了 . +I solved the problem easily . 我 很 容易 地 解決 了 這個 問題 . +Tom let Mary go home . 湯姆 讓 瑪麗 回家 . +We will change trains at the next station . 我們 會 在 下 一站 換 火車 . +Do not read while walking . 不要 边走边看 书 . +You should have told me yesterday . 你 昨天 就 该 告诉 我 了 . +Tom does not like people who smoke in no smoking areas . 汤姆 讨厌 在 禁烟 区 吸烟 的 人 . +Mary had to go to school . 瑪麗 必須 去 上 學 . +I ate your strawberries . 我 吃 了 你 的 草莓 . +He is new in town . 他 刚来 这 镇上 . +I am a vegetarian . 我 是 素食主义者 . +Let is go to the beach . 讓 我們 去 海邊 吧 . +Tom does not want to go alone . 汤姆 不想 一个 人 走 . +The problem is Tom . 問題 是 湯姆 . +Every time he comes here , he orders the same dish . 每次 他 来 这里 点 一样 的 菜 . +Tom yawned . 汤姆 打哈欠 了 . +Are you serious ? 你 是 认真 的 吗 ? +He came to Japan seven years ago . 他 七年 前來 日本 . +She made a man of him . 她 使 他 長大 成人 . +Please let us know . 請 讓 我們 知道 . +He had no luck in finding work . 他 找 工作 不 走 運 . +He lived to be eighty years old . 他 活到 了 八十 歲 . +I am trying to think of a better plan . 我 试 着 考虑 更好 的 计划 . +I stayed home because of the rain . 因為 下雨 , 所以 我 待 在家 裡 . +Where is the nearest travel agency ? 最近 的 旅行社 在 哪裡 ? +I saw him cross the street . 我 看见 他 穿过 了 马路 . +How tall is your brother ? 你 的 兄弟 多 高 ? +I like to do my homework . 我 喜歡 做 我 的 作業 . +I am very lonely . 我 很 寂寞 . +He arrived in time . 他 准时 来 了 . +I did not see anything . 我什麼 都 沒 看見 . +What is your favorite way to cook potatoes ? 你 最 喜歡 用 什麼 方式 煮 馬鈴薯 ? +You must start immediately . 你 必须 马上 开始 . +Tom gave Mary a flashlight . 汤姆 给 了 玛丽 一把 手电筒 . +He crossed the river in a small boat . 他 乘 小船 過河 . +He gave me authority to fire them . 他 授權 給 我 解僱 了 他們 . +I think Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +There was a steady increase in population . 人口 穩定 地 增加 . +Admission is free for children . 儿童 免费入场 . +Tom blushed . 汤姆 脸红 了 . +Do not throw away this magazine . 不要 丟掉 這 本 雜 誌 . +My wife is afraid to drive my new car . 我 的 妻子 害怕 开 我 的 新车 . +I am not a child , but sometimes you talk to me as if I were a child . 我 不是 小孩子 , 但 有时 你 跟 我 说话 就 好像 我 是 小孩子 一样 . +Tom is busy now and can not talk with you . 湯姆 現在 忙 , 不能 跟 你 講 話 . +It snowed a lot last year . 去年 下 了 很多 雪 . +He asked me if I was busy . 他 问 我 是否 很 忙 ? +He tried to unify the various groups . 他 試著 統一 不同 的 團體 . +He likes to smoke in the toilet . 他 喜欢 在 厕所 里 吸烟 . +You are taller than most of Tom is friends . 你 比 汤姆 的 大部分 朋友 都 高 . +I have three cameras . 我 有 三台 攝影 機 . +I know an English teacher who comes from Canada . 我 认识 一个 加拿大 来 的 英语 教师 . +The door was kicked open . 门 被 踢开 了 . +Tom and I are teammates . 湯姆 和 我 是 隊友 . +Let me go alone . 讓 我 一個 人 去 . +This time it is different . 這次 不 一樣 . +The bridge will be completed by the end of this year . 大橋 將 在 年底 完工 . +He started going bald quite young . 他 很年 輕 就 開始 禿頭 了 . +Tom deserves to be blamed . 汤姆 应当 被 责备 . +I do not understand German . 我 不 懂 德语 . +Do you have any plans for tomorrow ? 明天 你 有 什么 安排 没有 ? +I am hungry , so I am going to get something to eat . 我 餓 了 , 所以 我 要 吃 東西 . +I am as hungry as a horse . 我 饿 得 跟 饿虎扑羊 似的 . +Will you have another slice of pie ? 你 要 再 來 一塊 餡餅 嗎 ? +I share a bedroom with my sister . 我 跟 我 姐姐 共用 同一 間 臥房 . +Let me have a look at those photos . 让 我 看看 那些 照片 . +Have you seen any movies lately ? 最近 看 了 什么 电影 没有 ? +They love each other . 他們 彼此 相愛 . +I will pick you up at your home . 我会 去 你家 接 你 . +My papers were in that box . 我 的 文件 在 那個 箱子 裡 . +I accompanied her on the piano . 我 彈 鋼琴 為 她 伴奏 . +They dropped out of school . 他們 輟學 了 . +This is smaller than that . 这个 比 那个 更 小 . +His brazen act of defiance almost cost him his life . 他 怀疑 的 无耻 行为 差点 要 了 他 的 命 . +We are sorry we can not help you . 我们 很 遗憾 没 能 帮助 你们 . +Our school is fifty years old . 我們 學校 有 五十年 的 歷史 了 . +That is just your imagination . 这 只是 幻想 而已 . +He called me up almost every day . 他 幾乎 每天 打 電話 給 我 . +I used to swim in this river . 我 以前 在 這條 河裡 游泳 . +Where did you guys go ? 你们 这些 家伙 去 哪儿 了 ? +Tom waved at Mary from the helicopter . 湯姆 在 直升 機上 向 瑪麗揮 手 . +I am a little confused . 我 有 一点 困惑 了 . +There is one apple on the desk . 桌上 有个 苹果 . +I do not like reading at all . 我 一点 都 不 喜欢 阅读 . +I hope you will call again . 我 希望 你 會 再 打 一次 電話 . +Tom sat at his desk working . 湯姆 在 他 的 桌邊 工作 . +We should tell children how to protect themselves . 我们 应该 告诉 孩子 怎么 保护 自己 . +Hand me the remote . 把 遥控器 递给 我 . +I do not want to lose you . 我 不想 失去 你 . +What are you looking at ? 你 在 看 什么 ? +He is mean . 他 很 凶 . +You have the same racket as I have . 你 的 球拍 跟 我 的 一樣 . +Tom works at a fast @-@ food restaurant . 汤姆 在 一家 快餐店 工作 . +The boy feared the dark . 这个 男孩 害怕 黑夜 . +I always have to wear a tie because of my job . 因為 這份 工作 的 關 係 , 我 總是 要 打 領帶 . +Please come whenever you like . 請 你 想 什麼 時候 來 都 可以 . +Do you know who he is ? 你 知道 他 是 誰 嗎 ? +That child resembles his father . 那 孩子 和 他 父亲 很 像 . +How many friends do you have ? 你 有 多少 朋友 ? +She understands you now . 她 现在 了解 你 . +I do not mind if the weather is hot . 天气 热点 儿 没关系 . +Are you busy on Sunday afternoon ? 你 週日 下午 忙 嗎 ? +Why am I still here ? 为什么 我 还 在 这里 ? +Tom opened the blinds and looked out the window . 汤姆 打开 百叶窗 , 向 窗外 望去 . +I do not trust businessmen . 我 不 相信 商人 . +Your manners are not very good . 你 的 禮貌 不是 很 好 . +I can not do anything . 我 不会 做 任何 事 . +You and I are the same age . 你 和 我 同龄 . +All their secrets have been revealed . 他們 所有 的 秘密 都 已經 被 揭曉 了 . +It was very far . 它 很遠 . +Is she your mother ? 她 是 你 媽 媽 嗎 ? +His shirt was stained with sauce . 他 的 衬衫 被 酱汁 弄脏了 . +Would you like more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Stop talking loudly . 停止 大声 说话 . +I study about two hours every day . 我 每天 讀書 大約 兩個 小 時 . +We know that all men are mortal . 我們 知道 人 皆 難免 一死 . +Please keep an eye on my suitcase . 請 留神 看著 我 的 手提箱 . +She whispered something into his ear . 她 在 他 耳邊 低聲 說 話 . +You could run . 你 能 跑 . +Tom really does not like you . 汤姆 真的 不 喜欢 你 . +In this case , the adjective goes before the noun . 在 这种 情况 下 , 形容词 放在 名词 前面 . +He does not come here every day . 他 不是 每天 都 來 這 . +I helped my father wash his car . 我 幫 我 父親 洗 他 的 車 . +Tom still can not read . 汤姆 还是 不能 读书 . +Give me the same , please . 请 给 我 同样 的 东西 . +Why are you so mean to me ? 你 为什么 对 我 这么 小气 ? +Who built it ? 这 是 谁 建 的 ? +Some people believe in ghosts . 有些 人 相信 鬼 . +This desk is made of wood . 这 张 书桌 是 木制 的 . +Tom is consoling Mary . 汤姆 在 安慰 玛丽 . +I wrote the wrong address on the envelope . 我 在 信封 上 写错 了 地址 . +Not a star was to be seen . 星星 沒有 被 看到 . +The audience was very large . 观众 人数 庞大 . +Europeans like to drink wine . 欧洲人 喜欢 喝酒 . +I do not like this one . 我 不 喜欢 这个 . +His company did not survive the crisis . 他 的 公司 沒有 從 危機中 倖 存 . +There was nothing left in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Tom has not finished his lunch yet . 湯姆 還 沒 吃 完 他 的 晚飯 . +Do not you want to use mine ? 你 不想 用 我 的 嗎 ? +If you 'd listen a little more carefully to what the teacher says , you 'd probably be able to understand . 假如 你 在 老师 讲课 的 时候 再 集中 一点 去 听讲 的话 , 你 应该 就 能 弄 明白 了 . +We want to be on the first bus tomorrow morning . 我们 想 乘 明天 早上 第一班 公交车 . +He will make a good team captain . 他 會 成為 一個 好 隊長 . +I do not want it anymore . 我 再也 不 想要 了 . +I have been to Australia three times . 我 去過 澳洲 三次 . +People should do their best . 人們 應該 盡力 而為 . +He is getting along with his employees . 他 和 他 的 員工 相處 . +I am asking what your opinion is . 我 在 問 你 的 選擇 是 甚麼 . +He shook his head up and down . 他 上下 晃 了 晃头 . +Would you like another cup of tea ? 你 想 再 要 杯 茶 吗 ? +He changed schools last year . 去年 他 转校 了 . +Please come back home as soon as you can . 请 尽快 回家 . +I have to go to the bank . 我 必须 到 银行 去 . +Tom will never willingly go there by himself . 汤姆 绝不会 愿意 独自 去 那里 . +I do not have any change . 我 没 任何 零钱 . +A person views things differently according to whether they are rich or poor . 每 一個 人 對 事情 的 看法 不同 是 依據 他們 是 富有 還是 貧窮 . +I think you will find it convenient to put a short @-@ cut on the desktop . 我 想 你 迟早会 知道 在 桌面 建立 一个 快捷方式 是 有 多 方便 . +A fox is not caught twice in the same snare . 狡兔三窟 . +I am lost . Can you help me , please ? 我 迷路 了 , 能 不能 请 您 帮 我 一下 ? +Attack is the best form of defense . 進攻 是 最好 的 防禦 . +The system worked . 系统 运行 起来 了 . +My mother is a good woman . 我 媽媽 是 個 好 女人 . +He checked in at a good hotel . 他 入住 了 一間 很好 的 旅館 . +Tomorrow there is a high probability it will rain . 明天 很 有 可能 下雨 . +Let is get to work . 干活 吧 . +I think you are quite right . 我 認為 你 說 得 很 對 . +I like summer the best . 我 最 喜歡 夏天 . +He was named after his grandfather . 他 以 他 祖父 的 名字 被 命名 . +You should get your car fixed . 你 應該 把 你 的 車 修好 . +Nagoya is between Tokyo and Osaka . 名古屋 在 東京 和 大阪 之間 . +Mary succeeded in her studies . 玛丽 在 研究 上 成功 了 . +Tom had a hunch that Mary was seeing someone else . 汤姆 预感 到 玛丽 在 见 别人 . +You do not have to kick yourself . 你 不要 自甘堕落 . +Please take good care of yourself . 請 好好 照顧 你 自己 . +One year has twelve months . 一年 有 十二 個 月 . +Could you turn it down ? 你 可以 轉 小聲 一點 嗎 ? +Carrots cost three dollars . 胡萝卜 要 三 美元 . +I am free tonight . 我 今晚 有空 . +He is younger than me . 他 比 我 年轻 . +I did not know that he was Japanese . 我 不 知道 他 是 日本 人 . +Tom said that he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +The boy actually was going to do it . 這個 男孩 實際 上 是 要 去 做 . +Tom and I are in the same class . 湯姆 和 我 在 同一 個 班 裡 . +Is this a duty @-@ free shop ? 這 是 一間 免稅 商店 嗎 ? +Why are you angry ? 你 为什么 生气 ? +I do not like learning irregular verbs . 我 不 喜欢 学习 不规则 动词 . +I graduated from high school last year . 去年 我 從 高中 畢業 了 . +What would the world be like without women ? 没有 女人 的话 , 世界 会 是 什么样 ? +This guidebook might be of use to you on your trip . 这本 导游 册子 或许 会 对 你 的 旅行 有 帮助 . +I will only buy the car if they repair the brakes first . 除非 他们 事先 修好 刹车 , 我 才 会 买 车子 . +The ticket is good for three days . 這 張 票 的 有效期 是 三天 . +He dropped the cup and broke it . 他 把 杯子 掉 到 地板 上 打碎 了 . +Let me do that . 让 我 去 做 . +Tom passed away October 20 , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +He studied English history . 他 学 了 英国 历史 . +Suddenly , it began to rain . 突然 開始 下雨 . +I still have not found anything . 我 还 什么 都 没 找到 呢 . +My wife wants to adopt a child . 我 妻子 想 收养 一个 孩子 . +We all have secrets . 我們 都 有 秘密 . +We had a good conversation . 我们 谈 得 不错 . +He had his shirt on inside out . 他 把 他 的 襯衫 穿反 了 . +Who will be elected chairman ? 谁 将 当选 主席 呢 ? +I would like to dance . 我 想要 跳舞 . +We gazed at the beautiful scenery . 我們 望著 這 美麗 的 風景 . +That could not have gone any worse . 再 糟糕 不过 了 +I have nothing to say with regard to that problem . 对于 这个 问题 我 无可奉告 . +I just can not believe it . 我 真是 不能 相信 . +The old man made out his will . 這位 老先生 立 了 他 的 遗嘱 . +I thought that we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +Are you saying Tom is hiding something from us ? 你 说 Tom 对 我们 隐藏 了 一些 事情 ? +Cheers ! 乾杯 ! +I am first . 我 是 第一 . +He left the book on the table . 他 在 桌子 上 留下 了 這 本書 . +I need to go to the toilet . 我 要 去 上 廁所 . +I am ill . 我 生病 了 . +He ate all of the apple . 他 把 整个 苹果 都 吃 了 . +What is your name ? 您 叫 什么 名字 ? +Being rejected is painful . 被 拒絕 是 痛苦 的 . +Tom is not dumb . 汤姆 不 傻 . +Could you help me find my dog ? 你 能 幫 我 找到 我 的 狗 嗎 ? +There is no mistake . 没有 错误 . +Please help me with my homework . 請 幫 我 做 我 的 家庭 作業 . +He was not able to open the box . 他 沒有 能力 打開 箱子 . +His new car is wonderful . 他 的 新車 很棒 . +I could barely get out of bed yesterday . 我 昨天 幾乎 下 不了 床 . +Come whenever you want . 什么 时候 想来 就 过来 吧 . +English is spoken in Canada . 在 加拿大 的 人 說 英語 . +I do not know where he lives . 我 不 知道 他 住 在 哪裡 . +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +The police are checking their bags . 警察 正在 检查 他们 的 包 . +Give me a bottle of wine . 給 我 一瓶 葡萄酒 . +Breathe through your nose . 用 你 的 鼻子 呼吸 . +She cried her heart out . 她 哭 得 肝腸寸斷 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +Do you want something to drink ? 你 想要 什么 喝 的 吗 ? +Do not you have any feelings for me at all ? 你 对 我 完全 没有 感觉 吗 ? +The market is big . 市場 很大 . +May I go to the bathroom ? 我 可以 去 洗手 間 嗎 ? +I like tea . 我 喜欢 茶 . +I am talking about my friend . 我 在 談 我 的 朋友 . +The petals are floating on the water . 花瓣 浮 在 水面 上 . +We must finish our homework first . 我們 必須 先 完成 我們 的 功課 . +You are so stupid . 你 真傻 . +The police are after him . 警察 在 跟著 他 . +The little cabin was bathed in moonlight . 小木屋 沐浴 在 月光 之中 . +Where did you go that night ? 那天 晚上 你 在 哪裡 ? +Tom could not see anybody . 汤姆 看不到 任何人 . +Tom is not used to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +Please copy this . 麻煩 拷貝 這個 . +You must keep quiet for a few days . 你 该 安静 几天 . +A strange feeling came over me . 我 觉得 不 舒服 . +A hungry pig dreams of acorns . 飢餓 的 豬 夢 到 橡樹子 . +There is a spoon missing . 缺 一把 勺子 . +My father made a shelf for me . 我 父親 為 我 做 了 個 架子 . +Do you know how to drive this thing ? 你 知道 怎么 驾驶 这 玩意儿 吗 ? +Will you show me what you bought ? 你 愿意 给 我 看看 你 买 了 什么 吗 ? +I was just about to leave the house when the telephone rang . 我 正要 离开 家 的 时候 电话响 了 . +Did Tom say who ? 汤姆 说 是 谁 了 吗 ? +Can you tell me where the nearest bus stop is ? 你 能 把 最近 的 公车站 指给 我 看 吗 ? +I could not find his house . 我 找 不到 他 的 家 . +I fell asleep while reading . 我 看书 的 时候 睡着 了 . +I bought that car . 我 買 了 那輛 車 . +He is gone to Nagoya on business . 他 因公 出差 到 名古屋 . +Why are you being so secretive ? 你 為 什麼 這麼 神秘 ? +I will not be getting married this year . 我 今年 不 結婚 . +I will be back late . 我 會晚 一點 回來 . +Tom made a choice . 汤姆 做出 了 选择 . +What was that meeting about ? 那场 会议主题 是 什么 ? +He thanked me for coming . 他 感謝 我 的 到 來 . +He passed the entrance examination . 他 通過 了 入學 考試 . +You should not go out . 你 不 應該 出去 . +How do you view this matter ? 您 怎麼 看 這個 問題 ? +I almost won . 我 几乎 赢 了 . +They have elected a new government . 他們 選出 了 新政府 . +Do you want to have sushi tonight ? 你 今晚 想 吃 壽司 嗎 ? +I think you are lying . 我 觉得 你 在 撒谎 . +The death penalty had been done away with in many states in the USA . 死刑 在 美国 的 很多 州 都 被 废除 了 . +I have lost my watch . 我 把 我 的 表 丢 了 . +He sleeps during the day and works at night . 他 白天 睡觉 , 晚上 工作 . +They have many friends . 他们 有 很多 朋友 . +Rice is grown in rainy regions . 人們 在 多 雨 地區 種植 水稻 . +The flood water reached the level of the windows . 洪水 涌到 了 窗户 的 高度 . +I can not blame Tom for not waiting . 我 不能 怪 湯姆 不 等著 . +I have done everything necessary . 我 做 完 了 所有 重要 的 事 . +I agree with you absolutely . 我 完全 赞同 你 . +Two men are checking on what is wrong with the car . 两个 男人 在 检查 汽车 出 了 什么 故障 . +Tom helped us all . 湯姆 幫 了 我們 . +Try to have a positive attitude about everything . 试 着 用 积极 的 态度 去 面对 任何 事情 . +Let is split the reward fifty @-@ fifty . 讓 我們 平分 這個 報酬 吧 . +I am disgusted with him . 我 厌恶 他 . +People like you should not be here . 你 這樣 的 人 不該 在 這裡 . +That is the part I liked best . 那 是 我 最 喜歡 的 部分 . +Do you think they noticed ? 你 认为 他们 注意 了 吗 ? +I do not want him to touch me . 我 不想 被 他 感动 . +It is not something anyone can do . 这 不是 任何人 都 能 做 的 事 . +He compared his car to the new model . 他 拿 他 的 車 和 新款 車作 比較 . +Have you ever seen such a nice film ? 你 看过 这么 好看 的 电影 吗 ? +He went to the store . 他 去 了 商店 . +If her temperature goes up , send for the doctor . 如果 她 的 體溫 上升 , 派 人 去 請 醫生 來 . +What kind of work will you do ? 你 將 做 什麼樣 的 工作 ? +The precise time of their arrival is not known . 他們 到 逹 的 確 切 時 間 還 不 知道 . +I do not understand German at all . 我 完全 不 懂 德语 . +Tom sits at his computer eight hours a day . Tom 每天 在 電腦 前 工作 八 小 時 . +I want a guitar . 我 想要 一把 吉他 . +Will you be at home this afternoon ? 你 今天下午 会 在家 吗 ? +Tom turned on the car is fog lights . 湯姆 打開 了 車 的 霧 燈 . +She is a wonderful woman . 她 是 個 很棒 的 女人 . +When can we eat , I wonder . 我 不 知道 我們 什麼 時候 可以 吃 . +He turned to his friends for help . 他 尋求 他 的 朋友 的 幫助 . +Get dressed . 你 穿 點 東西 . +Please pardon me for coming late . 抱歉 那么 晚来 . +I am Hungarian . 我 是 匈牙利人 . +I want you to not go to Boston with Tom . 我 要 你 別 和 湯姆 去 波士 頓 . +We are preparing to do so . 我们 准备 去 做 . +New York is on the Hudson River . 紐約 位 在 哈得遜 河 . +The door clicked shut . 门 咔哒 一声 关上 了 . +Could you come and see me tomorrow ? 你 明天 可以 來看 我 嗎 ? +There is a small garden in front of my house . 我家 前面 有个 小 庭院 . +I am glad you were right . 很 高兴 你 是 对 的 . +Everybody thinks so . 大家 都 是 这样 想 的 . +You have changed so much that I can hardly recognize you . 你 变 了 那么 多 , 以至于 我 几乎 认不出 你 了 . +I am very ashamed of myself about what I have done . 我 對 自己 的 作為 很 內疚 . +I wish I were an only child . 我 要是 个 独子 就 好 了 . +I would like to know her name . 我 想 知道 她 的 名字 . +I was bored with his old jokes . 我 厌倦 了 他 的 老 笑话 . +I began running . 我 開始 跑 . +You might have heard of it . 你 可能 听说 过 . +I go to school by subway . 我 搭 地铁 上学 . +People rely too much on phones these days . 現代 人 太 仰賴 手機 . +Skating is one of my hobbies . 溜冰 是 我 的 嗜好 之一 . +There is something strange about Tom today . 今天 汤姆 有点 奇怪 . +Their contract is to run out at the end of this month . 他们 的 合同 在 这个 月底 到期 . +You told Tom you could do that , did not you ? 你 告诉 汤姆 你 可以 做到 , 是 吗 ? +My parents will not let me go out with boys . 我 父母 不让 我 和 男生 约会 . +Pork does not agree with me . 猪肉 不 适合 我 . +I cannot speak Mandarin well . 我 的 中文 說 得 不好 . +I can not go with you today because I am very busy . 今天 我 太 忙 了 , 没法 和 你 一起 去 . +He did not know that . 他 不 知道 . +School begins on April the tenth . 學校 在 四月 十日 開學 . +She borrowed a saw from the farmer . 她 向 農夫 借 了 一把 鋸子 . +I can do without his help . 沒有 他 的 幫助 我 也 能 做 . +My mother is in the hospital now . 我 媽媽 現在 在 醫院 . +Spring is coming soon . 春天 就要 来 了 . +My throat feels dry . 我 喉咙 很 干 . +Respect for law is fundamental to our society . 尊重 法律 是 我們 社會 的 基礎 . +I have to iron my shirt . 我 必須 熨 我 的 襯衫 . +My plan is to buy a car . 我 打算 買輛 車 . +He has no eye for women . 他 對 女人 沒有 眼光 . +They are jealous of our success . 她们 嫉妒 我们 的 成功 . +The economy is picking up . 经济 在 复苏 之中 . +Mary has beautiful brown eyes . 玛丽 的 褐色 眼睛 很美 . +All of the milk was spilled . 所有 的 牛奶 都 灑 出去 了 . +He runs . 他 跑 . +Having a slight headache , I went to bed early . 因為 我 有 點 頭 疼 , 所以 我 早早 上床 睡覺 . +He gave correct answers to the questions . 他 對 這個 問題 給 了 正確 的 答案 . +Speaking in French is fun . 说 法语 很 有趣 . +They say she and her husband can not agree on anything . 他們 說 她 和 她 的 丈夫 不 可能 對 任何 事 達成 協議 . +Tomorrow , he will land on the moon . 明天 , 他 将 登上 月球 . +They are in danger . 他們 有 危險 . +I want to become a singer . 我 想 當 歌手 . +Her house is at the foot of a mountain . 她家 在 一座 山 的 山脚下 . +He gave me food and money as well . 他 给 了 我 食物 和 钱 . +I am a university student . 我 是 个 大学生 . +Tom claims he does not remember . 湯姆聲 稱 他 不 記得 了 . +Is ten thousand yen enough ? 一 万日元 够 吗 ? +What do you usually do on Sundays ? 你 週日 通常 做 什麼 ? +My sister has a nice piano . 我 妹妹 有 架 漂亮 的 钢琴 . +What is the idea behind that ? 那 背后 是 什么 意思 ? +The typhoon caused the river to flood . 颱 風 造成 了 河水 氾 濫 . +Tom has never been willing to help us before . 湯姆 以前 從 不 這樣 願 意 幚 我 們 . +The crow flew away . 這 隻 烏鴉 飛 走 了 . +I think Tom is still alive . 我 認為 湯姆 還 活著 . +Where are the shoes ? 鞋子 在 哪儿 ? +You can not use this washing machine . 您 不能 使用 這 台 洗衣 機 . +It was really special . 它 真 特別 . +We arrived at a small town in Hokkaido . 我们 到达 了 北海道 的 一个 小镇 . +I will not be fooled . 我 不会 上当 的 . +You should know that is impossible . 你 应该 知道 这 是 不 可能 的 . +It came to nothing . 这 没有 结果 . +Are they all like this ? 他们 都 像 这 一样 吗 ? +The family eats breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +Luckily he had enough money to pay the bill . 幸运 的 是 他 有 足够 的 钱 来 付账 . +This is a book about stars . 这 是 本 关于 星星 的 书 . +Some of the bluest water in the world is found in Crater Lake . 一些 世界 上 最 藍 的 水 在 火山湖 . +My uncle comes to see me from time to time . 我 叔叔 偶爾 來看 我 . +I can not make an exception . 我 不能 破例 . +My parents live in Australia . 我 的 父母 住 在 澳大利亚 +Something is wrong with my camera . 我 的 相機 壞 了 . +Please buy a tube of toothpaste . 請買 條 牙膏 吧 . +There is nothing to forgive . 没什么 可 原谅 的 . +Our library is on the third floor . 我們 的 圖書館 在 三 樓 . +I did not even know Tom had left . 我 甚至 不 知道 湯姆 離開 了 . +He traveled on business . 他 旅行 洽商 . +Do you know who they are ? 你 知道 他們 是 誰 嗎 ? +J.F. Kennedy was buried in Arlington Cemetery . 约翰 甘迺迪 被 安葬 在 阿靈頓 公墓 . +I thought she was going to kill me . 我 認為 她 要 殺 我 . +I can not remember his name . 我 不 記得 他 的 名字 . +I wonder what she really means . 我自 問 她 真正 的 意思 是 什麼 . +I should have chosen a shorter username . 我 该 用 短 一点 的 用户名 的 . +My canary was killed by a cat . 我 的 金絲雀被一 隻 貓 殺 死 了 . +Looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +I am here to assist you . 我 來 協助 你 . +The teacher has a great influence on his pupils . 这个 教授 对 他 的 学生 有 很大 的 影响力 . +Tom is in the hospital waiting room . 汤姆 在 医院 的 等候 室 . +Would you please wait for a few minutes ? 请 您 等 几分钟 好 吗 ? +Why can not we have pizza ? 为什么 我们 不能 要 比萨 ? +Let is be realistic . 現實 點 吧 . +I am humble . 我 是 谦虚 的 . +I could not make myself understood . 我 無法 讓 別人 了解 我 的 意思 . +This theory is very controversial . 这个 理论 很 有 争议 . +As you sow , so will you reap . 种瓜得瓜 , 种豆得豆 . +How was the meeting yesterday ? 昨天 的 会议 怎么样 ? +The children are having fun in the park . 孩子 們 在 公 園 裏 玩耍 . +Children depend on their parents for food , clothing and shelter . 孩子 们 的 衣食住行 靠 的 是 他们 的 父母 . +A fire broke out last night and three houses were burnt down . 昨晚 發生 了 一場 火災 , 三棟 房屋 被 燒毀 了 . +We still have more time . 我們 仍然 有 更 多 的 時間 . +Tom will not be coming . 汤姆 不会 来 了 . +You seem like a very smart person . 你 看起来 像 一个 聪明人 . +Are not you happy ? 你 不快 樂 嗎 ? +Compared with her sister , she is not very punctual . 與 她 的 妹妹 相比 , 她 不是 很 準 時 . +We have no reason to be ashamed . 我们 没理由 害臊 . +We 'd better talk . 我们 谈谈 比较 好 . +I paid the bill . 我 买 了 单 . +What kind of meal did you eat ? 您 吃 了 什麼樣 的 膳食 ? +We have one of your friends here with us . 你 的 一个 朋友 在 我们 这里 . +Did Tom actually say that ? 汤姆 真的 那么 说 了 吗 ? +I could not enter because the door was closed . 我 因為 門 關著 進不去 . +I know him , but I do not know his name . 我 認識 他 但是 我 不 知道 他 的 名字 . +Actually , it was pretty boring . 实际上 , 我 非常 无聊 . +I found this in your desk drawer . 我 在 你 的 桌子 抽屉 里 找到 了 这个 . +My nephew is allergic to eggs . 我 侄子 對 雞蛋 過敏 . +Help yourself to whatever you like . 你 想 吃 什麼 就 吃 什麼 . +My stomach is full . 我 的 胃 是 脹 滿 的 . +You will have to wait and see . 你 得 等一等 看 . +This book is for students whose native language is not Japanese . 這 本書 是 給 母語 不是 日語 的 學生 的 . +He passed his property on to his son . 他 把 他 的 财产 传给 了 他 儿子 . +I do not like this . 我 不 喜欢 . +Can you give me some money ? 你 能 給 我 一些 錢 嗎 ? +He had a large family to support . 他 要 養活 一個 大家庭 . +Where is your dog ? 你 的 狗 在 哪里 ? +Austria is one of the largest producers of electricity in Europe . 澳大利亚 在 欧洲 是 最大 的 电能 生产国 之一 . +Tom is taller than I am . 湯姆 比 我 高 . +He began to look for work . 他 开始 找 工作 了 . +Tom did nothing . 汤姆 什么 都 没 做 . +I will not allow you to do that . 我 不会 让 你 做 那事 . +The knife is not sharp . 這 刀不鋒利 . +Did you bring your family with you ? 你 帶著 家人 一起 來 嗎 ? +The plane is ready . 飞机 准备 好 了 . +The Sahara is a vast desert . 撒哈拉沙漠 广袤 无垠 . +Was that what Tom said ? 那 就是 汤姆 说 的 吗 ? +She finished her work an hour in advance . 她 提前 一 小时 完成 了 工作 . +Tom likes football . 汤姆 喜欢 足球 . +I said to myself , " That is a good idea . " 我 对 自己 说 , “ 那 是 个 好 主意 . ” +No one understands me . 没有 人 理解 我 . +What just happened ? 刚刚 发生 了 什么 ? +I will give you a little tip . 我会 给 你些 提示 . +The meeting will be held tomorrow . 會議 將 於 明天 舉行 . +I can not believe that you were the smartest kid in your class . 我 不敢相信 你 是 你们 班 里面 最 聪明 的 孩子 . +I like the cold . 我 喜歡 寒冷 . +I hit him in the belly . 我 打 了 他 的 肚子 . +Will I see you tomorrow ? 我 明天 能 见到 你 吗 ? +Pigs share certain characteristics with human beings . 豬 與 人類 的 一些 特性 相同 . +That was not my intention . 这 不是 我 的 初衷 . +He has not come yet . 他 還 沒來 . +My father has been dead for ten years . 我 爸爸 去世 有 10 年 了 . +English is spoken in America . 在 美国 说 英语 . +The job looked quite simple , but it took me a week . 這份 工作 看 起來 很 簡單 , 但 它 花 了 我 一個 星期 . +She is leaving the country in six months . 她 半年 后 就要 出国 了 . +There were no mistakes . 没有 错误 . +We knew no one . 我們 誰 也 不 認識 . +Give me a cigarette . 给 我 支 香烟 吧 . +The audience was deeply affected . 观众 深受感动 . +It is lunch time . 午餐 時間 到 了 . +I no longer love Tom . 我 不再 愛湯姆 了 . +Tom does not like to wear a watch . 汤姆 不 喜欢 戴 手表 . +He asked me to speak more slowly . 他 要求 我 講 慢 一點 . +She went to the movies by herself . 她 獨自 去 看 了 電影 . +What are you staring at ? 你 在看 什麼 ? +With just a little more effort , he would have succeeded . 如果 他 再 努力 一点 , 就 可能 已经 成功 了 . +These tools are used for building a house . 这些 工具 是 用来 造 房子 的 . +He is apt to be late . 他 很 容易 遲 到 . +She kept on working . 她 继续 工作 . +The girl brought me a red and a white rose . 女孩 给 我 了 一枝 红玫瑰 和 一枝 白玫瑰 . +Gold is much heavier than water . 金子 比水 重得 多 . +I asked for my father is help . 我 向 我 父親 求助 . +I hear my uncle died of cancer . 我 聽到 我 叔叔 死 於 癌症 的 消息 . +Tom slept . 汤姆 睡 了 . +This place has a mysterious atmosphere to it . 这个 地方 的 气氛 很 神秘 . +In the Edo period , moon @-@ viewing parties were very popular . 在 江戶 時代 賞 月 的 宴會 非常 受歡 迎 . +Green suits you . 綠色 適合 你 . +He always quarrels with his wife . 他 總是 與 他 的 妻子 吵架 . +I would have liked to come with you , but I did not have time . 我 想 和 你 一起 去 , 但是 我 没有 时间 . +She tore the letter into pieces . 她 把 信成 碎片 . +The car is waiting at the gate . 車 在 門口 等著 . +Let is walk . 我们 走走 吧 . +Do not run risks . 不要 冒险 . +I will gladly pay you anytime . 我 隨時 樂意 付錢 給 你 . +Can you tell me a little about yourself ? 你 能 稍微 告诉 我 关于 自己 的 事情 吗 ? +Do not let that happen again . 不要 再 让 这种 事 发生 了 ! +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +It is good to see you . 见到 你 真好 . +The shop is open from Monday to Saturday . 这家 店 从 星期一 到 星期六 都 营业 . +Let is drink coffee while we talk . 让 我们 边 喝咖啡 边 谈 . +This city is cold and lonely without you . 没有 你 这个 城市 孤单 又 冷清 . +They were very excited . 他们 非常 兴奋 . +I thought that Tom had a soccer game tonight . 我 以为 汤姆 今晚 有 足球比赛 . +I am OK . 我 沒事 . +Do you know this song ? 你 知道 這 首歌 嗎 ? +I do not have the address with me . 我 身上 沒 帶 這個 地址 . +We watch TV every day . 我们 每天 看电视 . +I miss you so much . 我 如此 想念 你 . +He was playing the piano . 他 那時 正在 彈 鋼琴 . +She spread the butter on the bread . 她 把 奶油 塗 在 麵 包 上 . +Can you do bookkeeping ? 你 會 記 帳 嗎 ? +I did not want to get up early . 我 不想 很早 起床 . +He is known as a great poet . 他 以 一個 偉大 的 詩人 聞名 . +She stabbed him in the back . 她 在 他 的 背上 戳 了 一下 . +I do not know when she got married . 我 不 知道 她 是 什么 时候 结婚 的 . +There are some eggs in the box . 盒子 裡 有 一些 蛋 . +Tom is not nearly as smart as he thinks he is . 汤姆 并 不 像 他 自 认为 的 那么 聪明 . +My father takes a bath before supper . 我 的 父親 在 晚 飯前 洗澡 . +Frankly speaking , I do not agree with you . 实话 说 , 我 不 赞成 你 . +Where did you go for vacation ? 你 去 哪裡 度假 了 ? +We took strong measures to prevent it . 我们 采取 了 强有力 的 预防措施 . +Do not you want to know the reason ? 你 不想 知道 原因 吗 ? +You ask me to do the impossible . 你 让 我 做 不 可能 做到 的 事情 . +What time is it ? 几点 了 ? +Tom should have plenty of time . 汤姆 应该 有 很多 时间 . +They adopted the orphan . 他们 收养 了 那个 孤儿 . +Tom and I see each other every day at school . 汤姆 和 我 每天 都 在 学校 见面 . +You nearly poked me in the eye with your pencil . 你 的 鉛筆 差點 戳 到 我 的 眼睛 了 . +My job is to wash dishes . 我 的 工作 是 洗碗 . +I do not remember any of it . 我 对 这些 都 没有 印象 . +Generally , men run faster than women . 一般 來 說 , 男人 比 女人 跑得快 . +Did I leave my umbrella here ? 我 把 雨伞 落 在 这里 了 吗 ? +Because our kids got married , we are now in @-@ laws . 我們 成親 家 了 , 因為 我們 的 孩子 們 結婚 了 . +I do not like your smile . 我 不 喜欢 你 的 微笑 . +Did you get up early ? 你 起床 早 嗎 ? +How come you know so much about Japanese history ? 你 為 什麼 知道 這麼 多 的 日本 歷史 ? +He was hurt in a car accident . 他 在 一次 車禍 中 受傷 了 . +The exhibition is now open . 展览 现在 已经 开放 . +I have been reading the book all afternoon . 我 整个 下午 都 在读 这 本书 . +They are typical youngsters . 他们 是 典型 的 年轻人 . +Some people questioned his honesty . 有些 人 質疑 他 的 誠實 . +He likes to read newspapers . 他 喜欢 看 报纸 . +Tom never saw her again . 湯姆 沒 再 見 過 她 . +According to the radio , it will snow tomorrow . 据 广播 里 讲 , 明天 会 下雪 . +Tom is a strange person . 湯姆 是 個 怪人 . +His opinions are not worth listening to . 他 的 意見 不 值得 聽 . +I got him to repair my car . 我 讓 他 修理 我 的 車子 . +The Internet is an invaluable source of information . 互联网 是 一种 无法估量 的 信息 资源 . +Due to the worsening weather , the departure was delayed . 由于 天气 变差 , 出发 延迟 了 . +Can I do anything for you ? 我 能 為 你 做 點 甚麼 嗎 ? +We often associate black with death . 我们 常 把 黑色 跟 死亡 联系 起来 . +Take any train on track 5 . 到 5 号 轨道 乘 随便 什么 火车 . +My hometown is very pretty . 我 的 家乡 非常 漂亮 . +It seems obvious that he is sick . 似乎 很 明顯 他 病 了 . +He has no children . 他 沒有 孩子 . +I need to go home . 我 该 回家 了 . +I have got a lot more to learn . 我 要 学 很多 . +I may be unsociable , but it does not mean I do not talk to people . 我 或许 不 善于 社交 , 但 这 并 不 意味 我 不 和 别人 交谈 . +This is a strange sentence . 這 是 一個 奇怪 的 句子 . +Tom wants to learn boxing , but his mother thinks it is too dangerous . 汤姆 想 学 拳击 , 但 他 妈妈 觉得 这 太 危险 了 . +Do not let the dog come in . 别 让 狗 进来 . +I was talking about something else . 我 在 說別 的 事 . +The magician had the children is attention . 魔术师 吸引 了 孩子 们 的 注意 . +He regrets what he did . 他 对 他 所 做 的 一切 感到 后悔 . +I tried not to wake you up . 我 设法 不让 你 醒 . +No matter how often I tell her , she keeps making the same mistake . 不管 我 跟 她 说 了 多少 次 , 她 还是 继续 犯 同样 的 错误 . +You should try to be more polite . 你 應該 試著 更 有 禮貌 . +Why should I apologize to you ? 为什么 我 要 向 你 道歉 ? +Open your book to page nine . 翻開 你 的 書 到 第九 頁 . +She feels at ease in their home . 她 在 他们 家里 感觉 很 放松 . +He can read English easily . 他 能 轻松 地 读 英语 . +There is a letter for you . 你 有 一封信 . +We were friends . 我们 是 朋友 . +Thanks for calling me . 谢谢 你 给 我 打电话 . +She used to visit me regularly . 她 以前 定期 來看 我 . +I am four months pregnant . 我 怀孕 四个 月 了 . +He made good use of the money . 他 好好 的 使用 了 ​ ​ 這筆 錢 . +Who is your favorite character in this book ? 你 最 喜歡 這 本書 中 的 哪個 角色 ? +I think you are dumb . 我 认为 你 傻 . +He is not always at home on Sundays . 他 星期日 並 不 總是 在家 . +This is kind of interesting . 這 真是 有趣 . +There is a car coming . 有 車 來 了 . +I received your letter yesterday . 我 昨天 收到 了 你 的 信 . +My dictionary is very useful . 我 的 字典 非常 有用 . +Thanks for your quick answer . 谢谢您 的 迅速 回复 . +Tom has no brothers or sisters . Tom 沒有 兄弟 也 沒有 姊妹 . +This is a very interesting book . 這 是 一本 非常 有趣 的 書 . +I can not believe your parents let you come here by yourself . 我 不敢相信 你 父母 让 你 自己 过来 . +Are you guys free this afternoon ? 你们 今天下午 有空 吗 ? +He did not appear until about noon . 直到 快要 中午 前 他 都 沒 出現 . +This clock loses three minutes a day . 这个 钟 每天 慢 三分钟 . +She came to Tokyo at the age of 18 . 她 18 岁 的 时候 来到 东京 . +According to the newspaper , he committed suicide . 據 報紙 上 說 , 他 自殺 了 . +May I be the first to offer my congratulations . 或许 我 是 第一个 给 你 祝贺 的 人 . +Help us . 帮帮 我们 吧 ! +Would you please explain the rules to me ? 請 你 為 我 解釋 規則 好 嗎 ? +Father always has the tailor make his suits . 父親 總是 讓 這位 裁縫師 為 他 做 西裝 . +My sister became a college student . 我 妹妹 成為 了 一個 大學 生 . +Tom did not have a fever this morning . 湯姆 今天 早上 沒有 發燒 . +I had no feeling in my fingers . 我 的 手指 没有 感觉 . +That is crazy . 那 是 瘋狂 的 . +I wonder if you have something to write with . 我 懷疑 你 是否 有 東西 可寫 . +Tom is intoxicated . 汤姆 醉 了 . +They were worried . 他们 担心 . +My wallet and passport are missing . 我 的 錢包 和 護照 不見 了 . +I do not really read newspapers . 我 不 太 看 报纸 . +Do not be so careless ! 别 这么 粗心 ! +It is healthy to breathe deeply . 深呼吸 有益健康 . +Being a teacher is very hard work . 做 教師 很 辛苦 . +He knows a lot of people . 他 认识 很多 人 . +I will let Tom tell you . 我会 让 汤姆 告诉 你 . +Where was this picture taken ? 这 张 照片 在 哪儿 照 的 ? +Your tripod is in my office . 你 的 三腳 架 在 我 的 辦 公室 裏 . +He sometimes watches TV . 他 有 時 看 電視 . +Breakfast is the most important meal of the day . 早饭 是 一天 中 最 重要 的 一顿饭 . +Will you stay at home tonight ? 你 今晚 會 待 在家 裡 嗎 ? +The library is on the 4th floor . 圖書館 在 四樓 . +Only one third of the members turned up at the meeting . 仅 三分之一 的 成员 出席 了 会议 . +The boy went to bed with his socks on . 男孩 穿着 袜子 就 上床睡觉 了 . +When does the movie start ? 電影 什麼 時候 開始 ? +Big fish eat little fish . 大鱼吃小鱼 . +Please show me another one . 请 给 我 看看 其他 的 . +He made fun of me in public . 他 在 公共 場合 取笑 了 我 . +I will see you a week from today . 我 下星期 的 今天 會 和 你 見 面 . +Where is the book ? 那本书 在 哪儿 ? +Kyoto is visited by many tourists . 很多 游客 赴 京都 旅游 . +I know your brother very well . 我 和 你 哥哥 很熟 . +If you do not have this program , you can download it now . 假如 你 没有 这个 程序 , 你 现在 就 可以 去 下载 . +I need more money . 我 需要 更多 的 錢 . +She has been dead for ten years . 她 已經 死 了 十年 了 . +He studies English , but he is also studying German . 他 学 英语 , 但 他 也 学 德语 . +We will not go out unless it stops raining . 除非 雨 停 了 , 我们 才 会 出去 . +I think you need to spend a little more time on your homework . 我 觉得 你 应该 多 花点 时间 在 作业 上 . +What happened to you yesterday ? 你 昨天 發生 了 什麼 事 ? +Her book is very interesting . 她 的 書 非常 有趣 . +My friends all call me Tom . 我 的 朋友 都 叫 我 湯姆 . +Tom told them not to do that . 湯姆 告訴 他們 不要 去 做 那事 . +Who do you think they were ? 你 认为 他们 是 谁 ? +What is your telephone number ? 你 电话号码 是 多少 ? +Some bugs were fixed . 一些 程式 錯誤 被 改正 了 . +He did everything he could for his child . 他 為 自己 的 孩子 能 做 的 都 做 了 . +When I heard the news , I cried . 當 我 聽到 這個 消息 , 我 哭 了 . +I am a night owl . 我 是 個夜 貓子 . +He is out now . 他 现在 出去 了 . +I am on my way to meet Tom at the station right now . 我 现在 在 去 车站 见 汤姆 的 路上 . +I learned to live without her . 我 学会 了 不靠 她 生活 . +He lives in a world of fantasy . 他 住 在 一個 奇幻 世界 裡 . +He is a tennis player . 他 是 个 网球 球手 . +I am sorry for the delay in responding . 我 很 抱歉 這麼 遲 才 回 復 . +Nothing remained in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Is Tom going to dump Mary ? 汤姆 要 甩 了 玛丽 吗 ? +Please move the desk to the left . 请 把 桌子 向 左移 . +I kept the $ 20 I found in the street . 我 留 着 在 街上 发现 的 20 美元 . +Two for the lunch buffet , please . 兩 人份 自助 午餐 , 謝謝 . +I must catch the first train . 我 必须 赶上 头班 火车 . +Tom does not like women who wear too much makeup . 汤姆 不 喜欢 妆化 太 浓 的 女人 . +She hates carrots . 她 討厭 胡蘿 蔔 . +The summer is over . 夏天 过去 了 . +My brother is a high school student . 我 哥哥 是 個 高中生 . +She goes to school on foot . 她 走路 去上 學 . +You are an idiot . 你 是 一個 笨蛋 . +Let is meet again soon . 讓 我們 很快 地 再次 見面 . +I do not know either of them . 他们 中 的 任何 一位 我 都 不 认识 . +Almost everyone in our village is related to one another . 我们 村里 所有 的 村民 几乎 彼此 都 是 亲戚 . +Please forgive me for being late . 請 原諒 我 遲到 . +The plane crash was only last week . 上個 星期 這 架 飛機 墜毀 了 . +There is a post office close by . 附近 有 一間 郵局 . +I was shy . 我 害羞 . +Who found my bag ? 誰 找到 了 我 的 包 ? +He is not interested in art at all . 他 對 藝術 一點 也 不感 興趣 . +People live only about 70 years . 一个 人 只能 活 七十岁 左右 . +What do you think of Tom is cooking ? 你 覺得 Tom 的 廚藝 如何 ? +She is old enough to know better . 她 年 紀夠 大 該 懂事 了 . +Two beers , please . 请来 两杯 啤酒 . +The wind calmed down . 风停了 . +Try and do better next time . 嘗試 在 下 一次 做 得 更好 . +We were caught in a storm . 我们 被 暴风雨 袭击 了 . +Tom is waiting for you in the conference room . 汤姆 在 会议室 等 你 . +I 'd like three of these . 这 我 要 三个 . +It is almost six o 'clock . 差不多 六点 了 . +Do you take MasterCard ? 可以 用 万事达 信用卡 吗 ? +There are many shantytowns in Mexico . 在 墨西哥 有 很多 貧民窟 . +I want to have my own room . 我 想要 有 我 自己 的 房间 . +We are in the era of atomic energy . 我們 身 在 原子能 時代 . +While you are reading to me , I can do my sewing . 你 读 给 我 听 的 时候 , 我 就 可以 做 缝纫 了 . +Everyone comes to Tom for advice . 每個 人 都 請 教 湯姆 . +Please tell me Tom is OK . 请 告诉 我 汤姆 很 好 . +I was taking a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I want something sweet to eat . 我 想要 吃甜 的 東西 . +I owe you ten dollars . 我 欠 你 10 美元 . +I have just finished eating breakfast . 我 剛 吃 完 了 早 飯 . +I like red wine better than white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +It is really different from what I expected . 這 真的 跟 我 所 預期 的 不同 . +She and I are in the same class . 她 和 我 同班 . +My brother died of cancer last year . 我 弟弟 去年 死 於 癌症 . +Let is take advantage of the long weekend . 来 好好 利用 大 周末 吧 . +Tom saw everything that happened . 汤姆 见证 了 所有 发生 的 事情 . +I have had enough , so my stomach is full . 我 吃 飽 了 , 所以 我 的 胃 都 滿 了 . +I refused , of course . 我 當然 拒 絶 了 . +The most important thing in the Olympic Games is not winning but taking part . 奥运会 最 重要 的 不是 获胜 , 而是 参与 . +I think Tom is going to be pretty mad when he finds out that the painting he bought is a fake . 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +Tom is name was on the list . 湯姆 的 名字 在 名單 上 . +Is it true that Tom wants to paint his house green ? 汤姆 想 把 房子 漆成 绿色 , 是 真的 吗 ? +Remember to admire her new dress . 記得 稱 讚 她 的 新洋 裝 . +She was advised by him to go to the police . 他 勸 她 去 報警 . +Children of six and above should attend school . 六岁 及 以上 的 小孩 应该 上学 . +You are the prisoner . 你 是 囚犯 . +May I have a road map , please ? 請 給 我 一張 路 線 圖 . +I will stay here for a bit . 我 在 这 待 一会 . +We met her by accident . 我们 偶然 碰到 了 她 . +The police will put you in prison . 警方 將 把 你 關 在 監 獄裡 . +He is concerned about his father is illness . 他 担心 他 父亲 的 身体 . +I believe this was unnecessary . 我 相信 這 是 不必要 的 . +It is imperative for you to act at once . 您 必须 马上 行动 . +She lost her father when she was three years old . 她 父亲 在 她 三岁时 死 了 . +Can you wait about an hour ? 能 麻烦 您 等 一个 小时 左右 吗 ? +You should tell him the truth . 你 该 告诉 他 真相 . +You can not allow Tom to do that anymore . 你 不能 再 允許 湯姆 那麼 做 了 . +Half a loaf is better than none . 半 個 麵 包 總 比 沒 有 好 . +Where can I catch a bus ? 我 可以 在 哪裡 搭 公車 ? +You are working hard . 你 工作 努力 . +When are you leaving ? 你 什麼 時候 離開 ? +He wrote a letter . 他 写 了 一封信 . +Their goods are of the highest quality . 他们 的 货品 有着 最高 的 品质 . +A burglar broke into his house . 一個 竊 賊 闖進 了 他 的 房子 . +Please give me a cup of water . 請 給 我 一杯 水 . +Mary dyed her hair blue . 瑪麗 把 她 的 頭 髮 染成 藍色 . +All of us like you very much . 我们 都 非常 喜欢 你 . +This water tastes good . 這 水 很 好喝 . +I am happy if you are happy . 如果 你 開心 , 我 也 就 開心 . +What fruit do you like the best ? 你們 最 喜歡 什麼 水果 ? +Tom broke some bones in his arm and hand . 湯姆 的 手臂 和 手斷 了 些 骨頭 . +You should have refused his offer . 你 應該 拒絕 他 的 提議 的 . +Would you like me to help you ? 你 要 我 幫 你 嗎 ? +She loved me in the same way that I loved her . 她 愛 我 就 像 我 愛 她 一樣 . +This is not salt . 这 不是 盐 . +Please close the door . 請 關門 . +Please bring us two cups of tea and one cup of coffee . 请来 两杯 茶 和 一杯 咖啡 . +I looked at my notes . 我 看 了 自己 的 笔记 . +Who is going to believe that ? 谁 会 信 呢 ? +Without you , I am nothing . 沒有 你 , 我 甚麼 也 不是 . +Were you at home yesterday ? 昨天 你 不 在家 嗎 ? +Can I ask you a question ? 我 可以 问 你个 问题 吗 ? +Tom can not tie a tie . 汤姆 不会 系 领带 . +I do not like the way you talk to me . 我 不 喜歡 你 和 我 說 話 的 口氣 . +My hobby is taking pictures of wild flowers . 我 的 业余爱好 是 拍 野花 的 照片 . +Do you still have my phone number ? 你 還 有 我 的 電話 號碼 嗎 ? +No one answered my question . 沒人 回答 我 的 問題 . +Tom usually does not make mistakes . 汤姆 通常 不 犯错 . +Mother bakes cookies on Sundays . 妈妈 周日 烤 曲奇 . +He asked for some money . 他 要 了 一些 錢 . +Thank you in advance for your cooperation . 提前 感謝 你們 的 合作 . +Tom forgot to sign his name . 汤姆 忘记 签名 了 . +Tom and Mary have three sons and a daughter . Tom 和 Mary 有 三個 兒子 和 一個 女兒 . +He arrived in time . 他 及時 趕到 . +He ran into the room . 他 跑 进 房间内 . +I play the tenor saxophone . 我 吹 次 中音 薩 克斯 風 . +My grandson is still a baby . 我 的 孫子 還 是 個 嬰兒 . +The matter has not been settled yet . 问题 还 没有 解决 . +Tom told Mary that she should stop pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +When did your father come home ? 你 爸爸 什麼 時候 回家 ? +Tom made a bet with Mary . 湯姆 跟 瑪麗 打 了 個 賭 . +This milk will not keep till tomorrow . 這 牛奶 放到 明天 會 壞 的 . +I can comfort her . 我 可以 安慰 她 . +We had an early lunch at school . 我們 在 學校 有 一個 早 午餐 . +I will return at 6 : 30 . 我 六點半 回來 . +I make a point of being punctual . 我 重視準 時 . +He introduced his daughter to me . 他 把 他 的 女兒 介紹 給 我 認識 . +She went upstairs . 她 上樓 了 . +He sat next to the stream . 他 坐在 溪流 旁邊 . +I do not feel like eating sushi . 我 不想 吃 壽司 . +He is also very famous in Japan . 他 在 日本 也 很 有名 . +We discussed the plan yesterday . 昨天 我們 討論 了 這個 計劃 . +I have a cough . 我 咳嗽 . +He said nothing , which made her angry . 他 什么 也 没 说 , 这 让 她 很 生气 . +The rocket was launched into space . 火箭 發射 進入 太空 . +May I eat this orange ? 我 可以 吃 這個 柳橙 嗎 ? +He has been in Hokkaido before . 他 以前 曾 在 北海道 . +I have got something you have got to see . 我 有个 东西 您 该 看看 . +Did he propose to you ? 他 向 你 求婚 了 嗎 ? +Should I go to college ? 我 該 上 大學 嗎 ? +Tom works in a bank now . 湯姆 現在 在 銀行 上班 . +Who do you live with ? 你 和 誰 住在一起 ? +Do not underestimate me . 别 低估 我 . +That is not a cat . That is a dog . 那 不是 猫 . 那 是 狗 . +Did you see the rainbow this morning ? 你 见到 今天 早上 的 彩虹 了 吗 ? +It is because of you that we were late . 因为 你 我们 才 迟 了 . +The apple tree has a beautiful blossom . 苹果树 上 挂 着 美丽 的 花朵 . +I had to take shelter under a tree . 我 不得不 在 树下 躲雨 . +I am absolutely elated . 我 真是 欣喜若狂 . +I ran as fast as I could , but I missed the train . 我 用盡 全力 跑 , 但 我 還 是 沒趕 上火 車 . +This book is hard for me to read . 这 本书 对 我 来说 很 难读 . +Can you solve this puzzle ? 你 能 解開 這個 謎 嗎 ? +Tom hates spiders . 汤姆 恨 蜘蛛 . +Tell me how to use the washing machine . 告訴 我 洗衣 機 怎麼 用 . +I said I would make her happy . 我 说 我会 让 她 幸福 的 . +Tom is fluent in French . 湯姆 的 法語 說 的 很 流暢 . +The train is 10 minutes late today . 火車 今天 晚 了 十分 鐘 . +We should stop seeing each other . 我们 不该 再 对视 了 . +The length of this ship is 30 meters . 这 艘 船 的 长度 是 30 米 . +Tom is working the night shift . 湯姆 上 夜班 . +Do you want to come along ? 你 想 不想 一起 去 ? +I recognized your voice right away . 我 立刻 認出 了 你 的 聲音 . +I just need you to come with me . 我 只要 你 跟我来 . +He extended his right arm . 他 伸长 了 他 的 右手 . +Sensing danger , he ran away . 他 感覺 到 危險 就 逃跑 了 . +I grew up in the country . 我 在 鄉下 長大 . +He turned down my offer . 他 拒絕 了 我 的 提議 . +There is nobody here . 這裡 沒 人 . +They have jobs . 他們 有 工作 . +I have a headache . 我 头痛 . +This shirt does not go with that tie at all . 這件 襯衫 跟 那條 領帶 不 搭 . +If you see a mistake , then please correct it . 如果 你 发现错误 , 那 就 请 你 纠正 它 . +We swam in the lake . 我们 在 湖里 游 了 泳 . +We postponed the meeting . 我们 推迟 了 会议 . +Tom is not as old as you . 湯姆 的 年紀 不 比 你 大 . +He may have missed the train . 他 可能 错过 了 火车 . +This is the worst book I have ever read . 这 是 我 读 过 的 书 里面 写 的 最差 的 一本 了 . +I have to go meet with Tom . 我 必須 去 見 湯姆 . +Do you drink green tea ? 您 喝 绿茶 吗 ? +Tom drove the car . 汤姆 开 的 车 . +They talked over the plan for hours . 他们 谈 计划 谈 了 几个 小时 . +You need a car if you live in the suburbs . 要住 在 郊区 的话 , 汽车 是 必需 的 . +What would you all like to eat ? 你們 想 吃 什麼 ? +It is sometimes difficult to make yourself understood in public . 有時 很 難 在 公眾 場合表 達 你 自己 的 意思 . +Mary carries pepper spray in her purse . 玛丽 的 包里 有 胡椒 喷剂 . +The rich sometimes despise the poor . 富人 有时 会 看不起 穷人 . +Will you mail this letter for me ? 你 可以 幫 我 寄 這 封信 嗎 ? +This makes me angry . 這 讓 我 憤怒 . +May I open the windows ? 可以 开窗 吗 ? +I know that you are right . 我 知道 你 是 對 的 . +It is our duty to obey the law . 遵守 法律 是 我們 的 義務 . +I am acquainted with him . 我 和 他 认识 . +I do not know what is worse . 我 不 知道 什么 更 糟糕 . +He decided not to go to the party . 他 決定 不要 去 派 對了 . +A stay of execution was ordered at the eleventh hour . 缓期 执行 在 最后 关头 决定 了 下来 . +I 'd like my coffee after the meal . 我 想 吃 完飯 再 喝咖啡 . +I am afraid she will not accept my explanation . 我 怕 她 不 會 接受 我 的 解釋 . +I got fired from the company , but since I have a little money saved up , for the time being , I will not have trouble with living expenses . 虽然 我 被 公司 解雇 了 , 但是 我 还 有点 存款 , 所以 目前 不用 担心 生计 问题 . +She is working on the problem . 她 在 处理 问题 . +What are my responsibilities ? 我 的 责任 是 什么 ? +Tom is going to a concert this evening . 汤姆 今晚 会 去 演唱会 . +Tom has a lot of experience in computers . 汤姆 对 电脑 有 很多 经验 . +What did you do with my glasses ? 你 用 我 的 眼鏡 做 了 什麼 ? +He admitted his guilt . 他 承認 他 有罪 . +Tom is quite sarcastic . 汤姆 真 会 挖苦 人 . +It is very hot today , is not it ? 今天 非常 熱 , 不是 嗎 ? +Have you ever seen Tom mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +That will not ever happen . 那 从 不会 发生 . +He told me he would go to Venice . 他 告诉 过 我 他 会 去 威尼斯 . +All subscriptions must be paid before the end of this year . 所有 訂購 必須 在 今年年底 前 支付款 項 . +You do not like gambling , do you ? 你 不 喜歡 賭博 , 是 嗎 ? +I ate breakfast in my pajamas . 我 穿著 我 的 睡衣 吃 早餐 . +I got my notebook stolen . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Excuse me , where are the eggs ? 请问 鸡蛋 在 哪里 ? +He is a waiter in a seaside restaurant . 他 是 一家 海滨 餐厅 的 服务员 . +I have just eaten lunch . 我 剛 吃 過午 飯 . +Tom bent down and picked up a handful of sand . 汤姆 弯 下腰 , 捧起 了 一把 沙子 . +Will the fine weather keep up till tomorrow ? 好 天气 能 持续 到 明天 吗 ? +I can not believe you are giving up . 我 不能 相信 你 在 放弃 . +My grades are above average . 我 的 成績 高 於 平均水平 . +Tom is not easily satisfied . Tom 不 容易 被 滿足 . +He has gone mad . 他 疯 了 . +Hey , what are you guys looking at ? 嘿 , 你们 这些 家伙 看 什么 呢 ? +Tom told Mary that she was right . 汤姆 告诉 玛丽 她 是 对 的 . +I admit that I was careless . 我 承认 我 大意 了 . +I love you . 我 爱 您 . +Tom does not seem to think so . 汤姆 似乎 不 这么 认为 . +As for me , I am satisfied . 就 我 而言 , 我 很 满意 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I am going on vacation next week . 我 下週 要 去 度假 . +The garden was filled with flowers . 花園 裡 充滿 了 花朵 . +My younger brother really likes to take photos of mountains . 我 弟弟 很 喜欢 拍山 的 照片 . +What are you after ? 你 想要 什麼 ? +He is studying law at Harvard . 他 在 哈佛 大學學 習 法律 . +I am almost finished . 我 差不多 完成 了 . +You are our only hope . 你 是 我们 唯一 的 希望 . +I am writing a draft of the speech . 我 在 寫 演講 的 草稿 . +I followed the deer is tracks . 我 跟着 鹿 的 踪迹 . +The number of cars is on the increase . 汽车 的 数量 在 增长 . +She used to work for our company . 她 以前 在 我們 公司 工作 . +My cat looks sad . 我 的 猫 看上去 很 悲伤 . +His house is across the street . 他 的 房子 在 街 對 面 . +All our teachers were young and loved teaching . 我們 所有 的 老師 都 很 年輕 並且 喜愛 教學 . +Maybe I should just tell Tom the truth . 可能 我 就 該 告訴 湯姆 真相 . +This really is a masterpiece . 这 真是 个 杰作 . +Democracy is the worst form of government , except all the others that have been tried . 除了 那些 我们 尝试 过 的 政府 形态 , 民主 是 最差 的 那种 了 . +I crossed the river by boat . 我 乘船 过 了 河 . +I do not know why they are fighting . 我 不 知道 他們 為 什麼 在 打架 . +Please let me know as soon as it is decided . 决定 好 的话 请 第一 时间 告诉 我 . +I was quite thirsty and wanted to drink something cool . 我 很渴 , 想 喝 点 冷饮 . +I wish to climb Mt . Fuji again . 我 希望 再 爬 一次 上 富士山 . +In the winter , many older people slip on ice and fall down . 在 冬天 , 很多 老人 在 冰上 滑倒 . +It will be spring soon . 春天 快 來 了 . +Evidently , it is going to rain tomorrow . 明天 肯定 会 下雨 . +All of these books are mine . 这些 书 都 是 我 的 . +Tom was not apologetic . Tom 并 不 觉得 抱歉 . +She walked slowly so she would not slip . 她 慢慢 地 走 , 這樣 她 就 不 會 滑倒 了 . +I must think over the matter before giving my answer . 我 在 回答 之前 必须 考虑 周全 . +What is your favorite fruit ? 你 最 喜爱 的 水果 是 什么 ? +Give us two knives and four forks , please . 请 给 我们 两把 刀 和 四把 叉 . +He wrote it down in his notebook . 他 把 这 记 在 他 的 笔记本 上 . +She was amazed to hear the news . 她 听到 那个 消息 后 惊呆 了 . +He could not stand the bitterness of the coffee . 他 受不了 咖啡 的 苦味 . +It is too dark to play tennis now . 現在 太暗 了 不能 打 網球 . +Would three o 'clock be all right ? 三點鐘 可以 嗎 ? +He talks as if he were a teacher . 他 说话 就 像 一位 老师 . +This plant is indigenous to Canada . 这种 植物 原产 于 加拿大 . +I have got to go now . 我 現在 得 走 了 . +The doctor cured him of his cancer . 醫生 治好 了 他 的 癌症 . +I will not be at home next Sunday . 我 下 周日 不 在家 . +We are going to climb that mountain . 我們 將 要 去 爬 那 座 山 . +I speak French , too . 我 也 说 法语 . +I have no idea what I am going to wear . 我 不 知道 穿 甚麼 好 . +The city was full of starving soldiers . 城市 裡 充滿 了 飢餓 的 士兵 . +Come on , touch it . 来 吧 , 摸 一下 . +They will not allow us to enter the garden . 他们 不会 允许 我们 进 花园 的 . +I want something cold to drink now . 我 想現 在 喝 冷 的 東西 . +I think we are in trouble . 我 认为 我们 有 麻烦 . +You 'd better do what they say . 你 最好 照 他們 所 說 的 做 . +I will explain everything to you . 我会 向 你 全部 解释 清楚 的 . +You are a good person . 您 是 一個 好人 . +I will be taking a vacation next month . 我 下 個 月 要 休假 . +Tom does not want to talk to anybody . 汤姆 不想 跟 任何人 说话 . +I did not know what to do then . 那時 我 不 知道 該 怎麼 辦 . +Between you and me , I am going to quit my present job soon . 我 只 跟 你 说 , 我 很快 就要 辞掉 我 现在 的 工作 了 . +After two days our food gave out . 过 两天 我们 的 食物 就 发完 了 . +I prefer milk to juice . 比起 果汁 , 我 比較 喜歡 牛奶 . +The bride seems to be very pretty . 新娘 好像 非常 漂亮 . +There used to be a store right here . 这里 以前 有个 商店 . +I have a large collection of stamps . 我 收集 很多 郵票 . +I can not resist sweet things . 我 抵抗 不了 甜食 的 诱惑 . +We have no choice but to risk it . 我们 别无选择 只能 冒着危险 . +Have you ever been stuck in an elevator ? 你 有 沒有 被困 在 電梯 裡 過 ? +The library is in the middle of the city . 图书馆 位于 城市 中心 . +I am losing my grip . 我 失去 了 控制 . +I can not follow his logic . 我 无法 理解 他 的 逻辑 . +I hope the economy picks up soon . 我 希望 经济 很快 复苏 起来 . +She said that she gets up at six every morning . 她 说 她 每天 早上 六点 起床 . +Do you offer any all @-@ day tours ? 你 提供 任何 全日 遊 嗎 ? +That is terrible . 这 太 可怕 了 . +Go away ! 走開 ! +Where is Tom ? 汤姆 在 哪儿 ? +I came to Tokyo three years ago and have been living here ever since . 三年 前 我 来到 东京 并 一直 住 在 这儿 . +Tom is in the bathroom now . 湯姆 現在 在 衛生間 . +You are on the right track . 你 的 想法 是 對 的 . +Tom has many friends living in Boston . 湯姆 有 很多 朋友 住 在 波士 頓 . +The number of traffic accidents seems to be on the increase . 交通事故 的 数量 似乎 在 增长 . +She is not as patient as you . 她 没 像 你 那样 有 耐心 . +I want you to stay here longer . 我 希望 你 留在 這兒 久 一點 . +How could it be Tom is fault ? 它 怎麼 能 是 湯姆 的 錯 ? +I hear that you play the piano . 我 听说 你 弹钢琴 . +I am content with my job . 我 對 我 的 工作 感到 滿意 . +I did not participate in the dialog . 我 没有 参与 对话 . +We should always obey laws . 我们 总 要 遵守 法律 . +The polar bears are dying . 北极熊 正在 死去 . +I have written a letter . 我 写 了 一封信 . +I do not feel like working today . 我 今天 不想 上班 . +She makes all her own clothes . 她 的 衣服 全部都是 她 自己 做 的 . +I want something cold to drink . 我 想 喝 點 冷 飲 . +He won everything . 他 赢得 一切 了 . +Remember to mail this letter . 記得 要 去 寄 這 封信 . +Do not worry . 别 擔心 . +I can not believe Tom was able to do this all by himself . 没法 相信 , 汤姆 没 人 帮助 自己 一个 人 就 做到 了 这些 . +I have no idea . 我 一无所知 . +Why are you alone ? 你 为什么 一个 人 ? +The phone is ringing . 電話 正在 響 . +My stomach hurts . 我 胃痛 . +I decided not to go to Europe . 我 决定 不 去 欧洲 了 . +Tom is not wrong . 湯姆 沒有 錯 . +This guy looks like a fox . 这 家伙 像 个 狐狸 . +Help me peel the potatoes . 幫 我 削 一下 土豆 . +Turn the key to the right . 往右 邊 轉動 鑰匙 . +We have got too much work to do . 我們 要 做 的 工作 太 多 了 . +Foxes are wild animals . 狐狸 是 野生动物 . +America is a country of immigrants . 美國 是 一個 移民 國家 . +Tom will be a teacher someday . 湯姆 有 一天 會 成為 教師 . +We are not the ones getting married . 我们 不是 结了婚 的 人 . +I am a citizen of Sapporo . 我 是 札幌 的 市民 . +He even called me an idiot . 他 甚至 叫 你 傻瓜 . +He did not give me anything to eat . 他 沒有 給 我 任何 東西 吃 . +Basho was the greatest poet . Basho 是 最 偉大 的 詩人 . +My pen is not as good as yours . 我 的 钢笔 不 像 你 那 支 那么 好 . +I did not know the city , and what is more , I could not speak a word of the language . 我 不 知道 这个 城市 , 而且 我 一点 都 不 懂 那里 的 语言 . +You may depend on him to help you . 你 或许 可以 依靠 他 来 帮助 你 . +To tell the truth , I completely forgot . 說實話 , 我 完全 忘 了 . +If I had taken that plane , I would be dead now . 要是 我 坐 了 那 架飞机 的话 , 我 现在 早就 死 了 . +The storm developed into a typhoon . 暴風雨 發展 成 了 一 個 颱 風 . +That factory makes toys . 那家 工廠 生產 玩具 . +Should not someone be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +He has a brother who lives in Tokyo . 他 有个 住 在 东京 的 兄弟 . +I wanted to go to the concert . 我 本 想 去 参加 音乐会 的 . +He is gone to Nagoya on business . 他 去 名古屋 出差 . +One of my suitcases is missing . 我 的 其中 一个 行李 不见 了 . +I am afraid of spiders . 我 怕 蜘蛛 . +Tom is a fluent speaker of Japanese . 湯姆日語 說 得 很 流利 . +What kind of wine do you have ? 您 有 什麼樣 的 葡萄酒 ? +Please tell me about it . 请 告诉 我 它 的 事情 . +What a wonderful night ! 多 美妙 的 夜晚 啊 ! +It is a good thing to read good books when you are young . 年轻 的 时候 多 看点 好书 是 件 好事 . +Divide the pizza in three . 把 披薩 分成 三份 . +Water is very important . 水 非常 重要 . +We have no classes on Wednesday afternoons . 我们 周三 下午 没课 . +The boy remained silent . 男孩 依旧 沉默不语 . +Do you have anything for a cold ? 你 有 任何 治感冒 的 東西 嗎 ? +I usually eat out . 我 通常 在 外面 吃饭 . +One of the dogs is alive . 這些 狗 中 的 其中 一 隻 是 活 的 . +Let me have a try at it . 让 我 试试 . +She speaks Chinese . 她 讲 中文 . +Is that paper ? 那 是 紙 嗎 ? +He said hello to the woman . 他 向 那位 女士 问好 . +Zimbabwe was once a colony of Britain . 津 巴布 韋 曾經 是 英國 的 殖民地 . +Tom finally quit smoking . 汤姆 终于 戒烟 了 . +I can verify that that is the truth myself . 我 自己 能够 证实 那 是 真的 . +The world does not revolve around you . 世界 不是 围着 你 转 的 . +I clapped . 我 拍手 . +I am being patient . 我 很 有 耐心 . +Please wrap it up . 請 包起 來 . +It was sensible of you to follow her advice . 你 聽 從 她 的 忠告 是 明智 的 . +You 'd better eat something . 你 最 好吃 点 东西 +Can I sit here ? 我 能 坐 这里 吗 ? +I tried to convince Tom to come home . 我 试 着 说服 汤姆 回家 . +He took a quick look at the magazine . 他 迅速 瞥 了 一眼 杂志 . +I know that you did your best . 我 知道 你 盡力 了 . +I just want to sleep . 我 只 想 睡觉 . +Oh ! That is too bad . 哦 ! 那 太 糟糕 了 . +I have already been working here for several hours . 我 已经 在 这里 工作 几个 小时 了 . +Let me know if I need to change . 让 我 知道 我 是否 需要 改变 . +It is not necessary for us to attend this lecture . 我們 沒有 必要 出席 這個 講 座 . +It seems that no one knew the truth . 貌似 没有 人 知道 真相 . +She opened the letter quickly . 她 很快 地 打開 了 信 . +No matter how much I think about it , I do not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +I would like to go to the concert with you . 我 想 和 你 一起 去 音乐会 . +I hired someone today . 我 今天 雇 了 个人 . +Get serious . 认真 点 . +Mary does not wear as much makeup as Alice . 玛丽 没有 化 爱丽丝 那样 浓 的 妆 . +Ultraviolet rays can cause skin cancer . 紫外 線 可 導致 皮膚 癌 . +Everyone in his family is tall . 他家 的 每個 人 都 很 高 . +We are traveling on a tight budget . 我們 用少 的 預算 旅行 . +There are four seasons in one year . 一年 有 四季 . +Did you have any difficulty in finding my house ? 你 找 我 的 房子 有 困難 嗎 ? +Who is next ? 下 一个 是 谁 ? +You know that is not right . 你 知道 不是 那样 的 . +The money you give them will be put to good use . 你 给 他们 的 钱 会 用到 好处 . +You will miss me when I am gone . 我 走 了 你 会 想 我 . +You ought to know better at your age . 在 你 這個 年紀 你 應 該 要 更 懂事 . +She hurt her foot when she fell off her bicycle . 她 在 从 自行车 上 摔下来 时伤 到 了 脚 . +They gave a series of concerts . 他們 辦 了 一系列 的 音樂會 . +Your bicycle is better than mine . 你 的 腳踏車 比 我 的 好 . +I tried to tell you . 我 試著 要 告訴 你 . +I will wait until she comes . 我会 等到 她 来 . +I am glad that they fixed the heating system , but now it is too hot . 我 很 高興 他們 修 復 了 暖 氣 系 統 , 但 現在 太 熱 了 . +Tom was full . 汤姆 饱 了 . +We will talk about it tomorrow . 我們 明天 討論 它 . +She teaches us French . 她 教 我们 法语 . +You could be right , I suppose . 我 猜想 你 可能 是 对 的 . +It is already time to go home . 已经 是 时候 回去 了 . +What do you do ? 你 的 職業 是 什麼 ? +You do not look so well . 你 看上去 不太好 . +She cooked herself a good meal . 她 為 自己 煮 了 好吃 的 一餐 . +I always rely on him in times of trouble . 我 在 困難 時 總是 依賴 他 . +How is school ? 学校 怎么样 ? +Who is your most interesting friend ? 你 最 有趣 的 朋友 是 誰 ? +Nothing is as precious as love . 沒有 什麼 東西 是 跟愛 一樣 珍貴 的 . +Do you like it ? 你 喜欢 吗 ? +I have not seen him for years . 我 有些 年 没见 过 他 了 . +Are we finished ? 我们 完成 了 吗 ? +If you are busy , I will help you . 如果 你 忙 , 我 會 幫 你 . +She may not come here tomorrow . 她 明天 可能 不 會 來 這裡 . +What do you two do for fun ? 你们 两个 做 了 什么 有趣 的 事情 呢 ? +I have to stay in bed all day . 我 不得不 一整天 都 待 在 床上 . +My wife buys vegetables from a supermarket nearby . 我 老婆 在 附近 的 超市 买 蔬菜 . +He is not as smart as his older brother . 他 不 像 他 的 兄长 那样 聪明 . +Is the work hard ? 工作 困難 嗎 ? +Let is play baseball after school . 讓 我們 放學 後 打 棒球 . +Everything is ready . 一切 就绪 . +I would like to have a cup of coffee . 我 想 喝一杯 咖啡 . +You cannot purchase this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +Do not show your face around here again . 你 不要 再 出現 在 這裡 了 . +It was just a joke . 我 这么 说 只是 开 个 玩笑 . +Am I wrong ? 我 錯 了 嗎 ? +We played poker the entire day . 我们 用 了 一整天 打扑克 . +Tom and his wife both grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +Weeds sprang up in the garden . 花園 裡 雜草 叢生 . +Only 3 out of the 98 passengers survived . 98 名 乘客 只有 3 人生 还 . +I am not responsible for what Tom did . 我 不必 對 湯姆 所 做 的 事負責任 . +She always studies while listening to music . 她 總是 邊 聽 音 樂邊 唸 書 . +Thanks for returning my call . 感謝 您 的 回電 . +The lights are not on . 灯 没有 亮 着 . +Do not bother . 不用 麻烦 了 . +The pen is on the desk . 笔 在 桌上 . +Everyone knows Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom knows what he has to do . 湯姆 知道 他 該 做 什麼 . +Time flies . 时间 匆匆 走过 . +What are you cooking ? 你 在 煮 什麼 ? +A new difficulty has arisen . 出现 了 新 困难 . +You ought to be ashamed of yourself . 你 應該 為 你 自己 感到 羞恥 . +I do not want to lose you again . 我 不想 再 失去 你 . +I had a strange dream last night . 我 昨晚 做 了 一個 奇怪 的 夢 . +I had sore legs the next day . 第二天 我 的 腿 很酸 . +I hope he will wait for me . 我 希望 他 會 等 我 . +We will not get paid extra for doing this . 我们 做 这事 没有 额外 报酬 . +The police will put you behind bars . 警察 會 把 你 關 在 牢 裡 . +Fresh fruits and vegetables are good for your health . 新鮮 水果 和 蔬菜 有益健康 . +The watch on the desk is mine . 桌上 的 手表 是 我 的 . +Sydney is the largest city in Australia . 雪梨 是 澳洲 最大 的 城市 . +There is a possibility that you will have to do that . 你 有 可能 不得不 那么 做 . +We will talk later . 我们 过 一会 再 谈 . +I saw him swim across the river . 我 看見 他 游 過 了 河 . +Stay calm . 保持 冷靜 . +I have a car . 我 有 一辆车 . +That is too bad . 多 遗憾 啊 ! +I know where he comes from . 我 知道 他 来自 哪里 . +He could not swim . 他 不能 游泳 . +I am not used to speaking in public . 我 不 習慣 在 公眾場 合 說 話 . +Who wrote this story ? 谁 写 了 这个 故事 ? +What are you punishing them for ? 你 為 什麼 懲罰 他們 ? +We have nothing in common . 我們 沒有 任何 共同 之處 . +I buy donuts every Sunday after church . 我 每个 星期日 礼拜 完 都 买 甜甜 圈 . +Tom says he feels a little better . 汤姆 说 他 感觉 好 点 了 . +Did you go to the book fair ? 你 去 書展 了 嗎 ? +I did not sleep a wink last night . 我 昨晚 一夜 沒 闔眼 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +He will be a good doctor . 他 会 成为 一个 好 的 医生 的 . +You need to attach your photo to the application form . 你 必须 把 你 的 照片 贴 在 申请书 上 . +Who invented the telephone ? 谁 发明 了 电话 ? +How was your weekend ? 你 的 周末 是 怎么 过 的 ? +She drew out the money from the bank . 她 从 银行 取 了 钱 . +Do you want to eat this ? 你 想 吃 這個 嗎 ? +Few people live to be 100 years old . 很少 人 活到 100 岁 . +Tom has no friends who are willing to help him . 汤姆 没有 愿意 帮助 他 的 朋友 . +It is going to be cold tonight . 今晚 會 很 冷 . +I have no idea . 我 一无所知 . +I think Tom will likely like this movie . 我 認為 湯姆 很 可能 會 喜歡 這部 電影 . +Tom wants me to stay away from him . Tom 要 我 離 他 遠 一點 . +Tom is quite likely to be late . 湯姆 很 可能 遲 到 . +I am looking forward to seeing you next Sunday . 我 期待 下 周日 能 见到 你 . +I drank a cup of water . 我 喝 了 一杯 水 . +Theory and practice should go hand in hand . 理论 得 联系实际 . +Tom sat down . 汤姆 坐下 了 . +They will kill you . 他們 要 殺 你 . +I want something to drink now . 我 現在 想要 喝 點 東西 . +We should go to sleep . 我 该 去 睡觉 了 . +That was not my intention . 那 不是 我 的 本意 . +Tom lived in a small fishing village . 汤姆 住 在 一个 小 渔村 . +The dog is dying . 這 隻 狗 快要 死 了 . +You are a beautiful woman . 你 是 个 美 人 . +Tom attached the string to the kite . 湯姆 把 繩子 加在 了 這個 風箏 上 . +He is ashamed of his failure . 他 为 他 的 失败 感到 羞耻 . +I am satisfied with my work . 我 很 滿意 我 的 工作 . +Hi ! Do you work here ? 嗨 ! 你 在 这儿 工作 吗 ? +I know you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +Tom has short hair . 汤姆 ( Tom ) 留 短发 +She always dresses in black . 她 總 是 穿著 黑色 的 衣服 . +Cows are eating grass in the meadow . 牛 吃 牧草 . +Tom told me he was Canadian . 汤姆 告诉 我 他 是 加拿大人 . +He did not go and I did not either . 他 沒 有 去 , 我 也 沒去 . +You will soon hear from him . 你 很快 就 會 收到 他 的 信 . +She backed her car into the garage . 她 倒 車 進車 庫 . +You are the man I have been looking for . 你 就是 我 一直 要 找 的 人 . +Turn the TV off . 把 電視 關了 . +We talked and talked until the day broke . 我們 一直 聊天 直到 天明 . +At last , he came . 最终 , 他 来 了 . +We did not have much rain last month . 上個月 我們 這兒 沒有 下 很多 雨 . +She takes care of my children . 她 照顧 我 的 孩子 . +The air is thin at the top of a high mountain . 山頂 上空 氣 稀薄 . +Your manners are not very good . 你 的 舉止 不是 很 好 . +I would like to tell you something . 我 想 告訴 你 一些 事情 . +Tom turned on the electric fan . 湯姆 打開 了 電風 扇 . +What are your plans for the weekend ? 你 週末 有 什麼 計劃 ? +Tom does not like any kind of spicy food . 汤姆 不 喜欢 任何 辣 的 食物 . +Nobody is too old to learn . 沒 有人 會 因為 太 老 而 不能 學習 . +Can you tell me what this is ? 你 能 告诉 我 这 是 什么 吗 ? +She did not tell me her secret . 她 沒有 告訴 我 她 的 秘密 . +People must love one another . 人 要 爱 他人 . +I really think we should do this . 我 真的 认为 我们 该 做 这个 . +I found a good Mexican restaurant . 我 发现 一家 很好 的 墨西哥 餐厅 . +This dress cost me over 40,000 yen . 這件 衣服 花 了 我 40000 日元 . +Is there anything I must do ? 有 什么 事 是 我 该 做 的 吗 ? +He told me his life is story . 他 跟 我 讲 了 他 的 人生 故事 . +Only one person survived the accident . 只有 一 人 倖 免 於 難 . +They congratulated us on our victory . 他們 祝賀 我們 的 勝利 . +It is okay to go . 你 可以 走 了 . +How long have you been in here ? 你 来 这里 多久 了 ? +Does this letter have to be written in English ? 這 封信 必須 用 英文 寫 嗎 ? +My sister is cooking in the kitchen . 我 妹妹 正在 厨房 做饭 . +Tom realized he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +Learning French is not hard . 学法语 不难 . +I climbed in through the window . 我 从 窗口 爬 进来 的 . +Tom picked up the jar and read the label . 汤姆 拿 起 罐子 读 标签 . +Father would often read detective stories in his spare time . 父亲 常常 在 空闲 时间 读 侦探小说 . +Nothing much has changed . 沒有 多少 改變 . +The board unanimously decided to appoint her as CEO . 董事会 一致 决定 任命 她 为 执行 总裁 . +Why not ? 为什么 不 ? +Nothing happened . 什麼 事 都 沒有 發生 . +Let me help you . Your bag looks very heavy . 让 我 来 帮 你 吧 . 你 的 包 看起来 很重 . +He said , " I am from Canada . " 他 说 : “ 我 是 加拿大 来 的 . ” +He is washing his car . 他 正在 洗 他 的 车 . +I was tired , but I could not sleep . 我 累 了 , 但是 我 睡 不著 . +This makes me sad . 這 讓 我 難過 . +This is surprising . 這 是 令人 吃驚 的 . +I bought a new television . 我 买 了 台 新 电视机 . +Is it right for a doctor to decide when someone should die ? 由 医生 来 决定 某人 何时 该死 是 对 的 吗 ? +Tom has a veterinary background . Tom 有 獸 醫 背景 . +I will be seventeen next year . 我 明年 17 岁 . +Can Tom buy that for us ? 湯姆 能 給 我們 買 嗎 ? +Everybody knows her . 每個 人 都 認識 她 . +He is a pleasant person . 他 是 个 好脾气 的 人 . +My father runs a restaurant . 我 的 父親 經營 一家 餐館 . +Stop gawking . 别 再 傻 看着 . +It has been three months since he left Japan . 自從 他 離開 日本 已經 有 三個 月 了 . +I am almost sure of it . 我 幾乎 能 確定 . +No matter what I do , she says I can do better . 不管 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I was trying to kill time . 我 试 着 消磨 时间 . +See you tomorrow in the library . 明天 图书馆 见 . +An apple fell to the ground . 一個 蘋果 落到 了 地上 . +An old man broke into our conversation . 一位 老人 打斷 了 我們 的 談話 . +I am always busy with my homework . 我 總是 忙 於 功 課 . +What is that ? 那 是 什么 ? +Tom criticized Mary in front of everyone . 汤姆 在 所有人 面前 批评 了 玛丽 . +It has always been a pleasure to work with you . 跟 你 共事 总是 很 愉快 . +My father had already finished breakfast when I got up this morning . 我 今早 起床 时 , 我 爸 已经 吃 过 早饭 了 . +You must be joking . 你 一定 是 开玩笑 ! +When does it start ? 什么 时候 开始 ? +Fish and red wine do not go together . 鱼 和 红酒 不 相配 . +School begins at 8 : 30 a.m. 学校 8 点 半 开始 上课 . +He is afraid of that dog . 他 怕 那 只 狗 . +That would be relevant . 那 会 有 关系 . +Could you tell me how to get there ? 请问 我 该 怎么 去 那里 ? +Have a good weekend . 周末 愉快 . +I did not want this to happen . 我 不想 这种 事 发生 . +They did not keep their promise . 他們 沒有 信守 諾 言 . +The house I bought is pretty far from downtown . 我 買 的 房子 離 市中心 比較 遠 . +Our school is near the station . 我們 學校 在 車站 的 附近 . +I visited my grandmother is house . 我 拜訪 了 我 祖母 的 房子 . +It rains a lot in June in Japan . 在 日本 , 6 月 的 时候 会 下 很多 雨 . +You can take your time . 你 可以 慢慢来 . +He likes hunting . 他 喜欢 打猎 . +It is really not important . 真的 不 重要 . +Please take a look at this picture . 請 看看 這 張 照片 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +The clock is above the fireplace . 時鐘 在 壁爐 的 上方 . +I know the real reason you do not want go . 我 知道 你 不想 去 的 真实 原因 . +Keep going . 继续 吧 . +It is about time to start . 差不多 该 开始 了 . +This is a friend of mine . 這個 是 我 的 朋友 . +The hunter shot and killed the fox . 猎人 射死 了 狐狸 . +I was waiting for something to happen . 我 在 等 事情 發生 . +Walk ahead of me . 在 我 前面 走 . +Speaking English is useful . 说 英语 很 有用 . +You are now an adult . 你 现在 是 大人 了 . +My brother and I shared the room . 我 哥哥 和 我 共用 這間 房間 . +You really are lucky , are not you ? 你 真的 很 幸運 , 不是 嗎 ? +She is not a regular employee of this company . 她 不是 這間 公司 正式 的 職員 . +I do not want there to be any misunderstanding . 我 不想 有 任何 误会 . +That was fabulous . 那 真是 极好 的 . +She was aching from head to foot . 她 浑身 酸痛 . +He bored us with his long stories . 他 長長 的 故事 讓 我們 覺得 厭煩 了 . +I have already finished this book . 我 已經 讀完 了 這 本書 . +She has a gift for prophecy . 她 有 预言 的 能力 . +My brother bought an electric guitar . 我 的 兄弟 買 了 電子 吉他 . +You need protection . 你 需要 保護 . +She is a frequent visitor to this country . 她 经常 来 这个 国家 . +Prices are double what they were two years ago . 價格 是 兩 年前 的 兩倍 . +I like to eat apples . 我 喜欢 吃 苹果 . +Tom refused to help Mary do her homework . 湯姆 拒 絶 幫 瑪 麗 做 她 的 作 業 . +This is the house where he lived . 這 是 他 住 的 房子 . +She cooked vegetable soup for us . 她 為 我們 煮 了 蔬菜 湯 . +I do not have the slightest intention of retiring . 我 没有 一点 退休 的 念头 . +This plan will be very expensive to carry out . 这 计划 执行 起来 花销 会 很大 . +This is not what I ordered . 這 不是 我 點 的 食物 . +He founded the school five years ago . 他 在 五年 前 創立 了 這 所 學校 . +I often go swimming in the river . 我 常常 在 河裡 游泳 . +You can do whatever you want to . 你 可以 做 任何 你 想 做 的 事 . +Work slowly . 干活 慢点 . +They come from the south of France . 他们 是从 法国 南部 来 的 . +Anything that can be misunderstood will be . 任何 事 都 可以 被 誤解 . +He traveled around the world . 他 周遊 世界各地 . +Hurry up ! We will be late . 快點 ! 我們 要 遲 到 了 . +She likes all kinds of sports . 她 喜歡 各種 運動 . +It is quite difficult to master French in 2 or 3 years . 很 难 在 2 、 3 年内 掌握 法语 . +You can use my dictionary . 你 可以 用 我 的 字典 . +His parents expect too much of him . 他 父母 对 他 期望 过 高 . +The lake is deep here . 这个 湖 在 这个 地方 很 深 . +He rescued the dog at the risk of his own life . 他 冒 着 生命危险 救 了 那条 狗 . +Tom finally understood it . 汤姆 最终 明白 了 . +I think I am intelligent . 我 觉得 我 很 聪明 . +I will go back home with you . 我 會 跟 你 一起 回家 . +Do not forget to take the first @-@ aid kit . 别忘了 带上 急救箱 . +I want to see you again . 我 希望 再次 見 到 你 . +The flowers in the garden need to be watered . 花园里 的 花 需要 浇水 . +Tom does not have any friends who like camping . 汤姆 没有 喜欢 露营 的 朋友 . +I can not make any sense of this . 我 完全 不 明白 . +How many apples do you want ? 你 要 多少 個 蘋果 ? +I do not like you anymore . 我 再也 不 喜欢 你 了 . +Let is keep in touch . 让 我们 保持 联络 . +I almost forgot my lunch . 我 快 把 我 的 午饭 忘 了 . +What does this pen cost ? 這 支筆 多少 錢 ? +What time does the play begin ? 演出 什么 时候 开始 ? +I am a teacher . 我 是 個 老師 . +He is at home today . 他 今天 在家 . +I do not want to miss the exam . 我 不想 错过 考试 . +Time is the most precious thing in the world . 时间 是 世界 上 最 宝贵 的 东西 . +Go back to the office . 回辦 公室 去 . +She can sing and dance beautifully . 她 會 唱歌 而且 舞 跳 得 很美 . +She plays the piano very well . 她 鋼琴 彈 得 很 好 . +I feel unwell . 我 感觉 不 舒服 . +But you are not there . 但 你 不 在 那裡 . +It was Tom that saved the girl . 是 湯姆 救 了 這個 小女孩 . +Both French and English are spoken in Canada . 在 加拿大 的 人 說 法語 和 英語 . +She lived a lonely life . 她 的 生活 很 寂寞 . +We will go on a picnic next Sunday . 我們 下週 六 將 去 野餐 . +Will it be necessary for us to buy a book for this class ? 我们 有 必要 为 上 这 门 课 买 本 教材 吗 ? +Mary is carrying a watermelon . 瑪麗婭 抱著 一個 西瓜 . +I am sorry . I have another appointment . 很 抱歉 , 我 还有 另 一个 约会 . +The road is under construction . 路 正在 建 . +Are you saying my life is in danger ? 你 在 说 我 有 生命危险 吗 ? +We depend on you . 我们 可 全 靠你了 . +This is the church where we got married . 這裡 是 我們 結婚 的 教堂 . +Children need a lot of sleep . 孩子 們 需要 大量 的 睡眠 . +My mother made me a white dress . 我 媽媽 為 我 做 了 一件 白色 的 洋裝 . +There are 50 members in the club . 這個 俱樂部 有 50 位 成員 . +Will you wait a minute ? 麻煩 您 等 一下 . +She is just a child . 她 只是 個 孩子 . +I was invited to their wedding . 我 被 邀請 參加 他們 的 婚禮 . +He stepped on my foot on purpose . 他 故意 踩 我 的 腳 . +Tom was ready to work . 湯姆 準備 去 工作 . +We let him keep the dog . 我們 讓 他 養 狗 . +Wine helps with digestion . 葡萄酒 幫 助消化 . +Tom says that he is a creature of habit . 汤姆 说 他 是 习惯 的 产物 . +I have had a headache for three days and I can not get rid of it . 我 已经 头疼 三天 了 , 还 没 摆脱 它 . +Some of them are healthy , but others are not . 他们 中 的 一些 人 身体健康 , 但是 其他人 不是 . +I have a friend whose father is a famous writer . 我 有個 朋友 的 父親 是 知名 的 作家 . +I can not speak English at all . 我 一点 英文 都 不会 说 . +Ask for what you want . 要 你 想要 的 ! +Tom looked well . 汤姆 看上去 很 精神 . +Our country must develop its natural resources . 我們 國家 必須 開發 自然 資源 . +It is two @-@ hour drive from here to my uncle is house . 从 这里 坐车 , 要 花 两个 小时 才能 到 我 叔叔 家 . +I have always been smart . 我 一直 聪明 . +When I came home , Tom was studying . 當 我 回家 的 時候 , 湯姆 正在 讀書 . +Let me have a look at it . 讓 我 看看 它 . +The whole class is present once a week . 全班同学 每周 出席 一次 . +I have two nieces . 我 有 两个 外甥女 . +Tom hit me first . 汤姆 先 打 了 我 . +Do not ask questions . Just follow me . 别 问 问题 . 跟着 我 就 行 . +Do you want more ? 你 想要 更 多 嗎 ? +This month was kind of difficult . 这个 月 我 过得 有点 艰难 . +Only then did he realize he had been deceived . 直到 那时 , 他 才 意识 到 他 已经 上当受骗 . +You should obey your parents . 你 该 听 你 父母 的话 . +He invited me to his house . 他 邀请 我 去 他家 . +He has not answered my letter yet . 他 还 没回 我 的 信 . +Shut the door . 关门 . +Mars has two natural moons . 火星 有 兩個 天然 衛星 . +She becomes drowsy after dinner . 晚 飯 後 她 變得 昏昏欲睡 . +What does this pen cost ? 这 支 钢笔 要 多少 钱 ? +I did not go to school last Monday . 上周 一 我 没 去 上学 . +The company went bankrupt . 公司 破产 了 . +Some people like sports , and others do not . 有些 人 喜欢 运动 , 有些 人 不 喜欢 . +Do you have any money with you ? 你 身上 有 錢 嗎 ? +There are many beautiful castles in northern Germany . 在 德國 北部 有 很多 美麗 的 城堡 ? +How much money do you have ? 你 有 多少 錢 ? +The vase was shattered . 花瓶 被 打碎 了 . +I have not seen him in a long time . 我 好久不见 他 了 . +I do not know if there is time . 我 不 知道 有没有 时间 . +I believe in you . 我 相信 你 . +It is started raining again . 又 开始 下雨 了 . +I have to get some sleep . 我 必須 睡 一下 覺 . +Tom does not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +How long will the train stop here ? 火车 要 在 这里 停 多久 ? +It is a beautiful painting . 是 一幅 漂亮 的 畫 . +Who took the money ? 誰 拿 了 錢 ? +It is evident that he has made a mistake . 很 明顯 的 是 他 犯 了 錯 . +Why do not you eat vegetables ? 为什么 你 不吃 蔬菜 ? +Could you please pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Tom is by far the tallest boy in our class . 汤姆 远 比 我们 班 其他 男孩 高 . +I went to three funerals last month . 上个月 我 参加 了 三场 葬礼 . +I wish I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +They live across the river . 他們 住 在 河對面 . +Is there a supermarket near here ? 這 附近 有 超市 嗎 ? +How about playing tennis ? 打 網球 怎麼樣 ? +I do not think I can help you very much . 我 不 認為 我 能 幫 你 很多 . +One hundred years is called a century . 一百年 称为 一个 世纪 . +Australia is the world is fifth @-@ largest coal producer . 澳大利亚 是 世界 第五 大 煤炭 产地 . +I sometimes play tennis with her . 有時 我 會 跟 她 打 網球 . +He occasionally visited me . 他 偶尔 会 来 拜访 我 . +Tom and Mary are in the same class . 汤姆 和玛丽 在 同一个 班级 . +Do you have a coat and a hat ? 你 有 外套 和 帽子 嗎 ? +Tom was wearing jeans . 湯姆 穿著 牛仔 褲 . +Tom finally gave up smoking . 汤姆 终于 戒烟 了 . +There is enough time for a quick snack . 有 足夠 的 時間 很快 地 吃 一下 點 心 . +They rescued the boy from drowning . 他們 救 了 這個 男孩 , 使 他 免 於 淹死 . +I do not want to go there . He does not want to go either . 我 不想 去 那儿 , 他 也 不想 . +I gave my sister a dictionary . 我 給 了 我 妹妹 一本 字典 . +He has strange ideas . 他 有着 奇妙 的 想法 . +She has an agreeable voice . 她 的 声音 令人 愉快 . +When did your baby start talking ? 你 的 寶寶 , 什麼 時候 開始 說 話 的 ? +Tom used to drink like a fish . Tom 過去 喝 很多 酒 . +We need to get some help . 我们 需要 人 帮忙 . +She got her daughter a personal computer . 她 給 她 的 女兒 買 了 一台 個 人 電腦 . +They left one after another . 他们 一个 接着 一个 地 离开 了 . +Fill in your name and address . 填上 你 的 姓名 和 地址 . +He makes three times more money than I do . 他 赚 的 钱 比 我 多三倍 . +They got into the train . 她們 上 了 火車 . +He read the letter over and over . 他 把 信读 了 一遍 又 一遍 . +The boat is going against the current . 船 逆流 航行 . +By the way , have you seen him lately ? 顺便 说 一句 , 你 最近 见 过 他 吗 ? +She made me a cake . 她 为 我 做 了 一个 蛋糕 . +He who laughs last laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +She was hit by a car . 她 被 車 撞 了 . +I believe you will get over it soon . 我 相信 你 很快 就 能 复原 . +Would you please write with a ballpoint pen ? 你 能 用 圆珠笔 写 吗 ? +The two of us are students . 我們 兩個 是 學生 . +My French is not good enough . 我 的 法语 说 得 不够 好 . +What color is your hair ? 您 的 头发 是 什么 颜色 的 ? +Stop joking around . 別 開 玩笑 了 . +Do you want to eat something else ? 你 想 吃 點 別的 嗎 ? +I do not know what Tom is plan is . 我 不 知道 湯姆 的 計劃 是 甚麼 . +He thought that it was like a bird cage . 他 认为 这 像 个 鸟笼 . +You must put an end to this foolish behavior . 你 该 结束 这种 愚蠢 的 行为 了 . +He graduated from Harvard University with honors . 他 光榮 地 從 哈佛 大學 畢業 了 . +Your memory is not too good . 您 记性 不太好 . +These peaches are not very sweet . 這些 桃子 不是 很甜 . +It is very simple . 这 很 简单 . +Tom ate a slice of pizza . 湯姆 吃 了 一片 比薩餅 . +You can swim , can not you ? 你 會 游泳 , 不是 嗎 ? +Rome has a lot of ancient buildings . 罗马 有 很多 古建筑 . +I am extremely grateful to you . 我 無法 表達 我 對 你 的 感謝 . +Tom is a good person . 湯姆 是 個 好人 . +Tom did not want to come . 汤姆 不想 来 . +Tom started running towards the house . 湯姆 開始 向 房子 跑 去 . +He had kept the secret to himself . 他 保守 著 這個 秘密 . +Tom asked Mary some questions , but she refused to answer them . 汤姆 问 了 玛丽 一些 问题 , 但是 她 拒绝 回答 . +How long ago did the bus leave ? 這輛 公車 多久 前 離開 的 ? +I am using Twitter . 我 用 Twitter . +This bus will take you to the airport . 这辆 公交车 能载 你 去 机场 . +Tom never wanted to try it . 湯姆 從 不想 試試 . +Your behavior leaves much to be desired . 你 的 行为 离 要求 的 太 远 了 . +Tom did not go . 汤姆 没 走 . +How large is your family ? 你 的 家庭 有 多 大 ? +Fear quickly turned into anger . 恐惧 很快 变成 愤怒 . +Are you dating anybody ? 你 跟 人 約 會 過 嗎 ? +Tom joined the discussion . 汤姆 参加 了 讨论 . +I can work with anyone . 我 能 跟 任何人 工作 . +He has a few pens . 他 有些 鋼筆 . +The tiger cub looked like a large kitten . 小老虎 看起 來 像 隻 大 貓 . +Tom will not likely be grumpy again today . 汤姆 今天 脾气 不太可能 会 那么 坏 了 . +Do not forget me . 別 忘 了 我 . +I took a day off last week . 上週 我 休 了 一天 的 假 . +This swallow is wings are broken . 这 只 燕子 的 翅膀 受伤 了 . +I stayed at his place yesterday . 我 昨天 住 在 他家 . +She lived up to our expectations . 她 没有 辜负 我们 的 期望 . +It is difficult to keep secrets . 守住 秘密 很 难 . +She may be a nurse . I am not sure . 她 可能 是 护士 . 我 不 太 肯定 . +That boy used to drop in on me . 那 男孩儿 来访 过 我家 . +My blood type is A positive . 我 的 血型 是 A型 血 阳性 . +He is just a business associate . 他 只是 個 事業 合夥人 . +What do you want to be when you grow up ? 你 长大 后 想 成为 什么 ? +Would you like some sugar in your tea ? 红茶 里 要 加糖 吗 ? +Do you have siblings ? 你 有 兄弟姐妹 吗 ? +It seems that you are not having a good time here . 好像 你们 在 这儿 玩 得 不 愉快 啊 . +He lived here for a time . 他 在 这儿 住 了 有 一段时间 了 . +Tom said Mary is shy . 湯姆 說 瑪麗 害羞 . +You should stay away from Tom . 你 应该 离 汤姆 远 点儿 . +There are four people in my family . 我家 有 四個 人 . +We talked about yesterday is test . 我們 談到 了 昨天 的 測驗 . +He occasionally reads detective novels . 他 偶尔 会 阅读 一些 侦探小说 . +I have no doubts . 我 没有 疑问 . +Tom happened to meet Mary at the supermarket . 汤姆 在 超市 偶遇 玛丽 . +Is it all right to take pictures in this building ? 我们 可以 在 大楼 里 拍照 吗 ? +Is it serious ? 严重 吗 ? +The incident made everyone feel more embarrassed . 這件 事 弄 得 大家 都 比較 尷尬 . +I asked him to help me . 我 請 他 幫 我 . +An old man was resting in the shade of the tree . 一個 老人 在 樹蔭 下 休息 . +I must help my mother . 我 必須 幫忙 我 母親 . +I will give you a book . 我 會 給 你 一本 書 . +My camera does not need to be fixed . 我 的 照相 機 不 需要 修理 . +I can start anytime . 我 随时 可以 开始 . +What do you think would happen if the earth stopped spinning ? 如果 地球 停止 自传 , 你 认为 会 发生 什么 ? +My father had me wash the car . 父亲 让 我 洗 汽车 . +This is the best book that I have ever read . 這 是 我 讀 過 的 最好 的 書 . +Tom helped Mary buy everything she needed . 湯姆幫 瑪麗 買 了 她 所有 需要 買 的 東西 . +Who do you want to speak to ? 你 想 跟 誰 說 話 ? +I hid in the tall grass . 我 躲 在 高 草丛里 了 . +You said that you 'd help me . 你 说 过 你 会 帮 我 的 . +Children generally have a higher body temperature than adults . 小孩 的 体温 一般 比 大人 的 要 高 . +He quickly went out of the room . 他 很快 地 走出 了 房間 . +I worked in a post office during the summer vacation . 暑假 期间 , 我 在 邮局 工作 . +I will obey . 我会 听从 指示 . +Come home . 回家吧 . +I have a high opinion of this book . 我 對 這 本書 評價 很 高 . +You must have been asleep . 你 一定 睡著 了 . +He does not like fish . 他 不 喜歡 吃 魚 . +Tom is escaping . 湯姆 在 逃跑 . +I have tried to contact Tom . 我 试 过去 联系 汤姆 . +I owe everything to Tom . 我 什么 都 欠 汤姆 的 . +I will get started right away . 我 會 立刻 開始 . +Mix the flour with two eggs . 把 麵 粉 和 兩 顆 雞 蛋 混合 . +He was tired , but he kept working . 他 累 了 , 但是 他 繼續 工作 . +Tom says he does not know how to swim . 汤姆 说 他 不 知道 怎么 游泳 . +I forget where I put my hat . 我 忘 了 我 把 我 的 帽子 放在 哪裡 了 . +I hear that he sold his house . 我 聽 說 他 賣 掉 了 房子 . +Do not depend too much on others . 不要 太 过于 依赖 别人 . +Please fill this bottle with water . 請 把 這個 瓶子 裝滿 水 . +Do not laugh at him for making a mistake . 不要 笑 他 犯 了 错误 . +Are not you going to go with me ? 你 不要 跟 我 一起 走 嗎 ? +Tom was caught driving without a license . Tom 被 抓到 無照 駕駛 . +He is not able to buy a car . 他 不能 买车 . +Do you go to church on Christmas Day ? 你 在 圣誕節 去 教堂 嗎 ? +My boss assigned the hard job to me . 我 老板 把 艰巨 的 任务 指派 给 了 我 . +It is not necessary for you to quit the job . 你 没 必要 辞掉 工作 . +He went bankrupt . 他 破产 了 . +I prefer being poor to being rich . 我 更 愿意 贫穷 而 不是 富裕 . +I hate silent movies . 我 讨厌 无声电影 . +I respect the elderly . 我 尊敬 长辈 . +It is impossible to master English in a short time . 不 可能 短时间 内 学会 英语 . +Tom went over and sat down next to Mary . 汤姆 来 了 , 坐到 了 玛丽 的 边上 . +You should read a lot of books while you are young . 应该 趁 年轻 多 读点 书 . +The boat was tied with a short line . 船 被 用 短 繩 繫 著 . +What was it we were talking about ? 我们 那个 时候 讨论 的 是 什么 ? +Can I borrow your car ? 我 能 借 你 的 车 吗 ? +I have looked everywhere , but I can not find my book . 我什麼 地方 都 找 過 了 , 但 卻 找 不到 我 的 書 . +She substituted margarine for butter . 她 用 人造黄油 代替 了 黄油 . +Were you able to do it ? 你 有 能力 去 做 这个 吗 ? +Can I get my money back ? 我 是不是 能 收回 我 的 钱 ? +It is very cold . 天气 非常 寒冷 . +He likes to travel by himself . 他 喜歡 獨自 旅行 . +His intelligence and experience enabled him to deal with the trouble . 他 的 智慧 和 經驗 使 他 能 處理 這個 麻煩 . +We can not let them do that . 我们 不能 让 他们 那么 做 . +Have you traveled anywhere recently ? 你 最近 去 哪裡 旅遊 了 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 网站 的 版面设计 . +Is this your notebook ? 這 是 你 的 筆記 本 嗎 ? +She will cry even when no one is looking . 没 人 盯 着 她 的 时候 , 她 甚至 会 哭 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +Nobody can stop me ! 没 人 能 阻止 我 ! +What happened to your computer ? 你 的 電腦 怎麼 了 ? +He came here ten minutes ago . 他 十分 鐘 前 到 這裡 . +Are you happy now ? 你 现在 高兴 吗 ? +Tom has spent the past three years in prison . 湯姆 在 監 獄裡 待 了 三年 . +I do not think he is sincere . 我 不 相信 他 是 真心 的 . +Have you ever seen such a beautiful sunset ? 你 看 過 這麼 美的 夕陽 嗎 ? +Go to the patio . 去 露台 . +I listen to the radio every night . 我 每晚 都 听 收音机 . +I had hoped to meet you there . 我 曾 希望 在 那裡 遇見 你 . +He gave us not only clothes but some money . 他 不仅 给 了 我们 衣服 , 还有 一点 钱 . +It is hard for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +She eats nothing but vegetables . 她 只 吃 蔬菜 . +Tom needs a change of scenery . 汤姆 需要 换换 风景 . +Do not speak to anyone . 你們 別 和 任何人 說 . +Is it something I said ? 是 我 說 的 嗎 ? +Why do you need to read such a book ? 为什么 你 要读 这样 一 本书 ? +Why are not you coming with us ? 你 为什么 不 和 我们 一 起来 ? +Why do not we have dinner ? 為 甚麼 我們 不吃 晚 飯 ? +He majors in English literature . 他 主修 英國 文學 . +You have made progress . 你 进步 了 . +I am a new student . 我 是 个 新生 . +He has a car . 他 有 辆车 . +You are as tall as I am . 你 和 我 一样 高 . +Children should keep away from the river . It is dangerous . 儿童 应该 远离 河流 . 有 危险 . +Could you take me to a movie ? 你 帶 我 去 看 電影 好 嗎 ? +It would be ridiculous to spend all their money . 花光 他們 所有 的 錢 會 很 荒謬 . +It is only a matter of time . 這 只是 時間 的 問題 . +You are very talkative , are not you ? 你 很 健谈 , 不是 吗 ? +Is that better ? 那 更好 吗 ? +He put his hands in his pockets . 他 把手 插進 口袋 裡 . +This is your dog . 这 是 你 的 狗 . +Are you sure you do not want to sleep on it ? 你 確定 你 不想 睡 在 它 上面 嗎 ? +I will go with you if necessary . 如果 必要 的 話 , 我 會 和 你 一起 去 . +Abraham Lincoln , the 16th president of the United States , was born in a log cabin in Kentucky . 伯 拉罕 · 林肯 , 美国 第 16 任 总统 , 生于 肯塔基州 的 一个 简陋 的 小 屋里 . +No one will talk . 没人会 讲 . +This tea tastes good . 這 茶 味道 不錯 . +Will you all be here tomorrow ? 明天 你 一整天 都 會 在 這裡 嗎 ? +Please call me at my hotel later . 等 一下 請 打 電話 到 我 住 的 旅館 . +I felt my hands tremble . 我 感覺 到 我 的 手 在 震動 +They were alone in the library . 他們 獨自 在 圖書館 裡 . +A truck was standing in the middle of the road . 路 中间 有 一辆 卡车 . +She is as beautiful as Snow White . 她 像 白雪公主 一樣 漂亮 . +Tom is living in Boston now . 汤姆 现在 住 在 波士顿 . +Tom paid me back the money he owed me . 汤姆 把 欠 我 的 钱 还给 我 了 . +Everybody will die . 人 固有 一 死 . +Tom is a bit snobbish . 汤姆 有 一点 势利 . +It can not be ! 不 可能 ! +She is almost the same height as you . 她 差不多 和 你 一样 高 . +You must not jump to conclusions . 你 不 可以 妄下 結論 . +Tom was questioned by the police . 汤姆 被 警察 盘问 . +A lot of houses were washed away by the flood . 许多 房屋 被 洪水 冲走 了 . +It makes sense . 那样 说 得 通 . +Read Lesson 10 from the beginning . 從 第十 課 的 開頭 讀起 . +Tom said he is glad he could do that . 湯姆 說 他 很 高興 他 能 做 . +I will try my best today , too . 今天 我 也 会 努力 的 . +Draw a line from A to B. 请 画 一条 从 A 到 B 的 线 . +If it rains tonight , I am not going to go out . 如果 今晚 下雨 , 我 就 不 出去 . +Do not change your mind . 不要 改變 你 的 心意 . +I think we should change the topic . 我 認為 我們 該 換 個題 目 . +Do not forget smoking is bad for your health . 不要 忘记 吸烟 对 你 的 健康 有害 . +Tom did not let his children go to Mary is party . 湯姆 沒 有 讓 他 的 孩子 們 去 瑪莉 的 派 對 . +We were very sorry that we could not help them . 我們 很 遺憾 無法 幫助 他們 . +The price of meat dropped . 肉价 下跌 了 . +You have got to be joking . 你 一定 是 开玩笑 ! +Choose the color you like the best . 選 你 最 喜歡 的 顏色 . +I walked to school . 我 走路 到 學校 . +All of the milk was spilled . 所有 的 牛奶 都 溢出 去 了 . +How long is this visa good for ? 這個 簽證 的 有效期限 是 多久 ? +We like to play soccer . 我們 喜歡 踢足球 . +Water poured from the broken pipe . 水 從 破裂 的 水管 傾瀉 而 出 . +I got him to fix my bicycle . 我 讓 他 修理 了 我 的 腳踏車 . +Tom has been driving all day . 汤姆 整天 都 在 开车 . +I do not know if I have the time . 我 不 知道 我 有 沒有 時間 . +Spring has come . 春天 到 了 . +I would like to change yen to dollars . 我 想 把 日元 換成 美元 . +Afraid of hurting his feelings , I did not tell him the truth . 怕 傷害 了 他 的 感情 , 我 沒有 告訴 他 真相 . +We kept them quiet . 我們 讓 他們 保持 安靜 . +I did not know what to say . 我 不 知道 該 說 些 什麼 . +Sorry , I do not have any change . 不好意思 , 我 没 零钱 . +She asked him for help . 她 向 他 求助 . +Tell me the correct answer . 告诉 我 正确 的 答案 . +We went to the races . 我们 去 看 了 比赛 . +They set out on a picnic . 他们 出发 去 野餐 了 . +Tom followed . 汤姆 跟着 . +You have lost weight , have not you ? 你 减肥 了 , 不是 么 ? +Karaoke is good for reducing stress . 卡拉 OK 對 減輕 壓力 有益 . +Good luck on the test ! 祝 考试 好运 ! +I hear you , but I do not see you . 我 听得见 你 , 但 我 看不见 你 . +You are in better shape than I am . 你 的 體型 比 我 的 好 . +Tom never forgets to give his wife flowers on their wedding anniversary . 汤姆 从没 忘记 在 婚礼 周年 纪念日 送给 他 妻子 花 . +Did you enjoy yourself yesterday ? 你 昨天 玩 得 開心 嗎 ? +My father often goes to America on business . 我 爸爸 经常 去 美国 出差 . +The man ate bread . 這個 男人 吃 了 麵 包 . +It is already nine o 'clock . 已经 9 点 了 . +She calmed down . 她 冷靜 下來 . +The family ate dinner together . 家裡 人 一起 吃 了 晚 飯 . +You should not have gone there . 你 不 應 該 去 那裡 的 . +He invited me to dinner . 他 邀請 我 吃 晚 飯 . +The rumor turned out to be false . 谣言 [ 最后 ] 证明 是 假 的 . +Is Tom Canadian ? Tom 是 加拿大人 嗎 ? +One after another , the animals died . 動物 一個 接 一個 的 死亡 . +Is it next Monday that Tom returns ? 汤姆 是 在 下个星期 一 回来 吗 ? +No arrests were ever made . 根本 就 没 实施 过 逮捕 行动 . +I got over the difficulty with my characteristic tenacity . 我 凭 韧性 克服 了 困难 . +Printing ink is in short supply . 油墨 快没了 . +Can I eat my lunch here ? 我 能 在 這裡 吃 午 飯 嗎 ? +I screwed up the very first note . 我 搞砸 了 第一 個 音符 . +He is a tennis player . 他 是 个 网球 球手 . +Are you the one who did that ? 你 就是 做 那事 的 人 嗎 ? +The room smelled of tobacco . 房里 有 股 烟味 . +A doctor was sent for at once . 醫生 立刻 被 請來 了 . +You have been had . 您 被 骗 了 . +She gave me a present . 她 給 了 我 一件 禮物 . +One who has everything can lose everything . 拥有 一切 的 人 可能 会 失去 一切 . +Tom complained that Mary never helped him . 汤姆 埋怨 玛丽 从来不 帮 他 . +I have a home . 我 有 一个 家 . +Take it . 拿走 吧 . +He had an accident at work . 他 在 工作 中 出 了 意外 . +Has she finished her work yet ? 她 完成 了 她 的 工作 嗎 ? +Stop whining . 别 再 埋怨 了 . +They helped one another to make the school festival a success . 他们 互帮互助 , 把 校庆 搞 得 很 成功 . +Man is the only animal that can speak . 人 是 唯一 会 说话 的 动物 . +I am leaving for Tokyo tomorrow . 我 明天 要離 開去 東京 . +He was run over by a car . 他 被 車 輾過 了 . +The universe is limitless . 宇宙 浩瀚 無邊 . +The baby is playing with some toys . 這個 小 嬰兒 正在 玩 一些 玩具 . +I have to take a test tomorrow . 明天 我 必須 參 加考 試 . +Which do you like better , rock music or classical music ? 你 比較 喜歡 哪 一個 , 搖滾樂 還 是 古典 音樂 ? +Please knock before you come in . 进来 之前 请 敲门 . +What is the exchange rate today ? 今天 的 匯率 是 多少 ? +I want to go to America some day . 有 一天 我 要 去 美國 . +A good cook does not throw out yesterday is soup . 一個 好 的 廚師 不 會 丟掉 昨天 的 湯 . +From what school did you graduate ? 您 是从 哪个 学校 毕业 的 ? +Tom seems to really enjoy being in Boston . 湯姆 看來 真喜 歡待 在 波士 頓 . +Let is take a trip to New York . 去 纽约 旅行 吧 ! +You can not say that . 你 不能 这么 说 . +I can still remember the time when we went on a picnic together . 我 还 记得 我 和 你 一起 去 野餐 的 时候 . +We can not go outside because it is raining . 因为 下雨 , 我们 不能 出去 . +I live too far away . 我 住 得 太 遠 了 . +Is there anything in the box ? 箱子 裡 有 任何 東西 嗎 ? +I like walking alone . 我 喜歡 獨 自行 走 . +I am positive that he has finished . 我 確信 他 已經 完成 了 . +We watched them play baseball . 我們 看著 他們 打 棒球 . +He entered the army . 他 加入 了 陸軍 . +Everyone knows that Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +All participants must be registered . 所有 的 參加者 都得 註 冊 . +Getting started was difficult . 开始 很 难 . +I have never seen Tom so angry . 我 从没 见 过 汤姆 那么 生气 . +I have a black and a white dog . 我 有 一只 黑狗 和 一只 白狗 . +Tom undressed and got into bed . 汤姆 脱光 睡觉 了 . +I owe my success to him . 我 把 我 的 成功 歸功 於 他 . +It is strange that he should say so . 他 这么 说 很 奇怪 . +This is not the type that I like . 这 不是 我 喜欢 的 类型 . +They say that she was born in Germany . 他们 说 她 是 在 德国 出生 的 . +I remember this map . 我 記得 這 張 地圖 . +You are a good cook . 你 是 个 好 厨师 . +How did he find us ? 他 怎麼 找到 我們 的 ? +He does not have any friends . 他 没有 朋友 . +Could you call a doctor , please ? 你 能 請 個 醫生 來 嗎 ? +Riding a horse is really thrilling . 騎馬 真的 很 令人 興奮 . +The boy grew up to be a great statesman . 这个 孩子 长大 后 成为 了 一个 伟大 的 政治家 . +Only a fool would do something like that . 傻瓜 才 会 那么 干 . +We enjoyed swimming in the lake . 我们 尽情 在 湖里 游泳 . +I can play soccer . 我 會 踢足球 . +The firm went under due to lack of capital . 公司 由于 缺乏 资本 倒闭 了 . +Do you study English ? 你 学 英语 吗 ? +I have an opinion . 我 有 一個 意見 . +I ran away in a hurry . 我 趕快 跑 走 了 . +I still have not heard from him . 我 還 沒 收到 他 的 信 . +Tom loves flowers . 湯姆 熱愛 花卉 . +He comes here twice a week . 他 一周 来 这儿 两次 . +This is not my key . 這 不是 我 的 鑰匙 . +Many moons orbit around Saturn . 許多 衛星 繞著 土星 運行 . +I have not had time to look for what you wanted . 我 没 时间 找 你 想要 的 东西 . +They love that . 他们 喜欢 那个 +The island is a paradise for children . 这个 岛 是 孩子 们 的 天堂 . +He has a large family . 他 有 一個 大家庭 . +The ice on the lake is too thin to bear your weight . 湖上 的 冰 太薄 了 , 承受 不了 你 的 重量 . +Tom seems to be a fairly successful businessman . 汤姆 看来 是 个 很 成功 的 商人 . +She gets good marks in English . 她 英语 成绩 很 好 . +If the car breaks down , we will walk . 如果 車子 壞 了 , 我們 就 走路 . +What happened to him ? 他 發生 了 什麼 事 ? +We are adults . 我们 已 是 成年人 了 . +This makes me happy . 這 讓 我 開心 . +See you tonight . 今晚 見 . +What have you done with my pen ? 你 把 我 的 筆 怎麼 了 ? +The dog was hit by a truck . 狗 被 卡車 撞 了 . +Come home before six . 六点 之前 要 回家 . +I agree with you to some extent . 我 在 一定 程度 上 同意 你 的 意見 . +I will go to the meeting . 我 将要 去 参加 会议 . +I always enjoy listening to classical music when I have some free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +I heard it on the radio . 我 從 收音 機 聽到 它 . +You 'd better start now . 你 最好 現在 就 開始 . +If you are tired , just let me know . 困 了 的话 就 说 哦 . +Let is continue the game after supper . 讓 我們 在 晚 飯 后 繼續 這個 遊戲 . +He is much younger than Tom . 他 比 Tom 年轻 得 多 . +She decorated her room with roses . 她 用 玫瑰花 装饰 了 她 的 房间 . +You should emphasize that fact . 你 應該 重視 那個 事實 . +This is the cheaper of the two . 這 是 兩件 裡 便宜 的 那個 . +I will be staying here for another three days . 我会 在 这儿 再 待 上 三天 . +There is a knife missing . 少 一把 刀 . +Tom sent me an interesting text . 汤姆 给我发 了 一条 有趣 的 短信 . +Do you have something to say ? 您 有 什么 事 要说 吗 ? +Tom worries a lot about money . 汤姆 很 担心 钱 的 问题 . +I have found a place to live . 我 找到 了 个 住处 . +Three cubed is twenty @-@ seven . 三 的 立方 是 二十七 . +I have not finished reading this book yet . 我 還 沒讀 完 這 本書 . +The young should respect the old . 年轻人 应该 尊敬 老人 . +I heard a knock at the door . 我 聽到 了 敲門聲 . +The life span of a butterfly is short . 蝴蝶 的 寿命短 . +I do not like science . 我 不 喜欢 科学 . +He did not know what to say . 他 不 知道 说 什么 好 . +I like red roses . 我 喜歡 紅色 的 玫瑰 . +They all envied my new car . 他们 都 羡慕 我 的 新车 . +Halley is Comet will come back in 2061 . 哈雷彗星 將 在 2061 回來 . +I did not mean to be selfish . 自私 不是 我 的 本意 . +I want to talk to him . 我 想 跟 他 說 話 . +I like tennis very much . 我 非常 喜歡 網球 . +This is a very beautiful flower . 這 是 一朵 非常 美麗 的 花 . +How much did you pay ? 您 付 了 多少 钱 ? +Why are you busy today ? 你 今天 为什么 忙 ? +That person does not want to do anything . 那人 甚麼 也 不想 做 . +Tom does not quite get it . Could you explain it to him again ? 汤姆 不 大 明白 . 你 能 再 跟 他 解释 一遍 吗 ? +This turkey tastes good . 这 只 火鸡 味道 很 好 . +No one else was hurt . 没有 别的 人 受伤 . +We went to the movies last night . 我們 昨晚 去 看 電影 了 . +What did Tom say ? 汤姆 说 了 什么 ? +I understand it more or less . 我 大概 懂 了 . +It seems that he knows everything . 他 似乎 什麼 都 知道 . +I listened , but I did not hear anything . 我 听 了 , 但 什么 也 没 听到 . +Did you buy juice ? 你 買 果汁 了 嗎 ? +Can you put some suntan lotion on my back ? 你 能 在 我 的 背上 涂 些 防晒霜 吗 ? +We are fighting against time . 我們 在 跟 時間 鬥爭 . +The price of rice has come down . 米价 下跌 了 . +Do not let anyone press this button . 別 讓 任何人 按 這個 按 鈕 . +What time is it ? 幾點 了 ? +The taller the tree , the more likely it is to be struck by lightning . 树 高 遭雷击 . +He is like his father . 他 像 他 父亲 . +My pulse is fast . 我 的 脉搏 很快 . +After supper , she cleared the table . 晚 飯 後 她 清理 了 桌子 . +I have nowhere to go now . 我 现在 无处可去 . +My house has a small yard . 我 的 房子 有 一個 小 院子 . +We are eating apples . 我們 正在 吃 蘋果 . +I must go now . 我 現在 必須 走 了 . +She made a mess of the work . 她 把 工作 弄 得 一團糟 . +I would like to have this meat dish with your best white wine . 我 想 在 吃 这 肉 喝 你 最好 的 白酒 . +Do you have any other questions ? 你 有 任何 其他 的 問題 嗎 ? +Give me a glass of water , please . 請 給 我 一杯 水 . +I do not for a moment think you are wrong . 我 从没 认为 你 错 了 . +You need to know . 你 有 必要 了解 . +Does anyone know Tom ? 有人 認識 湯姆 嗎 ? +He disregarded my advice . 他 不 顧 我 的 忠告 . +He gave her a piece of advice . 他 給 了 她 一個 忠告 . +Asia is roughly four times the size of Europe . 亚洲 的 大小 约 四倍 于 欧洲 . +This letter is wrongly addressed . 这 封信 寄错 地方 了 . +I do not eat chicken skin . 我 吃不下 鸡皮 . +I always kept my promises . 我 一直 遵守 我 的 諾言 . +We were kids then . 我们 那时 是 孩子 . +You do not need to speak so loud . 你 不必 這麼 大聲 說 話 . +Tom apologized for what he did . 湯姆 為 他 所 做 的 事 道歉 . +I will finish it by tomorrow afternoon . 明天 下午 之前 我会 把 它 完成 . +I need help . 我 需要 帮助 . +Tom did a good job predicting who would win the election . 汤姆 预测 胜选者 做得好 . +I have a frog in my throat . 我 的 喉嚨 裡有一 隻 青蛙 . +You are one of my best friends . 你 是 我 最好 的 朋友 之一 . +Demand for occupational therapy has surged in recent years . 这 几年 对 作业 疗法 的 需求 在 迅速 增长 . +The parking lot is free of charge . 停车场 是 免费 的 . +Tom told me he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Do not open this door , please . 請 不要 打開 此 門 . +We have not finished eating the watermelon yet . 我們 還 沒 吃 完 這個 西瓜 . +I want to eat pizza tonight . 我 今晚 想 吃 些 批 萨 . +When I entered the room , she was playing the piano . 当 我 进入 那个 房间 的 时候 , 她 正在 弹钢琴 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +My baby began crying , asking for milk . 我 的 宝宝 开始 哭 了 , 他 想要 吃奶 . +I do not think that he will come . 我 不 認為 他 會 來 . +Reading books is interesting . 看书 很 有意思 . +In theory , there is no difference between theory and practice . But , in practice , there is . 理论 上 说 , 理论 和 实践 没有 区别 . 但 实践 上 说 , 是 有 的 . +All things considered , I think you should go back home and take care of your parents . 全盤 考慮 後 , 我 覺得 你 應該 回家 , 照顧 你 的 父母 . +You can come with me . 你 可以 跟 我 來 . +Turn the flame down low . 把 火 轉小 一點 . +Tom , your life is in danger . 湯姆 , 你 的 生命 有 危險 . +I can not understand why Tom does not want to go with us . 我 不 理解 为什么 汤姆 不想 和 我们 一起 走 . +Tom is an electrical engineer . 湯姆 是 一個 電子 工程 師 . +I would like to see a doctor . 我 要 看病 . +My father will come home at seven . 我 爸爸 會 在 七點鐘 回家 . +This suit seems really expensive . 这 西装 好像 真的 很贵 . +I am not sick . 我 没 生病 . +That was Tom is choice . 那 是 汤姆 的 选择 . +She really wants to go . 她 特别 想去 . +I want you to meet my parents . 我 想 讓 你 見 見 我 的 父母 . +The only difference between a bad cook and a poisoner is the intent . 一個 差 勁 的 廚師 和 下毒 者 唯一 的 不同 在 於 他們 的 意圖 . +I was in school yesterday morning . 昨天上午 我 在 學校 . +Please find a solution to the problem . 请 找到 问题 的 解决 方法 . +Do people in your country eat rice ? 在 您 國家 的 人 是 吃 米 飯 的 嗎 ? +I do not like rock music . 我 不 喜欢 摇滚乐 . +My sister takes piano lessons twice a week . 我 妹妹 每周 上 两次 钢琴课 . +This is just what I wanted . 我 想要 的 就是 这个 . +I helped him yesterday . 昨天 我 帮 了 他 . +Please knock on the door . 请 敲门 . +If it rains tomorrow , I will just stay at home . 如果 明天 下雨 , 我 就 待 在家 . +Will six o 'clock suit you ? 六點鐘 你 方便 嗎 ? +I will be busy this afternoon . 我 今天下午 會 很忙 . +I have done my best . 我 已经 尽力 了 . +It is so early . 太 早 了 . +I will study English at home . 我 将 在家 学习 英语 . +Did you find the book interesting ? 你 覺得 這 本書 有趣 嗎 ? +You must make up for the loss . 您 必须 弥补 损失 . +We consider it a blessing . 我们 把 它 当作 恩惠 . +Where are your things ? 您 的 東西 在 哪裡 ? +I need a lawyer . 我 需要 一名 律師 . +I am thinking about you . 我 突然 想到 你 . +The conference ended at five . 會議 在 五點鐘 結束 . +She called me many a time . 她 叫 了 我 很 多次 . +You should not talk back to your parents like that . 你 不 應該 對 你 父母 那樣 頂 嘴 . +The library is in the center of the city . 图书馆 位于 城市 中心 . +All my friends will be there . 我 所有 的 朋友 都 会 到 那儿 . +Will you please hold this edge ? 能 不能 请 你 拿 着 这 端 ? +Tom is a good person . Tom 是 一個 好人 . +I am positive that he is wrong . 我 確定 他 是 錯 的 . +It is all you can really do . 这 是 你 所 能 做 的 一切 了 . +Edison invented many useful things . 愛迪生 發明 了 許多 有用 的 東西 . +A fire broke out at the inn where they were staying . 火警 發生 在 他們 住 的 旅館 . +We want to know the facts . 我们 想 知道 真相 . +Are you all listening to me ? 你们 在 听 我 说 吗 ? +They are all the same size . 他們 都 是 一樣 的 大小 . +Four hundred million people speak English as their first language . 四億 人 以 英語 作為 他們 的 第一 語言 . +He appears to be strong and healthy . 他 看起来 健康 强壮 . +Do you have any light beer ? 你 有 任何 淡 啤酒 嗎 ? +I have never felt better . 我 从来 没 感觉 那么 好 过 . +This is a dangerous mission . 這 是 個 危險 的 任務 . +I will eat it here . 我 會 在 這裡 把 它 吃 了 . +How many CDs do you have ? 你 有 多少 张 CD ? +Tom does not know whether Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +I was just talking about Tom . 我 仅仅 是 在 和 Tom 交谈 . +Would you lend me your bicycle ? 你 可以 借 我 你 的 腳踏車 嗎 ? +A plastic dish will melt on the stove . 塑料 盘子 在 烤箱 里 会化 的 . +Please have a seat and wait until your name is called . 请 在 被叫 到 名字 之前 坐在 椅子 上 等候 . +It was not a very interesting novel . 這 不是 一個 很 有趣 的 小 說 . +There was a big fire last night . 昨晚 發生 了 一場 很大 的 火災 . +I work long hours . 我 工作 數 小 時 . +Nothing is achieved without effort . 没有 什么 是 不劳而获 的 . +A swarm of hornets attacked the children . 一 窩 黃蜂 襲擊 了 孩子 們 . +I wish we had won the game . 要是 我們 贏 了 這場 比賽 就 好 了 . +Jesus loves you . 耶穌 愛 你 . +Hey , you ! What are you doing ? 嘿 , 你 ! 你 在 幹 什麼 ? +Rio de Janeiro is perfectly safe as long as you stay out of the dangerous areas . 如果 你 远离 危险 区域 , 里约热内卢 就是 完全 安全 的 . +I am sorry , I do not have change . 不好意思 , 我 没 零钱 . +Do not worry about it . It is not your problem . 不要 在意 , 不是 你 的 问题 . +News of the recent blast is all over the radio . 收音 機 廣播 充斥 著有 關 最近 爆炸 的 新聞 . +I do not have money now . 我 现在 没有 钱 . +That is not my line . 这 不是 我 拿手 的 . +All men are created equal . 人 人生 来 平等 . +I had intended to go there . 我 本來 打算 去 那裡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +We are in a hurry . 我們 很 匆忙 . +She spent a good deal of money on her vacation . 她 休假 期间 花 了 一大笔钱 . +I do not expect that they will support my view . 我 不 期望 , 他们 能够 支持 我 的 观点 . +I do not know anybody here . 我 不 認識 這裡 的 任何人 . +He has spent ten years in jail for murder . 他 因為 謀殺 案 在 牢 裡 待 了 十年 . +Where are those posters now ? 那些 海报 现在 都 到 哪里 去 了 ? +It is a secret . 它 是 個 秘密 . +You are not even paying attention . 你 根本 沒有 注意 . +Please pick up my dry cleaning . 請 取回 我 乾 洗 的 衣服 . +It is our pleasure . 这 是 我们 的 荣幸 . +I understand how to solve the problem . 我 知道 怎么 解决 这个 问题 . +You 'd better have your hair cut at once . 你 最好 立刻 剪 頭 髮 . +Are you available tonight ? 今晚 有空 嗎 ? +Please shuffle the cards carefully . 请 仔细 洗牌 . +I received a letter from her . 我 收到 了 她 的 來信 . +In a sense , she is right , too . 从 某种意义 上 来说 , 她 也 是 对 的 . +Do you want to get married first or have a child first ? 你 想 我们 先 结婚 还是 先生 孩子 ? +The policeman grabbed the robber is arm . 警察 抓著 小偷 的 胳膊 . +We plan to climb that mountain . 我們 計劃 去 爬 那 座 山 . +These three pretty girls are all nieces of mine . 这 三个 漂亮 的 女孩 都 是 我 的 侄女 . +Wash your feet . 洗 你 的 脚 . +Say it in English . 用 英语 说 . +Can you walk ? 你 能 走 嗎 ? +We have been here before . 这里 我们 以前 来 过 . +I like this color , too . 我 也 喜歡 這個 顏色 . +I do not want to talk about myself . 我 不想 談 我 自己 . +I am doing my homework . 我 正在 做 我 的 作业 . +He has recovered from his bad cold . 他 从 重感冒 中 恢复 了 过来 . +I suspect that they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +It is about time to go to school . 差不多 该 去 学校 了 . +When did you begin studying English ? 你 什么 时候 开始 学 英语 的 ? +We got there at the same time . 我們 在 同一 時間 到 了 那裡 . +He was too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +You 'd better go to bed at once . 你 最好 马上 去 睡觉 . +He earned his living as a teacher . 他 以 當 老師 為 生 . +I will never leave you . 我 永远 不会 离开 您 的 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +Do you have enough food ? 你 有 足够 的 食物 吗 ? +He is very brave . 他 很 勇敢 . +Tom knows that I do not like him . 汤姆 知道 我 不 喜欢 他 . +He was snoring loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +You are so beautiful ! 你 太漂亮 了 ! +I can not help admiring his talent . 我 不禁 欣賞 他 的 才華 . +He took a picture of the koala . 他 為 無 尾 熊 拍照 . +Tom is speaking French . 汤姆 在 说 法语 . +I have no idea what to wear . 我 不 知道 要 穿 什麼 . +I want to go with you . 我 想 和 你 一起 走 . +The capital of Brazil is Brasilia . 巴西 的 首都 是 巴西利亚 . +He does not altogether trust me . 他 並 不 完全 信任 我 . +That book is a new book . 那 本書 是 一本 新書 . +We had a short vacation in February . 2 月 我们 有个 短期 休假 . +I do not want to cause any more trouble . 我 不想 再 惹事 了 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +Ask her when she comes back . 等 她 回来 的 时候 问问 她 . +I am very busy these days . 我 最近 很忙 . +Would you like anything else ? 还有 什么 想要 的 吗 ? +How do you say " I love you " in French ? “ 我爱你 ” 用 法语 怎么 讲 ? +What have you done with my pen ? It was here a minute ago . 你 把 我 的 鋼筆 怎麼 了 ? 一分 鐘 前 它 還 在 這裡 . +You are very brave . 你 非常 勇敢 . +She has a bit of a bad temper . 她 脾气 有点 坏 . +You owe me an apology for that . 关于 那件事 你 欠 我 一个 道歉 . +Please wish me luck . 請祝 我 好 運 . +Yesterday I spent the whole day working . 昨天 我 一整天 都 在 工作 . +He thought that he was a genius . 他 認為 他 是 個 天才 . +According to the newspaper , there was a big fire last night . 根據 報導 , 昨晚 有 一場 很大 的 火災 . +These fireworks are spectacular ! 这些 焰火 真 壮观 ! +Why do not you grow up ? 你 为什么 长不大 呢 ? +AI stands for artificial intelligence . AI 代表 人工智能 . +I passed the city hall on my way to the station . 我 去 車站 的 路上 路 過 了 市政 廳 . +He bought her a sweater . 他 買 了 一件 毛衣 給 她 . +Would you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +Are you coming tomorrow ? 你 明天 要 來 嗎 ? +He froze with fear when he saw the snake . 他 看 見 蛇 就 嚇 得 不動 了 . +Now let is get down to work . 現在 讓 我們 開始 工作 . +See you . 再见 ! +He is always been living in Tokyo . 他 一直 住 在 東京 . +A boat suddenly appeared out of the mist . 一艘船 突然 从 雾 中 出现 . +Do you have a soup bowl ? 你 有 湯 碗 嗎 ? +I want you to go . 我 要 你 去 . +I do not know if that is what Tom wants or not . 我 不 知道 那 是不是 汤姆 想要 的 . +You can park here . 这里 可以 停车 . +He does not have any friends to play with . 他 没有 任何 朋友 玩 . +The other day I discovered a book written by my father . 前 几天 我 发现 了 一本 我 父亲 写 的 书 . +Help yourself to anything you like . 喜歡 什麼 就 隨便 吃 吧 . +I am sorry , I did not hear you . 对不起 , 我 没有 听见 你 说话 . +We saw monkeys at the zoo . 我們 在 動物 園裡 看到 了 猴子 . +I did not want to mislead anyone . 我 不想 誤導 任何人 . +He is popular with the students . 他 受到 學生 的 歡迎 . +You can not count on their help . 你 不能 指望 他们 的 帮助 . +I am lost . 我 迷失 了 . +I do not know what I should be doing right now . 我 不 知道 , 我 现在 应该 做 什么 . +There is no salt . 没有 盐 . +Because his salary is low , he can not buy that house . 因為 他 的 薪水 太 低 , 他 買 不起 那棟 房子 . +Who is the man playing the violin ? 那個 正在 拉 小提琴 的 男人 是 誰 ? +Tom could have called the police . 汤姆 本 可以 叫 警察 的 . +Will you lend me your CD player for an hour ? 你 能 借 我 你 的 CD 播放 機 一小 時 嗎 ? +Come and see me at eleven o 'clock . 十一 點 鐘 來看 我 . +I rode my bicycle to the store . 我 騎 了 我 的 自行 車 去 商店 . +Nobody understood why the elephant suddenly turned on its owner . 没有 人 明白 为什么 大象 突然 攻击 了 它 的 主人 . +They had a rest for a while . 他們 休息 了 一會兒 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +Are you listening to English ? 你 在 聽 英語 嗎 ? +Your book is on the desk . 你 的 書 在 書 桌上 . +There were so many things I wanted to ask Tom . 我 有 很多 事想问 汤姆 . +The x @-@ ray showed two broken fingers . X光 片 显示 两根 手指 断 了 . +I have a lot of cats . 我 有 很多 狗 . +Is there any coffee in the kitchen ? 廚房 裡 有 咖啡 嗎 ? +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +She was accepted to Harvard . 她 被 哈佛 大學 錄取 了 . +He is one of my neighbors . 他 是 我 的 一個 鄰居 . +I wish you had come with us . 要是 你 和 我們 一起 來 就 好 了 . +I am feeling much better today . 我 今天 感觉 好多 了 . +This train leaves at nine o 'clock . 這 班 火車 九點鐘 發車 . +They are required to work eight hours every day . 他们 每天 必须 工作 8 小时 . +Their plan sounds interesting to me . 他们 的 计划 对 我 来说 很 有意思 . +I can not do any better . 我 做得好 到 不能 再 好 了 . +Do we have enough chairs ? 我們 的 椅子 夠 嗎 ? +He was absent from school yesterday . 他 昨天 没 来 上学 . +What is this smell ? 这 是 什么 气味 ? +I got a letter from her . 我 收到 她 的 來信 . +We are not short of oil in this country . 我们 国家 不 缺 石油 . +Publication of the article was timed to coincide with the professor is birthday . 文章 的 发表 被 预定 在 教授 生日 那天 . +He is a doctor . 他 是 医生 来 的 . +Why was not Tom arrested ? 為 甚麼 湯姆 沒 被捕 ? +Please turn off the television . 請 把 電視 關掉 . +That was the first time that I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I am sick . 我 生病 了 . +This piano has probably not been tuned for years . 这 台 琴 应该 好多年 没调 过音 了 . +I will call you every night . 我 每晚 都 給 你 打 電話 . +They are fake . 它们 是 假 的 . +We will deal with it tomorrow . 我们 明天 解决 它 . +Do you mind if I open the door ? 你 介意 我 開門 嗎 ? +I always dreamed of being a billionaire . 我 總 是 梦想 著成 為 億萬 富翁 . +They make good use of their rooms . 他們 好好 地 利用 他們 的 房間 . +You are mine . 你 是 我 的 . +I suggest that we go out on Friday . 我 建议 我们 星期五 出去玩 . +I am a bit drunk . 我 有 點 醉 了 . +The news of his death spread around . 他 去世 的 消息 傳遍 各地 . +The kettle is boiling . 茶 壺 沸 了 . +He raised his hands . 他 舉起 了 他 的 手 . +Who is the woman dressed in pink ? 那個 穿 粉 紅色 衣服 的 女人 是 誰 ? +The ship made slow progress against the strong wind . 這 艘 船 逆風而行 緩慢 前進 . +I would like to know the exact time . 我 想 知道 確切 的 時間 . +You remember it better than I do . 你 比 我 记得 好 . +The enemy launched an attack on us . 敌人 对 我们 发起 了 攻击 . +Can I borrow your pencil for a bit ? 我 能 用 一下 你 的 铅笔 吗 ? +I was able to succeed because of your advice . 我 因為 有 你 的 建 議 纔 能 成功 . +We are on strike because the company has not improved our wages . 我們 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +How much does this pen cost ? 这 支 钢笔 要 多少 钱 ? +This factory manufactures CD players . 这家 工厂 生产 CD机 . +The situation is getting worse by the day . 情况 一天 比 一天 差 . +You must stop smoking . 你 必须 停止 吸烟 . +It is very simple . 这 很 简单 . +Pick up the phone . 接 一下 电话 . +I swim once a week . 我 每周 游 一次 泳 . +He was held in captivity . 他 被 囚禁 了 . +Here is how we do it . 以下 是 我们 怎么 做 的 . +We met in front of the school . 我們 在 學校 前面 見面 了 . +I found the field trip very educational . 我 發現 實地 考察 很 有 教育 意義 . +There is always something happening here . 這裡 總 有 一些 事情 在 發生 . +My uncle made a will last year . 我 叔叔 去年 立下 了 遺囑 . +Actinium was discovered by André @-@ Louis Debierne in 1899 . 锕 在 1899 年 被 他 发现 . +English is spoken by more people than any other language . 說 英語 的 人比 說 任何 其他 語言 的 人 多 . +Have you ever seen Mt . Fuji ? It is beautiful beyond description . 你 看 過 富士山 嗎 ? 它 美 得 無法 形容 . +Islam first reached China about the middle of the 7th century . 伊斯 蘭教 大約 在 七 世纪 中 傳到 中國 . +You are an optimist . 你 是 个 乐观主义 者 . +Your memory is good . 你 的 記憶力 很 好 . +The cancer has spread to her stomach . 癌細胞 已經 擴散 到 她 的 胃 . +I was feeling blue all day . 我 一整天 都 觉得 很 消沉 . +She is not yet heard the news . 她 还 没 听到 这个 消息 . +He tried to sleep on the floor . 他 試著 在 地板 上 睡覺 . +I despise you . 我 鄙视 你 . +Tom is a grumpy old man . 汤姆 是 个 脾气 暴躁 的 老人 . +I know that she has been busy . 我 知道 她 一直 很忙 . +He is a bit energetic . 他 有点 活泼 . +Do we know you ? 我们 认识 你么 ? +I will drive you home . 我 開車 送 你 回家 . +You are stepping into dangerous territory . 你 進入 了 危險 區 . +I took an art class last year . 我 去年 上 了 一堂 藝術 課 . +The Mona Lisa has an enigmatic smile . 蒙娜丽莎 有着 神秘 的 微笑 . +Tom was hiding under the table . Tom 躲 在 桌子 底下 . +Hurry up . 趕快 ! +Kyoto is famous for its old temples . 京都 以 古廟 有名 . +This airplane is capable of carrying 40 passengers at a time . 这 架飞机 一次 可以 携带 40 名 乘客 . +The negotiation is off . 谈判 中止 了 . +I think it will not rain tomorrow . 我 認為 明天 不 會 下雨 . +He reads a good deal . 他 读 很多 书 . +Tom does not drive as carefully as I do . 汤姆 不 像 我 这样 开车 小心 . +Is it poisonous ? 它 有毒 嗎 ? +Can you drive a car ? 您 会 开车 吗 ? +My hobby is collecting old bottles . 我 的 嗜好 是 收集 舊 瓶子 . +We postponed our departure because of the storm . 我們 因為 風暴 推遲 了 起程 . +Were your mother and father home ? 你 父母 親 在家 嗎 ? +Please come in . 請 進來 . +We like you . 我们 喜欢 你们 . +My sister usually walks to school . 我 妹妹 通常 走路 去 學校 . +Does this book belong to you ? 這 是 你 的 書 嗎 ? +I am not a university student , but I am brighter than them . 我 不是 一個 大學 生 , 但 我 比 他們 更 聰明 . +God knows we did everything we could . 上帝 知道 我们 做 了 我们 所能 做 的 事 . +It is almost three o 'clock . 將近 三點 了 . +The thief got in without being noticed . 小偷 在 沒有 被 發現 的 情況 下 進去 了 . +The Rhine flows between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +We gave him up for dead . 我們 為 死者 放棄 了 他 . +What is the problem with your computer ? 你 的 电脑 有 什么 问题 ? +I will be leaving for Australia next month . 我 下個月 將 去 澳洲 . +They granted his request . 他們 批准 了 他 的 請求 . +This is the most massive structure I have ever seen . 这 是 我 所 见 过 的 最 大型 的 构造 了 . +Tom does not have the time . 汤姆 没有 时间 . +Tom never turned up again . 湯姆 沒有 再 出現 . +I do not want to drink anything . 我 什么 都 不想 喝 . +Do you not understand basic logic ? 你 不 懂 基本 逻辑 吗 ? +I study Chinese every day . 我 每天 讀 中文 . +Do not throw rocks into the river . 不要 往 河裡 扔 石頭 . +Is Tom home ? 汤姆 在 家里 吗 ? +I am really sorry about what happened last night . 我 对 昨天晚上 发生 的 事情 感到 非常 的 抱歉 . +He set a precedent . 他 開 了 先河 . +Most boys like computer games . 大多数 男生 喜欢 电脑游戏 . +Germany adopted a social security system in the 1880 is . 德国 在 1880 年代 采取 了 一种 社会保障 制度 . +I can eat anything but onions . 除了 洋葱 我 什么 都 可以 吃 . +Tom is coughing again . 汤姆 又 在 咳嗽 了 . +Do you still buy lottery tickets ? 你 還 買 彩票 嗎 ? +You are a friend of Tom is , are not you ? 你 是 湯姆 的 一個 朋友 , 不是 嗎 ? +We are going to paint the wall . 我们 准备 刷墙 . +Never say never . 永远 不要 说 永远 . +He often goes with her to watch movies . 他 常 和 她 一起 去 看 电影 . +You can do it , can not you ? 你 可以 做到 , 不是 嗎 ? +There are some boys under the tree . 樹下 有 一些 男孩 . +Tom is not smiling . 汤姆 没在 笑 . +He should have the right to decide for himself . 他 应该 有 权利 去 自己 做 决定 . +I lost my umbrella . 我 丢 了 我 的 伞 . +I see a woman wearing black . 我 看见 一个 穿 黑衣服 的 女人 . +I have nothing better to do . 我 没有 其他 更好 的 事情 去 做 . +Do as I say . 按 我 說 的 做 . +I used to eat like a pig . 我 曾经 像 猪 一样 吃 . +We suggest raising the fees . 我們 建議 提高 收費 . +Are you studying English ? 你 在 研讀 英語 嗎 ? +Lift your right arm . 舉起 你 的 右臂 . +I have no objection to your plan . 我 不 反 對 你 的 計劃 . +How far away is your school ? 你 的 学校 有 多 远 ? +I had no idea it would put you to so much trouble . 我 一点 都 不 知道 这 会 给 你 带来 那么 多 问题 . +I will be back at ten . 我 十点 回来 . +You can buy it for a thousand yen or so . 你 能 以 大约 1000 日元 买下 它 . +Do we have enough food ? 我们 有 足够 的 食物 吗 ? +It says in the Bible , " Man shall not live on bread alone . " 圣经 里 有 一句 话 , 叫做 “ 人 不能 只 靠 面包 生活 ” . +You are not invited . 你 没 受到 邀请 . +Do not beat around the bush . 不要 拐彎抹角 . +I went to the park last Sunday . 上個 星期天 我 去 了 公園 . +This system has obvious defects . 這個 系統 有些 明顯 的 缺陷 . +One of the children left the door open . 其中 一個 孩子 讓 門 開著 . +Tom took the clock apart . 汤姆 把 钟 拆开 了 . +She liked him right off . 她 立刻 喜歡 上 他 了 . +I can not believe you love me . 我 不能 相信 你 愛 我 . +Did your uncle let you drive his car ? 你 叔叔 让 你 开 他 的 车 了 吗 ? +Jupiter is the largest planet in the Solar System . 木星 是 太陽系 中 最大 的 行星 . +Not every child likes apples . 不是 每 一个 孩子 喜欢 吃 苹果 . +I would like to go to London . 我 想要 去 伦敦 . +We are having fun . 我们 在 高兴 地玩 . +Einstein loved playing the violin . 愛 因斯 坦 喜歡 拉 小提琴 . +Our baby cannot talk yet . 我家 宝宝 还 不会 说话 . +Read as much as possible . 盡 可能 地 多 閱讀 書籍 . +Let is play baseball ! 我們 去 打 棒球 吧 . +How far away is the airport ? 到 机场 有 多 远 ? +The pirates boarded the ship . 海盜 們 上 了 船 . +If we were supposed to talk more than listen , we would have been given two mouths and one ear . 如果 我們 應 該少 聽 多 說 話 , 那麼 我們 應該 得到 兩個 嘴巴 一 隻 耳朵 才 是 . +If he had taken his doctor is advice , he might still be alive . 如果 他 听 了 他 医生 的 建议 , 他 可能 还 活着 . +I do not have any experience . 我 什么 经验 都 没有 . +I like dogs , but my sister likes cats . 我 喜歡 狗 , 但 我 姊 喜歡 貓 . +It can not be true . 那 不 可能 是 真的 . +When did you learn to swim ? 你 什么 时候 学会 游泳 的 ? +He seems to be ill . 他 好像 病 了 . +We have to look into the disappearance of the doctor . 我们 必须 调查 医生 的 失踪案 . +I can read Spanish easily . 我 能 很 輕 鬆 地 讀 西班牙文 . +Tom remained standing as the others sat down . 别人 都 坐下 了 , 汤姆 还 站 着 . +He is the man you met the other day . 他 是 前 几天 和 你 见过面 的 那个 人 . +I would like to go to the mall . 我 想 去 商场 . +I am reading . 我 在 读书 . +I took it for granted that he would pass the exam . 我 理所当然 地 觉得 , 他 会 通过 考试 . +I do not think I will ever meet him . 我 不 認為 我 會 再 跟 他 見 面 . +You do not have to help me . 你 不用 帮 我 . +The space race was an exciting time in history . 太空 跑步 是 历史 上 激动人心 的 时刻 . +Few people think so . 很少 人 这么 认为 . +I can not look at this painting without thinking of my mom . 我 無法 看著 這 幅畫 而 不 想起 我 母親 . +Why do you think I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +He got accustomed to the new way of living . 他 适应 了 新 的 生活 方式 . +I agree with you on this issue . 我 同意 你 對 這 問題 的 看法 . +My boss made me work overtime . 我 的 老 闆 要 我 加班 . +What do you think of it ? 你 認為 如何 ? +It is freezing . 天氣 好 冷 . +Tom sat at his desk , pretending to study . 湯姆 坐在 桌前 , 装作 在 學習 . +She gave birth to a baby boy . 她 生下 了 一個 男 嬰 . +It may be that he likes his job . 他 可能 喜欢 他 的 工作 . +Tom has not talked to Mary in years . 汤姆 多年 没有 和玛丽 说话 了 . +I do not like early morning meetings . 我 不 喜歡 在 清晨 開 的 會議 . +My house is old and ugly . 我 的 房子 又 舊 又 難 看 . +Do you believe in fairies ? 你 相信 神話傳說 嗎 ? +I would like to send this package to Japan . 我 想 把 這個 包裹 寄 到 日本 . +Are you mad ? 您 生气 了 吗 ? +Can you help me ? 您 能 帮 我 吗 ? +I feel comfortable in his company . 我 在 他 的 公司 裡 覺得 很 舒服 . +I want that bag . 我 想要 那個 袋子 . +Tom does not know how to have fun . 汤姆 不 知道 怎样 玩 得 开心 . +Would you carry my luggage upstairs ? 你 可以 把 我 的 行李 拿到 樓上 嗎 ? +You gave me only fifty cents . 你 只 給 了 我 五十 美分 . +Do you think Tom will let us do that ? 你 認為 湯姆會 讓 我們 做 嗎 ? +That is an imitation . 那 是 一個 仿造品 . +Do you deliver on Sundays ? 你们 周日 送货 吗 ? +I can not work for this company anymore . 我 没法 再 在 这家 公司 里面 工作 了 . +I just had dinner with some of Tom is friends . 我 刚 跟 汤姆 的 一些 朋友 吃 了 晚饭 . +Could you show me that necktie ? 你 能 給 我 看看 這條 領帶 嗎 ? +You have many books . 你 有 许多 书 . +Will you please turn down the radio ? 請 你 把 收音 機關 小聲 一點 好 嗎 ? +He is my youngest brother . 他 是 我 最 年轻 的 兄弟 . +I hope that you are very well . 我 希望 你 很 健康 . +It is food . 它 是 食物 . +I am not the boss . 我 不是 老 闆 . +I worked a lot this week . 我 这周 干 了 很多 活 . +Tom blew out all the candles on the cake . 汤姆 吹灭 了 蛋糕 上 的 所有 蜡烛 . +They will not pass ! 他們 不 會 通過 的 ! +The dictionary comes in two volumes . 那 本词典 分为 两卷 . +One good friend is better than ten relatives . 一个 好友 胜过 十个 亲戚 . +This matter is very urgent . 這件 事 非常 緊急 . +Are those new shoes ? 那 是 新 买 的 鞋子 吗 ? +I am not particularly thirsty right now . 我 现在 不 特别 渴 . +He showed interest in the plan . 他 對 這個 計劃 表示 了 興趣 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +You 'd better not go today . 你 今天 最好 不要 去 . +Tom and Mary own a small organic farm . 汤姆 和玛丽 拥有 一个 小型 的 有机 农场 . +My phone was out of order . 我 的 電話 壞 了 . +I did not pass . 我 没 通过 . +Several dozen young people participated in the demonstration . 几十个 年轻人 参加 了 示威游行 . +I cannot afford to buy a car . 我 買 不 起 一輛 車 . +He runs in the park every day . 他 每天 都 在 公园 中 跑步 . +The baby fell asleep in the cradle . 宝宝 在 摇篮 里 入睡 了 . +I would like to retract my previous statement . 我 想 撤回 我 之前 的 陈述 . +I do not feel much like talking . 我 不太想 說 話 . +Tom wrote postcards to us . Tom 寫 明信片 給 我們 . +When would you like to see him ? 你 想要 什麼 時候 見 他 ? +I do not remember where I bought it . 我 记不起来 我 在 哪里 买 的 了 . +He flatly refused to let me in . 他 斷然 地 拒絕 讓 我 進去 . +Tom helped me fix my watch . 汤姆 帮 我 修好 了 我 的 手表 . +He is very smart , and he is handsome too . 他 很 聪明 , 而且 他 很 帅 . +I am on the roof now . 我 现在 在 屋顶 上 . +Graham Greene is my favorite author . 格雷厄姆 格林 是 我 最 喜歡 的 作家 . +I found it best to say nothing about the matter . 我 觉得 什么 都 不 说 是 最好 的 . +He swam until he could swim no more . 他 游到 不能 游 为止 . +He must love you . 他 一定 很 愛 你 . +Clean the room . 打掃 房間 . +She wrote 5 novels in 5 years . 她 在 5 年 里 写 了 5 本 小说 . +Mary asked her son to behave himself . 瑪麗 要求 她 的 兒子 守 規矩 . +I went there yesterday . 我 昨天 去 那儿 了 . +I have to get my computer repaired . 我 必須 把 我 的 電腦 拿去 給 人家 修理 . +Tom does not like this color . 汤姆 不 喜欢 这种 颜色 . +I do not want either of them . 它们 中 没有 我 要 的 . +I have just finished eating . 我 刚刚 吃 完 . +My uncle made me serve as interpreter . 我 舅舅 讓 我 擔任 翻譯 . +I did not go to school last month . 我 上 個 月 沒上 學 . +Open fire ! 开火 ! +The roof was damaged by the storm . 屋頂 被 暴風雨 損壞 了 . +A foreign language can not be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +Do not move , or I will shoot you . 別動 , 不然 我 就 開 槍 射 你 . +You should take up golf . 你 应该 开始 从事 高尔夫 . +You owe me money . 你 欠 我 钱 . +I know New York like the back of my hand . 我 对 纽约 了如指掌 . +This is a miracle . 这 是 一个 奇迹 . +You should keep your promise . 你 應該 信守 諾 言 . +What is Tom doing ? 汤姆 在 做 什么 ? +Kill them . 殺 了 他們 +The company invested a lot of money in this project . 該 公司 在 這個 企劃 中 投入 了 很多 錢 . +The medicine worked marvels . 这 药 创造 了 奇迹 . +April showers bring May flowers . 四月 春雨 , 五月花 . +I am always here . 我 一直 在 這裡 . +She had her handbag stolen . 她 的 手提包 被 偷 了 . +She gave me a shy smile . 她 給 了 我 一個 靦腆 的 笑容 . +I advertised my car for sale . 我 登廣 告賣 我 的 車 . +There is a big supermarket in my neighborhood . 在 我 的 邻近 区域 有 一个 大 超市 . +He is a good person . 他 是 个 好人 . +Refugees poured in from all over the country . 难民 从 整个 国家 涌来 . +What do you think about this plan ? 你 覺得 這個 計劃 怎麼樣 ? +How much is the rent per month ? 一個 月 的 租金 多少 ? +I will not talk to him anymore . 我 不 會 再 跟 他 說話 了 . +No comment . 无可奉告 . +Did you bring an umbrella with you ? 你 有 帶 雨 傘 嗎 ? +Thousands of candles illuminated the church during the ceremony . 数以千计 的 蜡烛 点亮 了 仪式 中 的 教堂 . +I will have to think about it . 我 将 考虑 考虑 . +Tom still drinks , but not as much as he used to . 汤姆 还是 喝 , 但 不 像 以前 那么 多 了 . +Tom can swim almost as fast as I can . 汤姆 几乎 能 游 得 跟 我 一样 快 . +Yes , it is such a nice evening . 是 的 , 今天 晚上 很 愉快 . +The doctor told her that she should take a rest . 医生 告诉 她 要 静养 . +Do you know how to ride a horse ? 你 会 骑马 吗 ? +My job is to wash dishes . 我 的 工作 是 洗盤子 . +In the summer I wear short @-@ sleeved shirts . 夏天 我 穿 短袖 衬衫 . +Tom did not have any family . 过去 汤姆 没有 家 . +I 'd wear a helmet . 我 要 戴 頭盔 . +Tom speaks French fluently . 湯姆 的 法語 說 的 很 流暢 . +I am interested in English . 我 对 英语 感兴趣 . +It is just what I expected . 它 正是 我 所 期待 的 . +I went on reading . 我 继续 阅读 . +I played tennis after school . 放学 后 我 打 了 网球 . +You are barking up the wrong tree . 你 白費力 氣 了 . +She is Tom is sister . 她 是 Tom 的 姐妹 . +Tom is a good golfer . 汤姆 是 个 不错 的 高尔夫球 手 . +Mary is the prettiest girl in her class . 玛丽 是 班 里面 长 得 最 漂亮 的 女孩 . +Things are totally different now . 現在 全都 不 一樣 了 . +All good things must come to an end . 天下 无不 散 之 筵席 . +I think I have found something of yours . 我 認為 我 找到 一些 你 的 東西 了 . +I am going to the store now . 我 現在 要 去 這家 商店 . +We watched a baseball game on television . 我們 看 了 電視 上 的 棒球 比賽 . +This is the only camera I have got . 這 是 我 唯一 的 相機 . +She assigned the work to him . 她 把 這個 工作 派 給 他 做 . +I will finish it as quickly as I can . 我会 尽快 完成 的 . +Tom looked around , but saw no one . Tom 看 了 看 周圍 , 但 沒 看到 任何人 . +I felt lonely . 我 觉得 很 孤独 . +The large crowd roared in approval as Mark Knopfler played the first few bars of " Money for Nothing " . 就 像 马克 · 诺弗勒 早期 演唱 的 歌曲 《 金钱 无用 》 一样 , 绝大多数 的 人 依然 高呼 赞成 “ 金钱 无用论 ” . +I told Tom that I thought his house needed to be painted . 我 告诉 汤姆 我 认为 他 的 房子 要 刷漆 . +He is very handsome . 他 很 英俊 . +I do not have a lot of work , but it is enough to keep me in the office this week . 其实 我 工作 并不多 , 但 足以 让 我 这周 在 办公室 里 忙 着 了 . +I am not finding anything . 我 甚麼 也 沒 找到 . +Please turn off the light . 請 關燈 . +I can not imagine life without you . 我 無法 想像 沒有 你 的 生活 . +Are you carrying a lot of money ? 你 身上 有 很多 钱 吗 ? +Do not play baseball here . 不要 在 這裡 打 棒球 . +Pay the cashier on the way out . 在 出口 處 的 收银台 付款 . +The poor man has no relatives . 窮 人 無 親戚 . +Your question has no answer . 你 的 问题 没有 答案 . +You were at my wedding . 你 出席 了 我 的 婚礼 . +Playing cards is very interesting . 打牌 很 有意思 . +I expect that he will help us . 我 期望 他 會 幫助 我們 . +Tom started the engine . 湯姆 發動 了 引擎 . +That hat cost around fifty dollars . 那 頂 帽子 花費 了 大約 五十 美元 . +They came all the way from Brazil . 他们 从 巴西 远道而来 . +Tom is studying to become a marine biologist . 汤姆 正在 学习 以 成为 海洋 生物学家 . +We must reduce energy demand . 我们 必须 降低 能源需求 . +Thank you for your translation . 謝謝 你 的 翻譯 . +Which one do you think is correct ? 你 認為 哪 一個 是 正確 的 ? +It happened at a quarter past eleven . 它 發生 在 十一 點 一刻 . +Tom was completely exhausted . 湯姆 完全 筋疲力盡 了 . +There are a lot of people in the park . 公园 里 有 很多 人 . +There is narrow road to the village . 到 村 莊 有 條 窄路 . +The teacher pointed her finger at me and asked me to come with her . 教师 用 手指 指着 我 , 要 我 跟 她 走 . +I finished the work in less than an hour . 我 用 不到 一 小时 就 完成 了 这个 工作 . +The only thing I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +I will take you for a swim . 我 會 帶 你 去 游泳 . +I met Mary yesterday . 昨天 我 遇見 了 瑪麗 . +Come with me now . 现在 就 跟我来 . +Let is not fool ourselves . 我们 别自 骗自 了 . +His office is on the eighth floor . 他 的 辦 公室 在 八樓 . +We are against working on Sundays . 我们 反对 星期日 工作 . +Even if I knew the answer , I would not tell you . 即使 我 知道 答案 , 我 也 不会 告诉 你 . +It is very important to get enough rest . 充足 的 休息 十分 重要 . +I have wine . 我 有 酒 . +What are you laughing at ? 你 笑 什么 呢 ? +It is close to eleven . It is about time we went to bed . 快 11 点 了 . 我们 该 上床睡觉 了 . +Tom was crying . 汤姆 当时 在 哭 . +Tom needed treatment . 汤姆 需要 接受 治疗 . +Tom was fired in October . 湯姆 在 十月 被 解雇 了 . +Who were you speaking with ? 你 和 谁 说话 呢 ? +I could not have done it without you . Thank you . 没有 你 我 无法 做到 , 谢谢 . +This dictionary is not the most recent version . 這 本 字典 不是 最新版 的 . +Where is your dog ? 你 的 狗 在 哪儿 ? +The dress that Mary is wearing looks expensive . 玛丽 穿 的 衣服 看起来 价格不菲 . +He glanced at his watch . 他 看 了 一眼 他 的 表 . +Where am I ? 這 是 什麼 地方 ? +That is the point . 这 正是 问题 的 关键 . +Well done ! 做得好 ! +That is very rare . 那 太 稀少 了 . +They got thoroughly wet in the rain . 他們 在 雨 中 被 淋得 全身 都 濕 了 . +Her hair is streaked with gray . 她 的 頭 髮 中 夾 有 白 髮 . +We took turns driving the car . 我們 輪流 開車 . +Do you have school on Saturdays ? 你 星期六 要 上 學 嗎 ? +My parents live in the country . 我 父母 住 在 鄉下 . +He jumped onto the table . 他 跳 上 了 桌子 . +If it is fine tomorrow , we will go on a picnic . 如果 明天 天气 好 , 我们 就 去 野餐 . +Tom is a Vietnam veteran . 汤姆 是 一个 越军 退役军人 . +Come inside . 进来 . +There is something I have to say . 有些 事 我 必須 說 . +Tom is indispensable . 汤姆 是 必不可少 的 . +We receive many telephone calls from abroad . 我們 接到 許多 來 自 國外 的 電話 . +I will swim . 我 要 游泳 . +She looks unhappy . 她 看 起來 不快 樂 . +He is sure to succeed . 他 一定 会 成功 . +She is good at handling children . 她 對 孩子 很 有 一套 . +What do you think about it ? 关于 那个 你 有 什么 看法 ? +She gave birth to twin girls . 她 生 了 雙 胞胎 女兒 . +I would like to purchase some boots . 我 想 买 些 靴子 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +I have been in prison . 我 進過 監獄 . +He went to London , where he stayed for a week . 他 去 了 伦敦 , 并 在 那儿 待 了 一周 . +She was busy doing her homework . 她 忙 著 做 她 的 功課 . +I am the tallest one in the class . 我 在 班里 是 最高 的 . +Another Scotch and water , please . 麻煩 再來 一杯 威士忌 和 加水 . +I prefer to travel by air . 我 寧願 搭 飛機 旅行 . +He seldom , if ever , goes to church . 他 很少 , 如果 有 的 話 , 去 教堂 . +I have already done my homework . 我 已經 做 了 我 的 家庭 作業 . +The boys kept quiet . 男孩子 們 保持 安靜 . +Stop reading . 别 再 念 了 . +You need to shed some pounds . 你 需要 甩掉 几磅 . +He walks his dog every morning . 他 每天 早晨 溜 狗 . +I am a student , but he is not . 我 是 個 學生 , 但 他 不是 . +Have you turned in your report ? 你 交報 告 了 嗎 ? +Have not I met you before ? 我 以前 沒見 過 你 嗎 ? +Why did you cry so much ? 你 為 甚麼 哭 得 這麼 厲害 ? +We made pancakes for breakfast . 我们 早餐 做 了 煎饼 . +The weather was not only cold , it was also damp . 天气 又 冷 又 湿 . +I think Tom probably likes you a lot . 我 認為 湯姆 可能 很 喜歡 你 . +You will soon get accustomed to this cold weather . 你 很快 就 會 習慣 這種 冷天 氣 . +There is still no end in sight . 還是 看 不見盡頭 . +We need to find Tom as quickly as we can . 我們 要 盡快 找到 湯姆 . +Thank you for your cooperation . 謝謝 您 的 合作 . +She believes whatever he says . 她 相信 他 說 的 任何 事 . +His mother was a school teacher . 他 的 母親 是 一名 學校 老師 . +What time is it in Boston now ? 波士顿 现在 几点 ? +Not being tall is not a disadvantage . 长 不 高 不是 坏事 . +Are you certain this is what you want ? 你 确定 这 就是 你 想要 的 吗 ? +What will you have for lunch today ? 你 今天 午餐 吃 什么 ? +He is not a hero . 他 不是 英雄 . +This is difficult . 这 很 难 . +An unforgettable event occurred . 一场 令人难忘 的 事件 发生 了 . +Our fridge is broken . 我們 的 冰箱 壞 了 . +You 'd better hurry . 你 最好 快点 . +I am incredibly tired . 我 累死 了 . +They left . 他们 离开 了 . +I am not busy now . 我 現在 不忙 . +I still do not understand what is happening . 我 還 是 不 明白 出 了 什麼 事 . +Would you like to drink anything ? 你 想 喝 點 什麼 嗎 ? +This book is easy enough for them to read . 这 本书 他们 读 起来 够 简单 了 . +Make sure you get plenty of rest . 你 務 必要 好好 地 休息 . +We immediately became friends . 我們 馬 上 成為 了 朋友 . +Tom heard Mary is voice . 汤姆 听见 了 玛丽 的 声音 . +Yesterday was my seventeenth birthday . 昨天 是 我 17 岁 生日 . +Let them decide . 讓 他們 決定 . +The two of us do not belong here . 我们 俩 不 属于 这儿 . +He decided to become a pilot . 他 決定 成為 一名 飛行員 . +I continued singing . 我 繼續 唱歌 . +He felt in his pocket for his wallet . 他 在 口袋 里 摸 着 找 他 的 钱包 . +I do not think he is sincere . 我 不 觉得 他 很 诚实 . +Everybody has weaknesses . 谁 都 有 弱点 . +My grandfather lived a long life . 我 的 祖父 很 長 壽 . +He applied for the scholarship . 他 申請 了 獎學金 . +Thanks for your advice . 谢谢 你 的 建议 . +He is used to traveling . 他 習慣 了 旅行 . +I love my life . 我 爱 我 的 生活 . +" How old are you ? " " Sixteen years old " . 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He could not come because of his serious illness . 他 因為 生 重病 不能 來 . +I have always been proud of you . 我 一直 为 您 骄傲 . +I will call you as soon as I can . 我会 尽快 给 你 打电话 的 . +Do you have a gift shop here ? 你們 這裡 有 禮品 店 嗎 ? +She looks as if she were drunk . 她 看 起來 好像 喝醉 了 . +No student went to the party . 没有 学生 去 参加 派对 . +Mary did not recognize her ex @-@ husband . 玛丽 没有 认出 她 的 前夫 . +He married a stewardess . 他 娶 了 一位 空姐 . +My father is busy . 我 爸爸 很忙 . +Do not look down on others . 不要 看不起 別人 . +Of course ! 當然 ! +I filled up the vase with water . 我 倒水 進去 花瓶 裡 . +Let is get to work on that problem . 我们 研究 这个 问题 吧 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Should not Tom be doing this , too ? Tom 也 需要 做 这件 事 吗 ? +That company is managed by a foreigner . 這家 公司 由 一個 外國人 經營 . +I was a student at that time . 我 当时 是 学生 . +Do you think Tom is already retired ? 你 認為 湯姆 退休 了 嗎 ? +Tom came to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +After several delays , the plane finally left . 經過 數次 延遲 之 後 , 飛機 終 於 離開 了 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +The bus stopped suddenly in the middle of the street . 公車 突然 在 路 中央 停下 來 . +I prefer working to doing nothing . 我 寧願 工作 也 不 願 閒著 . +She has to look after her mother . 她 必須 照顧 她 的 母親 . +Are you brushing your teeth properly ? 你 正確 地 刷牙 嗎 ? +I did not like beer at that time . 那 时候 我 不 喜欢 啤酒 . +I am going to lose . 我 要 输 了 . +I bet ten dollars on that horse . 我 在 那 匹 馬 下 十美元 的 賭注 . +I am a good guy . 我 是 一个 好人 . +The river is water level has risen . 河 的 水位 上升 了 . +My father gave me a game . 我 爸爸 给 我 了 游戏 . +Her mother made her a new dress . 她 的 媽媽 給 她 做 一件 新 衣服 . +What did you do with your shoes ? 你 把 你 的 鞋 怎么 了 ? +" He would like to have a coffee after work . " " I would too . " " 他 想 在 下班 後 喝杯 咖啡 . " " 我 也 想 . " +I should not have told you anything . 我 本 不该 告诉您 什么 的 . +We require your help . 我們 需要 你 的 幫助 . +How long has it been since you saw your girlfriend ? 你 跟 你 的 女朋友 见面 以来 有 多久 了 ? +I am sure you will be back before long . 我 确定 你 不久 就 回来 . +You reap what you sow . 种瓜得瓜 , 种豆得豆 . +They ruined my life . 他们 毁 了 我 的 生活 . +Tom can swim as fast as you . 湯姆 游泳 可以 游得 跟 你 一樣 快 . +I know what to say . 我 知道 要说 什么 . +He cannot swim . 他 不 會 游泳 . +I am glad to hear that . 我 很 高興 聽到 這個 消息 . +There is no knowing what he will do next . 没有 人 知道 他 接下来 会 干什么 . +This medicine will make you feel better . 这 药会 让 你 好受 点 . +A fire broke out after the earthquake . 地震 之 後 發生 了 火災 . +I caught him stealing the money . 我 抓到 他 偷 錢 . +I heard her singing in her room . 我 聽到 她 在 她 的 房間 裡 唱歌 . +I am behind him . 我 在 他 後 面 . +Mary is a very pretty girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +It was a great shock to me . 這 對 我 是 很大 的 震撼 . +You have beautiful eyes . 你 的 眼睛 真 漂亮 . +I am going to call you tomorrow . 明天 我 給 你 打 電話 . +It is exactly what I wanted . 我 想要 的 就是 这个 . +Someone has taken my shoes by mistake . 有人 拿错 了 我 的 鞋 . +The experiment confirmed his theory . 实验 证明 了 他 的 理论 . +The offer is too good to be turned down . 此 提議 好 得 令人 難以 拒絕 . +This is just a hypothesis . 这 只是 个 假设 . +Where is my newspaper ? 我 的 报纸 在 哪里 ? +The bill amounted to 100 dollars . 帐单 金额 高达 100 美元 . +Tom may be able to come tomorrow . 汤姆 可能 能 在 明天 来 . +Please turn off the TV . 请 关闭 电视机 . +They were going to lose . 他們 要 輸 了 . +Who is the girl in a yellow raincoat ? 穿 黃色 雨衣 的 女孩 是 誰 ? +She took the entrance exam yesterday . 她 昨天 參加 了 入學 考試 . +Wash your hands before meals . 饭前 要 洗手 . +Did you vote yet ? 您 已經 投 了 票 了 嗎 ? +The game will probably be called off . 這場 比賽 將 可能 被 取消 . +You have made the very same mistake again . 你 又 犯 了 相同 的 錯誤 . +Someone is knocking at the door . 有人 在 敲門 . +I went to the hospital yesterday . 我 昨天 去 了 醫院 . +This radio is no bigger than a matchbox . 这 收音机 不 比 火柴盒 大 . +Is that a coyote ? 那 是 丛林 狼 吗 ? +I am looking for my pen . 我 在 找 我 的 鋼筆 . +Why should I hire Tom ? 为什么 我 要 雇佣 Tom ? +He has not been to France . 他 从没 去过 法国 . +What sound does a giraffe make ? 长颈鹿 是 怎么 叫 的 ? +Tom has been quite cooperative . 汤姆 很 合作 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +This house belongs to my uncle . 這棟 房子 屬 於 我 的 叔叔 . +She still has not heard this news . 她 还 没 听到 这个 消息 . +Talking in the library is not allowed . 不准 在 圖書館 裡 談話 . +I feel like my head is going to explode . 我 感 覚 我 的 頭 要 炸 了 . +He was hit by a car and died instantly . 他 被 車 撞 了 之 後 便 過世 了 . +You are the one with all the money . 你 是 有 所有 錢 的 人 . +There is a television in this room . 这个 房间 里 有个 电视机 . +There was a cold wind blowing from the north . 有 一阵 从 北边 吹来 的 冷风 . +For what purpose ? 為了 什麼 目的 ? +Tom hurt himself . 湯姆 弄 傷 了 自己 . +Does Tom have to be there ? 湯姆 必須 在 那裡 嗎 ? +Who discovered radium ? 誰 發現 了 鐳 ? +I am tired of watching television . 我 厌倦 了 看电视 . +Give me your telephone number . 给 我 你 的 电话号码 . +Did you notice Tom is hair ? 你 注意 到 湯姆 的 頭 髪 了 嗎 ? +If we do not hurry , we will be late . 再 不 快点 就 迟到 了 噢 . +Stay out of my business . 别管 我 的 事 . +He was laughed at by his friends . 他 被 他 的 朋友 們 取笑 了 . +I like spring the best of the seasons . 春天 是 我 最 喜歡 的 季節 . +The bell rang . 铃响 了 . +He did not come to the last meeting . 他 最 後 一場 會議 沒來 . +I can not drink milk . 我 不能 喝牛奶 . +I wake up at eight . 我 八點 起床 . +How are you going to get home ? 你 打算 怎麼 回家 ? +I always study hard . 我 總 是 用功 讀書 . +I have a bicycle . 我 有 一輛 自行 車 . +Tom demanded an explanation . 汤姆 要求 有人 解释 . +I have lost my umbrella somewhere in the park . I have to buy one . 我 的 雨傘 遺失 在 公園 裡 某個 地方 . 我 必須 再 買 一把 . +There are no clouds in the sky . 天上 没有 云 . +My first day in the university was rather boring . 我 大学 里 的 第一天 相当 没意思 . +She did not have much money . 她 沒有 很多 錢 . +I play the guitar after school . 我 放學 後 彈 吉他 . +The sky is clear . 天空 很 晴朗 . +What did you name your son ? 你 给 你 儿子 起 什么 名字 ? +She rides a motorcycle well . 她 骑 摩托车 的 技术 不错 ! +She came to Japan for the purpose of studying Japanese . 她 為了 學習 日文 來到 日本 . +That incident made him famous . 這 起 事件 使 他 一舉 成名 . +Anybody can make a mistake . 谁 都 会 犯错 . +" Where have you been ? " " I have been to the station to see a friend off . " “ 你 去 哪儿 了 ? ” “ 我 去 了 火车站 送 我 的 一个 朋友 . ” +I remember the way you used to dance . 我 记得 你 以前 跳舞 的 方式 . +An eight @-@ year @-@ old car is almost worthless . 一輛 車齡 八年 的 車子 幾乎 是 毫無價值 的 . +She made room for an old lady . 她 讓 出 個 空間 給 一位 老太太 . +Tom probably does not know how to do that as well as Mary does . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Do you like to eat fruit ? 你 喜歡 吃水果 嗎 ? +This car sells well . 这辆 车 卖 得 好 . +How long is the Rainbow Bridge ? 彩虹 橋 有 多 長 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 好意 . +The telephone was invented by Bell . 电话 是 由 贝尔 发明 的 . +Tom did not want Mary to know he did not know how to do that . 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +How can I reach you ? 我 怎樣 才能 連絡 到 你 ? +Mom is preparing a meal in the kitchen . 媽媽 正在 廚房 裡 做 飯 . +Sometimes I have to read boring novels . 有时候 , 我 不得不 读 一些 无聊 的 小说 . +I could not answer all of the questions . 我 不能 回答 所有 的 問題 . +Tom thinks I am missing this great opportunity . 汤姆 认为 我 失去 了 这 绝佳 机会 . +I am grateful to you for your kindness . 谢谢您 的 好意 . +I have not eaten anything since yesterday . 我 從 昨天 起 沒有 吃 任何 東西 . +I have to explain this to Tom . 我 必須 向 Tom 解釋 這個 . +I forgot to bring my I.D. card . 我 忘 了 帶 我 的 身份 證 . +Do you commute to school by bus ? 你 搭 公車 上下 學 嗎 ? +She gave me a strange look . 她 奇怪 地 看 了 我 一眼 . +She continued with the work . 她 继续 工作 . +She cannot be over thirty . 她 不 可能 超过 30 岁 了 . +Tom shut his eyes . 汤姆 闭上 了 眼睛 . +May I leave now ? 我 现在 能 走 了 吗 ? +Please leave right away . 請 馬 上 離開 . +The cat arched its back and stretched itself . 猫 弓起 背 , 伸 了 个 懒腰 . +I am not busy . 我 没 在 忙 . +I got my hair cut . 我 把 我 的 頭 髮 剪 了 . +Goodbye ! 再见 ! +I have a dim memory of my grandmother . 我 对 祖母 的 记忆 很 模糊 . +Weather permitting , I will start tomorrow . 天气 允许 , 我 明天 就 开始 . +I knocked on the door , but nobody answered . 我 敲门 , 但是 没有 人 回应 . +Who is your favorite actor ? 你 最 喜歡 的 演員 是 誰 ? +Look behind you . 瞧 你身 後 . +I did not play tennis yesterday . 我 昨天 沒有 打 網球 . +Tom and Mary ended 30 years of marriage . 汤姆 和玛丽 结束 了 三十年 的 婚姻 . +I did not know what to do . 我 不 知道 該 怎麼 辦 . +These flowers are beautiful , are not they ? 這些 花 很美 , 不是 嗎 ? +The accident happened on Sunday at about 3 : 00 . 此 事故 发生 在 周日 3 点 左右 . +The bus stop is near our school . 巴士站 離 我們 的 學校 近 . +We should work faster . 我們 的 工作 應該 要 加快 . +One of the girls was left behind . 這些 女孩 當中 其中 一個 被 留下 來 了 . +None of this is your money . 這些 都 不是 你 的 錢 . +They are both artists . 他们 都 是 艺术家 . +I love music . 我 爱 音乐 . +She made a series of medical discoveries . 她 提出 了 一連 串 的 醫學 發現 . +It is rude to make fun of your boss in public . 在 公開場 合開 你老 闆 的 玩笑 是 無 禮 的 . +That tree is on Tom is property . 那 樹 是 湯姆 的 財 産 . +What does this stand for ? 这 是 什么 意思 ? +Now , what do you want to see ? 現在 , 你 想 看 甚麼 ? +Spanish is her native language . 西班牙语 是 她 的 母语 . +Get down ! 趴下 ! +I look forward to it . 我 很 期待 哦 . +I have never been to my uncle is house . 我 没 去过 我 叔叔 的 房子 . +Tom is going out this afternoon with Mary . 今天下午 汤姆 和玛丽 会 一起 出去 . +The United States is abundant in natural resources . 美国 的 自然资源 很 丰富 . +If it is at all possible , I 'd like you to take part in the next meeting . 如果 可能 的 話 , 我 希望 你 參加 下 一次 的 會議 . +Tom always makes me laugh . 湯姆總 是 讓 我 笑 . +Tom is used to getting up early . 汤姆 习惯 早起 . +It is a new book . 那 本書 是 一本 新書 . +She picked flowers in the garden . 她 在 花園 裡 摘花 . +I asked her to wait a minute . 我 让 她 等 了 一分钟 . +Which fruit do you like the best ? 你 最 喜爱 的 水果 是 什么 ? +Try it again . 再 試 一次 . +We were born to die . 我们 是 为了 死亡 而 诞生 的 . +She does not have any friends . 她 一个 朋友 都 没有 . +I have never seen a live whale . 我 從來 沒有 見 過 一條 活生生 的 鯨魚 . +I had a wonderful time . 我 玩 得 很 愉快 . +A rolling stone gathers no moss . 滚石 不生 苔 . +Do you want to hear it ? 您 想 听 它 吗 ? +He advised her to stop drinking . 他 建議 她 戒酒 . +I wrote down his phone number . 我 寫 下 他 的 電話 號 碼 了 . +Do not step on the broken glass . 不要 踩 在 碎玻璃 上 . +Do not forget us . 别忘了 我们 . +The bodyguard was wearing an earpiece . 保镖 戴 着 耳机 . +How do we find it ? 我们 怎样才能 找到 它 ? +Is anything bothering you ? 有 什么 事 让 你 烦心 吗 ? +I enjoyed talking with him at the party . 聚会 上 我 和 他 谈 得 很 愉快 . +This does not concern you . 跟 你 没 半 毛钱 关系 . +He does speak well . 他 真的 說 得 很 好 . +She was very embarrassed when her child behaved badly in public . 當 她 的 孩子 在 公共 場合行 為 表現 不好 的 時候 , 她 覺 得 很 尷尬 . +No one man could do it . 沒有 一個 人 能 做到 這 一點 . +How about eating out this evening for a change ? 你 说 今晚 改变 一下 , 去 外面 吃晚饭 怎么样 ? +He has long hair . 他 有 長 頭 髮 . +I will go to America tomorrow . 我 明天 會去 美國 . +I can not say . 我 不能 说 . +There are many fish in this lake . 這個 湖裡 有 很多 魚 . +I want to keep my car there . 我 想 把 我 的 車 停放 在 那裡 . +I have not done that since high school . 高中毕业 之后 我 就 没 那样 做 过 了 . +I 'd really like to go to Boston with you . 我 不想 跟 你 去 波士 頓 . +Could you please speak a little bit more slowly ? 能否 請 你 說 慢 一點 ? +There is one apple on the desk . 书桌上 有 一个 苹果 . +We sat talking about the remote past . 我们 坐 着 谈 很久以前 的 事 . +The situation is improving , so cheer up ! 情況 正在 改善 , 所以 振作起 來 ! +I ache all over . 我 全身 酸痛 . +All you have to do is to wait . 所有 您 要 做 的 , 就是 等待 . +Both of Tom is parents passed away when he was quite young . 汤姆 很小 的 时候 父母 就 都 去世 了 . +My underpants are wet . 我 的 內褲 是 濕 的 . +What steps should we take ? 我们 应该 走出 什么样 的 步伐 . +Any comments are welcome . 欢迎 作 任何 评论 . +You are an idiot . 你个 呆瓜 ! +I plan to go to France next year . 我 想 明年 去 法国 . +Can I open the window ? 可以 开窗 吗 ? +In those days , a cup of coffee cost 200 yen . 那 时候 一杯 咖啡 要 200 日元 . +I made his son a new suit . 我 給 他 的 兒子 做 了 一套 新西 裝 . +To my surprise , the door was unlocked . 令 我 驚訝 的 是 , 門 沒 上鎖 . +Tom burned the letter . 汤姆 烧掉 了信 . +You should not go alone . 你 不 應 該 一個 人 去 . +We have decided to remain silent . 我們 決定 要 保持沉默 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Give me a dozen oranges . 給 我 一打 橘子 . +He is lazy . 他 很 懒 . +She aspired to become an actress . 她 立志 成為 一名 演員 . +My brother became an engineer . 我 哥哥 成 了 一名 工程 師 . +I will be here for a while . 我 在 这 待 一会 . +Allow me to introduce myself . 請 允許 我 自我 介紹 一下 . +It is rude to stare at someone . 盯著 別人 看 是 不 禮貌 的 . +OK . I agree . 好 . 我 同意 . +She refused to accept the money . 她 拒絕 接受 這筆 錢 . +Wo not you have some tea with me ? 你 不 和 我 一起 喝 点 茶 吗 ? +He was late for the 7 : 30 bus . 他 错过 了 7 点 30 分 的 车 . +I have just come back from school . 我 刚 从 学校 回来 . +I am folding my dress . 我 在 叠 我 的 连衣裙 . +This is just wrong . 這 就是 錯 的 . +Do you wish to complain ? 你 想 抱怨 嗎 ? +I thanked Mary for her help . 我 对 玛丽 的 帮助 表示 了 感谢 . +Eating too much is bad for your health . 吃 得 太 多 对 健康 不好 . +He came to my office yesterday . 他 昨天 來 我 的 辦 公室 . +I do not feel like eating out this evening . 今晚 我 没 心情 出去 吃饭 . +I suggest you turn around and go back home . 我 建議 你 轉身 回家 . +What are you doing ? 搞 什么 啊 ? +Your dress is very nice . 你 的 穿著 非常 好 . +These toys are suitable for girls . 這些 玩具 適合 女生 . +I am pretty tall . 我 相当 高 . +My underwear is dirty . 我 的 內 衣 髒 了 +I am sure you will love what we have on the menu tonight . 我 肯定 你 会 喜欢 我们 今晚 的 菜肴 . +Sometimes you get lucky . 你 有 時候 真 走 運 . +The children have not studied division yet . 孩子 們 還 沒上 過 除法 . +Who picked you for this mission ? 谁 选 你 来 做 这个 任务 ? +Go home quickly . 赶快 回家 . +I will leave when she comes back . 當 她 回來 的 時 後 , 我 就 離開 . +Tom swims very fast . 湯姆 游泳 游得 非常 快 . +I am glad that I was able to help . 能够 出 一份 力 太好了 . +I have a cough and a little fever . 我 咳嗽 , 还 有点 发烧 . +The result confirmed my hypothesis . 这 一 结果 证实 了 我 的 猜想 . +Tom is almost six feet tall . 湯姆 差不多 有六 呎 高 . +My sister got married in her teens . 我 妹妹 在 她 十幾歲 時 就 結婚 . +Tom asked for Mary is permission to leave early . 汤姆 请 玛丽 允许 他 早 走 . +Hot and humid weather makes us lazy . 炎熱 潮濕 的 天氣 使 我們 變得 懶散 . +I studied in the morning during the summer vacation . 我 在 暑假 里 早晨 学习 . +I can not take the place of her as an English teacher . 我 无法 取代 她 做 英语老师 . +Tom should have been ready . 汤姆 本该 已经 准备 好 了 . +I have a stupid question . 我 有 一个 挺蠢 的 问题 . +I am a stranger here myself . I am afraid I can not help you . 我 對 這裡 不熟 . 恐怕 我 不能 幫 你 . +Tom can keep a secret . 汤姆 会 保密 . +I wanted to surprise her . 我 想 給 她 一個 驚喜 . +The world is beautiful . 世界 真 美好 . +Knowledge is power . 知识 就是 力量 . +They did not like you . 他们 不 喜欢 你 . +Tom does not care about money . 汤姆 不 关心 钱 . +Would you mind shutting the door ? 請 你 把 門關 上 好 嗎 ? +I am so proud of my boys . 我 為 我 的 孩子 們 感到 很 驕傲 . +He kept his promise . 他 信守 了 他 的 承诺 . +Is it necessary for me to explain the reason to him ? 我 有 必要 向 他 解释 原因 吗 ? +You idiot ! 蠢货 ! +The box is almost empty . 盒子 几乎 是 空 的 . +Why are you so good at cooking ? 为什么 你 做饭 那么 拿手 呢 ? +How much was your new computer ? 这 台 电脑 你 用 多少 钱 买 的 ? +He calls her up every night . 他 每天晚上 打 電話 給 她 . +I am glad to see you back . 很 高兴 再 见到 您 . +Tom has not complained yet . 湯姆 還 沒有 抱怨 . +Let me try . 让 我 试试 . +I was so cold . 我 很 冷 . +It is an endangered species . 这 是 一个 濒临灭绝 的 物种 . +I 'd like a glass of water , please . 請 給 我 一杯 水 . +Is there anything you can do ? 有 什么 事 是 你 能 做 的 吗 ? +Where is the bathroom ? 洗手 間 在 哪裡 ? +I am just looking , thank you . 我 只是 看看 , 謝謝 你 . +Last night there was a full moon . 昨晚 是 满月 . +It was the only way to go . 那 是 唯一 的 出路 . +Where does your uncle live ? 你 叔叔 住 在 什麼 地方 ? +We are badly in need of food . 我们 非常 需要 食物 . +We make milk into cheese and butter . 我們 把 牛奶 製 成 乳酪 和 奶油 . +She remained single all her life . 她 终生 未婚 . +She shut herself up in her room . 她 把 自己 关 在 房里 . +This company is listed on the Paris stock exchange . 这家 公司 在 巴黎 证券 交易所 上市 了 . +He asked me whether I was busy . 他 问 我 是否 很 忙 ? +Take a deep breath , please . 請 深呼吸 . +She made the same mistake again . 她 又 犯 了 同樣 的 錯 誤 了 . +You need to get ready . 你 需要 做好 准备 . +Let is rest here . 在 这里 稍微 休息 一下 吧 . +Could you please repeat it once again ? 請 您 再 說 一遍 好 嗎 ? +You do not have to talk so loud . 你 不必 這麼 大聲 說 話 . +Have you ever tried scuba diving ? 你 曾 試 過 用水 肺潛水 嗎 ? +I made a few modifications . 我 做 了 点 改动 . +Perhaps I will be able to help you . 我 可能 能 幫 你 . +It is impossible to do the sights of Tokyo in a day or two . 一两天 是 没 办法 逛 完 东京 的 . +I 'd be happy to help you . 我 愿意 帮 你 . +I am glad to see you back . 很 高兴 再 见到 你 . +The acid ate into the metal . 酸性 腐蚀 了 金属 . +How come Mary is going on a picnic with him ? 为什么 玛丽和 他 去 野餐 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +Tell her that I am watching the news . 跟 她 說 我 正在 看 新聞 . +I always kept my promises . 我 一直 信守 我 的 諾言 . +We had a heavy rain yesterday . 昨天 下 大雨 . +Did you borrow it ? 你 借 它 了 吗 ? +Do you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +She looked after the children . 她 照顧 孩子 . +I wonder where Tom is planning to go to college . 我 想 知道 汤姆 计划 去 哪里 上 大学 . +Is there any salt left ? 还有 多余 的 盐 吗 ? +Please wait a moment . 请稍等 一会 . +Please drive the car more slowly . 請 開車 開慢 一點 . +I am learning English . 我 學 英文 . +Would you mind saying that once more ? 你 可以 再 說 一次 嗎 ? +She can swim further than I can . 她 能 遊 得 比 我 遠 . +I was quite satisfied . 我 真是 满意 . +Be respectful to your superiors , if you have any . 如果 你 有 上司 的话 , 学会 尊敬 他 ( 她 ) . +He would not look at my proposal . 他 對 我 的 提議 不屑 一顧 . +I lent him a CD . 我 借给 他 一盘 CD . +Tom speaks French a little . 汤姆 会 说 一点 法语 . +Tom left his umbrella on the bus . 汤姆 把 他 的 雨伞 忘在 了 公交车 上 . +We had a lecture on environmental pollution . 我们 有 一节 关于 环境污染 的 讲座 . +He drinks too much beer . 他 喝 太 多 啤酒 . +We should abolish the death penalty . 我们 应该 废除 死刑 . +He went away without saying a word . 他 沒 說 一句 話 就 離開 了 . +I want to cry . 我 想 哭 . +Take me home . 带 我 回家 . +Give me a ring tomorrow . 明天 打电话 给 我 . +The king crushed his enemies . 國王 摧毀 了 他 的 敵人 . +Are you studying ? 您 学习 吗 ? +The drug problem is international . 毒品 是 国际性 的 问题 . +Boston is a great place to raise kids . 波士 頓是 養 小孩 的 好 地方 . +He told me that I looked pale and asked me what the matter was . 他 跟 我 说 我 很 苍白 , 并 问 我 怎么 了 . +I have things to take care of . 我 有些 事 . +Tom changed clothes . 湯姆 換 了 衣服 . +We managed to get some foreign stamps . 我們 設法 得到 一些 外國 的 郵票 . +He is afraid to fly in an airplane . 他 怕 坐飞机 . +I wanted to smack you . 我 想 过 扇 你 一巴掌 . +My sister is playing with a doll . 我 妹妹 正在 玩 洋娃娃 . +Not even one taxi stopped . 甚至 沒有 一輛 計程 車 停下 來 . +You look stupid . 你 看上去 很傻 . +My sister is twenty @-@ one years old and a college student . 我 妹妹 21 岁 , 是 个 大学生 . +I buy tapes . 我 買 磁帶 . +I can not play tennis that well . 我 不 那麼 會 打 網球 . +He could not wait to try out his new surfboard . 他 迫不及待 地想 试一下 他 的 新 冲浪板 . +The talks will last three days . 这场 谈话 将要 持续 三天 . +He is a student at Harvard . 他 是 一個 哈佛 的 學生 . +She left for London yesterday . 她 昨天 離開 去 倫敦 . +You may sit wherever you like . 你 喜欢 坐 哪儿 就 坐 哪儿 . +They all searched for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +The mountain has a beautiful shape . 這 座 山 有 一個 美麗 的 外形 . +Please give me a glass of water . 請 給 我 一杯 水 . +English is an international language . 英語 是 國際 語言 . +I can not believe that you love me . 我 不能 相信 你 愛 我 . +It is difficult for me to answer the question . 这个 问题 对 我 来讲 很 难 回答 . +Everyone loves that place . 每 一個 人 都 喜歡 那個 地方 . +I can hear you . 我 听 得到 . +These products are of the same quality . 这些 产品质量 同等 . +My dog follows me wherever I go . 無論 我 去 哪裡 , 我 的 狗 都 跟著 我 . +It will soon be three o 'clock . 很快 就要 三點鐘 了 . +It is not polite to stare at people . 盯著 人 看 是 不 禮貌 的 . +Tom was dressed like a pirate . Tom 穿 得 像 个 海盗 . +He often goes abroad on business . 他 經常 出國 洽商 . +It is clear that you are wrong . 很 明顯 地 你 錯 了 . +Your second button is coming off . 你 的 第二 顆鈕 扣快 掉 了 . +The end does not always justify the means . 為了 正當 目的 並非 總是 可以 不擇 手段 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +I ran as fast as possible . 我 跑 得 尽可能 快 . +I hear that she is a famous actress . 我 聽 說 她 是 個 有名 的 演員 . +Marriage is the main cause of divorce . 婚姻 是 造成 離婚 的 主因 . +Say no to drugs . 對 毒品 說不 . +Speak clearly and make yourself heard . 講 清楚 並 大聲 地 讓 別人 聽到 你 說 話 . +Why can not he play tennis today ? 為 什麼 他 今天 不能 打 網球 呢 ? +He is a dentist by profession . 他 是 一位 专职 牙医 . +Waiter , I would like to order . 服务生 , 我 要 点菜 . +He agrees with my opinion . 他 同意 我 的 意見 . +It is possible that Tom lied to you . 汤姆 有 可能 对 你 撒谎 了 . +Shut all the doors and windows . 關閉 所有 的 門 和 窗戶 . +Were you right ? 你 是 对 的 吗 ? +This place has a mysterious atmosphere . 这个 地方 有 一种 神秘 的 气氛 . +I do not have a desk in my bedroom . 我 的 臥室 裡 沒有 桌子 . +Cats do not eat bananas . 猫 不吃 香蕉 . +He was very good at playing tennis . 他 网球 打 得 很 好 . +It is just what I wanted . 我 想要 的 就是 这个 . +Do it now . 現在 就 做 . +I do not sleep in a bed . 我 不 在 床上 睡觉 . +I can hardly walk . 我 幾乎 不能 走路 . +Why did you come here so early ? 你 為 什麼 這麼 早來 這裡 ? +She caught colds often . 她 常常 感冒 . +Dad is in an impatient mood today . 爸爸 今天 很 不耐烦 . +It is unlikely that he did anything wrong . 他 看來 沒有 做錯 甚麼 . +I like to eat meat . 我 喜歡 吃 肉 . +He should have been more careful . 他 本 應 該 更 小心 的 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +She came home very late . 她 很 晚 回家 . +Do you think we will have good weather ? 你 认为 我们 会 遇到 好 天气 吗 ? +I won the lottery . 我 中奖 了 . +Do not write in red ink . 別 用 紅 墨水 寫 . +Are you mad at Tom ? 你 在 生 汤姆 的 气 吗 ? +You underestimate your charisma . 你 低估 了 你 的 魅力 . +I miss you . 我 想念 你 . +He is a teacher . 他 是 老师 . +I am glad I was able to help . 能够 出 一份 力 太好了 . +That will not change anything . 這樣 做 的 話 什麼 都 不 會 改變 的 . +I am taller than you . 我 比 你 高 . +Many students like to study in the morning . 许多 学生 喜欢 在 早上 学习 . +I have quit drinking beer . 我 已經 不 喝啤酒 了 . +Where is Tom ? 汤姆 在 哪儿 ? +Tom put his money in the safe . 汤姆 把 他 的 钱 放在 保险柜 里 . +I finally found a job . 我 終于 找到 工作 了 . +I live near here . 我 住 在 這 附近 . +The rain is beating against the windows . 雨点 打着 窗户 . +I felt quite relieved after I had said all I wanted to say . 说 了 所有 我 要说 的话 后 , 我 感觉 很 轻松 . +Could you put my name on the waiting list ? 你 能 把 我 的 名字 加 到 等候 批准 的 申请人 名单 上 吗 ? +Tom climbed down from the tree . 汤姆 从 树上 爬 了 下来 . +I study English and Japanese . 我 学习 英语 和 日语 . +He was listening to music . 他 正在 聽 音樂 . +Tom and Mary could not help me do that . 湯姆 和 瑪麗 不能 幫 我 去 做 . +She kept him waiting half an hour . 她 讓 他 等 了 半 小 時 . +He may have left for Kyoto . 他 可能 已經 離開 京都 了 . +We have four French classes a week . 我們 一週 有 四堂 法語 課 . +The medicine did not do me any good . 這 藥 對 我 沒有 任何 好 處 . +It may snow in the afternoon . 下午 可能 會 下雪 . +Her socks are gray . 她 的 襪子 是 灰色 的 . +He came in person . 他 亲自 来 了 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +She is a glamorous girl . 她 是 个 迷人 的 女孩子 . +I remember my mother teaching me the alphabet . 我 记得 我 母亲 教 我 认字 . +His speech captured our attention . 他 的 演講 吸引 了 我們 的 注意 . +She is qualified as a nurse . 她 是 个 合格 的 护士 . +I am sure we will find a solution . 我 确信 我们 会 找到 解决办法 的 . +Turn left at the first light . 在 第一 個 紅 綠燈 左 轉 . +The bike parked over there is my brother is . 那邊 停著 的 那輛 自行 車 是 我 哥哥 的 . +He acts quickly . 他 行动 迅速 . +I miss my children . 我 想念 我 的 孩子 . +I 'd like three pounds of chicken . 我 要 三磅 的 雞肉 . +Did you understand what he said ? 你 听懂 他 说 的 了 吗 ? +Tom smiled . 汤姆 笑 了 . +I prefer hardwood floors to carpet . 我 喜歡 硬 木地板 勝 過 地毯 . +Bring me the magazines . 把 那 本 雜 誌 拿 來 給 我 . +I am willing to help him . 我 願意 幫 湯姆 . +The man behind them is playing the piano . 在 他們 身 後 的 男人 正在 彈 鋼琴 . +He does not understand me . 他 不 理解 我 . +This is the last time I will ask you to do anything for me . 这 是 我 最后 一次 让 你 为 我 做点事 了 . +I have been going out with her for months . 我 和 她 交往 幾個 月 了 . +The trees are green . 树 是 绿 的 . +I have no more time to talk with you . 我 没 时间 再 跟 你 说话 了 . +The man is loading the moving truck on his own . 這個 男人 獨自 把 東西 搬上 搬家 卡車 上 . +Why do you need it ? 你 為 什麼 需要 它 ? +What is your favorite drink ? 你 最 喜欢 的 饮料 是 什么 ? +He will be back by five o 'clock . 他 五點 左右 會 回來 . +He may be on the next train . 他 可能 在 下 一班 火車 上 . +I deleted my Facebook account . 我 刪 除了 我 的 Facebook 帳號 . +He catches colds very easily . 他 很 容易 感冒 . +Queen Elizabeth I passed away in 1603 . 女王 伊麗莎 白 一世 於 1603 年 去世 . +Turn around . 转过 来 . +Are you going to be in Boston this weekend ? 你 這 週末 在 波士 頓過 嗎 ? +She happened to know his address . 她 恰巧 知道 他 的 地址 . +It is high time you were in bed . 你 早该 睡 了 . +Look at me when I talk to you ! 我 跟 你 说话 的 时候 看着 我 ! +I am all ears . 我 洗耳 恭 聽 . +He is giving his whole attention to that . 他 全神贯注 . +I grew up in a poor family . 我 出身 贫寒 . +Where are you now ? 你 现在 在 哪里 呢 ? +Have you finished doing your homework yet ? 你 做 完 回家 作業 了 嗎 ? +I should put on more clothes . 我 应该 多 穿 点 衣服 了 . +Nothing is really guaranteed . 沒有 甚麼 是 真正 有 保證 的 . +I sure hope this is a dream . 我 当然 希望 这 是 一个 梦 . +Please pass me the butter . 请 把 黄油 递给 我 . +Tom told Mary that she should quit pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +It is really cheap . 它 真的 很 便宜 . +Smoking is prohibited . 禁止 吸烟 . +Is it cheaper to call after 9 : 00 ? 九點 以 後 打 電話 比較 便宜 嗎 ? +What you said about Tom is not true . 你 说 的 关于 汤姆 的话 不是 真的 . +Do not look a gift horse in the mouth . 不要 對 人家 送 的 禮物 挑 三 揀 四 , 嫌東 嫌西 的 . +My father lives in the country . 我 父親 住 在 鄉下 . +This is mine . 这 是 我 的 . +Every door in the house is locked . 這 房子 裡 的 每 一扇 門 都 被 鎖上 了 . +I do not have a car . 我 沒有 汽車 . +I do not know where my crutches are . Have you seen them ? 我 不 知道 把 拐杖 放 哪 去 了 , 你 有 看到 嗎 ? +It seems that I have lost my keys . 我 好像 丢 了 我 的 钥匙 . +I am going to the bank . 我 要 去 银行 了 . +I do not sleep well . 我 睡 不好 . +Did you get my letter ? 你 收到 了 我 发 的 邮件 了 吗 ? +I do not know what this symbol stands for . 我 不 知道 這個 符號 代表 什麼 意思 . +She wears a lot of makeup . 她 化 着 浓妆 . +He would often come to see us when I was a child . 當 我 還 是 個 孩子 時 , 他 經常 來 看望 我們 . +I wish you had been there . 但 願 你 去過 那裡 . +Tom said he 'd wait . 湯姆 說 他 會 等 . +We ate breakfast at seven . 我们 7 点 吃 了 早饭 . +I usually stay indoors on Sunday . 星期天 我 通常 待 在家 裡 . +Does it sound like I am in love ? 聽 起來 像是 我 戀愛 了 嗎 ? +Seen from the moon , the earth looks like a ball . 从 月球 上看 的话 , 地球 看起来 像 个 皮球 . +Tom went swimming in the river , but when he got out , his clothes had been stolen . 汤姆 去 河里 游泳 , 但当 他 出来 时 , 他 的 衣服 被 偷 了 . +I like traveling . 我 喜歡 旅行 . +I do not expect anything from you . 我 不 指望 从 你 身上 得到 什么 . +Please excuse me for being rude . 請 原諒 我 的 魯莽 . +Could you bring my breakfast to room 305 ? 你 可以 把 我 的 早餐 送到 305 房间 吗 ? +She asked us several questions . 她 问 了 我们 好几个 问题 . +Do you want something to eat ? 您 想 吃 点 什么 吗 ? +Words express thoughts . 語詞 表達 思想 . +I once wanted to be an astrophysicist . 我 曾經 想 過 當個 太空 物理 學家 . +He has dozens of books about Japan . 他 有 幾 十本 關於 日本 的 書 . +There was a lot of snow last winter . 去年 冬天 下 了 好多 雪 . +I think that Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +Beauty is in the eye of the beholder . 美 驻留 在 看 的 那个 人 的 眼里 . +Your friendship means a lot to me . 你 的 友誼 對 我 來說 意義 重大 . +I will not do it again . 下次 我 不 做 了 . +He hit his head against a rock . 他 的 頭 撞 到 了 一塊 岩石 . +We do not have too much time . 我们 没有 太 多 时间 . +There is only one book on the desk . 桌子 上 只有 一 本书 . +I am reading a book about animals . 我 正在 讀 一本 關於 動物 的 書 . +This store is currently selling vegetables . 这家 店 在 卖 蔬菜 . +Tom drank my apple juice . Tom 喝 我 的 蘋 果汁 . +You are such an idiot . 你 真是 個 傻瓜 ! +She is busy now and can not talk with you . 她 现在 忙 , 不能 跟 你 说话 . +I tried to hit Tom , but he ducked . 我 要 去 打 汤姆 , 但是 他 避开 了 . +He seems not to be aware of the conflict between my father and me . 他 似乎 不 知道 我 父亲 和 我 之间 的 纠葛 . +I thought Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +I would like to join your group . 我 想 加入 你们 的 团 对 . +Tom went out for a walk with his dog . 湯姆 帶 他 的 狗 出去 走 . +I do not think any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +They made us work all day long . 他們 讓 我們 工作 了 一整天 . +I want some fresh eggs . 我 想要 一些 新鲜 的 鸡蛋 . +What movies are playing this week ? 这周 放 什么 电影 ? +I am going to school . 我 去 学校 了 . +I am waiting for the store to open . 我 正 等著 這家 店 開門 . +Please accept my sincere apologies . 請 接受 我 誠摯 的 歉意 . +His advice did not help at all . 他 的 建议 完全 没用 . +The soldier groaned with pain . 這 名 士兵 痛苦 地 呻吟 . +Teachers also make mistakes . 老师 也 会 犯错 . +Tom says they need more time . 汤姆 说 他们 需要 更 多 时间 . +He wears Chinese @-@ style clothes . 他 穿 中式 服裝 . +I can not think of any other way of getting him to accept our proposal . 我 看不出 有 其他 方法 能 让 他 接受 我们 的 提议 . +I talked with Tom . 我 和 汤姆 说 了 话 . +I dreamt about you . 我 梦 到 你 了 . +Do you want to speak to Tom ? 你 想 跟 汤姆 说话 吗 ? +I am out of time . 我 没 时间 了 . +If Tom is really alive , where is he ? 如果 汤姆 真的 活着 , 他 在 哪里 ? +I will leave this work to you . 我 會 把 這個 工作 留給 你 . +How can Tom not understand that ? 湯姆 怎麼 能 不 懂 ? +The police held him in custody . 警方 拘留 了 他 . +They gave in to my opinion . 他們 屈服 於 我 的 看法 了 . +She taught me how to swim . 她 教我如何 游泳 . +How are you ? 你們 好 嗎 ? +Tom thanked me for the gift . 湯姆 為 這個 禮物 感謝 我 . +I am not feeling well . 我 感觉 不 舒服 . +We do not speak French . 我們 不 講 法語 . +The living room adjoins the dining room . 客廳 緊 鄰著 餐廳 . +I bought a good camera . 我 買 了 一台 不錯 的 照相 機 . +She has a daughter who is a pianist . 她 有 一个 钢琴家 女儿 . +I decided not to study French . 我 決定 不學法 語 . +Can I see the menu , please ? 麻煩 給 我 菜 單 . +Turn left at the next corner . 下 一个 街角 左转 . +She laid the work on him . 她 派 他 去 工作 了 . +He thought of a good solution . 他 想到 了 一個 解決 的 好 辦法 . +To put it briefly , I do not agree . 简而言之 , 我 不 同意 . +They called him a coward . 他們 稱 他 膽 小鬼 . +I wonder what the weather will be like tomorrow . 不 知道 明天 天气 会 怎么样 呢 ? +I had no trouble finding his office . 我 毫不 费劲 就 找到 他 的 公司 . +I will see you later . 等 會 兒 見 . +Do not bother calling security . 别 麻烦 保安 了 . +We must execute his orders . 我们 必须 执行 他 的 命令 . +He gave her a piece of paper . 他 給 了 她 一張 紙 . +I do not want to buy a newspaper today . 我 今天 不想 买 报纸 . +I am not sure , but I think I know where to go . 我 不 确定 , 但 我 认为 我 知道 要 去 哪里 . +Do not be terrified . 別 被 嚇壞 了 . +She ought to have arrived by now . 她 現在 應該 已經 到 了 . +He spared no pains to help me . 他 不 遺餘力 幫助 我 . +I am looking over his report . 我 在 阅读 他 的 报告 . +We have only one chance . 我们 只有 一次 机会 . +I am never coming back here again . 我 不会 再 回来 了 . +Sit tight . 耐心 等 着 . +Red is out of fashion . 红色 不 流行 了 . +They laughed at my idea . 他們 嘲笑 我 的 想法 . +We were very sorry we could not help them . 我們 很 遺憾 無法 幫助 他們 . +This is the house where I used to live when I was young . 这 是 我 年轻 时候 住 的 房子 . +I have a dictionary . 我 有個 字典 . +People used to laugh at us . 人们 以前 笑话 我们 . +If a sick person folds one thousand paper cranes , her wish will come true . 如果 一個 病人 折 一千 隻 紙 鶴 , 她 的 願望 就 會 成 真 . +Anything you say can be used against you in court . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +My sister can play the piano better than I can . 我 妹妹 鋼琴 可以 彈 得 比 我 好 . +I thought we were going to do this together . 我 認為 我們 要 一起 做 . +He asked me if I liked mathematics . 他 問 我 喜 不 喜歡 數學 . +This is going to be a great trip . 這 會 是 個 絕好 的 旅行 . +How many prefectures are there in Japan ? 日本 有 多少 個 縣 ? +Tom wanted to go to Australia . 汤姆 想 去 澳大利亚 . +I am sure of his success . 我 肯定 他 会 成功 的 . +I like each of them . 我 喜欢 他们 每 一个 . +This is Mary is dog . 這 是 瑪麗 的 狗 . +She showed the visitor her baby . 她 给 客人 看 了 她 的 宝宝 . +This might not be a genuine diamond . 這 可能 不是 真的 鑽石 . +She is now staying at her uncle is house . 她 现在 正待 在 她 叔叔 家 . +I wish I knew where he was ! 但 願 我 知道 他 在 哪裡 . +Rather than cutting down on cigarettes , why do not you just give them up ? 比起 少 抽 菸 , 你 何不 直接 把 菸 戒 了 ? +It is none of your concern . 这 不关 你 的 事 . +No students were absent . 沒有 學生 缺席 . +Stop putting off finding a job . 不要 拖延 去 找 工作 的 事 . +Is that black bag yours ? 那個 黑色 提包 是 你 的 嗎 ? +He is busy with his homework now . 他 現在 正忙 著做 他 的 家庭 作業 . +There are not many books on these shelves . 这些 书架上 没有 很多 书 . +He is going to run for mayor . 他 將 競選 市長 . +How is everyone ? 大家 好 嗎 ? +Let is assume that will happen . 讓 我們 假定 那 會 發生 . +Tom seems to be completely lost . 湯姆 看來 完全 輸 了 . +An electric current can generate magnetism . 電流 可以 產生 磁性 . +That is Mary is husband . 那 是 玛丽 的 丈夫 . +Let is ask if it is true . 让 我们 来 问问 这 是不是 真的 . +He got wet from the waist to the knees . 他 從 腰部 到 膝 蓋 都 濕 了 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +You look very pale . 你 看上去 很 苍白 . +When have you ever done anything for me ? 你 什么 时候 给 我 做事 ? +Tom told me that I should not go out alone at night . 汤姆 跟 我 说 我 不 应该 晚上 一个 人 出门 . +She must be over eighty . 她 肯定 超过 80 岁 了 . +I just want to know what actually happened . 我 只 想 知道 实际上 发生 了 什么 . +I am blessed with good health . 上帝 賜予 我 健康 的 身體 . +Lie down and make yourself comfortable . 躺 下來 讓 自己 舒服 一點 . +Suddenly it began to rain . 突然 開始 下雨 . +I am getting more and more gray hair . 我 的 白 髮 越 來 越 多 . +I like to listen to music , especially jazz . 我 喜歡 聽 音樂 , 特別 是 爵士 音樂 . +My boss made me work last Sunday . 上週 日 我 的 老 闆 要 我 工作 . +I anticipate that there will be trouble . 我 預料 會 有 麻煩 . +Did somebody hit Tom ? 有人 打 汤姆 了 吗 ? +An argument may be logically sound without being true . 不 正确 的 命题 听 起来 可能 符合 逻辑 . +Popcorn is my favorite snack . 爆米花 是 我 最 喜欢 的 零食 . +Sir , can we quickly inspect your luggage please ? 先生 , 我們 可以 檢查 一下 您 的 行李 嗎 ? +It is a waste of time . 这 是 浪费时间 . +These must be fake . 這些 一定 是 假 的 . +Nobody knows the truth . 没有 人 知道 真相 . +Tom currently resides in Boston . 汤姆 现在 住 在 波士顿 . +He was involved in the trouble . 他 被 卷进 了 是非 中 . +She did not appear to recognize me . 她 好像 没 认出 我 . +I was always good at English . 我 的 英文 一直 都 不錯 . +Am I a good teacher ? 我 是 一個 好 老師 嗎 ? +They do not like me . 他們 不 喜歡 我 . +He owes his success both to working hard and to good luck . 他 的 成功 要 归结 于 他 的 辛勤工作 和 好运气 . +The waves crashed against the rocks . 浪 拍 在 岩石 上 . +I am wet . 我 濕 了 . +I do not know whether I have time or not . 我 不 知道 有没有 时间 . +I went to Disneyland yesterday . 昨天 我 去 了 迪士尼 樂園 . +I am not a beggar . 我 不是 乞丐 . +We can do nothing . 我们 什么 都 做不了 . +A boy is walking across the street . 一个男孩 正 沿着 街 走 . +The date of manufacture is shown on the lid . 生产日期 在 盖子 上 . +He ran faster than his brother did . 他 跑 得 比 他 哥哥 快 . +Please feel free to ask questions . 歡迎 隨時 提問 . +We had to go there together . 我们 必须 一起 去 . +A true scientist would not approach the question this way . 真正 的 科学家 不会 这样 去 思考 . +Tom is always absent . 汤姆 总是 旷课 . +We can not deny the fact that he is honest . 我们 无法 否认 , 他 确实 是 很 诚实 的 人 . +I have been there a couple of times . 我 去過 那裡 幾次 . +We should try to avoid imposing our own beliefs on others . 我們 應該 盡量 避免 把 我們 自己 的 信念 強加 在 別人 身上 . +According to TV news , there was a plane crash in India . 根据 电视新闻 , 一架 飞机 在 印度 坠毁 了 . +How many boys are there in this class ? 这个 班 有 多少 男生 ? +If you have something to say , just say it . 如果 你 想 说 , 就 说 . +I was born in Kyoto . 我 生于 京都 . +Time passes quickly when we are doing something we like . 在 做 喜欢 的 事情 的 时候 时间 过去 得 很快 . +You can go to the ballpark on this bus . 坐 這個 公車 可以 到 球場 . +What you said left a deep impression on me . 你 说 的话 给 我 留下 了 很 深刻 的 印象 . +He wants you to stay here . 他 要 你 留在 這裡 . +Mary came home from school in tears because her friends had teased her . 玛丽 哭 着 从 学校 跑 回 了 家里 , 因为 她 的 朋友 捉弄 了 她 . +I got acquainted with the chief executive . 我 認識 了 這位 行政 長 官 . +He is a tall boy . 他 是 一个 高大 的 男孩 . +They do not always obey their parents . 他们 并 不 总是 服从 父母 . +She does not have as much patience as you do . 她 没 像 你 那样 有 耐心 . +Tom has not done anything . 汤姆 什么 都 没 做 . +No , thank you . I am just looking around . 不 , 謝謝 你 . 我 只是 四處 看看 . +" More coffee ? " " No , thanks . " “ 还要 咖啡 吗 ? ” “ 不了 , 谢谢 . ” +She declared that she was not guilty . 她 声称 自己 没罪 . +You may come if you like . 如果 你 想 , 你 可以 來 . +Are you going out tomorrow ? 你 明天 出去 吗 ? +I can not go . 我 不能 走 . +He will have to go to the station . 他 该 去 火车站 了 . +Volcanic ash disrupted air travel . 火山灰 阻礙 航運 . +He has an eye for antiques . 他 对 古董 很 有 鉴赏力 . +I know you are richer than me . 我 知道 你 比 我 有 錢 . +Cows give milk . 牛 可 产奶 . +Did you get your wish ? 你 如 願 以償 了 嗎 ? +I asked him where he was going . 我 問 了 他 要 去 哪裡 . +You do not understand . 你 不 了解 . +I am getting too old for this job . 对于 这份 工作 来说 , 我 的 年龄 太 老 了 . +I like to go fishing with my father . 我 喜欢 和 父亲 一起 去 钓鱼 . +Tom has accumulated a lot of junk . 湯姆屯 了 很多 垃圾 . +Do you have any idea what is been going on ? 你 知道 現在 正在 發生 甚麼 嗎 ? +The news confirmed my suspicions . 这 一 消息 证实 了 我 的 怀疑 . +The explosion may have been caused by a gas leak . 這場 爆炸 有 可能 是 瓦斯 外 洩 引起 的 . +Come and see me whenever you like . 你 隨時 都 可以 來看 我 . +He worked very hard . 他 工作 很 努力 . +Probably you are allergic to pollen or dust . 你 可能 对 花粉 或 灰尘 过敏 . +You will fail . 你 會 失敗 . +They went to the station by car . 他們 坐 車 去 車站 . +Tom wants to talk . 汤姆 想 说话 . +Why did you buy such an expensive dictionary ? 为什么 你 买 了 一本 那么 贵 的 词典 ? +Tom is a bus driver . 汤姆 是 个 公交车 司机 . +What I want is some peace and quiet . 我 所 想要 的 是 一点 平和 和 安静 . +We lost our cat and Tom found it for us . 我們 弄 丟了 車 , Tom 幫 我們 找 了 回來 . +Some gum stuck to his shoes . 口香糖 粘到 他 的 鞋子 上 了 . +Who were you talking to ? 你 和 谁 说话 呢 ? +" Shall I take a message ? " " No , thank you . " “ 需要 我 为 您 留 个 口信儿 吗 ? ” “ 不用 了 , 谢谢 . ” +We will do that . 我們 會 去 做 . +An angle of 90 degrees is called a right angle . 90 度 的 角 叫 直角 . +Between you and me , what is your opinion of her ? 你 就 只 告诉 我 一个 人 , 你 对 她 的 意见 如何 ? +Tennis is my favorite sport . 网球 是 我 最 喜欢 的 运动 . +When I woke up , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Whose glass is this ? 这 是 谁 的 杯子 ? +Would you like to go to the zoo this afternoon ? 今天下午 你 想 去 動物園 嗎 ? +You should be able to manage it . 你 应该 能 解决 . +According to newspaper reports , there was an airplane accident last evening . 根據 報載 , 有 一架 飛機 昨天晚上 發生 了 意外 . +I had to work overtime yesterday . 我 昨天 必須 加班 . +Why do you want to be a nurse ? 你 为什么 想 成为 护士 呢 ? +I was born in the winter . 我 在 冬天 出生 . +My attitude towards him changed . 我 对 他 的 态度 变 了 . +I will stay home . 我 會 待 在家 裡 . +He is been to the stadium . 他 去過 體育館 . +Please do not forget to put a stamp on the letter before mailing it . 请 不要 忘记 寄信 前 要 在 上面 贴 邮票 . +He left his daughter a great fortune . 他 留给 他 女儿 一大笔 财产 . +Have you been eating ? 你 在 吃 东西 吗 ? +Gravity brings everything down to Earth . 重力 将 一切 带 下 地球表面 . +My parents have gone to the airport to see my uncle off . 我 父母 去 机场 送 我 叔叔 了 . +Tom has his own problems . 汤姆 有 他 自己 的 问题 . +After asking for my key at the front desk , I took the elevator to my floor . 我 到櫃檯拿了鑰匙 , 然 後 就 乘 電梯 去 了 我 房間 的 樓層 . +How many hours a day do you sleep ? 你 每天 睡 几个 小时 ? +Do not bite on the right side . 不要 從 右邊 咬 . +I know Tom . 我 认识 汤姆 . +I am going to see Tom in the morning . 我 早上 去 見 湯姆 . +He caught her by the arm . 他 抓住 了 她 的 胳膊 . +Sorry to have kept you waiting . 對 不起 讓 你 一直 等 . +Tom always speaks in such a low voice that I can barely understand what he says . 汤姆 总是 说话 声音 太小 , 我 几乎 听不懂 他 在 说 什么 . +They were forced to kill and eat several of their horses . 他们 被迫 杀掉 他们 的 几匹马 来 吃 . +Her birthday party will be tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +The storm did not abate for several hours . 风暴 几个 小时 没有 减弱 了 . +You may take this . 您 可以 拿 着 这个 . +There is an apple on the desk . 书桌上 有 一个 苹果 . +You are in my way . 你 擋住 了 我 的 路 . +We have to find out what Tom wants . 我们 要 明白 汤姆 想要 什么 . +Asia is much larger than Australia . 亚洲 比 澳洲 大 很多 . +His brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +It is likely that she will succeed . 她 很 有 可能 会 有所 成就 . +Tom knows what we are doing . 汤姆 知道 我们 在 做 什么 . +His brother studies very hard . 他 的 哥哥 很 用功 讀書 . +Have you handed in your homework ? 你 交功課 了 嗎 ? +Do you understand ? 你们 懂吗 ? +I was abducted by aliens . 我 被 外星人 绑架 了 . +Tom has started studying karate . 汤姆 已经 开始 学习 空手道 了 . +He lives next door to us . 他 住 在 我們 隔壁 . +It takes 165 years for Neptune to orbit around the sun . 海王星 繞行 太陽 一周 要 花 一百六十五 年 . +Excuse me , how much is this sweater ? 请问 下 , 这件 毛衣 要 多少 钱 ? +I want you guys to do me a favor . 我 想要 大家伙 帮 我个 忙 . +This is not a sentence . 这 不是 一句 话 . +Smoking is strictly prohibited . 严禁吸烟 . +He said that it would probably rain . 他 說 很 可能 會 下雨 . +This book is not interesting at all . 這 本書 一點 也 不 有趣 . +It is all Greek to me . 我 对此 一窍不通 . +I have to get up quite early tomorrow . 我 明天 得 早起 . +His son was expelled from school . 他 的 兒子 被 學校 開 除了 . +Is Tom living in Boston ? 汤姆 住 在 波士顿 吗 ? +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +What time do you wake up on Sundays ? 你 星期天 幾點 起床 ? +Tom is still upset . 湯姆 還 是 不安 . +I kept singing . 我 繼續 唱歌 . +This car is very economical on gas . 这辆 车 很 省油 . +I wake him up at 6 every morning . 我 每天 早上 6 点 叫醒 他 . +Will it take long to recover ? 要 很 長 的 時間 才能 恢 復 嗎 ? +I found the new magazine very interesting . 我 發現 這 本新 雜 誌 非常 有趣 . +I am afraid the job I have got for you will not be easy . 我 恐怕 我 給 你 找 的 工作 不 輕 鬆 . +She was holding an umbrella . 她 握 着 一把 伞 . +They did not pay me . 他们 没付 我 钱 . +Do not begin without me . 我 不 在 就别 开始 . +She helped her father with the work in the garden . 她 帮 她 爸爸 干 了 花园里 的 活 . +They will not come until tomorrow . 他們 直到 明天 前 不 會 來 . +It is up to you . 这 就要 看 您 了 . +She hit him . 她 打 了 他 . +How can I get to the station ? 我 怎樣 才能 到 火車 站 ? +I think I am going crazy . 我 认为 我 快 疯 了 . +My team is always losing . 我们 队 从来 就 没 赢 过 . +I want to go for a swim . 我 想 去 游泳 . +I enjoy taking pictures . 我 喜欢 拍照 . +This ticket is valid for three days . 这 张 票 三日 有效 . +You will be able to see the difference very easily . 您 很 容易 就 能 看出 区别 . +I am happiest when I am reading . 當 我 閱讀 的 時候 , 我 最快 樂 . +It looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +Tom heard nothing . 汤姆 什么 也 没 听见 . +Let is not argue . 我們 別 吵 了 . +It is impossible for me to explain it to you . 要 我 解释 给 你 听 是 不 可能 的 . +You may choose whichever you want . 你 可以 选择 任何 你 想要 的 . +You like rain , do not you ? 你 喜欢 雨 对 吧 ? +We need to go . 我们 必须 走 了 . +Turn off the light , please . 請 關燈 . +Your watch is more expensive than mine . 你 的 手表 比 我 的 贵 . +How are you doing today ? 你 今天 怎么样 ? +It is already 7 : 00 . 已经 是 早上 七点 了 . +She greeted us with a smile . 她 面帶 微笑 向 我們 打招呼 . +Only a few TV programs are worth watching . 只有 为数不多 的 几个 电视节目 值得 关注 . +We will have to wait and see . 你 得 等一等 看 . +Is this fish still alive ? 这条 鱼 还是 活 的 吗 ? +You are the one who suggested that we sing together . 你 是 那個 建議 我們 一起 唱歌 的 人 . +I have to say goodnight to Tom . 我 必须 跟 汤姆 说 晚安 . +Read this . 念 这个 . +We waited in the park for a long time . 我们 在 公园 等 了 好久 . +If you bite me , I will bite back . 如果 你 咬 我 , 我 就 咬 回来 . +We have got lots of time . 我們 有 很多 時間 . +We found the boy fast asleep . 我們 發現 這個 男孩 睡 得 很沉 . +I wonder whether we have enough money to buy Tom the painting he wanted . 我 想 知道 咱们 是否 有 足够 的 钱 给 汤姆 买 他 想要 的 这 幅画 +I 'd better get back home . 我 回家 比较 好 . +They grow flowers in the garden . 他們 在 花園 裡 種花 . +He has been to London three times . 他 去過 倫敦 三次 . +I bumped into him at the station . 我 在 車站 碰到 他 . +It looks like snow , does not it ? 看起 來 要 下雪 了 , 不是 嗎 ? +He admitted his mistakes . 他 承认 了 自己 的 错误 . +I am calling from a cell phone . 我 正在 用 手机 打电话 . +Tom is bicycle was stolen yesterday . 湯姆 的 自行 車 昨天 被 偷 了 . +He is a high school student . 他 是 一名 高中 學生 . +I am actually doing quite well . 我 其實 做 得 很 好 . +I know the boy who is sitting closest to the door . 我 认识 那个 坐 得 最靠近 门 的 男孩 . +They waited for him for hours . 他們 等 了 他 好 幾個 小 時 . +Tom got here before sunrise . 汤姆 天亮 前 就 到 这 了 . +The cat was scared by an unfamiliar noise . 猫 被 陌生 的 噪音 惊吓 了 . +Stay off the grass . 不要 走 在 草地 上 . +Tom does not work here . 湯姆 不 在 這裡 工作 . +Let is forget it for now . 讓 我們 現在 忘 了 它 吧 . +Tom has to speak French every day at work . 汤姆 每天 都 要 在 工作 时说 法语 . +It is self @-@ evident . 這 是 不證 自明 的 . +I do not want to hear your theories . 我 不想 听 你 的 理论 . +I want something sweet . 我 要 一些 甜 的 東西 . +Nature is full of mysteries . 自然 充满 了 神秘 . +I have had a lot of work to do lately . 我 最近 有 很多 事情 要 做 . +Should I cancel the call ? 我 该 取消 通话 吗 ? +I am afraid of earthquakes . 我 怕 地震 . +How did you get there ? 你 怎麼 到 那 的 ? +I do not like that . 我 不 喜欢 . +What have you done with my pen ? 你 用 我 的 筆 做 了 什麼 ? +Tom was there physically , but not mentally . 汤姆 人 在 心 不 在 . +I think you should make the deal . 我 看 你 该 做 这 交易 . +There is a path through the fields . 有 条 小路 穿过 农田 . +He was very busy all day . 他 忙 了 一整天 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can see Tom . 我 看得见 汤姆 . +" Are you tired ? " " No , not at all . " “ 你 累 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +Tom is speech was good . 汤姆 的 演讲 很 精彩 . +I will be seeing Mary this afternoon . 我 今天下午 會 看到 瑪麗 . +I am really looking forward to summer vacation . 我 真的 非常 期待 暑假 . +Would you please show me that skirt ? 请 你 给 我 看 一下 这 条 裙子 好 吗 ? +Nothing is missing . 什么 也 没少 . +His explanation is not clear . 他 的 說明 並 不 清楚 . +That is right . 对 ! +You want to be excused from doing that , do not you ? 你 想 通过 做 那件事 而 得到 原谅 是 吗 ? +Who do you think I am ? 你 把 我 当 什么 啦 ? +Do you have children ? 你 有 孩子 嗎 ? +Please have someone else do it . 請 讓 別人 去 做 . +I go to school here , too . 我 也 在 这儿 上学 . +The days are getting longer and longer . 白天 越來越 長 了 . +How many apples do you want ? 你 要 幾個 蘋果 ? +He is always running short of cash . 他 總是 缺錢 . +Tom denied having stolen the money . Tom 否认 偷 了 钱 . +Help me lift the package . 帮 我 抬起 这 包裹 . +I heard someone come in . 我 聽到 有人 進來 了 . +I am concerned about Tom . 我 在 為 湯姆 擔心 . +The two young girls smiled happily . 兩個 年輕 的 女孩 高興 地 微笑 了 . +Tom did not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +He is good at football . 他 擅長 足球 . +Tom drank heavily . 湯姆 喝 得 很多 . +I had my brother repair my bicycle . 我 讓 我 的 哥哥 修理 我 的 腳踏車 . +She was very happy with my gift . 她 對 於 我 送 的 禮物 感到 很 開心 . +I was watching television when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +Long time , no see . 好久 不見 . +They are trying to keep costs down . 他们 正 努力 降低成本 . +He is really angry . 他 非常 生气 . +Step inside . 进来 . +Pass me the salt , please . 请 把 盐 递给 我 . +English is a hard language to learn . 英語 是 一種 難學 的 語言 . +My watch is very accurate . 我 的 手 錶 很 準 . +He is likely to be late again . 他 可能 又 遲 到 了 . +Everyone except me was invited . 除了 我 , 每个 人 都 受到 了 邀请 . +I can not explain it either . 我 也 無法 解釋 . +I like summer better than winter . 我 喜歡 夏天 勝 於 冬天 . +He used to get up early . 他 以前 很早 起床 . +I do not understand . 我 不 懂 . +Do not put anything in the bag . 不要 把 所有 东西 都 放到 包 里面 . +We gather here once a week . 我们 每周 在 这儿 聚 一次 . +He is old enough to travel alone . 他 够 大 了 , 可以 独自 旅行 了 . +My room is a pigsty . 我 房间 是 个 猪 窝 . +When to start is the main problem . 什么 时候 开始 是 主要 问题 . +The weather report says we will get three inches of snow . 天气预报 说 会 下 三 英寸 雪 . +Someone must have stolen your watch . 一定 是 有人 偷 了 你 的 手 錶 . +I owe it you that I am still alive . 多亏 了 你 , 我 还 活着 . +Mathematics is basic to all sciences . 數學 是 所有 科學 的 基礎 . +How many people work there ? 有 多少 人 在 那里 工作 ? +You always work hard . 你 一直 努力 工作 . +I want to become a teacher of Japanese . 我 想 成为 日语 老师 . +Water is a liquid . 水 是 液体 . +I do not often do that by myself . 我 不 經常 自己 去 做 . +I smell something here . 我 在 这里 闻见 了 什么 . +My ear was bleeding this morning . 今天 早上 我 耳朵 流血 了 . +I will not see him any more . 我 不会 再见 他 了 . +I ran into my aunt by chance in Europe . 我 在 欧洲 偶遇 了 姑母 . +She really does like animals . 她 确实 喜欢 动物 . +He is the father of two children . 他 是 兩個 孩子 的 父親 . +I am Tom is assistant . 我 是 湯姆 的 助手 . +Do not leave ! 別 走 ! +Grandmother sent us a box of apples . 奶奶 送 了 我們 一箱 蘋果 . +I was late for the appointment . 我 約 會 遲 到 了 . +Industry as we know it today did not exist in those days . 我们 今天 所 认识 的 工业 在 那个 时代 不 存在 . +I got a good grade in English . 我 的 英文 成績 很 好 . +I am fed up with eating in restaurants . 我 受夠 了 在 餐館 吃 飯 . +Fasten your seat belt . 系上 您 的 安全带 . +You have got a great memory . 你 的 記憶力 很 好 . +Let is meet at the station at eight tomorrow morning . 明早 八点 车站 见 . +I have always kept my promises . 我 一直 遵守 我 的 諾言 . +We have many goals . 我們 有 許多 目標 . +She likes music very much . 她 非常 喜欢 音乐 . +You can stay here if you like . 你 要是 願意 就 留在 這裡 . +We are having a party this evening . 我們 今天 晚上 將 舉行 派 對 . +Were you happy ? 你 开心 吗 ? +How long does it take to walk to the station ? 走 着 去 火车站 要 多久 ? +Tom does not have any shoes on . 汤姆 没 穿鞋 . +Let is clear up this problem . 让 我们 来 澄清 一下 这个 问题 . +Do all of you speak French ? 你們 都 講 法語 嗎 ? +You should read many books when you are young . 应该 趁 年轻 多 读点 书 . +She does not live there any more . 她 不再 住 在 那裡 了 . +What made her do that ? 为什么 她 要 做 这种 事情 呢 ? +I am not disagreeing with you . 我 没有 反对 你 . +Tom is trying to figure out how to do that now . 汤姆 现在 正在 想 办法 去 做 那件事 +This dam supplies us with water and electricity . 这个 水坝 给 我们 提供 水 和 电 . +This is a very tall tree . 这 是 棵 很高 的 树 . +Kyoto is not as large as Osaka . 京都 不如 大阪 大 . +Our garden was full of weeds . 我们 的 花园 布满 了 杂草 . +All of them are good teachers . 他们 都 是 好 老师 . +Of course . 当然 了 . +What do you do before breakfast ? 早餐 前 你 做 什麼 ? +I noticed that Tom was smiling . 我 注意 到 汤姆 在 笑 . +Will you have time to have lunch with me ? 你 有 时间 跟 我 吃 午饭 吗 ? +You are selling him short . 你 別 小看 了 他 . +He spent the morning reading a book . 他 整個 上午 都 在 看書 . +I like football . 我 喜歡 足球 . +My neighbor renovated her house completely . 我 的 鄰居 把 她 的 屋子 翻新 了 一遍 . +Mary can dance well . 瑪麗舞 跳 得 很 好 . +We play football every Saturday . 我們 每個 星期六 踢足球 . +Tom took Mary to the hospital on the back of his motorcycle . 汤姆 把 玛丽 放到 他 的 摩托车 背上 送到 医院 . +Be nice to others . 对 他人 要 友善 . +I did not even think of it . 我 連 想都不想 . +I bought two tickets for a concert . 我 买 了 两张 音乐会 的 票 . +I would like to live in New York . 我 想住 在 紐約 . +The law is full of ambiguities . 法律 有 很多 不 明确 的 地方 . +What languages do you speak ? 你 會 說 什麼 語言 ? +Why did you come here this morning ? 今天 早上 你 為 什麼 來 這裡 ? +A bird can fly . 鸟会 飞 . +How long have you been working here ? 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +He told his son an interesting story . 他 給 他 兒子 講 了 一個 有趣 的 故事 . +Do you know how to do that ? 你 知道 怎么 做 吗 ? +Our school library is small , but new . 我们 学校 的 图书馆 很小 , 但是 是 新 的 . +It will rain soon . 天 快要 下雨 了 . +Tom has known Mary since childhood . 汤姆 从小 就 认识 玛丽 了 . +He wants to go to America . 他 想 去 美國 . +You are drinking out of my cup . 你 正在 把 我 杯子 里 的 东西 喝掉 . +The Rhine runs between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +Take your time . 你 可以 慢慢来 . +This is my page on Facebook . 這 是 我 的 Facebook 頁面 . +The average height of girls in this class is over 155 centimeters . 这个 班 的 女生 平均 身高 超过 了 155 公分 . +He erased his speech from the tape . 他 把 他 的 那段 话 从 磁带 里 删除 了 . +You do have choices . 你 有 选择 . +She is busy preparing supper now . 她 現在 正忙 著 準備 晚飯 . +Will you be there ? 你 会 在 那里 吗 ? +I can not believe anyone anymore . 我 再也 无法 相信 任何人 了 . +She will be back within a week . 她 一週 之內 會 回來 . +It is too early to get up . 時間 還 早 不用 起床 . +What is the daily fee ? 每天 费用 多少 ? +It is very hot in the summer in Japan . 日本 的 夏天 很 热 . +Call me at six tomorrow morning . 明天 早上 6 点 给 我 打电话 . +Please do not cry . 请 你 不要 哭 . +He asked his friends for help . 他 尋求 他 的 朋友 的 幫助 . +I cheered myself up by listening to music . 我 藉由 聽 音樂 來 鼓舞 我 自己 . +Do you still want to talk to me ? 你 还 想 跟 我 谈 吗 ? +Tom probably knows how to get to Mary is house . 湯姆 大概 知道 要 怎麼 去 瑪莉 家 吧 . +Fluency in English is a must . 流利 的 英語 是 必須 的 . +I do not like children . 我 不 喜欢 小孩 . +She was wearing pumps . 她 穿著 舞鞋 . +In a few minutes we will be landing at New Tokyo International Airport . 我们 将 于 几分钟 内 降落 在 新 东京国际 机场 . +I am taking an exam in January . 我 一月份 要 参加考试 . +Software is constantly evolving . 软件 正在 不断 进化 . +Which is your book ? 哪 本 是 您 的 書 ? +Follow him . 跟著 他 走 . +My hand was burned . 我 的 手 烧伤 了 . +Tom died in a traffic accident . 湯姆死 於 交通事故 . +Have you found your ticket yet ? 你 找到 你 的 票 了 吗 ? +The animals died one after another . 動物 一個 接 一個 的 死亡 . +They do not seem to be Americans . 他們 似乎 不是 美國 人 . +Do not worry about such a thing . 不要 擔心 這樣 的 事情 . +I am three years younger than you . 我 比 你 小 三歲 . +My daughter wants a kitten . 我 女儿 想要 一只 小猫 . +She married her classmate . 她 跟 她 的 同學 結婚 了 . +Could I have a pillow and blanket ? 給 我 一個 枕頭 和 毛毯 好 嗎 ? +Where is the police station ? 警察局 在 哪里 ? +Where is the hammer ? 锤子 在 哪里 ? +Is this your pen ? 這 是 你 的 筆 嗎 ? +I made an abstract of a book . 我 為 一本 書 寫 了 內容 提要 . +They sell candy . 他們 賣 糖果 . +She was only frightened , not injured . 她 只是 被 嚇到 了 並 沒有 受傷 . +You made me laugh . 我 被 你 逗乐 了 . +I take the train to work every day . 我 每天 搭 火車 上班 . +My fingers are so numb with cold that I can not play the piano . 我 的 手指 冻僵 了 , 以至于 无法 弹钢琴 了 . +Tom will not even know what you did until it is over . 汤姆 不到 最后 不会 知道 你 做 了 什么 . +I arrived later than usual . 我 比 平常 晚 到 . +Can you find it ? 你 能 找到 它 嗎 ? +I went camping with my family . 我 和 家人 去 露營 . +Needless to say , fundamental human rights should be respected . 無須 多 言 , 基本 人權 應當 被 尊重 . +I was out of town on vacation . 我 出 城 度假 了 . +There is always someone talking . 總是 會 有人 談論 . +Please fill out this form first . 請 先 填寫 這 張 表格 . +This smells great ! What are you cooking ? 聞 起來 好 香 喔 . 你 在 煮 什麼 ? +He went out in spite of the rain . 尽管 下着雨 , 他 还是 出去 了 . +We are special . 我们 是 特别 的 . +Tell her to come at noon . 让 她 中午 过来 . +I will send a letter to my mother . 我会 给 我 的 母亲 寄 封信 . +I looked for him in the supermarket . 我 在 超級 市場 裡 找 他 . +How did you know all that ? 你 怎麼 全都 知道 ? +They buried him in the graveyard by the church . 他們 把 他 埋葬 在 教堂 旁 的 墓園 . +I wish I could live near your house . 我 希望 住 在 你家 附近 . +Let is fly a kite . 讓 我們 放 風箏 . +I got up at seven . 我 7 点 起床 了 . +He was born in Africa . 他 出生 在 非洲 . +How do you like your eggs done ? 您 要 什麼樣 的 蛋 ? +Why do you even care about this ? 你 怎麼 還 關心 這個 ? +I am feeling blue today . 我 今天 的 心情 不好 . +Is the bank open ? 銀行 開著 嗎 ? +When he shouted , the veins in his neck stood out clearly . 当 他 咆哮 时 , 他 脖子 上 青筋 暴起 . +Did you phone Tom ? 给 汤姆 打 过 电话 了 吗 ? +Tom told me where he lived . 湯姆 告訴 我 他 住 在 哪裡 . +It is exactly as you say it is . 它 跟 你 說 的 完全 一樣 . +Where do you suppose you will spend your vacation ? 你 认为 你 会 到 哪儿 度假 ? +The vacation is over now . 现在 假期 结束 了 . +The first attack missed the target . 第一次 攻击 错过 了 目标 . +Do you have any brothers ? 你 有 兄弟 吗 ? +Every dog has his day . 凡人 皆 有 得意 时 . +That is the reason I bought this book . 那 是 我 買 這 本書 的 原因 . +You took the wrong key . 你 拿 错 钥匙 了 . +Tom put a lot of honey on his toast . 汤姆 往 他 的 吐司 上放 了 许多 蜂蜜 . +Today is the 3rd . 今天 三號 . +How did you spend your winter vacation ? 你 的 寒假 怎么 过 的 ? +I asked him about the accident . 我 問 他 關 於 這個 意外 的 事 . +You are very brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +She gave the door a gentle push . 她 輕輕地 推 了 門 . +I have been busy repairing things . 我 一直 在 忙 着 修 东西 . +My father bought me a new bicycle . 父親 買 了 一輛 新 自行 車 給 我 . +I think this book is worth reading . 我 覺得 這 本書 值得 一 讀 . +I really have to go . 我 真的 得 走 了 . +I generally walk to school . 我 通常 走 去 学校 . +I like walking at night . 我 喜歡 在 夜晚 走路 . +After walking for an hour , we stopped to take a rest . 走 了 一個 小 時 後 , 我們 停下 來 休息 . +I got it free . 我 是 免費 得到 的 . +I told you never to come here again . 我 告诉 过 你 不要 再 来 这里 了 . +English is useful in diplomacy and tourism . 英語 在 外交 和 旅遊 業 方面 很 有用 . +I respect Tom . 我 尊敬 湯姆 . +I know that it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +My father has been to Australia twice . 我 父親 曾經 去過 澳洲 兩次 . +I am determined to be a scientist . 我 決心 要成 為 一名 科學家 . +Nobody should be worried . 沒人應 該 擔心 . +I am having some problems compiling this software . 我 编译 这个 程序 有些 困难 . +It is more polite to say thin than skinny . 说 苗条 比 说 瘦 更 有 礼貌 . +There is a long wait between trains . 在 火车 的 间隔 中 有 漫长 的 等待 . +I have no idea of what is going on in there . 我 不 清楚 這裡 發生 了 什麼 事 ? +He was an excellent scientist , and what is more , was a great poet . 他 是 一位 優秀 的 科學家 , 更是 一位 偉大 的 詩人 . +I have never been to New York , and my sister has not , either . 我 从没 去过 纽约 , 我 妹妹 也 没有 . +I gave careful consideration to the problem . 我 仔細 地 考慮 了 這個 問題 . +I was watching TV when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +When you pose a question , you expect an answer . 當 你 提出 一個 問題 , 你 期望 得到 答案 . +The boy lay listening to the radio . 男孩 躺 着 听 收音机 . +Please eat some cake . 请吃 点 蛋糕 . +Basketball is a lot of fun . 篮球 可 真是 有意思 . +A cup of tea , please . 请 给 我 一杯 茶 . +You might not like this beer at first . It is an acquired taste . 剛 開始 的 時候 你 可能 不 會 喜歡 這個 啤酒 . 這 是 需要 多次 品嚐 去 習慣 它 的 口味 . +Tom will probably be there . 湯姆 可能 會 去 那裡 . +He wrote the report . 他 寫 了 這份 報告 . +Tom has a 13 @-@ year @-@ old daughter . Tom 有個 十三 歲 的 女兒 . +It is a good idea . 这 是 个 好 主意 . +We had a late lunch at two . 我們 在 兩點鐘 很 晚 才 吃 午餐 . +This is a wooden table . 这 是 张 木桌 . +Who does the cooking in your home ? 你 家里 谁 做饭 ? +Can you pass me the milk ? 可以 把 牛奶 递给 我 吗 ? +He heard a shout . 他 聽到 了 叫 聲 . +I stayed up late last night . 我 昨晚 睡得 晚 . +I have not yet finished my homework . 我 还 没 做完作业 . +I usually get up at 6 : 00 . 我 一般 六点 起床 . +I wish they would stop fighting . 我 希望 他們 會 停止 戰鬥 . +They looked as if they would cry . 他們 看 起來 好像 要 哭 了 . +Please turn off the TV . 請 把 電視 關掉 . +Tom studies hard . 汤姆 努力学习 . +I can not stand it . 我 不能 忍受 . +Tom is in Boston on business . 汤姆 因为 工作 现在 在 波士顿 . +I am not going to give up . 我 不会 放弃 的 . +Tom did not have time to finish his report . 湯姆 沒 時間 完成 報告 . +Release him . 放开 他 . +He went to America to study medicine . 他 去 美国 学医 了 . +Tom is a Boston native . 湯姆 是 波士 頓 本地人 . +Do not stay in the sun too long . 不要 在 陽光 下 逗留 太久 . +I overslept because my alarm did not go off . 因为 闹铃 没有 响 , 所以 我 继续 睡下去 了 . +Do not let children play in the road . 别 让 孩子 们 在 马路 中间 嬉戏 . +I do not want any bananas at all . 我 一點 也 不要 香蕉 . +Check Tom is pulse again . 再 检查一下 汤姆 的 脉搏 . +I will never tell anyone where I have hidden the treasure . 我 不 會 告訴 任何人 我 藏宝 的 地方 . +He absconded with the money . 他 携款 潜逃 . +They are arriving here soon from Hong Kong . 他们 就快 从 香港 抵达 了 . +You forgot to turn off the light . 他 忘 了 關燈 . +Who were you talking to ? 你 跟 誰 說 話 呢 ? +Would you like tea or coffee ? 您 想要 茶 还是 咖啡 ? +I do not speak Japanese . 我 不 說 日 語 . +An eye for an eye , a tooth for a tooth . 以 眼 還 眼 , 以 牙 還 牙 . +I am grateful for that . 我 对 那事 很 是 感激 . +Will you excuse us for a moment ? 你 会 暂时 原谅 我们 吗 ? +We talked over the phone . 我們 電話 裡 說 . +The earthworm wriggled when I touched it . 我 碰 蚯蚓 的 时候 , 它 扭动 起来 . +I am playing volleyball now . 我 现在 在 打 排球 . +Sorry , that was none of my business . 對 不起 , 那 不關 我 的 事 . +Tom told me that he will not come to school tomorrow . 汤姆 告诉 我 他 明天 不 来 上学 . +I do not meet him so often . 我 不常 見到 他 . +The well ran dry . 這 口 井 乾 涸了 . +That is the village I was born in . 这 就是 我 出生 的 村庄 . +The girl resembles her mother . 這個 女孩 酷似 她 的 母親 . +She is giving a party tonight . 她 今晚 舉行 派 對 . +This book is really old . 這 本書 真的 很舊 . +Tell me what happened . 告訴 我 發生 了 什麼 事 . +She is not afraid of death . 她 不怕死 . +Everyone , say cheese . 所有人 , 都 请 说 cheese . +He did not study at all . 他 根本 就 没有 学习 . +Please pull over . 请 把 车 停下来 . +I need a good pair of sunglasses . 我 需要 一副 好 的 太陽 眼鏡 . +The beach is an ideal place for children to play . 海滩 是 一个 供 孩子 们 玩乐 的 理想 场所 . +She is sitting on the bench . 她 坐在 長椅 上 . +Are you all ready ? 你們 都 準備 好 了 嗎 ? +Can I ask you some questions ? 我 能 問 你們 一些 問題 嗎 ? +He is unfit to be a teacher . 他 不 适合 当 老师 . +I expect your help . 我 期待 你 的 幫助 . +Is this really worth it ? 这样 真的 值得 吗 ? +The bathtub was filled with hot water and flower petals . 浴缸 裡 滿 是 熱水 和 花瓣 . +I am tall . 我 个子 高 . +You are responsible for the result . 你 要 对 结果 负责 . +I had no choice but to accept the offer . 除了 接受 报价 , 我 别无选择 . +This is my bag . 那 是 我 的 包 . +I believe Tom is right . 我 相信 湯姆 是 對 的 . +My brother can drive a car . 我 哥哥 會 開車 . +I did not mean to wake you . 我 沒 打算 叫醒 你 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +I love her so much that I can not leave her . 我 如此 地 愛 她 所以 我 無法 離開 她 . +I like oranges better than apples . 我 喜歡 橘子 勝 過 蘋果 . +There was not a soul in sight . 一個 人影 也 看不到 . +It was my duty to do that . 做 那事 是 我 的 责任 . +He had a book on physics published . 他 有 一本 關於 物理 學 的 書 被 出版 了 . +That is not important , is it ? 那 不 重要 , 不是 么 ? +I am not sure what I was thinking . 我 不 确定 当时 我 正在 想 什么 . +I will give you a bicycle for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +I waste a lot of time daydreaming . 我 浪費 了 很多 時間 作 白日 夢 . +Step aside . 让开 . +I am not really sure what Tom meant . 我 不 清楚 湯姆 是 甚麼 意思 . +My aunt made me a new skirt . 我 姑姑 做 了 一條 新 裙子 給 我 . +I was in the garden all afternoon . 我 整个 下午 都 在 花园里 . +Tom freed the bird . Tom 將鳥 放走 . +Tom was just as excited as Mary . 汤姆 就 和玛丽 一样 兴奋 . +Several cottages have been isolated by the flood water . 好几间 小屋 被 洪水 孤立 起来 了 . +I have never thought of that . 我 從來 沒有 想到 這 一點 . +I can not live without TV . 没有 电视 , 我 无法 生活 . +The problem is that solar energy costs too much . 問題 是 , 太陽 能 太 貴 了 . +She came back an hour later . 一个 小时 后 , 她 返回 了 . +All I want now is a little sleep . 我 现在 只 想 睡 点 觉 . +It is obvious . 它 是 明顯 的 . +Kobe is famous as a port city . 科比 是 一個 著名 的 港口城市 . +I could not control my anger . 我 不能 控制 我 的 愤怒 . +Long skirts are out of fashion now . 現在 長裙 過時 了 . +That requires careful consideration . 這 需要 慎重 考慮 . +I will take care of it . 我 會 關照 它 的 . +Your time is running out . 你 的 时间 快用 完 了 . +What would you like for dessert ? 你 要 什麼 甜點 ? +I do not wash my hair in the morning . 我 早上 不 洗头 . +Please take more care in the future . 以后 请 注意 点 . +He is two years older than you . 他 比 你 大 兩歲 . +My mother was an alcoholic . 我 母亲 是 个 酒鬼 . +They are plotting to kill the king . 他們 正密 謀要 殺害 國王 . +Tom has always been a bachelor . 汤姆 一直 都 是 单身汉 . +It is been snowing all night . 雪 下 了 一整夜 . +How annoying ! 真 烦人 . +If you stay at a big hotel , you can use their swimming pool . 若 你 住 到 的 是 大 的 旅館 , 就 能 使用 他們 的 游泳池 . +Do you know why it is happening ? 你 知道 为什么 它 正在 发生 吗 ? +She was listening to music . 她 听 着 音乐 . +She went to Italy to learn Italian . 她 到 意大利 學習 意大利 語 . +Do you have children already ? 你 已經 有 孩子 了 嗎 ? +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +I broke the lock opening the door . 我 开门 的 时候 弄坏了 锁 . +What were you doing at that time ? 當時 你 在 做 什麼 ? +She did not visit me on Sunday but on Monday . 她 沒有 在 星期天 來 找 我 , 而是 星期一 . +I am going to drop in on her next week . 下禮 拜 我 要 去 拜訪 她 一下 . +Who is your teacher ? 谁 是 你 老师 ? +Tomorrow is going to be a big day . 明天 是 个 大 日子 . +Wake me up at seven . 七点 叫醒 我 . +Your plan sounds great . 你 的 計劃 聽 起來 很 不錯 . +I am afraid I can not help you . You must ask someone else . 我 担心 可能 帮不了 你 , 你 需要 找 其他人 帮忙 . +We talked about a variety of topics . 我們 談 了 各種 話題 . +Come whenever you want to . 什么 时候 想来 就 过来 吧 . +Give me something to do . 给 我 点 事 做 . +Not a star was to be seen . 沒 看到 任何 一顆 星星 . +It is up to you . 由 你 來 決定 . +Where did it come from ? 它 从 哪里 来 ? +Classes begin next week . 课程 下周 开始 . +Christmas is a special holiday . 聖誕節 是 一個 特別 的 節日 . +The dog growled at a little boy . 這 隻 狗 對 著 一 個 小男孩 咆哮 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 碗碟 . +Mt . Fuji can be seen from here . 從 這裡 可以 看到 富士山 . +There used to be a lot of frogs in this pond . 以前 在 這個 池塘 裡 有 許多 青蛙 . +His letter makes me uneasy . 他 的 来信 让 我 不安 . +I gave Mary a book . 我 給 了 瑪麗 一本 書 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +If her nose were a little shorter , she would be quite pretty . 若 她 的 姿態 能 再 低 一點 就 更 完美 了 . +Is your family doing well ? 你 的 家人 好 么 ? +She tried to commit suicide . 她 企圖 自殺 . +I had hardly left home when it began to rain heavily . 當雨 開始 下得 很大 的 時候 , 我 幾乎 不能 出門 了 . +The sun was shining , yet it was cold . 虽然 有 阳光 照射 , 但 还是 很 冷 . +Tom bought some flowers for Mary . 湯姆 給 瑪麗 帶 了 些 花 . +She will love her husband forever . 她 會 永遠 愛 她 的 丈夫 . +The only sound to be heard was the ticking of the clock . 唯一 能 听到 的 声音 是 钟 的 滴答声 . +I can not focus on two things at the same time . 我 不能 同時 注意 两件事 . +Tom lost his only son in a car accident . 汤姆 在 一场 车祸 中 失去 了 他 的 独子 . +He placed emphasis on the importance of education . 他 强调 了 教育 的 重要性 . +This book is full of mistakes . 這 本書 充滿 了 錯誤 . +Here we are ! 我們 到 了 ! +Everyone is waiting for Tom . 每個 人 都 在 等 湯姆 . +That bag is mine . 那 是 我 的 包 . +What do you like to do in your free time ? 你 空闲 时间 喜欢 做 什么 ? +You have to go to the hospital . 你 必須 去 醫院 . +I want to stay in a hotel near the airport . 我 想住 在 機場 附近 的 旅館 裡 . +That is our house . 那 是 我們 的 房子 . +I know that feeling . 我 知道 那種 感覺 . +The thunder scared the children . 雷聲 嚇到 孩子 了 . +Which book is yours ? 哪 本書 是 您 的 ? +Sir , that CD is available only by special order . 先生 , 那 盘 CD 需要 预定 才 有 . +A drunk driver was responsible for the car accident . 喝醉 的 驾驶员 对 车祸 有 责任 . +I am not a junior high school student . 我 不是 個 初中生 . +Thank you for coming to meet me . 謝謝 你 來 跟 我 見 面 . +Everything went black . 一切 都 變成 了 黑色 . +Tom decided to stay with Mary . 汤姆 决定 陪 玛丽 在 一起 . +May I open my eyes now ? 我 現在 能 睜 眼 嗎 ? +Tom took over after I left . 我 走 了 后 汤姆 接手 了 . +Cool down . 冷静 点 . +What will tomorrow is weather be like ? 明天 天氣 怎麼樣 ? +You are working too hard . Take it easy for a while . 你 工作 太 勤奋 了 . 休息 一会 吧 . +Tom is able to come to our party tomorrow . 汤姆 明天 能 来 我们 的 聚会 . +Shall we walk ? 我们 该 步行 吗 ? +It is not a cat . It is a dog . 它 不是 猫 . 它 是 狗 . +I do not know for certain when he will come . 我 不 知道 他 来 这里 的 确切 时间 . +I am sad without you . 沒有 你 我 很 悲傷 . +Was there anyone in the room ? 房间 里 有人 吗 ? +Are there problems at home ? 在家 裡 有 問題 嗎 ? +There was no one there besides me . 那儿 除了 我 , 一个 人 都 没有 . +Lots of companies have implemented an eight @-@ hour working day . 很多 公司 實行 8 小 時 工作制 . +That was the first time I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I hope you will soon get well . 我 希望 您 快 就 会 好 起来 . +I see a book . 我 看到 一本 書 . +I use this . 我 使用 这个 . +What is this ? 這 是 什麼 啊 ? +She gave out a sigh of relief . 她 鬆 了 一口 氣 . +I am sure you will never regret it . 我 確定 你 永不 後 悔 . +Put the chair in front of the desk . 把 椅子 放在 桌子 前面 . +His sad story touched my heart . 他 悲伤 的 故事 触动 了 我 的 心 . +If he is fluent in English , I will hire him . 如果 他 說 得 一口 流利 的 英文 , 我 就 請 他 為 我 工作 . +This sofa takes up too much space . 這 張沙 發占 了 太 多 空間 . +Everybody knows that he is honest . 大家 都 知道 他 是 誠實 的 . +He worked in a big city hospital . 他 在 一間 很大 的 市立 醫院 工作 . +I love nature . 我 愛 大自然 . +How was your trip ? 你 的 旅行 怎么样 ? +He is familiar with Japanese culture . 他 熟悉 日本 文化 . +Is she Japanese ? 她 是 日本 人 嗎 ? +It will definitely rain . 绝对 将要 下雨 . +This ticket is good for three days . 这 张 票 三日 有效 . +I will be at the meeting . 我会 出席会议 的 . +Get into your car . 进 你 的 车里 . +I know that money is not everything . 我 知道 金钱 不 代表 一切 . +Where do you want to go today ? 你 今天 想 去 哪儿 呀 ? +Wood floats . 木头 会 漂浮 . +This clock is not working . 这 表不走 了 . +My mother likes tea very much . 我 媽媽 很 喜歡 茶 . +The students all laughed . 學生 都 笑 了 . +I told you to stop , did not I ? 我 告訴 了 你 停下 來 , 不是 嗎 ? +Although I was tired , I did what I was able to do . 雖然 我 很 累 , 但是 我 已經 做 了 我 能 做 的 了 . +Do not complain . You have to go . 別 抱怨 了 . 你 必須 去 . +I found out where she was . 我 弄清楚 她 在 哪儿 了 . +I will ask him tomorrow . 明天 我会 问 他 的 . +What is the last thing you remember ? 你 能 记 起来 的 最后 一件 事 是 什么 ? +Would you do me a favor ? 你 能 幫 我 一個 忙 嗎 ? +Come on , trust me . 来 吧 , 相信 我 . +Prices depend on supply and demand . 價格 取決 於 供給 和 需求 . +Where is your house ? 你們 家 在 哪 ? +I love you more than anyone else . 我爱你 胜过 其他 任何 一个 人 . +I bought her a new car . 我 给 她 买 了 辆 新车 . +We got up at dawn to avoid a traffic jam . 我们 黎明 时 起床 以 避开 交通堵塞 . +He is not an idiot . 他 不是 傻 的 . +I am listening to the radio . 我 在 聽 收音 機 . +Tom and Mary have been here for three hours . 湯姆 和 瑪麗 已經 在 這裡 待 了 三個 小 時 . +Where can I go to get a map of Europe ? 去 哪里 可以 买 到 欧洲 的 地图 ? +She died on a cold night in December . 她 在 一个 寒冷 的 十二月 晚上 死 了 . +I will not know until I talk to Tom . 我 不 跟 湯姆 說 就 不 知道 . +I really appreciate what you have done . 我 真的 很 感激 你 所 做 的 一切 . +Where does it hurt ? 哪裡 痛 ? +This is where Tom wants to live . 这 就是 汤姆 想住 的 地方 . +Tom is married to a Canadian named Mary . 汤姆 和 一个 叫 玛丽 的 加拿大人 结婚 了 . +He entered my room without permission . 他 未經 允許 進 了 我 房間 . +This is my notebook . 這 本 是 我 的 筆記 本 . +I hope that Mary passes the examination . 我 希望 瑪麗 通過 考試 . +Would you mind lending me your car ? 你 介意 把 你 的 車 借 給 我 嗎 ? +Prices are double what they were ten years ago . 价钱 是 10 年前 的 2 倍 . +It is easy for a monkey to climb a tree . 对 猴子 来说 , 爬树 很 容易 . +He fell down on the floor . 他 摔倒 在 地 . +I do not go to school by bus . 我 不 乘 公交 去 学校 . +Let is wait till he comes back . 等到 他 回来 吧 . +I was waiting for a taxi . 我 等 着 出租车 . +Do you know him ? 你 认识 他 吗 ? +I always take a bath before going to bed . 我 睡觉 前 总要 洗 个 澡 . +There is a kite flying above the tree . 有 一只 风筝 在 树上 . +He sometimes makes dinner for us . 他 有 時 煮 晚 飯 給 我們 吃 . +Tom wondered why Mary was crying . 汤姆 奇怪 为什么 玛丽 哭 . +You win . 算你狠 . +Give me an orange . 給 我 一個 橙子 . +Tom is from Australia and Mary is from New Zealand . 汤姆 来自 澳大利亚 , 玛丽 来自 新西兰 . +How do you heat the house ? 您 怎么 让 屋子 暖 起来 ? +She kept working . 她 不停 地 工作 . +You do not have to work on Sundays . 你 週日 不必 工作 . +God created the heaven and the earth . 上帝 創造 了 天地 . +I want a boat . 我 想要 一艘船 . +Nobody asked . 没 人 问 过 . +We ought to obey the law . 我们 必须 遵纪守法 . +Can you really not swim ? 你 真的 不 會 游泳 嗎 ? +It took me more than two hours to translate a few pages of English . 翻译 几页 英文 花 了 我 2 个 多 小时 . +How is the weather ? 天氣 怎樣 ? +The law is quite clear . 法律 很 清楚 . +You had better go to the dentist is . 你 最好 去 看 牙 醫 . +Who will provide capital for the venture ? 谁 来 为 风险投资 提供 资金 ? +Tom has never been in prison . 湯姆 從 沒進 過 監獄 . +Let me see . 让 我 想一想 . +Why can not Tom come to us ? 為 甚麼 湯姆 不能 來 我們 這裡 ? +The toilet does not flush properly . 厕所 冲水 不 正常 . +Maybe I should go help Tom . 或許 我 該 去 幫 湯姆 . +They can not see me . 他們 看 不 見 我 . +There is too much salt in this soup . 这 汤 里 盐 放多 了 . +What exactly does Tom do ? 汤姆 究竟 在 做 什么 ? +It would appear that you are wrong . 你 似乎 错 了 . +Why do not you sit down and relax ? 你 為 什麼 不 坐下 來 放 鬆 一下 . +You have nice skin . 你 的 皮膚 真好 . +He failed in his attempt to swim across the river . 他 试图 游 过河 , 但是 失败 了 . +I go to work every day . 我 每天 去 上班 . +Mary came in . 瑪麗 進來 了 . +The police arrested the suspect . 警方 逮捕 了 嫌疑人 . +There are two zeros in the number " 2010 . " 2010 这个 数字 里 有 两个 零 . +I forgot to ask him . 我 忘 了 問 他 . +I like to travel alone . 我 喜欢 独自 旅行 . +Why do you want to leave today ? 你们 为什么 想 今天 走 ? +If you have a question , please raise your right hand . 如果 有 问题 , 请 举起 你 的 右手 . +Give me some milk , too . 也 給 我 一些 牛奶 . +I hate terrorist organizations . 我 痛恨 恐怖主义 组织 . +What were Tom and Mary doing here ? 湯姆 和 瑪麗 在 這裡 做 了 甚麼 ? +I bought a few eggs and a little milk . 我 买 了 几个 鸡蛋 和 一点 牛奶 . +He received quite a few letters this morning . 今天 早上 他 收到 好多 信 . +Tom no longer trusts Mary . 湯姆 不再 相信 瑪麗 了 . +Do not let Tom leave . 别 让 汤姆 走 了 . +We have two ears . 我們 有兩 隻 耳朵 . +Sometimes adults behave like children . 有时候 成人 表现 得 像 儿童 . +Let them learn from us . 让 他们 向 我们 学习 . +There was a cottage on the side of the hill . 山坡 上 有 一个 茅屋 . +It is time to go . 該 走 了 . +Today is one of my friends ' birthday . 今天 是 我 一个 朋友 的 生日 . +I want to get rid of it . 我 想 擺脫 它 . +At least tell me where you are going . 至少 告诉 我们 你 要 去 哪里 . +I was alone in the classroom . 我 独自 待 在 教室 里 . +Tom , you 'd better stay here . 湯姆 , 你 留在 這裡 比較 好 . +I guess that would be all right . 我 想 那 應 該 沒 關 係 的 . +Tom went back to his bedroom . 汤姆 回到 了 他 的 卧室 . +She was arrested by the police . 她 被 警方 逮捕 了 . +I am ready to do anything for you . 我 甘心 为 你 做 任何 事 . +She made the doll for me . 她 為 我 做 了 這個 娃娃 . +I was not drunk . 我 沒醉 . +The city has a large population . 这个 城市 人口众多 . +I hope Tom is not angry . 我 希望 湯姆 不生 氣 . +Do you feel any better today ? 你 今天 感覺 好多 了 嗎 ? +You are really useless . 你 真 沒用 . +Tom is not paying attention . 汤姆 在 开小差 . +I have a new red car . 我 有 一輛 新 的 紅色 汽車 . +My mother gets up early in the morning . 我 妈妈 早上 早起 . +That goes without saying . 不言而喻 . +We climbed Mt . Fuji last summer . 去年 夏天 我們 爬 了 富士山 . +I have never been abroad before . 我 以前 从没 去过 国外 . +We must follow the rules . 我们 必须 遵守规则 . +There is a military base near here . 這 附近 有 一個 軍事 基地 . +Is this bag yours or his ? 那个 包是 你 的 还是 他 的 ? +There are many different people in Europe . 在 欧洲 有 许多 不同 的 人 . +After a storm comes a calm . 否極 泰 來 . +Stand up . 起立 . +I give up . 我 放弃 . +Tom was in Boston last weekend . 湯姆 上 週末 在 波士 頓 . +Tom was there this morning . 汤姆 早上 去过 那里 . +Am I overreacting ? 我 反应 过度 了 吗 ? +Can I speak with the teacher ? 我 能 和 老师 说话 吗 ? +The man is naked . 那人 沒 穿衣服 . +I think what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +The sun is larger than the moon . 太陽比 月亮 大 . +It is really dark here . I can not see anything . 這裡 真的 很 暗 , 我什麼 都 看不到 . +When I hear that song , I remember my younger days . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +The book is here . 那本书 在 这里 . +We are sorry we are unable to accept your request . 很 抱歉 , 我们 不能 接受 你 的 要求 . +" Will you have some more coffee ? " " No , thanks . I have had enough . " “ 你 想 再来点 咖啡 吗 ? ” “ 不 , 谢谢 . 我 够 了 . ” +If you hurry you can still make the train . 如果 你 抓紧 , 你 还 能 赶上 火车 . +Tom is hiding a terrible secret . 汤姆 隐藏 着 一个 可怕 的 秘密 . +You can not drink seawater because it is too salty . 你 不能 喝 海水 , 因为 它 太 咸 了 . +I got there in time for the train . 我 准时 赶上 了 火车 . +Let is go to the hospital now . 我们 现在 就 去 医院 吧 . +Let is meet in front of the theater . 讓 我們 在 戲院 前面 碰面 . +The dog attacked the little boy . 這 隻 狗 攻 擊 了 這 個 小男孩 . +Spring is just around the corner . 春天 快 來 了 . +You have to be patient . 你 必須 有 耐心 . +What are you saying ? 你 在 說 什麼 ? +See how high you can jump . 看看 你 能 跳 多 高 . +What time does boarding begin ? 什麼 時候 開始 登機 ? +There must be some way to solve this . 一定 有 解決 的 辦法 . +I do not need to do anything . 我 什么 都 不用 做 . +I want to go wherever you are going . 我 想 去 你 要 去 的 地方 . +My grandmother lives by herself . 我 祖母 獨自 生活 . +She got to the station at seven . 她 七點鐘 到 車站 . +We are encouraged to use our imagination . 我們 被 鼓勵 使用 想像力 . +Please knock before entering . 进来 之前 请 敲门 . +France is to the south of England . 法國 在 英國 的 南邊 . +Put the book back where it was . 把 書 放回 它 原來 的 地方 . +She is older and wiser now . 她 現在 更加 年 長 也 更加 有 智慧 . +Please leave everything to me . 請 把 所有 的 東西 留給 我 . +Tom is coming to our school tomorrow . 湯姆 明天 會來 我們 的 學校 . +Tom tried to return the swimsuit for a larger size , but the clerk told him that was not allowed . 汤姆 试过 还 回 泳衣 来 换成 更 大 一号 的 , 但是 员工 告诉 他 那 是 不 被 允许 的 . +He was sitting between Mary and Tom . 他 坐在 瑪麗 和 湯姆 之間 . +Social customs vary from country to country . 国家 不同 , 习俗 各异 . +You should make good use of this opportunity . 你 要 好好 把握 這個 時機 . +You are working too hard . Take it easy for a while . 你 工作 得 太 辛苦 了 . 放 輕 鬆 一下 . +Stop , or I will shoot . 停止 , 不然 我 就 開槍 了 . +This book is small . 这 本书 小 . +He is used to getting up early . 他 習慣 早起 . +Do you have a soup bowl ? 你 有 碗 盛 湯 嗎 ? +It is a pity that you can not join us . 你 不能 和 我們 一起 來 真 可惜 . +She is weak by nature . 她 天生 体弱 . +Draw a circle . 画 一个圈 . +Trees do not grow on prairies . 樹 不 會 長 在 草原 上 . +Shouting at your computer will not help . 對 你 的 電腦 吼 一點 幫助 也 沒有 . +We watched the children play . 我们 看着 这 孩子 玩耍 . +We have to obey the rules . 我们 必须 遵守规则 . +His room was covered with dust . 他 的 房間 佈 滿 了 灰 塵 . +She has a round face . 她 有 张 圆脸 . +I only wanted to do some good . 我 只 想 做好事 . +The ticket is good for three days . 这 张 票 三日 有效 . +The house is haunted . 這 房子 鬧 鬼 . +Please conduct yourself with dignity . 请 自重 . +The assignment took me longer than I had expected . 我 用 了 比 我 预期 更 长 的 时间 来 完成 作业 . +How about you ? 那 你 呢 ? +I dislike big cities . 我 不 喜歡 大城市 . +I no longer love you . 我 不再 爱 你 了 . +We will have lived here for two years next April . 到 明年 四月 我们 住 在 这儿 就 满 两年 了 . +I do not know if you feel the same as I do . 我 不 知道 你 是否 和 我 有 一样 的 感觉 . +Tom is clean . 湯姆 是 干净 的 . +I want to eat ice cream . 我 想 吃 冰 淇 凌 . +He was in good spirits . 他 精神 很 好 . +He put his hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +We enjoyed swimming in the river . 我們 喜歡 在 河裡 游泳 . +I did not know that he was there . 我 不 知道 他 在 那裡 . +She showed him to his seat . 她 領 他 到 他 的 座位 上 . +I believed you . 我 信过 你 . +Tom is three years younger than Mary is . 汤姆 比 玛丽 小 三岁 . +That is really a great idea . 真是 个 好 主意 ! +Can I pay by credit card ? 我 可以 用 信用卡 付 帳 嗎 ? +Your tie looks good . 你 的 領帶 不錯 . +Her speech moved the audience . 她 的 演说 感动 了 听众 . +She looked after the children . 她 照顧 孩子 們 . +It was foolish of you to accept his offer . 你 真笨 去 接受 他 的 提議 . +Everyone who knew him admired him . 每 一個 認識 他 的 人 都 愛慕 他 . +I ate apples . 我 吃 了 蘋果 . +I hate when other people make me wait a long time . 我 讨厌 别人 让 我 等 很久 . +English is useful in commerce . 英語 在 商業 中 很 有用 . +Did you grade the tests ? 你 給 測驗 評分 了 嗎 ? +Are you busy ? 你 忙 嗎 ? +I saw a beautiful waterfall there . 我 看见 那儿 有个 很 美的 瀑布 . +Could you teach me how to play the piano ? 您 能 教 我 弹钢琴 吗 ? +I was brought up by my grandmother . 我 被 我 的 祖母 撫養 長大 . +Please keep this secret . 請 保守 這個 秘密 . +This is my new guitar . 这 是 我 的 新 吉他 . +Singing is her strong point . 唱歌 是 她 的 强项 . +This is a kind of watermelon . 这 是 一种 西瓜 . +Tom was puzzled by what Mary said . 汤姆 被 玛丽 说 的话 给 难倒 了 . +Are there any English magazines in this library ? 這間 圖書館 有 任何 英語 雜 誌 嗎 ? +Tom only wears a suit on special occasions . 湯姆 只 在 特殊 場 合穿 西裝 . +A great number of books are published every year . 每年 都 有 大量 新书 出版 . +He is studying . 他 在 讀書 . +I would like to buy a house . 我 想 买 套 房子 . +He asked the man to help him . 他 叫 那个 男人 帮助 他 . +Do you like school ? 你們 喜歡 學校 嗎 ? +I have numerous books on my bookshelf . 我 有 大量 的 书 在 我 的 书架上 . +I am staying with a friend . 我 和 一位 朋友 住在一起 . +Could you translate this sentence ? 你 能 翻译 这个 句子 吗 ? +Do you like Japanese food ? 你 喜歡 日本料理 嗎 ? +Is his pulse regular ? 他 的 脈搏 正常 嗎 ? +He was very old . 他 很 老 . +Dad gave me a book , and my little brother gave me a pen . 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 一枝 筆 . +I have to take the book back to the library today . 我 今天 必須 把 書 還 給 圖書館 . +He was paid 10,000 dollars . 有人 付给 他 10000 美元 . +Hunger is the best sauce . 对于 一个 饥饿 的 人 来说 , 任何 食物 都 是 美味 . +How would you like your eggs ? 请问 鸡蛋 要 什么 做法 ? +Married people sometimes wish they were single . 已婚 的 人 有 時候 希望 他們 是 單身 , . +It happens occasionally . 它 偶尔 会 发生 . +The old man sat down . 老人 坐 了 下来 . +Tom got angry at the children . 湯姆 對 孩子 們 生氣 . +Skating is one of my hobbies . 滑冰 是 我 的 嗜好 之一 . +Tom , what would you like to have for dinner ? 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +I am not guilty . 我 没有 罪 . +Tom did not take his shoes off . 汤姆 没 脱鞋 . +The police officer arrested the burglar . 警官 逮捕 了竊 賊 . +I love her . 我 愛 她 . +Tom probably wanted to go swimming . 湯姆 可能 想 去 游泳 . +Tom needs the money . 湯姆 需要 錢 . +Do what you think is best . 做 你 所 想 的 是 最好 的 . +Something is wrong with my typewriter . 我 的 打字 機 好像 有什麼 問題 . +Back in high school , I got up at 6 a.m. every morning . 以前 讀 高中 的 時候 ﹐ 我 每天 早上 六點 起床 . +Bears can climb trees . 熊会 爬树 . +He looks young . 他 看起来 很 年轻 . +Tom said he will ask Mary to do that . 湯姆 說 他 會 讓 瑪麗 去 做 . +Maybe he will be a good teacher . 也許 他 會 是 一個 很好 的 老師 . +Take the road on the right . 走 右邊 的 道路 . +Would you please wait for a few minutes ? 能 不能 请 你 等 几分钟 ? +Stars began to appear in the sky . 星星 開始 在 天空 中 出現 . +This story is true . 这个 故事 是 真的 . +How do you want your hair cut ? 你 想 怎麼 剪 你 的 頭 髮 ? +How about going to the movies ? 我们 去 电影院 怎么样 ? +I was bitten by a mosquito . 我 被 蚊子 叮 了 . +Maybe I am just a fool . 可能 我 就是 個 傻子 . +I am not writing a letter . 我 沒 在 寫信 . +You are blushing . 你 脸红 了 . +Did he look like a doctor ? 他 看 起來 像 個 醫生 嗎 ? +Hop in . 跳进来 . +My father goes jogging every morning . 我 父親 每天 早上 都 跑步 . +I work here . 我 在 這裡 工作 . +Will you drive me home ? 你 會 開車 送 我 回家 嗎 ? +What sports do you like ? 你 喜歡 什麼 運動 ? +Tom is car has been stolen . 汤姆 的 汽车 被 偷 了 . +He came from a tiny mountain town . 他 來 自 一個 小 山城 . +The word is unfamiliar to me . 我 对 这个 单词 不熟 . +Many attended his funeral . 很多 人 都 参加 了 他 的 葬礼 . +I wish to visit Egypt someday . 我 希望 有 一天 去 埃及 . +She took care of the children . 她 照顧 孩子 們 . +I will try it again . 我 會 再 試 一次 . +Do you go often ? 您 经常 去 吗 ? +My brother is good at mathematics . 我 哥哥 擅長 數學 . +Are they both the same ? 他们 都 是 一样 的 吗 ? +He does not have any knowledge about American democracy . 他 一点 都 不 知道 美国 的 民主 . +He abandoned all hope . 他 放弃 了 所有 希望 . +I am tired of your complaints . 我 已經 厭倦 了 你 的 投訴 . +That man grabbed the young girl is wrist . 那個 男人 抓住 了 這個 年輕 女孩 的 手腕 . +Welcome home . 欢迎 回家 . +Do not shoot . 停火 . +I worked as a piano tuner for many years . 我 做 钢琴 调音师 很多年 了 . +The police seem to know exactly where we are . 警察 看來 很 清楚 我們 在 哪裡 . +It is delicious . 很 美味 . +What do you usually do in your free time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +I got your letter yesterday . 我 昨天 收到 了 你 的 信 . +Who buys this type of art ? 谁 买 这种 艺术品 ? +I take a walk every day except when it rains . 除了 雨天 我 每天 都 散步 . +He has access to the American Embassy . 他 有权 出入 美国大使馆 . +Would you mind saying that once more ? 請 你 再 說 一次 好 嗎 ? +She eyed the stranger suspiciously . 她 盯著 可疑 的 陌生人 看 . +He was in time for the appointment . 他 及時 赴約 了 . +We live in the United States . 我們 住 在 美國 . +I know he is watching me . 我 知道 他 在 看著 我 . +We failed due to a lack of preparation . 我們 因 缺乏 準備 而 失敗 了 . +I do not know her , nor do I want to . 我 不 认识 她 , 也 不想 认识 . +I agree completely . 我 完全同意 . +Put handcuffs on him . 把 他 铐 上 . +Excuse me , I have to get off at the next stop . 对不起 , 我 要 在 下 一站 下 . +The moon was full last night . 昨晚 月亮 满 了 . +I would like to try on this dress . 我 想 試穿 這件 衣服 . +Please give me a cup of water . 请 你 给 我 一杯 水 . +Why blame Tom ? 为什么 责备 汤姆 ? +Do you read French every day ? 你 每天 读 法语 吗 ? +Tom knows my number . Tom 知道 我 的 號碼 . +Who teaches you French ? 谁 教 你们 法语 ? +I am near the station . 我 在 車站 附近 . +My grandmother has a green thumb . 我 祖母 是 個園 藝 巧手 . +She graduated in 1996 . 她 在 1996 年 畢業 . +Would you like some cream in your coffee ? 你 要 在 咖啡 上加 些 奶油 嗎 ? +He was scared when the monkey jumped at him . 猴子 跳到 他 身上 的 时候 , 他 受到 了 惊吓 . +They are not dead . 他們 沒死 . +Tom is life was changed forever . 湯姆 的 生活 被 彻底 改變 了 . +What did you do last night ? 你 昨天晚上 做 什麼 ? +I 'd do anything for Tom . 我会 为 汤姆 做 任何 事 . +Are you doing anything special ? 你 在 做 什麼 特別 的 事 嗎 ? +He promised to come , but he did not come . 他 保证 过会 来 却 没有 来 . +I do not approve your decision . 我 不 同意 你 的 決定 . +Were you in Boston last summer ? 你 上个 夏季 在 波士顿 吗 ? +Wait for a moment outside the room . 在 房間 外面 等待 片刻 . +May I borrow your car ? 我 可以 借用 你 的 車 嗎 ? +What would you think if I did that ? 如果 我 那么 做 你 会 怎么 想 ? +It must be around here somewhere . 我 想 應該 在 這 附近 . +You seem to be a little under the weather . 你 看上去 不太好 . +She accused me of making a mistake . 她 指責 我 犯 了 錯 . +It is a matter of life and death . 这 是 一个 生 和 死 的 问题 . +Please take a deep breath . 请 深 吸 一口气 . +The moon is already out . 月亮 已經 出來 了 . +Tom could be Canadian . 汤姆 可能 是 加拿大人 . +Tom wanted Mary is phone number , but she refused to give it to him . 汤姆 想要 玛丽 的 电话号码 但是 被 拒绝 了 . +Their father is a taxi driver . 他們 的 父親 是 一個 計程 車司 機 . +The early bird catches the worm . 早起 的 鸟儿 有 虫 吃 . +I have just been to the post office . 我 剛剛 去 了 郵局 . +What have you come here for ? 你们 来 这儿 干嘛 ? +Who is that man ? 那 男人 是 谁 ? +Only a few people understood me . 只有 一些 人 了解 我 . +Not knowing what to say , he remained silent . 因為 不 知道 該 說 什麼 , 他 保持沉默 . +Do not cry . 别哭 . +Ever since she fell in the kitchen , she has not been all there . 自從 她 在 廚房 裡 摔倒 後 , 她 不曾 再 到 那裡 . +Believe it or not , she has three children . 她 有 三个 孩子 , 信不信 由 你 . +Your work is below average . 你 的 工作 表現 低 於 平均水平 . +Call me at 9 : 00 tomorrow . 明天 九点 打电话 给 我 吧 . +He neglected his duties . 他 怠忽 職 守 了 . +Tom is not foolish . 汤姆 不 傻 . +He was completely engrossed in the book . 他 完全 沉浸 在 書裡 . +What will you make ? 你 會 做 什麼 ? +I want to travel with you . 我 想 和 你 去 旅行 . +I do not know how to handle children . 我 不 知道 如何 對待 孩子 . +The doctors are looking at an x @-@ ray . 医生 在 观察 X光 片 . +As far as I know , there is nothing wrong with his plan . 據 我 所知 , 他 的 計畫 沒有 出差 錯 . +How dare you say that ! 你 怎么 敢 那么 说 . +I will tell Tom you said that . 我 會 告訴 湯姆 你 說 了 那話 . +Stock prices plunged to a record low . 股票 價格 跌 至 歷史 新低 . +You will not be late , will you ? 你 不 會 遲 到 , 是 嗎 ? +When the cat is away , the mice will play . 貓兒 不 在 , 老鼠 玩 的 輕 鬆 自 在 . +Where is my father ? 我 父亲 在 哪里 ? +This car handles very easily . 这 车 容易 开 . +I think you should get more rest . 我 觉得 你 应该 多 休息 一会儿 . +Is this something you want ? 这 是 你 要 的 吗 ? +Each student has a locker . 每個 學生 都 有 一 櫃子 . +I wish I could give up smoking . 我 希望 能够 戒烟 . +She likes cooking for her family . 她 喜欢 为 她 的 家人 做饭 . +Can you speak French well ? 你 法语 说得好 吗 ? +Tom can not get his car started . 汤姆 没法 发动 他 的 车 . +Are you friends ? 你們 是 朋友 嗎 ? +Let me have a look . 讓 我 看看 . +This book is easy to read . 這 本書 很 容易 讀 . +I can not help feeling sorry for him . 我 不禁 為 他 感到 難 過 . +Spanish is her mother tongue . 西班牙语 是 她 的 母语 . +Someone is watching . 有人 在 监视 . +I gave it to the little boy . 我 把 它 給 這個 小男孩 . +Come on in . 进来 . +It was lucky for you that you found it . 你 很 幸運 找到 了 它 . +He is going to be an engineer . 他 將 成為 一名 工程 師 . +It is no use your begging him for help . 你 求 他 帮忙 没有 用 . +There are three of us . 我們 是 三個 人 . +With a firm goal in mind , you will do well . 有 了 坚定 的 目标 , 你 会 做 得 很 好 . +I want to go and change into that shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +The building is one hundred meters high . 該 建築 高 一百 公尺 . +She is on a diet . 她 在 节食 . +He collected bits of information . 他 收集 了 一些 訊息 . +I get a kick out of life . 我 為 人生 感到 很 開心 . +Be careful not to fall . 小心 别 摔倒 了 . +I am sorry , but it is impossible . 我 很 抱歉 , 但 它 是 不 可能 的 . +Tom was a nurse . 汤姆 是 个 护士 . +What subjects do you like the best ? 你 最 喜歡 什麼 科目 ? +You did not protect me . 你 没有 保护 我 . +The barber gave him a haircut . 理 髮 師 為 他 理 了 頭 髮 . +Does that belong to Tom ? 这 是 汤姆 的 东西 吗 ? +Let me check your ticket . 讓 我 看 一下 你 的 票 . +He has gone to London . 他 去 了 伦敦 . +Oh no ! 不会 吧 . +Have you ever climbed Mt . Yari ? 你 曾 爬 過 槍 岳 嗎 ? +I waited for her for a really long time . 我 真的 等 了 她 很 長 一段 時間 . +I did not expect that result . 我 没有 期望 得到 这样 的 结果 . +Choose whichever you like . 選 你 喜歡 的 . +My car is at your disposal . 你 可以 随便 用 我 的 车 . +Today was fun . 今天 很 有趣 . +She had two accidents within a year . 她 一年 裡 遇到 了 兩次 事故 . +I am able to speak . 我 能 说 . +He got his meaning across to me . 他 把 他 的 意思 對 我 講 清楚 了 . +Were you able to do everything you wanted to get done ? 你 是不是 有 能力 做到 你 想要 完成 的 所有 事情 呢 ? +He said it merely as a joke . 他 这么 说 就是 为了 开玩笑 . +Tom disassembled the clock . 汤姆 把 钟 拆开 了 . +I want to learn how to swim . 我 想 学习 如何 游泳 . +It seems that most people only barbeque in the summer . 人們 似乎 只 在 夏天 烤肉 . +She can never keep a secret . 她 永远 也 做 不到 保守 秘密 . +Tom cares about you . 汤姆 关心 你 . +I would like to make a call to Tokyo , Japan . The number is 3202 @-@ 5625 . 我 想要 打 个 电话 到 日本 东京 , 号码 是 3202 - 5625. +Paper was invented by the Chinese . 紙 是 由 中國 人 發明 的 . +No fewer than 50 passengers were killed . 不下 50 个 乘客 死 了 . +I am accustomed to working hard . 我 习惯 辛勤努力 地 工作 . +I am on my way back to Boston . 我 在 回 波士顿 . +He is going to have a heart attack . 他 的 心臟病 要 發作 了 . +This diamond is not real . 这 颗 钻石 不是 真的 . +My parents are not old yet . 我 父母 还 不 老 . +She does not have any enemies . 她 没有 敌人 . +It is on the sofa . 它 在 沙發 上 . +After running up the hill , I was completely out of breath . 跑 上山 後 , 我 完全 喘 不 過 氣 來 . +Florence is the most beautiful city in Italy . 佛罗伦萨 是 意大利 最 美丽 的 城市 . +He confessed to the murder . 他 供认 了 杀人 的 罪行 . +Wait just a moment . 就 等 一會兒 . +I do not think that she will come . 我 不 認為 她 會 來 . +If I were to tell you all I know , you would be amazed . 要是 我 告诉 你 我 所知 的 一切 , 你 会 被 惊呆 的 . +Tom bought a car . 湯姆 買 了 輛 車 . +Is this the right bus for Boston ? 這輛 是 去 波士 頓 正確 的 巴士 嗎 ? +It makes no difference to me . 這 對 我 沒 什麼 差別 . +Do you play any instruments other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I wish that Tom would agree to do that . 我 希望 湯姆 能 同意 . +Maybe you should just fire Tom . 或许 你 就 应该 把 汤姆 开 除掉 . +I truly do not understand the question . 我 真的 不 懂 这个 问题 . +I have some money . 我 有 一些 錢 . +You are terrible . 你 真 壞 . +I can not afford to pay so much . 我 付不起 這麼 多 錢 . +He always gets bullied at school . 他 在 學校 老 是 被 人 欺負 . +Tom asked for food . 汤姆 要 食物 . +I was afraid I 'd be late . 我 怕 我 會 遲 到 . +He made his way to the room . 他 走進 了 房間 . +Every one of his songs was a hit . 他 的 每首歌 都 长期 备受 欢迎 . +That is a good plan . 那 是 一個 很好 的 計劃 . +Tom did a lot of great things . 汤姆 做 了 许多 大事 . +Do you guys want to go with me ? 你們 要 和 我 一起 去 嗎 ? +I am not saying that what she did was right . 我 不是 說 她 做 的 是 對 的 . +The huge explosion killed six people . 大 爆炸 致死 六 人 . +Are you laughing at me ? 你 在 嘲笑 我 吗 ? +I prefer red wine to white . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +Is it true you are trying to do that ? 你 真的 要 试 着 那样 做 吗 ? +We have a warrant to search your apartment . 我们 有权 搜查 你 的 公寓 . +Which cup is yours ? 哪个 杯子 是 你 的 ? +She got on a bus for Harajuku . 她 搭上 了 去 原宿 的 巴士 . +It had to be Tom that did that . 一定 是 汤姆 做 的 . +All of a sudden , the enemy bombs came down on us like rain . 突然 间 , 敌人 的 炸弹 像 雨点 一样 落向 我们 . +You are free to go home . 你 隨時 可以 回家 . +There are five patients in the waiting room . 等候 室里 有 五位 患者 . +All of the students were present . 所有 學生 都 出席 了 . +How soon do you need it ? 你 多久 后 需要 它 ? +The weather was not only cold , but also wet . 天气 又 冷 又 湿 . +The weather turned better . 天氣 轉好 了 . +This stuff is worth its weight in gold ! 這個 東西 很 有 價值 . +It seems that Tom is lying . 看來 湯姆 在 說謊 . +I am trying to save room for dessert . 我 尽量 留 着 胃 吃 甜点 . +Everybody says I look like my father . 每個 人 都 說 我 看 起來 像 我 爸爸 . +I will give you a call as soon as I get home . 我 一 回到 家 就 打电话 给 你 . +Would you like some scrambled egg ? 你 想要 來 些 炒蛋 嗎 ? +Sunday is not a workday for me . 星期天 不是 我 的 工作日 . +Look at that tall building . 看 那棟 高樓 . +It is dangerous ! 它 是 危險 的 ! +He was wounded in the shoulder . 他 伤 了 肩膀 . +Could you take this , please ? 請 你 拿 這個 好 嗎 ? +How do I change my cell phone is ringtone ? 我 要 怎麼 換 我 的 手機 鈴 聲 呢 ? +I think I understand . 我 想 我 懂 了 . +I have a stupid question . 我 有 一個 愚蠢 的 問題 . +I will make you happy . 我会 让 你 幸福 的 . +I have never seen that guy before . 我 從 沒看 過 那個 人 . +We are fed up with your complaining . 我們 受夠 了 你 的 抱怨 . +I have forgotten his name . 我 已经 忘 了 他 的 名字 . +I do not smoke weed . 我 不 吸 大麻 . +By the way , are you free tonight ? 顺便 问 一句 , 你 今晚 有空 吗 ? +I am willing to attend the meeting . 我 願意 參加 這場 會議 . +How old do you think Tom is ? 你 觉得 汤姆 有 多 大 ? +My income has decreased ten percent . 我 的 收入 減少 了 百分之十 . +Tom stood up from his chair . 汤姆 从 椅子 上 站 了 起来 . +Go away before they see you here . 在 他们 看见 你 之前 离开 这儿 . +We had a lot of visitors yesterday . 我們 昨天 有 許多 訪客 . +I always lock my room . 我 總是 鎖 上 我 的 房間 . +I do not like it . 我 不 喜欢 . +She woke up on her own . 她 自己 起床 的 . +She made him a new suit . 她 為 他 做 了 一套 新 衣服 . +I am a professor . 我 是 大学教授 . +What is your marital status ? 能 告诉 我 你 的 婚姻状况 吗 ? +Do not look at Tom . Look at me . 不要 看 湯姆 . 看著 我 . +Tom owns a yellow sports car . 汤姆 有 一辆 黄色 跑车 . +This is an exception to the rule . 这 是 一个 例外 . +Perhaps you are right . 也许 您 有 道理 . +My sister resembles my grandmother . 我 的 姐姐 就 像 我 的 祖母 . +I am the only one who can do that . 我 是 唯一 能 做到 那个 的 人 . +Give me a light , would you ? 借 個 火 , 好 嗎 ? +Any one of us could do it . 我們 之中 任何 一個 都 能 做到 . +I am not really prepared . 我 沒有 真的 準備 好 . +Life begins when we realize who we really are . 当 我们 明白 真正 的 自己 时 , 生活 开始 了 . +He gave in . 他 让步 了 . +Behave yourself . 规矩 点 . +They are proud of their daughter . 他們 以 他們 的 女兒 為 榮 . +Tom told me he had a right to see it . 汤姆 告诉 我 他 有权 看 它 . +Do not pull my leg ! 不要 拉 我 的 腿 ! +I do not understand much about it . 这 里面 我 有 很多 不懂 的 . +I did not tell them . 我 沒 告訴 他們 . +That flower smells sweet . 那 花闻 起来 很 香 . +You may leave your bag here . 你 可以 把 你 的 袋子 留在 這裡 . +The teacher cannot have said such a thing . 老师 不 可能 说 过 这样 的 事 . +He has poor eyesight . 他 的 视力 不 佳 . +The children ran down the hill . 孩子 們 跑 下 了 山丘 . +She does not get outdoors much . 她 沒 有常 到 戶外 . +She hated her husband . 她 恨 她 的 丈夫 . +I do not care as long as you are happy . 只要 你 开心 就行了 . +From the look of the sky , it may rain in the afternoon . 從 天色 看 起來 , 下午 可能 會 下雨 . +Drunk driving is a serious problem . 酒 驾 是 个 严重 的 问题 . +It is getting warmer day by day . 天 日渐 回暖 . +They were good . 他们 不错 . +Do you get along with your boss ? 你 跟 老板 合得来 吗 ? +It seems that he is happy . 看來 , 他 很快 樂 . +I would like to attend the party . 我 想要 出席 排队 . +I do not think that she looks like her mother . 我 不 觉得 她 像 她 妈妈 . +That house is the place where I was born . 那 房子 是 我 出生 的 地方 . +Tennis is very popular among students . 网球 在 学生 中 非常 流行 . +Tom wants to sleep on it . 汤姆 想 在 它 上面 睡觉 . +I spent last Sunday reading a novel . 我 上週 日 花 時間 看 了 一本 小 說 . +I hugged him tightly and cried . 我 緊緊 地 抱著 他 哭 . +I did nothing during the holidays . 在 假期 中 我 無所 事事 . +Entering the house , I tripped over the mat . 进 家门 后 , 我 被 垫子 绊倒 了 . +Are there reserved seats on the train ? 火車 上 有 預訂 的 座位 嗎 ? +I dreamed about you . 我 梦 到 你 了 . +This is none of your business . 跟 你 没 半 毛钱 关系 . +Please take more care in the future . 请 你 将来 注意 点 . +Put your hands up ! 手 举 起来 . +I am very happy to hear about the party . 我 听到 聚会 的 事 很 高兴 . +Cherry blossoms are very beautiful . 櫻花 非常 漂亮 . +Please give me something hot to drink . 請 給 我 一些 熱 的 東西 喝 . +Your mother must have been beautiful when she was young . 你 母親 年輕 的 時候 一定 很美 . +There are many more students in the classroom today than yesterday . 今天 教室 裡 的 學生 比 昨天 還 要 多 . +I resign . 我 放弃 . +Japanese history is my favorite subject . 日本 歷史 是 我 最 喜歡 的 科目 . +Are you interested in foreign languages ? 你们 对 外语 感兴趣 吗 ? +How did you feel about that ? 关于 那件事 你 之前 怎么 想 的 ? +It is a dead end . 这 是 个 死胡同 . +That medicine is not going to help . 那 药 不会 管用 . +What was that you just said ? 你 刚 说 了 什么 ? +Tomorrow I am going to Shanghai . 我 明天 要 去 上海 . +Could you shut the door ? 你 能 把 門關 上 嗎 ? +There were only six people at the party . 只有 六個 人 參加 了 派 對 . +I did not like it . 我 没有 喜欢 过 . +I do not want to get a suntan . 我 不想 晒黑 . +I wish you had told me the truth . 我 希望 你 告訴 我 真相 了 . +I hope everything goes well . 我 希望 万事如意 . +She gave him a lot of money . 她 给 了 他 很多 钱 . +He went to London via Paris . 他 经由 巴黎 去 了 伦敦 . +Daddy loves to say funny things . 爹 地 喜歡 講 有趣 的 事 . +Eating habits differ from country to country . 各國 有 不同 的 飲食 習慣 . +He looked young beside his brother . 他 在 他 弟弟 旁边 显得 很 年轻 . +There are a lot of hot springs in Japan . 日本 有 很多 温泉 . +Who exactly is responsible ? 究竟 谁 要 负责 ? +He has made little progress in his English . 他 的 英语 有 了 小小的 进步 . +You should not talk to Tom that way . 你 不該 那樣 跟 湯姆 講 話 . +There is a bag on the desk . 书桌上 有 一个包 . +He is a DJ . 他 是 一个 DJ . +Tom knew Mary would not let him down . 汤姆 知道 玛丽 不会 让 他 失望 . +I do not understand its significance . 我 没有 领会 这个 意义 . +He is lacking in experience . 他 缺乏 經驗 . +The girl was gazing at the doll . 女孩 凝视着 洋娃娃 . +Why did you cry ? 你 为什么 哭 ? +Nothing is worse than war . 没有 什么 比 战争 更糟 的 了 . +It is against the law to carry weapons . 攜帶 武器 是 違法 的 . +Add a tiny pinch of salt . 加 一丁 點 鹽 . +Call home ! 打电话 回家 ! +I was a little bit nervous . 我 有点 紧张 . +Tom brought Mary some juice . Tom 幫 Mary 買 了 點 果汁 . +This beach is a paradise for surfers . 这个 海滩 是 冲浪者 的 天堂 . +There is no time for explanation . 没 时间 解释 . +She cried as she read the letter . 她 一邊 讀 這 封信 一邊 哭 . +I can not believe Tom just did that . 我 不敢相信 汤姆 那么 做 了 . +I do not believe that ghosts exist . 我 不 相信 鬼魂 存在 . +Take off your socks , please . 請 脫下 你 的 襪子 . +I will be a doctor someday . 我 有朝一日 会 成为 一名 医生 . +I hope he will wait for me . 我 希望 他 會 等 我 . +You can get a loan from a bank . 你 可以 从 银行贷款 . +That is not fair . 這 不 公平 . +I still prefer to write letters by hand . 我 更 喜欢 用 手 写信 . +Everyone should bring their own lunch . 每個 人 都 應 該 帶 自己 的 午餐 . +The things he says are entirely inconsequential . 他 说 的话 根本 毫无意义 . +He will be my deputy while I am away . 我 不 在 的 时候 , 他 将 是 我 的 代理人 . +I can not tell you how to pronounce the word . 我 不 知道 怎么 告诉 你 这个 词 的 发音 . +We have to find out where Tom is . 我们 必须 查明 汤姆 在 哪里 . +We are still vulnerable . 我们 还是 脆弱不堪 . +You are bound to fail . 你 注定 失败 . +Felicja likes to watch TV . Felicja 喜歡 看電視 . +What did you say your name was ? 你 說 你 叫 什麼 名字 ? +I think Tom is sleeping . 我 以為 湯姆 在 睡覺 . +I would like to go with you . 我 想 和 你 一起 走 . +Hurry up , or you will miss the train . 快点 , 不然 你 就要 错过 火车 了 . +You have to go . 你們 得 走 了 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +I am stuck in my job . 我 被 工作 困住 了 . +Such a thing can not happen in Japan . 這樣 的 事情 不 可能 在 日本 發生 . +I have no home to return to . 我 無家 可回 . +Does any other country fan the flames of patriotism as much as America ? 有没有 一个 国家 比 美国 更 提倡 爱国主义 ? +You will never know the truth . 你 永远 不会 知道 真相 . +You should go . 你 應 該 去 . +Do not talk in the classroom . 別 在 教室 裡 說 話 . +She gave him a sweater . 她 给 他 一件 毛衣 . +I have been told Tom is going to be fired . 有人 告訴 過 我 湯姆 要 被 開除 . +He who laughs last , laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +How many languages can you speak ? 你 會 說 多少 種 語言 ? +She is a stubborn girl . 她 是 个 倔强 的 女孩 . +I was in the bathroom . 我 当时 在 卫生间 . +Thousands of foreigners visit Japan every year . 每年 有 成千上万 的 外国人 访问 日本 . +Do not let him play with your phone . 別 讓 他 玩 你 的 手機 . +The main problem with Tom is that he has no sense of humor . 汤姆 的 主要 问题 是 他 一点 幽默感 都 没有 +Where did you get your camera repaired ? 你 在 哪儿 修 的 照相机 ? +The sky is full of dark clouds . 天空 乌云密布 . +His work is washing cars . 他 的 工作 是 洗車 . +The old man starved to death . 這位 老人 餓死 了 . +The ages of the two children put together was equivalent to that of their father . 两个 孩子 的 年龄 加 起来 和 他们 的 父亲 相当 . +She felt herself being lifted up . 她 覺得 自己 好像 被舉 起來 了 . +He betrayed her secret to his friends . 他 把 她 的 秘密 告诉 了 他 的 朋友 . +Do you know how far it is from the station to city hall ? 你 知道 从 火车站 到 市政府 有 多 远 ? +Can I use your pen ? 我 可以 用 你 的 筆 嗎 ? +When does the movie start ? 电影 什么 时间 开始 ? +Tom encouraged Mary to learn how to speak French . 汤姆 鼓励 玛丽 学 着 说 法语 . +Where is the bank ? 银行 在 哪里 ? +Every time I went to his place , he was studying . 每次 我 去 他 住 處 , 他 都 在 讀書 . +If you pass this test , you could graduate next month . 如果 你 通過 這個 考試 , 你 下個月 就 可以 畢業 了 . +I need a taxi . 我 需要 一輛 出租 車 . +Do not you ever clean your room ? 你 從 不 清 掃 你 的 房間 嗎 ? +Do not tell anyone our plan . 不要 把 我们 的 计划 告诉 任何人 . +Swimming is easy . 游泳 很 容易 . +I am not a native speaker . 我 不是 个 母语 者 . +Yes . That is right . 是 的 . 沒錯 . +May I have a napkin , please ? 請 給 我 一張 餐巾 紙 好 嗎 ? +Did you buy juice ? 你 有 買 果汁 嗎 ? +I will go there even if it rains . 即使 下雨 我 也 會 去 那裡 . +They must really hate me . 他们 一定 很 恨 我 . +There is no place like home . 金窩 銀窩 不如 自己 的 狗 窩 . +The map is on the wall . 地图 挂 在 墙上 . +You need to seek help . 你 需要 尋求 協助 . +A cooking course should be mandatory in schools . 烹饪 课程 应该 作为 学校 的 必修课 . +Tom has just returned from the post office . 湯姆剛 從 郵局 回來 . +Well , let is get the ball rolling . 那麼 , 讓 我們 開始 進行 吧 . +We want to know . 我們 想 知道 . +It is true . 這 是 真的 . +It is impolite to stare at people . 盯著 人 看 是 不 禮貌 的 . +He is determined to go to England . 他 决心 去 英国 . +Are those explosives ? 那些 是 爆炸物 嗎 ? +My house is fully insured . 我 的 房子 绝对 保险 . +Drink this juice . 喝 這 果汁 . +I think Tom is athletic . 我 认为 汤姆 好 运动 . +Which of these rackets is yours ? 這些 球拍 中 哪 一支 是 你 的 ? +No matter how much I think about it , I can not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +Tom has visited Boston . 汤姆 去过 波士顿 . +May I open the window ? 可以 开窗 吗 ? +After Tom lost his job , he started to gamble to cope with his depression . 湯姆 失業 後 , 為了 排遣 鬱悶 的 心情 而 開始 了 賭博 . +One out of 455 women does not realize she is pregnant until the twentieth week of pregnancy . 455 名婦 女 中會 有 一名 直到 懷孕 第二十 週前 沒 有意 識到 自己 懷孕 . +I do not know what I 'd do without you . 我 不 知道 如果 沒 了 你 我 還 能 做 什麼 . +He can not swim . 他 不 會 游泳 . +Could you come to tomorrow is meeting ? 你 能 来 参加 明天 的 会议 吗 ? +He is scared of that dog . 他 怕 那 只 狗 . +They studied English yesterday . 他們 昨天 學習 英語 . +We want two taxis . 我們 要 兩輛 出租 車 . +She dived into the swimming pool . 她 跳入 了 游泳池 . +What is your native language ? 你 的 母语 是 什么 ? +His voice is pleasant to listen to . 他 的 声音 很 悦耳 . +I work every day except for Sundays . 我 除了 星期天 外 每天 都 上班 . +Who wrote these stories ? 誰 寫 了 這些 故事 ? +How long does it take to get from here to your house on foot ? 从 这里 步行 到 你家 要 多长时间 ? +I do not think Tom is going to be too much help . 我 认为 汤姆 帮不上 大忙 . +I saw a strange woman there . 我 看见 一位 陌生 女人 在 那儿 . +I am sorry I did not call . 我 很 抱歉 我 没有 打电话 . +You look very good . 你 看上去 很 好 . +He does not know how to write a letter in English . 他 不 知道 如何 用 英语 写信 . +We loaded a lot of luggage into the car . 我們 往 車裡 装 了 很多 行李 . +The population of the city is about 100,000 . 这 座 城市 的 人口 约 有 100 000. +Do you know how many people in the world starve to death every year ? 你 知不知道 全世界 每年 有 多少 人 饿死 呀 ? +Tom is a good friend . 汤姆 是 个 好 朋友 . +I am dying for a cold drink . 我 迫切需要 冷饮 . +Nobody believed what I said . 没有 人 相信 我 说 的话 . +It was a very stupid decision . 这 是 一个 十分 愚蠢 的 决定 . +The old man lived by himself . 老人 独自 生活 . +He looks strong . 他 看 起來 很 強壯 . +Stay right here and relax . 待 在 這里 , 放 鬆 . +I have more experience than Tom . 我 比 汤姆 更 有 经验 . +You are not too bad @-@ looking . 你 看 起來 不 難 看 . +There is an orange on the table . 桌上 有 一只 橙子 . +I want a dozen cream puffs . 我 要 一打 奶油 泡芙 . +My parents usually speak to each other in French , even though my mother is a native English speaker . 我 父母 通常 用 法语 对话 , 即使 我 母亲 的 母语 是 英语 . +I am very interested in languages . 我 对 语言 很感兴趣 . +I saw him looking at me . 我 看見 他 在看 我 . +Those were difficult times . 那 是 困难 时期 . +Should I buy something for him ? 我 應 該 買 些 東西 給 他 嗎 ? +You 'd better not have driven my car . 你 最好 不要 開 了 我 的 車 . +The fish he caught yesterday is still alive . 他 昨天 抓住 的 鱼 一直 还 活着 . +A foreign language cannot be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +My aunt made a new skirt for me . 我 舅母 做 了 一條 新 裙子 給 我 . +Almost everybody was invited . 幾乎 每個 人 都 被 邀請 了 . +At last , the bus stopped . 公车 最终 停 了 下来 . +My father always said that heaven helps those who help themselves . 我 父親 總是 說 天助 自助 者 . +What are your strong points ? 你 的 强项 是 什么 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 去 接 . ” +He lives alone . 他 独自 生活 . +Where is the city hall ? 市政府 在 哪裡 ? +He speaks too fast . 他 说话 太 快 了 . +I will stay with Tom until you get back . 你 回来 之前 我会 跟 汤姆 在 一起 . +I started thinking about Tom . 我 开始 想起 汤姆 . +The mountain was covered with snow . 這 座 山 被 雪 覆蓋 著 . +I can not stand that kind of politician . 我 不能 忍受 那種 政治家 . +Who cares ? 爱 谁 谁 . +We want to hear it . 我们 想 听听 . +She went on working . 她 继续 工作 . +I do not want to talk to you . 我 不想 跟 你 说 ! +Your family is waiting for you . 你 的 家人 在 等 你 . +Tom does not like doing homework . 汤姆 不 喜欢 做作业 . +I have to go to the bathroom . 我 要 去 廁所 . +He meets his girlfriend on Saturdays . 他 每 週六 和 他 的 女朋友 見面 . +I do not want to have an operation . 我 不想 接受 手術 . +We are a family . 我們 是 個 家庭 . +Mary is an exceptionally beautiful girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +I will go shopping tomorrow . 我 明天 要 去 购物 . +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +All of his family work on a farm . 他 全家 都 在 农场 工作 . +Did Tom talk to Mary ? 汤姆 跟 玛丽 说话 了 吗 ? +She raised her voice . 她 提高 了 她 的 嗓音 . +He felt his heart beating fast . 他 覺得 他 的 心跳 加速 . +I feel hopeful about the future . 我 對 未來 感到 有 希望 . +A baby is sleeping in the cradle . 一個 嬰兒 在 搖籃 裡 睡覺 . +Compare your translation with his . 比較 你 和 他 的 翻譯 . +We were disappointed to hear that Tom could not get a visa . 我们 很 遗憾 地 听说 , 汤姆 没 能 拿到 签证 . +We knew it all along . 我们 一 开始 就 知道 . +You are a beautiful young woman . 你 是 一个 美丽 的 女孩 . +My father is far from artistic . 我 父親 一點 也 不 懂 藝術 . +What prevented you from coming earlier ? 為 什麼 你 不能 早點 來 ? +I do not even want to think about what could happen . 我 甚至 不想 去 想 會 發生 什麼 . +Give me something to write with . 給 我些 可以 寫 字 的 東西 . +Do not believe what she says . 不要 相信 她 說 的 話 . +It is later than you think . 時間 比 你 想 的 還 要 晚 . +The old cottage has a certain charm about it . 旧村 屋 有 它 自己 一定 的 魅力 . +Do you have tinnitus ? 你 耳鸣 吗 ? +Do not you know what happened yesterday ? 你 不 知道 昨天 發生 什麼 事 嗎 ? +One hundred and fifty people entered the marathon race . 150 个人 参加 了 马拉松 比赛 . +I am studying at the University of Hyogo . 我 在 兵库县 立 大学 学习 . +I think Tom is very cool . 我 認為 湯姆 很酷 . +She was afraid to cross the road . 她 怕 過 馬 路 . +He likes traveling and so do I. 他 喜欢 旅行 . 我 也 是 . +Can I use your dictionary for a minute ? 我 能 用 一下 你 的 字典 吗 ? +Tom should wait until Monday . 汤姆 应该 等到 星期一 . +That red car hit the blue van . 那輛 紅色 汽車 撞到 了 藍 色 麵 包 車 . +Tom wrung out the towel and hung it up to dry . 汤姆 拧干 毛巾 挂 起来 晾干 . +Facts are stubborn things , but statistics are pliable . 事实 是 倔强 的 , 但 统计 是 柔顺 的 . +I like candy . 我 喜歡 甜食 . +Tom is speech was excellent . 湯姆 的 演講 非常 好 . +Tom and Mary have three cats and two dogs . Tom 和 Mary 有三隻貓和兩 隻 狗 . +Money has changed his life . 金钱 改变 了 他 的 生活 . +You ask too many questions . 你 问题 太 多 了 +I like beans . 我 喜欢 豆子 . +Tom is a good friend of yours , is not he ? 湯姆 是 你 的 好 朋友 , 不是 麼 ? +We need assistance . 我們 需要 幫助 . +Do not you think so ? 你 不 这么 认为 吗 ? +Tom continued his investigation . 湯姆 繼續 他 的 調查 . +He is married to an American lady . 他 和 一个 美国 女人 结婚 了 . +We will go when the rain stops . 當雨 停 了 , 我們 就 會 去 . +I told them to send me another ticket . 我 請 他們 再寄 給 我 一張 票 . +Now I remember . 现在 我 想 起来 了 . +He once knew her , but they are no longer friends . 他 过去 认识 她 , 但 他们 现在 不再 是 朋友 了 . +Kiss me . 吻 我 . +We have got to have determination . 我們 要 下 決心 了 . +The poet expressed his burning passion for the woman he loved . 詩人 對 他 愛 的 女人 表達 了 他 火熱 的 激情 . +Please wash my back . 請 幫 我 洗 背 . +Please help me . 請 幫助 我 . +I did not expect to hear back from Tom so soon . 我 沒 想到 這麼 快 就 收到 湯姆 的 回信 . +The present time is a good time . 现在 正是 好 时候 . +I met him on my way home . 我 在 回家 的 路上 遇見 了 他 . +Those houses are 500 years old . 那些 房子 有 500 年 了 . +I had a good night is sleep . 我 睡 了 一整夜 的 好觉 . +It is likely to be fine tomorrow . 明天 天氣 可能 很 好 . +You have got a lot of guts . 你 膽子 很大 . +What would you do if you had a million dollars ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +The policeman captured the man who was running . 警察 抓 了 正在 跑 的 那個 男人 . +There is a castle in the background of the picture . 图片 的 背景 是 一座 城堡 . +A penny saved is a penny earned . 省 下 了 一分 錢 , 就 等 於 賺 了 一分 錢 . +He made the most of his opportunity . 他 盡力 地 利用 了 這個 機會 . +Give me your location . 给 我 你 的 位置 . +I do not understand why Tom brought you here . 我 不 知道 為 甚麼 湯姆 把 你 帶到 這裡 . +Subtract three from eight and you get five . 八 减去 三 就 能 得到 五 . +His words gave me hope . 他 的 話 給 了 我 希望 . +I have recently given up smoking . 我 最近 戒烟 了 . +The dog barked at the stranger . 這 隻 狗 對 著 陌生人 叫 . +I stayed up till very late last night . 我 昨晚 睡 得 很 晚 . +I need many books . 我 需要 很多 書 . +No matter how hard the training was , she never cried . 不管 训练 多么 艰苦 , 她 都 没有 哭 过 . +It was really cheap . 它 真的 很 便宜 . +Life is not all fun and games . 生活 並 不 都 是 輕 鬆 愉快 的 . +The cat meowed . 猫叫 . +I am a hero . 我 是 個 英雄 . +The girl greeted me with a smile . 這個 女孩 面帶 微笑 向 我 打招呼 . +I spoke to Tom last night . 昨晚 我 和 汤姆 说话 了 . +Give it to them . 把 它 给 他们 . +He has no sense of right and wrong . 他 是非不分 . +Tom told me he was nervous . 湯姆 告訴 我他 緊張 . +The airplane took off on time . 這 班 飛 機準 時 起 飛 . +Did you hear my show last night ? 你 听 了 我 昨天晚上 的 节目 吗 ? +My father works at the factory . 我 父亲 在 工厂 工作 . +Restart your computer . 重新启动 你 的 电脑 . +The party was put off for a week . 派对 延期 了 一周 . +Have a look . 请 看一看 . +The price is not reasonable . 这个 价格 不合理 . +You can take today off . 你 今天 可以 休假 一天 . +Can you eat this ? 这个 能 吃 吗 ? +I had difficulty working out the problem . 我 很 難 解決 這個 問題 . +I did not think this was your seat . 我 不 認為 這 是 你 的 座位 . +He attributes his success to good luck . 他 将 他 的 成功 归功于 好运 . +I do not want to miss my train . 我 不想 错过 我 的 火车 . +He will travel abroad next year . 明年 他 要 去 国外 旅游 . +He arrived at the station at seven . 他 7 点 到 了 火车站 . +You drink too much coffee . 你 咖啡 喝 得 太 多 了 . +Did you buy cat food ? 你 买 猫 粮 了 吗 ? +I am not a student . 我 不是 學生 . +Let is go ahead and eat . 咱们 去 吃饭 吧 . +He wrote a book about a jungle adventure . 他 写 了 一本 关于 丛林 冒险 的 书 . +The doorbell rang . 门铃 儿 响 了 . +Keep an eye on the child for me for a moment . 帮 我 看 会儿 孩子 . +He married a very pretty girl . 他 娶 了 一個 很漂亮 的 女孩 . +I am not a teacher . 我 不是 個 老師 . +There were risks . 有 風險 . +He lived a moral life . 他 以 君子 之 道 生活 . +Do not worry ! Even if I drink , it does not have an effect on my driving . 別 擔心 ! 即使 我 喝酒 了 , 它 對 我 的 駕駛 沒有 影響 . +How long do you plan to stay in this country ? 你 打算 在 这个 国家 待 多久 ? +I do not remember mailing the letter . 我 不 記 得 寄 過信 了 . +He made no mention of her request . 他 沒有 提到 她 的 請求 . +Tom did not give me what I asked him for . 汤姆 没给 我 我 跟 他 要 的 . +We know him . 我們 認識 他 . +Please do not say that . 请 你 不要 说 这个 . +If you want to , you can use my car . 如果 你 愿意 , 你 可以 用 我 的 车 . +He does not care much for baseball . 他 不 太 关注 棒球 . +Do not enter the room without permission . 未經 允許 請 勿 進入 這個 房間 . +He made the best of the opportunity . 他 善用 了 這個 機會 . +The youngest daughter is exceptionally beautiful . 么 女 長 得 特別 漂亮 . +I do not read newspapers much . 我 不 太 看 报纸 . +Are you busy ? 您 在 忙 吗 ? +Everyone is anxious to know what has become of the former champion . 大家 都 渴望 知道 前 冠军 得主 发生 了 什么 . +Let me say one thing . 讓 我 說 一件 事情 . +Everyone inside the building felt the earthquake . 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +You really are rude , are not you ? 你 真的 很粗 魯 , 不是 嗎 ? +Please give me something to eat . 請 給 我 點 東西 吃 . +Do you think he did the job on his own ? 你 认为 他 是 自己 独立 完成 这份 工 的 吗 ? +I invited them to the party . 我 邀請 了 他們 參加 派 對 . +I promise it will not happen again . 我 保證 它 不 會 再 發生 . +You said you 'd help me . 你 说 过 你 会 帮 我 的 . +How do we get out of here ? 我们 该 怎么 从 这里 出去 . +Tom explained it to Mary very carefully . 汤姆 仔细 地 给 玛丽 解释 . +I do not want Tom to see this . 我 不想 讓 湯姆 看見 這個 . +Can you describe to me the difference between black tea and green tea ? 你 能 告诉 我 红茶 和 绿茶 的 区别 吗 ? +Tom is check bounced . 汤姆 的 支票 被 退票 了 . +What time are you leaving ? 你 什么 时候 走 ? +I remember meeting you before . 我 記得 以前 見 到 你 . +The train was crowded with people . 火车 挤满 了 人 . +We are glad to have you in our class . 我们 很 高兴 你 加入 了 我们 班 . +This is the cheapest shop in town . 這 是 鎮 上 最 便宜 的 商店 . +Tom and I know each other quite well . 湯姆 和 我 互相 很 了解 . +I am undressing . 我 脱衣服 . +I only spent three dollars . 我 只 花 了 三 美元 . +We are neighbors . 我們 是 鄰居 . +He is out now . 他 现在 出去 了 . +Let is eat now . I am dying of hunger . 咱们 吃 吧 ! 我 饿死 了 . +Did you forget to lock the door last night ? 你 昨天晚上 忘 了 鎖 門 嗎 ? +The problem is being discussed now . 这 问题 正在 被 讨论 . +Do not kid around . 別 開 玩笑 了 . +He played baseball after school . 他 放學 後 打 棒球 . +How many forks do we need ? 我們 需要 多少 把 叉子 ? +She went to the hospital yesterday . 她 昨天 去 了 醫院 . +The police think the burglar entered through a basement window . 警察 认为 窃贼 从 地下室 窗口 进入 . +She spoke through an interpreter . 她 透過 傳譯員 發言 . +I am really glad you are here . 你 能 来 我 真 高兴 . +I do not know if today is Tuesday or Wednesday . 我 不 知道 今天 是 星期二 還是 星期三 . +You must not yield to temptation . 你 不 應該 屈服 在 誘惑 之下 . +I do not believe the child came to Tokyo alone . 我 不 相信 孩子 能 独自 到 东京 . +The storm abated . 风暴 减弱 了 . +Let is discuss it . 来 商量 吧 . +I am not a bit tired . 我 一點 也 不累 . +Tom will never see you again . 汤姆 以后 再也不会 见 你 了 . +Tom often goes cross @-@ country skiing . Tom 经常 滑雪 穿过 城市 . +Tom walks very slowly . 汤姆 走 得 很慢 . +Were you playing tennis yesterday morning ? 你 昨天早上 在 打网球 吗 ? +We will have guests tomorrow . 我們 明天 會 有 客人 . +That was pretty neat . 那 真 整潔 . +He cannot afford to buy a car , much less a house . 他 买不起 一辆 汽车 , 更 不要 说 一套 房子 了 . +The dress suits you very well . 这 条 裙子 很 适合 你 . +I do not really like him , in fact , I hate him . 我 不 太 喜欢 他 , 其实 我 讨厌 他 . +I am not a student . 我 不是 學生 . +How long have you two been together ? 你们 两个 在 一起 多久 了 ? +The old man was almost hit by a car . 老人 幾乎 被 車 撞 上 . +You 'd better tell us what is going on . 你 最好 告诉 我们 发生 了 什么 . +Tom says that Mary definitely will not accept the job . 湯姆 說 瑪麗 絕不 會 接受 這 工作 . +He is afraid that he might be late . 他 担心 他 可能 会 迟到 . +Have a nice day , Tom . 汤姆 , 希望 你 今天 玩 得 开心 . +This job does not pay . 这个 工作 没有 酬劳 . +Mary said that she loved me , but I did not believe her . 玛丽 说 她 爱 我 , 但是 我 并 不 相信 她 所说 的话 . +Do you want some rice ? 你們 要 米 飯 嗎 ? +Please feel free to call me up . 請 隨時 都 可以 打 電話 給 我 . +I can not drink milk . 我 不 可以 喝牛奶 . +Tom put the vase on the table . 湯姆 把 花瓶 放在 桌上 . +She is proficient in French . 她 精通 法語 . +The investigation is under way . 相關 調查 正在 進行 中 . +We must not laugh at the poor . 我们 不能 嘲笑 穷人 . +Feel this . It is really soft . 来 摸摸 这个 感觉 一下 . 真的 很 柔软 啊 . +Tom arrived here before sunrise . 汤姆 天亮 前 就 到 这 了 . +It is a pity you did not come last night . 您 昨晚 沒來 真是太 可惜 了 ! +It is too dark to play baseball now . 現在 太暗 無法 打 棒球 . +Her eyes shone with joy when she saw that her mother was not mad at her . 當 她 看到 媽媽 沒 在 生 她 的 氣 , 她 的 雙眼 因為 幸福 而 閃爍 了 . +I discovered that speaking English was pretty easy . 我 發覺 說 英語 很 簡單 . +I will be at home all day tomorrow . 明天 我 一整天 都 在家 . +May I put it down here ? 我 可以 把 它 放在 这儿 吗 ? +London is on the Thames . 倫敦 在 泰 唔 士河 旁 . +I just do not want to lose you . 我 只是 不想 失去 你 . +Roll up your right sleeve . 捲 起 你 右 邊 的 袖子 . +How long did it take you to write this report ? 你 写 这份 报告 花 了 多长时间 ? +Eat your soup before it gets cold . 趁 汤 没 凉 之前 喝 下 . +They did not know what to do first . 他們 不 知道 先 做 什麼 . +The teacher demonstrated the idea with an experiment . 这位 老师 用 试验 论证 了 这个 想法 . +There is a TV in this room . 这个 房间 里 有个 电视机 . +I had curry last night . 我 昨晚 吃 了 咖喱 . +Just pull the door shut . It will lock by itself . 只要 推门 就 好 了 . 它 自己 会 锁上 的 . +We will begin tomorrow morning . 我們 明天 上午 開始 . +I will be free all day tomorrow . 明天 我 一整天 都 有空 . +I feel no sympathy for Tom . 我 不 同情 湯姆 . +The enemy attacked us at night . 敵人 在 夜間 攻擊 了 我們 . +Why do not you take the day off ? 你 為 什麼 不 請 一天 假 ? +I want to study abroad next year . 我 明年 想 出国 留学 . +I hope I am not disturbing you . 我 希望 没 打扰到 你 吧 ? +Does your father get home early ? 你 爸爸 很早 回家 嗎 ? +Can I help ? 我 可以 幫忙 嗎 ? +What you said is not true . 你 说 的 不是 真的 . +If a man had 11 sheep and all but 9 died , how many sheep would he have left ? 如果 一个 人 有 11 只 羊 , 除了 9 只 之外 , 其他 全部 死 了 , 那么 他 还 剩下 几只羊 呢 ? +Please help yourself to the cake . 你 自己 拿 蛋糕 吃 吧 . +Father takes the 7 : 00 subway to work . 爸爸 乘 早上 7 点 的 地铁 去 上班 . +Is it about ten o 'clock ? 大約 十點鐘 嗎 ? +Tom has come up with a good plan . 湯姆 想到 了 個 好 計劃 . +No one can help me . 没有 人 能 帮 我 . +She is nothing but a child . 她 只是 個 孩子 . +More than 40 percent of the students go on to university . 40 % 以上 的 学生 去 读 大学 . +I think Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +You should not share too much private information on the social networks . 你 不 应该 在 社交 网络 上 分享 过 多 私人 信息 . +It is difficult to speak Chinese well . 很 難 把 中文 說 得 好 . +Tom does everything he can to save money . 湯姆盡 全力 省 錢 . +The manager approved our plan . 經理 批准 了 我們 的 計劃 . +He has no house to live in . 他 没有 房子 住 . +Hide in the closet . 你 藏進 櫃子 裡 去 . +I want ten plates . 我 要 十個 盤子 . +We have to turn in our reports by the end of this month . 这个 月底 前 , 我们 必须 交 报告 . +Please answer my question . 请 回答 我 的 问题 . +Selling cars is my job . 賣車 是 我 的 工作 . +Are not you thirsty ? 你 不 渴 嗎 ? +Do you believe in ghosts ? 你 相信 有 鬼魂 吗 ? +I sell clothing online . 我 在 網 路上 賣 衣服 . +Only four horses competed in the race . 只有 四匹 馬 參加 了 比賽 . +I spilled my coffee on the carpet . 我 把 咖啡 倒 翻 在 地毯 上 了 . +He will wait for you . 他 會 等 你 . +You made an error . 你 犯 了 个 错误 . +I will give you the money tomorrow . 我 明天 會 給 你 錢 . +There is no telling what he will do next . 没有 人 知道 他 接下来 会 干什么 . +We were just about to enter the room . 我们 正要 进 房间 . +You 'd better go home at once . 你 最好 立刻 回家 . +Tom told me that he does not like carbonated drinks . 汤姆 告诉 我 他 不 喜欢 碳酸 饮料 . +We need to talk about that as soon as possible . 我們 需要 盡早 談論 那件事 . +We made it out of there . 我們 從 那裡 逃 了 出來 . +Why do not you go home early today ? 你 今天 為 什麼 不 早點 回家 呢 ? +I belong to the swimming club . 我 參加 游泳 社 . +He married a stewardess . 他 娶 了 一个 空姐 . +His parents are saving for his college education . 他 的 父母 為 他 的 大學 教育 存錢 . +No one will bother you here . 這裡 沒 人會 打擾 你 . +I do not write letters anymore . 我 不再 写信 了 . +That is mine . 那 是 我 的 . +He made his son a chair . 他 做 了 一把 椅子 給 他 兒子 . +This method is sure to work . 這個 方法 一定 會 成功 . +This dictionary is my sister is . 這 本 字典 是 我 妹妹 的 . +I can not recall the last time we met . 我 想不起 來 我們 上次 見面 的 情况 了 . +Do not put anything on top of the box . 不要 放 任何 東西 在 箱子 上面 . +I know her address . 我 知道 她 的 地址 . +Wipe your eyes . 擦擦 你 的 眼睛 . +How are you , Tom ? 你好 嗎 , 湯姆 ? +She asked about my school . 她 問 了 關 於 我 學校 的 事 . +He works for an advertising agency . 他 為 一家 廣告 公司 工作 . +What would you like to eat for dinner ? 你 想 吃 什麼 作 晚餐 ? +Tom robbed a bank . 湯姆 搶 了 家銀行 . +Who does the book belong to ? 這 本書 是 誰 的 ? +Who is this , please ? 請 問 這 是 誰 ? +If you buy me an ice cream , I will give you a kiss . 如果 你 買 給 我 冰淇淋 , 我 就 親 你 一下 . +Who did you give that to ? 你 把 東西 交給 誰 了 ? +Follow us . 请 跟着 我们 . +I left my umbrella in the cab . 我 把 我 的 傘 忘 在 計程車 上 了 . +We can not afford to make mistakes . 我們 承擔 不了 犯錯 的 後 果 . +It was not long before we met again by chance . 没多久 , 我们 又 碰巧 遇到 了 . +I 'd like you to go there . 我 希望 你 去 那裡 . +We took turns with the driving . 我們 輪流 駕駛 . +Let is wait here until he comes back . 讓 我們 在 這裡 等 他 直到 他 回來 . +Do not leave the TV on . 不要 让 电视机 开 着 . +I was fired without cause . 我 被 无故 辞退 了 . +I have not eaten lunch yet . 我 现在 还 没有 吃 过 午饭 . +Tom is going to run for mayor . 汤姆 要 竞选 市长 . +Blood was everywhere . 到处 都 是 血 . +We can see more and more swallows . 我們 能 看到 越來越 多 的 燕子 . +Marriage frightens some people . 有些 人 害怕 婚姻 . +There is no doubt . 毫无疑问 . +Turn on the light , please . 麻煩 開燈 一下 . +You seem to know everything . 你 看起来 什么 都 知道 . +I am not as optimistic as you . 我 不 像 你 那么 乐观 . +I can see through your lies . 我 能 看穿 你 的 謊言 . +I am afraid to go alone . 我 害怕 一個 人 去 . +I would like to invite you to the party . 我 想 请 你 参加 派对 . +How are you ? 你好 嗎 ? +Everything comes to those who wait . 成功 屬 於 耐心 等待 的 人 . +Yesterday , an explosion occurred at the fireworks factory . 昨晚 , 烟花 厂 发生 了 爆炸 . +Tom watched Mary draw a picture . 汤姆 看 玛丽 画 一幅 画 . +Why do you say that ? 你 為 什麼 那樣 說 ? +Tom , wake up . 汤姆 , 快 起来 ! +He never speaks unless spoken to . 除非 有人 跟 他 說 話 , 他 從來 不 說 話 . +My father graduated from Harvard University . 我 爸爸 是 哈佛大学 毕业 的 . +Can you get up ? 你 能 起床 嗎 ? +She hung the picture upside down . 她 把 画 挂反 了 . +Is it OK to take pictures here ? 这里 允许 拍照 吗 ? +I have not done very much this year . 我 今年 沒 做 多少 事 . +What time does the movie start ? 电影 什么 时间 开始 ? +What happened that night ? 这个 晚上 发生 了 什么 ? +The library is on the second floor . 圖書館 在 二 樓 . +There are several ways to measure speed . 测速 的 方法 有 很多 . +I can not keep up with you . 我 無法 跟上 你 . +Three people were killed in the explosion . 这场 爆炸 中 有 三 人 丧生 . +We need more . 我們 需要 更多 . +Tom told me I should not do that . 湯姆 告訴 我 我 不該 去 做 . +Do not try to stop me . 别 想 阻止 我 . +Drive slowly . 开车 慢点 . +You can not fight a good fight with such a defeatist attitude . 抱著 失敗 主義 的 態度 你 無法 打 一場 漂亮 的 仗 . +He is doing very well at school . 他 在 學校 的 表現 很 好 . +I used to have a friend named Tom . 我 曾 有 个 朋友 叫 汤姆 . +We should not expect too much help from Tom . 我們 不該 期望 從 Tom 那 得到 太 多 幫助 . +Do you know how to dance ? 你 會 跳舞 嗎 ? +I agree with what you say to some extent . 在 某种程度 上 , 我 认同 你 所说 的 . +I would like to swim in this river . 我 想 在 這條 河裡 游泳 . +The price does not include the box . 這個 價格 不 包含 這個 箱子 . +What is become of your dog ? 你 的 狗 怎麼 了 ? +The car is ready . 汽车 准备 好 了 . +When did you begin studying English ? 你们 什么 时候 开始 学 英语 的 ? +I have got a lot of questions . 我 有 许多 问题 . +How about taking a walk with us ? 跟 我們 一起 散步 怎麼樣 ? +Do not let him down . 别 让 他 失望 . +Ca not you get by on your salary ? 靠 你 的 收入 你 不能 過 活 嗎 ? +If you do not hurry , you will miss the train . 如果 你 不 抓紧 的话 , 你 就 会 赶不上 火车 . +He would not listen to my advice . 他 不 聽 我 的 勸告 . +Tom has not said a word all morning . 汤姆 整整 一个 上午 一句 话 也 没 说 . +She is a good dancer . 她 是 一個 很好 的 舞者 . +I know how to make beef stroganoff . 我 知道 怎麼 做 俄式 炒 牛肉 片 . +I 'd rather be with you . 我 更 愿意 跟着 你 . +Do not forget to lock up when you leave . 当 你 出门时 , 别忘了 锁门 . +You will go to school tomorrow . 你 明天 去 學校 . +Lend me some money , if you have any . 你 有钱 的话 , 借 我 一些 . +Could you drive Tom home ? 你 能載 湯姆 回家 嗎 ? +Do not move . 不要 动 . +She helped me pack my suitcase . 她 幫 我 打包 我 的 手提箱 . +I can not put up with his arrogance . 我 不能 忍受 他 的 傲慢 . +Boys , as a rule , are taller than girls . 一般来说 , 男生 会 比 女生 高 一些 . +I got up early enough to catch the first train . 我 起 了 个 大早 为了 赶 第一班 火车 . +I understand how to solve the problem . 我 明白 怎么 解决问题 . +Thank you for the pleasant evening . 謝謝 你 讓 我 度 過 一個 愉快 的 晚上 . +He is a baseball player . 他 是 个 棒球 手 . +I love the sound of children laughing . 我 喜歡 孩子 們 笑 的 聲音 . +A friend is coming over tomorrow . 一個 朋友 明天 要過 來 . +Do not do this to me again . 別 再 對 我 做 這事 了 . +I do not want everyone to think I am stupid . 我 不想 讓 任何人 認為 我 傻 . +The cat is not dead . 那 猫 没死 . +Hug Tom . 请 抱紧 汤姆 . +I remember seeing her . 我 記得 我 看 過 她 . +He told us a lie . 他 對 我們 說 了 一個 謊 . +Tom is on his way here . 湯姆 正在 來 這里 . +I am not like Tom . 我 跟 汤姆 不 一样 . +He tried to kill himself . 他 試圖 自殺 . +It is difficult to do that . 那麼 做 很 難 . +Call me . 联系 我 . +Tell me Tom is email address . 告诉 我 汤姆 的 邮箱地址 吧 . +It is a sunflower . 那 是 一朵 向日葵 . +Do you have a bicycle ? 你 有 自行 車 嗎 ? +Whoever said money can not buy happiness simply did not know where to go shopping . 那些 说 钱 不能 买来 幸福 的 人 , 只是 不 知道 上 哪里 去 买 而已 . +I do not know for certain . 我 不 太 確定 . +Be happy for me . 为 我 感到高兴 吧 . +I ate caviar . 我 吃 了 魚子 醬 . +He knows how to brush his teeth . 他 知道 怎么 刷牙 . +He is at home . 他 在家 裡 . +Have you finished reading that book ? 你 读完 那本书 了 吗 ? +The red dress suited her . 這件 紅色 的 洋裝 適合 她 . +It took me a little more time than usually to fall asleep . 我 花 了 比 平常 多 一點 的 時間 入睡 . +I am praying . 我 在 祈禱 . +I think he is a great writer . 我 认为 他 是 位 伟大 的 作家 . +Do you like strawberries ? 你 喜歡 草莓 嗎 ? +That is a face I have seen before . 這 張 臉 我 以前 見 過 . +I thought Tom was going to hurt me . 你 認為 湯姆 要 傷害 我 . +He always takes sides with her . 他 總 是 支持 她 . +I am not certain about that . 对于 那个 , 我 不 确信 . +I am not very good at swimming . 我 不是 很 擅長 游泳 . +It is a lot of fun to drive a car . 開車 很 好玩 . +He returned home for the first time in ten years . 他 十年 中 第一次 回家 . +Bringing up a baby is hard work . 养 大 一个 宝宝 是 一项 艰难 的 工作 . +We have French third period . 我們 第三 節 是 法語 課 . +Tom is spending more and more time in Boston . 汤姆 在 波士顿 待 得 越来越 久 . +The old church by the lake is very beautiful . 河边 的 老 教堂 很漂亮 . +He knows how to read Chinese . 他 看得懂 中文 . +Tom studies French as well . 湯姆 也 學 法語 . +Where will we go afterwards ? 我们 以后 往 哪 走 ? +I hope no one saw me dancing . 我 希望 沒人 看見 我 跳舞 . +She is not a child . 她 不是 小孩 . +Tom threw in the towel . 汤姆 不 干 了 . +I felt like crying . 我 想 哭 . +Visiting a foreign country must be expensive . 到 外國 一定 很貴 . +Tom had a lot of problems at the school . 汤姆 在 学校 遇到 了 很多 问题 . +I am able to swim . 我 會 游泳 . +Do you think I am beautiful ? 你 認為 我 美 嗎 ? +Everyone except Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +This medicine will decrease your pain . 这种 药会 减轻 你 的 疼痛 . +I was asked to wait here . 我 被 要求 在 这里 等 . +Switzerland is famous for its scenic beauty . 瑞士 以 它 的 風景 優美 而 聞名 . +Your shirt button is coming off . 你 衬衣 的 纽扣 快 掉 了 . +You may injure yourself if you do not follow safety procedures . 如果 你 不 按照 安全 手续 来 的话 , 你 可能 会 受伤 的 . +Were you working last night ? 你 昨晚 在 工作 吗 ? +What do you have ? 您 有 什么 ? +All I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +What made her so angry ? 什麼 事 讓 她 這麼 生氣 ? +She gave up her plans against her will . 她 違背己願 放棄 了 她 的 計畫 . +It is OK not to eat it . 你 不吃 沒 關 係 . +They arrived in Osaka at the beginning of May . 他们 五月 初 到 了 大阪 . +Stop yelling ! 别 再 喊叫 了 ! +We are happy . 我們 很快 樂 . +You should have introduced yourself . 你 本來 應該 介紹 自己 的 . +I do not want it . 我 不要 . +" I like traveling . " " So do I. " “ 我 喜欢 旅游 . “ ” 我 也 是 . “ +How long does it take to walk to your house from here ? 从 这里 步行 到 你家 要 多长时间 ? +Tom had a pain in his chest , so he went to the hospital . 汤姆 胸痛 , 所以 去 了 医院 . +You people are no fun at all . 你们 这帮 人 真 没意思 . +What is it about ? 它 是 關 於 什麼 ? +All you have to do is take advantage of this rare opportunity . 你 所要 做 的 便是 好好 把握 這 千載難逢 的 機會 . +A group of young men are playing handball in the playground . 一群 年 輕 人 在 操場 上 打 手球 . +I found your letter in the mailbox . 我 在 信箱 中 發現 了 你 的 信件 . +I should not have said that . 我 不该 说 那个 . +Many people only speak one language . 許多 人 只 說 一種 語言 . +I am going to go there with Tom . 我 要 和 汤姆 去 那里 . +We kept our fingers crossed . 我们 试图 让 手指 互相 交错 . +I sometimes break the rules . 我 有时候 打破 规矩 . +Tom cut down the tree that was in front of his house . 湯姆 砍 了 他 門前 的 樹 . +He is too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +I am just a plain office worker . 我 只是 一個 普通 的 上班族 . +How old do you think she is ? 你 认为 她 多 大 ? +He made an important discovery . 他 有 了 一個 重要 的 發現 . +Ca not you speak English ? 你 不 會 說 英語 嗎 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +I want to show you something in my office . 我 想 给 你 看看 我 办公室 里 的 一些 东西 . +Do you need to buy anything ? 你 有 什么 需要 买 的 吗 ? +May I go to the toilet ? 我 可以 去 廁所 嗎 ? +The problem was that I had nothing to say to him . 问题 是 我 没什么 要 跟 他 说 的 . +It is obvious that she is sick . 顯然 地 她 生病 了 . +I am an optimist by nature . 我 天生 是 一個 樂觀 主義 者 . +The child missed his mother very much . 這 孩子 非常 想念 他 的 母親 . +The light was on . 灯 亮 着 . +This is Uncle Tom is farm . 這 是 湯姆 叔叔 的 農場 . +I do not know your reasons for not liking Tom . 我 不 知道 你 不 喜欢 汤姆 的 理由 . +He should have arrived by now . 现在 他 应该 已经 到 了 . +Be careful . It is very sharp . 小心 點 , 它 很 锋利 . +Drive carefully . 开车 小心 点 . +I found the book interesting . 我 觉得 这 本书 很 有意思 . +Every time it rains , the roof leaks . 每次 下雨 屋頂 就 漏水 . +Your opinion matters . 你 的 觀點 是 重要 的 . +She testified that she saw the man . 她 作證 說 她 看見 了 這 名 男子 . +He gave us the signal to begin . 他 給 了 我們 信號 讓 我們 開始 . +Tom worked very hard and earned a lot of money . 汤姆 努力 工作 挣 了 好多钱 . +Mary showed the letter to me . 瑪麗 給 我 看 了 這 封信 . +Tom seems a little confused . 湯姆 看來 有 點 困惑 . +She is good at playing tennis . 她 擅長 打 網球 . +You are very courageous . 您 非常 勇敢 . +We are having difficulty locating Tom . 我们 难以 找到 汤姆 . +Where is my seat ? 我 的 位子 在 哪儿 ? +I heard her singing a song . 我 聽到 她 唱歌 . +I am afraid that there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +The bus will take time . 乘 公交车 费时 . +Do you want to eat noodles or rice ? 你 要 吃 麵 條 還 是 吃 米 飯 ? +His doctor ordered him to rest . 他 的 医生 命令 他 休息 . +Tom has not missed any of Mary is concerts . 汤姆 没有 错过 一场 玛丽 的 音乐会 . +The quickest means of travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +May I use this ? 我 可以 用 嗎 ? +Ca not we work this out ? 我们 做 不成 吗 ? +I could not think of anything to say . 我 想不到 要 說 什麼 話 . +I feel weak . 我 感到 虚弱 . +A typhoon is approaching Japan . 颱 風 正 接近 日本 . +The papers blew off . 文件 被 风 刮起来 . +She gave the children two apples each . 她 給 孩子 們 每人 兩個 蘋果 . +He was elected mayor . 他 被选为 市长 . +She lived for a long time . 她 活 了 很久 . +It is been raining since last night . 從 昨晚 起 一直 下雨 . +Because of the typhoon , my parents ended their trip one day early . 因为 台风 的 关系 , 我 的 父母 提早 一天 结束 了 旅行 回到 家 . +I had a lot of fun . 我 玩 得 很 開心 . +Please wait a little while longer . 請 稍 等 一會兒 . +Take this medicine every six hours . 每 六個 小 時 吃 一次 這個 藥 . +This book belongs to the library . 這 本書 是 圖書館 的 . +Show me your passport , please . 请 给 我 看看 您 的 护照 . +Let is go to the club . 讓 我們 去 俱 樂 部 吧 . +Hang in there . 坚持 . +I do not agree with him . 我 不 同意 他 . +She is still dependent on her parents . 她 是 啃老族 . +I have to ask you something . 我 得 问 你 点 事 . +These flowers bloom earlier than others do . 這些 花 比別 的 花 早 開花 . +She translated the letter from Japanese into French . 她 把 信 从 日语 译成 法语 . +Many conservationists fear the continuing slaughter of whales is pushing these animals towards extinction . 许多 自然环境 保护主义者 担心 持续 屠杀 鲸鱼 正 推动 这些 动物 走向 灭绝 . +The sky became darker and darker . 天空 变得 越来越 暗 了 . +Sales fell off in the third quarter . 在 第三季 時 銷售 跌 了 下來 . +It is becoming warmer day by day . 一天天 热 起来 了 . +He got off the bus . 他 下 了 公車 . +We have got a situation . 我们 有 情况 了 . +There is nothing to prevent you from going . 没什么 能 阻止 你 出发 了 . +Nice to see you . 见到 你 真好 . +It rained hard yesterday morning . 昨天上午 下 大雨 . +I can not locate the source of the problem . 我 无法 找到 问题 的 根源 . +That white parasol is hers . 那 把 白色 阳伞 是 她 的 . +They came all the way from Brazil . 他們 從 巴西 遠 道 而 來 . +Please put on your shoes . 請 穿 上 你 的 鞋子 . +Do you like black cats ? 你 喜歡 黑色 的 貓 嗎 ? +Why are you still unmarried ? 你 為 甚麼 還 不 結婚 ? +This chair is light . 这 把 椅子 很轻 . +I think we should not allow Tom to do that . 我 認為 我們 不 應該 允許 湯姆 去 做 . +He is careless about money . 他 不 關心 錢 . +This is an old building . 这 是 幢 老楼 . +We enjoyed playing baseball . 我們 喜歡 打 棒球 . +I work too much . 我 工作 得 太 多 了 . +He reads a lot of books . 他 读 很多 书 . +The meat has gone bad . 這 肉 已經 壞 了 . +I am not the only one who thinks Tom is overweight . 觉得 汤姆 肥 的 人 不止 我 一个 . +He lives in a cozy little house . 他 住 在 一個 舒適 的 小 房子 裡 . +We all wondered why she had dumped such a nice man . 我們 都 想 知道 她 為 什麼 甩 了 這麼 好 的 一個 男人 . +They made me go there alone . 他們 讓 我 獨自 去 了 那裡 . +Many children die of starvation in Africa . 在 非洲 有 许多 孩子 死 于 饥饿 . +My mother is quite angry . 我 母亲 十分 生气 . +I want to die . 我 想 死 +Playing tennis is a lot of fun . 打 網球 很 有趣 . +Would you like some more beef ? 你 想 再 來 些 牛肉 嗎 ? +Diplomats are allowed various privileges . 外交官 有 多种 特权 . +I do not love you anymore . 我 不再 爱 你 了 . +Only adults may watch that film . 只有 成人 可以 看 那种 电影 . +What kind of stone is this ? 这 是 什么 石头 ? +Some people never grow up . 有些 人 永远 也 长不大 . +I am at home . 我 在家 . +He must have missed the train . 他 一定 是 錯 過 了 這 班 火車 . +It could be just a coincidence . 可能 只是 巧合 . +He can not be ill . 他 不 可能 生病 了 . +Run like your life depends on it 拼命 地 跑 +You should make an effort to stop smoking . 你 應該 努力 去 戒煙 . +Hopefully , we will enjoy our China trip . 希望 我們 會 喜歡 我們 的 中國 之 旅 . +The king governed the country . 國王 統治 了 這個 國家 . +They are talking with each other . 他们 在 互相 交谈 . +He lives by himself in the woods . 他 獨自 住 在 森林 裡 . +Creationism is a pseudo @-@ science . 创造 主义 是 一种 伪科学 . +I can not do any more than this . 我 無法 再 做 下去 了 . +Do not leave the door open . 不要 把门 开 着 . +I want to go there once more . 我 想 再 去 那裡 一次 . +Lunch is on . 午餐 送到 了 . +It was not until I reached home that I missed my purse . 那 是 在 我 到 家 以后 , 我 才 不见 了 我 的 钱包 . +The value of the painting was estimated at several million dollars . 这 幅画 被 估价 数百万元 . +They are peace @-@ loving people . 他们 是 热爱 和平 的 人 . +I am an only child . 我 是 獨 生子 . +I am going to see him today . 今天 我 要 去 看 他 . +Would you like a drink ? 你 想 喝 點 什麼 嗎 ? +May I see the wine list ? 我 可以 看 一下 酒單 嗎 ? +English is studied in China , too . 在 中國 的 人 也 研讀 英語 了 . +He stopped reading the newspaper . 他 停止 了 读报 . +What is your opinion on this matter ? 关于 那个 你 有 什么 看法 ? +They are having a chat . 他們 正在 聊天 . +You look just like your older brother . 你 和 你 哥哥 长 得 一模一样 . +On Mondays , he is always at home . 他 星期一 總是 在家 . +Such a plan is bound to fail . 這樣 的 計劃 注定 會 失敗 的 . +I miss you badly . 我 非常 想 你 . +I got a good grade in English . 我 的 英文 得到 了 好 成績 . +She took my joke seriously . 她 把 我 的 玩笑 当真 了 . +Could you please lend me thirty dollars ? 請 問 你 能 借 給 我 三十 美 圓 嗎 ? +Everybody is supposed to know the law , but few people really do . 每 一个 人 都 应该 知法 懂法 , 但是 真正 能 做到 的 人 却 很少 . +I got up at six this morning . 我 今天 早上 六點 起床 . +I can not put up with him . 我 受不了 他 . +Please tell us what to do next . 請 告訴 我們 下 一步 要 做 什麼 . +I succeeded in getting what I wanted . 我 成功 地 得到 了 我 想要 的 . +I am hearing that a lot lately . 我 最近 听说 了 不少 . +This book will do . 這 本書 就行了 . +I was happy to see him . 我 很 高兴 见到 他 . +Tom ate half the cake by himself . 湯姆 獨自 吃 了 半個 蛋糕 . +He was supposed to come . 他 應 該 來 的 . +Shine your shoes before going out . 出門 前 把 你 的 鞋子 擦亮 . +What is the forecast for tomorrow ? 明天 的 天气预报 怎么 说 ? +Tom refused to even listen to my suggestions . 汤姆 甚至 拒绝 听 我 的 建议 . +Have a good weekend ! 周末 愉快 . +I forgot to ask Tom . 我 忘 了 问 汤姆 . +Once in a while , we should take a step back and think . 有时候 , 我们 应该 后退 一步 想一想 . +Tom swam . Tom 游泳 . +The town was destroyed by the flood after the storm . 小镇 被 暴风雨 后 的 洪水 摧毁 了 . +I can not see you . 我 看 不 見 你 . +Two detectives followed the suspect . 两个 侦探 跟着 嫌疑人 . +Who is the boss of this company ? 这家 公司 的 老板 是 谁 ? +You 'd better not have eaten the cake . 你 最好 不要 吃 了 蛋糕 . +Why were you there ? 你 為 什麼 在 那裡 ? +Admission to the museum is thirty dollars . 博物 館入 場費 是 三十 美元 . +I guess I am never going to get married . 我 想 我会 一辈子 单身 . +See you then . 到 時候 見 . +We forgive you . 我們 原諒 你 . +I wonder how many Canadians live in Boston . 我 在 想有 多少 加拿大人 住 在 波士 頓 . +I do not think you need to change . 我 不 認為 你 該 改變 . +Wild animals live in the forest . 野生 動物 住 在 森林 裡 . +If you do not want to do it , you do not have to . 如果 你 不想 的话 也 没 问题 . +I mistook him for his brother . 我 把 他 誤 認為 是 他 的 兄弟 . +The blouse costs twelve libras . 这件 衬衫 卖 十二 英镑 . +These glasses are cool . 這些 眼鏡 真酷 . +Never look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +You should be good to your neighbors . 你 应该 对 邻居 好 点 . +I dislike eggs . 我 不 喜欢 鸡蛋 . +It depends on the context . 这 得 看 情况 . +My shoulder hurts . 我 肩膀 痛 . +He continued reading the book . 他 繼續 看書 . +He went to some place or other . 他 去 了 某个 地方 . +I have a lot of problems at the moment . 目前 我 问题 很多 . +He put away his toys . 他 收起 了 他 的 玩具 . +It will be fine this afternoon . 今天下午 天氣 會 很 好 . +Anniversaries are important . 週年 紀念 很 重要 . +How was the fishing ? 釣魚 怎麼樣 ? +Take a taxi to the hotel . 打 的 去 旅馆 吧 . +Tom loves you . 汤姆 爱 你 . +I do not like you . 我 不 喜欢 你 . +Who is your English teacher ? 你 的 英語 老師 是 誰 ? +They never give up . 他们 永不言弃 . +That is no business of yours . 这 不关 你 的 事 . +She does not like to sing sad songs . 她 不 喜欢 唱 悲伤 的 歌 . +This sentence does not make sense . 这 句 话 没意思 . +Sydney is far from here . 悉尼 离 这里 很远 . +Get lost ! 滾 ! +Do not talk to others during the class . 上 課 中 不要 跟 別人 講 話 . +Whose is this bicycle ? 这辆 自行车 是 谁 的 ? +Fantastic ! 很棒 ! +He is not likely to succeed . 他 不 可能 成功 . +My sister and I went to the castle . 我 和 妹妹 去 了 城堡 . +She is a very interesting person . 她 是 一個 非常 有趣 的 人 . +I found what I was looking for . 我 找到 了 我 正在 找 的 東西 . +Beats me . 我 一无所知 . +My album is here . 我 的 相簿 在 這裡 . +Young children are often fascinated by science . 小孩 常常 对 科学 很 有 热情 . +That is not wine . It is grape juice . 這 不是 葡萄酒 , 是 葡萄汁 . +We often eat fish raw in Japan . 我們 在 日本 常常 吃 生魚 . +I did not sleep a wink last night . 我 昨晚 沒睡 . +Put the book on the top shelf . 把 書 放在 最 上面 的 架子 上 . +I did not know about your plan . 我 不 知道 你 的 計畫 . +What does PTA stand for ? PTA 代表 什么 意思 ? +Tom and I sat on a bench in the park and talked while we fed pigeons . 我 和 汤姆 在 公园 的 长椅 上 坐 着 , 一边 聊天 一边 喂 着 鸽子 . +I like L.A. better . 我 更 喜欢 洛杉矶 . +Everyone knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He goes to bed at eight o 'clock . 他 八點 上床 睡覺 . +That is awesome , right ? 很棒 , 不是 吗 ? +Is Tom well ? 汤姆 还好 吧 ? +Ask Tom if you have any doubt . 你 如果 有 疑问 , 就 问 汤姆 吧 . +Tom would like to see you . 汤姆 想见 你 . +She is good at handling children . 她 善 於 處理 兒童 . +Tom will return home tomorrow . 汤姆 明天 回家 . +I have always wanted to learn how to swim . 我 一直 想 学习 如何 游泳 . +I am a student . 我 是 个 学生 . +You do not go to school on Sunday , do you ? 你 週日 不 上學 , 對 嗎 ? +His advice did not help much . 他 的 忠告 没 起到 太 大 的 作用 . +We worked on a farm last summer . 我們 去年 夏天 在 一個 農場 上 工作 . +Running is good for your health . 跑步 對 你 的 健康 有益 . +If you need a dictionary , I can lend you my old one . 如果 你 需要 字典 , 我 就 把 我 旧 的 借给 你 . +Please open the door . 請 把 門 打開 . +I guess it was our bad luck . 我 猜 这 是 我们 的 运气 坏 . +What will actually happen is anyone is guess . 誰 也 說 不準 實際 上 將 會 發生 什麼 事 . +I can not bear to deal with her anymore . 我 再也 忍受 不了 她 了 ! +We agreed to start early the next morning . 我们 同意 了 第二天 一早 开始 . +What is your favorite beverage ? 你 最 喜欢 的 饮料 是 什么 ? +We laughed . 我们 笑 了 . +Prices went up . 物價 上漲 . +Why do that now ? 为什么 现在 做 那个 ? +When was this university founded ? 这 所 大学 是 什么 时候 建 的 ? +I am expecting a letter from her . 我 期待 她 的 來信 . +He likes to watch TV . 他 喜歡 看電視 . +I have already eaten dinner . 我 已經 吃 晚 飯 了 . +Tom is a magician . 汤姆 是 魔法师 . +Tom did not even notice Mary had gone . 湯姆 甚至 沒 注意 到 瑪麗 走 了 . +It is not that far . 不是 那么 远 . +What do you do on Sundays ? 你 星期天 都 做 什麼 ? +Please get me a scrap of paper . 請 給 我 一張 廢紙 . +The light is on . 灯 亮 着 . +She always speaks in a low voice . 她 總是 低聲 地 說 話 . +Tom had no idea that Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +I do not know anything . 我 什么 都 不 知道 . +A bridge was built across the river . 人 們 修 了 一座 橋 過 河 . +What is the name of this river ? 這條 河 叫 什麼 名字 ? +Tom does not like being treated like a child . 汤姆 不 喜欢 被 当作 小孩 . +" How do you feel ? " he asked . “ 你 感觉 怎么样 ? ” 他 问 . +I know that she is Spanish . 我 知道 她 是 西班牙人 . +I have already visited Australia . 我 已经 游览 过 澳大利亚 了 . +I know where he lives . 我 知道 他 住 哪儿 . +I am too tired to walk any further . 我 累得 再也 走 不動 了 . +I have lost a little weight . 我 瘦 了 一點 . +How much will it cost you to go by air ? 坐 飛機 將 花 你 多少 錢 ? +Being rich is not enough . 有钱 还 不够 . +We usually walk to school . 我们 通常 步行 去 学校 . +We gladly accept your offer . 我们 很 高兴 接受 你 的 提议 . +Tom rolled down his window . 湯姆拉 下 了 他 的 窗戶 . +Something is better than nothing . 聊胜于无 . +I will treat you to sushi . 我 會 請 你 吃 壽司 . +The shooting started around noon . 槍 擊 是 在 中午 十二 時 左右 開始 的 . +You can start right now . 你 现在 可以 开始 了 . +She was promoted . 她 晉升 了 . +What shall we eat for breakfast ? 我們 早 飯 吃 什麼 ? +A new branch will be opened in Chicago next month . 新 的 分店 下个月 在 芝加哥 开张 . +Please speak more loudly . 請 說 話 大聲 一點 . +What have you been doing this week ? 你 這個 星期 一直 在 做 什麼 ? +You will have to leave now . 你 现在 必须 离开 . +Tom admitted that he had killed Mary . 汤姆 承认 他 杀死 了 玛丽 . +This is not for you . 這 不是 給 你 的 . +Please say it once more . 請 再 說 一次 . +The door is locked at nine o 'clock . 九點鐘 鎖門 . +A huge monster is coming down the mountain . 从 山上 走来 一只 巨大 的 怪物 . +He is very afraid of his mother . 他 非常 怕 他 的 母親 . +What is your favorite season of the year ? 一年 之中 , 你 最 喜欢 哪个 季节 ? +The rivers were flooded by the heavy rain . 大雨 使 河水 泛滥 . +This is a hospital . 这 是 医院 . +Except for one person , everybody went home . 除了 一 人 , 大家 都 回家 了 . +I think Tom is awake . 我 想 Tom 已经 醒 了 . +She has hundreds of books . 她 有 幾百本 書 . +He got angry . 他 生气 了 . +My father takes a walk every morning . 我 父親 每天 早上 去 散步 . +I have been looking for a new job for a long time . 我 找 工作 已经 很 久 了 . +Many Asians have English as a common language . 許多 亞洲 人 以 英語 作為 共用 的 語言 . +He is afraid of snakes . 他 害怕 蛇 . +Thank you very much for your gift . 非常 谢谢 你 的 礼物 . +No one escaped alive . 沒有 人生 還 . +She says she will call you later . 她 說 她 晚 一點 會 打 電話 給 你 . +She is evidently sick . 她 明顯 生病 了 . +I have nothing in common with her . 我 和 她 沒有 共同 之處 . +There is a map on the wall . 墙上 有 张 地图 . +This is the town where he was born . 这 是 他 出生 的 城市 . +I found this at the risk of my life . 我 冒著 生命 危險 找到 了 這個 . +Tom made me do it . 是 汤姆 让 我 做 的 . +Nothing ever makes him angry . 沒有 什麼 事 曾 讓 他 憤怒 . +When did Tom get here ? 湯姆 是 甚麼 時候 來到 這裡 的 ? +Tom died three months ago . 湯姆 三個 月前 死 了 . +I think it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Collect your thoughts before you begin your work . 工作 之前 先 收好 思绪 . +Cross out the incorrect words . 把 错误 的 单词 划掉 . +I think his opinion is very important . 我 認為 他 的 意見 非常 重要 . +The fire has gone out . 火 已經 灭 了 . +Judging from the look of the sky , it may rain this afternoon . 從 天色 上 判斷 , 今天下午 可能 會 下雨 . +We sometimes swim in the lake . 我們 偶爾 在 湖裡 游泳 . +You are suitable for the job . 你 很 適合 這份 工作 . +She is asking for the impossible . 她 在 无理取闹 . +Tom seems to be very happy . 汤姆 看起来 非常 开心 . +The sky is clear and full of stars . 天空 晴朗 , 布满 了 星辰 . +My whole body is sore . 我 全身 酸痛 . +Who do you usually go to the movies with ? 你 一般 和 誰 去 看 電影 ? +Do you have anything to eat ? 你 有 东西 吃 吗 ? +Let your uncle think about it . 讓 你 叔叔 想一想 . +He has a wife and two young children to provide for . 他 有 一个 妻子 和 两个 孩子 要 养活 . +I do not particularly like her . 我 特别 不 喜欢 她 . +I am surprised that your family has a Japanese car . 我 很 惊讶 , 你家 居然 有 辆 日本 车 . +Who gave them to you ? 谁给了 你 这些 东西 ? +Please go to the bank . 請去 銀行 . +Open the box . 打開 箱子 . +Wolves scare me . 狼 嚇 到 了 我 . +Has he finished his homework yet ? 他 完成 他 的 功課 了 嗎 ? +The French Revolution began in 1789 . 法国 大革命 1789 年 开始 . +She mistook me for my brother . 她 把 我 誤 認為 是 我 的 兄弟 . +Tom is a native French speaker . 汤姆 是 法语 母语 者 . +She spends her leisure time making dolls . 她 利用 空闲 时间 做 布娃娃 . +You may make use of his library . 你 可以 利用 他 的 图书馆 . +Everything is bad . 一切 都 很 糟糕 . +One is new , and the other is old . 一个 是 新 的 , 另 一个 是 旧 的 . +This is the biggest car in the world . 这 是 世界 上 最大 的 车 . +You do not have to go to the party unless you want to . 除非 你 想 去 , 否則 你 不必 去 這個 派 對 . +Tom will not stop . 湯姆 不 會 停 . +She sat on the bench . 她 坐在 長椅 上 . +I will definitely vote for Tom . 我 一定 要 給 湯姆 投票 . +Tom is a politician . 汤姆 是 位 政治家 . +He is not from Hokkaido . 他 不是 來 自 北海道 . +I think you have done this before . 我 想 你 以前 做 过 这个 . +How did you make this soup ? 这 汤 怎么 做 的 ? +You 'd better not go out . 你 最好 不要 出門 . +I have to stop procrastinating . 我 不能 再 拖延 了 . +Tom and Mary spoke on the phone . 湯姆 和 瑪麗 在 電話 裡 交流 . +I want to go with you . 我 想 和 你 一起 去 . +Clean your room . 清 掃 你 的 房間 . +I called him up yesterday . 我 昨天 打 電話 給 他 . +Where did you have your picture taken ? 你 从 哪里 照 的 相 ? +Do not touch it . 別 碰 它 . +I intend to go to the barbershop . 我 打算 去 理 髮 店 . +Better late than never . 迟到 总 比 不到 好 . +I really like puppies . 我 非常 喜欢 小狗 . +Please speak as slowly as possible . 请 尽量 慢点 说 . +That is a strange sentence . 那 是 一個 奇怪 的 句子 . +Could you send it to this address ? 你 能 把 它 送到 這個 地址 嗎 ? +Tom is not as innocent as he seems . 汤姆 不 像 他 看上去 的 那样 无辜 . +Thank you , I have had enough . 謝謝 你 , 我 吃 飽 了 . +It is up to you to decide whether we will go there or not . 该 由 你 来 决定 我们 去不去 那儿 . +He complained about the noise . 他 抱怨 這個 噪音 . +Can we talk in private ? 我们 能 私下 谈谈 吗 ? +Can you please give me something to do ? 请问 你 能 给 我 点 事 做 吗 ? +That only happens occasionally . 这 只是 偶发事件 . +We toured all the major cities . 我们 游览 了 所有 主要 城市 . +My mother happened to be there when the fire broke out . 着火 的 时候 我 妈妈 恰好 在 那 . +Today is even busier than normal . 今天 比 平时 还 忙 . +She and I are brother and sister . 她 和 我 是 姐弟 . +Do you want to know ? 你 想 知道 嗎 ? +He is always at home on Sundays . 他 星期日 總是 在家 裡 . +Were they serious ? 他们 是 认真 的 吗 ? +I just wish we could leave this horrible place . 我 只是 希望 我们 能 离开 这个 可怕 的 地方 . +One of my pleasures is watching TV . 我 的 一個 樂趣 是 看 電視 . +I can not believe Tom is really planning to do this . 我 无法 相信 汤姆 真的 打算 做 这 事儿 . +I find it hard to get up early on cold mornings . 我 覺得 在 寒冷 的 早晨 很 難 早起 . +My baggage is missing . 我 的 行李 丢 了 . +Tom died recently . 汤姆 最近 死 了 . +Let is play baseball . 我們 去 打 棒球 吧 . +I am here , so do you want to chat ? 我 在 这 , 你 想 聊天 吗 ? +Sociopaths rarely display remorse or feelings of guilt for their crimes . 反 社会 者 极少 为 他们 的 罪行 显露 懊悔 或 有 罪恶 的 感觉 . +Have any letters arrived for me ? 到 的 有 我 的 信 吗 ? +What is on the desk ? 桌子 上 有 什么 ? +Get lost . 滚 . +So , what happened this time ? 那么 , 这次 发生 了 什么 ? +Finally , he attained his goal . 他 终于 达到 了 自己 的 目标 . +Both Tom and Mary can not speak French . 汤姆 和玛丽 都 不 说 法语 . +That car is really expensive . 那 辆 汽车 真的 很贵 . +Be careful on your way back home . 回家 的 路上 注意安全 . +Tom frowned . 湯姆 皺著 眉頭 . +Is it large enough ? 這麼 大 的 夠用 嗎 ? +We will take part in the marathon . 我们 将 参加 马拉松 . +They were left speechless . 他们 惊 得 目瞪口呆 . +We did not get an apology . 我们 没有 收到 过 道歉 . +I hope so . 我 希望 如此 . +He came all the way from Chicago . 他 從 芝加哥 遠 道 而 來 了 . +Nowadays nobody believes in ghosts . 現在 沒 有人 相信 有鬼 . +Please allow me to go . 請 允許 我 去 . +I feel much better today . 我 今天 感觉 好多 了 . +Men should work . 男人 应该 工作 . +Are you a student of a private high school ? 你 在 私立高中 读书 吗 ? +I really like my coworkers . 我 确实 喜欢 我 的 同事 . +The woman glared at us . 女人 瞪 了 我們 . +Tom certainly is a good teacher . 湯姆 確實 是 位 好 老師 . +Tom was embarrassed to have to ask for help . 汤姆 很 不好意思 去求 帮忙 . +Tom was my first boyfriend . 汤姆 是 我 第一个 男朋友 . +Tom has not called Mary yet . 湯姆 還 沒 打 給 瑪莉 . +This whisky is too strong . 这种 威士忌 太烈 了 . +I could tell Tom the truth , I suppose . 我 覺得 我 能 告訴 湯姆 真相 . +That is too bad . 那 太 糟糕 了 . +She is not always happy . 她 不 總是 高興 . +You look very tired . 你 看上去 非常 累 . +This doghouse was built by Tom . 这 狗 屋 是 汤姆 建 的 . +Could we go somewhere and talk ? 我们 能 去 别的 地方 谈谈 吗 ? +His wife gave birth to twin boys . 他 的 妻子 生下 了 一對 雙 胞胎 男孩 . +Tom is not a very nice guy . 湯姆 不是 個 多 好 的 人 . +He is a person who never cuts corners . 他 是 个 绝对 不会 偷工减料 的 人 . +I want the other one . 我 想要 另 一個 . +What is the weather like ? 天氣 怎麼樣 ? +The novel ends with the heroine is death . 小说 以 女主角 的 死 告终 . +She left home ten minutes ago . 她 十分 鐘 前 離家 . +Life does not always go the way we want it to . 生活 并 不 总是 如 我们 所愿 . +I do not have a dog . 我 没有 狗 . +I understand how you feel . 我 明白 你 的 感受 . +My father is out . 我 父亲 出门 了 . +You have been deceived . 你 被 騙 了 . +Could you stop saying that ? 你 能 不 说 那个 了 吗 ? +I want to just focus on the positive . 我 只 想 注意 积极 方面 . +Do I need to transfer ? 我 需要 换乘 吗 ? +I would like to see it . 我 想 看看 它 . +What do you call this bird ? 這 隻 鳥 叫作 什麼 ? +This is the dictionary I use every day . 这 是 我 每天 都用 的 字典 . +Put on your good shoes . 穿 上 你 的 好鞋 . +I have brothers . 我 有 兄弟 . +Place it wherever you like . 你 想 放在 哪裡 就 放在 哪裡 . +I continued working . 我 繼續 工作 . +Tom is my brother . Tom 是 我 哥哥 . +Environmental pollution is causing abnormal weather conditions . 環境 污染 正 造成 異常 的 天氣 情況 . +Can I take pictures here ? 我 能 在 这里 拍照 吗 ? +The bus is full . You will have to wait for the next one . 這 班 公車 客滿 了 . 你 必須 等下 一班 . +I saw my reflection in the window . 我 在 窗户 上 看見 了 我 的 映像 . +Jazz fusion is a combination of rock and jazz . 融合 爵士 是 搖滾樂 與 爵士 樂 的 融合 . +I will show you around the town . 我 會 帶 你 逛逛 這個 鎮 . +I can not stand this noise . 我 不能 忍受 這個 噪音 . +Tears rolled down my cheeks . 泪水 沿着 我 的 面颊 流 了 下来 . +Broccoli is one of the healthiest vegetables . 西藍花 是 最 健康 的 蔬菜 之一 . +Feel free to ask any questions . 隨時 問 任何 問題 都 可以 . +No one lives in this building . 没有 人 住 在 这栋 楼里 . +Is death the only way out ? 死 是 唯一 的 解脱 吗 ? +That is the man whose kids are so nice . 那个 男人 , 就是 他 的 孩子 很 友好 的 那个 . +I can not do without her help . 沒有 她 的 幫助 我 做 不到 . +I have always distrusted Tom . 我 一直 不 信任 湯姆 . +He studies contemporary literature . 他 学习 现代文学 . +I ate lunch in a hurry . 我 匆忙 地 吃 了 午飯 . +We are here in the name of Jesus Christ and King Charles . 我們 這裡 以 耶穌 基督 和 查理斯 國王 之 名 . +He does not seem to be an American . 他 似乎 不是 美國 人 . +Tom had a drink in his hand . 汤姆 手里 拿 着 饮料 . +My grandfather died when I was a boy . 當 我 是 個 小男孩 的 時候 , 我 的 祖父 就 過世 了 . +She is a doctor . 她 是 医生 . +We are hiding . 我们 在 藏 着 . +The population of Japan is larger than that of New Zealand . 日本 的 人口 比 新西兰 多 . +He gave me a nice Christmas present . 他 给 了 我 一个 很棒 的 圣诞礼物 . +My TV has quit working . 我 的 電視 已經 壞 了 . +I take a bath every night . 我 每晚 洗澡 . +About how much will I have to pay for all the treatments ? 所有 的 医药费 我 大概 要 付 多少 ? +Is there anything you want that you do not have ? 有 什么 你 想要 但是 没有 的 东西 吗 ? +He can also speak Russian . 他 也 會 說 俄語 . +He shaves every day . 他 每天 刮 鬍 子 . +That is flammable . 那 是 可燃 的 . +My older sister often drinks tea with milk . 我 的 姐姐 经常 就 着 牛奶 喝茶 . +Can I ask you a question ? 我 可以 問 您 一個 問題 嗎 ? +I am not as optimistic as you are . 我 没有 你 那么 乐观 . +I went to the hospital to have my eyes tested . 我 到 醫院 去 檢查 了 眼睛 . +Nothing seems to grow in this soil . 這個 土壤 似乎 長 不出 任何 東西來 . +I know all your secrets . 我 知道 你 所有 的 秘密 . +You are really brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +You run . 你 跑 . +I like playing the piano . 我 喜欢 弹钢琴 . +He worked too hard , and became sick . 他 工作 得 太 多 , 病倒 了 . +I wish he were here now . 我 希望 他 現在 在 這裡 . +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +Over @-@ sleeping is no excuse for being late . 睡 过头 不是 迟到 的 理由 . +Let is leave as soon as he arrives . 他 一 到 , 咱們 就 走 了 吧 . +Tom is watching a video . 湯姆 在 看 影片 . +He earns three times more than me . 他 赚 的 比 我 多三倍 . +These questions are easy to answer . 這些 問題 太 容易 回答 了 . +I feel sad . 我 很 难过 . +He is good at baseball . 他 垒球 打 得 很 好 . +This is what I want . 这 就是 我 想要 的 . +Tom was very scared . 湯姆 當時 非常 害怕 . +You 'd better consult the doctor . 你 最好 请教 一下 医生 . +He used to be a nice boy . 他 以前 是 個 好 男孩 . +I am almost done . 我 差不多 完成 了 . +Are you sure that Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +They were afraid of the big dog . 他們 怕 這 隻 大 狗 . +I was amazed at his courage . 我 對 他 的 勇氣 感到 驚訝 . +He is a good person . 他 是 個 好人 . +We are very skeptical . 我们 非常 怀疑 . +Tomorrow is my birthday . 明天 是 我 生日 . +Would you care for another glass of beer ? 再 来 一杯 啤酒 怎么样 ? +Do not make stupid jokes . 开 什么 国际 玩笑 . +It is not a watch . 這 不是 手 錶 . +She bought a toy for her child . 她 買 了 一個 玩具 給 她 的 孩子 . +People can not live forever . 人 无法 长生不死 . +I can not wait for you . 我 不能 等 你 . +Let them have their fun . 讓 他們 鬧 去 . +I am making a movie . 我 在 製 作 電 影 . +That is a nice coat . 那 是 一件 不錯 的 大衣 . +Tom was unsatisfied with the results . 汤姆 对 结果 不满 . +I really do not need any help . 我 真的 不 需要 幫助 . +Keep this lesson in mind . 记好 了 这 教训 . +The barometer is falling . It is going to rain . 气压计 下降 了 - 要 下雨 了 . +I was worried about his health . 我 担心 他 的 健康 . +You should make better use of your free time . 你 要 更好 地 利用 闲暇 时间 . +The program starts at nine o 'clock . 這個 節目 九點 開始 . +You made a mistake . 你 犯 了 个 错误 . +You seem very nervous . 你 看起来 很 紧张 . +I do not think this is Tom is umbrella . 我 認為 這 不是 湯姆 的 傘 . +As long as you are here , we might as well begin . 既然 你 在 這裡 , 那 我們 就 開始 吧 . +We enjoyed watching the fireworks on a bridge last summer . 去年 夏天 , 我们 在 桥上 看 焰火 看 得 很 过瘾 . +She does not seem to be an American . 她 似乎 不是 美國 人 . +He told us to keep quiet . 他 告訴 我們 要 保持 安靜 . +That is a good idea ! 真是 个 好 主意 ! +We got on the bus there . 我們 在 那裡 上 了 公共 汽車 . +You and I have something in common . 你 和 我 有 一些 共同点 . +Is this for sale ? 这 是 要卖 的 东西 吗 ? +I can speak Chinese , but I can not read Chinese . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +He is not here because he is ill . 他 不 在 这儿 , 因为 他 病 了 . +I am waiting for you to help me . 我 等 着 你 帮 我 . +What is the worst @-@ case scenario ? 最 坏 的 情境 是 什么 ? +He threw a stone at the dog . 他 朝着 狗 扔 了 块 石头 . +She was accepted by Harvard . 她 被 哈佛 錄取 了 . +I wonder whether or not Tom can speak French . 我 不 知道 湯姆會 不 會 說 法語 . +I treated her as my own daughter . 我 把 她 當成 是 我 自己 的 女兒 一樣 對待 . +That toy is made of wood . 這個 玩具 是 用 木頭 做 的 . +He will be at home tomorrow . 他 明天 会 在家 . +Tom used to eat a lot of junk food . 汤姆 以前 经常 吃 很多 垃圾 食品 . +You have to study Japanese harder . 你 必須 更 努力 學習 日 語 . +Take your time . 慢慢来 . +I hurried in order to catch the first train . 我 匆匆忙忙 , 为的是 能 赶上 第一班 火车 . +You have to leave home at six . 你 必須 在 六點 鐘 時 從 家中 出發 . +Tom is late as usual . 汤姆 像 往常 一样 来晚 了 +He is good at dealing with children . 他 擅長 應付 小孩子 . +I cannot bring myself to do such a thing . 我 不能 让 自己 做 这样 的 事 . +Please be careful when crossing the street . 过 马路 时 请 小心 . +It is extremely hot and humid in Bali in December . 12 月份 巴厘岛 极其 炎热 和 潮湿 . +I subscribe to two newspapers . 我 訂閱 了 兩份 報紙 . +How many people know about us ? 有 多少 人 知道 我們 ? +A beautiful sunset , is not it ? 美麗 的 夕陽 , 不是 嗎 ? +This is difficult to believe . 這 讓 人 難以 置信 . +I wonder what will happen . 我 不 知道 會 發生 甚麼 . +He is in the kitchen . 他 在 厨房 . +There is a letter for you . 你 有 一封信 . +Could you lend me the book ? 你 能 借 我 这 本书 吗 ? +Tom studies at Harvard . 汤姆 在 哈佛 学习 . +Talk is cheap . 說 得 簡單 . +I have a bad toothache . 我 牙痛 得 厲害 . +I know what you mean . 我 知道 你 的 意思 . +The meal satisfied his hunger . 這 頓 飯 讓 他 充 饑 解 餓 了 . +Only Takeuchi did not accept the invitation . 只有 竹 內 沒有 接受 邀請 . +We are confident of victory . 我們 有 信心 獲勝 . +When did you learn how to swim ? 你 什么 时候 学会 游泳 的 ? +I heard him coming downstairs . 我 聽 見 他 下樓 的 聲音 . +She never wears green . 她 從來 不 穿 綠色 的 衣服 . +I was not drunk . 我 沒醉 . +We will be here for three more days . 我們 還 要 在 這里 待 三天 . +Do not touch this with your dirty hands . 别 用 你 的 脏手 碰 这个 . +Actions speak louder than words . 坐 而言 不如 起 而 行 . +I do not feel like studying . 我 没有 强烈 的 欲望 去 学习 . +I am not guilty of anything . 我 没有 对 任何 事 感到 有罪 . +She is sitting on the bench . 她 坐在 長椅 上 . +Tom has been learning French for a few years . 汤姆 学 了 几年 法语 . +I visited him a week ago today . 我 在 一周 前 的 今天 拜訪 了 他 . +He has lost his job . 他 已經 失去 了 他 的 工作 . +Everything went well . 一切 都 很 顺利 . +I do not know if I can do it . 我 不 知道 我 能 不能 做 . +She visits us every other day . 她 每 兩天 探訪 我們 . +How did you draw this picture ? 你 怎么 画 这 幅画 ? +I thought you said you did not see anything . 我 記得 你 說 你 甚麼 也 沒 看見 . +You 'd better relax a bit . 你 最好 休息 一下 . +Is that our problem ? 那 是 我們 的 問題 嗎 ? +I was not implying anything . 我 沒有 暗示 甚麼 . +Tom and Mary have a daughter and a son . Tom 和 Mary 有個 女兒 和 兒子 . +You like elephants . 你 喜欢 大象 . +Tom is writing a letter to his best friend . 汤姆 正 给 他 的 好友 写信 . +He must have said so without giving it much thought . 他 一定 没有 多 考虑 就 说 了 . +Love does not exist . 愛 不 存在 . +I still can not believe you are married . 我 仍然 無法 相信 你 結婚 了 . +I have not watched that video yet . 我 还 没 看过 那段 视频 . +I can not see anything without my glasses . 我 没 带 眼镜 就 什么 都 看不到 . +I will go on ahead . 我 會 繼續 前 進 . +He painted a dog . 他 畫 了一 隻 狗 . +A couple of flights were delayed on account of the earthquake . 一些 航班 由 於 地震 被 延誤 了 . +I am a college student . 我 是 个 大学生 . +You are the one who must decide . 你 是 要 做 決定 的 人 . +I saw Tom having an argument with Mary . 我 见 汤姆 跟 玛丽 争论 . +I do not know if he can come tonight . 我 不 知道 他 今晚 會 不 會 來 . +That is logical . 那 符合 逻辑 . +Mary , I love you . 玛丽 , 我 喜欢 你 ! +I have nothing to do with the affair . 我 跟 這件 事 無關 . +She is wearing a white dress today . 她 今天 穿著 白色 的 衣服 . +Tom said he was not sure what Mary wanted to do . 汤姆 说 他 不 确定 玛丽 想 做 什么 . +Shut the door , please . 請關 上門 . +I can not predict what will happen . 我 不能 預言會 發生 甚麼 . +If anything should happen , please let me know . 如果 发生 了 什么 , 请 让 我 知道 . +Which country are you from ? 你 是从 哪个 国家 来 的 ? +I wish that I could speak French better . 我 希望 我 能 说 法语 说 得 更好 . +Get me some towels from the bathroom . 给 我 从 浴室 拿 几条 毛巾 来 . +It is really bad for your eyes . 它 对 你 的 眼睛 有害 . +I like dogs and my sister likes cats . 我 喜欢 狗 , 我 妹妹 喜欢 猫 . +She must be angry with me . 她 一定 在 生 我 的 氣 . +Are you two ready ? 你们 两个 人 都 准备 好了吗 ? +May I eat something ? 我 可以 吃 點 什麼 嗎 ? +This bridge was built two years ago . 這 座 橋 是 在 兩 年前 建造 的 . +He drove the truck to Dallas . 他 開 卡 車 到 達 拉斯 . +She identified him as the murderer . 她 確認 他 是 殺 人 兇 手 . +The whole family was sick in bed . 全家 都 病倒 了 . +Tom is obese , is not he ? 汤姆 很胖 , 是 吧 ? +I am coming . 我 來 了 . +Everyone will die . 人 固有 一 死 . +Do not worry about me . 不要 擔心 我 . +He has gone to Britain . 他 已经 去 了 英国 . +This is my bedroom . 這 是 我 的 臥室 . +You must be careful not to make him angry . 你 要 小心 別 惹 他 生氣 . +Stick a stamp on the envelope . 把 郵票 貼 在 信封 上 . +She asked a very good question . 她 問 了 一個 非常 好 的 問題 . +Eat a lot of vegetables . 多 吃 点 蔬菜 . +You have cute eyes . 你 有 一双 很 可爱 的 眼睛 . +The baby tore up a ten @-@ dollar bill . 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Where is the dining room ? 餐厅 在 哪里 ? +Tom got ready for bed . 湯姆 準備 睡覺 . +You need to leave . 你 必須 離開 . +What he says is total nonsense . 他 说 的话 根本 毫无意义 . +Tom put his wallet on the table . 汤姆 把 钱包 放在 了 桌子 上 . +How many students are there in your school ? 你们 学校 有 多少 学生 ? +I am tired of him bawling me out . 我 厭煩 了 他 對 我 說 教 . +What do you have for breakfast ? 你 早餐 吃 什么 ? +She has a rose in her hand . 她 手里 拿 着 一 朵玫瑰 . +You may go anywhere . 您 可以 随便 去 哪儿 . +I bought a book online . 我 在 網上 買 了 一本 書 . +He wanted to get his shirts washed . 他 想要 把 他 的 襯衫 洗 乾 淨 . +What do you need this money for ? 你 需要 這些 錢 做 什麼 ? +We think that he is honest . 我們 認為 他 誠實 . +The TV remote control is under the couch . 电视 遥控器 在 沙发 下面 . +It is great . 真是 太好了 . +I have a sore throat . 我 喉嚨 痛 . +Tom owes us a favor . 汤姆 欠 我们 个情 . +You are going to be a mommy . 你 要 當 媽 了 . +I am thinking about that matter . 我 在 想 那個 問題 . +It is not a watch . 這 不是 手 錶 . +It will be finished in a day or two . 一兩天 內 就 能 結束 . +We have our own problems to solve . 我们 有 自己 的 问题 要 解决 . +Why are you so mad ? 你 為 什麼 這麼 生氣 ? +I was about to go look for you . 我 剛才 正要 找 你 . +My mother was up late last night . 我 母亲 昨天 很晚 还 醒 着 . +Please give me your permanent address . 請 給 我 你 的 永久 地址 . +It is two miles from here to the park . 從 這裡 到 公園 距離 兩 英里 . +Others are less optimistic . 其他人 不 那么 乐观 . +She married him for his money . 她 为了 他 的 钱 嫁给 了 他 . +It took me three hours to do my homework . 我 花 了 3 小时 做作业 . +Will you please show me the way ? 請 您 給 我 指 一 指路 好 嗎 ? +Ask her when she will come back . 问问 她 什么 时候 回来 . +I like to run . 我 喜欢 跑步 . +She showed us a beautiful hat . 她 給 我們 看 了 一頂 漂亮 的 帽子 . +Tom is hair was disheveled . 湯姆頭 發 蓬亂 . +Can you drive a manual transmission ? 你 會 開手 排車 嗎 ? +Tom had never seen Mary so busy . 汤姆 从没 见 过 玛丽 这么 忙 . +I am not so sure Tom is wrong . 我 不 太 確定 湯姆 錯 了 . +He graduated from Tokyo University . 他 畢業 於 東京 大學 . +Have a nice day . 祝 你 一天 过 得 愉快 . +Do not worry about others . 不用 担心 其他人 . +I am single . 我 单身 . +The meeting lasted two hours . 這個 會議 持續 了 兩個 小 時 . +There were lots of people . 有 很多 人 . +I like Tom , too . 我 也 喜歡 湯姆 . +I like to listen to the radio . 我 喜歡 聽 廣播 . +Ten minutes later , our car ran out of gas . 我们 的 车 再 过 十分钟 就 没油 了 . +This medicine will give you some relief . 这 药会 让 你 舒服些 . +What will you give Tom ? 你 会 给 汤姆 什么 ? +We have had this discussion before . 我們 以前 討論 過 . +What is the name of this tune ? 這 首 曲子 叫 什麼 名字 ? +The books here are mine . 這兒 的 書 是 我 的 . +Be realistic ! 现实 点 ! +I invited my neighbor to breakfast . 我 請 我 的 鄰居 來 吃 早 飯 . +You are a good person . 你 是 一個 好人 . +We have to get through this . 我们 要 了结 此事 . +Tom did not doubt that there would be a lot of people there . 汤姆 确定 那里 会 有 很多 人 . +Are you angry at Tom ? 你 在 生 汤姆 的 气 吗 ? +I do not fear death . 我 不怕死 . +She should have been more careful . 她 本來 應該 更 小心 的 . +Fish is cheap today . 今天 魚 很 便宜 . +Tom was not surprised to see me . 汤姆 见到 我 并 没有 惊讶 . +I think it is a really good thing . 我 認為 它 真是 好事 . +I wish I were taller . 我 希望 我 比較 高 . +He put a hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +Tom did not try to hide the truth . 湯姆 並 沒有 試著 要 隱瞞 實情 . +I thought he was my brother . 我 以为 他 是 我 弟弟 . +It is just big enough for Tom . 这 尽够 汤姆 的 . +Tom is a rabbi . 汤姆 是 个 拉比 . +I want some cake . 我 想要 点 蛋糕 . +I used to play tennis . 我 以前 打网球 . +Eating raw eggs could be bad for you . 吃 生蛋 可能 是 危險 的 . +We can deliver it this evening . 我們 今天 晚上 可以 運送 它 . +Why should I care what you think ? 為 什麼 我 應該 在乎 你 怎麼 想 ? +Were you busy ? 您 当时 在 忙 吗 ? +He sometimes comes to see me . 他 有时 会 来看 我 . +Tom did not want to work in Boston . 汤姆 不想 在 波士顿 工作 . +Iceland used to belong to Denmark . 冰島 以前 屬 於丹麥 . +This man is not reliable . 这个 人 靠不住 的 . +According to my calculation , she should be in India by now . 根據 我 的 估計 , 她 現在 應該 在 印度 了 . +It is none of your business . 這 不關 你 的 事 . +This is a very hard mattress . 這個 床墊 很 硬 . +The jet landed at Tokyo . 這 架 客機 降落 在 東京 了 . +We talked over the plan with him . 我們 和 他 談 了 這個 計劃 . +This is the house where she used to live . 这 是 她 曾经 住 过 的 房子 . +I know him . 我 認識 他 . +Tom and Mary are studying together in the library . 湯姆 和 瑪麗 在 圖書館 一起 學習 . +Whose bike is this ? 这辆 自行车 是 谁 的 ? +I am delighted to see you . 我 很 高兴 见到 你 . +He behaved as if he were crazy . 他 表现 的 像 个 疯子 . +Lake Baikal in Russia is the deepest lake in the world . 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +You or I will be chosen . 你 或者 我会 被 选中 . +I know why Tom is studying French . 我 知道 為 甚麼 湯姆學法語 . +The rear gate was open . 后门 曾 开 着 . +Do you think that he is equal to the task ? 你 认为 他 能够 胜任 这个 任务 吗 ? +She said that she was happy . 她 说 了 她 很 幸福 . +The pain has started to ease now . 痛 开始 减轻 了 . +I met her late in the evening . 我 在 深夜 遇見 了 她 . +Can we go now , please ? 请问 我们 现在 能 走 吗 ? +We got together in the park . 我們 在 公園 裡 聚在一起 . +They tied the thief to the tree . 他们 把 小偷 绑到 了 树上 . +Let is start with Lesson Ten . 我们 从 第十课 开始 吧 . +It is my birthday soon . 我 的 生日 就 快 到 了 . +They became close friends . 他們 成 了 密友 . +I was late to school . 我 上学 迟到 了 . +The bicycle under the tree is mine . 那 輛 在 樹下 的 自行 車 是 我 的 . +His teeth are yellow from smoking too much . 他 的 牙齿 被 烟熏 黄 了 . +Tom tried to catch up with Mary , but he could not . 汤姆 试图 去 追上 玛丽 , 但是 他 没 成功 . +Was his story true ? 他 的 故事 是 真的 吗 ? +Do you know how to do this ? 你 知道 怎么 做 吗 ? +Where are we going to meet ? 我们 在 哪里 见面 ? +It is over there . 在 那里 . +Tom has absolutely no enemies . 汤姆 绝 没有 敌人 . +Give me some paper to write on . 給 我 一些 紙 來 寫 字 . +He is no longer a boy . 他 不再 是 个 男孩 . +Is Tom eating ? 汤姆 在 吃饭 吗 ? +I was not yelling . 我 沒有 在 吼 . +I need an assistant who speaks French . 我 需要 一個 會 說 法語 的 助理 . +I am such an unlucky guy . 我 真是 不 走运 的 家伙 . +The Colombian government demanded more money . 哥伦比亚政府 要 了 更 多 的 钱 . +Everyone knows that Tom is French is good . 每个 人 都 知道 汤姆 的 法语 很 好 . +I have a lot of friends living in Boston . 我 有 很多 朋友 住 在 波士顿 . +For here , or to go ? 內用 還 是 外帶 ? +You should set a good example for your children . 你 应该 给 你 的 孩子 们 树立 好榜样 . +There is an orange on the table . 桌上 有 一只 橙子 . +He did nothing but cry . 他 只是 哭 . +She gave him the car . 她 给 了 他 车 . +Bring your student ID card . 帶上 你 的 學生卡 . +I do not like to swim in the pool . 我 不 喜歡 在 泳池 裡 游泳 . +Tom did not know that what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +My grandfather is photograph is on the wall . 我 祖父 的 照片 在 墙上 挂 着 . +He showed me his photograph album . 他 給 我 看 了 他 的 影集 . +Without water , we cannot exist . 没有 水 , 我们 无法 生存 . +The city was soon occupied by the soldiers . 很快 , 城市 就 被 士兵 占领 了 . +I can not find anything wrong with his theory . 我 在 他 的 理論 中 找 不到 任何 問題 . +The train came on time . 火车 准时 到 了 . +Tom passed away on October 20th , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +You do not need to work on Sundays . 星期天 的 時候 , 你 不用 工作 . +I was impressed with her work . 她 的 作品 給 我 留下 了 深刻印象 . +What would you like to be in the future ? 你 以后 想 当 什么 呢 ? +I am on a diet . 我 在 節食 . +I love passion fruit juice . 我 愛 百香果汁 . +He is very angry . 他 非常 生气 . +I am just a regular office worker . 我 只是 一個 普通 的 上班族 . +He is married with two children . 他 已婚 並 育有 兩個 孩子 . +Please answer all the questions . 請 回答 所有 問題 . +I really have to be going . 我 真的 得 走 了 . +I can open the window . 我 可以 打開 這 扇 窗 . +I want you to work harder . 我 希望 你 更加 努力 地 工作 . +This is your key . 這 是 您 的 鑰匙 . +I wonder if they will get divorced . 我 不 知道 他們 是否 會 離婚 . +Tom does not seem to be a Canadian . 湯姆 看來 不是 加拿大人 . +How do you make your money ? 你 怎麼 賺 錢 ? +" Do you think he will come ? " " I hope not . " " 你 認為 他 會 來 嗎 ? " " 我 希望 不 會 . " +Is there any chance that he will resign ? 他 有 可能 辭職 嗎 ? +Do not pay any attention to Tom . 千万别 理 汤姆 . +Do you often hear from him ? 你 常常 收到 他 的 音訊 嗎 ? +I think you are going to want to sit down . 我 觉得 你 想 坐下 . +The Prime Minister is speech was calculated to anger the opposition parties . 總理 的 發言 估計 激怒 了 在野 黨 . +You should go . 你 最好 去 . +You spend too much money . 你 花 太 多 钱 了 . +Cows provide us with milk . 奶牛 为 我们 提供 牛奶 . +She always gets her own way . 她 總是 隨心 所欲 . +That mountain is covered with snow . 這 座 山 被 雪所覆蓋 . +Close the door . 关门 . +You have to clean your room . 你 该 打扫 你 的 房间 . +Call Tom and Mary this evening . 今晚 给 汤姆 和玛丽 打电话 . +As soon as she opened the door , a cat ran out . 她 一開 門 , 一 隻 貓 就 跑 了 出 來 . +She is a famous singer . 她 是 一个 著名 的 歌手 . +Love blinded him to her faults . 愛情 讓 他 盲目 到 看不到 她 的 錯 . +We started at six . 我們 六點 開始 . +I am sure Tom would approve . 我 確定 湯姆會 同意 . +I am not at all satisfied with this result . 我 對 這個 結果 一點 兒 也 不 滿意 . +What do you want to do ? 你 想 做 什麼 ? +He got away disguised as a policeman . 他 偽裝 成 警察 逃跑 了 . +Can you wake me up at 7 : 00 tomorrow ? 你 明天 早上 七點 可不可以 叫 我 起床 . +No one believed what I said . 没有 人 相信 我 说 的话 . +This is not difficult . 這個 不 難 . +There is no need to get so angry . 沒有 必要 這麼 生氣 . +You have everything . 您 全都 有 . +His pictures were hung on the wall . 他 的 画 被 悬挂 在 墙上 . +Have you finished it ? 你 做 完 了 嗎 ? +I continued singing . 我 继续 唱歌 . +This lake is deepest at this point . 这里 是 湖 最深 的 地方 . +I think this machine is in need of repair . 我 认为 这 机器 需要 修理 . +It has been raining since last Thursday . 從 上週 四 開始 一直 下雨 . +I am scared of wild animals . 我 怕 野兽 . +I think you are jealous . 我 觉得 你 妒忌 了 . +We had a lot of snow last year . 去年 下 了 很多 雪 . +You must be mentally exhausted . 你 肯定 脑子 糊掉 了 . +Are you absolutely certain about this ? 你 絶 對 確 定 這 事 嗎 ? +Study hard so you do not fail . 努力 學習 , 這樣 你 就 不 會 失敗 . +She has broken the toaster again . 她 再次 弄壞 了 烤 麵 包 機 . +He lives just around the corner . 他 就 住 在 附近 . +I do not care if it is a bit cold . 稍微 冷 点儿 不要紧 . +I was very confused by his questions . 我 對 他 的 問題 感到 非常 困惑 . +Good afternoon . 下午 好 . +Tom bought new gloves . 湯姆 買 了 新 手套 . +What kind of movie do you want to watch ? 你 想 看 哪种 类型 的 电影 ? +Dinosaurs became extinct a very long time ago . 恐龍 在 很久以前 滅 絶 了 . +I cut myself shaving this morning . 我 今天 早上 刮 鬍 子 的 時 候 把 自己 弄 傷 了 . +Tomorrow is weather should be sunny with occasional rain . 明天 天气 晴 转 阵雨 . +I want a few potatoes . 我 要 幾個 土豆 . +Everybody laughed . 大家 笑 了 . +Please phone me before you come . 請 你 來 之前 打 電話 給 我 . +You are too sensitive to criticism . 你 對 批評 太 敏感 了 . +I have a certain amount of money on me . 我 有些 钱 . +I do not know what to open it with . 我 不 知道 用 什么 能 打开 它 . +It is hard to predict what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants more . 他 想要 更多 . +He got injured in the traffic accident . 他 在 這場 交通 意外 中 受 了 傷 . +His absence gave birth to all sorts of rumors . 他 的 缺席 导致 了 各种 谣言 的 产生 . +They serve excellent food here . 他們 這裡 提供 一流 的 美食 . +The smell of roses filled the room . 玫瑰 香水 的 味道 充满 了 房间 . +My hands and legs are swollen . 我 的 手 和 腳 都 腫 了 . +He is your friend . 他 是 你 的 朋友 . +I can not swim at all . 我 一点 也 不会 游泳 . +I do not like sushi . 我 不 喜欢 寿司 . +Ask him where he parked his car . 問 問 他 把 他 的 車 停 在 那裡 . +Tom is the tallest in his class . 湯姆 是 班上 最高 的 . +She squeezed the juice from many oranges . 她 用 了 許多 柳橙 來 榨汁 . +He went to Nagoya on business . 他 到 名古屋 洽談 業務 . +I arrived at the station on time . 我 準 時 到 達 了 車站 . +This is all that I know about him . 这 就是 我 关于 他 知道 的 一切 . +Tom might have missed the last train . 汤姆 可能 错过 了 最后 一班 列车 . +She seems to be in love with my brother . 她 似乎 喜歡 上 了 我 哥哥 . +Welcome back . 欢迎 回来 . +That is very big . 那 是 很大 的 . +Tom and I are almost done . 湯姆 和 我 要 做 完 了 . +A stranger spoke to me on the bus . 在 公车上 , 一个 陌生人 和 我 说 了 话 . +I am cooking dinner . 我 准备 晚餐 . +Let is not discuss the matter today . 今天 讓 我們 不要 討論 這件 事 . +I am as tall as you . 我 跟 你 一樣 高 . +Can you distinguish silver from tin ? 你 能 分辨 銀和錫 嗎 ? +What is this ? 這 是 什麼 ? +Take off your socks . 把 你 的 袜子 脱 了 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +It looks like your dog is thirsty . 你 的 狗 看起来 口渴 了 . +Visiting all the tourist sights really wore me out . 參觀 所有 觀光勝 地 累壞 了 我 . +She may be late , in which case we will wait . 她 可能 迟到 , 然后 我们 就要 等 . +Tom says he hopes Mary can do that . 汤姆 说 他 希望 玛丽 能 做到 . +You should put your coat on . 你 應該 把 大衣 穿 上 . +I will take you to the bus stop . 我会 带 你 到 公交车站 . +You are irresistible . 你 令人 难以 抗拒 . +I like you . 我 喜欢 你 . +Tom was replaced by Mary . 汤姆 被 玛丽 替换 下来 . +I think I am right . 我 想 我 是 對 的 . +Every day I waited for her at the bookstore after school . 我 每天 放学 后在 书店 那里 等 她 . +The sky turned dark . 天暗 了 下来 . +Europe has a smaller population than Asia . 欧洲 的 人口 比 亚洲 少 . +I have eight siblings . 我 有 八個 兄弟姐妹 . +We studied English . 我们 学 了 英语 . +There were two pieces of cake . 那 有 两块 蛋糕 . +Let me handle this . 讓 我 來 處理 . +I want a boat that will take me far away from here . 我 想要 一艘船 带 我 远离 这里 . +I think that Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +I want to keep moving . 我 想 继续 走 . +He comes to Tokyo once a year . 他 一年 來 東京 一次 . +Tom has not taken a bath in a long time . 汤姆 很 长时间 没 洗澡 了 . +I can do it by myself . 我 可以 自己 做 . +I handed the mike to him . 我 把 麥克風 遞 給 他 . +Will you be here tomorrow ? 你 明天 在 这里 吗 ? +I was vaccinated against the flu . 我 接种 了 流感疫苗 . +That should make you happy . 那 该 让 你 高兴 . +I want to know where she went . 我 想 知道 她 去 哪儿 了 . +It is fun to travel . 旅行 是 令人 快乐 的 . +I believe in love . 我 相信 爱情 . +He wore a dark sweater . 他 穿 了 一件 深色 毛衣 . +Tom should thank me . 汤姆 应该 感谢 我 . +I can not do it . 我 做 不到 . +I called Tom up . 我 打 電話 給 湯姆 了 . +I do not think he can help you . 我 覺得 他 不能 幫 你 . +I like to travel by train . 我 喜歡 搭 火車 旅行 . +Mathematics is difficult for me . 數學 對 我 來說 很 難 . +How much is the commission ? 手续费 是 多少 ? +Did you check all the items on the shopping list ? 你 检查 购物单 上 所有 的 项目 了 吗 ? +Can you copy this for me ? 你 能 替 我 拷貝 這個 嗎 ? +Tom has calmed down . 汤姆 冷静下来 了 . +Tom has his own bedroom . 湯姆 有 他 自己 的 房間 . +We are waiting for Tom . 我们 在 等 汤姆 . +She was very proud of her father . 她 非常 地 以 她 父親 為 榮 . +All horses are animals , but not all animals are horses . 所有 的 马 都 是 动物 , 但 并非 所有 的 动物 都 是 马 . +The teacher asked me which book I liked . 老師 問 我 我 喜歡 哪 本書 . +Do you know where they come from ? 你 知道 他们 来自 哪里 吗 ? +His methods are not scientific . 他 的 方法 不 科学 . +I can not stand his arrogance . 我 受不了 他 的 傲慢 . +Here is the book you are looking for . 你 正在 找 的 書 在 這裡 . +A stitch in time saves nine . 防微 杜漸 . +A dog can run faster than a man can . 狗 跑 得 比 人 快 . +I ate an apple . 我 吃 了 一個 蘋果 . +The glass is dirty . 玻璃 髒 了 . +We will stay here until Sunday . 星期天 前 我們 將 會 待 在 這裡 . +I will pay . 我 來付 錢 . +You should seriously consider working here . 你 应该 认真 考虑 在 这里 工作 的 事 . +I made her angry . 我 讓 她 生氣 . +I am leaving for Canada tomorrow . 我 明天 要離 開去 加拿大 . +Have you ever seen Tom when he is mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +It is already eleven . 已经 是 11 点 了 . +Most people think I am crazy . 大部份 的 人 覺得 我 瘋 了 . +I wash my hands before eating lunch . 我 在 吃 午 饭前洗手 . +He could not answer that question . 他 無法 回答 這個 問題 . +You look like you have just lost your best friend . 你 看上去 就 像是 刚刚 失去 了 自己 最好 的 朋友 似的 . +He is an Italian . 他 是 義 大利 人 . +You have to start somewhere . 你 必须 有 一个 出发点 . +I have met so many new people . 我 遇見 了 許多 新 的 人 . +I will play tennis this afternoon . 我 今天下午 會 去 打 網球 . +I applied for a summer internship . 我 應徵 了 一個 暑期 實習 . +Many kinds of birds live in Japan . 許多種 鳥類 住 在 日本 . +I know what it is like to lose someone . 我 知道 这 看起来 像是 失去 了 某人 . +Tom abandoned hope . 湯姆 放棄 了 希望 . +Is Tom really a nice guy ? 汤姆 是 个 好人 吗 ? +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +These are the new ones . 這些 是 一些 新 的 . +This medicine will help you . 這個 藥會 幫助 你 . +I do not eat as much as I used to . 我 比 以前 吃 得 少 了 . +He could not hold his temper any longer . 他 再也 忍不住 气 了 . +I am okay . 我 沒事 . +How was the food ? 食物 怎麼樣 ? +He has made the same mistake twice . 他 犯 了 兩次 相同 的 錯誤 . +He is writing a long letter . 他 写 长信 . +Open your eyes , please . 请 睁开眼睛 . +What do you usually do in your spare time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +Is there anything you want to eat ? 有 什么 想 吃 的 吗 ? +Tom is a scumbag . 湯姆 是 個 无賴 . +I built a new house . 我 盖 了 栋 新房子 . +I have finished writing the letter . 我 已經 寫 完信 了 . +I wrote a letter . 我 写 了 一封信 . +I have no energy today . 今天 我 沒有 精神 . +Raise your hands . 手 举 起来 . +I can sing well . 我 唱歌 很 好听 . +I do not know when he will come . 我 不 知道 他 什么 时候 来 . +I made up my mind to go there . 我 决定 去 那里 . +I must help her . 我 必須 幫助 她 . +She abandoned her children . 她 抛弃 了 她 的 孩子 . +Chocolate has more iron than spinach . 巧克力 的 鐵質 含量 比 菠菜 還 要 多 . +You should have warned him sooner . 你 應 該 要 更快 警告 他 的 . +Strictly speaking , the earth is not round . 嚴格 來說 , 地球 不是 圓 的 . +I really do not understand this problem . 我 真的 不 懂 这个 问题 . +Dad bought me a camera . 爸爸 给 我 买 了 一个 照相机 . +I felt that my honor was at stake . 我 覺得 我 的 名譽 受到 了 威脅 . +How about going to the movies ? 去 看 電影 怎樣 ? +Do you want to know what I see ? 你 想 知道 我 看见 什么 了 吗 ? +You may go anywhere you like . 你 喜欢 去 哪儿 就 可以 去 哪儿 . +With the T.V. on , how can you keep your mind on your studies ? 你 开 着 电视 怎么 能 安心 学习 呢 ? +I think it will turn out fine . 我 觉得 没 问题 . +Wait till the light turns green . 等到 指示 燈 變成 綠色 . +Perhaps she will come tomorrow . 也許 她 明天 會來 . +I wish I were in Paris now . 但 願 我 現在 在 巴黎 . +You hate Tom , do not you ? 你 恨 湯姆 , 不是 麼 ? +I can read without glasses . 没 眼镜 我 可以 读 . +Things are getting out of control . 事情 要 失控 了 . +Tom gave a different answer . 湯姆 給出 了 不同 的 答案 . +Are you following me ? 你 在 跟著 我 嗎 ? +She discovered that she had run out of salt . 她 发现 她 已经 断盐 了 . +She killed herself yesterday . 她 昨天 自杀 了 . +What did he say ? 他 说 了 什么 ? +If it rains tomorrow , I will not go . 如果 明天 下雨 , 我 就 不 去 . +Did you play baseball yesterday ? 你 昨天 打 棒球 了 没有 ? +Wait a moment . 請 稍 等 . +My father is hobby is fishing . 我 父親 的 嗜好 是 釣 魚 . +Why are you guys so angry ? 你們 為 什麼 這麼 生氣 ? +I live near the sea so I often go to the beach . 我 住 在 海边 所以 经常 去 海滩 . +Did she show you the picture ? 她 給 你 看 過 照片 了 嗎 ? +There must be a way to arrive at a diplomatic solution . 必须 有 外交 解决 的 途径 . +I do not know her . 我 不 認識 她 . +Mary can speak Japanese . 瑪麗會 講 日 語 . +Why would she lie ? 她 為 甚麼 要 說 謊 ? +That is my dictionary . 那 是 我 的 字典 . +I as well as you was late for school yesterday . 我 跟 你 一样 昨天 上学 迟到 了 . +Tom should not have been here today . Tom 今天 不該 在 這 . +" I never thought Tom would win . " " Me neither . " “ 我 没想到 汤姆 会 赢 . ” “ 我 也 是 . ” +Tell Tom that I do not need his help . 告诉 汤姆 我 不 需要 他 的 帮助 ! +He lives by himself . 他 一个 人 生活 . +You should do that as often as you can while you are still young . 趁 你 还 年轻 的 时候 , 你 应该 尽可能 经常 地 这样 做 . +I know that you are busy , too . 我 知道 , 您 也 很忙 . +Where is the Japanese Embassy ? 日本 大使 館 在 哪裡 ? +Tom said that he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +You remind me of your brother . 你 讓 我 想起 你 的 兄弟 . +I do not know if she wants to go with me . 我 不 知道 她 想 不想 和 我 一起 去 . +What time do you go home ? 你 几点 回家 ? +Is that pure gold ? 那 是 純金 嗎 ? +He is something of a scholar . 他 有 几分 像 学者 . +There is no doubt about it . 關於 此事 毫無疑問 . +Wear whatever you want to wear . 穿 你 想 穿 的 . +Tom does not write to me anymore . 汤姆 不再 给 我 写信 了 . +Which do you prefer , dogs or cats ? 狗 和 猫 你 更 喜欢 哪 一个 ? +I know this has not been easy for you . 我 知道 這 對 於 你 不 容易 . +He did not eat anything yesterday . 他 昨天 沒有 吃 任何 東西 . +He told me when to say yes . 他 告诉 我 什么 时候 该 说 是 . +Cash donations will be accepted . 接受 现金 捐赠 . +Do you have something to say to me ? 你 有事 想 对 我 说 吗 ? +My friends invited me to dinner . 我 的 朋友 邀請 我 去 吃 晚 飯 . +They do not always obey their parents . 他們 並 不 總是 服 從 他們 的 父母 . +It took a long time to take in what she was saying . 花 了 很久 才能 听懂 她 在 说 什么 . +I have already eaten breakfast . 我 已经 吃 过 早饭 了 . +Everyone was surprised . 所有人 都 很 吃惊 . +If you do not have anything nice to say , do not say anything at all . 如果 你 没 好话 说 , 那 就 什么 都 别说 . +They do not know each other very well . 他們 不 太 認識 對 方 . +Where are you going ? 你们 去 哪里 ? +I do not lie . 我 不 說 謊 . +Tom put down his paintbrush . 湯姆 放下 了 他 的 畫筆 . +All of the cookies are in the shape of stars . 所有 餅 乾 都 是 星星 的 形狀 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everything is normal . 一切正常 . +I like spring better than fall . 我 喜歡 春天 勝 過 秋天 . +There is something we need to talk about . 我们 有些 事 要 谈 . +Tom is a high school student . 湯姆 是 個 高中生 . +That is good , is not it ? 那 太好了 , 不是 嗎 ? +My aunt grows tomatoes in her garden . 我 阿姨 在 她 的 花園 種 蕃茄 . +Will you take a personal check ? 你 收 私人 支票 嗎 ? +Tom waited for Mary in front of the warehouse . 湯姆 在 倉庫 前 等 瑪麗 . +He took a walk before breakfast . 他 在 早餐 之前 散步 . +I need my boots . 我 需要 我 的 靴子 . +She married again in her mid @-@ forties . 她 在 四十多 歲 的 時候 再次 結婚 . +That tie goes well with your shirt . 那條 領帶 很 適合 你 的 襯衫 . +Are you finished with your work ? 你 完成 你 的 工作 了 嗎 ? +She despised him . 她 看不起 他 . +She burned her left hand . 她 的 左手 被 燙到 了 . +It is unfortunately true . 可惜 这 是 真的 . +I heard it on the radio . 我 從 廣播 中 聽到 它 . +Tom could not see anyone . 汤姆 看不到 任何人 . +I do not want to take such a risk . 我 不想 承担 这样 一个 风险 . +Tom is coming , too . 汤姆 也 来 . +We can not stay in here very long . 我們 不能 在 這裡 待 很 長 時間 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +He moved into my neighborhood . 他 搬到 了 我家 附近 . +We are eating bread . 我们 在 吃 面包 . +The class begins at 8 : 30 . 課程 八點半 開始 . +I can not follow Tom is logic . 我 跟不上 汤姆 的 逻辑 . +Tom got so absorbed in his work that he forgot to eat . 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 吃饭 . +He painted a picture of roses . 他 畫 了 一幅 玫瑰 的 畫 . +He has three older sisters . 他 有 三个 姐姐 . +None of the money is yours . 這些 錢 都 不是 你 的 . +Tom had to sell his house . 湯姆 必須 賣 了 他 的 房子 . +Do you know where to find Tom ? 你 知道 去 哪 找 汤姆 吗 ? +I want to sing a song . 我 想 唱 個 歌 . +That meat is chicken . 那個 肉 是 雞 肉 . +I spent my vacation at the beach . 我 在 海邊 度假 . +He keeps his room clean . 他 保持 他 的 房間 乾 淨 . +You must answer these questions . 你 必須 回答 這些 問題 . +Tom clapped . 湯姆 拍 了 手 . +Would you mind my opening the door ? 你 介意 我 開門 嗎 ? +They now have three kids . 现在 他们 有 三个 孩子 . +I will be there at once . 我 會 立刻 到 那裡 . +We want one . 我們 要 一個 . +I do not mind waiting for a while . 我 不介意 等 一會兒 . +This book is worth reading twice . 這 本書 值得 讀 兩遍 . +The young girl burst into tears . 這個 年輕 的 女孩 淚流 滿面 . +Can you hold on a second ? 你 能 等 一下 嗎 ? +They kept on walking . 他们 继续 走 . +I am an actress , not a model . 我 是 演员 , 不是 模特 . +I consider fruit to be the healthiest food . 我 將 水果 視為 最 健康 的 食物 . +Let me try it . 让 我 试试 . +You have a choice of black tea , coffee , or milk . 你 可以 选择 红茶 , 咖啡 或 牛奶 . +The plan was carried out . 计划 被 执行 了 . +It is taking a little longer than I expected . 我 花 了 比 預期 更 多 的 時間 . +This is not a tiger . 这 不是 老虎 . +He seldom gives his wife presents . 他 很少 給 他 的 妻子 禮物 . +We have to stop the bleeding . 我們 必須 止血 . +There was a cottage on the side of the hill . 山坡 上 有 一间 小屋 . +I was born on April 3 , 1950 . 我 出 生于 1950 年 4 月 3 日 . +Could you show me this bag ? 你 能 給 我 看看 這個 包 嗎 ? +The landlord says he wants to raise the rent . 地主 说 他 要 提高 租金 . +Have you ever seen him swimming ? 你 曾 看 過 他 游泳 嗎 ? +I did not mean to do that . 我 不是故意 那樣 做 . +She almost drowned . 她 差点 就 溺水 了 . +That shop sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +That was the part that Tom and I were most confused about . 这 是 我 和 汤姆 最 困惑 的 部分 . +Hokkaido is to the north of Sendai . 北海道 在 仙台 的 北方 . +Everyone attacked my opinion . 每個 人 都 抨擊 我 的 意見 . +Soccer is the most popular of all sports . 足球 是 所有 体育运动 中 最 受欢迎 的 . +I will see you whenever it suits you . 只要 你 方便 , 我什麼 時候 都 可以 跟 你 見 面 . +Turn on the computer . 打開 電腦 . +There is a strike . 有 罢工 . +Clearly you are mistaken . 顯然 的 , 你 錯 了 . +We found that everyone was asleep . 我們 發現 每個 人 都 睡著 了 . +I do not want to take the chance . 我 不想 冒 這個 險 . +Actions speak louder than words . 行動勝 於雄辯 . +He ignored his father is advice . 他 不 顧 他 父親 的 忠告 . +I am surprised that you do not know about their marriage . 我 很 惊讶 , 你 竟然 不 知道 他们 结婚 . +I want him to read this . 想 让 他 读 这个 . +Let is draw lots to decide who goes first . 来 抽签 决定 谁 先 走 吧 . +I hate Mondays . 我 讨厌 星期一 . +My uncles come to see me from time to time . 我 的 叔叔 們 ( 舅舅 們 ) 有時 會 來 探望 我 . +The sky is full of stars . 天空 中 繁星点点 . +Keep your voice down . 你 说话 小点声 . +I need a Japanese @-@ English dictionary . 我 需要 一本 日 英 字典 . +Marriage is the main cause of all divorces . 结婚 是 所有 离婚 的 主要 原因 . +There was scarcely any money left . 几乎 没 剩下 钱 . +Will you please show me the way ? 請 你 告訴 我路 怎麼 走 好 嗎 ? +Do you have this jacket in different colors ? 你 有 不同 顏色 的 外套 嗎 ? +I want everyone to help me clean the house . 我 希望 所有人 都 来 帮 我 打扫 房子 . +My daughter graduated from the university today . 我 女兒 今天 大學 畢業 . +I bought the book for myself , not for my wife . 我 給 我 自己 買 了 書 , 不是 給 我 妻子 . +How would you like your steak ? 您 的 牛排 要 几分 熟 ? +It was very kind of you to lend me an umbrella . 你 借给 我 伞 真好 . +She is looking for her car keys . 她 在 找 她 的 車 鑰匙 . +Get out ! 滾 出去 ! +That red dress suited her . 那件 紅色 的 洋裝 適合 她 . +Tom was a little late . Tom 迟到 了 一小 段时间 . +I do not think this is a good idea . 我 觉得 这 主意 不行 . +He ran . 他 跑 了 . +There is nothing good on television . 電視 上 沒有 什麼 好事 . +Are you writing a letter ? 你 在 寫信 嗎 ? +Tom thought that he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +He married an air hostess . 他 娶 了 一个 空姐 . +I left my briefcase on the bus . 我 把 我 的 公事包 留在 公車 上 了 . +Who were you talking with ? 你 和 谁 说话 呢 ? +We are just about finished here . 我們 快要 結束 了 . +She thanked us for our help . 她 感謝 我們 的 幫助 . +The company abandoned that project . 公司 放弃 了 那个 项目 . +That does not make sense . 这 没有 任何 意义 . +I am looking forward to your visit . 我 期待 著 您 的 光臨 . +Tom is more famous than you . 湯姆 比 你 有名 . +Tom could not think of a good place to hide it . 湯姆 想不到 個 好 地方 藏 它 . +He is likely to win the game . 他 有 可能 赢得 比赛 . +There is a cottage beyond the bridge . 桥 对面 有 一间 小屋 . +Accuracy is important in arithmetic . 准确性 在 计算 中 很 重要 . +You should have introduced yourself to the girl . 你 應該 向 那個 女孩 自我 介紹 的 . +Save it on the external hard drive . 把 它 保存 在 外接式 硬碟 . +I caught a cold last month . 上個月 我 感冒 了 . +That student runs fast , does not he ? 那个 学生 跑 得 很快 , 不是 吗 ? +Why did not Tom need to go to Boston ? 为什么 汤姆 不 需要 去 波士顿 +I am afraid you will have to go in person . 我 恐怕 您 必须 亲自 去 . +It may sound strange , but what she said is true . 聽 起來 或許 有 點怪 , 但 她 說 的 是 真的 . +I hope I make a good first impression . 我 希望 我 能 留下 個 好 的 第一印象 . +As long as we love each other , we will be all right . 只要 我們 彼此 相愛 , 我們 會 沒事 的 . +There is not a cloud in the sky . 天上 没有 云 . +I will give you anything that you want . 我 會 給 你 任何 你 想要 的 東西 . +Would you like some coffee ? 你 要 喝咖啡 吗 ? +It will cost about 10,000 yen . 它 將 花 費大 約 10 , 000 日元 . +Those pictures were painted by him . 那些 圖畫 是 他 畫 的 . +Excuse me , where is the train station ? 抱歉 , 火車 站 在 哪裡 ? +He has a good command of English . 他 有 很好 的 英語 能力 . +Everybody needs to calm down . 大家 需要 冷静下来 . +They do not talk to us anymore . 他們 不再 跟 我們 談 了 . +What are you after ? 你 想要 什么 ? +I can not bear the sight of him . 我 受不了 他 的 視線 . +He always tells the truth . 他 總是 說 實話 . +The orange left a strange taste in my mouth . 橙子 在 我 嘴里 留下 了 一种 奇怪 的 味道 . +She resembles her aunt . 她 长 得 像 她 姑姑 . +Please turn up the AC a little bit . 请 你 把 冷气 调 高点 . +Let is take turns rowing the boat . 讓 我們 輪流 划船 . +Do you really think that I look like Tom ? 你 真的 觉得 我 长 得 像 汤姆 吗 ? +She went to Mexico by herself . 她 独自一人 去 了 墨西哥 . +She went either to London or to Paris . 她 不是 去 了 伦敦 就是 巴黎 . +We were not able to find Tom . 我們 找 不到 湯姆 . +He caught them stealing apples . 他 抓到 了 他們 在 偷 蘋果 . +Because of its origins , Canadian English has features of both American and British English . 由 於 它 的 起源 , 加拿大 英語 具有 美國 英語 和 ​ ​ 英國 英語 兩者 的 特色 . +I need a new pair of shoes . 我 需要 一双 新鞋 . +You 'd better go in person . 你 最好 親自 去 . +Tom fed his leftovers to his dog . 湯姆 把 他 的 廚餘 餵 給 他 的 狗 吃 . +Japan depends on imports for raw materials . 日本 依賴 進口 原料 . +Let is divide this money between you and me . 这 钱 你 和 我 分 了 吧 . +I got lost in the woods . 我 在 树林 里 迷路 了 . +I am sorry , I can not stay long . 对不起 , 我 不能 待 很久 . +Give her the book . 把 这 本书 给 她 . +Tom said he wanted to try riding a unicycle . 湯姆 說 他 想 試試 騎 獨輪車 . +That did occur to me . 那 就 發生 在 我 身上 . +I do not know anything about their plan . 我 對 他們 的 計劃 一無 所知 . +He sat there with his legs crossed . 他 翹著 二郎腿 坐在 那裡 . +I have no place to sleep tonight . 我 今晚 沒 地方 睡覺 . +I miss Boston . 我 想念 波士 頓 . +I passed by her house yesterday . 我 昨天 經過 她家 . +I got this CD player for free . 我 免費 得到 這個 CD 播放 機 . +Is it far from here ? 离 这儿 远 吗 ? +We go to school to study . 我們 去 學校 學習 . +I love the people here . 我 爱 这里 的 人们 . +How did you get out of your room ? 你 怎么 从 你 的 房间 里 出来 ? +It is this window that he broke . 他 砸坏 的 是 这 扇 窗 . +There are a lot of things you do not know about my personality . 我 的 个性 还有 很多 方面 是 你 不 了解 的 . +Is there anything else you want to say ? 你 還 有 甚 麽 想 說 的 ? +I admit that I was a little drunk . 我 承認 當時 是 有 點 醉 . +He is acquainted with my wife . 他 是 我 太太 认识 的 一个 人 . +After the hurricane , their house was a wreck . 暴风雨 过后 , 他们 的 房子 成 了 废墟 . +He shot at me . 他 槍擊 了 我 . +That was you , was not it ? 那 就是 你 , 不是 么 ? +My mother made me take some medicine . 我 媽媽 讓 我 吃 點 藥 . +It is already past ten o 'clock . 已經 過 了 十點鐘 了 . +It was not very hot last night . 昨晚 不是 很 熱 . +Could you tell me the Wi @-@ Fi password ? 能 不能 請 你 告訴 我 Wi - Fi 的 密碼 呢 ? +How about going out to eat tonight ? 今晚 出去 吃 怎么样 ? +I have lost my ticket . 我 把 票 弄 丟了 . +Tom is the one I want . 汤姆 是 我 想要 的 人 . +We will have to do that , too . 我们 也 不得不 做 +He turned the key . 他 转动 钥匙 . +Charles Lindbergh made the first solo flight across the Atlantic Ocean in 1927 . Charles Lindbergh 於 1927 年 成功 完成 了 第一次 獨自 飛越 大西洋 . +He wishes to erase bad memories . 他 希望 抹 去 不好 的 记忆 . +My foot hurts . 我 的 脚痛 . +There are a lot of new buildings here now . 这里 现在 有 了 许多 新 建筑 . +I can only give you ten minutes . 我 只能 给 你 十分钟 . +He is a good fellow . 他 是 個 好人 . +My father will often read the newspaper during meals . 我 父亲 常 在 吃饭 时 看 报纸 . +I agree on an emotional level , but on the pragmatic level I disagree . 我 感情 上 支持 , 但是 理性 上 反对 . +We lost sight of the man in the crowd . 在 人群 中 , 我们 失去 了 那个 男人 的 踪影 . +I have ten pens . 我 有 十支 筆 . +I came to Japan from China . 我 從 中國 到 日本 . +Tom is answer was very evasive . 汤姆 的 回答 很 含糊不清 . +I enjoyed watching TV yesterday . 昨天 我 很 開 心地 看電視 . +The buildings look so tiny . 大楼 看上去 那么 寒酸 . +He earned as much money as possible . 他 能 赚 多少 就 赚 多少 . +What does this key unlock ? 这 钥匙 能 打开 什么 ? +Remember to brush your teeth . 别忘了 刷牙 . +He is not religious . 他 不 信教 . +When did you graduate from high school ? 你 什麼 時候 中學 畢業 ? +Tom does not enjoy tennis and never has . 汤姆 不 喜欢 网球 , 从来不 . +I am looking for some regular work . 我 在 找 一些 固定 工作 . +If Tom does not do what he is supposed to do , please let me know . 如果 汤姆 没有 做 他 应当 做 的 事 , 请 让 我 知道 . +This is a crucial point . 这 是 一个 关键点 . +We managed to get there on time . 我們 總算準 時 到 那裡 了 . +Tom does not have a good French @-@ English dictionary . Tom 沒有 一本 好 的 法 英 字典 . +What is my room number ? 我 的 房间 号 是 多少 ? +Are you speaking to me ? 你 是 在 对 我 说 吗 ? +She is good at playing the piano . 她 擅長 彈 鋼琴 . +I am already full , thank you . 我 已经 吃饱 了 , 谢谢 . +What is that ? 那 是 什么 ? +She was asked to convince him to get his son or someone else to paint the house . 她 被 要求 去 说服 他 以 让 他 或者 他 的 儿子 或者 是 别的 人 来 粉刷 屋子 . +The phone rang when I was having lunch . 當 我 正在 吃 午餐 時 , 電話 響 了 . +Did you check this ? 你 检查 这个 了 吗 ? +I thought that you were listening . 我 以为 你 在 听 . +We study music . 我们 学习 音乐 . +How come you did not say anything ? 你 怎麼 什麼 話 也 沒 說 ? +She was asked to convince him to paint the house . 她 被 要求 说服 他 油漆 房子 . +I ordered some books from London . 我 從 倫敦 訂購 了 一些 書 . +Fight like a man ! 像 男人 一样 战斗 ! +Will you please let me go now ? 可否 请 你 现在 让 我 走 ? +Everything is changing . 一切都在 变 . +I gave her just what she needed . 我 給 她 的 正是 她 所 需要 的 . +I am counting on you . 我 指望 你 了 . +The thief got away with the money . 小偷 帶著 錢 逃跑 了 . +Tom came a little earlier today than he usually does . 汤姆 今天 来得 比 往常 要 早 一些 . +I like jazz music . 我 喜歡 爵士 樂 . +I am busy today . 我 今天 忙 . +He can pull strings for you . 他 能 为 你 暗箱 操作 . +Thank you for everything . 为 一切 感谢 你 . +It looks like Tom has bought a new bicycle . 看來 湯姆 借 了 輛 自行 車 . +Give the cat some meat . 給 猫 喂 點 肉 . +What is the weather like now ? 现在 的 天气 怎么样 了 ? +He has to repair the clock . 他 必須 修理 這個 時鐘 . +I want to be a lawyer . 我 要 當 律師 . +She is my type . 她 是 我 的 菜 . +Harvard was founded in 1636 . 哈佛 始建 于 1636 年 . +Hang your coat on the hook . 把 你 的 外套 掛 在 鉤子 上 . +Excuse me for interrupting you . 對 不起 , 打擾 你 了 . +The rumor is not true . 傳聞 不是 正確 的 . +I have never met such a kind man . 我 从没 遇到 过 那么 好心 的 男人 . +It is hot out here . 这里 够 热 . +I wanted to go there . 我 想 去 那裡 . +This data is not accurate at all . 這個 數據 一點 也 不 準確 . +I said shut up ! 我 说 过 了 , 闭嘴 ! +Does not that change things ? 那 能 改变 甚麼 嗎 ? +He was moved to tears when he heard the news . 当 他 听到 那个 新闻 的 时候 , 他 感动 得 哭 了 . +She knit him a sweater . 她 给 他 织 了 件 毛衣 . +Tom does not talk much . 汤姆 说话 不多 . +I think you should take the test again . 我 的 意见 是 , 你 该 再次 参加 测试 . +A woman visited us while you were sleeping . 你 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Karuizawa is famous as a summer resort . 輕 井澤 是 著名 的 避暑 勝地 . +It is difficult to satisfy everyone . 众口难调 . +Tom did not know how to translate the word " computer " because the people he was talking to had never seen one . 汤姆 不知 如何 翻译 “ 计算机 ” 一 词 , 因为 同 他 谈话 的 人 从未见过 一台 . +Tom is boss was really angry . 汤姆 的 上司 真的 非常 生气 . +Give Tom back his money . 把 汤姆 的 钱 还给 他 . +Could you bring me some water ? 你 能 帶 給 我 一些 水 嗎 ? +You should begin right away . 你 應該 立即 開始 . +If I had one million yen now , I would buy a car . 如果 我 现在 有 100 万日元 , 我会 买 辆车 . +You should look after the children from time to time . 你 應 該 偶爾 照顧 孩子 . +I am accustomed to getting up early . 我 習慣 早起 . +The United States borders Canada . 美国 与 加拿大 相邻 . +Look into my eyes . 看著 我 的 眼睛 . +I have never heard of this actor . 我 从 没听说过 这个 演员 . +Did you do your homework by yourself ? 你 自己 做 回家 作業 的 嗎 ? +He is accustomed to traveling . 他 習慣 了 旅行 . +When I was a child , I used to swim in that pond . 当 我 还是 个 孩子 的 时候 , 我 在 这个 泳池 里游 过泳 . +The message was in French . 这 条 消息 是 法语 写 的 . +What do you make ? 你 做 什麼 ? +I am glad that the thief was caught . 抓 到 小偷 真是 太好了 . +Tom studied hard so he could get into college . 汤姆 努力学习 以 进入 大学 . +She will not be back till five . 她 五點鐘 才 會 回來 . +All three of you are very lucky . 你們 三個 很 走 運 . +You are just a coward . 你 就是 胆小鬼 . +Tom would not let anyone else in the room . 汤姆 不让 任何人 进 房间 . +I did not have to study yesterday . 我 昨天 不必 讀書 . +He took off his overcoat . 他 脫掉 了 大衣 . +She gave him a tender kiss . 她 給 了 他 一個 溫柔 的 吻 . +I am as tall as my father . 我 跟 我 父親 一樣 高 . +It would take me too much time to explain to you why it is not going to work . 给 你 解释 这 为什么 行不通 要 花 很多 时间 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +Tom runs very fast . 湯姆 跑得快 . +Come and have tea with me . 来 跟 我 喝茶 吧 . +She was too short to see over the fence . 她 太矮 了 , 看不到 围墙 外面 . +She needs a coat . 她 需要 一件 外套 . +Where are those people from ? 那些 人 从 哪 来 的 ? +Mercury is the smallest planet in our solar system . 水星 是 我們 的 太陽系 中 最小 的 行星 . +It is your move . 該 你 走 了 . +Tom is old enough to go to school . 汤姆 年纪 足够 去 上学 了 . +She is doing her homework now . 她 現在 正在 做 她 的 功課 . +Tom is ecstatic . 汤姆 兴奋不已 . +They work together . 他们 在 一起 工作 . +How much does this cost ? 多少 錢 ? +How do I sign up ? 我 怎样 报名 参加 呢 ? +Something might have happened to her . 她 可能 出 什么 事 了 . +This has nothing to do with you . 這 與 你 無關 . +When will it be ready ? 这 什么 时候 能 准备 好 ? +She was often late for school . 她 經常 上學 遲到 . +Let is get started . 讓 我們 開始 吧 . +I do not want to be involved in that matter . 我 不想 被 牵扯 到 这件 事 里 . +They smiled at each other . 他們 曾 彼此 微笑 . +The court acquitted him of the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +They are gone . 他们 离开 了 . +He spoke very loudly . 他 说 得 很 大声 . +She is only a child . 她 只是 個 孩子 . +I am the fastest runner . 我 是 跑 得 最快 的 人 . +This dog was born two months ago . 這 隻 狗 是 兩 個 月 前 出生 的 . +He ordered a cup of tea . 他 點 了 一杯 茶 . +Would you like to listen ? 你 想 聽 嗎 ? +The children were well looked after . 孩子 们 被 照顾 得 很 好 . +He fell to the floor . 他 摔倒 在 地 . +We have to sing at an old folks home today . 我们 今天 得去 养老院 唱歌 . +Although the government refuses to admit it , its economic policy is in ruins . 尽管 政府 拒绝 承认 , 它 的 经济 政策 还是 失败 了 . +I am considering studying in America next year . 我 在 考虑 明年 去 美国 学习 . +Most Americans do not object to my calling them by their first names . 大多数 美国 人 似乎 不 反对 我 直呼其名 . +I did not know what to do . 我 不 知道 要 做 什麼 . +I just could not say no . 我 就是 不能 说不 . +It is no use trying to escape . 試圖 逃跑 是 沒 有用 的 . +I have a few friends who speak French well . 我 有 一些 法语 说得好 的 朋友 . +She can not write or read . 她 不会 读书 写字 . +I attended the meeting yesterday . 昨天 我 出席 了 會議 . +Can you get it repaired ? 你 能 不能 修理 它 ? +He is now either in Rome or in Paris . 他 不是 在 羅馬 , 就是 在 巴黎 . +He was aware that I was around , but did not come to greet me . 他 注意 到 我 在 場 , 但是 沒向 我 打招呼 . +Are you students ? 您們 是 學生 嗎 ? +Breakfast is ready . 早饭 准备 好 了 . +You 'd better consult your doctor . 你 最好 請 教 你 的 醫生 . +Can you skate ? 你 会 溜冰 吗 ? +Who do you think broke the window ? 你 認為 是 誰 打破 了 窗戶 ? +He finally got his wish . 他 終 於 如 願 以償 了 . +Where did you come from ? 你 從 哪裡 來 ? +Did Tom use to be a teacher ? 湯姆 以前 是 教師 嗎 ? +Everyone knows that I do not like Tom . 每個 人 都 知道 我 不 喜歡 湯姆 . +My purse was stolen . 我 的 錢 包被 搶 了 . +I have a slight headache today . 我 今天 有 輕微 的 頭痛 . +I am sick and tired of hamburgers . 我 對 漢堡 感到 厭煩 了 . +Do you have a book written in English ? 你 有 一本 用 英文 寫 的 書 嗎 ? +I got five hours sleep last night . 我 昨晚 睡 了 五小时 . +You have only to ask for it . 你 只要 问 就 好 了 . +He turned a deaf ear to their request . 他 对 他们 的 请求 置若罔闻 . +He does nothing but read comics . 他 什麼 都 不 做 只是 看漫 畫 . +May I ask a few questions ? 我 能 问 一些 问题 吗 ? +I am sure of his success . 我 肯定 他 会 成功 的 . +You should have done so . 你 本 應該 這樣 做 的 . +We need to buy a new TV . 我们 需要 买新 电视机 . +Help us reach our goal . 幫助 我們 達成 目標 . +He is going to be a doctor when he grows up . 他 长大 了会 成为 一名 医生 . +He was mad because he was not invited . 他 因为 没有 被 邀请 而 气 得 快 疯 了 . +This is gibberish . 這 是 胡 說 . +We heard a voice from the bedroom . 我们 听到 卧室 里 有 声音 . +My father takes a walk every day . 我 父親 每天 散步 . +Do not interfere in my affairs . 不要 插手 我 的 事 . +He is poor at chemistry . 他 的 化学 很 差 . +I met him on the street . 我 在 街上 遇到 他 . +You are on the right track . 你 在 正確 的 軌道 上 . +Your problem is similar to mine . 你 的 问题 类似 于 我 的 . +These cameras are made in Japan . 這些 照相 機是 在 日本 製 造 的 . +That hurts . 真疼 . +When were you planning on telling Tom about what happened ? 你 准备 啥时候 告诉 Tom 发生 了 什么 +Do you want anything to eat ? 你 想要 吃 任何 東西 嗎 ? +Are you through with your homework ? 你 把 功課 做 完 了 嗎 ? +I usually wear jeans on Sunday . 我 星期天 通常 穿 牛仔 褲 . +Tom seems to hardly ever get his homework done on time . Tom 似乎 没 办法 准时 完成 他 的 作业 . +She always buys expensive clothes . 她 總是 買 昂貴 的 衣服 . +My father does not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +I can walk to school in 10 minutes . 我 走路 10 分钟 能 到 学校 . +He is playing in his room . 他 在 自己 房里 玩 . +Tom wants to see you . 汤姆 想见 你 . +Some of the money was stolen . 一部分 钱 被 偷 了 . +Do you know the answer ? 你 知道 答案 嗎 ? +She lives just across from us . 她 就 住 在 我們 對 面 . +I 'd like some more water . 请 再 给 我 一些 水 . +What have you come here for ? 你 为什么 来 这儿 ? +Everybody plays the game of love . 大家 都 玩 爱情 游戏 . +Tom and I are good friends . 湯姆 和 我 是 好 朋友 . +Washing clothes is my work . 洗衣服 是 我 的 工作 . +Tom lost his balance and fell down . 汤姆 失去 了 平衡 摔 落下来 . +I would like to change my reservation . 我 想 更改 我 的 預訂 . +The tigers escaped from the zoo . 老虎 從 動物園 中 逃出 來 了 . +I threw a stone at the bird . 我 扔 了 块 石头 打向 鸟儿 . +There is been an accident . 曾經 有 一個 意外 . +I am the one who is sick . 我 就是 那个 生病 的 人 . +I hung my hat on the peg . 我 把 我 的 帽子 掛 在 掛鉤 上 . +He writes Arabic . 他 写 阿拉伯文 . +My father neither drinks nor smokes . 我 爸爸 既 不 喝酒 也 不 抽烟 . +Children are our future . 孩子 是 我们 的 未来 . +Are you saying that you give up ? 你 是 说 你 放弃 了 吗 ? +We have to try to communicate with them . 我们 要 设法 跟 他们 交流 . +I had never seen a windmill until I visited the Netherlands . 在 我 去 荷兰 之前 , 我 从没 见 过 风车 . +Tom closed his eyes . 汤姆 闭上 了 眼睛 . +Who is that boy running toward us ? 那个 朝 我们 跑过来 的 男孩 是 谁 ? +When do you eat turkey ? 你 什麼 時候 吃 火雞 ? +You may go anywhere . 你 可以 随便 去 哪儿 . +How much time do you spend on Facebook ? 你 花 多少 時間 在 Facebook 上 ? +I am pretty busy . 我 挺 忙 . +She is walking . 她 在 行走 . +I want to play the guitar . 我 想彈 吉他 . +I got a lot of mosquito bites . 我 被 很多 的 蚊子 叮 了 . +This car needs to be washed . 这辆 车 需要 清洗 . +This really is great weather . 這 真的 是 個 好 天氣 . +Do you like music ? 你 喜欢 音乐 吗 ? +India is a developing country . 印度 是 发展中国家 . +I want beef , too . " 我 也 要 牛肉 . " +The balloon was caught in the tree . 這 顆 氣球 被 樹絆 住 了 . +It is clear what must be done . 顯然 地 勢 必要 做 些 什麼 . +Always do right . This will gratify some people and astonish the rest . 坚持 做对 的 事情 . 这 会 满足 一部分 人 同时 使 另 一部分 人 感到 惊讶 . +Keep it up ! 坚持 . +Please turn off the television . 请 关闭 电视机 . +He was caught cheating in the exam . 他 在 考試 中 作弊 時 被 抓到 了 . +She thought that he was wasting electricity . 她 認為 他 是 在 浪費 電 . +There is insufficient light to take pictures . 拍照片 光线 不够 亮 . +Tom knew Mary would come . 湯姆 知道 瑪麗會 來 . +Every one of her songs was a hit . 她 的 每首歌 都 长期 备受 欢迎 . +Was he still here when you arrived ? 當 你 到 達 的 時候 他 還 在 這裡 嗎 ? +Monday is Tom is thirtieth birthday . 星期一 是 Tom 的 三十 歲 生日 . +I will wait here till he comes . 我 會 在 這裡 等 直到 他 來 . +She fumbled with a piece of paper . 她 摸索 著 一張 紙 . +What is your favorite movie ? 你 最 喜歡 的 電影 是 哪部 ? +The shooting started around noon . 拍攝 是 在 中午 十二 時 左右 開始 . +She was a genius in mathematics . 她 是 个 数学 天才 . +The dictionary is of great use to me . 这本 字典 对 我 很 实用 . +We will be ready in time . 我们 会 及时 准备 好 . +Did you visit the Tokyo Tower ? 您 参观 过 东京 塔 吗 ? +She disappeared . 她 消失 了 . +I saw him playing baseball . 我 看到 他 在 打 棒球 . +I object to her going there alone . 我 不 同意 她 一个 人 去 那儿 . +I do not mind if I get wet . 我 不介意 被 弄 濕 . +Stop resisting ! 停止 抵抗 ! +She would not let up until I agreed to go to the movies with her . 她 不 愿 松开 我 , 直到 我 同意 和 她 去 电影院 . +I knew that something was wrong . 我 知道 有些 事 不 對 . +Tom is working hard . 汤姆 在 努力 工作 . +He likes oranges . 他 喜欢 橙子 . +Why did you cry ? 你 為 什麼 哭 ? +Tom can not afford this . 汤姆 买不起 这个 东西 . +Today is Thursday . 今天 是 礼拜四 . +Women tend to live longer than men . 女人 往往 比 男人 活得 更 長 . +I like short poems . 我 喜歡 短 詩 . +We really enjoyed ourselves . 我們 真的 玩 得 很 開心 . +Do not be afraid of making mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I am counting how many people there are . 我 正在 算有 多少 人 在 那裡 . +The bus was ten minutes late . 公车 晚 了 十分钟 . +This is the best . 这 是 最好 的 . +I even made Tom laugh . 我 甚至 讓 湯姆 笑 了 . +What souvenir do you think she would like most ? 你 觉得 她 最 想要 什么 纪念品 ? +Tom is a clever kid . 汤姆 是 聪明 的 孩子 . +We invited him to our house . 我們 邀請 了 他 到 我們 家 . +A glass of cold water is very refreshing in hot weather . 一杯 冷水 在 暑热 的 天气 里 十分 提神 . +I want to be a computer programmer . 我 想 做 一个 程序员 . +I lost face . 我 丢臉 了 . +We were just about to leave when it rained . 我們 正要 離開 的 時候 下雨 了 . +My knowledge of Japanese is rather poor . 我 對 日文 不 大 了解 . +We could not keep from crying . 我們 止不住 哭泣 . +They grow oranges in California . 他们 在 加利福尼亚 种 橙子 . +Take a picture with your phone . 用 你 的 手机 拍 一张 照片 . +I will show you the way . 我 會 為 你 帶 路 . +Tom can not decide whether to buy a Toyota or a Ford . 汤姆 不能 决定 买 丰田 还是 福特 . +She stood in front of the mirror . 她 站 在 镜子 前 . +Tom was sobbing . 汤姆 在 啜泣 . +It is said the house is haunted . 据说 这 房子 是 个 鬼屋 . +I am staying at my aunt is . 我 住 在 我 姑姑家 . +I missed the opening ceremony of the Olympics . 我 错过 了 奥运会 的 开幕式 . +Tom suggested that I change the lock on my door . 汤姆 建议 我 换 我 的 门锁 . +She freshened herself up before supper . 她 在 晚 飯前 把 自己 梳洗打扮 了 一下 . +These pants fit me well . 这些 裤子 我 穿 起来 很 合身 . +It is boring to stay at home . 呆 在 家里 很 无聊 . +I think I have a question . 我 覺 的 有 一個 問題 . +Tom was absent yesterday . 湯姆 昨天 缺席 了 . +Could I try this on ? 我 能 試 一下 這個 嗎 ? +A friend of mine is studying abroad . 我 有 一位 朋友 在 國外 留學 . +Lie on your right side . 躺 在 你 右邊 . +Tom is out of his mind . 湯姆 失去 理智 了 . +I am glad we hired you for this job . 我 很 高兴 我们 录用 了 你 来 担任 这份 工作 . +Tell me about it ! 跟 我 讲讲 那件事 . +Bread is made from flour , water and yeast . 面包 是 用 面粉 、 水 和 发酵粉 做 的 . +How could I be a robot ? Robots can not dream . 我 怎么 可能 是 机器人 呢 ? 机器人 不会 做梦 . +She was scared to cross the road . 她 怕 過 馬 路 . +An aging population will require more spending on health care . 老龄化 的 人口 需要 更 多 医疗保健 支出 . +Everyone in the class climbed the hill . 班上 每個 人 都 爬 上 了 這個 山坡 . +Father is going to undergo an operation . 父亲 将 会 接受 手术 . +My husband is not in town . 我 丈夫 没 在 城里 . +She gave the blouse a quick wash . 她 很快 地 把 襯衫 洗 一 洗 . +She told him that she believed in astrology . 她 告诉 了 他 自己 相信 占星术 . +I want this work completed by two o 'clock tomorrow afternoon . 明天 下午 2 点 以前 , 我 希望 这 工作 完成 了 . +You are welcome . 您 不必 感谢 我 . +Love your neighbors . 与 邻居 相亲相爱 . +The plane is about to land . 飛機 就要 降落 了 . +I advised her to come by 9 : 00 . 我 建議 她 九點 前來 . +Indigenous Australians have eaten kangaroos for millennia . 澳大利亚 土著 已经 吃 了 上千年 袋鼠 . +Would you mind closing the door ? 你 介意 關上 門 嗎 ? +He stayed at his aunt is house . 他 呆 在 他 阿姨 家 . +Tom is funeral will be this weekend . 湯姆 的 葬 禮 訂 在 這 週末 . +He hit his head against a rock . 他 的 头 撞倒 了 一块 岩石 . +He came several times . 他 来 了 很 多次 了 . +I had a nice chat with her . 我 和 她 聊得 很 愉快 . +I was not yet married at that time . 那個 時候 我 還 沒有 結婚 . +You must have been surprised to meet your teacher in such a place . 在 那种 地方 碰到 你 的 老师 , 你 应该 很 惊讶 吧 . +What have I ever done to Tom ? 我 对 汤姆 做 了 什么 ? +Tom does not know the difference between Iraq and Iran . 汤姆 不 知道 伊拉克 和 伊朗 有 什么 区别 . +My room faces the garden . 我 的 房間 面向 花園 . +He has more books than I do . 他 拥有 的 书 比 我 的 多 . +It is ten degrees below zero now . 現在 是 零下 十度 . +She does not speak Japanese at home . 她 在家 不 說 日 語 . +I can not let you give me your last ten dollars . 我 不能 讓 你 給 我 你 最 後 十美 圓 . +Whose ring is that ? 那 是 谁 的 环 ? +I made it myself . 我 自己 做 的 . +You should read a lot of books while you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +The physician prescribed his patient some medicine . 医生 给 他 的 病人 开 了 一些 药 . +I do not love him any longer . 我 已经 不 爱 他 了 . +I watch television in the evening . 我 在 晚上 看電視 . +You people can not help yourselves . 你们 这些 人 帮不了 自己 . +I will go with you as far as the bridge . 我会 跟着 你 走 到 桥 那里 . +He pretends to be deaf . 他 装 听不见 . +I think I have found something better . 我 認為 我 找到 了 更好 的 . +Who is the man playing the piano ? 那個 正在 彈 鋼琴 的 男人 是 誰 ? +I saw it in the newspaper . 我 在 报纸 上 看到 了 它 . +Where are you going to eat lunch ? 你 要 去 哪裡 吃 午 飯 ? +This is a Turkish tradition . 這 是 個 土耳其 的 傳統 . +Do not leave the room . 别 离开 房间 . +How many pictures did you buy ? 你 買 了 多少 張 照片 ? +He risked losing all his fortune . 他 冒 着 失去 所有 财产 的 危险 . +One man is meat is another man is poison . 對 某人 有利 的 對 另外 的 人 未必 有利 . +She paid me a visit yesterday . 她 昨天 来 见 我 了 . +He is pale because he is sick . 他 病 了 , 所以 脸色 显得 苍白 . +He was very friendly to everybody . 他 對 每個 人 都 非常 友善 . +Boston is a wonderful city . 波士顿 是 一座 非常 好 的 城市 . +Tokyo is a big city . 东京 是 一个 很大 的 城市 . +I am fine now . 已经 没事 了 . +You can lie to everyone else , but you can not lie to yourself . 你 可以 向 别人 撒谎 , 但 你 不会 向 自己 撒谎 . +He is looking forward to it . 他 对此 很 期待 . +Where is your hat ? 你 帽子 在 哪儿 ? +Water freezes at 0 degrees Centigrade . 水 在 攝 氏 0 度 時 結成 冰 . +What did you do yesterday evening ? 你 昨天晚上 做 了 什麼 ? +Tom never felt comfortable expressing his own opinion . 汤姆 在 表达 自己 的 意见 的 时候 总是 很 慌张 . +My uncle gave me a camera . 我 叔叔 給 了 我 一個 照相 機 . +Tom teaches me French twice a week . 汤姆 每周 两次 教 我 法语 . +He is likely to be late for school . 他 上学 很 可能 会 迟到 . +All that I know is that he gave up the plan . 我 所 知道 的 是 他 放棄 了 這個 計劃 . +He went on reading the book as if nothing had happened . 他 繼續 讀書 , 好像 什麼 事 也 沒有 發生 . +I eat breakfast every morning . 我 每天 早上 吃 早餐 . +There was not anyone in the room . 房間 裡 沒 有人 . +He has a round face . 他 有 一張 圓 臉 . +The train leaves in ten minutes . 火車 十分 鐘 後 離開 . +While we were discussing the problem , I hit upon a good idea . 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 好 主意 . +This camera was made in Germany . 这个 照相机 是 德国 制造 的 . +Do not throw away this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +I have always wondered what it 'd be like to have siblings . 我 总是 想 有 兄弟姐妹 会 怎么样 . +What number bus do I take to get to Waikiki ? 我 乘 几路 车 去 怀基基 ? +Many people work in industrial towns . 许多 人 在 工业 城市 工作 . +She wants to work at the hospital . 她 想 在 医院 工作 . +I usually go to bed before ten . 我 通常 在 十點 前 上床 睡覺 . +I want to become an engineer . 我 想要 成為 一位 工程 師 . +I prefer apples to oranges . 比起 橘子 , 我 更 喜欢 苹果 . +" I will be back , " said Tom . “ 我会 回来 , ” 汤姆 说 . +He looks a bit tired , does not he ? 他 看 起來 有 點累 , 不是 嗎 ? +Tom has high blood pressure . 汤姆 有 高血压 . +You have got something stuck in your teeth . 牙齿 卡 了 点 东西 . +I paid him a visit yesterday . 我 昨天 去 见 他 了 . +I want to know how long it will take . 我 想 知道 这 需要 用 多久 时间 . +The weather has been unusual this year . 今年 的 天氣 一直 異常 . +Every time I read the Bible , I am deeply moved . 每次 我 读 圣经 都 会 被 深深地 感动 . +He took us back in his car . 他 开车 送 我们 回来 的 . +He looked after the baby . 他 照顧 孩子 . +I often catch colds . 我 常常 感冒 . +Keep listening . 继续 听 . +Tom and I have decided to go to Australia next summer . 汤姆 和 我 决定 下 个 夏天 去 澳大利亚 +I will try harder next time . 下次 我 會 更加 努力 . +Both of them are in the room . 他們 兩個 人 都 在 房間 裡 . +I 'd like some tea , please . 請 給 我 一杯 茶 . +Doing the laundry is my job . 洗衣服 是 我 的 工作 . +We are staying at our uncle is . 我们 待 在 舅舅家 . +I love to make people laugh . 我 喜歡 逗人 笑 . +He knows how to play the piano . 他 知道 如何 彈 鋼琴 . +By the way , did you find the umbrella you said you 'd lost the other day ? 对 了 , 前些时 间 你 说 伞 不见 了 , 现在 找到 了 吗 ? +The boy is wearing glasses . 這個 男孩 戴著 眼鏡 . +I am using Twitter . 我 在 用 Twitter . +A DNA test showed he was innocent . DNA 检测 表明 , 他 是 无辜 的 . +To what extent can he be trusted ? 可以 相信 他 到 什麼 程度 ? +Tom goes to school on foot . 湯姆 走路 去上 學 . +Tom wanted to comfort Mary . Tom 是 想着 去 安慰 Mary 的 . +He is a strange character . 他 的 性情 古怪 . +Tom helped Mary move the furniture . 汤姆 帮 玛丽 移动 家具 . +Let is start . 我们 开始 吧 . +It seems less crowded during the week . 平日 似乎 比較 不 擁擠 . +I sometimes just do not want to get out of bed in the morning . 我 有时 早上 不想 下床 . +That is enough money to cover the expenses . 那些 錢 足夠 支付 費用 . +I had nothing to hide . 我 没什么 可 隐藏 . +He kept a diary during the trip . 他 旅行 期间 , 写 了 旅游 日记 . +I need you to help me find Tom . 我 需要 你 幫 我 找 湯姆 . +You should bring your passport to the bank . 你 应该 带 护照 去 银行 . +This place still looks the same as it did a long time ago . 這裡 就 像 在 古 時候 一樣 . +Why do not you want to tell us the truth ? 為 甚麼 你 不想 告訴 我們 真相 ? +Tom has plenty of friends to help him . 汤姆 有 很多 朋友 去 帮助 他 +Tom had a heart attack last year . 汤姆 去年 得 了 心脏病 . +The train leaves at six . 火车 6 点 出发 . +She talked childishly . 她 说话 幼稚 . +That is a nice tie you are wearing . 你 打 了 一條 不錯 的 領帶 . +My mother took my temperature . 我 媽 媽量 了 我 的 體溫 . +Compare your answer with Tom is . 比較 你 和 湯姆 的 答案 . +What I am about to say is strictly between you and me . 我 要 告訴 你 的 只能 你 我 知道 . +That store sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +Tom tricked Mary into doing his work for him . 汤姆 哄 玛丽 做 他 的 作业 . +He slept well last night . 他 昨晚 睡 得 很 好 . +I have to take the test again . 我 必須 再 考 一次 試 . +The car is not worth repairing . 這車 不 值得 修 了 . +Who are the two women over there ? 那边 的 两位 女士 是 谁 ? +Tom is at school , is not he ? 湯姆 在 學校 裡 , 不是 麼 ? +Tom is so hot . 汤姆 非常 性感 . +Tom knew that Mary was upset . 汤姆 知道 玛丽 不 高兴 . +Whose car is this ? 這 台汽 車 是 誰 的 ? +If you had a million dollars , what would you do ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +She was brought up by her grandmother . 她 是 由 她 的 祖母 带大 的 . +I do not think we 'd have any chance of winning . 我 认为 我们 没有 机会 赢 . +What made you come here so early ? 什麼 原因 讓 你 這麼 早來 這裡 ? +Tom plays chess better than me . 汤姆 下 国际象棋 比 我 好 . +There will be a math test tomorrow . 明天 有 一個 數學 測驗 . +She left her son a lot of money . 她 留 了 很多 钱 给 她 儿子 . +She has an eye for antiques . 她 看 古董 的 眼光 很 好 . +Nothing is going his way . 什么 都 没 按 他 的 路子走 . +He is the richest man on earth . 他 是 世界 上 最 有 錢 的 人 . +The reporter criticized the politician . 記者 批評 了 政治家 . +Why did you buy a Japanese car ? 你 為 甚麼 買 日本 車 ? +I am busy looking for an apartment . 我 正忙 著找 公寓 . +I am writing a letter . 我 正在 寫 一封信 . +I wish I had a better memory . 希望 我 的 記憶力 能 好 一點 . +Thank you very much . 非常感谢 ! +He can speak French , and obviously English . 他 能 说 法语 , 很 明显 还有 英语 . +There are no problems . 沒有 問題 . +Will I have a scar ? 我会 留 疤 吗 ? +I asked him what his name was . 我 問 了 他 叫 什麼 名字 . +I always enjoy listening to classical music in my free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +Forewarned is forearmed . 凡事 要 預先 準備 好 . +School begins at 8 : 30 a.m. 學校 在 上午 八點 三十分 開始 上課 . +Tom had no reason to be angry . 汤姆 没有 动怒 的 理由 . +You are still young . 你 仍然 很年 輕 . +Look at the sky . 看 天上 . +I do not want to hear any more of your complaining . 我 不想 再 听 你 抱怨 了 . +You should go in person . 你 應 該 親自 去 . +He is in charge of the department . 他 負責 這個 部門 . +Which is better , red thread or white thread ? 哪个 更好 , 红线 呢 还是 白线 ? +I hope that is not the case . 我 希望 事情 並非 如此 . +Tom loves doing this . 湯姆 喜歡 做 這事 . +I got acquainted with her in France . 我 在 法國 認識 了 她 . +I explained the process to him . 我 向 他 解釋 了 這個 過程 . +Choose the one you like . 選 一個 你 喜歡 的 . +I am not going anywhere on Sunday . 我 週日 哪裡 也 不 去 . +How long are you going to be in Boston ? 你 要 在 波士顿 留 多久 ? +They climbed Mt . Fuji last week . 上個月 他們 爬 了 富士山 . +It is high time you were in bed . 你 早该 睡 了 . +She made the same mistake as before . 她 犯 了 和 以前 同樣 的 錯誤 . +This booklet is free of charge . 這本 小冊子 是 免費 的 . +Few people know how to do it . 很少 有人 知道 怎么 做 . +The accident happened the day before yesterday . 事故 发生 在 前天 . +I am saving up to buy a new car . 我 在 省钱 买 新车 . +I live on the outskirts of Tokyo . 我 住 在 東 京郊 區 . +Please call a taxi for this lady . 请为 这位 女士 叫 辆 出租车 . +Tom wrote two books . 汤姆 写 了 两本书 . +You are not a doctor . 您 不是 医生 . +He is a friendly person . 他 是 一個 友善 的 人 . +He may have missed the last train . 他 可能 錯 過 了 最 後 一班 火車 . +What you said does not make sense . 你 說 的 沒有 道理 . +Is not that mine ? 那 是 我 的 吗 ? +Did you go to see a doctor ? 你 去 看过 医生 了 吗 ? +Thank you in advance for your help . 我 先 谢谢 你 的 帮忙 . +I support political reform . 我 支持 政治 改革 . +Our teacher likes his new car . 我們 的 老師 喜歡 他 的 新車 . +It is easy to answer this question . 回答 這個 問題 很 容易 . +You should have done it earlier . It cannot be helped now . 你 應 該 早點 做 的 . 現在 沒 人 可以 幫 你 . +He told me that whatever might happen , he was prepared for it . 他 告诉 我 不论 发生 什么 , 他 都 准备 好 了 . +What do you say we go skiing ? 我们 去 滑雪 怎么样 ? +He is very angry with you . 他 對 你 非常 生氣 . +If only I could speak English ! 我 要是 会 说 英语 就 好 了 . +He enjoys watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I can not stand this pain . 我 無法 忍受 這個 痛苦 . +I can play tennis . 我 會 打 網球 . +I made an apple pie for you . 我 做 了 一個 蘋果 派 給 你 . +Would you mind my moving your car ? 你 介意 我 移動 你 的 車 嗎 ? +Neptune is the eighth planet of the solar system . 海王星 是 太阳系 第八个 行星 . +We still have plenty of time left . 我們 還 剩下 很多 時間 . +It is cold there even in the summer . 那裡 連 夏天 也 冷 . +Hurry up . 快点 ! +Something is wrong with my camera . 我 的 相機 有 毛病 . +Please bring me my bill . 請 把 帳單 給 我 . +I have already finished my homework . 我 已經 完成 了 我 的 作業 . +We do not want anything from you . 我们 不想 从 你 身上 要 任何 东西 . +I do not know whether Tom will eat with us or not . 我 不 知道 Tom 是否 和 我们 一起 吃饭 . +I came to this country for the purpose of studying music . 我 來 這個 國家 的 目的 是 學習 音樂 . +The entire world desires peace . 整个 世界 都 需要 和平 . +Are you finished ? 你 结束 了 吗 ? +I am at home . 我 在家 . +Where are you ? 你 在 哪儿 ? +I have a job for you . 我 有 工作 給 你 . +The truck is gone . 貨車 走 了 . +Trust me . 相信 我 . +May I speak to you a minute ? 我 可以 和 你 講 一下 話 嗎 ? +I do not agree with you at all . 我 完全 不 赞成 你 的 意见 . +Were you on time for work today ? 你 今天 準 時 上班 了 嗎 ? +Tom is drinking apple juice . Tom 正在 喝 蘋 果汁 . +Do you think this thing is cute ? 你 覺得 這個 東西萌 嗎 ? +I succeeded in getting what I wanted . 我 赢得 了 我 想要 的 . +Everybody knew she could speak English well . 大家 都 知道 她 的 英语 说 得 很 好 . +Do you run every day ? 你 每天 都 跑步 吗 ? +The tourists were fascinated with the exquisite scenery . 觀光客 被 獨特 的 景致 所 吸引 . +Some scientists believe that the greenhouse effect is imaginary . 有 的 科學家 認為 溫室 效應 是 虛構 的 . +Close your eyes . 闭上 你 的 眼睛 . +The sky was completely dark . 天空 完全 变黑 了 . +Here is a big map of Germany . 这儿 有 张 德国 的 大 地图 . +I have heard the story . 我 听说 过 那个 故事 . +How do you account for that ? 你 怎么 解释 那个 ? +Bring me a dry towel . 給 我 一條 乾 毛巾 . +He is the same age as me . 他 和 我 同岁 . +Both brothers are musicians . 两 兄弟 都 是 音乐家 . +What is the average height of the players ? 选手 们 的 平均 身高 是 多少 ? +I do not know . What do you think ? 我 不 知道 . 你 怎麼 想 ? +You should have been more careful . 你 應 該 要 更 小心 的 . +I want to go there . 我 想 去 那裡 . +Is there any chance that you will go to Australia next month ? 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +My opinion is similar to yours . 我 的 觀點 和 你 的 類似 . +I do not know when he will come . 我 不 知道 他 什么 时候 会来 . +The law should not be violated . 法律 不應 受到 侵犯 . +I can take care of myself . 我 可以 照顧 自己 . +He knows a lot about foreign affairs . 他 知道 很多 外國事務 . +Did Tom send you ? 湯姆 派出 了 你們 嗎 ? +Only one little boy survived the traffic accident . 这次 交通事故 中 只有 一个 小男孩 幸存 了 下来 . +The poor people were at the mercy of the cruel dictator . 可憐 的 人民 任 憑 殘暴 的 獨裁者 處置 . +I like having breakfast with you . 我 喜欢 和 你 一起 吃 早餐 . +Do you have any idea where Tom could be ? 你 知道 湯姆 能 在 哪裡 嗎 ? +Who told you the news ? 誰 告訴 了 你 這個 消息 ? +We have a lot of rain in June and July . 六七 月份 雨 很多 . +I wanted to thank you for what you did today . 我 想 为 你 今天 所 做 的 事 感谢 你 . +I signed the lease today . 我 今天 签 了 租约 . +Hang on ! 坚持 . +Modern ships only need a small crew . 現 代船 隻 只 需要 一小 組 的 船員 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Why do you want to become a nurse ? 你 为什么 想 成为 护士 呢 ? +The taxi is here . 出租车 到 了 . +This is a picture of my family . 這 是 一張 我 的 全家福 照片 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Mission accomplished . 任务 完成 . +Tom saw you . 湯姆 看見 你 了 . +I swear I did not do anything . 我 发誓 我 什么 也 没 做 . +The patient is steadily recovering . 该 病人 正 逐步 康复 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +Why did they turn down your proposal ? 他們 為 什麼 否決 了 你 的 建議 呢 ? +This chair is ugly . 這 把 椅子 很 難 看 . +I 'd like a room with a good view . 我 喜欢 视野 好 的 房子 . +My aunt gave me an album . 我 姑姑 給 了 我 一張 唱片 專輯 . +Tom did not go there yesterday . 汤姆 昨天 没 去 那里 . +I know who you all are . 我 知道 你們 都 是 誰 . +Science begins when you ask why and how . 為何 如何 ? 你 疑問 的 當下 就是 科學 的 開端 . +Sulfur burns with a blue flame . 硫磺 燃 燒著 藍色 的 火焰 . +Allow me to go . 請 允許 我 去 . +The only thing I have now are memories . 我 现在 仅 有 的 东西 就是 我 的 记忆 了 . +We are having a serious talk about your future . 我们 在 严肃 地 谈论 你 的 未来 . +I am afraid I have to go now . 恐怕 我 现在 得 走 了 . +Ca not you discount it a little ? 你 不能 打 一點 折 嗎 ? +I am glad the thief was caught . 抓 到 小偷 真是 太好了 . +Let is play tennis after school . 讓 我們 放學 後 打 網球 . +She wore a beautiful dress . 她 穿著 漂亮 的 洋裝 . +You have gained weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +We have not lost much . 我們 沒有 失去 太多 . +I wish that Tom would go home . 我 希望 湯姆 回家 . +She made coffee for all of us . 她 為 我們 所有 的 人 煮 咖啡 . +I know you are busy , too . 我 知道 , 您 也 很忙 . +When I was your age , Pluto was a planet . 當 我 在 你 這個 年紀時 , 冥王星 是 行星 . +I stayed at home last night . 我 昨晚 待 在家 裡 . +Take off your hat when you enter a classroom . 进 教室 时 请 脱下 帽子 . +You are not as smart as me . 你 没有 我 聪明 . +Tom jumped up from his chair . 湯姆 從 他 的 椅子 上 跳 了 起來 . +The old church on the hill dates back to the twelfth century . 山上 的 老 教堂 的 歷史 可以 追溯到 12 世紀 . +He is going to leave tomorrow afternoon . 他 將 在 明天 下午 離開 . +Unbelievable ! 難以 置信 ! +Tom put down his pencil . 汤姆 放下 他 的 铅笔 . +He got hurt in the game yesterday . 他 昨天 在 這場 比賽 中 受 了 傷 . +He had a second helping of soup . 他 又 喝 了 一碗 湯 . +The bank was held up a week ago . 這家 銀行 一 週前 被 搶劫 . +Do you have a better explanation ? 你 有 更好 的 理由 嗎 ? +I seem to have a temperature . 我 好像 发烧 了 . +The teacher said that the earth is round . 老師 說 地球 是 圓 的 . +She gets good marks in English . 她 取得 了 優異 的 英語 成績 . +Tom says he is willing to help . 汤姆 说 他 愿意 帮忙 . +Tom and Mary have a lot in common . 汤姆 和玛丽 有 很多 共同点 . +Even if I were rich , I would not give him money . 就算 我 富有 , 我 也 不会 给 他 钱 . +Which team are you a fan of ? 你 是 哪 一隊 的 迷 ? +Write something . 寫點 什麼 . +Wait here till I come back . 在 這兒 等著 , 直到 我 回來 . +Who solved the hard problem ? 誰 解決 了 這個 難題 ? +I live in this neighborhood . 我 住 在 這 附近 . +I woke up at 2 : 30 . 我 在 2 : 30 起床 . +Sunday is not a workday for me . 我 在 星期日 不 工作 . +He never drinks alcohol . 他 從 不 喝酒 . +Stand back from the rope . 退到 繩子 後 面 . +She was always quarreling with her parents . 她 总和 她 父母 吵架 . +Tom is on the bus to the city . 湯姆 搭 公車 去 市區 . +I live in this area . 我 住 在 这区 . +Tickets are available now . 现在 有票 . +I looked around me . 我 看 了 看 周圍 . +It is fun to ride a motorcycle . 騎 摩托 車 很 有趣 . +What language is this ? 這 是 什麼 語言 ? +She went out to buy some food . 她 出去 買 些 食物 了 . +He is leaving for China tomorrow . 他 明天 出发 去 中国 . +Why do not you quit Facebook ? 你 為 什麼 不 戒掉 Facebook ? +I would like to be alone if you do not mind . 如果 你 不介意 的话 , 我 想 一个 人 呆 着 . +Everyone in her class likes her . 她 班上 的 每個 人 都 喜歡 她 . +What is new ? 有 什么 新鲜事 吗 ? +Somebody had drowned her in the bathtub . 有人 把 她 淹死 在 浴缸 裡 . +The horse stopped and refused to go any further . 馬 停 了 下來 , 而且 拒絕 移動 . +I arrived at Narita Airport this morning . 我 今天 早上 抵達 了 成田 機場 . +I knew you 'd find Tom . 我 知道 你 会 找到 汤姆 . +We are having an office party tomorrow . 我們 明天 有個 辦 公室 派 對 . +She is watering the flowers . 她 正在 澆 花 . +I returned the knife which I had borrowed . 我 把 我 借来 的 刀 还 了 . +She is Tom is sister . 她 是 Tom 的 姐姐 . +Your proposal is a bit extreme . 你 的 建議 有 點 極 端 . +Do not make me stand here . 別 讓 我 一直 站 在 這裡 . +Can I use my medical insurance ? 我 可以 使用 我 的 醫療 保險 嗎 ? +I asked Tom why he was not here yesterday . 我 问 汤姆 为什么 他 昨天 没 在 这里 +Thank you for yesterday . 昨天 的 事 真的 要 谢谢您 了 . +We will die sooner or later . 我們 早晚 要死 . +I must sell my house . 我 得卖 我 的 房子 . +Tom found a skeleton in the cave . 汤姆 在 洞穴 里 找到 了 一具 骨架 . +Our native language is Japanese . 我們 的 母語 是 日 語 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +Is your school in this town ? 你 的 学校 在 这个 城市 吗 ? +What is the matter with you ? 你 到底 怎么回事 嘛 +He threw a stone into the pond . 他 扔 一塊 石頭 到 池塘 裡 . +" Where were you ? " " I was at a friend is house . " “ 你 在 哪里 ? ” “ 我 在 一个 朋友家 . ” +I do not have that kind of time . 我 可 沒有 那 閒 空 . +What do you do for a living ? 您 做 什麼 工作 為 生 ? +She has put on weight recently . 她 最近 增加 了體 重 . +I admit this may not be the best way of doing it . 我 承认 这 可能 不是 最好 的 方法 . +I warned him not to be late . 我 警告 了 他 不要 遲 到 . +Why did not you lock the door ? 你 為 甚麼 不 鎖 門 ? +Why do not you stay here ? 你 为什么 不 留在 这里 ? +I need your advice on what I should do next . 我 需要 你 指導 我 接下 來 該 做 甚麼 . +I grew up in this small town . 我 在 這個 小鎮 上 長大 的 . +I hope to see Tom soon . 我 希望 能 早点 看到 汤姆 . +He gave us the signal to begin . 他 給 了 我們 開始 的 信號 . +He reads a great deal . 他 读 很多 书 . +The meaning of this sentence is obscure . 这 句句 子 意思 模糊 . +He is my Mr. Right . 他 是 我 的 如意郎君 . +This toy is made of wood . 這 玩具 是 用 木頭 做 的 . +I do not have a pencil . 我 沒 鉛 筆 . +Ask him his name . 问 他 一下 他 的 名字 . +I would like to speak English fluently . 我 想 講 一口 流利 的 英語 . +The prisoner was brought before a judge . 這個 囚犯 被 帶到 法官 面前 . +That book is over here . 那本书 在 这里 . +Tom and Mary both know who you are . 湯姆 和 瑪麗 都 知道 你 是 誰 . +I talked to Tom last night . 昨晚 我 和 汤姆 说话 了 . +This ticket is valid for three days . 這 張 票 的 有效期 是 三天 . +I am here on business . 我 在 這裡 出差 . +Do you have a temperature ? 你 發燒 了 嗎 ? +I will bring wine . 我会 带酒 来 . +Finally , he achieved his goal . 他 终于 达到 了 自己 的 目标 . +Put the book there . 把 書 放在 那裡 . +We want Tom . 我们 想要 汤姆 . +He is three years older than she is . 他 比 她 大 三岁 . +Patience is sometimes the most effective weapon . 耐心 有时候 是 最 有效 的 武器 . +English is studied in Japan . 在 日本 的 人 學習 英語 . +I think I can . 我 想 我 可以 . +I will be back tomorrow . 我 明天 回來 . +Just relax . 放松 点 吧 . +He proposed a reform in the educational system . 他 提议 对 教育 系统 进行 改革 . +There is an apple on the table . 桌上 有个 苹果 . +Can you lend me your bicycle ? 你 能 把 你 的 自行车 借给 我 吗 ? +How much is four times six ? 6 乘以 4 是 多少 ? +Where do I pay for the gas ? 我 该 在 哪儿 付 煤气费 ? +" Who is it ? " " It is your mother . " “ 是 谁 ? ” “ 是 你 妈妈 . ” +I do not understand . 我 不 懂 . +I know where I am going next . 我 知道 我 接下 來 去 哪裡 . +Write your name in capital letters . 写下 你 名字 的 大写字母 . +I know you are learning French at school . 我 知道 你 在 學校 學法 語 . +Remember that I outrank you . 记住 我 的 级别 在 你 的 之上 . +Doing that will not take long . 做起 來 不 會 很久 . +She gets up late on Sunday mornings . 她 每 週日 早上 很 晚 起床 . +Who is your favorite DJ ? 谁 是 你 最 喜爱 的 DJ ? +This cat does not chase mice . 这 只 猫 不 抓 老鼠 . +Tom is an extraordinary man . 汤姆 是 个 不 寻常 的 人 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +Watch out for cars when you cross the street . 當 你 過 馬路 的 時候 要 當心 汽車 . +Do you have an extra English dictionary by any chance ? 您 碰巧 有 一本 額 外 的 英文 字典 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 的 网站 的 布局 . +If you get sleepy , let me know . 困 了 的话 就 说 哦 . +I would like to finish the work on my own . 我 想 自己 把 工作 做 完 . +That movie is worth seeing . 那 部 电影 值得一看 . +It is as cold as ice . 它 冷 得 像 冰 一樣 . +We took strong measures to prevent it . 我们 使用 了 强大 的 措施 来 预防 . +Tom will likely never do that again . 湯姆 不 太 會 再 去 做 那事 了 . +I am already full , thank you . 我 已经 很饱 了 , 谢谢 . +Do you go to school on Saturday ? 你 星期六 去 上 學 嗎 ? +I noticed Tom was smiling . 我 注意 到 汤姆 在 笑 . +Tell me what you have in your hand . 告诉 我 你 手里 有 什么 . +Here comes the train . 火車 來 了 . +Are you a wizard ? 你 是 个 术士 吗 ? +Wine is made from grapes . 葡萄酒 是 用 葡萄 做成 的 . +How old is your son ? 你 兒子 幾歲 ? +My sister married her high school classmate . 我 的 姐姐 嫁給 了 她 的 高中 同學 . +Even though I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I consider you one of my closest friends . 我 把 你 视为 我 最 要 好 的 朋友 之一 . +He is at her side . 他 在 她 的 旁邊 . +What do you plan to do ? 你 打算 怎麼 辦 ? +I received an invitation . 我 收到 了 一张 请帖 . +I was learning . 我 在 學習 . +He narrowly escaped being killed . 他 險 些 被 殺害 . +I met a Smith at the party . 我 在 聚会 上见 了 史密斯 . +You look just like your older brother . 你 看起来 很 像 你 的 哥哥 . +I am an honest person . 我 是 个 老实人 . +Tom is a real good man . 汤姆 是 个 很好 的 人 . +Cherry trees are now in bloom in Washington . 华盛顿 的 樱花 现在 开放 . +My mother has good handwriting . 我 母親 的 筆跡 很 好看 . +May I have some more coffee ? 我 可以 再 要 些 咖啡 嗎 ? +I feel like crying . 我 想 哭 . +It is all my fault . 都 是 我 的 错 . +We were just talking about you when you called . 當 你 打 電話 來 時 , 我們 正在 談論 你 . +I believed you . 我 相信 了 你 . +You can come at any time . 你 隨時 可以 來 . +Suddenly , I heard shouting . 突然 , 我 听到 了 一声 喊叫 . +If possible , I would like to travel around the world . 如果 可能 的话 , 我 想 环游世界 . +The pianist played two encores . 這位 鋼 琴家 演奏 了 兩首 安 可曲 . +That is rather unexpected . 这 真是 很 意外 . +I saw him reading a book . 我 看見 他 在 讀 一本 書 . +Vote for Tom . 投票 給 湯姆 . +Let is go and see as many things as we can . 我们 走 , 尽可能 多 看点 东西 . +The truth is that nothing is totally true or false . 真相 是 沒有 甚麼 完全 正確 或 錯誤 . +You are the only one who can protect them . 你 是 唯一 能 保护 他们 的 . +Tom could not control himself . 汤姆 不能自已 . +This is not important . 这 不 重要 . +I am sorry , but I can not hear you well . 對 不起 , 但 我 聽 不 太 清楚 你 說 話 . +I always catch colds in the winter . 我 在 冬季 總是 感冒 . +How is work ? 工作 怎么样 ? +There is a spoon missing . 少 了 一把 勺子 . +The days are getting longer and longer . 白天 漸漸 地 越來越 長 . +Do you have anything to declare ? 你 有 任何 要 申報 的 東西 嗎 ? +Were you in Boston for a long time ? 你 在 波士顿 待 了 很久 吗 ? +I have to call Tom . 我 得 给 汤姆 打电话 . +I saw something strange in the sky . 我 看见 天上 有 奇怪 的 东西 . +A lot of trees were cut down . 很多 树 被 砍倒 . +He can not help you . 他 不能 幫 你 . +What horrible weather ! 多么 糟糕 的 天气 啊 ! +I am no longer your assistant . 我 不再 是 你 的 助手 了 . +The policeman told me that the last bus leaves at ten . 警察 告诉 我 巴士 的 末班车 在 十点 出发 . +I have no secrets from you . 我 對 你 毫無隱瞞 . +She got all dolled up for her big date . 为了 她 的 重要 约会 , 她 精心 打扮 了 一下 . +Tom studied French for three years . 汤姆 学 了 三年 法语 . +Is the bath clean ? 浴室 干净 吗 ? +I wrote it all down . 我 全 写 下来 了 . +It is already eleven . 已经 是 11 点 了 . +When was it finished ? 是 什么 时候 完成 的 ? +Will you send for a doctor ? 你 會 派 人 去 請 醫生 來 嗎 ? +Did you go anywhere for the summer ? 你 夏天 去 了 任何 地方 嗎 ? +People should be dancing . 人們 應該 在 跳舞 . +I have a lot of friends to help me . 我 有 很多 朋友 帮 我 . +There are so many people at this concert . 這場 演唱 會 的 人 真多 . +I like taking walks . 我 喜欢 散步 . +This camera is cheap . 这个 相机 很 便宜 . +Please let me off at the next stop . 请 在 下 一站 让 我 下车 . +We do not do it very often . 我们 不常 做 . +We had a good time playing cards . 我們 打牌 玩 得 很 開心 . +I am an honest person . 我 是 个 老实人 . +After a long argument , I finally persuaded her to go camping . 經過 長久 的 爭論 , 我 終 於 說 服 了 她 去 露營 . +Did you hear the news ? 你 听到 新闻 了 吗 ? +I do not like the way he speaks . 我 不 喜歡 他 說 的 話 . +Do you believe there are ghosts ? 你 相信 有 幽灵 吗 ? +I want to lose weight . 我 想 减肥 . +I will telephone you every night . 我 每晚 都 給 你 打 電話 . +Tom is girlfriend threatened to leave him . 汤姆 的 女朋友 威胁 要 离开 他 . +Have you finished writing the letter yet ? 你 信 寫 完 了 嗎 ? +She is a pretty girl . 她 是 一個 漂亮 的 女孩 . +It is next to impossible to finish it in a day . 在 一天 之内 完成 它 几乎 是 不 可能 的 . +His room is always tidy . 他 的 房間 總是 很 整齊 . +You must hurry up . 您 要 赶快 些 . +She finds it a little distasteful . 她 发现 这 有点 令 她 不快 . +She applied her mind to her new job . 她 专注 在 她 的 新 工作 上 . +Education begins at home . 教育 从 家庭 开始 . +I am really sorry to hear that . 听到 这样 的 消息 我 真的 很 难过 . +They are kids . 他们 是 孩子 . +He decided to quit smoking . 他 決定 戒菸 了 . +Do not be afraid of barking dogs . 別 怕 吠 犬 . +She made a mess of the work . 她 工作 做 得 亂 七八 糟 . +Tom began talking . 汤姆 开始 说话 . +My father is going for a walk in the park . 我 父親 要去 公園 裡 走 . +Please show me your injured arm . 請 讓 我 看看 你 受傷 的 手臂 . +I interpreted her silence as a refusal . 我 認為 她 的 沉默 就是 表示 拒絕 . +She likes oranges . 她 喜欢 橙子 . +What are you going to do tonight ? 你 今晚 要 做 什麼 ? +I almost did not visit Australia . 我 差点 没 去 澳大利亚 +Have you done all your homework ? 你 做 了 所有 的 功課 嗎 ? +Please tell me where to go next . 請 告訴 我 下 一步 去 哪裡 . +Better luck next time . 祝 你 下 一次 好运 . +He probably will not come . 他 可能 不会 来 了 . +She said she had a cold . 她 說 她 感冒 了 . +Tom says he has a plan . 汤姆 说 他 有个 计划 . +She lived a long life . 她 活 了 很久 . +What time do you wake up every day ? 你 每天 幾點 起床 ? +He was very good at playing tennis . 他 打网球 打 得 很 好 . +They wash their hands with soap . 他们 用 肥皂 洗手 . +I found the bed quite comfortable . 我 覺得 這 張 床 相當 地 舒適 . +My aunt gave me a camera . 我 的 阿姨 給 了 我 一台 攝影 機 . +Stop fooling around . 不要 隨便 開 玩笑 . +Put away your books and notebooks . 把 你 的 書 和 筆記 本 收起 來 . +He denied having written to me . 他 否認 曾 寫信 給 我 . +Someone is standing behind the wall . 有人 站 在 墙后 . +Everyone knew that Tom is French was good . 每个 人 都 知道 汤姆 的 法语 很 好 . +Winter is over and spring has come . 冬天 結束 了 春天 已經 來 了 . +You must choose . 你 必须 选择 . +Do not be afraid of making mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +People of all ages like this song . 这 首歌 老少皆宜 . +The room originally had no furniture . 本来 这 间 房间 里 没有 家具 . +Here is your dog . Where is mine ? 这 是 你 的 狗 . 我 的 呢 ? +I can barely see you . 我 幾乎 看不見 你 . +Your team is stronger than ours . 你們 的 隊伍 比 我們 的 強 . +Swimming is good for your health . 游泳 對 你 的 健康 很 好 . +Car exhaust causes serious pollution in towns . 汽车尾气 在城镇 里 造成 了 严重 的 污染 . +She complained that my salary was low . 她 抱怨 我 的 薪水 很 低 . +She is good at speaking English . 她 擅長 說 英文 . +You are a good painter , are not you ? 你 是 個 很棒 的 畫家 , 不是 嗎 ? +Do you believe in ghosts ? 你 相信 有 幽灵 吗 ? +The lion is stalking its prey . 狮子 在 跟踪 它 的 猎物 . +I do not know which button to push . 我 不 知道 要 按 哪個 按 鈕 . +Tom passed away last night . 汤姆 在 昨晚 去世 了 . +I know your older brother quite well . 我 跟 你 哥哥 很熟 . +It is improved . 它 有 改善 了 . +Call me , please . 请 给 我 打电话 . +Tom got first prize , did not he ? 湯姆 得 了 第一名 , 不是 嗎 ? +Why do you study every day ? 为什么 你 每天 都 学习 呢 ? +Are you still at the office ? 你 還 在 辦 公室 裡 嗎 ? +How long have you been here ? 你 在 這裡 多久 了 ? +Could you put it in plain language ? 您 可以 简单 点儿 说 吗 ? +I am at home . 我 在家 裡 . +The total comes to 3,000 yen . 总共 是 3000 日元 . +He ate the whole apple . 他 把 整个 苹果 都 吃 了 . +You will need their help . 你 会 需要 他们 的 帮助 . +The gang was planning a robbery . 這 夥 人 計劃 搶劫 . +He is getting along with his neighborhood . 他 與 他 的 鄰居 相處 . +Tom went to Boston to buy a painting . 湯姆 去 波士 頓 買 一幅 畫 . +He was leaning against the wall . 他 靠著 牆 . +He will reach Hakodate tonight . 他 今晚 將 抵達 函館 . +I noticed a note on my desk , but I do not know who wrote it . 我 發現 了 我 辦 公 桌上 有 張 字 條 , 但是 我 不 知道 是 誰 寫 的 . +Are you sure ? 你 确定 吗 ? +There was nothing that I could do at that time . 当时 我 什么 都 不能 做 . +Do not eat like a pig . 别 像 猪 一样 猛吃 东西 . +He got 90 % in English . 他 英文 得到 了 九 十分 . +I do not want to have this fight . 我 不想 打 这 架 . +My memory failed me . I just could not remember his name . 我 的 記性 不好 . 我 簡直 不 記得 他 的 名字 了 . +Tom needs Mary is help . 湯姆 需要 瑪麗 的 幫助 . +May I pay with a travelers ' check ? 我 可以 用 旅行支票 支付 嗎 ? +I took it for granted that he would keep his word . 我 理所 當然 地 認為 他 會 履行 諾 言 . +I am not wearing pants . 我 没 穿 裤子 +Wait ! 等 一下 ! +Tom was a little overweight when he was a child . 湯姆 在 小时候 有 點 超重 . +No other mountain in the world is as tall as Mt . Everest . 世界 上 任何 山峰 都 达 不到 珠穆 朗 瑪峰 的 高度 . +Can you help me wash these dishes ? 你 能 幫 我 洗 這些 碗 盤 嗎 ? +We get together once a year . 我們 一年 聚 一次 . +The talks will deal with the problem of pollution . 这场 谈论 即将 对 污染 问题 展开讨论 . +I really liked the gift you gave me . 我 真 喜歡 你 給 我 的 禮物 . +Long time , no see . 真是 好久不见 啊 +I am not afraid of death . 我 不怕死 . +She must have studied very hard . 她 一定 很 用功 讀書 . +You ought to have come to our party . 你 應 該 到 我們 的 派對 的 . +I lost my job and I have no money . I am at my wit is end . 我 失業 又 沒錢 . 真 不知 該何 去 何 從 . +The man must work . 男人 应该 工作 . +She is what we call a bookworm . 她 就是 所谓 的 书虫 . +We ordered too much food . 我們 點 太 多 食物 了 . +I arrived two weeks ago . 我 在 兩 週前 到 了 . +It seems that the only time he is not eating is when he is sleeping . 看来 他 只有 在 睡觉时 不吃 东西 . +Neither of those two students passed the test . 兩個 學生 都 沒 通過 考試 . +Many of the user reviews on Amazon are fake . 亚马逊 网站 上 的 许多 用户 评论 都 是 虚假 的 . +Second semester has ended . 第二 學期 結束 了 . +The food tasted slightly of garlic . 這個 食物 嚐 起 來 有 一 點 大蒜 味 . +She is got a good eye for paintings . 她 對 繪畫 有 很好 的 鑑賞 力 . +Why did you run away ? 你 為 什麼 逃走 ? +How did Tom talk Mary into babysitting his children ? 汤姆 是 怎么 说服 玛丽 照顾 他 的 小孩 的 呢 ? +We are not as young as Tom . 我们 不再 像 汤姆 那样 年轻 . +There are no comments yet . 還 沒有 任何 評論 . +Unbelievable ! 难以置信 ! +Tom pulled Mary out of the water . Tom 把 Mary 拉 出水 +We are not afraid of death . 我们 不怕死 . +I do not mind hot weather . 我 不在乎 炎熱 的 天氣 . +Would you like a cup of coffee ? 你 要 來 杯 咖啡 嗎 ? +Shut the door . 不要 把门 开 着 . +I have class tomorrow . 我 明天 有 课 . +Why are you not doing it ? 你 为什么 不 做 ? +Fresh food is wonderful . 新鮮 的 食物 最 棒 了 . +I do not know what you mean . 我 不 懂 你 什么 意思 . +Are you sure Tom is happy ? 你 確定 湯姆 高興 嗎 ? +I am completely exhausted . 我 完全 地筋 疲力 盡 了 . +I hope I will see you again soon . 我 希望 我 會 很快 再 見 到 你 . +Anything you say may be held against you in a court of law . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +Tom , are you okay ? 汤姆 , 你 还好 吧 ? +Am I supposed to help Tom ? 我 该 帮 汤姆 吗 ? +She made a point of visiting me . 她 特地 來 拜訪 我 . +Tom clapped his hands together . 湯姆 拍 了 手 . +You are about three days late . 你 大 約 遅 了 三天 . +He listened with his ear to the door . 他 把 耳朵 貼 在 門上 聽 . +Get down on the floor ! 趴在 地上 ! +I have had to do everything by myself . 我 必须 靠 自己 做 所有 事 . +" Do you know when they will arrive ? " " At eleven @-@ thirty this evening . " 你 知道 他们 什么 时候 到 吗 ? 今晚 11 点 半 . +He brought me to the bus stop . 他 帶 我 到 車站 . +You made it . 你 做到 了 . +He brought his lunch today . 他 今天 带 了 午饭 . +Her toy was broken by her little sister . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +I paid $ 200 in taxes . 我 付 了 兩 百元 含稅 . +What is your name ? 你 叫 什么 名字 ? +Ostriches can not fly . 鴕鳥 不 會 飛 . +I told her not to let go of the rope , but she did . 我 叫 她 不要 松开 绳子 , 但是 她 做 了 . +I am in love with her . 我 愛 上 她 了 . +He put on the black coat . 他 穿 上 了 黑色 的 外套 . +We found the front door locked . 我們 發現 前門 被 鎖上 了 . +I saw the sunrise . 我 看 了 日出 . +He spent the night at his uncle is place . 他 在 他 舅舅 那 裏 過 夜 . +They built a bridge across the river . 他們 建 了 一座 橫 跨 河流 的 橋 . +Do Japanese people eat sushi every day ? 日本 人 每天 都 会 吃 寿司 吗 ? +He is to blame for the failure . 失败 的 责任 在 他 . +Prepare yourself for the future . 为 将来 做 准备 吧 . +The school is five kilometers from my home . 學校 離 我家 有 五公里 遠 . +Tom said that he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I love sports . 我 喜歡 運動 . +Who is your girlfriend ? 你 女朋友 是 谁 ? +Let is stay here tonight . 讓 我們 今晚 留在 這裡 吧 . +This is the place where the battle took place . 这 是 战斗 发生 的 地方 . +Maybe Tom just got nervous . 可能 汤姆 紧张 了 . +How much does this umbrella cost ? 這 把 傘 多少 錢 ? +Eating lunch with you would make me happy . 跟 你 一起 吃 午 飯 會 讓 我 高興 . +Put this jacket on , and you will be much warmer . 穿 上 外套 吧 ! 你 會 暖 一些 . +She broke the window on purpose . 她 故意 把 窗戶 弄壞 了 . +She has a good command of English though she was brought up in Japan . 雖然 她 在 日本 被 撫養 長大 , 但是 她 精通 英語 . +Tom is on the go day and night . 汤姆 日夜兼程 . +He is in London on business now . 他 現在 在 倫敦 洽 公 . +Tom saw the file . 湯姆 看 了 文件 . +Later he wrote to the president . 他 后来 写信给 总统 . +Tom knows the difference . 湯姆 知道 不同 之處 . +He is about the same age as you . 他 跟 您 年纪 差不多 . +Someone called . 有人 打電話來 . +I do not want to go to school . 我 不想 去 学校 . +My father is an office worker . 我 父親 是 一名 辦 公室 職員 . +I am telling you this confidentially . 这个 我 只 和 你 说 哦 . +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +You should not have paid the bill . 你 本來 不 應該 付賬 的 . +I am on the balcony . 我 在 陽 臺 上 . +The boy is kind . 他 是 个 好孩子 . +They decided to build a bridge . 他們 決定 建 一座 橋 . +These flowers you see are roses . 你 看到 的 這些 花 是 玫瑰 . +Tom planted three apple trees in his yard . 汤姆 在 他 的 院子 里 种 了 三棵 苹果树 . +Let is hope she comes . 讓 我們 祈盼 她 會 來 . +This house is not for sale . 这 房子 不 出售 . +Tom looked around and realized he was lost . 汤姆 环顾四周 , 发现自己 迷路 了 . +We just need a plan . 我們 只是 需要 個 計畫 . +I did not get along with her . 我 沒有 和 她 相處 過 . +That will not make any difference . 这 没有 任何 区别 . +He wishes to become a doctor . 他 希望 成為 一名 醫生 . +We are in the era of atomic energy . 我們 身處 核能 時代 . +Yesterday was the last day of school . 昨天 是 最后 一天 上学 . +I got up early yesterday . 昨天 我 很早 起床 . +We watched the soccer game on TV . 我們 看 了 電視 上 的 足球 比賽 . +Why did not you follow my advice ? 你 為 什麼 不 聽 我 的 忠告 ? +Tom is going crazy . 汤姆 要 发疯 . +There is something that I want to tell you . 有件 事情 我 要 对 你 说 . +Let bygones be bygones . 既往不咎 . +It is great ! You will laugh for sure . 太棒了 ! 你 一定 會 笑 的 . +I do not understand what he said . 我 不 明白 他 说 的话 . +The bus is running about ten minutes late . 公交 車 晚 點 了 十分 鐘 . +I miss him . 我 想念 他 . +How do you pronounce this word ? 你们 怎么 读 这个 词 ? +Tom wants to spend more time with his family . 汤姆 想 多把 时间 花 在 他 的 家庭 上 . +She wants to know who sent the flowers . 她 想 知道 是 谁 送 的 花 . +The family is watching a movie together . 这 一家人 一起 看 电影 . +The Amazon is fed by a large number of tributaries . 亚马逊河 有 很多 支流 . +Do not be so childish . 不要 那么 幼稚 . +I have problems , just like everybody else . 我 有 问题 , 就 像 其他人 一样 . +Did you go to the art exhibition ? 你 去 看 藝術 展覽 了 嗎 ? +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +I am thrilled . 我 激動 不已 . +Go up the stairs . 上楼 . +How is the weather there ? 那里 的 气候 怎么样 ? +I hope you will get well soon . 我 希望 你 很快 就 會 好 . +Are you certain ? 你 确定 ? +Please come back home . 請 回家 . +More and more people are moving to urban areas . 越來越 多 的 人 遷往 鄉村 . +I am busy getting ready for tomorrow . 我 正忙 著為 明天 作 準備 . +Are there any questions ? 有 什么 问题 吗 ? +I thought Tom had heard us . 我 觉得 汤姆 听说 过 我们 . +You are turning red . 你 脸红 了 . +I have to write a letter . Do you have some paper ? 我 需要 写 一封信 . 你 有 纸 吗 ? +We tried to stop you . 我們 試著 阻止 你 . +We are boys . 我們 是 男孩 . +Tom picked up the book . 汤姆 捡起 了 书 +I changed trains at Tokyo Station . 我 在 東京 站換 火車 . +Tom is waiting for Mary to come back . 汤姆 正在 等 着 玛丽 回来 . +I use Twitter . 我 用 Twitter . +I am sixteen years old . 我 16 岁 了 . +Do not give up ! 不要 放棄 ! +Can your brother drive a car ? 你 弟弟 會 開車 嗎 ? +Where is the nearest telephone box ? 最近 的 電話 亭 在 哪裡 ? +He does not have any friends . 他 一个 朋友 都 没有 . +Did you enjoy the party yesterday ? 昨天 的 派 對 你 玩 得 開心 嗎 ? +She gave me plenty to eat . 她 給 了 我 很多 吃 的 東西 . +May I take your picture ? 我 可以 幫 你 照相 嗎 ? +He played the piano and she sang . 他 彈 鋼琴 , 她 唱歌 . +I am going to watch TV this evening . 今天 晚上 我 打算 看电视 . +Bring me the dictionary . 把 那本 詞典 遞 給 我 . +He was jealous of my success . 他 嫉妒 我 的 成功 . +My father will retire at the age of sixty . 我 父亲 六十岁 就要 退休 了 . +I can not remember the meaning of the word that I looked up yesterday . 我 记不起 昨天 查 的 那个 词 的 意思 了 . +It will clear up in the afternoon . 今天下午 天氣 將 轉 晴 . +Tom does not think so . 汤姆 可不 这么 认为 . +Will you drive me to the hospital ? 你 可以 載 我 去 醫院 嗎 ? +I advise you to change clothes . 我 建議 你 換 衣服 . +I made efforts to improve my grades . 我 努力 的 改善 我 的 成績 . +I need some medicine to kill the pain . 我 需要 用药 来 镇痛 . +You do not have to do it immediately . 你 没 必要 马上 去 做 . +They now have three children . 现在 他们 有 三个 孩子 . +I consider myself fairly fluent in French . 我 认为 自己 的 法语 相当 流利 . +My older brother is a teacher . 我 哥哥 是 一名 教師 . +That is true . 這 是 真的 . +What is it you want to know ? 你 想 知道 什麼 ? +Tom speaks without thinking . 汤姆 不假思索 脱口而出 . +Everyone said that I was wrong . 大家 都 說 我 是 錯 的 . +True friendship is based on mutual trust . 真正 的 友谊 建立 在 彼此 信任 的 基础 上 . +She began crying . 她 开始 哭泣 . +She was always quarreling with her brothers . 她 一直 和 她 的 兄弟 争吵 . +I am interested in this story . 我 對 這個 故事 感興趣 . +The situation is getting worse and worse day by day . 情况 一天 比 一天 差 . +Turn the knob and open the door . 轉動 門 把 , 把 門 打開 . +We are ready to leave . 我們 準備 離開 . +I do not care if you trust me or not . 我 不 關心 你 是否 信任 我 . +Do you really need to ask the question to know the answer ? 你 真的 需要 提 问题 来 知道 答案 吗 ? +I could hardly keep from laughing . 我 忍不住 要 大笑 . +My aunt made a new skirt for me . 我 姑姑 做 了 一條 新 裙子 給 我 . +Thanks for adding me as a friend . 谢谢 你 把 我 加为好友 . +Lincoln died in 1865 . 林肯 於 1865 年 去世 . +I should have tried out this electric shaver before buying it . 我 本该 在 买下 这个 电动 剃须刀 之前 试一下 的 . +Are you planning to be at Tom and Mary is wedding ? 你 打算 参加 汤姆 和玛丽 的 婚礼 吗 ? +Tom did not return my phone calls . 湯姆 沒 有 回 我 的 電話 . +More than twenty boys went there . 超過 二十 個 男孩 去 了 那裡 . +We apologize for the delay and regret any inconvenience it may have caused . 我们 对 这次 的 延迟 表示 抱歉 , 并 对 可能 造成 的 不便 表示遗憾 . +In March , many flowers come out . 許多 花 在 三月份 綻放 . +Tom does not have to thank me . 湯姆 不 需要 謝 我 . +There is no one in your bedroom . 你 的 卧室 里 没有 人 . +It is your turn . 輪到 您 了 . +How do you spell your last name ? 你 的 姓 怎麼 拼 ? +I suppose I 'd better phone Tom . 我 想 我 给 汤姆 打电话 比较 好 . +I sat next to him . 我 坐在 他 旁边 . +They are very close friends . 他們 是 非常 親密 的 朋友 . +The rope was not strong enough to support him . 绳子 不够 牢固 , 撑不住 他 . +We just have enough time to eat breakfast . 我们 刚好 有 时间 吃 早饭 . +He retired at the age of 65 . 他 65 岁 退 了 休 . +I am afraid of heights . 我 恐 高 . +Hi ! How are you ? 嗨 ! 你好 嗎 ? +I did not tell anyone what time I 'd be arriving . 我 沒 跟 別人 說 過 我什麼 時候 會 到 . +The doctor examined the patients . 醫生 檢查 了 病人 . +Can I drive the tractor ? 我 能 開 拖拉 機 嗎 ? +Tom told him . 汤姆 告诉 了 他 . +Five gallons of regular , please . 請照 平常 一樣 五加 侖 . +I am going to check . 我 正要 去 签到 . +Can I ask a question ? 我 能 问个问题 吗 ? +The students are talking about language and culture . 学生 们 在 探讨 语言 和 文化 . +Tom said Mary was hungry . 汤姆 说 玛丽 饿 了 . +Having lived in Tokyo , I know the city well . 因为 住 过 东京 , 我 对 这个 城市 非常 了解 . +Do not forget your money . 不要 忘记 您 的 钱 . +Tom is careful , is not he ? 湯姆 很 仔細 , 不是 麼 ? +Everything depends on it . 全都 靠 它 了 . +He has been secretly in love with her . 他 一直 暗恋着 她 . +Awesome ! 好 棒 ! +She took a taxi to the hospital . 她 搭計 程車 去 醫院 了 . +Who is in charge of this section ? 谁 负责 这个 部门 ? +These pants fit me well . 我 穿 這條 褲子 很 合身 . +It is on this point that our opinions differ . 是 在 这点 上 我们 的 意见 有 分歧 . +He borrowed money from his friend . 他 向 他 的 朋友 借錢 . +Let me try . 让 我 来 . +Our teacher has a wonderful sense of humor . 我们 的 老师 非常 有 幽默感 . +At last , she gave in to him and told him the secret . 最 後 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +Tom and Mary were smiling . 汤姆 和玛丽 正 微笑 着 . +Is that the station ? 那 是 車 站 嗎 ? +Mt . Fuji as seen from Suruga Bay is beautiful . 從駿 河灣 看 , 富士山 很 美麗 . +Do not go out after it gets dark . 天黑 以 後 不要 出門 . +I am yours and you are mine . 我 是 你 的 , 而 你 是 我 的 . +I have got to try to find Tom . 我 试图 找到 Tom . +Tom does not share Mary is enthusiasm . 汤姆 没有 感受 到 玛丽 的 热情 . +English is not difficult to learn . 英語 並 不 難 學 . +She must have been sick . 她 一定 是 生病 了 . +I am feeling good this morning . 我 今天 早晨 感觉良好 . +I got sick from drinking too much . 因為 喝酒 喝 太 多 , 所以 我 生病 了 . +She answered my letter right away . 她 立刻 回信 給 我 . +Tom was sent back to Boston . 汤姆 被 送回 了 波士顿 +When will it be convenient for you ? 什麼 時候 對 你 來說 是 方便 的 ? +His decision to retire surprised all of us . 他 要 退休 的 決定 讓 我們 都 感到 吃 驚 . +I need to go to work . 我 得去 工作 了 . +Bring Tom here . 把 汤姆 带到 这里 来 . +Let is take a trip to New York . 去 纽约 吧 ! +Bush followed Reagan as president . 布什 继 里根 之后 当上 了 总统 . +I do not want to play anymore . 我 不想 再 玩 了 . +We need money . 我們 需要 錢 . +Anything else ? 还有 别的 吗 ? +I got home at seven . 我 七點 回到 家 . +He is difficult to get along with . 他 這個 人 很 難相 處 . +He hurt his left foot when he fell . 當 他 跌倒 時 , 他 傷 了 他 的 左腳 . +Have you ever seen Tokyo Tower ? 你 曾 看 過 東京 鐵塔 嗎 ? +He is as tall as her . 他 和 她 一样 高 . +It looks like an orange . 它 看 起來 像 橙子 . +Their apples are not as good as our apples . 他們 的 蘋果 沒有 我們 的 好 . +Everyone is talking about Tom . 每个 人 都 在 谈论 汤姆 . +I am having my house painted next month . 我 下 個 月 刷 我 的 房子 . +Beauty is but skin deep . 美貌 只是 表面性 的 东西 . +They were only interested in selling books . 他们 只 对 卖书 有 兴趣 . +Tom quit smoking cold turkey . 汤姆 突然 戒烟 了 . +Was it all an illusion ? 那 全是 幻觉 吗 ? +I wonder which way is the shortest . 我 想 知道 哪 一條 路 是 最短 的 . +Not all of the passengers escaped injury . 並非 所有 的 乘客 都 免 於 受傷 . +Somebody must care for the patient . 一定 要 有人 照顧 病人 . +How about calling it a day ? 今天 就 做到 這裡 如何 ? +Tom is very kind . 汤姆 人 很 好 . +I fed the leftovers to my dog . 我 把 剩下 的 东西 给 我 的 狗 吃 . +She will give her photo to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +My mother never gets up early . 我 的 母親 從 不 早起 . +Why do you ask ? 你 問 這個 幹 什麼 ? +I want you to tell me the truth . 我 想要 你 把 真相 告诉 我 . +Mars is a planet . 火星 是 一顆 行星 . +What did she say ? 她 說 了 什麼 ? +He plays the guitar well . 他 吉他 彈 得 很 好 . +My office is on the fifth floor . 我 的 辦 公室 在 五 樓 . +Everybody likes to goof off . 所有人 都 喜欢 偷懒 . +He lives alone in an apartment . 他 一個 人 住 在 公寓 裡 . +Are these all your books , Tom ? 汤姆 , 这些 全都 是 你 的 书 吗 ? +She managed to keep up appearances . 她 設法 保住 面子 . +He taught himself French . 他 自 學法 語 . +Her dream is to visit Paris . 她 的 梦想 是 参观 巴黎 . +Tom swam . 汤姆 游泳 了 . +She always believes me . 她 一直 都 相信 我 . +Tom does not know what he should do now . 汤姆 不 知道 他 现在 应该 做 什么 . +I am proud of my son . 我 为 我 儿子 感到 骄傲 . +In London , the police are always worried about finding a bomb on the train or subway . 在 倫敦 , 警察 總是 擔心 在 列車 上 發現 炸彈 . +What nonsense are you talking now ? 你 胡说 什么 呢 ? +Let is make some more . 我們 做 多一點 . +He works hard all the year round . 他 一年 到 頭 努力 工作 . +Are there any apples in the box ? 箱子 裡 有 蘋果 嗎 ? +The flood caused a lot of damage . 洪水 造成 了 很大 的 損害 . +My best friend dances really well . 我 最好 的 朋友 舞 跳 得 很 好 . +She respects her homeroom teacher a lot . 她 很 尊重 她 的 導師 . +A good idea occurred to him . 他 想到 一个 好 主意 . +He is good at rugby . 他 很 擅長 橄欖球 . +She took a bite of the apple . 她 咬了一口 蘋果 . +He had a shower before breakfast . 他 在 早餐 前 洗 了 个 澡 . +Tom got rid of his old books . 汤姆 扔掉 了 他 的 旧书 . +I need to search for my pen . 我 得 查找 一下 我 的 笔 . +My parents taught me to respect my elders . 我 的 父母 教育 我 应该 尊敬 老人 . +Let is take the bus . 讓 我們 坐 公共 汽車 去 . +You have three cars , do not you ? 你 有 三辆 车 对 吗 ? +I did nothing out of the ordinary . 我 沒 做 什麼 與 眾 不同 的 事 . +Tom just never should have done that . 汤姆 就 不该 做 那事 . +That makes no difference . 这 没有 任何 区别 . +They made their way through the crowd . 他們 從 人群 中 擠 過 去 了 . +I do not remember anything about the incident . 我 不 记得 事故 的 情况 . +You have not changed at all . 你 一点 都 没变 . +My brother likes horror movies . 我 哥哥 喜歡 恐怖 電影 . +Clothes make the man . 人要 衣裝 . +They closed their eyes . 他们 闭上眼睛 . +Some people like volleyball , others enjoy tennis . 有些 人 喜欢 排球 , 其他人 喜欢 网球 . +He became a member of this club five years ago . 他 在 五年 前 成為 了 這個 俱樂部 的 成員 . +He threatened to make it public . 他 威胁 要 公开 . +Tom is happy . 湯姆高興 . +You must always keep your hands clean . 您 应该 一直 让 手 保持 干净 . +The car crashed into the truck . 汽車 撞上 了 卡車 . +These shoes are hers . 這些 鞋 是 她 的 . +Tom says he does not feel like going out . 汤姆 说 他 不想 出去 . +I ran across an old friend near the bank . 我 在 银行 附近 碰见 老朋友 . +We caught some large fish there . 我們 在 那裡 抓 了 一些 大魚 . +Have you washed your hands yet ? 你 洗 過 你 的 手 了 嗎 ? +She is looking for her missing wallet . 她 正在 找 她 不 見 了 的 皮夾 . +You are not to leave this room . 你 不 應該 離開 這個 房間 . +He knows better than to marry her . 他 不 會 傻 到 去 娶 她 . +He has no manners at all . 他 一點 禮貌 也 沒有 . +Tom will be able to swim soon . 湯姆 將 很快 就 會 游泳 了 . +I was at home most of the day yesterday . 我 昨天 大部分 时间 在家 . +There are a few shops next to my house . 我家 旁边 有 几家 商店 . +We can not keep this a secret forever . 我們 不能 永遠 把 它 當 秘密 守住 . +She will give her picture to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +Turn on the light , please . 請 開燈 . +I changed my address last month . 上個月 我 換 了 我 的 地址 . +The dog is sitting by the bowl . 狗 坐在 碗 旁边 . +Oil is extracted from olives . 油 是从 橄榄 中 提炼 出来 的 . +He hid himself behind the door . 他 藏到 了 门 后 . +My daughter caught a cold . 我 的 女儿 感冒 了 . +Hey , look what I found . 嘿 , 看 我 找到 了 什么 . +There is something weird happening . 正 有 什么 奇怪 的 事情 发生 着 . +Show it to me . 给 我 看下 它 吧 . +I played with the baby on my knee . 我 在 膝蓋 上 跟 嬰兒 玩 . +I think that I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Let is wait until it stops raining . 我们 等 雨 停 吧 . +She does not have many friends in Kyoto . 她 在 京都 沒有 很多 朋友 . +I do not discriminate . 我 不 歧视 人 . +Do you want to go to the station with me ? 要 不 一起 到 车站 去 ? +This is not safe . 这 不 安全 . +I would like to work at the cafeteria . 我 想 在 餐廳 工作 . +Tom can not cross the border . Tom 没 办法 穿过 边界 . +May I ask some questions ? 我 可以 問 一些 問題 嗎 ? +If I were you , I 'd want to know what Tom is doing right now . 如果 我 是 你 , 我 不会 想 去 知道 Tom 现在 正在 做 什么 . +I have caught a terrible cold . 我 得 了 一種 可怕 的 感冒 . +I am sorry I did not make myself clear . 對 不起 , 我 沒 講 清楚 . +Tell us more . 告訴 我們 多一點 . +We got all the materials together . 我們 把 所有 的 材料 放在 一起 . +This school has many students . 这个 学校 有 很多 学生 . +Tom was a real hero . 汤姆 是 个 真 英雄 . +Your hair is pretty . 你 的 头发 很漂亮 . +Write your address here . 在 這裡 寫下 你 的 地址 . +Are you for or against his idea ? 您 赞成 还是 反对 他 的 想法 ? +I will drive you to the airport . 我会 开车 送 你们 去 机场 . +The accident is only survivor was a baby . 这场 灾难 的 唯一 幸存者 是 一个 婴儿 . +It is more blessed to give than to receive . 赠与 比 接受 更让人 觉得 幸福 . +Move quietly . 轻轻地 移动 . +Tom is very much alone . 汤姆 非常 孤单 . +I 'd never done it before . 我 以前 從未 過 它 . +My father often washes the dishes . 我 爸爸 常常 洗碗 . +Tom has not talked to Mary about that yet . 汤姆 还 没 跟 玛丽 谈 那事 . +The murmur of the brook lulls me to sleep . 溪流 潺潺 , 催 我 入眠 . +English is not spoken here . 這裡 的 人 不 說 英語 . +How long does it take to go from here to the Hilton Hotel ? 從 這裡 到 希爾頓 飯 店 要 花 多久 時間 ? +She likes chocolate , too . 她 也 喜欢 巧克力 . +She can speak English , of course . 她 會 講 英語 , 當然 . +If you do not go , I will not , either . 如果 你 不 去 , 那 我 也 不 會 去 . +I asked him to mend my shoes . 我 請 他 修理 我 的 鞋子 . +I went to the station to see my friend off . 我 去 车站 为 我 朋友 送行 . +I remember having seen her somewhere . 我 记得 好像 在 哪里 见 过 她 . +I thought pizza was what you wanted to eat . 我 認為 你 想 吃 的 是 比 薩 . +I suppose you are hungry . 我 猜想 您 饿 了 . +I am right . 我 是 對 的 . +I remember you . We met three years ago . 我 記得 你 . 三年 前 我們 見 過 面 . +I wish I could go to Japan . 我 非常 希望 能够 去 日本 . +Old people get up very early . 老人 們 很 早就 起床 . +Call me at the office . 打 電話 到 我 辦 公室 來 . +I did not know she was married . 我 不 知道 她 结婚 了 . +How far is it to the station ? 到 火車 站 有 多 遠 ? +Who would want to hire Tom ? 誰 會 想 雇 湯姆 ? +Tom put a lot of honey on his toast . 汤姆 往 他 的 面包片 上放 了 许多 蜂蜜 . +He is very good at playing violin . 他 非常 擅 長拉 小提琴 . +I do not like to use liquid laundry detergent . 我 不 喜歡 用 洗衣 液 . +Tom came home early yesterday . 湯姆 昨天 提早 回來 了 . +Will you switch seats with me ? 您 愿意 跟 我 换 座位 吗 ? +Is it still far from here ? 离 这里 还 远 吗 ? +Will you put down that paper and listen to me ? 你 能 放下 文件 聽 我 說 嗎 ? +I will be very happy if I can serve you . 能 为 你 服务 我会 感到 非常高兴 . +I am sorry . 对不起 . +He died of lung cancer . 他 死 於 肺癌 . +Tom could have figured that out without any help . 汤姆 能 不 依靠 任何 帮助 解决 那事 . +Where are we meeting ? 我们 在 哪里 见面 ? +This door is locked from the inside . 這 門 從 裡面 被 反鎖 了 . +How did you meet Tom ? 你 是 怎麼 見 到 湯姆 的 ? +How can you do this to me ? 你 怎么 这样 对 我 ? +Where did you live last year ? 你 去年 住 在 哪儿 ? +That is mine . I do not know where yours is . 那个 是 我 的 . 我 不 知道 你 的 在 哪里 . +It is not a suitable topic for discussion . 它 不是 一個 適合 討論 的 主題 . +Tom played with his dog . 汤姆 和 他 的 狗 玩 . +They failed the exam . 他們 考試 失敗 了 . +What are you reading right now ? 你 在 看 什么 ? +He studies Chinese as well . 他 也 学习 汉语 . +The train was late this morning . 今天 早上 火車 來遲 了 . +Come in . 进来 . +That boy over there is probably Tom is brother . 那边 的 那个 男孩 可能 是 汤姆 的 兄弟 . +He knows New York inside out . 他 对 纽约 了如指掌 . +How much does the wooden chair cost ? 那 张 木椅 要 多少 钱 ? +Tom is used to getting up early in the morning . 汤姆 习惯 早起 . +Their traditional life style no longer exists . 他们 传统 的 生活 方式 不再 存在 . +I must go home . 我 该 回家 了 . +You are lying , are not you ? 你 在 撒謊 , 不是 嗎 ? +It began to snow . 开始 下雪 了 . +I am really looking forward to seeing Tom again . 我 真 想 再 見 見 湯姆 . +I do not know any of them . 他们 中 的 任何 一位 我 都 不 认识 . +We hope a solution is found . 我们 希望 找到 解决 方法 . +Skip it . 不管 它 . +Tom is a professional magician . 汤姆 是 个 专业 的 魔术师 . +Can you explain the exact meaning of this word ? 你 能否 說出 這個 詞 的 精確 意思 ? +I suppose I felt a little jealous . 我 想 我 感到 有 點 嫉妒 . +I am just going for a walk . 我 只是 去 散散步 . +What is that ? 那 是 什么 啊 ? +We should have been more careful . 我們 應 該 更 小心 的 . +It is all Tom is fault . 全 是 湯姆 的 錯 . +A slip of the tongue is sometimes fatal to a politician . 有时候 口误 对 政治家 来说 是 致命 的 . +I look forward to hearing from you . 我 期待 收到 你 的 來信 . +You would not believe me if I told you . 我 告诉 你 , 你 也 不会 信 . +This is not a good idea . 這 不是 好 主意 . +It is nearly six o 'clock . 差不多 六点 了 . +Please contact us . 请 联系 我们 . +Wait here for a while . 在 这儿 等 一会儿 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +I am playing a TV game . 我 在 玩電視 遊樂器 . +This is none of your business . 这 不是 你 的 事 . +I am tired of watching television . 我 看 電視 看到 厭煩 了 . +I approved it . 我 同意 它 . +How long would it take ? 要 多长时间 ? +Tom took his wedding ring off . 汤姆 拿掉 了 他 的 婚戒 . +Close the door , please . 請關 上門 . +He insured himself . 他 給 自己 投 了 保險 . +I bought a VCR at that store for a low price . 我 在 上 商店 花 低价 买 了 录像机 . +Could I see you in private ? 我 能 私下 見 你 嗎 ? +We are not looking . 我們 沒有 看著 . +When you hurt others , you also hurt yourself . 你 若 是 傷害 別人 , 你 也 會 傷 害到 自己 . +You do not want to be an editor ? 你 不想 做 编辑 ? +I bought a camera for 30 dollars . 我 花 30 美元 買 了 一台 照相 機 . +Just at that time , the bus stopped . 就 在 那时 , 巴士 停住 了 . +He rescued the child from the fire . 他 從 火場 中 救 了 這個 孩子 . +What did you do ? 你 做 了 什么 ? +Do not use computer translation . 别用机 翻 . +How much sugar do you use ? 你 用 多少 糖 ? +Did you hear the click ? 你 聽到 了 點擊 聲 嗎 ? +He quarrelled with his brother . 他 和 他 弟弟 吵 了 起来 . +Tom is still sitting in the waiting room . 汤姆 还 在 等候 室里 坐 着 . +I am coming home , Tom . 我 在 回家 , 湯姆 . +Tom says he did not know what to do . 汤姆 说 他 不 知道 要 做 什么 . +I am tired of listening to Tom . 我 厌倦 了听 汤姆 说话 . +I talked with her for an hour . 我 跟 她 談 了 一個 小 時 . +Four is an unlucky number in Japanese . 4 在 日本 是 一个 不幸 的 数字 . +Are you on the committee ? 你 是 委員會 中 的 成員 嗎 ? +How long will you stay here ? 你 会 在 这儿 待 多久 ? +Tom knows you better than he knows anyone else . 湯姆 對 你 的 瞭解 比對 其他人 都 清楚 . +English and German are two related languages . 英語 和德語 是 兩種 相關 的 語言 . +Did you meet Tom ? 你 见 过 汤姆 了 吗 ? +Tom slipped out of the classroom . 湯姆 溜出 了 教室 . +All the desk drawers were empty . 所有 的 办公桌 抽屉 都 是 空 的 . +He told me not to tell lies . 他 告訴 我 不要 說 謊 . +She went from London to Paris . 她 从 伦敦 去 了 巴黎 . +I would like to go with Tom . 我 想 跟 湯姆 走 . +What did you have for lunch ? 你们 午饭 吃 了 什么 ? +The water turned to ice . 水 结成 冰 了 . +I hope I am not boring you . 希望 我 没有 烦 到 你 . +He likes to listen to the radio . 他 喜歡 聽 廣播 . +Your bag is open . 你 的 包开 着 . +It is too bad that you could not come . 你 不能 來 真是太 糟糕 了 . +I can not explain it now . 我 现在 不能 解释 . +He was drowned . 他 被 淹死 了 . +Why should I thank Tom ? 我 為 甚麼 該 感謝 湯姆 ? +It was not as expensive as I expected . 它 沒 有 我 想像 的 那麼 貴 . +I am very proud of my father . 我 非常 以 我 的 父親 為 榮 . +I have no time for reading . 我 没 时间 阅读 . +Her mother always accompanies her . 她 母亲 一直 陪 着 她 . +I feel we are going to get better . 我 感覺 我們 將 要 變得 更好 . +He was sleeping under the tree . 他 在 樹下 睡覺 . +We made friends with them . 我們 與 他們 交朋友 了 . +Today , I was supposed to study at the library but I woke up around 12 o 'clock . 今天 , 我 本 打算 在 图书馆 学习 但 到 12 点 左右 才 醒 . +I took a taxi from the station to the hotel . 我 從 車站 搭 了 一班 到 旅館 的 計程 車 . +My mother plays the piano well . 我 的 母親 鋼琴 彈 得 很 好 . +How long will you be staying ? 你 会 待 多长时间 ? +The Tigers lost the game , which was a surprise to us . 我們 覺得 很 驚訝 老虎 隊 竟然 輸掉 了 比賽 . +The Cold War ended when the Soviet Union collapsed . 冷战 以 苏联 解体 结束 . +We found out that he was her father . 我们 发现 他 是 她 的 父亲 . +This case might not get resolved for a while . 這個 案件 可能 不 會 在 短 時間 內 就 解決 . +Tom is door is open . 湯姆 的 門 開著 . +Keep next Sunday free . 把 下 周日 空 出来 . +Did you enjoy your winter holidays ? 你 寒假 過 得 愉快 嗎 ? +The dress is made of a thin fabric . 這件 衣服 是 由 薄織 物 製 成 的 . +He likes geography and history . 他 喜欢 地理 和 历史 . +The price of the book was $ 5 . 这 本书 的 价格 是 5 美元 . +Do you usually have tea for breakfast ? 你 經常 早餐 喝茶 嗎 ? +He hid himself behind a large rock . 他 藏到 一个 大石头 后面 了 . +No one could solve the puzzle . 没人 解得 了 这个 谜题 . +We live together . 我們 住在一起 . +He looked over my report . 他 仔細 看 了 我 的 報告 . +I am going to attend the meeting . 我 將 出席 這個 會議 . +I am so tired . 我 好累 . +How dare you speak to me like that ! 你 怎么 敢 这样 跟 我 说话 ! +Tom has been under a great deal of strain lately . 汤姆 最近 压力 特别 大 . +I go to school by bus . 我 乘车 去 学校 . +Hurry up , and you will be in time for the bus . 快点 , 你 就 能 准时 搭 上 公交车 了 . +My watch has stopped . 我 的 錶 停 了 . +I forgot . 我 忘 了 . +How much is this camera ? 这部 相机 多少 钱 ? +Bring your children along . 把 你 的 孩子 带来 . +Tom has only a week to decide . 湯姆 只有 一週 時間 做 決定 . +This book has a lot of pictures . 這 本書 有 很多 圖片 . +You are too generous . 你 太 大方 了 . +Did you feed the dog this morning ? 你 今天 早上 喂 过 狗 了 吗 ? +This is quite good . 这 可 真好 . +He put on the red jacket . 他 穿 上 了 紅色 的 外套 . +Open your eyes . 睁开眼睛 . +There was nothing I could do at that time . 当时 我 什么 都 不能 做 . +Whose house is across from yours ? 你家 對面 的 房子 是 誰 的 ? +My parents are divorced . 我 父母 离婚 了 . +Who can tell what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +She passed away peacefully in her sleep . 她 在 睡眠 中 安详 地 去世 了 . +My brother goes to college in Kobe . 我 弟弟 在 神戶 上 大學 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +I do not want to fail my exams . 我 不想 考试 失败 . +I can not tolerate this noise any longer . 我 不能 再 忍受 這個 噪音 了 . +Can anyone believe you ? 誰 會 相信 你 ? +He must have taken the wrong train . 他 一定 是 搭錯 火車 了 . +The batteries in my calculator are dead . 我 計算機 的 電池 沒電 了 . +We managed to swim across the river . 我們 成功 地游 過 了 河 . +Do not forget to take out the garbage . 别忘了 把 垃圾 拿出 去 . +Tom was making French fries . 汤姆 想 做 炸薯条 . +Do not be shy . 不要 害羞 . +Apart from some fruit , he has not eaten anything . 除了 水果 , 他 什么 都 没 吃 . +He went there instead of his father . 他 代替 他 的 父親 去 . +She showed him the photo . 她 把 照片 给 他 看 . +Please do not interrupt me . 请 不要 打断 我 . +There seem to be several reasons for his failure . 他 的 失败 看来 有 几个 原因 . +Just let Tom speak . 就 讓 湯姆 說 吧 . +Tom is hands are shaking . 汤姆 的 手 在 颤动 . +Did you kill Tom ? 是 你 杀 了 汤姆 吗 ? +I do not have the strength to keep trying . 我 没 力气 继续 尝试 了 . +You should apologize for your rudeness . 您 该 为 您 的 粗鲁 道歉 . +She gave up everything for her children . 為了 孩子 們 她 放棄 了 一切 . +You are not old enough to get a driver is license . 你 还 没到 可以 拿 驾驶执照 的 年龄 . +I got some sand in my eye . 我 的 眼睛 進 了 些 沙 . +Back off . 往 后退 点 . +What kind of a person is Tom ? 汤姆 是 个 什么样 的 人 ? +I like short hair . 我 喜欢 短发 . +Where does your grandfather live ? 你 爺 爺 住 在 哪裡 ? +Do you have a camera ? 你 有 照相机 吗 ? +We meet here once a week . 我们 每周 在 这儿 聚 一次 . +I like playing sports . 我 喜歡 運動 . +The policeman arrested the burglar . 警察 逮捕 了 小偷 . +This car is not worth repairing . 這輛 車 不 值得 修理 . +The missing cat has not been found yet . 失踪 的 猫 还 没 被 找到 . +She cleaned her room in a hurry . 她 急忙 地 清掃 了 她 的 房間 . +The song reminds me of my home . 这 首歌 让 我 想家 了 . +He is strong . 他 很 強壯 . +My daughter wants a piano . 我 女儿 想要 架 钢琴 . +I am curious . 我 很 好奇 . +Let me come in . 让 我 进去 . +He was elected captain of the team . 他 被 選為 團隊 的 隊長 . +Let is take a break now . 现在 , 让 我们 休息 一会儿 吧 . +All you have to do is to write your name and address here . 你 只要 在 这里 写下 你 的 姓名 和 地址 就行了 . +You should not wait here . 你 不 應該 在 這裡 等 . +People can not keep quiet . 人們 無法 保持沉默 . +What is in the living room ? 客廳裏有什 麼 ? +It is very easy to sound natural in your own native language , and very easy to sound unnatural in your non @-@ native language . 你 很 容易 把 母语 说 得 通顺 流畅 , 却 很 容易 把 非 母语 说 得 不 自然 . +Bring me today is paper , please . 請 幫 我 把 今天 的 報紙 帶來 . +He went by bicycle . 他 騎 腳 踏 車 去 . +It does not matter what he said . 他 說 的 不 重要 . +She was almost hit by a car . 她 幾乎 被 車 撞 到 . +The truth can be more painful than a lie . 真相 可能 比 谎言 更 令人 痛苦 . +He looks like an honest man . 他 看起来 忠厚老实 . +Tom is the richest guy I know . 汤姆 是 我 所 知道 的 最 有钱 的 家伙 . +Tom said he thought he should study French . 湯姆 說 他 認為 他 該 學法 語 . +Are you sure you do not want me to say anything ? 你 确定 要 我 什么 都 不 说 ? +We played basketball yesterday . 我們 昨天 打 籃球 . +It is no use telling me anything . 對 我 說 什麼 都 是 沒用 的 . +Where are you from ? 你 從 哪裡 來 ? +Tom wants popcorn . 湯姆 要 爆米花 . +Foreign investors withdrew their money from America . 外国 投资者 从 美国 收回 他们 的 钱 . +I wish I could buy a motorcycle . 但 願 我 能 買 一輛 摩托 車 . +An elephant has a long nose . 大象 有 長 鼻子 . +I can recommend this restaurant . 我 推荐 这个 餐厅 . +It was not very cold yesterday . 昨天 不是 很 冷 . +How long are you going to stay in Japan ? 你 會 待 在 日本 多久 ? +This watch is waterproof . 這 手 錶 是 防水 的 . +He is allergic to house dust . 他 對 室內 灰塵 過敏 . +We have got to get you out of here . 我們 必須 把 你 带走 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +My shoulder really aches . 我 的 肩膀 很 痠 . +Do not let the dog in . 别 让 狗 进来 . +We set a trap to catch a fox . 我们 设 了 个 陷阱 来 抓 狐狸 . +He painted all the walls green . 他 把 所有 的 牆壁 漆成 了 綠色 . +He is angry with you . 他 在 生 你 的 氣 . +Your English has improved a lot . 你 的 英語 進步 了 很多 . +What do you do after school ? 你 放学 以后 干什么 ? +I often play tennis on Sunday . 我 常常 在 週日 打 網球 . +She is dieting . 她 在 节食 中 . +Are not you the one who saved me ? 你 不是 救 了 我 的 人 嗎 ? +After a couple of drinks , the guy was feeling no pain . 喝 了 幾 杯酒 後 , 這 個 傢 伙 就 感 覺 不 痛 了 . +The problem is , he has no money . 问题 是 他 没钱 . +Give a thief enough rope and he will hang himself . 多行不义必自毙 . +We never gave up . 我們 從不 放棄 . +I did not want to surprise you . 我 没 想 吓唬 你 . +I am tired of dancing . 我 厭倦 了 跳舞 . +It is almost time to go to bed . 差不多 是 就 寢 的 時間 了 . +You work too hard . 你 工作 太 努力 了 . +What do you do here ? 你 在 這裡 做 甚麼 ? +All you need is ignorance and confidence and the success is sure . 要 想 成功 只 需要 无知 和 自信 . +Please tell me your address . 请 告诉 我 你 的 地址 . +Nobody knows . 谁 也 不 知道 . +Take it easy . 放 輕 鬆 . +Mary helped her mother cook . 瑪麗幫 她 媽媽 做飯 +It was a terrible day . 這 是 糟糕 的 一天 . +I am really looking forward to it . 我 很 期待 哦 . +I just wanted to speak to Tom . 我 只 想 跟 汤姆 说话 . +My father began jogging last month . 我 父親 上 個 月 開始 慢跑 . +I broke my arm . 我 的 手臂 斷 了 . +What is the name of that river ? 這條 河 叫 什麼 名字 ? +This is the house where he lives . 這 是 他 住 的 房子 . +There are more clouds today than yesterday . 今天 的 雲比 昨天 的 多 . +I can not get away from work now . 我 現在 上班 無法 離開 . +Please fill the teapot with boiling water . 請用 開水 把 茶壺 灌滿 . +I enjoyed talking with him . 我 和 他 谈 得 很 愉快 . +I read a book last night . 我 昨晚 讀書 . +This boy is lazy . 这个 男孩子 很 懒 . +I asked Tom to wait here . 我 讓 湯姆 在 這裡 等 . +I am seeing my uncle tomorrow . 我 明天 要 去 看 我 叔叔 . +You will never see that again . 你 以后 再也不会 看到 它 了 . +Anyway , you will never know . 不管 怎樣 , 你 永遠 不 會 知道 . +He drove the car , listening to music on the radio . 他 一面 開車 一面 聽 收音 機 的 音樂 . +She plays tennis after school . 她 放学 后 打网球 . +She gets up at seven . 她 早上 7 点 起床 . +It is 3 : 30 . 3 点 半 了 . +She promised not to go out alone . 她 答應 不單 獨 外出 . +That was a beautiful moment . 那 是 個 美好 的 瞬間 . +To distinguish right from wrong is difficult . 要 分清是非 是 困難 的 . +Please tell me when to go . 請 告訴 我什麼 時候 該 走 . +I am afraid of dying . 我 怕死 . +Christmas is soon . 聖誕節 快 到 了 . +He teaches English to his friend . 他 對 他 的 朋友 教 英語 . +May I use your toilet ? 我 能 用 一下 你们 的 厕所 吗 ? +He traveled all over the world . 他 周遊 世界各地 . +That is the office where he works . 那 是 他 工作 的 辦 公室 . +Tom drinks juice . Tom 喝 果汁 . +Does he go to school on foot or by bicycle ? 他 走路 去 学校 还是 骑车去 学校 ? +You do not seem to be as afraid as Tom seems to be . 你 似乎 并 不 像 汤姆 看起来 那样 害怕 +We have to pull the weeds . 我們 必須 拔除 雜草 . +Do not fear the unexpected , but be prepared for it . 不要 害怕 意外 , 但要 有 準備 . +Science is fun . 科學 好玩 . +Write everything down . 把 所有 東西 寫 下來 . +Tom knew how to do that . 汤姆 知道 怎么 做 那事 . +There is a television in the room . 房里 有个 电视机 . +May I see your boarding pass , please ? 請 讓 我 看看 您 的 登機 證好 嗎 ? +My grandfather is very healthy . 我 的 祖父 非常 健康 . +He is afraid of getting lung cancer . 他 怕 得到 肺癌 . +I can read German , but I can not speak it . 我 能看懂 德语 , 但 不会 说 . +She said that he was handsome . 她 說 他 很 英俊 . +Almost no one believes her . 几乎 没 人 相信 她 . +He is unsociable . 他 太 不 合群 . +We had a great relationship . 我們 的 關 係 非常 好 . +Do you like it ? 你 喜歡 嗎 ? +Do it somewhere else . 到 别处 去 做 . +Smoking is not permitted here . 这里 不 允许 抽烟 . +Do you know how to use a computer ? 您 会 使用 计算机 吗 ? +This is a book . 这 是 一 本书 . +I can not thank you enough . 我 無法 表達 我 對 你 的 感謝 . +I cannot follow your logic . 我 跟不上 你 的 逻辑 . +I am never at home on Sundays . 我 周日 从不 在家 . +Tom had a heat stroke . 汤姆 中暑 了 . +I ordered a book from London . 我 從 倫敦 訂購 了 一本 書 . +I will come earlier next time . 我 下次 會 早點 來 . +Please help yourself to the cake . 你们 自己 吃 蛋糕 . +When I was a child , I spent most of my time indoors reading . 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 阅读 . +My parents have just arrived at the station . 我 的 父母 剛剛 到 達 車站 . +A rabbit has long ears and a short tail . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +I do not know where she lives . 我 不 知道 她 住 在 哪裡 . +Some say that China was like a Russian colony . 有人 說 中國 像是 俄國 的 殖民地 . +I am clearly missing something here . 我 确实 在 这里 丢 了 东西 . +He prefers football to baseball . 他 喜歡 足球 勝 過 棒球 . +I have got a boat . 我 有 一艘 小船 . +That was my mistake . 那 是 我 的 錯 . +Tom was able to go to college thanks to a scholarship . 因為 一份 獎學金 , Tom 得 以上 大學 . +They are watching a movie . 他們 在 看 一部 電影 . +Tom told me Mary is leaving tomorrow . 汤姆 和 我 说 明天 玛丽 会 离开 . +Someone has brought us some grapes . 有人 帶 了 一些 葡萄 給 我們 . +Take it easy . 別 緊張 . +What else have you figured out ? 你 还 发现 什么 了 ? +What is the purpose of your trip ? 你 旅行 的 目的 是 什麼 ? +I can not concentrate on my work because of the noise . 由于 噪音 , 我 无法 集中精力 工作 了 . +Could you please pass me the pepper ? 請 你 把 胡椒 遞 給 我 好 嗎 ? +What is the matter with your car ? 你 的 車子 怎麼 了 ? +What is it ? 它 是 什么 ? +Are you ready ? 你们 准备 好了吗 ? +Tom sold Mary his car . 汤姆 把 他 的 汽车 卖给 了 玛丽 . +We have got plenty of time . 我們 有 充足 的 時間 . +Our baby can not talk yet . 我家 宝宝 还 不会 说话 . +He really wants to meet you . 他 真的 想見 你 . +We are all longing for peace in the world . 谁 都 希望 世界 和平 . +Tom was on the list . 湯姆 在 名單 上 . +Many English words are derived from Latin . 許多 英文 單字 源自 於 拉丁文 . +He is fond of adventure . 他 喜欢 冒险 . +My father loves pizza . 我 父親 愛 吃 比 薩 . +What is going on with Tom ? 汤姆 出 什么 事 了 ? +His pronunciation is far from perfect . 他 的 发音 远非 完美 . +My house is here . 我家 在 這裡 . +The company is competitive edge will be eroded if system engineers continue to leave . 如果 系统 工程师 继续 离开 , 公司 的 竞争 优势 将 会 被 削弱 . +How dare you say that to me ! 你 怎麼 能 這麼 對 我 說 話 ! +What did Tom expect Mary to do ? 汤姆 打算 让 玛丽 做 什么 ? +Please take off your hat . 请 您 摘下 您 的 帽子 . +Let me know if you need any help . 你 需要 帮助 就让 我 知道 . +Well , the night is quite long , is not it ? 夜晚 很 长 , 不是 吗 ? +She will be getting married next year . 她 明年 將 要 結婚 . +I think Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +I was right behind you . 我 就 在 你 后面 . +The bus should be coming soon . 公車 應該 很快 就 會 來 了 . +That is quite obvious . 那 很 明顯 . +I am dead tired . 我 累死 了 . +This is a well @-@ written article . 這 是 篇 寫 得 很好 的 文章 . +Your cake is delicious . 您 的 蛋糕 很 美味 . +What time is it by your watch ? 你 表上 是 几点 ? +My watch has been stolen . 我 的 表 被 偷 了 . +That is his house . 那 是 他家 . +Do you know anyone who is not on Facebook ? 你 有 認識 沒 有用 Facebook 的 人 嗎 ? +Tom does not want anything to drink . 汤姆 什么 都 不想 喝 . +I am single . 我 單身 . +Now shake hands and make up . 现在 握 个 手 和解 吧 . +Iron is a useful metal . 铁 是 个 有用 的 金属 . +This song makes me homesick . 这 首歌 让 我 想家 了 . +I was the happiest man on earth . 我 曾 是 世界 上 最 幸福 的 男人 . +He really loves beer and gets drunk every day . 他 喜歡 喝爱 啤酒 , 而且 每天 都 喝醉 . +What is the meaning of this phrase ? 這個 片語 是 什麼 意思 ? +The train arrived on time . 火车 准时 到 了 . +Ouch ! My finger got caught in the door . 好 痛 ! 被 门 夹到 手指 了 ! +What do you base your theory on ? 你 的 理論 是 以 什麼 為 基礎 ? +Someone ate all my cupcakes . 某人 把 我 的 杯形 蛋糕 吃 完 了 . +They kissed each other . 他们 亲吻 了 . +Tom has to do that again . 湯姆 必須 再 做 一遍 . +How much is four times six ? 6 的 4 倍 是 多少 ? +I could smell the alcohol on his breath . 我 能 闻到 他 呼吸 中 的 酒精 味 . +Breakfast is from seven to nine . 早餐时间 在 七点 到 九点 . +A full moon can be seen tonight . 今晚 能 看到 满月 . +I wish he would write more often . 我 希望 他 来信 更 勤 些 . +I have got a few friends . 我 有 一些 朋友 . +Why did you paint the bench red ? 为什么 你 把 长凳 漆成 红色 了 ? +He grew up in Germany . 他 在 德國 長大 . +They let me go . 他們 讓 我 走 . +I am seeing you in a new light . 我 对 你 刮目相看 了 . +I did not feel bad . 我 没 觉得 不好 . +He began to look for a job . 他 开始 找 工作 了 . +You need not do it at once . 你 没 必要 马上 去 做 . +Tom seems tough . 汤姆 看来 难缠 . +I do not have any friends to help me . 我 没 朋友 帮 我 . +It is difficult to play the piano . 彈 鋼琴 很困 難 . +Tom poured cold water over himself to wake himself up . 汤姆 给 自己 浇 凉水 以 清醒过来 . +I wonder what this phrase means . 我 想 知道 这 句 话 的 意思 . +I think that she knows the truth . 我 覺得 她 知道 真相 . +I love watching soccer games . 我 爱看 足球 . +It is an artificial flower . 這 是 朵 人造花 . +Nobody was injured . 沒 有人 受傷 . +You should have known better than to take an examination without preparing for it . 你 應該 知道 要為 考 試作 準備 . +We were able to catch the last train . 我们 能 赶上 最后 一班 火车 . +Make sure to turn off all the lights before going out . 出去 之前 确认 一下 所有 的 灯 都 关了 . +Grab Tom . 抓住 汤姆 . +Are you sure Tom will come back ? 你 確定 湯姆會 回來 嗎 ? +Tom also talked . 湯姆 也 說話 了 . +I have no regrets about what I did . 我 對 我 做 過 的 事 不 後 悔 . +I do not need you or anybody else . 我 不 需要 你 或 别的 人 . +It does not matter what you do . 你 做 什么 都 无所谓 . +He sent me some American magazines . 他 送 給 我 一些 美國 雜 誌 . +The house stood out because of its unusual shape . 那 房子 因为 其 少有 的 形状 被 突显 出来 . +This makes me so angry . 這 讓 我 非常 憤怒 . +I watch my weight very carefully . 我 非常 注意 我 的 體重 . +My passport has expired . 我 的 護照 過期 了 . +She is practicing the violin now . 她 現在 正在 練習 拉 小提琴 . +That fox must have killed the hen . 那 隻 狐狸 殺 了一 隻 母 雞 . +The boy is eating bread . 这个 男孩子 在 吃 面包 . +I was always good at English . 我 一直 都 擅長 英文 . +I am a Hyogo University student . 我 是 個 兵庫 大學 的 學生 . +I have three million dollars . 我 有 三百 萬美圓 . +I can not put up with that noise any longer . 我 无法 再 忍受 那 噪音 了 . +When water freezes it becomes ice . 水 結凍 後 , 變成 冰 . +I think Tom is optimistic . 我 認為 湯姆樂 觀 . +I tried to change the subject . 我 試圖 改變 話題 . +I gave you my word . 我 和 你 保证 . +He played the part of Hamlet . 他 扮演 哈姆雷特 的 角色 . +I will ask him about it tomorrow . 我 明天 會 問 他 . +I only do what I am paid to do . 我 祇 做 別 人 付 錢 讓 我 做 的 事 . +I will tell you the truth . 我 會 告訴 你 真相 . +When will your new store open ? 你 的 新 商店 什么 时候 开张 ? +Tom was admiring my new car at the time the truck crashed into it . 在 湯姆欣 賞 我 的 新車 的 同時 , 一輛 卡車 撞 了 過來 . +The building has 20 floors . 大楼 有 20 层 . +No one likes war . 没有 人 喜欢 战争 . +He seems to have told a lie . 他 似乎 已經 說 了 謊 . +Who else knows about it ? 還 有 誰 知道 它 ? +There is bamboo growing in the garden . 花園 裡 有 竹子 在 生長 . +Break it up ! 停手 ! +She hopes to become a designer . 她 希望 成為 一名 設計 師 . +Did you accomplish your goals ? 你 達成 你 的 目標 了 嗎 ? +Whose is this car ? 這輛 汽車 是 誰 的 ? +Is there a doctor on board ? 船上 有 醫生 嗎 ? +He made the most of his opportunities . 他 盡力 地 利用 了 他 的 機會 . +Why does Tom call me Mary ? 为什么 汤姆 叫 我 玛丽 ? +I like snow a lot . 我 很 喜歡 雪 . +I go to the office by bicycle except on rainy days . 除了 雨天 , 我 都 是 骑车去 上班 的 . +You have got to wake up . 你 必須 醒醒 . +He is responsible for the accident . 他 為 這個 事故 負責 . +I have to clean the bathroom . 我 要 清理 廁所 了 . +I should obey . 我 應 該 服 從 . +The neighborhood was silent . 社區 是 安靜 的 . +Strange to say , he did not know the news . 说来 奇怪 , 他 不 知道 这个 消息 . +She has a flower in her hand . 她 手上 有 一朵花 . +How to overcome the high value of the yen is a big problem . 如何 克服 日元 升高 是 个 大 问题 . +Tom is not afraid of anything . 湯姆 對 甚麼 都 不怕 . +You will be punished if you break the law . 如果 你 違反 了 法律 , 你 將 受到 懲罰 . +Tom enjoys gardening . 汤姆 享受 园艺 . +He has not come yet . He must have missed the bus . 他 还 没来 . 他 肯定 错过 公交车 了 . +This car was so cheap that he could afford it . 這車 便宜 得 讓 他 能 買 得 起 . +I do not like school . 我 不 喜欢 学校 . +I have to help my mother . 我 必須 幫忙 我 母親 . +You might meet him . 你 可能 會 見 到 他 . +I was brought up in the country . 我 在 鄉下 被 撫養 長大 . +I was wondering if you were going to show up today . 我 在 想 你 今天 会 不会 来 . +What does it contain ? 它 包含 了 什么 ? +Do you know anything about Tom is parents ? 你 知道 任何 关于 汤姆 父母 的 事 吗 ? +It is on the tip of my tongue . 它 在 我 的 舌尖 上 . +I can not find my glasses . 我 的 眼鏡 不 見 了 . +Today , the weather is very nice . 今天天气 很 好 . +Language is the means by which people communicate with others . 语言 是 人们 与 他人 交流 的 手段 . +Who did you hang out with last weekend ? 你 上 週末 跟 誰 閒逛 了 ? +Who else in Boston do you know ? 你 还 認識 波士 頓 的 誰 ? +My brother is now in Australia . 我 哥哥 現在 在 澳洲 . +That is what Tom requested . 那 就是 汤姆 想要 的 . +I could not make him understand it . 我 無法 讓 他 明白 . +Call us . 联系 我们 . +Could I borrow your gray suit ? 我 可以 借 你 的 灰色 西装 吗 ? +What about having fish for dinner ? 晚餐 吃 魚 怎麼樣 ? +Teachers must understand children . 教師 必須 了解 孩子 . +Professional writers do not have a regular income . 專職 作家 沒有 固定 的 收入 . +Our team won the game . 我們 這隊 贏 得 了 比賽 . +Someone locked me in the room . 有人 把 我 鎖 在 這 房間 裡 . +You are wanted on the phone . 有 你 的 電話 . +He likes sleeping . 他 喜欢 睡觉 . +Can you put up with the way he behaves ? 你 能 容忍 他 做事 的 方式 么 ? +Soldiers must carry out their orders . 軍人 必須 履行 他們 的 命令 . +There are many earthquakes in Japan . 日本 有 许多 地震 . +I have no clue . 我 一无所知 . +Which book are you reading ? 你 在读 哪 本书 ? +Did you rent an apartment ? 你 租房子 了 吗 ? +Tom was too scared to say anything . 汤姆 吓 得 说不出 话 . +Maybe you 'd better come with us . 也許 你 最好 和 我們 一起 來 . +Animals cannot exist without air and water . 動物 離不開 空氣 和 水 . +You are too old to be doing this kind of thing . 你老 得 做不了 这种 事 了 . +Modern technology has made our lives more comfortable . 现代 科学技术 让 我们 的 生活 更加 舒适 . +That nurse is very kind and polite . 那个 护士 人 很 好 , 又 有 礼貌 . +He carried six boxes at a time . 他 一次 搬 6 个 箱子 . +What country are you from ? 你 是从 哪个 国家 来 的 ? +I got the information from him directly . 我 直接 從 他 那裡 得到 訊息 . +Is it going to snow tonight ? 今晚 会 下雪 吗 ? +I work for a bank . 我 為 一家 銀行 工作 . +You and he are both very kind . 你 和 他 都 很 友好 . +Do you want me to make coffee ? 你 要 我 煮 咖啡 嗎 ? +The school needed a new teacher . 學校 需要 一個 新 的 老師 . +The lake is deepest at this point . 这 是 湖 的 最深处 . +" Can somebody help me ? " " I will . " " 誰 可以 來 幫 我 一下 ? " " 我 幫 你 . " +I would like to become a poet . 我 想要 成為 詩人 . +How about going out for a walk ? 出去 散步 怎麼樣 ? +Tom asked Mary to help . 湯姆 向 瑪麗 求助 . +That means a lot to me . 那 对 我 来说 意义 重大 . +I can teach you how to drive . 我会 教 你 怎么 开车 . +Where is the boss ? 老 闆 在 哪 裡 ? +I have been looking for you . 我 一直 在 找 你 . +He decided to marry her . 他 決定 娶 她 . +Have a good flight . 飞行 愉快 ! +They are young , but they have experience . 他們 還 年輕 , 但 他們 有 經驗 . +Tom asked a few questions . 湯姆 問 了 幾個 問題 . +I got off at the wrong station . 我 在 錯誤 的 車站 下車 . +He comes here almost every day . 他 几乎 每天 都 来 . +I am bad at sports . 我 不 擅長 運動 . +I heard that Tom attempted suicide . 我 聽 說 湯姆 試圖 自殺 . +I bought them each a present . 我 買給 了 他們 每人 一份 禮物 . +I was supposed to go to school . 我 该 去 上学 . +Other people is expectations affect how we behave . 其他人 的 期望 會 影響 我們 的 行為 . +Tom seems to speak French better than before . 汤姆 讲 法语 看来 比 以前 好 . +You had better not start until they arrive . 你 最好 不要 在 他們 來 之前 開始 . +I lost my way in the woods . 我 在 树林 里 迷路 了 . +I admitted that I did not know how to do that . 我 承認 我 不 知道 怎麼 做 . +Is that what it is called ? 那 就是 它 的 叫法 嗎 ? +Be calm . 冷静 点 . +If I were you , I 'd do the same . 如果 我 是 你 , 我 也 会 这么 做 . +I lost my money . 我 丢 了 我 的 钱 . +He painted his bicycle red . 他 把 他 的 自行车 刷成 红色 . +It will be spring soon . 春天 快 來 了 . +Do you want to know why I lied to Tom ? 你 想 知道 为什么 我 对 Tom 说话 吗 ? +You should do your homework now . 你 應該 現在 做功 課 . +The boy got his hands dirty . 這個 男孩 把 他 的 手 弄 髒 了 . +This is a beautiful flower . 这 是 一朵 美丽 的 花 . +Did you already eat at home ? 你 在家 吃 过 了 吗 ? +I did not get the point of his speech . 我 没有 抓到 他 演讲 的 重点 . +Let me know the result as soon as you can . 尽早 让 我 知道 结果 . +Tom died . 汤姆 去世 了 . +He is a meth addict . 他 是 个 吸毒 男 . +After reading his books I feel I can construct a house . 讀完 他 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I want to go with a friend to Hokkaido next month . 我 想 下个月 和 一个 朋友 去 北海道 . +I am almost 180 centimeters tall . 我 差不多 180 公分 高 . +My father retired at the age of 65 . 我 的 父亲 65 岁 的 时候 退休 了 . +I saw a group of foreigners on my way to school this morning . 今天 早上 在 去 学校 的 路上 , 我 看到 了 一群 外国人 . +There is a school near my house . 我家 附近 有 一所 學校 . +Unfortunately , she is absent . 不幸 的 是 , 她 不 在 . +She whispered something to him . 她 對 他 小聲 說 了 些 什麼 . +Tulips will bloom soon . 鬱金香 很快 將 盛開 . +They fine you in Singapore if you throw trash in the streets . 在 新加坡 的 街道 上 扔 垃圾 会 被 罚款 . +She was pleased with the new dress . 那条 新 裙子 让 她 很 满意 . +He is fluent in French . 他 说 法语 说 得 很 流利 . +Are you staying at this hotel ? 你 住 在 這家 旅館 嗎 ? +The doctor may have said so . 医生 可能 说 过 . +I can not find my keys anywhere . 我 到处 都 找 不到 我 的 钥匙 . +This room is too small . 這個 房間 太小 了 . +He likes taking care of the garden . 他 喜歡 照顧 花園 . +What exactly happened to you ? 你 到底 怎麼 回事 啊 ? +I think that they will be late . 我 想 他們 會 遲 到 . +Have you eaten lunch ? 你 吃 過午 飯 了 嗎 ? +Who was the letter written to ? 信是 写给 谁 的 ? +Tom needs encouragement . 湯姆 需要 鼓勵 . +I picked up a pretty shell at the seaside . 我 在 海边 捡了个 漂亮 贝壳 . +Is somebody there ? 那边 有人 吗 ? +It is necessary for you to go there . 你 有 必要 到 那里 去 . +It will take a long time . 我 要 花 很 长时间 . +He will be back tomorrow . 明天 他 會 回來 . +You should use a deodorant . 你 应该 用 一下 除臭剂 . +He plays very well . 他 玩 得 很 好 . +This time it is different . 这 一次 不 一样 . +He leaned on his elbows . 他 把 身子 靠 在 胳膊 上 . +The picture is hanging on the wall . 那幅 图 挂 在 墙上 . +She does not want to talk about it . 她 不想 提 了 . +I can usually tell when someone is hiding something from me . 我 常常 能 分辨 出来 一个 人 是不是 瞒 着 我 什么 事情 . +I will call Tom back . 我会 叫 汤姆 回来 . +This is the tallest tower in Japan . 這 是 日本 最高 的 塔 . +I have not started anything yet . 我 还 没 开始 做 任何 事 . +I applied for membership in the association . 我 申請 成為 協會 會員 . +I wanted to see Tom is room . 我 就 想 看看 汤姆 的 房间 . +She looked out of the window . 她 看 了 窗外 . +I am never late for school . 我 從來 沒有 上學 遲到 . +Your opinion is similar to mine . 你 的 意見 跟 我 的 相似 . +She does not have a driver is license . 她 没有 驾照 . +We headed for the mountain cottage . 我们 向 山间 小屋 走去 . +I can wait for you . 我 可以 等 你 . +I understand that you feel uneasy , but do not worry . 我 知道 你 不自在 , 但 别急 . +Can you tell those twins apart ? 你 可以 分出 那 對 雙 胞胎 中 誰 是 誰 嗎 ? +Somebody came . 有人 来 了 . +Do not be so pessimistic . 不要 感觉 那么 悲观 . +You ought to thank him . 你 应该 感谢 他 . +Are any seats still available ? 還 剩 座位 嗎 ? +I believe Tom will do that . 我 相信 汤姆 会 去 做 . +Ten years is a long time . 十年 是 很 長 的 時間 . +She gave away all her dolls . 她 把 她 所有 的 娃娃 送給 了 別人 . +I am in favor of your proposal . 我 贊成 你 的 建議 . +I used to go out with friends every weekend . 我 曾经 每 周末 都 和 朋友 外出 . +Here is the bill . 这 是 账单 . +I will prove it to you . 我会 给 你 证明 的 . +A capital letter is used at the beginning of a sentence . 一個 句子 以 一個 大 寫 字母 開始 . +We have two daughters . 我们 有 两个 女儿 . +I do not know what day he will come . 我 不 知道 他 星期 幾會 來 . +You will understand later . 你 晚一 會 就 能 明白 . +Mary is pregnant with twins . 玛丽 怀 了 双胞胎 . +The church is at the foot of a mountain . 教堂 位于 山脚 . +I am very glad to see you again . 我 很 高興 再次 見 到 你 . +She wrapped herself in a blanket . 她 用 一條 毯子 把 自己 裹起 來 . +I have never been so proud of you . 我 从没 这么 以 你 为 豪 . +How about going for a drive ? 去 開車 兜風 怎樣 ? +Do you know how the accident happened ? 你 知道 這個 意外 是 如何 發生 的 嗎 ? +He got to school just in time . 他 刚好 准时 到校 . +We have issues we have to deal with . 我們 有 我們 必須 解決 的 問題 . +There is a good chance that gasoline prices will go up . 油价 上涨 的 可能性 很 高 . +What do you need the money for ? 你 要 这 钱 干嘛 ? +That furniture is my mother is . 那個 家具 是 我 母親 的 . +I must decline . 我 必须 拒绝 . +I will make you a new suit . 我 會 給 你 做一套 新 衣服 . +They made him do the work again . 他們 要 他 再 做 一次 這個 工作 . +I know you do not want to talk to me . 我 知道 你 不想 跟 我 说话 . +I stayed home all day long reading novels . 我 全天 在家 讀 小 說 . +He never said that . 他 從來 沒 說 過 那個 . +Turn on the radio , please . 請 打開 收音 機 . +The room smelled of tobacco . 房里 闻 起来 有 股 烟味 . +They refused . 他們 拒絕 了 . +Tom is waiting for Mary to return . 汤姆 正在 等 着 玛丽 回来 . +If he were a little younger , he would be eligible for the post . 如果 他 年轻 一点 , 他 将 很 适合 这个 职位 . +My aunt made a new skirt for me . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +Do you have a lot of money with you ? 你 身上 有 很多 钱 吗 ? +The man finally confessed . 那个 男人 最终 供认 了 他 的 罪行 . +Tom found out where Mary lives . 湯姆 找到 了 瑪麗 的 住處 . +I want you to grow up . 我 希望 你 能 长大 . +I was unable to complete the task . 我 無法 完成 這個 任務 . +I will lend you the book as soon as I am done reading it . 我 一把 这 本书 读完 了 就 借给 你 . +She walked around looking for him . 她 走來 走去 地 找 他 . +This machine is out of order . 这个 机器 出 故障 了 . +Give me an apple . 給 我 一個 蘋果 . +Russia is facing great financial difficulties . 俄罗斯 面临 着 严重 的 财政困难 . +English is taught in most countries . 大部份 的 國家 都 教 英語 . +Tom returned to his hometown to visit his parents during the summer break . 汤姆 在 夏休 回乡 看望 父母 . +Tom whispered something to Mary and she smiled . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 笑 了 . +Tom knows we are not happy . 湯姆 知道 我們 不 高興 . +What is the difference between this and that ? “ 这 ” 和 “ 那 ” 有 什么 区别 ? +Does anybody have a pencil ? 有 谁 有 铅笔 吗 ? +I can not sleep well . 我 睡 不好 . +How many people are in this room ? 在 這個 房間 裡 有 多少 人 ? +Will you hold this seat for me ? 您 能 給 我 留 這個 座 嗎 ? +When people meet , first impressions determine more than 50 percent of whatever happens next . 在 人际交往 中 , 第一印象 决定 着 将要 发生 的 事情 内容 的 百分之五十 以上 . +Nowadays many people travel by car . 現在 很多 人 開車 去 旅行 . +Are these your daughters ? 這些 是 你 的 女兒 嗎 ? +The sky today is the bluest that I have ever seen it . 今天 的 天空 是 我 看 過 最藍 的 天空 . +Life today is fast @-@ moving and complex . 今日 的 生活 是 迅息 萬變和 複 雜 的 . +I have finished reading that book . 我 讀 完 了 那 本書 . +The boat passed under the bridge . 船 從 橋下 通過 . +He is the same age as me . 他 和 我 同岁 . +What do you want to be ? 您 想 成为 什么 ? +Let is take a break now . 现在 休息 一下 . +Everybody wants to sit beside her . 大家 都 想 坐在 她 旁边 . +I listened to some records last night . 我 昨晚 聽 了 一些 唱片 . +We elected her captain of our team . 我们 选 她 为 我们 队 的 队长 . +Why do not you go see Tom ? 你 為 甚麼 不 去 看 湯姆 ? +May I ask you a question ? 我 可以 问 你个 问题 吗 ? +He likes fishing . 他 喜歡 釣魚 . +Here is where they usually have dinner . 这儿 是 他们 通常 吃晚饭 的 地方 . +She put on her hat to go out . 她 戴 上 了 帽子 准备 出去 . +After dinner , I did my homework . 吃 完 晚 飯 後 , 我 做作 業 . +You are still too young to get a driver is license . 你 還 太 年輕 無法 取得 駕駛 執照 . +How many boys are in this class ? 这个 班 有 多少 男生 ? +Would you like to eat with us ? 你 想 和 我們 一起 吃 嗎 ? +Tom took the hammer away from Mary . 汤姆 从 玛丽 那里 拿走 了 锤子 . +Can you forgive me ? 可以 原谅 我 吗 ? +Why are you awake ? 你 为什么 醒 着 ? +Everyone hoped that she would win . 每個 人 都 希望 她 會 獲勝 . +Do not leave the lights on when you leave the room . 离开 房间 时 , 不要 留灯 . +Elephants are the largest land animals alive today . 大象 是 如今 现存 的 陆生动物 里 最大 的 . +Old people often talk to themselves . 老人 時 常自言 自語 . +Their wedding will be tomorrow . 他们 的 婚礼 将 在 明天 举行 . +I have never seen Tom laugh . 我 從 沒見 湯姆笑 . +I did not want to humiliate you . 我 不是 想要 羞辱 你 . +He does not have any friends . 他 没有 任何 朋友 . +They worked jointly on this project . 他们 一起 为 这个 项目 工作 过 . +I think my right arm is broken . 我 想 我 的 右 手臂 斷 了 . +I know that you like sports . 我 知道 你 喜欢 体育运动 . +Tom does not even have a driver is license . 湯姆 甚至 沒有 駕駛 證 . +He made remarkable progress in English . 他 的 英語 有 了 顯著 的 進步 . +It is hard to believe Tom was not aware that Mary was in love with him . 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +Tell me how you solved the problem . 告訴 我 你 如何 解決 了 這個 問題 . +I am under so much pressure , I just want to cry . 我 壓力 好大 , 我 真 想 哭 . +There is a hole in your sock . 你 的 袜子 上 有 个 洞 . +What time does the train arrive at Yokohama ? 火车 什么 时候 到 横滨 ? +She does not like sushi . 她 不 喜欢 寿司 . +He lived abroad for many years . 他 居住 在 國外 多年 . +Is this really real ? 这 真是 真的 吗 ? +Shakespeare is too hard to read . 莎士比亞 的 作品 太 難讀 了 . +Really ? 你 确定 ? +Do not distract me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +I have got no friends . 我 没有 朋友 . +I have many abilities . 我 有 很多 才能 . +All Americans have to pay their taxes . 所有 美国 人 都 需要 缴税 . +Tom is hammered . 汤姆 醉 了 . +Welcome to your new home . 歡迎 來到 你 的 新家 . +I am Finnish , but I speak also Swedish . 我 是 芬兰人 , 但 我 也 说 瑞典语 . +I will wait here till he comes back . 我会 等 在 这儿 直到 他 回来 . +We often talk about the weather . 我们 经常 讨论 天气 . +This piano is really cheap . 這 鋼琴 真 便宜 . +My dad keeps a journal every day . 我 爸爸 每天 都 记日记 . +By the way , I have got to tell you something . 我 得 順便 給 你 講件 事 . +Some people do not know that . 有些 人 不 知道 那件事 . +It is raining . 下雨 了 . +Tom lit his cigar . 湯姆 點 了 雪茄 . +I know all my neighbors . 我 认识 我 所有 的 邻居 . +That woman is much older than I am . 那 女人 比 我 老 很多 . +This car needs washing . 这辆 车 需要 清洗 . +Hope is not a strategy . 希望 不是 一种 策略 . +This is how I made it . 这 就是 我 的 办法 . +I am shorter than you . 我 比 你 矮 . +You have no right to interfere in other people is affairs . 你 沒有 干涉 他 人事 務 的 權力 . +I have no books to read . 我 没书 可读 . +You have got a big hole in your sock . 你 的 袜子 上 有个 大洞 . +Does she like oranges ? 她 喜歡 柳橙 嗎 ? +You are in my way . 你 擋住 了 我 的 路 . +I spent no more than three dollars . 我 只 花 了 三 美元 . +You should apologize to Dad for not coming home in time for supper . 你 應該 為 你 沒有 及時 回家 吃 晚餐 向 你 父親 道歉 . +School will start next Monday . 下周一 开学 . +He is a very thoughtful person . 他 是 個 很 體貼 的 人 . +Let is go to the movies . 我们 去 看 电影吧 ! +I would like to meet your older sister . 我 想 見 你 姐姐 . +She visits the dentist on a regular basis , so she seldom gets toothaches . 她 定期 去 看 牙医 , 所以 她 很少 牙痛 . +What is missing ? 少 了 什么 ? +Tom has lost his keys . 湯姆 弄 丟了 他 的 鑰匙 . +Do not drop this cup . 不要 掉 了 这个 杯子 . +We should all sleep easier now . 我們 現在 都 該 早點 睡 . +Tom did not get much sleep . 汤姆 没 怎么 睡 . +Are you going to come tomorrow ? 你 明天 要 來 嗎 ? +How did Tom get out of jail ? 汤姆 是 如何 出狱 的 ? +I paid five dollars for the book . 我 花 了 五元 買 這 本書 . +He has lived here for one week . 他 已經 住 在 這裡 一個 星期 了 . +It is believed that whales have their own language . 人们 相信 鲸 有 他们 自己 的 语言 . +He climbed the stairs . 他 爬 上 了 樓梯 . +I wanted to stop Tom . 我 想 阻止 湯姆 . +Of course she can speak English . 她 當然 會 講 英語 . +We have been warned . 我们 被 警告 过 了 . +Are you working ? 你 在 上班 嗎 ? +My mother does not like watching TV . 我 母親 不 喜歡 看電視 . +I lived abroad for ten years . 我 住 在 國外 十年 了 . +My uncle lived abroad for many years . 我 叔叔 住 在 國外 很多年 了 . +What prevented you from coming earlier ? 什麼 阻止 你 早點 來 了 ? +Tom is very courageous , is not he ? 汤姆 非常 勇敢 , 不是 么 ? +No one ran ahead of him . 没有 人 跑 在 他 前面 . +He did it for money . 他 做 这个 是 为了 钱 . +Continue working . 繼續 工作 ! +You do not have to tell Tom if you do not want to . 如果 你 不想 , 那 你 便 没有 这个 必要 去 告诉 汤姆 . +Go get your passport . 去 拿 你 的 护照 . +I always think of him when I am alone . 我 孤单 的 时候 总会 想起 他 . +Do not bug me . 别 来 烦 我 . +All of you are familiar with the truth of the story . 你們 所有 的 人 都 熟悉 這個 故事 的 真相 . +Do you think Tom is retired already ? 你 認為 湯姆 退休 了 嗎 ? +Tom , have you eaten anything ? 汤姆 , 你 吃 过 东西 了 吗 ? +He intruded on her privacy . 他 侵犯 了 她 的 隐私 . +That is your responsibility . 这 是 您 的 义务 . +What disease do I have ? 我 得 了 什麼 病 ? +I can not get my tractor started . 我 發動 不了 我 的 拖拉 機 . +Everybody had a hard time . 每个 人 都 遇到 过 困难 . +Tom will go . 湯姆 要 走 . +I will do it tomorrow . 我 明天 再 做 . +Let us know when you will arrive . 讓 我們 知道 你 什麼 時候 會 到 . +I do not know if I still have it . 我 不 知道 我 还有 没有 . +Do you know how to use this ? 你 知道 怎么 使用 吗 ? +We should have been more careful . 我們 應 該 更 小心 的 . +That child can count to twenty . 这 孩子 能数 到 20. +I can not say for sure . 我 不 太 確定 . +Tom often fails to keep his word . 汤姆 经常 不 守约 . +I wish I had more money . 我 希望 我 有 更 多 錢 . +Walk two blocks , and turn left . 走 過 兩個 街區 , 然 後 左 轉 . +Please sing . 请 唱歌 . +They waited in line for the bus . 他們 排隊 等 公車 . +Umbrellas sell well . 雨伞 卖 得 好 . +Tom is testing me . 汤姆 在 试探 我 . +He is a teacher at our school . 他 是 我們 學校 的 老師 . +This paragraph is vague . 這 一個 段落 是 模糊不清 的 . +You can count on her . 你 可以 相信 她 . +He knows many people . 他 认识 很多 人 . +The police have been searching for the stolen goods for almost a month . 警察 大概 从 一个月 前 就 开始 找 被 偷 物品 了 . +The ship was flying the American flag . 這 艘 船 掛著 美國國旗 . +Mathematics is an easy subject for me . 數學 對 我 來說 是 一個 容易 的 科目 . +I will be gone for a while . 我 要 暂时 离开 . +I prefer red wine to white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +I am very worried about my weight . 我 很 擔心 我 的 體重 . +Children should obey their parents . 孩子 應該 服 從 他們 的 父母 . +I can not hear very well . 我 聽 不 太 清楚 . +He wrote one letter . 他 写 了 一封信 . +The end justifies the means . 為了 正當 目的 可以 不擇 手段 . +Can you show me on the map ? 可以 在 地图 上 展示 给 我 看 吗 ? +He is afraid of dogs . 他 怕 狗 . +You have no fever . 你 没 发烧 . +They guaranteed regular employment to their workers . 他們 對 他們 的 員工 保證 就業 . +Strawberries sell for a high price in the winter . 草莓 在 冬天 售價高 . +I would like to exchange this shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +He filled the bottle with water . 他 用水 装满 了 瓶子 . +No problem at all ! 一点 问题 都 没有 ! +We had a heated discussion about it . 我們 激烈 的 討論 了 這個 問題 . +Keep the money in a safe place . 把 錢 保存 在 安全 的 地方 . +In Switzerland , spring comes in May . 在 瑞士 , 春天 在 五月 来临 . +I am a stranger here . 我 是 這裡 的 外地人 . +My son does not obey me . 我 儿子 不 听 我话 . +I know that this is important to you . 我 知道 这 对 您 来说 很 重要 . +It grew larger and larger . 它 变得 越来越 大 . +She is collecting material for a book . 她 为 一 本书 收集 材料 . +He postponed leaving for Hokkaido until next month . 他 延遲 到 下 個 月 去 北海道 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Tom is smashed . 汤姆 醉 了 . +I shave every morning . 我 每天 早上 刮 鬍 子 . +Carrots contain a lot of vitamin A. 胡蘿 蔔 中 含有 大量 的 維生素 A . +Tom and Mary are close friends . Tom 和 Mary 是 親密 的 朋友 . +What an idiot I am ! 我 真是 個 白痴 ! +See you again . 再见 ! +We met in 2008 . A year later , we got married . 我們 在 2008 年 相遇 . 一年 後 , 我們 結婚 了 . +She succeeded in drawing the truth from him . 她 成功 地 从 他 口中 得知 了 真相 . +I made him carry the suitcase . 我 要 他 提 行李箱 . +You are no longer a mere child . 你 不再 只是 一个 孩子 了 . +That can not be Mary . She is in the hospital now . 那 不 可能 是 玛丽 , 她 现在 在 医院 . +How is the apple ? 這個 蘋果 怎麼樣 ? +He came to pick me up . 他 來 接 我 走 . +He will not listen to me . 他 不 會 聽 我 的 . +She is already sleeping . 她 已经 睡下 了 . +I do not need anyone . 我 谁 也 不 需要 . +Maybe you should just give up . 可能 你 应该 放弃 . +My driving instructor says I should be more patient . 我 的 駕駛 教練 說 我 應 該 更 有 耐心 一點 . +I am glad you guys are here . 我 很 高兴 你们 都 在 . +I would like to cash a travelers ' check . 我 想 兌換 旅行支票 . +Do not shout . 不许 大叫 . +Kissing a smoker is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +The students of this school are kind . 这个 学校 的 学生 很 友好 . +What subject do you think he is interested in ? 你 觉得 他 会 对 什么 主题 感兴趣 ? +Germany was once allied with Italy . 德国 曾 是 意大利 的 同盟国 . +I am sorry , I forgot my homework . 很 抱歉 我 忘 了 寫 作業 . +I smell gas . 我 聞到 瓦斯 味 . +She got the ticket for nothing . 她 免費 得到 這 張 票 . +I thought he would come . 我 以为 他 会 来 的 . +This table is made out of wood . 这 张 桌子 是 木 的 . +Banks open at nine o 'clock . 银行 九点 开门 . +The man tried to install his own antenna . 这 男人 试 着 安装 他 自己 的 天线 . +Were you out last night ? 昨晚 你 出去 了 嗎 ? +They called in a doctor because the child was ill . 他們 打 電話 給 醫生 因為 這個 孩子 生病 了 . +I can not tell you how much I will miss Tom . 我 不会 告诉 你 我 有 多 想念 汤姆 . +Waste not , want not . 不 浪費 則 不 匱乏 . +Promises are not enough . 承諾 是 不夠 的 . +It is a whole new ball game for me . 這 對 我 來說 是 個 全新 的 球類 遊戲 . +There is only a little milk left . 只 剩下 一點點 牛奶 了 . +I stayed home all day instead of going to work . 我 没有 去 工作 , 在 家里 待 了 一整天 . +Why should you think that ? 为什么 你 对于 这个 有 这样 的 想法 ? +She will not be back till five . 她 五點 前 不 會 回來 . +Tom is three years older than Mary is . 汤姆 比 玛丽 大 三岁 . +Can I have a bottle of red wine ? 請來 瓶紅 酒 . +I need to get a stamp . 我 需要 一張 郵票 . +He found me a good seat . 他 幫 我 找到 了 一個 好 位子 . +Yesterday was my birthday . 昨天 是 我 的 生日 . +Most people brush their teeth at least two times a day . 多数 人 每天 至少 刷 两次 牙 . +This book says that elephants live to be over 100 years old . 这 本书 上写 , 大象 能 活过 一百岁 . +He was born in the 19th century . 他 生于 19 世纪 . +Please send me a reply as soon as you receive this mail . 收到 此 邮件 后 请 尽快 给 我 答复 . +The meeting has been postponed until tomorrow . 会议 已经 被 延迟 到 明天 了 . +Tom clenched the shovel . 汤姆 握紧 了 铲子 . +Your driver is license has expired . 你 的 駕駛 執照 已經 過期 了 . +He is not stupid . 他 不是 傻子 . +A string of disasters struck the region . 一連 串 的 災難 襲擊 這個 地區 . +I have got to shave before leaving . 離開 前 我 必須 刮 鬍 子 . +He arrived in time for the meeting . 他 及時 趕到 了 會議 . +The lid will not open . 這 蓋子 打不開 . +Why can not we talk now ? 为什么 我们 现在 不能 讲 ? +I did not know who Tom was at first . 我 一 开始 不 知道 汤姆 是 谁 . +We love each other . 我們 彼此 相愛 . +I felt so sleepy that I could hardly keep my eyes open . 我 感觉 困 得 几乎 不能 睁开 我 的 眼睛 了 . +Do not put books on the table . 不要 把 書 放在 那 張 桌子 上 . +We just do not have enough time . 我们 没有 足够 的 时间 了 . +I am having lunch with my sister right now . 現在 正 和 妹妹 吃 午 飯 中 . +You will never achieve anything if you do not study harder . 如果 你 不 更加 努力 地學 習 , 你 將 永遠 不 會 有所 成就 . +She does not smile for me anymore . 她 已经 不 向 我 微笑 了 . +The boy was shirtless . 男孩 赤裸 着 上身 . +There is a large supermarket . 有 一個 大型超市 . +You are not afraid of ghosts , are you ? 你 不怕 鬼 , 不是 麼 ? +We help the poor . 我們 幫助 窮人 . +Get lost ! 滚 . +You might want to discuss it with Tom . 你 或许 想 和 汤姆 讨论一下 . +Tom told me that he would like to become a doctor . 汤姆 告诉 我 他 想 当 医生 . +Goodbyes are always sad . 离别 总是 让 人 悲伤 . +She did nothing but cry all the while . 她 一直 哭哭啼啼 . +We will go on a picnic if it is fine tomorrow . 如果 明天 天气 好 , 那么 我们 就 去 野餐 . +Why is change so hard ? 為 什麼 改變 那麼 難 ? +I do not do that as well as I used to . 我 不如 以前 做得好 了 . +There was no furniture in that room . 那個 房間 裡 沒有 家具 . +Mary bought a skirt and a blouse . 玛丽 买 了 一件 衬衫 和 一条 连衣裙 . +Would you lend me your pencil ? 你 可以 借 我 你 的 鉛 筆 嗎 ? +We had a heavy frost this morning . 今天 早上 下 厚 霜 了 . +Put it out of your mind . 別 去 想 它 . +He is getting better day by day . 他 一天 一天 地好 轉 . +Would you like to be my friend ? 你 想 做 我 的 朋友 嗎 ? +Have you given Tom everything ? 你 全都 给 汤姆 了 吗 ? +My business has at last gotten on the right track . 我 的 生意 终于 走上 了 正轨 . +Are you good at math ? 你 数学 好 吗 ? +I was just going to write a letter . 我 正要 去 写 一封信 . +Have you ever heard of such a thing ? 你 听说 过 这样 的 事 吗 ? +She wore a white dress . 她 穿 了 一件 白色 的 洋裝 . +Tell me the truth . 告訴 我 真相 . +He could no longer stand the pain . 他 再也 無法 忍受 這種 痛苦 . +There is no use crying over spilled milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Can you please close that window ? 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +Compared with yours , my car is small . 和 你 的 车比 起来 , 我 的 车 很小 . +We are going to have to change our plans . 我們 快要 到 必須 改變 我們 計畫 的 時候 了 . +You have done a perfect job . 你 做 了 一项 完美 的 工作 . +Tom wrote a letter to Mary this morning . Tom 今天 早上 寫 了 封信 給 Mary . +With her help , my French improved little by little . 在 她 的 帮助 下 , 我 的 法语 逐渐 进步 了 . +Do not forget to put a stamp on your letter . 别忘了 在 你 的 信 上 贴 张 邮票 . +There is a lot of trash on the far bank of the river . 河對岸 有 很多 的 垃圾 . +Tom broke the window . 湯姆 打破 了 窗戶 . +Tom is stingy . 汤姆 很小 气 . +There was hardly anyone in the room . 房間 裡 幾乎 沒 有人 . +We have ample time to catch our train . 我们 有 充裕 的 时间 赶上 火车 . +Do you think I am stupid ? 你 認為 我 傻 嗎 ? +We traveled to Mexico by plane . 我們 搭 飛機 去 墨西哥 旅行 . +We should study English every day . 我们 应该 每天 都 学 英语 . +Mary tied an apron around her waist and then took the turkey out of the oven . 玛丽 把 围裙 系 在 她 的 腰 上 , 然后 把 火鸡 从 烤箱 里 拿 出来 了 . +Fish and red wine do not go well together . 魚 和 紅酒 不合 . +I do not remember your name . 我 不 记得 你 的 名字 了 . +She is sure to succeed . 她 理所当然 的 取得 了 胜利 . +Can you give me an example ? 你 可以 给 我 举 个 例子 吗 ? +In the morning , I write in the park . 我 每天 早上 在 公園 寫作 . +Trim the fat off the meat . 切除 這塊 肉 的 脂肪 . +These dogs are big . 這些 狗 很大 . +Tom is always playing video games . 湯姆總 是 在 玩電視 遊樂器 . +He will be back soon . 他 很快 就 会 回来 的 . +What are you doing here ? 你 在 這裡 做 什麼 ? +He is learning how to drive a car . 他 正在 学 怎么 开车 . +We are going to eat now . 我們 現在 就要 吃 飯 . +You did not eat much lunch , did you ? 你 午饭 吃 的 不多 , 不是 吗 ? +It was a quiet winter evening . 这 是 个 静谧 的 冬夜 . +English is spoken in Singapore . 在 新加坡 的 人 說 英語 . +Facebook is blocked in China . Facebook 在 中國 是 被 封鎖 的 . +I made sure no one was following me . 我 確定 沒人 跟踪 我 . +Could you take a picture of us ? 您 能 好好 给 我们 照 一张 相吗 ? +I have never heard Tom speaking French before . 我 以前 從 沒聽 過 湯姆 講 法語 . +Have you ever seen the man in this photo ? 你 见 过 这 张 照片 上 的 男人 吗 ? +Tom has lost interest in studying French . 湯姆 已經 失去 學習 法語 的 興趣 . +Be punctual . 要 守时 ! +The sun always rises in the east . 太陽 總 是 從 東方 升起 . +My watch gains five minutes a day . 我 的 手表 每天 走 快 五分钟 . +I prefer to remain seated . 我 更 想 繼續 坐著 . +I did not mean it . 我 不是 这个 意思 . +Can I see this one ? 我 能 看看 這個 嗎 ? +Hope to see you again next year . 希望 明年 再次 見 到 你 . +She was run over by a car . 她 被 車子 輾過 了 . +He shot an arrow at the deer . 他 射 了 鹿一箭 . +I have known her for a long time . 我 已經 認識 她 很 久 了 . +Is there anything else you can tell me ? 你 還 能 告訴 我 甚麼 ? +No student is allowed to enter the room . 學生 不准 進入 這個 房間 . +Summer has ended . 夏天 已經 結束 . +I remember the first time . 我 记得 第一次 . +Do you need help carrying anything ? 你 需要 幫 忙 拿 東西 嗎 ? +They decided to get married next month . 他們 決定 在 下 個 月 結婚 . +Mastering a foreign language is difficult . 掌握 一门 外语 很 难 . +Tom wanted to know if Mary had a boyfriend . 汤姆 想 知道 玛丽 是否 有 男朋友 ? +I would like to put some things in the hotel safe . 我 想 在 酒店 的 保险柜 里 存点 东西 . +I play in a band . 我 在 一個 樂團 裡 演奏 . +Thank you for your attention . 谢谢您 的 关注 . +The railroad is parallel to the road . 铁路 与 公路 平行 . +Some people relax by reading . 一些 人 通过 阅读 来 放松 . +I can not believe he did that . 我 不能 相信 他 做到 了 . +Everyone was invited , except for me . 除了 我 每個 人 都 被 邀請 了 . +Once again . 再 一次 . +I want to buy a few pairs of sunglasses . 我 想 買 幾副 墨鏡 . +This cake tastes like it has cheese in it . 这块 蛋糕 尝 起来 有 奶酪 的 味道 . +She should have arrived home by now . 她 现在 应该 已经 到 家 了 . +Will he be able to catch the train ? 他 能 趕 上火 車 嗎 ? +Do you want to know why I quit ? 您 想 知道 为什么 我 要 离开 吗 ? +It would be helpful if you could do that for me . 您 那样 做 的话 , 可 就 帮到 我 了 . +Tom mopped the floor . 汤姆 擦 了 地板 . +You were treated unfairly . 你 被 不公平地 對待 . +He used to read at night . 他 以前 都 在 夜晚 看書 . +I will drop by the post office on the way home . 我会 在 回家 的 路上 顺便去 邮局 . +The post office is down the street . 郵局 在 街 那 頭 . +What is this ? 那 是 什么 ? +You have too many books on the shelf . 你 書 架上 的 書太 多 了 . +He somewhat resembles his father . 他 有点像 他 的 父亲 . +Up to now , how many books do you think you have read ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +I do not like kids . 我 不 喜欢 小孩 . +Wet clothes stick to your skin . 濕 衣服 貼著 你 的 皮膚 . +I know those tall girls quite well . 我 跟 那些 高 個子 的 女孩 很 熟稔 . +Put down your weapons . 放下 你们 的 武器 . +The prince fell in love with a woodcutter is daughter . 王子 愛 上 了 一個 樵夫 的 女兒 . +Tom arrived after I left . 汤姆 在 我 走 后 到 了 . +He left the house without so much as saying goodbye . 他 甚至 没 说 再见 就 离开 了 家 . +She did not like him . 她 不 喜歡 他 . +Please let me go . 請 允許 我 去 . +My premonition turned out to be right . 我 的 预感 被 证明 是 正确 的 . +I understand the concept . 我 明白 这 概念 . +Despite his riches , he is not contented . 尽管 他 很 富有 , 他 还是 不 满足 . +Do not forget that Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +We have to have a plan . 我們 必須 有 計畫 . +I went there recently . 我 刚 去过 那里 . +Can you hurry up a bit ? 快 一点 好 吗 ? +Do they love each other ? 他們 彼此 相愛 嗎 ? +What was the cause of the explosion ? 爆炸 的 原因 是 什么 ? +I want your opinion . 我 想要 聽 聽 你 的 意見 . +My girlfriend is a good dancer . 我 的 女朋友 跳舞 跳 得 很棒 . +I agree with his opinion . 我 同意 他 的 觀點 . +Have you worked the puzzle out ? 你 解开 谜团 了 吗 ? +She is popular , not because she is beautiful , but because she is kind to everyone . 她 受歡 迎 不是 因為 她 的 美麗 , 而是 因為 她 親切 地 對待 每個 人 . +Suddenly , the light went out . 灯 突然 灭 了 . +I have been feeling a little restless . 我 有 點 不安 . +I was at the theater . 我 在 劇場 . +Do you have a child ? 你 有 孩子 嗎 ? +No less than three hundred dollars was needed for the work . 这个 工作 需要 不 低于 300 美金 . +I do not think he will say yes . 我 不 認為 他 會 說 好 . +It is true that she is pretty , but she is selfish . 她 确实 很漂亮 , 但 她 很 自私 . +Man is the only animal that can talk . 人类 是 唯一 能够 彼此 交谈 的 动物 . +How can you afford a place like this ? 我們 怎麼 付得 起 這種 地方 的 錢 ? +Fantastic ! 好 棒 ! +I know that you know that I know . 我 知道 你 知道 我 知道 . +I 'd buy a new house if I had the money . 如果 我 有 錢 , 我 會 買 一個 新房子 . +She gave me some good advice . 她 給 了 我 一些 很好 的 建議 . +I baked cookies . 我 烤 了 曲奇 . +You look just like Tom . 你 看起来 就 像 湯姆 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think you should eat a ham sandwich . 我 认为 你 该 吃 火腿三明 治 . +The robot went out of control . 這個 機器 人 失控 了 . +Is not it black ? 它 不是 黑色 的 嗎 ? +Feel free to ask any questions . 尽管 提问 . +I am sorry , I do not have change . 對 不起 , 我 沒有 零 錢 . +It seems interesting to me . 在我看来 很 有意思 ! +It is an endangered species . 这 是 一个 濒临 消失 的 物种 . +I bought it for about twelve dollars . 我 用 12 美元 买 的 . +I have mixed feelings about this . 我 對 這件 事 百感交集 . +Have you finished your lunch yet ? 你 吃 完 你 的 午飯 了 嗎 ? +Tom did not understand what the teacher said . 汤姆 没 明白 老师 说 了 什么 . +She had just come home when I called . 我 打电话 的 时候 , 她 刚回到 家 . +I have seen a lot of him recently . 我 最近 常看到 他 . +It seems we are in the same boat . 看起来 我们 是 在 一条 船上 . +Maybe you should move . 你 可能 該 動 一動 . +I held my breath and waited . 我 屏住 了 呼吸 等待 着 . +We both won . 我們 都 贏 了 . +I am not sure of the exact date . 我 不 知道 確切 的 日期 . +Who does this suitcase belong to ? 這個 手提箱 是 誰 的 ? +She grew up to be a veterinarian . 她 長 大 後 成為 了 一名 獸 醫 . +It is a clear day . 它 是 一個 晴朗 的 日子 . +I was so homesick . 我 很 想 家 . +She studied Japanese after dinner . 晚 飯 後 她 讀 日 語 . +Do you study every day ? 你 每天 都 学习 吗 ? +She put the dirty dishes in the sink . 她 把 脏 盘子 放进 水池 里 . +Are you busy now ? 現在 你們 忙 嗎 ? +It is only your imagination . 那 只是 你 的 想象 . +There are a few apples on the tree , are not there ? 树上 有些 苹果 , 不是 吗 ? +I hear that you play the piano . 我 聽 說 你 彈 鋼琴 . +Beware of pickpockets . 小心 扒手 . +Are you afraid of bugs ? 你 怕 虫子 吗 ? +Tom has loved Mary for a long time . 汤姆 爱 玛丽 很 久 了 . +I met him at the barber is . 我 在 理发店 碰到 了 他 . +Tom pushed his way through the crowd . 汤姆 从 人群 中 拥 出来 . +We are going by train . 我们 要 乘火车 去 . +Long skirts are out of fashion now . 現在 長裙 不 流行 了 . +He has a lot of original ideas . 他 有 很多 獨到 的 見解 . +This bomb can kill many people . 这个 炸弹 可以 炸死 很多 人 . +I have no intention of asking him . 我 不想 問 他 . +He drives his own car . 他 開 他 自己 的 車 . +I asked him to go there tomorrow . 我 要求 他 明天 去 那裡 . +Tom is taking a day off . 汤姆 在 休 一天 假 . +Ask me something easier . 问 我 简单 些 的 . +You did not tell me Mary was so beautiful . 你 没 告诉 我 玛丽 这么 漂亮 . +The bill will never go through . 該 法案 將 永遠 不 會 通過 . +You will bounce back . 你 会 东山再起 的 . +I am a junior high school student . 我 是 個 國中 生 . +Your view is too optimistic . 你 的 看法 過 於 樂觀 . +I am married . 我 已婚 . +I helped her wash dishes . 我 幫 她 洗碗 . +Perhaps Tom is too old to do this kind of thing . 也許 Tom 年紀 太 大 , 不 適合 做 這件 事 . +She made a serious mistake . 她 犯 了 一個 嚴重 的 錯誤 . +Let is go out and have some fun tonight . 我们 今晚 一起 出去 找 乐子 吧 . +I do not love her , not even if she loves me . 即使 她 愛 我 , 我 也 不 愛 她 . +His memory never ceases to astonish me . 他 的 记忆力 总 让 我 吃惊 . +I know what can happen here . 我 知道 这里 会 发生 什么 . +How are things at work ? 工作 怎么样 ? +She could not answer the question . 她 無法 回答 這個 問題 . +May I pay by check ? 我 可以 用 支票 付 吗 ? +Tom talked about his school . 湯姆 談 了 他 的 學校 . +Rome is famous for its ancient architecture . 羅馬 以 其 古代 建築 而 聞名 . +I am hoping that will happen . 我 希望 那 會 發生 . +The town was defended by a large army . 城市 由 一支 大军 守卫 . +She turned eighty @-@ one . 她 八十一 歲 了 . +Two glasses of apple juice , please . 请 给 我 两杯 苹果汁 . +I almost never watch TV nowadays . 现在 我 几乎 不 看电视 . +You do your part and I will do the rest . 你 做 你 的 部份 , 其他 的 我 來 做 . +There is no need to apologize . 沒有 必要 道歉 . +She is absorbed in rock music . 她 沉迷于 摇滚乐 . +He said he did not know the man , which was a lie . 他 說 他 不 認識 那個 男人 , 這 是 一個 謊言 . +He got tired of reading . 他 厌倦 了 读书 . +He grasped the rope with two hands . 他 用 兩 隻 手 抓住 了 繩子 . +Each year Hamamatsu has a kite festival . 每年 濱松 有 風箏 節 . +I work for three hours every Sunday morning . 我 每个 周末 早上 工作 三 小时 . +The boy jumped into the water . 這個 男孩 跳入 了 水中 . +Please call the police . 叫 警察 . +After he had graduated from the university , he taught English for two years . 從 他 大學 畢業 以 後 , 他 教 了 兩年 的 英語 . +I am looking for you . 我 在 找 你 . +My dog goes everywhere with me . 我 的 狗 總是 跟著 我 . +Let is leave . 走 吧 . +What is your favorite way to cook trout ? 你 最 喜欢 怎么 烧 鲑鱼 ? +Please buy a tube of toothpaste . 請買 一支 牙膏 . +We felt the house shake a little . 我們 感覺 到 房子 搖動 了 一下 . +Will you tell me how to get to Shinjuku ? 请问 你 可以 告诉 我 如何 可以 到达 新宿 吗 ? +Who won ? 谁 赢 了 ? +This is the best restaurant that I know . 这 是 我 所 知道 的 最好 的 餐厅 . +It was so cold yesterday that I stayed home . 昨天 太冷 了 , 我 只好 待在家里 . +She gave us a vague answer . 她 給 了 我們 一個 模糊 的 答案 . +You are the only one that can help us . 你 是 唯一 一个 能 帮助 我们 的 人 . +Who would want to live here ? 誰 會 想住 在 這裡 ? +Is he Japanese ? 他 是 日本 人 吗 ? +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +This book sells well . 那 本書 賣 得 很 好 . +Tom is good at cooking . 湯姆 擅長 烹飪 . +I graduated from Kyoto University . 我 畢業 於 京都 大學 . +Do not look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +Life is beautiful . 生活 是 美丽 的 . +You have got to learn to hold your tongue . 你 應該 學著 閉上 你 的 嘴 . +We have had a most delightful day . 我們 過 了 最 愉快 的 一天 . +Whether he comes or not , the result will be the same . 他 来 还是 不 来 , 结果 是 一样 的 . +He wrote me a letter . 他 给 我 写 了 封信 . +Tom knows him . 湯姆 認識 他 . +Tom told me that he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Tom swims . Tom 游泳 . +I think that fact is very important . 我 認為 事實 非常 重要 . +Someone is knocking on the door . 不知 是 谁 在 敲门 . +You swim better than I do . 你 游泳 游得 比 我 好 . +What are you doing ? 搞 什么 啊 ? +I feel like taking a bath now . 我 現在 想 洗澡 . +I actually agree with you . 我 确实 同意 你 . +It is under the table . 它 在 桌下 . +This is old news to me . 這 對 我 來說 是 舊 聞 了 . +What is wrong with my legs ? 我 的 腿 有 什么 毛病 ? +Where are you going ? 你 去 哪儿 ? +When is breakfast ? 早餐 是 從 幾點 到 幾點 ? +She traveled all over the world . 她 周遊 世界各地 . +He is an excellent brain surgeon . 他 是 一個 優秀 的 腦 外科 醫生 . +I want to talk to your uncle . 我 想 和 你 的 舅舅 谈一谈 . +The park is filled with children . 公園 裡 都 是 孩子 . +You are so bad . 你 真 壞 . +I will be free tomorrow afternoon . 我 明天 下午 有空 . +Tom waved his hand . 汤姆 挥手 了 . +Mathematics is my favorite subject . 數學 是 我 最 喜歡 的 科目 . +He plays very well . 他 弹 得 很 好 . +Where is the nearest subway station ? 最近 的 地鐵 站 在 哪裡 ? +Tom needs to update his website . 汤姆 需要 更新 他 的 网站 . +I have two cats . 我 有 两只 猫 . +Where is nearest American Express office ? 最近 的 美國 運通 辦 公室 在 哪裡 ? +School starts in September in Europe . 歐洲 的 學校 在 九月 開學 . +A permanent job is better than a temporary one . 正式工 比 临时工 要 好 . +I encountered a problem . 我 遇到 了 故障 . +Taking the group of children to the library was no problem . 带 孩子 团体 去 图书馆 一点 问题 都 没有 . +Are we going to lose ? 我们 将 会 输 了 吗 ? +Have some more . 你 該 多 吃 點 . +Where can I find toothpaste ? 在 哪儿 我 能 找到 牙膏 ? +Lake Biwa is the largest lake in Japan . 琵琶湖 是 日本 最大 的 湖 . +Do you have an extra key ? 你 有 多余 的 钥匙 吗 ? +I dialed Tom is number . 我 拨打 了 Tom 的 号码 . +I advise you never to live beyond your income . 我 建议 你 永远 不要 入不敷出 . +He asked me what I had bought . 他 问 我 买 了 什么 . +We go to the same school . 我們 上 同一 所學校 . +Are you free now ? 现在 有空 吗 ? +I would not try that again . 我 不会 再 试 了 . +She has kept a diary for 3 years . 她 已經 寫 了 三年 的 日記 . +That is a good idea . 那 是 一個 好 主意 . +Tom climbed over the wall . 湯姆 爬 上 了 墙 . +It is very normal . 它 很 正常 . +I did not believe him at first . 起初 我 不 相信 他 . +Should not you still be in bed ? 你 不 該 還 在 床上 嗎 ? +Where is the nearest station ? 最近 的 車站 在 哪裡 ? +That is not what I told Tom . 那 不是 我 對 湯姆 說 的 . +He pretended not to be listening . 他 假装 听不见 . +We have all we need for now . 我们 现在 拥有 了 所有 我们 想要 的 . +Because of his wealth , he was able to become a member of that club . 由 於 他 的 財富 , 他 能夠 成為 這個 俱樂部 的 成員 . +Do you guys want something to eat ? 你們 想要 吃 些 什麼 嗎 ? +The car he is driving is not his . 這輛 他 正在 開 的 車 不是 他 的 . +They do not pay me enough . 他們 給 我 錢 沒 給夠 . +Studying abroad is very common now . 現在 出國 留學 是 很 常見 的 了 . +My mother looked at me with tears in her eyes . 我 妈妈 眼 含着泪 看 我 . +She introduced me to her father . 她 把 我 介紹 給 她 父親 . +That is avoidable . 那 是 可 避免 的 . +We are expecting a good harvest this year . 我們 期望 今年 豐收 . +Would you please lock the door ? 請 你 鎖 門 好 嗎 ? +I got off at the wrong station . 我 下錯 了 車站 . +We were crowded into the small room . 我们 挤进 了 那间 小房间 里 . +Tom walks slowly . 汤姆 走 得 很慢 . +It is going to rain soon . 天 快要 下雨 了 . +It turned out that I was right . 結果 證明 我 是 對 的 . +Mt . Fuji was covered with snow . 富士山 被 雪所覆蓋 . +I have just washed all the dishes . 我 剛 洗 了 所有 的 碗盤 . +Ukrainian girls are the prettiest in the world . 乌克兰 姑娘 是 全世界 最 漂亮 的 姑娘 . +Please take me to the hospital . 請 帶 我 去 醫院 . +This park reminds me of my childhood . 来到 这个 公园 会 让 我 想起 自己 的 童年 . +I am a college student . 我 是 个 大学生 . +I wish it would stop raining . 我 希望 雨會 停 . +Where do you want to go ? 你 要 去 哪裡 ? +I should have left earlier . 我 應 該 要 早點 出發 的 . +I saw a lot of buses . 我 看見 了 很多 大巴 車 . +It did not cross my mind . 这 不是 我 的 想法 . +When his food supply ran short , he had to look for a new place to live . 他 的 食物 供给 不足 的的 时候 , 他 不得不 去 找 新 的 地方 居住 . +It is impossible . 這 是 不 可能 的 . +He should have done it that way . 他 该 那样 做 完 了 . +That is not my wife . 这 不是 我 的 妻子 . +I want to talk with your uncle . 我 想 跟 你 叔叔 談談 . +I heard someone calling my name . 我 聽見 有人 叫 我 的 名字 . +It does not mean anything . 这 什么 都 说明 不了 ! +Can you swim underwater ? 你 能 潜水 吗 ? +We work in a factory . 我们 在 一个 工厂 工作 . +Please get me hotel security . 请 帮 我 叫 宾馆 保安 . +How much money do you need ? 你 需要 多少 钱 ? +I hope that your brother is better . 我 希望 你 弟弟 好 点 了 . +She looks unhappy . 她 看起来 不 幸福 . +It is easy to read this book . 這 本書 很 容易 讀 . +Are you off tonight ? 你 今天 晚上 有 沒有 要 上班 ? +I know a lot about ships . 我 知道 很多 關於船 的 知識 . +Flying is the quickest way to travel . 搭 飛機 是 最快 的 旅行 方式 . +They married when they were young . 他們 在 還 很 年輕 的 時候 就 結婚 了 . +I know that money is not everything . 我 知道 金钱 不是 万能 的 . +Hey you ! Please wait . 嘿 , 你 ! 請 稍候 . +I have no friends . 我 没有 朋友 . +You ought to ask for your teacher is permission . 你 應該 請求 你 的 老師 允許 . +Tom was completely worn out . 湯姆 完全 筋疲力盡 了 . +No one came . 没有 人 来 了 . +You have to study hard to catch up with your class . 你 必須 用功 讀書 趕上 同 學 . +Summer vacation begins next Monday . 暑假 從 下 星期一 開始 . +How was your test ? 你 的 测验 怎么样 ? +Tom took the concert ticket Mary offered him . 汤姆 拿 了 玛丽 给 他 的 音乐会 票 . +Always be true to yourself . 永遠 要 對 自己 誠實 . +You may choose whichever you want . 你 可以 選擇 任何 你 想要 的 . +A dog was run over by a truck . 一条 狗 被 卡车 碾过 . +You 'd better go . 你 最好 走 . +Tom is there already . 湯姆己 經 在 那裡 了 . +Tom says he hopes Mary is able to do that . 汤姆 说 他 希望 玛丽 能 做到 . +How could so many people go along with this ? 怎么 会 有 这么 多 的 人 同意 呢 ? +Did you murder Tom ? 是 你 杀 了 汤姆 吗 ? +His wife is in the hospital because she was injured in a car crash . 他 的 妻子 在 醫院 裡 因為 她 在 一場 車禍 中 受傷 了 . +Wow ! It is been a long time . 哇 ! 好久 不見 了 . +Is Tom an actor ? 汤姆 是 演员 吗 ? +I will provide you all the necessary information . 我会 把 所有 有用 的 信息 给 你 的 . +What time will you get to the station ? 你 几点 会 到 车站 ? +You are too suspicious about everything . 你 对 什么 都 太 怀疑 了 . +Apples were served as the dessert . 蘋果 被 當作 甜點 . +Run . 你 用跑 的 . +I know that some people value my work . 我 知道 有些 人 看重 我 的 工作 . +She went to Shanghai by train . 她 是 坐 火車 去 上海 的 . +It is time to go . 是 該 離開 的 時候 了 . +Tom probably knew who I was . 汤姆 可能 知道 我 是 谁 . +You did not need to buy the book . 你 沒有 必要 買 這 本書 . +Here is an even better one . 这里 有个 更好 的 . +I am not accustomed to such treatment . 我 不習 慣 這樣 的 待遇 . +Could you put this coat somewhere ? 您 能 把 這件 大衣 放在 某個 地方 ? +You should have a doctor take a look at it . 你 应该 让 个 医生 看看 . +She gave it her personal attention . 她 親自 過問 了 此事 . +It is cruel of him to say such things to her . 他 跟 她 说 这样的话 真是太 残忍 了 . +Tom prepared his speech very carefully . 湯姆 很 認真 地 準備 他 的 演講 . +His bag is right here , so he cannot have gone to school yet . 他 的 包 就 在 这儿 , 所以 他 不 可能 已经 去 了 学校 . +Everyone knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom promised to try again . 湯姆 答應 再 試 一次 . +He hid his friend from the police . 他 把 他 的 朋友 藏 了 起來 不 讓 警察 知道 . +I have not seen you for ages . Do you remember when I saw you last ? 好久不见 了 . 记得 上次 我 什么 时候 看见 你 的 吗 ? +I had difficulty in solving this problem . 我 很 難 解決 這個 問題 . +Do not forget where you put it . 不要 忘記 你 放在 哪裡 . +He gave him a book . 他 給 了 他 一本 書 . +I think that Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +They had a baby last week . 上週 他們 生 了 一個 孩子 . +I have always kept my word . 我 一直 信守 我 的 諾言 . +I am sorry . I got the wrong number . 對 不起 , 我 拿 錯 了 號碼 . +I have just arrived at the airport . 我 剛剛 抵達 了 機場 . +He has been sick since last Sunday . 他 從 上週 日 開始 就 生病 了 . +What is the biggest difference ? 最 不 一样 的的 是 什么 ? +She was in trouble because she lost her passport . 她 遇到 了 麻煩 , 因為 她 弄 丟了 她 的 護照 . +When she was thirteen , she ran away from home . 她 十三岁 的 时候 离家出走 了 . +My brother would often stay up all night reading novels . 我 哥哥 經常 熬夜 看 小 說 . +What is the fare from Osaka to Akita ? 从 大阪 到 秋田 的 车费 是 多少 ? +We need a hero . 我們 需要 英雄 . +You should give up smoking and drinking . 你 该 戒烟 戒酒 了 . +I gave up smoking for a year . 我 戒 煙 一年 了 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +Stay here with Tom . 留在 这 和 汤姆 在 一起 . +He likes baseball very much . 他 非常 喜欢 棒球 . +Do you have a table on the patio ? 你 院子 裡 有 桌子 嗎 ? +Whose is this car ? 這 台汽 車 是 誰 的 ? +It is six o 'clock already . 已經 六點鐘 了 . +I had a slight headache last night . 我 昨晚 有 輕微 的 頭痛 . +Between you and me , I do not like our new team captain . 我 就 只 告诉 你 , 我 不 喜欢 我们 的 新 队长 . +She likes going to the library . 她 喜欢 去 图书馆 . +Everybody is alive . 所有人 都 是 活着 的 . +This is my sister . 这 是 我 的 妹妹 . +Everybody was singing except me . 除 我 以外 每個 人 都 在 歌唱 . +She always cared about my health . 她 總是 關心 我 的 健康 . +He will be glad to see you . 他 會 很 高興 見到 你 . +You can not blame Tom for getting angry . 你 不能 怪 汤姆生 气 了 . +Tom said he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I am not absolutely sure . 我 不 完全 肯定 . +Did you enjoy yourself at the party last night ? 你 在 昨晚 的 聚會 上 盡 興 了 嗎 ? +How is the weather there ? 那里 的 气候 怎么样 ? +He is a student at this college . 他 是 這 所 大學 的 學生 . +The pain has gone . 疼痛 消失 了 . +Is there anything you want to add to what I just said ? 我 刚才 说 的 内容 , 你 想 补充 么 ? +Are you sad ? 你 傷心 嗎 ? +Thanks anyway . 还是 要说 谢谢 的 . +I will keep that book for myself . 我 要 把 这 本书 留给 自己 . +How long have you worked with Tom ? 你 跟 湯姆 工作 了 多 長 時間 ? +Shame on you . 你 真 丢脸 ! +Tom will not be here long . 湯姆 不 會 在 這裡 久留 . +I want Tom to win . 我 想 让 汤姆 赢 . +Whose is it ? 这 是 谁 的 ? +Father makes sure that all the lights are off before he goes to bed . 父親 確定 所有 的 燈 都 關 了 後 才 去 睡 覺 . +I always keep my promises . 我 總 是 信守 我 的 承諾 . +He was forced to work overtime . 他 被迫 加班 . +He died soon after the accident . 他 在 事故 後 不久 就 去世 了 . +She believes that he is innocent . 她 相信 他 是 無辜 的 . +Look at that house . 看 那个 房子 . +Have you already fed the horses ? 你 喂 过 马 了 吗 ? +What did you do with my luggage ? 你 把 我 的 行李 放到 哪裡 去 了 ? +Their baby is able to walk already . 他們 的 小 嬰孩 已經 會 走路 了 . +She found a ball in the garden . 她 在 花園 裡 發現 了 一顆 球 . +I usually have breakfast at seven . 我 通常 七點 吃 早餐 . +I do not have time to read . 我 没 时间 阅读 . +He makes friends with everybody he meets . 他 跟 所有 他 遇見 的 人 交朋友 . +He is a bit like his father . 他 有点像 他 的 父亲 . +So what will you do in the afternoon ? 您 下午 做 啥 呢 ? +We visited the museum last week . 我們 上週 參觀 了 博物 館 . +How lovely ! 多 可爱 啊 ! +Mt . Aso is an active volcano . 阿蘇山 是 一座 活火山 . +Congratulations ! 恭喜 ! +Give the book to whomever wants it . 这 本书 谁 想要 就 给 谁 吧 . +The man kept talking for an hour . 這個 男人 連續 說 了 一個 小 時 的 話 . +Please write back soon . 请 快点 回信 . +Why do not you do it ? 你 为什么 不 做 ? +My heart was filled with happiness . 我 心里 充满 着 快乐 . +Hurry . Please lend me a hand . 快點 . 請 幫 幫 我 . +Tom is unlikely to do that again . 湯姆 不太可能 再 那麼 做 了 . +Tom has a tattoo of a skull on his chest . 湯姆 在 胸上 有 個 頭 骨 文身 . +I was unable to finish my homework . 我 無法 完成 我 的 作業 . +If you want to know , just ask . 如果 您 想 知道 , 直接 问 就是 了 . +A fire broke out the day before yesterday . 前天 發生 了 火災 . +Last month our twenty @-@ year @-@ old daughter gave birth to a baby girl . 上个月 , 我们 20 岁 的 女儿 生 了 个 女孩 . +I hardly ever go to museums . 我 几乎 不 去 博物馆 . +He helped me to get over the difficulties . 他 帮助 我 克服 了 困难 . +She is an obstinate girl . 她 是 个 倔强 的 女孩 . +I have not met her . 我 没有 遇见 她 . +To my knowledge , she has not married yet . 據 我 所知 , 她 還 沒 結婚 . +Tom told me that he did not want to go with us . 湯姆 告訴 我他 不想 跟 我們 走 . +Where is the coffee shop ? 這家 咖啡 館 在 哪裡 ? +I do not know if I will have time to do it . 我 不 知道 我 是否 有 时间 做 . +I recognized some of the tunes that Tom played . 我 认出 了 些 汤姆 演奏 的 调子 . +He sometimes goes to work by car . 他 有 時 開車 去 上班 . +He sent a card to Mary . 他 送 了 一張 卡片 給 瑪麗 . +Tom is very important to me . 汤姆 对 我 来说 很 重要 . +I am very busy today . 我 今天 很忙 . +I can not guarantee that that is going to happen . 我 不能 确保 这 一切 会 发生 . +The company spends a lot of money on advertising . 那 家 公司 在 广告 上 花 了 很多 钱 . +Birds build nests . 鸟儿 筑巢 . +You never get a second chance to make a first impression . 你 永遠 沒有 第二次 機會 去 打造 第一印象 . +This letter is addressed to you . 這 封信 是 寄 給 你 . +Winter is just around the corner . 冬季 快 來 了 . +I bought a watch . 我 買 了 一只 手 錶 . +I will never stop . 我 絕不 會 停 . +Anybody would be better than nobody . 不管是谁 总 比 没人好 . +We are still nervous . 我們 還 是 緊張 . +A true gentleman never betrays his friends . 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +I am learning how to drive . 我 正在 學習 如何 駕駛 . +Our friendship will last a long time . 我們 的 友情 會長 久 留存 . +She was buried in her hometown . 她 被 安葬 在 她 的 家鄉 . +I will not go to school tomorrow . 我 明天 不 會 去 學校 . +Tom is in the living room , sleeping on the couch . 汤姆 在 客厅 , 躺 在 长沙 发 上 睡觉 . +He showed me her picture . 他 給 我 看 了 她 的 照片 . +Are not you free tonight ? 你 今天 晚上 沒 空 嗎 ? +Tom did it again . 汤姆 又 做 了 一次 . +It is the only thing I can think of . 这 是 我 唯一 能 想到 的 事 了 . +If not now , when ? 如果 不是 现在 , 那 是 什么 时候 ? +I have not seen her since last month . 我 從 上 個 月 開始 就 沒有 看到 她 了 . +What is the minimum wage in your country ? 你 的 国家 的 最低工资 是 多少 ? +I like you . 我 喜歡 你 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 迷惑 . +Texting while driving is dangerous . 開車 時 打字 是 危險 的 . +Tom is looking for a new job . 湯姆 在 找 新 工作 . +My sister sometimes makes our dinner . 我 的 妹妹 有時 為 我們 做 晚餐 . +Thank you for the present you gave my son . 谢谢 你 送给 我 儿子 礼物 . +Call me tomorrow . 明天 打电话 给 我 . +My father participated in a cooking contest and came in first . 我 爸爸 参加 了 料理 竞赛 并得 了 第一名 . +I play the guitar after dinner . 我 晚 飯 後 彈 吉他 . +We know our rights . 我们 知道 我们 的 权利 . +Did you know that before ? 你 之前 知道 那個 嗎 ? +I am in trouble . 我 遇到 困難 了 . +The meeting was called off . 会议 取消 了 . +Can you guess what I have ? 你 能 猜到 我 有 什么 吗 ? +We should always try to help others . 我們 應該 盡力 幫助 他人 . +My father stopped drinking . 父亲 戒酒 了 . +My son is going to leave for France next week . 我 儿子 下周 要 去 法国 了 . +Did not you lock up your car ? 你 没有 把 你 的 车上 锁 吗 ? +Can you make it on time ? 你 能 准时 做好 吗 ? +They must work 8 hours a day . 他们 每天 必须 工作 8 小时 . +There is no water . 沒有 水 . +If you want to , call me this afternoon . 如果 你 想 的话 , 今天下午 给 我 打电话 . +You will get lost . 你 会 迷路 的 . +I worked three years as Tom is assistant . 我 给 汤姆 当 了 三年 助手 . +I 'd like orange juice . 我 想要 橙汁 . +He asked me whether I like math . 他 问 我 喜不喜欢 数学 . +Would you mind lending me your pen ? 你 介意 借 我 你 的 筆 嗎 ? +Tom quit . 汤姆 不 干 了 . +We live in the suburbs . 我们 住 在 郊区 . +Tom is overweight . 汤姆 超重 了 . +Tom picked up the knife . 汤姆 拿起 了 刀 . +Turn off the television . I can not concentrate . 把 電視 關掉 . 我 無法 專心 . +Excuse me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +Lightning is usually followed by thunder . 閃 電 常常 伴隨 著 雷鳴 . +Can you imagine walking around on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I thought that Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He was discovered unconscious on the floor of the kitchen . 他 被 人 发现 倒 在 厨房 的 地板 上 , 不省人事 . +We had no secrets . 我們 沒有 秘密 . +I will give you anything but this . 除了 這個 之外 我 會 給 你 任何 東西 . +Thank you very much for your present . 非常 谢谢 你 的 礼物 . +The importation of rare wild animals to this country is strictly prohibited . 该国 严禁 进口 稀有 野生动物 . +She devoted her life to working among the poor . 她 一生 致力于 为 穷人 工作 . +Tom is used to cooking on a campfire . 湯姆 習慣 用營 火 做菜 . +He held a package under his arm . 他 挾著 一個 包裹 . +Go with these men . 跟 這些 人 走 . +You can rely on him . 你 可以 依靠 他 . +They would never meet again . 他们 不会 再见面 了 . +Does anyone here speak Japanese ? 这儿 有人 说 日语 吗 ? +I am not doing that anymore . 我 不再 做 那事 了 . +Stir the soup . 搅 一下 汤 . +Did you learn that from Tom ? 你 從 湯姆 那裡 學到 了 嗎 ? +I have heard this joke before . 我 以前 聽 過 這 笑 話 . +Cover your head when you are in the sun . 當 你 在 陽光 下 的 時候 , 遮住 你 的 頭 . +The stew smells delicious . 這 鍋 墩 湯聞 起來 真 美味 . +I usually got to bed about eleven . 我 通常 約 十一 點 鐘 上床 睡覺 . +I sat between Tom and John . 我 坐在 汤姆 和 约翰 中间 . +A soccer team consists of eleven players . 一个 足球队 由 十一个 球员 组成 . +Can we take care of this tomorrow ? 这个 我们 明天 能 解决 吗 ? +He just got home . 他 刚回到 家 . +I agreed to the proposal . 我 同意 這項 建議 . +I finished writing the letter by noon . 我 中午 前 寫 完 這 封信 了 . +My friends invited me to supper . 我 朋友 邀 我 共赴 晚餐 . +My grandfather died five years ago . 我 祖父 五年 前 去世 了 . +The police were able to find the criminal . 警方 能夠 找到 罪犯 . +I am going to tell you the truth . 我 要 告诉 你 真相 . +Light the candle . 把 蠟燭 點燃 . +She has many friends in Hong Kong . 她 在 香港 有 很多 朋友 . +School begins at eight @-@ thirty . 学校 8 点 半 开始 上课 . +The economy of the island is dependent on the fishing industry . 这个 岛 的 经济 依靠 的 是 渔业 . +We should call the police . 我们 该 报警 . +Tom does not usually dress like that . 湯姆平 時 不 那樣 穿衣服 . +Tom is reading an essay . 湯姆 在 讀 一篇 短文 . +Whose is that notebook ? 這 臺 筆 記 本 電 腦 是 誰 的 ? +I signed the document . 我 簽 了 文件 . +My neck still hurts . 我 的 脖子 还 疼 . +This is atrocious weather . 惡劣 的 天氣 . +You can shut up now . 你 現在 可以 住口 了 . +This is a wig . 这 是 假发 . +A good idea suddenly came to me . 我 的 大 腦 裏 突然 出現 了 一個 很好 的 想法 . +That is thirty meters long . 那個 長 30 米 . +I looked after him for a period of time . 我 看 了 他 一段时间 . +You do not need to study today . 你 今天 不必 讀書 . +That young lady is a nurse . 这个 年轻 女孩 是 护士 . +I think that Liszt is " Forgotten Waltz No.3 " is a hidden masterpiece . 我 觉得 李斯特 的 《 被 遗忘 的 圆舞曲 第三首 》 是 个 被 埋没 的 名曲 . +UFO stands for unidentified flying object . UFO 代表 不明 飛行 物體 . +My friend is father is a doctor . 我 朋友 的 爸爸 是 個 醫生 . +I went shopping last Saturday . 上週 六 我 去 購物 . +Do not forget Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +In case of emergency , call the police . 在 緊 急情 況下 , 打 電話 報警 . +Where was it published ? 它 发表 在 哪里 ? +Has Tom broken something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Would you like some more beer ? 你 想 再 喝 些 啤酒 嗎 ? +You 'd better wait until the police come . 你 最好 等到 警察 前来 . +He is very tall . 他 很 高 . +Is it safe to skate on this lake ? 在 這個 湖上 滑冰 安全 嗎 ? +She filled the glass with wine . 她 在 玻璃杯 裡 裝滿 了 酒 . +Tom did not seem that happy . 汤姆 看来 不 高兴 . +Please send me your picture . 請 把 您 的 照片 發給 我 . +Our house has three bedrooms . 我們 家 有 三個 臥室 . +Few students could understand what he said . 很少 有學 生能 了解 他 說 的 話 . +She held her baby in her arms . 她 把 她 的 孩子 抱 在 懷裡 . +He will be busy tomorrow . 他 明天 會 很忙 . +I will not work overtime today . 今天 我 不 加班 . +Are you still collecting stamps ? 你 還 在 收集 郵票 嗎 ? +No , thank you . I have had enough . 不 , 謝謝 你 . 我 已經 吃 飽 了 . +Do we have anything I can snack on ? 我們 有 任何 我 可以 當 零食 吃 的 東西 嗎 ? +I confess that I am tired . 我 承认 我 很 累 . +You will soon get used to speaking in public . 你 很快 就 会 习惯 在 大庭广众 说话 了 . +She hung a curtain over the window . 她 把 窗簾 掛 在 窗戶 上 . +We owe you an apology . 我们 欠 你个 道歉 . +He does not know the difference between right and wrong . 他 好坏不分 . +The plane took off . 飛機 起飛 了 . +She made tea for me . 她 给 我 沏 了 茶 . +The principal wants to talk to you . 校长 想 跟 你 谈话 . +What kind of shampoo do you use ? 你 用 哪種 洗 髮 水 ? +Is this the right train for Tokyo ? 這 是 開往 東京 正確 的 火車 嗎 ? +I am fully convinced of your innocence . 我 完全 相信 你 是 清白 的 . +If I were invisible I would not have to dress myself . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +I do not like green onions . 我 不 喜欢 葱 . +You are a better skier than me . 你 滑雪 比 我 好 . +Tom is just a crazy old man . 湯姆 只是 一個 瘋老 頭 . +She felt blue . 她 感到 闷闷不乐 的 . +Tom just does not understand . 汤姆 就是 不 懂 . +May I see your driver is license ? 我 可以 看看 你 的 駕駛 執照 嗎 ? +Have you chosen a major yet ? 你 选好 专业 了 吗 +I am counting on your help . 我 指望 你 的 帮助 . +Remember to mail this letter tomorrow morning . 明天 早上 記得 去 寄 這 封信 . +Do not forget to take a camera with you . 别忘了 带 个 相机 . +Can you speak French ? 你 會 講 法語 嗎 ? +His story sounds true . 他 的 故事 聽 起來 是 真的 . +I lost my key somewhere around here . 我 的 钥匙 就是 在 这 附近 丢失 的 . +Which do you prefer , tea or coffee ? 你 比較 喜歡 哪 一個 , 茶 還 是 咖啡 ? +The baby seemed to be fast asleep . 那個 嬰兒 似乎 在 熟睡中 . +Tom does not have to go to Boston next week . Tom 下星期 不用 去 波士 頓 . +Tom told Mary to help John . 湯姆 讓 瑪 麗 幚 約 翰 . +Have you cleaned your room yet ? 你 打掃 你 的 房間 了 嗎 ? +I like taking walks in the woods . 我 喜歡 在 樹林 裡 散步 . +Sometimes I still miss her . 有 時候 , 我 還 是 會 想起 她 . +In life there are ups and downs . 生活 中 有 高低 起伏 . +I had to stay at home . 我 得 留在 家裡 . +All you need to do is just sit here . 你 要 做 的 只是 坐在 这儿 . +Tom could not swim . 汤姆 不会 游泳 . +She picked up one of the glass vases . 她 拿 了 其中 一个 玻璃 花瓶 . +She was holding a small parasol in her hand . 她 手里 握 着 一把 小 阳伞 . +She looks like a teacher . 她 看起来 像 老师 . +Sometimes I see him at the club . 我 偶尔 会 在 俱乐部 碰到 他 . +I appreciate good music . 我 欣賞 好 音樂 . +These pictures were painted by him . 這些 畫 是 他 畫 的 . +It took us a long time to decide what we really wanted to do . 我們 花 了 很 長 時間 決定 我們 真正 想 的 事 . +She was a tall , thin girl with long , soft brown hair . 她 是 個 又 高 又 瘦 , 留著 一頭 又 長 又 軟 的 褐色 頭 髮 的 女孩 . +The coral reef is the region is prime attraction . 珊瑚礁 是 这个 地区 的 主要 景点 . +The moonlight is really beautiful . 月光 真美 . +Children should drink milk every day . 孩子 们 应该 每天 喝牛奶 . +I ate bread and butter this morning . 今天 早上 , 我 吃 了 面包 夹 黄油 . +I trust his executive ability . 我 相信 他 的 执行 能力 . +Where are you planning to stay ? 你 打算 在 哪裡 留宿 ? +I should tell Tom what I have to do . 我 應該 告訴 湯姆 我 該 做 甚麼 . +I am daydreaming . 我 在 做 白日梦 . +You should eat more vegetables . 你 應 該 多 吃 蔬菜 . +I like both dogs and cats . 我 喜歡 狗 和 貓 . +Wearing a suit , he stood out . 他 穿著 西裝 站 了 出來 . +I do not know right now . 我 现在 不 知道 . +I am on the right . 我 在 右邊 . +I often eat chicken . 我 經常 吃 雞 . +Are you sure that is what you want ? 你 確定 那 是 你 想要 的 嗎 ? +Let is synchronize our watches . 讓 我們 校 對 一下 錶 吧 . +Tom is not very strict about it . 湯姆 對 此 不 嚴格 . +It is my treat . 我 請 客 . +I will come , weather permitting . 如果 天气 允许 的话 , 我 就 去 . +The picture looks better at a distance . 这 幅画 远 看 更好 . +It is a surprise . 这 是 一个 惊喜 . +Is it really possible ? 真的 是 可能 的 嗎 ? +Everybody was confused . 每个 人 都 很 困惑 +She wrote him a long letter , but he did not read it . 她 给 他 写 了 一封 长信 , 但是 他 没有 看 . +Tom likes tea better than coffee . 湯姆 喜歡 茶 勝 過 咖啡 . +I do not need anything . 我 什么 都 不 需要 . +I was very impressed by his story . 他 的 故事 給 我 留下 了 很 深 的 印象 . +I am interested in history . 我 對 歷史 有 興趣 . +He is afraid of snakes . 他 怕 蛇 . +It was a bag that I lost in the room yesterday . 它 是 我 昨天 遺失 在 房裡 的 包 . +That responsibility is a burden to him . 那个 责任 对 他 是 个 负担 . +I think it will not succeed . 我 認為 它 不 會 成功 . +The streets in Tokyo are full on Saturdays . 週六 , 東京 街上 人 滿為 患 . +My father is a doctor . 我 父亲 是 个 大夫 . +Please be quiet . 請 安靜 . +She seems to be unhappy . 她 看 起來 不快 樂 . +I am thirty years old . 我 三十 歲 . +He is already a man . 他 已经 是 个 男人 了 . +The boy who lives next door often comes home late . 住 在 隔壁 的 男孩 常常 很 晚 回来 . +I do not believe you . You are always telling lies . 我 不 相信 你 . 你 总是 说谎 . +She was susceptible to colds . 她 易 患感冒 . +Which credit cards can I use ? 我 可以 用 哪些 信用卡 ? +Japan is now very different from what it was twenty years ago . 相比 二十年 前 的 日本 , 现在 的 日本 有 了 翻天覆地 的 变化 . +I have not seen Tom lately . 我 最近 沒 看到 湯姆 . +Tom fell into a vat of sulfuric acid . Tom 摔倒 进 一桶 硫酸 中 +If I lost my key , I would not be able to lock the door . 如果 我 弄 丟了 我 的 鑰匙 , 我 就 無法 鎖門 了 . +There is something I have been meaning to discuss with you . 有件事 我 一直 想 跟 你 商量 . +What browser are you using ? 你 用 什么 浏览器 ? +I have finally got the whole set ! 我 終 於 擁有 了 一整套 ! +Tom knows that I want to leave as soon as possible . 湯姆 知道 我 想 盡早 離開 . +Our team lost the first match . 我們 隊 輸 了 第一 場 比賽 . +I am busy all the time . 我 總 是 忙碌 . +We did not stay home yesterday . 我們 昨天 沒 有待 在家 裡 . +Tom does not even know my name . 汤姆 甚至 不 知道 我 的 名字 . +I have time . 我 有 时间 . +Could we have a table outside ? 我們 在 外面 可以 有 一張 桌子 嗎 ? +When did you get here ? 你 是 什麼 時候 來的 ? +She asked him to open the window . 她 請 他 打開 窗口 . +Her only pleasure is listening to music . 她 唯一 的 樂趣 就是 聽 音樂 . +It is safe to say so . 這麼 說 是 安全 的 . +We had a rest in the shade . 我們 在 樹蔭 下 休息 . +Hokkaido is very far , is not it ? 北海道 很遠 , 不是 嗎 ? +She went to Italy to study music . 她 去 了 意大利 學習 音樂 . +Hurry home . 赶快 回家 . +Hundreds of buffaloes moved toward the lake . 數以百計 的 水牛 走向 湖邊 . +I expect a lot from him . 我 對 他 期望 很 高 . +Could you solve the problem ? 你 能 解決 這個 問題 嗎 ? +I can not stand this pain any more . 我 不能 再 忍受 這種 痛苦 了 . +The blue lines on the map represent rivers . 地图 上 的 蓝线 代表 河流 . +Excess of politeness is annoying . 禮貌 過度 是 煩人 的 . +She is the one who feeds our dog . 她 是 喂 我們 的 狗 的 人 . +He does not like coffee . 他 不 喜歡 喝咖啡 . +Christmas is definitely my favorite holiday . 圣诞节 绝对 是 我 最 喜欢 的 节日 . +You do not have to eat it . 你 不必 吃 . +To err is human , to forgive divine . 人 皆 有錯 , 唯 聖者 能 恕 . +Use it or lose it . 使用 它 或 失去 它 . +I was quite hungry . 我 很 饿 . +I also heard a similar story . 我 也 听 过 一个 类似 的 故事 . +We have a problem here . 我们 现在 有 了 麻烦 . +They moved ahead slowly . 他們 慢慢 地 向前 進 . +My car cost more than yours did . 我 的 车子 的 开销 比 你 的 要 多 . +My mother never punishes me . 我 母親 從來 沒有 懲罰 過 我 . +Now is a great time to buy one of those . 现在 是 买 它 的 最好 时机 . +All that glitters is not gold . 光 看 表面 是 不足 夠 的 . +How far is it from here ? 离 这儿 有 多 远 ? +Tom is there alone . Tom 獨自 在 那 . +The eight o 'clock bus was early today . 8 点 那 班车 今天 早 到 了 . +I do not like the way he talks . 我 不 喜歡 他 講 話 的 樣子 . +I can not bear this pain . 我 無法 忍受 這個 痛苦 . +Who likes beans ? 谁 喜欢 豆子 ? +I do not know what to believe anymore . 我 再也 不 知道 該 信 甚麼 了 . +It is time to get some work done . 到 了 做 點 事 的 時候 了 . +I have no idea of what to do . 我 不 知道 该 怎么办 . +I like the way you walk . 我 喜欢 你 走路 的 方式 . +I would like to speak with you in private . 我 想 跟 你 私下 说话 . +I am from Portugal . 我 来自 葡萄牙 . +It is almost six o 'clock . 快要 六點 了 . +Is he tall ? 他 长 得 高 吗 ? +When I heard the news , I wanted to cry . 当 我 听到 这个 消息 时 , 我 想 哭 . +Japan is an extremely noisy country . 日本 是 一個 非常 嘈雜 的 國家 . +They will arrive a week from today . 他們 將 於 下 個 星期 的 今天 抵達 . +I hope you will get better soon . 我 想 你 快点 好 . +I know how we can help . 我 知道 我們 要 怎麼 幫忙 . +I am going to my room , where I can study . 我 要 回 房间 了 , 在 那儿 我 可以 学习 . +That could be too late . 那 可能 太晚 了 . +You 'd better not speak . 你 最好 不要 說 . +You should pay your rent in advance . 你 应该 提前 付 租金 . +Tom is tired . 湯姆 累 了 . +Tom did it the same way I did . 汤姆 我 按 我 做 的 办法 做 了 . +I think I mistakenly deleted that file . 我 觉得 我 是 误删 了 这个 文件 . +Scientists have not found a cure for cancer yet . 科学家 们 还 没有 找到 癌症 的 治疗 方法 . +Her mother is writing a letter . 她 的 母親 正在 寫信 . +Is there a zoo in Boston ? 波士顿 有 动物园 吗 ? +I believed that he would keep his promise . 我 相信 他 会 信守诺言 . +Tom has two children . Tom 有 兩個 孩子 . +The design itself is flawed . 設計 本身 有 問題 . +She is eating . 她 吃 . +I will let you decide . 我 让 你 来 决定 . +I am a professor . 我 是 大学教授 . +I have no problem with my boss . 我 和 老 闆 沒 有 問 題 . +The telephone was invented in 1876 by Bell . 電話 於 1876 年 由 貝爾 所 發明 . +I am happy to have so many good friends . 我 很 高 興有 這麼 多 好 朋友 . +How long will this rain go on ? 雨会 下 多久 ? +You can not achieve anything without effort . 没有 什么 是 不劳而获 的 . +Thousands of people died of hunger . 數千 人 死 於 飢餓 . +Who does the gun belong to ? 這 把 槍 是 屬 於 誰 的 ? +He made his son a wealthy man . 他 使 他 儿子 成 了 个 有钱人 . +I can not finish the job in so short a time . 我 無法 在 這麼 短 的 時間 內 完成 這份 工作 . +He accelerated . 他 提速 了 . +Let is not watch TV . 我們 不要 看電視 吧 . +It is going to rain , for sure . 要 下雨 了 , 我 敢肯定 . +According to the weather forecast , it will snow tomorrow . 天气预报 说 明天 会 下雪 . +Everyone but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom likes to make paper airplanes . 汤姆 喜欢 折纸 飞机 . +Accidents happen . 事故 發生 . +Tom has a beautiful car . Tom 有 台 靓车 . +I do not care a bit about the future . 我 不在乎 将来 . +Last year , he spent three months at sea . 去年 他 在 海上 度過 了 三個 月 . +Swimming makes your legs strong . 游泳 使 腿部 强健 . +He threw a stone into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +She goes to aerobics once a week . 她 每星期 去 作 一次 健美操 . +Who is worried about Tom ? 谁 担心 汤姆 ? +Here is the map you are looking for . 你 正在 找 的 地圖 在 這裡 . +I will not make that mistake again . 我 不 會 再犯 那 錯 了 . +This old house is haunted . 这个 老房子 闹鬼 . +What you are saying does not make sense . 你 说 的 没有 意义 . +They all burst out laughing . 他们 都 哈哈大笑 起来 . +God exists . 上帝 存在 . +The young man is a doctor . 这个 年轻人 是 医生 . +I had nothing in common with them . 我 同 他们 没有 过 共同之处 . +Was that too much ? 那 太 多 了 吗 ? +How do you know that belongs to Tom ? 你 怎麼 知道 那 是 湯姆 的 ? +Now , wait a second . 現在 等 一下 . +Can we save the planet ? 我们 能 拯救 这 颗 星球 吗 ? +This is impossible . 这 不 可能 . +When Dad finds out what you have done , he is going to hit the roof . 当 爸爸 发现 你 做 了 什么 的 时候 , 他 会 发疯 的 . +He lost his eyesight in the accident . 他 在 意外 中 失明 了 . +I have just finished my homework . 我 剛剛 完成 我 的 作業 . +He dried his wet clothes by the fire . 他 在 火 旁 烘干 他 的 湿 衣服 . +Do not shout at me . 別 對著 我 吼 . +I am looking forward to hearing from you soon . 我 期待 很快 就 能 收到 你 的 信 . +Tom hung the calendar on the wall . 湯姆把日 曆 挂 在 墙上 . +She made me wait for half an hour . 她 让 我 等 了 半小时 . +Who else uses this room ? 还有 谁 用 这个 房间 ? +He taught us that Columbus discovered America . 他 教導 我們 說 , 哥倫布 發現 了 美洲 . +Where in Turkey do you live ? 你 在 土耳其 哪儿 生活 ? +The lady tolerated the man . 那 女士 容忍 了 那 男人 . +I used to smoke a lot , but now I have quit . 我 以前 常 抽 菸 , 但 現在 我 戒掉 了 . +You dropped your pencil . 你 把 你 的 铅笔 弄掉 了 . +Tom has a plan . 湯姆 有個 計畫 . +He rarely stays home on Sunday . 他 很少 週日 待 在家 裡 . +He does not like traveling by air . 他 不 喜歡 搭 飛機 旅行 . +Your tie has come undone . 你 的 領 帶 鬆 了 . +I wonder why karaoke is so popular . 我 不 知道 為 什麼 卡拉 OK 如此 受歡 迎 . +We made the most of the opportunity . 我們 盡力 地 利用 了 這個 機會 . +If you sang , they 'd kick you out of the bar . 如果 你 唱歌 了 , 他们 就 会 把 你 踢 出 酒吧 +Would you like me to explain it ? 我 為 你 解釋 一下 好 嗎 ? +I study at school . 我 在 学校 读书 . +He walked in the park yesterday . 他 昨天 在 公園 裡 散步 . +I was lonely without her . 她 不 在 , 我 很 孤独 . +Our music teacher advised me to visit Vienna . 我們 的 音樂 老師 建議 我 去 維也納 看看 . +This job pays pretty well . 这 工作 报酬 很 高 . +When the cat is away , the mice will play . 山上 无 老虎 , 猴子 称 大王 . +I will think it over carefully . 我会 深思熟虑 . +She bought two pairs of socks . 她 買 了 兩雙 襪子 . +Please do not get me wrong . 千万 别误会 我 的 意思 . +Hurry up , or you will miss the bus . 快點 , 否則 你 會 錯 過 公車 . +We must get up at dawn . 黎明 時 我們 必須 起床 . +Take care of yourself . 照顾 好 自己 . +What are you eating ? 在 吃 什么 呢 ? +His daughter has become a pretty woman . 他 的 女兒 已經 成為 了 一個 漂亮 的 女人 . +Is this your first trip abroad ? 這 是 你 第一次 出國 嗎 ? +Keep them . 留 着 吧 . +I accepted the offer . 我 接受 了 报价 . +Are you Tom ? 你 是 汤姆 吗 ? +Do not fail to mail this letter . 不要 忘 了 寄 這 封信 . +They are armed . 他們 有 帶 武器 . +You do not have to buy me anything . 你 不必 为 我 买 什么 . +I hate myself sometimes . 偶尔 我会 讨厌 我 自己 . +When do you have to go to bed ? 你 甚麼 時候 必須 去 睡 覺 ? +Not all Germans like to drink beer . 不是 所有 的 德国人 都 喜欢 喝啤酒 . +We did not know what to do next . 我們 不 知道 下 一步 要 做 什麼 . +Do you really believe that story ? 你 真的 相信 那 故事 嗎 ? +I can not do any more than this . 我 無法 做 比 這 更 多 的 了 . +That is his house . 那 是 他家 . +What do you want me to do , Tom ? 你 想 讓 我 做 甚麼 , 湯姆 ? +My joints ache when it gets cold . 當天 氣變 冷 的 時候 , 我 的 關節 疼痛 . +The moonlight is beautiful . 月光 真美 . +I have a lot of homework . 我 有 很多 功課 . +It is hard to say . 難 講 喔 . +I am going to register at a gym . 我 去 註 冊 一家 健身房 . +English is easy to learn . 英語 簡單 易學 . +I had a wonderful time . 我 度 過 了 美好 的 時光 . +She always takes care of her children . 她 毫無間斷 地 照顧 自己 的 孩子 . +What do you think of that ? 你 認為 如何 ? +I will be free in ten minutes . 我 十分钟 后 有空 . +This medicine will do you good . 这 药 对 你 有 好处 . +She disliked her husband . 她 不 喜歡 她 的 丈夫 . +My neighbor is dog is dead . 我 鄰居 的 狗 死 了 . +They got to the hotel after dark . 天暗 後 他們 到 了 酒店 . +This is not a sentence . 這 不是 一個 句子 . +I am no quitter . 我 不 輕易 放棄 . +That is a pretty big assumption . 那 是 个 很大 的 设想 . +I do not care what they say . 我 不在乎 他們 說 什麼 . +It never rains but it pours . 不下雨 則 矣 , 一下 一定 是 傾盆 大雨 . +The student handed the examination papers in to the teacher . 該 學生 把 考試 卷 交給 了 老師 . +We 'd like another bottle of wine . 我們 想 再 來 一瓶 葡萄酒 . +I am full . 我 吃 飽 了 . +What does he want to do ? 他 到底 想 干嘛 ? +We ate sandwiches for breakfast . 我們 早餐 吃 了 三明治 . +Any child can do that . 任何 小孩 都 能 做到 . +We love Tom . 我们 爱 汤姆 . +His cottage is on the coast . 他 的 村屋 在 海岸 上 . +I am going to change my shirt . 我 要 去 換 我 的 襯衫 . +How much sugar should I put in your coffee ? 我 应该 往 你 的 咖啡 里 放 多少 糖 呢 ? +What happened here was unavoidable . 这里 发生 的 不可避免 . +Tom is not happy at all . 汤姆 根本 不 高兴 . +He found a ball in the garden . 他 在 花園 裡 找到 了 一顆 球 . +I have not eaten for many days . 我 好多天 没 吃 东西 了 . +I am thinking about you . 我 正 考慮 到 你 . +Whose shirt is this ? 這 是 誰 的 襯衫 . +Drinking lots of water is good for you , sure , but one can not drink that much water at once . 虽然 喝 多点 水 对 身体 有 好处 , 但是 一次性 喝 太 多 水 也 是 不好 的 . +Did you drive her home last night ? 昨晚 你 把 她 送 回家 了 吗 ? +Tom thanked Mary for coming . 汤姆 感谢 玛丽 的 光临 . +Although he was exhausted , he had to keep working . 尽管 他 累 极了 , 他 还 必须 工作 . +I asked her to wait a moment . 我 請 她 等 一會兒 . +We have no electricity . 我們 沒有 電 . +I have been to Rome . 我 去过 罗马 . +Tom can not afford that . 汤姆 负担 不起 . +I have nothing to fall back on . 我 没什么 可 依靠 的 了 . +I have the same trouble as you have . 我 有 跟 你 同樣 的 麻煩 . +There used to be a prison here . 這裡 以前 有 一座 監獄 . +Would you like to come ? 你 愿意 来 吗 ? +Bring me a glass of water . 给 我 一杯 水 . +I had a phone call from him . 我 接到 了 他 打來 的 電話 . +It is no use talking with him . 跟 他 說 話 沒用 . +I can not lift my right arm . 我 無法 舉起 我 的 右 手臂 . +" Will he pass the examination ? " " I am afraid not . " " 他 會 通過 考試 嗎 ? " " 我 怕 是 不 會 . " +Where are your things ? 你們 的 東西 在 哪裡 ? +He came to see me . 他 來看 我 了 . +Tom is not an elected official . 湯姆 不是 選 出來 的 官員 . +I have many discs . 我 有 许多 唱片 . +I can not tell if you are joking . 我 無法 分辨 你 是否 在 開 玩笑 . +We are going to leave tomorrow . 我們 明天 要 離開 . +I feel very sick . 我 覺得 我 病 得 很 厲害 . +Finally , he reached his goal . 他 终于 达到 了 自己 的 目标 . +He came back not because he was homesick , but because he was running short of money . 他 不是 因為 想 家 , 而是 因為 沒錢 才 回來 的 . +Who do you think we are ? 你 认为 我们 是 谁 ? +Have you eaten your dinner already ? 你 吃 過 晚 飯 了 嗎 ? +I wish I could have spoken Spanish . 要是 我 會 說 西班牙 語 就 好 了 . +He had his sister help him paint the wall of his room . 他 让 妹妹 帮 他 涂 他 房间 的 墙 . +Do you study at a private school ? 你 在 私立学校 读书 吗 ? +His hat is not on straight . 他 的 帽子 没戴 正 . +He got his wife to mend his shirt . 他 让 他 的 妻子 补好 衬衫 . +I spent 10 dollars on it . 我 在 这 东西 上 花 了 十美元 . +I sometimes still think about her . 有 時候 , 我 還 是 會 想起 她 . +I believe in what they said . 我 相信 他們 說 的 話 . +It all depends on you . 这 都 取决于 你 . +Let me cut the carrots . 讓 我 來 切 胡蘿 蔔 . +The cough syrup has a licorice flavoring . 咳嗽 糖浆 有 股 甘草 的 味道 . +I am very happy . 我 很 快乐 . +I wish that we could spend more time together . 我 希望 我们 有 更 多 时间 呆 在 一起 . +Mary has just come home . 瑪麗剛 剛 回家 . +The street was crowded with people . 街道 上 擠滿 了 人 . +Are not there any qualified applicants ? 没有 合格 的 申请人 吗 ? +I am not as optimistic as you . 我 没有 你 那么 乐观 . +This novel is difficult to understand . 这部 小说 很 难 读懂 . +I know that can not really happen . 我 知道 那 不 會 真的 發生 . +I come from a large family . 我 从 一个 大家庭 来 . +Our friend finished the race in second place . 我们 的 朋友 完成 了 比赛 , 得 了 第二名 . +Why do you think that I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +That affair made him famous . 那 件 事情 使 他 一舉 成名 . +I am blessed with good health . 我 很 幸運 有 健康 的 身體 . +The train has already gone . 列车 已经 出发 . +We are supposed to know the rules . 我们 应该 了解 相应 的 规则 . +The potato was so hot that it burned my mouth . 土豆 太 热 , 以至于 烫 到 了 我 的 嘴 . +Ignore Tom . 别理 汤姆 . +She glanced briefly at the newspaper . 她 很快 地 瞟 了 一眼 報紙 . +A new team was formed in order to take part in the boat race . 为了 参加 划船 比赛 , 一支 新 的 队伍 组成 了 . +I just need a break . 我 只 想 休息 一下 +Stuff happens . 事情 难免会 发生 . +It is OK . 没关系 . +It is an hour is walk to the station . 步行 到 車 站 要 一小 時 . +It may or may not be true . 這 可能 是 真的 , 也 可能 不是 . +Tom seems to be much happier than me . 汤姆 看来 比 我 高兴 . +When the phone rang , I was watching TV . 电话响 的 时候 , 我 在 看电视 . +You should see a doctor . 你 應 該 去 看 醫生 . +Your dog is very fat . 你 的 狗 非常 胖 . +Do not let appearances deceive you . 不要 被 外貌 蒙蔽 了 . +Winter is coming . 冬季 快 來 了 . +How about you ? 你 怎麼樣 ? +They knocked down a part of the wall . 他們 拆掉 了 一部分 牆 . +Tom could not hold back his anger . 汤姆 没法 压抑 自己 的 怒火 了 . +The runner jumped over the hole in the ground . 那个 赛跑 运动员 跃过 了 地面 上 的 洞 . +Please tell me about your trip . 請 告訴 我 有 關 你 旅行 的 事 . +They are at lunch . 他们 在 吃 午饭 . +There is always someone talking . 總是 會 有人 說 話 . +He knocked on the door . 他 敲 了 門 . +The princess begged forgiveness from the emperor . 公主 向 皇帝 请求 饶恕 . +He played tennis . 他 打 了 网球 . +I caught the man stealing the money . 我 抓到 了 這個 男人 正在 偷 錢 . +This song is very popular in Japan . 這 首歌曲 在 日本 很 受歡 迎 . +I have decided to carry on the work . 我 决定 继续 工作 . +My opinion is different from yours . 我 的 看法 跟 你 的 不同 . +You must clear the table . 你 必须 把 桌子 清理 干净 . +What do you really want to say ? 你 实际上 想 说 什么 ? +This sentence is grammatically correct . 这个 句子 在 语法 上 是 正确 的 . +You must get up a little earlier . 你 该 早 一点 起床 . +I grow tomatoes and onions in my garden . 我 在 花园 种 了 番茄 和 洋葱 . +He is very busy writing stories . 他 忙于 写 故事 . +I have a slight headache now . 现在 我 有 些许 头痛 . +Taking off is easier than landing . 起飛 比 降落 容易 . +I am not good at carpentry . 我 不 擅長 做 木工 . +I said it might rain . 我 说 了 可能 要 下雨 . +I think it will be hot today . 我 觉得 今天 会 很 热 . +Tom likes me the most . Tom 最 喜欢 我 . +Do you know which deity this temple is dedicated to ? 您 知道 这 座 庙宇 供奉 的 是 哪个 神 吗 ? +I am alarmed by your irresponsible attitude . 我 对 你 不负责任 的 态度 感到 惊讶 . +I am young . 我 還 年輕 . +The fish tasted like salmon . 這 魚 吃著 像 三文 魚 . +I have a bad headache . 我 頭 疼 得 厲害 . +He is the chairman of the committee . 他 是 委員會 主席 . +She is dieting . 她 在 节食 . +I am home . 我 在家 裡 . +She used to go to the movies on Sundays . 她 從 前 會 在 星期天 去 看 電影 . +I will not do this again . 我 不想 再 做 這個 了 . +He invested his money in stocks . 他 把 錢 投資 於 股票 . +We have to continue to do our jobs . 我们 要 继续 我们 的 工作 . +I agreed with him on the plan . 對 於 這個 計劃 我 同意 他 的 意見 . +Tom hurried so he would not miss the train . 汤姆 加紧 步伐 以 不错 过 火车 . +The same thing is happening here in Boston . 同樣 的 事 在 這 - 波士 頓 發生 . +Are you planning to help them ? 你 打算 幫助 他們 嗎 ? +She mistook my brother for me . 她 把 我 哥哥 誤認 為 我 . +" Will you be at my party tomorrow night ? " " I will try to be there . " “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 尽量 来 . ” +There is nothing else we can do . 没有 我们 能 还 做 的 事 . +Perhaps it was worth it . 可能 是 值得 的 . +You are impatient . 你 缺乏 耐心 . +He might not be happy . 他 可能 會 不 高興 . +How often does the bus run ? 公共汽车 多久 发车 一次 ? +Tom can not drive a bus . 湯姆 不能 開 巴士 . +We had to live together . 我們 要 在 一起 生活 . +Why did you not tell me the truth ? 为什么 你 不 告诉 我 真相 ? +My father bought me a bicycle . 我 父亲 给 我 买 了 一辆 自行车 . +Tom stopped me from entering the bank . 汤姆 阻止 我 进 银行 . +He is staying at his aunt is . 他 呆 在 他 阿姨 家 . +My eyes are watering . 我 在 流眼淚 . +We had a heavy frost this morning . 今天 早上 天氣 嚴寒 . +Do not hesitate to ask questions . 不要 猶豫 去 問 問題 . +This book is yours . 這 本書 是 你 的 . +Take your time . There is no hurry . 慢慢来 , 没 那么 急 . +You do not seem happy . 你 看起来 不 高兴 . +Please say it more loudly . 請 說 更 大聲 一點 . +What I am about to say is strictly between you and me . 我 要说 的 只能 是 你 知 我 知 . +He always mistakes me for my sister . 他 老 是 把 我 和 我 姐姐 搞错 . +A green carpet will not go with this blue curtain . 绿色 的 毯子 和 这条 蓝色 的 帘子 不配 . +I am ready to leave . 我 准备 好 出发 了 . +He told the truth . 他 說 了 實話 . +I have had enough . 我 已經 受夠 了 . +He has a lot of hobbies . 他 有 很多 兴趣爱好 . +My back still hurts . 我 的 背 還 在 痛 . +Can I see that one ? 我 能 看 那個 嗎 ? +It is a good deal . 这 是 一笔 不错 的 交易 . +Tom gave us nothing . 汤姆 什么 也 没给 我们 . +The cost of living has gone up . 生活 費 提高 了 . +How many cats do you have ? 您 有 几只 猫 ? +That house belongs to him . 這棟 房子 是 屬 於 他 的 . +Let Tom live . 給 湯姆 活路 ! +He threw the ball . 他 把 球 扔 了 . +Where are we eating breakfast ? 我們 在 哪裡 吃 早餐 ? +The third quarter GNP growth was 1 % over the preceding quarter . 第三季 國 民生 產總值 較 上 一季 成長 了 1 % . +Is this your book ? 這 是 你 的 書 嗎 ? +I have been careful my whole life . 我 一生 都 谨慎 行事 . +Do not exceed the speed limit . 不要 超速 . +Try resting for now . 现在 休息 一下 . +Can Tom help us ? 汤姆 可以 帮 我们 吗 ? +He wanted to reduce the tax on imports . 他 想要 减少 进口品 的 税 . +He was killed in a car accident . 他 死 於 一場 車禍 . +I am looking for a warm , woolen skirt . 我 想 找 一件 溫暖 的 羊毛 裙 . +You must come back before it gets dark . 你 必须 在 天黑 前 回来 . +She put her CDs in a row on the shelf . 她 把 她 的 CD 在 書 架上 排成 一排 . +I guess they really were not so happy . 我 猜 他們 真的 不 太 高興 . +He works from nine to five @-@ thirty . 他 從 早上 九點 工作 到 下午 五點半 . +The area of the factory is 1,000 square meters . 工厂 的 面积 是 1000 平方米 . +He arrived in Tokyo yesterday . 他 昨天 到 了 东京 . +I even work on Sundays . 我 甚至 在 週日 工作 . +Our new home has an elevator . 我們 的 新家 有一 臺 電 梯 . +You are not special . 您 不 特別 . +She gave in to the temptation . 她 屈服 於 誘惑 了 . +Could you do me a favor ? 請 你 幫 我 一個 忙好 嗎 ? +I gave up all hope of survival . 我 放棄 了 所有 生存 的 希望 . +Tom slept with his shoes on . 汤姆 穿着 鞋 睡 了 . +He is rotten to the core . 他 壞 透 了 . +They are sure to fall in love . 他们 肯定 会 相恋 的 . +You are irresistible . 你 令人 难以 抗拒 . +I did it . 我 做到 了 ! +There was not anybody in the house . 沒 有人 在家 . +Whose cup is this ? 这 是 谁 的 杯子 ? +She is a very good teacher . 她 是 个 非常 好 的 老师 . +It will be snowing when we arrive at Shiga Heights . 我们 到达 志 贺 高原 时会 下雪 . +Is Tom ready for that ? 汤姆 准备 好了吗 ? +The artist who illustrated this book is very good . 給 這 本書 畫 插畫 的 畫家 很 好 . +I bought this book at Maruzen Bookstore . 我 在 书商 Maruzen 那里 买 了 这 本书 . +She does not have a ticket . 她 沒 有 票 . +You should have done it earlier . It cannot be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +We probably should have left early . 我們 可能 應該 早點 走 . +How often do the buses depart ? 公共汽车 多久 发车 一次 ? +Edison was not a bright student . 爱迪生 不是 个 优秀 的 学生 . +I do not want to wait that long . 我 不想 等 那么 久 . +It would take forever for me to explain everything . 要 都 解释 的话 , 需要 一辈子 的 时间 . +I will teach you how to drive a car . 我会 教 你 怎么 开车 . +This really is a nice surprise . 真是 个 惊喜 ! +Are you ready ? 您 准备 好了吗 ? +I am playing football now . 我 現在 正在 踢足球 . +Had he known what was about to happen , he would have changed his plan . 要是 他 知道 会 发生 什么 , 他 就 会 改变 计划 . +Tom is comment was inappropriate . 湯姆 的 評論 不合 適 . +Is something wrong ? 有 什么 不对 吗 ? +Please do not look at me like that . 請 不要 那樣 看 我 . +I could not agree with you more . 我 再 同意 你 不 過 了 . +I have climbed Mt . Fuji twice . 我 爬 過 兩次 富士山 . +Tell me how you are feeling . 告訴 我 你 的 感受 . +For some reason the microphone did not work earlier . 剛才 我 的 麥克風 沒起 作用 , 不 知道 為 什麼 . +He is on the radio . 他 上 电台 了 . +He got a good grade in mathematics . 他 數學 得 了 一個 好 成績 . +I had my composition corrected by the teacher . 我 把 我 的 作文 拿 給 老師 訂正 . +Can you lower the price ? 可以 便宜 點 嗎 ? +The policeman was drunk . 警察 醉 了 . +She spent all afternoon cooking . 她 花 了 整個 下午 作飯 . +Please come as soon as possible . 请 尽快 过来 . +How long did you stay ? 你 待 了 多久 ? +Let is hope you do not need it . 希望 你 用不着 它 . +I can only see it getting worse . 我 只 看见 它 变得 更糟 了 . +She stayed at home by herself . 她 獨自 留在 家裡 . +Tom is standing in the corner of the room . 汤姆 正 站 在 房间 的 角落 . +That music is worth listening to many times . 这 音乐 值得 听 许多次 . +I was deeply impressed by the scenery . 我 被 这 景色 深深 迷住 了 . +We took part in the discussion . 我們 參加 了 討論 . +Today is my birthday . 今天 是 我 的 生日 . +Tom started singing . 湯姆 開始 唱歌 . +Experience is the best teacher . 經驗 是 最好 的 老師 . +The countryside has many trees . 乡间 有 很多 树 . +He predicted there would be rain . 他 预测 会 下雨 . +He tends to be late for meetings . 他 開會 往往 會 遲 到 . +Put some salt into the boiling water . 放 點 鹽 到 滾 水裡 . +This train stops at every station . 這 班 火車 每站 都 停 . +Parents teach their children that it is wrong to lie . 父母 教育 他们 的 孩子 说谎 是 不好 的 . +That changed everything . 那 改变 了 一切 . +I know it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +Every rose has its thorns . 沒有 不 帶刺 的 玫瑰 . +This shirt needs ironing . 这 衬衫 需要 熨 . +What do you plan to sell ? 你 計劃 賣 甚麼 ? +We all miss you very much . 我们 都 非常 想 你 . +Let is go ! 走 吧 . +I do not like tea , so I generally drink coffee for breakfast . 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 喝咖啡 . +That really whets my appetite . 那 很 開 胃 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +War must be avoided at all costs . 戰爭 必須 不惜一切 代價 地 去 避免 . +Is there any possibility of his resigning ? 他 有 可能 辭職 嗎 ? +Are you sure Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +We are all hungry . 我們 都 餓 了 . +I tried to escape . 我 试图 逃跑 . +We ran after the cat . 我們 追著 貓 . +He gave me a smile of recognition . 他 給 了 我 一個 認可 的 微笑 . +There is something odd going on . 正 有 什么 奇怪 的 事情 发生 着 . +It was not me who told you not to do that . 不是 我 告訴 你 不要 去 做 的 . +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Tom failed . 汤姆 失败 了 . +Everyone was happy . 每個 人 都 高興 . +Have you finished your homework ? 你 做 完 作業 了 嗎 ? +Watching TV is a passive activity . 看電視 是 一種 被動 的 活動 . +I wonder why Tom is so excited . 我 奇怪 為 甚麼 湯姆 那麼 激動 . +Well , have you decided ? 那麼 , 你 決定 好 了 嗎 ? +My dog often lies on the grass . 我家 的 狗 經常 躺 在 草地 上 . +Come on , hurry up . 来 吧 , 快 一点 . +I am going to go sit down . 我 要 坐下 . +I like strawberry ice cream . 我 喜歡 草莓 味 的 冰淇淋 . +I ordered those books from Germany . 我 從 德國 訂購 了 那些 書 . +Please wait for me at the station . 請 在 車站 等 我 . +I tried to listen to him carefully . 我 試著 仔細 地 聽 他 說 話 . +You will never be alone . 你们 永远 不会 一个 人 的 . +It cost me 50 dollars to have my watch fixed . 我 花 了 五十 美元 修好 了 手表 . +Now who is going to help you ? 現在 誰 要 幫 你 ? +Have you made your decision ? 你 决定 好了吗 ? +She knows how to do the crawl . 她 知道 怎麼 游 自由式 . +Where am I ? 我 在 哪裡 ? +I received her letter yesterday . 昨天 我 收到 了 她 的 信 . +If you do not know the way , ask a policeman . 要是 不知 道路 的话 去 问 警察 吧 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 要 怎麼 去 火車 站 嗎 ? +The light suddenly went out . 灯 突然 灭 了 . +When does it arrive ? 它 什么 时候 到 ? +Tom is not here yet , but we expect him soon . 湯姆 還 不 在 這裡 , 但 我們 期待 他 很快 就 來 . +How about another cup of coffee ? 要 不要 再來 一杯 咖啡 ? +She always smiles at me . 她 總是 對 我 微笑 . +Tom stood behind me . 汤姆 站 在 我 后面 . +I like being on the team . 我 喜欢 在 队伍 里 . +I saw him crossing the street . 我 看见 他 穿过 了 马路 . +Get out of here . 離開 這裡 . +Speak softly . 你 说话 小点声 . +He can scarcely write his name . 他 很 难 写 他 的 名字 . +They live in peace . 他们 过 着 和平 的 生活 . +Spring is the best season to visit Kyoto . 春天 是 访问 京都 最好 的 季节 . +That is just what I wanted . 我 想要 的 就是 这个 . +I was at home . 我 刚才 在家 . +There were few children in the room . 房间 里 没 几个 小孩子 . +Tom donates half his salary to his favorite charity . 汤姆 捐 一半 他 的 薪水 给 他 最 喜欢 的 慈善机构 . +You can eat whatever you like . 你 可以 吃 你 喜歡 的 東西 . +I can not hear you . 我 听不见 你 . +The mother occasionally reread her son is letter . 这位 母亲 偶尔 会 重温 她 的 儿子 的 信件 . +If we knew what we were doing , it would not be called research , would it ? 如果 我们 知道 我们 在 做 什么 , 那么 这 不能 称之为 研究 , 是 吗 ? +He missed the last train . 他 错过 了 最后 一班 火车 . +She needed some money to buy something to feed her dog . 她 需要 一些 钱 来 买点 东西 喂 她 的 狗 . +You have no need to be ashamed . 你 不 需要 害羞 . +I believe the actions that he took were right . 我 相信 我们 采取 的 行动 是 对 的 . +What is the title of your new book ? 你 新書 的 書名 是 什麼 ? +You do not like sashimi , do you ? 你 不 喜 歡生 魚片 , 是 嗎 ? +He had a smile on his face . 他 面帶 笑容 . +It is obvious why his stomach hurts . 他 為 什麼 會 胃痛 的 原因 很 明顯 . +He lost a book . 他 弄 丟了 一本 書 . +He stole money from her wallet . 他 從 她 的 錢 包 偷 了 錢 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +My son is taller than I am . 我 兒子 比 我 高 . +His name is not on the list . 他 的 名字 不 在 名单 里 . +What is Tom is blood type ? 湯姆 的 血型 是 甚麼 ? +She is going to wash the bike this afternoon . 她 下午 会 洗 自行车 . +You must not stay in bed . 你 不能 待 在 床上 . +Why do you want to know what I am thinking ? 為 什麼 你 想 知道 我 在 想 什麼 ? +That is a bad day for me . 那天 我 不行 . +I made the decision by myself . 我 自己 做 了 决定 . +I give you my word . 我 向 你 保证 . +The hunters aimed at the elephant . 猎 人们 用 枪 瞄准 了 大象 . +She stooped to pick up a pebble . 她 撿 起 了 一塊 鵝 卵石 . +If you are not listening to the radio , turn it off . 要是 你 不 在 听 广播 的话 , 就 关掉 它 . +We were unable to make contact with them until it was too late . 我们 联系 上 他们 已经 为时已晚 . +It is nearly three o 'clock . 將近 三點 了 . +Do not let your feelings show . 不要 流露 你 的 感情 . +Tom was the last one off the bus . 湯姆 是 最 後 下 巴士 車 的 人 . +He is sitting at an empty table . 他 坐在 一张 空 桌旁 . +He carried a rifle on his shoulder . 他 把 步槍 背 在 他 的 肩上 . +He is an agreeable person . 他 是 个 好脾气 的 人 . +She took the book back to the library . 她 把 书 带回 了 图书馆 . +I 'd like your help . 我 想 請 你們 幫 個 忙 . +I planted a peach tree in my yard . 我 在 我 的 院子 里 种 了 棵 桃树 . +Tom was sick in bed last Sunday . 湯姆 上 週日 臥病 在 床 . +It is hard to maintain one is reputation . 維持 一個 人 的 聲譽 是 很 難 的 . +I will buy this . 我 要 買 這個 . +I met her on a certain winter day . 冬天 的 某日 , 遇到 了 她 . +The dog was hit by a car . 狗 被 車 撞 了 . +I put the money into the safe . 我 把 錢 放入 保險櫃 裡 . +Please wait for me at the entrance of the building . 请 在 建筑 的 入口处 等 我 . +We are good friends . 我們 是 好 朋友 . +It was not interesting at all . 一点 也 不好玩 . +I will bring it to you tomorrow . 我 明天 带给 你 . +How far away are we ? 我们 有 多 远 了 ? +The girl was afraid to jump down from the roof . 小女孩 害怕 从 屋顶 上 跳下来 . +I have absolute trust in you . 我 絕對 信任 你 . +He turned pale with fright . 他 嚇 得 臉色 發白 . +My home is far away . 我家 很远 . +You are the new secretary , are not you ? 您 是 新来 的 秘书 吧 , 不是 吗 ? +I will show you my room . 我 會 帶 你 看看 我 的 房間 . +Where is your house ? 你家 在 哪裡 ? +Do you happen to know his name ? 你 說 不定 知道 他 的 名字 ? +All that Jack does is sleep . 所有 傑克 做 的 事 就是 睡覺 . +I went into the navy . 我 加入 了 海軍 . +What a pity ! 多 遗憾 啊 ! +You do not need to hurry . 你 不必 著急 . +Mother Teresa was given the Nobel prize . 特蕾 莎 修女 被 授予 諾貝爾獎 . +I am too short . 我 太矮 了 . +Are you afraid of being fired ? 你 害怕 被 解雇 吗 ? +Let me have a try . 让 我 试试 . +He always plans a thing out carefully before he does it . 他 每件事 做 之前 都 會 細心 計劃 . +Are you sure that you want to go there ? 你 确定 你 要 去 那儿 吗 ? +He does not always come late . 他 不是 总来晚 . +You are taller than she is . 你們 比 她 高 . +If it had not been for your help , I could not have completed the work . 如果 不是 因为 有 你 的 帮助 , 我 不 可能 完成 了 这个 工作 . +This is Room 839 . 这 是 839 号 房间 . +She likes taking pictures . 她 喜欢 拍照片 . +I ordered several books from England . 我 从 英国 订 了 好几 本书 . +Tom wants to sit down . 汤姆 想 坐下 . +The dog saved the girl is life . 這 隻 狗 救 了 這 個 小女孩 的 命 . +My mother bought two bottles of orange juice . 我 母亲 买 了 两瓶 橙汁 . +I think you should do that before you go home today . 我 認為 你 該 在 今天 回家 前 做 . +What do you think I was doing before ? 你 觉得 我 之前 在 做 什么 ? +Turn on the radio . 打开 收音机 . +He took it literally . 他 按照 字面上 的 意思 . +Her hair is long and beautiful . 她 的 頭 髮 長 而 美 麗 . +We have to do our best . 我们 应该 做到 最好 . +Tom took out his key and opened the door . 汤姆 掏出 钥匙 开了门 . +He came at three in the afternoon . 他 在 下午 三點鐘 的 時候 來 了 . +I have two cars . 我 有 两辆车 . +May I play the piano ? 我 可以 彈 鋼琴 嗎 ? +I am free today . 我 今天 有空 . +Are you looking for something ? 您 在 找 什么 吗 ? +At first , I had no idea why . 起初 我 不 知道 為 什麼 . +Do not make noise when you eat soup . 當 你 喝 湯 的 時候 不要 發出 聲音 . +Do you have your driver is license ? 你 有 駕駛 執照 嗎 ? +We all fell asleep . 我们 都 睡着 了 . +It is so different now . 现在 真是 不 一样 了 . +Is there anything else you 'd like ? 还有 什么 想要 的 吗 ? +What do you want ? 你 想要 什么 ? +He had his hair cut short . 他 把 头发 剪短 了 . +Leaves begin to fall in October . 樹葉 在 十月 開始 掉落 下來 . +He is a good tennis player . 他 是 个 网球 高手 . +He has made a fortune through hard work . 他 通过 努力 挣 了 大笔 钱 . +Beware of the dog ! 小心 狗 ! +It will not take much time . 不 會 花 很多 時間 的 . +His mother did not want to do it . 他 的 母親 不想 做 . +I made him paint the house . 我 讓 他 刷 房子 . +Why did you say such a thing ? 你 為 什麼 說 了 這樣 的 事 ? +Please be ready in fifteen minutes . 请 在 15 分钟 内 准备 好 . +I was afraid I might be late . 我 怕 我 可能 遲 到 了 . +He tries . 他 来 试试 . +I can swim very fast . 我 游泳 可以 游得 很快 . +We went down a river by canoe . 我們 乘著 獨 木舟 向河 的 下游 而 行 . +Tom drank his orange juice . Tom 喝 了 他 的 柳橙汁 . +I will join you all later . 我 晚会 加入 你们 . +Turn the radio up a little . 把 收音 機 開 大聲 一點 . +Tom looks pale . 湯姆 看 起來 很 蒼白 . +Tom is miserly . 汤姆 很小 气 . +My father will come home at the end of this week . 我 爸爸 会 在 这 周末 回家 . +If you get sleepy , just tell me . 困 了 的话 就 说 哦 . +Tell me how he got it . 告诉 我 他 怎么弄 到 的 . +He likes to listen to the radio . 他 喜歡 聽 收音 機 . +Do you think I am made of money ? 你 以为 我 造钱 啊 ? +Are you coming next week ? 你 下週 來 嗎 ? +She gave me a watch . 她 給 了 我 一支 手 錶 . +Throw the ball back to me . 把 球 丟 還 給 我 . +Books are for people who wish they were somewhere else . 書 是 為了 那些 希望 自己 在 另 一個 地方 的 人 . +Close your eyes . 闭 上 你们 的 眼睛 . +They live on the other side of the road . 他們 住 在 路 對 面 . +How is everything at work ? 工作 怎么样 ? +Did you have a good time yesterday ? 你 昨天 玩 得 開心 嗎 ? +I heard Tom muttering something in French . 我 听到 汤姆 在 用 法语 嘀咕 些 什么 . +He did not get up early . 他 没有 早起 . +Is it far ? 遠 嗎 ? +No matter what happens , I am prepared . 不管 發生 什麼 事 , 我 都 準備 好 了 . +What do you think of Japanese food ? 你 覺得 日本料理 怎麼樣 ? +I know the truth . 我 知道 真相 . +Do not put the cart before the horse . 不要 把 馬車 放在 馬 的 前面 . +Ladies and gentlemen , due to an accident at the airport , our arrival will be delayed . 女士们 , 先生 们 , 由于 机场 的 意外 情况 , 我们 的 着陆 将 被 推迟 . +I want to buy a pair of pants . 我 想 買 條 褲子 . +Tom cleared his throat and continued to speak . 汤姆 咳嗽 了 一下 然后 接着 讲 . +How did you know that was my favorite one ? 你 怎麼 知道 那 是 我 最 喜歡 的 ? +I am an electrician . 我 是 一名 電工 . +Can you stay for a while ? 你 能待 一会 吗 ? +What type of food do you like ? 你 喜欢 什么样 的 食物 ? +We have not done well . 我们 没有 做好 . +They had their houses destroyed by a strong earthquake . 他們 的 房屋 被 強烈 地震 摧毀 了 . +A day without laughter is a day wasted . 没有 笑声 的 一天 肯定 是 最为 虚度 的 一天 . +I am not sure what is going on . 我 不 清楚 發生 了 甚麼 . +She will make him a good wife . 她 会 是 他 的 好 妻子 . +I could not afford to buy a bicycle . 我 买不起 自行车 . +You will succeed if you try . 如果 你 尝试 的话 , 你 会 成功 的 . +Please think about it . 請 你 考慮 考慮 . +I worked all this week . 这周 我 一直 在 工作 . +Let is find out who sent this to us . 讓 我們 查查 誰 送 給 我們 這個 . +He accepted my idea . 他 接受 了 我 的 主意 . +Look at me with your books closed . 把 你 的 書 閤 起 來 看 著 我 . +I have been busy since yesterday . 我 從 昨天 開始 一直 忙著 . +I want you to sleep on it . 我 想要 你 睡 在 它 上边 . +We will be in Boston for another three weeks . 我們 還 會 在 波士 頓待 三個 月 . +Thanks for telling me the truth . 感谢 告诉 我 真相 . +How much is the bus fare ? 公車 票價 多少 錢 ? +I do not think he will be able to do it by himself . 我 不 觉得 他 自己 一个 人会 做到 . +We will wait and see what happens . 我們 要 等等 看會 發生 甚麼 . +They should all be fired . 他們 全部 都 應該 被 開除 . +Please show me what to do next . 請 讓 我 看看 下 一步 該 做 什麼 . +I am curious . 我 很 好奇 . +The bell has not rung yet . 钟 还 没响 . +About how long will it take to get there by bus ? 搭 公車 到 那裡 大約要 花 多久 的 時間 ? +Tom will never see you again . 汤姆 永远 也 不会 见 你 了 . +I think that it is true . 我 認為 這 是 真的 . +What is the climate there like ? 那里 的 气候 怎么样 ? +I talked to him on the telephone yesterday night . 我 昨晚 跟 他 通电话 了 . +Keep your mouth shut and your eyes open . 闭嘴 看着 . +I would like to get married to someone like you . 我 想 跟 你 这样 的 人 结婚 . +She looks blue for some reason . 由于 某些 原因 , 她 看起来 很 忧伤 . +I may have made a mistake . 我 可能 搞错 了 . +My father insisted that I should go to see the place . 我 爸爸 坚持 要 我 去 那 地方 看看 . +My brother is a professor . 我 哥哥 是 教授 . +Next time it will be my turn to drive . 下次 该轮 到 我 开车 了 . +Tom did not deny he did that . 汤姆 没有 否认 他 做 的 事情 . +Tom thinks I am too young . 汤姆 认为 我 太 年轻 . +This bike needs to be repaired . 这辆 自行车 需要 修理 . +Let me show you around our house . 讓 我 帶 你 四處 看看 我們 的 房子 . +Gold is far heavier than water . 金子 比水 重得 多 . +We are going to do that right away . 我們 馬 上 就 去 做 . +Tom has written to me . 汤姆 写给 我 了 . +I do not think that he is right . 我 不 認為 他 是 對 的 . +Please wash it . 请 清洗 它 . +He went there ten years ago . 他 十年 前去 了 那 ‘ 里 . +Someone yelled for help . 有人 呼救 . +Do you trust her ? 你 相信 她 嗎 ? +I did not catch your last name . 我 没 听到 您 的 姓 . +This amount includes tax . 这个 价格 含 了 税 . +She is always at the bottom of the class . 她 总是 在 班上 拿 倒数 第一 . +I managed to repair my car by myself . 我 自己 搞定 , 修好 了 我 的 车 . +How was your summer vacation ? 暑假 過 得 如何 ? +My grandmother made me a new dress . 我 的 祖母 做 了 一套 新 衣服 給 我 . +Will it be much longer ? 還要 很 久 嗎 ? +Give it to me , please . 請 把 它 給 我 . +I found it by chance . 我 偶然 找到 了 它 . +Can you move this desk by yourself ? 你 能 自己 搬 這 張 桌子 嗎 ? +I bought her a watch . 我 買 了 一支 手 錶 給 她 . +It is a pity when somebody dies . 有人 死 了 的 时候 真是 遗憾 . +Tom does not like to discuss his work . 汤姆 不 喜欢 谈论 他 的 工作 . +We must observe the rules . 我们 必须 遵守规则 . +Do you like playing volleyball ? 你 喜歡 打 排球 嗎 ? +My mother washes clothes every day . 我 媽媽 每天 洗衣服 . +There is not a moment to waste . 一刻 也 不 浪費 . +The mouse ran into the hole . 這 隻 老鼠 跑 進 洞 裡 . +I understood everything Tom said . 我 明白 湯姆 所 說 的 一切 . +Do you know where Tom lives ? 你 知道 汤姆 住 哪儿 吗 ? +Tom wanted to follow in his father is footsteps . 汤姆 想 追随 他 父亲 的 脚步 . +You must build up your courage . 你 一定 要 鼓起勇气 . +How about something cold to drink ? 喝 點 冷 飲 怎樣 ? +I still do not think I am wrong . 我 還 是 不 認為 我 錯 了 . +Please divide the pizza into three parts . 請 把 披薩 分成 三份 . +I bathe every day . 我 每天 都 洗澡 . +Are they treated fairly ? 他们 受到 公正 对待 了 吗 ? +Which team do you think will win ? 你 覺得 哪 支球 隊會 贏 ? +I have had just about enough of her . 我 真的 受夠 了 她 . +May I go now ? 我 现在 能 去 了 吗 ? +The children slid down the bank . 孩子 們 滑下 岸邊 . +Give my love to your kids . 替 我 向 你 的 孩子 們 問 好 . +I had a feeling this might happen . 我 早就 有感 覺到 這 可能 會 發生 . +He told us such a funny story that we all laughed . 他 给 我们 讲 了 一个 有趣 的 故事 , 我们 都 笑了起来 . +I found this book interesting . 我 觉得 这 本书 很 有意思 . +I do not want to look stupid . 我 不想 看起 來 傻 . +I am not greedy . 我 不 貪婪 . +Spring is my favorite season . 春天 是 我 最 喜歡 的 季節 . +The girl playing the piano is my sister . 弹钢琴 的 女孩 是 我 妹妹 . +I want you to read this letter . 我 想 你 读 一下 这 封信 . +The service here is awful . 這裡 的 服務 很 糟糕 . +Is this your family ? 这 是 你 的 家人 吗 ? +He likes to build model planes . 他 喜歡 建造 模型 飛機 . +Tom is a good cook . 汤姆 是 个 好 厨师 . +My daughter loves jumping rope . 我 女兒 喜歡 跳 繩 . +I must hand in the report today . 我 今天 必須 交報 告 . +History is not his major subject . 历史 不是 他 的 主修 课 . +Am I allowed to use this ? 能 让 我 用 这个 吗 ? +He is afraid of the dog . 他 怕 那 只 狗 . +Your pen is better than mine . 你 的 笔 比 我 的 好 . +I am sorry , I left my homework at home . 抱歉 , 我 把 作业 落 在 家里 了 . +This has nothing to do with me . 此事 与我无关 . +He should have bought a used car . 他 應 該 買 一輛 二手 車 的 . +Are you free tomorrow afternoon ? 你 明天 下午 有空 吗 ? +I asked Tom to close the door . 我 要求 湯姆 關門 . +The carpenter brought his tools along . 木匠 带著 他 的 工具 . +She was out of Japan last year . 去年 她 离开 了 日本 . +I know everything that you have done . 我 知道 你 做 的 所有 事 . +Africa is a continent , but Greenland is not . 非洲 是 一個 大陸 , 而 格陵蘭 不是 . +Dead men tell no tales . 死 人 不 會 告密 . +There is little water in the pond . 這個 池塘 裡 的 水 很少 . +That actually makes a lot of sense . 那个 相当 能 说 得 通 . +Did you miss me ? 你 想 我 了 ? +She looked sad . 她 看上去 很 伤心 . +She was very surprised at the news . 她 对 那个 消息 非常 惊讶 . +I ran into Mary at a party last week . 上星期 在 一次 派 對 中 我 遇到 了 瑪麗 . +Kuala Lumpur is worth visiting . 吉隆坡 值得 一 遊 . +Frankly speaking , he is wrong . 坦率地 说 , 他 错 了 . +A hundred people were hurt in a train wreck . 一百多个 人 在 一个 火车 事故 中 受了伤 . +People in the United States speak English . 在 美國 的 人 說 英語 . +Ask him if he will attend the meeting . 问 他 会 不会 来 参加 会议 . +There is a clock on the wall . 牆 壁上 掛著 一個 時鐘 . +I do not have much time . 我 时间 不多 . +He is not very good at mathematics . 他 不是 很 擅長 數學 . +I like jogging . 我 喜欢 跑步 . +Are you done ? 你 做好 了 嗎 ? +Tom is good , but not good enough . 汤姆 好 , 但 不够 好 . +How tall are you ? 你 多 高 ? +Beethoven was a great musician . 貝多芬 是 一個 偉大 的 音樂家 . +I am used to staying up late . 我 习惯 晚睡 . +She goes to night school . 她 上 夜校 . +He already knew about it . 他 已经 意识 到 它 了 . +I do not know anything about him . 我 不 知道 任何 有關 他 的 事 . +I love elderberry juice . 我 愛 接骨木 果汁 . +I was not aware that Tom was sick . 我 還 不 知道 湯姆 生了病 . +Languages are not his forte . 语言 不是 他 的 强项 . +Do you like school ? 您 喜歡 學校 嗎 ? +He is sometimes absent from school . 他 偶爾 逃學 . +I want to go home . 我 要 回家 . +You should prepare for the worst . 你 应该 作 最 坏 的 准备 . +What will you have ? 你 将 拥有 什么 ? +When will you leave ? 你 什麼 時候 離開 ? +Would you like me to explain it ? 你 要 我 解釋 一下 嗎 ? +I am afraid you have the wrong number . 我 恐怕 您 打错 电话 了 . +We bought some vegetables and fish at the market . 我们 在 市场 上买 了 些 蔬菜 和 鱼 . +I want to go abroad next year . 我 明年 想去 國外 . +We missed you . 我們 想 你 . +Will you play tennis after school ? 你 放學 後 會 去 打 網球 嗎 ? +Please wait on him first . 請 先 等 他 . +The children go to school in the morning . 孩子 们 早上 去 学校 . +It is an easy victory . 這 是 一個 輕 鬆 取得 的 勝利 . +You can go or stay , as you wish . 你 走 或 留 , 随 你 高兴 . +Fish is sold by the pound here . 魚 在 這裡 是 以 磅 為 單位 來 出售 . +He made a journey around the world . 他 環遊 世界 旅行 . +Do not play in the road . 別 在 馬 路上 玩 . +We can not escape . 我們 逃不出 去 . +When do you eat dinner ? 你 几点 吃 的 晚饭 ? +I always try to tell the truth . 我 總是 試著 說實話 . +I saw five men . 我 看到 了 五個 男人 . +Tom goes for a walk every morning . Tom 每天 早上 去 散步 . +Are you crying ? 你 在 哭 嗎 ? +I want to go to Africa someday . 有 一天 我 要 去 非洲 . +Have you ever been hit by a car ? 你 被车撞 过 吗 ? +I could hear birds singing outside my window . 我 能 听见 鸟 在 窗外 歌唱 . +There were not any roses in the garden . 花園 裡 沒有 任何 玫瑰 . +Let me know when you need me again . 再 需要 我 就 告诉 我 . +Could you tell me ? 您 会 告诉 我 吗 ? +Come again next week . 下周 再來 . +I have decided to go a little further . 我 准备 再 前进 一点 . +Tom told Mary she could not do that . 湯姆 告訴 瑪麗 她 不能 做 那件事 . +How complex is it ? 它 有多 複 雜 ? +No matter what happens , I am not changing my mind . 無論 如何 , 我 不 會 改變 我 的 想法 . +You did not need to hurry . 你 不 需要 著急 . +He sat on the bench . 他 坐在 長 凳 上 . +I had a long talk with her . 我 和 她 有 一段 長 談 . +My dream is to become a teacher . 我 的 夢 想 是 成為 一名 教師 . +Why are you just sitting there ? 你 为什么 就 站 在 这里 ? +Why worry about Tom ? 為 什麼 要 擔心 Tom ? +Where is the ticket window ? 售票 窗口 在 哪裡 ? +Where are my books ? 我 的 書 在 哪 ? +I believe you . 我 相信 你 . +My grandfather usually eats breakfast at six . 我 的 祖父 通常 在 六點鐘 吃 早餐 . +My right hand is numb . 我 的 右手 麻 了 . +We hope you will enjoy the show . 我們 希望 你 喜歡 這個 表演 . +We were granted the privilege of fishing in this bay . 我们 得到 了 在 这个 海湾 内 捕鱼 的 特权 . +He is out taking a walk . 他 出去 散步 . +I think that Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +The ambulances carried the injured to the nearest hospital . 救护车 把 伤者 送往 了 最近 的 医院 . +The legal system in America is the world is finest . 美國 的 司法制度 是 世界 上 最好 的 . +They wanted a wedding picture in front of the Eiffel Tower . 他們 想 在 艾菲爾 鐵塔 前面 拍張 結 婚照 . +I do not think I like this game very much . 我 觉得 我 不 太 喜欢 这 游戏 . +Are you still winning ? 你 還 在 贏 嗎 ? +I know you are not comfortable . 我 知道 你 不 舒服 . +His lectures are very long . 他 的 講座 很 長 . +It is too large . 它 太 大 了 . +How come you did not say anything ? 你 為 什麼 都 不 說 話 ? +Try it . 试试 吧 . +Let is leave the decision to Tom . 讓 我們 留給 他 作 決定 . +This is the worst movie I have ever seen . 这 是 我 看过 的 最 差劲 的 电影 了 . +The leaves will turn red in two or three weeks . 再 过 两 三周 , 树叶 就 会 变 红 吧 . +It is my CD , is not it ? 這 是 我 的 CD , 不是 嗎 ? +He leaves for China tomorrow . 他 明天 出发 去 中国 . +You are really beautiful . 你 真的 很漂亮 . +I do not want to hear about it again . 我 不想 再 聽到 這事 . +I do not think that he is sincere . 我 不 觉得 他 很 诚实 . +What time do you open ? 你们 什么 时候 开始 营业 ? +How many people can do that ? 有 多少 人 能 做 ? +Tom avoids Mary whenever possible . 湯姆 盡量 避開 瑪麗 . +Mary is very cute . 玛丽 非常 可爱 . +Tom will try and stop me for sure . 汤姆 一定 会试 着 阻挡 我 . +A lot of soldiers were killed here . 許多 士兵 在 這裡 陣亡 . +She played a tune on the piano . 她 在 鋼琴 上彈 了 一首 曲子 . +Are you allergic to any medicine ? 你 對 任何 藥物 過 敏 嗎 ? +Give me my beer . 把 我 的 啤酒 給 我 . +I remember writing to her . 我 记得 给 她 写过信 . +Do not be afraid to make mistakes when speaking English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +An apple sits on the table . 桌上 有个 苹果 . +I do not want to go to Tom is birthday party . 我 不想 去 汤姆 的 聚会 . +You are good . 你 很 好 . +Tom sells T @-@ shirts at a 30 percent discount . 汤姆 以 七折 销售 T恤 . +What is the weight of your suitcase ? 你 的 行李 多重 ? +He is not an American . 他 不是 美国 人 . +I am glad that I did not buy something like this . 我 很 高兴 没有 买 这样 的 东西 . +I will phone you every night . 我 每晚 都 給 你 打 電話 . +The bird was covered with white feathers . 鸟儿 身上 铺满 了 白色 的 羽毛 . +I had my wallet stolen . 我 的 钱包 被 偷 了 . +Does the letter need to be written in English ? 這 封信 需要 用 英文 寫 嗎 ? +Please feed the dog every day . 请 每天 喂 一下 狗 . +That is no big deal . 那 没什么 大不了 的 . +I think you should leave as soon as you can . 我 觉得 你 应该 赶紧 走 . +He is a very imaginative writer . 他 是 非常 有 想像力 的 作家 . +I have to study for the test . 我 必須 讀書 準備 考試 . +He was busy with his homework . 他 忙 於 做功 課 . +To tell you the truth , this is a little too spicy for me . 说实话 , 这 对 我 来说 有点 太 辣 了 . +My mother made me a sweater . 我 媽媽 為 我 做 了 一件 毛衣 . +Tell me your story . I am all ears . 告訴 我 你 的 故事 . 我 會 注意 聽 . +He committed suicide . 他 自杀 了 . +This one is still alive . 這 一個 還 活著 . +Your plan requires a large amount of money . 你 的 计划 需要 一大笔钱 . +Call me if you need anything . 需要 什么 就 给 我 打电话 . +The wind is cold today . 今天 刮 冷风 . +Why did you get up so early ? 你 為 什麼 這麼 早起 ? +The train arrived on schedule . 火车 准时 到 了 . +People should understand that the world is changing . 人 应该 明白 世界 在 变 . +I wish I could figure out how to disable comments on my blog . 但愿 我 能 找到 在 我 的 博客 上 屏蔽 评论 的 办法 . +They are discussing the problem . 他們 正在 討論 這個 問題 . +He is an old friend of mine . 他 是 我 的 一位 老朋友 . +Tom is the only boy in our class . 湯姆 是 我們 班裡 唯一 的 男孩 . +You have made a mistake . 你 犯 了 个 错误 . +Do you like pirate movies ? 你 喜欢 盗版 电影 吗 ? +I know people think I am odd . 我 知道 人們 認為 我 古怪 . +He took the wrong bus by mistake . 他 搭错 了车 . +Furniture made of good materials sells well . 用 优质 材料 做 的 家具 卖 得 很 好 . +I did not really feel like going out . 我 不是 很 想 出去 . +Who were they talking about ? 他们 在 讨论 谁 ? +She greeted him waving her hand . 她 揮著 手 向 他 打招呼 . +Was this letter written by Mary ? 这 封信 是 玛丽 写 的 吗 ? +This decision is final . 这 是 最终 决定 . +I hope that you give this book a read . 我 希望 你 讀讀 這 本書 . +He has his own room . 他 有 自己 的 房间 . +He visited her house the other day . 他 前 幾天 拜訪 了 她家 . +Money makes the world go round . 金钱万能 . +Are you going to visit any other countries ? 你 会 去 访问 其他 国家 吗 ? +I got this bicycle for nothing . 我 免費 得到 這輛 自行 車 . +Do you really believe in ghosts ? 你 真的 相信 鬼 嗎 ? +There is no fire without smoke . 沒有 不 冒 煙 的 火 . +Terrific ! 很棒 ! +I am sorry for the late response . 我 很 抱歉 回复 晚 了 . +You should make notes . 你 应该 做 笔记 . +If it is raining tomorrow , we will go there by car . 如果 明天 下雨 , 我们 就 坐车去 那儿 . +I suspect they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +He plays golf every weekend . 他 每個 週末 打 高爾夫 球 . +There are fifty members in this club . 这个 俱乐部 里 有 50 个 会员 . +I prefer cats to dogs . 與 狗 相比 , 我 更 喜歡 貓 . +This is a good book , but that one is better . 這 是 本 好 書 , 但 那 本 更好 . +Is everything going OK at work ? 工作 一切顺利 吗 ? +He came to Tokyo at the age of three . 他 三岁 就 到 东京 了 . +How far is it to the airport ? 到 机场 有 多 远 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 很 難 使用 的 弓 . +Is that true ? 真的 ? +I just wanted somebody to help me . 我 只是 想 有 个人 来 帮助 我 . +This boat has six oars . 這 艘 船 有 六個 槳 . +He said he was tired , so he would go home early . 他 说 他 累 了 , 所以 他 想 早点 回家 . +I am sick of eating fast food . 我 受够 吃快餐 了 . +It is possible that you do not know this . 你 有 可能 不 知道 这事 . +It is very hot in this room . 這間 房裡 很 熱 . +English has now become the common language of several nations in the world . 英语 现已 成为 世界 上 许多 国家 的 通用 语言 了 . +You know as well as I do that Tom hates Mary . 你 我 都 知道 湯姆 恨 瑪麗 . +He is not here yet . 他 還 沒到 這裡 . +Go on home . 回家吧 . +I thought that Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +I will give you a ride . 我 會 載 你 一程 . +How about some more roast beef ? 再 多一些 烤牛肉 怎麼樣 ? +The firemen soon put out the fire . 消防 隊員 很快 就 把 火 撲 滅 了 . +I do not know where you want to go . 我 不 知道 你 要 去 哪 . +It is a piece of cake . 小菜一碟 . +To my surprise , he easily came up with a plan . 令 我 吃惊 的 是 , 他 很 容易 就 想出 了 一个 方案 . +I admit that he is right . 我 承认 他 是 对 的 . +When will that new school open ? 那 是 新 学校 什么 时候 开学 ? +Here is a photograph of my family . 這裡 有 一張 我 全家 的 照片 . +He finally became the president of IBM . 他 終 於 成 了 IBM 的 總 經理 . +Is it OK for me to come in now ? 我 现在 进来 方便 么 ? +We happened to get on the same bus . 我们 恰巧 上 了 同 一辆 公交车 . +Let me think about it . 让 我 想一想 . +Comb your hair before you go out . 在 你 出門 之前 , 把 你 的 頭 髮 梳 一 梳 . +For the time being , my sister is an assistant in a supermarket . 目前 , 我 妹妹 在 一家 超市 当 收银员 . +He takes a walk every morning . 他 每天 早上 都 散步 . +Sammy Davis was an excellent singer . 山米 戴維斯 是 一個 優秀 的 歌手 . +Leave me . 让 我 一个 人 呆 会儿 . +I think I made a mistake . 我 认为 我 犯 了 个 错 . +Students generally like a teacher who understands their problems . 通常 学生 们 喜欢 理解 他们 问题 的 老师 . +I did not get the joke . 我 没 明白 那个 笑话 . +There was a minute of silence and then everybody started screaming . 有 一分钟 的 沉默 , 然后 每个 人 都 开始 尖叫 . +I had a neighbor who was blind . 我 有個 盲鄰 居 . +It happened a long time ago . 这 事 发生 在 很多年 以前 . +Our refrigerator is not working . 我們 的 冰箱 壞 了 . +If he is innocent , then his wife is guilty . 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +Wo not you have some coffee ? 你 不要 點 咖啡 嗎 ? +I bought two loaves of bread . 我 買 了兩條 麵 包 . +I know who likes Tom . 我 知道 谁 喜欢 汤姆 . +No matter how hard I try , I can not do it any better than she can . 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Let me know . 讓 我 知道 . +Tom might be a vegetarian . 湯姆 可能 是 素食者 . +Almost all the students like English . 幾乎 所有 的 學生 喜歡 英語 . +Tom should be fired . 湯姆 應 該 要 被 開除 . +She complained about my low salary . 她 抱怨 我 的 工資 低 . +I saw five men . 我 看见 五个 男人 . +I will not stay here for long . 我 不会 在 这里 呆 很久 . +I wish I could go . 我 希望 我 可以 去 . +Thank you all the same . 同样 感谢 你 . +You should know it . 你 應該 知道 的 . +I always walk to school . 我 總 是 走路 到 學校 . +I waited an hour for my friend . 我 等 我 的 一个 朋友 等 了 一 小时 . +It looks like Tom will do what we have asked him to do . 看來 湯姆會 按 我們 要求 的 去 做 . +I feel like getting some fresh air . 我 想要 呼吸 一些 新鮮 空氣 . +He has three brothers . 他 有 三名 兄长 . +I do not agree with you on this point . 这 一点 我 不 赞成 你 . +The game ended at nine o 'clock . 比賽 在 九點鐘 結束 . +I will miss you when you are gone . 你 走 後 , 我 會 想念 你 的 . +Could you do it ? 你 能 做到 嗎 ? +I advise you to give up drinking . 我 勸 你 戒酒 . +Tom bought a ticket . 汤姆 买 了 张 票 . +I go to church every day . 我 每天 上 教堂 . +It looks like an apple . 看起来 像 个 苹果 . +Why do I have to do that ? 我 为什么 一定 要 那么 做 ? +I am waiting for you to finish your homework . 我 等 你 把 作業 做 完 . +He was arrested for drunken driving . 他 因 酒 後 駕駛 而 被捕 . +I need glue . 我 需要 胶水 . +You are drunk . 你 喝醉 了 ! +You have to come with me . 你 必須 跟 我 來 . +The camera will cost at least $ 500 . 這 台 相機 至少 要 花費 500 美元 . +I am sorry , but I really have to go . 我 很 抱歉 , 但 我 必須 走 了 . +Not a day passes without traffic accidents . 交通事故 没有 一天 是 不 在 发生 的 . +Can you tell me where the nearest antique shop is ? 你 能 告诉 我 最近 的 古玩店 在 哪里 吗 ? +It is cool this morning , is not it ? 今天上午 很 涼爽 , 不是 嗎 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 不 稱手 的 弓 . +She may have missed the 7 : 00 train . 她 可能 錯 過 了 七點 的 火車 . +We know everything . 我们 什么 都 知道 . +My father went fishing . 我 父親 去 釣魚 了 . +How long have you been in Japan ? 你 去 了 日本 多久 ? +Would you close the window ? 請 您 把 窗戶 關起 來 好 嗎 ? +Ten houses were burned down . 十間 房屋 被 燒毀 了 . +Bear his advice in mind . 牢 記 他 的 建議 . +Tom looks a bit sick . 湯姆 看來 有 點 不適 . +That man died of lung cancer a week ago . 那个 男人 在 一周 前 死于 肺癌 . +I refuse to be treated like a child . 我 拒绝 被 像 一个 孩子 般 对待 . +How is your work coming along ? 你 的 工作 進行 得 怎麼樣 ? +We sometimes see them . 我們 有 時會 看見 他們 . +Tom is a lot younger than Mary is . 汤姆 比 玛丽 年轻 许多 . +All plants need water and light . 所有 的 植物 都 需要 陽光 和 水 . +Tom saw the exhibits . 汤姆 看 了 展览会 . +He called me a cab . 他 替 我 叫 了 一部 計程 車 . +She recognized the brooch as the one she had lost a few months before . 她 认出 那 枚 胸针 是 她 几个 月 前 丢失 的 . +Swimming makes your legs stronger . 游泳 使 腿部 强健 . +When it stops raining , let is go for a walk . 等 雨 停 了 , 我们 去 散步 吧 . +He was laughed at by his friends . 他 被 他 的 朋友 嘲笑 了 . +Tom lived in Japan for ten years . 湯姆 住 在 日本 十年 了 . +After you have read it , give the book back to me . 在 你 讀 完 後 , 把 書 還 給 我 . +Tom used to live near Mary . 汤姆 以前 跟 玛丽 住 得 近 . +They give good service at that restaurant . 那家 餐館 提供 良好 的 服務 . +All we need is water . 我们 需要 的 只有 水 . +I wonder if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +I have nothing to complain about . 我 沒有 什麼 可 抱怨 的 . +I did not know where it came from . 我 不 知道 它 是从 哪里 来 的 . +There is something in your hair . 你 头发 上 粘着 什么 东西 . +He is eligible for the presidency . 他 有 資格 當選 總統 . +She carried that habit to her grave . 她 到 死 都 改不了 那個 習慣 . +I do not think that it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +Where can we make a phone call ? 我們 能 在 哪裡 打 電話 ? +I talked to her . 我 跟 她 谈 了 话 . +I do not think that this is a good idea . 我 觉得 这 主意 不行 . +I do not care for eggs . 我 不 喜欢 鸡蛋 . +I played catch with my father . 我 和 我 爸爸 玩 接球 . +We were surprised to hear the news . 我們 聽到 這個 消息 很 驚訝 . +The snow was knee deep . 積 雪深 及 膝蓋 . +All this is new to me . 这 对 我 来说 全 是 新 的 . +We took turns driving . 我們 輪流 開車 . +She has the large house to herself . 她 給 自己 一間 大房子 . +You are the only person I can trust . 你 是 我 唯一 可以 信任 的 人 . +Do you know Tom is address ? 你 有 汤姆 的 住址 吗 ? +Have you seen my glasses anywhere ? 你 曾 在 哪裡 看到 過 我 的 眼鏡 嗎 ? +No one was late . 没有 人 迟到 . +She went to the hospital by taxi . 她 搭計 程車 去 醫院 了 . +Please show me your bag . 請 讓 我 看看 你 的 袋子 . +Are you writing a letter ? 你 在 写信 吗 ? +He seldom comes to see me . 他 很少 来看 我 . +He is always a little irritable in the morning . 他 早上 总是 有点 脾气 暴躁 . +There is no more salt . 沒有 再 多 的 鹽 了 . +This is a present for you . 這 是 給 你 的 禮物 . +Tom would not dare show his face around here again . 汤姆 不敢 再 到 这里 露面 . +In Esperanto there are only 16 grammar rules . 世界 語 只有 16 個 語法 規則 . +What are your thoughts on this ? 你 觉得 这个 怎么样 ? +It is better to teach someone how to fish than to give someone a fish . 授 之 以 鱼 , 不如 授 之 以 渔 . +I feel a whole lot better today . 我 今天 感觉 好多 了 . +My dream is to become a pilot . 我 的 梦想 是 成为 一名 飞行员 . +The company suffered a loss of one billion yen last year . 那 家 公司 去年 亏损 了 10 亿日元 . +Do not ever touch my things again . 不要 再 碰 我 的 东西 . +I did not know he drank so much . 我 不 知道 他 喝 那么 多 酒 . +I retired last year . 我 去年 退休 了 . +The room has a seating capacity of 200 . 这个 房间 能 容纳 200 人 . +Can you guess how old I am ? 你 能 猜到 我 的 年龄 吗 ? +It is a basic human right . 它 是 基本 人权 . +The fox and the bear lived together . 這 隻 狐狸 和 這 隻 熊 一起 生活 了 . +It is still too early to get up . 時間 還 早 不必 這麼 早 起床 . +There are fifty states in the United States . 美国 有 50 个 州 . +I will call you tomorrow . 明天 我 給 你 打 電話 . +Who is in charge of the office while the boss is away ? 在 主任 不在 的 时候 , 办公室 由谁来 负责 ? +The stars are shining very brightly in the sky tonight . 今晚 的 夜空 星光 非常 明亮 . +They must have had an accident . 他們 一定 發生 了 意外 . +A good many people have told me to take a holiday . 很多 人 都 跟 我 說 要 我 休假 . +I kept on singing . 我 继续 唱歌 . +Tom loves to sing . 湯姆愛 唱歌 . +There is a path through the wood . 有 一個 穿 過 樹林 的 小路 . +That is my younger sister is photograph . 那 是 我 妹妹 的 照片 . +I heard him go down the stairs . 我 聽見 了 他 下樓 . +In Japan , the new school year begins in April . 日本 的 新學 年 在 四月 開始 . +What made her do so ? 为什么 她 要 做 这种 事情 呢 ? +Tom should be happy . 汤姆 应该 高兴 . +Those are my trousers . 那些 都 是 我 的 褲子 . +Tom does not want our help . 湯姆 不想 讓 我們 幫忙 . +He was standing behind the door . 他 站 在 門 後 . +Bern is the capital of Switzerland . 伯恩 是 瑞士 首都 . +How long did it take to do that ? 你 做 那事 用 了 多久 ? +Helen Keller was blind , deaf and dumb . 海倫 凱勒 眼盲 , 耳聾 , 又 啞 . +I am going to change my clothes . 我 要 去 换衣服 . +She considered his offer carefully . 她 仔细 考虑 了 他 的 提议 . +That is what I always say . 那 是 我 經常 說 的 . +I will come and see you one of these days . 这些 天 我会 抽 一天 来看 你 的 . +I guess you are right . 我 猜 你 是 對 的 . +Preventive measures are much more effective than the actual treatment . 预防措施 比 真正 的 治疗 更 有效 . +Many of the immigrants changed their names . 许多 移民 改 了 名字 . +Did anybody ask you to come here ? 有人 叫 你 來 這 嗎 ? +He mistook me for an Englishman . 他 誤以 為 我 是 一個 英國 人 . +How much is this watch ? 这 只 表 多少 钱 ? +No way ! 没门 ! +This rug is handmade . 这块 地毯 是 手工 制作 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +Mary is very cute , is not she ? 马力 很 可爱 , 不是 么 ? +Tom went there to learn French . 汤姆 去 那里 学法语 . +My brother and I are in the same class . 我 的 兄弟 和 我 在 一个 班级 . +How many Chinese characters can you write ? 你 會 寫 多少 漢字 ? +Tom has no one to turn to for help . 汤姆 没有 能 求助 的 人 . +They settled in Canada . 他们 在 加拿大 安家落户 . +I never played golf . 我 从没 玩 过 高尔夫 . +Taiwanese food is milder than Indian food . 台灣 菜 比 印度 菜 口味淡 . +Maternal love is greater than anything else . 母爱 比 任何 别的 东西 都 伟大 . +You should think before you speak . 你 在 说话 前 应该 先 思考 . +Here goes nothing . 毫無 希望 , 白費 心思 . +In Japan , it rains quite a bit during our rainy season which is from mid @-@ June until mid @-@ July . 在 日本 , 在 我们 的 雨季 常常 下雨 , 雨季 一般 在 六月 中旬 至 七月 中旬 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +I do not think Tom is serious . 我 不 覺得 湯姆 是 認 真的 . +You are irresistible . 你 是 不可 抗拒 的 . +He likes tea . 他 喜歡 茶 . +There is no reason to get angry . 沒有 生气 的 理由 . +God bless America . 上帝保佑 美国 . +He acknowledged his faults . 他 得知 了 他 的 错误 . +Can we speak in the hall ? 我們 能 在 走廊 裡 說 話 嗎 ? +It became quiet again in the forest . 森林 裡 又 再 變 得 安靜 下來 了 . +She is only a child . 她 只是 個 孩子 . +Tom carried the chairs to the next room . 汤姆 把 椅子 拿到 了下 个 房间 . +May I come in ? 我 可以 進來 嗎 ? +You have given me good advice . 你 給 了 我 很 好 的 建議 . +Tom bought a mobile phone . 汤姆 买 了 个 手机 . +A dolphin is a mammal . 海豚 是 哺乳 動物 . +Have you found your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Tom knows a lot of stuff about Mary . 汤姆 知道 玛丽 的 很多 事 . +This is my first time . 這 是 我 的 第一次 . +We will leave as soon as you are ready . 你 一 准备 好 , 我们 就 走 . +Tom wanted to be a better teacher . 汤姆 想 做 个 更好 的 教师 . +They forced me out . 他们 迫使 我 出来 . +I lent my friend some money . 我 借给 了 朋友 一些 钱 . +Do you smoke ? 您 吸烟 吗 ? +You are lying . 你 在 撒谎 . +Do you have medical insurance ? 你 有 醫療 保險 嗎 ? +Do I have to answer all of the questions ? 我 需要 回答 所有 問題 嗎 ? +It is been an amazing experience . 这 是 奇妙 的 体验 . +Tom died in an accident . 湯姆 在 一場 意外 中 喪生 . +So , what will you give me ? 那 你 会 给 我 什么 ? +Do not let this information leak out . 不要 让 这些 信息 泄露 出去 . +To tell the truth , I do not agree with you . 实话 说 , 我 不 赞成 你 . +I do not have a cat . 我 没有 猫 . +It is about the size of an egg . 它 的 大小 就 像 雞 蛋 . +I remember seeing her somewhere . 我 記得 在 哪兒 見 過 她 . +Tom applied for the job . 湯姆申 請 了 這份 工作 . +I gather that they will agree with us . 我 猜想 他們 會 同意 我們 的 . +She got out of the car . 她 下 了 車 . +May I have a bus schedule ? 我 可以 有 張 公車 的 時刻 表嗎 ? +I am interested in sports . 我 对 运动 感兴趣 . +Iceland belonged to Denmark . 冰岛 曾 属于 丹麦 . +She will be glad if you go to see her in person . 如果 你 單獨 去 看 她 , 她 會 很 高興 的 . +I arrived at the village before dark . 我 天黑 之前 到达 了 村庄 . +They are 30 minutes behind schedule . 他們 的 進度 較 預期 慢 30 分鐘 . +It is hot today , is not it ? 今天 很 熱 , 不是 嗎 ? +You should talk directly to Tom . 你 应该 直接 跟 汤姆 说 . +The teacher gave us homework . 老师 给 我们 布置 了 家庭作业 . +After winning the Nobel prize , she remained as modest as ever . 獲得 諾貝爾獎 後 , 她 仍 謙虛 如昔 . +It is very uncomfortable . 它 真是 不 舒服 . +I felt hungry after the long walk . 長途 步行 後 我 覺得 餓 了 . +Like a good wine , he improves with age . 就 像 上 好 的 红酒 一样 , 他 随着 年龄 的 增长 变得 越来越 好 . +The room was illuminated with red lights . 這個 房間 被 紅色 的 燈 照亮 了 . +Tom would accept . 湯姆會 接受 . +It is our job to help you . 帮助 你 是 我们 的 工作 . +You have never had a girlfriend , have you ? 你 从 没有 女朋友 , 不是 么 ? +I will boil the potatoes for you . 我 為 你 煮 馬鈴薯 . +He wishes he had gone to the theater last night . 昨晚 他 希望 他 去 了 剧场 . +I think you should see a doctor . 我 覺得 你 應 該 去 看 醫生 . +I love my yellow sweater . 我 很 喜欢 我 的 黄色 套衫 . +The monkey fell from the tree . 猴子 從 樹上 掉 了 下來 . +Astronomy deals with the stars and planets . 天文 學 涉及 恆星 和 行星 . +Do you hear what I am saying ? 你 在 听 我 说 吗 ? +Will you marry me ? 你 愿意 嫁给 我 吗 ? +She smiled at her baby . 她 對著 她 的 孩子 微笑 . +The telephone operator asked the caller to hold on until a connection was made . 电话 运营商 提示 来电 人 等候 接通 . +I am not frightened of anything . 我 不 害怕 任何 東西 . +Your glasses fell on the floor . 你 的 眼镜 掉 在 地上 了 . +I often look up words in that dictionary . 我 经常 用 那 本词典 找 单词 . +He lived to be seventy years old . 他 活到 了 70 歲 . +She was obliged to marry the old man . 她 不得不 和 这个 老 男人 结婚 . +I wish that she would stop smoking . 我 希望 她 戒 煙 . +English is a means of communication . 英語 是 一種 溝通 的 手段 . +Tom has been spending time with Mary . 汤姆 在 玛丽 身上 花 时间 . +I 'd like an orange juice . 我 想要 一杯 柳橙汁 . +If you get sleepy , tell me . 困 了 的话 就 说 哦 . +Tomorrow is Mother is Day . 明天 是 母 親節 . +Why did you stay ? 你 为什么 留下 ? +They welcomed me warmly , so I felt at home . 他们 这么 热情 的 欢迎 我 , 让 我 感觉 家人 一样 . +Come and see me at eleven o 'clock . 您 十一点 时 来看 我 吧 . +He was just on the verge of going to sleep . 他 快要 睡 了 . +He was appointed ambassador to Britain . 他 被 任命 為 駐 英國 大使 . +Tell me about some of the places you have visited . 给 我 说 说 你 去过 的 一些 地方 . +I am not well . 我 身体 不适 . +There is a library in every city in America . 美国 的 每个 城市 都 有 一个 图书馆 . +Are you going to sing ? 你 要 唱歌 嗎 ? +I wonder if he will come tonight . 我 不 知道 他 今晚 會 不 會 來 . +Has Tom come back already ? 汤姆 已经 回来 了 吗 ? +The old man got off the bus . 這位 老人 下 了 公車 . +What do you want for breakfast ? 你 早餐 想要 吃 什麼 ? +The boy made his parents happy . 這個 男孩 讓 他 的 父母 高興 . +Can I go swimming this afternoon ? 我 今天下午 可以 去 游泳 嗎 ? +The cup is on the table . 杯子 在 桌上 . +I wish that I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +Your dog is here . 你 的 狗 在 這 . +Tom still does not know the truth . 汤姆 还是 不 知道 真相 . +Did you make that mistake on purpose ? 你 故意 犯 那個 錯 的 嗎 ? +She came into the room . 她 进 了 房间 . +Everybody is immune to smallpox nowadays . 現今 每個 人 都 對 天花 免疫 了 . +I do not remember . 我 不 記得 了 . +I am cold . 我 冷 . +Everybody knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +A parrot can mimic a person is voice . 鸚鵡會 模仿 人 的 聲音 . +Monkeys can learn a lot of tricks . 猴子 能學會 很多 把 戲 . +I am looking forward to hearing from you . 我 期待 收到 您 的 來信 . +His words surprised me . 他 的 話 讓 我 吃 驚 . +How interesting ! 多么 有趣 啊 ! +I need a raise . 我 需要 加薪 . +He is the manager of the marketing department . 他 是 营销部 的 负责人 . +He is flying to Paris tomorrow . 他 明天 將 飛往 巴黎 . +He never gave up hope that he would reach that goal . 他 從 沒 放棄 達成 那個 目標 的 希望 . +Not everyone can be a poet . 不是 每個 人 都 能 成為 詩人 . +Please answer this question for me . 請 回答 我 這個 問題 . +She turned a page of her book . 她 翻 了 一页 书 . +Stop staring . 别 再 盯 着 了 . +Tom likes to sit on the floor . 汤姆 喜欢 坐在 地上 . +Did I say something I should not have ? 我 說 了 什麼 我 不 應 該 說 的 嗎 ? +He crashed his car because someone tampered with the brakes . 他 撞车 是因为 有人 在 刹车 上 做 了 手脚 . +Yesterday I met Mary on the street . 昨天 我 在 街上 遇見 了 瑪麗 . +I plan to buy him a pen . 我 打算 給 他 買 一支 鋼筆 . +How much does a kilo of bananas cost ? 一 公斤 香蕉 多少 錢 ? +Do not be afraid to make mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +That coat may have cost a lot of money , but it is worth it . 那 大衣 可能 花 了 很多 錢 , 但 它 值得 . +Did you see the eclipse yesterday ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +Water is important for people . 水 對 人 是 很 重要 的 . +Could you keep this luggage until 3 p.m. ? 你 可以 保管 這個 行李 直到 下午 三點 嗎 ? +He catches colds easily . 他 很 容易 感冒 . +I have not seen you for a while . 我 好 一陣子 沒 看到 你 了 . +Paris is one of the largest cities in the world . 巴黎 是 世界 上 最大 的 城市 之一 . +I promise that I will do it . 我 保证 我会 做 的 . +Tom , be careful ! 汤姆 , 小心 ! +Tom has a good head on his shoulders . 汤姆 脑子 好使 . +Save yourself . 拯救 你 自己 . +I have two dogs . One is white and the other black . 我 有 两条 狗 . 一条 是 白色 的 , 另 一条 是 黑色 的 . +They are always complaining . 他們 總 是 抱怨 . +Tom learned to ride a bike when he was ten . 汤姆 在 10 岁 的 时候 就学 骑 了 自行车 . +Are you ready ? 你 准备 好了吗 ? +Time flies . 時光 飛逝 . +She resented being called a coward . 她 對 被 稱為 懦夫 很 反感 . +I wrote her a letter every day . 我 一天 又 一天 地 给 她 写信 . +What are you laughing at ? 在 笑 什么 呢 ? +The police accused him of murder . 警方 指控 他 謀殺 . +I should have known better than to call him . 早 知道 我 不 應 該 打 電話 給 他 . +Drive safely . 安全 地 駕駛 . +She would often go to the theater when she was in London . 她 在 伦敦 的 时候 , 曾 经常 去 剧院 . +I have to go to bed . 我 该 去 睡觉 了 . +It is like looking for a needle in a haystack . 这 好比 大海捞针 . +I will go to the library with you tomorrow . 我 明天 要 跟 你 去 圖書館 . +There is also a park there . 那里 也 有 个 公园 . +World War II ended in 1945 . 第二次 世界 大戰 結束 於 1945 年 . +All of them are not present . 他們 所有 的 人 都 沒有 出席 . +Please sit on the sofa and relax . 請 坐在 沙發 上 放 輕 鬆 . +Can you imagine what the 21st century will be like ? 你 能 想象 21 世紀 會 是 甚麼樣 嗎 ? +He did not respond to my question . 他 沒有 回答 我 的 問題 . +I will call you on Monday . 我 會 在 星期一 給 你 打 電話 . +Where is your house ? 您 的 家 在 哪 ? +I do not want to spoil the ending for you . 我 不想 把 結局 提前 透露 給 你 . +I saw a cat running after the dog . 我 见 一只 猫 追 着 狗 跑 . +I must make up for the loss . 我 必须 弥补 损失 . +Tom did not sound too worried . 湯姆聽 起來 不 太 擔心 . +Do you have a bike ? 你 有 自行 車 嗎 ? +Do not forget to sign your name . 不要 忘記 簽上 你 的 名字 . +Why do you need change ? 你 為 什麼 需要 零 錢 ? +She twisted her ankle while she was doing exercise . 她 锻炼 时 扭伤 了 脚踝 . +I can not believe Tom is getting married . 我 不能 相信 汤姆 要 结婚 了 . +I have a dictionary . 我 有 一個 字典 . +I do not know any of the five ladies . 这 五个 女人 我 一个 都 不 认识 . +That looks like blood . 那 看起来 像 血 . +Rain prevented us from taking a walk . 雨 讓 我們 沒有 辦法 去 散步 . +I really did not even notice . 我 真的 根本 沒 注意 到 . +It is fun to learn slang words in foreign languages . 学习外语 里 的 俚语 很 有趣 . +What are those numbers ? 那些 数字 是 什么 ? +I heard someone in the crowd outside the station call my name . 我 聽到 車站 外 的 人群 中 有人 在 叫 我 的 名字 . +Did you come here alone ? 你 是 一个 人 来 这儿 的 吗 ? +Tom had a strange dream . 汤姆 做 了 个 奇怪 的 梦 . +I fell in love with her . 我 爱 上 了 她 . +Do you play any instrument other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +Her garden is a work of art . 她 的 花园 是 一件 艺术作品 . +Let is get together again next year . 讓 我們 明年 再 相聚 . +That is nonsense . Nobody but a fool would believe it . 那 是 無稽之談 . 只有 傻瓜 才 會 相信 . +Where was the mistake ? 錯 在 哪裡 ? +We are traveling on a tight budget . 我們 很節 省地 旅行 . +I am a man . 我 是 个 男人 . +I 'd like the sauce on the side . 我 想要 醬料 放在 旁邊 . +Can you eat raw oysters ? 你 能生 吃 牡蠣 嗎 ? +How about eating out this evening ? 今天 晚上 出去 吃 怎樣 ? +Are not you coming to pick me up tomorrow morning ? 你 明天 早上 不来 接 我 吗 ? +What fruit do you like the best ? 你 最 喜欢 什么 水果 ? +They must be waiting for you . 他們 一定 在 等 你 . +It was discovered by Tom . 它 是 由 湯姆 發現 的 . +You two should get married . 你们 两个 应该 结婚 . +I have a stomachache . 我 胃痛 . +We try . 我们 来 试试 . +How long does it take to get to the train station ? 去 火车站 要 多久 ? +What is her name ? 她 叫 什麼 ? +Tom says that he is willing to help . 汤姆 说 他 愿意 帮忙 . +They obtained a yield of 8 percent on their investment . 他們 在 這次 的 投資 中 得到 百分之八 的 收益 . +Tom fell asleep sitting up in the chair . 汤姆 坐在 椅子 上 睡着 了 . +There is a telephone in the hall . 在 大廳 裡 有 一支 電話 . +Where is my wife ? 我 的 妻子 在 哪裡 ? +He is the tallest boy . 他 是 最高 的 男生 . +That is your opinion . 那 是 你 的 想法 . +Do not disturb me while I am studying . 我 学习 的 时候 不要 打扰 我 . +The book was published in 1689 . 这 本书 出版 于 1689 年 . +He came out from behind the curtain . 他 从 窗帘 后 出来 了 . +I opened the door . 我 開 了 門 . +My father made me what I am . 我 父親 讓 我 知道 了 我 自己 是 誰 . +I am old enough to live by myself . 我 年 紀夠 大 了 可以 自己 一個 人 住 . +Thanks for coming over tonight . 謝謝 您 今晚 的 光臨 . +Tom was afraid of you . 湯姆 怕 你 . +I do not want to swim . 我 不想 游泳 . +I do not like homework . 我 不 喜欢 作业 . +Keep going straight . 繼續 直行 . +Where in Australia did you grow up ? 你 在 澳洲 的 哪裡 長大 ? +Exercise is good for your health . 做 运动 有利于 健康 . +The bridge is being repainted . 這 座 橋 正 被 重新 油漆 . +We do not trust Tom . 我们 不 相信 汤姆 . +I do not think that any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +My house is just across the street . 我 的 房子 就 在 對 街 . +The traveler was delighted at the sight of a light in the distance . 发现 了 远处 的 灯光 的 旅行者 欢喜 不已 . +" What time is it ? " " It is ten @-@ thirty . " " 几点 了 ? " " 10 点 半 了 . " +Are these your things ? 這些 是 你 的 東西 嗎 ? +He is very good at playing baseball . 他 垒球 打 得 很 好 . +My laptop crashed . 我 的 笔记本电脑 发生 故障 了 . +She took care of the children . 她 照顧 孩子 . +I can neither confirm nor deny that . 我 即 不能 确认 也 不能 否定 . +Tom has not lost his confidence . 湯姆 還 沒有 失去 信心 . +I study Korean . 我 学 韩语 . +I think she will divorce him . 我 想 她 會 和 他 離婚 . +You did not tell me you worked for Tom . 你 沒 告訴 我 你 為 湯姆 工作 . +Imagine that you have a time machine . 想象 一下 , 假如 你 有 一台 时光 机 . +You live and learn . 你 一面 生活 一面 學習 . +The older we become , the worse our memory gets . 我们 越 老 , 记忆力 就 越 差 . +A blast of cold air swept through the house . 冷 空氣 疾風 席 捲 整 棟 房子 . +Is the post office still closed ? 邮局 还 关 着 门 吗 ? +I hope to see you . 我 希望 能 见到 你 . +She can speak three languages . 她 會 講 三種 語言 . +He is confined to bed now . 他 现在 卧床不起 . +Never give up . 决不 放弃 . +It is business . 公事 公辦 . +I am suffering from a bad cold . 我 患上 了 重感冒 . +My father is in his room . 我 父親 在 他 的 房間 裡 . +Catch him . 抓住 他 . +I think it is time for me to buy a house . 我 想 我 該 是 時候 買間 房子 了 . +That is my money . 那 是 我 的 钱 . +Tom had to go himself . 汤姆 不得不 自己 去 . +I thought you 'd be full after eating that big steak . 我 觉得 吃 完 那块 大 牛排 你 就 饱 了 . +Opinion is divided on this point . 在 這 一點 上意 見 不 一 . +Where did all that self @-@ confidence come from ? 哪 来 那么 大 的 自信 啊 ? +Boys , do not make any noise . 男孩 們 , 不要 製 造 任何 噪音 . +What is your home address ? 你家 的 地址 是 什麼 ? +He studied hard in order to get into college . 他 努力学习 , 为的是 能够 考上 大学 . +You should be more careful . 你 應 該 要 更 小心 . +Tell Tom what you heard . 把 你 听到 的 告诉 汤姆 . +What is learned in the cradle is carried to the tomb . 搖籃裡學 的 帶到 墳墓 . +It was not until I had a baby myself that I knew what mother is love is . 直到 我 自己 有 了 孩子 我 才 明白 了 什么 是 母爱 . +Tom has been on the wanted list for three years . 汤姆 已经 上 通缉令 三年 了 . +I felt a drop of rain on my head . 我 感觉 有 滴雨 落 在 头上 . +It is too noisy in here . 這兒 太 吵 了 . +I am afraid I would not be very good company . 我 恐怕 不是 个 很好 的 伙伴 . +He is afraid of his own shadow . 他 是 个 胆小鬼 . +Do not listen to her . 別 聽 她 的 . +He confused us . 他 把 我們 弄 糊塗 了 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +Hug Tom . 抱抱 汤姆 ! +He thinks he is so great . 他 以為 自己 很 了不起 . +Is it love ? 那 是 愛 嗎 ? +It is a very serious illness . 这 是 很 严重 的 病 . +He took off his glasses . 他 摘下 了 眼鏡 . +No one came except Tom . 除了 汤姆 没有 人 来 . +You are not satisfied , are you ? 你 并 不 满意 , 对 吧 ? +We met at the church . 我们 在 教堂 里 遇到 . +You should go and brush your teeth . 你 該 去 洗牙 了 . +He graduated from Cambridge with honors . 他 以 优异 的 成绩 毕业 于 剑桥大学 . +Is someone knocking on the door ? 有人 敲门 吗 ? +You sing like an angel . 你 唱歌 像 天使 . +People can easily tell the difference between them . 人們 可以 很 容易 地 看出 其中 的 差別 . +I tried not to cry . 我 努力 忍住 哭 . +Japan is now very different from what it was twenty years ago . 现在 的 日本 与 二十年 前 大不相同 . +The scenery was beautiful beyond description . 這 風 景美 得 無法 形容 . +Tom should be here any minute . 湯姆 應 該 隨時 就 會 到 這裡 . +He bought a Honda . 他 賣 了 一台 豐田 的 車 . +We talked until two in the morning . 我們 聊到 凌晨 兩點 . +I am afraid there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +Do not go to extremes . 别 走极端 . +When I awoke , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +What do you think of this plan ? 你 覺得 這個 計畫 如何 ? +Are you guys crying ? 你們 在 哭 嗎 ? +Please do not open the windows . 请 不要 开窗 . +Why do you want to kill me ? 你 為 什麼 想 殺 我 ? +I have always wanted to do that . 我 一直 都 想 做 . +You should try this . 你 应该 试试 这个 . +We know that this is impossible . 我們 知道 這 是 不 可能 的 . +What is her job ? 她 做 什么 工作 ? +I want to ride a horse . 我 想 騎 馬 . +I could see that . 我 能 看見 . +" Let is go , " he said to me . " 咱們 走 吧 , " 他 對 我 說 . +He is making preparations for a trip . 他 正在 籌備 一次 旅行 . +A friend of mine asked me to send her a postcard . 我 的 一位 朋友 要求 我 寄 給 她 一張 明信片 . +People love to talk . 人們 就是 愛 說 話 . +It sounds like a good idea . 它 聽 起來 是 個 好 主意 . +He is an aggressive person . 他 是 个 咄咄逼人 的 的 人 . +I could hear doors slamming . 我 可以 聽見 門 砰砰 作響 . +The prisoner was given his freedom . 囚犯 重獲 自由 . +I was going to work here all day . 我 要 在 這裡 工作 一整天 . +I do not have a good feeling about this . 我 觉得 这 没什么 好 . +I wish I had seen her . 但 願 我 見 過 她 . +The doctor will be here in a minute . 醫生馬 上 就 來 . +She spent the weekend by herself . 她 獨 自度 過 了 週末 . +I might not see Tom today . 我 今天 可能 見 不到 湯姆 了 . +We are still doing well . 我们 依然 做 得 很 好 . +Can you ride a horse ? 你 会 骑马 吗 ? +It is expensive to live in Japan . 生活 在 日本 很 昂貴 . +There goes our bus . 我们 的 车 走 了 . +The sun sets earlier in the winter . 在 冬天 , 太阳 下山 比 往常 更早 . +Do you know each other ? 你們 認識 嗎 ? +The boy took the radio apart . 这个 男孩 把 收音机 折 散架 了 . +Do you still want to give me a hug ? 你 還 想 給 我 一個 擁抱 嗎 ? +Do not ever mention that again . 永远 别 再 提 它 了 . +It was difficult for him to hide his pride in his success . 他 很 难 掩饰 对 自己 成功 的 骄傲 . +You have got a strong will . 你 的 意志力 很 強 . +Are you lost ? 你 迷路 了 吗 ? +You can tell us . 你 能 告诉 我们 . +I do not have time for reading . 我 没 时间 阅读 . +The man got away from the city . 這 名 男子 逃離 了 這個 城市 . +OK , you two , follow me . 好 , 你們 兩個 , 跟著 我 . +He helped an old lady get up from her seat . 他 幫 忙 一位 老太太 從 位子 上 站 起來 . +Give Tom any help you can . 给予 汤姆 一些 你 力所能及 的 帮助 . +I look after my grandfather . 我 照顧 我 的 爺爺 . +He helped the lady into the car . 他 幫助 這位 女士 上車 . +This is the best restaurant I know of . 这 是 我 知道 的 最好 的 餐馆 . +I can not afford that . 我 买不起 那个 . +I brush my teeth twice a day . 我 一天 刷 兩次 牙 . +I feel sad every now and then . 我 不時 地 覺得 難過 . +Here is the bill . 这 是 账单 . +I generally agree with her . 我 大致 上 同意 她 . +This is a new experience for Tom . 这 对于 汤姆 是 新体验 . +Hold your horses , young man . 握住 你 的 馬 , 年 輕 人 . +I have a boat . 我 有 一艘 小船 . +Water freezes at 32 degrees Fahrenheit . 水 在 華氏 32 度 結成 冰 . +I guess most of them went home . 我 猜 他們 大多 數 回家 了 . +I should be happy . 我 該 高興 . +He studies much harder than before . 他 比 以前 学 得 更 努力 了 . +Please come over if you have time . 如果 你 有 時間 的 話 , 請 過來 一趟 . +She always gets lost . 她 总是 迷路 . +His speech lasted three hours . 他 的 演讲 持续 了 三个 小时 . +Whether you succeed or not depends on your own efforts . 你 成功 与否 取决于 你 自身 的 努力 . +Will you lend your dictionary to me ? 把 你 的 字典 借 給 我 好 嗎 ? +After I talked with my teacher , I decided to work hard . 跟 我 的 老師 談 過 後 , 我 決定 認真 努力 . +I would like to go to France one day . 我 想 有 一天 能 去 法国 . +This stone is too heavy to lift . 這塊 石頭 太重 了 無法 抬起 來 . +I am tired of eating fast food . 我 受够 吃快餐 了 . +The world is full of incompetent doctors . 社会 上满 是 不称职 的 医生 . +She was on the verge of crying . 她 要 哭 出来 了 . +How much money do I owe you ? 我 欠 你 多少 錢 ? +We met in a coffee shop near the campus . 我們 在校 園 附近 的 咖啡 廳 碰面 . +We want to clear up this problem . 我们 像 澄清 这个 问题 +We had a history quiz this morning . 我們 今天 早上 有 歷史 小考 . +What I am saying is true . 我 說 的 是 真的 . +I need a bag . Will you lend me one ? 我 需要 个 包 . 你 能 借 我 一个 吗 ? +That is a little hard to believe . 那 有点 难以置信 . +You should speak with Tom . 你 應該 和 Tom 說 . +He may have been ill . 他 可能 病 了 . +It exploded with a loud noise . 它 發出 巨響 爆炸 了 . +I will ask him about it tomorrow , then . 那 我 明天 会 问 他 的 . +I have known her for two years . 我 认识 她 两年 了 . +I have two brothers and three sisters . 我 有 两个 兄弟 和 三个 姐妹 . +He likes mathematics , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +I am sorry that I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +Mother made a doll for me . 妈妈 给 我 做 了 一个 洋娃娃 . +Tom has been gone for ages . 汤姆 年纪 大 去世 了 . +I drive everywhere . 我 去 哪里 都 开车 . +Does he study English every day ? 他 每天 研讀 英語 嗎 ? +Tom is the tallest man I know . 湯姆 是 我 所 知道 的 最高 的 人 . +Water freezes at zero degrees Celsius . 水 在 攝 氏 零度 時 結冰 . +Do not trust anyone here . 你 在 這 別 相信 任何人 . +When did she break the window ? 她 什麼 時候 打破 了 窗戶 ? +It is no use worrying about it . 擔心 它 是 沒 有用 的 . +If Tom can not tell me , then no one can . 如果 湯姆 不能 告訴 我 , 就 沒 人 能 了 . +A female friend of mine loves to go to gay bars with me . 我 的 一个 女性朋友 喜欢 跟 我 一起 去 同志 酒吧 . +No one supported his motion . 沒人 支持 他 的 動議 . +Tom understands what it takes to survive . 汤姆 明白 生存 的 代价 . +We must intervene . 我们 必须 介入 . +The two men were business partners . 这 两个 男人 是 生意 上 的 合作伙伴 . +Tom is absent . 湯姆 缺席 . +How should I know ? 我 怎麼 知道 ? +Would you like to wait ? 你 愿意 等 吗 ? +Tom began laughing . 湯姆 開始 笑 了 . +As soon as she heard the bell ring , she answered the telephone . 她 一 聽到 鈴響 , 就 接 了 電話 . +How much is it ? 多少 錢 ? +Tom loves dogs . 汤姆 喜欢 狗 . +He still has not answered my letter . 他 还 没回 我 的 信 . +We have got to do something about this problem soon . 我们 要 快点 处理 这 问题 . +Are you a doctor ? 你 是 医生 吗 ? +The risk is too great . 风险 太大 . +Cookie is mother died of cancer . Cookie 的 母親 死 於 癌症 . +She sang better than him . 她 唱 得 比 他 好 . +Do not ask Tom any questions about his job . 别 问 汤姆 他 的 工作 的 问题 . +No one had anything left to say . 沒 有人 有 話 可 說 . +She hugged him . 她 抱 了 他 . +He comes back from Sydney today . 他 今天 從 雪梨 回來 . +Mary came on her own . Mary 自己 一個 人 來 . +We have a big supermarket . 我們 有 一個 大 超市 . +I go to the country every summer . 我 每年 夏天 都 去 鄉 下 . +I am staying at the Hilton Hotel . 我 留在 希尔顿 宾馆 . +Tom lost his job . 湯姆 丟了 工作 . +Tom is three years younger than Mary . 汤姆 比 玛丽 小 三岁 . +Leaving something unfinished is the worst thing you can do . 半途而废 是 你 所 能 做 的 最 糟糕 的 事情 . +Do not be sad . 别 伤心 . +There is a possibility you will have to do that . 你 有 可能 不得不 那么 做 . +Do you know if she can speak English ? 你 知道 她 会 说 英语 吗 ? +It is really time for us to go . 这 真是 我们 该 走 的 时候 了 . +I think this coat should fit you . 我 认为 这 外套 应该 适合 你 . +You are always watching TV . 你 總是 在 看電視 . +Can you give me a ride to the office on Wednesday ? 周三 你 可以 载 我 到 办公室 吗 ? +More money for education will spur economic growth . 更多 投資 在 教育 的 錢 將 會 刺激 經濟 成長 . +What do you usually do with your friends ? 你 一般 和 朋友 一起 做 什麼 ? +Tom shot himself in the head . 汤姆 拿 枪 射 自己 的 头 . +She might come . 她 也許 會 來 . +Scientists can easily compute the distance between planets . 科學家 們 可以 很 容易 地計 算出 行星 之間 的 距離 . +Do not ask me what it was . 别 问 我 这 是 什么 东西 ! +She called up her mother on the phone . 她 给 她 妈妈 打电话 . +Have fun . 玩 得 開心 . +It is almost time for the train to arrive . 現在 差不多 是 火車 要到 的 時間 . +She got a new CD player yesterday . 她 昨天 得到 了 一個 新 的 CD 播放 機 . +It is so secret that even I do not know what it is all about . 这 太 秘密 了 , 连 我 都 不 知道 它 是 关于 什么 的 . +There is no membership fee for joining . 參加 不用 會員費 . +Some people like red wine and some people like white wine . 有人 喜歡 紅酒 , 有人 喜歡 白酒 . +She likes to listen to music . 她 喜欢 听 音乐 . +You are free to do as you please with your money . 你 可以 隨 你 高興 的 用 你 的 錢 . +You can buy stamps at any post office . 你 在 任何 一家 邮局 都 能 买到 邮票 . +Good luck on your test . 考试 加油 ! +I wrote down the address for you . 我 給 你 寫下 了 地址 . +I am not used to spicy food . 我 不習 慣 辛辣 的 食物 . +You may choose what you like . 你 可以 選擇 你 喜歡 的 . +How many books are on the shelf ? 櫃子 上 有 幾本 書 ? +She glanced shyly at the young man . 她 羞怯 地 看 了 一眼 那個 年 輕 人 . +The boy has an apple in his pocket . 这 男孩 的 口袋 里 有个 苹果 . +Are you sad ? 你 在 难过 吗 ? +Her argument was not based on facts . 她 的 观点 没有 基于 事实 . +I am not feeling well . 我 身体 不适 . +Do you still love Tom ? 你 依然 爱 汤姆 吗 ? +I think your basic theory is wrong . 我 認為 你 的 基本 理論 是 錯 的 . +Tom and Mary went camping in the mountains . 湯姆 和 瑪麗 去 山裡 露營 . +They nominated Calvin Coolidge for vice president . 他们 提名 卡尔文 • 柯立芝 为 副 总统 . +My fountain pen is new . 我 的 钢笔 是 新 的 . +That is all I could find . 那 是 我 所有 能 找到 的 . +I do not need anybody . 我 谁 也 不 需要 . +I am just looking . 我 只是 隨便 看看 . +Whose idea was it ? 这 是 谁 的 主意 ? +I would like to see you tomorrow . 明天 我 想见 你 . +It is okay to take it easy sometimes . 有時 可以 放 輕 鬆 一下 . +Tom comes here three or four times a month . 汤姆 一个月 来 这里 三四次 . +We have to go by the rules . 我们 必须 遵守规则 . +There was not any furniture in that room . 那個 房間 裡 沒有 任何 傢 俱 . +He is three inches taller than I am . 他 比 我 高三 英寸 . +Who can do this work ? 谁 能 做 这件 工作 ? +Tom declined to give details . 汤姆 拒绝 提供 详细信息 . +If we do not keep walking we will be late . 再 不 走 就 迟到 了 . +Apparently , there is nothing that cannot happen today . 显然 , 今天 什么 事 都 有 可能 发生 . +I want to meet your older sister . 我 想 認識 你 姐姐 . +Please stay here till I get back . 請待 在 這裡 直到 我 回來 . +Everybody knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He told the students to be quiet . 他 告訴 了 學生 要 安靜 . +How heavy is your suitcase ? 您 的 行李箱 有 多重 ? +We should do our best . 我们 应该 做到 最好 . +This book is new . 这 本书 是 新 的 . +Japan is confronted with severe economic problems . 日本 正面 臨著 嚴重 的 經濟 問題 . +Do not you agree ? 您 不 同意 吗 ? +I do not know how to use it . 我 不 知道 如何 使用 它 . +What do you think I was doing ? 你 觉得 我 在 干吗 呢 ? +A drunken man was sleeping on the bench . 一個 醉 了 的 男人 在 長椅 上 睡觉 . +I am really cold . 我 真的 冷 . +I like the way she laughs at my jokes . 我 喜欢 她 因 我 的 笑话 而 欢笑 的 样子 . +He was forced to sign the document . 他 被迫 在 文件 上 簽字 . +I could not understand his ideas . 我 無法 理解 他 的 想法 . +I wrote it myself . 我 自己 写 了 它 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +You may not come in . 你 不能 進來 . +We need competent leaders . 我们 需要 称职 的 领导人 . +The tie does not go with my suit . 领带 和 我 的 西装 不配 . +There were a lot of people at the concert . 音乐会 上 有 很多 人 . +The plan was executed . 计划 被 执行 了 . +You should know better than to ask a lady her age . 你 應該 知道 不要 問 小姐 的 年齡 . +The students are all at their desks now . 学生 们 现在 都 坐在 桌前 . +We enjoyed watching the TV . 我們 喜歡 看電視 . +Do you need this book ? 你 需要 这 本书 吗 ? +Even when I was a child , I was able to swim well . 我 很小 的 时候 就 游 得 很 好 了 . +There is a telephone in the hall . 走廊 裡 有 一部 電話 . +The prisoner was behind bars for two months . 那個 囚犯 在 牢 裡 待 了 兩個 月 . +I seem to have a fever . 我 好像 发烧 了 . +Are you sure you know how to do this ? 你 真的 知道 这个 怎么 做 吗 ? +The sum of 5 and 3 is 8 . 五 和 三 的 總 和 是 八 . +You look just like your mother . 你 看 起來 就 像 你 的 母親 . +She found her purse under the desk . 她 發現 她 的 錢 包在 桌子 底下 . +Tom never did what we asked him to do . 我们 叫 汤姆 做 什么 , 他 从来不 做 . +I could not understand anything that he said . 我 不 了解 他 所 說 的 事情 . +It depends on the context . 这 要 看 情况 . +She gave me a smile of recognition . 她 給 了 我 一個 認可 的 微笑 . +Do you have other family ? 你 有 其他 家人 吗 ? +That was not my intention . 那 不是 我 故意 的 . +I have a brother in Boston . 我 有个 在 波士顿 的 兄弟 . +What you said is baloney . 你 说 的 东西 是 胡扯 . +Humor me . 你 就 随 了 我 的 意吧 . +I miss her so much . 我 那么 想念 她 . +Most boys like baseball . 大部分 男生 喜欢 棒球 . +The old man passed away this morning . 老 男人 今天 早上 去世 了 . +I do not work like that . 我 不 像 那樣 工作 . +Can I have something to eat ? 我 能 些 吃 的 東西 嗎 ? +This could be fun . 這 可能 很 好玩 . +The address on this parcel is wrong . 這個 包裹 上 的 地址 是 錯 的 . +We have your size , but not in that color . 我们 有 你 的 尺寸 , 但是 没有 那个 颜色 . +The big tree was struck by lightning . 這 棵 大樹 遭到 雷擊 . +I discovered the truth . 我 發現 了 真相 . +I wonder if Tom likes me . 我 不 知道 湯姆 是否 喜歡 我 . +Tom goes to work by motorcycle . 湯姆騎 摩托 車 上班 . +He got into this school in September last year . 他 去年 九月 进 了 这 所 学校 . +Are not you cold ? 你 不 冷 吗 ? +Why me ? 为什么 是 我 ? +I have been requested to help you . 有人 请 我 帮 你 . +The birds were flying in a group . 鸟儿 成群 飞 着 . +She is fond of singing old songs . 她 喜歡 唱 老歌 . +I do not think I have ever made any serious mistakes . 我 认为 我 没犯 任何 严重 的 错误 . +I generally walk to school . 一般 我 步行 去 学校 . +Tom pretty much forgot about the meeting . 汤姆 差不多 忘 了 开会 的 事儿 . +I saw what Tom did . 我 看到 湯姆 做 什麼 了 . +Let is all pray together . 大家 来 一起 祈祷 吧 . +Please make yourself at home . 請 不要 客氣 . +He was happy at the news of her success . 听到 她 成功 的 消息 , 他 很 高兴 . +I should have taken the money . 我 應 該 拿 那些 錢 的 . +It is very easy to learn how to swim . 学 游泳 非常简单 . +Outside the school , she saw people with no homes living in cardboard boxes . 在 校外 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +Buy milk on your way home . 回来 的 路上 买点 牛奶 . +Everyone is tired of hearing that story . 每个 人 都 听腻 了 那个 故事 . +Do you understand French ? 你 會 法語 ? +I love my life . 我 爱 我 的 生命 . +He runs a supermarket in the town . 他 在 這個 鎮 上 經營 一家 超級 市場 . +There were two cakes . 那 有 两块 蛋糕 . +Maybe I will go , and maybe I will not . 也許 我 會 去 , 也許 我 不 會 . +You may use my dictionary . 你 可以 用 我 的 字典 . +He did all he could to protect his son . 他 做 了 一切 能 做 的 去 保護 他 的 兒子 . +Will six o 'clock suit you ? 六点 您 行 吗 ? +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +Close the door when you leave . 出去 的 时候 把门 关上 . +Does Tom speak French better than Mary ? 湯姆 說 法語 比瑪麗 好 嗎 ? +I wonder why I should not do that . 我 纳闷 我 为什么 不该 那样 做 +I do not know the meaning of this word . 我 不 知道 这个 词 的 意思 . +Do you have a pen on you ? 你 身上 有 铅笔 吗 ? +Were you in America last month ? 你 上 個 月 在 美國 嗎 ? +I have not heard that she will come . 我 沒 聽 說 她 會 來 . +What a strong wind ! 多麼 強 的 風 啊 ! +It is a pity that you could not come . 很 遺憾 你 不能 來 . +Tom snickered at Mary . 汤姆 暗中 笑 玛丽 . +This will not help you . 這 幫 不了 你 . +Why did you come home so late ? 你 為 什麼 這麼 晚 回家 ? +Tom wasted time . 湯姆浪 費 時間 . +I do not play the piano . 我 不彈 鋼琴 . +Neither Tom nor Mary has found anything valuable . 汤姆 和玛丽 都 没有 发现 什么 有 价值 的 东西 +Let is go indoors . 我們 進屋 吧 . +I was mistaken for a salesman . 我 被 誤 認為 是 推 銷員 . +Keep the window closed . 让 窗子 关着 . +Why are you still at school ? 你 为什么 还 在 学校 ? +I need to ask you a silly question . 我 必须 问 你 一个 蠢 问题 . +I am a professional photographer . 我 是 專業 攝影師 . +I studied around the clock . 我 夜以繼日 地 讀 書 . +Do you often have fish for dinner ? 你 常常 晚餐 吃 魚 嗎 ? +Today is Saturday and tomorrow is Sunday . 今天 是 周六 , 明天 是 周日 . +Part of his story is true . 他 的 故事 一部分 是 真的 . +Is there someone who could help me ? 有 誰 可以 幫 我 嗎 ? +I have a shower every night . 我 每晚 洗澡 . +I do not have the time or the money . 我 沒有 時間 , 也 沒有 錢 . +We did it ourselves . 我们 自己 做 的 . +You can stay here till the snow stops . 你 可以 在 這裡 等到 雪 停 . +Did you hear what I said ? 你 聽 見 我 說 的 了 嗎 ? +Tom is afraid of everyone . 湯姆 害怕 每個 人 . +I just thought I should double check . 我 只 覺得 我 應 該 再 檢查 一遍 . +May I come and see you now ? 我 現在 可以 來 看看 你 嗎 ? +Have you ever dyed your hair ? 你 染 過 頭 髮 嗎 ? +She cried all night . 她 一 整晚 都 在 哭 . +Why are you crying ? 你 為 什麼 哭 ? +I like mathematics . 我 喜欢 数学 . +Did you visit the Tower of London ? 你 參觀 倫敦 塔 了 嗎 ? +My computer is acting strange . 我 的 电脑 好 诡异 . +According to the guidebook , this is the best restaurant around here . 根據 指南 , 這 是 這 附近 最好 的 餐館 . +What do you think Tom is waist size is ? 你 认为 汤姆 的 腰围 是 多少 ? +Tom put some salt on his eggs . 湯姆 在 他 的 蛋 上 撒 鹽 . +An honest man never steals money . 誠實 的 人 從 不 偷 錢 . +They are still in Boston . 他們 還 在 波士 頓 . +Do you know the difference between a microscope and a telescope ? 你 知道 显微镜 和 望远镜 的 差别 吗 ? +Eat a live frog every morning , and nothing worse will happen to you the rest of the day . 每天 早上 吃一 隻 活 青蛙 , 那麼 你 一天 中 其他 的 時間 就 不 會 發生 什麼 更 糟糕 的 事 了 . +I did not catch what he said . 我 没 听懂 他 说 的话 . +You look like a monkey . 你 看着 像 猴 . +I have lost my watch . 我 把 我 的 表 丢 了 . +It is rude to stare at strangers . 盯著 陌生人 看 是 不 禮貌 的 . +It is especially hot today . 今天 特別 熱 . +They went to America last month . 他們 上 個 月 去 美國 . +As far as I know , he did nothing wrong . 据我所知 , 他 没 做 错 任何 事 . +I love apple juice . 我 愛 蘋 果汁 . +I do not mind walking in the rain . 我 不介意 在 雨 中 漫步 . +I can not forget what happened that day . 我 无法 忘记 那天 发生 了 什么 . +You are very alert . 你 真是 警惕 . +He is a liar . 他 是 個 騙子 . +I am not used to walking long distances . 我 不習 慣 走 很 長 的 路 . +Get on the horse . 上马 . +I do not feel like eating anything today . 我 今天 不想 吃 东西 . +Tom has three cats . Tom 有三 隻 貓 . +Can you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Stop joking around . 不要 隨便 開 玩笑 . +I do not want Tom to do that alone . 我 不想 讓 湯姆 自己 做 . +Tom is out cold . 汤姆 正 昏迷不醒 . +When will you be free ? 你 什麼 時候 有空 ? +You should do the honorable thing and resign . 你 應該 光榮 地 辭職 . +Do not you agree ? 你 不 同意 吗 ? +Leave my car alone . 不要 碰 我 的 車 . +I would like to see him tomorrow afternoon . 我 想 明天 下午 見 他 . +Her skin is smooth . 她 的 皮膚 光滑 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +Is there enough food for everyone ? 有 足夠 的 食物 給 大家 嗎 ? +Tom did not think that anybody would recognize Mary . 汤姆 不 认为 有人 会 认出 玛丽 . +When we are told not to come , we become all the more eager to go . 让 我们 别 来 , 我们 就 更 想来 了 . +This room is cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I can speak Chinese , but I can not read it . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +It is as smooth as a baby is bottom . 它 像 婴儿 的 屁股 一样 光滑 . +Which one are you referring to ? 你 指 的 是 哪个 ? +He is bound to forget . 他 准会 忘 . +She gives me a nasty look every time she sees me . 她 每次 看見 我 都 給 露出 厭惡 的 眼神 . +I am very interested in jazz . 我 對 爵士 樂 很 有 興趣 . +I do not think Tom will like this place . 我 不 认为 汤姆 喜欢 这个 地方 . +She did not feel like eating lunch . 她 不想 吃 午 飯 . +Is she a taxi driver ? 她 是 出租车 司机 吗 ? +Drivers should wear seat belts . 司機 應該 繫 安全 帶 . +He changed his mind . 他 改变 想法 了 . +China is twenty times as large as Japan . 中国 是 日本 的 20 倍 大 . +There was a car accident yesterday . 昨天 發生 了 一場 車禍 . +I know the boy standing over there . 我 知道 站 在 那裡 的 那個 男孩 . +The television does not work . 电视机 坏 了 . +How did your weekend go ? 你 的 周末 是 怎么 过 的 ? +Everybody is laughing . 每個 人 都 在 笑 . +You are such a jerk . 你 真是 個 傻子 . +She is giving the baby a bath . 她 正在 給 嬰兒 洗澡 . +He is a big boy . 他 是 個 大 男孩 . +Life is full of ups and downs . 人生 充滿 了 高低 起伏 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +This is not a tiger . 这 不是 老虎 . +The policeman aimed his gun at the man . 警察 瞄准 了 那个 男人 . +Are you here to see Tom ? 你 是 來 見 湯姆 的 嗎 ? +Let is go home . 让 我们 回家吧 . +Mary wanted to marry a man with ambition . 以前 , 玛丽 想 和 一位 有 雄心壮志 的 男人 结婚 . +Someone stole my laptop computer . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Are you feeling under the weather ? 你 感觉 不 舒服 吗 ? +Do not be fooled . 別 被 騙 了 . +It looks as if it is going to rain . 天 看起来 要 下雨 了 . +I am a little bit concerned . 我 有点 担心 . +Why do not you hug me ? 你 為 甚麼 不 抱 我 ? +There is something wrong with my car . 我 的 車子 有 問題 . +There is no chance of rain today . 今天 不 可能 下雨 . +I can read German , but I can not speak it . 我 能 看 德语 , 但是 不能 说 . +There is a hole in this bucket . 這個 桶子 上 有 個 洞 . +The strike affected the nation is economy . 罢工 妨碍 了 国家 经济 . +Why did you marry Tom ? 你 為 甚麼 跟 湯姆 結婚 ? +He is always at home on Mondays . 他 星期一 總是 在家 . +He had barely enough to eat . 他 仅 有够 糊口 的 吃 的 . +It is likely to snow this evening . 今天 晚上 可能 會 下雪 . +I booked a seat . 我 訂 了 一個 位子 . +Please move your bicycle out of here . 請 將 您 的 自行 車 移出 這裡 . +She handed him the key . 她 遞給 了 他 鑰匙 . +Something has happened to my car . 我 的 车 出 了 点 事 . +You do not need a gun . 你 不 需要 枪 . +That is what Tom promised . 那 是 汤姆 承诺 的 . +The train was delayed because of heavy snowfall . 火车 因 大雪 被 耽搁 了 . +Travel agencies ' profits soared . 旅行社 的 利润 猛涨 . +It belongs to my brother . 它 屬 於 我 兄弟 . +My brother is a college student . 我 哥哥 是 個 大學 生 . +He likes taking a walk by himself . 他 喜欢 独自 散步 . +President Lincoln accepted the invitation . 林肯 总统 接受 了 邀请 . +I am sorry my pronunciation is not very good . 不好意思 我 发音 不太好 . +English is studied in Japan . 英語 在 日本 被 學習 . +We made every effort to help him . 我們 盡 了 一切 努力 來 幫助 他 . +We surrender . 我們 投降 . +I always feel blue on Mondays . 我 每個 星期一 都 覺 得 很 憂鬱 . +The police did not find any clues . 警方 沒有 發現 任何 線索 . +I like your room . 我 喜欢 你 的 房间 . +I finished reading the book last night . 我 昨晚 看完 了 這 本書 . +We did not bring it back . 我们 没 把 它 带 回来 . +Tom promised that he 'd come , but he did not . 湯姆 答應 他 會 來 , 但 他 沒來 . +I always have to wear a tie because of my job . 因為 我 這份 工作 的 緣故 , 我 總是 要 打 領帶 . +Have you heard from him ? 你 收到 他 的 音訊 了 嗎 ? +She is about the same age as I am . 她 大約 跟 我 同年 紀 . +I returned the books I borrowed from the library , and I borrowed some new ones . 我 还 了 从 图书馆 借 的 书 , 又 借 了 些 新 的 . +Thank you for telling me the truth . 謝謝 你 告訴 我 真相 . +He went to Italy for the purpose of studying music . 他 去 義 大利 的 目的 是 學習 音樂 . +How long do you plan to stay ? 你 准备 待 多久 ? +Tom came up with an answer to our problem . 汤姆 给 我们 的 问题 想出 了 个 答案 . +He will be coming to the party . 他 會 來 參加 派 對 . +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +How about you ? 您 呢 ? +I went for a walk in the park . 我 去 公园 散 了 步 . +I could not answer all the questions . 我 无法回答 所有 问题 . +I can not make out what he wants . 我 不 明白 他 想要 什么 . +Are you mad ? 你 生气 了 吗 ? +Our school is across the river . 我們 學校 在 河 的 對面 . +He pushed the emergency button . 他 按 下 了 緊急 按 鈕 . +I am the laziest person I know . 我 是 据我所知 最懒 的 人 . +I forgot what his name was . 我 忘记 他 叫 什么 名字 了 . +He does not live there anymore . 他 不再 住 在 這裡 了 . +This house is mine . 這 房子 是 我 的 . +Please give me a glass of milk . 請 給 我 一杯 牛奶 . +I am very , very sorry . 我 非常 , 非常 抱歉 . +You need to let me handle this . 你 要 让 我 来 解决 . +He changed schools last year . 去年 他 换 了 学校 . +These two words are easily confused . 这 两个 词 容易 混淆 . +Lunch is ready . 午餐 好 了 . +Tom does not know who he can trust anymore . 湯姆 不 知道 他 還 能 再 信任 誰 . +What is your phone number ? 你 电话号码 是 多少 ? +I will be back in a jiffy . 我 马上 就 回来 . +It is an advantage to be able to use a computer . 會 用 電腦 是 一個 好 處 . +Tom is crying , too . 湯姆 也 在 哭 . +Where is the phone book ? 电话簿 在 哪里 ? +She is been absent from school for five days . 她 已经 五天 不 上学 了 . +I wonder if I can do it again . 我 不 知道 我 能 不能 再 做 一次 . +May I have the check , please ? 請 把 帳單 給 我 好 嗎 ? +Our math teacher drew a circle on the blackboard . 我们 的 数学老师 在 黑板 上 画 了 一个 圆 . +It is already 11 . 已经 是 11 点 了 . +We are on the third floor . 我们 在 三 楼 . +I gave Tom a going @-@ away present . 我 送给 汤姆 一份 临别 礼物 +We have a door between our offices . 我們 的 辦 公室 之間 有 扇 門 . +I can not believe you bought this . 我 不信 你 買 了 這個 東西 . +Smoke appeared . 烟雾 出现 了 . +I competed with him for the championship . 我 和 他 競爭 冠軍 . +I am always forgetting people is names . 我 總是 忘記 別人 的 名字 . +Drop the knife ! 把 刀 放下 ! +He came back from America . 他 從 美國 回來 了 . +I had an accident at work . 我 出 了 工伤 . +His bicycle is blue . 他 的 自行车 是 蓝色 的 . +We have to think about it . 我們 必須 考慮 它 . +I do not like the food at that deli . 我 不 喜欢 那 家 熟食店 里 的 食物 . +I never thought that would happen . 我 从来 没想到 会 发生 那种 事 . +He was severe with his children . 他 对 自己 的 孩子 很 严格 . +Make it smaller . 把 它 弄 小 一點 . +I wonder what else Tom wants . 我 想 知道 汤姆 还要 别的 什么 . +Be careful not to drive the wrong way on a one @-@ way street . 小心 不要 在 单行道 逆向行驶 . +How do you pronounce this word ? 这个 词 怎么 发音 ? +I find it difficult to express my meaning in words . 我 覺 得 很 難用言語 表達 我 的 意思 . +I like my coffee without sugar . 我 喜欢 喝咖啡 不 加糖 . +Pizza is the kind of food that fits into today is life style . 比萨 是 种 适合 现在 的 生活 方式 的 食物 . +I heard the song sung in French . 我 听 过 这 首歌 的 法语 版 . +" Did you watch TV last week ? " " No , I did not . " “ 上周 你 看电视 了 吗 ? ” “ 没有 , 我 没 看 . ” +They like to sing . 他们 都 喜欢 唱歌 . +I am not as optimistic as you are . 我 不 像 你 那么 乐观 . +France is running a welfare state it can no longer afford . 法國 是 一個 福利 國家 , 但 它 卻 不再 能夠 負擔 得起 了 . +The baby smiled at me . 宝宝 对 我 笑 了 . +You must pay in advance . 您 必须 预先 付钱 . +The man you saw yesterday was my uncle . 你 昨天 看到 的 那个 男人 是 我 叔叔 . +Calm down . 冷静 点 . +You ought not to make fun of them . 你 别 嘲弄 他们 . +We can begin . 我們 能 開始 . +I like dragon fruit . 我 喜欢 火龙果 . +Is that for sale ? 这个 卖 不卖 ? +Why do people not always tell the truth ? 为什么 人们 不 总是 讲 真话 ? +I will do the shopping for her birthday . 我 要 去 给 她 生日 买点 东西 . +What do you want me to do ? 你 要 我 做 什麼 ? +He broke the window on purpose . 他 故意 打破 了 窗戶 . +Their losses reached one million yen . 他們 的 損失 到 達 了 一百 萬日 圓 . +Do you take part in any community activities ? 你 参加 社团活动 吗 ? +I do not know where Tom was going . 我 不 知道 汤姆 往 哪 去 了 . +How did you accomplish this ? 你 怎么 完成 的 ? +Those flowers have died . 那些 花 已經 枯死 了 . +How is your project coming along ? 你 的 项目 进展 得 怎么样 ? +Who can tell the difference ? 谁 能 说 清 不同点 ? +There is the train at 10 o 'clock . 十點鐘 有 一班 火車 . +My head hurts . 我 头痛 . +She boiled the eggs . 她 煮 了 蛋 . +He lied to us . 他 欺騙 了 我們 . +Ebola is one of the most virulent viruses known to man . 埃 博拉 是 人类 已知 的 最 致命 的 病毒 之一 . +She was wearing dark brown shoes . 她 穿著 深褐色 的 鞋子 . +Do you understand what I am saying ? 你 明白 我 的 意思 嗎 ? +Tom runs faster than me . 汤姆 跑 得 比 我 快 . +Where else should we go ? 我们 要 去 其他 的 什么 地方 ? +I am sorry to hear it . 我 听 了 感到 抱歉 . +He is three years older than me . 他 比 我 大三 歲 . +Friends are like flowers in the garden of life . 朋友 就 像 生命 之 园里 的 花朵 . +What time is the next performance ? 下 一場 表演 在 幾點鐘 ? +I felt something moving on my back . 我 感到 背上 有 东西 动 . +I do not want to fail my exams . 我 不想 落榜 . +What a surprise ! 太 惊喜 了 ! +I thought I had all the answers . 我 認為 我 有 所有 的 答案 . +We got lost in the snow . 我們 在 雪地 裡 迷了路 . +" The good die young " is an old saying which may or may not be true . “ 好人 不 长命 ” 是 句 或 真 或 假 的 老话 . +Your time is up . 你 的 時間 到 了 . +She accused me of being a liar . 她 罵 我 是 個 騙子 . +He still has not responded to my letter . 他 还 没回 我 的 信 . +My father goes to church on Sunday . 我 爸爸 週日 上 教堂 . +Something strange is happening . 正 有 什么 奇怪 的 事情 发生 着 . +They wanted to know where Tom was . 他們 想 知道 湯姆 在 哪 . +I lost my wallet . 我 掉 了 我 的 钱包 . +Our children like dogs , but I prefer cats . 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +Where is the tourist information office ? 遊客 諮詢 處 在 哪裡 ? +He often walks to school . 他 常常 走路 去 學校 . +His mother sat up all night waiting for her son . 他 的 妈妈 坐 了 一整夜 , 等 她 的 儿子 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Do I know you ? 我 认识 你 吗 ? +Tom has a lot to think about . 汤姆 要 考虑 很多 . +They are kids . 她们 是 孩子 . +I can not believe Tom kissed me . 我 不敢相信 汤姆 亲 了 我 . +He left in the blink of an eye . 他 一转眼 就 跑 了 . +I cannot agree with you on the matter . 在 这件 事 上 , 我 无法 赞同 你 . +How will the weather be tomorrow ? 明天 天氣 怎麼樣 ? +I hope Tom is predictions are wrong . 我 希望 汤姆 的 预测 是 错 的 . +Stop looking for problems , Tom . 别 找事 , 汤姆 . +It is difficult for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +What would you say to Tom ? 你 要 对 汤姆 说 些 什么 ? +I will be able to assist you . 我 能 協助 你 . +Leave the book where it was . 把 书 放在 原处 . +I have difficulty in Japanese . 我 学 日 語 有 困難 . +I am a Japanese high school girl . 我 是 一個 日本 的 高中女生 . +The French lost the battle of Waterloo . 法國 人 在 滑鐵盧 之 役 吃 了 敗仗 . +I know that you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +He hid it behind the door . 他 把 它 藏在 了 门 后 . +He has a test next week . 他 下禮 拜要 考試 . +Where is the stage door ? 请问 剧场 后门 在 哪 ? +I am familiar with this subject . 我 熟悉 這個 主題 . +I want a lot more . 我 要 多 很多 . +His death was a great loss to our firm . 他 的 死 对 我们 公司 是 一个 巨大 的 损失 . +The teacher granted me permission to go home early . 老師 允許 我 提前 回家 . +What have you done with my bag ? 你 用 我 的 袋子 做 了 什麼 ? +She got sick this weekend . 她 周末 病倒 了 . +I bought a pen , but I lost it . 我 买 了 一支 钢笔 , 但 我 把 它 丢 了 . +Do you think I am crazy ? 你 认为 我 疯 了 吗 ? +A thousand yen will do . 1000 日元 足够 了 . +I can not agree with you . 我 无法 同意 你 的 意见 . +He will do whatever you ask him to . 他 會 做 任何 你 要求 他 做 的 事 . +I know I owe you money . 我 知道 我 欠 你 錢 . +Can you help me ? 你 能 幫 我 嗎 ? +If it rains tomorrow , we will stay at home . 如果 明天 下雨 , 我们 就 呆 在家 . +You have to work hard . 你 必须 努力 工作 . +Tom checked the TV schedule to see what was on . 汤姆 检查 电视 时间表 , 看看 在 上映 什么 . +Let is sit on the grass . 我们 坐在 草地 上 吧 . +I wish you 'd slow down . 我 希望 你 慢下 來 . +What is in the closet ? 橱柜 里 有 什么 ? +He can play both tennis and baseball . 他 既 会 打网球 , 又 会 打 棒球 . +Everybody jumped into the pool . 每個 人 都 跳進 了 游泳池 . +You are very early this morning . 你 今天 早上 非常 早 . +Would it be ethical to sacrifice one person to save many ? 为了 救 许多 人 牺牲 一个 人 是否 道德 ? +Tom is swimming . 汤姆 在 游泳 . +This piece is in a major key . 这 首 曲子 是 大调 . +He sells fruit . 他 卖 水果 . +He tried to concentrate on the letter . 他 试图 把 注意力 集中 在 信 上 . +The building is seven stories high . 這棟 建築物 有 七層 樓 高 . +I listen to the radio after dinner . 晚饭 后 我 听 收音机 . +This novel is very difficult to understand . 这部 小说 很 难 读懂 . +What does it mean ? 这 是 什么 意思 ? +The more books you read , the more you will know . 你 看 的 书 越多 , 你 知道 的 越多 . +Tom said he 'd be willing to do this . 汤姆 说 他 乐意 做 这事 . +You have many books . 您 有 很多 书 . +How is it going ? 你們 好 嗎 ? +I have to go to sleep . 我 该 去 睡觉 了 . +I can swim well . 我 游泳 可以 游 得 很 好 . +Tom wants children , but Mary does not . 汤姆 想要 孩子 , 但 玛丽 不想 . +We have no chance against those top players . 我们 没 机会 赢 那些 一流 选手 . +Keep to the left when driving . 車輛 靠左 行駛 . +She cut up the cloth to make bandages . 她 裁布 做 绷带 . +Everyone knows me . 大家 都 認識 我 . +Let is go out and eat dinner together from time to time . 讓 我們 偶爾 出去 一起 吃 晚餐 . +She traveled around Japan . 她 环游 了 日本 . +Tom does not mind helping Mary occasionally . 汤姆 不介意 偶尔 给予 玛丽 帮助 . +You should have helped him with his work . 你 應 該 幫 他 工作 的 . +You may choose any book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +I do hope you will come again . 我 很 希望 你 会 再 来 . +Keep it in a cool place . 保存 在 陰涼 的 地方 . +My leg was bitten by that dog . 我 的 腿 被 那 隻 狗 咬 了 . +I am walking with her . 我 正 跟 她 一起 走 . +Would you like another glass of wine ? 你 想 再 来 杯酒 吗 ? +How are you ? Did you have a good trip ? 你 怎么样 ? 旅游 愉快 吗 ? +My brother takes care of our dog . 我 弟弟 照顧 我們 的 狗 . +Hang on till I get to you . 坚持下去 直到 我 找到 你 . +I awoke to find it snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Each of them was given a prize . 他們 每個 人 都 被 授獎 了 . +This is the time he normally arrives . 他 这个 时候 该 到 了 . +If you hear hoofbeats , do not look for zebras . 不要 听 风 就是 雨 . +I really like him , but not his circle of friends . 我 真的 很 喜歡 他 , 可是 我 不 喜歡 他 周圍 的 朋友 . +They gave a big party for me . 他們 為 我 辦 了 一個 盛大 的 派 對 . +I will wait here till he comes back . 我会 在 这里 等 着 到 他 回来 的 . +Can you imagine walking on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I see a flower on the desk . 我 看见 书桌上 有 朵花 . +The room is full of people . 屋里 挤满 了 人 . +Mary treated her wounded knee . 玛丽 处理 了 膝盖 的 伤口 . +We just wanted to win . 我們 只 想 贏 . +My son is brushing his teeth . 我 儿子 在 刷牙 . +Is it true that you built this house by yourself ? 你 真是 自己 造 了 这栋 房子 吗 ? +If it rains tomorrow , I will not go to the picnic . 如果 明天 下雨 的话 , 我 就 不 去 野餐 了 . +I know how to solve the problem . 我 知道 怎么 解决 这个 问题 . +She always wears black . 她 總 是 穿著 黑色 的 衣服 . +Mother Nature is generous . 大自然 很 慷慨 . +I do not have a bike . 我 沒有 腳踏車 . +The hunter shot the fox dead . 獵人 射 殺 了 狐狸 . +I will get you some coffee . 我 會 給 你 帶 些 咖啡 . +The funeral was yesterday . 葬 禮 是 昨天 . +I thought you said something . 我 觉得 你 说 了 什么 . +The baby was sound asleep in her mother is arms . 孩子 在 母亲 的 怀中 熟睡 . +We have two children . 我們 有 兩個 孩子 . +I paid about fifty dollars . 我 花 了 大約 五十 美元 . +We went halfway up the mountain . 我們 爬 到 了 半山腰 . +I am pleased with his work . 對 於 他 的 工作 我 很 滿意 . +It may freeze next week . 下周 可能 会 结冰 . +I did not call on him because I had a cold . 我 没有 拜访 他 , 因为 我 感冒 了 . +He built a new house for himself . 他 給 自己 蓋 了 一棟 新房子 . +He is capable of teaching Spanish . 他 有 能力 教授 西班牙文 . +The evidence is clear . 证据确凿 了 . +I will buy a new car next month . 我 下个月 买辆 新车 . +I can come , too . 我 也 能 去 +The tsunami alert was cancelled . 海啸 的 警报 解除 了 . +Opinions vary from person to person . 观点 因人而异 . +Wash the dishes . 把 盤子 洗 了 . +She is in the bath . 她 在 浴室 . +I want to be the one who decides . 我 想 成为 决策 的 人 . +He likes to hunt . 他 喜欢 打猎 . +Tom asked us to leave him alone . 汤姆 要 我们 留 他 独自一人 . +She is absent because she is sick . 她 不 在 是因为 病 了 . +The project was a great success . 該 計劃 是 一個 大 成功 . +Scary movies will frighten the children . 恐怖片 會 嚇 到 小孩 . +There are many birds in this forest . 这个 森林 里 有 很多 小鸟 . +I must be leaving now . 我 現在 必須 離開 . +Tom can swim pretty well . 汤姆 能 游 得 很 好 . +Do your best in anything you do . 你 做 任何 事 都 要 尽全力 . +Keep trying . 继续 努力 . +I have a reservation for tonight . 我 有 今晚 的 預訂 . +Does he have any brothers ? 他 有 任何 的 兄弟 嗎 ? +If someone irritates you , it is best not to react immediately . 如果 有人 激怒 你 , 你 最好 不要 立刻 做出 反应 . +He sold his business and retired . 他 賣 掉 了 他 的 事業 並且 退休 . +His sudden appearance surprised us all . 他 的 突然 出现 , 让 我们 都 感到 惊讶 . +When will you leave ? 你 什么 时候 离开 ? +Health is better than wealth . 健康 勝 過 財富 . +They were afraid . 他们 害怕 了 . +Eating fish is good for your health . 吃 鱼 有益于 你 的 健康 . +There is a certain amount of truth in what he is saying . 他 說 的 話 有 一定 的 道理 . +You can not park around here . 你 不能 在 這 附近 停車 . +I am a member of the swimming club . 我 是 游泳 俱樂部 的 會員 . +I guess I will have to leave now . 我 想 我 現在 得 走 了 . +Go at once , otherwise you will be late . 立刻 走 , 否則 你 會 遲 到 . +The colors of the American flag are red , white and blue . 美国 国旗 的 颜色 是 红白 蓝 . +When does that start ? 什么 时候 开始 ? +She is a native speaker of French . 她 的 母語 是 法語 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +He threw a ball over the fence . 他 把 球 扔 過 了 柵欄 . +The fastest way to travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +Tom put his wallet on the desk . 汤姆 把 钱包 放在 了 桌子 上 . +It was truly depressing . 真的 令人 丧气 . +His low salary prevents him from buying the house . 他 的 低 薪水 让 他 买 不了 房 . +Speaking English is very difficult for me . 說 英語 對 我 來說 很困 難 . +Tom had never lied to me before . 湯姆 以前 從 不 向 我 說 謊 . +He has plenty of money in the bank . 他 在 银行 里 有 大量 钱财 . +Tom is thrilled . 汤姆 兴奋不已 . +We can do more than they can . 我們 能比 他們 做 得 多 . +Can you see ? 你 能 看 吗 ? +I know what you meant . 我 知道 你 是 什么 意思 . +Have you ever broken your glasses ? 你 摔坏 过 你 的 眼镜 吗 ? +He is started looking for a job . 他 开始 找 工作 了 . +I had him write it . 我 要 他 寫 . +Do you have something to say ? 你 有 什么 事 要说 吗 ? +There is only one bath towel . 只有 一條 浴巾 . +My son is tired of hamburgers . 我 的 兒子 厭煩 了 漢堡 包 . +Do not walk alone after dark . 不要 一個 人 在 黑暗 中 走 . +Any emotion , if it is sincere , is involuntary . 任何 情绪 , 只要 它 是 真诚 的 , 就 说明 它 是 发自内心 的 自然 流露 . +I am sorry , but I can not answer right away . 我 很 抱歉 , 但 我 無法 立即 回答 . +My father has been in good shape since his operation . 自从 手术 后 , 我 父亲 一直 处于 良好 的 状态 . +How long can I borrow this book ? 这 本书 我 能 借 多久 ? +Tom does not have a dad . 汤姆 没有 父亲 . +Tom doubts whether Mary is honest . 湯姆懷 疑 瑪麗 是否 誠實 . +In general , consumers prefer quantity to quality . 一般 來 說 , 消费者 喜歡 數量 勝 於 質量 . +Pass me the salt . 请 给 我 盐 . +I have not finished this . 我 做不了 這個 . +She is dieting . 她 在 节食 . +I found the work very interesting . 我 覺得 這個 工作 非常 有趣 . +Show me an example . 给 我个 例子 . +" What is going on in the cave ? I am curious . " " I have no idea . " " 山洞 裡 發生 了 什麼 事 ? " 我 很 好奇 . " 我 不 知道 . " +No matter what you say , the answer is " no . " 不管 你 說 什麼 , 答案 就是 " 不 . " +Which one is easier ? 哪 一個 最 簡單 ? +He asked for a drink of water . 他 要 了 水 喝 . +It may not be possible . 不太可能 . +I will take this umbrella . 我 將 拿 這 把 傘 . +Can you read ? 你 能 閱讀 嗎 ? +At first , I thought they were sick . 一 开始 , 我 以为 他 病 了 . +I like movies a lot . 我 很 喜歡 電影 . +It is no good trying to persuade her . 試圖 勸 她 是 沒 有用 的 . +We went to London last year . 我们 去年 去 了 伦敦 . +I asked him many questions about ecology . 我 問 了 他 許多 關 於 生態 環境 的 問題 . +What time was she born ? 她 幾點 出生 的 ? +You should tell the truth . 你 该 把 事实 说 出来 . +Yes , I have student ID . 是 的 , 我 有 學生 證 . +She got married when she was twenty @-@ five . 她 二十五 歲時 結婚 了 . +I remember locking the door . 我 記得 鎖門 了 . +I am going to stay here for a couple of days . 我 將 要 在 這裡 待 幾天 . +The baby is sleeping . 宝宝 正在 睡觉 . +Give me the book . 給 我 這 本書 . +I do not have many friends . 我 朋友 很少 . +Tom is playing the violin now . 湯姆 正在 拉 小提琴 . +Look out for cars when you cross the road . 當 你 過 馬路 的 時候 要 當心 汽車 . +I aimed my gun at the target . 我 把 我 的 手枪 指向 了 目标 . +English is a language spoken all over the world . 英語 是 一種 全世界 通用 的 語言 . +I finally persuaded him to buy it . 我 終 於 說 服 了 他 買 它 . +They are leaving Japan tomorrow . 明天 他們 將 離開 日本 . +The dog is blind in one eye . 這 隻狗的一 隻 眼睛 瞎 了 . +You must be careful of the traffic when you cross the street . 横穿马路 时 你 要 留心 . +He came to my house on the pretext of seeing me . 他 打着 见 我 的 幌子 来 了 我家 . +My brother has become a priest . 我 的 兄弟 已经 成为 了 牧师 . +Are you going to school tomorrow ? 你 明天 要 去 上 學 嗎 ? +It is night . 是 晚上 了 . +The danger is over . 危險 已過 去 . +Do not give in to those demands . 不要 屈服 於 這些 要求 . +I feel like this is not going to end well . 感觉 这 不会 有个 好 结局 . +Man is the only animal that can make use of fire . 人 是 唯一 会 使用 火 的 动物 . +What do you want to know ? 你 想 知道 什麼 ? +Did Tom give any other suggestions ? 汤姆 提出 其他 建议 了 吗 ? +A lot of students around the world are studying English . 世界 上 許多 學生 正在 學習 英語 . +I know life is short . 我 知道 生命 是 短暂 的 . +Did you complete the work ? 你 完成 工作 了 吗 ? +I have got blisters on my feet . 我 的 腳 起水泡 了 . +You can not live like this . 你 不能 這樣 活 . +I studied English when I was there . 當 我 在 那裡 的 時候 , 我 學習 英語 . +Some furniture is put together with glue . 一些 家具 是 用 膠水 黏在 一起 . +I hope people are satisfied . 我 希望 人们 满意 . +That is a shame . 那 是 一個 恥辱 . +Why do people commit suicide ? 为什么 人们 会 自杀 ? +How many pictures did you buy ? 你 買 了 多少 張圖 畫 ? +Tom used to swim a lot when he was younger . 汤姆 年轻 的 时候 经常 游泳 +Happy is the man who is contented . 知足常乐 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +Tom is Mary is uncle . 汤姆 是 玛丽 的 叔叔 . +If two men always have the same opinion , one of them is unnecessary . 如果 两个 人 总是 意见 相同 , 那么 他们 其中 一个 就 没 必要 了 . +She has a dog and six cats . 她 有 一只 狗 和 六只 猫 . +That river flows into the Pacific . 这条 河 汇入 太平洋 . +I had a funny dream last night . 我 昨晚 做 了 一個 有趣 的 夢 . +I could not sleep . 我 睡 不著 . +By the way , did you hear that Mary quit her job ? 话 说 , 你 听说 玛丽 辞职 了 吗 ? +She tends to be late for school . 她 往往 會 上學 遲到 . +We can change if we want to . 如果 我们 想 , 我们 就 能变 . +This is a true story . 这个 故事 是 真的 . +We had a heart @-@ to @-@ heart talk with each other . 我们 促膝谈心 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Her father is Japanese . 她 父親 是 日本 人 . +My father caught three fish yesterday . 昨天 我 爸爸 抓到 了 3 条鱼 . +She is eating an apple . 她 正 吃著 一個 蘋果 . +I threw away my shoes . 我 把 自己 的 鞋子 扔掉 了 . +He does not have any children . 他 沒有 孩子 . +I make it a rule not to watch television after nine o 'clock . 我 规定 自己 在 九点 之后 不 看电视 . +He usually went to bed at eleven . 他 通常 在 十一 點 上床 睡覺 . +Are not you hot ? 你 不 热 吗 ? +Instead of going to Europe , I decided to go to America . 我 决定 去 美国 , 而 不是 欧洲 . +He bumped his head against a post . 他 的 頭 撞 到 了 一根 柱子 . +Did you leave the window open ? 你 讓 窗戶 開著 嗎 ? +I will try to find them for you . 我会 努力 帮 你 找到 他们 . +He even called me an idiot . 他 甚至 骂 我 傻瓜 . +Where is the bathroom ? 廁 所在 哪裡 ? +I can do it without your help . 沒有 你 的 幫忙 我 也 能 做 . +This is a great moment . 这 是 一个 伟大 的 时刻 . +He is very angry . 他 非常 生气 . +They did not act quickly . 他们 没有 立刻 行动 . +Blondes earn 7 % more than women with any other hair color . 金 髮 女郎 比 其他 顏色 頭 髮 的 女人 多 賺 7 % . +Will you accept this job ? 你 会 接受 这份 工作 吗 ? +He is a bit lively . 他 有点 活泼 . +Are you good at mathematics ? 你 数学 好 吗 ? +Oh , no ! My house is on fire ! 哦 , 不 ! 我 的 房子 着火 了 ! +Was Tom watching TV last night ? 湯姆 昨天晚上 在 看電視 嗎 ? +Would you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +The company cancelled the meeting . 公司 取消 了 会议 . +She wrote to her parents at least once a week . 他 给 父母 写信 至少 一周 一次 . +Who are you going with ? 你 和 谁 一起 去 那 ? +" Why are not you going ? " " Because I do not want to . " " 你 为什么 不 去 ? " " 因为 我 不想 去 . " +I am very sad . 我 很 难过 . +I do not drink or smoke . 我 既 不 抽烟 也 不 喝酒 . +He said that it was nine o 'clock . 他 说 九点 了 . +Can you help me a little ? 你 能 帮 我 一点 忙 吗 ? +I think he will come . 我 想 他 会 来 的 吧 . +He is very good at guitar . 他 非常 擅長 吉他 . +I do not know , nor do I care . 我 不 知道 , 也 不想 知道 . +Does it matter to you how much it costs ? 它 花 多少 钱 对 你 很 重要 吗 ? +Tom showed up just in time . 汤姆 刚好 准时 到 了 . +I have something to tell you . 我 有事 要 告訴 你 . +I can not bear this noise any more . 我 无法 再 忍受 那 噪音 了 . +Who are you looking at ? 你 在看 谁 ? +Are oysters in season now ? 现在 牡蛎 当季 吗 ? +I almost drowned . 我 差點 被 淹死 . +You should have come earlier . 你 本 应该 来得 更早 的 . +Tom has just finished eating dinner . Tom 刚 吃 完 晚饭 . +He has a good grasp of English . 他 精通 英文 . +I like instrumental music . 我 喜歡 器樂 . +Tom does not even know how to fry an egg . 汤姆 甚至 连 怎么 煎 鸡蛋 都 不 知道 . +It is rude to laugh at others . 嘲笑 別人 是 無 禮 的 . +Why do not you have a party ? 你 為 什麼 不 舉行 派 對 ? +I am used to staying up late at night . 我 习惯 晚睡 . +He said , " Let is take a short rest . " 他 說 : 「 我們 休息 一下 . 」 +I always keep a dictionary close at hand . 我 总是 在 离手 不远 的 地方 放 一本 字典 . +The house was in flames . 房子 着火 了 . +I was very busy last week . 上星期 我 非常 地 忙 . +She called me many times . 她 打 了 很 多次 電話 給 我 . +We will go when it quits raining . 雨 停 了 我們 就 會 去 . +Tom will go there tomorrow . 湯姆 明天 會 去 那裡 . +He was brought up in Australia . 他 在 澳大利亚 长大 . +The train has arrived . 這 班 火車 已經 到 了 . +It has not been easy for Tom to deal with Mary is health problems . 处理 玛丽 的 健康 问题 对 汤姆 来说 不 容易 . +The car was going forward . 车 往前走 . +I have got a pacemaker . 我 裝 了 個 心臟 起搏器 . +It suddenly started raining . 突然 開始 下雨 . +The meeting ended at 4 : 00 p.m. 會議 於 下午 4 點 結束 . +You do not have to eat . 你 不必 吃 . +How about going out tonight ? 今晚 出去 怎么样 ? +Do you think Tom is wealthy ? 你 認為 湯姆 有 錢 嗎 ? +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +Call an ambulance . 叫 救护车 . +I have got a headache . 我 头痛 . +Someone is been here recently . 有人 刚才 在 这里 . +He went to London in 1970 . 他 1970 年 去 了 伦敦 . +In Hungary they speak Hungarian . 在 匈牙利 說 匈牙利 文 . +I have lost patience with Tom . 我 对 汤姆 失去 了 耐心 . +Do you plan to go abroad ? 你 打算 出国 吗 ? +I seem to be unlucky today . 我 今天 看來 很幸 運 . +We have no reason to feel ashamed . 我们 没理由 害臊 . +Please turn down the radio . 請 把 收音 機關 小聲 一點 . +You do not deserve it . 你 不配 . +I read about him in the newspaper . 我 在 報紙 上 讀到 有關 他 的 消息 . +Mary is very pretty . 瑪麗 很漂亮 . +I opened the box and looked inside . 我 打開 盒子 看看 裡面 . +Are you sure ? 你 确定 ? +It seems so familiar . 这 看起来 似曾相识 . +Write it in pencil . 用 鉛筆 寫 . +Man cannot live forever . 人 无法 长生不死 . +He looked for every possible means of escape . 他 寻找 一切 可能 的 逃生 途径 . +How old are your kids ? 你 的 孩子 多 大 了 ? +She loves Tom . 她 愛 湯姆 . +You should do that soon . 你 應該 很快 那樣 做 . +Tom ate only one sandwich . Tom 吃 了 唯一 一个 三明治 . +I never liked biology . 我 從來 沒 喜歡 過 生物 學 . +Come in , the door is open . 進來 , 門 是 開 的 . +He likes French more than German . 他 喜歡 法語 勝 過 德語 . +I found the key underneath the mat . 我 在 擦鞋 墊 下面 發現 了 這 把 鑰匙 . +I have a good appetite today . 我 今天 的 食 慾 很 好 . +Mutual understanding promotes peace . 相互理解 能 促进 和平 . +Please let me know what you want . 請 讓 我 知道 你 要 什麼 . +Tom forgot to do his homework . 汤姆 忘 了 做作业 . +I have not seen him since then . 從 那時 起 我 就 沒有 看到 他 . +I have not seen her since then . 我 從 那時 起 就 沒有 見 過 她 . +Will you permit me to go there ? 您 允许 我 去 吗 ? +I want much more . 我 要 多 很多 . +My older sister plays the guitar well . 我 姐姐 吉他 弹 得 很 好 . +You will not be happy no matter what I do . 无论 我 做 什么 , 你 都 不 高兴 . +How about going out for lunch ? 出去 吃 午 飯 怎樣 ? +I should have gone to bed earlier last night . 我 昨晚 应该 早点 睡觉 的 . +I know very little about Tom . 我 对 汤姆 知道 得 很少 . +The number of people suffering from heart disease has increased . 遭受 心脏病 困扰 的 人数 增加 了 . +What do you think about it ? 你 認為 如何 ? +Tokyo is the largest city in Japan . 東京 是 日本 最大 的 城市 . +I love my work very much . 我 非常 喜欢 我 的 工作 . +I am busy today . 我 今天 忙 . +You should be careful not to become overconfident . 你 要 注意 不要 太 自信 . +The bread is not fresh . 面包 不 新鲜 . +I think you are ready . 我 認為 你 準備 好 了 . +They like apples . 他们 喜欢 苹果 . +I like rice more than bread . 比起 面包 , 我 更 喜欢 米饭 . +He is bound to notice your mistake . 他 必定 會 覺察 到 你 的 錯誤 . +You 'd better do as the doctor advised you . 你 最好 照着 医生 的 建议 做 . +We enjoyed ourselves very much . 我們 玩 的 很 開心 . +He was afraid of being laughed at . 他 怕 被 嘲笑 . +This flower is beautiful , is not it ? 這 朵花 很 美 , 不是 嗎 ? +How much do you want in terms of salary ? 您 想要 多少 工资 ? +What I hate most of all is having to recite texts from memory . 我 最 讨厌 背诵课文 了 . +A man is responsible for his deeds . 一个 人 要 为 他 的 行为 负责 . +He loves her . She loves him , too . 他 愛 她 . 她 也 愛 他 . +His mother looks young for her age . 他 媽媽 看 起來 比 實際 年齡 年 輕 . +He was laughed at in public . 他 在 众人 面前 被 嘲笑 . +Something is wrong with my watch . 我 的 手 錶 壞 了 . +Why did you open the box ? 你 為 什麼 打開 這個 盒子 ? +She came to Tokyo when she was 18 . 她 18 岁 的 时候 来到 东京 . +This year is fashions are completely different from last year is . 今年 的 时尚 潮流 完全 不同于 去年 . +Do not try my patience . 別 挑戰 我 的 耐心 . +He looked left and right . 他 左右 看 了 看 . +Give me your opinion , please . 請 給 我 你 的 意見 . +I am very happy . 我 好 高興 . +No one is listening to Tom . 没 人 听 汤姆 说话 . +I am not jealous . 我 不嫉妒 . +Has something good happened ? 發生 了 什麼 好事 嗎 ? +He was an intelligent and practical man . 他 是 聪明能干 的 人 . +You do not have to wait until the end . 你 没 必要 待 到 最后 . +Can I stay here with you ? 我 可以 和 你 一起 待 在 这儿 吗 ? +They reported seeing the incident . 他们 报告 目击 了 事故 . +Did you go to London that day ? 你 那天 去 了 倫敦 嗎 ? +I will be there right away . 我 馬 上 到 那裡 . +Certainly she is correct . 當然 , 她 是 正確 的 . +We are all at risk . 我们 都 处于 危险 之中 . +Tom took this photo . 汤姆 拍 了 这 张 照 . +I always cry when I see this picture . 当 我 看到 这 张 图片 的 时候 总是 哭 . +Wake up ! 醒醒 ! +That red sweater looks good on you . 你 穿 那件 紅色 的 毛衣 好看 . +They talked about love . 他們 談論 了 愛情 . +Will you buy something ? 你 要 买点 东西 吗 ? +I saw her enter the room . 我 看見 她 進 了 房間 . +What is your advice ? 你 有 什么 建议 呢 ? +He has visited France three times . 他 訪 問 過 法國 三次 . +I have one brother and two sisters . 我 有 一个 兄弟 和 两个 姐妹 . +I usually take a bath after dinner . 我 通常 在 晚 飯 後 洗澡 . +Please think it over . 請 考慮 一下 . +Are you thirsty ? 你 渴 吗 ? +I want the same jacket as you are wearing . 我 也 想要 和 你 身上 那 件 同样 的 外套 . +I really want to know what is going on . 我 真 想 知道 发生 了 什么 . +The car got stuck in the mud . 這輛 車陷 在 泥 裡 了 . +I am pretty sure Tom is the only one who can not do that . 我 确信 汤姆 是 唯一 不会 那么 做 的 人 . +You must be tired after such a long trip . 在 這麼 長程 的 旅途 後 你 一定 很 累 了 . +I work every day except Sunday . 我 除了 星期天 外 每天 都 上班 . +I ate Tom is sandwich . 我 吃 了 湯姆 的 三明治 . +Could you cancel my reservation ? 你 能 取消 我 的 預訂 嗎 ? +Can I sleep here ? 我 能 在 這裡 睡覺 嗎 ? +Why did you show me this ? 你 为什么 让 我 看 这个 ? +Our team lost all of its games . 我們 的 隊伍 輸 了 所有 的 比賽 . +Could you sign here ? 你 能 在 这里 签名 吗 ? +You may take either the big box or the small one . 你 可以 拿 大 的 盒子 或是 小 的 盒子 . +I can not breathe through my nose . 我 的 鼻子 没 办法 呼吸 了 . +He found me a taxi . 他 帮 我 打到 一辆 出租车 . +Would you like anything to drink ? 你 要 喝 點 什麼 嗎 ? +He began to cry . 他 开始 哭 了 . +A famous architect built this house . 一个 有名 的 建筑师 造 了 这栋 房子 . +The train passed by us . 列车 从 我们 身边 经过 . +It was time to leave . 是 时候 离开 了 . +I will call you tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +Bread is made from wheat . 麵 包 是 用 小 麥 做成 的 . +I had a good opinion of her . 我 對 她 的 評價 很 好 . +I wish I was young again . 我 希望 我 再 年輕 一次 . +You should know this . 你 該 知道 這個 . +He comes from England . 他 从 英国 来 . +Our child likes dogs , but I prefer cats . 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +I want Tom to let Mary finish . 我 希望 汤姆 让 玛丽 完成 . +Will you go on foot or by bus ? 你 要 用走 的 還 是 搭 公車 ? +We fixed that pretty quickly . 我們 很快 修好 了 . +I heard you . 我 聽 你 的 . +You look pale . You had better lie down in bed at once . 你 看上去 很 苍白 . 你 最好 立刻 去 床上 躺 会儿 . +Tom is the easy @-@ going sort . 汤姆 是 容易 相处 的 类型 . +I could not stand looking at it . 我 不能 忍受 就 這樣 看著 它 . +I can not distinguish him from his brother . 我 分不清 他 和 他 的 弟弟 . +We have five English lessons a week . 我們 一週 有 五堂 英語 課 . +What color is your new car ? 你 的 新車 是 甚麼 顏色 的 ? +Money can not buy happiness . 钱 买不到 幸福 . +Only you answered the question . 只有 你 回答 了 这个 问题 . +There are many slums in Mexico . 在 墨西哥 有 很多 貧民窟 . +I will teach you to play chess . 我 會 教 你 下棋 . +You need to go . 你們 得 走 了 . +Thank you for coming to meet me . 謝謝 你 來 接 我 . +Tom told me to take good care of myself . 汤姆 告诉 我 要 照顾 好 我 自己 . +You have been had . 你们 被 骗 了 . +I have had enough of your excuses . 你 给 我 的 理由 够 多 了 . +How was your exam ? 考得 如何 ? +They make frequent trips to Europe . 他們 經常 去 歐洲 . +You must send for the doctor . 你 必須 派 人 去 請 醫生 來 . +Phoenix is the capital of Arizona . 鳳凰城 是 亞利 桑那州 的 首府 . +This problem is worth discussing . 這個 問題 是 值得 討論 的 . +He dipped his spoon into the soup . 他 把 他 的 湯匙 浸入 湯裡 . +Bring me something to eat . 給 我 東西 吃 . +Please enjoy yourself at the dance . 請 盡 情地 跳舞 . +They must have made a mistake . 他們 一定 是 犯 錯 了 . +He often laughs at his own jokes . 他 常常 因 他 自己 的 笑話 而 笑 . +How much are you paying Tom ? 你 给 汤姆 多少 钱 ? +Tom should hear about this . 汤姆 应该 听说 这个 . +Listen to me , OK ? 聽 我 說 , 好 嗎 ? +I burned the paper . 我 燒 了 紙 . +I do not like the taste of onions . 我 不 喜歡洋蔥 的 味道 . +It is a nice view from here . 从 这儿 看 景色 很美 . +We soon caught up with them . 我們 很快 就 追上 了 他們 . +How horrible ! 真糟糕 ! +She described him as a detective . 她 把 他 形容 为 侦探 . +At this point , he arrived . 在 這 時候 , 他 到 了 . +Are you familiar with the rules of soccer ? 你 對 足球 規則 熟悉 嗎 ? +Do not talk about it in my mother is presence . 我 妈 在 的 时候 别 讨论 这件 事 . +Tom is not feeling very well . 湯姆 感覺 不太好 . +He painted a picture of a dog . 他 畫 了 一幅 狗 的 畫 . +I will show you to the station . 我 會 告訴 你 去 車站 的 路 . +I like this color as well . 我 也 喜歡 這 顏色 . +This dog is a mongrel . 這 隻 狗 是 雜 種 狗 . +He became a pianist . 他 成為 了 一個 鋼 琴家 . +She finally made it . 她 終 於 做到 了 . +Tom seems to be an honest man . 汤姆 似乎 是 个 诚实 的 人 . +How are you feeling ? 你 感觉 如何 ? +I think maybe Tom was right . 我 認為 湯姆 可能 是 對 的 . +Tom applauded . 湯姆 拍 了 手 . +She had the nerve to speak out . 她 竟敢 說 出來 . +He tends to lie . 他 企图 说谎 . +Would you leave the door open , please ? 請 你 讓 門 開著 好 嗎 ? +Children can not swim in this river . 小孩儿 不能 在 这条 河里 游泳 . +He has a big family . 他 有个 大家庭 . +I know it is hard . 我 知道 它 有 困難 . +We should cancel the hike . 我們 應該 取消 這次 遠足 . +There was a light rain yesterday . 昨天 下 小雨 . +He described the incident in detail . 他 詳細 地 描述 了 事故 . +He is eager to go there . 他 渴望 去 那里 . +Make your choice . 做出 您 的 選擇 . +The boy did not change his opinion . 這個 男孩 沒有 改變 他 的 意見 . +You look surprised . 你 看起来 很 吃惊 . +The meeting will take place next Sunday . 会议 将 在 下 周日 召开 . +When Tom found out about that , he was furious . 当 汤姆 发现 这件 事时 , 他 很 生气 . +Under no circumstances must you leave the room . 在 任何 情況 下 你 都 不能 離開 這個 房間 . +I can not believe it ! 我 没法 相信 ! +She is my best friend . 她 是 我 最好 的 朋友 . +How do I get to Chinatown ? 我 該 怎麼 去 唐人街 ? +Waiter , please bring me some water . 服務 生 , 請 給 我 一些 水 . +I do not have a computer at home . 我家 没有 电脑 . +I think Tom is cheating . 我 觉得 汤姆 有 外遇 . +He made friends with her in America . 他 與 她 在 美國 成為 朋友 . +I thought that you wanted to see me . 我 以为 你 想见 我 呢 . +I plan to break up with her . 我 打算 與 她 分手 . +There is an apple on the desk . 桌上 有个 苹果 . +You need to put more water in the vase . 你 需要 往 花瓶 里加 更多 的 水 . +Can you tell wheat from barley ? 你 能 辨别 小麦 和 大麦 吗 ? +Are you doing what you think is right ? 你 在 做 你 覺得 對 的 事 嗎 ? +Let is take a walk in the park . 讓 我們 在 公園 裡 散步 吧 . +You look pale today . 你 今天 看上去 很 苍白 . +He was in America at that time . 他 當時 在 美國 . +I only wanted to forget . 我 只 想 忘记 . +Does it hurt a lot ? 很痛 嗎 ? +London was bombed several times . 倫敦 被 轟炸 過 許 多次 . +You do not need to be afraid of making mistakes . 你们 不 需要 害怕 犯错 . +I do not mind if it is hot . 辣 点儿 没关系 . +However hard I try , I can not do it any better than she can . 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Has he come yet ? 他 已经 来 了 吗 ? +The station is two miles away . 車站 離 這裡 兩 英里 遠 . +I know everyone here . 我 認識 這裡 的 每個 人 . +I have some good news for you . 我 有 好消息 要 告訴 你 . +We lost the game . 我们 比赛 输 了 . +Do you want some more tea ? 您 想 再 来 点 茶 吗 ? +Will you wait a moment ? 麻煩 您 稍 待 一下 . +He loves trains . 他 喜歡 火車 . +This is the window he broke . 他 砸坏 的 是 这 扇 窗 . +A little learning is a dangerous thing . 一知半解 很 危險 . +Put the eggs into the boiling water . 把 蛋 放入 沸水 中 . +Honesty is the primary reason for his success . 誠實 是 他 成功 的 主要 原因 . +May I eat that cake ? 我 可以 吃 那个 蛋糕 吗 ? +I am the captain of this ship . 我 是 這 船 的 船長 . +I have lost my umbrella . 我 丢 了 我 的 伞 . +Wait for me in the car . 在 车里 等 一下 . +He has been dead for three years . 他 去世 三年 了 . +You are a good leader . 你 是 個 好 的 領導人 . +I did not tell the whole truth . 我 沒 把 真相 全 告訴 你 . +I had no idea there 'd be this many people here . 我 没想到 这里 有 这么 多 人 . +That is what Tom wanted . 那 就是 汤姆 想要 的 . +I wish I could figure out how to delete my Facebook account . 我 希望 我 能 知道 如何 刪除 我 的 Facebook 帳號 . +Tom wants to know what we are doing here . 湯 𡡡 想 知道 我們 在 這裡 做 甚麼 . +Do you know the concert schedule of London Symphony Orchestra ? 你 知道 伦敦 交响乐团 的 演奏会 行程 吗 ? +I ripped the envelope open . 我 撕开 了 信封 . +Life in prison is worse than the life of an animal . 监狱 生活 比做 畜牲 还 不如 . +After she had read the letter , she tore it to pieces . 看 了 信 之 後 , 她 把 它 撕成 碎片 . +I do not laugh very often . 我 不常 笑 . +He has been waiting for an hour . 他 已經 等 了 一個 小 時 . +Is that a picture of me ? 那 是 我 的 照片 嗎 ? +Do you remember ? 你 记得 吗 ? +Put your hands up ! 把手 举 起来 ! +You should be more reasonable . 你 应该 更 明智 一点 . +I asked him if he knew her address . 我 问 他 是否 知道 她 的 住址 . +These oranges are very sour . 這些 橘子 很酸 . +He is eating an apple . 他 正 吃著 一個 蘋果 . +He sang a song . 他 唱 了 一首歌 . +I will buy a watch for my son . 我 将 给 儿子 买块 手表 . +Would you pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +There are some apples in the basket . 籃子 裡 有 一些 蘋果 . +She has never been to Hokkaido . 她 從未 去過 北海道 . +The contract was signed . 契約 簽訂 了 . +His way of thinking is very childish . 他 的 思維 方式 很 幼稚 . +He is the oldest son . 他 是 最 年长 的 儿子 . +Tom says he can communicate with the dead . Tom 说 他 可以 通灵 . +I have two daughters and two sons . 我 有 兩個 女兒 和 兩個 兒子 . +I found it difficult to read the book . 我 发现 读 这 本书 很 难 . +Tom looked for his pen . 湯姆 找 他 的 鋼筆 . +I owe him 1,000 dollars . 我 欠 他 1000 美元 . +Would you please tell me the way ? 請 你 告訴 我路 怎麼 走 好 嗎 ? +All that glitters is not gold . 發光 的 未必 都 是 金子 . +I did not think that Tom would be scared . 我 没想到 汤姆 会 害怕 . +The man you saw yesterday is my uncle . 你 昨天 看到 的 那个 男人 是 我 叔叔 . +My father insisted on our waiting for the train . 我 的 父親 堅持 要 我們 等 火車 . +Tom told me that Mary is leaving tomorrow . 汤姆 和 我 说 明天 玛丽 会 离开 . +A growing child who does not seem to have much energy perhaps needs medical attention . 一个 成长 中 的 孩子 如果 没有 充足 的 能量 , 可能 需要 药物 治疗 . +You 'd better not wait here . 你 最好 不要 在 這裡 等 . +We have a party tomorrow evening . 明天 晚上 我們 有 一個 派 對 . +Who wrote these poems ? 这些 诗 的 作者 是 谁 ? +He has little confidence in himself . 他 對 自己 沒有 多少 信心 . +I am just looking around . 我 只是 到 處 看看 . +She hates green peppers . 她 討厭 青椒 . +We have a 20 % share of the market . 我们 的 市场占有率 为 20 % . +When did you get to London ? 你 什麼 時候 到 倫敦 的 ? +You never get my jokes . 你 从来不 明白 我 的 玩笑 . +Will you tell me why you like her ? 你 能 告诉 我 你 为什么 喜欢 她 吗 ? +The store is closed Mondays . 商店 周一 关门 . +Tom is parachute did not open . 湯姆 的 降落 傘 沒有 打開 . +I am here on business . 我 在 這裡 出差 . +Her red dress made her stand out . 她 的 紅色 禮服 使 她 引人注目 . +He read a book written in English . 他 讀 了 一本 用 英文 寫 的 書 . +The world is just like a book , and every step you take is like turning a page . 世界 就 像是 一 本书 , 走 一步 等于 翻 了 一页 . +I think Tom would be pleased . 我 認為 湯姆 會 高興 . +Do you like shopping ? 你 喜歡 購物 嗎 ? +Stop grumbling . 停止 发牢骚 吧 . +The buses run every ten minutes . 公共 汽車 每 10 分鐘 一班 . +Our refrigerator is out of order . 我們 的 冰箱 壞 了 . +I do not plan to stay for very long . 我 沒有 打算 停留 太久 . +I hope I will have a chance to see you next time I am in New York . 希望 下次 我 在 纽约 还 可以 有 机会 见到 你 . +I will act as a guide for you . 我 为 你 充当 导游 . +I saw Tom almost every day last week . 我 上周 幾乎 天天 見 到 湯姆 . +Tom , I want to talk to Mary . 汤姆 , 我 想 跟 玛丽 谈话 . +Tom found a job in Boston . 汤姆 在 波士顿 找 了 份 工作 . +Fresh fruit is good for your health . 新鲜 的 水果 对 你 的 健康 有益 . +You have lovely eyes , do not you ? 你 有 一雙 可愛 的 眼睛 , 不是 嗎 ? +She did not go far . 她 没有 走 远 . +I do not remember any of it . 我 对 这些 都 没有 印象 . +I got up at five that morning . 那天 早上 我 五點 起床 . +Tom is thirty years old . 汤姆 今年 三十岁 . +He is two years older than me . 他 比 我 大 两岁 . +Please put your shoes on . 請 穿 上 你 的 鞋子 . +He likes playing football . 他 喜歡 踢足球 . +Who invited you guys ? 誰 邀請 了 你們 ? +Wipe the pan dry with a paper towel . 用 纸巾 把 平底锅 擦干 . +I have a dream . 我 有 一个 梦想 . +I do not see any bullet holes . 我 没 看见 什么 弹孔 . +My sister married a doctor . 我 妹妹 嫁给 了 一个 医生 . +What should I look for ? 我 应该 寻找 什么 ? +I like singing with Tom . 我 喜欢 跟 汤姆 唱歌 . +He is very sensitive . 他 很 敏感 . +He is unsatisfied with the result . 他 对 结果 不 满意 . +He can read well . 他 能 讀 得 很 好 . +He was brought up by his uncle . 他 被 他 的 叔叔 撫養 長大 . +Tom graduated . 湯姆 畢業 了 . +Playing cards is a popular pastime . 打牌 是 一種 流行 的 消遣 方式 . +I want to buy something to eat . 我 想 買 點 東西 吃 . +I can not understand his feelings . 我 不 明白 他 的 感受 . +They made their way toward the town . 他們 往 小鎮 方向 去 了 . +How high is Mt . Fuji ? 富士山 有 多 高 ? +Do you want to eat out tonight ? 你 今晚 想 出去 吃 嗎 ? +She prefers beer to wine . 她 喜欢 啤酒 胜过 葡萄酒 . +You have to learn standard English . 你 必须 得学 标准 英语 . +May I have something hot to drink ? 我 可以 喝 一點 熱 的 東西 嗎 ? +Get away ! 滾 ! +Get up early in the morning . 早上 要 早起 . +I will never force you to marry him . 我 永遠 不 會 逼 你 跟 他 結婚 . +The date of the festival coincides with that of the exam . 节日 和 考试 碰巧在 同一天 . +Tom asked Mary where she 'd put the key . 湯姆問 瑪麗 她 把 鑰匙 放在 哪裡 了 . +I can not decide if I am happy or sad . 我 无法 确定 我 是 高兴 还是 难过 . +I need to go to the bathroom . 我 要 去 廁所 . +That was not very good . 那 不太好 . +Is Tom around ? 汤姆 在 吗 ? +Even though he has a lot of money , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +" Does he like music ? " " Yes , he does . " " 他 喜歡 音樂 嗎 ? " " 是 的 , 他 喜歡 . " +There are plenty of fish in this river . 这 条 河里 有 很多 鱼 . +It is my turn to drive next . 下次 该轮 到 我 开车 了 . +I can not lend you any money . 我 不能 借 你 任何 錢 . +I can hope for a miracle , can not I ? 我 能 期待 奇迹 , 不能 吗 ? +I think you look like Tom . 我 看 你 长 得 像 汤姆 . +I often go sailing on weekends . 我 經常 在 週末 去 航海 . +You must do it yourself . 你 应该 自己 做 . +She was born last year . 她 去年 出生 . +I do not want to be friends with you . 我 不想 跟 你 交朋友 . +Where in Austria did you grow up ? 你 在 奧 地利 的 什麼 地方 長大 ? +Please kill the lights . 请 关灯 . +Parking is prohibited here . 此处 禁止停车 . +We left home early in the morning . 我們 早上 很 早就 離 開家 了 . +I have a lot of homework to do . 我 有 很多 作业 要 做 . +We were faced with an unusual situation because of the accident . 那场 事故 让 我们 陷入 了 不 寻常 的 局势 . +Tom is not old . 湯姆 不 老 . +The calculator on the table is mine . 桌上 的 计算器 是 我 的 . +Nobody knows why . 沒人 知道 為 什麼 . +Stop that ! 住手 . +He said that he gets up at 6 o 'clock every day . 他 说 他 每天 早上 六点 起床 . +This is what I can do for you . 这 是 我 能 为 您 做 的 . +Smoking is bad for your health . 吸煙 對 你 的 健康 不好 . +My uncle gave me his car . 我 叔叔 給 了 我他 的 車 . +He has a wonderful personality . 他 有 一個 很好 的 性格 . +I noticed that she was wearing new glasses . 我 注意 到 她 戴 着 新 眼镜 . +Where should we go ? 我們 應 該 去 哪裡 ? +Could you put this report into Italian for me ? 你 可以 為 我 把 這份 報告 翻譯 成 意大利文 嗎 ? +He makes his living by singing . 他 以 唱歌 為 生 . +Tom needs the money right away . 湯姆 現在 就 需要 錢 . +Everybody saw it . 每個 人 都 看見 了 . +Money is the root of all evil . 金 錢 是 一切 罪惡之源 . +Onions cook more quickly than potatoes . 洋蔥 比 馬鈴薯 快熟 . +All of the dogs were alive . 所有 狗 都 活着 . +Tom folded the paper before handing it to Mary . 在 传给 玛丽 之前 , 汤姆 把 纸条 折 了 起来 . +Your face is familiar to me . 我 對 你 的 臉 很 熟悉 . +This chair is really comfortable to sit on . 这个 椅子 坐 着 真 舒服 . +They all have come . 他们 全都 来 了 . +Some people pursue only pleasure . 有些 人 只 追求 快乐 . +Tell me which you want . 告訴 我 你 想要 哪個 . +Nothing is more valuable than friendship . 沒有 比 友情 更 有 價值 的 東西 . +Oh , really ? 噢 , 真的 嗎 ? +Are you referring to me ? 你 在 说 我 吗 ? +I have already eaten lunch . 我 已經 吃 過 午餐 了 . +All essays must be handed in on time . 所有 文章 都 必须 在 规定 时间 内 交上来 . +I have to get to the hospital . 我 得去 医院 . +He managed to get home before dark . 他 設法 在 天黑 前 回家 . +How much does this pen cost ? 這 支筆 多少 錢 ? +His quick temper will get him in trouble one day . 他 的 急 脾气 迟早会 惹祸上身 . +Some people clung to tree branches for several hours to avoid being washed away by the floodwaters . 为了 不 被 洪水 冲走 , 有 的 人 紧紧 地 抱 着 树干 长 达 数个 钟头 . +I have a laptop . 我 有一 臺 筆 記 本 電 腦 . +I admire you . 我 欣赏 你 . +I want to take a bath . 我 要 洗澡 . +What else can this do ? 这 还有 什么 能 做 的 ? +Is this the key you are looking for ? 这 是 你 找 的 钥匙 吗 ? +Spring is my favorite season . 春天 是 我 最 喜爱 的 季节 . +He is the father of three children . 他 是 三个 孩子 的 父亲 . +He wrote this book at the age of twenty . 他 在 20 岁 的 时候 写 了 这 本书 . +What do you think of it ? 你 觉得 怎么样 ? +I am sorry , but it is just not possible . 我 很 抱歉 , 但 它 就是 不 可能 的 . +I am a good boy . 我 是 一个 好 男孩 . +Could you introduce me to a lawyer ? 你 能 幫 我 介紹 一名 律師 嗎 ? +The baby caught sight of my ballpoint pen and reached out for it . 這個 嬰兒 盯著 我 的 原子 筆 看 , 並且 伸手 要 拿 它 . +In addition to English , he can speak French . 除了 英语 , 他 还 会 说 法语 . +I will find you your lost ring . 我会 找到 你 丢失 的 戒指 . +I have to repair the refrigerator . 我 要 修 冰箱 . +I am reading a novel by Sidney Sheldon . 我 在 讀 一本 西德尼 謝爾頓 寫 的 小 說 . +We really appreciate their effort . 我们 真的 感激 他们 的 努力 . +Do you drink a lot of milk ? 你 喝 很多 牛奶 吗 ? +Where does he want to go ? 他 想 去 哪裡 ? +You are such an idiot ! 你 真是 個 傻瓜 ! +I am afraid that I differ with you on this point . 恐怕 就 这点 上 , 我 和 你 持 不同 意见 . +I bought this yesterday . 昨天 我 買 了 這個 . +It is my duty to help you . 帮助 你 是 我 的 责任 . +He lied to my face . 他 在 我 面前 撒谎 . +She is practicing English so she can get a better job . 她 練習 英語 以 找 更好 的 工作 . +She can not ride a bicycle yet . 她 還 不 會 騎 腳 踏 車 . +My grandmother can not see very well . 我 的 祖母 無法 看 得 很 清楚 . +He finally decided to get married . 他 最终 决定 结婚 . +What happened to you last night ? 昨晚 你 發生 了 什麼 事 ? +Let is see if Tom knows what to do . 让 我們 看看 湯姆 知不知道 該 做 甚麼 . +I have got wine . 我 有 酒 . +Which do you prefer , rice or bread ? 你 比較 喜歡 哪 一個 , 米 飯 還 是 麵 包 ? +I started learning Chinese last week . 我 上周 开始 学 中文 了 . +I will never do this again . 我 永遠 不 會 再 這樣 做 . +Tom kept me waiting all afternoon . Tom 让 我 等 了 一 下午 +We are getting a new car next month . 下个月 我们 会 有 辆 新车 . +UN stands for the United Nations . UN 代表 聯合國 . +I am going to study harder . 我 決定 更 努力 讀書 . +Tom forgot to buy toothpaste . 湯姆 忘 了 買 牙膏 了 . +What are you laughing at ? 在 笑 什么 呢 ? +This is a good newspaper , is not it ? 这 是 份 好 报纸 , 不是 吗 ? +I felt like I was dead . 我 感觉 好像 死 了 一样 . +He has no reason to be late . 他 迟到 没有 理由 . +You were considerate not to disturb us . 你 考虑周到 , 没有 打扰 我们 . +No , thank you . I am full . 不 , 謝謝 你 . 我 吃 飽 了 . +Since my mother was sick , I stayed home from school . 既然 母亲 病 了 , 我 就 待在家里 没 去 上学 . +Do not ask her any questions about her marriage . 不要 問 她 任何 有關 婚姻 的 問題 . +How long does the airport bus take to the airport ? 乘 机场 大巴 去 机场 要 多久 ? +He must be the principal . 他 一定 是 校長 . +That was an excellent putt . 那 是 一個 很棒 的 推桿 . +Please find me my wallet . 请 帮 我 找 一下 我 的 钱包 . +He will survive . 他 會 倖 存 . +A bicycle will rust if you leave it in the rain . 如果 你 把 自行 車 留在 雨 中 , 它 會 生 鏽 的 . +Tom became a minister . 汤姆 当上 了 部长 . +I do not think that we should go with Tom . 我 认为 我们 不 应该 跟 汤姆 一起 走 . +His observations are sharp , but he does not say much . 他 的 觀察 是 敏銳 的 , 但 他 沒 有 說 太 多 . +The boy made fun of the girl . 這個 男孩 取笑 了 這個 女孩 . +Close your eyes , and count to ten . 閉上 你 的 眼睛 , 然 後 數 到 十 . +Please continue . 请 继续 . +Tom did not tell me the truth . 湯姆 沒有 告訴 我 實話 . +This chair is ugly . 這 把 椅子 很 醜 . +I swear I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +Everyone knows Bell invented the telephone . 任何人 都 知道 贝尔 发明 了 电话 . +Pretend you are me . 假装 你 是 我 . +I wonder if a third world war will break out . 不 知道 第三次 世界大战 会 不会 爆发 . +I am repairing the washing machine . 我 在 修 洗衣 機 . +The Japanese military forces seemed too strong to stop . 日本 军队 看来 强大 得 不可 阻挡 . +What is in this bag ? 這個 袋子 裡 是 什麼 ? +Keep on working . 繼續 工作 ! +Tom told me that his father had passed away . 汤姆 告诉 我 他 父亲 去世 了 . +We are friends . 我們 是 朋友 . +I do not go in for that sort of thing . 我 讨厌 那种 事 . +Who is the secretary ? 谁 是 秘书 ? +That accident was due to his carelessness . 那 事故 是 他 的 粗心 导致 的 . +A brass band is marching along the street . 一个 管弦乐团 沿着 路 前进 +Tom typed in the password . 湯姆 輸入 密碼 . +Does anyone here know where Tom lives ? 這裡 有人 知道 湯姆 住 在 哪裡 嗎 ? +His modesty is worth respecting . 他 的 謙遜 值得尊敬 . +Tom told me that he has no intention of marrying you . Tom 告诉 我 他们 有 想要 娶 你 的 想法 . +Is Tom there ? 汤姆 在 吗 ? +This is where I want to live for the rest of my life . 這裡 是 我餘 生想待 的 地方 +He likes listening to the radio . 他 喜歡 聽 收音 機 . +His plan was discarded . 他 的 计划 被 驳回 了 . +He still loves her . 他 仍然 爱 着 她 . +I got injured in the traffic accident . 我 在 這場 交通 意外 中 受 了 傷 . +The lock is broken . 锁坏 了 . +Dog is man is best friend . 狗 是 人类 最好 的 朋友 . +I will wait for my sister here . 我 會 在 這裡 等 我 姊姊 . +When is your bedtime ? 你 什么 时候 睡觉 ? +I bought a bottle of salad oil . 我 買 了 一瓶 沙拉油 . +You should tell him the truth . 您 该 告诉 他 真相 . +I do not know what Tom got . 我 不 知道 湯姆 拿到 了 甚麼 . +Mary spoke Japanese slowly . 瑪麗日語 說 得 很慢 . +I did not do it alone . 我 没有 独自 做 . +The whole process will take months . 整个 过程 需要 耗费 数月 . +The storm has died down . 暴风雨 平息 下来 了 . +Tom is not very good at speaking French . 湯姆 說 法語 不太好 . +Could you get me some tea ? 你 能 給 我 來 點 茶 嗎 ? +Are you saying that I killed Tom ? 你 是 说 是 我 杀 了 汤姆 吗 ? +I do not have classes today . 我 今天 沒課 . +Do you want to go , too ? 你 也 要 去 嗎 ? +We are doing the best we can . 我们 尽力而为 . +I think you understand me . 我 认为 你 了解 我 . +I bet he does not make it . 我 打赌 他 没 搞定 . +I met a friend . 我 遇见 一个 朋友 . +There was widespread panic after the earthquake . 地震 後 人 們 普遍 覺得 恐慌 . +Tom has a good memory . 湯姆 有 好 的 記憶力 . +He does not need to work . 他 不 需要 工作 . +You may think those shoes are in fashion , but they are not . 你 可能 認為 那些 鞋子 很 時 髦 , 但是 他們 不是 . +Do not be cruel to animals . 不要 虐待 动物 . +Where are you going to take me ? 你們 要 帶 我 去 哪 ? +We went out for a walk after dinner . 我们 在 吃 过 晚餐 后 出去 散步 了 . +He is my younger brother . 他 是 我 弟弟 . +I would like to know the phone number of the nearest American Express office . 我 想 知道 最近 的 美國 運通 辦事處 的 電話 號碼 . +Tom did not give an explanation . 汤姆 没 做 解释 . +These figures do not add up . 这些 数字 总数 不符 . +She prepares wholesome meals for her family . 她 为 她 的 家人 准备 健康 餐 . +He is absorbed in the study of linguistics . 他 沉迷于 语言学 的 研究 . +No one knows why . 沒人 知道 為 什麼 . +" When will you be back ? " " It all depends on the weather . " “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +You do not need to worry about such a thing . 你 不必 擔心 這樣 的 事情 . +There is a doghouse in the yard . 院子 里 的 是 狗 屋 . +I have never been to Europe . 我 从没 去过 欧洲 . +How did you get to know Mary ? 你 怎麼 認識 瑪麗 的 ? +I am too busy to go . 我 太 忙 了 不能 去 . +Which is larger , Japan or England ? 日本 和 英格兰 哪个 大 ? +This is a good place to pitch a tent . 这 是 搭帐篷 的 好 地方 . +I must return home within a week . 我 得 要 在 一週 內 回家 . +What to do next is the question . 問題 是 下 一步 要 做 什麼 . +You are old enough to know better . 你 年龄 足够 大 了 , 该 了解 更多 . +A panel of experts discussed the plan . 一個 專 家小 組討 論 這個 計劃 . +She is my daughter . 她 是 我 女儿 . +I would like to see a doctor . 我 想 看 醫生 . +Do you like my new haircut ? 你 喜欢 我 的 新发型 吗 ? +I made other plans . 我 另 有 计划 . +Tom is Japanese is improving little by little . 湯姆 的 日語 一點 一點 地 漸漸 進步 中 . +Have you still not finished paying for my bike ? 你 还 没有 为 我 的 自行车 付 完款 吗 ? +They have nothing to eat . 他們 沒有 東西 吃 了 . +Back off ! 往 后退 点 . +I am happy to see you here . 我 很 高興 在 這裡 看到 你 . +Which book is yours ? 哪 本 是 您 的 書 ? +As the train came to a halt , all of the passengers wondered what was happening . 当 列车 停止 时 , 所有 的 乘客 都 想 知道 发生 了 什么 . +My mother was disappointed by my failure . 我 的 母亲 对 我 的 失败 感到 失望 . +It is going to rain very soon . 很快 就要 下雨 了 . +Well done ! 干 的 好 ! +He is my new friend . 他 是 我 新交 的 朋友 . +Open the door , please . 請 把 門 打開 . +I cleared the table . 我 清理 了 桌子 . +I do not have a bicycle . 我 沒有 腳踏車 . +She can swim as fast as her brother . 她 能 和 她 哥哥 游得 一樣 快 . +I cut a branch from the tree . 我 從 樹上 砍下 了 一根 樹枝 . +Stop talking and listen to me . 別 說 話 , 聽 我 說 . +Stay sharp . 保持警惕 . +I will pay you back next week . 我 下週 去 還 你 錢 . +She began to like him right away . 她 立刻 開始 喜歡 他 了 . +Keep smiling . 保持 微笑 . +That bridge is very beautiful . 那 座 橋 很漂亮 . +We graduate from high school at eighteen . 我們 在 十八 歲 的 時候 從 高中 畢業 了 . +Tom added both his and Mary is name to the list . 汤姆 将 他 自己 和玛丽 的 名字 添加 到 了 名单 上 . +The man and his wife helped each other . 这 男人 和 他 妻子 互相帮助 . +We saw many ships in the harbor . 我們 在 港口 裡 看到 了 許多 船 . +I am free now . 我 现在 有空 了 . +You have done very well . 你 做 得 很 好 . +Even now , I occasionally think I would like to see you . Not the you that you are today , but the you I remember from the past . 即使 是 现在 , 我 偶尔 还是 想 见到 你 . 不是 今天 的 你 , 而是 我 记忆 中 曾经 的 你 . +Tom is cooking was actually not so bad . 湯姆 的 廚藝 其實 不 那麼 糟糕 . +I did not do anything . 我 什么 事 都 没有 做 . +Here is the change . 这 是 找零 . +Hey guys , please be quiet . 嗨 , 請 保持 安靜 . +We did not know which bus to take . 我們 不 知道 要 搭 哪 一班 公車 . +Fluency in English is a very marketable skill today . 流利 的 英語 在 今天 是 一種 十分 搶手 的 技能 . +Tom is an artist . 湯姆 是 藝術家 . +Imports exceeded exports last year . 去年 的 進口 商品 額 超過 了 出口商品 額 . +This room has air conditioning . 這個 房間 有空 調 . +I was given a nice watch by my uncle . 我 叔叔 给 了 我 一块 漂亮 的 手表 . +Because of the snow , I could not see anything . 因为 下雪 了 , 我 什么 也 没能 看见 . +He had no idea why his wife left him . 他 不 知道 为什么 他 的 妻子 要 离开 他 . +Tom has three older sisters . 汤姆 有 三个 姐姐 . +The curtains make this room beautiful . 窗帘 是 房间 变 漂亮 了 . +Tom is tired . 湯姆 累 了 . +My father objected to our marriage . 我 的 父親 反對 我們 的 婚姻 . +As soon as the bell rang , the teacher came into the classroom . 鐘聲 一響 起 , 老師 就 走進 了 教室 . +Safety is the most important thing . 安全 是 最 重要 的 事情 . +Why should it be different ? 为什么 它 应该 要 变得 不 一样 ? +The first item he bought was an alarm clock . 他 买 的 第一项 东西 是 一个 闹钟 . +Let is take a short break . 讓 我們 休息 一會兒 . +I was very hungry . 我 很 饿 . +This pen does not write well . 这 支笔 不太好 用 . +We have already won this battle . 我們 已經 贏得 了 這場 戰鬥 . +She got over the shock of her father is death . 她 從 她 父親 過世 的 震驚 中 恢 復 了 . +I was ashamed of my behavior . 我 对 自己 的 行为 感到 羞愧 . +Let is wait here till he comes back . 讓 我們 在 這裡 等 他 直到 他 回來 . +Pour melted butter over the popcorn . 將 融化 了 的 奶油 倒入 爆米花 中 . +Tom and Mary will go with me . 湯姆 和 瑪麗會 跟我走 . +That film is really interesting . 那 部 电影 很 有意思 . +The ceremony will take place tomorrow . 明天 举行 典礼 . +I do not worry so much about my resume . 我 對 自己 的 履歷 不 那麼 在意 . +A woman visited us while you were sleeping . 您 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Are you really going to London to study ? 你 要 去 伦敦 读书 是 真的 吗 ? +You must not talk to Tom . 你 绝不能 跟 汤姆 说话 . +There is a big fly on the ceiling . 有一 隻 大 蒼 蠅 在 天花板 上 . +I will sue you . 我 要 控告 你 . +You have to turn in the reports on Monday . 星期一 你 必須 繳交 報告 . +I might have forgotten my keys . 我 可能 把 钥匙 忘 了 . +She finished reading the letter . 她 看 完信 了 . +What is the theme of his latest novel ? 他 最后 一本 小说 的 主题 是 什么 ? +Tell Tom everything is fine . 告訴 湯姆 一切 都 好 . +What is the title of your new book ? 你 新書 的 書名 是 什麼 ? +Were you fat when you were in high school ? 你 在 高中 的 时候 胖 吗 ? +Give Tom a hand . 幫 湯姆 一把 . +How did you arrive at this conclusion ? 你们 怎么 得出 这个 结论 的 ? +He has gone to Hokkaido . 他 去 北海道 了 . +Tom told Mary that it would probably snow all day . 汤姆 告诉 玛丽 雪 可能 会 下 一整天 . +You are quite right . 你 說 得 很 對 . +To be always honest is not easy . 要 一直 誠實是不 容易 的 . +None of the teachers could solve the problem . 这 道 题目 没有 一位 老师 会 做 . +For what purpose did he come here ? 他 来 这里 的 目的 是 什么 ? +I am learning two foreign languages . 我 学 两种 外语 . +What are you two arguing about ? 你們 兩個 在 爭論 甚麼 ? +I have been a teacher for 15 years . 我 當 老師 已經 15 年 了 . +It has nothing to do with me . 这 不关 我 的 事 . +That would be unlikely . 那 不太可能 . +You have to hurry . 您 要 赶快 些 . +I do not want to grow up . 我 不想 长大 . +I did not even consider that . 我 甚至 沒 考慮 過 . +She was coming down the stairs . 她 下樓 . +He tried speaking French to us . 他 試圖 跟 我們 說 法語 . +You need a large vocabulary to read that book . 你 讀 那 本書 需要 大量 詞 彙 . +New Year is Day is close at hand . 元旦 就 在 眼前 . +Can you explain why you were late ? 你 能 解釋 一下 你 為 什麼 遲 到 嗎 ? +She is a complete stranger to me . 她 对 我 来说 是 一个 完全 陌生 的 人 . +She ignored all my warnings . 她 忽視 了 我 所有 的 警告 . +Did you call ? 你 打過 電話 了 嗎 ? +There is a telephone in my room . 我 的 房間 裡 有 一支 電話 . +I play tennis an hour a day . 我 每天 打 一 小时 网球 . +It looks like a duck . 它 看起 來像一 隻 鴨 子 . +Are you sure you want to do this by yourself ? 你 确定 要 自己 做 这个 吗 ? +My father is in good health . 我 父亲 身体 很 健康 . +Were you guys serious ? 你们 是 认真 的 吗 ? +It is almost six . 快要 六點 了 . +He is such a sweetheart . 他 真是 甜心 . +What is wrong with my plan ? 我 的 計畫 有 問題 嗎 ? +Tom cried for a long time . 湯姆 哭 了 很 長 時間 . +This dictionary contains about 40,000 headwords . 这本 字典 包含 了 约 4 万个 词条 . +She gets up the earliest in my family . 她 是 我家 最早 起床 的 人 . +It is no use arguing with him . 跟 他 吵 没用 . +Do you study every day ? 你們 每天 都 讀 書 嗎 ? +Short skirts are already out of fashion . 短裙 已經 不 流行 了 . +How about having dinner together ? 一起 吃 晚餐 怎麼樣 ? +I could not put up with her arrogant behavior . 我 无法忍受 她 傲慢 的 态度 . +What did you do with my glasses ? 你 把 我 的 眼鏡 怎麼 了 ? +Tom got to Boston yesterday . 汤姆 昨天 到 波士顿 . +We spent the weekend with friends . 我們 和 朋友 一起 度過 週末 . +I do not like the way she speaks . 我 不 喜欢 她 说话 的 态度 . +May I open the box ? 我 能 打开 盒子 吗 ? +The exam was divided into two parts . 考試 分為 兩個 部分 . +Do you believe ghosts exist ? 你 相信 鬼 存在 吗 ? +When are you coming home ? 你 什麼 時候 回家 ? +I promise . 我 向 你 保证 . +You should pay more attention to his warnings . 你 應 該 多 注意 他 的 警告 . +It is OK to eat the rest of the cake if you want . 你 愿意 的话 , 可以 把 剩下 的 蛋糕 也 吃 了 . +She wanted to wash the dirty clothes . 她 想 洗脏 衣服 . +The bargain sale will run for three days , beginning today . 这场 减价 活动 会 持续 三天 , 从 今天 开始 . +I like my job very much . 我 非常 喜欢 我 的 工作 . +I missed the last train . 我 錯 過 了 最 後 一班 火車 . +Take the oranges out of the fridge . 把 橙子 从 冰箱 里 拿 出来 . +I contacted my parents . 我 跟 父母 联络 了 一下 . +We are leaving Japan next month . 我們 下個月 將 離開 日本 . +It might rain . 可能 要 下雨 了 . +Say hi to your father for me . 代 我 向 你 父親 問 好 . +He must be Tom is brother . 他 一定 是 湯姆 的 兄弟 . +Let is go for a walk after it stops raining . 等 雨 停 了 , 我们 去 散步 吧 . +That is against the rules . 这 违反 规则 . +He lives in the suburbs of Tokyo . 他 住 在 東 京郊 區 . +Shame on you ! 你 真 丢脸 ! +He joined the Army during the war . 他 在 戰時 参軍 . +Tom has nothing to do here . 湯姆 在 這裡 沒有 可做 的 事 . +He got off at the next station . 他 在 下 一站 下車 了 . +Please stop fighting . 請 您們 別 再 吵 了 . +Broccoli is one of the healthiest vegetables . 西蘭 花是 最 健康 的 蔬菜 之一 . +We are classmates . 我们 是 同学 . +Tom probably knows where we can get something to eat around here . 湯姆 應該 知道 這 附近 哪裡 有 東西 吃 . +How are you feeling ? 你 感觉 如何 ? +The prisoner was released . 囚犯 重獲 自由 . +The man sitting next to me spoke to me . 坐在 我 旁边 的 男人 跟 我 说话 了 . +He would not listen to my advice . 他 不肯 聽 我 的 勸告 . +Tom did not write Mary back . 汤姆 没 给 玛丽 写 回复 . +A doctor was called in right away . 醫生 立刻 被 請來 了 . +She is Tom is older sister . 她 是 Tom 的 姐姐 . +I have a special relationship with my aunt . 我 和 我 阿姨 有種 特別 的 情誼 . +She successfully got him to tell the truth . 她 成功 地 从 他 口中 得知 了 真相 . +Whether he comes or not , I will go . 不論 他 來 或 不來 , 我 都 會 去 . +Keep quiet ! 保持 安静 ! +What do you know about the CIA ? 你 知道 中央 情报局 的 什么 ? +Please lend me your knife . 請 借 我 你 的 刀 . +She is wearing the same dress that she had on yesterday . 她 穿著 跟 昨天 相同 的 衣服 . +Almost all the work is done now . 幾乎 所有 的 工作 都 完成 了 . +The sky cleared up soon after the storm . 风暴 之后 不久 , 天空 就 晴朗 起来 了 . +I tried to smile . 我 試著 微笑 . +Tom does not like Boston . 汤姆 不 喜欢 波士顿 . +Tom does not know how bad it is . 湯姆 不 知道 它 有 多 壞 . +Someday I will run like the wind . 有 一天 , 我会 跑 得 像 风 一样 快 . +She made cookies for the children . 她 為 孩子 們 做 了 餅 乾 . +I do not mind if it is a little cold . 稍微 冷 一点 没关系 . +He pretended that he was a lawyer . 他 假裝 是 一位 律師 . +Is there a service charge for that ? 要 收服 務費 嗎 ? +She stayed in the house all day . 她 整天 待 在 房子 裡 . +We all hope for peace . 我們 都 希望 和平 . +I have already been punished . 我己 經被 懲罰 了 . +How are you feeling this morning ? 你 今天 早上 感覺 如何 ? +I painted the gate blue . 我 把 大門 漆成 了 藍色 的 . +I think it is OK . 我 想 沒 關 係 . +How long would it take to swim across the river ? 游 过 这条 河 要 多久 ? +I feel very sorry for your sister . 我 對 你 姐姐 感到 非常 抱歉 . +There is no use making excuses . 借口 是 没用 的 . +Tom went home alone . 汤姆 一个 人 回家 了 . +Could you sign here , please ? 請 你 在 這裡 簽名 好 嗎 ? +That is your book . 那 是 你 的 書 . +The bus was behind schedule . 公交车 迟到 了 . +I broke my right leg . 我 摔斷 了 右腿 . +I am studying economics in college . 我 正在 大学 里 读 经济 . +I bought two bags of popcorn . 我 買 了 兩袋 爆米花 . +Years passed . 多少 年 过去 了 . +We have got what we need . 我們 得到 了 我們 想要 的 . +Ebola spreads from person to person through bodily fluids . 埃 博拉 通过 体液 在 人 与 人 之间 传播 . +I just threw up . 我 剛 才 吐 了 . +I asked Tom to open the window . 我 請 湯姆 把 窗戶 打開 . +We have had it analyzed . 我们 已经 将 它 做 了 分析 . +A group of young men were fighting . 一群 年 輕 人 在 打架 . +Tom ripped out the page . 汤姆 把 这 一页 撕掉 了 . +This old book is worth 50,000 yen . 這 本舊 書值 5 萬 日元 . +Pick up the phone . 接电话 . +He advertised his house for sale . 他 登廣 告 出售 他 的 房子 . +She is a teacher . 她 是 女 教师 . +Whose car is this ? 這輛 汽車 是 誰 的 ? +Is the water in the Black Sea actually black ? 黑海 里 的 水 事实上 是 黑 的 吗 ? +The house is burning . 這 房子 正在 燃燒 著 . +She always keeps her promises . 她 總 是 信守 承諾 . +I feel like going on a trip . 我 想 去 旅行 . +There was no one in the room . 房間 裡 沒 有人 . +He is not such a great writer and I think he knows it . 他 不是 那么出色 的 作家 我 想 他 知道 这 一点 . +All sorts of people live in Tokyo . 各式 各樣 的 人 住 在 東京 . +Tom seems very happy . 汤姆 看起来 非常 开心 . +He took out some coins . 他 拿出 了 几枚 硬币 . +What do you think he did ? 你 覺得 他 這樣 做 怎麼樣 ? +See you in two days . 后天 见 . +I have already put Tom to work on it . 我 已经 让 汤姆 去 做 它 了 . +That house is big . 那栋 房子 很大 . +Do you know how to open this box ? 你 知道 如何 打開 這個 箱子 嗎 ? +When are you going home ? 你 什麼 時候 要 回家 ? +I have to give back the book before Saturday . 我 必须 在 礼拜六 之前 把 书 还 回去 . +Do they speak French in Canada ? 他們 在 加拿大 說法語 嗎 ? +I do not like drinking . 我 不 喜欢 喝酒 . +Look at that smoke . 快 看 那個 煙 . +Is this a pen or a pencil ? 这 是 一只 钢笔 还是 铅笔 ? +My aunt made me a new skirt . 我 阿姨 做 了 一條 新 裙子 給 我 . +Ideas matter . 想法 很 重要 . +She went to the museum by cab . 她 搭計 程車 到 博物 館 . +What did you do with those books ? 你 用 那些 書 做 什麼 ? +The train is very crowded this evening . 列车 在 晚上 很挤 . +I wonder why nobody told me . 不 知道 为什么 没有 人 告诉 过 我 . +He is a tall boy . 他 是 一个 高大 的 男孩 . +Do not forget to put the fire out . 不要 忘 了 熄火 . +He pinched and scraped for many years to save money . 為了 存錢 他省 吃 儉用 了 許 多年 . +Do you want fruit juice ? 您 想要 果汁 嗎 ? +Do as you please . 你 可以 隨心 所欲 . +He has a large family to support . 他 要 撫養 一 大家 人 . +I was able to answer the question . 我 能 回答 這個 問題 . +I need to know what you know . 我 需要 知道 你 知道 的 事 . +My father is in the garden . 我 爸爸 在 花园里 . +May I ask you to close the window ? 帮 我 关下 窗 可以 吗 ? +Many people were waiting in line . 許多 人 在 排隊 等候 . +Is there anything I can do for you ? 我 能 为 您 做 些 什么 吗 ? +I was a doctor . 我 以前 是 醫生 . +I do not have any enemies . 我 没有 敌人 . +We were not at home yesterday evening . 昨天晚上 我們 不 在家 . +We had a good time playing chess . 我們 下棋 玩 得 很 開心 . +I love my grandmother very much . 我 非常 愛 我 的 祖母 . +It is up to you to decide whether we will go there or not . 我们 去不去 那儿 由 你 来 决定 . +You refused to do that , did not you ? 你 拒絕 去 做 那件事 , 不是 麼 ? +Will you show me your photo album ? 你 能 讓 我 看看 你 的 相簿 嗎 ? +I am fine . 我 很 好 . +Does not Tom have any friends ? 汤姆 没有 朋友 吗 ? +Where would you like to go next ? 你 下 一步 想去 哪裡 ? +She became drowsy after supper . 晚 飯 後 她 變得 昏昏欲睡 . +Many workers were trapped in the coal mine . 有 很多 工人 被困 在 煤矿 里 了 . +Tom recently found a good job . 湯姆 最近 找到 了 一份 好 工作 . +I heard someone call my name . 我 聽見 有人 叫 我 的 名字 . +I do not want to fail my exams . 我 不想 不及格 . +Tom looked at Mary suspiciously . 汤姆 怀疑 地 看着 玛丽 . +He took a trip to Europe . 他 去 歐洲 旅行 了 . +Tom has admitted that he was there that night . 汤姆 承认 他 那晚 是 在 那里 . +I can do it alone . 我 可以 獨自 做 . +I should have gone to bed earlier last night . 我 昨晚 应该 早点 睡觉 的 . +I can not walk . 我 走 不了 . +It is going to rain . 天 快要 下雨 了 . +The incident was etched in his memory . 这件 事 他 铭记 于 心 . +He has not actually been to America . 他 還 沒有 真正 去過 美國 . +They made me captain . 他們 讓 我 當 了 隊長 . +His store is always crowded with customers . 他 的 店 總是 擠滿 了 顧客 . +It is too hot to stay here . 太 熱 了 不能 待 在 這裡 . +How are you doing in school ? 学校 怎么样 ? +I am going to play tennis tomorrow . 我 明天 會 去 打 網球 . +We have to wash the clothes . 我们 得 洗衣服 . +Where are you going on vacation ? 你 要 去 哪裡 度假 ? +I do not think Tom understands what is going on . 我 不 認為 湯姆 知道 正在 發生 甚麼 . +Today is my sixteenth birthday . 今天 是 我 十六 歲 的 生日 . +Everybody except Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +How about tomorrow night ? 明晚 怎么样 ? +I am starting to agree with you . 我 開始 同意 你 了 . +Tom is really handsome . 汤姆 真帅 . +I am old enough to support myself . 我 年 紀夠 大 可以 養活 我 自己 . +There are more than 4,000 languages in the world . 全世界 有 超过 4000 多种 的 语言 . +Does Tom have a job ? 汤姆 有 工作 吗 ? +I am accustomed to the climate . 我 对 这 气候 习惯 了 . +He came to Japan two years ago . 他 兩 年前 來 日本 . +I will admit I am wrong . 我 承認 我 錯 了 . +Straighten up . 改邪归正 . +You should have kept it secret . 你 應該 保密 的 . +What time do you leave for school ? 你 幾點鐘 去 學校 ? +Lend me some books to read . 借 我 一些 書 看 . +I asked him to drive me home . 我 請 他 開車 送 我 回家 . +The teacher made him stay after school . 老師 要 他 放學 後 留在 學校 . +I am not one hundred percent convinced of that . 我 不是 百分之百 确定 . +He was injured in the accident . 他 在 事故 中 受傷 . +Take the road on the left . 走 左邊 的 道路 . +What we need is a little more time . 我们 就 需要 再 多一点 时间 . +I am afraid of death . 我 怕死 . +He is watching TV . 他 在 看电视 . +Someone has walked off with my pencil . 有人 偷走 了 我 的 鉛筆 . +A permit is required . 需要 准许 . +He did not think he needed their protection . 他 认为 他 不 需要 他们 的 保护 . +You are a person . 你 是 人 . +Can I have the menu again , please ? 麻煩 讓 我 再 看看 菜 單 好 嗎 ? +Our train arrived on time . 我们 的 火车 准时 来到 . +It would be nice to have a party . 开 个 聚会 很 好 . +She greeted me with a big smile . 她 面帶 大大的 笑容 向 我 招呼 . +You go to school , do not you ? 你 去 上 學 , 不是 嗎 ? +How tall are your parents ? 你 的 父母 有 多 高 ? +Keep an eye on the bags . 把 包包 看好 . +The teacher can not have said such a thing . 老师 不 可能 说 过 这样 的 事 . +She saw herself in the mirror . 她 看到 鏡子 裡 的 自己 . +I can eat anything . 我 甚麼 都 能 吃 . +Do not let opportunities pass by . 不要 让 机会 溜走 . +She sat next to me . 她 坐在 我 旁边 . +At home , we speak only French . 在 家里 , 我们 只 说 法语 . +The pain is unbearable . 疼痛 令人 难以忍受 . +Weather is pretty nice tonight . 今晚 的 天气 不错 . +He brought back several souvenirs . 他 帶回 了 一些 紀念品 . +How much is this pen ? 這 支筆 多少 錢 ? +A little walk will give you a good appetite for breakfast . 散散步 將 會 給 你 很 好 的 食 慾 吃 早餐 . +Your voice reminds me of my late grandmother . 我 的 声音 让 我 想起 了 我 已故 的 祖母 . +They say that he has been dead for two years . 他们 说 他 死 了 两年 了 . +May I see you in private ? 我們 能 私下 見 見 嗎 ? +You are still green . 你 还 年轻 . +Sit wherever you like . 你 愛 坐 哪裡 就 坐 哪裡 . +Will you lend me your bicycle ? 你 能 把 你 的 自行车 借给 我 吗 ? +We do not have any other choice . 我们 别无选择 . +The red hat goes well with her dress . 这 顶 红帽子 很 衬 她 的 裙子 . +Who wrote these two letters ? 誰 寫 了 這 兩 封信 ? +I lost my way in the forest . 我 在 树林 里 迷路 了 . +I am glad I could help you . 能够 出 一份 力 太好了 . +My uncle lives in an apartment . 我 叔叔 住 在 公寓 裡 . +All of us would like to get rid of nuclear weapons . 我們 所有 的 人 都 想 除掉 核子武器 . +They were buried in a mass grave . 他们 被 埋 在 一座 大 坟墓 里 +I do not know about the past , but now we have faxes and emails . 我 不 知道 以前 怎样 , 但 现在 我们 有 传真 和 电子邮件 . +I want a quart of milk . 我 要 一 夸脫 的 牛奶 . +I do not want to eat . 我 不想 吃 . +Tom often takes pictures with his phone . 汤姆 经常 用 手机 拍照 . +Tom decided not to wait . 汤姆 决定 不再 等 了 . +Why did not you bring your hat today ? 为什么 你 今天 没有 把 帽子 带来 ? +I spent the whole day in reading the novel . 我 一整天 都 在 看 这本 小说 . +She is two years older than you . 她 比 你 大 兩歲 . +Our fence is made of iron . 我們 的 欄杆 是 鐵 做 的 . +Tom said he was ill , which was a lie . 汤姆 说 他 病 了 , 这 是 说谎 . +She had my mother take care of the baby . 她 让 我 母亲 照顾 孩子 . +I went for a walk after breakfast . 早餐 後 我 去 散步 了 . +He arrived earlier than usual . 他 比 平常 早 一點 到 達 . +Water boils at 100 degrees Celsius . 水 在 攝 氏 100 度沸騰 . +He quickly made friends with the new boy on the block . 他 很快 便 与 小区 里 新来 的 男孩 交上 了 朋友 . +Tom was drunk . 汤姆 醉 了 . +His second son married and settled down . 他 的 第二 個 兒子 結婚 並 定居 下來 了 . +It took me three years . 它 花 了 我 三年 . +I think I am coming down with a fever . 我 覺得 我 有 點 要 發燒 了 . +Tom has a very friendly smile . 汤姆 有 很 友好 的 微笑 . +You are not supposed to be in this area . 你 不 应该 待 在 这里 . +She cried bitterly . 她 痛哭 . +There are almost no books . 幾乎 沒有 任何 書籍 . +Tom wanted to take a shower . 汤姆 想 洗 个 澡 . +It seems that you are not having a good time here . 好像 你们 在 这儿 玩 得 不 愉快 啊 . +Tom got out of the taxi . 汤姆 从 出租车 上 下来 了 . +She extended her stay by five days . 她 延長 停留 五天 . +How are we going to pay for that ? 我们 怎么 付钱 ? +You have told Tom , have not you ? 你 告诉 汤姆 了 , 没有 吗 ? +It is not funny . 这 不好 笑 . +I 'd like three of these . 这个 给 我 来 三个 . +Do you want any of these books ? 你 要 這些 書 中 的 任何 一本 嗎 ? +What are you doing now ? 你 現在 在 做 什麼 ? +I understand everything you said . 我 理解 你 所说 的 一切 . +This car is the latest model . 这辆 车 是 最新款 . +She kept me waiting for half an hour . 她 让 我 等 了 半小时 . +Tom has never been on time . 汤姆 从来 都 没有 准时 过 . +I love you , too . 我 也 愛 你 . +Please continue with your story . 请 继续 讲 你 的 故事 . +Here is a letter for you . 这 是 你 的 信 . +My teeth are not as white as I 'd like them to be . 我 的 牙齿 没有 我 希望 的 那样 白 . +They all went to the restaurant . 他們 都 去 了 這家 餐廳 . +I know the problem . 我 知道 问题 . +I eat here . 我 在 這裡 吃 . +Tom has failed . 汤姆 失败 了 . +The roses in the garden are blooming . 在 花園 裡 的 玫瑰 正盛 開著 . +" Do you speak German ? " " No , I do not . " " 你 說 德語 嗎 ? " " 不 , 我 不 說 . " +He is not the man that he was when I first knew him . 他 已经 不是 我 最初 见 他 那时 的 那个 人 了 . +I 'd like a glass of water , please . 我 要 一杯 水 , 謝謝 . +He took out his passport . 他 拿出 了 他 的 護照 . +Here is a letter for you . 这儿 有 你 的 一封信 . +I caught up with them soon . 我 很快 就 趕上 了 他們 . +I will scold him . 我 會 責備 他 . +I am afraid I must say goodbye . 恐怕 我 必須 說 再 見 了 . +I have never felt better . 我 从来 没 感觉 那么 好 过 . +" Is he right ? " " I do not think so . " " 他 是 對 的 嗎 ? " " 我 不 這麼 認為 . " +Come on , let is go . 来 吧 , 我们 一起 去 . +It rained on and off all day . 雨 斷斷 續續 地下 了 一整天 . +Sewage often pollutes the ocean . 废水 经常 污染 海洋 . +She may come . 她 可以 來 . +He witnessed the murder . 他 目睹 了謀 殺案 . +It is necessary for you to go there immediately . 你 必需 马上 去 那儿 . +You look tired . You ought to rest for an hour or two . 你 看 起來 很 累 . 你 應該 休息 一兩個 小 時 . +We picked flowers in the garden . 我們 在 花園 裡 摘花 . +Could you call me back a bit later ? 你 可以 稍 後 回電 給 我 嗎 ? +Do you know me ? 你 还 认识 我 吗 ? +I will be back by seven or eight o 'clock . 我会 在 七八点 回家 . +Police should not take bribes . 警方 不 應該 收取 賄賂 . +Your cat scratched me . 你 的 猫 抓伤 我 了 . +I hope this is the right one . 我 希望 這 是 對 的 . +I want to buy this dictionary . 我 想 買 這 本 字典 . +They bought a box of cookies . 他们 买 了 一盒 曲奇 . +We probably do not have enough time to finish doing that today . 我们 应该 不够 时间 在 今天 之内 完成 它 . +I have not decided yet . 我 還 沒 決定 . +How about a sandwich ? 三明治 怎麼樣 ? +You have beautiful legs . 你 有着 漂亮 的 腿 . +I will do what I can to help you . 我 會 盡力 幫 你 . +They seem to have had a good time in Rome . 他們 看來 在 羅馬 過 了 些 好日子 . +Going out in this rain is out of the question . 在 雨 中 走 出去 是 不 可能 的 . +I promise I will do that tomorrow . 我 保證 明天 就 做 +I will do anything for you . 我 會 為 你 做 任何 事 . +I do not like tea . 我 不 喜欢 喝茶 . +She is lacking in common sense . 她 缺乏 常识 . +My job is to wash the dishes . 我 的 工作 是 洗碗 . +Listen to this . 聽 聽 這個 . +You may go home now . 你 現在 可以 回家 了 . +He broke up the chair for firewood . 他 摔斷 了 椅子 當 柴火 . +She and I are the same age . 她 跟 我 同年 . +Tom is buying some flowers for Mary . 汤姆 在 给 玛丽 买花 . +Mastering a foreign language involves a lot of patience . 学好 一门 外语 需要 坚韧不拔 的 毅力 . +Do you have a driver is license ? 你 有 駕駛 執照 嗎 ? +He came back from China . 他 从 中国 回来 了 . +He came back last August . 他 去年 八月 回來 的 . +That is intriguing . 那 真 有趣 . +I take a bath every other day . 我 每 兩天 洗 一次 澡 . +I can not trust you . 我 沒辦 法 相信 你 . +I wonder why they left my name off the list . 我 奇怪 他们 为什么 在 表里 把 我 的 名字 落下 了 . +It is a good question . 它 是 一個 很好 的 問題 . +I can talk about anything with my best friend . 我 能 跟 我 最好 的 朋友 說 任何 事 . +I was shocked by yesterday is news . 昨天 的 消息 讓 我 感到 震驚 . +Mary is not poor . On the contrary , she is quite rich . 玛丽 不穷 , 相反 , 她 相当 富裕 . +I work in a factory . 我 在 一家 工廠 工作 . +What is your favorite way to cook beans ? 你 最 喜歡 用 什麼 方法 煮 豆子 ? +Who hired you ? 誰 雇 了 你 ? +We will talk about this later . 我們 晚會 再 談 這事 . +The experiment was successful . 這 實驗 是 成功 的 . +He made a speech in plain English . 他 用 淺顯 的 英語 演講 . +I put it in the drawer . 我 把 它 放在 了 抽屜 裡 . +She is about the same age as me . 她 大約 跟 我 同年 紀 . +I can cook you something if you are hungry . 要是 你 饿 了 , 我 能 给 你 做饭 . +It is a quarter to three . 現在 是 兩點 四十五分 . +You have a point there . 喔 ! 你 提到 一個 重點 了 . +Look at what is happening outside . 看 外面 正在 发生 什么 . +My father has five siblings . 我 父親 有 五個 兄弟姐妹 . +She was not a very good pianist . 她 不是 一個 很好 的 鋼 琴家 . +Tom has been really busy recently . 汤姆 最近 相当 忙 . +She did not like living in the city . 她 不 喜歡 住 在 城市 裡 . +Tom became a hero . 汤姆 成 了 英雄 . +Christmas is December 25th . 聖誕節 是 12 月 25 日 . +All of my friends like soccer . 我 所有 的 朋友 都 喜歡 足球 . +I guess that she is over thirty . 我 猜 她 超過 三十 歲 了 . +I do not know anyone who matches that description . 我 不 认识 符合条件 的 人 . +He will make you eat dirt . 他 会 让 你 吃 灰 的 . +We are having dinner . 我們 在 吃 晚餐 . +How many books do you read per month ? 你 一個 月 讀 幾本 書 ? +Dust got into one of my eyes . 灰塵 鑽進 了我的一 隻 眼睛 . +I am left @-@ handed . 我 是 左撇子 . +Where is the vodka ? 伏特加 在 哪里 ? +I can not do it . 我 無法 做到 這 一點 . +I never thought it would come to this . 我 从没 想 过 它 会 变成 这样 . +Dozens are still missing . 数十 人 仍然 失踪 . +Tom would not like it . 湯姆 不 會 喜歡 它 . +Tom remained a bachelor until his death . 汤姆 终身 未娶 . +I did not go to school because I was sick . 由于 我 生病 了 , 我 便 没去 上学 . +She sang a Japanese song for us . 她 為 我們 唱 了 一首 日文 歌 . +As far as I am concerned , things are going well . 据我所知 , 事情 很 顺利 . +My head is exploding . 我 的 頭 要炸 了 . +My dream is to go to Japan . 我 的 夢 想 是 去 日本 . +Was her story true ? 她 的 故事 是 真的 吗 ? +Please give me something to drink . 請 給 我些 飲料 喝 . +Do not release that prisoner . 別 放 了 那個 犯人 . +Tom wants to speak . 汤姆 想 说话 . +Your friend is very late , is not he ? 你 的 朋友 來 得 很 晚 , 不是 麼 ? +Do you like juice ? 你 喜歡 果汁 嗎 ? +I do not accept it . 我 不 接受 . +He managed to make both ends meet . 他 設法 使 收支平衡 . +I decided to be a doctor . 我 決定 當 個 醫生 了 . +I will tell my wife . 我 會 告訴 我 的 妻子 . +I look forward to hearing your thoughts on this matter . 我 期待 听到 你 在 这件 事 上 的 想法 . +I am really sorry . I seem to have lost your umbrella . 我 真的 很 抱歉 , 我 好像 弄 丢 了 你 的 雨伞 . +This book is new . 这 本书 是 新 的 . +Let me introduce myself . 請 允許 我 自我 介紹 一下 . +I 'd like you to come back next week . 我 想 讓 你 下周 回來 . +What Tom really wanted was enough money to buy Mary some flowers . 汤姆 真正 想要 的 是 有 足够 的 钱 给 玛丽 买 一些 花 . +You need to have friends who can help you out . 你 需要 可以 幫助 你 的 朋友 . +His concert was great . 他 的 演唱 會 很棒 . +We had some chicken soup . 我們 喝 了 些 雞 湯 . +A fire broke out during the night . 在 夜間 發生 了 火災 . +I am not feeling that hungry yet . 我 感觉 还 不是 那么 饿 . +While you are young , you should read a lot . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +You will be confused . 你 會 困惑 . +It is good to see you . 见到 你 真好 . +He retired to his own room after supper . 他 在 吃 过 晚餐 后 回到 了 自己 的 房间 . +Is it OK if I go out with Tom ? 我 跟 汤姆 外出 行 吗 ? +My vision is getting worse these days . 这些 天 我 的 视力 正在 变差 . +He sent the letter back unopened . 他 把 那 封信 原封 不動 寄 回去 了 . +I know someone who might be able to help . 我 知道 有個 人 可能 能 幫 忙 . +She has been absent from school for five days . 她 已经 五天 不 上学 了 . +Tom had no children . Tom 沒有 孩子 . +Please help yourself to the fruit . 請 隨意 吃水果 . +Will you help me give out the programs to those people ? 你 能 帮 我 给 这些 人 分发 节目单 吗 ? +She patted her son on the shoulder . 她 拍拍 她 兒子 的 肩膀 . +Do not distract me while I am studying . 我 学习 的 时候 不要 打扰 我 . +I am going to be a millionaire . 我 就要 成为 百万富翁 了 . +I cry every time I watch this movie . 我 每次 看 这部 电影 都 会 哭 . +She greeted me with a smile . 她 用 一个 微笑 迎接 了 我 . +A friend in need is a friend indeed . 在 你 有 需要 的 時候 , 會 幫 你 的 朋友 才 是 真正 的 朋友 . +Stand back ! 往后 站 ! +She died of stomach cancer . 她 死 于 胃癌 . +She looks very elegant . 她 看上去 十分 优雅 . +Who planted this tree ? 谁种 了 这 棵 树 ? +Everyone in the town knows about it . 鎮 上 的 每個 人 都 知道 它 . +Tom went into the kitchen and poured himself a cup of coffee . 汤姆 进 了 厨房 , 给 自己 倒 了 杯 咖啡 . +I will pay you the money tomorrow . 我 明天 會 付錢 給 你 . +Tom had numerous girlfriends . Tom 有 很多 女友 . +When is it convenient for you ? 你 什么 时候 方便 ? +I will miss you so much . 我 會 非常 想念 你 . +This product claims to help you lose weight . 这个 产品 称 它 能 帮助 你 减肥 . +Please mail this letter for me . 請 幫 我 寄信 . +Be it ever so humble , there is no place like home . 金窝银 窝 不如 自己 的 狗窝 . +You made a wise choice . 你 做 了 一個 明智 的 選擇 . +Tom does not want to live in Boston . 湯姆 不想 住 在 波士 頓 . +Is there anyone in the room ? 屋里 有人 吗 ? +I went without food for a week . 我 一 星期 沒 帶 食物 去 . +Are you afraid of insects ? 你 怕 虫子 吗 ? +The train leaves at 6 o 'clock . 火车 6 点 出发 . +I am repairing the washing machine . 我 在 修 洗衣 機 . +He can not buy a car . 他 不能 买车 . +I have had enough of your lying . 我 听够 你 的 谎话 了 . +People from Madrid are weird . 从 马德里 来 的 人 都 很 怪 . +I am about ready . 我 快好了 . +What is this song ? I have heard it before , but I can not remember the name . 这 是 什么 歌 ? 我 以前 听 过 , 但是 我 想不起 歌名 了 . +She adores her older brother . 她 爱慕 她 哥哥 . +I arrived at school on time . 我 按时 到 了 学校 . +What is your favorite small town in Australia ? 你 最 喜欢 的 澳大利亚 的 小镇 是 哪里 呀 ? +What time are you going on duty ? 你 幾點 值班 ? +Tom told me that he was coming back . 湯姆 告訴 我他 正在 回來 . +Ca not you do something to help me ? 你 不能 做 些 事 來 幫助 我 嗎 ? +We had a lot of furniture . 我們 有 很多 家具 . +Tom pretended to not hear a thing . 汤姆 假装 没 听见 . +Do you have a cellphone ? 你 有 手機 嗎 ? +" Would you like some tea ? " " Yes , please . " “ 来 杯 茶 吗 ? ” “ 嗯 , 好 的 . ” +He went out of the room . 他 走出 了 房間 . +He stayed at his aunt is house . 他 住 在 他 舅妈 家 . +He offered his help to us . 他 向 我们 提供 了 帮助 . +I thank you with all my heart . 我 衷心感谢 您 . +She looked well when I last saw her . 上次 我 见到 她 的 时候 , 她 看上去 挺 好 的 . +The path zigzagged up the steep slope . 這條 小路 沿著 陡峭 的 斜坡 蜿蜒 而 上 . +Your prophecy has come true . 你 的 预言 成真 了 . +Tom is looking for a good job . 汤姆 在 找 工作 . +She won everything . 她 贏 得 一切 了 . +I think she is an honest woman . 我 认为 她 是 一个 诚实 的 女人 . +I am already married . 我 已婚 . +Will you show me your passport , please ? 能否 请 您 给 我 看 一下 您 的 护照 ? +He likes smoking in the toilet . 他 喜欢 在 厕所 里 吸烟 . +What are you going to do tomorrow ? 你 明天 要 做 什麼 ? +I saw them walking arm in arm . 我 看见 他们 胳膊 挽 着 胳膊 地 走路 . +She was so curious that she opened the box . 她 太 过 好奇 , 以至于 打开 了 盒子 . +This novel is too difficult for me to read . 這 本小 說 對 我 來說 太 難讀 了 . +I need my coat . 我 需要 我 的 大衣 . +Almost nobody thinks we are sisters . 几乎 没有 人 认为 我们 是 姐妹 . +I am sure that he will succeed . 我 肯定 他 会 成功 的 . +Someone stole my wallet on the train . 有人 在 火车 上 偷 了 我 的 钱包 . +Nobody gave us a chance . 没人 给 我们 机会 . +I do not see any reason why I have to apologize . 我 没 发现 任何 我 该 道歉 的 理由 . +I am glad that you have succeeded . 我 很 高兴 你们 成功 了 . +She spoke Japanese well . 她 日语 说 的 很好 . +Everybody in the building felt the earthquake . 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +Where do you study ? 你 在 哪 讀 書 ? +Give me back my wallet . 把 钱包 还 我 . +I am studying several languages . 我 在 学 几门 语言 . +Do you promise ? 你 保证 ? +Forewarned is forearmed . 凡事 豫 則 立 . +I will see you in an hour . 我 一 小时 内来 见 你 . +You are making progress . 你 在 進步 . +We saw Tom talking to Mary . 我们 看见 汤姆 跟 玛丽 说话 . +I do not know much about computers . 我 對 電腦 知道 的 不多 . +Tom is awfully sick . 湯姆 非常 虚弱 . +Do you mind if I open the window ? 你 介意 我 开窗 吗 ? +The president is difficult to approach . 总统 很 难接近 . +How long have you lived in Boston ? 你 在 波士顿 住 了 多久 ? +I would like to reserve a room in a hotel . 我 想要 订房 . +How curious ! 多 怪 啊 ! +This is really terrible . 这 真 可怕 . +What were you and Tom doing yesterday ? 你 和 汤姆 昨天 做 了 什么 ? +Help yourself to a piece of cake . 你 自己 拿 蛋糕 吃 吧 . +That gentleman usually wears a hat . 那位 紳士 經常 戴 著 一頂 帽子 . +She has a very open personality . 她 是 个 很 坦率 的 人 . +They armed themselves with guns . 他們 用槍 武裝 自己 . +Where are your things ? 你 的 東西 在 哪裡 ? +Call Tom now . 现在 给 汤姆 打电话 . +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 好意 . +Turn on the TV . 开 电视 . +I was exhausted from work . 我 工作 累死 了 . +Why is not that good ? 那 為 甚麼 不好 ? +Tom bought a dozen donuts . 汤姆 买 了 一打 甜甜 圈 . +Please come again in three days time . 请 在 三天 内 回来 . +What did you have for lunch ? 你 午饭 吃 的 什么 ? +Tom says that he does not feel like going out . 汤姆 说 他 不想 出去 . +When do you need it by ? 您 何時 需要 它 ? +We need Tom back . 我們 需要 湯姆 回來 . +It looks like Tom has a crush on Mary . 看来 汤姆 热恋 着 玛丽 . +I do not have anyone who 'd travel with me . 我 没有 一个 愿意 跟 我 一起 旅行 的 人 . +Nobody believes what I say . 没有 人 相信 我 说 的话 . +I get up at 6 : 30 on school days . 他 在 上學 的 日子 裡 6 : 30 起床 . +Tom does not have time . 汤姆 没有 时间 . +He has decided to become a teacher . 他 已經 決定 要成 為 一名 教師 . +Mary grabbed her purse and left . Mary 霸占 了 她 的 包包 并且 离开 了 . +This is a good book for children to read . 这 是 本 对 儿童 好 的 书 . +You gave me the wrong change . 你 找 錯 了 零 錢 給 我 . +English has spread all over the country . 英語 已經 普及 全國 . +He always wears dark glasses . 他 总是 带 着 黑色 眼镜 . +She began to sing . 她 开始 唱歌 了 . +I know Tom is watching me . 我 知道 湯姆 在 看着 我 . +I forgot to ask him . 我 忘记 问 他 了 . +I do not understand what you are trying to say . 我 不 明白 您 想 说 什么 . +It is a long way to the station . 到 車站 的 路程 很遠 . +I will stake my reputation on it . 我 赌 上 我 的 名声 . +He struck a match . 他 劃 了 一根 火柴 . +How are you doing ? 你們 好 嗎 ? +I do not have any other questions . 我 没有 别的 问题 了 . +What are you hiding ? 你 在 掩饰 什么 ? +Tom is probably pretty rich by now . 汤姆 现在 可能 很 有钱 . +I am sure that he will succeed . 我 肯定 他 会 成功 的 . +Is Tom sick ? 汤姆 是不是 身体 不太好 ? +He always takes sides with her . 他 總是 跟 她 站 在 同一 邊 . +He is mad about music . 他 痴迷 于 音乐 . +He was wounded in the war . 他 是 在 战争 中 受伤 的 . +I speak French every day at work . 我 每天 工作 时 都 讲 法语 . +I am in the house . 我 在家 裡 . +He has done it before . 他 以前 做 過 . +I managed to catch the last train . 我 設法 趕上 了 最 後 一班 火車 . +Those shoes will not do for climbing . 那种 鞋子 用来 登山 是 不行 的 . +I have got to go to the bank . 我 必须 到 银行 去 . +You must be kidding ! 你 一定 是 开玩笑 ! +Coffee , please . 我 要 咖啡 , 谢谢 . +I agree with you on this point . 我 同意 你 這 一點 . +What is with you ? 你 怎么 了 ? +My car is not red . It is blue . 我 的 汽車 不是 紅色 的 , 而是 藍色 的 . +I do not have a partner . 我 沒 有 夥 伴 . +Between you and me , Tom is idea does not appeal to me very much . 汤姆 的 主意 我 不 太 感兴趣 , 这个 我们 之间 说 说 就 好 . +A fool and his money are soon parted . 笨蛋 難 聚財 . +Please do not speak so fast . 请 不要 说 得 那么 快 . +You do not scare us . 你 別 嚇 我們 . +You will love it . 你 會 愛 它 . +They had a lovely time together . 他們 在 一起 很 愉快 . +Switzerland is a beautiful country . 瑞士 是 一个 美丽 的 国家 . +Neither Tom nor Mary has been losing weight . 汤姆 和玛丽 减肥 都 没减 下来 . +Do not talk rubbish . 别胡说 . +We do not think so . 我们 不 这样 认为 . +Nobody is laughing . 沒人在笑 . +The information is very important to us . 这些 信息 对 我们 非常 重要 . +I fed the dog . 我 餵 過 狗 了 . +I slipped the letter to him . 我 悄悄 把 信给 了 他 . +Will it take long to recover ? 復 原 需要 花 很 長 的 時間 嗎 ? +Please deal the cards . 請 發 一下 牌 . +Mary stayed up late last night . 瑪麗 昨晚 熬夜 . +I was searched by the customs officers at the airport . 我 在 機場 被 海關 人員 搜查 . +I am a stranger here . 我 是 這裡 的 外地人 . +My head aches . 我 头痛 . +He grows tomatoes in his garden . 他 在 他 的 花園 種 番茄 . +Why are you alone ? 为什么 您 一个 人 ? +I am looking for an assistant . 我 正在 找 一個 助手 . +I can not get away from work now . 我 現在 在 工作 無法 離開 . +The goods were transported by ship . 這 批 貨物 是 由 船 隻 運 送 的 . +We still have a chance . 我們 還 有次 機會 . +The worst is over . 最 壞 的 已經 過去 了 . +You look tired . 你 看起来 很困 了 . +You should not smoke so much . 你 不该 抽 那么 多 烟 . +AI means Artificial Intelligence . AI 是 人工智能 的 略称 . +Got it ? 你 懂 了 吗 ? +There is nothing worse than doing something in a half @-@ hearted manner . 没有 什么 比 做事 缺乏 热情 更糟 . +English is too difficult for me to understand . 英語 對 我 來說 太 難 理解 了 . +Whose car is this ? 這 是 誰 的 車 ? +I said open the door . 我 說 開門 . +I do not want any more . 我 不 想要 了 . +Thanks for your explanation . 谢谢 你 的 解释 . +I have three dogs . One is male and the other two are female . 我 有 三只 狗 , 其中 一只 是 公 的 , 另外 两只 是 母 的 . +Good evening . 晚上 好 . +Tom wrote the report all by himself . 湯姆 寫 報告 全是 靠 的 自己 . +How large is the population of New York City ? 纽约市 的 人口 有 多少 ? +This house is really beautiful . 这 房子 真 漂亮 . +Leave a space between the lines . 行與行 之間 要留 一個 空間 . +Please attend the meeting in the second floor conference room at 2 : 30 p.m. 请 在 两点 半 参加 在 二楼 会议室 的 会议 . +Did you cut the paper ? 你 裁切 紙 張 了 嗎 ? +You have got to go . 你們 得 走 了 . +I would like to get home by five . 我 想 在 五點 前 到 家 . +I am not famous . 我 没 名气 . +Tom is no fool . 汤姆 不 傻 . +His parents ran a hotel . 他 的 父母 经营 一家 酒店 . +You do not need to thank me . 您 不必 感谢 我 . +Can you teach me to play chess ? 您 能 教 我 下 国际象棋 吗 ? +Christmas is coming . 聖誕節 快 到 了 . +You told her that you had finished the work three days before . 你 告訴 她 你 已經 在 三天 前 完成 這個 工作 了 . +Can you give me a discount ? 能 给 我 打 个 折么 ? +I wish I could go with you . 我 希望 能 跟你走 . +Can I use your pencil ? 我 能 用 一下 你 的 铅笔 吗 ? +There are holes in the ceiling . 天花板 上 有 洞 . +The whole country was covered in snow . 整个 国家 被 大雪 覆盖 了 . +I asked Tom about his new book . 我 問 了 湯姆關 於 他 的 新書 的 事 . +Tom kissed Mary is cheek . 汤姆 吻 了 玛丽 的 脸颊 . +I am getting farsighted as I get older . 當 我 年 長 時 , 我 漸漸 變得 有遠 見 . +He wants to pay off his loan . 他 想 还清 贷款 . +Please serve him his meal first . 請 先 為 他 上菜 . +She loves Tom , not me . 她 爱 汤姆 , 而 不是 我 . +When will the rainy season be over ? 雨季 何時 會 結束 ? +Let them take care of themselves . 讓 他們 照顧 自己 . +His plan is dangerous ! 他 的 計劃 是 危險 的 ! +As time went on , rules were added to the game to make it safer . 随着 时间 的 推移 , 比赛 增加 了 规则 以使 之 更 安全 . +This juice tastes sour . 這個 果汁 喝 起來 酸酸的 . +What makes you think I will not be able to do it ? 你 怎么 认为 我 做不了 ? +He knocked on the closed door . 他 敲 了 敲 緊閉 的 門 . +I cannot distinguish a frog from a toad . 我 无法 区分 青蛙 和 蟾蜍 . +I vaguely remember meeting him . 我 依稀 記得 見 過 他 . +No matter what I do , she says I can do better . 不论 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I wanted to ask Tom how long he had lived in India . 我 想 问 汤姆 他 在 印度 生活 了 多久 . +My mother is a very good cook . 我 媽媽 是 一個 很棒 的 廚師 . +The red flag indicated the presence of danger . 红旗 代表 存在 危险 . +There used to be a bridge here . 以前 這裡 有 一座 橋 . +Are you happy ? 你 快樂 嗎 ? +I usually get up at six . 我 一般 六点 起床 . +I am vegetarian . 我 是 素食主义者 . +I will live in Sasayama next year . 我 明年 會 住 在 筱 山 . +These are called shoes . 這些 叫 鞋子 . +Mary has a flower in her hand . 瑪麗 手上 有 一朵花 . +I am fairly confident that I can do that . 我 相当 有 自信 我 能 做到 这 一点 . +We will be busy . 我們 會 很忙 . +My father got married in his twenties . 我 父親 在 他 二十多 歲時 結婚 了 . +She writes beautifully . 她 的 筆跡 很美 . +I want to eat something delicious . 我 想 吃 點 好吃 的 . +He stuck to his promise . 他 信守 了 承诺 . +Are you for or against the plan ? 你 赞成 还是 反对 这个 计划 ? +I have got a frog in my throat . 我 緊張 得 說 不 出話 來 了 . +" How old are you ? " " I am 16 years old . " 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He is used to traveling . 他 習慣 了 旅行 . +I clapped my hands . 我 拍手 . +I 'd like some more bread , please . 我 想 再 要 些 麵 包 , 謝謝 . +Do you hear me ? 你 听得见 吗 ? +I doubt that Tom will ever learn how to speak French properly . 我 对 汤姆 要 持之以恒 地 学习 法语 口语 这件 事 很 怀疑 . +We are conservative . 我们 很 保守 . +You should not have come alone . 你 不該 一個 人 來 . +That is exactly what I wanted to see happen . 这 刚好 是 我 想 看到 它 发生 的 . +Tom dyed his hair . 汤姆 染发 了 . +We have not known each other long . 我們 彼此 認識 沒有 很久 . +This song makes me think of when I was young . 这 首歌 使 我 想起 了 我 年轻 的 时候 . +My mother is a very good cook . 我 媽媽 的 廚藝 很 好 . +She was envious of her cousin is success . 她 羨慕 她 表哥 的 成功 . +He goes to school on foot . 他 步行 上学 . +May I ask you for your name and address ? 我 能 问 一下 您 的 姓名 和 住址 吗 ? +We have forgiven you . 我们 已经 原谅 你 了 . +He is not very strict about this . 他 在 这方面 不是 很 严格 . +I explained the reason in detail . 我 詳細 地 解釋 了 原因 . +I know those women . 我 認識 那些 女人 . +You should come home before six . 六点 之前 要 回家 . +Who is that woman standing over there ? 站 在 那儿 的 女人 是 谁 ? +It was in Beijing that I studied Chinese . 我 是 在 北京 學 的 中文 . +The students learned many poems by heart . 学生 们 用心 学习 了 很多 首诗 . +The people here are used to the cold . 这里 的 人 习惯 了 寒冷 . +Somebody is got to do something . 得 有人 做 点 什么 . +Thousands of people lost their jobs . 数千 人 失业 . +The rain lasted a week . 雨 下 了 一周 . +I am going to run a couple of errands . Wanna tag along ? 我 要 去 购物 . 你 要 跟着 来 吗 ? +I was delayed by a traffic jam . 我 被 交通堵塞 耽擱 了 . +Tom wants me to join his team . 汤姆 希望 我 加入 他 的 团队 . +I am studying in the library . 我 正在 图书馆 学习 . +They have English lessons three times a week . 他们 一周 上 3 节 英语课 . +I woke up early . 我 起 得 早 . +How often do the buses run ? 公共 汽車 隔 多久 一班 ? +Let is find something to sit on . 讓 我們 找 些 可以 坐在 上面 的 東西 . +I do not know what I am going to do next . 我 不 知道 下 一步 做 什么 . +He has a remarkable aptitude for music . 他 有 非凡 的 音樂 天份 . +Frankly speaking , he is wrong . 坦率地 说 , 他 错 了 . +Many friends came to see me off . 許多 朋友 來 為 我 送行 . +It has been raining since Sunday . 從 週日 開始 一直 在 下雨 . +When did he say he would come ? 他 說 他什麼 時候 會 來 ? +His behavior is worthy of respect . 他 的 行为 值得尊重 . +He had his socks on inside out . 他 把 他 的 襪子 穿反 了 . +Is it true that your family will travel in Hokkaido ? I envy you . 你们 家 去 北海道 旅游 是 真的 么 ? 我 羡慕 你 . +She seems to have known the secret . 她 好像 已經 知道 這個 秘密 了 . +English is spoken in many countries around the world . 全世界 許多 國家 的 人 說 英語 . +The forest is teeming with monkeys . 这个 森林 里 猴子 成群 . +When did you get back from your trip ? 你 什么 时候 旅游 回来 的 啊 ? +When do you close ? 你們 公司 幾點 下班 ? +My name is Tom . 我 叫 Tom . +Everything depends upon your decision . 所有 事 都 取決 於 你 的 決定 . +Lend me your book , please . 請 ​ ​ 借 我 你 的 書 . +Let is skip out before Tom gets back . 咱 在 汤姆 回来 之前 开溜 吧 . +He took a taxi to get there in time . 他 打 出租车 以及 时 赶到 . +I 'd like seats on the first floor . 我 想要 一 樓 的 座位 . +She may come . 她 也許 來 . +I am going to check out at eight . 我 會 在 八點鐘 的 時候 登出 . +It is no use arguing about it . 爭論 是 它 是 沒 有用 的 . +I am really surprised you got a prize . 我 很 惊讶 你 得 了 奖 . +Learning how to swim is very simple . 学 游泳 非常简单 . +Why do not we go home ? 我们 何不 回家 呢 ? +These dirty socks stink . 脏 袜子 散发 臭气 . +What are you up to these days ? 最近 在 干 些 什么 ? +Her feelings are easily hurt . 她 很 容易 受到 感情 上 的 伤害 . +I told Tom I was OK . 我 对 汤姆 说 我 很 好 . +That is the stupidest thing I have ever said . 那 是 我 说 过 的 最 愚蠢 的话 了 . +Tom and I were born in the same city . 湯姆 和 我 生 在 同一 個 城市 . +" Is she coming , too ? " " I hope so . " “ 她 也 会 来 吗 ? ” “ 我 希望 是 这样 . ” +Tom is getting paranoid . 汤姆 越来越 多疑 了 . +It sounds like they are not going to leave . 听 着 好像 他们 不 打算 走 . +Tom works at home . 湯姆 在家 工作 . +Is this seat available ? 这个 位子 空 着 吗 ? +He wrote a book about the American Civil War . 他 写 了 本 关于 美国 南北战争 的 书 . +Tom looked a little frightened . 湯姆 看來 受 了 點 驚 嚇 . +Do not quit your day job . 别 辞掉 你 的 正职 . +A fork fell off the table . 叉子 从 桌上 掉 了 下来 . +How are you doing ? 你們 好 嗎 ? +The cat is eating . 这 只 猫 在 吃 东西 . +Let me think . 讓 我 想一想 . +It is very hot this morning . 今天 早上 很 熱 呢 ! +She lost a book . 她 弄 丟了 一本 書 . +I should not have lied to you . 我 不該 對 你 說 謊 . +Do you think I can help ? 你 认为 我 能 帮忙 吗 ? +Tom wanted to say goodbye . 汤姆 想 说 声 再见 . +We love our school . 我們 愛 我們 的 學校 . +I have a slight fever today . 我 今天 有點 發燒 . +I came to Japan to see Kyoto . 我 來 日本 看 京都 . +He prefers poetry to fiction . 比起 小说 , 他 更 喜欢 诗歌 . +He has already had lunch . 他 已经 吃 过 午饭 了 . +This may not be a real diamond . 這 可能 不是 一顆 真的 鑽石 . +We were bored . 我们 感到 厌烦 了 . +Are not you supposed to be at school today ? 你 今天 不是 应该 在 学校 的 吗 ? +She made fun of her husband . 她 取笑 了 她 的 丈夫 . +At lunchtime today , our usual restaurant was closed because of a funeral in the family . 今天 午餐 時間 , 我們 常 去 的 飯館 關門 了 , 因為 他們 家 在 辦 喪事 . +Would you mind coming with me ? 你 介意 跟 我 一 起来 吗 ? +They should arrive by ten o 'clock . 他們 應該 十點 前 到 . +That is an original idea . 那 是 原创 的 想法 . +She got in at 9 p.m. 她 晚上 九點鐘 上 了 車 . +She intended to become an actress . 她 打算 成為 一名 演員 . +He told his wife not to buy on impulse . 他 叫 自己 的 妻子 不要 衝動 購物 . +This is an ice cube . 這 是 冰塊 . +He shut the door . 他 關上 了 門 . +You do not have to get up early . 你 不必 早起 . +How many books do you have ? 你 有 多少 本書 ? +Tom can not account for his whereabouts on the day that Mary was murdered . 汤姆 不能 说明 玛丽 遇害 那天 自己 在 哪里 . +Do you believe there are ghosts ? 你 相信 有 鬼魂 吗 ? +Your composition has a few mistakes . 你 的 作文 有 一些 錯誤 . +Leave your umbrella in the hall . 把 你 的 雨 傘 放在 走廊 裡 . +Tom wrote down something in his notebook . 湯姆 在 他 的 筆記本 上 寫 了 東西 . +No words can express her deep sorrow . 她 的 悲伤 无法 言喻 . +I have a bath every day . 我 每天 洗 一次 澡 . +All the world speaks English . 世界各地 都 說 英語 . +I would like to rent a car . 我 想 租 一輛 車 . +Some people are difficult to please . 有些 人 很 難 取 悅 . +Do not worry . 別 擔心 . +He has two daughters . 他 有 两个 女儿 . +I never thought something like that could happen . 我 从来 没想到 会 发生 那种 事 . +Manholes are round because that way they will not accidentally fall through the hole . 人孔 是 圓 的 , 因為 這樣 人 孔蓋 就 不 會 意外 地 掉 進 洞 裡 . +I live here . 我 住 在 這 . +Tom said it was a diamond . 汤姆 说 它 是 钻石 . +There is no cause for worry . 这 没什么 好 担心 的 . +My girlfriend cried . 我 女朋友 哭 了 . +Go back to your seat . 回到 你 的 座位 . +Tom asked Mary where her mother was . 湯姆問 瑪麗 她 媽 在 哪 . +What happened to Tom could happen to you . 湯姆 身上 發生 的 事 也 可能 發生 到 你 身上 . +Keep your eyes closed until I tell you to open them . 闭 着 你 的 眼睛 直到 我 告诉 你 睁开 为止 . +Tom did not seem to be intimidated . 汤姆 似乎 没有 被 吓到 . +I am worried about my weight . 我 担心 我 的 体重 . +We live in a three @-@ bedroom house . 我們 住 在 一棟 有 三間 臥室 的 房子 . +Tom was never very good at swimming . 湯姆 從來 不 擅長 游泳 . +Tom felt hungry . 汤姆 觉得 饿 了 . +He often takes me for a drive . 他 常常 載 我 去 兜 風 . +Hang on . 坚持 . +Korean food is generally very spicy . 韓國 菜 一般 都 很辣 . +Are you studying ? 你們 學習 嗎 ? +She had to accept her fate . 她 该 接受 她 的 命运 . +He failed the exam , but he does not care too much . 他 考试 失败 了 , 但 他 不 太 在意 . +Go straight on down this street . 沿着 这条 街 直 走 . +This document was actually written by Tom . 這 文件 其實 是 湯姆 寫 的 . +Tom drank some orange juice . T 喝 了 點 柳橙汁 . +He left for Europe a week ago , that is , on the tenth of May . 他 在 一周 前 离开 去往 欧洲 , 就是说 , 是 在 五月 十号 . +I thought it was true . 我 以为 这 是 真的 . +Tom embraced his father . 汤姆 拥抱 了 他 的 父亲 . +Could you please get me a taxi ? 你 可以 幫 我 叫 一輛 計程 車 嗎 ? +Nobody knows what will happen in the future . 人 不 知道 未來 可能 發生 什麼 事 . +Is it yours ? 这 是 你 的 吗 ? +Did you watch the soccer game on television ? 你 在 电视 上看 足球赛 了 吗 ? +I am sorry to trouble you . 我 很 抱歉 打擾 你 了 . +It is up to you to decide whether we will go there or not . 该 由 你 来 决定 我们 去不去 那儿 . +Do not wait . 不要 等待 ! +I have promised Tom that I 'd be there . 我 答应 汤姆 我会 到 那里 . +You can pick out any book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +This is my mother . 这 是 我 母亲 . +It is our obligation to help . 幫助 是 我們 的 義務 . +We have been tricked . 我们 被 耍 了 . +He asked me where my uncle lived . 他 問 我 我 的 叔叔 住 在 哪裡 . +A change of air will do you a lot of good . 改變 環境 將 對 你 有 很多 好 處 . +Tom said he would not be able to do what we asked him to do . 汤姆 说 他 做 不成 我们 要 他 做 的 事 . +The police accused him of theft . 警察 起诉 他 盗窃 . +It would not be wise to ignore Tom completely . 完全 忽视 汤姆 不会 是 明智 的 . +What is wrong with you ? 你 到底 怎麼 回事 啊 ? +Tom usually only eats oatmeal for breakfast . 汤姆 通常 早饭 只 吃 燕麦 . +I think Tom is getting ready . 我 认为 汤姆 准备 好 了 . +" She likes music . " " So do I. " “ 她 喜欢 音乐 . ” “ 我 也 是 . ” +I saw her clean the room . 我 看見 了 她 打掃 房間 . +Everybody desires happiness . 每个 人 都 向往 幸福 . +It is too late to call Tom now . 现在 很 晚 了 , 没法 电联 汤姆 . +Did you bring a hair dryer ? 你 吹 風機 帶來 了 嗎 ? +I only took a bite of bread . 我 仅仅 吃 了 口 面包 . +I caught him stealing the camera . 我 抓到 他 偷 相機 . +Tom has no plans to go anywhere . 湯姆 沒 有 去 哪裡 的 打算 . +School begins at half past eight . 学校 8 点 半 开始 上课 . +Send me a letter when you arrive . 當 你 到 達 時 寄 封信 給 我 . +Drive cautiously . 安全 地 駕駛 . +I like your house . 我 喜欢 你 的 房子 . +He will arrive in Paris tomorrow . 他 明天 將 抵達 巴黎 . +This is my bike . 这 是 我 的 自行车 . +I have got it right here . 我 就是 在 这 得到 它 的 . +Come again any time . 隨時 再 來 . +He is able to speak five languages . 他 會 說 五種 語言 . +I like your city . 我 喜欢 你们 的 城市 . +We all felt sorry for Tom . 我們 都 為 Tom 感到 遺憾 . +The threat to Richmond was ended . 对 里士满 的 威胁 结束 了 . +I feel better today than yesterday . 我 今天 感覺 比 昨天 好 . +It is a very sad story . 这 是 一个 非常 悲伤 的 故事 . +I will wait for you in front of the school . 我 在 學校 前面 等 你 . +Tom did not talk to Mary . 汤姆 没 跟 玛丽 说话 . +Tom was wearing an old pair of shoes . 汤姆 穿着 一双 旧 鞋 . +As soon as he saw me , he ran away . 他 一看 見 我 , 就 跑 了 . +Have not we met before ? 我们 以前 没见 过 吗 ? +Everyone was drunk . 所有人 都 喝醉 了 . +I have asked him . 我 問 過 他 . +There is not a drop of water left . 沒有 剩下 一滴水 . +They moved here two years ago . 他們 兩 年前 搬到 了 這裡 . +A wooden building can easily catch fire . 木质 房屋 很 容易 着火 . +Tom is reading a book in his room . 汤姆 正在 自己 房间 里 看书 . +She is fond of animals . 她 很 喜欢 动物 . +Which of the composers do you like best ? 你 最 喜欢 哪位 作曲家 ? +Everyone is equal before the law . 法律 面前 人人平等 . +Would you let me know when Tom comes ? 你 能 让 我 知道 汤姆 什么 时候 来 吗 ? +I want a boat that will take me far away from here . 我 想要 一艘船 带 我 远离 这里 . +You do not have any more time . 你 沒有 時間 了 . +Tom is not an angel . 汤姆 不是 天使 . +My friend asked me if I was feeling all right . 我 朋友 问 我 是不是 觉得 还好 . +Tom and his friends played basketball all afternoon . 汤姆 和 朋友 们 打 了 整个 下午 篮球 . +Did you tell Tom about your problems ? 你 告訴 湯姆 你 的 問題 了 嗎 ? +How long will we have to wait ? 我們 要 等 多久 ? +That discovery was quite accidental . 那个 发现 纯属偶然 . +I think Tom really likes Mary . 我 認為 湯姆真 喜歡 瑪麗 . +My mother made us cheese sandwiches for lunch . 媽媽 為 我們 做 了 乳酪 三明治 當 午餐 . +Do you know how to drive a car ? 您 会 开车 吗 ? +He has not written the letter yet . 他 還 沒寫 信 . +Someone is lying . 有人 說 謊 . +She could not look him in the face . 她 无法 看着 他 的 脸 . +I do not know why you do not like Tom . 我 不 知道 你 不 喜欢 汤姆 的 理由 . +Can you play the guitar ? 你 会 弹 吉他 吗 ? +We will be sure to look into it . 我们 将 一定 会 观察 它 . +When I first came back to Boston , I was really lonely . 当 我 第一次 回 波士顿 时 , 我 真是 孤独 . +He pretended to be a stupid man . 他 假裝 是 個 愚蠢 的 人 . +This is the office in which he works . 這 是 他 工作 的 辦 公室 . +She folded her handkerchief neatly . 她 整齊 地 把 她 的 手帕 折好 . +I do not have a car , but my sister does . 我 没有 车 , 但 我 姐妹 有 . +It makes no difference who I meet . 我 遇見 誰 都 無所謂 . +No way ! 不 可能 ! +Give Tom a chair . 給 湯姆 一把 椅子 . +Tom likes to play baseball . 湯姆 喜歡 打 棒球 . +He likes to travel . I do , too . 他 喜欢 旅行 . 我 也 是 . +I have seen it . 我 見 過 . +Please translate this sentence into Japanese . 請 把 這 句 話 翻譯 成 日文 . +Where is my umbrella ? 我 的 傘 在 哪 ? +We have to do a great deal of reading . 我们 要读 很多 书 . +Please open the door . 請 開門 . +It was just a joke . Lighten up ! 只是 个 玩笑 . 放松 点 ! +It is less humid today than it was yesterday . 今天 沒有 昨天 潮溼 . +It is our fault . 它 是 我們 的 錯誤 . +We are having a party next Saturday . 我們 下個 星期六 將 舉行 派 對 . +Tom repaired his bicycle . 湯姆 修好 了 他 的 自行 車 . +Do not you feel cold ? 你 不 冷 吗 ? +Tom thanked everyone for waiting . 汤姆 感谢 每个 人 的 等待 . +He used to live here . 他 以前 住 在 这儿 . +The party was a success . 晚会 很 成功 . +I just do not like it . 我 只是 不 喜欢 它 . +The game will probably be canceled . 這場 比賽 可能 將 被 取消 . +You could have done it . 你 本來 可以 做 的 . +There used to be an old temple here . 这里 曾 是 座 旧 庙 . +That program is now being broadcast . 那個 節目 現在 正在 播出 . +Please keep this a secret . 请 保密 . +It would have been better if you 'd stayed with Tom . 如果 你 和 Tom 呆 在 一起 , 结果 会 更好 +Tom has been lying all along . 湯姆 一直 在 說謊 . +She wrote a book about birds . 她 寫 了 一本 關於鳥 類 的 書 . +I want a dog . 我 想要 一 隻 狗 . +I will see you next Wednesday . 我 下 星期三 见 你 . +This bicycle belongs to me . 这辆 自行车 属于 我 . +I sometimes dream of my mother . 有時 我 夢 見 我 的 母親 . +Tom is house has three bedrooms . Tom 的 房子 有 三個 房間 . +I just ate sushi and drank beer . 我 剛 才 吃 了 壽司 喝 了 啤酒 . +Why do not we order pizza ? 为什么 不订 些 批萨 呢 ? +You are in big trouble . 你们 有大 麻烦 了 . +Do not put the cart before the horse . 不要 把 本末倒置 . +Where are the elevators ? 電梯 在 哪裡 ? +I like you very much . 我 非常 喜歡 你 . +They became friends in elementary school . 他們 在 小學 時 就是 朋友 了 . +Tom works long hours . 汤姆 的 工作 时间 很 长 . +Tom decided to become a monk . 汤姆 ( Tom ) 决定 出家 为 僧 . +I wonder if I hurt Tom is feelings . 我 不 知道 我 是不是 伤害 了 汤姆 的 感情 . +My boss is keeping me pretty busy . 我 的 老板 总 让 我 很 忙活 . +None of those books are useful . 這些 書 裡 沒有 一本 是 有用 的 . +Do you need to work on Sunday ? 你 週日 需要 去 工作 嗎 ? +The boy has come home . 男孩 到 家 了 . +It can be used as a knife . 它 可以 被 當成 一把 刀 來 用 . +I am still your friend . 我 还是 你 的 朋友 . +We went for a walk in the forest . 我们 去 了 林中 散步 . +Plastics have taken the place of many conventional materials . 塑料 代替 了 许多 传统 的 原料 . +She got good grades in English . 她 的 英文 成績 很 好 . +He caught a boy stealing his watch . 他 抓到 了 一個 男孩 正在 偷 他 的 錶 . +The assistant took the money . 助手 拿 了 钱 . +I got up at six @-@ thirty this morning . 我 今天 早上 六點半 起床 . +It is very special . 它 很 特別 . +They say that he is very rich . 據 說 他 很 富有 . +China is an emerging market . 中国 是 一个 新兴 市场 . +It will not take so long . 它 不 會 花 很 長 的 時間 . +That was one of the best times of my life . 那 是 我 一生 中 最 美好 的 时光 之一 . +My sister washes her hair every morning . 我 妹妹 每天 早上 洗 頭 髮 . +I was asked to umpire the game . 我 被 要求 當 這場 比賽 的 裁判 . +What is your occupation ? 您 的 職業 是 什麼 ? +I know I heard something . 我 知道 我 听见 了 什么 . +She made tea for me . 她 给 我 泡 了 茶 . +I had a hard day . 我 过 了 难挨 的 一天 . +Are both Tom and Mary Canadians ? 湯姆 和 瑪麗 都 是 加拿大人 嗎 ? +I am sorry to have disturbed you . 對 不起 打擾 你 了 . +Tom is already here , but Mary has not gotten here yet . 汤姆 已经 在 这里 了 , 但 玛丽 还 没到 . +I can not figure out what he means . 我 不 懂 他 的 意思 . +I am going to take the 10 : 30 train . 我 要 搭 10 : 30 的 火車 . +As is evident from the data , smoking is not decreasing among the young . 数据 表明 年轻人 抽烟 的 现象 没有 减少 . +He appeared on TV last night . 他 昨晚 上 电视 了 . +They are eating their apples . 他們 在 吃 他們 的 蘋果 . +Do not you like my yellow scarf ? 你 不 喜歡 我 的 黃圍 巾 嗎 ? +He has been to France three times . 他 訪 問 過 法國 三次 . +He managed to get there in time . 他 設法 及時 到 達 那裡 了 . +This is going to be very expensive . 这 要 花 很多 钱 . +I want a book . 我 想要 本书 . +You should get your hair cut . 你 该 理发 了 . +When he feels fine , he goes for a walk . 当 他 感到 舒服 时 , 他 去 散步 . +He is better than anyone else . 他 比 任何人 都 好 . +It is gotten better . 它 會 好轉 的 . +What did you want to do ? 你 以前 想 做 什么 ? +Would you like something to drink ? 你 想要 什么 喝 的 吗 ? +She has a lot of work to do . 她 有 很多 事 要 做 . +May I use your pencil ? 我 可以 用 你 的 鉛 筆 嗎 ? +I gave Tom three cookies . 我 给 了 汤姆 三块 饼干 . +She gave me some practical advice . 她 給 了 我 一些 實用 的 建議 . +Compared to yours , my car is small . 和 你 的 车比 起来 , 我 的 车 很小 . +The news of his death spread . 他 去世 的 消息 傳 開來 了 . +My car is not red . It is blue . 我 的 汽車 不是 紅色 的 , 而是 藍色 的 . +The committee meets twice a month . 委员会 一个月 召开 两次 . +Tom cut himself with his knife yesterday . 汤姆 昨天 用 刀切 到 自己 了 . +You know that that is your duty . 你 知道 那 是 你 的 责任 . +Tom did not give me back my money . 湯姆 沒有 把 錢 還 給 我 . +Can anyone drive ? 有人 会 开车 吗 ? +He grew up to be a doctor . 他 長 大 後 成為 了 一名 醫生 . +He returned very late at night . 他 晚上 回來 得 很 晚 . +There is no hope of his recovery . 他 沒有 希望 痊癒 了 . +The car hit a wall . 那辆车 撞 到 墙 了 . +I bought this watch at the store . 我 在 這家 店 買 了 這 支 手 錶 . +There is an old movie theater in town . 城裡 有 一家 古老 的 電 影院 . +Why do not you go home ? 你 为什么 不 回家 呢 ? +I like flowers . 我 喜歡 花 . +It is nice to have friends . 有 朋友 真好 . +I am glad you could come to the party . 我 很 高兴 你 能 来 参加 派对 . +Tom told Mary his age . 湯姆 告訴 瑪麗 他 的 年齡 . +I really enjoyed your company . 我 真的 很 喜歡 你 的 陪伴 . +I admire your courage . 我 佩服 你 的 勇氣 . +The picture is nice . 这 画 不错 . +I could not prevent Tom from eating all the cookies . 我 阻止不了 汤姆 把 饼干 全 吃 了 . +There were three survivors . 有 三个 幸存者 . +Express your idea clearly . 把 你 的 想法 表達 清楚 . +Let is take the 4 : 10 train . 我们 去 坐 四点 十分 的 火车 吧 . +My friend invited me to go out to dinner . 我 的 朋友 邀請 我 去 吃 晚餐 . +Do you have fresh strawberries ? 您 有 新鮮 草莓 嗎 ? +He may come and see us tonight . 他 今天 晚上 可能 來看 我們 . +None of my classmates live near here . 我 没有 一个 同学 住 在 这儿 附近 . +There are some strange animals in the zoo . 动物园 里 有 很多 奇怪 的 动物 . +You understand , do not you ? 你 明白 , 不是 嗎 ? +Mastering a foreign language calls for patience . 精通 一種 外語 需要 耐心 . +I have to lose weight . 我 必须 要 减肥 了 . +I want to leave this difficult job to her . 我 想 让 她 干 这项 艰难 的 工作 . +I have a pair of red shoes . 我 有 一双 红鞋子 . +A whale is a mammal . 鲸鱼 是 哺乳动物 . +He spent his sixtieth birthday in the hospital . 他 在 医院 里 过 了 他 的 十六岁 生日 . +What do not you want us to see ? 你 不想 让 我们 看见 什么 ? +The house is not occupied now . 房子 现在 没 被 占住 . +Stop complaining . 别 再 埋怨 了 . +I am your father . 我 是 你 爸爸 . +I can understand him perfectly . 我 十分 能 理解 他 . +It was extremely scary . 这 太 可怕 了 . +I sort of understand . 我 大概 懂 了 . +The quality of these products is the same . 这些 产品 的 品质 是 一样 的 . +Tom needs to get into shape . Tom 需要 让 身体 好 起来 . +I can not go , nor do I want to . 我 去 不了 , 也 不想 去 . +What does Tom suggest ? 汤姆 建议 了 什么 ? +Their trip was postponed because of the rain . 他们 的 旅行 因为 下雨 延期 了 . +We have absolutely nothing in common . 我们 完全 没有 共同点 . +Leave my camera alone . 別 碰 我 的 相機 . +Mary is the youngest of the three sisters . 玛丽 是 三 姐妹 中 的 老幺 . +He does not come here every day . 他 不是 每天 都 來 這 . +Control is everything . 控制 就是 一切 . +I sleep on my stomach . 我 趴着睡 觉 . +This little baby tore up a 10 dollar bill . 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Good luck . You will need it . 祝 你好 運 . 你 會 需要 它 . +When the cat is away , the mice will play . 山上 无 老虎 , 猴子 称 大王 . +Doing that is simply out of the question . 根本 不 可能 做 那件事 . +Tom told me he was coming back . 湯姆 告訴 我他 正在 回來 . +Do you want this T @-@ shirt ? 你 要 這件 T恤 嗎 ? +Tom is not used to walking barefooted . 汤姆 不 习惯 赤脚 漫步 . +Someday I will buy a cotton candy machine . 有 一天 我 买 了 一台 棉花 糖机 . +We often watch TV while we are eating breakfast . 我们 常在 吃 早饭 时 看电视 . +We take it for granted that he will succeed in his business . 我们 认为 他 的 生意 理所当然 会 获得成功 . +Several thousand people became victims of this disease . 数千 人 受 此 疾病 所害 . +English is a very important language in today is world . 英语 是 当今世界 上 一种 非常 重要 的 语言 . +I caused him a lot of trouble . 我 給 他 帶來 了 很多 麻煩 . +I have trouble breathing . 我 呼吸困难 . +I want to believe in Tom . 我 要 相信 湯姆 . +These flowers grow in warm countries . 這些 花生 長 在 溫暖 的 國家 . +I want something hot to drink . 我 想 喝 點 熱 的 飲料 . +Cats hate to get wet . 猫 讨厌 被 弄湿 . +I will get you a bike for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +They are all innocent children . 他们 都 是 天 真的 孩子 . +I am in a hurry today . 我 今天 趕 時間 . +I will stay at home tomorrow . 明天 我会 呆 在 家里 . +You 'd better wait for the next bus . 你 最好 等 下 一班 公車 . +Your book is on the desk . 你 的 书 在 书桌上 . +It is not necessary for us to attend the meeting . 我們 沒有 必要 參加 會議 . +I work even on Sunday . 我 甚至 在 週日 工作 . +I feel relieved . 我 感觉 轻松 了 . +That is not fair . 那 是 不 公平 的 . +There was a castle here many years ago . 许多年 前 这里 有 一座 城堡 . +If you are tired , go to bed . 你 若 累 了 , 就 去 睡 個 覺 . +They want more . 他們 想要 更多 . +You must start at once . 你 必须 马上 开始 . +You must pay attention to him . 你 必须 注意 他 . +It was getting dark . 天要 黑 了 . +I do not understand . 不 明白 . +He is a member of the baseball club . 他 是 這 棒球 俱樂部 的 成員 . +What are we having for dinner tonight ? 今天 晚饭 吃 什么 . +Did you see him go out ? 你 看到 他 出去 了 嗎 ? +Tom complains all the time . 汤姆 老 是 发牢骚 . +Do you know a good restaurant ? 你 知道 一个 好 飯 店 嗎 ? +English is taught in most countries . 英語 在 大部份 的 國家 被 教授 . +I meet him at the club . 我 在 俱樂部 見到 他 . +Days are getting longer . 白天 越來越 長 了 . +I will ask Tom to wait . 我 會 請 Tom 等 . +Do you know how to speak English ? 你 知道 怎麼 說 英語 嗎 ? +I bought some clothes . 我 買 衣服 了 . +Two people can enter with this ticket . 兩個 人 可以 用 這 張 票入場 . +I prefer cats to dogs . 比起 狗 , 我 更 喜欢 猫 . +Do you drink beer ? 你 喝啤酒 吗 ? +I need your cooperation . 我 需要 你们 的 合作 . +He is not a good driver . 他 不 擅长 开车 . +Who was in charge of today is party ? 誰 負責 今天 的 派 對 ? +To tell the truth , I do not like him . 老实 说 , 我 不 喜欢 他 . +I will sue you . 我 要 告 你 . +It is too dark for me to read . 太暗 了 我 無法 讀 . +How old is your oldest son ? 你 的 長子 幾歲 ? +How old are your children ? 你 的 孩子 多 大 了 ? +May I see your passport ? 我 可以 看看 你 的 護照 嗎 ? +She was married to a rich man . 她 嫁給 了 一個 有 錢 的 男人 . +Soccer is my favorite sport . 足球 是 我 最 喜欢 的 运动 . +Are you having problems ? 你 有 问题 吗 ? +Be sure to pick up some milk . 務 必要 買 一些 牛奶 . +Do not bother me . 别 来 烦 我 . +Tom is taking a shower . Tom 在 洗澡 . +I see a cat chasing a dog . 我 看见 一只 猫 追 着 一只 狗 跑 . +Is there an app for that ? 有 它 的 应用 吗 ? +It is warmer today than yesterday . 今天 比 昨天 暖和 . +They went to the station by car . 他們 開車 去 車站 . +Where do you want to go tomorrow ? 你 明天 想 去 那里 ? +I see you found your bag . 我 见 你 找到 了 你 的 包 . +Tom gets up at six every morning . 湯姆 每天 早上 六點 起床 . +My hobby is collecting old toys . 我 的 嗜好 是 收集 舊 玩具 . +Say what ? 啥 ? +It is been a long time . 已經 很 長 一段 時間 了 . +Thank you for agreeing to meet with us . 谢谢 你 答应 来 见 我 . +May I trouble you to shut the window ? 可以 麻烦 你 把 窗 关 了 吗 ? +I wish Tom could have been there . 我 希望 汤姆 能 在 那里 . +This room is air @-@ conditioned . 這個 房間 有空 調 . +I am going to study French . 我 要 学法语 . +I met your girlfriend . 我 見 過 你 的 女朋友 . +His mother came to pick him up . 他 的 母親 來接 他 了 . +Though wounded , they continued to fight . 尽管 受了伤 , 他们 还是 继续 战斗 . +Is there anything else you want me to do ? 你 还有 什么 事情 需要 我 去 做 的 吗 ? +My aunt made me a new skirt . 我 舅母 做 了 一條 新 裙子 給 我 . +How did Tom know ? 湯姆 怎麼 知道 ? +He became an orphan when he was ten . 十岁时 他 就 成 了 孤儿 . +Please sit . 请用 座 . +We enjoyed ourselves at the picnic . 我們 在 野餐 玩 得 很 開心 . +I do not want to go to church today . 今天 我 不想 去 教堂 . +She went upstairs to her bedroom . 她 上 樓 到 她 的 臥室 . +They were rescued by helicopter . 他们 被 直升机 解救 . +I am glad to make your acquaintance . 我 很 高興 能夠 認識 您 . +I am short of cash at the moment . 此刻 我 缺少 現金 . +When we are children , everything around us looks so big . 我们 小时候 , 所有 的 一切 对 我们 来说 都 显得 那么 大 . . . +Come as soon as possible . 尽早 来 . +It is impossible to get there by noon . 中午 到 達 那裡 是 不 可能 的 . +Tom is passport has expired . 湯姆 的 護照 過期 了 . +Let is just enjoy this peace and quiet . 让 我们 享受 这 平静 和 安宁 . +Put on your shoes . Let is go out for dinner . 穿 上 你 的 鞋 , 我们 出去 吃晚饭 . +My brother took me to the museum . 我 哥哥 帶 我 去 博物 館 . +Because he is sick , he can not come . 因為 他 生病 了 , 所以 他 不能 來 . +Tom tried to control his emotions . 汤姆 试 着 控制 他 的 情绪 . +I wish I could buy that guitar . 但 願 我 可以 買 那 把 吉他 . +I hear you are good at cooking . 我 聽 說 你 擅長 烹飪 . +I am always busy . 我 总是 有事 . +I am used to working all night . 我 習慣 整夜 工作 . +I rode a horse for the first time yesterday . 昨天 我 第一次 骑 了 马 . +They fought for the sake of their country . 他们 为 祖国 而 战斗 . +I was nervous , too . 我 也 紧张 . +Who decided that ? 誰 決定 了 那件事 ? +Boil some water . 烧 一点 水 . +He bought himself a dog . 他 給 自己 買了一 隻 狗 . +Tom said he needed money . 湯姆 說 他 需要 錢 . +She is on a diet . 她 在 节食 中 . +I am not too smart . 我 不 太 聰明 . +Keep reading . 继续 看 . +He left his glasses at our place . 他 把 眼镜 落 在 我们 这里 了 . +I wish you had told me that . 要是 你 告訴 過 我 就 好 了 . +He is telling a lie . 他 說 謊 . +He got a broken jaw and lost some teeth . 他 磕碎 了 下巴 , 掉 了 几颗 牙 . +That house is big . 那棟 房子 很大 . +Tom is a little worried . 湯姆 有 點 擔心 . +A few minutes later , the telephone rang . 几分钟 后 , 电话响 了 . +Tom is always late . 湯姆總 是 遲 到 . +Would you like me to see you home ? 你 愿意 让 我 送 你 回家 吗 ? +I am serious . 我 是 認 真的 . +See you tomorrow at the library . 明天 图书馆 见 . +I do not have the slightest idea . 我 沒 有 絲毫 的 想法 . +Tom is not a hero . 湯姆 不是 英雄 . +Tom can not stay . 汤姆 不能 留下 . +Tom is working in Boston . 湯姆 在 波士 頓 工作 . +The pharmacy is near the hospital . 藥局 在 醫院 附近 . +A wise man profits from his mistakes . 聰 明人 會 從 自己 的 錯誤 中 受益 . +This is a very informative article . 这 是 篇 信息量 很大 的 文章 . +Excuse me , let me point out three mistakes in the above article . 不好意思 , 讓 我 指出 先前 文章 的 三個 錯誤 . +I caught him by the arm before he could fall . 在 他 倒下 前 我 抓住 了 他 的 手臂 . +Just put those packages anywhere . 只要 把 那些 包包 放在 任何 地方 都行 . +Tom is parents were both teachers . 湯姆 的 父母 都 是 教師 . +He often eats breakfast there . 他 常常 在 那裡 吃 早餐 . +The fuel gauge is broken . 燃油 表坏 了 . +She is quiet . 她 很 安静 . +Beauty is in the eye of the beholder . 情人 眼裡 出 西施 . +The buildings shook in the earthquake . 建筑物 在 地震 中 摇晃 . +This law is applicable to all cases . 此法 適用 於 所有 情況 . +It is a really good school . 它 真是 個 好 学校 . +I enjoyed driving on the new highway . 我 很 喜歡 在 新 的 高速公路 上 開車 . +How long does it take to get to the station ? 去 火车站 要 多久 ? +He asked me to help him . 他 要求 我 幫助 他 . +Do you have a dictionary ? 你 有 字典 嗎 ? +We can not sit idly by . 我們 不能 光 坐著 . +The value of the yen has soared . 日元 的 價值 大幅 上升 . +I have deleted the app . 我 删除 了 这个 应用 . +She is going to have a baby . 她 將 生 孩子 . +He bought his daughter a new dress . 他 買 了 新 衣服 給 他 的 女兒 . +He laid on his back . 他 仰 躺 . +It is a beautiful day , is not it ? 今天 的 天氣 真好 , 不是 嗎 ? +How tall are you ? 你 多 高 ? +Can I have a bite ? 我 可以 吃 一口 嗎 ? +What is your date of birth ? 你 的 生日 是 几号 ? +The plane is about to take off . 飞机 快要 起飞 了 . +Guess what he told me . 猜猜看 他 告訴 了 我什麼 . +I am on Tom is side . 我 站 在 湯姆 一邊 . +There is nothing good on television now . 現在 電視 上 沒有 甚麼 好看 的 . +It was too difficult for me . 它 對 我 來說 太 困難 了 . +Dogs bark . 狗 会 叫 . +Tom is the one I saw . 我 看见 的 是 汤姆 . +All at once , I heard a cry . 突然 , 我 听到 了 一声 喊叫 . +I do not think that he is honest . 我 不 觉得 他 很 诚实 . +Can you weigh this , please ? 請 你 稱 一下 這個 的 重量 好 嗎 ? +He is absent from school today . 他 今天 沒上學 . +I am studying computer science . 我 在 学习 计算机科学 . +Open the bottle . 把 瓶子 打开 . +We were not making fun of you . 我們 没有 笑 話 你 . +Here is your pudding . 这 是 你 的 布丁 . +I would like to get some sleep . 我 想 睡 点 觉 . +He is a little taller than you are . 他 比 你 高一 點 點 . +He no longer lives here . 他 不再 住 在 這裡 了 . +I had my brother repair my bicycle . 我 让 我 哥 修理 我 的 自行车 . +Tom has always been very nice to me . 汤姆 对 我 一直 很 好 . +Why do you want to kill me ? 你們 為 什麼 想 殺 我 ? +Does it taste good ? 好吃 嗎 ? +It became dark before I knew it . 我 不 知道 天色 變暗 了 . +You look happy today . 你 今天 看 起來 很 高興 . +What awful weather ! 多么 糟糕 的 天气 啊 ! +I have not finished my supper yet . 我 還 沒 吃 完 晚 飯 . +We are going downtown . 我们 正在 去 市里 . +No , I did not go . 不 , 我 沒 去 . +Who is that person ? 那人 谁 啊 ? +Tom added broccoli to the stew . 汤姆 往 炖菜 里加 了 西兰花 . +I always thought that Tom was a bit different . 我 以前 总 认为 汤姆 是 有 一些 与众不同 的 . +Tell her that I am cooking dinner . 告诉 她 我 在 做 晚饭 . +She sometimes gets depressed . 她 偶爾 有 憂鬱 的 心情 . +I remember last summer is adventure . 我 记得 去年 夏天 的 历险 . +Do you play a musical instrument ? 你 演奏 樂器 嗎 ? +I came to Japan two years ago . 我 兩 年前 來 日本 . +My father bought a new car . 我 的 父親 買 了 一輛 新車 . +Mt . Asama is now dormant . 浅间 山 现在 是 寂静 的 . +Tom is in the house . 湯姆 在 這棟 房子 裡 . +I did not know who was going to meet me at the airport . 我 不 知道 谁 会 在 机场 见 我 . +It is no use asking him again . 再 问 他 也 没用 . +She has a little bread . 她 有点儿 面包 . +I know what you did . 我 知道 你 做 了 什么 . +Put it on one bill , please . 請記 在 一張 帳單 上 . +She lives in a two @-@ story house . 她 住 在 一棟 兩層 樓 的 房子 . +You did not come to school yesterday , did you ? 你 昨天 沒來 學校 , 是 嗎 ? +Six divided by two is three . 六 除以 二 得 三 . +I feel bad enough already . 我 已经 感觉 够 坏 了 . +Her mother passed away last year . 她 的 母親 去年 去世 了 . +I was tired , so I did not go . 我 累 了 , 所以 我 沒 去 . +Leave the room as it is . 保留 原狀 地 離開 房間 . +It is still early . 還 早 呢 . +" I feel like playing cards . " " So do I. " “ 我 想 打牌 . ” “ 我 也 是 . ” +He has never played golf . 他 从没 打 过 高尔夫球 . +He can not seem to understand that poem . 他 似乎 无法 理解 那 首诗 . +Our cow does not give us any milk . 我們 的 乳牛 沒有 給 我們 任何 牛奶 . +It can be done in a day . 它 可以 在 一天 之內 完成 . +I can not answer you now . 我 现在 不能 回答 你 . +There is little chance of his winning . 他 贏 的 機會 極 小 . +Wine made here is very famous . 這 裡 製 造 的 葡萄酒 非常 有名 . +It is just your imagination . 那 只是 你 的 想象 . +I met him on my way home . 我 在 回家 的 路上 遇到 了 他 . +You should follow the doctor is advice . 你 應該 遵照 醫生 的 忠告 . +He got up at five as usual . 他 像 往常 一樣 五點鐘 起床 . +I owe a lot of money . 我 欠 了 很多 钱 . +Show me another example . 再 给 我 举 个 例子 . +He came home late in the evening . 他 晚上 很 晚 回家 . +All my homework is done . 我 做 完 了 所有 的 回家 作業 . +It is snowing today . 今天 下雪 . +I want to visit South Korea . 我 想 访问 韩国 . +To tell the truth , I felt lonely . 說實話 , 我 感到 孤獨 . +We are old friends . 我们 是 老朋友 了 . +I know it is difficult to believe . 我 知道 , 要 相信 这件 事 很 难 . +Dozens of young people attended the demonstration . 几十个 年轻人 参加 了 示威游行 . +What are your plans for tonight ? 你 今晚 有 什么 打算 ? +I would like to live in the suburbs of Kobe . 我 喜歡 住 在 科比 的 郊區 . +Give me three pieces of salmon . 給 我 三片 鮭魚 肉 . +I majored in American literature at college . 我 在 大學 主修 美國 文學 . +Pull up your stockings . 把 你 的 絲襪 拉上去 . +We are not in Boston . 我們 不 在 波士 頓 . +Tom seems to be prepared . 湯姆 看來 準備 好 了 . +I do not know who made the cake . 我 不 知道 這個 蛋糕 是 誰 做 的 . +I took him to the most expensive restaurant on campus . 我 把 他 带到 校区 里 最贵 的 餐馆 去 了 . +Can you turn the TV down ? 您 能 把 电视 开 小声点 吗 ? +Tom will probably never be late again . 湯姆 可能 再也 不遲 到 了 . +Fortunately , no passengers were injured . 万幸 , 没 乘客 受伤 . +Someone is obviously telling a lie . 顯然 有人 在 撒謊 . +Can I use your pencil ? 我 可以 用 你 的 鉛 筆 嗎 ? +He often drives his father is car . 他 經常 駕駛 他 的 父親 的 車 . +When the cat is away , the mice will play . 上司 不 在 , 部下 就 輕 鬆 自 在 . +Your suggestion seems reasonable . 你 的 建議 似乎 是 合理 的 . +I am very concerned about his health . 我 很 关心 他 的 健康 . +I had a very good time today . 我 今天 玩 得 很 開心 . +I do not want to fail my exams . 我 不想 不 通过 考试 . +You really are hopeless . 你 真的 是 一點 希望 也 沒有 . +Come in , it is open . 进来 , 门 开 着 . +He really likes music a lot . 他 真的 很 热爱 音乐 . +I suppose you are hungry . 我 猜想 你 饿 了 . +He had plenty of fight left in him . 他 的 胸中 还有 足够 的 斗志 . +I recorded our conversation . 我 录下 了 我们 的 谈话 . +How about going out for dinner ? 出去 吃 晚餐 如何 ? +What does your father do ? 你 父亲 是 做 什么 的 ? +I have already eaten lunch . 我 已經 吃 過 午餐 了 . +Tom did not deny that he did that . 汤姆 没有 否认 他 做 的 事情 . +Tom joined our company three years ago . 汤姆 三年 前进 了 我们 公司 . +Absence makes the heart grow fonder . 小別勝 新婚 , 久别 情 更深 . +I had a telephone call from her . 她 打 了 一通 電話 給 我 . +This is never going to end . 这 将 永远 继续下去 . +Have you heard about the accident ? 你 聽 說 過 這場 意外 嗎 ? +He replied that he did not know . 他 回答 说 他 不 知道 . +Where do I have to change trains ? 我 要 在 哪裡 換 火車 ? +She is good at bargaining the price down . 她 很 善于 砍价 . +The boy got in through the window . 這個 男孩 從 窗戶 進去 了 . +He said he did not enter the room , which was a lie . 他 说 他 没有 进 房间 , 那 是 骗人 的 . +I am so lonely . 我 好孤单 . +What is the width of this road ? 這 條路 的 寬度 是 多少 ? +Tom and Mary were alone . 汤姆 和玛丽 单独 在 一起 +John is two years older than I am . John 比 我 大 两岁 . +Do not try to intimidate me . 别 想 吓唬 我 . +I like these . 我 喜欢 这些 . +My uncle gave me a present . 我 叔叔 给 了 我 一份 礼物 . +I have confidence in you . 我 對 你 有 信心 . +When does the game begin ? 游戏 几点 开始 ? +The men are wearing short sleeves . 男人 們 穿著 短袖 上衣 . +I can not reach it . 我 搆 不到 它 . +Tom said he is glad Mary has finally graduated . 湯姆 說 他 很 高興 瑪麗 畢業 了 . +I will stay here till you get back . 我 會 待 在 這裡 直到 你 回來 . +She must have taken the wrong bus . 她 一定 是 搭錯 了 公車 . +Have you ever been robbed ? 你 被 抢劫 过 吗 ? +That guy drives me crazy . 那家伙 让 我 发疯 . +Tom left his sunglasses on the dashboard of my car . 汤姆 把 他 的 太阳镜 留在 我 的 车 的 仪表板 上 了 . +Please speak more loudly . 請 說 更 大聲 一點 . +Tom should have discussed that with you . 汤姆 应该 跟 你 讨论 过 那事 了 . +They are self @-@ sufficient . 他们 自给自足 . +I am on your side . 我 站 在 你 这边 . +I work in this building . 我 在 这栋 楼 里 工作 . +They are talking in the kitchen . 他們 正在 廚房 裡 說 話 . +You can say whatever you want to . 你 可以 說 你 想 說 的 話 . +I do not understand German at all . 我 一點 也 不 懂 德語 . +I left the door open . 我 讓 門 開著 . +Many schools are closed today because of the storm . 今天 许多 学校 因为 风暴 停课 . +I think I now have enough money to buy the car I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Father is out , but Mother is at home . 爸爸 出去 了 , 但 妈妈 在家 . +He told me to speak more slowly . 他 告訴 我 要 說 慢 一點 . +A considerable amount of time and effort have been spent already . 已經 花費 了 很多 的 時間 和 精力 . +Do you have a points card ? 您 有 会员卡 吗 ? +I did not want to come here . 我 不想 來 這裡 . +Tom wished he could understand French . 汤姆 希望 他 能 懂 法语 . +I have to wake Tom up . 我 得 叫醒 汤姆 . +She runs . 她 跑 . +Tom turned out to be a thief . 原来 Tom 是 贼 来 的 . +Sorry , I have got my hands full now . 對 不起 , 現在 我 手上 都 是 東西 了 . +He announced that he would come at once and investigate the matter . 他 宣布 他 將 立刻 來 調查 此事 . +Where did you get the idea ? 你 哪儿 来 的 主意 ? +Please help me clean the house . 請 幫 我 打掃 房子 . +I have to find a part @-@ time job . 我 必須 找 一份 兼職 工作 . +She cared for her father until his death . 她 照顾 她 的 父亲 直到 他 去世 . +Pardon me , but that is my racket . 抱歉 , 这 是 我 的 球拍 . +She has already left the office . 她 已經 離開 了 辦 公室 . +The wind is blowing from the east . 風 從 東方 吹來 . +Tom said he was not ready , but Mary said she was . 汤姆 说 他 没 准备 好 , 但 玛丽 说 她 准备 好 了 . +I have nothing to do with this matter . 我 跟 這件 事 無關 . +Tom almost always uses a credit card when he goes shopping . 汤姆 在 去 购物 的 时候 , 几乎 每次 都 会 用 信用卡 . +I am not quite well . 我 有 點 不 舒服 . +Do you have any plans for Saturday ? 你 週六 有 什麼 計劃 ? +How did you come by this money ? 用 這些 錢 你 怎麼 來 的 ? +Flying kites can be dangerous . 放 風箏 可以 是 危險 的 . +I went to bed at twelve last night . 我 昨晚 十二点 去 睡 的 . +I do not think we can wait any longer . 我 认为 我们 不能 再等 了 . +The bill passed by a small majority of 10 votes . 法案 以 10 票 微弱 多数 通过 . +Do you have any friends that are doctors ? 你 有 朋友 是 醫生 嗎 ? +It took me half an hour to work out this problem . 我 花 了 一個半 小 時 的 時間 解決 這個 問題 . +I want a piece of candy . 我 想要 一颗 糖 . +He did not speak unless spoken to . 除非 有人 跟 他 說 話 , 他 不 說 話 . +Why do not we get out of here ? 我们 为什么 不 离开 这里 ? +Do you want anything ? 你 想要 什麼 嗎 ? +I do not speak German . 我 不会 说 德语 . +There are many people in the park . 公园 里 有 很多 人 . +They did not listen . 他们 没 听 . +The weather is nice tonight . 今晚 天公 作 美 . +You are very smart . 你 很 聪明 . +It rained for a week . 雨 下 了 一周 . +The election was unanimous . 选举 一致 通过 了 . +He mistook me for my twin brother . 他 把 我 誤 認為 我 的 雙 胞胎 兄弟 . +I am sure that he is an honest man . 我 确定 他 是 个 老实人 . +I do not know his address . 我 不 知道 他 的 地址 . +I am thirty . 我 三十 歲 . +Uncle Tom is my mother is brother . 湯姆 叔叔 是 我 媽媽 的 兄弟 . +He is to come to my house tonight . 他 今晚 会 来 我家 . +She told me she knew my brother . 她 告訴 我 她 認識 我 的 哥哥 . +Tom is serious now . 汤姆 现在 是 认真 的 . +I like tennis and golf . 我 喜歡 打 網球 和 高爾夫 球 . +Who is that old man ? 那個 老 男人 是 誰 ? +You have cut my hair too short . 你 把 我 的 头发 剪 得 太短 了 . +Tom is kind to everybody . 汤姆 对 每个 人 都 好 . +He has a lot of foreign stamps . 他 有 很多 外國 郵票 . +I am poor at swimming . 我 不 擅長 游泳 . +He has been sick since last night . 他 從 昨晚 開始 就 生病 了 . +The teacher told us to be quiet . 老師 告訴 我們 要 安靜 . +I got this bicycle for free . 我 免費 得到 了 這輛 自行 車 . +I have been wanting to see you . 我 一直 想見 你 . +The police are investigating the cause of the accident . 警察 调查 事故 的 原因 . +That was a disaster . 那 是 災 難 . +Both of my brothers are married . 我 的 兩個 兄弟 都 結婚 了 . +Turn on the radio , please . 请 将 收音机 打开 . +I have a feeling he is right . 我 覺得 他 是 對 的 . +Tom is a friend of mine . 湯姆 是 我 朋友 中 的 其中 一位 . +She does not have any friends or relatives to take care of her . 她 没有 任何 亲戚朋友 照顾 她 . +Many improvements have been made since this century began . 本世纪初 以来 , 产生 了 很多 进步 . +I was told that I do not need to do that . 有人 告訴 我 我 不用 做 . +There was no water in the river . 河裡 沒 有 水 了 . +I am in Tokyo today . 我 今天 在 東京 . +The best way to lose weight is to eat less and exercise more . 最好 的 減肥 方法 就是 少 吃 多 運動 . +Let us know whether you can come . 讓 我們 知道 你 是否 能來 . +We made an appeal for support . 我們 提出 了 請求 支持 的 呼籲 . +I know my limitations . 我 知道 我 的 限度 . +Prices have dropped recently . 最近 物價 已經 下降 . +I thought Tom had a soccer game tonight . 我 以为 汤姆 今晚 有 足球比赛 . +Our school is further away than the station . 去 我们 学校 比 去 火车站 要 远 . +Thank you ever so much . 非常感谢 ! +Could I have the check ? 把 帳單 給 我 好 嗎 ? +You were supposed to tell Tom that . 你 该 告诉 汤姆 . +I did not go , but stayed at home . 我 沒 去 , 但 我 留在 家裡 . +I am sorry I was not able to see you when you came by today . 我 很 抱歉 今天 您 来 的 时候 没能 见 您 . +Cutting a cake into equal pieces is rather difficult . 把 蛋糕 等 分切 開 更 難 . +She did not like the horse at first . 起初 她 不 喜歡 馬 . +I rented a house with a garage . 我 租 了 一間 有 車庫 的 房子 . +My father walks . 我 爸爸 走路 . +My shoes are bigger than yours . 我 的 鞋 比 你 的 大 . +I have been waiting for you since two o 'clock . 我 從 兩點 開始 一直 等 你 . +He will not go on to graduate school . 他 不 會 繼續 去 上 研究所 . +In case of emergency , call 119 . 在 緊 急情 況下 , 可撥 打 119. +If you can not come , you should let me know ahead of time . 如果 你 不能 來 , 你 該 讓 我 提前 知道 . +I would like to see your sister . 我 想见 你 的 姐姐 . +Tom certainly is an eloquent speaker . 汤姆 的确 是 个 很 会 讲话 的 人 . +She did not think so . 她 不 這麼 想 . +May I run with you ? 我 可以 跟 你 一起 跑 嗎 ? +If you are not going to the concert , then neither am I. 如果 你 不 去 音樂會 , 我 也 不 去 . +I am going to stay here for a couple of days . 我 將 要 在 這裡 待 幾天 . +Do not do anything like that again . 不要 再 做 那樣 的 事情 了 . +Today our artificial satellites are revolving around the earth . 今天 我们 的 人造卫星 正在 环绕 地球 运转 . +It is too late . 太晚 了 . +Where there is a will , there is a way . 有志者事竟成 . +My father is in the garden . 我 爸爸 在 花园里 . +She gave her father a tie . 她 给 了 她 父亲 一条 领带 . +Let is take a rest for a while . 我们 休息 一会儿 吧 . +He stole her watch . 他 偷 了 她 的 手表 . +You should keep your mouth shut . 你 應 該 閉 上 你 的 嘴 . +I will love you forever . 我 會 永遠 愛 你 . +Today I am feeling melancholic . 今天 我 很 憂鬱 . +Where is the nearest subway station ? 最近 的 地鐵 站 在 哪裡 ? +I am afraid I differ with you on this point . 恐怕 就 这点 上 , 我 和 你 持 不同 意见 . +I am a new student . 我 是 个 新生 . +I can not afford to buy that . 我 买不起 那个 . +You should not go . 你 不 應 該 去 . +This is their house . 这 是 他们 家 . +Tom will be there , will not he ? 汤姆 会 去 那里 , 不是 么 ? +She is about the same height as you . 她 大概 跟 你 一樣 高 . +She has a real knack for getting people to do what she wants . 她 真的 有 本事 让 别人 做 她 想 做 的 事 . +Why do you think Tom does not like it ? 你 為 甚麼 認為 湯姆 不 喜歡 它 ? +What are you crying for ? 你 為 什麼 哭 ? +There is an outside chance of winning . 贏 的 機會 微乎其微 . +Tom fell asleep in class . 汤姆 在 课堂 上 睡着 了 . +Tom deleted his Facebook account . Tom 刪 除了 他 的 Facebook 帳號 . +I have been here for a very long time . 我 在 這裡 很 長 時 間 了 . +Be nice . 和 气点 . +Everybody except Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I got on the wrong train . 我 上錯 了 火車 . +In doing anything , you must do your best . 做 任何 事 , 你 必须 要 做到 最好 . +Even expert drivers can make mistakes . 再 怎麼 經驗 老 到 的 司機 都 會 出錯 . +The teacher got quite well again . 老師 再次 恢 復 健康 了 . +Why did you use up all the money ? 为什么 你 花 了 所有 钱 ? +The bucket was full of water . 這個 桶 裝滿 了 水 . +She speaks English better than any of her classmates . 她 的 英語 說 得 比 班上 任何人 都 好 . +Tom is now living in Boston . 汤姆 现在 住 在 波士顿 . +I will deal with this problem as soon as I can . 我会 尽快 处理 这 问题 . +Can someone answer the telephone ? 有人 可以 接電話 嗎 ? +We should be safe here . 我们 在 这里 应该 是 安全 的 . +That is too easy . 那 太 简单 了 . +I have no homework today . 我 今天 沒 有功 課 . +I am busy cooking at the moment . 我 此刻 正忙 著 做 飯 . +He walks in the park every morning . 他 每天 早上 在 公園 裡 散步 . +That was not too bad . 那 不 太坏 . +I do not like being treated like this . 我 不 喜欢 以 这种 方式 被 对待 . +Who will take care of the dog while we are away ? 當 我們 離開 的 時候 , 誰 來 照顧 狗 ? +I gave them clothing and some food . 我 給 了 他們 衣服 和 一些 食物 . +I wish I could stop thinking about Tom . 希望 我 可以 不再 想 Tom . +Are you looking for work ? 你 在 找 工作 吗 ? +Sorry , can I borrow it for a minute ? 不好意思 , 可以 借過 一下 嗎 ? +Do you have a list of hotels ? 你 有 旅館 名錄 嗎 ? +My mother left me a message . 我 媽媽 留 了 口信 給 我 . +Can you walk ? 你們 能 走 嗎 ? +He is in a bad mood . 他 心情 不好 . +They did not come here , did they ? 他們 沒來 這裡 , 是 嗎 ? +People should get more involved . 人们 需要 更多 的 交流 . +Stay out of the rain . 別 被 雨淋 了 . +She is as tall as you . 她 跟 你 一樣 高 . +I am in a bad mood today . 我 今天 的 心情 不好 . +Could you check the tire pressure ? 你 能 檢查 一下 這個 輪胎 的 氣壓 嗎 ? +I know how old you are . 我 知道 你 多 大 了 . +Let is have dinner together . 一起 吃晚饭 吧 . +War may break out at any moment . 戰爭 隨時 可能 爆發 . +You can bank on that . 你 可以 相信 那個 . +I know you like sports . 我 知道 你 喜欢 体育运动 . +Please make a milkshake for me . 請 幫 我 做 個 奶昔 . +Count to thirty . 数 到 三十 . +Was I wrong ? 我 错 了 吗 ? +The contract is in the bag , so let is go out and celebrate . 合同 已经 到手 了 , 那 就 出去 庆祝 一下 吧 . +The meeting has almost ended . 会议 接近 了 尾声 . +I gave her her dictionary back . 我 把 她 的 字典 还给 了 她 . +I gave them one thousand yen each . 我 給 了 他們 每個 人 一千 日元 . +Tom is anxious to know the result . 汤姆 急 着想 知道 结果 . +The baby cried all night . 這 孩子 哭 了 一整夜 . +Tom definitely looks younger than Mary . 汤姆 看起来 的确 比 玛丽 年轻 . +I really do want that . 我 真的 很 想要 它 . +All men are equal under the law . 法律 之前 人人平等 . +We are going to discuss the problem tomorrow . 我們 明天 討論 這個 問題 . +I am still puzzled . 我 還 不 明白 . +She found employment as a typist . 她 找到 打字 員 的 工作 . +He is an excellent tennis player . 他 是 个 很棒 的 网球 选手 . +When was Tom fired ? 湯姆 什麼 時候 被 開除 的 ? +He was present at the meeting . 他 出席 了 会议 . +Tom took Friday off . 汤姆 星期五 闲着 . +Do you like English ? 你 喜歡 英語 嗎 ? +Wait until the light changes to green . 等到 燈 變為 綠色 . +There has been a good apple harvest this year . 今年 蘋果 的 收成 不錯 . +He was not able to attend the party . 他 無法 參加 這個 派 對 . +He asked if I liked Chinese food . 他 問 我 是否 喜歡 中國 菜 . +Can you think of something better ? 你 能 想到 更好 的 東西 嗎 ? +I helped my mother in the kitchen . 我 在 廚房 裡 幫 媽媽 . +Are you angry ? 你 生气 了 吗 ? +I ate a hasty lunch . 我 匆忙 的 吃 了 午餐 . +Tom bought a house for Mary . 汤姆 给 玛丽 买 了 个 房子 . +I saw her swim . 我 看見 她 游泳 . +I live in an apartment in the city . 我 住 在 城市 中 的 一間 公寓 裡 . +Tom sketched a picture of an elephant for Mary . 汤姆 给 玛丽 画 了 大象 的 素描 . +There are some cookies in the jar . 罐子 裡 有 一些 餅 乾 . +Where can I get a taxi ? 我 在 哪裡 可以 搭到 計程 車 ? +You have got a lot of willpower . 你 的 意志力 很 強 . +He made good use of the opportunity . 他 好好 地 利用 了 這個 機會 . +Has she ever fallen in love ? 她 曾经 坠入 过 爱河 吗 ? +More coffee , please . 請 再 給 我 一點 咖啡 . +The problem is not Tom . 問題 不是 湯姆 . +This town is quite different from what it was ten years ago . 這 鎮子 跟 十年 前 的 它 差別 很大 . +I am looking for a room for rent . 我 在 找 一間 出租 的 房間 . +I find politics very interesting . 我 對 政治 很感 興趣 . +Did you remember that you were supposed to buy candles ? 你 记得 自己 该 买 蜡烛 吗 ? +Do you really believe that is what happened ? 你 真的 相信 那 发生 了 吗 ? +Life is very hard . 人生 良苦 . +I would like to make a reservation . 我 要 預約 . +I am tired of eating fast food . 我 厌倦 吃快餐 了 . +I found something interesting in the town . 我 發現 了 鎮 上 一些 有趣 的 事 . +We could stay in Boston for a few more days if you like . 如果 你 愿意 的话 , 我们 可以 在 波士顿 多 待 几天 +They both want a child . 他倆 想要 一個 孩子 . +You like to talk about architecture , do not you ? 你 喜欢 讨论 建筑 , 不是 吗 ? +We do not live in Boston . 我们 不住 在 波士顿 . +Tom has a large jar of pennies . 湯姆 有 一大 罐 零 錢 . +They are talking . 他們 在 說 話 . +I can not hear you . 我 聽 不到 你 的 聲音 . +I will provide you all the necessary information . 我会 把 所有 有用 的 信息 提供 给 您 的 . +I will bring my sister to the party . 我 會 帶 我 妹妹 去 派 對 . +Did you receive my letter ? 你 收到 了 我 的 信 了 嗎 ? +Air is to us what water is to fish . 空气 对 人 来说 就是 水对鱼 的 意义 . +She beckoned me to come in . 她 招呼 我 进来 . +Hello , Tom . 你好 , 汤姆 . +This river is dangerous to swim in . 在 這條 河裡 游泳 很 危險 . +It is no use arguing with her . 和 她 争辩 是 没用 的 . +You 'd better stay here a little longer . 你 最好 在 這裡 待 久 一點 . +Tom does not know how to tie his shoes . 汤姆 不 知道 怎么 系 自己 的 鞋带 . +I cannot afford to pay so much . 我 付不起 這麼 多 錢 . +I would like to brush up my English . 我 想 复习 英语 . +I am planning to study tonight . 我 打算 今天 晚上 讀書 . +Sorry , I made a mistake . 对不起 , 我 错 了 . +Without your advice , I would have failed . 沒有 你們 的 意見 , 我 就 失敗 了 . +I appreciate your concern . 我 感謝 你 的 關心 . +Have you ever loved a man ? 你 曾經 愛 過 一個 男人 嗎 ? +She ran as fast as possible . 她 盡 可能 地 快 跑 . +That makes sense . 那 是 有 道理 的 . +Please show me the menu . 請 給 我 菜 單 . +This is the most beautiful sight that I have ever seen . 这 是 我 见 过 最美 的 景色 了 . +I wish Tom would just go away . 我 希望 汤姆 走开 . +Yours is over there . 你 的 在 那儿 呢 . +You are kidding ! 你 開 玩笑 吧 ! +How can that be possible ? 那 怎麼 可能 ? +I want to study French . 我 要 学法语 . +Tom has gained weight . 湯姆 變 胖 了 . +Water is liquid . When it freezes , it becomes solid . 水 是 液体 . 冻 起来 就 成 了 固体 . +I would not ask this of you if it were not important . 如果 不是 它 很 重要 , 我 不 會 問 你 . +Our teacher made us clean the room . 我們 老師 要 我們 打掃 這間 房間 . +She translated it word for word . 她 逐字 地 翻譯 它 . +He does not lie . 他 不 说谎 . +He makes it a rule to take a walk every morning . 他 给 自己 定下 每天 早上 散步 的 规矩 . +I met an old woman . 我 遇见 了 一位 老妇人 . +That is a strange question . 真是 奇怪 的 问题 . +Your answer is right . 您 的 答案 是 正確 的 . +My car is in the shop . 我 的 車 在 店 裡 修理 中 . +Kindness is the language which the deaf can hear and the blind can see . 善良 是 聾子 能 聽 盲人 能看 的 語言 . +She appears to have a headache . 她 看 起來 頭痛 的 樣子 . +I have never met her . 我 以前 从没 见 过 她 . +Tom is the head of the company in name only . His son makes all the important decisions . 汤姆 名义 上市公司 的 领导 . 他 儿子 做 所有 重大 决策 . +The good thing about this electronic dictionary is that it is easy to carry . 这 电子辞典 的 好处 就是 便于 携带 . +Ten prisoners broke out of jail . 十名 囚犯 逃獄 了 . +I do not want any excuses . 我 不想 听 解释 . +I will give you this camera . 我 會 給 你 這 台 相機 . +Who are we ? 我們 是 誰 ? +All of my friends got asked to dance except me . 除了 我 , 其他人 都 被 邀请 去 跳舞 了 . +I bought a kite to give to you . 我 買 了 一個 風箏 給 你 . +I was nine years old when I asked my mom if Santa Claus really existed . 我 九岁 的 时候 问 我 妈妈 圣诞老人 是否 真的 存在 . +We can not talk here . 我们 不能 在 这里 谈 . +This sofa can seat three people easily . 这 张 沙发 起码 可以 坐 三个 人 . +After I got married , my Japanese got better and I could understand more . 在 我 结婚 之后 , 我 的 日语 水平 提高 了 , 能 理解 更 多 日语 了 . +I bought a newspaper written in English . 我 买 了 份 英文 写 的 报纸 . +His speech moved us . 他 的 演说 打动 了 我们 . +I was kicked out of high school . 我 被 高中 退學 了 . +I think Mary is very attractive . 我 认为 玛丽 很 有 吸引力 . +I laughed . 我 笑 了 . +Your problem is similar to mine . 你 的 問題 和 我 的 相似 . +My father does not like soccer . 我 爸爸 不 喜欢 足球 . +I am really busy . 我 真的 好 忙 . +I am pregnant . 我 怀孕 了 . +The bride looked very beautiful . 新娘 看 起來 非常 漂亮 . +When does your new store open ? 你 的 新 商店 什么 时候 开张 ? +Tom is unbelievably stupid . 汤姆 傻 得 难以置信 . +He presented her with a doll . 他 送 她 一個 洋娃娃 . +This book is worth reading again . 这 本书 值得 再 看一遍 . +Why do you work here ? 你 為 什麼 在 這兒 工作 ? +They called off their engagement . 他們 解除 了婚 約 . +I need to find somewhere to practice dancing . 我 需要 找 個 地方 練舞 . +How is your new class ? 新 的 班级 怎么样 ? +Tom lost his car keys . 汤姆 丢 了 他 的 车 钥匙 . +It has nothing to do with you . 不關 你 的 事 . +They drive on the left in England . 在 英國 開車 要 靠左 行駛 . +He likes playing soccer . 他 喜歡 踢足球 . +His office is near the train station . 他 的 辦 公室 離車 站 很 近 . +Tom and Mary are both wearing brown hats . 汤姆 和玛丽 都 戴 着 褐色 的 帽子 . +You are lying , are not you ? 在 撒谎 吧 ? +When you are here , I feel safer . 你 在 這裡 的 時候 , 我 感到 更 安全 . +This is a picture of an airport . 這 是 一張 機場 的 照片 . +You deserve the prize . 你 應該 得到 這個 獎金 . +My wish is to become a teacher . 我 的 願望 是 成為 一個 老師 . +We agreed to share the housework . 我們 同意 分擔 家務 . +It can not be ! 这 不 可能 ! +His father does not play golf . 他 父親 不 打 高爾夫 球 . +Tom did not want to disappoint Mary . 汤姆 不想 让 玛丽 失望 . +He was the strongest candidate for the position . 他 是 那个 职位 最 有 希望 的 候选人 . +In recent years , science has made remarkable progress . 这 几年 , 科学 取得 了 显著 的 进步 . +Electricity is very useful . 电 很 有用 . +They ate sandwiches for lunch . 他们 午饭 吃 了 三明治 . +All at once , he spoke out . 他 突然 发言 了 . +I already apologized . 我 已经 道歉 了 . +How long do you plan on staying ? 你 准备 待 多久 ? +It was already very late . 天色已晚 . +Let me help you with your work . 讓 我 幫 你 做 你 的 工作 . +I am as tired as tired can be . 我 累得 不能 再累 了 . +Tom has traveled around the world . 汤姆 环游 了 世界 . +She is my sister . 她 是 我 的 姊妹 . +Even with all his wealth and fame , he is unhappy . 尽管 有 金钱 和 名誉 , 他 还是 不 幸福 . +Artificial leather can not compare with the real thing . 人造 皮革 是 比不上 真皮 的 . +Tom was a little drunk . 汤姆 有点 醉 . +Nobody has seen God . 沒 有人 看過 神 . +We also went to the temple . 我们 也 去 了 庙里 . +Tom tried to convince Mary to knit him a scarf . 湯姆 想 說 服 瑪麗 給 他 織 一條 圍巾 . +Get dressed . 穿 上 點 衣服 . +There are only three girls in the class . 這個 班 只有 三個 女生 . +Tom said he was sick . 湯姆 說 他 病 了 . +He likes watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +He explained the literal meaning of the sentences . 他 解释 了 句子 的 字面 意思 . +My scalp is very itchy . 我 的 頭皮 非常 癢 . +Tom does not really love Mary . 汤姆 不是 真的 爱 玛丽 . +I took my temperature every six hours . 我 每 六小时 量 一次 体温 . +I will still have a scar from that accident . 我 还 留 着 那 起 事故 的 伤疤 . +It is fun to speak in English . 说 英语 很 有趣 . +You 'd better take an umbrella with you today . 你 今天 最好 隨身 帶 把 傘 . +The cat got through the hedge . 貓 從 樹籬 穿 過去 . +I need a pencil . Can I use one of yours ? 我 需要 一支 铅笔 , 我 能 用 你 的 其中 一支 吗 ? +Tom wants to tell you something . 汤姆 想 告诉 你 一些 事情 . +Watch out for thieves around here . 在 這 附近 當 心 小偷 . +Is this your pencil ? 這 是 你 的 鉛 筆 嗎 ? +We have been watching you . 我们 在 看着 你 . +I have a bit of bad news . 我 有个 坏消息 . +Which road goes to city hall ? 哪 條路 通往 市政 廳 ? +I have rented a room not far from here . 我 租 了 一間 離 這裡 不遠 的 屋子 . +My father is hobby is growing roses . 我 父親 的 嗜好 是 種 玫瑰花 . +He is not stupid . 他 不是 傻子 . +She stopped to smoke a cigarette . 她 停下来 抽 了 根烟 . +There is not any solution . 无解 . +He is good at riding a horse . 他 擅長 騎馬 . +The children went out to play . 孩子 們 出去玩 了 . +I quit . 我 退出 . +What do you think of Japan is economy ? 您 怎樣 看 日本 的 經濟 呢 ? +I dove into the river . 我 跳进 了 河里 . +The chances are he is already heard the news . 他 有 可能 已經 得知 這 消息 . +If he is innocent , it follows that his wife is guilty . 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +You are going to wreck your eyesight if you play games all the time . 要是 你老 打游戏 的话 , 你 的 视力 会 下降 的 . +The phone rang while I was taking a shower . 我 在 洗澡 的 时候 , 电话响 了 . +I will call you up tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +It needs to be repaired . 它 需要 修理 . +You are the only one who can help us . 你 是 唯一 一个 能 帮助 我们 的 人 . +I do not have any money on me . 我 身上 沒有 錢 . +He teaches English to his friends . 他 對 他 的 朋友 教 英語 . +It is warm in here . 這裡 是 溫暖 的 . +I thought Tom would never shut up . 我 認為 湯姆 不 會 住口 . +He rushed out of the office . 他 急忙 出 了 办公室 . +I love movies . 我 愛 電影 . +You may choose any of them . 你 可以 選擇 他們 之中 的 任何 一個 . +Does he write letters in English ? 他 用 英文 寫信 嗎 ? +I was just about to leave . 我 就要 离开 了 . +I am leaving for Chicago next week . 我 下週 將 離 開去 芝加哥 . +Do you know whether she can speak English ? 你 知道 她 是否 會 講 英語 嗎 ? +I do not have the address now . 我 現在 沒有 地址 . +A good idea came to him . 他 想到 一个 好 主意 . +Butter and cheese are made from milk . 奶油 和 乳酪 是 由 牛奶 做成 的 . +I 'd rather be a bird than a fish . 我 寧願是一 隻 鳥 勝 過 一 條 魚 . +They told me it was your fault . 他们 告诉 我 这 是 你 的 错 . +Do you go to church ? 你 去 教堂 嗎 ? +I enjoyed talking with him at the party . 在 派对 中 我 和 他 聊得 很 开心 . +She married a musician . 她 和 一位 音乐家 结了婚 . +Our country is climate is temperate . 我國 是 溫帶 氣候 . +Tom will follow my advice . 汤姆 会 听从 我 的 建议 . +I am sick and tired of hamburgers . 漢堡 我 都 吃 膩 了 . +I am not interested . 我 不感兴趣 . +Tom advised me not to buy a secondhand car . 汤姆 建议 我 不要 买 二手车 . +What a pity you can not dance ! 可惜 你 不 會 跳舞 ! +Do you still need tea ? 你 还 需要 茶 吗 ? +Take care not to catch a cold . 小心 不要 着凉 . +He returned from abroad yesterday . 他 昨天 從 國外 回來 . +Tangerines contain a lot of vitamin C. 柳丁 含有 大量 的 維生素 C . +Are you dating anyone ? 你 跟 人 约会 吗 ? +Tom passed away on October 20 , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +My sister made me a beautiful doll . 我 姊姊 做 了 一個 漂亮 的 娃娃 給 我 . +Would you lend me your dictionary ? 你 可以 借 我 你 的 字典 嗎 ? +They made us work all day . 他們 讓 我們 工作 了 一整天 . +Ueno is the station after next . 下 下 一站 是 上野 站 . +She said to herself , " I am very happy . " 她 对 自己 说 : “ 我 很 幸福 ” . +Mary was wearing a navy blue skirt . 玛丽 穿着 深蓝色 的 裙子 . +You should have never interfered . 你 从来不 该 干涉 . +You are the best man for the job . 你 是 做 這份 工作 最好 的 人 選 . +I do not know any blind men . 我 不 认识 任何 一个 盲人 . +The accident took place at that corner . 事故 發生 在 轉角 . +We do not have another choice . 我们 没有 别的 选择 . +He only had 100 dollars . 他 只有 100 美元 . +Some babies learn to swim even before they are one year old . 有些 宝宝 甚至 在 一岁 之前 就 学习 游泳 了 . +Where is the accent on the word ' Australia ? ' “ Australia ” 这个 词 的 重音 要 放在 哪 ? +I decided to buy a car . 我 決定 買 一輛 車 . +Do you know which book sells well now ? 你 知道 现在 哪 本书 卖 得 好 吗 ? +Take whatever you like . 你 喜歡 什麼 就 拿 吧 . +Mary reminds me of my mother . 玛丽 让 我 想起 我 母亲 . +He is my father . 他 是 我 父親 . +I am getting off at the next station . 我 在 下 一站 下车 . +Tom wrote his name in the sand with a stick . 汤姆 用 棍子 在 沙 上 写 了 他 的 名字 . +Although it is snowing , I must go . 虽然 正在 下雪 , 但是 我 也 非去不可 . +What is the name of this river ? 這條 河 的 名字 是 什麼 ? +Here are some pictures . 這裡 有 一些 圖片 . +I am sorry to disappoint you . 我 對 讓 你 失望 感到 抱歉 . +The sky is full of stars . 天空 布满 星辰 . +For that reason , he lost his job . 因為 那個 原因 , 他 失去 了 工作 . +Tom is too tired to help you do that today . 湯姆 今天 太累 , 不能 幫 你 . +I was in the bath when the phone rang . 在 我 洗澡 的 时候 , 电话响 了 . +Pass me the wine , please . 請 把酒 遞 給 我 . +I wish I earned more money . 我 希望 我 賺 更 多 的 錢 . +Tom canceled his hotel reservation . 汤姆 取消 了 他 的 酒店 预订 . +He is but a child . 他 不过 是 个 孩子 . +Are you coming along with us ? 你 要 跟 我們 一起 來 嗎 ? +They made fun of Mary . 他們 取笑 瑪麗 . +Have you ever seen Tom angry ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +My husband earns $ 100,000 a year . 我 丈夫 一年 收入 10 萬 美元 . +It is hard to believe that Tom was not aware that Mary was in love with him . 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +I will play the guitar for you . 我 會 為 你 彈 吉他 . +Let is go ! 我們 開始 吧 ! +We are waiting for the right time . 我們 在 等對 的 時機 . +Thank you . 谢谢 . +He was sitting there . 他 之前 坐在 这里 . +At first , he could not speak English at all . 起初 , 他 不 會 說 英語 . +Tom said he read a book about this ship . Tom 说 他 在 这次 的 航行 中 读 了 一 本书 . +Now , what do you want me to do ? 現在 , 你 想 讓 我 怎麼 做 ? +She resembles her mother in every respect . 她 在 各 方面 都 像 她 的 母親 . +Two hundred people died of cholera last year . 去年 有 两百人 因 霍乱 死亡 . +Would you please close that window ? 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +I am good at skiing . 我 擅長 滑雪 . +He gives some meat to the dog . 他 給 這 隻 狗 一些 肉 . +He has no right to interfere in our family affairs . 他 无权 干涉 我们 的 家庭事务 . +That company deals mainly in imported goods . 這 公司 主要 做 進口 貨物 的 生意 . +Well begun is half done . 好 的 開始 是 成功 的 一半 . +Humans can not live without air . 没有 空气 , 人 无法 存在 . +That house is very small . 這 房子 非常 小 . +Tom should have finished it by now . 汤姆 现在 应该 已经 完成 了 . +He is the oldest son . 他 是 长子 . +Did Tom show an interest ? 汤姆 感兴趣 吗 ? +I do not really like the stores there . 我 不是 很 喜歡 那裡 的 商店 . +They stole apples from my orchard . 他們 從 我 的 果園 偷 了 蘋果 . +He went by bicycle . 他 是 騎 自行 車 去 的 . +They must have arrived home by this time . 他們 在 這個 時候 一定 已經 到 家 了 . +She works very hard . 她 很 努力 工作 . +We hear with our ears . 我们 用 耳朵 听 . +I want to emphasize this point in particular . 我 想 特别强调 这 一点 . +How do you like your eggs done ? 你 的 蛋 要 怎麼 做 ? +I will carry this suitcase for you . 我 會 幫 你 提 這個 手提箱 . +He stayed there a couple of days . 他 在 那裡 待 了 幾天 . +Tom made a sandwich . 汤姆 做 了 个 三明治 . +A true gentleman would not betray his friends . 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +It was raining heavily when I got up this morning . 我 今天 早上 起来 的 时候 雨 下得 很大 . +My internet connection was cut off . 我 的 網路 連 線 被 切斷 了 . +She was visibly afraid to be here . 顯然 她 害怕 待 在 這裡 . +Time is money . 时间 就是 金钱 . +Tom , what do you want for supper ? 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +We go fishing from time to time . 我们 时不时 地 去 钓鱼 . +Christmas is soon , right ? 聖誕節 很快 就 到 了 , 對 嗎 ? +It is already nine o 'clock . 已经 9 点 了 . +I will write letters to you as often as I can . 我会 尽可能 多 给 你 写信 的 . +I am poor at drawing . 我 不 擅長 畫畫 . +Look at the large building over there . 看 那边 那 幢 高楼 . +It is a clear day . 天空 很 晴朗 . +You are the one who quit . 你 是 退出 的 那個 . +Is it true that Tom can not read or write ? 汤姆 真的 不会 读 也 不会 写 吗 ? +You smoke far too much . You should cut back . 你 吸 太 多 煙 了 . 你 應 該少 抽 一點 . +I used to eat pizza , but now I do not . 我 以前 吃 披萨 , 但 现在 不了 . +Tom is fearless . 汤姆 无所畏惧 . +I will get in . 我 會 進去 . +I think to clearly distinguish opinion from fact is important . 我 认为 辨别 清楚 意见 和 事实 很 重要 . +The movie theater was filled with people . 這家 電 影院 擠滿 了 人 . +He is the manager of the marketing department . 他 是 营销部 的 负责人 . +Do not miss this chance . 不要 让 机会 溜走 . +I do not like to go out after dark . 我 天黑 后 不 喜欢 出门 . +He was brave . 他 很 勇敢 . +Come to my house whenever you like . 只要 你 喜歡 , 你 隨時 可以 來 我家 . +This book is very interesting . 這 本書 很 有趣 . +Do you guys know each other ? 你們 認識 嗎 ? +Tom is always daydreaming . Tom 總是 在 做 白日 夢 . +Her goal is to become a teacher . 她 的 目的 是 成为 教师 . +I will have finished reading this novel by the time you come tomorrow . 你 明天 来 的 时候 , 我 就 看 完 这本 小说 了 . +He is not as intelligent as his older brother . 他 不 像 他 的 兄长 那样 聪明 . +Tom will come back from Boston next Monday . 汤姆 会 在 下周一 从 波士顿 回来 . +Let me give you an example . 让 我 来 给 你 举 个 例子 吧 . +Perhaps we could get a drink sometime . 要 不 我们 找 时间 喝 一顿 . +I feel like taking a walk now . 我 現在 想要 散步 . +He went to the United States to study medicine . 他 去 美国 学医 了 . +She put the key in her pocket . 她 把 鑰匙 放在 她 的 口袋 裡 . +That dress looks good on you . 那条 连衣裙 很 适合 您 . +Do not be afraid to make mistakes when speaking English . 說 英語 的 時候 不要 怕 犯 錯 . +How do you account for that ? 你 怎样 作出 的 解释 ? +I am very hungry . 我 很 餓 . +The cake is delicious . 蛋糕 很 美味 . +Do you know a good dentist ? 你 有 認識 好 的 牙醫 嗎 ? +Tom does not know what he should do . 湯姆 不知所措 . +You will find this map very useful . 你 會 發現 這 張 地圖 非常 有用 . +Tom has just remodeled his kitchen . 汤姆 刚 改建 了 他 的 厨房 . +Would you like some more tea ? 您 想 再 来 点 茶 吗 ? +Tom does not have a driver is license . 湯姆 沒有 駕駛 證 . +He does not look his age . 他 的 长相 与 年龄 不符 . +He seems quite happy . 他 看起来 好像 很 幸福 . +Tom probably knows why the meeting was postponed . 湯姆 大概 知道 會議 延期 的 原因 . +My mother teaches flower arranging . 我 母親 教 插花 藝術 . +I am your father . 我 是 你 爸爸 . +He brought us sad news . 他 给 我们 带来 了 令人 难过 的 消息 . +What did you do with that camera ? 你 用 那 台 相機 做 了 什麼 ? +Everybody is equal before the law . 法律 面前 人人平等 . +Why did you leave the class yesterday ? 您 昨天 为什么 离开 教室 ? +I like your way of thinking . 我 喜歡 你 思考 的 方法 . +She kept crying all night . 她 一 整晚 都 在 哭 . +I was frightened by the sight . 我 被 这 情景 吓到 了 . +I am off today . 我 今天 休息 . +The box is empty . 盒子 裡面 沒有 東西 . +You can swim much better than him . 你 游泳 游得 比 他 好得多 . +We used to go skating every weekend . 过去 我们 每个 周末 都 去 溜冰 . +He waited for me until I arrived . 他 等 我 直到 我 來 . +Justice will prevail in the end . 正义 终将 胜利 . +I can not bring myself to do such a thing . 我 不能 让 自己 做 这样 的 事 . +As soon as he sat down , he picked up the telephone . 他 一 坐下 , 就 拿 起 了 電話 . +I will get some glasses . 我 會 去 拿 一些 玻璃杯 . +What is so special about Tom ? 汤姆 有 什么 很 与众不同 的 地方 吗 ? +Tom changed into his uniform . 汤姆 换上 制服 . +Life in Japan is expensive . 在 日本 生活 消费 很 高 . +I can not keep up with Tom . 我 跟不上 汤姆 . +Tom went abroad . 湯姆 出國 了 . +Who organized that meeting ? 谁 组织 了 这次 会议 ? +I will be back by six o 'clock . 我 将 6 点 回来 . +I help my mother with the housework every day . 我 每天 都 帮 我 妈 做 家务 . +Have you ever dreamed about me ? 你 梦见 过 我 吗 ? +What is the meaning of this word ? 這個 字 是 什麼 意思 ? +Are you feeling tired ? 你 覺 得 累 嗎 ? +I saw him cross the road . 我 看见 他 穿过 了 马路 . +If he knew her phone number , he could call her . 如果 他 知道 她 的 电话 , 他 会 打 给 她 . +Where should I put my laundry ? 我 應該 把 我 要 洗 的 衣服 放在 哪裡 ? +Call me when you get settled in . 你 安 頓好 就 打 電話 給 我 . +Tom owes Mary thirty dollars . Tom 欠 Mary 三十元 . +She is always losing her handkerchief . 她 老 是 弄 丢 她 的 手帕 . +Nobody else offered to help . 没有 其他人 伸出 援手 . +Tom is boring . 汤姆 是 个 无聊 的 人 . +He has been to Hawaii several times . 他 去过 夏威夷 几次 . +French bread is delicious . 法国 的 面包 很 好吃 . +Where did you get this ? 这 是 你 哪里 拿 的 ? +She saw a tall man yesterday . 她 昨天 看见 一个 高大 的 男人 . +I need to try . 我 需要 尝试 . +Miyazaki is not what it used to be . 宮崎 不是 它 往日 的 樣子 了 . +Please help me fill out this form . 請 幫 我 填 這 張 表格 . +He lived in Matsue for seven years . 他 住 在 松江 七年 了 . +Tom is daughter pretended not to know him when he came to pick her up from school in his battered old car . 当 汤姆 开 着 他 破旧 的 雷泽车 来 接 女儿 放学 时 , 他 的 女儿 假装 不 认识 他 . +I wonder if he loves me . 我 不 知道 他 是否 愛 我 . +We looked out the window , but we did not see anything . 我们 看 了 窗外 , 但 什么 都 没 看见 . +His word is law . 他 的话 就是 命令 . +She was not in the mood for lunch . 她 不想 吃 午 飯 . +I believe you are honest . 我 相信 你 是 诚实 的 . +Since I had a cold , I did not go visit him . 我 没有 拜访 他 , 因为 我 感冒 了 . +Shame on you guys . 替 你们 脸红 啊 . +It is important to follow a strict diet . 重要 的 是 要 遵循 嚴格 的 飲食 控制 . +Tom , have you already eaten lunch ? 汤姆 , 你 已经 吃 过 午餐 了 吗 ? +John is two years older than me . John 比 我 大 两岁 . +Where will the bus pick us up ? 巴士 會 在 哪裡 接 我們 ? +Money takes a long time to earn , but you can spend it in no time . 錢 要 花 很 長 的 時間 來 賺 , 但 你 可以 一下子 就 花掉 它 了 . +Tom is intentions were quite clear . 湯姆 的 目的 很 明顯 . +She is hard up for money . 她 錢 不夠 . +This is a comfortable chair . 这 是 张 舒服 的 椅子 . +No one here will betray you . 這裡 沒 有人 會 背叛 你 . +I can barely stand his behavior . 我 可以 勉強 地 容忍 他 的 行為 . +Do you have many friends ? 你 有 很多 朋友 吗 ? +Her nose is bleeding . 她 在 流鼻血 . +She waited for hours and hours . 她 等 了 好 幾個 小 時 . +You speak fluent English . 你 英语 说 得 很 流利 . +He can play tennis very well . 他 网球 打 得 很 好 . +Every man has his price . 每个 人 都 有 个 价 . +It is rude to talk during a concert . 在 音樂會 中 講 話 是 不 禮貌 的 . +Please choose one person . 請 選擇 一個 人 . +I will lend you my notebook . 我 會 借 給 你 我 的 筆記 本 . +Can I stay here with you ? 我 可以 和 你 一起 呆 在 这里 吗 ? +He does not tell lies . 他 不 说谎 . +I like having breakfast with you . 我 喜欢 和 你 一起 吃 早饭 . +Is that love ? 那 是 愛 嗎 ? +She put clean sheets on the bed . 她 把 乾 淨 的 床單 鋪 在 床上 . +She studies English every day . 她 每天 學習 英語 . +I do not like movies . 我 不 喜歡 電影 . +He regrets his having wasted his money . 他 后悔 自己 的 挥金如土 . +I 'd like you to tell me the truth . 我 想要 你 把 真相 告诉 我 . +Call security ! 叫 保安 来 ! +No one is stopping you . 没有 人 在 阻止 你 . +That just does not make sense to me . 那 只是 對 我 來說 沒 有意 義 . +What does that gentleman do for a living ? 那位 先生 靠 什么 生活 ? +What time will the train get to Yokohama ? 火车 什么 时候 到 横滨 ? +My house does not have a roof . 我 的 房子 沒有 頂 . +My brother wants to study abroad . 我 哥哥 要 出 國 唸 書 . +Thanks for yesterday . 昨天 的 事 真的 要 谢谢您 了 . +Everything went according to plan . 一切 按 計劃 進行 . +I think you are a lot stronger than you know . 我 认为 你 比 你 想象 的 更 强 . +It can be dangerous . 它 有 危险 . +When I hear this song , I think of you , and miss you . 當 我 聽到 這 首歌 , 我 想起 了 你 , 並 想念 著 你 . +She has beautiful handwriting . 她 的 筆跡 很美 . +Tom knows that we are not happy . 湯姆 知道 我們 不 高興 . +Are you free this weekend ? 這個 週末 你 有 時間 嗎 ? +Look at my new car . 看看 我 的 新車 . +All aboard ! 请 上船 ! +He is twice as old as she is . 他 的 年龄 是 她 的 两倍 . +This summer I went on vacation in Scotland . 这个 夏天 , 我 去 苏格兰 度假 了 . +It is very big of you to admit you are wrong . 你 能 承认 你 错 了 是 很 伟大 的 . +He confessed that he was guilty . 他 承认 有罪 . +He was alone there . 他 獨自 在 那裡 . +You have something stuck in your teeth . 牙齿 卡 了 点 东西 . +My father repaired my old watch . 我 父親 修理 了 我 的 舊 手 錶 . +Tom is quite good at cooking . Tom 對 烹飪 很 在 行 . +He is very stingy with his money . 他 非常 吝啬 . +With the weather getting worse , the departure was put off . 由于 天气 变差 , 出发 延迟 了 . +Tom has to protect himself . 汤姆 得 保护 自己 . +There seemed to be no answer to the problem . 这个 问题 似乎 没有 答案 . +What do you think I want ? 你 認為 我 想要 甚麼 ? +The girls were asleep . 女孩 们 睡着 了 +I walked three @-@ fourths of a mile . 我 走 了 四分之三 英里 . +Three voted against the idea . 有 三票 反对 这 主意 . +Tom does not like it when people cuss in front of his children . 汤姆 不 喜欢 人们 在 他 孩子 面前 讲 坏话 . +He is always been kind to me . 他 总是 对 我 很 亲切 . +Tom will not know what to do . 湯姆 不 會 知道 要 做 甚麼 . +Tom said he is going to tell us what he knows . 湯姆 說 他 要 把 他 知道 的 告訴 我們 . +I have what you need . 我 有 你 需要 的 . +Let is go now . 我们 现在 去 吧 . +She gave birth to her first child at twenty years old . 她 在 二十 歲 的 時候 生下 第一 個 孩子 . +I am looking forward to seeing you . 我 期待 見 到 你 . +You are no better at remembering things than I am . 你 记 事情 的 能力 并不比 我 好 多少 . +I had fun last night . 昨晚 我 玩 得 开心 . +Put the book back on the shelf . 把 書 放回 書 架上 . +Please think about the problem . 請 想想 這個 問題 . +If he does not come , we will not go . 如果 他 不 來 了 , 我們 不 會 去 . +My aunt gave me an album . 我 姑姑 給 了 我 一本 相簿 . +She played a waltz on the piano . 她 在 鋼琴 上彈 了 一首 華爾滋 舞曲 . +Delete Tom is name from the list . 从 名单 上 删掉 汤姆 的 名字 . +It is one of the reasons . 這 是 其中 一個 原因 . +Who is to blame for the accident ? 誰 該 為 這次 事故 負責 ? +Let is sing the song in English . 讓 我們 唱 英文歌曲 . +If she had married you , she would be happy now . 如果 她 和 你 结婚 了 , 她 现在 会 很 幸福 . +It is just your imagination . 这 只是 你 的 想象 . +I was calm until I saw the syringe . 看到 针管 儿 之前 我 一直 都 很淡 定 . +The child followed me to the park . 這 孩子 跟著 我 去 公園 . +I have not seen you in ages . 我 已經 好久 沒有 見到 你 了 . +It is late . 很 晚 了 . +Your brother will not buy it . 你 哥哥 不 會 買 它 . +My father drives to work . 我 父親 開車 去 上班 . +I did not study at all yesterday . 我 昨天 都 沒讀 書 . +Tom learned French . 汤姆 学习 了 法语 . +What is that bird called ? 那 隻 鳥 叫什 麼 名字 ? +There are strawberries in my bag . 我 的 袋子 裡 有 草莓 . +Tom can not ride a horse . 湯姆 不能 騎馬 . +A devastating earthquake hit the state capital . 一場 毀滅 性 的 地震 襲擊 了 這個 州 的 首府 . +It looks good . 看起来 不错 . +He killed that man . 他 殺 死 了 那個 人 . +The little boy is afraid of the dark . 這 小男孩 怕黑 . +He left after he had lunch . 他 吃 过 午餐 就 出去 了 . +I am awfully sorry that I was late . 非常 抱歉 , 我 遲到 了 . +I refuse to answer your question . 我 拒绝 回答 你 的 问题 . +Nara is a very old city . 奈良 是 个 非常 古老 的 城市 . +It has had no effect on him . 这 对 他 没有 影响 . +Tom is drunk . 汤姆 醉 了 . +I can not eat this much food . 我 不能 吃 这么 多 食物 . +I did not get his joke . 我 不 懂 他 的 玩笑 話 . +I like to walk in the country . 我 喜歡 在 鄉間 散步 . +Do you eat rice in your country ? 在 你们 国家 吃 米饭 吗 ? +How much did the glasses cost ? 這 副 眼鏡 多少 錢 ? +I can not even remember what Tom looks like . 我 甚至 不能 记 起来 汤姆 长 什么样 . +That is a dumb question . 这 是 一个 愚蠢 的 问题 . +Yesterday I did not play tennis . 我 昨天 沒有 打 網球 . +If I had the money , I would immediately buy this computer . 我 要是 有钱 , 立马 就 买 这 台 电脑 . +He anonymously donated a large sum of money to the Red Cross . 他 匿名 向 红十字 捐 了 大笔 钱 . +If you eat that much , you will have a stomachache . 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +Tom is very confident , is not he ? 湯姆 很 有 信心 , 不是 麼 ? +It is a pity that you can not join us . 你 不能 和 我們 一起 來 真 可惜 . +I am not always at home on Sundays . 我 星期天 並 不 總是 在家 . +I want to see your older sister . 我 想 見 你 姐姐 . +I 'd like a table by the window . 我 要 一張 靠窗 的 桌子 . +We are ready for the next step . 我們 準備 好 了 走下 一步 . +The air conditioner does not work . 空調 故障 了 . +It is hard to tell Englishmen from Americans just by the way they look . 只 凭 长相 的话 很 难 区分 英国人 和 美国 人 . +How long were you in jail ? 你 在 监狱 里 呆 了 多久 ? +He is my type ! 他 是 我 的 菜 ! +I saw him running . 我 看見 了 他 跑步 . +I have never been to Europe . 我 从没 去过 欧洲 . +Do not let Tom die . 別 讓 湯姆 死 了 . +I took a picture of my family . 我 為 我 的 家人 拍 了 照片 . +Would you please take my picture ? 請 你 幫 我 照相 好 嗎 ? +What is your home phone number ? 你家 的 電話 號碼 幾號 ? +I did not do anything during my vacation . 在 假期 中 我什麼 都 沒有 做 . +He is in trouble . 他 有 麻烦 . +When she was three years old , her father died . 她 父亲 在 她 三岁时 死 了 . +When did you last see Tom ? 你 最后 一次 看到 汤姆 是 什么 时候 ? +I helped my mother wash the dishes . 我 幫 媽媽 洗碗 了 . +I took it for granted that you were on my side . 我 理所 當然 認為 你 會 站 在 我 這邊 . +It snowed for ten consecutive days . 雪 持续 下 了 十天 . +Do you regret marrying me ? 你 後 悔 跟 我 結婚 嗎 ? +Tom wrote us postcards . Tom 寫 明信片 給 我們 . +Tom has a big appetite . 汤姆 胃口 很大 . +My son is now as tall as I am . 我 儿子 现在 和 我 一样 高 了 . +The elevator seems to be out of order . 电梯 好像 故障 了 . +This is my daughter . 這 是 我 女兒 . +She elbowed her way onto the train . 她 擠上 了 火車 . +Tom gave us something to talk about . 汤姆 给 了 我们 可以 谈论 的 东西 . +Is Tom hurt ? 汤姆 受伤 了 吗 ? +World War I broke out in 1914 . 第一次 世界 大戰 於 1914 年 爆發 . +I 'd better do it right now . 我 马上 做 比较 好 . +You like it , do not you ? 你 喜歡 它 , 不是 嗎 ? +Tom realized it was time to leave . 汤姆 意识 到 该 走 了 . +Those are their books . 这 是 他们 的 书 . +He is used to making speeches . 他 習慣 於 作演 說 . +Horses are animals . 馬 是 動物 . +He has just published an interesting series of articles . 他 刚 发表 一系列 有趣 的 文章 . +It is becoming important for us to know how to use a computer . 知道 如何 使用 电脑 对 我们 来说 变得 很 重要 . +They are having a really good time . 他們 正 玩 得 非常 開心 . . +It is said that his father died in a foreign country . 据说 他 爸爸 在 外国 去世 了 . +We can not see the other side of the moon . 我們 看不到 月亮 的 另 一邊 . +It is getting dark . I wonder if it is going to rain . 天 变暗 了 . 我 不 知道 是不是 要 下雨 . +The mother missed her daughter who was away at college . 妈妈 想念 她 在读 大学 的 女儿 . +We did not start the fire . 我们 没 点火 . +My guess is that it will be fine tomorrow . 我 猜 明天 会 是 好 天气 . +He disappeared without a trace . 他 没有 留下 痕迹 就 消失 了 . +The recent shortage of coffee has given rise to a lot of problems . 近来 咖啡 的 短缺 造成 了 许多 问题 . +Why were you so scared ? 你 为什么 这么 害怕 ? +Are you sure about this ? 你 确定 吗 ? +You should get your hair cut . 你 该 剪头发 了 . +After school , I go to an English school to practice English conversation . 放學 後 , 我 到 一所 英語 學校 去 練習 英語 會話 . +He was made captain . 他 被 選為 隊長 . +They kept me waiting for an hour . 他們 讓 我 等 了 一個 小 時 . +He returned at six . 他 六点 回来 了 . +This movie is frightening to the children . 這部 電影 對 小孩 來說 很 可怕 . +How deep is the hole ? 這個 洞 多 深 ? +You should apologize . 你 應該 道歉 . +Few things give us as much pleasure as music . 很少 有 東西 像 音樂 一樣 帶 給 我們 這麼 多 的 快樂 . +He lied to me . That is why I am angry with him . 他 对 我 说 了 谎 , 这 就是 为什么 我 生 他 的 气 了 . +Are you students ? 你們 是 學生 嗎 ? +It is easier than I thought . 它 比 我 想 的 容易 . +She is gracious to everyone . 她 对 谁 都 很 和蔼可亲 . +Japan is not as big as Canada . 日本 不 像 加拿大 那么 大 . +Clean the dirt off the mirror . 清理 鏡子 上 的 灰塵 . +Who painted this beautiful picture ? 誰 畫 了 這幅 美麗 的 圖畫 ? +A little bird told me . 我 听 传闻 说 的 . +I know what he did . 我 知道 他 做 了 . +To the best of my knowledge , the rumor is not true . 据我所知 , 这个 谣言 不是 真的 . +He is not ashamed of being poor . 他 不 因 貧窮 而 感到 羞愧 . +What did you eat for lunch ? 你们 午饭 吃 了 什么 ? +Tom hitched a ride to Boston . 汤姆 搭便车 去 波士顿 了 . +What is Gestalt Therapy ? 什么 是 格式 塔 疗法 ? +The road was wet from the rain . 這 條路 因為 下雨 所以 是 濕 的 . +Our task has been easy so far , but it will be difficult from now on . 我们 的 任务 到 目前为止 很 轻松 , 但 从 现在 开始 将 会 变得 很 难 . +Could you spare me a few minutes ? 你 能 为 我 腾出 几分钟 时间 吗 ? +Please show me your notebook . 請 給 我 看 一下 你 的 筆記本 電腦 . +You live in Boston now , do not you ? 你 住 在 波士 頓 , 不是 麼 ? +Smoke is rising from the chimney . 煙 從 煙囪 上升 . +It is a nice day . 今天 天氣 很 好 . +It is you I have come for . 我 是 为 你 来 的 . +They were busy working for social reforms . 他们 忙于 社会 改革 . +Tom will not let me buy any more stuff . 湯姆 不 會 讓 我 再 買 甚麼 東西 了 . +The poor young man finally became a great artist . 这个 可怜 的 年轻人 最后 成为 了 一个 了不起 的 艺术家 . +Tom sure talks a lot . 汤姆 一定 很 能 讲 . +Smoking affects your health . 吸烟 有害 健康 . +Tom found me a taxi . 湯姆 幫 我 叫 了 輛 計程 車 . +I had a terrible dream last night . 昨晚 我 作 了 一個 可怕 的 夢 . +What happened then ? 然 後 發生 了 什麼 事 ? +I ate breakfast at eight . 我 八點鐘 吃 了 早餐 . +I am convinced that he is innocent . 我 相信 他 是 無辜 的 . +He never looks down on poor people . 他 從未 看不起 窮 人 . +It is a pity that you cannot come to the party . 很 遗憾 您 不能 来 派对 . +Do you know where your father went ? 你 知道 你 父親 去 哪裡 了 嗎 ? +It is getting dark . Let is go home . 天 漸漸 黑 了 . 我們 回家吧 . +I like learning languages . 我 喜欢 学习外语 . +They will hold a meeting at 2 o 'clock this afternoon . 他们 今天下午 2 点 会 举行 一个 会议 . +We want you to marry Tom . 我们 希望 你 和 汤姆 能 结婚 . +He failed to pass his driving test . 他 沒有 通過 他 的 駕駛 考試 . +Please tell the truth . 请 把 事实 说 出来 . +Did you call your friend in Canada ? 你 打 電話 給 你 在 加拿大 的 朋友 了 嗎 ? +Well , let is go . 好 吧 , 我們 走 吧 . +You are sick ! 你 有 病 ! +I thought I told you to stay away from my computer . 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +America did away with slavery . 美國 廢 除了 奴隸 制度 . +We are very different . 我们 很 不 一样 . +I made up my mind to study harder . 我 决定 更 努力 地 学习 . +Tom said that he keeps a gun in his home . 湯姆 說 他 的 家裡 有 把 槍 . +He should have been a lawyer . 他 本 应该 成为 一个 律师 . +Which judge heard the case ? 哪一位 法官 審理 此案 ? +Tom told me that he had lost his textbook . 汤姆 告诉 我 他 丢 了 课本 . +This makes me very angry . 這 讓 我 很 生 氣 . +It is well done . 做 得 很 好 . +Wait and see . 走著 瞧 +Five years is too long to wait . 五年 太漫長 而 無法 等待 . +We have no time . 我们 没 时间 . +Everyone knew Tom was good at French . 每个 人 都 知道 汤姆 的 法语 很 好 . +They are my brothers . 他们 是 我 的 兄弟 . +If it were not for your help , I could not succeed . 沒有 你 的 幫忙 , 我 無法 達成 . +You must do your best . 你 必须 做到 最好 . +Join us . 来 加入 我们 吧 . +I think that Tom lied to us . 我 觉得 汤姆 对 我们 撒谎 了 . +I like coffee better than tea . 我 喜歡 咖啡 勝 過 茶 . +I could swim well even when I was a child . 我 很小 的 时候 就 游 得 很 好 了 . +The bath is ready . 浴缸 已經 準備 好 了 . +The fuel tank in the car is full . 汽車 油箱 是 滿 的 . +I can not stand this heat . 我 受不了 這麼 熱 . +He loves to fish . 他 酷爱 钓鱼 . +You worry about your weight too much . 你 太 担心 您 的 体重 了 . +She always lets her children do what they want to . 她 總是 讓 自己 的 小孩 做 自己 想 做 的 事 . +I have read many kinds of books . 我 已经 读 过 很多 种类 的 书 了 . +The child is body felt feverish . 這個 小孩 身體 很 燙 . +Sports are good for your health . 运动 有益健康 . +She bought six yards of cloth for a dress . 她 買 了 六碼 的 布 做 衣服 . +She also likes chocolate . 她 也 喜欢 巧克力 . +Tom does not have a fever . 汤姆 没有 发烧 . +I am up . 我 已经 起来 了 . +I do not quite follow you . 我 聽 不 太 懂 你 的 意思 . +She does not have the ticket . 她 沒 有 票 . +Tom often walks to school . 汤姆 经常 步行 去 学校 . +How many friends do you have on Facebook ? 你 在 Facebook 上有 多少 朋友 ? +He did not work on Sunday night . 他 週日 晚上 不 工作 . +Let is visit some temples tomorrow . 讓 我們 明天 參觀 一些 寺廟 . +When will it begin ? 什么 时候 开始 ? +I trust him . 我 信任 他 . +I wonder what the weather will be tomorrow . 不 知道 明天 天气 会 怎么样 呢 ? +He wrote to me yesterday . 昨天 他 寫信 給 我 . +He does not realise that he is tone deaf . 他 不 知道 他 自己 五音不全 . +Do whatever he tells you . 他 跟 你 说 什么 , 你 就 做 什么 . +I paid him the money . 我 付 了 他 钱 . +My parents ' generation went through the war . 我 父母 那 一代 经历 过 战争 . +So what if that is true ? 那 如果 那 是 真的 呢 ? +Definitely ! 必须 的 ! +She is not as beautiful as her sister . 她 不如 她 姊姊 漂亮 . +I do not want Tom to die . 我 不想 让 汤姆 死 . +He can do it better than I can . 他 有 能力 比 我 做 得 更好 . +She invited us to her birthday party . 她 邀请 我们 去 她 的 生日派对 . +People show up bright on an infrared camera because of their body heat . 人會 因為 體溫 而 在 紅 外線 攝影機 上 顯現 . +I got up while it was still dark . 我 起来 的 时候 天 还是 黑 的 呢 . +He often quotes Milton . 他 常 引用 米爾頓 . +He failed to follow our advice . 他 沒有 遵循 我們 的 忠告 . +Tom did an excellent job . 汤姆 做 得 很 出色 . +The capital of Japan is Tokyo . 日本 的 首都 是 东京 . +Tom was an architect . 汤姆 是 建筑师 . +Tom knows me . Tom 認識 我 . +There is not much traffic on this road . 这 条 路上 的 车辆 不多 . +When are you going to get married ? 你 什麼 時候 要 結婚 ? +Do you need an ambulance ? 你 需要 救護車 嗎 ? +I have to sell my house . 我 得卖 我 的 房子 . +What are you here for ? 你 為 什麼 在 這 ? +Is there a timetable ? 有 时间表 吗 ? +Is this jacket right for me ? 我 穿 這件 外套 好看 嗎 ? +I always get nervous just before a match . 比赛 前 我 一直 都 很 紧张 . +I am thinking of closing my savings account . 我 想 关闭 我 的 储蓄 账户 . +This is very good soil . 这 是 非常 好 的 土壤 . +Some things are better left undone . 有些 事 不 做 更好 . +She has a son and two daughters . 她 有 一个 儿子 和 两个 女儿 . +I am sure I can find something for you to do . 我 確定 我 能 找 點 給 你 做 的 事 . +In my opinion , you are wrong . 在我看来 , 你 错 了 . +You can go wherever you want . 你 想 去 哪里 都 可以 . +Tom already knew the truth . 湯姆己 經 知道 了 真相 . +Kyoto has many universities . 京都 有 很多 所 大学 . +Just take my word for it . 請 相信 我 的 話 . +Even a child can understand that . 即使 是 一個 小孩子 都 能 理解 . +Excuse me , do you know what time it is ? 不好意思 , 请问 您 知道 现在 几点 了 吗 ? +What will you be doing over the weekend ? 你 整個 週末 會 做 什麼 ? +It was absolutely brilliant . 它 真是 太妙了 . +She is not a good cook . 她 不是 一個 好 廚師 . +I should do it . 我 应该 去 做 . +I am not as brave as Tom . 我 不 像 湯姆 那樣 勇敢 . +But I do not want to . 但是 , 我 不要 . +His speech impressed us very much . 他 的话 深深 触动 了 我们 . +Water the flowers before you have breakfast . 吃 早餐 之前 先澆花 . +I remember this word . 我 记得 这个 单词 . +I slept a little during lunch break because I was so tired . 我 在 午休 时间 睡 了 一会儿 , 因为 我 太 累 了 . +We are going to climb that mountain . 我們 將 要 去 爬 那 座 山 . +How old will you be next year ? 明年 你 会 是 几岁 ? +Try hard . 努力 . +We were robbed . 我們 被 偷 了 . +I think Tom can not win . 我 認為 湯姆 不 會 贏 . +Tom asked me about you . 汤姆 向 我 问起 你 . +Japan produces a lot of good cameras . 日本 生产 很多 好 相机 . +You should consult your doctor . 你 應該 諮詢 你 的 醫生 . +Have you read this book yet ? 你 讀 過 這 本書 嗎 ? +My room is three times as large as yours . 我 的 房間 是 你 的 三倍 大 . +They believe in a life after death . 他們 相信 來 世 . +The bicycle by the door is mine . 在 門口 的 自行 車 是 我 的 . +Tom told Mary he could not do what she asked him to do . 汤姆 告诉 玛丽 他 不能 做 她 要 他 做 的 事 . +Tom is not breathing . 汤姆 没有 呼吸 了 . +I always get along well with him . 我 跟 他 總是 相處 得 很 好 . +I have absolute faith in you . 我 百分之百 相信 你 . +That is the computer he used to write the article . 那 就是 那 台 他 用来 写文章 的 电脑 . +He introduced me to a pretty girl . 他 把 我 介紹 給 了 一個 漂亮 的 女孩 . +They got married six months ago . 他們 六個 月前 結婚 了 . +Hit Tom . 去 打 汤姆 . +I found the book very interesting . 我 覺得 這 本書 非常 有趣 . +Goodbye ! 告辞 ! +I am staying at the hotel for the time being . 目前 我 待 在 酒店 . +We are all praying for Japan . 我們 全體 為 日本 祈禱 . +I am used to getting up early . 我 習慣 早起 . +The board is about two meters long . 這塊 木板 大約 兩 公尺 長 . +Mercury is a planet . 水星 是 一顆 行星 . +I thought that he would come . 我 以为 他 会 来 的 . +Tom was stripped to the waist . 汤姆 光 着 膀子 . +Whose bicycle is this ? 这辆 自行车 是 谁 的 ? +I 'd rather you stayed at home . 我 寧願 你 待 在家 裡 . +I am looking forward to seeing you next week . 我 期盼 著 下週 見到 你 . +I do not go to school on Sundays . 我 周日 不 去 学校 . +It tastes really good . 它 的 滋味 真的 很 好 . +After she had lunch , she got ready to go out . 吃 過午 飯 後 , 她 準備 好要 出門 了 . +Do you have change for a dollar ? 你 有 零 錢 換 一元 美金 嗎 ? +This is the flag of Japan . 这 是 日本 国旗 . +I poured water into the bucket . 我 把 水 倒入 了 桶子 裡 . +He helped me do my homework . 他 幫 我 做 我 的 功課 . +The red dress looked good on her . 她 穿 這 套 紅色 的 洋裝 很 好看 . +She is younger than him . 她 比 他 年轻 . +What he said is not true . 他 說 的 話 不是 真的 . +Did the police ever question you ? 警察 盘问 你 了 吗 ? +I have a map . 我 有 一張 地圖 . +UK is the abbreviation for the United Kingdom . UK 是 英国 的 缩写 . +This knife is very sharp . 这 把 刀 很 锋利 . +What would you like for supper ? 你 晚餐 想 吃 什麼 ? +Who is she ? 她 是 谁 ? +I almost never lie . 我 幾乎 從 不 說 謊 . +He resigned and fled the country . 他 辞职 后 逃离 了 这个 国家 . +She is very beautiful . 她 非常 漂亮 . +Tom is a distant relative of mine . 湯姆 是 我 的 遠亲 . +She was feeling kind of tired . 她 覺得 有 點累 了 . +You need to go home right now . 你 需要 現在 就 回家 . +Tom started as a janitor , but he is now the president of the company . 汤姆 最初 是 看门人 , 但 现在 他 是 公司 的 总裁 了 . +How many years did Tom work here ? 汤姆 在 这里 工作 了 几年 ? +Nobody had ever heard of it . 以前 從來 沒 有人 聽 說 過 . +How awful ! 太 可怕 了 . +Is this the bus for Park Ridge ? 這 是 去 帕 克里 奇 的 巴士 ? +Drive cautiously . 开车 小心 点 . +Where did you get that much money ? 你 从 哪里 得到 这么 多 钱 的 ? +Things are not clearly defined . 事情 还 没 解释 清楚 . +He made her a bookshelf . 他 做 了 一個 書架 給 她 . +Can his story be true ? 他 的 故事 可能 是 真的 吗 ? +She was afraid to travel alone . 她 怕 獨自 旅行 . +Termites eat wood . 白蚁 吃 木头 . +He went to Boston by car . 他 坐 汽車 到 波士 頓 . +I went to the airport by taxi . 我 搭計 程車 去 機場 . +I think perhaps you are right . 我 猜想 你 可能 是 对 的 . +Is there any chance you will go to Australia next month ? 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +I really do not believe so . 我 真不 這麼 想 . +I can not do it either . 我 也 不 會 做 . +You are just saying that . 你 只是 說 說 而已 . +French has many more vowels than Japanese . 法语 的 元音 比 日语 的 多得多 . +He is fond of watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +Tom eats asparagus , but his brother does not . 湯姆 吃 蘆筍 , 但是 他 弟弟 不吃 . +I would like to have cake for dessert . 我 想 吃 蛋糕 當 點 心 . +He kept me waiting for an hour . 他 讓 我 等 了 一個 小 時 . +As a matter of fact , I have not eaten anything since this morning . 事實上 , 我 從 今天 早上 開始 沒有 吃 任何 東西 . +He does not know any of us . 他 不 认识 我们 中 的 任何 一个 . +I was just trying to protect you . 我 只是 試著 保護 你 . +Be realistic . 现实 点 ! +Tom looked at his reflection in the mirror . 汤姆 看 他 在 镜 中 的 映像 . +They were persecuted . 他们 受到 迫害 . +None of us thought he was to blame for the accident . 我們 都 不 認為 他 是 事故 的 罪魁 禍首 . +I guess it is only a joke . 估计 那 就是 个 笑话 吧 . +That cloud looks like a rabbit to me . 那朵云 对 我 来说 像 一只 兔子 . +It is raining . 在 下雨 . +I am afraid it will not work . 我 怕 它 是 行不通 的 . +Give me a chance to make you proud of me . 给 我 机会 来 让 你 为 我 感到 自豪 . +I bought a new sewing machine . 我 買 了 一台 新 的 縫紉機 . +Do you have anything to say ? 你 有 任何 話 要 說 嗎 ? +Do you want a cup of coffee ? 来 杯 咖啡 吗 ? +It is true that she is dead . 她 确实 死 了 . +They spoke to me . 他们 对 我 说话 了 . +Physics is my favorite subject . 物理 是 我 最 喜歡 的 科目 . +It makes sense to pay off your credit card balance every month . 每个 月 还清 信用卡 负债 很 重要 . +You have to make a reservation . 你 必須 事先 預約 . +We have no idea what to do . 我們 不 知道 要 做 甚麼 . +Since he did not know what to say , he remained silent . 自从 他 不 知道 该 说 什么 的 时候 , 便 一直 沉默 着 . +He threw a rock into the pond . 他 扔 一塊 石頭 到 池塘 裡 . +I do not like going to school . 我 不 喜欢 上学 . +Who will you vote for for president ? 你 選 誰 當 總統 ? +It was dark when I reached the hotel . 我 到 旅馆 的 时候 , 天 已经 黑 了 . +Do you want to eat garbanzo beans ? 你 想 吃 鹰嘴豆 吗 ? +He does not know English at all . 他 一點 也 不 懂 英語 . +That pasture is ten acres . 那個 牧場 有 十英畝 大 . +Tom is 30 years old . 汤姆 今年 三十岁 . +I would like to go abroad one day . 我 想 有 一天 去 国外 . +I often go downtown on Sunday . 我 常常 星期日 去 市中心 . +Please give me the menu . 請 給 我 菜 單 . +This book is not worth reading . 這 本書 不 值得 一 讀 . +Give me a little money . 给 我 一点 钱 . +He is rich , but he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +Tom seems really happy . 汤姆 看起来 非常 开心 . +You should not have done that . 我 不 應 該 做 那件事 的 . +Everyone , please be quiet . 各位 , 請 安靜 . +" Did he write a letter yesterday ? " " Yes , he did . " " 他 昨天 寫 了 一封信 嗎 ? " " 是 的 , 他 寫 了 . " +The car broke down . 汽车 发生 故障 了 . +He grew up to be an engineer . 他 長 大 後 成為 了 一名 工程 師 . +She is a quiet woman . 她 是 一個 安靜 的 女人 . +" Look , " she said . “ 看 啊 ! ” 她 说道 . +It is time you went to bed . Turn off the radio . 你 该 上床 了 . 把 收音机 关了 . +I envy him . 我 羡慕 他 . +Tom is drunk . 汤姆 醉 了 . +Carry on with your work . 繼續 工作 ! +Where do we go ? 我们 去 哪儿 ? +This article is of no value . 这 篇文章 没有 价值 . +The police are looking into the matter . 警方 正在 调查 . +Do you think animals have souls ? 你 认为 动物 有 灵魂 吗 ? +He pretended not to hear me . 他 假裝 沒有 聽見 我 . +Tom did not look happy at all . 汤姆 看起来 一点 也 不 开心 . +Seen from the sky , the river looked like a huge snake . 从 天上 看 下来 , 这条 河 像 一条 巨蛇 . +He is not a singer , but an actor . 他 不是 歌手 , 但是 个 演员 . +In the case of fire , dial 119 . 遇到 火警 時 , 撥 打 119. +It is valid until March thirty @-@ first , nineteen @-@ ninety @-@ seven . 有效期 到 1997 年 3 月 31 日 为止 . +Tom frequently talks in his sleep . 汤姆 经常 说梦话 . +I can not remember how to go there . 我 不 記 得 怎麼 去 那裡 了 . +Laura Ingalls grew up on the prairie . 勞拉英 戈爾斯 是 在 草原 上長大 的 . +This car needs washed . 这辆 车 需要 清洗 . +You did not find it , did you ? 你 沒 找到 , 不是 麼 ? +All of us went to the theater to see a play . 我們 所有 的 人 都 去 劇院 看戲 . +I just finished breakfast . 我 剛 吃 完 了 早 飯 . +Can you translate English into Japanese ? 你 可以 把 英文 翻譯 成日語 嗎 ? +He plays golf two or three times a month . 他 一个月 玩 两 到 三次 高尔夫 . +I do not have time for a vacation this year . 我 今年 没 时间 去 度假 . +Life goes on . 人生 會 繼續 . +I do not feel like taking a walk this morning . 我 今天 早上 不想 散步 . +He is a famous composer . 他 是 一位 著名 的 作曲家 . +My son believes in Santa Claus . 我 兒子 相信 聖誕 老人 . +Your mother is in critical condition . 你 母親 現在 情況 危殆 . +Please spell your name . 请 拼 一下 您 的 名字 . +My parents sent me a postcard . 我 父母 給 我 寄 了 一張 明信片 . +The boss has a good opinion of your work . 老板 对 你 的 工作 有 很高 的 评价 . +I have to change into my work clothes . 我 得 换工 服 了 . +I arrived in Kobe around two thirty . 我 在 两点 半左右 到达 神户 . +We should ban advertising aimed towards children . 我们 应该 禁止 针对 儿童 的 广告 . +We speak the same language , do not we ? 我們 說 的 是 同樣 的 語言 , 不是 嗎 ? +The baby seemed to be in a deep sleep . 那個 嬰兒 似乎 在 熟睡中 . +They are digging a hole . 他們 正在 挖 一個 洞 . +This dress is a good bargain . 这 条 连衣裙 很 便宜 . +He is been sick in bed for four days . 他 已 卧病在床 四天 了 . +Have you seen this man ? 您 见 过 这个 人 吗 ? +How long can it be kept going with 100 dollars ? 用 100 美元 可以 支持 多久 ? +I asked Tom to play the guitar . 我 叫 汤姆 弹 吉他 . +It is snowing . 正在 下雪 . +He was waiting for a long time . 他 等 了 很長 的 時間 . +Tom still is not sure what to do . 湯姆 還 是 不 確定 要 做 甚麼 . +This is a fish . 這 是 一條 魚 . +We arrived at the office on time . 我們 準 時 到 達 了 辦 公室 . +It really is very annoying . 真是 烦死 了 . +Are there many trees in the park ? 公園 裡 有 很多 樹 嗎 ? +Will you pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +He was terribly poor when he was young . 他 年轻 的 时候 穷困潦倒 . +I can not remember which is my racket . 我 不 記 得 哪個 是 我 的 球拍 . +A good neighbour is better than a brother far off . 一個 好 鄰 居勝 於 一個 遙遠 的 朋友 . +He kept his promise and helped his brothers . 他 履行 了 他 的 承诺 , 并且 帮助 了 他 的 兄弟 . +I have never fed my dog a banana . 我 從 沒給 我 的 狗 喂 過 香蕉 . +We do the best we can . 我们 尽 我们 所能 . +The concert is about to start . 音樂會 即將 開始 . +Is someone there ? 那边 有人 吗 ? +I can swim . 我 會 游泳 . +She is certain to be surprised . 她 肯定 会 大吃一惊 的 . +I 'd like a room in the back . 我 想要 一間 後 面 的 房間 . +Do not worry , I will help you . 不要 担心 , 我会 帮 你 的 . +I saw a man get hit by a car . 我 看见 有个 男人 被车撞 了 . +The sun does not shine at night . 太陽 在 晚上 不亮 . +There are many ways to improve one is life . 有 很多 的 方法 可以 改善 人 的 一生 . +The registration period is already over . 報名 時間 已經 過 了 . +Why should it be necessary ? 为什么 它 是 必要 的 ? +He brought me coffee , when I had asked for tea . 我 要 的 是 茶 , 而 他 却 给 了 我 一杯 咖啡 . +The poor girl went blind . 這 可憐 的 女孩 瞎 了 . +They were surprised . 他们 震惊 了 . +Try to keep from crying . 試著 不要 哭 . +Do you like to watch movies ? 你 喜歡 看 電影 嗎 ? +He sent me a birthday card . 他 寄 給 我 一張 生日 賀卡 . +There was nothing that the doctors could do . 醫生 甚麼 也 做不了 . +I think I may have made a big mistake . 我 認為 我 可能 已經 犯 了 大 錯 . +I take care of my grandfather . 我 照顧 我 的 爺爺 . +Tom sneaked up behind Mary . 汤姆 鬼鬼祟祟 地 遛近 了 玛丽 身后 . +It is no big deal . 这 没什么 大不了 的 . +How is it at school ? 学校 怎么样 ? +Tom is in the shower . Tom 在 洗澡 . +Give me your phone . 给 我 你 的 手机 . +They did not obey their parents . 他們 沒有 遵從 他們 的 父母 . +He took a photograph of the family . 他 拍 了 張 全家福 的 照片 . +There are many fish in this lake . 这 湖里 有 许多 鱼 . +I do not regret it . 我 不 後 悔 . +It is ten o 'clock by my watch . 我 的 手 錶 是 十 點 鐘 了 . +She and I are brother and sister . 我 和 她 是 兄妹 . +Tom is acting as if nothing has happened . 汤姆 像 什么 也 没 发生 一样 行动 . +Tom ripped up the letter . 汤姆 把 信 撕碎 了 . +I have not yet collected sufficient materials to write a book . 我 還 沒有 收集 到 足夠 的 材料 來 寫 一本 書 . +I do not use taxis unless it is absolutely necessary . 如 无 必要 我 也 不会 打 的 . +My father is very angry with me . 我 父親 對 我 非常 生氣 . +You do not get up as early as your sister , do you ? 你 比 你 妹妹 起得 晚 , 不是 么 ? +I want my dinner brought to my room . 我 想要 我 的 晚餐 送到 房间 里来 . +I am not letting Tom do this by himself . 我 不会 让 汤姆 独自 去 做 . +How much of what I have written here do you understand ? 你 了解 多少 我 寫 在 這裡 的 東西 ? +It is easy to read this book . 读 这 本书 很 容易 . +I have been here many times before . 我 以前 來 過 很 多次 了 . +My uncle had me act as a translator . 我 叔叔 讓 我 擔任 翻譯 . +The fire broke out after the staff went home . 在 全体 职员 回家 后 , 火 事 爆发 了 . +She accepted his gift . 她 收下 了 他 的 礼物 . +Please keep it secret . 請 保守 秘密 . +Who taught you how to dance ? 谁 教 你 跳舞 的 ? +Could you please pass me the pepper ? 能 把 胡椒 遞 給 我 嗎 ? +I had a tennis match with him . 我 曾 與 他 的 比賽 網球 . +My room faces east . 我 的 房間 面向 東邊 . +I wonder who has come . 我 想 知道 谁 来 了 . +I gave my brother a dictionary . 我 給 了 我 弟弟 一本 字典 . +The radio is a bit loud . 收音机 的 声音 有点 响 . +He weighs a lot more than before . 他 比 以前 重 得 多 . +The skin of a shark is much rougher than that of a tuna fish . 鯊魚 皮 比 金槍 魚皮 粗糙 多 了 . +I gazed at the sea for hours . 我 望著 海 好 幾個 小 時 . +Tom refused to answer any questions . 湯姆 拒絕 回答 任何 問題 . +The train has already left . 列车 已经 出发 . +Do not forget the ticket . 不要 忘 了 票 . +Could you help me translate this into French ? 你 能 帮 我 把 这 译成 法语 吗 ? +She got married in her teens . 她 十幾歲 時 就 結婚 了 . +If he studied hard , he would pass the test . 如果 他 努力学习 , 他 会 通过 考试 的 . +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 親切 . +What are you watching ? 你 在 看 什么 ? +Did you drink tea yesterday ? 你 昨天 喝茶 了 吗 ? +What is the meaning of this word ? 這個 字 的 意思 是 什麼 ? +He tries hard . 他 努力 地 嘗試 . +Do you often travel abroad ? 你 经常 出国 吗 ? +We would like you to come to our party . 我们 希望 你 来 我们 的 聚会 . +The professor spoke too fast for anyone to understand . 那个 教授 讲 得 太 快 了 , 没有 一个 人 听得懂 . +I have only five thousand yen . 我 只有 5000 日元 . +Can you come ? 你 能 來 嗎 ? +I think that Tom is going to be pretty mad when he finds out that the painting he bought is a fake . 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +I know the feeling . 我 知道 那種 感覺 . +Tom managed to find a new job . 汤姆 找到 了 新 工作 . +Besides the piano , can you play any other instruments ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I like May the best of all the months . 所有 月份 中 我 最 喜歡 五月 . +That job is pretty much finished . 那個 工作 幾乎 被 完成 了 . +I ate breakfast on my balcony . 我 在 陽 臺 上 吃 的 早 飯 . +They went to Tottori . 他們 去 了 鳥 取 . +They are making for the forest . 他们 正向 森林 而 去 . +School starts next week . 學校 下週 開學 . +Go and buy three bottles of coke . 去 買 三瓶 可樂 . +Do you want me to help ? 要 我 帮忙 吗 ? +I am a teacher . 我 是 個 老師 . +Japan depends on foreign countries for oil . 日本 依賴 外國 的 石油 . +I am glad it is over . 我 很 高興 它 結束 了 . +She always clears the table after a meal . 她 经常 在 饭后 收拾 桌子 . +I have finished watering the flowers . 我 已經 澆 完 花 了 . +I do not need your help . 我 不 需要 你 的 幫助 . +Who is Tom is girlfriend ? 汤姆 的 女朋友 是 谁 ? +She asked me whether I liked the plan or not . 她 问 我 喜不喜欢 这个 计划 . +I could not sleep . 我 無法 入睡 . +I did not get your last name . 我 沒 有 聽 清楚 你 的 姓 . +He towers above the rest of the class . 他 在 班上 出類 拔萃 . +If you are tired , go to bed . 你 若 累 了 , 就 去 睡 個 覺 . +I am sorry . 我 很 抱歉 . +Tom lives three miles east of here . 湯姆 在 這 以 東三哩 的 地方 住 . +I need to know . 我 需要 知道 . +It snowed last night . 昨晚 下 了 雪 . +She got good grades in English . 她 在 英文 上 取得 了 很好 的 成績 . +We were on the same train by chance . 我们 偶然间 乘 了 同一 列 列车 . +This work does not pay . 这个 工作 没有 酬劳 . +It is about time we went to bed . 差不多 是 我們 就 寢 的 時間 了 . +Money is not the only thing that matters . 不 只是 钱 关系 重大 . +The recent advances in medicine are remarkable . 医学 的 最新进展 颇为 显著 . +The couple is walking hand in hand . 這 對 夫妻 手 牽手 走路 . +He heard the news on the radio . 他 從 收音 機 聽到 了 這個 消息 . +They got here yesterday . 他們 昨天 到 這裡 的 . +Tom showed us his new car . 湯姆 給 我們 看 他 的 新車 . +I am sad . 我 很 难过 . +I do not know what I do not know . 我 不 知道 我 不 知道 什么 . +She hit the ball hard . 她 用力 地 拍 了 球 . +She is interested in learning new ideas . 她 有 興趣 學習 新 的 想法 . +He gave me his stamp of approval . 他 給 了 我 正式 批准 . +England is proud of her poets . 英格兰 为 她 的 诗人 感到 自豪 . +Do not open that . 别 打开 那个 . +We were in danger of losing our lives . 我们 曾 有 失去 生命 的 危险 . +She had the decency to apologize . 她 大方 地 道歉 . +Is there any chance that he will recover ? 他 有 任何 復 原 的 機 會 嗎 ? +Tom made a list of places he wanted to visit . 汤姆 列 了 他 想去 的 地方 的 名单 . +She kept crying all night long . 她 一 整晚 都 在 哭 . +Did you buy a return ticket ? 你 买 回程 机票 了 吗 ? +I know that you still want to be with me . 我 知道 你 还是 想 跟着 我 . +He can not buy himself a car . 他 不能 买车 . +He has some money in the bank . 他 银行 里 有点 钱 . +You should take the number 5 bus . 您 应该 乘 5 路车 . +There is a hole in this bucket . 這個 桶 有個 洞 . +What do you think about that ? 你 認為 如何 ? +I am sorry that you are leaving here . 我 很 遺憾 你 要 離開 這裡 . +It is not important . 這個 不 重要 . +It seems she hates you . 她 好像 很 讨厌 你 . +Where is the wedding to be ? 婚礼 在 哪儿 举行 ? +Where is the cafeteria ? 自助餐厅 在 哪里 ? +I can not believe you are eating something the doctor has told you repeatedly you should not eat . 真的 不敢相信 你 在 吃 医生 叮嘱 不要 食用 的 东西 . +Is Tom drunk ? 汤姆 喝醉 了 吗 ? +She told me an interesting story . 她 给 我 讲 了 一个 有趣 的 故事 . +The statue of Hachiko , the faithful dog , stands in front of Shibuya Station . 忠犬八公 的 雕像 伫立 在 涩谷 站 前 . +She is fluent in English . 她 英語 說 得 很 流利 . +Help me . 帮 我 一下 . +We have lost them . 我們 失去 他們 了 . +I can not find my glasses . 我 找 不到 我 的 眼鏡 . +Tom is not unhappy . 汤姆 不是 不 高兴 . +Tom is not going to stop . 湯姆 不 會 停 . +Tom let out a big sigh . 汤姆 大声 叹 了 口气 . +Tom spent most of the morning straightening up his office . 汤姆 花 了 大半 早晨 整理 他 的 办公室 . +I got a farewell present from everyone . 每個 人 都 送 了 我 一份 歡送 禮物 . +I am not famous . 我 不 出名 . +No one knows what will happen in the future . 沒 有人 知道 未來 會 發生 什麼 事 . +He backed his car into the garage . 他 倒 車入 車庫 . +Give us a ride downtown . 載 我們 到 市區 . +I take a bath almost every day . 我 幾乎 每天 洗澡 . +They have been here since 1989 . 他們 自 1989 年 以來 一直 在 這裡 . +I would like to go skiing . 我 喜歡 去 滑雪 . +She walks . 她 在 行走 . +No pain , no gain . 一分耕耘 , 一分 收 穫 . +Tom comes home every day at 2 : 30 . 汤姆 每天 2 : 30 回家 . +We are worried . 我们 很 担心 . +Many boys and girls were present . 许多 男生 和 女生 都 出席 了 . +I know everybody here . 我 認識 這裡 的 每個 人 . +He did not accept my apologies . 他 不 接受 我 的 道歉 . +We all consider your idea to be impractical . 我们 都 认为 你 的 想法 是 行不通 的 . +Good job ! 做得好 ! +This is a book about stars . 这 是 一本 关于 星星 的 书 . +What is your favorite movie ? 你 最 喜歡 的 電影 是 哪部 ? +I was kept waiting for nearly half an hour . 我 等 了 接近 半小时 . +Your answer is correct . 您 的 答案 是 正確 的 . +Are you angry ? 您 生气 了 吗 ? +He has been to many places . 他 去过 很多 地方 . +Did you watch the game ? 你 看 了 比賽 嗎 ? +Did I miss the party ? 我 错过 派对 了 吗 ? +Do not you remember what you said ? 自己 说 过 的话 都 不 记得 了 吗 ? +Sometimes I hate myself . 偶尔 我会 讨厌 我 自己 . +Tom asked me if I was tired . 湯姆 問 我 我 是不是 累 了 . +Do not mention it . 您 不必 感谢 我 . +I want to reserve a room . 我 想 預定 一個 房間 . +He had every reason for doing so . 他 有 充分 的 理由 這樣 做 . +Exercise is good for your health . 体育 有益健康 . +This is not safe . 这 不 安全 . +Which is your book ? 哪 本書 是 你們 的 ? +Who is going to speak tonight ? 今晚 谁 发言 ? +I can not find my shoes . 我 找 不到 我 的 鞋子 . +Do not ask any questions . 別 提問 . +Thanks to a cold summer , beer has sold poorly . 多 虧 了 冷夏 , 啤酒 賣 的 不好 . +This is a problem you have to solve by yourself . 这 是 一个 你 必须 自己 解决 的 问题 . +Who wants hot chocolate ? 谁 要 热 巧克力 ? +The river that flows through London is the Thames . 流经 伦敦 的 河 是 泰晤士河 . +The only useful answers are those that raise new questions . 只有 能 提出 新 问题 的 回答 才 是 有用 的 回答 . +I made several mistakes in the exam . 在 這次 考試 中 我 犯 了 幾個 錯誤 . +School was closed for the day due to the snow . 学校 因 大雪 停课 一天 . +It is not my fault . 不是 我 的 错 . +I wonder what happened to his sister . 我 想 知道 他 姊姊 發生 了 什麼 事 . +I envy her . 我 嫉妒 她 . +Let me buy you another one . 我 给 你 再 买 一个 吧 . +I have not finished my homework yet . 我 還 沒有 完成 我 的 作業 . +Is there a post office near here ? 這 附近 有 郵局 嗎 ? +She made cookies for the children . 她 给 孩子 们 做 了 曲奇 . +Tom does not like cheese . 湯姆 不 喜歡 乳酪 . +The crops need rain . 農 作物 需要 雨水 . +Would you please look after my dog tomorrow ? 你 明天 可以 幫 我 照顧 一下 我 的 狗 嗎 ? +We are happy to see you again . 我们 很 高兴 再次 见到 你 . +There is a hotel across the street . 對 街 有 一家 旅館 . +Pass me the salt , will you ? 請 把 鹽 遞 給 我 , 好 嗎 ? +What is your name ? 您 叫 什么 名字 ? +Which tooth hurts ? 哪 顆 牙痛 ? +That was the first time that a man walked on the moon . 那 是 人类 第一次 在 月球 上 行走 . +I saw more than Tom knows . 我 看 的 比 Tom 知道 得 多 . +I was very confused by his questions . 我 對 他 的 問題 感到 很 困惑 . +Mt . Fuji is the highest mountain in Japan . 富士山 是 日本 最高 的 山 . +Ca not you lower your voice ? 你 不能 小 聲點 說 話 嗎 ? +I want you to wait for me . 我 想 让 你 等 我 . +I thought I could be of some help . 我 認為 我 能 幫 點 忙 . +I will come to pick it up later . 我 晚点 再来 拿 . +He is a mathematical genius . 他 是 一個 數學 天才 . +Tom glanced away . 汤姆 瞥 了 一眼 就 移开 目光 了 . +Do you think that was fair ? 你 认为 那 公平 吗 ? +He is very sloppy in his dress . 他 穿着 上 很 不 讲究 . +I do not want to live my life in fear . 我 不想 在 恐惧 中 生活 . +I am interested in Japanese history . 我 對 日本 歷史 有 興趣 . +Someone told me that this boy cannot hear . 有人 告诉 我 这个 男孩 耳聋 . +I got out of the taxi . 我 從 出租 車 上下 來 . +Shall we go out for a walk ? 出去 散步 怎麼樣 ? +What time was it when you entered the building ? 你 进 这幢 楼 的 时候 是 几点 ? +Do not forget to turn the light off . 不要 忘 了 關燈 . +Tom is in the hospital . Tom 在 醫院 . +I am the one who wants to be with you . 我 才 是 那个 想 和 你 在 一起 的 人 ! +Hold fire . 停火 . +Tom had no family . 过去 汤姆 没有 家 . +Are you sure you have not forgotten anything ? 你 確定 你 沒有 忘記 什麼 嗎 ? +It is been hot this month , but today is an exception . 这个 月 一直 都 很 热 , 但 今天 是 个 例外 . +Your order has been submitted . 您 的 訂單 已經 提交 了 . +Say it in another way . 换种 方式 说 . +I am a big football fan . 我 是 足球 的 忠实 粉丝 . +One man is meat is another man is poison . 甲 之 蜜糖 , 乙之 砒霜 . +Do you want any of these flowers ? 你 要 這些 花 中 的 任何 一朵 嗎 ? +He was expelled from school . 他 被 逐出 了 学校 . +Did you ever try ? 你 试 过 吗 ? +Tom cannot drive . 湯姆 不能 開車 . +She is always trying new things . 她 总是 尝试 新 事物 . +Everyone has strengths and weaknesses . 每个 人 都 有 他 的 长处 和 短处 . +Shall I close the door ? 我 應該 把 門關 上 嗎 ? +Are you still in school ? 你 还 在 上学 吗 ? +Wash up . 去 清洗 一下 . +Do you promise ? 你 保证 吗 ? +He took part in the Olympic Games . 他 参加 了 奥运会 . +He walked past the house . 他 走 過 這棟 房子 . +Is it too salty ? 还有 多余 的 盐 吗 ? +Who did you see at the station ? 你 在 車站 看見 了 誰 ? +Thank you for baking this delicious cake . 谢谢 你 烤 的 美味 蛋糕 . +What do you say to dining out tonight ? 我们 今晚 出去 吃饭 , 你 说 怎么样 ? +I did not recognize him at first . 起初 我 沒 認出 他 來 . +We 'd better wake Tom up . 我们 最好 叫醒 汤姆 . +Kyoto depends on the tourist industry . 京都 依賴 旅遊 業 . +The lady really flipped out when she learned she had won a million dollars . 當 這位 女士 得知 她 已經 贏得 了 百萬 美元 , 她 真的 樂 瘋 了 . +It will cost around 10,000 yen . 這 將 花 費約 10000 日元 . +Of course . 當然 . +He has a strong sense of responsibility . 他 有 強烈 的 責任 感 . +He is still here . 他 还 在 这儿 . +You ought to see a dentist . 你 應 該 去 看 牙 醫 . +Tom is smart . 汤姆 脑子 好使 . +I need to know what you think . 我 需要 知道 你 怎么 想 . +His father is an impostor . 他 爸爸 是 个 骗子 . +It is almost time for Tom to go . 汤姆 快 该 走 了 . +Everyone was fine . 大家 都 还行 . +I would like to pay the check , please . 我 想付 帳 , 謝謝 . +There are no chairs in this room . 這個 房間 裡 沒有 椅子 . +Those chairs are in the way . 那些 椅子 擋住 了 去路 . +I want to talk to your boss . 我 想 跟 你 老板 谈 . +I am afraid she may have the mumps . 我 怕 她 可能 得 了 腮腺炎 . +My father allowed me to go swimming . 爸爸 准许 我 去 游泳 . +He is a man of few words , but he always keeps his promise . 他 这个 人话 不 多 , 但 总是 遵守 诺言 . +He has made the baseball team . 他 已經 成為 了 棒球 隊員 . +I do not understand music . 我 不 懂 音乐 . +Where are you going ? 你 要 去 哪裡 ? +I am six feet tall . 我 六 英尺 高 . +Water becomes solid when it freezes . 水 结冰 后 成为 固体 . +The cat is sleeping on the sofa . 貓 正在 沙發 上 睡覺 . +Do you feel like resting ? 你 感觉 轻松 吗 ? +Everyone wants what they can not have . 每个 人 都 想要 得到 无法 拥有 的 东西 +Could you carry my bags for me ? 你 可以 幫 我 提 我 的 袋子 嗎 ? +She teaches reading and writing . 她 教 閱讀 和 寫作 . +You are the one who suggested that we do that together . 你 是 那個 建議 我們 一起 做 那件事 的 人 . +Nobody likes war . 没有 人 喜欢 战争 . +Tom plays chess very well . 汤姆 下棋 下得 很 好 . +My plans failed one after another . 我 的 計劃 一個 接 一個 的 失敗 了 . +I did not hear anybody talking . 我 沒 聽到 任何人 在 說 話 . +He is tall . 他 高 . +He is running very quickly . 他 跑 得 非常 快 . +He rushed into the room with his coat on . 他 穿着 衣服 冲 进 房间 . +I am still waiting for Tom to get here . 我 还 在 等 湯姆 來 這裡 . +I was certain that you 'd come . 我 確定 你 會 來 . +I gained two kilos this summer . 这个 夏天 我 胖 了 两 公斤 . +Tom did not like spinach when he was a child . 汤姆 小时候 不 喜欢 菠菜 . +My stomach is full . 我 的 胃 是 脹 滿 的 . +Who are you looking for , Tom ? 你 在 找 誰 , 湯姆 ? +I prefer cats to dogs . 較 之 于 狗 , 我 更 喜欢 猫 . +I like swimming , but I do not like to swim here . 我 喜欢 游泳 , 但 我 不想 在 这里 游 . +I need to go to the bathroom . 我 要 去 方便 一下 . +I got bored with his long talk . 我 厌烦 了 他 的 长篇大论 . +Smoking is not permitted here . 这里 不 允许 抽烟 . +He is a very romantic boyfriend who brings me flowers each night . 他 是 个 非常 浪漫 的 男友 , 每晚 都 给 我 带 花 . +What time did you get up this morning ? 你 今天 几点 起 的 床 ? +I want to drink something cold . 我 想 喝 點 冷 飲 . +Both of you are wrong . 你們 倆 都 錯 了 . +Because of heavy snow , the plane from Beijing arrived 20 minutes late . 由 於 下 大雪 , 從 北京 来 的 班機 延遲 二十分 鐘 . +It is fun to speak in French . 说 法语 很 有趣 . +A year has twelve months . 一年 有 十二 個 月 . +Could I have the bill , please ? 請 把 帳單 給 我 好 嗎 ? +Tom does not like me . 汤姆 不 喜欢 我 . +Tom was captured . 汤姆 被 囚禁 了 . +Turn right at the intersection . 在 十字路口 右转 . +My mother hates writing letters . 我 媽媽 討厭 寫信 . +Your opinion is very important to us . 您 的 意見 對 我們 很 重要 . +Keep it up . 坚持 . +When did you start working here ? 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +Where do you attend high school ? 你 在 哪 裡 唸 高中 ? +It is very big . 它 很大 . +She worked hard . 她 努力 地 工作 . +It is raining . 在 下雨 . +He had not eaten in two days . 他 已經 兩天 沒 吃 東西 了 . +What time is it ? 現在 幾點 ? +Everybody in the village knew him . 村子 裡 的 每個 人 都 認識 他 . +I am not accustomed to getting up early . 我 不習 慣 早起 . +Did I tell you I got a new job ? 我 有 告訴 你 我 找到 新 工作 了 嗎 ? +Tom is in the attic . 湯姆 在 閣 樓裡 . +I get scared just walking past him . 只是 從 他 旁邊 走 過 去 我 就 覺得 害怕 . +She cooked us a delicious dinner . 她 為 我們 煮 了 一頓 美味 的 晚餐 . +He hopes to go abroad . 他 希望 到 國外 去 . +It has been cold since yesterday . 從 昨天 開始 變冷 了 ​ ​ . +I ordered a pizza on the phone . 我 打电话 订 了 个 披萨 . +I am coming to see you tomorrow . 我 明天 會 來看 你 . +She speaks both English and French . 她 會 講 英語 和法語 . +Do you know me ? 你 认识 我 吗 ? +You ought to get to work on time . 你 應該 準 時 上班 . +You should have rejected such an unfair proposal . 你 本该 拒绝 一个 那么 不 公平 的 提议 . +I know her very well . 我 非常 了解 她 . +I am staying for another few weeks . 我 還 要 再 待 幾個 星期 . +Do I need surgery ? 我 需要 做手术 吗 ? +I want Tom put in prison . 我 想 讓 湯姆進 監獄 . +Will you please lend me a stapler ? 請 你 借 給 我 一支 訂書機 好 嗎 ? +Do you have any Japanese beer ? 您 有 日本 啤酒 吗 ? +I was absent from work yesterday . 我 昨天 沒去 上班 . +How many children were injured ? 有 几个 小孩 受伤 了 ? +The toilet is backed up . 厕所 塞住 了 . +Excuse me , but where is the library ? 對 不起 , 但 圖書館 在 哪裡 ? +This is secret between you and me . 这 是 我们 之间 的 秘密 . +My brother loves taking pictures of mountains . 我 弟弟 很 喜欢 拍山 的 照片 . +She goes to a girls ' high school . 她 上 女子 高中 . +She likes to go to the library . 她 喜欢 去 图书馆 . +I swear that I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +Get real . 醒醒 吧 . +Apples were served as the dessert . 蘋果 被 用來 當作 甜點 . +I have not seen Tom since 1988 . 我 從 1988 年 起 就 沒有 看過 湯姆 了 . +They guarantee this clock for a year . 他們 保證 這個 時鐘 可用 一年 . +I trust you . 我 信任 你 . +She did not want to get involved . 她 不想 涉入 其中 . +How is your job going ? 工作 怎么样 ? +Tom is more active . 汤姆 更 活跃 . +We need more food . 我們 需要 更 多 食物 . +Have you finished reading that book yet ? 你 讀 完 那 本書 了 嗎 ? +Tom is a normal teenager . 湯姆 是 個 普通 的 青少年 . +We have to look after our parents . 我們 要 照顧 我們 的 父母 . +You were eavesdropping . 你 在 偷听 . +I am going to see what I can do . 我 要 看看 我 能 做 甚麼 . +His father is Japanese . 他 父親 是 日本 人 . +You should be ashamed of your ignorance . 你 應該 為 你 的 無知 感到 羞恥 . +How could it be done without my knowing ? 怎么 可能 在 我 不 知道 的 情况 下 做 完 呢 ? +Do you believe in ghosts ? 你 相信 鬼 存在 吗 ? +Tom got ripped off . 汤姆 被 宰 了 . +Long hair is out of fashion now . 长 发现 在 过时 了 . +I do not remember what Tom looked like . 我 不 記得 湯姆長 甚麼樣 . +Stick with it and you will succeed . 堅持 下來 , 你 就 能 成功 . +I do not have an ear for music . 我 不 懂 音樂 . +Yesterday is weather was not very good . 昨天 天氣 不是 很 好 . +I can not believe anyone anymore . 我 再也 不 相信 任何人 了 ! +According to the weather forecast , it will snow tomorrow . 天气预报 说 明天 会 下雪 . +You have done what you needed to do . 你 已经 尽力 了 . +The ball is that boy is prized possession . 这个 球 是 那个 男孩 的 宝贝 . +That is useless to me . 那 對 我 沒 有用 處 . +Are you going to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +You seem to be waiting for somebody . 你 看來 在 等 人 . +If we do not keep walking we will be late . 如果 我们 不 继续 赶路 , 我们 会 迟到 的 . +Do you need help ? 你 需要 幫助 嗎 ? +I do not like artificial flowers . 我 不 喜歡 假花 . +I would like to improve my English pronunciation . 我 想 改善 我 的 英语 发音 . +Your son is dating my daughter . 你 儿子 正在 和 我 女儿 约会 . +He likes taking a walk by himself . 他 喜歡獨自一人 散步 . +We raced toward the fire . 我們 急忙 跑 向 火 . +If you feed your dog properly , you can increase his lifespan . 合理 地 喂狗 可以 延长 宠物 寿命 . +He said , " It is nine o 'clock . " 他 说 , “ 九点 了 ” . +She found a job as a typist . 她 找到 了 一份 打字 員 的 工作 . +I always eat out . 我 總是 在 外面 吃 飯 . +I work every day but Sunday . 我 除了 星期天 外 每天 都 上班 . +Turn off the TV . 把 電視 關了 . +No one knows . 谁 也 不 知道 . +See you at the party . 在 派对 上见 +He is always with me . 他 一直 与 我 同在 . +Here , catch ! 这里 , 快 抓住 . +Is there anything I can do ? 有 什么 事 我 可以 做 吗 ? +There is a little water left . 还 剩 一点 水 . +The child cried loudly . 小孩 大声 呼叫 . +We should call the doctor . 我們 應 該 去 請 醫生 . +Destroy this temple . 摧毁 这个 寺庙 . +Some people criticized our decision . 一些 人 批评 了 我们 的 决定 . +How much is this camera ? 這個 相機 多少 錢 ? +Some of the essays are very interesting . 這些 文章 中 有 一些 非常 有趣 . +The volcano erupted suddenly , killing many people . 火山 突然 喷发 , 造成 了 多 人 死亡 . +You will soon get accustomed to your new school . 你 很快 就 会 适应 你 的 新 学校 . +She was wearing a blue coat . 她 穿 了 一件 蓝色 大衣 . +She wept bitterly . 她 痛哭 . +I 'd rather walk than take a bus . 我 寧願 走路 勝 過 搭 公車 . +Where does it leave from ? 它 从 哪里 离开 的 ? +Shake the bottle before using . 使用 前 搖動 一下 瓶子 . +Does he know that you love him ? 他 知道 你 愛 他 嗎 ? +He attributed his success to good luck . 他 把 他 的 成功 归功于 好运 . +Tom told Mary to ask John to help . 湯姆 告訴 瑪麗 去 找 約翰 求助 . +Did Tom reply ? 汤姆 有 回应 了 吗 ? +This directly concerns you . 这 与 你 有 直接 关系 . +Do you want me to call the police ? 你 想要 我 叫 警察 吗 ? +He has written a letter . 他 寫 了 一封信 . +Give me a glass of water , please . 请 你 给 我 一杯 水 . +Tom told me he wanted to win . 湯姆 告訴 我 他 想 贏 . +It is frozen hard . 真的 很 冰冷 . +Do you think Tom was satisfied ? 你 認為 湯姆 滿意 了 嗎 ? +Tom did not want Mary to know that he did not know how to do that . 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +I miss Mary is cooking . 我 想念 Mary 的 廚藝 . +Sport knows no borders . 体育 无国界 . +One million people lost their lives in the war . 100 万 人 在 战争 中 失去 了 生命 . +Do you have any siblings ? 你 有 兄弟姐妹 吗 ? +Can you come to the meeting tomorrow ? 你 明天 可以 來 參加 會議 嗎 ? +Is Tom a good guy ? 汤姆 是 好人 . +We do not need to attend that meeting . 我們 不必 參加 那場 會議 . +It is my belief that knowledge is power . 我 相信 , 知识 就是 力量 . +How long is this ? 這 有 多 長 ? +I will clean up the kitchen later . 我 等 一下 將 清理 廚房 . +This conference is very important . Do not miss it . 這場 會議 很 重要 , 不要 錯 過 了 ! +Rather than live a hundred years as a rabbit , live one day as a tiger . 寧 可 當 隻 老虎 活 一天 , 也 不 願 當 隻 兔子 過 一百年 . +I am short . 我 个头 矮 . +He threw a stone at the big dog . 他 朝着 大 狗 扔 了 块 石头 . +We have to have fun somehow . 我们 总得 找 点 乐子 . +A beautiful woman was seated one row in front of me . 一個 美麗 的 女人 坐在 我 前面 一排 . +I do not want to go there again . 我 不想 再次 去 那儿 . +Can you be ready to leave tomorrow ? 明天 你 能 準備 好 離開 嗎 ? +Did you have to get up very early this morning ? 你 今天 必須 起得 很早 嗎 ? +You only started this job an hour ago . 你 仅仅 是 一个 小时 前才 开始 这份 工作 的 . +She might be taller than you . 她 可能 比 你 高 . +I find that it is typical for him to come too late . 我 發現 他 就是 會 很 晚 才 來 這樣 的 人 . +She has no sense of beauty . 她 沒有 審 美感 . +Give me five more minutes . 再 给 我 五分钟 . +Sheep provide us with wool . 绵羊 提供 我們 羊毛 . +I do not know when he is coming . 不 知道 他 什么 时候 来 . +They sank ten enemy ships . 他们 使 10 艘 敌船 沉 了 +Would you like something to eat ? 您 想 吃 点 什么 吗 ? +Do you know if my father is still in the office ? 你 知道 我 父親 是否 還 在 辦 公室 嗎 ? +They left there the day before yesterday . 前天 , 他们 离开 了 那儿 . +You do not have any money . 您 沒有 任何 錢 . +Are you reading an interesting book ? 你 在 讀 有趣 的 的 書 嗎 ? +The noise frightened the baby . 噪声 吓到 了 婴儿 . +Tom does not have any idea why his wife left him . 湯姆 根本 不 明白 為 甚麼 他 的 妻子 離開 了 他 . +We enjoyed ourselves at the party . 我們 在 派 對 上 玩 得 很 開心 . +Tom and Mary have a very good relationship . 汤姆 和玛丽 关系 很 好 . +He made me sing on the stage . 他 讓 我 在 舞台 上 唱歌 . +Could you call me tonight , please ? 今晚 你 能 打 電話 給 我 嗎 ? +It is too expensive . 这 太贵 了 . +You are my best friend . 你 是 我 最好 的 朋友 . +Mary hugged her doll . Mary 擁抱 她 的 娃娃 . +The children are afraid of Tom . 孩子 們 怕 湯姆 . +We do not have class on Wednesday afternoons . 我们 周三 下午 没课 . +Are there any famous musicians on the stage ? 舞台 上 有 著名 音乐家 吗 ? +Let is proceed with the items on the agenda . 讓 我們 繼續 進行 議程 上 的 項目 . +It does not matter what you think . 你 怎么 想 无关紧要 . +Here is your bill . 这 是 账单 . +I always keep promises . 我 總 是 信守 承諾 . +Our house was robbed while we were away . 我们 走开 的 时候 , 房子 被 盗窃 了 . +Honesty is not always the best policy . 誠實不 總是 最好 的 策略 . +Tom hid under the table . Tom 躲 在 桌子 底下 . +In my opinion , she is correct . 在 我 看來 , 她 是 正確 的 . +" Tom is not here . " " Then where is he ? " “ 汤姆 不 在 那儿 . ” “ 那么 他 在 哪儿 ? ” +Who is next ? 下 一个 是 谁 ? +Do you know where he lives ? 你 知道 他 住 在 哪裡 嗎 ? +All he thinks about is himself . 他 只顾 自己 的 利益 . +He likes to travel alone . 他 喜歡 獨自 旅行 . +Please add up the bill . 請 確認 帳單 . +We can not just fire Tom . 我们 不能 仅仅 就 这样 炒 了 汤姆 +I am at work now , so I will call you later . 我 现在 在 上班 , 所以 晚点 打给 你 . +The lake is deepest at this spot . 这里 是 湖 最深 的 地方 . +I love coffee . 我 愛 咖啡 . +I want to stay . 我 想要 留下 . +We accept all major credit cards . 我們 接受 所有 主要 的 信用卡 . +I go shopping every other day . 我 每隔 一天 去 購物 . +That was an excellent meeting . 那 是 场 精彩 的 会议 . +Deal with them . 解决 他们 . +They decided to get married . 他們 決定 結婚 了 . +You should have come and talked to me . 你 應 該 來 跟 我 說 . +There is a bridge over the pond . 池塘 上 有 座 桥 . +He bent over backward to please his wife . 他 竭尽全力 地 讨好 他 老婆 . +This is the place where the battle of Hastings took place . 這裡 是 黑斯廷斯 戰役 發生 的 地方 . +My dream is to be a doctor . 我 的 梦想 是 成为 医生 . +You dropped your handkerchief . 你 的 手帕 掉 了 . +Hurry up . 快点 . +We expect to win . 我们 打算 赢 . +I often hiccup . 我 经常 打嗝 . +Do not stand near me . 不要 站 在 我 身邊 . +She put the money in the bank . 她 把 钱 放在 银行 里 . +The whole audience erupted in laughter . 哄堂大笑 . +Wood burns . 木材 燃燒 . +Ask her how much soup she wants . 問 她 要 多少 湯 ? +He usually goes to school by bus . 他 經常 搭 公車 上 學 . +Let is pray . 让 我们 开始 祈祷 吧 . +We want further information . 我们 想要 更 多 信息 . +It was heartless of him to say such a thing to the sick man . 他 对 一个 生病 的 男人 说 这种 事 真是 没良心 . +I will come with you . 我 會 和 你 一起 去 . +I dare say he is right . 我 敢 说 他 是 对 的 . +Leave me alone . 让 我 一个 人 待 着 . +I just saw Tom . 我 刚刚 见到 汤姆 了 . +I was expecting you last night . 昨天晚上 我 等著 你 來 . +She may be proud of her daughter . 她 可以 为 她 的 女儿 感到 骄傲 . +Will the train leave on time ? 這 班 火車 會 準 時 出發 嗎 ? +I will not let him come here again . 我 不 會 再 讓 他 來 這裡 . +Tom did not buy any bread . 湯姆 沒 有 買 甚 麼 麵 包 . +We do not want any freeloaders around here . 我們 不 希望 有人 在 這裡 吃 霸王餐 . +Though he is rich , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +We can not tell which is better . 我们 无法 辨别 哪个 更好 . +It is been raining since morning . 雨 從 早上 一直 下到 現在 . +Tom may have left already . 汤姆 可能 已经 走 了 . +I think you know that is not true . 我 认为 你 知道 那 不是 真的 . +He is good at playing tennis . 他 打网球 打 得 很 好 . +Please do not take pictures here . 请 别 在 这里 拍照 . +She taught music for thirty years . 她 教 了 三十年 的 音樂 . +I do not like swimming in pools . 我 不 喜歡 在 泳池 裡 游泳 . +He knew he could not win . 他 早就 知道 自己 不会 赢 . +Would you like to come along ? 你 想 一起 去 嗎 ? +He could not forsake his friend in trouble . 他 不会 抛 下落 难 的 朋友 不管 . +It took months . 它 花 了 几个 月 . +You never told me you could speak French . 你 從 沒 告訴 過 我 你 會 說 法語 . +Doing that is a waste of your time . 做 那事 是 浪费 你 的 时间 . +I will be with you tonight . 今晚 我 將 與 你 在 一起 . +He does nothing but complain from morning till night . 他 从早到晚 只是 在 抱怨 . +That was not nice . 那 不好 . +It is been a long time since we last saw each other . 真是 好久不见 啊 +He is at her side . 他 在 她 的 旁邊 . +I was stung by a bee . 我 被 蜜蜂 蛰了 一下 . +I have to win . 我 必须 赢 . +Do not get off the train till it stops . 列车 停下 前别 下车 . +I have heard this story before . 我 以前 听 过 这个 故事 . +I am good at tennis . 我 擅長 網球 . +I do not want anything to drink . 我 什么 都 不想 喝 . +Please shut the door . 請關 上門 . +Those flowers have died . 那些 花 死 了 . +Water is indispensable to life . 水 是 生命 所 不可 缺少 的 . +This whisky is very strong . 这种 威士忌 太烈 了 . +She managed to finish the work on her own . 她 想方设法 以 一己 之 力 完成 了 工作 . +I do not even want to try it . 我 甚至 不想 试试 . +This has nothing to do with me . 这 不关 我 的 事 . +It is convenient for me to see you at ten tonight . 我 今晚 10 点 见 你 比较 方便 . +Imagination affects every aspect of our lives . 想像力 影响 着 我们 生活 的 各个方面 . +Tom apologized to Mary for his rudeness . 汤姆 为 他 的 粗鲁 向 玛丽 道歉 . +Tom was late for dinner . 湯姆 晚餐 遲 到 了 . +I do not get it . 我 不 懂 . +He has three brothers . 他 有 三个 哥哥 . +I was very impressed by his story . 我 被 他 的 故事 感染 了 . +I know the girl playing tennis . 我 認識 這個 打 網球 的 女孩 . +He works in a big city hospital . 他 在 一間 很大 的 市立 醫院 工作 . +The butterfly flew away . 蝴蝶 飛 走 了 . +There are many sights to see in Kyoto . 在 京都 , 有 很多 的 景点 值得一看 . +I needed to speak to you about something . 我 需要 跟 你 說 點 事 . +Wait here . 在 这 等 着 . +That meal was simply divine . 那 頓 飯 簡直 好極 了 . +You talk as if you knew everything . 你 说 得 你 好像 什么 都 知道 似的 . +He paused to have a cigarette . 他 停下来 抽根 烟 . +Would you like to know how to prevent getting wrinkles ? 你 想要 知道 如何 避免 皺紋 嗎 ? +You are just being ridiculous . 你 就是 荒唐 . +Where is my watch ? 我 的 手 錶 在 哪 裡 ? +Tom would not hurt anyone . 湯姆 不 會 傷害 任何人 . +Tom should have already discussed that with you . 汤姆 应该 已经 跟 你 讨论 过 那事 了 . +She is always dressed in black . 她 總 是 一身 黑 . +There is only one window in my room . 我 的 房間 裡 只有 一个 窗戶 . +You are the only one I can trust . 你 是 我 唯一 能 信任 的 人 . +Tom says he needs a nap . 汤姆 说 他 需要 午睡 . +I get you . 我 了解 你 . +This school supplies students with textbooks . 这 所 学校 为 学生 提供 教科书 . +I had no right to interfere . 我 没有 权利 干涉 . +Come what may , I will not change my opinion . 無論 如何 , 我 不 會 改變 我 的 想法 . +What is the Wi @-@ Fi password ? Wifi 的 密碼 是 什麼 ? +I love going to the movies . 我 喜歡 看 電影 . +It makes no sense whatsoever . 无论如何 说 不通 . +He knows who they are . 他 知道 他们 是 谁 . +Research on the causes of cancer is very expensive . 有關 癌症 成因 的 研究 耗費 頗 巨 . +I have not heard that story yet . 我 還 沒有 聽 過 那個 故事 . +Promises are made to be broken . 诺言 就是 用来 打破 的 . +I have got something I want to show you . 我 有 东西 想 给 你 看看 . +We found the beds quite comfortable . 我們 發現 這些 床 很 舒服 . +Choose one person . 從 中 選擇 一 人 . +I am a little angry with you . 我 對 你 有 一點 生氣 . +Go wash up . 去 洗洗 吧 . +Complaining will not change anything . 抱怨 不 會 改變 任何 東西 . +The situation has become hopeless . 情況 變得 沒有 希望 了 . +Everyone I know uses Google . 我 认识 的 每个 人 都 用 谷歌 . +Flies and mosquitoes interfered with his meditation . 蒼蠅 和 蚊子 干擾 了 他 的 冥想 . +Feel free to get yourself a drink if you are thirsty . 觉得 渴 了 就 喝 点 . +I have a dog and a cat . 我 有一隻狗和一 隻 貓 . +Have not we met somewhere before ? 我们 好像 在 哪 见 过 ? +I will call you up tomorrow . 明天 我 會 打 電話 給 你 . +A plane is flying above the city . 一架 飛機 在 這個 城市 上空 飛行 . +Do not leave the water running . 不要 讓 水 一直 流 . +How long does it take from here to your house on foot ? 从 这里 步行 到 你家 要 多长时间 ? +Put the egg into boiling water . 把 蛋 放入 沸水 中 . +I got the money back from him . 我 拿到 了 他 還 給 我 的 錢 . +He is much taller than you . 他 比 你 高 得 多 . +He arrived at school exactly on time . 他 刚好 准时 到校 . +It is wrong to cheat at cards . 玩牌 作弊 是 錯誤 的 . +Would you mind explaining this ? 你 願意 解釋 嗎 ? +What are you girls doing ? 你們 這些 姑娘 在 做 甚麼 ? +He never goes out late at night . 他 從不 在 深夜 出門 . +The living room furniture was modern in style . 卧室 的 家具 是 现代 风格 . +They defended their country against the invaders . 他们 抵御 入侵者 , 保卫 了 国家 . +That is my coat . 那 是 我 的 大衣 . +Why is everyone being so nice to me all of a sudden ? 为什么 大家 突然 对 我 这么 好 ? +Lock the gate . 鎖 大門 . +Did Tom say anything ? Tom 有 說 什麼 嗎 ? +Can you take Tom to the hospital ? 您 能带 汤姆 上 医院 吗 ? +You 'd be surprised what you can learn in a week . 你 会 很 惊讶 你 在 一周 内能 学到 的 东西 . +Tom asked if I 'd found my key . 湯姆 問 我 找到 我 的 鑰匙 了 吗 . +He is driving at top speed . 他 全速 驾驶 着 . +He spent the morning reading a book . 他 花 了 一上午 的 時間 看書 . +This does not seem normal to me . 我 看 這 不 正常 . +Please turn on the radio . 請 打開 收音 機 . +Do you smoke ? 你 吸烟 吗 ? +He gathered his toys together . 他 收起 了 他 的 玩具 . +Do not do anything stupid . 请 不要 做 傻事 . +Mind your own business ! 管好 你 自己 的 事 吧 . +I would like to send these to Japan . 我 想 將 這些 寄 送到 日本 . +It is too hot for us to work . 太 熱 了 所以 我們 無法 工作 . +The weather is usually hot in July . 七月 天氣 經常 很熱 . +I talked to friends . 我 和 朋友 们 交谈 . +I do not care as long as you are happy . 只要 你 开心 就行了 . +I am very methodical . 我 很 有条理 . +She was not able to open the bottle . 她 無法 打開 這個 瓶子 . +They were listening to the radio . 他們 在 聽 收音 機 . +Cows are eating grass in the meadow . 牛 在 牧地 上 吃 草 . +I am a member of the swimming club . 我 是 游泳 社 的 成員 . +My sister often cries . 我 妹妹 经常 哭 . +He congratulated me on my success . 他 為 我 的 成功 恭 賀 我 . +Do not believe everything you hear . 不要 相信 你 聽到 的 每件事 . +Actually , I was wrong . 实际上 我 错 了 . +Can you save Tom ? 你 能 救 汤姆 吗 ? +I wish you 'd go . 我 希望 你 去 . +I am suffering from a bad headache . 我 頭 痛 得 厲害 . +America is very large . 美洲 很大 . +What do I have to do now that I am registered ? 我 注册 了 , 现在 该 干什么 呢 ? +When I got home , I was very hungry . 我 回到 家 的 时候 , 感觉 非常 饿 . +Tom could not tell Mary everything he knew . 汤姆 不能 告诉 玛丽 他 知道 的 所有 事 . +Lie down and rest for a while . 躺 下來 休息 一會兒 . +Tom did not know what Mary was talking about . 湯姆 不 知道 瑪麗 在 說 甚麼 . +I bought it for ten dollars . 我 花 10 美元 买 的 . +I need a towel . 我 需要 一塊 毛巾 . +You should have seen it . 您 本 應該 看看 它 的 . +I could not keep the tears from my eyes . 我 没法 忍住 我 的 眼泪 . +Father ran short of money and had to borrow some . 父親 缺錢 , 所以 他 必須 去 借 點 錢 . +She gave him a watch . 她 给 了 他 一块 表 . +Tom does not understand this . 湯姆 不 明白 這事 . +I am exhausted . 我 累死 了 . +The equator divides the globe into two hemispheres . 赤道 把 地球 分为 两个 半球 . +If you can not have children , you could always adopt . 如果 你 不能 有 孩子 , 你 总能 领养 . +I called Tom . 我 給 湯姆 打 了 電話 . +When did you get to know Tom ? 你 是 甚麼 時候 認識 湯姆 的 ? +This is a picture of my mother . 這 張 是 我 媽媽 的 照片 . +I think you will have very little difficulty in getting a driver is license . 我 想 你 要 拿到 驾照 根本 不难 . +Tom is growing a mustache . 湯姆 留著 小 鬍 子 . +They are not afraid of death . 他们 不怕死 . +First impressions matter . 第一印象 很 重要 . +He is an American . 他 是 美国 人 . +My sister has made remarkable progress in English . 我 妹妹 的 英语 有 了 明显 的 进步 . +His request is as follows . 他 的 要求 如下 . +I hope I can see you soon . 我 希望 很快 就 能 見 到 你 . +There is no film in this camera . 這個 相機 裡 沒有 胶卷 . +It is nonsense to try that . 这种 尝试 很 荒谬 . +The airplane made a safe landing . 這 架 飛機 安全 著陸 了 . +You may park here . 这里 可以 停车 . +I feed my cat every morning and every evening . 每天 早晚 , 我 给 我 的 猫 喂食 . +Who is the girl at the door ? 在 门口 的 女孩 是 谁 ? +You can go anywhere you want . 你 可以 去 任何 你 想去 的 地方 . +Tom wants to go to Japan . 湯姆 想 去 日本 . +He hates air travel . 他 讨厌 坐飞机 旅行 . +She accused me of telling a lie . 她 指責 我 說 謊 . +His son is criminal activities caused him great pain . 他 儿子 的 犯罪行为 给 他 带来 了 很大 的 痛苦 . +Auckland is a city in New Zealand . 奥克兰 是 一座 新西兰 的 城市 . +This one is yours . 這個 是 你 的 . +I watched the game from beginning to end . 那场 比赛 , 我 从头 看到 尾 . +For the time being , I am studying French at this language school . 目前 , 我 正在 這 所 語言學 校學 習法 語 . +Tom likes to listen to music while he is doing his homework . Tom 很 喜欢 一边 听歌 一边 做作业 . +She is married to an American . 她 嫁給 了 美國 人 . +I never make a speech without being nervous . 我 没有 一次 演讲 的 时候 是 不 紧张 的 . +It does not surprise me . 这 并 不让 我 惊讶 . +I want to go to the movies today . 我 今天 想 去 看 電影 . +He commanded me to leave the room immediately . 他 命令 我 立刻 离开 这个 房间 . +Could I have a subway map , please ? 給 我 一張 地下 鐵 的 路線 圖 好 嗎 ? +Everyone in the room checked their watches at the same time . 房间 里 的 所有人 都 同时 看 了 看 自己 的 手表 . +Food should not be wasted . 食物 不該 被 浪費 . +She was ashamed of herself for her carelessness . 她 为 自己 的 粗心 感到 羞耻 . +Go upstairs and bring down my trunk . 上樓 把 我 的 旅行箱 拿下 來 . +He is proficient in Farsi . 他 精通 波斯语 . +An ugly man knocked on my door . 一个 丑 男人 敲 了 我 的 门 . +I majored in chemistry at the university . 我 在 大學 主修 化學 . +You do not know how worried I am . 你 不 知道 我 有 多 担心 啊 . +She married a rich old man . 她 嫁給 了 一個 富有 的 老 男人 . +We are not ready to leave . 我们 还 没有 准备 好 离开 . +I do not want to hear any more excuses . 我 不想 再 听到 其他 借口 了 . +The oranges in this bag are rotten . 這個 袋子 裡 的 柳橙 都 爛 了 . +There are some books on the desk . 书桌上 有 几本书 . +I just wanted to check my email . 我 只 想查 一下 我 的 电子邮件 . +They all did it . 他们 都 做 了 . +My hobby is collecting stamps . 我 的 嗜好 是 集 郵 . +It was cloudy yesterday . 昨天 是 多 雲 . +Your father is tall . 你 爸爸 很 高 . +She had a little money . 她 有 一点 钱 . +As far as I know , she is still missing . 据我所知 , 她 仍然 失踪 . +Tom always sings out of tune . 汤姆 唱歌 总 跑调 . +I do not like English . 我 不 喜歡 英語 . +Everything is working fine . 一切正常 . +The boy does not know how to behave . 這個 男孩 不 懂 禮貌 . +He is about the same age as you are . 他 跟 您 年纪 差不多 . +He gave his life for his country . 他 把 他 的 一生 獻給 了 他 的 國家 . +It is important for old people to stay strong . 老人 保持 强健 很 重要 . +I had difficulty working out the problem . 我 在 解決 這個 問題 上 有 困難 . +He will not make it to old age . 他 不 會 長壽 . +" I think so , too , " she chimed in . “ 我 也 那样 觉得 . ” 她 附和 道 . +Do not forget your money . 不要 忘记 你 的 钱 . +I believe that he is happy . 我 相信 他 是 幸福 的 . +We sell orange juice . 我們 賣 柳橙汁 . +She is collecting material for a book . 她 为 一 本书 收集 材料 . +Be careful with it . 当心 它 . +Happy New Year ! 元旦 快 樂 ! +I agree with some of your opinions . 我 同意 你 一部分 的 意见 . +Is Tom able to speak French ? Tom 能 说 法文 吗 ? +Tell me when to start . 告诉 我 什么 时候 开始 . +She is about my age . 她 大約 跟 我 同年 紀 . +I heard him go out . 我 聽到 他 出去 了 . +How long will you be staying here ? 您 將 在 這裡 待 多久 ? +It is a very sad tale . 这 是 一个 非常 悲伤 的 故事 . +Peace talks will begin next week . 和平 會 談 將 在 下週 開始 . +They greeted me with a smile . 他們 面帶 微笑 向 我 打招呼 . +We had three tries and failed each time . 我们 试 了 三次 , 都 失败 了 . +Which is your book ? 哪 本 是 你 的 书 ? +Will you take part in the ceremony ? 你 會 參加 這個 儀式 嗎 ? +He had a hungry look . 他 面有 飢色 +Why are you always shouting ? 你 為 什麼 總要 大叫 ? +I collect foreign coins . 我 收集 外國 硬幣 . +Tom is waiting in the living room . 汤姆 正在 客厅 里 等 着 . +It was ten years ago that he first came to Japan . 他 第一次 來到 日本 是 在 十年 前 . +You look as healthy as ever . 你 看起来 和 以前 一样 健康 . +That is absolutely right . 那 是 絕對 正確 的 . +The dog growled at the strange man . 狗 對著 這個 陌生 男子 咆哮 . +I can not ask Tom right now . 我 現在 不能 問 湯姆 . +They freed the prisoner . 他們 釋放 了 犯人 . +We are not late . 我们 没 迟到 . +He is good at flying kites . 他 擅長 放 風箏 . +I think it is very difficult . 我 認為 它 很 難 . +He died yesterday . 他 昨天 去世 了 . +I have to paint it . 我 必須 把 它 漆 上 油漆 . +I am unable to finish my homework . 我 無法 完成 我 的 作業 . +We will be late for dinner . 我們 的 晚飯 要 晚點 吃 了 . +I am sure that this is a fresh water fish . 我 肯定 这 是 淡水鱼 . +In case of fire , push the button . 萬 一 發 生火 災 , 按 下 按 鈕 . +He is playing music . 他 在 演奏 音樂 . +The castle is across the river . 城堡 在 河 的 對面 . +Ask him where he parked his car . 问 他 把 他 自己 的 车 停 在 哪里 了 . +This was not cheap , was it ? 這 不 便宜 , 是 嗎 ? +I will pick you up around six . 我 會 在 六點鐘 左右 接 你 . +Is it really worth it ? 这 真的 值得 吗 ? +Tom is really gifted . 湯姆真 有 才 華 . +You are from Hokkaido , are not you ? 你 來 自 北海道 , 不是 嗎 ? +It started raining as soon as we got home . 我們 才 一 到 家 就 下起 雨 來 了 . +He gets a haircut three times a month . 他 一个月 剪 三次 头发 . +She finally reached the hotel . 她 終 於 到 達 了 酒店 . +I know what I did was wrong . 我 知道 我 做 错 了 . +The snow has disappeared . 雪 消失 了 . +I will lend you my textbook . 我 會 借 給 你 我 的 課本 . +She likes to go to the sauna . 她 喜欢 去 桑拿 . +We have been asked to not do this anymore . 我们 被 要求 不再 这么 做 . +He has great confidence in himself . 他 对 自己 很 有 自信 . +Are you afraid of being fired ? 你 害怕 被 炒鱿鱼 吗 ? +Columbus argued that he could reach India by going west . 哥伦布 提出 , 向 西 航行 可以 到达 印度 . +I am tired of my work . 我 厌倦 了 我 的 工作 . +You have no sense of direction . 你 一点 方向感 都 没有 . +It is absolutely impossible to do so . 絕對 不 可能 這樣 做 的 . +Now it is your serve . 現在 該 你 發球 . +I will call you up later . 我 稍 後 會 打 電話 給 你 . +I will lend you this dictionary . 我 會 借 給 你 這 本 字典 . +It is rude to point at others . 指著 別人 是 不 禮貌 的 . +If I 'd known the truth , I 'd have told you . 如果 我 知道 真相 , 我 就 告诉 你 了 . +We are the same age . 他 和 我 同岁 . +His comment was concise and to the point . 他 的 评论 简洁 且 击中要害 . +Do you have these shoes in my size ? 你們 這款 鞋子 有 我 的 尺寸 嗎 ? +You must go outside if you want to smoke . 如果 您 想 抽烟 的话 , 您 必须 出去 . +He drank three bottles of beer . 他 喝 了 三瓶 啤酒 . +This bicycle is mine . 這輛 自行 車 是 我 的 . +Whose notebook is that ? 這 臺 筆 記 本 電 腦 是 誰 的 ? +I think we should talk about this now . 我 认为 我们 现在 就 该 谈谈 这个 . +What did you make ? 你 做 了 什么 ? +I have not made up my mind yet . 我 還 沒有 下定 決心 . +The boy had a red face . 這個 男孩 有 一張 紅潤 的 臉 . +Are you nervous ? 你 紧张 吗 ? +Tom can not work this evening . 湯姆 今晚 不能 工作 . +He stressed the convenient aspects of city life . 他 强调 都市生活 的 便利 方面 . +Our school begins at eight @-@ thirty . 我們 學校 在 八點半 開始 上課 . +I do not know what we will do . 我 不 知道 我们 将 会 做 什么 . +My brother lives in a small village . 我 的 兄弟 住 在 一個 小村 莊裡 . +She put on socks . 她 穿 上 袜子 . +I am happy to see you here . 我 很 高興 在 這裡 看到 你 . +They are all college students . 他們 都 是 大學 生 . +Tom was hit by a truck and died instantly . 湯姆 被 卡車 撞到 而且 當場 死亡 . +Do you want rice ? 你們 要 米 飯 嗎 ? +I was wrong . 我 搞错 了 . +I am sure they will win . 我 相信 他們 會 贏 . +Unfortunately the telephone was out of order . 不幸 的 是 電話 壞 了 . +We must learn to live in harmony with nature . 我们 必须 学会 与 自然 和谐 共处 . +She left her umbrella in the train . 她 把 她 的 雨 傘 留在 火車 上 了 . +I found the comic book very interesting . 我 發現 這 本漫畫 書 非常 有趣 . +Keep oil away from the fire . 讓 油 遠離 火 . +I am not well at all . 我 一点 都 不好 . +It is windy today . 今天 有 风 . +He has a great deal of experience . 他 有 豐富 的 經驗 . +I have to go home . 我 该 回家 了 . +You may choose whichever book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +I did not feel like buying a car . 我 不想 買車 . +Tom is too old to work . 湯姆 老 得 不能 工作 了 . +Mary is not really sick . She is only pretending to be sick . 玛丽 不是 真病 . 她 只是 装病 . +Do you know the reason ? 你 知道 是 什麼 原因 嗎 ? +It is too long . 它 太 長 了 . +His wife opened the door for him . 他 的 妻子 為 他 開門 了 . +Thank you for your invitation . 感謝 您 的 邀請 . +She covered the mouthpiece of the phone with her hand . 她 用 手 捂住 了 电话 的 话筒 . +No one listened to me . 沒 有人 聽 我 的 . +I could not find it anywhere . 我 在 任何 地方 都 没能 找到 . +Are you busy at work ? 你 工作 很 忙 嗎 ? +Academic fraud is more common than you might think . 学术 造假 比 你 想象 的 普遍 . +Tom sent me there . 湯姆 送 我 去 了 那裡 . +All the boys in class worked hard . 課 堂上 所有 的 男生 都 很 用功 . +I made a mistake . 我 犯 了 一個 錯 . +It is hard for me to believe this . 我 觉得 这 难以置信 . +Who is your favorite TV star ? 谁 是 你 最 喜爱 的 电视 明星 ? +You are a student . 你 是 學生 . +Do you know what time it is in Boston ? 请问 现在 波士顿 是 几点钟 ? +You will be sorry for it some day . 有 一天 这 会 让 你 遗憾 的 . +What is your favorite iPad app ? 你 最 喜欢 的 iPad 应用 是 什么 ? +He got out from under the car . 他 從 車子 底下 出來 了 . +She employed him as a programmer . 她 僱用 他 作 程式 設計 師 . +He and his wife tried to work out their problems , but could not . 他 和 他 的 妻子 試圖 解決 他們 的 問題 , 但 沒有 辦法 . +We had a nice time last night . 我們 昨晚 過 得 很 開心 . +Two tears fell down her cheeks . 两滴 眼泪 从 她 的 脸颊 滑落 下来 . +This place is large , is not it ? 這個 地方 很大 , 不是 嗎 ? +He is older than she is by three years . 他 比 她 大 三岁 . +You do not have to go to school on Sunday . 你 没 必要 周日 去 上学 . +Let is not waste time arguing about it . 我们 别 再 浪费时间 争论 了 . +A bookstore in that location would not make enough money to survive . 那個 地點 的 書店 無法 賺 足夠 的 錢 生存 下去 . +It is getting to be time for me to head back . 差不多 该 回去 了 . +A cafeteria is a self @-@ service style restaurant . 自助餐 廳 是 一種 自助式 的 餐廳 . +Try to avoid making any more trouble . 盡量 避免 製 造 任何 更多 的 麻煩 . +Better be the head of a cat than the tail of a lion . 寧為貓 頭 不 為 獅尾 . +Her hobby is collecting stamps . 她 的 嗜好 是 集 郵 . +A great responsibility lies on his shoulders . 他 身肩重任 . +Last summer I traveled to Italy . 去年 夏天 我 去 意大利 旅行 . +It was very hot this afternoon . 今天下午 非常 炎熱 . +This is not love . 这 不是 爱 . +He goes to school to study every day . 他 每天 去 学校 学习 . +I want to spend the whole day with you . 我 想 跟 你 度 過 一整天 . +You got me . 算你狠 . +I did not suspect anything . 我 沒有 懷疑 任何 事 . +No problem at all ! 什么 问题 都 没有 ! +None of those books are useful . 這些 書 都 沒 有用 . +Do your gums bleed ? 你 的 牙齦 流血 嗎 ? +I want more . 我 想要 更多 . +Is bungee jumping frightening or fun ? 高空 彈 跳 是 恐怖 還是 好玩 ? +We have barely enough bread for breakfast . 我们 早饭 的 面包 刚够 吃 . +This dictionary has about 40,000 entries . 这本 字典 包含 了 约 4 万个 词条 . +No one lived on the island at that time . 那个 时候 , 没有 人 在 这个 岛上 生活 . +I want to eat something delicious . 我 想 吃 点 好吃 的 . +I want a few empty glasses . 我 要 一些 空 的 玻璃杯 . +He sells cars . 他 賣 車子 . +There is a fork missing . 少 一把 叉子 . +I do not care what happens . 我 不在乎 發生 什麼 事 . +He makes the most of his opportunities . 他 充分利用 他 的 機會 . +How long will the meeting last ? 會議 持續 多久 ? +I am very happy to see you . 我 很 高兴 见到 你 . +I really want to speak English fluently . 我 很 想 流利地 说 英语 . +It was a long letter . 它 是 封 长信 . +How about another beer ? 再 来 一杯 啤酒 怎么样 ? +Tom has contributed a lot of money to this hospital . 湯姆 捐獻 了 很多 錢 給 這間 醫院 . +He gave it a new name . 他 给 了 它 一个 新 名字 . +Tom looked at me and smiled . 汤姆 看着 我 笑 了 . +That river is dangerous to swim in . 在 這條 河裡 游泳 很 危險 . +It will cost at least five dollars . 它 至少 要 花 五美元 . +Let is meet here again tomorrow . 讓 我們 明天 再 在 這裡 見 面 吧 . +I still need to talk to you . 我 还有 话 要 对 您 说 . +The refrigerator is open . 冰箱 開著 . +She will be seventeen next year . 她 明年 將 滿 十七 歲 . +I never want to leave Boston . 我 從 不想 離開 波士 頓 . +He is a student at a high school . 他 是 一名 高中 學生 . +I have done a lot this week . 我 在 本週 做 了 許多 . +I am glad that you guys are here . 我 很 高兴 你们 都 在 . +There are many books in my room . 我 房間 裡 有 很多 書 . +Get them before they get us . 在 他们 控制 我们 之前 , 我们 先 制服 他们 . +Arrangements have already been made . 已经 安排 好 了 . +This is a friend of mine . 這 是 我 的 朋友 . +How much is it ? 它 多 貴 ? +The Italians often drink coffee . 意大利人 常常 喝咖啡 . +She had a basket full of apples . 她 有 一整 籃 的 蘋果 . +This book is very thick . 这 本书 非常 厚 . +Tom was at school all day . 汤姆 一整天 都 在 学校 . +There is a village over the mountain . 在 山巔 上 有 一個 村莊 . +Seeing the fresh lobster made me hungry . 看见 新鲜 龙虾 , 我 有 了 食欲 . +She is always finding fault with her neighbors . 她 总是 找 她 邻居 的 茬 . +Jealousy was the motive for the murder . 嫉妒 是 謀殺 的 動機 . +I owe my success to his help . 我 的 成功 要 归功于 他 . +I have a friend living in London . 我 有 一個 住 在 倫敦 的 朋友 . +" Whose chair is this ? " " It is mine . " “ 这 是 谁 的 椅子 ? ” “ 它 是 我 的 . ” +I felt as if I were in a dream . 我 感觉 就 像 做梦 一样 . +Something is starting to happen . 有 什么 要 开始 了 . +I was writing a letter when he came . 當 他 進來 的 時候 , 我 正在 寫信 . +Lots of Italians went to Australia . 許多 義 大利 人 去 了 澳大利 亞 . +He hid himself behind the door . 他 把 自己 藏 在 門 後 面 . +I have been told that you are a very competent person . 有人 說 你 是 個 很 有 能力 的 人 . +Wherever you go , I will follow you . 無論 你 去 哪裡 我 都 會 跟著 你 . +I have a high temperature . 我 發燒 了 . +Keep working . 繼續 工作 ! +Will you go to the party tonight ? 你 今晚 會去 派對 嗎 ? +You must always tell the truth . 你 必須 永遠 說 實話 . +I could not remember their names . 我 不 記 得 他們 的 名字 了 . +Stand aside . 一边 站 着 . +Oh please ! 噢 拜托 了 ! +You are a good person . 你 是 一個 好人 . +I am divorced . 我 离婚 了 . +The library is in the middle of the city . 图书馆 位于 市 中央 . +Japan is located in the Northern Hemisphere . 日本 位 於 北半球 . +Pass me the butter , please . 請 把 奶油 遞 給 我 . +" How old are you ? " " I am sixteen . " 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +The shopping center is one mile ahead . 這個 購物 中心 在 前面 一英里 遠 的 地方 . +Do you think you could make a little less noise ? 你 觉得 你 能 少 发点 噪音 吗 ? +They work only during the day . 他們 只 在 白天 工作 . +You should ask your father for his advice and follow it . 你 應 該 問 你 父親 的 忠告 並 遵守 它 . +I do not want to play cards . 我 不想 玩紙牌 . +Please tell me what I should do . 請 告訴 我 應 該 做 什麼 . +I spent the whole day reading that novel . 我 一整天 都 在 看 这本 小说 . +I am very busy . 我 很忙 . +Let is do it another time . 改天 再 說 吧 . +No news is good news . 没 消息 就是 好消息 . +I really like what I do . 我 真 喜欢 我 做 的 事 . +Which do you like better , dogs or cats ? 狗 和 猫 你 更 喜欢 哪 一个 ? +She slapped his face . 她 摑 了 他 的 臉 . +There are more girls than boys at our school . 在 我們 學校 裡 女孩 比 男孩 多 . +Please do not misunderstand me . 千万 别误会 我 的 意思 . +We have to leave in five minutes . 我们 必须 在 五分钟 之内 离开 . +I think your work is all right . 我 觉得 你 的 工作 可以 . +That is the computer on which he writes his articles . 那 就是 那 台 他 用来 写文章 的 电脑 . +Even a child could do it . 连 小孩儿 都 会 做 . +My father is car is new . 我 爸爸 的 車 是 新 的 . +She studied English in the morning . 她 上午 學習 英語 . +How many does he want ? 他 要 多少 ? +Tom translated a letter from French to English for his boss . 汤姆 为 他 的 老板 把 一封信 从 法语 翻译成 了 英语 . +We often hear you sing . 我们 经常 听到 你 唱歌 . +What we need is help . 我们 需要 的 是 帮助 . +Rice is sold by the kilogram . 米 以 公斤 為 單位 來 出售 . +If you do not want to go , you do not need to . 如果 你 不想 去 , 就 不必 去 了 . +What is your job here ? 你 在 这里 的 工作 是 什么 ? +I will give you a ring tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +When did you go to work ? 你 什么 时候 上班 ? +Do you study English ? 您 学 英语 吗 ? +What do you usually eat for lunch ? 你 一般 中午饭 吃 什么 ? +Let me have a look at your notebook . 請 給 我 看 一下 你 的 筆記本 電腦 . +It is very easy to miss this kind of mistake . 这种 错误 很 容易 被 人 忽视 . +He was elected president . 他 被选为 总统 . +Could I get one more beer , please ? 再 給 我 一瓶 啤酒 好 嗎 ? +We went into the red last year . 我们 去年 遇到 了 赤字 . +Father bought me the latest model motorcycle . 父親 給 我 買 了 最新型 的 摩托 車 . +Nobody can help me . 没有 人 能 帮 我 . +Where is the elevator ? 電梯 在 哪裡 ? +How do you go to school ? 你 是 怎麼 去 上學 的 ? +Do you have a car ? 您 有 车 吗 ? +Tom did not know who it was . 湯姆 不 知道 那 是 誰 . +You must control yourself . 你 必須 控制 自己 . +Tom did not show up at the party yesterday . 湯姆 昨天 沒有 出現 在 派 對 上 . +Did you pay for the book ? 你 付 錢 買 這 本書 了 嗎 ? +Tom knows I want to leave as soon as possible . 湯姆 知道 我 想 盡早 離開 . +That thought crossed my mind . 这 应证 了 我 的 想法 . +Do you think it is a trap ? 你 認為 它 是 陷阱 嗎 ? +I do not sing very well . 我 唱歌 不太好 . +She was dressed in wool . 她 穿著 羊毛衣 . +My uncle never writes letters . 我 的 叔叔 從來 不寫 信 . +There are lots of trees in the countryside . 乡间 有 很多 树 . +Please write with a pencil . 請用 鉛筆 寫 . +The dress fits you very well . 这 条 裙子 你 穿着 很 合身 . +Nobody likes being laughed at . 沒 有人 喜歡 被 人 嘲笑 . +I did that , even though I did not really need to . 尽管 我 并 不是 真的 需要 这样 做 , 我 还是 做 了 +There was nothing the doctors could do . 醫生 甚麼 也 做不了 . +Mary will not listen to her friend is advice . 瑪麗 不 會 聽 她 朋友 的 忠告 . +The report is utterly false . 这份 报告 完全 错误 . +No comment . 禁止 评论 . +Is your homework finished ? 你 的 作業 做 完 了 嗎 ? +Is there anyone in the room ? 房间 里 有人 吗 ? +You look very happy this morning . 你 今天上午 看 起來 很 高興 . +Tom is not a friendly guy . 汤姆 不是 个 友好 的 家伙 . +Tom is office is on the third floor . 汤姆 的 办公室 在 三 楼 . +I wonder if anything happened to him . 我 怀疑 有 什么 事 在 他 身上 发生 了 . +This time , it is different . 這次 不 一樣 . +See you soon ! 一会儿 见 ! +I am really not happy about it . 我 對 此 真不 高興 . +He is acquainted with the mayor . 他 认识 市长 . +I would like to have another cup of coffee . 我 想 再 要 一杯 咖啡 . +Stay and have a drink with us . 留下来 和 我们 一起 喝酒 吧 . +What time do you start work ? 你 什么 时候 开始 工作 ? +What do you think of this sweater ? 你 觉得 这件 毛衣 怎么样 ? +He left his luggage at the station . 他 把 他 的 行李 留在 車站 . +It is cold this morning . 今天 早上 冷 . +I love this song . 我 爱 这 首歌 . +Be nice . 友善 点 . +Now is the time to decide whether you really want to get married or not . 现在 是 你 决定 是不是 真 要 结婚 的 时候 . +This drink is on the house . 這種 飲料 是 免費 招待 的 . +She is ashamed of what she is done . 她 为 自己 所 做 的 事 感到 羞耻 . +She asked us to leave her alone . 她 要求 我們 別 吵 她 . +Winds from the sea are moist . 从 海洋 吹来 的 风 感觉 湿漉漉 的 . +It would be wonderful if you could sing at our wedding . 你 能 在 我们 的 婚礼 上 唱歌 就 太好了 . +It is up to you . 由 你 來 決定 . +I am blind in the right eye . 我 的 右眼 瞎 了 . +We should have studied harder . 我们 本该 更加 努力学习 . +I wish she had come last night . 要是 她 昨晚 來 就 好 了 . +The people of London are very proud of this bridge . 倫敦 人 對 這 座 橋 感到 非常 自豪 . +She gave us lots to eat . 她 給 了 我們 很多 吃 的 東西 . +I will come to your place . 我 會 來 你 的 地方 . +This is too big . 這個 太 大 了 . +She rested her head on her mother is shoulder . 她 把头 垂 在 她 母亲 的 肩上 . +That is a pencil . 那 是 一支 铅笔 . +Tom is very quiet . 湯姆 很 安靜 . +He took a week off . 他 休 了 一周 的 假 . +The news made her happy . 这 消息 让 她 很 高兴 . +Follow me . 请 跟我来 . +We are to be married next Sunday . 我们 将 于 下 周日 结婚 . +The girl was always following her mother . 那 女孩 不管 到 哪兒 都 跟著 母親 . +Recently I moved to another apartment . 最近 我 搬到 另 一棟 公寓 . +I get depressed by the slightest things . 我 為 小 事情 覺得 沮喪 . +Tom said it was cold in Boston this time of year . 汤姆 说 一年 中 这时候 波士顿 很 冷 . +He kept me waiting all morning . 他 讓 我 等 了 整整 一上午 . +You should come home before six . 你 應 該 六點 前 回家 . +She pretended that she was sick . 她 假裝 生病 了 . +Answer the question . 回答 問題 . +Tom did not seem to want to tell me why he 'd done that . 汤姆 似乎 不想 告诉 我 为什么 他 要 那样 做 . +I would like to exchange this shirt that I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +I believe that story . 我 相信 那个 故事 . +There are a lot of parks in London . 伦敦 有 很多 公园 . +I like candlelight . 我 很 喜欢 烛光 . +Try it once again . 再试一次 . +Tom works in a windowless office . 汤姆 在 没有 窗户 的 办公室 里 工作 . +I just remembered that I was supposed to buy a loaf of bread . 我 才 想 起来 我 之前 该 买 个 面包 . +Quite a few people have two cars . 不少 人 有 兩輛 汽車 . +Tom bought a new notebook . 汤姆 买 了 新 笔记本 . +It seemed to be cheap . 似乎 很 便宜 . +Tom wondered what he could do . 汤姆 不 知道 他 能 做 什么 . +I know the man sitting over there . 我 認識 坐在 那裡 的 那個 男人 . +What are you concerned about ? 你 在 担心 什么 呢 ? +We are classmates . 我们 是 同学 . +Who is the boy swimming over there ? 在 那邊 游泳 的 男孩 是 誰 ? +My zipper got stuck . 我 的 拉链 卡住 了 . +Hurry , and you will catch the train . 快 一点 , 你 就 能 赶上 火车 了 . +Sydney is far from here . 雪梨 離 這裡 很 遠 . +There is no point in pretending to be sick . 装病 是 没用 的 . +I am proud of the work I have done here . 我 為 我 在 這裡 完成 的 工作 自豪 . +I have been to the barber is . 我 去 了 理发店 . +You can see the roof of the house from there . 你 能 從 那裡 看到 房子 的 頂 . +Is it true Tom can not swim ? 汤姆 真的 不会 游泳 吗 ? +No one is going to find you . 没有 人 要 去 找 你 . +It is really hot here in the summer . 这里 夏天 非常 热 . +They say that he will never return . 他们 说 他 再也不会 回来 了 . +Is Tom afraid of dogs ? 汤姆 怕 狗 吗 ? +He is not home . 他 不 在家 . +You guys have to hurry . 你们 这些 家伙 得 快点 . +I have to take my medicine every six hours . 我 每 六小时 要服 一次 药 . +I try not to think about it . 我 試著 不 去 想 了 . +You had better go at once . 你 最好 馬 上 走 . +We played soccer yesterday . 我们 昨天 踢 了 足球 . +I cannot give you a definite answer today . 我 今天 无法 给 您 一个 最终 的 答复 . +I can not survive without air conditioning in the summer . 我 夏天 没有 空调 会 死 . +The war began three years later . 三年 後 戰爭 開始 了 . +Zero comes before one . 零 在 一 前面 . +The Japanese Parliament today officially elected Ryoutarou Hashimoto as the country is 52nd prime minister . 日本 國會 今天 正式 選舉 了 橋本 龍 太郎 作為 全國 第 52 屆 總理 . +Keep looking . 繼續 看 ! +You speak good English . 你 的 英語 說 得 很 好 . +You are a professor . 你 是 教授 . +I can not undo it . 我 不能取消 它 . +There is a page missing . 有 一页 缺 了 . +We are not going on vacation . 我们 不 去 度假 . +I do not feel comfortable here . 我 在 這裡 感到 不 舒服 . +The cat is adorable . 這 隻 貓 很 可 愛 . +The soup is too hot . 汤太 烫 了 . +He went to Italy in order to study music . 為了 研讀 音樂 他 去 了 義 大利 . +I am open to suggestions . 我 愿意 接受 建议 . +What did you do with that book ? 你 用 那 本書 做 什麼 ? +There was a big fire last night . 昨晚 有 一場 大火 . +She pretended to be a student . 她 假装 是 学生 . +I am going to Hawaii next year . 我 明年 要 去 夏威夷 . +The bus was two minutes early . 巴士 早 了 兩分鐘 . +Are you busy today ? 你 今天 忙 吗 ? +I think it is better for us to adopt his plan . 我 认为 采用 他 的 计划 对 我们 比较 好 . +In my opinion , you are wrong . 在我看来 , 你 错 了 . +He is very fond of science fiction . 他 非常 喜欢 科幻小说 . +His response was contrary to our expectations . 他 的 回应 出乎 我们 的 意料 . +The other day I went fishing for the first time in my life . 前 几天 人生 第一次 去 钓鱼 了 . +Put your guns down . 放下 你 的 枪 . +I do not know anything about their relationship . 我 對 他們 的 關 係 一 無 所知 . +I am not moving to Boston . 我 没有 向 波士顿 走 . +I will do it . 我 會 做 的 . +Please leave me alone . 请 让 我 静 一静 . +Which book is yours ? 哪 本 是 你們 的 書 ? +He hates cleaning his room . 他 讨厌 打扫 自己 的 房间 . +You must always keep your hands clean . 你 应该 一直 让 手 保持 干净 . +She stayed in that area for a short while . 她 在 那 地方 待 了 片刻 . +You have a wonderful voice . 你 有 副 好 嗓音 . +It is not possible to stop here . 在 这 停留 , 这 不 可能 . +Do you know how to cook meat ? 你 知道 怎麼 煮肉 嗎 ? +His office is very close to mine . 他 的 辦 公室 跟 我 的 非常 近 . +Tom is face is red . 汤姆 的 脸红 了 . +Could you please autograph this book ? 請 你 在 這 本書 上 簽名 好 嗎 ? +No one came except Mary . 除了 瑪麗 沒 有人 來 . +It is almost time for the cherry blossoms . 幾乎 是 櫻花 綻放 的 時候 了 . +We will begin work soon . 我們 立即 開始 施工 . +Tom has blue eyes . 汤姆 的 眼睛 是 蓝色 的 . +I can not put up with this noise . 我 不能 忍受 這個 噪音 . +We tried to compromise with them . 我們 試著 和 他們 妥 協 . +That is great . 那 真是 太好了 . +We may never know . 我们 可能 永远 不 知道 . +There is no space in the room for another bed . 這間 房間 沒 有空 間 再 放 一張 床 了 . +The light changed from red to green . 燈 由 紅變 綠 . +There are no people who do not desire peace . 沒人不 渴望 和平 . +I am 17 , too . 我 也 是 17 岁 . +I thought you had to get up by 7 : 30 . 我 以为 你 要 7 点 半 起床 . +You should have accepted his advice . 你 本 应该 接受 他 的 建议 . +Tom built his own motorcycle . 湯姆 造 了 他 自己 的 摩托 車 . +We have to go . 我们 必须 走 了 . +A bird in the hand is better than two in the bush . 一 鳥 在手 勝 過 二 鳥 在 林 . +The young man put out his hand and I shook it . 年轻人 伸出 他 的 手 , 接着 我 和 他 握 了 手 . +I met your father yesterday . 昨天 我 見 到 了 你 父親 . +" What is in that box ? " " Nothing . " “ 盒子 里 有 什么 ? ” “ 什么 都 没有 . ” +That is the answer . 那 就是 答案 . +I am much younger than you . 我 比 你 年 輕 得 多 . +There is not any soap . 沒有 任何 肥皂 . +Tom knew that Mary would not cry . 湯姆瑪麗 不 會 哭 . +He is always asking for money . 他 總是 要 錢 . +How beautiful ! 多 美 啊 ! +Is Tom infected ? 汤姆 被 感染 了 吗 ? +You will get used to it . 你 会 习惯 的 . +You are everything to me . 你 是 我 的 一切 . +When I opened the door , I found him asleep . 当 我 打开门 的 时候 , 我 发现 他 睡着 了 . +How soon will the meeting begin ? 会议 什么 时候 开始 ? +He was suffering from a bad headache . 他 正 遭受 严重 头痛 的 困扰 . +You do not have to do it right away . 你 没 必要 马上 去 做 . +Tom has been to this park with Mary at least a dozen times . 汤姆 跟 玛丽 来 这 公园 至少 十二次 . +He will be free tomorrow . 他 明天 有空 . +Express yourself as clearly as possible . 盡 可能 明確 地表 達 你 自己 . +This homework is difficult for me . 這個 家庭 作業 對 我 來說 很困 難 . +We have not yet been told what we need to do . 還 沒人 告訴 我們 要 做 甚麼 . +This shirt needs to be ironed . 这 衬衫 需要 熨 . +She cursed loudly . 她 大声 诅咒 . +Who is your favorite actor ? 你 最 喜歡 的 演員 是 誰 ? +It serves you right . 自作自受 . +Tom said he keeps a gun in his home . 湯姆 說 他 的 家裡 有 把 槍 . +Hands up ! This is a robbery . 把手 举 起来 ! 这 是 抢劫 . +He died three years ago . 他 三年 前 死 了 . +I had to stay in bed all day . 我 不得不 一整天 都 呆 在 床上 . +This hall can hold 5,000 people . 这个 大厅 可以 容纳 5000 个人 . +I really do not know that woman . 我 完全 不 认识 那个 女人 . +I wonder why I feel so lonely when it gets cold . 我 很 疑惑 为什么 天气 变冷 的 时候 我会 觉得 很 孤单 . +Tom got fat . 汤姆 变胖 了 . +They mistook him for his brother . 他们 错 把 他 当成 他 的 兄弟 . +Do you think it is a sign ? 你 认为 这 是 个 预兆 吗 ? +We are both in the same class . 我們 兩個 同班 . +Shut the door on your way out . 出去 的 时候 把门 关上 . +I often play tennis after school . 我 常常 在 放學 後 打 網球 . +The war lasted nearly ten years . 這場 戰爭 持續 了 將 近十年 . +How come you do not know this ? 你 怎么 会 不 知道 ? +The mountain is covered with snow . 这 座 山 被 雪 覆盖 了 . +That is really nice . 真好 . +Tom is exaggerating . 汤姆 在 吹嘘 . +You are the one who decided to do this job , right ? 你 是 决定 做 这个 工作 的 那个 人 , 对 吗 ? +They would capture as many people as possible . 他們 會 盡 可能 地 抓 更 多 的 人 . +Tom has no manners . Tom 没有 礼貌 . +I do not love him anymore . 我 已经 不 爱 他 了 . +She asked for my help . 她 向 我 求助 . +I think I will take a bath tonight . 我 想 我 今晚 會 洗澡 . +Tom was popular . 汤姆 挺 受欢迎 . +There is no connection between them . 两者 没有 关联 . +You 'd better take it easy . 你 最好 放松 . +Kyoto is worth visiting . 京都 值得 游览 . +Let me stop you right there . We do not want to hear about that . 讓 我 在 這 打斷 你 . 我們 不想 聽 那個 話題 . +The guests are in the kitchen . 客人 們 在 廚 房 裏 . +Have you been busy since yesterday ? 你 从 昨天 开始 就 忙 吗 ? +You 'd better consult the doctor . 您 最好 请教 一下 医生 . +We took a walk in the park . 我们 在 公园 里 散步 . +I wish I were young . 但 願 我 還 年輕 . +That house appears deserted . 那 幢 房子 看起来 被遗弃 了 . +He denies having broken the window . 他 否認 打破 了 窗口 . +You will find it difficult to meet her requirements . 你 会 发现 难以 满足 她 . +I am tired of living this kind of life . 我 厌倦 了 这种 生活 . +The enemy dropped many bombs on the factory . 敵人 在 工廠 投下 了 很多 炸彈 . +She came to Tokyo when she was eighteen years old . 她 18 岁 的 时候 来到 东京 . +Saturn is a planet . 土星 是 一顆 行星 . +We were driven to the wall . 我们 被 逼得 走投无路 了 . +Where are you right now ? 你 現在 在 哪裡 ? +I am always at home on Sundays . 我 星期日 總是 在家 . +He looks just like his mother . 他 看 起來 就 像 他 的 母親 . +Write your goals down . 把 你 的 目標 寫 下來 . +It is a real bargain . 真是 物美 價廉 . +Do you own a gun ? 你 拥有 枪支 吗 ? +We lived together for three years . 我们 在 一起 生活 了 三年 . +Are you going to sing here ? 你们 要 在 这里 唱歌 吗 ? +Study hard , and you will succeed . 努力 學習 , 那麼 你 就 會 成功 . +His explanation really is not clear . 他 的 說明 並 不 清楚 . +He will regret it sooner or later . 他 遲早 會 後 悔 . +It must be a coincidence . 這 一定 是 個 巧合 . +The prince succeeded to the throne . 王子 继承 了 王位 . +I have already tried that . 我 已经 试 过 那个 了 . +I am dying for a cold drink . 我 迫切需要 冷饮 . +I have been warned against going there . 我 已經 被 警告 過 不要 去 那裡 . +What about you ? 你們 呢 ? +How is your business going ? 你 的 生意 进展 如何 ? +I will give you this money . 我 會 給 你 這筆 錢 . +I think I will be able to deal with that . 我 认为 我 能 做好 . +It is easy to catch a cold . 很 容易 感冒 . +This is expensive . 這 很 貴 . +We had a very good time last night . 我们 昨晚 过 得 非常 开心 . +Absolutely nothing is permanent in life . 生活 中 绝对 没有 什么 是 持久 的 . +Speaking foreign languages is not easy . 講 外語 是 不 容易 的 . +They became very nervous . 他们 变得 很 紧张 . +Ireland and England are separated by the sea . 爱尔兰 和 英格兰 被 海 分割 . +To master English is hard . 精通 英語 是 困難 的 . +It is clear that there is a rather strong disagreement between the two . 很 明顯 的 是 這 兩者 之間 有 很 強烈 的 分歧 . +She is older than Tom . 她 年紀 比 湯姆 大 . +He is confronted by many difficulties . 他 面 臨著 許多 困難 . +Does he speak English ? 他 说 英语 吗 ? +Prince William is second in line to the English throne . 威廉 王子 是 英国 王位 第二 顺位 继承人 +I will have to find a part @-@ time job . 我 得 找 一份 兼職 工作 . +There was a sudden change of plan . 計劃 突然 改變 . +The bad weather affected his health . 恶劣 的 天气 对 他 的 健康 带来 了 影响 . +What time does it open ? 什么 时候 开门 ? +Move the chair nearer to the desk . 把 椅子 挪 一 挪 靠近 桌子 . +She likes to cook for her family . 她 喜欢 为 她 的 家人 做饭 . +I 'd like a nonstop flight to New York . 我 想要 一个 直飞 纽约 的 航班 . +They did not see us . 他们 没 看见 我们 . +What is wrong with your dog ? 你 的 狗 怎麼 了 ? +Tom has not finished yet . 湯姆 還 沒 完成 . +She rarely goes out on Sundays . 她 星期日 很少 出門 . +Would you like some more cake ? 你 想 再 來 些 蛋糕 嗎 ? +I asked the boy to throw the ball back . 我 請 這個 男孩 把 球 扔回 來 . +I could not get him to stop smoking . 我 無法 讓 他 停止 吸煙 . +I do not like dogs . 我 不 喜歡 狗 . +What do we have to do ? 我們 必須 做 甚麼 ? +I left earlier than my sister . 我 比 我 的 妹妹 早 離開 . +Some people eat sushi with their hands . 一些 人用 手 吃 寿司 . +I have no time . 我 没 时间 . +I can not find the broom . 我 找 不到 掃 把 了 . +I thought we had agreed on this . 我 認為 我們 己 經 同意 了 . +He comes from England . 他 来自 英格兰 . +We must do something . 我們 必須 做 點 甚麼 . +They are ignoring me . 他們 不理 我 . +Tom told me he 'd be right back . 汤姆 告诉 我 他 会 马上 回来 . +Are you ready to proceed ? 准备 好 继续 了 吗 ? +I am at the airport now . 我 现在 在 机场 . +We should have stayed at home . 我們 本來 應該 留在 家裡 的 . +Are you satisfied now ? 你 現在 滿意 了 嗎 ? +Put away your bicycle . 把 你 的 自行车 放好 . +I am not going to show any fear . 我 不会 表现 出 恐惧 . +I could swear there is something inside this box . 我 能 发誓 这 箱子 里 有 东西 . +He had a book in his hand . 他 手里 拿 着 一 本书 . +Tom does not talk with anyone . 湯姆 不 跟 任何人 說 話 . +God is everywhere . 神無處 不 在 . +So you give up , right ? 所以 你 放弃 了 , 是 吗 ? +You look just like your big brother . 你 和 你 哥哥 长 得 一模一样 . +I do not like to go out when it is dark . 我 天黑 后 不 喜欢 出门 . +You look happy today . 你 今天 看上去 很 开心 . +Tom is looking for a job . Tom 正在 找 工作 . +Just take it slowly . 慢慢来 . +I can swim across the river . 我 能 游泳 過河 . +What were you doing in the attic ? 你 在 阁楼 上 做 了 什么 ? +Are you planning to take part in the meeting ? 你们 准备 参加 会议 吗 ? +How much time do you estimate it will take you to do that ? 你 估计 做 那件事 需要 花费 你 多少 时间 呢 ? +We need an ambulance . 我们 需要 一辆 救护车 . +I would like to pay by credit card . 我 想用 信用卡 支付 . +The street is paved with asphalt . 這條 街鋪 上 了 柏油 . +Everyone was surprised to see Tom . 每個 人 看到 Tom 都 很 驚訝 . +I will come as often as possible . 我 會 來 盡 可能 常來 . +How much time is left ? 还 剩 多少 时间 ? +One is new . The other is old . 一个 是 新 的 , 另 一个 是 旧 的 . +I looked him in the eyes . 我 直视 他 的 眼睛 . +I had a chance to travel abroad . 我 有個 到 國外 旅遊 的 機會 . +I brought up two kids all on my own . 我 一個 人 把 兩個 小孩 扶養 長大 . +My mother almost never complains . 我 媽媽 幾乎 從 不 抱怨 . +You had better take an umbrella with you today . 你 今天 最好 隨身 帶 把 傘 . +Go away ! 滾 ! +He wears glasses . 他 戴 眼鏡 . +I am getting choked up . 我 快要 激动 得 说不出 话 来 了 . +This is the nicest present I have ever received . 这 是 我 得到 过 的 最好 的 礼物 . +That one is really good . 那 一個 真好 . +Thanks very much for having me to dinner the other night . 谢谢 那天 晚上 请 我 吃了饭 . +Tom has got his own problems . 汤姆 有 他 自己 的 问题 . +I will make it clear that I will not come again . 我 要 明確 表示 我 不 會 再 來 了 . +I guess it depends on the weather . 我 想 這 要 看 天氣 情況 而 定 . +She dusts the furniture every day . 她 每天 擦拭 家具 的 灰塵 . +You are not me . 你 不是 我 . +How weird ! 多 怪 啊 ! +He is taking a walk . 他 正在 散步 . +When the phone rang , he ran to answer it . 電話 響起 時 , 他 跑 去 接起 . +The sun rose over the horizon . 太陽 升出 了 地平線 . +My son is engaged to his secretary . 我 的 兒子 和 他 的 秘書 訂婚 了 . +You look the way your father did thirty years ago . 你 看上去 就 像是 三十年 前 你 父親 的 樣子 . +Tom has to do that right away . 汤姆 必须 马上 去 做 . +All at once she began to shout in a shrill voice . 突然 間 她 開始 用 尖銳 的 聲音 大喊 . +That book is very old . 那 本書 很 舊 . +I am from Singapore . 我 是从 新加坡 来 的 . +Tom did not know what he 'd say to Mary . 湯姆 不 知道 他 要 對 瑪麗 說 甚麼 . +We give a 10 % discount for cash . 如 用 現金 付款 , 我們 給予 九折 優惠 . +Every great writer seems to have been interested in English . 每 一個 偉大 的 作家 似乎 已經 對 英語 感興趣 . +I am sorry , I dialed the wrong number . 對 不起 , 我 撥錯 了 號碼 . +Tom refused to pay the bill . 湯姆 拒絕 付賬 . +Tom was not too happy in those days . 湯姆 這些 天裡 不 太 高興 . +I slept just two hours . 我 只 睡 了 两 小时 . +He works every day except Sunday . 除了 星期天 他 每天 工作 . +Is there anybody in the house ? 屋里 有人 吗 ? +Let is call it a day . 今天 就 到 此 為止 吧 . +I will badly miss you if you leave Japan . 如果 你 离开 日本 , 我会 非常 想 你 的 . +Are you free tomorrow evening ? 你 明晚 有空 嗎 ? +The sky is full of dark clouds . 空中 烏雲 密 佈 . +How many oranges did Tom eat ? 湯姆 吃 了 多少 橘子 ? +I bought it last week . 我 上週 買 了 它 . +Your parents loved you very much . 你 的 父母 很 愛 你 . +We got involved in a traffic accident . 我們 被 捲 入 了 一 場 交通事故 . +Do you believe in eternal life after death ? 你 相信 死 后 永生 吗 ? +I miss you so much . 好 想 見 到 你 +The telephone is ringing . 電話 正在 響 . +Where do you watch television ? 您 在 哪儿 看电视 ? +He does not believe in God . 他 不 信神 . +There were many people at the concert . 演唱 會 上 有 許多 人 . +What is your favorite color ? 你 最 喜欢 的 颜色 是 什么 ? +The price of gas is rising . 天然 氣 的 價格 上升 . +It is not easy to catch a hare with your bare hands . 空手 赤拳 抓 野兔 並 不 容易 . +Tom bought a plane ticket . 湯姆 買 了 張 機票 . +He reluctantly agreed to my proposal . 他 勉強 同意 了 我 的 建議 . +He looks like his father . 他 看 起來 像 他 的 父親 . +I do not want you . 我 不 想要 你 . +Learning foreign languages is boring . 學 外文 很 無聊 . +After I cleaned the window , I could see through it clearly . 清潔 窗戶 後 , 我 能 很 清楚 的 從 窗戶 看 出去 . +What a lot of pens ! 那么 多 钢笔 ! +Would you please autograph this book ? 請 您 在 這 本書 上 簽名 好 嗎 ? +He likes both music and sports . 他 喜歡 音樂 和 運動 . +Which is your favorite team ? 你 最 喜歡 哪 一隊 ? +She is married to a foreigner . 她 嫁給 了 一個 外國 人 . +He has ambition , so he works hard . 他 有 抱負 , 所以 他 很 努力 工作 . +Who is the woman in the brown coat ? 那个 穿 棕色 大衣 的 女人 是 谁 ? +These shoes are too tight . They hurt . 这些 鞋子 太紧 了 , 伤脚 . +I really look forward to your visit in the near future . 我 很 期待 在 不久 的 將 來 您 的 光臨 . +Please put on these slippers . 请 穿 上 这些 拖鞋 . +They eat dinner at twelve o 'clock . 他們 在 12 點 吃 晚 飯 . +Tom has disappeared . 汤姆 不见 了 . +I am sorry to bother you . 對 不起 打擾 你 了 . +The job is half done . 這項 工作 已經 完成 了 一半 . +There was an earthquake this morning . 今天 早上 發生 了 地震 . +I love spending time with Tom . 我 喜欢 花 时间 和 Tom 在 一起 . +She did not like her husband . 她 不 喜歡 她 的 丈夫 . +Please water the flowers . 請 澆 花 . +Tom poured himself another glass of wine . 汤姆 又 给 自己 倒 了 一 杯酒 . +Tom has forgotten how to do that . 汤姆 忘 了 怎么 做 . +You do not have to stay in the hospital . 你 不必要 呆 在 医院 . +It is better to chill white wine before you serve it . 在 你 侍酒 前 最好 先 將 白葡萄酒 冷 卻 一下 . +We had a party last night . 我們 昨晚 有 一個 聚會 . +They forgot to lock the door . 他们 忘 了 锁门 . +She has lost weight . 她 的 体重减轻 了 . +No one can escape growing old . 没有 人能 逃过 衰老 . +Never forget to put out the fire . 永遠 不要 忘 記關 火 . +Did Tom ever tell you how he first met Mary ? 湯姆 告訴 你 他 是 怎樣 第一次 遇見 瑪麗 的 了 嗎 ? +Come on ! Give me a chance . 来 嘛 ! 给 我个 机会 . +It was Marie Curie who discovered radium . 鐳 是 居里夫人 所 發現 的 . +Your chair is identical to mine . 你 的 椅子 和 我 的 很 像 . +Our school is principal is very old . 我校 校长 很 老 了 . +He is not a doctor but a teacher . 他 不是 医生 , 他 是 教师 . +I can understand you to some extent . 在 某種 程度 上 我 能 了解 你 . +Why worry about it ? 為 什麼 要 擔心 ? +It was very nice seeing you again . 非常 高興 再次 見 到 你 . +Tom put a stack of letters on Mary is desk . 汤姆 把 一叠 信 放在 玛丽 桌上 . +She is upset . 她 心情 不好 . +A tiger has escaped from the zoo . 一 隻 老虎 逃出 了動 物園 . +She practiced the piano every day . 她 每天 練 習彈 鋼琴 . +You are not kids anymore . 你們 不再 是 小孩 了 . +Is he breathing ? 他 在 呼吸 嗎 ? +The rumor proved to be true . 经过 证实 , 谣言 是 真的 . +I actually did not say that . 我 其實 沒 那麼 說 . +He rested for a while . 他 休息 了 一会儿 . +We played basketball in the gym . 我們 在 體育館 打 籃球 . +Let is do it another time . 再 找 時間 吧 . +I am really scared of spiders . 我 真怕 蜘蛛 . +I am leaving next week . 我 下 個 星期 離開 . +He cut the envelope open . 他 裁開 了 那個 信封 . +Japan depends on other countries for oil . 日本 的 石油 依靠 进口 . +You are really a hard worker . 你 真是 个 努力 的 工人 . +Which season do you like the best ? 您 最 喜欢 哪个 季节 ? +I can not understand how Tom could know . 我 不 懂 汤姆 怎么 知道 的 . +She has traveled all over the globe . 她 周遊 世界各地 . +I know that he went to London . 我 知道 他 去 了 伦敦 . +Are you closer to your mother or to your father ? 你 和 爸爸 更 亲 还是 妈妈 更 亲 ? +If you want to go , then go . If you do not want to , then it is no big deal . 如果 你 想 去 , 就 去 好 了 . 如果 你 不想 去 , 那 也 没什么 大不了 的 . +He is a Japanese boy . 他 是 个 日本 少年 . +The girl resembled her mother . 這個 女孩 很 像 她 的 母親 . +I like listening to the radio . 我 喜歡 聽 收音 機 . +I do not blame you for doing that . 我 不 怪 你 那樣 做 . +Tom paid me back the money that he owed me . 汤姆 把 欠 我 的 钱 还给 我 了 . +I have gotten better . 我 已經 變得 好多 了 . +I do not like eating meat . 我 不 喜歡 吃 肉 了 . +He is a comedian . 他 是 喜剧演员 . +Did you eat at home before you came here ? 你 來 之前 在家 裡 吃飯 了 嗎 ? +I hope we stay in touch . 我 希望 我们 能 保持联系 . +More than 40 percent of the students go to university . 40 % 以上 的 学生 去 读 大学 . +I just cut my finger . 我 剛剛 切到 手指 了 . +You know that is your duty . 你 知道 那 是 你 的 责任 . +I would like to speak English fluently . 我 想 把 英語 說 得 很 流利 . +She knows how to play the guitar . 她 知道 如何 彈 吉他 . +I am looking for a small suitcase . 我 正在 找 一個 小 手提箱 . +My father died of lung cancer . 我 的 父親 死 於 肺癌 . +Had I arrived earlier , I could have seen Kelly . 如果 我 早點 到 , 就 能 遇到 凱莉 了 . +I agree with Tom a hundred percent . 我 百分之百 同意 Tom . +If you enjoy the work you do , you have something worth more than money . 如果 你 喜歡 你 做 的 工作 , 你 就 有 比金 錢 更 有 價值 的 東西 . +At first , I thought I was sick . 一 开始 , 我 以为 我 病 了 . +Are you going to buy a dictionary ? 你 要 去 買 詞典 嗎 ? +I did not order this . 我 没有 预定 这个 . +Ostriches can not fly . 鸵鸟 不会 飞 . +He put on clean trousers . 他 穿 上 了 乾 淨 的 褲子 . +Where is my book ? 我 的 書 在 哪 ? +Do you ever study in the library ? 你 曾經 在 圖書館 讀書 嗎 ? +She wants to hug him . 她 想 擁抱 他 . +I am 30 years old . 我 三十 歲 . +She made a new suit for him . 她 做 了 一套 新 衣服 給 他 . +He was kind enough to take me to the hospital . 他 好心 地 把 我 送到 医院 . +It is already time for us to go . 到 我們 該 走 的 時候 了 . +Please reconsider . 请 重新考虑 一下 . +He fought against racial discrimination . 他 反 對 種族 歧視 . +I almost caught the fish . 我 幾乎 釣到 了 魚 . +That boy is running . 那个 男孩 在 跑步 . +He barely passed the examination . 他 勉強 地 通過 了 考試 . +That is something to be proud of . 那 是 值得 自豪 的 事 . +This school was founded in 1650 . 这 所 学校 建于 1650 年 . +She held her breath . 她 止住 了 呼吸 . +Do you have a favorite color ? 你 有 喜欢 的 颜色 吗 ? +She cried bitterly . 她 痛哭 了 起來 . +Do you think Tom is too young ? 你 觉得 汤姆 是不是 太嫩 了 ? +Can I eat this ? 我 可以 吃 这个 吗 ? +I would like to stay for one night . 我 想待 一夜 . +What did you buy ? 你 買 了 什麼 ? +Paper is made from wood . 纸 是 由 木 制成 的 . +I like red wine better than white . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +A large pillar obstructs the view of the lake . 巨大 的 柱子 遮住 了 视线 , 让 人 看不到 湖 . +I am going to take my car . 我 将 去取 我 的 车 . +He carried a bag full of apples . 他 拿 着 一个 装满 了 苹果 的 袋子 . +My mother grows flowers in her garden . 我 的 母親 在 她 的 花園 裡 種花 . +I am going to miss that . 我 要 失去 它 了 . +Philosophy is not a thing one can learn in six months . 哲学 不是 我们 用 六个月 就 能学 的 东西 . +Is it hard to speak English ? 說 英語 很 難 嗎 ? +I have heard the French version of this song . 我 听 过 这 首歌 的 法语 版 . +Are you planning on eating that all by yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +The grapefruit tastes very sour . 柚子 很酸 . +Do not let anyone enter the room . 不要 讓 任何人 進入 這個 房間 . +If you can not make it , call us as soon as possible . 如果 你 做 不到 , 儘 快 連 絡 我 們 . +Let is meet at one o 'clock . 讓 我們 一點鐘 見 面 吧 . +I am much better today than yesterday . 我 今天 覺得 比 昨天 好多 了 . +Do not be disappointed . 不要 失望 . +If you can sing , that is good enough . 如果 你 会 唱歌 就 好 了 . +What trips are you planning ? 你 在 计划 什么 出游 吗 ? +She cooked the dinner herself . 她 自己 煮 晚餐 了 . +Wealth does not always bring us happiness . 財富 並 不 總是 為 我們 帶來 快樂 . +He went fishing instead of playing tennis . 他 去 钓鱼 了 , 而 没去 打网球 . +Goodbye and good luck . 再见 , 祝 好运 . +He thinks he knows everything . 他 以 为什么 都 知道 . +She can do both at the same time . 她 可以 同时 做 这 两件事 . +I like sweets . 我 喜歡 甜食 . +The soldiers occupied the building . 士兵 们 占领 了 这个 建筑 . +This is a bird sanctuary . 这 是 鸟类 庇护所 . +I 'd like a room in the front . 我 想要 一間 前面 的 房間 . +It looks like the dog wants something to eat . 那 隻 狗 看 起 來 好像 想 吃 東西 . +I am glad you came over . 我 很 高兴 你 回来 了 . +Do not you have any money ? 你 沒 有 錢 嗎 ? +The girl does not like to play soccer . 那个 女孩 不 喜欢 踢足球 . +I would like to ask you a few more questions . 我 想 問 再 你 幾個 問題 . +They believe in a life after death . 他們 相信 死 後 的 生命 . +I am suffering from a bad cold . 我 患上 了 重感冒 . +Behave yourselves . 规矩 点 . +He kissed his daughter on the forehead . 他 親 了 親 他 女兒 的 額頭 . +Had I known about it , I would have told you . 如果 我 知道 的话 , 我 早就 已经 告诉 你 了 . +This meal is adequate for three . 这 饭 足够 三个 人 吃 . +Tom is very talented . 汤姆 多才多艺 . +Since I had met him once before , I recognized him right away . 由 於 我 以前 見 過 他 一次 , 所以 我 馬 上 就 認出 他 了 . +My hobby is making model planes . 我 的 嗜好 是 做 模型 飛機 . +Mary is going to help us tomorrow . 瑪麗 明天 會 幫 我們 . +I am sorry , could you say that again ? 抱歉 , 你 能 再说 一遍 吗 ? +Tom looked at his notes . 汤姆 看 了 看 笔记 . +He fell in love with her at first sight . 他 對 她 一 見 鍾 情 . +Tom did not accept Mary is apology . 汤姆 不 接受 玛丽 的 道歉 . +The stream flows into the pond . 溪水 流進 這個 池塘 裡 . +You are the master of your own destiny . 你 才 是 自己 命运 的 主人 . +The girl has no mother . 这个 女孩 没有 母亲 . +Tom seems to have a cold . 湯姆 看來 感冒 了 . +The opening ceremony of the Olympics has already begun . 奥运会 已经 开幕 了 . +My father quit drinking . 父亲 戒酒 了 . +I 'd rather go swimming . 我 寧願 去 游泳 . +Did you watch TV last night ? 你 昨晚 看電視 了 嗎 ? +Tom wants to learn to sing in French . 汤姆 想学 唱 法语歌 . +Why could not you sleep last night ? 为什么 你 昨晚 睡不着 ? +My blood pressure is 155 over 105 . 我 的 血壓 為 155 比 105. +They made the novel into a drama . 他們 把 這 本小 說 變成 戲劇 . +We used to go to the movies on Saturday evening . 我们 曾经 总 在 星期六 傍晚 去 看 电影 . +I would rather stay at home than go out in this hot weather . 在 这种 暑天 里 我 宁愿 呆 在家 也 不 出去 . +I was pretty hungry . 我 真是 饿 了 . +This is not money . 这 不是 钱 . +You are stupid . 你 二 了 . +She gave away all her dresses . 她 把 她 所有 的 洋裝 都 送 人 . +My father took out his wallet and gave me ten dollars . 我 爸爸 拿出 他 的 钱包 , 并给 了 我 10 美元 . +She is dressed in white . 她 穿着 白色 的 衣服 . +There is a page missing . 有 一页 缺 了 . +This is one of the best restaurants that I have ever eaten in . 这 是 我 吃 过 的 最好 的 餐馆 之一 . +She is dieting . 她 在 节食 中 . +Let is finish up in a hurry . 讓 我們 快點 做 完 吧 . +" I saw her five days ago , " he said . 他 说 : “ 我 五天 前 见 过 她 . ” +Even a broken clock is right twice a day . 凡人 皆 有 得意 时 . +These patients have trouble walking . 这些 患者 走路 有 困难 . +Oh ! I am sorry to hear that . 哦 ! 我 很 遺憾 聽到 這個 消息 . +There are 30 students in our class . 我们 班 有 三十名 学生 . +I have been abroad several times this year . 我 今年 去 了 好 几次 外国 . +This is about as large as that . 這個 大約 跟 那個 一樣 大 . +Lincoln set the slaves free . 林肯 釋放 了 奴隸 . +He explained his plans in detail . 他 詳細 地 解釋 了 他 的 計劃 . +I was in Boston last month . 我 上 個 月 在 波士 頓 . +She made him a new coat . 她 為 他 做 了 件 新 大衣 . +You have got a great sense of humor . 你 有 很好 的 幽默感 . +I swear I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +My uncle gave his car to me . 我 叔叔 把 他 的 車 給 我 . +Sorry , I do not have any money . 抱歉 , 我 没钱 . +If Tom does not surrender , shoot him . 如果 湯姆 不 投降 , 就 開 槍 +He wants to get a new dictionary . 他 想得到 一本 新 的 字典 . +Have you ever eaten Japanese food ? 你 吃 過 日本料理 嗎 ? +I bought an old lamp . 我 买 了 一盏 很 旧 的 灯 . +A tsunami is coming , so please be on the alert . 海啸 来 了 , 密切注意 啊 . +I am opposed to any type of war . 我 反對 任何 形式 的 戰爭 . +Tom came to the conclusion that no matter what he did , Mary would not like it . 汤姆 得出 无论 他 做 什么 , 玛丽 都 不会 喜欢 的 结论 . +I like drawing . 我 喜欢 画画 . +I can solve the problem by myself . 我 可以 自己 解決 這個 問題 . +She has plenty of work to do . 她 有 很多 事 要 做 . +This time , it is different . 这 一次 不 一样 . +They usually sleep in this room . 他們 通常 在 這個 房間 裡 睡覺 . +That makes sense . 那样 说 得 通 . +The teacher gathered his students around him . 老師 把 他 的 學生 們 聚集 在 他 周圍 . +Answer the phone . 接电话 . +It would be great if you could sing . 如果 你 唱歌 的 話 一定 很棒 . +You look very charming today . 今天 你 看起来 很 迷人 啊 . +Which one will he choose ? 他 會 選 哪個 ? +He placed the ladder against the fence . 他 把 梯子 倚著 柵欄 放 . +We often play cards on Sunday . 我們 常常 在 週日 打牌 . +She pressed her nose against the glass . 她 把 鼻子 贴 在 玻璃 上 . +I do not go to school . 我 不 去 学校 . +Have you read this book already ? 你 讀 過 這 本書 了 嗎 ? +She warned him not to go out at night alone . 她 警告 他 晚上 不要 一个 人 出去 . +I hope you will get well soon . 我 希望 您 快 就 会 好 起来 . +Sitting down all day is bad for you . 整天 坐著 對 你 不好 . +Which do you prefer , spring or autumn ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +What do you think ? 你 認為 如何 ? +I do not want to live alone . 我 不想 獨自 生活 . +She seems to hate you . 她 好像 很 讨厌 你 . +This is very expensive . 這 是 非常 昂貴 的 . +Tom always seems to be working . 湯姆 看來 總是 在 工作 . +It is the truth . 这 是 事实 . +I am quite all right now . 我 一切 都 很 好 . +I am sorry . I am not from here . 抱歉 , 我 不是 本地人 . +Are you not feeling well ? 你 身体 不 舒服 吗 ? +Tom doubled his investment in a year . 汤姆 一年 内 增加 了 一倍 的 投资 . +How long did you think the picnic was going to last ? 你 認為 野餐 要 多 長 時間 ? +Strike while the iron is hot . 打 鐵 趁 熱 . +You can only use it once . 这个 你 只能 用 一次 . +I think jogging is good exercise . 我 認為 慢跑 是 很好 的 運動 . +The main question is how does Tom feel . 主要 的 问题 是 汤姆 的 感受 如何 . +That is the other reason I am here . 那 是 我 在 这里 的 另外 一个 理由 . +Thank you for your reply . 谢谢 你 的 答复 . +Where would you like to go first ? 你 想 先 去 哪裡 ? +Why did you begin without me ? 为什么 你 不 等等 我 就 开始 了 ? +I do not allow sleeping in class . 我 不 允许 有人 在 课 上 睡觉 . +Everyone admired his courage . 每個 人 都 佩服 他 的 勇氣 . +What do you want to be ? 你 想 成为 什么 ? +Many small companies went bankrupt . 许多 小 公司 倒闭 了 . +Does love exist ? 愛 存在 嗎 ? +His house is not far from here . 他家 離 這兒 不遠 . +Japan relies on Arab countries for oil . 日本 靠 阿拉伯 国家 提供 石油 . +Tom broke into Mary is hotel room . 湯姆闖 進 了 瑪麗 的 酒店 房間 . +Ghosts exist . 鬼魂 是 存在 的 . +My mother is a lawyer . 我 妈妈 是 个 律师 . +I think that is not true . 我 認為 那 不是 真的 . +I can not meet you . 遇不到 你 . +I want to visit Korea . 我 想 访问 韩国 . +I can not study with you watching me . 你 盯著 我 看 使 我 無法 讀書 . +Mary loses her temper easily . 瑪麗 很 容易 發脾氣 . +He is a little pale . 他 有点 苍白 . +Thank you for inviting me . 謝謝 你 邀請 我 . +Tom practiced in front of the mirror . 湯姆 在 鏡 前 練習 . +Tom started dating Mary three months ago . 汤姆 三个 月 前 开始 和玛丽 约会 . +Please be quiet , everybody . 请 大家 都 保持 安静 . +Innocence is a beautiful thing . 纯真 是 一件 美好 的 事 . +Brush your teeth before going to bed . 上床睡觉 前要 刷牙 . +Can you take a picture of us ? 您 能 好好 给 我们 照 一张 相吗 ? +The teacher told us a funny story . 老師 跟 我們 說 了 一個 有趣 的 故事 . +She waved her hand until the train was out of sight . 她 挥 着 她 的 手 , 直到 火车 消失 在 视线 之外 . +Several minutes later , the telephone rang . 几分钟 后 , 电话响 了 . +I missed my chance . 我 錯 過 了 我 的 機會 . +I bought a new computer last month . 上个月 我 买 了 一台 新 电脑 . +Teaching English is his profession . 教 英语 是 他 的 职业 . +We are against war . 我们 反对 战争 . +What does it sound like ? 那 聽 起來 像 什麼 ? +She does not like sushi . 她 不 喜歡 壽司 . +This news is official . 这 是 官方消息 . +You should return home before it gets dark . 你 應該 在 天黑 之前 回家 . +He vowed to give up smoking . 他 发誓 要 戒烟 . +I wanted to cry . 我 想 哭 . +Suddenly , it started to rain . 突然 開始 下雨 . +We could walk there together . 我們 可以 一起 走著 去 . +Yes , I know it . 是 的 , 我 知道 . +This word comes from Latin . 這個 詞源 於 拉丁 語 . +Take as many peaches as you like . 你 想 拿 多少 桃子 就 拿 多少 . +My father is a bit old @-@ fashioned . 我 爸爸 有点 守旧 . +Would you like to have another beer ? 再 来 一杯 啤酒 怎么样 ? +Is not this what Tom asked for ? 这 不是 汤姆 要 的 吗 ? +I asked for a table over there . 我 在 那裡 要 了 一張 桌子 . +I saw him after ten years . 十年 之 後 我 看到 了 他 . +I do not think she can speak French . 我 認為 她 不 會 講 法語 . +I do not think that he is honest . 我 不 觉得 他 诚实 . +Because it is written in simple English even a child can understand it . 因為 這 是 用 簡單 的 英語 寫 的 , 所以 甚至 連 孩子 都 能 理解 . +Can I park my car here ? 我 能 把 我 的 车 停 在 这儿 吗 ? +That is my favorite chair . 那 是 我 最 喜歡 的 椅子 . +Iron is a useful metal . 铁 是 种 有用 的 金属 . +You have arrived very early . 你 來 得 很早 . +Have you bought a raffle ticket yet ? 你 买 彩票 了 吗 ? +We have just finished breakfast . 我們 剛剛 吃 完 了 早 飯 . +She worked from morning till night . 她 從 早上 工作 到 夜晚 . +I went to see the movies yesterday . 我 昨天 去 看 了 電影 . +I had lost a camera the previous day . 我 前一天 丢 了 一台 相机 . +Could I have another glass of beer ? 我 可以 再 喝一杯 啤酒 嗎 ? +I have decided to tell Tom about what happened . 我 决定 告诉 汤姆 发生 了 什么 事情 . +I have been spending too much time with Tom . 我 在 湯姆 身上 花 的 時間 太 多 了 . +How do you say this word ? 你们 怎么 读 这个 词 ? +A truck ran over our dog . 一輛 卡車 輾過 一 隻 狗 . +She is Tom is younger sister . 她 是 湯姆 的 妹妹 . +I decided to study abroad . 我 決 定出 國 留學 了 . +My wife has just cleared the table . 我 太太 剛剛 清理 了 桌子 . +The letter was finished . 信 寫 完 了 . +I will try to meet your wishes . 我 會 盡力 滿足 你 的 願望 . +I have to hurry ! 我 要 赶紧 了 ! +Reading a book can be compared to a journey . 阅读 一 本书 可以 比作 一次 旅行 . +" We have not seen each other since 2009 . " " Has it been that long ? " “ 我们 从 2009 年 起 就 没 见过面 . ” “ 有 那么 久 吗 ? ” +We are on strike because the company has not improved our wages . 我們 之所以 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +Do you know when she will come ? 你 知道 她 什麼 時候 會 來 嗎 ? +Armenian is an Indo @-@ European language . 亚美尼亚语 是 一门 印欧语 言 . +Parents love their children . 父母 爱 自己 的 孩子 . +He is my older brother . 他 是 我 的 哥哥 . +We hacked a path through the forest . 我們 開出 了 一條 穿 過 森林 的 小路 . +I do not know if I have time to do it . 我 不 知道 我 是否 有 时间 做 . +I have few friends . 我 朋友 很少 . +He is an author . 他 是 作家 . +You are not trying to trick me , are you ? 你 没 打算 耍 我 , 对 吧 ? +I do not want to talk about the weather . 我 不想 談論 天氣 . +Can anyone pronounce this word ? 有人 能 发 这个 词 的 音 吗 ? +Do not walk home alone . 不要 自己 一个 人 走 回家 . +I am studying now . 我 现在 正在 学习 . +Have a nice flight . 飞行 愉快 ! +Where do you want to go ? 你們 要 去 哪裡 ? +We got the meeting over with quickly . 我們 很快 的 結束 了 這個 會議 . +We must sleep at least eight hours a day . 我们 每天 至少 该 睡 八小时 . +Smoking is prohibited on the train . 在 火車 上 禁止 吸煙 . +When did you begin studying English ? 您 什么 时候 开始 学 英语 的 ? +The horse stopped and would not move . 這 匹 馬 停下 來 不動 了 . +Tom is eyes were glued to the screen . Tom 的 眼睛 被 荧幕 吸引住 了 . +Slow down . 慢 一點 . +She is graceful . 她 举止 优雅 . +Tom was the only guy in the class . 汤姆 是 这个 班级 里 唯一 的 男生 . +Our train is delayed . 我們 的 車誤 點 了 . +He could not breathe deeply . 他 無法 深呼吸 . +Where is the mailbox ? 郵箱 在 哪裡 ? +That is life . 人生 就是 如此 . +I did not have lunch today . 我 今天 沒 吃 午餐 . +All the students clapped their hands . 所有 的 學生 都 拍手 . +My wife asked me to throw this old hat away . 老婆 喊 我 把 这些 旧 帽子 扔掉 . +Tom has been very careful . 汤姆 非常 谨慎 . +Did Tom help his mother yesterday ? 湯姆 昨天 幫 他 媽媽 的 忙 嗎 ? +Is not that good enough ? 那 不夠 好 嗎 ? +I caught five fish yesterday . 我 昨天 釣 了 五條 魚 . +I hear he is good at mahjong . 我 听说 他 打麻将 很 厉害 . +I heard the news on the radio . 我 從 收音 機 聽到 了 這個 消息 . +She forgave the boy for his rudeness . 她 原谅 了 男孩 的 粗鲁 . +They rescued the boy from drowning . 他們 救 了 這個 落水 的 男孩 . +He asked her where her mother was . 他 問 她 她 的 母親 在 哪裡 . +Do not expect miracles . 別 期盼 奇跡 . +Tom has a good head on his shoulders . 汤姆 脑瓜 灵 . +I have not made up my mind yet . 我 還 沒有 拿定主意 . +The child will be six . 那 孩子 要 六歲 了 . +I want to study math . 我 想 学 数学 . +The teacher had a bad cold . 老師 患 了 重感冒 . +You are welcome to do anything you like . 您 可以 做 任何 您 想 做 的 事 . +He likes watching TV . 他 喜歡 看電視 . +What kind of person is she ? 她 是 怎样 的 人 呢 ? +Please do not ask . 請 不要 問 . +I will join you later . 我 一會兒 就 來 . +Would you like some of those pictures ? 你 想要 那些 照片 中 的 一些 嗎 ? +She had the boys paint the house . 她 要 男孩 們 粉刷 房子 . +We won the battle . 我们 战争 胜利 了 . +Let your hair down a little . 稍微 随意 一点 . +I think I will go by bus . 我 認為 我 要 坐 巴士 去 . +I had no choice but to stay in bed all day . 我 不得不 一整天 都 待 在 床上 . +I have lost my cap . 我 的 帽子 丢 了 . +This apple is bad . 这个 苹果 是 坏 的 . +Education starts at home . 教育 从 家庭 开始 . +The traffic light turned green . 紅綠燈 變成 綠色 了 . +Some diseases are caused by a defective gene . 一些 疾病 的 产生 原因 是 基因 缺陷 . +The audience was largely made up of very young children . 大部分 观众 是 年幼 的 儿童 . +I 'd gladly pay more for something if it is of high quality . 如果 它 是 高 品質 的 東西 我會 很 樂意 多付 一點 錢 . +Eggs are sold by the dozen . 蛋 是 按 打卖 的 . +Tom mostly kept to himself . 汤姆 大多 一个 人 独处 . +I do not wish to harm you . 我 不想 傷害 你 . +Let is start ! 讓 我們 開始 吧 . +I am running out of ideas . 我 没主意 了 . +We live on the third floor . 我们 住 在 三 楼 . +This jacket is a little too big . 這件 夾克 有 點 太 大 了 . +California and Nevada border on each other . 加利福尼 亞州 和 內華達州 相互 接界 . +Please join us . 請 加入 我們 . +She looks pretty in that dress . 她 穿 上 那件 衣服 看 起來 很漂亮 . +Read it once more , please . 請 再 讀 一次 . +He tires easily . 他 很 容易 觉得 累 . +It is raining . 下雨 了 . +Can you tell me where the flea market is ? 你 能 告訴 我 跳蚤 市場 在 哪裡 嗎 ? +Why are you crying ? 你 为什么 哭 ? +What does everybody else think ? 其他人 怎麼 想 ? +My plan is to study in Australia . 我 的 計劃 是 去 澳洲 唸 書 . +Let is play basketball after school . 讓 我們 放學 後 打 籃球 . +What are you doing ? 你 在 做 什麼 ? +Are Tom and Mary working together ? 汤姆 和玛丽 一起 工作 吗 ? +I used to swim here every day . 我 以前 每天 在 這裡 游泳 . +I wish you had told me that . 但 願 你 告訴 過 我 就 好 了 . +The history class starts at nine . 历史课 九点 开始 . +You should stay at home today . 你 今天 應該 待 在家 裡 . +Would you please shut the window ? 能 不能 请 你 把 窗 关了 ? +You look pale . 你 看 起來 很 蒼白 . +He studied for ten years . 他 研究 了 十年 . +The car is in the garage . 车 在 车库里 . +We will save a seat for you . 我们 会 给 你 留 个 位置 . +I am not afraid of anything . 我 什么 都 不怕 . +It looks like an egg . 这 看上去 像 个 蛋 . +French is my mother tongue . 法语 是 我 的 母语 . +Choose the one you like . 选 喜欢 的 . +Be kind . 友善 点 . +My city is fifty kilometres from the capital . 我 的 城市 离 首都 五十 千米 . +You are sick . You have to rest . 你 病 了 , 该 休息 了 . +Life would be impossible without the sun . 沒有 太陽 就 沒有 生命 . +Liars must have a good memory . 骗子 们 必须 有 好 记性 . +Tom did not like the idea . 湯姆 不 喜歡 這個 主意 . +I have not eaten for days . 我 好多天 没 吃 东西 了 . +Everybody but Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom plans to return . 湯姆 打算 回來 . +She worked side by side with men . 她 和 男人 一起 工作 . +It is a pleasure to have you with us again . 真 高兴 你 又 跟 我们 在 一起 了 . +He greeted the lady . 他 向 那位 女士 问好 . +Mother stays at home every day . 媽媽 每天 待 在家 裡 . +I was born on October 10th , 1972 . 我 出生 於 1972 年 10 月 10 日 . +Where is the bus stop for downtown ? 到 市區 的 公車 站牌 在 哪裡 ? +This is too expensive . 这 太贵 了 . +Tom is my friend . 湯姆 是 我 的 朋友 . +Give me the book . 把 书 给 我 . +It snowed . 下雪 了 . +I will pay the bill . 我 來付 賬 . +Is it a recent picture ? 那 是 一张 近照 吗 ? +Have you finished breakfast yet ? 你 吃 完 早 飯 了 嗎 ? +He made mistakes on purpose to annoy me . 他 为了 惹恼 我 故意 犯错 . +All you need to do is trust each other . 除了 相信 对方 以外 , 你们 没什么 要 做 的 了 . +The teacher made us repeat the word . 老師 要 我們 重 複 這 個 字 . +Do not blame the mistake on her . 不要 把 這個 錯誤 歸咎 於 她 . +Grab him . 抓住 他 . +The new medicine saved his life . 這個 新藥 救 了 他 的 命 . +Have you ever had food poisoning ? 您 曾經 食物中毒 過 嗎 ? +Are your hands clean ? 你 的 手 乾 淨 嗎 ? +They always wake up early , even on Sundays . 他們 總 是 早起 , 即使 是 在 周日 . +Can you give me your phone number ? 你 能 給 我 你 的 電話 號碼 嗎 ? +He pretended not to be listening . 他 裝作 沒在 聽 . +Are you a senior high school student ? 你 是 個 高中生 嗎 ? +Why did not you read the magazine ? 你 为什么 不读 这 杂志 呢 ? +Many thanks . 非常感谢 ! +You will learn how to do it sooner or later . 你 遲早 會 學會 怎麼 做 . +Goodnight . 晚安 . +I had a strange dream . 我 做 了 一个 奇怪 的 梦 . +I am crazy about football . 我 愛 足球 愛 瘋 了 . +His parents took him for a walk . 他 的 父母 帶 他 去 散步 . +You must think I am stupid . 你 肯定 认为 我 傻 . +What time will you leave ? 你 什么 时候 离开 ? +I do not like to leave things up in the air . 我 不 喜歡 讓 事情 懸而未決 . +It is rare to find big yards in Japan . 能 在 日本 找到 这样 的 大 的 院子 实属 罕见 . +I have just eaten lunch . 我 剛 吃 過午 飯 . +He left the room . 他 走出 了 房間 . +Do you know what Tom will say ? 你 知道 湯姆會 說 甚麼 嗎 ? +I tried to stop that from happening . 我 试 着 阻止 它 发生 . +Do you really think I look like Tom ? 你 真的 觉得 我 长 得 像 汤姆 吗 ? +We guarantee our products for one year . 我們 保證 我們 的 產品 一年 . +He has never been late for school . 他 從來 沒有 上學 遲到 . +Do you miss me ? 你 想 我 吗 ? +He plays the violin very well . 他 小提琴 拉 得 很 好 . +He looks old , but he has not reached 30 yet . 他 看上去 老 , 但 他 还 不到 30 岁 . +A bird in the hand is worth two in the bush . 一 鳥 在手 勝 過 二 鳥 在 林 . +Someone tapped me on the shoulder . 有人 拍了拍 我 的 肩膀 . +It happened in the blink of an eye . 它 發生 在 一眨眼 之間 . +She earns 30 dollars per day . 她 每天 挣 30 美元 . +You broke the rules . 你 触犯 了 规则 . +This work must be finished by Monday . 這項 工作 必須 在 週一 ​ ​ 前 完成 . +Do you have any cough medicine ? 你 有 止咳 藥 嗎 ? +This pear smells nice . 这 只 梨 闻 上去 很 香 . +Tom is not complaining . 湯姆 沒有 抱怨 . +He called in to say he could not attend the meeting . 他 打 電話 來說 他 不 會 參加 會 議 了 . +We encountered a lot of difficulties on the expedition . 我们 在 探险 的 时候 遇到 了 很多 困难 . +We furnished the refugees with blankets . 我們 提供 了 難民 們 毛毯 . +Please take your shoes off . 請 脫掉 你 的 鞋子 . +I walked as slowly as I could . 我 盡 可能 的 走慢 一點 . +Nobody supported her . 没 人 支持 她 . +The man is eating bread . 这个 男人 在 吃 面包 . +Nothing ventured , nothing gained . 没有 挑战 就 没有 收获 . +I invited my friends to dinner . 我 邀請 我 的 朋友 吃 晚餐 . +He refuses to believe us . 他 拒绝 相信 我们 . +I do not like wine . 我 不 喜欢 红酒 . +Here is a basket full of vegetables . 這裡 有個 裝滿 蔬菜 的 籃子 . +Let is talk about this tomorrow . 我们 来 讨论 下 明天 吧 . +I would like to have some more water . 请 再 给 我 一些 水 . +I hope we find Tom . 我 希望 我们 能 找到 汤姆 . +I should have brought my camera . 我 應該 把 我 的 相機 帶來 . +He fell asleep with the radio on . 他 睡著 了 但 收音 機 還 開著 . +He solved the difficult problem . 他 解決 了 難題 . +You are much less likely to get a good position if you do not speak English . 如果 你 不会 说 英语 , 你 就 很 难 得到 一个 好 的 职位 . +Her idea is better than yours . 她 的 想法 比 你 的 好 . +Learning English requires patience . 學 英語 需要 耐性 . +You will forget about me someday . 有 一天 你 会 忘 了 我 . +I will eat here . 我 會 在 這裡 吃 飯 . +Tom is anxious to see you . Tom 非常 渴望 见到 你 . +A beautiful girl sat next to me . 一個 美麗 的 女孩 坐在 我 旁邊 . +Tom is a good worker . 湯姆 是 個 好 工人 . +We can not get close to the enemy . 我们 无法 接近 敌人 . +There is not a cloud in the sky . 天上 没有 一片 云 . +She will accompany me on the piano . 她 會彈 鋼琴 為 我 伴奏 . +I could not understand him at first . 起初 我 聽 不 懂 他 說 的 話 . +All of them are not poor . 他们 都 不 穷 . +Tom told me where Mary lives . 汤姆 告诉 了 我 玛丽 住 哪儿 . +He is an expert at fishing . 他 是 个 钓鱼 专家 . +It snowed a lot . 下 了 很多 的 雪 . +The medicine made me very sleepy . 這個 藥 讓 我 很 想 睡 覺 . +Sydney is the largest city in Australia . 悉尼 是 澳大利 亞 最大 的 城市 . +His wife is quite a talented woman . 他 老婆 很 有 才 . +I do not belong to any club . 我 不 屬 於 任何 社團 . +Tom does not eat meat and neither does Mary . 湯姆 不吃 肉 , 瑪麗 也 是 . +Send us a telegram when you arrive . 當 你 到 的 時候 發 一份 電報 給 我們 . +Tom grows strawberries in his garden . 汤姆 在 他 的 院子 里 种着 草莓 . +My father is healthy . 父亲 很 健康 . +He does not know how to swim . 他 不会 游泳 . +The meeting ended . 会议 结束 了 . +I have enjoyed reading this novel . 我 喜 歡讀 這 本小 說 . +His book is very interesting . 他 的 書 非常 有趣 . +I understand perfectly . 我 完全 明白 . +The apple does not fall far from the tree . 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Look it up in your dictionary . 查查 你 的 字典 . +Tom is teaching me to how to sail . 汤姆 正在 教 我 怎么 开 帆船 . +Go home . 回家吧 . +Black suits you . 黑色 很 衬 你 . +I can not leave . 我 不能 走 . +That girl is good @-@ looking . 那個 女孩 長 得 很 好看 . +They named their son Tom . 他们 给 他们 的 儿子 取名 叫 汤姆 . +It is confidential . 这 是 机密 . +I met with an old woman . 我 遇见 了 一位 老妇人 . +I saw what Tom did . 我 見 識到 了 湯姆 的 作為 . +I will always remember your kindness . 我 會 永遠 記得 你 的 好意 . +Tom does not have any friends who are willing to help him . 汤姆 没有 愿意 帮助 他 的 朋友 . +What are they doing here ? 他們 在 這裡 做 甚麼 ? +Tom is dog bit him playfully . 汤姆 的 狗 咬 他 玩 . +My house is a long way from here . 我家 离 这儿 很远 . +What time do you usually get up ? 你 通常 什麼 時候 起床 ? +A man suddenly appeared in the doorway . 一个 男 的 突然 出现 在 门口 . +I do not want to work under these conditions . 我 不想 在 这些 条件 下 工作 . +I like to listen to the radio . 我 喜歡 聽 收音 機 . +I learned a lot from his books . 我 從 他 的 書學 到 了 很多 . +We swam until it got dark . 我們 游泳 到 天黑 . +The storm had a serious effect on the economy . 这场 暴风雪 已经 对 经济 造成 了 很 严重 的 影响 . +The plane takes off in ten minutes . 飛機 十分 鐘 後 起 飛 . +It is out of the question for you to go to New York this weekend . 這個 週末 去 紐約 對 你 來說 是 不 可能 的 事 . +The file is corrupt . 文件 已损坏 . diff --git a/TRANSLATE/cmn.txt b/TRANSLATE/cmn.txt new file mode 100644 index 0000000..f9399e0 --- /dev/null +++ b/TRANSLATE/cmn.txt @@ -0,0 +1,24026 @@ +Hi. 嗨。 CC-BY 2.0 (France) Attribution: tatoeba.org #538123 (CM) & #891077 (Martha) +Hi. 你好。 CC-BY 2.0 (France) Attribution: tatoeba.org #538123 (CM) & #4857568 (musclegirlxyp) +Run. 你用跑的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4008918 (JSakuragi) & #3748344 (egg0073) +Wait! 等等! CC-BY 2.0 (France) Attribution: tatoeba.org #1744314 (belgavox) & #4970122 (wzhd) +Wait! 等一下! CC-BY 2.0 (France) Attribution: tatoeba.org #1744314 (belgavox) & #5092613 (mirrorvan) +Hello! 你好。 CC-BY 2.0 (France) Attribution: tatoeba.org #373330 (CK) & #4857568 (musclegirlxyp) +I won! 我赢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005192 (CK) & #5102367 (mirrorvan) +Oh no! 不会吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1299275 (CK) & #5092475 (mirrorvan) +Cheers! 乾杯! CC-BY 2.0 (France) Attribution: tatoeba.org #487006 (human600) & #765577 (Martha) +Got it? 你懂了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #455353 (FeuDRenais) & #7768205 (jiangche) +He ran. 他跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #672229 (CK) & #5092389 (mirrorvan) +Hop in. 跳进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1111548 (Scott) & #5092444 (mirrorvan) +I quit. 我退出。 CC-BY 2.0 (France) Attribution: tatoeba.org #731636 (Eldad) & #5102253 (mirrorvan) +I'm OK. 我沒事。 CC-BY 2.0 (France) Attribution: tatoeba.org #433763 (CK) & #819304 (Martha) +I'm up. 我已经起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2765357 (arnxy20) & #8727845 (crescat) +Listen. 听着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1913088 (CK) & #5092137 (mirrorvan) +No way! 不可能! CC-BY 2.0 (France) Attribution: tatoeba.org #2175 (CS) & #503298 (fucongcong) +No way! 没门! CC-BY 2.0 (France) Attribution: tatoeba.org #2175 (CS) & #2052721 (sadhen) +Really? 你确定? CC-BY 2.0 (France) Attribution: tatoeba.org #373216 (kotobaboke) & #4208543 (Ethan_lin) +Try it. 试试吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756252 (cairnhead) & #4757237 (ryanwoo) +We try. 我们来试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #247763 (CK) & #5102171 (mirrorvan) +Why me? 为什么是我? CC-BY 2.0 (France) Attribution: tatoeba.org #24958 (CK) & #796834 (fucongcong) +Ask Tom. 去问汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954263 (CK) & #2017428 (sadhen) +Awesome! 好棒! CC-BY 2.0 (France) Attribution: tatoeba.org #433512 (CK) & #4970070 (wzhd) +Be calm. 冷静点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916317 (CK) & #5092667 (mirrorvan) +Be fair. 公平点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916316 (CK) & #5092666 (mirrorvan) +Be kind. 友善点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916315 (CK) & #5092663 (mirrorvan) +Be nice. 和气点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916314 (CK) & #5092659 (mirrorvan) +Be nice. 友善点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916314 (CK) & #5092663 (mirrorvan) +Call me. 联系我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553532 (CK) & #5102283 (mirrorvan) +Call us. 联系我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916313 (CK) & #5092654 (mirrorvan) +Come in. 进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #348091 (Hertz) & #5102310 (mirrorvan) +Get Tom. 找到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972633 (CK) & #5092681 (mirrorvan) +Get out! 滾出去! CC-BY 2.0 (France) Attribution: tatoeba.org #266790 (CK) & #819288 (Martha) +Get out! 出去! CC-BY 2.0 (France) Attribution: tatoeba.org #266790 (CK) & #7768017 (jiangche) +Go away! 走開! CC-BY 2.0 (France) Attribution: tatoeba.org #433518 (CK) & #819289 (Martha) +Go away! 滾! CC-BY 2.0 (France) Attribution: tatoeba.org #433518 (CK) & #884704 (Tajfun) +Go away. 走開! CC-BY 2.0 (France) Attribution: tatoeba.org #433491 (CK) & #819289 (Martha) +Go home. 回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2230769 (CK) & #5102214 (mirrorvan) +Goodbye! 再见! CC-BY 2.0 (France) Attribution: tatoeba.org #516745 (minshirui) & #336477 (fucongcong) +Goodbye! 告辞! CC-BY 2.0 (France) Attribution: tatoeba.org #516745 (minshirui) & #4887737 (musclegirlxyp) +Hang on! 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #1894404 (Spamster) & #5092492 (mirrorvan) +Hang on! 等一下! CC-BY 2.0 (France) Attribution: tatoeba.org #1894404 (Spamster) & #5092613 (mirrorvan) +Hang on. 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972640 (CK) & #5092492 (mirrorvan) +He came. 他来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #853153 (piksea) & #437438 (fucongcong) +He runs. 他跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #672254 (CK) & #5092396 (mirrorvan) +Help me. 帮我一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #266065 (Zifre) & #332800 (fucongcong) +Help us. 帮帮我们吧! CC-BY 2.0 (France) Attribution: tatoeba.org #2187193 (CK) & #7771852 (jiangche) +Hit Tom. 去打汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203859 (CK) & #8696225 (crescat) +Hold on. 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #1357000 (sacredceltic) & #5092492 (mirrorvan) +Hug Tom. 抱抱汤姆! CC-BY 2.0 (France) Attribution: tatoeba.org #2203860 (CK) & #4759957 (ryanwoo) +Hug Tom. 请抱紧汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203860 (CK) & #5096784 (mirrorvan) +I agree. 我同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #436281 (lukaszpp) & #333224 (fucongcong) +I'm ill. 我生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #448236 (CK) & #780291 (Martha) +I'm sad. 我很难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #317741 (CK) & #333736 (fucongcong) +I'm wet. 我濕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1780075 (Spamster) & #8388737 (wangchou) +It's OK. 没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #413756 (CK) & #333730 (fucongcong) +It's me. 是我。 CC-BY 2.0 (France) Attribution: tatoeba.org #42400 (sysko) & #335161 (fucongcong) +Join us. 来加入我们吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745546 (belgavox) & #5092554 (mirrorvan) +Keep it. 留着吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1913087 (CK) & #5092637 (mirrorvan) +Kiss me. 吻我。 CC-BY 2.0 (France) Attribution: tatoeba.org #565931 (Fish) & #5092385 (mirrorvan) +Perfect! 完美! CC-BY 2.0 (France) Attribution: tatoeba.org #374568 (blay_paul) & #5092133 (mirrorvan) +See you. 再见! CC-BY 2.0 (France) Attribution: tatoeba.org #1151432 (Roggy) & #336477 (fucongcong) +Shut up! 閉嘴! CC-BY 2.0 (France) Attribution: tatoeba.org #462430 (lukaszpp) & #3718928 (egg0073) +Skip it. 不管它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1953076 (ozzie) & #5102320 (mirrorvan) +Take it. 拿走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1913089 (CK) & #5092645 (mirrorvan) +Wake up! 醒醒! CC-BY 2.0 (France) Attribution: tatoeba.org #323780 (CK) & #5102191 (mirrorvan) +Wash up. 去清洗一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #20763 (CK) & #5092178 (mirrorvan) +We know. 我们知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1556167 (shanghainese) & #5102291 (mirrorvan) +Welcome. 欢迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #138919 (CM) & #343770 (fucongcong) +Who won? 谁赢了? CC-BY 2.0 (France) Attribution: tatoeba.org #2005190 (CK) & #5102365 (mirrorvan) +Why not? 为什么不? CC-BY 2.0 (France) Attribution: tatoeba.org #30545 (CK) & #796839 (fucongcong) +You run. 你跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #672252 (CK) & #5092393 (mirrorvan) +You win. 算你狠。 CC-BY 2.0 (France) Attribution: tatoeba.org #8645635 (hamsolo474) & #2485289 (fenfang557) +Back off! 往后退点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954264 (CK) & #5102285 (mirrorvan) +Back off. 往后退点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553533 (CK) & #5102285 (mirrorvan) +Be still. 静静的,别动。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954265 (CK) & #5102329 (mirrorvan) +Beats me. 我一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #320001 (blay_paul) & #7772071 (jiangche) +Cuff him. 把他铐上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954267 (CK) & #5102333 (mirrorvan) +Drive on. 往前开。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954268 (CK) & #5102335 (mirrorvan) +Get away! 走開! CC-BY 2.0 (France) Attribution: tatoeba.org #240634 (CM) & #819289 (Martha) +Get away! 滾! CC-BY 2.0 (France) Attribution: tatoeba.org #240634 (CM) & #884704 (Tajfun) +Get down! 趴下! CC-BY 2.0 (France) Attribution: tatoeba.org #268087 (CM) & #5102178 (mirrorvan) +Get lost! 滾! CC-BY 2.0 (France) Attribution: tatoeba.org #623565 (Dorenda) & #884704 (Tajfun) +Get lost! 滚。 CC-BY 2.0 (France) Attribution: tatoeba.org #623565 (Dorenda) & #8696338 (crescat) +Get lost. 滚。 CC-BY 2.0 (France) Attribution: tatoeba.org #854500 (CK) & #8696338 (crescat) +Get real. 醒醒吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1324400 (Scott) & #5092481 (mirrorvan) +Good job! 做得好! CC-BY 2.0 (France) Attribution: tatoeba.org #1021038 (Quazel) & #4261676 (egg0073) +Good job! 干的好! CC-BY 2.0 (France) Attribution: tatoeba.org #1021038 (Quazel) & #7767580 (jiangche) +Grab Tom. 抓住汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972639 (CK) & #5092688 (mirrorvan) +Grab him. 抓住他。 CC-BY 2.0 (France) Attribution: tatoeba.org #285184 (CK) & #5092265 (mirrorvan) +Have fun. 玩得開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #21267 (CK) & #819292 (Martha) +He tries. 他来试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #288166 (CM) & #5092267 (mirrorvan) +How cute! 多可爱啊! CC-BY 2.0 (France) Attribution: tatoeba.org #36097 (CM) & #5092632 (mirrorvan) +Humor me. 你就随了我的意吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954271 (CM) & #5102344 (mirrorvan) +Hurry up. 趕快! CC-BY 2.0 (France) Attribution: tatoeba.org #1329 (brauliobezerra) & #46 (fucongcong) +Hurry up. 快点! CC-BY 2.0 (France) Attribution: tatoeba.org #1329 (brauliobezerra) & #512039 (fucongcong) +Hurry up. 快点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1329 (brauliobezerra) & #5092239 (mirrorvan) +I did it. 我做到了! CC-BY 2.0 (France) Attribution: tatoeba.org #2549832 (CK) & #8709238 (crescat) +I forgot. 我忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #436603 (lukaszpp) & #335875 (fucongcong) +I resign. 我放弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #731590 (Eldad) & #5102250 (mirrorvan) +I'll pay. 我來付錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #411285 (CK) & #819298 (Martha) +I'm busy. 我很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #261721 (CK) & #819333 (Martha) +I'm cold. 我冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #455947 (lukaszpp) & #471387 (fucongcong) +I'm cool. 我很酷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202692 (CK) & #8933590 (crescat) +I'm fine. 我很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #257272 (Eldad) & #794004 (fucongcong) +I'm full. 我吃飽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433863 (CK) & #819300 (Martha) +I'm home. 我在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111725 (CK) & #919764 (Martha) +I'm lost. 我迷失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #455833 (lukaszpp) & #5092558 (mirrorvan) +I'm sick. 我生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #780304 (vgigregg) & #780291 (Martha) +I'm sick. 我病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #780304 (vgigregg) & #2757252 (cienias) +I'm tall. 我个子高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2764439 (CK) & #7772132 (jiangche) +Leave me. 让我一个人呆会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954273 (CK) & #5102345 (mirrorvan) +Let's go! 走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #241077 (CK) & #334277 (fucongcong) +Let's go! 我們開始吧! CC-BY 2.0 (France) Attribution: tatoeba.org #241077 (CK) & #819358 (Martha) +Let's go! 我們走吧! CC-BY 2.0 (France) Attribution: tatoeba.org #241077 (CK) & #819359 (Martha) +Look out! 当心! CC-BY 2.0 (France) Attribution: tatoeba.org #20719 (CK) & #5092162 (mirrorvan) +Say what? 啥? CC-BY 2.0 (France) Attribution: tatoeba.org #8453907 (shekitten) & #8463674 (gumblex) +She runs. 她跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #672264 (CM) & #765935 (Martha) +Stand up. 起立。 CC-BY 2.0 (France) Attribution: tatoeba.org #1573801 (donkirkby) & #1746081 (sadhen) +Terrific! 很棒! CC-BY 2.0 (France) Attribution: tatoeba.org #52022 (Zifre) & #5092136 (mirrorvan) +They won. 他们赢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1618734 (CK) & #5092506 (mirrorvan) +Tom died. 汤姆去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005188 (CK) & #5102363 (mirrorvan) +Tom lied. 汤姆说谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005179 (CK) & #5100135 (mirrorvan) +Tom lost. 汤姆输了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005180 (CK) & #5094682 (musclegirlxyp) +Tom quit. 汤姆不干了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005183 (CK) & #5102347 (mirrorvan) +Tom swam. 汤姆游泳了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203845 (CK) & #4977423 (musclegirlxyp) +Tom swam. Tom游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203845 (CK) & #5529807 (egg0073) +Trust me. 相信我。 CC-BY 2.0 (France) Attribution: tatoeba.org #954991 (FeuDRenais) & #5092404 (mirrorvan) +Try hard. 努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #271901 (Zifre) & #5102184 (mirrorvan) +Try some. 试试吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916312 (CK) & #4757237 (ryanwoo) +Try this. 试试这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1916311 (CK) & #8715853 (crescat) +Who died? 谁死了? CC-BY 2.0 (France) Attribution: tatoeba.org #2005187 (CK) & #5102361 (mirrorvan) +Birds fly. 鳥類飛行。 CC-BY 2.0 (France) Attribution: tatoeba.org #278213 (CK) & #819282 (Martha) +Call home! 打电话回家! CC-BY 2.0 (France) Attribution: tatoeba.org #1730009 (CK) & #5092540 (mirrorvan) +Calm down. 冷静点。 CC-BY 2.0 (France) Attribution: tatoeba.org #435575 (CK) & #5092667 (mirrorvan) +Catch him. 抓住他。 CC-BY 2.0 (France) Attribution: tatoeba.org #449029 (CK) & #5092265 (mirrorvan) +Come home. 回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #413767 (Scott) & #5102214 (mirrorvan) +Cool down. 冷静点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860739 (CK) & #5092667 (mirrorvan) +Do it now. 現在就做。 CC-BY 2.0 (France) Attribution: tatoeba.org #435763 (CK) & #771521 (Martha) +Dogs bark. 狗会叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1357070 (sacredceltic) & #5092504 (mirrorvan) +Don't cry. 别哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #953247 (CK) & #4265201 (notabene) +Excuse me. 对不起。 CC-BY 2.0 (France) Attribution: tatoeba.org #433504 (CK) & #472304 (fucongcong) +Fantastic! 好棒! CC-BY 2.0 (France) Attribution: tatoeba.org #433511 (CK) & #4970070 (wzhd) +Fantastic! 很棒! CC-BY 2.0 (France) Attribution: tatoeba.org #433511 (CK) & #5092136 (mirrorvan) +Feel this. 来感受一下这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972624 (CK) & #5092677 (mirrorvan) +Follow me. 请跟我来。 CC-BY 2.0 (France) Attribution: tatoeba.org #250135 (CK) & #466246 (fucongcong) +Follow us. 请跟着我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972627 (CK) & #5092678 (mirrorvan) +Good luck. 祝你好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #239431 (sacredceltic) & #812490 (fucongcong) +Goodnight. 晚安。 CC-BY 2.0 (France) Attribution: tatoeba.org #7822164 (sharris123) & #4463431 (maple) +Grab that. 抓住那个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972635 (CK) & #5092684 (mirrorvan) +Grab this. 抓住这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972637 (CK) & #5092685 (mirrorvan) +He's a DJ. 他是一个 DJ 。 CC-BY 2.0 (France) Attribution: tatoeba.org #1383444 (CK) & #1878329 (sadhen) +He's lazy. 他很懒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2030108 (Spamster) & #343917 (fucongcong) +Hold fire. 停火。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972642 (CK) & #5092693 (mirrorvan) +How awful! 太可怕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72077 (CM) & #5102161 (mirrorvan) +How weird! 多怪啊! CC-BY 2.0 (France) Attribution: tatoeba.org #4462562 (CK) & #5092629 (mirrorvan) +I am cold. 我冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #436325 (lukaszpp) & #471387 (fucongcong) +I am lost. 我迷失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164098 (etoile) & #5092558 (mirrorvan) +I am okay. 我沒事。 CC-BY 2.0 (France) Attribution: tatoeba.org #376402 (saeb) & #819304 (Martha) +I am sick. 我生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #436427 (lukaszpp) & #780291 (Martha) +I am tall. 我个子高。 CC-BY 2.0 (France) Attribution: tatoeba.org #436275 (lukaszpp) & #7772132 (jiangche) +I clapped. 我拍手。 CC-BY 2.0 (France) Attribution: tatoeba.org #6196262 (CK) & #920090 (Martha) +I get you. 我了解你。 CC-BY 2.0 (France) Attribution: tatoeba.org #904789 (Trailsend) & #904787 (kanaorange) +I give up. 我放弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #241200 (CK) & #5102250 (mirrorvan) +I hope so. 我希望如此。 CC-BY 2.0 (France) Attribution: tatoeba.org #51142 (CK) & #333103 (fucongcong) +I laughed. 我笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258713 (CK) & #335165 (fucongcong) +I promise. 我向你保证。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111800 (CK) & #502727 (fucongcong) +I saw Tom. 我看見湯姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2244569 (CK) & #6623201 (verdastelo9604) +I was shy. 我害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4695537 (Hybrid) & #8215726 (verdastelo9604) +I'll swim. 我要游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #5576197 (CK) & #6994070 (verdastelo9604) +I'm a man. 我是个男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #580774 (FeuDRenais) & #333655 (fucongcong) +I'm bored. 我覺得很無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #431539 (Clavain) & #3668663 (egg0073) +I'm first. 我是第一。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202863 (CK) & #8686688 (crescat) +I'm right. 我是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321343 (CK) & #816721 (Martha) +I'm sorry. 对不起。 CC-BY 2.0 (France) Attribution: tatoeba.org #38387 (CK) & #472304 (fucongcong) +I'm sorry. 我很抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #38387 (CK) & #824688 (Martha) +I'm young. 我還年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #321850 (CK) & #832459 (Martha) +Is it far? 遠嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1308427 (CK) & #6559044 (xjjAstrus) +It snowed. 下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1181168 (Eldad) & #780269 (Martha) +It's 3:30. 3点半了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456175 (lukaszpp) & #795758 (fucongcong) +It's cold. 天很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #1813 (CK) & #334647 (fucongcong) +It's food. 它是食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187210 (CK) & #4887700 (musclegirlxyp) +It's free. 它是免費的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435782 (CK) & #825127 (Martha) +It's late. 很晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31195 (CK) & #745892 (fucongcong) +It's true. 這是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #54868 (CK) & #771357 (Martha) +Keep them. 留着吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111633 (CK) & #5092637 (mirrorvan) +Kill them. 殺了他們 CC-BY 2.0 (France) Attribution: tatoeba.org #6049439 (mailohilohi) & #6049579 (magicalrpetz47) +Let me in. 让我进去。 CC-BY 2.0 (France) Attribution: tatoeba.org #277466 (CK) & #333350 (fucongcong) +Lie still. 躺着不动。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839430 (CK) & #5092579 (mirrorvan) +Look back! 回头看! CC-BY 2.0 (France) Attribution: tatoeba.org #240166 (CK) & #5102163 (mirrorvan) +Move over. 腾一下地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553407 (CK) & #5102267 (mirrorvan) +Of course! 當然! CC-BY 2.0 (France) Attribution: tatoeba.org #433730 (CK) & #771439 (Martha) +Of course. 當然。 CC-BY 2.0 (France) Attribution: tatoeba.org #433492 (CK) & #825987 (Martha) +Of course. 当然了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433492 (CK) & #4970077 (wzhd) +Oh please! 噢拜托了! CC-BY 2.0 (France) Attribution: tatoeba.org #1349961 (sacredceltic) & #1394939 (mtdot) +Open fire! 开火! CC-BY 2.0 (France) Attribution: tatoeba.org #1108002 (Scott) & #5092433 (mirrorvan) +Read this. 念这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1098659 (cntrational) & #5092431 (mirrorvan) +See above. 参见上文。 CC-BY 2.0 (France) Attribution: tatoeba.org #273621 (CM) & #333511 (fucongcong) +She cried. 她哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313193 (CK) & #5092280 (mirrorvan) +She tried. 她试过了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309976 (CK) & #5092274 (mirrorvan) +She walks. 她在行走。 CC-BY 2.0 (France) Attribution: tatoeba.org #316925 (CK) & #5092290 (mirrorvan) +Sit tight. 耐心等着。 CC-BY 2.0 (France) Attribution: tatoeba.org #40196 (CM) & #5092221 (mirrorvan) +Slow down. 慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187252 (CK) & #4754645 (egg0073) +Stay calm. 保持冷靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #788304 (hrin) & #778870 (Martha) +Stay down! 趴着! CC-BY 2.0 (France) Attribution: tatoeba.org #1777435 (Spamster) & #5092568 (mirrorvan) +Stop that! 住手。 CC-BY 2.0 (France) Attribution: tatoeba.org #651592 (orbpic) & #5092387 (mirrorvan) +Take care! 照顾好自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #324861 (CK) & #510765 (fucongcong) +Take care. 照顾好自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #20362 (sacredceltic) & #510765 (fucongcong) +Thank you. 谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1876041 (Asma) & #5094881 (musclegirlxyp) +They left. 他们离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111368 (CK) & #8696255 (crescat) +Tom slept. 汤姆睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6645778 (CK) & #7768193 (jiangche) +Tom swims. Tom游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #5190879 (CK) & #5529807 (egg0073) +Tom waved. 汤姆挥手了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005185 (CK) & #5102356 (mirrorvan) +Tom'll go. 湯姆要走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2123528 (CK) & #6939445 (verdastelo9604) +Turn left. 向左转。 CC-BY 2.0 (France) Attribution: tatoeba.org #464284 (lukaszpp) & #465034 (fucongcong) +Wait here. 在这等着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841188 (CK) & #5102308 (mirrorvan) +Watch out! 当心! CC-BY 2.0 (France) Attribution: tatoeba.org #375828 (megamanenm) & #5092162 (mirrorvan) +Well done! 做得好! CC-BY 2.0 (France) Attribution: tatoeba.org #464478 (lukaszpp) & #4261676 (egg0073) +Well done! 干的好! CC-BY 2.0 (France) Attribution: tatoeba.org #464478 (lukaszpp) & #7767580 (jiangche) +Who cares? 爱谁谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #40434 (CK) & #5092226 (mirrorvan) +Who's she? 她是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2203797 (CK) & #4887707 (musclegirlxyp) +Wonderful! 很棒! CC-BY 2.0 (France) Attribution: tatoeba.org #433510 (CK) & #5092136 (mirrorvan) +You idiot! 蠢货! CC-BY 2.0 (France) Attribution: tatoeba.org #418475 (Scott) & #462028 (fucongcong) +You stink. 你身上发臭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834656 (shekitten) & #7771683 (jiangche) +All aboard! 请上船! CC-BY 2.0 (France) Attribution: tatoeba.org #22121 (CM) & #5092195 (mirrorvan) +Am I wrong? 我錯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410779 (CK) & #825125 (Martha) +Be on time. 要守时! CC-BY 2.0 (France) Attribution: tatoeba.org #2244995 (CK) & #8743793 (crescat) +Be patient. 耐心等着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1486456 (Spamster) & #5092221 (mirrorvan) +Birds sing. 鳥兒歌唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #278174 (CK) & #819283 (Martha) +Can I help? 我可以幫忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #266051 (CK) & #908384 (Martha) +Come on in. 进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #348107 (Zifre) & #5102310 (mirrorvan) +Definitely! 必须的! CC-BY 2.0 (France) Attribution: tatoeba.org #30542 (CM) & #4505064 (dongwang) +Don't move! 别动! CC-BY 2.0 (France) Attribution: tatoeba.org #2111911 (CK) & #2531345 (fenfang557) +Don't move. 不要动。 CC-BY 2.0 (France) Attribution: tatoeba.org #433502 (CK) & #461602 (fucongcong) +Don't wait. 不要等待! CC-BY 2.0 (France) Attribution: tatoeba.org #1292208 (CK) & #4970132 (wzhd) +Fill it up. 把它填滿。 CC-BY 2.0 (France) Attribution: tatoeba.org #322631 (CK) & #825952 (Martha) +Follow him. 跟著他走。 CC-BY 2.0 (France) Attribution: tatoeba.org #433754 (CK) & #819287 (Martha) +Go on home. 回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2230772 (CK) & #5102214 (mirrorvan) +Go wash up. 去洗洗吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2230782 (CK) & #8696177 (crescat) +God exists. 上帝存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #433457 (CK) & #819291 (Martha) +Good night. 晚安。 CC-BY 2.0 (France) Attribution: tatoeba.org #2362724 (NotApplicable) & #4463431 (maple) +He gave in. 他让步了. CC-BY 2.0 (France) Attribution: tatoeba.org #296376 (CK) & #1424209 (asosan) +He is a DJ. 他是一个 DJ 。 CC-BY 2.0 (France) Attribution: tatoeba.org #288669 (CK) & #1878329 (sadhen) +He is lazy. 他很懒。 CC-BY 2.0 (France) Attribution: tatoeba.org #299797 (CK) & #343917 (fucongcong) +He is mean. 他很凶。 CC-BY 2.0 (France) Attribution: tatoeba.org #482973 (minshirui) & #334863 (fucongcong) +He is poor. 他很穷。 CC-BY 2.0 (France) Attribution: tatoeba.org #516601 (kebukebu) & #336441 (fucongcong) +He is tall. 他高。 CC-BY 2.0 (France) Attribution: tatoeba.org #773336 (marloncori) & #4887716 (musclegirlxyp) +Hello, Tom. 你好,汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #54604 (Zifre) & #5092241 (mirrorvan) +Hey, relax. 嘿,放松点。 CC-BY 2.0 (France) Attribution: tatoeba.org #325177 (CM) & #5102212 (mirrorvan) +How lovely! 多可爱啊! CC-BY 2.0 (France) Attribution: tatoeba.org #1913086 (CK) & #5092632 (mirrorvan) +How's work? 工作怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #245394 (CK) & #5100103 (mirrorvan) +Hurry home. 赶快回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841177 (CK) & #5092584 (mirrorvan) +I am a man. 我是个男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #386704 (Mouseneb) & #333655 (fucongcong) +I am short. 我个头矮。 CC-BY 2.0 (France) Attribution: tatoeba.org #436273 (lukaszpp) & #4265202 (notabene) +I can cook. 我会做饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245639 (CK) & #4456369 (plutowu) +I can swim. 我會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #256178 (CK) & #918075 (Martha) +I can't go. 我不能走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951742 (CK) & #7771688 (jiangche) +I eat here. 我在這裡吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #449105 (CK) & #826251 (Martha) +I envy her. 我嫉妒她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1414039 (Eldad) & #5359462 (egg0073) +I envy him. 我羡慕他。 CC-BY 2.0 (France) Attribution: tatoeba.org #259949 (CK) & #2076343 (sadhen) +I feel sad. 我很难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #5263414 (CK) & #333736 (fucongcong) +I hate you. 我恨你。 CC-BY 2.0 (France) Attribution: tatoeba.org #827295 (RaspaKrusto) & #827522 (Martha) +I know Tom. 我认识汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235724 (CK) & #3630139 (suitchic) +I know him. 我認識他。 CC-BY 2.0 (France) Attribution: tatoeba.org #71751 (CK) & #825892 (Martha) +I like tea. 我喜欢茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #253293 (CK) & #399985 (fucongcong) +I like you. 我喜歡你。 CC-BY 2.0 (France) Attribution: tatoeba.org #410751 (CK) & #762004 (Martha) +I like you. 我喜欢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #410751 (CK) & #1424394 (sadhen) +I love her. 我愛她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261221 (CK) & #759035 (Martha) +I love you. 我爱您。 CC-BY 2.0 (France) Attribution: tatoeba.org #1434 (awael58) & #380195 (Martha) +I miss him. 我想念他。 CC-BY 2.0 (France) Attribution: tatoeba.org #479775 (AniDeer) & #482707 (biglion) +I miss you. 我想念你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1308 (brauliobezerra) & #2180625 (egg0073) +I need you. 我需要你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17735 (CK) & #512853 (fucongcong) +I think so. 我想是這樣的。 CC-BY 2.0 (France) Attribution: tatoeba.org #254072 (CK) & #824631 (Martha) +I use this. 我使用这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1356774 (sacredceltic) & #1533414 (CLARET) +I'll do it. 我會做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433474 (CK) & #819461 (Martha) +I'm a hero. 我是個英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #25509 (CK) & #826001 (Martha) +I'm a liar. 我是个骗子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1468181 (AMIKEMA) & #8685539 (crescat) +I'm humble. 我是谦虚的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202962 (CK) & #5611553 (verdastelo9604) +I'm single. 我单身。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111685 (CK) & #4977440 (musclegirlxyp) +I'm single. 我單身。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111685 (CK) & #5691850 (xjjAstrus) +I'm sleepy. 我困了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438701 (tim1452) & #1358461 (sadhen) +I'm so fat. 我好胖哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1339 (Zifre) & #50 (fucongcong) +I'm thirty. 我三十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111679 (CK) & #8767504 (xjjAstrus) +Ignore Tom. 别理汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868480 (CK) & #5102314 (mirrorvan) +Is he tall? 他长得高吗? CC-BY 2.0 (France) Attribution: tatoeba.org #302406 (CK) & #8866914 (crescat) +Is it love? 那是愛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #663921 (bluepie88) & #3957684 (egg0073) +It's great. 真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824325 (CK) & #5942060 (verdastelo9604) +It's night. 是晚上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187224 (CK) & #6047459 (verdastelo9604) +Just relax. 放松点吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1555685 (Spamster) & #5102290 (mirrorvan) +Keep going. 继续吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111646 (CK) & #8686684 (crescat) +Keep it up! 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #45024 (CK) & #5092492 (mirrorvan) +Keep it up. 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #45026 (CK) & #5092492 (mirrorvan) +Keep quiet! 保持安静! CC-BY 2.0 (France) Attribution: tatoeba.org #272075 (CK) & #5102187 (mirrorvan) +Keep quiet. 保持安静! CC-BY 2.0 (France) Attribution: tatoeba.org #272043 (CK) & #5102187 (mirrorvan) +Let him in. 让他进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #464814 (CK) & #3032023 (sadhen) +Let me die. 让我去死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020543 (CK) & #4845112 (pig8322) +Let me see. 让我想一想。 CC-BY 2.0 (France) Attribution: tatoeba.org #65316 (CK) & #707208 (Yashanti) +Let me try. 让我试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #1554612 (CK) & #333051 (fucongcong) +Let me try. 让我来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1554612 (CK) & #5092185 (mirrorvan) +Let's pray. 让我们开始祈祷吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187249 (CK) & #8673663 (crescat) +Let's walk. 我们走走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007935 (CK) & #5897892 (verdastelo9604) +Look there. 看那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1635351 (Amastan) & #5092523 (mirrorvan) +No comment. 禁止评论。 CC-BY 2.0 (France) Attribution: tatoeba.org #873323 (U2FS) & #1454422 (sadhen) +No comment. 无可奉告。 CC-BY 2.0 (France) Attribution: tatoeba.org #873323 (U2FS) & #7774602 (jiangche) +No problem! 没问题! CC-BY 2.0 (France) Attribution: tatoeba.org #413611 (blay_paul) & #2043289 (sadhen) +No problem. 没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #551443 (FeuDRenais) & #333730 (fucongcong) +No problem. 没问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #551443 (FeuDRenais) & #343630 (fucongcong) +Oh, really? 噢,真的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2570909 (Hybrid) & #2771144 (cienias) +Once again. 再一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #433729 (CK) & #826049 (Martha) +Please sit. 请用座。 CC-BY 2.0 (France) Attribution: tatoeba.org #478180 (CK) & #8500212 (black333) +She smiled. 她笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311898 (CK) & #5092276 (mirrorvan) +Stand back! 往后站! CC-BY 2.0 (France) Attribution: tatoeba.org #1894221 (Spamster) & #5092607 (mirrorvan) +Stay sharp. 保持警惕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1627331 (Spamster) & #5092516 (mirrorvan) +Stay there. 留在这里别动。 CC-BY 2.0 (France) Attribution: tatoeba.org #462476 (lukaszpp) & #5102231 (mirrorvan) +Step aside. 让开。 CC-BY 2.0 (France) Attribution: tatoeba.org #40051 (CK) & #5092217 (mirrorvan) +Study hard. 好好学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #53465 (CK) & #5092230 (mirrorvan) +That hurts. 真疼。 CC-BY 2.0 (France) Attribution: tatoeba.org #462526 (lukaszpp) & #5092328 (mirrorvan) +Time flies. 時光飛逝。 CC-BY 2.0 (France) Attribution: tatoeba.org #263886 (CK) & #718352 (egg0073) +Time flies. 时间匆匆走过。 CC-BY 2.0 (France) Attribution: tatoeba.org #263886 (CK) & #5551139 (verdastelo9604) +Tom failed. 汤姆失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111179 (CK) & #8671326 (crescat) +Tom is shy. 汤姆害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203345 (CK) & #5663584 (verdastelo9604) +Tom smiled. 汤姆笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005184 (CK) & #5102350 (mirrorvan) +Tom yawned. 汤姆打哈欠了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2005186 (CK) & #5102359 (mirrorvan) +Turn right. 向右转。 CC-BY 2.0 (France) Attribution: tatoeba.org #464290 (lukaszpp) & #5092330 (mirrorvan) +We laughed. 我们笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1922452 (teapot) & #5092668 (mirrorvan) +We lost it. 我们失去了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241150 (CK) & #4844980 (pig8322) +We're boys. 我們是男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #6874274 (CK) & #825895 (Martha) +What is it? 這是什麼啊? CC-BY 2.0 (France) Attribution: tatoeba.org #42849 (brauliobezerra) & #4 (Martha) +What is it? 它是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #42849 (brauliobezerra) & #4887708 (musclegirlxyp) +What's new? 有什么新鲜事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25029 (CK) & #794256 (fucongcong) +Where am I? 我在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #255212 (adjusting) & #884699 (Martha) +Where am I? 這是什麼地方? CC-BY 2.0 (France) Attribution: tatoeba.org #255212 (adjusting) & #884701 (Martha) +Who are we? 我們是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #2254698 (CK) & #6146408 (xjjAstrus) +Who is she? 她是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #315731 (CK) & #4887707 (musclegirlxyp) +Who's next? 下一个是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2561317 (Hybrid) & #7768204 (jiangche) +Wood burns. 木材燃燒。 CC-BY 2.0 (France) Attribution: tatoeba.org #323576 (CK) & #826256 (Martha) +You got me. 算你狠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254995 (CK) & #2485289 (fenfang557) +Are we done? 我们完成了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1553536 (CK) & #1783788 (sadhen) +Are you Tom? 你是汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1495916 (CK) & #2163114 (sadhen) +Are you mad? 您生气了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #18965 (CK) & #476597 (fucongcong) +Are you mad? 你生气了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #18965 (CK) & #476598 (fucongcong) +Are you sad? 你傷心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1755584 (Betsemes) & #6073888 (verdastelo9604) +Are you sad? 你在难过吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1755584 (Betsemes) & #8775843 (crescat) +Be friendly. 友好点。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111962 (CK) & #5571916 (verdastelo9604) +Be punctual. 要守时! CC-BY 2.0 (France) Attribution: tatoeba.org #2111959 (CK) & #8743793 (crescat) +Break it up! 停手! CC-BY 2.0 (France) Attribution: tatoeba.org #2245010 (CK) & #5093963 (mirrorvan) +Can you see? 你能看吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1553530 (CK) & #1783787 (sadhen) +Come inside. 进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111930 (CK) & #5102310 (mirrorvan) +Count me in. 算我一个. CC-BY 2.0 (France) Attribution: tatoeba.org #42880 (CK) & #1424217 (asosan) +Do as I say. 按我說的做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2029931 (Spamster) & #6150007 (verdastelo9604) +Don't leave! 別走! CC-BY 2.0 (France) Attribution: tatoeba.org #872936 (CK) & #6131474 (verdastelo9604) +Don't panic! 不要恐慌! CC-BY 2.0 (France) Attribution: tatoeba.org #810774 (Zaphod) & #6119462 (verdastelo9604) +Don't shoot. 停火。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972643 (CK) & #5092693 (mirrorvan) +Don't shout. 不许大叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #279585 (CK) & #2393083 (fenfang557) +Don't worry. 別擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #506446 (rtomharper) & #395933 (Martha) +Don't worry. 别擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #506446 (rtomharper) & #1959914 (egg0073) +Get dressed. 你穿點東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111832 (CK) & #8727932 (shou) +Get dressed. 穿上點衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111832 (CK) & #8727933 (shou) +Get serious. 认真点。 CC-BY 2.0 (France) Attribution: tatoeba.org #268457 (CK) & #346790 (fucongcong) +Have a look. 请看一看。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245539 (CK) & #8935907 (crescat) +He is alone. 他獨自一人。 CC-BY 2.0 (France) Attribution: tatoeba.org #293708 (CK) & #825136 (Martha) +He's a liar. 他是個騙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522255 (erikspen) & #8767447 (xjjAstrus) +He's strong. 他很強壯。 CC-BY 2.0 (France) Attribution: tatoeba.org #295297 (CK) & #819293 (Martha) +Here we are! 我們到了! CC-BY 2.0 (France) Attribution: tatoeba.org #54174 (CK) & #819471 (Martha) +Here, catch! 这里,快抓住。 CC-BY 2.0 (France) Attribution: tatoeba.org #6858683 (Hybrid) & #6858750 (SherryChen) +How are you? 你們好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #373320 (CK) & #1761553 (egg0073) +How are you? 你好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #373320 (CK) & #6559017 (xjjAstrus) +How curious! 多怪啊! CC-BY 2.0 (France) Attribution: tatoeba.org #1913085 (CK) & #5092629 (mirrorvan) +How strange! 真奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1913092 (CK) & #1705791 (sadhen) +I am coming. 我來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #65918 (CK) & #826249 (Martha) +I buy tapes. 我買磁帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #435445 (CK) & #832833 (Martha) +I can't say. 我不能说。 CC-BY 2.0 (France) Attribution: tatoeba.org #24897 (CK) & #796833 (fucongcong) +I don't lie. 我不說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245722 (CK) & #6065390 (verdastelo9604) +I eat bread. 我吃面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867478 (CK) & #843482 (fucongcong) +I feel cold. 我觉得冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #21124 (CK) & #352054 (fucongcong) +I feel fine. 我感觉很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #321586 (CK) & #784051 (fucongcong) +I feel sick. 我有点恶心。 CC-BY 2.0 (France) Attribution: tatoeba.org #759379 (vgigregg) & #8626613 (xjjAstrus) +I feel weak. 我感到虚弱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245759 (CK) & #6086795 (verdastelo9604) +I have time. 我有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245901 (CK) & #4859550 (musclegirlxyp) +I have wine. 我有酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1764447 (CK) & #5617204 (verdastelo9604) +I heard you. 我聽你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #885698 (Trailsend) & #884751 (Tajfun) +I like fish. 我喜欢鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #256891 (CK) & #5551033 (verdastelo9604) +I like jazz. 我喜歡爵士樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #321631 (CK) & #826284 (Martha) +I like them. 我喜欢他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2747576 (CK) & #7771664 (jiangche) +I live here. 我住在這。 CC-BY 2.0 (France) Attribution: tatoeba.org #444986 (CK) & #1488531 (egg0073) +I lost face. 我丢臉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252374 (CM) & #8572029 (verdastelo9604) +I need glue. 我需要胶水。 CC-BY 2.0 (France) Attribution: tatoeba.org #2631795 (Joseph) & #5576802 (verdastelo9604) +I need help. 我需要帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #582309 (FeuDRenais) & #7768354 (jiangche) +I overslept. 我睡过头了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258769 (CK) & #335166 (fucongcong) +I overslept. 我睡過頭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258769 (CK) & #5995689 (xjjAstrus) +I said that. 我是那樣說的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433643 (CK) & #824597 (Martha) +I smell gas. 我聞到瓦斯味。 CC-BY 2.0 (France) Attribution: tatoeba.org #681055 (Source_VOA) & #1440981 (egg0073) +I trust him. 我信赖他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1258628 (CK) & #808210 (fucongcong) +I trust him. 我信任他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1258628 (CK) & #1762944 (sadhen) +I trust you. 我信任你。 CC-BY 2.0 (France) Attribution: tatoeba.org #457741 (sacredceltic) & #1878344 (sadhen) +I want more. 我想要更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #521096 (CK) & #3742594 (egg0073) +I was wrong. 我搞错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #472431 (blay_paul) & #476229 (fucongcong) +I will obey. 我会听从指示。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247576 (CK) & #5691239 (verdastelo9604) +I will wait. 我會等。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180917 (treskro3) & #759612 (Martha) +I work here. 我在這裡工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #730034 (CK) & #1953193 (egg0073) +I'll attend. 我會參加。 CC-BY 2.0 (France) Attribution: tatoeba.org #435424 (CK) & #819296 (Martha) +I'll get in. 我會進去。 CC-BY 2.0 (France) Attribution: tatoeba.org #321895 (CK) & #824616 (Martha) +I'm 17, too. 我也是17岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #708209 (papabear) & #472869 (fucongcong) +I'm a loser. 我是個不成器的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1201482 (CM) & #1448587 (egg0073) +I'm at home. 我在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #404046 (zipangu) & #336238 (fucongcong) +I'm at home. 我在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #404046 (zipangu) & #919764 (Martha) +I'm curious. 我很好奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396179 (CK) & #335059 (fucongcong) +I'm married. 我结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257204 (CK) & #399997 (fucongcong) +I'm married. 我已婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #257204 (CK) & #761438 (Martha) +I'm reading. 我在读书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1349059 (sacredceltic) & #5640765 (verdastelo9604) +I'm serious. 我是認真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433675 (CK) & #824668 (Martha) +I'm thirsty. 我渴了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1814 (CK) & #465911 (fucongcong) +Is Tom home? 汤姆在家里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244604 (CK) & #8696451 (morningstar) +Is Tom hurt? 汤姆受伤了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244607 (CK) & #8696449 (morningstar) +Is Tom sick? 汤姆是不是身体不太好? CC-BY 2.0 (France) Attribution: tatoeba.org #2244639 (CK) & #8696445 (morningstar) +Is Tom well? 汤姆还好吧? CC-BY 2.0 (France) Attribution: tatoeba.org #2244644 (CK) & #4473132 (yuiyu) +Is it tasty? 好吃嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5758419 (CM) & #4061623 (egg0073) +Is it yours? 这是你的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #42344 (CK) & #1311790 (vicch) +It can't be! 这不可能! CC-BY 2.0 (France) Attribution: tatoeba.org #1501 (CK) & #334699 (fucongcong) +It can't be! 不可能! CC-BY 2.0 (France) Attribution: tatoeba.org #1501 (CK) & #503298 (fucongcong) +It's my job. 這是我份內的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #433521 (CK) & #824695 (Martha) +It's spring. 春天了 CC-BY 2.0 (France) Attribution: tatoeba.org #456241 (lukaszpp) & #5114843 (xjjAstrus) +Just say no. 只要說不。 CC-BY 2.0 (France) Attribution: tatoeba.org #827234 (Scott) & #827525 (Martha) +Keep trying. 继续努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #1629911 (Spamster) & #5092521 (mirrorvan) +Let me know. 讓我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1228083 (CK) & #4741990 (egg0073) +Let's begin. 讓我們開始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #387427 (CK) & #819465 (Martha) +Let's leave. 走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007931 (CK) & #334277 (fucongcong) +Let's start! 讓我們開始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #387428 (CK) & #819465 (Martha) +Let's start. 我们开始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007928 (CK) & #7767999 (jiangche) +Life is fun. 人生是有趣的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435772 (CK) & #771359 (Martha) +Look around. 四处看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #1271905 (Lich) & #5092470 (mirrorvan) +Lunch is on. 午餐送到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64177 (Zifre) & #1304156 (tsayng) +Many thanks. 非常感谢! CC-BY 2.0 (France) Attribution: tatoeba.org #322178 (CK) & #334426 (fucongcong) +Money talks. 金钱万能。 CC-BY 2.0 (France) Attribution: tatoeba.org #18631 (CK) & #5092154 (mirrorvan) +Nice timing. 好时机。 CC-BY 2.0 (France) Attribution: tatoeba.org #1329340 (Scott) & #5092489 (mirrorvan) +No one came. 没有人来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2238072 (gleki) & #501581 (fucongcong) +OK. I agree. 好。我同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #433874 (CK) & #824718 (Martha) +Please come. 请来吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #324997 (CK) & #5102210 (mirrorvan) +Please sing. 请唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1937071 (CK) & #5092671 (mirrorvan) +Release him. 放开他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841180 (CK) & #5092602 (mirrorvan) +She bit him. 她咬了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887002 (CK) & #8940729 (crescat) +She hit him. 她打了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887215 (CK) & #5670795 (verdastelo9604) +Stand aside. 一边站着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1935050 (Spamster) & #5092669 (mirrorvan) +Step inside. 进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841184 (CK) & #5102310 (mirrorvan) +That's life. 這就是生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #515472 (CK) & #771492 (Martha) +That's life. 人生就是如此。 CC-BY 2.0 (France) Attribution: tatoeba.org #515472 (CK) & #771497 (Martha) +That's mine. 那是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841577 (CK) & #6728904 (verdastelo9604) +That's soft. 这很软。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447128 (CK) & #7772143 (jiangche) +That's true. 這是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #618799 (aandrusiak) & #771357 (Martha) +They hugged. 他们拥抱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111370 (CK) & #5698029 (verdastelo9604) +They kissed. 他们亲吻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2006560 (Spamster) & #5102369 (mirrorvan) +This is ice. 這是冰塊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211442 (alec) & #1205944 (cienias) +Tom blushed. 汤姆脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027009 (CK) & #5092418 (mirrorvan) +Tom clapped. 湯姆拍了手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111193 (CK) & #5812342 (xjjAstrus) +Tom frowned. 湯姆皺著眉頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #37029 (CK) & #825907 (Martha) +Tom got fat. 汤姆变胖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4917994 (CK) & #4977409 (musclegirlxyp) +Tom laughed. 汤姆笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111159 (CK) & #5102350 (mirrorvan) +Tom said hi. 汤姆打了个招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #7410485 (CK) & #8765180 (crescat) +Tom saw you. 湯姆看見你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237661 (CK) & #6728914 (verdastelo9604) +Tom'll wait. 湯姆會等。 CC-BY 2.0 (France) Attribution: tatoeba.org #2123510 (CK) & #6114384 (verdastelo9604) +Tom's drunk. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107496 (CK) & #5142201 (musclegirlxyp) +Tom's happy. 湯姆高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2602517 (CM) & #6624675 (verdastelo9604) +Tom's tired. 湯姆累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107627 (CK) & #6098473 (verdastelo9604) +Tom's wrong. 湯姆錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107659 (CK) & #6293100 (verdastelo9604) +Turn around. 转过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #464282 (lukaszpp) & #5092329 (mirrorvan) +Turn it off. 把它关掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #41719 (CK) & #8877851 (crescat) +Wait for me. 等等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2253852 (CK) & #7773139 (jiangche) +Was I wrong? 我错了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25506 (CK) & #335862 (fucongcong) +We both won. 我們都贏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241033 (CK) & #6145390 (verdastelo9604) +We can rest. 我们可以休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #3046439 (Whitney) & #3031987 (sadhen) +We know him. 我們認識他。 CC-BY 2.0 (France) Attribution: tatoeba.org #262783 (CK) & #873466 (Martha) +We like you. 我们喜欢你们。 CC-BY 2.0 (France) Attribution: tatoeba.org #6681958 (CK) & #8496239 (gumblex) +We love Tom. 我们爱汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240298 (CK) & #5585227 (verdastelo9604) +We want Tom. 我们想要汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011273 (CK) & #5091738 (mirrorvan) +We want one. 我們要一個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241471 (CK) & #6057679 (xjjAstrus) +What a pity! 太可惜了! CC-BY 2.0 (France) Attribution: tatoeba.org #24885 (CK) & #332578 (fucongcong) +What a pity! 多遗憾啊! CC-BY 2.0 (France) Attribution: tatoeba.org #24885 (CK) & #469440 (fucongcong) +What is new? 有什么新鲜事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #376063 (megamanenm) & #794256 (fucongcong) +What's that? 那是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #66989 (CK) & #465906 (fucongcong) +What's this? 這是什麼啊? CC-BY 2.0 (France) Attribution: tatoeba.org #413821 (CK) & #4 (Martha) +What's this? 那是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #413821 (CK) & #465906 (fucongcong) +What's this? 這是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #413821 (CK) & #734981 (Martha) +Where's Tom? 汤姆在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #1886594 (CK) & #4956715 (musclegirlxyp) +Who are you? 你是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #356200 (yorickvidal) & #818109 (Martha) +Who drew it? 誰畫的? CC-BY 2.0 (France) Attribution: tatoeba.org #442064 (CK) & #819363 (Martha) +Who is next? 下一个是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #801609 (Eldad) & #7768204 (jiangche) +Who is that? 那是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2176388 (dafp) & #4789686 (400S) +Who's dying? 誰要死了? CC-BY 2.0 (France) Attribution: tatoeba.org #2203655 (CK) & #8215690 (verdastelo9604) +Whose is it? 这是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #873579 (CK) & #1314463 (vicch) +Wood floats. 木头会漂浮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1869662 (ghoti) & #5102316 (mirrorvan) +Work slowly. 干活慢点。 CC-BY 2.0 (France) Attribution: tatoeba.org #30124 (CK) & #5092211 (mirrorvan) +You made it. 你做到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549800 (CK) & #8215696 (verdastelo9604) +You're here. 你在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202941 (CK) & #7768155 (jiangche) +You're mine. 你是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2217883 (CK) & #8686674 (crescat) +You're sick! 你有病! CC-BY 2.0 (France) Attribution: tatoeba.org #34756 (CM) & #791591 (fucongcong) +Anything new? 有什么新鲜事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25313 (CM) & #794256 (fucongcong) +Are you busy? 你忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68948 (adjusting) & #1241266 (tsayng) +Are you busy? 您在忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68948 (adjusting) & #7772049 (jiangche) +Are you done? 你做好了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2244941 (CK) & #765243 (Martha) +Are you lost? 您迷路了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #280393 (CK) & #465006 (fucongcong) +Are you lost? 你迷路了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #280393 (CK) & #465008 (fucongcong) +Are you sure? 你确定吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1326 (brauliobezerra) & #343645 (fucongcong) +Are you sure? 你确定? CC-BY 2.0 (France) Attribution: tatoeba.org #1326 (brauliobezerra) & #4208543 (Ethan_lin) +Be realistic! 现实点! CC-BY 2.0 (France) Attribution: tatoeba.org #1063982 (CK) & #5092420 (mirrorvan) +Be realistic. 现实点! CC-BY 2.0 (France) Attribution: tatoeba.org #3821244 (CK) & #5092420 (mirrorvan) +Bring him in. 带他进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #307895 (CK) & #794243 (fucongcong) +Call Tom now. 现在给汤姆打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821963 (CK) & #5685926 (verdastelo9604) +Can we do it? 我们能做到吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2549796 (CK) & #5865511 (verdastelo9604) +Can you come? 你能來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38302 (CK) & #832793 (Martha) +Can you read? 你能閱讀嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5195302 (CK) & #5544841 (egg0073) +Can you swim? 你會游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16300 (CK) & #771557 (Martha) +Can you walk? 你能走嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1453950 (Spamster) & #3713825 (egg0073) +Can you walk? 你們能走嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1453950 (Spamster) & #3713827 (egg0073) +Did you call? 你打過電話了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433689 (CK) & #824517 (Martha) +Do you smoke? 你吸烟吗? CC-BY 2.0 (France) Attribution: tatoeba.org #506948 (blay_paul) & #406354 (fucongcong) +Do you smoke? 您吸烟吗? CC-BY 2.0 (France) Attribution: tatoeba.org #506948 (blay_paul) & #7767753 (jiangche) +Do your best. 盡力而為。 CC-BY 2.0 (France) Attribution: tatoeba.org #34011 (CK) & #904876 (Martha) +Don't be sad. 别伤心。 CC-BY 2.0 (France) Attribution: tatoeba.org #317756 (CK) & #7771891 (jiangche) +Don't be shy. 不要害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #390924 (Scott) & #823013 (Martha) +Don't bother. 不用麻烦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #707182 (CK) & #707183 (Yashanti) +Don't bug me. 别来烦我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1505979 (weihaiping) & #1505477 (fenfang557) +Drive safely. 安全地駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #484648 (blay_paul) & #819285 (Martha) +Drive slowly. 开车慢点。 CC-BY 2.0 (France) Attribution: tatoeba.org #30126 (CK) & #5092212 (mirrorvan) +Examine this. 调查下这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111839 (CK) & #8696304 (crescat) +Ghosts exist. 鬼魂是存在的。 CC-BY 2.0 (France) Attribution: tatoeba.org #324442 (CM) & #5102207 (mirrorvan) +Give it back. 还回去 CC-BY 2.0 (France) Attribution: tatoeba.org #2951862 (CK) & #5975076 (zhangxr91) +Good evening. 晚上好。 CC-BY 2.0 (France) Attribution: tatoeba.org #333156 (Aurix) & #333158 (fucongcong) +Good evening. 晚上好! CC-BY 2.0 (France) Attribution: tatoeba.org #333156 (Aurix) & #6559016 (xjjAstrus) +Good morning. 早上好! CC-BY 2.0 (France) Attribution: tatoeba.org #2258234 (_undertoad) & #335381 (fucongcong) +He got angry. 他生气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #507233 (FeuDRenais) & #389804 (fucongcong) +He has a car. 他有辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #513545 (CK) & #493519 (biglion) +He likes tea. 他喜歡茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1098268 (cntrational) & #1436794 (egg0073) +He loves her. 他愛她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394633 (CK) & #824559 (Martha) +He was brave. 他很勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #476456 (CK) & #825871 (Martha) +He's out now. 他现在出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296462 (CK) & #335030 (fucongcong) +How annoying! 真烦人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1557994 (melospawn) & #5102293 (mirrorvan) +How horrible! 真糟糕! CC-BY 2.0 (France) Attribution: tatoeba.org #1864457 (kerbear407) & #5550163 (verdastelo9604) +How's school? 学校怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1885868 (CK) & #5096478 (mirrorvan) +I admire you. 我欣赏你。 CC-BY 2.0 (France) Attribution: tatoeba.org #68937 (CK) & #472364 (fucongcong) +I almost won. 我几乎赢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245600 (CK) & #5617203 (verdastelo9604) +I am at home. 我在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #29049 (CK) & #336238 (fucongcong) +I am at home. 我在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #29049 (CK) & #919764 (Martha) +I am curious. 我很好奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #1436 (brauliobezerra) & #335059 (fucongcong) +I am praying. 我在祈禱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1661143 (Amastan) & #6065393 (verdastelo9604) +I ate apples. 我吃了蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #3378092 (_undertoad) & #8824076 (xjjAstrus) +I ate caviar. 我吃了魚子醬。 CC-BY 2.0 (France) Attribution: tatoeba.org #2413 (CK) & #917822 (Martha) +I called Tom. 我給湯姆打了電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235710 (CK) & #6119452 (verdastelo9604) +I can't stay. 我不能留下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954912 (CK) & #9178049 (xiaohong) +I can't walk. 我走不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955125 (CK) & #7771689 (jiangche) +I don't care. 我无所谓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323 (CK) & #431470 (fucongcong) +I don't know. 我一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #349064 (fatih) & #7772071 (jiangche) +I have a car. 我有一辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #252272 (CK) & #342842 (fucongcong) +I have a dog. 我有一条狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #378502 (CK) & #414228 (fucongcong) +I have a map. 我有一張地圖。 CC-BY 2.0 (France) Attribution: tatoeba.org #5829169 (CK) & #6148196 (verdastelo9604) +I like beans. 我喜欢豆子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245931 (CK) & #7767736 (jiangche) +I like candy. 我喜歡甜食。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745135 (CK) & #1229026 (tsayng) +I like these. 我喜欢这些。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500187 (CK) & #5701328 (verdastelo9604) +I love music. 我爱音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245965 (CK) & #4620882 (Yashanti) +I missed you. 我想你。 CC-BY 2.0 (France) Attribution: tatoeba.org #407574 (Scott) & #813490 (fucongcong) +I missed you. 我想念你。 CC-BY 2.0 (France) Attribution: tatoeba.org #407574 (Scott) & #2180625 (egg0073) +I need a cab. 我需要一輛出租車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387428 (CK) & #9179888 (xjjAstrus) +I see a book. 我看到一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #816077 (afeinberg) & #816724 (Martha) +I understand. 我明白了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433468 (CK) & #819294 (Martha) +I want a dog. 我想要一隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2748639 (CM) & #5455270 (egg0073) +I'll sue you. 我要告你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237678 (CK) & #825768 (Martha) +I'm all ears. 我洗耳恭聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #320084 (CM) & #827627 (Martha) +I'm bleeding. 我在流血。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111754 (CK) & #7768262 (jiangche) +I'm fine now. 已经没事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247991 (CK) & #5096416 (mirrorvan) +I'm free now. 我现在有空了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257494 (CK) & #405717 (fucongcong) +I'm innocent. 我是清白的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1563110 (CK) & #1772684 (sadhen) +I'm new here. 我是新來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1654228 (Spamster) & #6931240 (verdastelo9604) +I'm not busy. 我没在忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #261730 (CK) & #7768164 (jiangche) +I'm not sick. 我没生病。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248178 (CK) & #3031836 (sadhen) +I'm not sure. 我不确定。 CC-BY 2.0 (France) Attribution: tatoeba.org #1568769 (Sharaf78) & #4764636 (ryanwoo) +I'm not well. 我身体不适。 CC-BY 2.0 (France) Attribution: tatoeba.org #1474222 (al_ex_an_der) & #1424250 (sadhen) +I'm pregnant. 我怀孕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #348596 (CM) & #333464 (fucongcong) +I'm so happy. 我好高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #321673 (CK) & #826258 (Martha) +I'm so tired. 我好累。 CC-BY 2.0 (France) Attribution: tatoeba.org #785435 (hrin) & #785298 (Martha) +I'm the best. 我是最好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #755242 (sctld) & #409665 (egg0073) +I'm thrilled. 我激動不已。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111678 (CK) & #6091682 (verdastelo9604) +I've decided. 我決定了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111662 (CK) & #6114438 (verdastelo9604) +I've no idea. 我一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248411 (CK) & #7772071 (jiangche) +I've seen it. 我見過。 CC-BY 2.0 (France) Attribution: tatoeba.org #254808 (Swift) & #824531 (Martha) +Ideas matter. 想法很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #8460518 (shekitten) & #8463682 (gumblex) +Is Monday OK? 周一可以吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2248475 (CK) & #8765060 (crescat) +Is Tom drunk? 汤姆喝醉了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244596 (CK) & #8696454 (morningstar) +Is Tom there? 汤姆在吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886873 (CK) & #8696442 (morningstar) +Is that love? 那是愛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #955144 (FeuDRenais) & #3957684 (egg0073) +Is that true? 真的? CC-BY 2.0 (France) Attribution: tatoeba.org #322153 (CK) & #1397360 (mtdot) +It's amazing. 太神奇了。 CC-BY 2.0 (France) Attribution: tatoeba.org #52021 (CM) & #1415890 (sadhen) +It's obvious. 它是明顯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2283741 (CK) & #6585423 (verdastelo9604) +It's raining. 下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456237 (lukaszpp) & #346836 (fucongcong) +It's raining. 在下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #456237 (lukaszpp) & #409681 (egg0073) +It's snowing. 正在下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #448963 (CK) & #819440 (Martha) +It's so hard. 太难了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249260 (CK) & #5091653 (mirrorvan) +It's too big. 它太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435409 (CK) & #824484 (Martha) +Keep looking. 繼續看! CC-BY 2.0 (France) Attribution: tatoeba.org #2111645 (CK) & #3982107 (tsayng) +Keep reading. 继续看。 CC-BY 2.0 (France) Attribution: tatoeba.org #1815066 (pne) & #5092572 (mirrorvan) +Keep smiling. 保持微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111637 (CK) & #778735 (Martha) +Keep working. 繼續工作! CC-BY 2.0 (France) Attribution: tatoeba.org #2111629 (CK) & #3982106 (tsayng) +Let Tom live. 給湯姆活路! CC-BY 2.0 (France) Attribution: tatoeba.org #2262231 (CK) & #8215729 (verdastelo9604) +Let me think. 讓我想一想。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249525 (CK) & #4504253 (egg0073) +Let's go now. 我们现在去吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #477190 (FeuDRenais) & #476615 (fucongcong) +Life goes on. 人生會繼續。 CC-BY 2.0 (France) Attribution: tatoeba.org #477368 (BlueLagoon) & #3982108 (tsayng) +Mary came in. 瑪麗進來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388762 (CK) & #826109 (Martha) +Mary is tall. 瑪麗很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #31892 (CK) & #824585 (Martha) +May I go now? 我现在能去了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2846104 (englishchinese) & #476637 (fucongcong) +Move quietly. 轻轻地移动。 CC-BY 2.0 (France) Attribution: tatoeba.org #890756 (Scott) & #5102260 (mirrorvan) +My eyes hurt. 我的眼睛痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #417801 (CK) & #826045 (Martha) +No one knows. 沒有人知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #449023 (CK) & #825148 (Martha) +No one knows. 谁也不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #449023 (CK) & #8736993 (crescat) +Nobody asked. 没人问过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1737422 (Spamster) & #5092545 (mirrorvan) +Nobody knows. 谁也不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841593 (CK) & #8736993 (crescat) +Open the box. 打開箱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249744 (CK) & #6293087 (verdastelo9604) +Please hurry. 请抓紧时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #19733 (Swift) & #5092158 (mirrorvan) +Please leave. 請你離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #516403 (CK) & #819382 (Martha) +See you soon! 一会儿见! CC-BY 2.0 (France) Attribution: tatoeba.org #32672 (CK) & #337874 (fucongcong) +See you soon! 一會兒見! CC-BY 2.0 (France) Attribution: tatoeba.org #32672 (CK) & #6559028 (xjjAstrus) +See you then. 到時候見。 CC-BY 2.0 (France) Attribution: tatoeba.org #47013 (CK) & #824671 (Martha) +Shame on you! 你真丢脸! CC-BY 2.0 (France) Attribution: tatoeba.org #277287 (CK) & #791631 (fucongcong) +Shame on you. 你真丢脸! CC-BY 2.0 (France) Attribution: tatoeba.org #2649236 (CK) & #791631 (fucongcong) +She is quiet. 她很安静。 CC-BY 2.0 (France) Attribution: tatoeba.org #315385 (CK) & #6307284 (gumblex) +She is upset. 她心情不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #979271 (Serhiy) & #843498 (fucongcong) +She knows me. 她认识我。 CC-BY 2.0 (France) Attribution: tatoeba.org #314454 (CK) & #4970146 (wzhd) +She may come. 她可以來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388731 (CK) & #826110 (Martha) +She may come. 她也許來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388731 (CK) & #826112 (Martha) +Someone came. 有人来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #908398 (CK) & #5092398 (mirrorvan) +Speak softly. 你说话小点声。 CC-BY 2.0 (France) Attribution: tatoeba.org #2800093 (CK) & #7767745 (jiangche) +Stay with us. 和我们留在一起吧! CC-BY 2.0 (France) Attribution: tatoeba.org #660408 (CM) & #7768128 (jiangche) +Stop gawking. 别再傻看着。 CC-BY 2.0 (France) Attribution: tatoeba.org #693620 (CM) & #5102246 (mirrorvan) +Stop reading. 别再念了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1738962 (CK) & #5092552 (mirrorvan) +Stop staring. 别再盯着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1943890 (Spamster) & #5092672 (mirrorvan) +Stop talking. 不要说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277720 (CK) & #5092251 (mirrorvan) +Stop whining. 别再埋怨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2029950 (Spamster) & #5102375 (mirrorvan) +Stop yelling! 别再喊叫了! CC-BY 2.0 (France) Attribution: tatoeba.org #1908512 (Spamster) & #5092620 (mirrorvan) +Sweet dreams! 祝你好梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #30054 (CK) & #3781063 (Debbie_Linder) +Take it easy. 放輕鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #20344 (CK) & #825917 (Martha) +Take it easy. 別緊張。 CC-BY 2.0 (France) Attribution: tatoeba.org #20344 (CK) & #825918 (Martha) +Take me home. 带我回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #462494 (lukaszpp) & #465919 (fucongcong) +Tell us more. 告訴我們多一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #1224954 (CK) & #4754633 (egg0073) +That is mine. 那是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #67126 (CK) & #6728904 (verdastelo9604) +That's crazy. 那是瘋狂的。 CC-BY 2.0 (France) Attribution: tatoeba.org #509156 (CK) & #826184 (Martha) +That's great. 那真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #462546 (lukaszpp) & #5978354 (verdastelo9604) +That's right! 對了! CC-BY 2.0 (France) Attribution: tatoeba.org #433490 (CK) & #8215699 (verdastelo9604) +That's right. 对! CC-BY 2.0 (France) Attribution: tatoeba.org #1216015 (AlanRominger) & #4952918 (murr) +They refused. 他們拒絕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111364 (CK) & #6073881 (verdastelo9604) +They're fake. 它们是假的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111296 (CK) & #7769298 (jiangche) +They're gone. 他们离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898125 (CK) & #8696255 (crescat) +They're kids. 他们是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111267 (CK) & #3579720 (CLARET) +They're kids. 她们是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111267 (CK) & #3579729 (CLARET) +This is mine. 这是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2233709 (CK) & #4760167 (ryanwoo) +This is true. 這是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433544 (CK) & #771357 (Martha) +Tom followed. 汤姆跟着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721793 (CM) & #5869907 (verdastelo9604) +Tom is clean. 湯姆是干净的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202652 (CK) & #6923176 (verdastelo9604) +Tom is drunk. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236670 (CK) & #5142201 (musclegirlxyp) +Tom is happy. 湯姆高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025016 (CK) & #6624675 (verdastelo9604) +Tom is smart. 汤姆脑子好使。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024870 (CK) & #5072415 (musclegirlxyp) +Tom is tired. 湯姆累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203461 (CK) & #6098473 (verdastelo9604) +Tom knows me. Tom認識我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237133 (CK) & #3957663 (egg0073) +Tom sat down. 汤姆坐下了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237642 (CK) & #4977379 (musclegirlxyp) +Tom told him. 汤姆告诉了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #2238815 (CK) & #5576791 (verdastelo9604) +Tom vanished. 汤姆不见了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203879 (CK) & #5092425 (mirrorvan) +Tom was full. 汤姆饱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549746 (CK) & #5780567 (verdastelo9604) +Tom's thirty. 汤姆今年三十岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107623 (CK) & #8738755 (crescat) +Tom, wake up. 汤姆,快起来! CC-BY 2.0 (France) Attribution: tatoeba.org #2429769 (CK) & #2431750 (fenfang557) +Try it again. 再試一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #433594 (CK) & #824621 (Martha) +Unbelievable! 難以置信! CC-BY 2.0 (France) Attribution: tatoeba.org #268828 (CM) & #1423421 (cienias) +Unbelievable! 难以置信! CC-BY 2.0 (France) Attribution: tatoeba.org #268828 (CM) & #4505070 (dongwang) +Vote for Tom. 投票給湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240284 (CK) & #6101261 (verdastelo9604) +Wait and see. 走著瞧 CC-BY 2.0 (France) Attribution: tatoeba.org #945292 (nibuen) & #6915645 (zzztat) +We are happy. 我們很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #438940 (CK) & #908550 (Martha) +We can begin. 我們能開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241034 (CK) & #6145407 (verdastelo9604) +We know that. 我们知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241138 (CK) & #5102291 (mirrorvan) +We know this. 我们知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241139 (CK) & #5102291 (mirrorvan) +We need more. 我們需要更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #874919 (CK) & #4754631 (egg0073) +We succeeded. 我们成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841559 (CK) & #5102311 (mirrorvan) +We surrender. 我們投降。 CC-BY 2.0 (France) Attribution: tatoeba.org #2246291 (Hybrid) & #6064608 (verdastelo9604) +We're adults. 我们已是成年人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107331 (CK) & #7772576 (jiangche) +We're heroes. 我們是英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #8918365 (CK) & #9155254 (shou) +We're hiding. 我们在藏着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203697 (CK) & #5640754 (verdastelo9604) +Welcome back. 欢迎回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1627336 (Spamster) & #5092518 (mirrorvan) +Welcome home. 欢迎回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #64693 (Scott) & #333068 (fucongcong) +What is love? 愛是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #515085 (tamsanh) & #904854 (Martha) +What is that? 那是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464592 (lukaszpp) & #465906 (fucongcong) +What is that? 那是什么啊? CC-BY 2.0 (France) Attribution: tatoeba.org #464592 (lukaszpp) & #1420649 (sadhen) +What is this? 這是什麼啊? CC-BY 2.0 (France) Attribution: tatoeba.org #392210 (sysko) & #4 (Martha) +What is this? 這是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #392210 (sysko) & #734981 (Martha) +Where is Tom? 汤姆在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #2240332 (CK) & #4956715 (musclegirlxyp) +Who built it? 这是谁建的? CC-BY 2.0 (France) Attribution: tatoeba.org #276317 (CK) & #334743 (fucongcong) +Who was here? 谁来了这里? CC-BY 2.0 (France) Attribution: tatoeba.org #2254890 (CK) & #6047439 (verdastelo9604) +Years passed. 多少年过去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #282197 (CK) & #5092260 (mirrorvan) +You are good. 你很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1120755 (cntrational) & #4881733 (musclegirlxyp) +You're drunk. 你喝醉了! CC-BY 2.0 (France) Attribution: tatoeba.org #1895619 (CK) & #7768302 (jiangche) +Anything else? 还有别的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434224 (lukaszpp) & #5102215 (mirrorvan) +Are you angry? 您生气了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #476326 (FeuDRenais) & #476597 (fucongcong) +Are you angry? 你生气了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #476326 (FeuDRenais) & #476598 (fucongcong) +Are you happy? 你快樂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16164 (CK) & #819454 (Martha) +Are you happy? 你开心吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16164 (CK) & #8924804 (crescat) +Are you ready? 您准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #376424 (saeb) & #799300 (fucongcong) +Are you ready? 你们准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #376424 (saeb) & #799301 (fucongcong) +Are you ready? 你准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #376424 (saeb) & #799302 (fucongcong) +Are you tired? 你累了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #317830 (CK) & #727916 (Martha) +Ask Tom again. 再问一下汤姆吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235643 (CK) & #8700793 (crescat) +Bring the key. 帶鑰匙來。 CC-BY 2.0 (France) Attribution: tatoeba.org #507763 (FeuDRenais) & #6086840 (verdastelo9604) +Call security! 叫保安来! CC-BY 2.0 (France) Attribution: tatoeba.org #1682859 (Spamster) & #5092526 (mirrorvan) +Can I have it? 可以给我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3172313 (CK) & #8725787 (crescat) +Can you skate? 你会溜冰吗? CC-BY 2.0 (France) Attribution: tatoeba.org #70016 (CK) & #332557 (fucongcong) +Check, please. 請結帳。 CC-BY 2.0 (France) Attribution: tatoeba.org #21098 (CK) & #819284 (Martha) +Did Tom reply? 汤姆有回应了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3395387 (CK) & #4885087 (musclegirlxyp) +Did you write? 你写吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8108705 (haukie) & #6850332 (mao) +Do I know you? 我认识你吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1461944 (Spamster) & #1790170 (sadhen) +Don't give up! 不要放棄! CC-BY 2.0 (France) Attribution: tatoeba.org #278606 (CK) & #785373 (Martha) +Draw a circle. 画一个圈。 CC-BY 2.0 (France) Attribution: tatoeba.org #25954 (CK) & #630268 (CLARET) +Eat and drink. 吃吧,喝吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #37659 (CM) & #4760009 (ryanwoo) +Flowers bloom. 鮮花盛開。 CC-BY 2.0 (France) Attribution: tatoeba.org #23749 (CK) & #819286 (Martha) +Hang in there. 坚持。 CC-BY 2.0 (France) Attribution: tatoeba.org #2173924 (Hybrid) & #5092492 (mirrorvan) +He can't swim. 他不會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #293929 (CK) & #734834 (Martha) +He has a cold. 他着凉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289527 (CK) & #334129 (fucongcong) +He is a thief. 这是一个小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #301724 (Dorenda) & #630270 (CLARET) +He is at home. 他在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #816868 (Cindrogriza) & #816870 (Martha) +He is my type! 他是我的菜! CC-BY 2.0 (France) Attribution: tatoeba.org #284379 (CK) & #817282 (fucongcong) +He is no fool. 他不是傻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #302396 (CM) & #429141 (fucongcong) +He is no fool. 他没疯。 CC-BY 2.0 (France) Attribution: tatoeba.org #302396 (CM) & #787314 (fucongcong) +He is out now. 他现在出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289262 (CK) & #335030 (fucongcong) +He lied to us. 他欺騙了我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #388832 (CK) & #826013 (Martha) +He sells cars. 他賣車子。 CC-BY 2.0 (France) Attribution: tatoeba.org #434996 (lukaszpp) & #778540 (Martha) +He shot at me. 他槍擊了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #71962 (CK) & #793302 (Martha) +He tries hard. 他努力地嘗試。 CC-BY 2.0 (France) Attribution: tatoeba.org #293742 (CK) & #882979 (Martha) +He walks fast. 他走路很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1257313 (CK) & #8888278 (crescat) +He wants more. 他想要更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1723957 (Spamster) & #4754634 (egg0073) +He's not home. 他不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1310853 (donkirkby) & #765282 (Martha) +He's studying. 他在讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #593281 (CK) & #3713556 (egg0073) +How about you? 你怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #16491 (CK) & #825882 (Martha) +How about you? 那你呢? CC-BY 2.0 (France) Attribution: tatoeba.org #16491 (CK) & #825883 (Martha) +How about you? 你們呢? CC-BY 2.0 (France) Attribution: tatoeba.org #16491 (CK) & #1623187 (egg0073) +How about you? 您呢? CC-BY 2.0 (France) Attribution: tatoeba.org #16491 (CK) & #1623188 (Yashanti) +How beautiful! 多美啊! CC-BY 2.0 (France) Attribution: tatoeba.org #1913083 (CK) & #5092623 (mirrorvan) +I am divorced. 我离婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #436329 (lukaszpp) & #471133 (fucongcong) +I am very sad. 我很难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1136927 (soj4l) & #333736 (fucongcong) +I approved it. 我同意它。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840527 (CK) & #6073877 (verdastelo9604) +I believe you. 我相信你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17421 (CK) & #335418 (fucongcong) +I can see Tom. 我看得见汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301319 (CK) & #4977389 (musclegirlxyp) +I can't do it. 我無法做到這一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #25544 (CK) & #793250 (Martha) +I can't do it. 我做不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #25544 (CK) & #7768005 (jiangche) +I can't leave. 我不能走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245649 (CK) & #7771688 (jiangche) +I despise you. 我鄙视你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245678 (CK) & #5067373 (jiaweikai) +I did my best. 我做得好到不能再好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075109 (shanghainese) & #335046 (fucongcong) +I didn't pass. 我没通过。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840503 (CK) & #5931757 (verdastelo9604) +I fed the dog. 我餵過狗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1988362 (CK) & #727575 (Martha) +I feel lonely. 我觉得很孤独。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487874 (sugoi) & #334544 (fucongcong) +I feel unwell. 我感觉不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1605758 (fanty) & #501698 (fucongcong) +I felt lonely. 我觉得很孤独。 CC-BY 2.0 (France) Attribution: tatoeba.org #257310 (CK) & #334544 (fucongcong) +I got it free. 我是免費得到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42714 (CM) & #886567 (Martha) +I have a boat. 我有一艘小船。 CC-BY 2.0 (France) Attribution: tatoeba.org #5829220 (CK) & #9179805 (xjjAstrus) +I have a home. 我有一个家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1786134 (gleki) & #1786136 (sadhen) +I have an egg. 我有一只蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #262179 (CK) & #791582 (fucongcong) +I have to win. 我必须赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1744787 (Amastan) & #5780576 (verdastelo9604) +I like sports. 我喜歡運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #435162 (CK) & #771412 (Martha) +I like sweets. 我喜歡甜食。 CC-BY 2.0 (France) Attribution: tatoeba.org #1229021 (\N) & #1229026 (tsayng) +I like to eat. 我喜歡吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #773320 (marloncori) & #1225693 (tsayng) +I like to run. 我喜欢跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #259193 (CK) & #363979 (fucongcong) +I love coffee. 我愛咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #916292 (CK) & #6105239 (verdastelo9604) +I love movies. 我愛電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #521657 (CK) & #824560 (Martha) +I love nature. 我愛大自然。 CC-BY 2.0 (France) Attribution: tatoeba.org #769668 (Zifre) & #769662 (Martha) +I love sports. 我喜歡運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #930030 (FeuDRenais) & #771412 (Martha) +I miss Boston. 我想念波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387234 (CK) & #5548480 (egg0073) +I must go now. 我現在必須走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #486448 (CK) & #826159 (Martha) +I need a taxi. 我需要一輛出租車。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840395 (CK) & #9179888 (xjjAstrus) +I need advice. 我需要些建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245998 (CK) & #7774791 (jiangche) +I need to try. 我需要尝试。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387771 (CK) & #5983608 (verdastelo9604) +I respect Tom. 我尊敬湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235733 (CK) & #6333802 (verdastelo9604) +I should obey. 我應該服從。 CC-BY 2.0 (France) Attribution: tatoeba.org #7830346 (sharris123) & #5500531 (egg0073) +I think I can. 我想我可以。 CC-BY 2.0 (France) Attribution: tatoeba.org #433759 (CK) & #819370 (Martha) +I use Twitter. 我用Twitter。 CC-BY 2.0 (France) Attribution: tatoeba.org #1279106 (donkirkby) & #474921 (egg0073) +I want a boat. 我想要一艘船。 CC-BY 2.0 (France) Attribution: tatoeba.org #3210440 (chris3spice) & #8696251 (crescat) +I want a book. 我想要本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #261737 (CK) & #3376538 (go_oo) +I want to cry. 我想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #452275 (FeuDRenais) & #334542 (fucongcong) +I want to die. 我想死 CC-BY 2.0 (France) Attribution: tatoeba.org #2011280 (CK) & #6388809 (qazz0003) +I was at home. 我刚才在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1300804 (CK) & #1394842 (mtdot) +I was so cold. 我很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549720 (CK) & #6059538 (verdastelo9604) +I'll buy this. 我要買這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #434015 (CK) & #832955 (Martha) +I'll call you. 我会打电话给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #624894 (saeb) & #2163111 (sadhen) +I'll eat here. 我會在這裡吃飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #449106 (CK) & #819472 (Martha) +I'll take him. 我会去接他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1566 (CK) & #334424 (fucongcong) +I'm a student. 我是个学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #567368 (jakov) & #7768226 (jiangche) +I'm a teacher. 我是個老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #256929 (CK) & #926774 (Martha) +I'm exhausted. 我累死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20405 (CK) & #333923 (fucongcong) +I'm exhausted. 困死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20405 (CK) & #2431733 (fenfang557) +I'm on a diet. 我在節食。 CC-BY 2.0 (France) Attribution: tatoeba.org #241675 (CK) & #793307 (Martha) +I'm on my way. 我这就上路。 CC-BY 2.0 (France) Attribution: tatoeba.org #707205 (CK) & #707204 (Yashanti) +I'm so lonely. 我好孤单。 CC-BY 2.0 (France) Attribution: tatoeba.org #3941292 (AlanF_US) & #8517170 (gumblex) +I'm so stupid. 我真蠢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248256 (CK) & #3742605 (egg0073) +I'm very busy. 我很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #433991 (CK) & #819333 (Martha) +I've got time. 我有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248396 (CK) & #4859550 (musclegirlxyp) +I've got wine. 我有酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248397 (CK) & #5617204 (verdastelo9604) +Is Tom around? 汤姆在吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244578 (CK) & #8696442 (morningstar) +Is Tom eating? 汤姆在吃饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244598 (CK) & #8696452 (morningstar) +Is it serious? 严重吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63616 (CK) & #332870 (fucongcong) +Is that paper? 那是紙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6358544 (CK) & #2660854 (egg0073) +Is this Tom's? 这是汤姆的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3507551 (CK) & #4879140 (musclegirlxyp) +Is this Tom's? 这是汤姆的东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3507551 (CK) & #4879141 (musclegirlxyp) +It is raining. 下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1862 (CK) & #346836 (fucongcong) +It is raining. 在下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1862 (CK) & #409681 (egg0073) +It looks good. 看起来不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #1808249 (Spamster) & #1808254 (sadhen) +It might rain. 可能会下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230486 (alec) & #465902 (fucongcong) +It might rain. 可能要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230486 (alec) & #1223755 (tsayng) +It takes time. 这需要时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #707527 (CK) & #707522 (tianblr) +It's a secret. 它是個秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #433821 (CK) & #771519 (Martha) +It's business. 公事公辦。 CC-BY 2.0 (France) Attribution: tatoeba.org #433519 (CK) & #824613 (Martha) +It's freezing. 天氣好冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #52011 (CK) & #803735 (Martha) +It's improved. 它有改善了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435785 (CK) & #771378 (Martha) +It's my money. 那是我的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249099 (CK) & #8727837 (crescat) +It's my treat. 我請客。 CC-BY 2.0 (France) Attribution: tatoeba.org #433758 (CK) & #832928 (Martha) +It's not mine. 不是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1894573 (CK) & #5673830 (xjjAstrus) +It's too long. 它太長了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249327 (CK) & #6114449 (verdastelo9604) +It's too loud. 它太大聲。 CC-BY 2.0 (France) Attribution: tatoeba.org #275485 (CK) & #832797 (Martha) +It's very big. 它很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #450003 (CK) & #832782 (Martha) +Keep Tom safe. 确保汤姆安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235847 (CK) & #5819711 (verdastelo9604) +Keep it quiet. 保持安静 CC-BY 2.0 (France) Attribution: tatoeba.org #42143 (CK) & #5845311 (start) +Let me see it. 讓我看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #40019 (CK) & #819468 (Martha) +Let me try it. 让我试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #43212 (CK) & #333051 (fucongcong) +Let's go home. 让我们回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #773455 (marloncori) & #1506916 (fenfang557) +Lock the gate. 鎖大門。 CC-BY 2.0 (France) Attribution: tatoeba.org #449045 (CK) & #826099 (Martha) +Make it quick. 快点。 CC-BY 2.0 (France) Attribution: tatoeba.org #2038397 (Spamster) & #5092239 (mirrorvan) +Man is mortal. 人固有一死。 CC-BY 2.0 (France) Attribution: tatoeba.org #270072 (Zifre) & #5091165 (mirrorvan) +May I come in? 我可以進來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #456355 (lukaszpp) & #780338 (Martha) +Meet me there. 在那裡見我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249589 (CK) & #6135006 (verdastelo9604) +My foot hurts. 我的脚痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #792061 (Swift) & #804866 (fucongcong) +My head aches. 我头痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #280125 (CK) & #332568 (fucongcong) +My head hurts. 我头痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #456425 (lukaszpp) & #332568 (fucongcong) +My pen is new. 我的钢笔是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #710914 (CK) & #710912 (Yashanti) +Never give up. 决不放弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249592 (CK) & #3783106 (Debbie_Linder) +Pace yourself. 量力而行。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841178 (CK) & #5092594 (mirrorvan) +Quit gambling. 戒掉赌博吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1267033 (Scott) & #5092464 (mirrorvan) +Read this now. 现在读这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841179 (CK) & #5945152 (verdastelo9604) +Save yourself. 拯救你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #1849367 (CK) & #6325064 (verdastelo9604) +See you again. 再见! CC-BY 2.0 (France) Attribution: tatoeba.org #32635 (CK) & #336477 (fucongcong) +See you later. 再见。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841588 (CK) & #2030795 (sadhen) +Shake my hand. 和我握手。 CC-BY 2.0 (France) Attribution: tatoeba.org #410593 (CK) & #819354 (Martha) +Shall we walk? 我们该步行吗? CC-BY 2.0 (France) Attribution: tatoeba.org #320508 (CM) & #5574796 (verdastelo9604) +She felt blue. 她感到闷闷不乐的。 CC-BY 2.0 (France) Attribution: tatoeba.org #317287 (Swift) & #4566371 (liyongtao) +She hated him. 她恨他。 CC-BY 2.0 (France) Attribution: tatoeba.org #388371 (CK) & #832950 (Martha) +She is eating. 她吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #527192 (CK) & #4887706 (musclegirlxyp) +She loves Tom. 她愛湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #311828 (CK) & #826241 (Martha) +She's dieting. 她在节食中。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396194 (CK) & #1878324 (sadhen) +She's dieting. 她在节食。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396194 (CK) & #7767995 (jiangche) +She's my type. 她是我的菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #314284 (CK) & #3742628 (egg0073) +Show it to me. 给我看下它吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1356990 (sacredceltic) & #7771674 (jiangche) +Shut the door. 不要把门开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #38992 (CK) & #334214 (fucongcong) +Shut the door. 关门。 CC-BY 2.0 (France) Attribution: tatoeba.org #38992 (CK) & #472970 (fucongcong) +Sit beside me. 坐我旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #250344 (CK) & #1424389 (sadhen) +Somebody came. 有人来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5317425 (mailohilohi) & #5092398 (mirrorvan) +Speak clearly. 講清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #433849 (CK) & #825154 (Martha) +Stir the soup. 搅一下汤。 CC-BY 2.0 (France) Attribution: tatoeba.org #704725 (Zifre) & #802843 (fucongcong) +Stop gambling. 戒掉赌博吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2592874 (WestofEden) & #5092464 (mirrorvan) +Stop meddling. 别再插手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1719227 (marcelostockle) & #5092534 (mirrorvan) +Stop shooting. 停止射击。 CC-BY 2.0 (France) Attribution: tatoeba.org #1974716 (CK) & #5092701 (mirrorvan) +Stop worrying. 别担心了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495911 (CK) & #8715889 (crescat) +Straighten up. 改邪归正。 CC-BY 2.0 (France) Attribution: tatoeba.org #282453 (CK) & #5092263 (mirrorvan) +Stuff happens. 事情难免会发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #491351 (saeb) & #5092383 (mirrorvan) +Talk is cheap. 說得簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #1515606 (Biga) & #884661 (Tajfun) +Tell me again. 重新告訴我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250076 (CK) & #6044374 (verdastelo9604) +Thanks anyway. 还是要说谢谢的。 CC-BY 2.0 (France) Attribution: tatoeba.org #485099 (Scott) & #5092338 (mirrorvan) +That's a book. 那是一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #515535 (CK) & #819414 (Martha) +The bell rang. 铃响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #385375 (Mouseneb) & #332971 (fucongcong) +They're armed. 他們有帶武器。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898129 (CK) & #2511467 (tsayng) +This is a wig. 这是假发。 CC-BY 2.0 (France) Attribution: tatoeba.org #4175760 (Lepotdeterre) & #5637367 (verdastelo9604) +Throw it away. 扔掉 CC-BY 2.0 (France) Attribution: tatoeba.org #7723590 (Ofthefog) & #5114835 (xjjAstrus) +Time is money. 时间就是金钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #566026 (CK) & #4970148 (wzhd) +Today was fun. 今天很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #418628 (CK) & #826120 (Martha) +Tom applauded. 湯姆拍了手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203595 (CK) & #5812342 (xjjAstrus) +Tom came back. 湯姆回來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236132 (CK) & #6936200 (verdastelo9604) +Tom didn't go. 汤姆没走。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735263 (CK) & #5581802 (verdastelo9604) +Tom fell down. 湯姆摔倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094129 (CK) & #8215735 (verdastelo9604) +Tom graduated. 湯姆畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111170 (CK) & #8215705 (verdastelo9604) +Tom is a hick. 汤姆是个乡巴佬。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272811 (CK) & #5574810 (verdastelo9604) +Tom is absent. 湯姆缺席。 CC-BY 2.0 (France) Attribution: tatoeba.org #37162 (CK) & #826133 (Martha) +Tom is boring. 汤姆是个无聊的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202622 (CK) & #2440969 (fenfang557) +Tom is so hot. 汤姆非常性感。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273497 (CK) & #4621026 (Yashanti) +Tom is stingy. 汤姆很小气。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093435 (CK) & #4264932 (notabene) +Tom is thirty. 汤姆今年三十岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236878 (CK) & #8738755 (crescat) +Tom isn't old. 湯姆不老。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236999 (CK) & #6150025 (verdastelo9604) +Tom knows him. 湯姆認識他。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237129 (CK) & #6447545 (verdastelo9604) +Tom loves you. 汤姆爱你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2257541 (CK) & #5585235 (verdastelo9604) +Tom overslept. 汤姆睡过头了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164341 (CK) & #5092449 (mirrorvan) +Tom runs fast. 汤姆跑得快。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171216 (CK) & #5072385 (musclegirlxyp) +Tom was drunk. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2239777 (CK) & #5142201 (musclegirlxyp) +Tom was fired. 湯姆被解僱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #513527 (CK) & #825757 (Martha) +Tom was wrong. 汤姆错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140912 (CK) & #8463695 (gumblex) +Wait a moment. 請稍等。 CC-BY 2.0 (France) Attribution: tatoeba.org #410597 (CK) & #825160 (Martha) +Wait a moment. 等一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #410597 (CK) & #9007563 (jacintoo) +We have to go. 我们必须走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1737475 (Spamster) & #7767666 (jiangche) +We kept quiet. 我们保持了沉默。 CC-BY 2.0 (France) Attribution: tatoeba.org #248957 (CK) & #334263 (fucongcong) +We like music. 我們喜歡音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #247741 (CK) & #6093304 (verdastelo9604) +We missed you. 我們想你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241163 (CK) & #6624605 (verdastelo9604) +We need money. 我們需要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #493908 (adjusting) & #752112 (Martha) +We need to go. 我们必须走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893749 (CK) & #7767666 (jiangche) +We understand. 我们明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893706 (CK) & #5102318 (mirrorvan) +We want candy. 我們想要糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011284 (CK) & #6111716 (verdastelo9604) +We were bored. 我们感到厌烦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241480 (CK) & #7767668 (jiangche) +We'll be busy. 我們會很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649180 (CK) & #6131309 (verdastelo9604) +We'll do that. 我們會去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241572 (CK) & #6091802 (verdastelo9604) +We're friends. 我们是朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107346 (CK) & #5624940 (verdastelo9604) +We're friends. 我們是朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107346 (CK) & #6149234 (xjjAstrus) +We're special. 我们是特别的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203388 (CK) & #7767571 (jiangche) +We're special. 我们很特别。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203388 (CK) & #7767572 (jiangche) +We're worried. 我们很担心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203589 (CK) & #7704613 (leafjensen) +We've arrived. 我們已經到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #410594 (CK) & #825155 (Martha) +Were you busy? 您当时在忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2649178 (CK) & #7768293 (jiangche) +Where are you? 你在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #2168 (CK) & #346124 (fucongcong) +Who hired you? 誰雇了你? CC-BY 2.0 (France) Attribution: tatoeba.org #1663022 (Spamster) & #8215698 (verdastelo9604) +Whose is this? 这是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #2302 (CK) & #1314463 (vicch) +Why blame Tom? 为什么责备汤姆? CC-BY 2.0 (France) Attribution: tatoeba.org #2057760 (CK) & #2394590 (fenfang557) +You are drunk! 你喝醉了! CC-BY 2.0 (France) Attribution: tatoeba.org #64332 (CK) & #7768302 (jiangche) +You are lying. 你在撒谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #26653 (CK) & #332572 (fucongcong) +You could run. 你能跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254961 (CK) & #6333813 (verdastelo9604) +You look pale. 你看起來很蒼白。 CC-BY 2.0 (France) Attribution: tatoeba.org #16224 (CK) & #771525 (Martha) +You should go. 你應該去。 CC-BY 2.0 (France) Attribution: tatoeba.org #518556 (CK) & #832786 (Martha) +You should go. 你最好去。 CC-BY 2.0 (France) Attribution: tatoeba.org #518556 (CK) & #844117 (fucongcong) +You will fail. 你會失敗。 CC-BY 2.0 (France) Attribution: tatoeba.org #694388 (AmberShadow) & #781665 (Martha) +You work hard. 你工作努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #15993 (CK) & #1992630 (sadhen) +You're joking! 你在開玩笑吧! CC-BY 2.0 (France) Attribution: tatoeba.org #433882 (CK) & #825144 (Martha) +You're not me. 你不是我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218273 (CK) & #5341690 (xjjAstrus) +You're so bad. 你真壞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230472 (alec) & #1225678 (tsayng) +You're stupid. 你二了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2123495 (CK) & #1750497 (sadhen) +Zip your lips. 闭上你的嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #8557825 (CM) & #1691765 (sadhen) +A bird can fly. 鸟会飞。 CC-BY 2.0 (France) Attribution: tatoeba.org #812362 (Zaphod) & #2999597 (sadhen) +Allow me to go. 請允許我去。 CC-BY 2.0 (France) Attribution: tatoeba.org #433651 (CK) & #826174 (Martha) +Are you crying? 你在哭嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886352 (CK) & #3718942 (egg0073) +Are you single? 你是单身吗? CC-BY 2.0 (France) Attribution: tatoeba.org #280576 (CK) & #4956716 (musclegirlxyp) +Aren't you Tom? 你不是湯姆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #37392 (CK) & #727800 (Martha) +Aren't you Tom? 你不是湯姆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #37392 (CK) & #825908 (Martha) +Aren't you hot? 你不热吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2951539 (CK) & #4956714 (musclegirlxyp) +Birds lay eggs. 鳥下蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #278220 (CK) & #826163 (Martha) +Boil the water. 把水燒開。 CC-BY 2.0 (France) Attribution: tatoeba.org #1795949 (ifethereal) & #896660 (Martha) +Bring Tom here. 把汤姆带到这里来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235648 (CK) & #8737070 (crescat) +Bring it to me. 把它带给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #41817 (CK) & #745903 (fucongcong) +Buy Tom a beer. 给汤姆买一瓶啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #8054569 (CK) & #8631023 (ZeroAurora) +Can I eat this? 我可以吃这个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #54937 (CK) & #411609 (fucongcong) +Can I help you? 我能幫你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25095 (CK) & #6559076 (xjjAstrus) +Can I see that? 我能看看那个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886275 (CK) & #8749676 (crescat) +Can I sit here? 我能坐这里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1537275 (niceguydave) & #4757682 (ryanwoo) +Can you get up? 你能起床嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1117779 (Scott) & #6057671 (xjjAstrus) +Clean the room. 打掃房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #378284 (CK) & #860817 (Martha) +Close the door. 关门。 CC-BY 2.0 (France) Attribution: tatoeba.org #405379 (brauliobezerra) & #472970 (fucongcong) +Coffee, please. 我要咖啡,谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1907148 (CK) & #5092616 (mirrorvan) +Cows give milk. 牛可产奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #619902 (darinmex) & #7767652 (jiangche) +Deal with them. 解决他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245254 (CK) & #5091689 (mirrorvan) +Do we know you? 我们认识你么? CC-BY 2.0 (France) Attribution: tatoeba.org #1886115 (CK) & #2065024 (sadhen) +Do you hate me? 你讨厌我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3189152 (CK) & #4885096 (musclegirlxyp) +Do you have it? 你们有吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2192241 (acbarbosa) & #6850351 (mao) +Do you hear me? 你听得见吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319989 (CK) & #333415 (fucongcong) +Do you know me? 你认识我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69295 (CK) & #1790035 (sadhen) +Do you know me? 你还认识我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69295 (CK) & #4835855 (sadhen) +Do you know me? 你認識我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69295 (CK) & #5816150 (xjjAstrus) +Do you like it? 你喜欢吗 ? CC-BY 2.0 (France) Attribution: tatoeba.org #433500 (CK) & #423413 (fucongcong) +Do you like it? 你喜歡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433500 (CK) & #825921 (Martha) +Do you miss me? 你想我了? CC-BY 2.0 (France) Attribution: tatoeba.org #1230779 (alec) & #334429 (fucongcong) +Do you miss me? 你想我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1230779 (alec) & #4835859 (sadhen) +Do you promise? 你保证吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886067 (CK) & #5865504 (verdastelo9604) +Do you promise? 你保证? CC-BY 2.0 (France) Attribution: tatoeba.org #1886067 (CK) & #7768012 (jiangche) +Don't touch it. 別碰它。 CC-BY 2.0 (France) Attribution: tatoeba.org #433652 (CK) & #819332 (Martha) +Drop the knife! 把刀放下! CC-BY 2.0 (France) Attribution: tatoeba.org #2245412 (CK) & #9135872 (xjjAstrus) +Everybody lies. 每个人都会说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1008564 (Goracykabanos) & #5092416 (mirrorvan) +Foxes eat hens. 狐狸吃母鸡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663480 (liwan1208) & #1659074 (vicch) +Get out of bed! 起床! CC-BY 2.0 (France) Attribution: tatoeba.org #33985 (CK) & #771485 (Martha) +Good afternoon. 下午好。 CC-BY 2.0 (France) Attribution: tatoeba.org #499689 (CK) & #812493 (fucongcong) +Happy New Year! 新年快樂! CC-BY 2.0 (France) Attribution: tatoeba.org #361350 (blay_paul) & #6581625 (SofiaLee) +Happy New Year! 元旦快樂! CC-BY 2.0 (France) Attribution: tatoeba.org #361350 (blay_paul) & #6583810 (xjjAstrus) +Have some more. 你該多吃點。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755386 (garborg) & #4754672 (egg0073) +He accelerated. 他提速了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290321 (CM) & #5092269 (mirrorvan) +He cannot swim. 他不會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #300200 (CK) & #734834 (Martha) +He confused us. 他把我們弄糊塗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2166227 (faraway9911) & #2112340 (egg0073) +He doesn't lie. 他不说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173825 (CK) & #5865517 (verdastelo9604) +He held a ball. 他举办了一场舞会。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162155 (FeuDRenais) & #2143987 (ydcok) +He is American. 他是美国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #387550 (Mouseneb) & #332941 (fucongcong) +He is a doctor. 他是医生来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #293611 (CK) & #8593079 (easononizuka) +He lives alone. 他一个人生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #811376 (willhite2) & #346797 (fucongcong) +He lives alone. 他独自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #811376 (willhite2) & #812227 (fucongcong) +He looks young. 他看起来很年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #299157 (CK) & #2188410 (sadhen) +He lost a book. 他弄丟了一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1275203 (CM) & #1275211 (egg0073) +He sang a song. 他唱了一首歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #283456 (CK) & #427999 (fucongcong) +He sells fruit. 他卖水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #434998 (lukaszpp) & #7768273 (jiangche) +He was drowned. 他被淹死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #874946 (CM) & #1767972 (sadhen) +He's a big boy. 他是個大男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #288238 (CK) & #824647 (Martha) +He's an author. 他是作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #593248 (CK) & #4970153 (wzhd) +Here is a book. 這裡有一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #61725 (CK) & #825137 (Martha) +How much is it? 它多貴? CC-BY 2.0 (France) Attribution: tatoeba.org #2418 (brauliobezerra) & #759540 (Martha) +How much is it? 多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #2418 (brauliobezerra) & #761442 (Martha) +How's it going? 你們好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #277972 (CK) & #1761553 (egg0073) +I am Hungarian. 我是匈牙利人。 CC-BY 2.0 (France) Attribution: tatoeba.org #827481 (mailtotib) & #827519 (Martha) +I am a student. 我是个学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #252287 (CK) & #7768226 (jiangche) +I am a teacher. 我是個老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #259069 (CK) & #926774 (Martha) +I am off today. 我今天休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #242826 (CK) & #1990181 (sunnywqing) +I am too short. 我太矮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #436445 (lukaszpp) & #512866 (fucongcong) +I ate an apple. 我吃了一個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #3294474 (CK) & #6057138 (xjjAstrus) +I believed you. 我信过你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841709 (CK) & #4789627 (400S) +I believed you. 我相信了你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841709 (CK) & #7704610 (leafjensen) +I borrow money. 我借錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #435437 (CK) & #825878 (Martha) +I broke my arm. 我的手臂斷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262315 (CK) & #919738 (Martha) +I can hear you. 我听得到。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301250 (CK) & #8727966 (crescat) +I dislike eggs. 我不喜欢鸡蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #593244 (CK) & #4673809 (McMeao) +I don't get it. 我不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #38392 (CK) & #409679 (egg0073) +I go to school. 我去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #472089 (tamsanh) & #4878932 (musclegirlxyp) +I got arrested. 我被逮捕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245783 (CK) & #3718963 (egg0073) +I got up early. 我起床早。 CC-BY 2.0 (France) Attribution: tatoeba.org #259164 (CK) & #5555832 (verdastelo9604) +I had a vision. 我有一个设想。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887332 (CK) & #5091184 (mirrorvan) +I had a vision. 我有一个愿景。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887332 (CK) & #5091185 (mirrorvan) +I hate Mondays. 我讨厌星期一。 CC-BY 2.0 (France) Attribution: tatoeba.org #576084 (CK) & #1417551 (sadhen) +I have a cough. 我咳嗽。 CC-BY 2.0 (France) Attribution: tatoeba.org #51340 (CK) & #826092 (Martha) +I have a dream. 我有一个梦想。 CC-BY 2.0 (France) Attribution: tatoeba.org #1630 (al_ex_an_der) & #501456 (fucongcong) +I have hiccups. 我打嗝了。 CC-BY 2.0 (France) Attribution: tatoeba.org #796086 (U2FS) & #796643 (fucongcong) +I have no clue. 我一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #2563243 (CK) & #7772071 (jiangche) +I have no idea. 我一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #273786 (CK) & #7772071 (jiangche) +I have no time. 我没时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #249910 (CK) & #782929 (fucongcong) +I hiccup a lot. 我经常打嗝。 CC-BY 2.0 (France) Attribution: tatoeba.org #53088 (CK) & #796644 (fucongcong) +I just saw Tom. 我刚刚见到汤姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2261956 (CK) & #8776012 (crescat) +I kept singing. 我繼續唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852006 (CK) & #819338 (Martha) +I kept singing. 我继续唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852006 (CK) & #4270138 (notabene) +I like drawing. 我喜欢画画。 CC-BY 2.0 (France) Attribution: tatoeba.org #7802995 (sharris123) & #1884732 (Venki) +I like flowers. 我喜歡花。 CC-BY 2.0 (France) Attribution: tatoeba.org #4563343 (robbieheslop) & #4504367 (egg0073) +I like jogging. 我喜欢跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #640717 (shanghainese) & #363979 (fucongcong) +I like reading. 我喜欢阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #1276130 (CK) & #2163112 (sadhen) +I like running. 我喜欢跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #1444911 (CK) & #363979 (fucongcong) +I like to read. 我喜欢阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #2164515 (FeuDRenais) & #2163112 (sadhen) +I love my life. 我爱我的生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #436789 (lukaszpp) & #465838 (fucongcong) +I love my life. 我爱我的生命。 CC-BY 2.0 (France) Attribution: tatoeba.org #436789 (lukaszpp) & #465839 (fucongcong) +I love my wife. 我爱我的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #436791 (lukaszpp) & #4759974 (ryanwoo) +I love parties. 我愛派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #435747 (CK) & #826027 (Martha) +I met a friend. 我遇见一个朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #262062 (mamat) & #1428115 (sadhen) +I must decline. 我必须拒绝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245986 (CK) & #5091270 (mirrorvan) +I must go home. 我该回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2768606 (CK) & #343852 (fucongcong) +I need a knife. 我需要一把刀。 CC-BY 2.0 (France) Attribution: tatoeba.org #693874 (Riskemulo) & #9135871 (xjjAstrus) +I need a raise. 我需要加薪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387462 (CK) & #8792052 (slo_oth) +I need a stamp. 我需要一張郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #735080 (Darkmaster) & #793499 (Martha) +I need a towel. 我需要一塊毛巾。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387469 (CK) & #9049735 (xjjAstrus) +I need it ASAP. 我尽快需要。 CC-BY 2.0 (France) Attribution: tatoeba.org #275708 (CK) & #333429 (fucongcong) +I need my coat. 我需要我的大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887576 (CK) & #5496299 (egg0073) +I need to know. 我需要知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2246738 (Hybrid) & #5911609 (verdastelo9604) +I often hiccup. 我经常打嗝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1014156 (Albert) & #796644 (fucongcong) +I said shut up! 我说过了,闭嘴! CC-BY 2.0 (France) Attribution: tatoeba.org #1453550 (Spamster) & #2499996 (fenfang557) +I saw five men. 我看到了五個男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #370730 (saeb) & #884221 (Martha) +I saw five men. 我看见五个男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #370730 (saeb) & #1372536 (sadhen) +I saw her swim. 我看見她游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #261029 (CK) & #8388686 (wangchou) +I should do it. 我应该去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5366319 (CK) & #5911768 (verdastelo9604) +I study Korean. 我学韩语。 CC-BY 2.0 (France) Attribution: tatoeba.org #472091 (tamsanh) & #476227 (fucongcong) +I want to play. 我想去玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011294 (CK) & #8715885 (crescat) +I want to stay. 我想要留下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887895 (CK) & #9178046 (xiaohong) +I was a doctor. 我以前是醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549661 (CK) & #6293088 (verdastelo9604) +I was learning. 我在學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #2200277 (CM) & #6094816 (verdastelo9604) +I wasn't drunk. 我沒醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1133995 (CK) & #8215707 (verdastelo9604) +I will sue you. 我要控告你。 CC-BY 2.0 (France) Attribution: tatoeba.org #64269 (xtofu80) & #793531 (Martha) +I'd like to go. 我想要去。 CC-BY 2.0 (France) Attribution: tatoeba.org #241063 (CK) & #832461 (Martha) +I'll alert Tom. 我会警告汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235745 (CK) & #5903479 (verdastelo9604) +I'll come back. 我会回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #261982 (CK) & #512881 (fucongcong) +I'll scold him. 我會責備他。 CC-BY 2.0 (France) Attribution: tatoeba.org #403371 (CK) & #824638 (Martha) +I'll see to it. 我會留意的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321354 (CK) & #771457 (Martha) +I'll see to it. 由我来做. CC-BY 2.0 (France) Attribution: tatoeba.org #321354 (CK) & #1423490 (asosan) +I'll stay home. 我會待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #321732 (CK) & #819453 (Martha) +I'll treat you. 我請你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17568 (CK) & #771474 (Martha) +I'm a free man. 我是一個自由的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #25504 (CK) & #793247 (Martha) +I'm a good guy. 我是一个好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1225236 (CK) & #1786008 (sadhen) +I'm an atheist. 我是无神论者。 CC-BY 2.0 (France) Attribution: tatoeba.org #379739 (CM) & #7771867 (jiangche) +I'm behind him. 我在他後面。 CC-BY 2.0 (France) Attribution: tatoeba.org #403370 (CK) & #825930 (Martha) +I'm busy today. 我今天忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713779 (CK) & #8215733 (verdastelo9604) +I'm dead tired. 我累死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #501385 (CK) & #333923 (fucongcong) +I'm free today. 我今天有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #257587 (CK) & #333310 (fucongcong) +I'm no quitter. 我不輕易放棄。 CC-BY 2.0 (France) Attribution: tatoeba.org #258684 (CK) & #8215727 (verdastelo9604) +I'm not famous. 我没名气。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330530 (CK) & #7781730 (jiangche) +I'm not famous. 我不出名。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330530 (CK) & #7781731 (jiangche) +I'm not greedy. 我不貪婪。 CC-BY 2.0 (France) Attribution: tatoeba.org #3267389 (Ricardo14) & #6333811 (verdastelo9604) +I'm not guilty. 我没有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1563108 (CK) & #1772685 (sadhen) +I'm not stupid. 我不是笨蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1108790 (CK) & #8698960 (crescat) +I'm so excited. 我很激动。 CC-BY 2.0 (France) Attribution: tatoeba.org #953850 (CK) & #5978316 (verdastelo9604) +I'm undressing. 我脱衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1765 (Swift) & #502695 (fucongcong) +I'm vegetarian. 我是素食主义者。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111671 (CK) & #510809 (fucongcong) +I'm very happy. 我很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #255245 (CK) & #825970 (Martha) +I'm very happy. 我好高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #255245 (CK) & #826258 (Martha) +I'm very happy. 我很快乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #255245 (CK) & #1361961 (sadhen) +I'm very happy. 我很幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #255245 (CK) & #7767739 (jiangche) +I've seen that. 我見過。 CC-BY 2.0 (France) Attribution: tatoeba.org #433647 (CK) & #824531 (Martha) +Is he Japanese? 他是日本人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1123762 (CK) & #1366051 (sadhen) +Is that better? 那更好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886907 (CK) & #5670784 (verdastelo9604) +Is this edible? 这个能吃吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2719776 (WestofEden) & #5100266 (mirrorvan) +Isn't it black? 它不是黑色的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #442968 (CK) & #826098 (Martha) +It is so early. 太早了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1252138 (Scott) & #2007046 (sadhen) +It is too late. 太晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456133 (lukaszpp) & #1397366 (mtdot) +It makes sense. 那样说得通。 CC-BY 2.0 (France) Attribution: tatoeba.org #780836 (sacredceltic) & #5090960 (mirrorvan) +It took months. 它花了几个月。 CC-BY 2.0 (France) Attribution: tatoeba.org #5758387 (CM) & #5963990 (verdastelo9604) +It's brand new. 这是全新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34819 (Eldad) & #745869 (fucongcong) +It's dangerous! 它是危險的! CC-BY 2.0 (France) Attribution: tatoeba.org #433517 (CK) & #832776 (Martha) +It's delicious. 很美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187204 (CK) & #3739208 (egg0073) +It's not funny. 这不好笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1749344 (Spamster) & #1786116 (sadhen) +It's our fault. 它是我們的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249149 (CK) & #6146511 (verdastelo9604) +It's the truth. 这是事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #560933 (darinmex) & #819808 (fucongcong) +It's too large. 它太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435410 (CK) & #824484 (Martha) +It's up to you. 这就要看您了。 CC-BY 2.0 (France) Attribution: tatoeba.org #237713 (CK) & #501185 (fucongcong) +It's up to you. 由你來決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #237713 (CK) & #834868 (Martha) +It's very cold. 非常冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #435726 (CK) & #826300 (Martha) +It's very cold. 天气非常寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #435726 (CK) & #4547211 (murr) +It's well done. 做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2366 (CK) & #1776598 (sadhen) +It's your book. 它是你的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #515538 (CK) & #825185 (Martha) +It's your move. 該你走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16925 (CK) & #819408 (Martha) +It's your turn. 輪到您了。 CC-BY 2.0 (France) Attribution: tatoeba.org #370937 (saeb) & #734317 (Martha) +It's your turn. 輪到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #370937 (saeb) & #765859 (Martha) +Keep listening. 继续听。 CC-BY 2.0 (France) Attribution: tatoeba.org #911230 (papabear) & #5092403 (mirrorvan) +Leave me alone. 让我一个人待着。 CC-BY 2.0 (France) Attribution: tatoeba.org #27641 (CK) & #8936496 (crescat) +Let me come in. 让我进去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3334006 (CK) & #333350 (fucongcong) +Let me do that. 让我去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #495419 (adjusting) & #347095 (fucongcong) +Let us go home. 让我们回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #24136 (CK) & #1506916 (fenfang557) +Let's just eat. 我們吃吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007893 (CK) & #6105304 (verdastelo9604) +Listen to this. 聽聽這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898342 (CK) & #5344342 (egg0073) +Louder, please. 请大声一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #30399 (CK) & #406714 (fucongcong) +Lunch is ready. 午餐好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3560086 (lys1123) & #884745 (Tajfun) +May I help you? 我能幫你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #456357 (lukaszpp) & #6559076 (xjjAstrus) +May I use this? 我可以用嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54956 (CK) & #6158452 (xjjAstrus) +My dad is busy. 我爸爸很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4787511 (Joseph) & #332500 (fucongcong) +My name is Tom. 我叫Tom。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173265 (cntrational) & #1850476 (egg0073) +Now I remember. 现在我想起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72076 (CK) & #472898 (fucongcong) +Open your eyes. 睁开眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #323768 (CK) & #8916070 (howd) +Please come in. 請進來。 CC-BY 2.0 (France) Attribution: tatoeba.org #435705 (CK) & #824704 (Martha) +Please do that. 麻煩您那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #441943 (CK) & #824505 (Martha) +Please help me. 請幫助我。 CC-BY 2.0 (France) Attribution: tatoeba.org #262424 (CK) & #804501 (Martha) +Please help me. 請幫我。 CC-BY 2.0 (France) Attribution: tatoeba.org #262424 (CK) & #884721 (Tajfun) +Please join us. 請加入我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3333875 (CK) & #6150018 (verdastelo9604) +Please tell me. 請告訴我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249818 (CK) & #6120892 (verdastelo9604) +Please wash it. 请清洗它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2042296 (somekinda) & #1884741 (Venki) +Prices went up. 物價上漲。 CC-BY 2.0 (France) Attribution: tatoeba.org #442109 (CK) & #826138 (Martha) +Read this book. 看这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #56828 (CK) & #461535 (fucongcong) +Say it clearly. 說清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #433592 (CK) & #825177 (Martha) +Science is fun. 科學好玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247299 (Hybrid) & #6047500 (verdastelo9604) +See you around. 再见! CC-BY 2.0 (France) Attribution: tatoeba.org #32690 (CK) & #336477 (fucongcong) +She fooled him. 她愚弄了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887116 (CK) & #4270717 (notabene) +She grew roses. 她種了玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #317533 (CK) & #825911 (Martha) +She hugged him. 她抱了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887217 (CK) & #8215704 (verdastelo9604) +She is dieting. 她在节食中。 CC-BY 2.0 (France) Attribution: tatoeba.org #542361 (blay_paul) & #1878324 (sadhen) +She is dieting. 她在节食。 CC-BY 2.0 (France) Attribution: tatoeba.org #542361 (blay_paul) & #7767995 (jiangche) +She is walking. 她在行走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1202628 (etoile) & #5092290 (mirrorvan) +She looked sad. 她看上去很伤心。 CC-BY 2.0 (France) Attribution: tatoeba.org #316541 (CK) & #334870 (fucongcong) +She might come. 她也許會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388733 (CK) & #826122 (Martha) +She seems rich. 她看來有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #313318 (CK) & #6093377 (verdastelo9604) +Shut your eyes. 闭上你们的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1883049 (Spamster) & #1661563 (sadhen) +Smoke appeared. 烟雾出现了。 CC-BY 2.0 (France) Attribution: tatoeba.org #680229 (Source_VOA) & #5102239 (mirrorvan) +Someone called. 有人打電話來。 CC-BY 2.0 (France) Attribution: tatoeba.org #765402 (Martha) & #765386 (Martha) +Stop grumbling. 停止发牢骚吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #18356 (CK) & #5092142 (mirrorvan) +Stop resisting! 停止抵抗! CC-BY 2.0 (France) Attribution: tatoeba.org #684473 (CM) & #5102240 (mirrorvan) +Summer is over. 夏天过去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #394438 (doviende) & #7774794 (jiangche) +Take your time. 你可以慢慢来。 CC-BY 2.0 (France) Attribution: tatoeba.org #30121 (CK) & #334393 (fucongcong) +Take your time. 慢慢来。 CC-BY 2.0 (France) Attribution: tatoeba.org #30121 (CK) & #334395 (fucongcong) +That was wrong. 那样是错的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250989 (CK) & #5096414 (mirrorvan) +That's a shame. 那是一個恥辱。 CC-BY 2.0 (France) Attribution: tatoeba.org #435170 (CK) & #824604 (Martha) +That's logical. 那符合逻辑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187259 (CK) & #7068906 (la_kanro) +That's my coat. 那是我的大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3622101 (weihaiping) & #471091 (fucongcong) +That's perfect. 那是完美的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1897814 (CK) & #5650533 (verdastelo9604) +That's too bad. 太可惜了! CC-BY 2.0 (France) Attribution: tatoeba.org #433625 (CK) & #332578 (fucongcong) +That's too bad. 多遗憾啊! CC-BY 2.0 (France) Attribution: tatoeba.org #433625 (CK) & #469440 (fucongcong) +That's too bad. 那太糟糕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433625 (CK) & #826217 (Martha) +The birds sang. 鳥兒歌唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #278157 (CK) & #819283 (Martha) +The cat meowed. 猫叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549627 (CK) & #5670731 (verdastelo9604) +The flag is up. 旗子升起了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20530 (CK) & #813491 (fucongcong) +The phone rang. 電話正在響。 CC-BY 2.0 (France) Attribution: tatoeba.org #2257534 (CK) & #710667 (egg0073) +Their eyes met. 他們目光相接。 CC-BY 2.0 (France) Attribution: tatoeba.org #323737 (CK) & #6109301 (verdastelo9604) +These are pens. 這些是筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #737644 (CM) & #780043 (Martha) +They hated Tom. 他們恨湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #305951 (CK) & #824618 (Martha) +They have jobs. 他們有工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4397559 (CK) & #6624644 (verdastelo9604) +They let me go. 他們讓我走。 CC-BY 2.0 (France) Attribution: tatoeba.org #495626 (FeuDRenais) & #765254 (Martha) +They love that. 他们喜欢那个 CC-BY 2.0 (France) Attribution: tatoeba.org #2243246 (CK) & #5975065 (zhangxr91) +They trust Tom. 他们信任汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235922 (CK) & #5907509 (verdastelo9604) +They want more. 他們想要更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1820314 (Spamster) & #4754636 (egg0073) +They want this. 他們想要這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2252724 (CK) & #6098442 (verdastelo9604) +They were good. 他们不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243383 (CK) & #5569554 (verdastelo9604) +This is a book. 这是一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #55399 (CK) & #336921 (fucongcong) +This is a fish. 這是一條魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2629585 (CM) & #2629586 (egg0073) +This is my bag. 那是我的包。 CC-BY 2.0 (France) Attribution: tatoeba.org #55628 (jakov) & #2040518 (sadhen) +Tom can change. 湯姆能改變。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496506 (CK) & #6114396 (verdastelo9604) +Tom can't stay. 汤姆不能留下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868426 (CK) & #9178012 (xiaohong) +Tom can't swim. 汤姆不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026731 (CK) & #5072434 (musclegirlxyp) +Tom has a plan. 湯姆有個計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649102 (CK) & #6075556 (verdastelo9604) +Tom has brains. 汤姆脑子好使。 CC-BY 2.0 (France) Attribution: tatoeba.org #8589486 (CK) & #5072415 (musclegirlxyp) +Tom has failed. 汤姆失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4667266 (CK) & #8671326 (crescat) +Tom is a rabbi. 汤姆是个拉比。 CC-BY 2.0 (France) Attribution: tatoeba.org #1494868 (Spamster) & #5983579 (verdastelo9604) +Tom is miserly. 汤姆很小气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236774 (CK) & #4264932 (notabene) +Tom is no fool. 汤姆不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273328 (CK) & #5091664 (mirrorvan) +Tom is sloshed. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203365 (CK) & #5142201 (musclegirlxyp) +Tom is smashed. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203374 (CK) & #5142201 (musclegirlxyp) +Tom isn't dumb. 汤姆不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236962 (CK) & #5091664 (mirrorvan) +Tom lives here. 汤姆住在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237182 (CK) & #5613703 (verdastelo9604) +Tom looks pale. 湯姆看起來很蒼白。 CC-BY 2.0 (France) Attribution: tatoeba.org #37170 (CK) & #826200 (Martha) +Tom loves dogs. 汤姆喜欢狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2244696 (CK) & #7771665 (jiangche) +Tom seems nice. 汤姆看着是个好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867923 (CK) & #8879824 (crescat) +Tom turned red. 汤姆脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2238843 (CK) & #5092418 (mirrorvan) +Tom walked out. 湯姆走了出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2261170 (CK) & #6206740 (verdastelo9604) +Tom was crying. 汤姆当时在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1488808 (Spamster) & #5114279 (musclegirlxyp) +Tom won't stop. 湯姆不會停。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240229 (CK) & #8215700 (verdastelo9604) +Tom's fearless. 汤姆无所畏惧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107511 (CK) & #2188407 (sadhen) +Tom's laughing. 汤姆在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107557 (CK) & #5072342 (musclegirlxyp) +Tom's out cold. 汤姆正昏迷不醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171072 (CK) & #8725793 (crescat) +Tom's thrilled. 汤姆兴奋不已。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107625 (CK) & #5094100 (mirrorvan) +Turn on the TV. 开电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180903 (treskro3) & #472986 (fucongcong) +Turn up the TV. 把电视声音调大点儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #39214 (CK) & #1411619 (asosan) +Was Tom asleep? 汤姆睡着了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3738354 (CK) & #5865518 (verdastelo9604) +Wash your feet. 洗您的脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #274488 (adjusting) & #487590 (fucongcong) +Wash your feet. 洗你的脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #274488 (adjusting) & #487593 (fucongcong) +Watch yourself. 自己当心啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #64496 (CK) & #5102151 (mirrorvan) +We forgive you. 我們原諒你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241093 (CK) & #6068357 (verdastelo9604) +We knew no one. 我們誰也不認識。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733204 (CK) & #6131465 (verdastelo9604) +We need a hero. 我們需要英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649076 (CK) & #8215716 (verdastelo9604) +We study music. 我们学习音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #247742 (CK) & #1358711 (sadhen) +We were robbed. 我們被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4397511 (CK) & #6284532 (xjjAstrus) +We'll continue. 我们要继续下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203625 (CK) & #7768123 (jiangche) +We're a family. 我們是個家庭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240835 (CK) & #6936397 (verdastelo9604) +We're not late. 我们没迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240626 (CK) & #4456370 (plutowu) +Well, let's go. 好吧,我們走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #410596 (CK) & #832441 (Martha) +Were you happy? 你开心吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2044396 (CK) & #8924804 (crescat) +Were you right? 你是对的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2254510 (CK) & #5640753 (verdastelo9604) +What about you? 你們呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1642551 (CK) & #1623187 (egg0073) +What about you? 您呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1642551 (CK) & #1623188 (Yashanti) +What do you do? 你的職業是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #17125 (CK) & #908379 (Martha) +What's her job? 她做什么工作? CC-BY 2.0 (France) Attribution: tatoeba.org #3205365 (CM) & #5640735 (verdastelo9604) +Where do we go? 我们去哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #2649070 (CK) & #471103 (fucongcong) +Where were you? 之前你在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #16486 (CK) & #1778322 (sadhen) +Who's that guy? 那家伙是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2254911 (CK) & #5595183 (verdastelo9604) +Who's that man? 那男人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #1886552 (CK) & #7773140 (jiangche) +Why do you ask? 你問這個幹什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1368 (CK) & #56 (fucongcong) +Why is he here? 为什么他在这儿? CC-BY 2.0 (France) Attribution: tatoeba.org #36344 (CK) & #408248 (fucongcong) +Wipe your eyes. 擦擦你的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735829 (CK) & #6198252 (verdastelo9604) +Yes, I know it. 是的,我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #433589 (CK) & #834241 (Martha) +Yes, of course. 是的,當然。 CC-BY 2.0 (France) Attribution: tatoeba.org #30530 (Zifre) & #712982 (egg0073) +You have to go. 你們得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16159 (xtofu80) & #1740732 (egg0073) +You look bored. 你看起來很無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #15918 (CK) & #825165 (Martha) +You look tense. 你看起来很紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255126 (CK) & #3289653 (sadhen) +You look tired. 你看起來很疲倦。 CC-BY 2.0 (France) Attribution: tatoeba.org #63218 (CK) & #819306 (Martha) +You look tired. 你看起来很困了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63218 (CK) & #5097669 (mirrorvan) +You must do it. 你必須去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #770110 (marloncori) & #770244 (Martha) +You need to go. 你們得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649063 (CK) & #1740732 (egg0073) +You'll love it. 你會愛它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255375 (CK) & #6065877 (verdastelo9604) +You're kidding! 你開玩笑吧! CC-BY 2.0 (France) Attribution: tatoeba.org #433881 (CK) & #819312 (Martha) +You're welcome. 您不必感谢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #403068 (Ramses) & #7767730 (jiangche) +A man must work. 男人应该工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #270113 (CM) & #334672 (fucongcong) +Are we finished? 我们完成了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244924 (CK) & #1783788 (sadhen) +Are you certain? 你确定? CC-BY 2.0 (France) Attribution: tatoeba.org #1356753 (sacredceltic) & #4208543 (Ethan_lin) +Are you friends? 你們是朋友嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7787226 (sharris123) & #6047118 (xjjAstrus) +Are you kidding? 你在开玩笑吗? CC-BY 2.0 (France) Attribution: tatoeba.org #270147 (CK) & #7768013 (jiangche) +Are you nervous? 你紧张吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244956 (CK) & #8696388 (morningstar) +Are you over 18? 你有18歲了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2900555 (Hybrid) & #6114400 (verdastelo9604) +Are you serious? 你是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #373215 (kotobaboke) & #4887667 (musclegirlxyp) +Are you thirsty? 你渴吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434258 (lukaszpp) & #3365590 (go_oo) +Are you working? 你在上班嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #245411 (CK) & #5999024 (xjjAstrus) +Aren't you cold? 你不冷吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244975 (CK) & #8673739 (crescat) +Balls are round. 球是圆的。 CC-BY 2.0 (France) Attribution: tatoeba.org #33654 (CK) & #1397373 (mtdot) +Be happy for me. 为我感到高兴吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044400 (CK) & #5691285 (verdastelo9604) +Behave yourself. 规矩点。 CC-BY 2.0 (France) Attribution: tatoeba.org #64491 (CK) & #5092247 (mirrorvan) +Black suits you. 黑色很衬你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3140021 (Marissa) & #408242 (fucongcong) +Boil some water. 烧一点水。 CC-BY 2.0 (France) Attribution: tatoeba.org #64141 (CK) & #392263 (fucongcong) +Call me, please. 请给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #8794857 (dq) & #8933788 (crescat) +Call the police! 叫警察! CC-BY 2.0 (France) Attribution: tatoeba.org #1718 (CK) & #1205903 (cienias) +Call the police! 报警! CC-BY 2.0 (France) Attribution: tatoeba.org #1718 (CK) & #1411630 (asosan) +Call the police. 报警! CC-BY 2.0 (France) Attribution: tatoeba.org #2245030 (CK) & #1411630 (asosan) +Can I bring Tom? 我可以带上汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2261175 (CK) & #8888287 (crescat) +Can Tom help us? 汤姆可以帮我们吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886268 (CK) & #8809754 (crescat) +Can you find it? 你能找到它嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #239285 (adjusting) & #826199 (Martha) +Can you hear me? 你听得见吗? CC-BY 2.0 (France) Attribution: tatoeba.org #250795 (CK) & #333415 (fucongcong) +Can you help me? 你能幫我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434410 (lukaszpp) & #6559040 (xjjAstrus) +Can you help me? 您能帮我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434410 (lukaszpp) & #7772052 (jiangche) +Can you help us? 你能幫我們嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886253 (CK) & #8215708 (verdastelo9604) +Clean your room. 清掃你的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #435774 (CK) & #771567 (Martha) +Clean your room. 打扫一下你的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #435774 (CK) & #7768207 (jiangche) +Close your eyes. 闭上你的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #434446 (lukaszpp) & #405129 (fucongcong) +Close your eyes. 闭上你们的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #434446 (lukaszpp) & #1661563 (sadhen) +Come if you can. 你能来就来! CC-BY 2.0 (France) Attribution: tatoeba.org #450074 (CK) & #804811 (fucongcong) +Come if you can. 如果你能就來吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #450074 (CK) & #825163 (Martha) +Congratulations! 祝贺你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1437 (CK) & #335058 (fucongcong) +Congratulations! 恭喜! CC-BY 2.0 (France) Attribution: tatoeba.org #1437 (CK) & #4990053 (boanw) +Could you do it? 你能做到嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2649043 (CK) & #6853184 (verdastelo9604) +Count to thirty. 数到三十。 CC-BY 2.0 (France) Attribution: tatoeba.org #707526 (papabear) & #710390 (fucongcong) +Did Tom respond? 汤姆有回应了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2235681 (CK) & #4885087 (musclegirlxyp) +Did Tom say who? 汤姆说是谁了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2891039 (CK) & #5640741 (verdastelo9604) +Did you miss me? 你想我了? CC-BY 2.0 (France) Attribution: tatoeba.org #1561 (CK) & #334429 (fucongcong) +Do you go often? 您经常去吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1043614 (Brian255) & #785919 (fucongcong) +Do you have one? 你有嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16547 (CK) & #793230 (Martha) +Do you know him? 你认识他吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69003 (CK) & #431556 (fucongcong) +Do you like rap? 你喜欢说唱音乐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2310 (CK) & #1776572 (sadhen) +Do you remember? 你记得吗? CC-BY 2.0 (France) Attribution: tatoeba.org #21678 (CK) & #444736 (fucongcong) +Does love exist? 愛存在嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1743386 (CM) & #3957689 (egg0073) +Don't be fooled. 別被騙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245300 (CK) & #6105191 (verdastelo9604) +Don't bother me. 别来烦我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1488089 (arnxy20) & #1505477 (fenfang557) +Don't forget me. 別忘了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733064 (CK) & #6325084 (verdastelo9604) +Don't forget us. 别忘了我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2003078 (AlanF_US) & #7769301 (jiangche) +Don't open that. 别打开那个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245363 (CK) & #5842630 (verdastelo9604) +Don't run risks. 不要冒险。 CC-BY 2.0 (France) Attribution: tatoeba.org #20715 (al_ex_an_der) & #819827 (fucongcong) +Don't tell lies. 别说谎! CC-BY 2.0 (France) Attribution: tatoeba.org #65615 (CK) & #796697 (fucongcong) +Don't you agree? 你不同意吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2136815 (GLOBULE38) & #7768002 (jiangche) +Don't you agree? 您不同意吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2136815 (GLOBULE38) & #7768003 (jiangche) +Drive carefully. 安全地駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #265500 (CK) & #819285 (Martha) +Drive carefully. 开车小心点。 CC-BY 2.0 (France) Attribution: tatoeba.org #265500 (CK) & #5102177 (mirrorvan) +Follow that car. 跟上那辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1300736 (CK) & #4970157 (wzhd) +Get out of here. 離開這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #62081 (CK) & #826233 (Martha) +Give Tom a hand. 幫湯姆一把。 CC-BY 2.0 (France) Attribution: tatoeba.org #2261873 (CK) & #6128506 (verdastelo9604) +Give it to them. 把它给他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #626780 (Archibald) & #792890 (fucongcong) +Give me my beer. 把我的啤酒給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151514 (CK) & #8215732 (verdastelo9604) +Go home quickly. 赶快回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #274014 (CK) & #5092584 (mirrorvan) +Go to the patio. 去露台。 CC-BY 2.0 (France) Attribution: tatoeba.org #434798 (lukaszpp) & #1397108 (mtdot) +Green suits you. 綠色適合你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17538 (CK) & #824561 (Martha) +Has he come yet? 他已经来了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #293048 (CK) & #4267322 (notabene) +Have a nice day. 祝你一天过得愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #30085 (CK) & #336675 (fucongcong) +He acts quickly. 他行动迅速。 CC-BY 2.0 (France) Attribution: tatoeba.org #288254 (CM) & #1888657 (Venki) +He began to cry. 他开始哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295240 (CK) & #5715130 (verdastelo9604) +He can't be ill. 他不可能生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284135 (CK) & #347069 (fucongcong) +He has gone mad. 他疯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295109 (CK) & #1417582 (sadhen) +He is a teacher. 他是教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #295346 (CK) & #7768344 (jiangche) +He is a teacher. 他是老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #295346 (CK) & #7768345 (jiangche) +He is my father. 他是我父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #297979 (eS) & #796081 (Martha) +He is very kind. 他非常親切。 CC-BY 2.0 (France) Attribution: tatoeba.org #480142 (CK) & #819413 (Martha) +He is very tall. 他很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #292154 (CK) & #1361951 (sadhen) +He just arrived. 他刚到。 CC-BY 2.0 (France) Attribution: tatoeba.org #451727 (FeuDRenais) & #451439 (fucongcong) +He likes Disney. 他喜欢迪士尼。 CC-BY 2.0 (France) Attribution: tatoeba.org #288037 (CK) & #347030 (fucongcong) +He looks strong. 他看起來很強壯。 CC-BY 2.0 (France) Attribution: tatoeba.org #295303 (CK) & #825904 (Martha) +He loves trains. 他喜歡火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #489677 (CK) & #826287 (Martha) +He pressured me. 他向我施压。 CC-BY 2.0 (France) Attribution: tatoeba.org #1902518 (blay_paul) & #5595163 (verdastelo9604) +He studied hard. 他努力學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #1908967 (Spamster) & #6103217 (verdastelo9604) +He tends to lie. 他企图说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180728 (treskro3) & #466078 (fucongcong) +He tires easily. 他很容易觉得累。 CC-BY 2.0 (France) Attribution: tatoeba.org #997850 (NickC) & #335106 (fucongcong) +He walks slowly. 他慢慢地走。 CC-BY 2.0 (France) Attribution: tatoeba.org #293207 (CK) & #512111 (fucongcong) +He was very old. 他很老。 CC-BY 2.0 (France) Attribution: tatoeba.org #291592 (CK) & #1533413 (CLARET) +He will survive. 他會倖存。 CC-BY 2.0 (France) Attribution: tatoeba.org #2025437 (Spamster) & #6151302 (verdastelo9604) +He's a comedian. 他是喜剧演员。 CC-BY 2.0 (France) Attribution: tatoeba.org #327941 (CK) & #808215 (fucongcong) +He's a good guy. 他是個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1853760 (Spamster) & #780339 (Martha) +He's a good lad. 他是個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2675712 (FeuDRenais) & #780339 (Martha) +He's a tall boy. 他是一个高大的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #714434 (CM) & #714432 (Yashanti) +He's not a hero. 他不是英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #1815763 (Spamster) & #5613619 (verdastelo9604) +He's not stupid. 他不是傻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #526990 (FeuDRenais) & #429141 (fucongcong) +He's very angry. 他非常生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #1323916 (CK) & #426894 (fucongcong) +Here's the bill. 这是账单。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245561 (CK) & #7774826 (jiangche) +Here's your tea. 这是你的茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #3900748 (felvideki) & #5863244 (verdastelo9604) +Hi! How are you? 嗨!你好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #30316 (Zifre) & #873404 (Martha) +His word is law. 他的话就是命令。 CC-BY 2.0 (France) Attribution: tatoeba.org #287669 (CM) & #792851 (fucongcong) +How do you feel? 你感觉如何? CC-BY 2.0 (France) Attribution: tatoeba.org #25724 (CK) & #5026446 (murr) +How hot is that? 那個東西有多熱? CC-BY 2.0 (France) Attribution: tatoeba.org #9144900 (shou) & #9144904 (shou) +How interesting! 多么有趣啊! CC-BY 2.0 (France) Attribution: tatoeba.org #1898371 (CK) & #7772100 (jiangche) +How is everyone? 大家好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22110 (CK) & #819309 (Martha) +How is it going? 你們好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38308 (CK) & #1761553 (egg0073) +How old are you? 你幾歲? CC-BY 2.0 (France) Attribution: tatoeba.org #436243 (lukaszpp) & #779497 (Martha) +How rude of you! 你真粗魯! CC-BY 2.0 (France) Attribution: tatoeba.org #16444 (CK) & #819340 (Martha) +How unfortunate! 可憐! CC-BY 2.0 (France) Attribution: tatoeba.org #2111810 (CK) & #766953 (Martha) +How's the apple? 這個蘋果怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #6110489 (Sethlang) & #6092463 (xjjAstrus) +I ache all over. 我全身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #63521 (CK) & #917936 (Martha) +I am a good boy. 我是一个好男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1070261 (Valodnieks) & #1786007 (sadhen) +I am busy today. 我今天忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #242977 (sacredceltic) & #8215733 (verdastelo9604) +I am in trouble. 我有麻煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257640 (CK) & #917920 (Martha) +I am in trouble. 我遇到困難了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257640 (CK) & #917927 (Martha) +I ate the apple. 我吃了這個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #770172 (marloncori) & #770261 (Martha) +I baked cookies. 我烤了曲奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245614 (CK) & #6325143 (verdastelo9604) +I began running. 我開始跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850896 (CK) & #6103124 (verdastelo9604) +I booked a seat. 我訂了一個位子。 CC-BY 2.0 (France) Attribution: tatoeba.org #243651 (CM) & #731759 (Martha) +I bought a book. 我買了一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #256043 (CK) & #941107 (Martha) +I called Tom up. 我打電話給湯姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255286 (CK) & #826242 (Martha) +I called her up. 我叫她起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #261210 (CK) & #5911676 (verdastelo9604) +I can come, too. 我也能去 CC-BY 2.0 (France) Attribution: tatoeba.org #8405946 (CK) & #8746411 (cxpadonis) +I can sing well. 我唱歌很好听。 CC-BY 2.0 (France) Attribution: tatoeba.org #501171 (swagner) & #6884328 (maggiesq) +I can swim well. 我游泳可以游得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #258725 (CK) & #926770 (Martha) +I can't see you. 我看不見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1784974 (Amastan) & #5114860 (xjjAstrus) +I can't undo it. 我不能取消它。 CC-BY 2.0 (France) Attribution: tatoeba.org #826005 (U2FS) & #827591 (Martha) +I did it myself. 我自己做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #454165 (mamat) & #512813 (fucongcong) +I don't like it. 我不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271878 (CK) & #1361974 (sadhen) +I don't want it. 我不要. CC-BY 2.0 (France) Attribution: tatoeba.org #452696 (CK) & #6850371 (mao) +I feel relieved. 我感觉轻松了。 CC-BY 2.0 (France) Attribution: tatoeba.org #28489 (CK) & #787349 (fucongcong) +I get up at six. 我六點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #321577 (CK) & #835368 (Martha) +I had no choice. 那时我没有选择的余地。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553472 (CK) & #1783803 (sadhen) +I hate studying. 我讨厌学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #537021 (tomkun01) & #471099 (fucongcong) +I have a laptop. 我有一臺筆記本電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4305641 (CK) & #9057853 (xjjAstrus) +I have brothers. 我有兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #773503 (marloncori) & #774537 (Martha) +I have ten pens. 我有十支筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #370732 (saeb) & #779472 (Martha) +I have to hurry! 我要赶紧了! CC-BY 2.0 (France) Attribution: tatoeba.org #705285 (Zifre) & #793948 (fucongcong) +I have two cars. 我有两辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #321849 (CK) & #411702 (fucongcong) +I have two cats. 我有两只猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2412739 (fjrjdk) & #4878929 (musclegirlxyp) +I have two sons. 我有兩個兒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2714934 (CK) & #6486891 (xjjAstrus) +I just threw up. 我剛才吐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962738 (JSakuragi) & #3713809 (egg0073) +I lent him a CD. 我借给他一盘CD。 CC-BY 2.0 (France) Attribution: tatoeba.org #260265 (CK) & #846778 (fucongcong) +I like Tom, too. 我也喜歡湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840522 (CK) & #6333807 (verdastelo9604) +I like eggplant. 我喜歡茄子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156338 (Kiwi) & #6940065 (xjjAstrus) +I like football. 我喜歡足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #858100 (miravalles) & #5568572 (egg0073) +I like potatoes. 我喜歡土豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858134 (CK) & #6075487 (verdastelo9604) +I like the cold. 我喜歡寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #252385 (CK) & #1647824 (egg0073) +I like this dog. 我喜欢这只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #439591 (landano) & #1785983 (sadhen) +I like your car. 我喜欢您的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #257112 (CK) & #343424 (fucongcong) +I lost my money. 我丢了我的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #7798513 (sharris123) & #847698 (fucongcong) +I love this car. 我愛這台車。 CC-BY 2.0 (France) Attribution: tatoeba.org #4401060 (CK) & #5496248 (egg0073) +I love you, too. 我也愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #628763 (meloncurtains) & #5500487 (egg0073) +I might say yes. 我可能会说是。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387228 (CK) & #5945148 (verdastelo9604) +I must help her. 我必須幫助她。 CC-BY 2.0 (France) Attribution: tatoeba.org #816064 (afeinberg) & #816890 (Martha) +I need a friend. 我需要个朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824522 (CK) & #5983631 (verdastelo9604) +I need a lawyer. 我需要一名律師。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887574 (CK) & #6292460 (xjjAstrus) +I need evidence. 我需要證據。 CC-BY 2.0 (France) Attribution: tatoeba.org #2246003 (CK) & #6293115 (verdastelo9604) +I need my boots. 我需要我的靴子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7799644 (sharris123) & #6062102 (xjjAstrus) +I need you here. 我需要你在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887591 (CK) & #6075557 (verdastelo9604) +I only want one. 我只想要一件东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1956085 (CK) & #7774358 (jiangche) +I paid the bill. 我买了单。 CC-BY 2.0 (France) Attribution: tatoeba.org #680368 (Source_VOA) & #808214 (fucongcong) +I played tennis. 我打網球了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255092 (CK) & #826104 (Martha) +I run every day. 我每天跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #261849 (CK) & #414247 (fucongcong) +I speak Swedish. 我说瑞典语。 CC-BY 2.0 (France) Attribution: tatoeba.org #880605 (CN) & #1428153 (sadhen) +I talked to Tom. 我和汤姆说了话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887701 (CK) & #7768303 (jiangche) +I talked to her. 我跟她谈了话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1457695 (CK) & #5942089 (verdastelo9604) +I think it's OK. 我想沒關係。 CC-BY 2.0 (France) Attribution: tatoeba.org #433884 (CK) & #771479 (Martha) +I took a shower. 我洗了澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3126551 (lavenir) & #5624915 (verdastelo9604) +I want a guitar. 我想要一把吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #63403 (CK) & #390449 (fucongcong) +I want that bag. 我想要那個袋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #68478 (CK) & #824622 (Martha) +I want to drive. 我想開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258396 (CK) & #826158 (Martha) +I wanted to cry. 我想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #4383868 (Hybrid) & #334542 (fucongcong) +I was not drunk. 我沒醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1156060 (CK) & #8215707 (verdastelo9604) +I was surprised. 我吃惊了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247521 (CK) & #5585229 (verdastelo9604) +I wish you'd go. 我希望你去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2155930 (FeuDRenais) & #864359 (Martha) +I woke up early. 我起得早。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549543 (CK) & #6678462 (verdastelo9604) +I work too much. 我工作得太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553441 (CK) & #1783806 (sadhen) +I'll bring wine. 我会带酒来。 CC-BY 2.0 (France) Attribution: tatoeba.org #5228978 (jaxhere) & #5640710 (verdastelo9604) +I'll go by taxi. 我坐出租車去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549527 (CK) & #9179887 (xjjAstrus) +I'll never stop. 我絕不會停。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247791 (CK) & #6871856 (verdastelo9604) +I'm a detective. 我是个侦探。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247888 (CK) & #7774795 (jiangche) +I'm a foreigner. 我是一個外國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #809719 (Martha) & #809716 (Martha) +I'm a good cook. 我是个好厨师。 CC-BY 2.0 (France) Attribution: tatoeba.org #325794 (CK) & #346721 (fucongcong) +I'm a night owl. 我是個夜貓子。 CC-BY 2.0 (France) Attribution: tatoeba.org #321972 (CK) & #825924 (Martha) +I'm a professor. 我是大学教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #5853142 (CK) & #8762958 (crescat) +I'm about ready. 我快好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33483 (CK) & #793259 (Martha) +I'm almost done. 我差不多完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2040 (Swift) & #333787 (fucongcong) +I'm always busy. 我总是有事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649020 (CK) & #7771930 (jiangche) +I'm always here. 我一直在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5975691 (CK) & #6114424 (verdastelo9604) +I'm daydreaming. 我在做白日梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #5198885 (AlanF_US) & #6105117 (verdastelo9604) +I'm eating rice. 我在吃米饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873303 (CK) & #334506 (fucongcong) +I'm feeling fit. 我覺得精神很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #33524 (CK) & #826231 (Martha) +I'm from Boston. 他來自波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549516 (CK) & #764477 (Martha) +I'm getting old. 我在变老。 CC-BY 2.0 (France) Attribution: tatoeba.org #1619683 (Spamster) & #7768006 (jiangche) +I'm left-handed. 我是左撇子。 CC-BY 2.0 (France) Attribution: tatoeba.org #321826 (CK) & #832799 (Martha) +I'm not jealous. 我不嫉妒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248154 (CK) & #7768001 (jiangche) +I'm not serious. 我不是认真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1139052 (soj4l) & #461488 (fucongcong) +I'm out of time. 我没时间了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713773 (CK) & #5555760 (verdastelo9604) +I'm pretty busy. 我挺忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2046667 (CK) & #6940059 (Cheng) +I'm pretty tall. 我相当高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248216 (CK) & #7772595 (jiangche) +I'm really busy. 我真的好忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2046669 (CK) & #4760008 (ryanwoo) +I'm really cold. 我真的冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248227 (CK) & #6065730 (verdastelo9604) +I'm still young. 我還年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1806286 (Spamster) & #832459 (Martha) +I'm very hungry. 我很餓。 CC-BY 2.0 (France) Attribution: tatoeba.org #433809 (CK) & #826048 (Martha) +I'm very lonely. 我很寂寞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649018 (CK) & #5091176 (mirrorvan) +I'm very sleepy. 我非常困。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649017 (CK) & #8968587 (ZeroAurora) +I'm your father. 我是你爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891163 (CK) & #6057860 (verdastelo9604) +I've got a boat. 我有一艘小船。 CC-BY 2.0 (France) Attribution: tatoeba.org #8399047 (CK) & #9179805 (xjjAstrus) +I've had enough. 我已經受夠了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433859 (CK) & #826273 (Martha) +I've had enough. 我已經吃飽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433859 (CK) & #826276 (Martha) +Is Tom Canadian? Tom是加拿大人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2244584 (CK) & #5350387 (egg0073) +Is Tom an actor? 汤姆是演员吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2649011 (CK) & #8877876 (crescat) +Is Tom autistic? 汤姆有自闭症吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2235809 (CK) & #8832691 (crescat) +Is Tom infected? 汤姆被感染了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244610 (CK) & #8696436 (morningstar) +Is Tom swimming? 汤姆在游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2953034 (CK) & #8756401 (crescat) +Is he breathing? 他在呼吸嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #239892 (CK) & #772142 (Martha) +Is it all there? 全都在那裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2891415 (CK) & #6146643 (verdastelo9604) +Is it poisonous? 它有毒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2248466 (CK) & #8215687 (verdastelo9604) +Is it too salty? 还有多余的盐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #995263 (NickC) & #993764 (leoyzy) +Is she Japanese? 她是日本人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1123763 (CK) & #1671358 (egg0073) +Is this a river? 這是一條河嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56259 (CK) & #788741 (Martha) +Isn't that mine? 那是我的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2248691 (CK) & #4463426 (MirendaBABY) +It is up to you. 由你來決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #42493 (CK) & #834868 (Martha) +It snowed a lot. 下了很多的雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1045510 (tatomeimei) & #759541 (Martha) +It was terrible. 真糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248884 (CK) & #5576793 (verdastelo9604) +It was very far. 它很遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #5758327 (CM) & #6132230 (verdastelo9604) +It'll be cloudy. 天要变多云了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2631810 (Joseph) & #6080240 (verdastelo9604) +It'll rain soon. 天快要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248988 (CK) & #335128 (fucongcong) +It's a dead end. 这是个死胡同。 CC-BY 2.0 (France) Attribution: tatoeba.org #2176 (CK) & #503300 (fucongcong) +It's a new book. 那本書是一本新書。 CC-BY 2.0 (France) Attribution: tatoeba.org #871646 (ColinG) & #871134 (Martha) +It's a nice day. 今天天氣很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #433659 (CK) & #819387 (Martha) +It's a surprise. 这是一个惊喜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1567 (CK) & #334423 (fucongcong) +It's almost six. 差不多六点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #519311 (CK) & #609853 (CLARET) +It's almost six. 快要六點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #519311 (CK) & #832800 (Martha) +It's already 11. 已经是11点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230697 (alec) & #334137 (fucongcong) +It's fine today. 今天天气很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242938 (CK) & #333127 (fucongcong) +It's impossible. 這是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433459 (CK) & #824702 (Martha) +It's lunch time. 午餐時間到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433692 (CK) & #825916 (Martha) +It's nearly six. 差不多六点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5290178 (Joseph) & #609853 (CLARET) +It's okay to go. 你可以走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #518554 (CK) & #824627 (Martha) +It's over there. 在那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249154 (CK) & #5856785 (verdastelo9604) +It's time to go. 該走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266757 (CK) & #793328 (Martha) +It's time to go. 是該離開的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266757 (CK) & #793329 (Martha) +Jesus loves you. 耶穌愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #823857 (slomox) & #824412 (Martha) +Keep on smiling. 保持微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #318128 (CK) & #778735 (Martha) +Keep on working. 繼續工作! CC-BY 2.0 (France) Attribution: tatoeba.org #3507575 (CK) & #3982106 (tsayng) +Keep the change! 不用找零钱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39748 (CK) & #1411509 (asosan) +Large, isn't it? 很大, 不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435613 (CK) & #771584 (Martha) +Lemons are sour. 檸檬是酸的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435751 (CK) & #826253 (Martha) +Let me go alone. 讓我一個人去。 CC-BY 2.0 (France) Attribution: tatoeba.org #27652 (CK) & #825893 (Martha) +Let me see that. 讓我看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #41848 (CK) & #819468 (Martha) +Let them decide. 讓他們決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #3071634 (sharptoothed) & #4732044 (egg0073) +Let's eat sushi. 讓我們吃壽司吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #449059 (CK) & #824678 (Martha) +Let's go by bus. 讓我們坐公共汽車去。 CC-BY 2.0 (France) Attribution: tatoeba.org #450028 (CK) & #826293 (Martha) +Let's not argue. 我們別吵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007873 (CK) & #2660863 (egg0073) +Let's rest here. 在这里稍微休息一下吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #61882 (CK) & #8749668 (crescat) +Let's turn back. 我们掉头吧! CC-BY 2.0 (France) Attribution: tatoeba.org #27144 (CK) & #472905 (fucongcong) +Look at the sky. 看天上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648989 (CK) & #2081723 (sadhen) +Look behind you. 瞧你身後。 CC-BY 2.0 (France) Attribution: tatoeba.org #433623 (CK) & #819456 (Martha) +Make it smaller. 把它弄小一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #433495 (CK) & #825894 (Martha) +May I leave now? 我现在能走了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #242132 (CK) & #476636 (fucongcong) +May I try it on? 我能试一下吗? CC-BY 2.0 (France) Attribution: tatoeba.org #41784 (CK) & #782915 (fucongcong) +Maybe next time. 也许下一次吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1516119 (gonnastop) & #710745 (Yashanti) +Men should work. 男人应该工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479231 (weihaiping) & #334672 (fucongcong) +Merry Christmas! 聖誕快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1723 (brauliobezerra) & #779499 (Martha) +Mom, I'm hungry. 妈妈,我肚子饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2764199 (CK) & #4473138 (yuiyu) +My father walks. 我爸爸走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #557422 (CK) & #4757681 (ryanwoo) +My house is big. 我家很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #250554 (Scott) & #336235 (fucongcong) +Never say never. 永远不要说永远。 CC-BY 2.0 (France) Attribution: tatoeba.org #505754 (Mehdi) & #1330012 (vicch) +Nice to see you. 见到你真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #32688 (CK) & #795754 (fucongcong) +No one was late. 没有人迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #415455 (FeuDRenais) & #803851 (fucongcong) +No, I didn't go. 不,我沒去。 CC-BY 2.0 (France) Attribution: tatoeba.org #516735 (CK) & #819356 (Martha) +Open the bottle. 把瓶子打开。 CC-BY 2.0 (France) Attribution: tatoeba.org #49963 (CK) & #1411634 (asosan) +Please be quiet. 請安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #449049 (CK) & #825998 (Martha) +Please continue. 请继续。 CC-BY 2.0 (France) Attribution: tatoeba.org #870628 (CK) & #5102256 (mirrorvan) +Please sit down. 請坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #415594 (FeuDRenais) & #826147 (Martha) +Prices are high. 价格高。 CC-BY 2.0 (France) Attribution: tatoeba.org #65710 (CK) & #8696342 (crescat) +Put your hat on. 戴上你的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #321117 (CK) & #895823 (Martha) +Say no to drugs. 對毒品說不。 CC-BY 2.0 (France) Attribution: tatoeba.org #827226 (Scott) & #827526 (Martha) +Scary, isn't it? 嚇人,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2549491 (CK) & #6150894 (verdastelo9604) +See you tonight. 今晚見。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648979 (CK) & #6028180 (verdastelo9604) +She calmed down. 她冷靜下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #3272732 (CM) & #6132218 (verdastelo9604) +She disappeared. 她消失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442219 (CK) & #5372267 (egg0073) +She is a doctor. 她是医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #309938 (CK) & #334971 (fucongcong) +She is graceful. 她举止优雅。 CC-BY 2.0 (France) Attribution: tatoeba.org #317252 (CK) & #4972683 (wzhd) +She looked away. 她轉移了視線。 CC-BY 2.0 (France) Attribution: tatoeba.org #512653 (CK) & #825166 (Martha) +She looks young. 她看起来很年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #314853 (CK) & #2188409 (sadhen) +She lost a book. 她弄丟了一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1275204 (CK) & #1275212 (egg0073) +She married him. 她嫁给了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #316246 (CK) & #4970155 (wzhd) +She worked hard. 她努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #312575 (CK) & #817269 (fucongcong) +She's my sister. 她是我的姊妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #469126 (CK) & #825891 (Martha) +She's on a diet. 她在节食中。 CC-BY 2.0 (France) Attribution: tatoeba.org #707288 (papabear) & #1878324 (sadhen) +She's on a diet. 她在节食。 CC-BY 2.0 (France) Attribution: tatoeba.org #707288 (papabear) & #7767995 (jiangche) +Spring has come. 春天到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #441964 (CK) & #1490515 (sadhen) +That dog is big. 這隻狗很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #68734 (CK) & #825158 (Martha) +That feels good. 感觉良好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250109 (CK) & #5845579 (verdastelo9604) +That isn't fair. 這不公平。 CC-BY 2.0 (France) Attribution: tatoeba.org #442966 (CK) & #819322 (Martha) +That smells bad. 那不好聞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4062886 (CK) & #6091666 (verdastelo9604) +That's a pencil. 那是一支铅笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #8305536 (shekitten) & #336695 (fucongcong) +That's my money. 那是我的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #6670223 (thegui) & #8727837 (crescat) +That's not fair. 那是不公平的。 CC-BY 2.0 (France) Attribution: tatoeba.org #442964 (CK) & #832453 (Martha) +That's terrible. 这太可怕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #42652 (CK) & #7774749 (jiangche) +That's too easy. 那太简单了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251293 (CK) & #6015157 (verdastelo9604) +That's very big. 那是很大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #450005 (CK) & #819391 (Martha) +The boy is kind. 他是个好孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #46327 (CK) & #1411514 (asosan) +The dog is dead. 这条狗死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #508844 (kebukebu) & #8463584 (gumblex) +The leaves fell. 叶子落了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324880 (CK) & #1411639 (asosan) +The light is on. 灯亮着。 CC-BY 2.0 (France) Attribution: tatoeba.org #322968 (CK) & #1411641 (asosan) +The sea is blue. 大海是蓝色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396999 (Hayabusa) & #8821386 (crescat) +The taxi's here. 出租车到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6088853 (mailohilohi) & #346457 (fucongcong) +There's no rush. 不急。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839564 (CK) & #2638704 (cienias) +There's no salt. 没有盐。 CC-BY 2.0 (France) Attribution: tatoeba.org #707453 (papabear) & #710388 (fucongcong) +They all did it. 他们都做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1619865 (Spamster) & #5552423 (verdastelo9604) +They are melons. 它们是瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #31755 (CK) & #332547 (fucongcong) +They sell candy. 他們賣糖果。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243313 (CK) & #6103157 (verdastelo9604) +They're talking. 他們在說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2242999 (CK) & #6057715 (xjjAstrus) +This book's new. 这本书是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #967754 (FeuDRenais) & #791383 (fucongcong) +This is my bike. 这是我的自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #386699 (Mouseneb) & #334532 (fucongcong) +This is my book. 这是我的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #463306 (lukaszpp) & #334383 (fucongcong) +This is my wife. 这是我的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898100 (CK) & #5640760 (verdastelo9604) +This is the end. 這是結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #56074 (CK) & #825193 (Martha) +This is too big. 這個太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55535 (CK) & #775872 (Martha) +This is typical. 这是典型的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495299 (CK) & #5983578 (verdastelo9604) +This isn't good. 这不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1765127 (alec) & #1762986 (sadhen) +This isn't love. 这不是爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2233756 (CK) & #2233803 (sadhen) +This isn't safe. 这不安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #2078103 (CK) & #2440681 (fenfang557) +This isn't salt. 这不是盐。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492650 (CK) & #8742136 (crescat) +Time for dinner. 吃饭时间到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324656 (CM) & #336431 (fucongcong) +Tom also talked. 湯姆也說話了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721524 (CM) & #6070968 (verdastelo9604) +Tom did nothing. 汤姆什么都没做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498122 (CK) & #7704618 (leafjensen) +Tom disappeared. 汤姆不见了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094582 (CK) & #5092425 (mirrorvan) +Tom fell asleep. 汤姆睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236257 (CK) & #5072282 (musclegirlxyp) +Tom felt hungry. 汤姆觉得饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025791 (CK) & #5091359 (mirrorvan) +Tom has no time. 汤姆没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #7426443 (CK) & #7771676 (jiangche) +Tom hugged Mary. 汤姆拥抱了玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028631 (CK) & #1358683 (sadhen) +Tom is a racist. 汤姆是种族主义者。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272861 (CK) & #5581749 (verdastelo9604) +Tom is ecstatic. 汤姆兴奋不已。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236675 (CK) & #5094100 (mirrorvan) +Tom is escaping. 湯姆在逃跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236680 (CK) & #6138317 (verdastelo9604) +Tom is hammered. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202928 (CK) & #5142201 (musclegirlxyp) +Tom is laughing. 汤姆在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1660997 (Amastan) & #5072342 (musclegirlxyp) +Tom is not dumb. 汤姆不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171305 (CK) & #5091664 (mirrorvan) +Tom is out cold. 汤姆正昏迷不醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273344 (CK) & #8725793 (crescat) +Tom is swimming. 汤姆在游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1660902 (Amastan) & #4997730 (wzhd) +Tom is thrilled. 汤姆兴奋不已。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236880 (CK) & #5094100 (mirrorvan) +Tom isn't lying. 湯姆沒有說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236990 (CK) & #6970449 (verdastelo9604) +Tom isn't wrong. 湯姆沒有錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237034 (CK) & #8215731 (verdastelo9604) +Tom looked well. 汤姆看上去很精神。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171247 (CK) & #5096797 (mirrorvan) +Tom seems tough. 汤姆看来难缠。 CC-BY 2.0 (France) Attribution: tatoeba.org #3405228 (CK) & #5574883 (verdastelo9604) +Tom stayed home. 湯姆留在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821690 (CK) & #6119449 (verdastelo9604) +Tom was a nurse. 汤姆是个护士。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549452 (CK) & #3338905 (sadhen) +Tom was at home. 汤姆在家的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648914 (CK) & #6321889 (yuiyu) +Tom was bullied. 汤姆被欺负了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5427251 (CK) & #5993926 (verdastelo9604) +Tom was popular. 汤姆挺受欢迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410915 (CK) & #5091259 (mirrorvan) +Tom was sobbing. 汤姆在啜泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495281 (CK) & #5698038 (verdastelo9604) +Tom wasted time. 湯姆浪費時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #5758263 (CM) & #6959859 (verdastelo9604) +Tom wears a wig. 湯姆戴假髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #5428621 (CK) & #6936231 (verdastelo9604) +Tom went abroad. 湯姆出國了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171100 (CK) & #6138327 (verdastelo9604) +Tom, be careful! 汤姆,小心! CC-BY 2.0 (France) Attribution: tatoeba.org #2047588 (CK) & #8800830 (crescat) +Turn off the TV. 关闭电视机 CC-BY 2.0 (France) Attribution: tatoeba.org #39148 (CK) & #866211 (kooler) +Turn off the TV. 把電視關了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39148 (CK) & #9149181 (xjjAstrus) +Turn the TV off. 把電視關了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7127939 (OsoHombre) & #9149181 (xjjAstrus) +Wash the dishes. 把盤子洗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2253876 (CK) & #9135865 (xjjAstrus) +Watch your step. 走路小心。 CC-BY 2.0 (France) Attribution: tatoeba.org #274491 (CK) & #826192 (Martha) +Watch your step. 小心脚下。 CC-BY 2.0 (France) Attribution: tatoeba.org #274491 (CK) & #826193 (Martha) +We can't escape. 我們逃不出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241048 (CK) & #6058637 (verdastelo9604) +We have no time. 我们没时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #31348 (sysko) & #335818 (fucongcong) +We want to know. 我們想知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011326 (CK) & #4742019 (egg0073) +We were friends. 我们是朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553332 (CK) & #5624940 (verdastelo9604) +We were worried. 我们很担心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893678 (CK) & #7704613 (leafjensen) +We're Canadians. 我們是加拿大人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202636 (CK) & #6109306 (verdastelo9604) +We're neighbors. 我們是鄰居。 CC-BY 2.0 (France) Attribution: tatoeba.org #703304 (papabear) & #9035053 (xjjAstrus) +We've got to go. 我们必须走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310186 (CK) & #7767666 (jiangche) +We've lost them. 我們失去他們了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254492 (CK) & #6568326 (verdastelo9604) +What a surprise! 太惊喜了! CC-BY 2.0 (France) Attribution: tatoeba.org #18893 (CK) & #794228 (fucongcong) +What can Tom do? 汤姆能做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2876107 (CK) & #5967304 (verdastelo9604) +What did he say? 他说了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #28006 (CK) & #462064 (fucongcong) +What did you do? 你做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1495903 (CK) & #333012 (fucongcong) +What do we want? 我們要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2648889 (CK) & #6146415 (xjjAstrus) +What is missing? 少了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #25227 (CK) & #472901 (fucongcong) +What time is it? 几点了? CC-BY 2.0 (France) Attribution: tatoeba.org #428402 (laofmoonster) & #501536 (fucongcong) +What time is it? 現在幾點? CC-BY 2.0 (France) Attribution: tatoeba.org #428402 (laofmoonster) & #6486894 (xjjAstrus) +What time is it? 幾點了? CC-BY 2.0 (France) Attribution: tatoeba.org #428402 (laofmoonster) & #6559031 (xjjAstrus) +What's happened? 怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #1649962 (Hayabusa) & #334413 (fucongcong) +What's her name? 她叫什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #773175 (marloncori) & #8767515 (xjjAstrus) +What's with you? 你怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #3374136 (CK) & #7771865 (jiangche) +What's your job? 你做什麼工作? CC-BY 2.0 (France) Attribution: tatoeba.org #36809 (CK) & #5343868 (xjjAstrus) +When can we eat? 我們什麼時候可以吃? CC-BY 2.0 (France) Attribution: tatoeba.org #322004 (CK) & #824584 (Martha) +When will we go? 我們甚麼時候出發? CC-BY 2.0 (France) Attribution: tatoeba.org #2892750 (CK) & #6835391 (User76378) +Where is my dad? 我父亲在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #595504 (CK) & #7767608 (jiangche) +Where's my wife? 我的妻子在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #2254657 (CK) & #6132404 (verdastelo9604) +Who is that man? 那男人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #67951 (CK) & #7773140 (jiangche) +Who is this boy? 这个男孩是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #1388966 (CK) & #2004693 (sadhen) +Who likes beans? 谁喜欢豆子? CC-BY 2.0 (France) Attribution: tatoeba.org #2254857 (CK) & #5091032 (mirrorvan) +Who was playing? 誰在玩? CC-BY 2.0 (France) Attribution: tatoeba.org #2254894 (CK) & #6077366 (verdastelo9604) +Why did we fail? 我們為甚麼失敗了? CC-BY 2.0 (France) Attribution: tatoeba.org #3824788 (CK) & #6098444 (verdastelo9604) +Why did you cry? 你为什么哭? CC-BY 2.0 (France) Attribution: tatoeba.org #827946 (CK) & #343391 (fucongcong) +Why did you cry? 你為什麼哭? CC-BY 2.0 (France) Attribution: tatoeba.org #827946 (CK) & #828691 (Martha) +Why do that now? 为什么现在做那个? CC-BY 2.0 (France) Attribution: tatoeba.org #4887861 (CK) & #5091172 (mirrorvan) +Wolves scare me. 狼嚇到了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5098773 (Airvian) & #6624684 (verdastelo9604) +Write something. 寫點什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1217372 (CM) & #5112388 (xjjAstrus) +You can come in. 你可以進來。 CC-BY 2.0 (France) Attribution: tatoeba.org #425483 (FeuDRenais) & #889212 (Martha) +You can tell us. 你能告诉我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #3199818 (CK) & #5992376 (verdastelo9604) +You let me down. 你让我失望了。 CC-BY 2.0 (France) Attribution: tatoeba.org #482614 (FeuDRenais) & #4265189 (notabene) +You look sleepy. 你看起来很困了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3662855 (CK) & #5097669 (mirrorvan) +You look stupid. 你看上去很傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1644 (CK) & #404464 (fucongcong) +You must choose. 你必须选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #5313543 (mailohilohi) & #5942087 (verdastelo9604) +You'd better go. 你最好走。 CC-BY 2.0 (France) Attribution: tatoeba.org #518555 (CK) & #826070 (Martha) +You'll get lost. 你会迷路的。 CC-BY 2.0 (France) Attribution: tatoeba.org #323487 (CK) & #794250 (fucongcong) +You're a person. 你是人。 CC-BY 2.0 (France) Attribution: tatoeba.org #433601 (CM) & #335261 (fucongcong) +You're an idiot. 你是一個笨蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #461945 (tamsanh) & #1960230 (egg0073) +You're an idiot. 你个呆瓜! CC-BY 2.0 (France) Attribution: tatoeba.org #461945 (tamsanh) & #2254296 (KerenDeng) +You're an idiot. 你个傻子! CC-BY 2.0 (France) Attribution: tatoeba.org #461945 (tamsanh) & #2254298 (KerenDeng) +You're blushing. 你脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713765 (CK) & #5911651 (verdastelo9604) +You're so right. 你真是太對了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218390 (CK) & #6468687 (verdastelo9604) +You're terrible. 你真壞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230470 (alec) & #1225678 (tsayng) +You're very shy. 你很害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4368269 (AlanF_US) & #5658826 (verdastelo9604) +You've been had. 你们被骗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16512 (CK) & #471250 (fucongcong) +You've been had. 您被骗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16512 (CK) & #471254 (fucongcong) +Your bag's open. 你的包开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3327118 (CK) & #4903415 (musclegirlxyp) +Your time is up. 你的時間到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17347 (CK) & #771351 (Martha) +"Look," she said. “看啊!” 她说道。 CC-BY 2.0 (France) Attribution: tatoeba.org #33123 (CM) & #4265204 (notabene) +Accidents happen. 事故發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1600344 (Spamster) & #6199292 (verdastelo9604) +Answer the phone. 接电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #279284 (CK) & #332436 (fucongcong) +Are you Japanese? 你是日本人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #515572 (CK) & #826100 (Martha) +Are you a doctor? 你是医生吗? CC-BY 2.0 (France) Attribution: tatoeba.org #502228 (marauder016) & #864444 (kooler) +Are you a wizard? 你是个术士吗? CC-BY 2.0 (France) Attribution: tatoeba.org #713937 (CM) & #1394877 (mtdot) +Are you busy now? 現在你們忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #241849 (CK) & #1470488 (egg0073) +Are you busy now? 現在您忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #241849 (CK) & #1470489 (egg0073) +Are you finished? 你结束了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1839436 (CK) & #4844819 (sadhen) +Are you for real? 你是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1615225 (Spamster) & #4887667 (musclegirlxyp) +Are you free now? 现在有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #241534 (CK) & #4879119 (musclegirlxyp) +Are you students? 您們是學生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #71256 (CK) & #3713562 (egg0073) +Are you students? 你們是學生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #71256 (CK) & #3713599 (egg0073) +Are you studying? 您学习吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68954 (CK) & #332662 (fucongcong) +Are you studying? 你們學習嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68954 (CK) & #3713534 (egg0073) +Aren't you happy? 你不快樂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16747 (CK) & #771414 (Martha) +Ask him his name. 问他一下他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #1845520 (CK) & #4845118 (pig8322) +At last, he came. 最终,他来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39875 (CM) & #1749254 (sadhen) +Call me tomorrow. 明天打电话给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493515 (Keder) & #1738150 (sadhen) +Can I rest a bit? 我能休息一会儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #338305 (Sprachprofi) & #334654 (fucongcong) +Can I sleep here? 我能在這裡睡覺嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1911934 (Spamster) & #6860866 (verdastelo9604) +Can anyone drive? 有人会开车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1476856 (weihaiping) & #817279 (fucongcong) +Can you eat this? 这个能吃吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5136449 (JimmyUK) & #5100266 (mirrorvan) +Can you save Tom? 你能救汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3241643 (CK) & #5670759 (verdastelo9604) +Close your mouth. 闭上你的嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245188 (CK) & #1691765 (sadhen) +Come with me now. 现在就跟我来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553527 (CK) & #1783795 (sadhen) +Continue working. 繼續工作! CC-BY 2.0 (France) Attribution: tatoeba.org #2111924 (CK) & #3982106 (tsayng) +Did Tom send you? 湯姆派出了你們嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2261196 (CK) & #8215691 (verdastelo9604) +Did you call Tom? 给汤姆打过电话了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1495900 (CK) & #4879279 (musclegirlxyp) +Did you ever try? 你试过吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2755313 (CM) & #5865632 (verdastelo9604) +Did you kill Tom? 是你杀了汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886145 (CK) & #8714988 (crescat) +Did you meet Tom? 你见过汤姆了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2261200 (CK) & #6028023 (verdastelo9604) +Did you vote yet? 您已經投了票了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1273883 (CM) & #6015799 (xjjAstrus) +Do as you please. 你可以隨心所欲。 CC-BY 2.0 (France) Attribution: tatoeba.org #410768 (CK) & #819366 (Martha) +Do you have a TV? 你有电视吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2648849 (CK) & #4913620 (khe) +Do you have kids? 你們有小孩嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1265421 (yifen238) & #757460 (Martha) +Do you like snow? 你喜欢雪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434606 (lukaszpp) & #510751 (fucongcong) +Do you live here? 你住這裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15882 (CK) & #738478 (Martha) +Do you need help? 你需要帮助吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2053918 (halfb1t) & #1424333 (sadhen) +Do you need help? 你需要幫助嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2053918 (halfb1t) & #6098475 (verdastelo9604) +Do you own a gun? 你拥有枪支吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1553517 (CK) & #1783792 (sadhen) +Do you trust her? 你相信她嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776107 (CK) & #776999 (Martha) +Do you want more? 你想要更多嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2280278 (CK) & #4754639 (egg0073) +Do you want rice? 你們要米飯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7770328 (sharris123) & #6057683 (xjjAstrus) +Don't kid around. 別開玩笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245356 (CK) & #826002 (Martha) +Don't mention it. 您不必感谢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #63874 (CK) & #7767730 (jiangche) +Drink this juice. 喝這果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245409 (CK) & #5548489 (egg0073) +Drive cautiously. 安全地駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #2833896 (CM) & #819285 (Martha) +Drive cautiously. 开车小心点。 CC-BY 2.0 (France) Attribution: tatoeba.org #2833896 (CM) & #5102177 (mirrorvan) +Everybody laughs. 每個人都在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111885 (CK) & #5351526 (egg0073) +Everybody saw it. 每個人都看見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2094838 (CK) & #6150895 (verdastelo9604) +Everyone noticed. 所有人都注意到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1894367 (Spamster) & #5092609 (mirrorvan) +Fight like a man! 像男人一样战斗! CC-BY 2.0 (France) Attribution: tatoeba.org #1107857 (Scott) & #5613699 (verdastelo9604) +For what purpose? 為了什麼目的? CC-BY 2.0 (France) Attribution: tatoeba.org #433515 (CK) & #819462 (Martha) +Get on the horse. 上马。 CC-BY 2.0 (France) Attribution: tatoeba.org #1256569 (CK) & #1411647 (asosan) +Give Tom a chair. 給湯姆一把椅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151432 (CK) & #6119426 (verdastelo9604) +Give me an apple. 給我一個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1041627 (aleyda) & #8824083 (xjjAstrus) +Give me the book. 給我這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #43899 (CK) & #825195 (Martha) +Give me the book. 把书给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #43899 (CK) & #4262244 (notabene) +Go straight home. 直接回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3060602 (sharptoothed) & #6094886 (verdastelo9604) +Go up the stairs. 上楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #22038 (CK) & #2004695 (sadhen) +Go when you want. 你想走的时候就走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #241064 (CK) & #332528 (fucongcong) +Hand me my towel. 幫我遞一下毛巾。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877598 (CK) & #9049733 (xjjAstrus) +Have a nice trip! 旅途愉快! CC-BY 2.0 (France) Attribution: tatoeba.org #339238 (nickyeow) & #6559029 (xjjAstrus) +He broke the law. 他触犯了法律。 CC-BY 2.0 (France) Attribution: tatoeba.org #303653 (CK) & #451441 (fucongcong) +He can read well. 他能讀得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #388978 (CK) & #824500 (Martha) +He caught a cold. 他着凉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #707125 (CK) & #334129 (fucongcong) +He caught a cold. 他感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #707125 (CK) & #707126 (Yashanti) +He died recently. 他最近去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #993268 (CK) & #1468434 (sadhen) +He has long hair. 他有長頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #705440 (papabear) & #770360 (Martha) +He heard a shout. 他聽到了叫聲。 CC-BY 2.0 (France) Attribution: tatoeba.org #295294 (CK) & #819470 (Martha) +He is a tall boy. 他是一个高大的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #714433 (CM) & #714432 (Yashanti) +He is an Italian. 他是義大利人。 CC-BY 2.0 (France) Attribution: tatoeba.org #289015 (CM) & #1509457 (egg0073) +He is in trouble. 他有麻烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #289969 (CK) & #846507 (fucongcong) +He is not stupid. 他不是傻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #302395 (CK) & #429141 (fucongcong) +He is still here. 他还在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #292828 (CK) & #465860 (fucongcong) +He is unsociable. 他太不合群。 CC-BY 2.0 (France) Attribution: tatoeba.org #291795 (CK) & #335105 (fucongcong) +He is very angry. 他非常生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #292144 (CK) & #426894 (fucongcong) +He is very brave. 他很勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #291595 (CK) & #825871 (Martha) +He isn't at home. 他不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1842272 (BraveSentry) & #765282 (Martha) +He just got home. 他刚回到家。 CC-BY 2.0 (France) Attribution: tatoeba.org #995359 (NickC) & #335119 (fucongcong) +He left the room. 他走出了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #1081426 (keira_n) & #757604 (Martha) +He likes fishing. 他喜歡釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #539017 (CK) & #825929 (Martha) +He likes hunting. 他喜欢打猎。 CC-BY 2.0 (France) Attribution: tatoeba.org #386730 (Mouseneb) & #333859 (fucongcong) +He likes oranges. 他喜欢橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #386734 (Mouseneb) & #334503 (fucongcong) +He likes to hunt. 他喜欢打猎。 CC-BY 2.0 (France) Attribution: tatoeba.org #299249 (CK) & #333859 (fucongcong) +He loves to fish. 他酷爱钓鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #698906 (Zifre) & #346746 (fucongcong) +He must love you. 他一定很愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63365 (CK) & #819403 (Martha) +He painted a dog. 他畫了一隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1107850 (CM) & #757491 (Martha) +He played tennis. 他打了网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #291872 (CK) & #335093 (fucongcong) +He shut the door. 他關上了門。 CC-BY 2.0 (France) Attribution: tatoeba.org #478256 (CK) & #825996 (Martha) +He told us a lie. 他對我們說了一個謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #388833 (CK) & #834494 (Martha) +He wears glasses. 他戴眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #809656 (willhite2) & #810056 (Martha) +He went bankrupt. 他破产了。 CC-BY 2.0 (France) Attribution: tatoeba.org #715082 (CS) & #7768010 (jiangche) +He writes Arabic. 他写阿拉伯文。 CC-BY 2.0 (France) Attribution: tatoeba.org #435052 (lukaszpp) & #466243 (fucongcong) +He's at her side. 他在她的旁邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #712993 (CM) & #712989 (egg0073) +He's new in town. 他刚来这镇上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1699197 (Spamster) & #5911647 (verdastelo9604) +He's your friend. 他是你的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1780049 (Spamster) & #2065338 (sadhen) +Here is the bill. 这是账单。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495898 (CK) & #7774826 (jiangche) +Here is your bag. 你的袋子在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #17400 (CK) & #793240 (Martha) +How are you, Tom? 你好嗎,湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #37437 (CK) & #825169 (Martha) +How did Tom know? 湯姆怎麼知道? CC-BY 2.0 (France) Attribution: tatoeba.org #2648820 (CK) & #6635885 (verdastelo9604) +How do I sign up? 我怎样报名参加呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4887857 (CK) & #5091752 (mirrorvan) +How is your wife? 你太太怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #879669 (CK) & #512173 (fucongcong) +How long is this? 這有多長? CC-BY 2.0 (France) Attribution: tatoeba.org #57822 (CK) & #826260 (Martha) +How much is this? 這是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #925040 (zvaigzne) & #6047133 (xjjAstrus) +How tall are you? 你多高? CC-BY 2.0 (France) Attribution: tatoeba.org #16472 (xtofu80) & #335417 (fucongcong) +How tall are you? 你多高? CC-BY 2.0 (France) Attribution: tatoeba.org #16472 (xtofu80) & #761441 (Martha) +How was the food? 食物怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #4156438 (richke) & #6119427 (verdastelo9604) +How're you doing? 你們好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1849719 (CK) & #1761553 (egg0073) +I agree with him. 我同意他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260397 (CK) & #408258 (fucongcong) +I almost drowned. 我差點被淹死。 CC-BY 2.0 (France) Attribution: tatoeba.org #31565 (CK) & #920109 (Martha) +I always eat out. 我總是在外面吃飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #253131 (CK) & #917976 (Martha) +I am a bit drunk. 我有點醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258666 (CK) & #918080 (Martha) +I am a professor. 我是大学教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #256939 (CK) & #8762958 (crescat) +I am eating rice. 我在吃米饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #334464 (guyviet) & #334506 (fucongcong) +I am not a witch. 我不是巫婆。 CC-BY 2.0 (France) Attribution: tatoeba.org #794758 (Scott) & #796646 (fucongcong) +I am not curious. 我不好奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #1109699 (Leedihuzur) & #6197292 (verdastelo9604) +I am your father. 我是你爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1769470 (wwkudu) & #6057860 (verdastelo9604) +I believe in you. 我相信你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237698 (CK) & #335418 (fucongcong) +I bet Tom forgot. 我打賭湯姆忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2294098 (CK) & #6147566 (verdastelo9604) +I bought a watch. 我買了一只手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #258137 (CK) & #730699 (Martha) +I can't hear you. 我聽不到你的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #320093 (CK) & #917896 (Martha) +I can't hear you. 我听不见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #320093 (CK) & #8914629 (fresky) +I can't meet you. 遇不到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #5136432 (JimmyUK) & #5113305 (xjjAstrus) +I can't reach it. 我搆不到它。 CC-BY 2.0 (France) Attribution: tatoeba.org #265898 (CK) & #919761 (Martha) +I can't remember. 我記不得了。 CC-BY 2.0 (France) Attribution: tatoeba.org #550246 (CK) & #910228 (Martha) +I can't remember. 我想不起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #550246 (CK) & #910229 (Martha) +I can't stand it. 我不能忍受。 CC-BY 2.0 (France) Attribution: tatoeba.org #275285 (CK) & #918550 (Martha) +I collect stamps. 我收集郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858561 (CK) & #6728905 (verdastelo9604) +I could see that. 我能看見。 CC-BY 2.0 (France) Attribution: tatoeba.org #1467591 (CK) & #6086888 (verdastelo9604) +I couldn't sleep. 我無法入睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #322736 (CK) & #833041 (Martha) +I couldn't sleep. 我睡不著。 CC-BY 2.0 (France) Attribution: tatoeba.org #322736 (CK) & #917855 (Martha) +I didn't hear it. 我没听见。 CC-BY 2.0 (France) Attribution: tatoeba.org #680110 (Source_VOA) & #1417573 (sadhen) +I didn't like it. 我没有喜欢过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1386 (CK) & #501360 (fucongcong) +I didn't mean it. 我不是这个意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #41556 (CK) & #461601 (fucongcong) +I didn't see him. 我没见到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1671917 (Spamster) & #2085180 (sadhen) +I do forgive Tom. 我真的原谅汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5576748 (CK) & #5694956 (verdastelo9604) +I don't doubt it. 我没有疑问。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271834 (CK) & #5091122 (mirrorvan) +I don't know her. 我不認識她。 CC-BY 2.0 (France) Attribution: tatoeba.org #387602 (CK) & #824677 (Martha) +I don't like her. 我不喜歡她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261041 (CK) & #826218 (Martha) +I don't like tea. 我不喜欢喝茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1098278 (cntrational) & #4673815 (McMeao) +I don't like you. 我不喜欢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #836846 (nthkmf) & #4673813 (McMeao) +I don't remember. 我不記得了。 CC-BY 2.0 (France) Attribution: tatoeba.org #550248 (CK) & #910225 (Martha) +I don't want you. 我不想要你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4002566 (CK) & #5663452 (verdastelo9604) +I feel very sick. 我覺得我病得很厲害。 CC-BY 2.0 (France) Attribution: tatoeba.org #52009 (CK) & #803725 (Martha) +I had a hard day. 我过了难挨的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331590 (CK) & #5574859 (verdastelo9604) +I hate chemistry. 我讨厌化学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1445 (CK) & #335051 (fucongcong) +I have a bicycle. 我有一輛自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258209 (CK) & #5112366 (xjjAstrus) +I have a new car. 我有辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852717 (CK) & #5862115 (verdastelo9604) +I have asked him. 我問過他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1286508 (donkirkby) & #789316 (Martha) +I have no doubts. 我没有疑问。 CC-BY 2.0 (France) Attribution: tatoeba.org #536973 (blay_paul) & #5091122 (mirrorvan) +I have no excuse. 我没有借口。 CC-BY 2.0 (France) Attribution: tatoeba.org #36027 (CK) & #406687 (fucongcong) +I have to say no. 我必须拒绝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360565 (CK) & #5091270 (mirrorvan) +I hope Tom loses. 我希望湯姆輸。 CC-BY 2.0 (France) Attribution: tatoeba.org #4953385 (CK) & #4953624 (umidake) +I know it's hard. 我知道它有困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376055 (CK) & #6114395 (verdastelo9604) +I know the facts. 我知道事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #8823114 (CK) & #5624984 (verdastelo9604) +I know the truth. 我知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #258845 (CK) & #7771678 (jiangche) +I like chocolate. 我喜歡巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #255034 (CK) & #832958 (Martha) +I like pop music. 我喜歡流行音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #33399 (CK) & #908390 (Martha) +I like red roses. 我喜歡紅色的玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #259015 (CK) & #832925 (Martha) +I like to travel. 我喜歡旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #692207 (Riskemulo) & #761432 (Martha) +I like traveling. 我喜歡旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #262205 (CK) & #761432 (Martha) +I like your city. 我喜欢你们的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #2131114 (CM) & #1807058 (sadhen) +I like your room. 我喜欢你的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2989999 (AlanF_US) & #1807052 (sadhen) +I live near here. 我住在這附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #413831 (CK) & #826271 (Martha) +I lost my wallet. 我掉了我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #436781 (lukaszpp) & #344189 (fucongcong) +I love this song. 我爱这首歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553458 (CK) & #1783804 (sadhen) +I made a mistake. 我犯了一個錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #433678 (CK) & #771659 (Martha) +I made her angry. 我讓她生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #394661 (CK) & #832785 (Martha) +I made it myself. 我自己做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42590 (CK) & #512813 (fucongcong) +I miss you badly. 我非常想你。 CC-BY 2.0 (France) Attribution: tatoeba.org #18051 (Zifre) & #444654 (fucongcong) +I need more time. 我需要更多时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #436863 (lukaszpp) & #502858 (fucongcong) +I play in a band. 我在一個樂團裡演奏。 CC-BY 2.0 (France) Attribution: tatoeba.org #25513 (CK) & #836125 (Martha) +I still love her. 我仍然爱着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #2690718 (CM) & #2690849 (sadhen) +I tried to smile. 我試著微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852408 (CK) & #6065919 (verdastelo9604) +I want beef, too. "我也要牛肉。" CC-BY 2.0 (France) Attribution: tatoeba.org #73525 (CK) & #780397 (Martha) +I want much more. 我要多很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1183491 (Cherubian) & #834809 (Martha) +I want some cake. 我想要点蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #50520 (fucongcong) & #334697 (fucongcong) +I want you to go. 我要你去。 CC-BY 2.0 (France) Attribution: tatoeba.org #17473 (CK) & #835403 (Martha) +I want your love. 我要你的愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1789308 (Spamster) & #3957690 (egg0073) +I wasn't yelling. 我沒有在吼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247567 (CK) & #2638708 (cienias) +I work under her. 我在她手下工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2661859 (WestofEden) & #8731981 (crescat) +I wrote a letter. 我写了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #258457 (CK) & #1792513 (sadhen) +I'll eat it here. 我會在這裡把它吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #449107 (CK) & #824569 (Martha) +I'm 30 years old. 我三十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #7832498 (CK) & #8767504 (xjjAstrus) +I'm a vegetarian. 我是素食主义者。 CC-BY 2.0 (France) Attribution: tatoeba.org #1661965 (avoidingrealwork) & #510809 (fucongcong) +I'm able to swim. 我會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #256177 (CK) & #918075 (Martha) +I'm free tonight. 我今晚有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #243357 (CK) & #916648 (Martha) +I'm just looking. 我只是隨便看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #499998 (drnm2) & #826144 (Martha) +I'm not a beggar. 我不是乞丐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891028 (CK) & #6150017 (verdastelo9604) +I'm not a doctor. 我不是醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1194034 (FiRez) & #2634804 (egg0073) +I'm not busy now. 我現在不忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #257627 (CK) & #916647 (Martha) +I'm not like Tom. 我跟汤姆不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549313 (CK) & #5153237 (musclegirlxyp) +I'm not so brave. 我没那么勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549311 (CK) & #5663520 (verdastelo9604) +I'm not the boss. 我不是老闆。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500109 (CK) & #6728911 (verdastelo9604) +I'm on your side. 我站在你这边。 CC-BY 2.0 (France) Attribution: tatoeba.org #68795 (oschwimmer) & #1394786 (mtdot) +I'm proud of you. 我以你為榮。 CC-BY 2.0 (France) Attribution: tatoeba.org #15913 (CK) & #834487 (Martha) +I'm really tired. 我累死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433727 (CK) & #333923 (fucongcong) +I'm staying home. 我在家裡待著。 CC-BY 2.0 (France) Attribution: tatoeba.org #1547728 (miflhanc) & #6151299 (verdastelo9604) +I'm still hungry. 我还饿着呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1475877 (CK) & #5091106 (mirrorvan) +I'm still sleepy. 我还很困。 CC-BY 2.0 (France) Attribution: tatoeba.org #996964 (thayne) & #3338915 (sadhen) +I'm very thirsty. 我很渴。 CC-BY 2.0 (France) Attribution: tatoeba.org #255235 (CK) & #916645 (Martha) +I'm your partner. 我是你的夥伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891164 (CK) & #8215723 (verdastelo9604) +I've lost my pen. 我弄丟了我的筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1960206 (CK) & #1960203 (egg0073) +If not now, when? 如果不是现在,那是什么时候? CC-BY 2.0 (France) Attribution: tatoeba.org #4844536 (CK) & #4844578 (pig8322) +Is Tom at school? 汤姆在学校吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2648800 (CK) & #8863059 (crescat) +Is anybody there? 那边有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2092551 (CK) & #5091361 (mirrorvan) +Is someone there? 那边有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2248477 (CK) & #5091361 (mirrorvan) +Is that a coyote? 那是丛林狼吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8743926 (Adelpa) & #8744712 (slo_oth) +Is that for sale? 这个卖不卖? CC-BY 2.0 (France) Attribution: tatoeba.org #1425424 (Spamster) & #8689187 (jacintoo) +Is that your car? 那是你的車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #597182 (darinmex) & #785228 (Martha) +Is the bank open? 銀行開著嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #18432 (CK) & #5919527 (xjjAstrus) +Is the door open? 門開著嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2780788 (sharptoothed) & #6635892 (verdastelo9604) +Is the work hard? 工作困難嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4254541 (negativeclock) & #6560623 (verdastelo9604) +Is this for sale? 这是要卖的东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2499672 (CK) & #4887553 (musclegirlxyp) +Is this your car? 這是你的車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55937 (TRANG) & #793290 (Martha) +Is this your pen? 這是你的筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55989 (CK) & #826155 (Martha) +It began to snow. 开始下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272547 (CK) & #794257 (fucongcong) +It began to snow. 開始下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272547 (CK) & #835742 (Martha) +It can't be true. 那不可能是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42088 (CK) & #346766 (fucongcong) +It isn't a watch. 這不是手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #7197164 (CK) & #710675 (egg0073) +It's a clear day. 天空很晴朗。 CC-BY 2.0 (France) Attribution: tatoeba.org #433663 (CK) & #825138 (Martha) +It's a clear day. 它是一個晴朗的日子。 CC-BY 2.0 (France) Attribution: tatoeba.org #433663 (CK) & #832457 (Martha) +It's a good deal. 这是一笔不错的交易。 CC-BY 2.0 (France) Attribution: tatoeba.org #2304 (CK) & #1776568 (sadhen) +It's a good idea. 这是个好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3334010 (CK) & #7768154 (jiangche) +It's a sunflower. 那是一朵向日葵。 CC-BY 2.0 (France) Attribution: tatoeba.org #42651 (CK) & #375315 (fucongcong) +It's frozen hard. 真的很冰冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #449066 (CK) & #824515 (Martha) +It's hard to say. 難講喔。 CC-BY 2.0 (France) Attribution: tatoeba.org #2518522 (Hybrid) & #6175317 (rayshih715) +It's just a cold. 只是感冒而已。 CC-BY 2.0 (France) Attribution: tatoeba.org #319735 (CK) & #343269 (fucongcong) +It's no big deal. 这没什么大不了的。 CC-BY 2.0 (France) Attribution: tatoeba.org #532854 (FeuDRenais) & #2456036 (fenfang557) +It's not a watch. 這不是手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #710677 (CM) & #710675 (egg0073) +It's on the sofa. 它在沙發上。 CC-BY 2.0 (France) Attribution: tatoeba.org #43241 (CK) & #793287 (Martha) +It's still early. 還早呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249295 (CK) & #6559035 (xjjAstrus) +It's supper time. 吃晚飯的時間到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733132 (CK) & #484096 (moonoops) +It's very normal. 它很正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249364 (CK) & #5780622 (verdastelo9604) +It's very simple. 这很简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #1625030 (Scott) & #7771897 (jiangche) +Japan is in Asia. 日本在亚洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1412495 (CK) & #1415769 (sadhen) +Keep the dog out. 别让狗进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #239245 (CK) & #1411550 (asosan) +Leave this to me. 把这个留给我吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1113733 (Scott) & #7768270 (jiangche) +Let's discuss it. 来商量吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736585 (CK) & #5624892 (verdastelo9604) +Let's fly a kite. 讓我們放風箏。 CC-BY 2.0 (France) Attribution: tatoeba.org #449022 (CK) & #825963 (Martha) +Let's go indoors. 我們進屋吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735987 (CK) & #6086820 (verdastelo9604) +Let's take a bus. 讓我們搭公車吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #35385 (CK) & #819442 (Martha) +Let's try it out. 我们试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007836 (CK) & #5845585 (verdastelo9604) +Light the candle. 把蠟燭點燃。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259050 (_undertoad) & #9149200 (xjjAstrus) +Listen carefully. 仔细听着。 CC-BY 2.0 (France) Attribution: tatoeba.org #29922 (CK) & #5092201 (mirrorvan) +Listen to me, OK? 聽我說,好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2648779 (CK) & #6447547 (verdastelo9604) +Mail this letter. 把这封信寄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #56547 (CK) & #504877 (fucongcong) +Make your choice. 做出您的選擇。 CC-BY 2.0 (France) Attribution: tatoeba.org #17190 (CK) & #789980 (Martha) +Mars is a planet. 火星是一顆行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #5603251 (marcj794) & #6961328 (xjjAstrus) +Mary, I love you. 玛丽,我喜欢你! CC-BY 2.0 (France) Attribution: tatoeba.org #2763581 (CK) & #8765154 (crescat) +May we swim here? 我们能在这里游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5481277 (CK) & #5865522 (verdastelo9604) +My album is here. 我的相簿在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #449108 (CK) & #826033 (Martha) +My cat looks sad. 我的猫看上去很悲伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #1333956 (Scott) & #7774774 (jiangche) +My father is out. 我父亲出门了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319099 (CK) & #8798302 (crescat) +My house is here. 我家在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1275336 (CM) & #1275340 (egg0073) +My pulse is fast. 我的脉搏很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #322672 (CK) & #8725289 (crescat) +My stomach hurts. 我胃痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #28159 (CK) & #332916 (fucongcong) +Nice to meet you. 很高興認識你。 CC-BY 2.0 (France) Attribution: tatoeba.org #499617 (Shishir) & #6559021 (xjjAstrus) +No one knows why. 沒人知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091099 (CK) & #3742603 (egg0073) +No one likes war. 没有人喜欢战争。 CC-BY 2.0 (France) Attribution: tatoeba.org #961604 (CK) & #335258 (fucongcong) +No one will talk. 没人会讲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091104 (CK) & #5574510 (verdastelo9604) +No pain, no gain. 一分耕耘,一分收穫。 CC-BY 2.0 (France) Attribution: tatoeba.org #18370 (Zifre) & #806221 (Martha) +Nobody knows why. 沒人知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1290718 (CK) & #3742603 (egg0073) +Nobody likes war. 没有人喜欢战争。 CC-BY 2.0 (France) Attribution: tatoeba.org #386736 (Mouseneb) & #335258 (fucongcong) +Nothing happened. 什麼事都沒有發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #24616 (CK) & #780347 (Martha) +Pass me the salt. 请给我盐。 CC-BY 2.0 (France) Attribution: tatoeba.org #64750 (CK) & #7767733 (jiangche) +Please copy this. 麻煩拷貝這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #54993 (CK) & #5401635 (egg0073) +Please don't ask. 請不要問。 CC-BY 2.0 (France) Attribution: tatoeba.org #433673 (CK) & #824619 (Martha) +Please don't cry. 请你不要哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1521 (CK) & #334469 (fucongcong) +Please let me go. 請讓我走。 CC-BY 2.0 (France) Attribution: tatoeba.org #433631 (CK) & #825951 (Martha) +Please let me go. 請允許我去。 CC-BY 2.0 (France) Attribution: tatoeba.org #433631 (CK) & #826174 (Martha) +Please pull over. 请把车停下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898262 (CK) & #8776009 (crescat) +Put the box down. 把箱子放下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3155619 (CK) & #6197293 (verdastelo9604) +Raise your hands. 手举起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1845491 (CK) & #5102180 (mirrorvan) +See you tomorrow. 明天见。 CC-BY 2.0 (France) Attribution: tatoeba.org #497969 (FeuDRenais) & #4879134 (musclegirlxyp) +She began crying. 她开始哭泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #313205 (CK) & #1416086 (sadhen) +She despised him. 她看不起他。 CC-BY 2.0 (France) Attribution: tatoeba.org #316497 (CK) & #771373 (Martha) +She disliked him. 她不喜歡他。 CC-BY 2.0 (France) Attribution: tatoeba.org #388372 (CK) & #771483 (Martha) +She is a teacher. 她是女教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #315459 (lukaszpp) & #7771928 (jiangche) +She is mad at me. 她跟我生气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6130 (CK) & #423363 (fucongcong) +She is on a diet. 她在节食中。 CC-BY 2.0 (France) Attribution: tatoeba.org #315104 (CK) & #1878324 (sadhen) +She is on a diet. 她在节食。 CC-BY 2.0 (France) Attribution: tatoeba.org #315104 (CK) & #7767995 (jiangche) +She kept working. 她不停地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388559 (CK) & #825173 (Martha) +She kept working. 她继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388559 (CK) & #2052522 (sadhen) +She needs a coat. 她需要一件外套。 CC-BY 2.0 (France) Attribution: tatoeba.org #462376 (lukaszpp) & #2065324 (sadhen) +She put on socks. 她穿上袜子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479259 (weihaiping) & #710840 (Yashanti) +She quit smoking. 她停下來抽煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #388924 (Swift) & #2757032 (cienias) +She took my hand. 她握住我的手。 CC-BY 2.0 (France) Attribution: tatoeba.org #314346 (CK) & #8215734 (verdastelo9604) +She was promoted. 她晉升了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388611 (CK) & #826096 (Martha) +Someone is lying. 有人說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #954289 (CK) & #6624674 (verdastelo9604) +Sorry to be late. 對不起我來晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277384 (CM) & #789995 (Martha) +Stay out of this. 别插手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1850250 (CK) & #9178007 (xiaohong) +Stop complaining. 别再埋怨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111503 (CK) & #5102375 (mirrorvan) +Summer has ended. 夏天已經結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #442006 (CK) & #832790 (Martha) +Swimming is easy. 游泳很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #487828 (CK) & #832937 (Martha) +Tell me about it! 跟我讲讲那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5944 (CK) & #1778311 (sadhen) +That bag is mine. 那是我的包。 CC-BY 2.0 (France) Attribution: tatoeba.org #68476 (CK) & #2040518 (sadhen) +That is a pencil. 那是一支铅笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #67086 (CK) & #336695 (fucongcong) +That makes sense. 那是有道理的。 CC-BY 2.0 (France) Attribution: tatoeba.org #780859 (sacredceltic) & #781532 (Martha) +That makes sense. 那样说得通。 CC-BY 2.0 (France) Attribution: tatoeba.org #780859 (sacredceltic) & #5090960 (mirrorvan) +That wasn't nice. 那不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250997 (CK) & #5613704 (verdastelo9604) +That's avoidable. 那是可避免的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2283751 (CK) & #5842633 (verdastelo9604) +That's his house. 那是他家。 CC-BY 2.0 (France) Attribution: tatoeba.org #794269 (CK) & #8673598 (crescat) +That's our house. 那是我們的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #67060 (CK) & #1589653 (tsayng) +That's the point. 这正是问题的关键。 CC-BY 2.0 (France) Attribution: tatoeba.org #43117 (Eldad) & #336602 (fucongcong) +That's very rare. 那太稀少了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251322 (CK) & #5842671 (verdastelo9604) +The book is here. 那本书在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1369202 (sacredceltic) & #2152768 (sadhen) +The box is empty. 盒子裡面沒有東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #491975 (swagner) & #1490457 (sadhen) +The car is ready. 汽车准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46819 (CK) & #782343 (fucongcong) +The curtain fell. 谢幕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #322492 (CM) & #1411569 (asosan) +The dog is dying. 這隻狗快要死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48251 (CK) & #824681 (Martha) +The fire was out. 火熄灭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736835 (CK) & #5670739 (verdastelo9604) +The light was on. 灯亮着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3392931 (CK) & #1411641 (asosan) +The man is naked. 那人沒穿衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #956237 (CK) & #2511389 (tsayng) +The sky is clear. 天空很晴朗。 CC-BY 2.0 (France) Attribution: tatoeba.org #433662 (CK) & #825138 (Martha) +The storm abated. 风暴减弱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67429 (CM) & #2080579 (sadhen) +The well ran dry. 這口井乾涸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27887 (CK) & #866153 (Martha) +There were risks. 有風險。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501858 (CK) & #6103214 (verdastelo9604) +There's no doubt. 毫无疑问。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361 (CK) & #404456 (fucongcong) +There's no sugar. 没有糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2764405 (CK) & #6020855 (verdastelo9604) +There's no water. 沒有水。 CC-BY 2.0 (France) Attribution: tatoeba.org #1349700 (Eldad) & #1444292 (egg0073) +They aren't dead. 他們沒死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243043 (CK) & #6150010 (verdastelo9604) +They like apples. 他们喜欢苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #305395 (CK) & #7767611 (jiangche) +They spoke to me. 他们对我说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183430 (CK) & #8584899 (tianblr) +They were afraid. 他们害怕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243367 (CK) & #5091312 (mirrorvan) +They'll kill you. 他們要殺你。 CC-BY 2.0 (France) Attribution: tatoeba.org #5758093 (CM) & #6623165 (verdastelo9604) +They're children. 他们是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2242972 (CK) & #3579720 (CLARET) +They're children. 她们是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2242972 (CK) & #3579729 (CLARET) +This book is new. 这本书是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56910 (CK) & #791383 (fucongcong) +This boy is lazy. 这个男孩子很懒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1102794 (emilykamalei) & #7771883 (jiangche) +This is Room 839. 这是839号房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #72335 (CK) & #392252 (fucongcong) +This is a pencil. 這是一支鉛筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #55799 (CK) & #780342 (Martha) +This is not okay. 這個不行。 CC-BY 2.0 (France) Attribution: tatoeba.org #2077743 (Spamster) & #6284498 (xjjAstrus) +This is not safe. 这不安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #2077787 (Spamster) & #2440681 (fenfang557) +This is not salt. 这不是盐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2940713 (AlanF_US) & #8742136 (crescat) +This is the best. 这是最好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898091 (CK) & #5983570 (verdastelo9604) +This is your dog. 这是你的狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #461910 (regisb) & #461670 (fucongcong) +This is your key. 這是您的鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #449118 (CK) & #819319 (Martha) +This isn't money. 这不是钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1048420 (Brian255) & #843485 (fucongcong) +This one's yours. 這個是你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898070 (CK) & #6109308 (verdastelo9604) +Today is the 3rd. 今天三號。 CC-BY 2.0 (France) Attribution: tatoeba.org #7782286 (sharris123) & #6486871 (xjjAstrus) +Tom also has one. 汤姆也有一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #8917964 (porfiriy) & #5551601 (verdastelo9604) +Tom bought a car. 湯姆買了輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921486 (CK) & #6678454 (verdastelo9604) +Tom can run fast. Tom可以跑得很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #37069 (CK) & #832469 (Martha) +Tom cannot drive. 湯姆不能開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #1548370 (CK) & #6673100 (verdastelo9604) +Tom did it again. 汤姆又做了一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648724 (CK) & #5595212 (verdastelo9604) +Tom drinks juice. Tom喝果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #7840497 (sharris123) & #5548518 (egg0073) +Tom glanced away. 汤姆瞥了一眼就移开目光了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236307 (CK) & #5091154 (mirrorvan) +Tom has no money. Tom沒有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272746 (CK) & #5500512 (egg0073) +Tom hit a triple. 湯姆擊出三壘安打。 CC-BY 2.0 (France) Attribution: tatoeba.org #37128 (CM) & #769677 (Martha) +Tom hit me first. 汤姆先打了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549246 (CK) & #8751408 (slo_oth) +Tom hurt himself. 湯姆弄傷了自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #37174 (CK) & #825186 (Martha) +Tom is a fat man. 湯姆是個胖子 CC-BY 2.0 (France) Attribution: tatoeba.org #1513229 (Spamster) & #2771034 (cienias) +Tom is a scumbag. 湯姆是個无賴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723733 (CM) & #8931550 (verdastelo9604) +Tom is a student. 湯姆是個學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #37077 (CK) & #832783 (Martha) +Tom is an artist. 湯姆是藝術家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272943 (CK) & #6065357 (verdastelo9604) +Tom is deceitful. 汤姆是个骗子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202727 (CK) & #2456083 (fenfang557) +Tom is in danger. 湯姆有危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273223 (CK) & #6149017 (verdastelo9604) +Tom is my friend. 湯姆是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #406604 (CK) & #819347 (Martha) +Tom is plastered. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203189 (CK) & #5142201 (musclegirlxyp) +Tom is very kind. 汤姆人很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #37006 (CK) & #5967307 (verdastelo9604) +Tom isn't a fool. 汤姆不是傻瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024735 (CK) & #4879070 (musclegirlxyp) +Tom isn't a hero. 湯姆不是英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #5471567 (CK) & #6105283 (verdastelo9604) +Tom isn't stupid. 汤姆不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024679 (CK) & #5091664 (mirrorvan) +Tom likes it hot. 汤姆喜欢热的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868072 (CK) & #5900172 (verdastelo9604) +Tom lost his job. 湯姆丟了工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #37096 (CK) & #819350 (Martha) +Tom saw the file. 湯姆看了文件。 CC-BY 2.0 (France) Attribution: tatoeba.org #2858390 (Amastan) & #6148376 (verdastelo9604) +Tom studies hard. 汤姆努力学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821686 (CK) & #5613710 (verdastelo9604) +Tom walks slowly. 汤姆走得很慢。 CC-BY 2.0 (France) Attribution: tatoeba.org #37199 (CK) & #335609 (fucongcong) +Tom was captured. 汤姆被囚禁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6440593 (CK) & #8794851 (slo_oth) +Tom was mistaken. 汤姆错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2239826 (CK) & #8463695 (gumblex) +Tom will do that. 湯姆會做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2215663 (CK) & #6460642 (verdastelo9604) +Tom would accept. 湯姆會接受。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240244 (CK) & #6206031 (verdastelo9604) +Try it once more. 再試一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #433593 (CK) & #824621 (Martha) +Turn off the gas. 把煤气关了! CC-BY 2.0 (France) Attribution: tatoeba.org #63744 (CK) & #1411609 (asosan) +Turn to the left. 向左转。 CC-BY 2.0 (France) Attribution: tatoeba.org #243552 (CK) & #465034 (fucongcong) +Walk ahead of me. 在我前面走。 CC-BY 2.0 (France) Attribution: tatoeba.org #321526 (CK) & #517553 (fucongcong) +We accept checks. 我們接受支票。 CC-BY 2.0 (France) Attribution: tatoeba.org #818300 (CM) & #1236378 (tsayng) +We depend on you. 我们可全指望你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262698 (CK) & #2454697 (fenfang557) +We depend on you. 我们可全靠你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262698 (CK) & #2456560 (fenfang557) +We expect to win. 我们打算赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498455 (CK) & #5631898 (verdastelo9604) +We have two ears. 我們有兩隻耳朵。 CC-BY 2.0 (France) Attribution: tatoeba.org #269904 (CM) & #766922 (Martha) +We help the poor. 我們幫助窮人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3691681 (karloelkebekio) & #6560609 (verdastelo9604) +We just moved in. 我們才剛搬進來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893787 (CK) & #2511500 (tsayng) +We live together. 我們住在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893782 (CK) & #5418965 (egg0073) +We lost the game. 我们比赛输了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248786 (CK) & #1411666 (asosan) +We may need some. 我們可能需要一些。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312822 (CK) & #6216626 (verdastelo9604) +We need Tom back. 我們需要湯姆回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495916 (CK) & #6114411 (verdastelo9604) +We need to leave. 我们必须走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893746 (CK) & #7767666 (jiangche) +We never gave up. 我們從不放棄。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151207 (CK) & #6114401 (verdastelo9604) +We'd better talk. 我们谈谈比较好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241531 (CK) & #5780618 (verdastelo9604) +We'll meet again. 后会有期。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734899 (CK) & #4835918 (sadhen) +We'll stay quiet. 我們會保持安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241623 (CK) & #6071013 (verdastelo9604) +We'll talk later. 我们过一会再谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893660 (CK) & #3043963 (sadhen) +We're all hungry. 我們都餓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240823 (CK) & #6059530 (verdastelo9604) +We're classmates. 我们是同学。 CC-BY 2.0 (France) Attribution: tatoeba.org #247946 (CK) & #333784 (fucongcong) +We're having fun. 我们在高兴地玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1114167 (Scott) & #6044363 (verdastelo9604) +We're in a hurry. 我們很匆忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #262958 (CK) & #819351 (Martha) +We're in a hurry. 我們很急。 CC-BY 2.0 (France) Attribution: tatoeba.org #262958 (CK) & #819353 (Martha) +We're not stupid. 我們不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240641 (CK) & #6903765 (verdastelo9604) +Were you serious? 你是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3392920 (CK) & #4887667 (musclegirlxyp) +What a good idea! 多好的主意啊! CC-BY 2.0 (France) Attribution: tatoeba.org #24961 (adjusting) & #490135 (fucongcong) +What did Tom say? 汤姆说了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1886789 (CK) & #8947253 (crescat) +What did she say? 她说了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #461204 (CK) & #461639 (fucongcong) +What did she say? 她說了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #461204 (CK) & #765245 (Martha) +What did you buy? 你買了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #24674 (CK) & #832944 (Martha) +What do you have? 您有什么? CC-BY 2.0 (France) Attribution: tatoeba.org #69589 (CK) & #335327 (fucongcong) +What do you make? 你做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #511884 (CK) & #826252 (Martha) +What do you want? 你想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1622 (CK) & #333098 (fucongcong) +What do you want? 你想要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1622 (CK) & #874392 (Martha) +What is it about? 它是關於什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #914026 (Jane_Austen) & #765585 (Martha) +What should I do? 我该做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #449699 (peipei) & #469441 (fucongcong) +What woke you up? 什麼吵醒你了? CC-BY 2.0 (France) Attribution: tatoeba.org #16268 (CK) & #793225 (Martha) +What's Tom doing? 汤姆在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1543586 (CK) & #1839130 (sadhen) +What's she doing? 她在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #388890 (CK) & #826129 (Martha) +What's your name? 你叫什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #408293 (CK) & #346883 (fucongcong) +What's your name? 您叫什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #408293 (CK) & #444659 (fucongcong) +What's your name? 叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #408293 (CK) & #781511 (Martha) +Where is my book? 我的書在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #482303 (siriusbb) & #1561711 (egg0073) +Where is my seat? 我的位子在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #251304 (CK) & #799298 (fucongcong) +Where's the boss? 老闆在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #544691 (CK) & #824661 (Martha) +Where's your bag? 你的包在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #1886592 (CK) & #5713529 (xjjAstrus) +Where's your dog? 你的狗在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #1886591 (CK) & #3627962 (suitchic) +Where's your hat? 你帽子在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #2254683 (CK) & #7781720 (jiangche) +Who decided that? 誰決定了那件事? CC-BY 2.0 (France) Attribution: tatoeba.org #3374123 (CK) & #6624730 (verdastelo9604) +Who found my bag? 誰找到了我的包? CC-BY 2.0 (France) Attribution: tatoeba.org #3826386 (CK) & #6120767 (verdastelo9604) +Who wrote Hamlet? 哈姆雷特是誰寫的? CC-BY 2.0 (France) Attribution: tatoeba.org #35096 (CK) & #819432 (Martha) +Whose turn is it? 輪到誰了? CC-BY 2.0 (France) Attribution: tatoeba.org #435279 (CK) & #819406 (Martha) +Why are you here? 你為什麼在這? CC-BY 2.0 (France) Attribution: tatoeba.org #1481997 (yethay) & #3742607 (egg0073) +Why did you quit? 你為什麼辭職? CC-BY 2.0 (France) Attribution: tatoeba.org #36413 (CK) & #825991 (Martha) +Why did you stay? 你为什么留下? CC-BY 2.0 (France) Attribution: tatoeba.org #1886509 (CK) & #9178013 (xiaohong) +Will you join us? 你會參加嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237669 (CK) & #833778 (Martha) +Winter is coming. 冬季快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1052358 (Eldad) & #797042 (Martha) +You are blushing. 你脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #757623 (vgigregg) & #5911651 (verdastelo9604) +You can't say no. 你无法说“不”。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330998 (CK) & #373443 (fucongcong) +You have to move. 你得行動了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2274025 (CK) & #6534784 (verdastelo9604) +You need to know. 你有必要了解。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823214 (CK) & #5091431 (mirrorvan) +You owe me money. 你欠我钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636266 (CK) & #8688139 (slo_oth) +You shouldn't go. 你不應該去。 CC-BY 2.0 (France) Attribution: tatoeba.org #405481 (CK) & #832945 (Martha) +You're impatient. 你缺乏耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202976 (CK) & #4970090 (wzhd) +You're in my way. 你擋住了我的路。 CC-BY 2.0 (France) Attribution: tatoeba.org #837419 (Mouseneb) & #836436 (Martha) +You're no singer. 你不是歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218226 (CK) & #5780566 (verdastelo9604) +You've got to go. 你們得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331074 (CK) & #1740732 (egg0073) +Your dog is here. 你的狗在這。 CC-BY 2.0 (France) Attribution: tatoeba.org #449111 (CK) & #3738987 (egg0073) +Am I overreacting? 我反应过度了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244895 (CK) & #3289562 (sadhen) +Are they students? 他們是學生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3962743 (JSakuragi) & #3713561 (egg0073) +Are you a student? 你是學生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69521 (CK) & #6056460 (xjjAstrus) +Are you all ready? 你們都準備好了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #63266 (CK) & #793293 (Martha) +Are you happy now? 你现在高兴吗? CC-BY 2.0 (France) Attribution: tatoeba.org #971988 (FeuDRenais) & #5983647 (verdastelo9604) +Are you two ready? 你们两个人都准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3393030 (CK) & #8848653 (crescat) +Be nice to others. 对他人要友善。 CC-BY 2.0 (France) Attribution: tatoeba.org #1125627 (Scott) & #2188491 (sadhen) +Behave yourselves. 规矩点。 CC-BY 2.0 (France) Attribution: tatoeba.org #5268541 (CK) & #5092247 (mirrorvan) +Beware of the dog! 小心狗! CC-BY 2.0 (France) Attribution: tatoeba.org #323550 (CK) & #772362 (Martha) +Beware of thieves. 注意小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162250 (FeuDRenais) & #2143973 (ydcok) +Birds build nests. 鸟儿筑巢。 CC-BY 2.0 (France) Attribution: tatoeba.org #278206 (CK) & #794057 (fucongcong) +Call an ambulance. 叫救护车。 CC-BY 2.0 (France) Attribution: tatoeba.org #19587 (CK) & #333843 (fucongcong) +Can I have a bite? 我可以吃一口嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27796 (CK) & #833794 (Martha) +Can I try this on? 我能试一下吗? CC-BY 2.0 (France) Attribution: tatoeba.org #54952 (CK) & #782915 (fucongcong) +Can this be eaten? 这个能吃吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6358109 (CK) & #5100266 (mirrorvan) +Can we trust them? 我们能信任他们吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3327418 (CK) & #6307277 (gumblex) +Can you freeze it? 你能冷冻它吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3327477 (CK) & #5663493 (verdastelo9604) +Can you jump rope? 你能跳绳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5195299 (CK) & #6091712 (verdastelo9604) +Champagne, please. 给我香槟,谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #987485 (CK) & #5092411 (mirrorvan) +Choose one person. 從中選擇一人。 CC-BY 2.0 (France) Attribution: tatoeba.org #441998 (CK) & #832752 (Martha) +Christmas is soon. 聖誕節快到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #387467 (CK) & #825947 (Martha) +Clean up the room. 收拾房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #319618 (CK) & #1411670 (asosan) +Come here quickly. 快來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #434454 (lukaszpp) & #897264 (Martha) +Come on, hurry up. 来吧,快一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #3549698 (CK) & #3662930 (yss123231) +Come on, let's go. 来吧,我们一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3549699 (CK) & #3662929 (yss123231) +Come on, touch it. 来吧,摸一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3549700 (CK) & #3662927 (yss123231) +Come on, trust me. 来吧,相信我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3549701 (CK) & #3662926 (yss123231) +Could you tell me? 您会告诉我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1663393 (liwan1208) & #1659816 (vicch) +Deal us the cards. 發牌給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #321359 (CK) & #825858 (Martha) +Did you borrow it? 你借它了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3393255 (CK) & #5993947 (verdastelo9604) +Did you buy juice? 你買果汁了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1770443 (Amastan) & #5548490 (egg0073) +Did you buy juice? 你有買果汁嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1770443 (Amastan) & #5548504 (egg0073) +Did you phone Tom? 给汤姆打过电话了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2321237 (CK) & #4879279 (musclegirlxyp) +Do I need surgery? 我需要做手术吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434516 (lukaszpp) & #367904 (fucongcong) +Do you believe me? 你相信我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #268823 (CK) & #343974 (fucongcong) +Do you drink beer? 你喝啤酒吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1761849 (CK) & #4264903 (notabene) +Do you feel lucky? 你觉得幸运吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1808126 (Spamster) & #1808260 (sadhen) +Do you feel tired? 你覺得累嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3962696 (JSakuragi) & #3742432 (egg0073) +Do you have a car? 你有车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69236 (CK) & #472404 (fucongcong) +Do you have a car? 您有车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69236 (CK) & #710299 (fucongcong) +Do you have a map? 你有地圖嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434544 (lukaszpp) & #1261483 (tsayng) +Do you like juice? 你喜歡果汁嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1643242 (Dark) & #5548499 (egg0073) +Do you like music? 你喜欢音乐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #386729 (Mouseneb) & #333747 (fucongcong) +Do you like music? 你爱音乐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #386729 (Mouseneb) & #430850 (fucongcong) +Do you understand? 你明白了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #403063 (Ramses) & #763934 (Martha) +Do you understand? 你们懂吗? CC-BY 2.0 (France) Attribution: tatoeba.org #403063 (Ramses) & #6850348 (mao) +Don't let Tom die. 別讓湯姆死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270469 (CK) & #6628377 (verdastelo9604) +Don't let me down. 别让我失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #262382 (CK) & #2444320 (fenfang557) +Don't pull my leg! 不要拉我的腿! CC-BY 2.0 (France) Attribution: tatoeba.org #268459 (CM) & #332560 (fucongcong) +Don't shout at me. 別對著我吼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271335 (CK) & #1422756 (cienias) +Don't touch these. 不要碰這些。 CC-BY 2.0 (France) Attribution: tatoeba.org #433653 (CK) & #826216 (Martha) +Earth is a planet. 地球是一個行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #681736 (Source_VOA) & #4261695 (egg0073) +Everybody is fine. 每个人都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495895 (CK) & #5863313 (verdastelo9604) +Everybody laughed. 大家笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22132 (CK) & #762992 (humihiro) +Everyone knows me. 大家都認識我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245441 (CK) & #3957666 (egg0073) +Everyone was fine. 大家都还行。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495195 (CK) & #5091089 (mirrorvan) +Everyone will die. 人固有一死。 CC-BY 2.0 (France) Attribution: tatoeba.org #8597926 (shekitten) & #5091165 (mirrorvan) +Everything is bad. 一切都很糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495193 (CK) & #7767674 (jiangche) +Feel free to stay. 歡迎留下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #810296 (BraveSentry) & #810650 (Martha) +Get into your car. 进你的车里。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636095 (CK) & #5701333 (verdastelo9604) +Give her the book. 把这本书给她。 CC-BY 2.0 (France) Attribution: tatoeba.org #710735 (CM) & #710739 (Yashanti) +Give me an orange. 給我一個橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1615374 (marcelostockle) & #8824101 (xjjAstrus) +Give me that book. 把书给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2917115 (FeuDRenais) & #4262244 (notabene) +Go with these men. 跟這些人走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648538 (CK) & #8215721 (verdastelo9604) +God bless America. 上帝保佑美国。 CC-BY 2.0 (France) Attribution: tatoeba.org #1534289 (Spamster) & #5670788 (verdastelo9604) +God is everywhere. 神無處不在。 CC-BY 2.0 (France) Attribution: tatoeba.org #3253982 (deyta) & #6325113 (verdastelo9604) +Has the bell rung? 钟响过了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #33868 (CK) & #804812 (fucongcong) +Haste makes waste. 欲速則不達。 CC-BY 2.0 (France) Attribution: tatoeba.org #19729 (orcrist) & #806181 (Martha) +He began to shout. 他開始喊叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #295293 (CK) & #819436 (Martha) +He bought a Honda. 他賣了一台豐田的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #292783 (CK) & #1236305 (tsayng) +He came in person. 他亲自来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317728 (CK) & #411705 (fucongcong) +He came to see me. 他來看我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297579 (CK) & #795866 (Martha) +He can't help you. 他不能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076869 (Brian255) & #765319 (Martha) +He could not swim. 他不能游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1635554 (Spamster) & #6134998 (verdastelo9604) +He died yesterday. 他昨天去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296902 (CK) & #500919 (fucongcong) +He has a few pens. 他有些鋼筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #434892 (lukaszpp) & #6120853 (verdastelo9604) +He has seven sons. 他有七个儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2698783 (WestofEden) & #5637383 (verdastelo9604) +He has three sons. 他有三个儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #430778 (Archibald) & #430977 (fucongcong) +He himself did it. 是他自己做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #307953 (CM) & #779528 (Martha) +He is a screwball. 他是一個怪人。 CC-BY 2.0 (France) Attribution: tatoeba.org #291801 (CM) & #772109 (Martha) +He is an American. 他是美国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #288859 (CK) & #332941 (fucongcong) +He is at her side. 他在她的旁邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #712992 (CM) & #712989 (egg0073) +He is but a child. 他不过是个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #33043 (CM) & #4270097 (notabene) +He is from France. 他是从法国来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #434930 (lukaszpp) & #8742180 (crescat) +He is just my age. 他和我同岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #291728 (CK) & #335118 (fucongcong) +He is watching TV. 他在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #288039 (CK) & #347031 (fucongcong) +He likes sleeping. 他喜欢睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1676741 (Spamster) & #2083009 (sadhen) +He made me a suit. 他给我做了套衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #250175 (CK) & #1358697 (sadhen) +He struck a match. 他劃了一根火柴。 CC-BY 2.0 (France) Attribution: tatoeba.org #292918 (CK) & #825982 (Martha) +He studied abroad. 他出国留学了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294679 (CK) & #332887 (fucongcong) +He threw the ball. 他把球扔了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292712 (CK) & #1411677 (asosan) +He told the truth. 他說了實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #299984 (CK) & #842399 (Martha) +He turned the key. 他转动钥匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #291899 (CK) & #1411683 (asosan) +He will come back. 他会回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #304209 (CM) & #346717 (fucongcong) +He won everything. 他赢得一切了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1440368 (CM) & #1440480 (egg0073) +He wrote a letter. 他写了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #415439 (FeuDRenais) & #442288 (fucongcong) +He's a bit lively. 他有点活泼。 CC-BY 2.0 (France) Attribution: tatoeba.org #551529 (FeuDRenais) & #336451 (fucongcong) +He's my Mr. Right. 他是我的如意郎君。 CC-BY 2.0 (France) Attribution: tatoeba.org #1256693 (CK) & #5092079 (mirrorvan) +He's not an idiot. 他不是傻的。 CC-BY 2.0 (France) Attribution: tatoeba.org #840139 (papabear) & #8591245 (easononizuka) +He's not here yet. 他還沒到這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2768628 (CK) & #6673090 (verdastelo9604) +He's really angry. 他非常生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #427031 (FeuDRenais) & #426894 (fucongcong) +Here goes nothing. 毫無希望,白費心思。 CC-BY 2.0 (France) Attribution: tatoeba.org #809690 (TomSFox) & #810053 (Martha) +Here is your bill. 这是账单。 CC-BY 2.0 (France) Attribution: tatoeba.org #64716 (CK) & #7774826 (jiangche) +Here is your book. 這是你的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #70392 (CK) & #826213 (Martha) +Here's the change. 这是找零。 CC-BY 2.0 (France) Attribution: tatoeba.org #540287 (FeuDRenais) & #332834 (fucongcong) +How are you doing? 你們好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38926 (Zifre) & #1761553 (egg0073) +How complex is it? 它有多複雜? CC-BY 2.0 (France) Attribution: tatoeba.org #433853 (CK) & #824587 (Martha) +How did you reply? 你回答了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #416890 (blay_paul) & #335067 (fucongcong) +How do we find it? 我们怎样才能找到它? CC-BY 2.0 (France) Attribution: tatoeba.org #1446565 (Spamster) & #8496246 (gumblex) +How should I know? 我怎麼知道? CC-BY 2.0 (France) Attribution: tatoeba.org #25498 (CK) & #710670 (egg0073) +How should I know? 我怎麼知道? CC-BY 2.0 (France) Attribution: tatoeba.org #25498 (CK) & #771622 (Martha) +How was your exam? 考得如何? CC-BY 2.0 (France) Attribution: tatoeba.org #7002704 (Hybrid) & #3667754 (inkarl) +How was your test? 你的测验怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #39449 (edelyn90) & #473012 (fucongcong) +How was your trip? 你的旅行怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1140188 (CK) & #390497 (fucongcong) +I agree with that. 我同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #4530158 (CK) & #333224 (fucongcong) +I agreed with her. 我同意她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261105 (CK) & #926772 (Martha) +I am a vegetarian. 我是素食主义者。 CC-BY 2.0 (France) Attribution: tatoeba.org #367935 (rike) & #510809 (fucongcong) +I am fond of cars. 我喜歡車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258386 (CM) & #6197329 (verdastelo9604) +I am in the house. 我在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #256502 (CK) & #919764 (Martha) +I am on the right. 我在右邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #810174 (BraveSentry) & #810662 (Martha) +I am studying now. 我现在正在学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #257625 (CK) & #437290 (fucongcong) +I bathe every day. 我每天都洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1526474 (CS) & #6094861 (verdastelo9604) +I believe in love. 我相信爱情。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822918 (CK) & #5613718 (verdastelo9604) +I bought that car. 我買了那輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #252939 (CK) & #941104 (Martha) +I can comfort her. 我可以安慰她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261349 (CK) & #779035 (Martha) +I can do it alone. 我可以獨自做。 CC-BY 2.0 (France) Attribution: tatoeba.org #264808 (CK) & #917980 (Martha) +I can drive a car. 我会开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #505158 (minshirui) & #4764637 (ryanwoo) +I can hardly walk. 我幾乎不能走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #33280 (CK) & #908505 (Martha) +I can play Chopin. 我會彈蕭邦。 CC-BY 2.0 (France) Attribution: tatoeba.org #253924 (CK) & #917919 (Martha) +I can play soccer. 我會踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #253859 (CK) & #919950 (Martha) +I can play tennis. 我會打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #255078 (CK) & #825993 (Martha) +I can't stand him. 我受不了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #395036 (CK) & #782167 (fucongcong) +I can't trust you. 我沒辦法相信你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955085 (CK) & #8387428 (wangchou) +I deleted the app. 我删除了这个应用。 CC-BY 2.0 (France) Attribution: tatoeba.org #8444209 (Luiaard) & #8463669 (gumblex) +I didn't feel bad. 我没觉得不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5157770 (CK) & #5963987 (verdastelo9604) +I don't accept it. 我不接受。 CC-BY 2.0 (France) Attribution: tatoeba.org #2283760 (CK) & #5897891 (verdastelo9604) +I don't blame you. 我不怪你。 CC-BY 2.0 (France) Attribution: tatoeba.org #18017 (CK) & #793244 (Martha) +I don't eat bread. 我不吃面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826038 (CK) & #843488 (fucongcong) +I don't feel well. 我感觉不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1717 (Swift) & #501698 (fucongcong) +I don't like dogs. 我不喜歡狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #257244 (CK) & #1959163 (egg0073) +I don't like eggs. 我不喜欢吃鸡蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #593243 (CK) & #4673808 (McMeao) +I don't like eggs. 我不喜欢鸡蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #593243 (CK) & #4673809 (McMeao) +I don't like kids. 我不喜欢小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1801832 (Spamster) & #4673823 (McMeao) +I don't like that. 我不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1121360 (cntrational) & #1361974 (sadhen) +I don't like this. 我不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #55767 (CK) & #1361974 (sadhen) +I don't like wine. 我不喜欢红酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1365080 (CK) & #4673820 (McMeao) +I don't regret it. 我不後悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #780921 (tangereeny) & #781534 (Martha) +I gave you a book. 我给了你一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #71028 (fucongcong) & #335126 (fucongcong) +I got a bee sting. 我被蜜蜂蛰了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #321078 (CK) & #334139 (fucongcong) +I got my hair cut. 我把我的頭髮剪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257883 (CK) & #6853182 (verdastelo9604) +I got up at seven. 我7点起床了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72360 (CK) & #343948 (fucongcong) +I had a nightmare. 我做噩梦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #28526 (CK) & #7772597 (jiangche) +I had lost my pen. 我弄丟了我的筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #255569 (CK) & #1960203 (egg0073) +I hate mosquitoes. 我恨蚊子。 CC-BY 2.0 (France) Attribution: tatoeba.org #936937 (akvo) & #5983641 (verdastelo9604) +I have a computer. 我有一台电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #253848 (CK) & #343844 (fucongcong) +I have a daughter. 我有一个女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #261892 (CK) & #399944 (fucongcong) +I have a headache. 我头痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1712 (CK) & #332568 (fucongcong) +I have a proposal. 我有個提案。 CC-BY 2.0 (France) Attribution: tatoeba.org #1484788 (CM) & #1484798 (egg0073) +I have an opinion. 我有一個意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #435194 (CK) & #819434 (Martha) +I have brown hair. 我的头发是褐色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #436665 (lukaszpp) & #8829217 (crescat) +I have many discs. 我有许多唱片。 CC-BY 2.0 (France) Attribution: tatoeba.org #710903 (CM) & #710902 (Yashanti) +I have no friends. 我没有朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #478568 (BlueLagoon) & #7768285 (jiangche) +I have some money. 我有一些錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #258649 (CK) & #1962158 (egg0073) +I have to go home. 我该回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256788 (CK) & #343852 (fucongcong) +I have two nieces. 我有两个外甥女。 CC-BY 2.0 (France) Attribution: tatoeba.org #383876 (CK) & #1471498 (sadhen) +I haven't changed. 我没改变。 CC-BY 2.0 (France) Attribution: tatoeba.org #3396671 (CK) & #5933797 (verdastelo9604) +I haven't met her. 我没有遇见她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308594 (CK) & #1430225 (sadhen) +I hope to see you. 我希望能见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63893 (CK) & #389391 (fucongcong) +I kept on singing. 我繼續唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858101 (CK) & #819338 (Martha) +I kept on singing. 我继续唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858101 (CK) & #4270138 (notabene) +I like jazz music. 我喜歡爵士樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #253907 (CK) & #826284 (Martha) +I like short hair. 我喜欢短发。 CC-BY 2.0 (France) Attribution: tatoeba.org #259389 (CK) & #414239 (fucongcong) +I like snow a lot. 我很喜歡雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #758154 (Zifre) & #6994073 (verdastelo9604) +I like your house. 我喜欢你的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5300749 (CarpeLanam) & #5933805 (verdastelo9604) +I like your shoes. 我喜欢你的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2377636 (CK) & #4845043 (pig8322) +I lost my luggage. 我的行李丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1960219 (LanguageExpert) & #794187 (fucongcong) +I love that story. 我喜欢那个故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887555 (CK) & #8463703 (gumblex) +I need many books. 我需要很多書。 CC-BY 2.0 (France) Attribution: tatoeba.org #825690 (CM) & #827574 (Martha) +I need more money. 我需要更多的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839501 (CK) & #6015377 (xjjAstrus) +I need to go home. 我该回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140167 (CK) & #343852 (fucongcong) +I opened the door. 我開了門。 CC-BY 2.0 (France) Attribution: tatoeba.org #2389573 (CK) & #8215710 (verdastelo9604) +I ripped my pants. 我扯掉了自己的裤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2404163 (CK) & #5091222 (mirrorvan) +I sat by his side. 我坐在他旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #250343 (CS) & #334889 (fucongcong) +I sat next to him. 我坐在他旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #505904 (wma) & #334889 (fucongcong) +I saw him running. 我看見了他跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #283975 (CK) & #824593 (Martha) +I saw the sunrise. 我看了日出。 CC-BY 2.0 (France) Attribution: tatoeba.org #2881933 (Hybrid) & #6169146 (verdastelo9604) +I should be happy. 我該高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044415 (CK) & #6028102 (verdastelo9604) +I study at school. 我在学校读书。 CC-BY 2.0 (France) Attribution: tatoeba.org #256661 (CK) & #843491 (fucongcong) +I talked with Tom. 我和汤姆说了话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2261987 (CK) & #7768303 (jiangche) +I think I'll stay. 我認我會留下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549156 (CK) & #6325102 (verdastelo9604) +I think I'm right. 我想我是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433529 (CK) & #826239 (Martha) +I took Highway 58. 我走58號高速公路。 CC-BY 2.0 (France) Attribution: tatoeba.org #321575 (CK) & #819431 (Martha) +I tried to escape. 我试图逃跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #259696 (CK) & #1366054 (sadhen) +I usually eat out. 我通常在外面吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #252359 (CK) & #787548 (fucongcong) +I want Tom to win. 我想让汤姆赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011371 (CK) & #5581735 (verdastelo9604) +I want a lot more. 我要多很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #30504 (CK) & #834809 (Martha) +I want ten plates. 我要十個盤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #437025 (lukaszpp) & #9135864 (xjjAstrus) +I want to go home. 我要回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #256506 (CK) & #834800 (Martha) +I was so homesick. 我很想家。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500065 (CK) & #6059534 (verdastelo9604) +I was very hungry. 我很饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #37858 (CK) & #7768272 (jiangche) +I went on reading. 我继续阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #280636 (CK) & #1428112 (sadhen) +I will do my best. 我會盡力而為。 CC-BY 2.0 (France) Attribution: tatoeba.org #244079 (CK) & #834574 (Martha) +I wish I could go. 我希望我可以去。 CC-BY 2.0 (France) Attribution: tatoeba.org #322242 (CK) & #834566 (Martha) +I woke up at 2:30. 我在2:30起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #5583089 (CK) & #5617317 (verdastelo9604) +I won the lottery. 我中奖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #320982 (CK) & #1411695 (asosan) +I won't be fooled. 我不会上当的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2418674 (CK) & #5091671 (mirrorvan) +I work for a bank. 我為一家銀行工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #256979 (CK) & #796000 (Martha) +I work long hours. 我工作數小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500060 (CK) & #6047503 (verdastelo9604) +I worry about him. 我擔心他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260035 (CK) & #793322 (Martha) +I wrote it myself. 我自己写了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549130 (CK) & #5978325 (verdastelo9604) +I wrote this book. 我写了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #321315 (CK) & #392244 (fucongcong) +I'd like to dance. 我想要跳舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4836891 (CK) & #4844732 (pig8322) +I'd wear a helmet. 我要戴頭盔。 CC-BY 2.0 (France) Attribution: tatoeba.org #5757915 (CM) & #6084399 (verdastelo9604) +I'll be back late. 我會晚一點回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755546 (CK) & #4754660 (egg0073) +I'll go by myself. 我會自己走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549103 (CK) & #6105204 (verdastelo9604) +I'll pay the bill. 我來付賬。 CC-BY 2.0 (France) Attribution: tatoeba.org #321308 (CK) & #825922 (Martha) +I'll tell my wife. 我會告訴我的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732815 (CK) & #6309820 (verdastelo9604) +I'm a new student. 我是个新生。 CC-BY 2.0 (France) Attribution: tatoeba.org #424866 (FeuDRenais) & #347055 (fucongcong) +I'm able to speak. 我能说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1148331 (cntrational) & #2672956 (sadhen) +I'm bad at sports. 我不擅長運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #321638 (CK) & #819346 (Martha) +I'm being patient. 我很有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #321816 (CK) & #825194 (Martha) +I'm going to lose. 我要输了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280335 (CK) & #5595189 (verdastelo9604) +I'm making dinner. 我准备晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248103 (CK) & #1424176 (sadhen) +I'm not a student. 我不是學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #258994 (CK) & #819315 (Martha) +I'm not too smart. 我不太聰明。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858982 (CK) & #6128470 (verdastelo9604) +I'm on Tom's side. 我站在湯姆一邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549046 (CK) & #6065739 (verdastelo9604) +I'm sore all over. 我全身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936577 (CK) & #917936 (Martha) +I'm still puzzled. 我還不明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #5859394 (CK) & #6624598 (verdastelo9604) +I'm using Twitter. 我在用Twitter。 CC-BY 2.0 (France) Attribution: tatoeba.org #461331 (CM) & #461658 (fucongcong) +I'm using Twitter. 我用Twitter。 CC-BY 2.0 (France) Attribution: tatoeba.org #461331 (CM) & #474921 (egg0073) +I've done my best. 我已经尽力了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736779 (CK) & #9316603 (slo_oth) +Is Tom a good guy? 汤姆是好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6449459 (CK) & #6449458 (Penny_Bo) +Is somebody there? 那边有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #276106 (CK) & #5091361 (mirrorvan) +Is that pure gold? 那是純金嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #442974 (CK) & #826064 (Martha) +Is the bath clean? 浴室干净吗? CC-BY 2.0 (France) Attribution: tatoeba.org #324958 (CK) & #1411704 (asosan) +Is the party over? 聚會結束了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3393002 (CK) & #6119492 (verdastelo9604) +Is this your book? 這是你的書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55975 (CK) & #715737 (egg0073) +It doesn't matter. 没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #37894 (CK) & #333730 (fucongcong) +It is not a watch. 這不是手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #710676 (CM) & #710675 (egg0073) +It is very simple. 这很简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #619770 (ulyssemc1) & #7771897 (jiangche) +It is windy today. 今天有风。 CC-BY 2.0 (France) Attribution: tatoeba.org #242970 (CK) & #510694 (fucongcong) +It was our secret. 它是我們的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648490 (CK) & #6624680 (verdastelo9604) +It's a good start. 这是一个好的开端。 CC-BY 2.0 (France) Attribution: tatoeba.org #1777529 (Spamster) & #3783113 (Debbie_Linder) +It's all my fault. 都是我的错。 CC-BY 2.0 (France) Attribution: tatoeba.org #707265 (CK) & #707263 (Yashanti) +It's already 7:00. 已经是早上七点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #646727 (CK) & #2109212 (sadhen) +It's confidential. 这是机密。 CC-BY 2.0 (France) Attribution: tatoeba.org #1989669 (Spamster) & #5670858 (verdastelo9604) +It's hot out here. 这里够热。 CC-BY 2.0 (France) Attribution: tatoeba.org #5371928 (CK) & #5685865 (verdastelo9604) +It's human nature. 它是人的天性。 CC-BY 2.0 (France) Attribution: tatoeba.org #1883081 (Spamster) & #6109285 (verdastelo9604) +It's my brother's. 它是我兄弟的。 CC-BY 2.0 (France) Attribution: tatoeba.org #278535 (CK) & #780233 (Martha) +It's not my fault. 不是我的错。 CC-BY 2.0 (France) Attribution: tatoeba.org #321324 (CK) & #517562 (fucongcong) +It's not that far. 不是那么远。 CC-BY 2.0 (France) Attribution: tatoeba.org #451726 (FeuDRenais) & #451442 (fucongcong) +It's on the house. 这是免费的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1112522 (Scott) & #2513880 (fenfang557) +It's our pleasure. 这是我们的荣幸。 CC-BY 2.0 (France) Attribution: tatoeba.org #21307 (CM) & #333110 (fucongcong) +It's pretty heavy. 它真重。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249171 (CK) & #5842669 (verdastelo9604) +It's self-evident. 這是不證自明的。 CC-BY 2.0 (France) Attribution: tatoeba.org #64948 (CM) & #2480492 (tsayng) +It's time to talk. 到談話的時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734199 (CK) & #6103142 (verdastelo9604) +It's very special. 它很特別。 CC-BY 2.0 (France) Attribution: tatoeba.org #5374849 (CK) & #6105240 (verdastelo9604) +It's warm in here. 這裡是溫暖的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3564943 (CK) & #5350392 (egg0073) +Keep to the right. 靠右侧通行。 CC-BY 2.0 (France) Attribution: tatoeba.org #456283 (lukaszpp) & #1411709 (asosan) +Let me have a try. 让我试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #250031 (CK) & #333051 (fucongcong) +Let's get started. 讓我們開始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #442919 (CK) & #819465 (Martha) +Let's get started. 让我们开始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #442919 (CK) & #1358651 (sadhen) +Let's get to work. 干活吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007830 (CK) & #5611550 (verdastelo9604) +Let's play soccer. 去踢足球吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #54105 (CK) & #332489 (fucongcong) +Let's shake hands. 讓我們握手吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1192381 (CK) & #6105188 (verdastelo9604) +Let's take a look. 讓我們看看吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #373278 (kotobaboke) & #826202 (Martha) +Let's take a rest. 我们休息一下吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #27830 (CK) & #401011 (fucongcong) +Life is beautiful. 生活是美丽的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1829 (CK) & #502771 (fucongcong) +Life is very hard. 人生良苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093318 (CarpeLanam) & #5095194 (mirrorvan) +Long time, no see. 好久不見。 CC-BY 2.0 (France) Attribution: tatoeba.org #417003 (CK) & #771570 (Martha) +Long time, no see. 真是好久不见啊 CC-BY 2.0 (France) Attribution: tatoeba.org #417003 (CK) & #4517829 (yuiyu) +Look into my eyes. 看著我的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #456317 (lukaszpp) & #873186 (Martha) +Mary is very cute. 玛丽非常可爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4083732 (CK) & #9140823 (vermouthmjl) +May I put it here? 我可以把它放在这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1075501 (CK) & #1438615 (asosan) +Mind your manners. 规矩点。 CC-BY 2.0 (France) Attribution: tatoeba.org #326095 (CK) & #5092247 (mirrorvan) +My father is busy. 我爸爸很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #251731 (CK) & #332500 (fucongcong) +My laptop crashed. 我的笔记本电脑发生故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5301749 (mailohilohi) & #5301836 (bingxiong) +My shoulder hurts. 我肩膀痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #899477 (U2FS) & #736268 (Martha) +My stomach's full. 我的胃是脹滿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433865 (CK) & #826113 (Martha) +My stomach's full. 我吃得很飽。 CC-BY 2.0 (France) Attribution: tatoeba.org #433865 (CK) & #826114 (Martha) +No problem at all! 什么问题都没有! CC-BY 2.0 (France) Attribution: tatoeba.org #21085 (blay_paul) & #2043280 (sadhen) +No problem at all! 一点问题都没有! CC-BY 2.0 (France) Attribution: tatoeba.org #21085 (blay_paul) & #2043281 (sadhen) +No problem at all! 没有任何问题! CC-BY 2.0 (France) Attribution: tatoeba.org #21085 (blay_paul) & #2043283 (sadhen) +Nobody's laughing. 沒人在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111588 (CK) & #8572030 (verdastelo9604) +Pick up the phone. 接电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891805 (CK) & #332436 (fucongcong) +Pick up the phone. 接一下电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891805 (CK) & #4104698 (maple) +Please contact us. 请联系我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249773 (CK) & #5819705 (verdastelo9604) +Please forgive me. 请原谅我。 CC-BY 2.0 (France) Attribution: tatoeba.org #38820 (CK) & #461522 (fucongcong) +Please reconsider. 请重新考虑一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1771906 (Scott) & #5092560 (mirrorvan) +Please wrap it up. 請包起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #442977 (CK) & #771432 (Martha) +Pretend you're me. 假装你是我。 CC-BY 2.0 (France) Attribution: tatoeba.org #71411 (CK) & #791687 (fucongcong) +Put out the light. 熄灯。 CC-BY 2.0 (France) Attribution: tatoeba.org #322984 (CK) & #1411712 (asosan) +Put your hands up! 把手举起来! CC-BY 2.0 (France) Attribution: tatoeba.org #265926 (CK) & #333761 (fucongcong) +Put your hands up! 手举起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #265926 (CK) & #5102180 (mirrorvan) +Put your hands up. 手举起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1847321 (MrShoval) & #5102180 (mirrorvan) +Say it in English. 用英语说。 CC-BY 2.0 (France) Attribution: tatoeba.org #26377 (CK) & #333760 (fucongcong) +Shame on you guys. 替你们脸红啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648459 (CK) & #5091175 (mirrorvan) +She began to sing. 她开始唱歌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312881 (CK) & #465837 (fucongcong) +She cursed loudly. 她大声诅咒。 CC-BY 2.0 (France) Attribution: tatoeba.org #315698 (CM) & #5611463 (verdastelo9604) +She didn't go far. 她没有走远。 CC-BY 2.0 (France) Attribution: tatoeba.org #312720 (CK) & #866733 (kooler) +She has blue eyes. 她有蓝色的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #472087 (CK) & #472842 (fucongcong) +She hates carrots. 她討厭胡蘿蔔。 CC-BY 2.0 (France) Attribution: tatoeba.org #311905 (CK) & #6937170 (xjjAstrus) +She likes oranges. 她喜歡柳橙。 CC-BY 2.0 (France) Attribution: tatoeba.org #410529 (CK) & #819478 (Martha) +She likes oranges. 她喜欢橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #410529 (CK) & #4267366 (notabene) +She looks unhappy. 她看起来不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #313110 (CK) & #336021 (fucongcong) +She looks unhappy. 她看起來不快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #313110 (CK) & #780340 (Martha) +She sells flowers. 她卖花。 CC-BY 2.0 (France) Attribution: tatoeba.org #462388 (lukaszpp) & #7772583 (jiangche) +She went upstairs. 她上樓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1410320 (CK) & #6826150 (verdastelo9604) +She wept bitterly. 她痛哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #388695 (CK) & #825171 (Martha) +She's a bit naive. 她有点天真。 CC-BY 2.0 (France) Attribution: tatoeba.org #1633863 (Spamster) & #8714975 (crescat) +She's in the bath. 她在浴室。 CC-BY 2.0 (France) Attribution: tatoeba.org #463498 (blay_paul) & #1411718 (asosan) +She's my daughter. 她是我女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #724401 (CM) & #1428124 (sadhen) +She's not a child. 她不是小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1191962 (Anon) & #1192429 (sadhen) +Should I help you? 我该帮你吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3182973 (asveja) & #5978357 (verdastelo9604) +Stop bothering me. 不要烦我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250012 (CK) & #4177490 (maple) +Tell me the truth. 告訴我真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #321441 (CK) & #819381 (Martha) +Termites eat wood. 白蚁吃木头。 CC-BY 2.0 (France) Attribution: tatoeba.org #479961 (kblakes) & #5550130 (verdastelo9604) +That house is big. 那棟房子很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #68536 (CK) & #736315 (Martha) +That house is big. 那栋房子很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #68536 (CK) & #1366211 (sadhen) +That is flammable. 那是可燃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3701794 (ravas) & #6147567 (verdastelo9604) +That is his house. 那是他家。 CC-BY 2.0 (France) Attribution: tatoeba.org #67034 (CK) & #8673598 (crescat) +That is your book. 那是你的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #67105 (CK) & #825152 (Martha) +That was fabulous. 那真是极好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #268830 (CM) & #5581642 (verdastelo9604) +That's a pheasant. 那是一隻野雞。 CC-BY 2.0 (France) Attribution: tatoeba.org #442122 (CK) & #819321 (Martha) +That's impossible. 这不可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #41295 (CK) & #482716 (biglion) +That's my problem. 這是我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #449185 (CK) & #824495 (Martha) +That's so perfect. 那是完美的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2257402 (CK) & #5650533 (verdastelo9604) +That's the answer. 那就是答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251259 (CK) & #8888042 (crescat) +That's very handy. 这很方便。 CC-BY 2.0 (France) Attribution: tatoeba.org #1283271 (Scott) & #7768311 (jiangche) +The bath is ready. 浴缸已經準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64039 (CK) & #793294 (Martha) +The cat is eating. 这只猫在吃东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1000828 (riccioberto) & #1192413 (sadhen) +The clock stopped. 鐘停了。 CC-BY 2.0 (France) Attribution: tatoeba.org #448956 (CK) & #832939 (Martha) +The dog went away. 這隻狗跑走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48214 (CK) & #793355 (Martha) +The doorbell rang. 门铃儿响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #426951 (Pun_intended) & #1411726 (asosan) +The man ate bread. 這個男人吃了麵包。 CC-BY 2.0 (France) Attribution: tatoeba.org #767950 (marloncori) & #890451 (Martha) +The man must work. 男人应该工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1072518 (CM) & #334672 (fucongcong) +The market is big. 市場很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1098075 (cntrational) & #1098130 (egg0073) +The meeting ended. 会议结束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1284135 (CK) & #1411729 (asosan) +The pain has gone. 疼痛消失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278308 (CK) & #1411730 (asosan) +The soup is thick. 汤很稠。 CC-BY 2.0 (France) Attribution: tatoeba.org #60991 (CK) & #7768351 (jiangche) +The system worked. 系统运行起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502981 (CK) & #5931756 (verdastelo9604) +The truck is gone. 貨車走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723037 (CM) & #6325124 (verdastelo9604) +The worst is over. 最壞的已經過去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #243711 (CK) & #795804 (Martha) +There is a strike. 有罢工。 CC-BY 2.0 (France) Attribution: tatoeba.org #817764 (Cocorico) & #818924 (fucongcong) +There is no water. 沒有水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270745 (CK) & #1444292 (egg0073) +They are at lunch. 他们在吃午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #307157 (CK) & #1839200 (sadhen) +They are very big. 他們非常大。 CC-BY 2.0 (France) Attribution: tatoeba.org #37779 (CK) & #825955 (Martha) +They can't see me. 他們看不見我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954842 (CK) & #6534769 (verdastelo9604) +They know nothing. 他們什麼都不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243213 (CK) & #9179731 (xjjAstrus) +They like to sing. 他们都喜欢唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476746 (weihaiping) & #1475754 (sadhen) +They were worried. 他们担心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549015 (CK) & #5576800 (verdastelo9604) +They're in danger. 他們有危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #1651935 (Spamster) & #6119318 (verdastelo9604) +This apple is bad. 这个苹果是坏的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56499 (CK) & #784455 (fucongcong) +This book will do. 這本書就行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #57104 (CK) & #819447 (Martha) +This could be fun. 這可能很好玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3392980 (CK) & #6093350 (verdastelo9604) +This desk is mine. 這張書桌是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59851 (CK) & #826178 (Martha) +This is Tom's car. 這是湯姆的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648416 (CK) & #6149261 (xjjAstrus) +This is a miracle. 这是一个奇迹。 CC-BY 2.0 (France) Attribution: tatoeba.org #2185448 (Hybrid) & #2186407 (sadhen) +This is delicious. 很美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #463302 (lukaszpp) & #3739208 (egg0073) +This is difficult. 这很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #869091 (CK) & #869094 (sadhen) +This is expensive. 這很貴。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495123 (CK) & #5689024 (xjjAstrus) +This is gibberish. 這是胡說。 CC-BY 2.0 (France) Attribution: tatoeba.org #2233686 (CK) & #6047401 (verdastelo9604) +This is my friend. 這是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #675960 (CK) & #6149256 (xjjAstrus) +This is my friend. 這個是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #675960 (CK) & #9232871 (xjjAstrus) +This is my mother. 这是我的妈妈。 CC-BY 2.0 (France) Attribution: tatoeba.org #413771 (Scott) & #330581 (vermouthmjl) +This is my mother. 这是我母亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #413771 (Scott) & #796923 (fucongcong) +This is my sister. 这是我的妹妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #556985 (Ezatullah) & #3365858 (hzy980512) +This is so boring. 这太无聊了。 CC-BY 2.0 (France) Attribution: tatoeba.org #716496 (CM) & #3783090 (Debbie_Linder) +This is your book. 這是你的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #55976 (CK) & #826213 (Martha) +This isn't my car. 這不是我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648412 (CK) & #5836361 (xjjAstrus) +This isn't my key. 這不是我的鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132392 (CK) & #8215718 (verdastelo9604) +This makes me sad. 這讓我難過。 CC-BY 2.0 (France) Attribution: tatoeba.org #5548461 (Hybrid) & #5548468 (egg0073) +Today is Thursday. 今天是礼拜四。 CC-BY 2.0 (France) Attribution: tatoeba.org #1151779 (CK) & #5142185 (musclegirlxyp) +Tom became a hero. 汤姆成了英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095813 (CK) & #2028018 (ydcok) +Tom began talking. 汤姆开始说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027027 (CK) & #1361950 (sadhen) +Tom couldn't swim. 汤姆不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1831474 (ryanwhiting) & #5072434 (musclegirlxyp) +Tom died recently. 汤姆最近死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5483653 (CK) & #5685859 (verdastelo9604) +Tom drank heavily. 湯姆喝得很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5103536 (CK) & #8215679 (verdastelo9604) +Tom drove the car. 汤姆开的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #37098 (CK) & #8854610 (crescat) +Tom dyed his hair. 汤姆染发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1557063 (Spamster) & #5142194 (musclegirlxyp) +Tom gave me a pen. 湯姆給了我一枝筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #37121 (CK) & #838556 (Martha) +Tom had no family. 过去汤姆没有家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549007 (CK) & #4264860 (notabene) +Tom has blue eyes. 汤姆的眼睛是蓝色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025403 (CK) & #5072398 (musclegirlxyp) +Tom has many cats. 湯姆有很多貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2789258 (CK) & #6165433 (verdastelo9604) +Tom hates spiders. 汤姆恨蜘蛛。 CC-BY 2.0 (France) Attribution: tatoeba.org #2866997 (Amastan) & #5595217 (verdastelo9604) +Tom heard a shout. 汤姆听到了一声喊叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #3360617 (CK) & #5091670 (mirrorvan) +Tom heard nothing. 汤姆什么也没听见。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723841 (CM) & #5983673 (verdastelo9604) +Tom helped us all. 湯姆幫了我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #4867622 (Amastan) & #6728912 (verdastelo9604) +Tom is a magician. 汤姆是魔法师。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272829 (CK) & #5780626 (verdastelo9604) +Tom is a true man. 汤姆是个真男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025141 (CK) & #6028022 (verdastelo9604) +Tom is happy here. 湯姆在這裡很高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495115 (CK) & #6128461 (verdastelo9604) +Tom is my brother. Tom是我哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273295 (CK) & #8591295 (easononizuka) +Tom is overweight. 汤姆超重了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203160 (CK) & #5091351 (mirrorvan) +Tom is testing me. 汤姆在试探我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273539 (CK) & #8496242 (gumblex) +Tom is very quiet. 湯姆很安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410847 (CK) & #6678456 (verdastelo9604) +Tom isn't foolish. 汤姆不傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3428409 (CK) & #5091664 (mirrorvan) +Tom isn't smiling. 汤姆没在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237017 (CK) & #8829226 (crescat) +Tom isn't unhappy. 汤姆不是不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3403505 (CK) & #5911583 (verdastelo9604) +Tom likes to knit. 湯姆喜歡編織。 CC-BY 2.0 (France) Attribution: tatoeba.org #37015 (CK) & #825945 (Martha) +Tom lit his cigar. 湯姆點了雪茄。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164456 (CK) & #8215745 (verdastelo9604) +Tom lives near me. 湯姆住在我的附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415386 (CK) & #6175728 (verdastelo9604) +Tom loves flowers. 湯姆熱愛花卉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548976 (CK) & #6624676 (verdastelo9604) +Tom loves to sing. 湯姆愛唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495190 (Spamster) & #6098458 (verdastelo9604) +Tom made a choice. 汤姆做出了选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648327 (CK) & #5072265 (musclegirlxyp) +Tom made me do it. 是汤姆让我做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648325 (CK) & #8936682 (crescat) +Tom misses Boston. 汤姆想念波士顿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2862240 (Amastan) & #7772594 (jiangche) +Tom moves quickly. 汤姆动得好快。 CC-BY 2.0 (France) Attribution: tatoeba.org #3360621 (CK) & #8795137 (crescat) +Tom robbed a bank. 湯姆搶了家銀行。 CC-BY 2.0 (France) Attribution: tatoeba.org #4660538 (Hybrid) & #6111724 (verdastelo9604) +Tom sent me there. 湯姆送我去了那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2262278 (CK) & #6075694 (verdastelo9604) +Tom shut his eyes. 汤姆闭上了眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092917 (CK) & #5142204 (musclegirlxyp) +Tom wants popcorn. 湯姆要爆米花。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502826 (CK) & #6947202 (xjjAstrus) +Tom wants to talk. 汤姆想说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011384 (CK) & #5613702 (verdastelo9604) +Tom was very sick. 汤姆很虚弱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548952 (CK) & #5691243 (verdastelo9604) +Tom wasn't in bed. 湯姆不在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #6123283 (CK) & #6309817 (verdastelo9604) +Tom works at home. 湯姆在家工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1765311 (wwkudu) & #6075699 (verdastelo9604) +Tom's face is red. 汤姆的脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023851 (CK) & #8888274 (crescat) +Tom, are you okay? 汤姆,你还好吧? CC-BY 2.0 (France) Attribution: tatoeba.org #1874307 (CK) & #4956727 (musclegirlxyp) +Try it once again. 再试一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #31497 (CK) & #796840 (fucongcong) +Turn back, please. 请回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #240168 (CM) & #5978335 (verdastelo9604) +Turn on the radio. 打开收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #29763 (CK) & #2032175 (ydcok) +Two beers, please. 请来两杯啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #34846 (CK) & #407257 (fucongcong) +Use it or lose it. 使用它或失去它。 CC-BY 2.0 (France) Attribution: tatoeba.org #810538 (CM) & #810624 (Martha) +Was Tom surprised? 汤姆吃惊吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2244740 (CK) & #7772122 (jiangche) +Was that too much? 那太多了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3392977 (CK) & #5581793 (verdastelo9604) +Water is a liquid. 水是液体。 CC-BY 2.0 (France) Attribution: tatoeba.org #270793 (CK) & #7772048 (jiangche) +We are classmates. 我们是同学。 CC-BY 2.0 (France) Attribution: tatoeba.org #2801124 (CK) & #333784 (fucongcong) +We can do nothing. 我们什么都做不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953570 (CK) & #7767669 (jiangche) +We don't think so. 我们不这样认为。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273780 (CK) & #3043921 (sadhen) +We had no secrets. 我們沒有秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893856 (CK) & #6065381 (verdastelo9604) +We hope Tom is OK. 我們希望湯姆沒事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4953384 (CK) & #4953607 (umidake) +We may never know. 我们可能永远不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312955 (CK) & #5571066 (verdastelo9604) +We must intervene. 我们必须介入。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241174 (CK) & #5576792 (verdastelo9604) +We need more food. 我們需要更多食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648260 (CK) & #6568339 (verdastelo9604) +We need your help. 我們需要你的幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #410780 (CK) & #771610 (Martha) +We started at six. 我們六點開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #713286 (CM) & #713285 (egg0073) +We want two taxis. 我們要兩輛出租車。 CC-BY 2.0 (France) Attribution: tatoeba.org #7845690 (sharris123) & #6284526 (xjjAstrus) +We were kids then. 我们那时是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273767 (CK) & #5903481 (verdastelo9604) +We won the battle. 我们战争胜利了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877 (Swift) & #349671 (fucongcong) +We're against war. 我们反对战争。 CC-BY 2.0 (France) Attribution: tatoeba.org #8066849 (CK) & #335255 (fucongcong) +We're all at risk. 我们都在冒险。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548928 (CK) & #8589271 (easononizuka) +We're all at risk. 我们都处于危险之中。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548928 (CK) & #8592702 (easononizuka) +We're not looking. 我們沒有看著。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240629 (CK) & #6105205 (verdastelo9604) +We're old friends. 我们是老朋友了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249463 (CK) & #407274 (fucongcong) +We've been warned. 我们被警告过了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5423334 (CK) & #8496247 (gumblex) +Were they serious? 他们是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2254498 (CK) & #7768267 (jiangche) +What did you hear? 您听到什么了? CC-BY 2.0 (France) Attribution: tatoeba.org #464532 (lukaszpp) & #7769294 (jiangche) +What did you make? 你做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #24693 (CK) & #333012 (fucongcong) +What do you think? 你認為如何? CC-BY 2.0 (France) Attribution: tatoeba.org #914029 (Jane_Austen) & #735175 (Martha) +What does it mean? 这是什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #43211 (CK) & #469553 (fucongcong) +What is your name? 你叫什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #70623 (sacredceltic) & #346883 (fucongcong) +What is your name? 您叫什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #70623 (sacredceltic) & #444659 (fucongcong) +What're you after? 你想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2648231 (CK) & #333098 (fucongcong) +What're you after? 你想要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2648231 (CK) & #874392 (Martha) +What're you doing? 搞什么啊? CC-BY 2.0 (France) Attribution: tatoeba.org #1839618 (CK) & #8591235 (easononizuka) +What's Tom saying? 湯姆在說甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2648227 (CK) & #6623203 (verdastelo9604) +What's for supper? 我们晚饭吃什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1539914 (SHamp) & #1323692 (vicch) +What's the matter? 怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #394894 (Dorenda) & #334413 (fucongcong) +What's this smell? 这是什么气味? CC-BY 2.0 (France) Attribution: tatoeba.org #610369 (szaby78) & #8734974 (crescat) +What's your hobby? 你的爱好是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #594511 (CK) & #2185225 (sadhen) +When do you close? 你們公司幾點下班? CC-BY 2.0 (France) Attribution: tatoeba.org #2761796 (Trailsend) & #2757110 (cienias) +When is breakfast? 早餐是從幾點到幾點? CC-BY 2.0 (France) Attribution: tatoeba.org #7797080 (sharris123) & #6284520 (xjjAstrus) +When was it built? 它是什麼什麼時候蓋的? CC-BY 2.0 (France) Attribution: tatoeba.org #66024 (CK) & #1236365 (tsayng) +When was she born? 她是什么时候出生的? CC-BY 2.0 (France) Attribution: tatoeba.org #310506 (CK) & #332914 (fucongcong) +Where are you now? 你现在在哪里呢? CC-BY 2.0 (France) Attribution: tatoeba.org #679375 (Najeebullah_anh) & #1468442 (sadhen) +Where is my watch? 我的手錶在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #321500 (CK) & #826175 (Martha) +Where is the bank? 银行在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #48623 (CK) & #504872 (fucongcong) +Where is the book? 那本书在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #43928 (CK) & #1786106 (sadhen) +Where is the pain? 哪裡痛? CC-BY 2.0 (France) Attribution: tatoeba.org #403284 (CK) & #825176 (Martha) +Where is your dog? 你的狗在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #461908 (regisb) & #462030 (fucongcong) +Where is your dog? 你的狗在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #461908 (regisb) & #3627962 (suitchic) +Where's my father? 我父亲在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #2254638 (CK) & #7767608 (jiangche) +Where's the vodka? 伏特加在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #7810416 (CK) & #784510 (fucongcong) +Which tooth hurts? 哪顆牙痛? CC-BY 2.0 (France) Attribution: tatoeba.org #403281 (CK) & #819475 (Martha) +Who invented that? 那是谁发明的? CC-BY 2.0 (France) Attribution: tatoeba.org #2254855 (CK) & #4540578 (McMeao) +Who told you that? 是谁给你说那个的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2692364 (WestofEden) & #5100179 (mirrorvan) +Whose car is this? 這輛汽車是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #55518 (CK) & #4795925 (umidake) +Whose car is this? 這台汽車是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #55518 (CK) & #4795926 (umidake) +Whose car is this? 這是誰的車? CC-BY 2.0 (France) Attribution: tatoeba.org #55518 (CK) & #6149260 (xjjAstrus) +Whose cup is this? 这是谁的杯子? CC-BY 2.0 (France) Attribution: tatoeba.org #8335719 (shekitten) & #4885037 (musclegirlxyp) +Whose fault is it? 是誰的錯呢? CC-BY 2.0 (France) Attribution: tatoeba.org #441942 (CK) & #824533 (Martha) +Whose idea was it? 这是谁的主意? CC-BY 2.0 (France) Attribution: tatoeba.org #42235 (CK) & #609960 (sarah) +Whose is this car? 這輛汽車是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #4845159 (CM) & #4795925 (umidake) +Whose is this car? 這台汽車是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #4845159 (CM) & #4795926 (umidake) +Why are you alone? 为什么您一个人? CC-BY 2.0 (France) Attribution: tatoeba.org #69874 (CK) & #4264942 (notabene) +Why are you alone? 你为什么一个人? CC-BY 2.0 (France) Attribution: tatoeba.org #69874 (CK) & #7772050 (jiangche) +Why are you angry? 你为什么生气? CC-BY 2.0 (France) Attribution: tatoeba.org #773128 (marloncori) & #794067 (fucongcong) +Why are you awake? 你为什么醒着? CC-BY 2.0 (France) Attribution: tatoeba.org #2648208 (CK) & #844137 (fucongcong) +Why is snow white? 为什么雪是白色的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #749959 (CM) & #8698973 (crescat) +Why were you late? 你为什么迟到? CC-BY 2.0 (France) Attribution: tatoeba.org #36363 (CK) & #796841 (fucongcong) +Why would she lie? 她為甚麼要說謊? CC-BY 2.0 (France) Attribution: tatoeba.org #1635785 (Spamster) & #6150020 (verdastelo9604) +Will you be there? 你会在那里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3407132 (CK) & #7767738 (jiangche) +Will you marry me? 你愿意嫁给我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #35835 (CK) & #464846 (fucongcong) +Will you use this? 你要用這個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6169119 (sundown) & #6293049 (verdastelo9604) +Yes. That's right. 是的。沒錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #433817 (CK) & #819343 (Martha) +You are a student. 你是學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163562 (cntrational) & #1865769 (egg0073) +You are a student. 您是學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163562 (cntrational) & #1865770 (egg0073) +You are in my way. 你擋住了我的路。 CC-BY 2.0 (France) Attribution: tatoeba.org #1296 (CK) & #836436 (Martha) +You are so stupid. 你真傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1806301 (Spamster) & #6560617 (verdastelo9604) +You can park here. 这里可以停车。 CC-BY 2.0 (France) Attribution: tatoeba.org #61731 (CK) & #8800802 (crescat) +You got here fast. 你來得很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331081 (CK) & #6635896 (verdastelo9604) +You have no fever. 你没发烧。 CC-BY 2.0 (France) Attribution: tatoeba.org #393938 (blay_paul) & #609888 (sarah) +You have to hurry. 您要赶快些。 CC-BY 2.0 (France) Attribution: tatoeba.org #1895734 (CK) & #7768202 (jiangche) +You have to leave. 你們得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #454043 (mamat) & #1740732 (egg0073) +You have to leave. 你得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #454043 (mamat) & #1740733 (egg0073) +You know too much. 你知道得太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331005 (CK) & #5663491 (verdastelo9604) +You made an error. 你犯了个错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #69515 (CK) & #334321 (fucongcong) +You made me laugh. 我被你逗乐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1765123 (alec) & #1762991 (sadhen) +You make me happy. 你讓我快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #63215 (CK) & #834382 (Martha) +You may park here. 这里可以停车。 CC-BY 2.0 (France) Attribution: tatoeba.org #61734 (CK) & #8800802 (crescat) +You may take this. 您可以拿着这个. CC-BY 2.0 (France) Attribution: tatoeba.org #4728192 (paper1n0) & #4687053 (murr) +You must hurry up. 您要赶快些。 CC-BY 2.0 (France) Attribution: tatoeba.org #69497 (CK) & #7768202 (jiangche) +You need to leave. 你必須離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648176 (CK) & #3709595 (egg0073) +You talk too much. 你說太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #240572 (CK) & #793305 (Martha) +You won't need it. 你不會需要它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2274046 (CK) & #6058650 (verdastelo9604) +You work too hard. 你工作太努力了。 CC-BY 2.0 (France) Attribution: tatoeba.org #15877 (CK) & #332949 (fucongcong) +You're very alert. 你真是警惕。 CC-BY 2.0 (France) Attribution: tatoeba.org #5199593 (AlanF_US) & #5613627 (verdastelo9604) +You're very smart. 你很聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #2094574 (MethodGT) & #4264976 (notabene) +You've done a lot. 你做了很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5902928 (CK) & #6309821 (verdastelo9604) +Anyone can do that. 任何人都可以做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #36596 (CK) & #825765 (Martha) +Are you a bachelor? 你是单身吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2762869 (CK) & #4956716 (musclegirlxyp) +Are you busy today? 你今天忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #242434 (CK) & #333561 (fucongcong) +Are you mad at Tom? 你在生汤姆的气吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4620124 (CK) & #4887670 (musclegirlxyp) +Are you still cold? 你还冷吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5853069 (CK) & #7773129 (jiangche) +Are your eyes open? 你睜著眼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3565079 (CK) & #6630021 (verdastelo9604) +Aren't you thirsty? 你不渴嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #240641 (CK) & #7822206 (xjjAstrus) +Be careful with it. 当心它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2047595 (CK) & #4759989 (ryanwoo) +Breakfast is ready. 早饭准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277773 (CK) & #782920 (fucongcong) +Can I see that one? 我能看那個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #66995 (CK) & #833009 (Martha) +Can I see this one? 我能看看這個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54971 (CK) & #834413 (Martha) +Can I use your pen? 我可以用你的筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17354 (CK) & #833035 (Martha) +Can we go back now? 我們現在能回去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3327449 (CK) & #6206743 (verdastelo9604) +Can you forgive me? 可以原谅我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #737331 (CK) & #332443 (fucongcong) +Cars are expensive. 车子很贵。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126518 (CK) & #8511490 (gumblex) +Come along with me. 请跟我来。 CC-BY 2.0 (France) Attribution: tatoeba.org #249620 (CK) & #466246 (fucongcong) +Come along with us. 跟我們一起來吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #433695 (CK) & #824489 (Martha) +Come in, it's open. 进来,门开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725464 (CM) & #5767605 (verdastelo9604) +Come on, try again. 来,再试试看。 CC-BY 2.0 (France) Attribution: tatoeba.org #54262 (CK) & #794047 (fucongcong) +Did they live here? 他們從前住這嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #307237 (CK) & #4262719 (egg0073) +Did you bring them? 你把它们带来了么? CC-BY 2.0 (France) Attribution: tatoeba.org #4843945 (raggione) & #4844741 (sadhen) +Did you check this? 你检查这个了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3408654 (CK) & #5926165 (verdastelo9604) +Did you murder Tom? 是你杀了汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3405319 (CK) & #8714988 (crescat) +Did you tell on me? 你告发我了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8549101 (CM) & #8750725 (cxpadonis) +Do you have a bike? 你有自行車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2739148 (CK) & #9179738 (xjjAstrus) +Do you like apples? 你喜欢苹果吗? CC-BY 2.0 (France) Attribution: tatoeba.org #29617 (CK) & #1323682 (vicch) +Do you like flying? 你喜歡坐飛機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4498056 (CK) & #6056636 (xjjAstrus) +Do you like school? 你們喜歡學校嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1098292 (cntrational) & #1740157 (egg0073) +Do you like school? 您喜歡學校嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1098292 (cntrational) & #1740159 (egg0073) +Do you play soccer? 你踢足球嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70050 (CK) & #908391 (Martha) +Do your gums bleed? 你的牙齦流血嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #263621 (CK) & #4492486 (egg0073) +Does it hurt a lot? 很痛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #52006 (CK) & #803717 (Martha) +Does it taste good? 好吃嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3859431 (CK) & #4061623 (egg0073) +Don't be terrified. 別被嚇壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2190909 (CM) & #2638696 (cienias) +Don't let him down. 别让他失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #1295088 (CK) & #1324868 (vicch) +Don't miss the bus. 不要错过公车。 CC-BY 2.0 (France) Attribution: tatoeba.org #35363 (CK) & #336247 (fucongcong) +Don't talk rubbish. 别胡说。 CC-BY 2.0 (France) Attribution: tatoeba.org #383176 (blay_paul) & #4887669 (musclegirlxyp) +Don't you think so? 你不这么认为吗? CC-BY 2.0 (France) Attribution: tatoeba.org #51058 (CK) & #332629 (fucongcong) +Everybody did that. 每个人都做了那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498050 (CK) & #5691272 (verdastelo9604) +Everybody is alive. 所有人都是活着的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495063 (CK) & #4844971 (pig8322) +Everybody will die. 人固有一死。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497305 (CK) & #5091165 (mirrorvan) +Everyone likes Tom. 大家都喜歡湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2733582 (CK) & #2771134 (cienias) +Everyone was drunk. 所有人都喝醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144766 (Hybrid) & #4148172 (sissima) +Everyone was happy. 每個人都高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #441959 (CK) & #825191 (Martha) +Everything matters. 任何事情都是重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1582224 (al_ex_an_der) & #5102300 (mirrorvan) +Everything's ready. 一切就绪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898382 (CK) & #4970144 (wzhd) +For here, or to go? 內用還是外帶? CC-BY 2.0 (France) Attribution: tatoeba.org #263831 (CK) & #833161 (Martha) +Give me the number. 把那个号码给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #806747 (CM) & #2035087 (Venki) +Give me the report. 给我报告。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151469 (CK) & #5617221 (verdastelo9604) +Give me your phone. 给我你的手机。 CC-BY 2.0 (France) Attribution: tatoeba.org #1845500 (CK) & #5983656 (verdastelo9604) +Go get your helmet. 戴上你的安全帽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2869911 (CK) & #3493405 (egg0073) +Hand me the remote. 把遥控器递给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522624 (erikspen) & #8589622 (tianblr) +Have a good flight. 飞行愉快! CC-BY 2.0 (France) Attribution: tatoeba.org #3428375 (CK) & #333197 (fucongcong) +Have a nice flight. 飞行愉快! CC-BY 2.0 (France) Attribution: tatoeba.org #21295 (CK) & #333197 (fucongcong) +Have you all eaten? 你們吃飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7262709 (CK) & #6057697 (xjjAstrus) +He arrived in time. 他及時趕到。 CC-BY 2.0 (France) Attribution: tatoeba.org #298380 (CK) & #833126 (Martha) +He arrived in time. 他准时来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298380 (CK) & #7768134 (jiangche) +He asked after you. 他問候了你。 CC-BY 2.0 (France) Attribution: tatoeba.org #295645 (CK) & #824509 (Martha) +He called me a cab. 他替我叫了一部計程車。 CC-BY 2.0 (France) Attribution: tatoeba.org #297516 (CK) & #833771 (Martha) +He can drive a car. 他會開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #293898 (CK) & #833094 (Martha) +He can't buy a car. 他不能买车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1054587 (CK) & #8692916 (crescat) +He does speak well. 他真的說得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #298963 (CM) & #834519 (Martha) +He found me a taxi. 他帮我打到一辆出租车。 CC-BY 2.0 (France) Attribution: tatoeba.org #297515 (CK) & #1397014 (mtdot) +He gave him a book. 他給了他一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #465498 (mamat) & #873398 (Martha) +He got off the bus. 他下了公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #292389 (CK) & #4189400 (egg0073) +He has no children. 他沒有孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #284815 (CK) & #832972 (Martha) +He hasn't come yet. 他還沒來。 CC-BY 2.0 (France) Attribution: tatoeba.org #283292 (CK) & #832796 (Martha) +He insured himself. 他給自己投了保險。 CC-BY 2.0 (France) Attribution: tatoeba.org #300512 (CM) & #6105308 (verdastelo9604) +He is a bad driver. 他是個糟糕的司機。 CC-BY 2.0 (France) Attribution: tatoeba.org #293892 (CK) & #6103161 (verdastelo9604) +He is on the radio. 他上电台了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296529 (darinmex) & #812339 (fucongcong) +He is so heartless. 他是这么的无情。 CC-BY 2.0 (France) Attribution: tatoeba.org #71992 (eastasiastudent) & #718419 (Yashanti) +He killed that man. 他殺死了那個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #476182 (CK) & #825157 (Martha) +He lied to my face. 他在我面前撒谎. CC-BY 2.0 (France) Attribution: tatoeba.org #953316 (CK) & #1423529 (asosan) +He loves traveling. 他愛旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #391906 (CK) & #819334 (Martha) +He never said that. 他從來沒說過那個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2166221 (faraway9911) & #2118674 (egg0073) +He plays very well. 他玩得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291858 (CK) & #796905 (fucongcong) +He plays very well. 他弹得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291858 (CK) & #796906 (fucongcong) +He raised his hand. 他舉起他的手。 CC-BY 2.0 (France) Attribution: tatoeba.org #370607 (saeb) & #819480 (Martha) +He returned at six. 他六点回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #761927 (Zifre) & #429099 (fucongcong) +He seems to be ill. 他好像病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #303112 (CM) & #845112 (fucongcong) +He set a precedent. 他開了先河。 CC-BY 2.0 (France) Attribution: tatoeba.org #2184591 (FeuDRenais) & #2177323 (egg0073) +He speaks too fast. 他说话太快了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1317610 (Mutusen) & #4270105 (notabene) +He still loves her. 他仍然爱着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1855178 (Spamster) & #2040337 (sadhen) +He stole her watch. 他偷了她的手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #309356 (CK) & #5862158 (verdastelo9604) +He took a week off. 他休了一周的假。 CC-BY 2.0 (France) Attribution: tatoeba.org #27730 (CK) & #834367 (Martha) +He wants affection. 他要愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #293463 (CM) & #780246 (Martha) +He was alone there. 他獨自在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #290430 (CM) & #778904 (Martha) +He went by bicycle. 他骑自行车去的。 CC-BY 2.0 (France) Attribution: tatoeba.org #298478 (CK) & #334536 (fucongcong) +He went by bicycle. 他騎腳踏車去。 CC-BY 2.0 (France) Attribution: tatoeba.org #298478 (CK) & #759561 (Martha) +He went by bicycle. 他是騎自行車去的。 CC-BY 2.0 (France) Attribution: tatoeba.org #298478 (CK) & #9179740 (xjjAstrus) +He'll wait for you. 他會等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #580465 (FeuDRenais) & #765999 (Martha) +He's a fast walker. 他走路很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #563688 (CK) & #8888278 (crescat) +He's a good person. 他是个好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2368 (CK) & #363983 (fucongcong) +He's a good person. 他是個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2368 (CK) & #780339 (Martha) +He's a little pale. 他有点苍白。 CC-BY 2.0 (France) Attribution: tatoeba.org #997834 (NickC) & #335114 (fucongcong) +He's a meth addict. 他是个吸毒男。 CC-BY 2.0 (France) Attribution: tatoeba.org #1668567 (Spamster) & #2513911 (fenfang557) +He's already a man. 他已经是个男人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1808 (CK) & #502746 (fucongcong) +He's coming closer. 他在靠近。 CC-BY 2.0 (France) Attribution: tatoeba.org #884388 (CM) & #5640772 (verdastelo9604) +He's in a bad mood. 他心情不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1363667 (donkirkby) & #728671 (Martha) +He's my new friend. 他是我新交的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1114166 (Scott) & #4759991 (ryanwoo) +Her hair grew back. 她的頭髮長回來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309635 (CK) & #6145382 (verdastelo9604) +Her skin is smooth. 她的皮膚光滑。 CC-BY 2.0 (France) Attribution: tatoeba.org #309622 (CK) & #892495 (Martha) +Her socks are gray. 她的襪子是灰色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435088 (lukaszpp) & #5780288 (xjjAstrus) +Here is my baggage. 这是我的行李。 CC-BY 2.0 (France) Attribution: tatoeba.org #435096 (lukaszpp) & #481345 (fucongcong) +Hide in the closet. 你藏進櫃子裡去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648129 (CK) & #9046305 (xjjAstrus) +Horses are animals. 馬是動物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1222816 (CK) & #6154357 (xjjAstrus) +How did he find us? 他怎麼找到我們的? CC-BY 2.0 (France) Attribution: tatoeba.org #1787902 (sadhen) & #5526915 (egg0073) +How does this work? 這是怎麼運行的? CC-BY 2.0 (France) Attribution: tatoeba.org #715034 (jakov) & #6630026 (verdastelo9604) +How is the weather? 天氣怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #64158 (CK) & #824719 (Martha) +How is your family? 你家里人都还好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #24081 (CM) & #5097884 (mirrorvan) +How're you feeling? 你感觉如何? CC-BY 2.0 (France) Attribution: tatoeba.org #1885870 (CK) & #5026446 (murr) +I accept the offer. 我接受了报价。 CC-BY 2.0 (France) Attribution: tatoeba.org #46063 (CK) & #804837 (fucongcong) +I agree completely. 我完全同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #32527 (CK) & #926858 (Martha) +I almost never lie. 我幾乎從不說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823045 (CK) & #6119473 (verdastelo9604) +I am a new student. 我是个新生。 CC-BY 2.0 (France) Attribution: tatoeba.org #258823 (CK) & #347055 (fucongcong) +I am an only child. 我是獨生子。 CC-BY 2.0 (France) Attribution: tatoeba.org #256056 (CK) & #926769 (Martha) +I am from Portugal. 我来自葡萄牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1879775 (Asma) & #8463541 (gumblex) +I am not a student. 我不是學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1354298 (bapouy) & #819315 (Martha) +I am not a teacher. 我不是個老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #259070 (CK) & #834329 (Martha) +I am six feet tall. 我六英尺高。 CC-BY 2.0 (France) Attribution: tatoeba.org #72456 (CK) & #926762 (Martha) +I ate french fries. 我吃了炸薯條。 CC-BY 2.0 (France) Attribution: tatoeba.org #7767809 (sharris123) & #6940188 (xjjAstrus) +I bathe once a day. 我每天洗一次澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #523958 (wma) & #678006 (Martha) +I burned the paper. 我燒了紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2632997 (CK) & #2633408 (egg0073) +I can eat anything. 我甚麼都能吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1782754 (Amastan) & #6145402 (verdastelo9604) +I can help you out. 我能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2187749 (Hybrid) & #8215697 (verdastelo9604) +I can wait for you. 我可以等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #64310 (CK) & #918078 (Martha) +I can't believe it! 我没法相信! CC-BY 2.0 (France) Attribution: tatoeba.org #2076 (Swift) & #503099 (fucongcong) +I can't drink milk. 我不可以喝牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1084522 (CK) & #2147732 (egg0073) +I can't drink milk. 我不能喝牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1084522 (CK) & #2147887 (egg0073) +I can't sleep well. 我睡不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #29912 (CK) & #3003775 (egg0073) +I clapped my hands. 我拍手。 CC-BY 2.0 (France) Attribution: tatoeba.org #255618 (CK) & #920090 (Martha) +I didn't mean that. 我沒有那個意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #50248 (CK) & #917931 (Martha) +I didn't tell them. 我沒告訴他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3425631 (AlanF_US) & #8215725 (verdastelo9604) +I didn't want this. 我不想要這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011397 (CK) & #6630013 (verdastelo9604) +I don't fear death. 我不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1111459 (Scott) & #802838 (fucongcong) +I don't have a car. 我沒有汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258401 (CK) & #765266 (Martha) +I don't have a cat. 我没有猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #881861 (papabear) & #407226 (fucongcong) +I don't have a dog. 我没有狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1253474 (Tlustulimu) & #7772409 (jiangche) +I don't like sushi. 我不喜欢寿司。 CC-BY 2.0 (France) Attribution: tatoeba.org #266201 (CK) & #4673807 (McMeao) +I don't sleep well. 我睡不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492536 (CK) & #3003775 (egg0073) +I don't smoke weed. 我不吸大麻。 CC-BY 2.0 (France) Attribution: tatoeba.org #5757605 (CM) & #5911775 (verdastelo9604) +I don't understand. 我不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #376611 (CK) & #409679 (egg0073) +I don't understand. 不明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #376611 (CK) & #4878951 (musclegirlxyp) +I dreamt about you. 我梦到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2022 (Swift) & #503039 (fucongcong) +I drive everywhere. 我去哪里都开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245728 (CK) & #7704623 (leafjensen) +I expect your help. 我期待你的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #17056 (CK) & #825943 (Martha) +I feel comfortable. 我感觉很舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498588 (CK) & #7704616 (leafjensen) +I feel like a rest. 我想休息一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #40025 (CK) & #343975 (fucongcong) +I feel like crying. 我想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #19565 (CK) & #334542 (fucongcong) +I felt comfortable. 我感觉很舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498583 (CK) & #7704616 (leafjensen) +I felt like crying. 我想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #252232 (CK) & #334542 (fucongcong) +I gave Mary a book. 我給了瑪麗一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #255717 (CK) & #835490 (Martha) +I gave you my word. 我和你保证。 CC-BY 2.0 (France) Attribution: tatoeba.org #2173233 (Hybrid) & #8765059 (crescat) +I give you my word. 我向你保证。 CC-BY 2.0 (France) Attribution: tatoeba.org #1786 (CK) & #502727 (fucongcong) +I had a lot of fun. 我玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #503863 (CK) & #846445 (Martha) +I had him write it. 我要他寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #260310 (U2FS) & #887834 (Martha) +I have few friends. 我朋友很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #324366 (CK) & #4265094 (notabene) +I have lost my cap. 我把帽子弄丟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261717 (CK) & #8352680 (xjjAstrus) +I have lost my cap. 我的帽子丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261717 (CK) & #9012242 (jacintoo) +I have lost my pen. 我弄丟了我的筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #255576 (Archibald) & #1960203 (egg0073) +I have to call Tom. 我得给汤姆打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360440 (CK) & #5595194 (verdastelo9604) +I have to paint it. 我必須把它漆上油漆。 CC-BY 2.0 (France) Attribution: tatoeba.org #441953 (CK) & #835792 (Martha) +I have to say this. 我得说这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360567 (CK) & #5670780 (verdastelo9604) +I heard him go out. 我聽到他出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283847 (CK) & #835547 (Martha) +I hope we find Tom. 我希望我们能找到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887418 (CK) & #4970096 (wzhd) +I know her address. 我知道她的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #309397 (CK) & #782136 (fucongcong) +I know the feeling. 我知道那種感覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #714322 (CM) & #714321 (egg0073) +I know the problem. 我知道问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376148 (CK) & #5691245 (verdastelo9604) +I know those girls. 我認識那些女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #395051 (CK) & #832438 (Martha) +I know those women. 我認識那些女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #395050 (CK) & #819451 (Martha) +I know what he did. 我知道他做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1031147 (Brian255) & #846749 (fucongcong) +I know what to say. 我知道要说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376339 (CK) & #5856793 (verdastelo9604) +I like L.A. better. 我更喜欢洛杉矶。 CC-BY 2.0 (France) Attribution: tatoeba.org #72205 (CK) & #1416257 (sadhen) +I like candlelight. 我很喜欢烛光。 CC-BY 2.0 (France) Attribution: tatoeba.org #1425 (CK) & #335068 (fucongcong) +I like mathematics. 我喜欢数学。 CC-BY 2.0 (France) Attribution: tatoeba.org #435453 (CK) & #708143 (CLARET) +I like mathematics. 我喜歡數學。 CC-BY 2.0 (France) Attribution: tatoeba.org #435453 (CK) & #780286 (Martha) +I like short poems. 我喜歡短詩。 CC-BY 2.0 (France) Attribution: tatoeba.org #259390 (CK) & #3148931 (cienias) +I like that person. 我喜欢那个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1256149 (stb) & #1749861 (sadhen) +I like to eat meat. 我喜歡吃肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #5146697 (CarpeLanam) & #6057705 (xjjAstrus) +I looked around me. 我看了看周圍。 CC-BY 2.0 (France) Attribution: tatoeba.org #321857 (CK) & #780264 (Martha) +I lost my umbrella. 我丢了我的伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #257873 (CK) & #332434 (fucongcong) +I love apple juice. 我愛蘋果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823250 (CK) & #5548507 (egg0073) +I made other plans. 我另有计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #2380415 (CK) & #5617206 (verdastelo9604) +I met an old woman. 我遇见了一位老妇人。 CC-BY 2.0 (France) Attribution: tatoeba.org #256070 (CK) & #465033 (fucongcong) +I miss her so much. 我那么想念她。 CC-BY 2.0 (France) Attribution: tatoeba.org #307995 (CK) & #408263 (fucongcong) +I miss my children. 我想念我的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387237 (CK) & #5548482 (egg0073) +I miss you so much. 我如此想念你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71535 (CK) & #1313752 (vicch) +I miss you so much. 好想見到你 CC-BY 2.0 (France) Attribution: tatoeba.org #71535 (CK) & #5544966 (sodajuice) +I missed my chance. 我錯過了我的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387243 (CK) & #1959996 (egg0073) +I need your advice. 我需要你的意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249 (CK) & #1772680 (sadhen) +I plan to go there. 我打算去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #517425 (CK) & #824353 (Martha) +I saw him run away. 我看見他逃跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #28945 (CK) & #835813 (Martha) +I saw what Tom did. 我見識到了湯姆的作為。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887644 (CK) & #8679966 (shou) +I saw what Tom did. 我看到湯姆做什麼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887644 (CK) & #8679967 (shou) +I slept on the bus. 我在公交车上睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4077314 (CK) & #5574496 (verdastelo9604) +I swim once a week. 我每周游一次泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #28958 (CK) & #429111 (fucongcong) +I think he'll come. 我想他会来的吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #304557 (CK) & #405729 (fucongcong) +I think he's happy. 我想他很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #395310 (CK) & #781199 (Martha) +I tried not to cry. 我努力忍住哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2775425 (Hybrid) & #8696271 (crescat) +I wake up at eight. 我八點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #7798499 (sharris123) & #6486887 (xjjAstrus) +I walked to school. 我走路到學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #320498 (CK) & #838611 (Martha) +I want this camera. 我要這台相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #411319 (CK) & #824545 (Martha) +I want to go there. 我想去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011409 (CK) & #834662 (Martha) +I wanted red shoes. 我要紅色的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #259018 (CK) & #771535 (Martha) +I was at home then. 那个时候,我在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #46975 (CK) & #1468432 (sadhen) +I was born in 1988. 我生于1988年。 CC-BY 2.0 (France) Attribution: tatoeba.org #753316 (CK) & #1323698 (vicch) +I was expecting it! 我一直在期待着! CC-BY 2.0 (France) Attribution: tatoeba.org #2355 (CK) & #1776620 (sadhen) +I was nervous, too. 我也紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500005 (CK) & #5555124 (verdastelo9604) +I was quite hungry. 我很饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548838 (CK) & #7768272 (jiangche) +I was very relaxed. 我很放鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5859330 (CK) & #6678453 (verdastelo9604) +I will go on ahead. 我會繼續前進。 CC-BY 2.0 (France) Attribution: tatoeba.org #259040 (CK) & #835489 (Martha) +I wish I had a car. 但願我有一輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #265406 (CK) & #851488 (Martha) +I wish I were rich. 但願我很有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #18531 (CK) & #835353 (Martha) +I wish you success. 祝你成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548825 (CK) & #1325321 (vicch) +I'd better go home. 我回家比較好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548818 (CK) & #8215728 (verdastelo9604) +I'd like your help. 我想請你們幫個忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3951620 (gone2bacolod) & #3947651 (egg0073) +I'll be seeing you. 我會見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #54010 (CK) & #824503 (Martha) +I'll call Tom back. 我会叫汤姆回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548798 (CK) & #5613708 (verdastelo9604) +I'll call you back. 我会给你回电话的。 CC-BY 2.0 (France) Attribution: tatoeba.org #508782 (kebukebu) & #8734985 (crescat) +I'll get some help. 我会需要帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548786 (CK) & #5780558 (verdastelo9604) +I'll keep doing it. 我要一直做下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5166553 (CK) & #5613628 (verdastelo9604) +I'll see you later. 等會兒見。 CC-BY 2.0 (France) Attribution: tatoeba.org #32706 (CK) & #771643 (Martha) +I'll think it over. 我會考慮一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #241025 (CK) & #793306 (Martha) +I'm a little tired. 我有點累。 CC-BY 2.0 (France) Attribution: tatoeba.org #258671 (CK) & #3472407 (egg0073) +I'm afraid of dogs. 我怕狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396177 (CK) & #1672004 (sadhen) +I'm as tall as you. 我跟你一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #252720 (CK) & #918542 (Martha) +I'm cooking dinner. 我准备晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #6532354 (CK) & #1424176 (sadhen) +I'm from Singapore. 我是从新加坡来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #52481 (CK) & #746065 (fucongcong) +I'm glad it's over. 我很高興它結束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548729 (CK) & #6977797 (verdastelo9604) +I'm going to check. 我正要去签到。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280327 (CK) & #4845039 (pig8322) +I'm good at skiing. 我擅長滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #253954 (CK) & #941117 (Martha) +I'm good at soccer. 我擅長足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #253857 (CK) & #918060 (Martha) +I'm good at tennis. 我擅長網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #255082 (CK) & #833218 (Martha) +I'm losing my grip. 我失去了控制。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548703 (CK) & #3779054 (e78xx_xxx) +I'm making a movie. 我在製作電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548702 (CK) & #6583881 (verdastelo9604) +I'm not inflexible. 我不是死板的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330425 (CK) & #8606825 (slo_oth) +I'm not interested. 我不感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1871847 (Spamster) & #1067295 (cranewang) +I'm not quite well. 我有點不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #253995 (CK) & #918038 (Martha) +I'm on the balcony. 我在陽臺上。 CC-BY 2.0 (France) Attribution: tatoeba.org #33902 (CK) & #9037053 (xjjAstrus) +I'm ready to leave. 我准备好出发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1228870 (CK) & #1314203 (vicch) +I'm too busy to go. 我太忙了不能去。 CC-BY 2.0 (France) Attribution: tatoeba.org #508781 (kebukebu) & #769697 (Martha) +I've gained weight. 我增加了體重。 CC-BY 2.0 (France) Attribution: tatoeba.org #822384 (anassara) & #823027 (Martha) +I've got to go now. 我現在得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #321699 (CK) & #835746 (Martha) +I've gotten better. 我已經變得好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435786 (CK) & #819455 (Martha) +I've lost my watch. 我把我的表丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2805560 (Deerhound) & #7771926 (jiangche) +I've never met her. 我以前从没见过她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394821 (CK) & #333154 (fucongcong) +I've never met him. 我從來沒有見過他。 CC-BY 2.0 (France) Attribution: tatoeba.org #403383 (CK) & #770322 (Martha) +Ignorance is bliss. 無知就是幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #276998 (Zifre) & #769694 (Martha) +Is everybody ready? 所有人都准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2094790 (CK) & #5663533 (verdastelo9604) +Is it large enough? 這麼大的夠用嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #45521 (CK) & #483836 (moonoops) +Is she your mother? 她是你媽媽嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #310268 (CK) & #884211 (Martha) +Is something wrong? 有什么不对吗? CC-BY 2.0 (France) Attribution: tatoeba.org #323844 (CK) & #343380 (fucongcong) +Is this book yours? 這是你的書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56970 (CK) & #715737 (egg0073) +Is this everything? 这就是全部吗? CC-BY 2.0 (France) Attribution: tatoeba.org #843229 (parheliu) & #5780615 (verdastelo9604) +Is this your apple? 這是你們的蘋果嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7825172 (sharris123) & #6047121 (xjjAstrus) +It came to nothing. 这没有结果。 CC-BY 2.0 (France) Attribution: tatoeba.org #42070 (CM) & #336587 (fucongcong) +It is easy to swim. 游泳很簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #26405 (CK) & #772151 (Martha) +It is really cheap. 它真的很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1308551 (shanghainese) & #793263 (Martha) +It just gets worse. 它变糟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723440 (CM) & #5842667 (verdastelo9604) +It was just a joke. 我这么说只是开个玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #40063 (CK) & #1314327 (vicch) +It wasn't my fault. 那不是我的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1064331 (CK) & #4639497 (egg0073) +It's about to rain. 天快要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456201 (lukaszpp) & #335128 (fucongcong) +It's fun to travel. 旅行是令人快乐的。 CC-BY 2.0 (France) Attribution: tatoeba.org #325560 (CK) & #7771681 (jiangche) +It's fun to travel. 旅行是乐事。 CC-BY 2.0 (France) Attribution: tatoeba.org #325560 (CK) & #7771682 (jiangche) +It's going to rain. 天快要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40588 (CK) & #335128 (fucongcong) +It's gotten better. 它會好轉的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435784 (CK) & #825913 (Martha) +It's not important. 這個不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #2322 (CK) & #59 (fucongcong) +It's not important. 这不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #2322 (CK) & #1415838 (sadhen) +It's not practical. 这不实用。 CC-BY 2.0 (France) Attribution: tatoeba.org #456233 (lukaszpp) & #2004699 (sadhen) +It's pretty simple. 它真簡单。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249180 (CK) & #8215703 (verdastelo9604) +It's snowing today. 今天下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #593252 (CK) & #776959 (Martha) +It's time to leave. 是时候离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #247561 (CK) & #8768758 (slo_oth) +It's too expensive. 这太贵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #276955 (CK) & #7771677 (jiangche) +Just let Tom speak. 就讓湯姆說吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183320 (CK) & #6635875 (verdastelo9604) +Keep off the grass. 不要踩草地。 CC-BY 2.0 (France) Attribution: tatoeba.org #265288 (CK) & #6959856 (verdastelo9604) +Knowledge is power. 知识就是力量。 CC-BY 2.0 (France) Attribution: tatoeba.org #277046 (LowMemory) & #1314409 (vicch) +Leave my car alone. 離我的車遠一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #321506 (CK) & #824575 (Martha) +Leave my car alone. 不要碰我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #321506 (CK) & #824576 (Martha) +Let me handle this. 讓我來處理。 CC-BY 2.0 (France) Attribution: tatoeba.org #25537 (CK) & #793249 (Martha) +Let me have a look. 讓我看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #425743 (blay_paul) & #819468 (Martha) +Let's be realistic. 現實點吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007801 (CK) & #6091801 (verdastelo9604) +Let's get divorced. 我们离婚吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140075 (CK) & #7773203 (jiangche) +Let's get off here. 我们在这里下车吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #61894 (CK) & #332792 (fucongcong) +Let's not watch TV. 我們不要看電視吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #39157 (CK) & #825927 (Martha) +Let's take it easy. 讓我們放輕鬆吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #20346 (CK) & #785092 (Martha) +Let's take the bus. 讓我們坐公共汽車去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1357020 (sacredceltic) & #826293 (Martha) +Look at my new car. 看看我的新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #321518 (CK) & #835633 (Martha) +Look at that house. 看那个房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #68533 (CK) & #336236 (fucongcong) +Look at that smoke. 快看那個煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #68563 (CK) & #809881 (Martha) +Look what happened. 看看發生了什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898341 (CK) & #5344341 (egg0073) +Love doesn't exist. 愛不存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #818295 (CM) & #1236375 (tsayng) +May I open the box? 我能打开盒子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #282657 (CK) & #390521 (fucongcong) +May I pay by check? 我可以用支票付吗? CC-BY 2.0 (France) Attribution: tatoeba.org #267608 (CK) & #332454 (fucongcong) +May I run with you? 我可以跟你一起跑嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27683 (CK) & #834632 (Martha) +Maybe you're right. 也许您有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #70705 (CK) & #7768335 (jiangche) +My hand was burned. 我的手烧伤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085486 (Airvian) & #5085551 (Jubilee11) +My legs still hurt. 我的腿还是很痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #250648 (CK) & #392264 (fucongcong) +My room faces east. 我的房間面向東邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #251788 (CM) & #788834 (Martha) +My stomach is full. 我的胃是脹滿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #64037 (CK) & #826113 (Martha) +No one can help me. 没有人能帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #40350 (CK) & #429067 (fucongcong) +No one will see us. 沒有人會看到我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891767 (CK) & #4061450 (egg0073) +Nobody can help me. 没有人能帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898298 (CK) & #429067 (fucongcong) +Nobody can stop me! 没人能阻止我! CC-BY 2.0 (France) Attribution: tatoeba.org #276525 (CK) & #541032 (biglion) +Nobody was injured. 沒有人受傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #62608 (CK) & #825989 (Martha) +Nobody watches her. 谁也没在看她。 CC-BY 2.0 (France) Attribution: tatoeba.org #737153 (Martha) & #7767591 (jiangche) +Nothing is missing. 什么也没少。 CC-BY 2.0 (France) Attribution: tatoeba.org #264932 (Eldad) & #794234 (fucongcong) +Now it is official. 现在它是官方的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1244011 (CM) & #5900363 (verdastelo9604) +Now, wait a second. 現在等一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3563821 (CK) & #6147564 (verdastelo9604) +Obey your teachers. 要听老师的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1334379 (CK) & #1468439 (sadhen) +Oh! That's too bad. 哦!那太糟糕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433723 (CK) & #825974 (Martha) +Please get dressed. 请穿衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #28138 (CK) & #819702 (fucongcong) +Please let us know. 請讓我們知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #64230 (CK) & #4742029 (egg0073) +Please sing a song. 請唱一首歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #27828 (CK) & #6936228 (verdastelo9604) +Put the book there. 把書放在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149075 (irrationale) & #759616 (Martha) +Put your guns down. 放下你的枪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648059 (CK) & #4844991 (pig8322) +Saturn is a planet. 土星是一顆行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156304 (Kiwi) & #6961296 (xjjAstrus) +She almost drowned. 她差点就溺水了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313091 (CK) & #8703962 (crescat) +She cried bitterly. 她痛哭了起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388696 (CK) & #819349 (Martha) +She cried bitterly. 她痛哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #388696 (CK) & #825171 (Martha) +She has no enemies. 她没有敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #751048 (sctld) & #343461 (fucongcong) +She is my daughter. 她是我女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #724404 (CM) & #1428124 (sadhen) +She is very clever. 她很聰明。 CC-BY 2.0 (France) Attribution: tatoeba.org #497123 (CK) & #819484 (Martha) +She is very pretty. 她很可爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #311741 (CK) & #796881 (fucongcong) +She loves children. 她愛孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #512669 (CK) & #832934 (Martha) +She made me a cake. 她为我做了一个蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #314146 (CK) & #2394583 (fenfang557) +She needs our help. 她需要我們的幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #674487 (yessoos) & #924340 (Martha) +She put on her hat. 她戴上了她的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #316983 (CK) & #332817 (fucongcong) +She sat next to me. 她坐在我旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #314287 (CK) & #343957 (fucongcong) +She speaks Chinese. 她讲中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #462394 (lukaszpp) & #528398 (biglion) +She was in a hurry. 她在趕時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #388619 (CK) & #840790 (Martha) +She was making tea. 她正在泡茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #310632 (CK) & #408498 (fucongcong) +She won everything. 她贏得一切了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1440369 (CM) & #1440479 (egg0073) +She's Tom's sister. 她是Tom的姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #311826 (CK) & #1523966 (egg0073) +She's Tom's sister. 她是Tom的姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #311826 (CK) & #1523967 (egg0073) +She's just a child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1680788 (aka_aj) & #884731 (Tajfun) +She's my classmate. 她是我的同學。 CC-BY 2.0 (France) Attribution: tatoeba.org #321453 (CK) & #825761 (Martha) +She's only a child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #885708 (Trailsend) & #884731 (Tajfun) +Show me an example. 给我个例子。 CC-BY 2.0 (France) Attribution: tatoeba.org #395402 (CK) & #490074 (fucongcong) +Somebody is eating. 有人在吃东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1120818 (cntrational) & #1192415 (sadhen) +Stay here with Tom. 留在这和汤姆在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860606 (CK) & #9178010 (xiaohong) +Stay off the grass. 不要走在草地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1538934 (SHamp) & #766952 (Martha) +Stop joking around. 不要隨便開玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #433969 (CK) & #781518 (Martha) +Stop joking around. 別開玩笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433969 (CK) & #826002 (Martha) +Tell Tom I'm sorry. 告诉汤姆我很抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3199837 (CK) & #8731999 (crescat) +Tell me what to do. 告訴我該做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #24758 (CK) & #844619 (Martha) +That is intriguing. 那真有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1379 (CK) & #1427011 (asosan) +That is our school. 那是我们的学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #67053 (CK) & #336241 (fucongcong) +That job paid well. 这份工作工资很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818615 (CK) & #8591220 (easononizuka) +That river is long. 那條河流很長。 CC-BY 2.0 (France) Attribution: tatoeba.org #2782490 (CK) & #8387372 (wangchou) +That was years ago. 那是好幾年前。 CC-BY 2.0 (France) Attribution: tatoeba.org #442962 (CK) & #826304 (Martha) +That's a good idea! 真是个好主意! CC-BY 2.0 (France) Attribution: tatoeba.org #1568 (CK) & #334422 (fucongcong) +That's a good idea. 那是一個好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #442130 (CK) & #824610 (Martha) +That's a good plan. 那是一個很好的計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #442129 (CK) & #824538 (Martha) +That's a nice coat. 那是一件不錯的大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #66766 (CK) & #824512 (Martha) +That's no big deal. 那没什么大不了的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3315227 (CK) & #5091320 (mirrorvan) +That's not my wife. 这不是我的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1879781 (Asma) & #7768196 (jiangche) +That's really nice. 真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251234 (CK) & #5576794 (verdastelo9604) +That's what I hope. 我希望如此。 CC-BY 2.0 (France) Attribution: tatoeba.org #5431160 (CK) & #333103 (fucongcong) +That's what I like. 我就喜欢它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732882 (CK) & #5650426 (verdastelo9604) +That's what I want. 那就是我想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1897826 (CK) & #6109333 (verdastelo9604) +The area was quiet. 這地區很安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #433994 (CK) & #825936 (Martha) +The boy eats bread. 這個男孩吃麵包。 CC-BY 2.0 (France) Attribution: tatoeba.org #767891 (marloncori) & #770266 (Martha) +The car broke down. 汽车发生故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46829 (CK) & #336112 (fucongcong) +The car hit a wall. 那辆车撞到墙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6474300 (CM) & #8591298 (easononizuka) +The coffee is cold. 咖啡是冷的。 CC-BY 2.0 (France) Attribution: tatoeba.org #462654 (lukaszpp) & #466155 (fucongcong) +The crow flew away. 這隻烏鴉飛走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #49598 (CK) & #819386 (Martha) +The danger is over. 危險已過去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3226383 (CK) & #6628665 (verdastelo9604) +The glass is dirty. 玻璃髒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2002540 (bichodebola) & #6111973 (verdastelo9604) +The lid won't open. 這蓋子打不開。 CC-BY 2.0 (France) Attribution: tatoeba.org #7818253 (sharris123) & #759529 (Martha) +The light is green. 現在是綠燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #3170676 (CK) & #3718214 (egg0073) +The lock is broken. 锁坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268561 (CK) & #616211 (sarah) +The plane is ready. 飞机准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2685785 (Joseph) & #5900407 (verdastelo9604) +The plane took off. 飛機起飛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #947459 (CM) & #9179801 (xjjAstrus) +The problem is Tom. 問題是湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819315 (CK) & #6109342 (verdastelo9604) +The summer is over. 夏天过去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24342 (CK) & #7774794 (jiangche) +The tire leaks air. 轮胎漏气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41125 (CK) & #336599 (fucongcong) +There goes our bus. 我们的车走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71721 (CK) & #346465 (fucongcong) +There's no mistake. 没有错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #525684 (CK) & #787341 (fucongcong) +These dogs are big. 這些狗很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #55306 (CK) & #826212 (Martha) +These must be fake. 這些一定是假的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824779 (CK) & #6103150 (verdastelo9604) +They all have come. 他们全都来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306081 (CK) & #5091726 (mirrorvan) +They didn't listen. 他们没听。 CC-BY 2.0 (France) Attribution: tatoeba.org #1540367 (Zaghawa) & #1541732 (sadhen) +They didn't pay me. 他们没付我钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2718422 (Hybrid) & #7772586 (jiangche) +They didn't see us. 他们没看见我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736047 (CK) & #5640716 (verdastelo9604) +They don't like me. 他們不喜歡我。 CC-BY 2.0 (France) Attribution: tatoeba.org #305363 (CK) & #6877962 (verdastelo9604) +They forced me out. 他们迫使我出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728840 (CM) & #5911612 (verdastelo9604) +They live in peace. 他们过着和平的生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #1680667 (aka_aj) & #333466 (fucongcong) +They never give up. 他们永不言弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1228001 (CM) & #1777922 (sunnywqing) +They obeyed orders. 他们服从了命令。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821728 (CK) & #9316497 (slo_oth) +They were so young. 他們是那麼年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494993 (CK) & #6059539 (verdastelo9604) +They will not pass! 他們不會通過的! CC-BY 2.0 (France) Attribution: tatoeba.org #816864 (Cindrogriza) & #816874 (Martha) +They work together. 他们在一起工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243529 (CK) & #6860670 (verdastelo9604) +This book is small. 这本书小。 CC-BY 2.0 (France) Attribution: tatoeba.org #56916 (CK) & #5869913 (verdastelo9604) +This book is yours. 這本書是你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #236799 (CK) & #771387 (Martha) +This book was easy. 這本書很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #515562 (CK) & #727798 (Martha) +This chair is ugly. 這把椅子很醜。 CC-BY 2.0 (France) Attribution: tatoeba.org #51276 (CK) & #793289 (Martha) +This chair is ugly. 這把椅子很難看。 CC-BY 2.0 (France) Attribution: tatoeba.org #51276 (CK) & #9054582 (xjjAstrus) +This clock is mine. 這個錶是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1768523 (CK) & #6635853 (verdastelo9604) +This fork is dirty. 這把叉子是髒的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2516418 (CK) & #9135870 (xjjAstrus) +This house is mine. 這房子是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60147 (CK) & #718459 (egg0073) +This is Mary's dog. 這是瑪麗的狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #55826 (CK) & #825956 (Martha) +This is a hospital. 这是医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #61614 (adjusting) & #5072292 (musclegirlxyp) +This is all I know. 這是我所知道的。 CC-BY 2.0 (France) Attribution: tatoeba.org #410634 (CK) & #839577 (Martha) +This is impossible. 这不可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #2233697 (CK) & #482716 (biglion) +This is just wrong. 這就是錯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2900700 (Hybrid) & #6624713 (verdastelo9604) +This is my bedroom. 這是我的臥室。 CC-BY 2.0 (France) Attribution: tatoeba.org #2648007 (CK) & #9035485 (xjjAstrus) +This is my bicycle. 这是我的自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #55617 (CK) & #334532 (fucongcong) +This is quite good. 这可真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3393276 (CK) & #5963986 (verdastelo9604) +This is surprising. 這是令人吃驚的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433508 (CK) & #824528 (Martha) +This isn't a tiger. 这不是老虎。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492656 (CK) & #7768251 (jiangche) +This isn't for you. 這不是給你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898077 (CK) & #6938375 (verdastelo9604) +This story is true. 这个故事是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #57256 (CK) & #1749767 (sadhen) +Those are my pants. 那些是我的褲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #410776 (CK) & #824629 (Martha) +Those dogs are big. 那些狗都很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #67020 (CK) & #825942 (Martha) +Tom abandoned hope. 湯姆放棄了希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #3436596 (CK) & #6058531 (verdastelo9604) +Tom asked for food. 汤姆要食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955921 (CK) & #5663505 (verdastelo9604) +Tom began laughing. 湯姆開始笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723767 (CM) & #8679924 (shou) +Tom died in battle. 湯姆在戰鬥中死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647966 (CK) & #6103232 (verdastelo9604) +Tom follows orders. 汤姆服从命令。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236285 (CK) & #5091191 (mirrorvan) +Tom freed the bird. Tom將鳥放走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1419090 (Spamster) & #3710596 (egg0073) +Tom got ripped off. 汤姆被宰了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093933 (CK) & #8791846 (slo_oth) +Tom got ripped off. 汤姆被敲竹杠了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093933 (CK) & #8791847 (slo_oth) +Tom has an old car. 湯姆有輛舊車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548602 (CK) & #6134994 (verdastelo9604) +Tom has no manners. Tom没有礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #36992 (CK) & #346464 (fucongcong) +Tom has short hair. 汤姆(Tom)留短发 CC-BY 2.0 (France) Attribution: tatoeba.org #1025311 (CK) & #8500203 (black333) +Tom has three cats. Tom有三隻貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025301 (CK) & #2168513 (egg0073) +Tom is a good cook. 汤姆是个好厨师。 CC-BY 2.0 (France) Attribution: tatoeba.org #36993 (CK) & #813623 (fucongcong) +Tom is always late. 湯姆總是遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #742029 (CK) & #6093378 (verdastelo9604) +Tom is coming, too. 汤姆也来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2400190 (CK) & #7774789 (jiangche) +Tom is crying, too. 湯姆也在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2400193 (CK) & #6073889 (verdastelo9604) +Tom is going crazy. 汤姆要发疯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273184 (CK) & #5613705 (verdastelo9604) +Tom is intoxicated. 汤姆醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1555325 (Spamster) & #5142201 (musclegirlxyp) +Tom is more active. 汤姆更活跃。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494968 (CK) & #5694467 (verdastelo9604) +Tom is quite fussy. 汤姆相当挑剔。 CC-BY 2.0 (France) Attribution: tatoeba.org #3123211 (CK) & #8589144 (easononizuka) +Tom is serious now. 汤姆现在是认真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273491 (CK) & #5983576 (verdastelo9604) +Tom is still upset. 湯姆還是不安。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273526 (CK) & #6633887 (verdastelo9604) +Tom is there alone. Tom獨自在那。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273557 (CK) & #3739140 (egg0073) +Tom isn't an angel. 汤姆不是天使。 CC-BY 2.0 (France) Attribution: tatoeba.org #5082269 (zvzuibqx) & #4971561 (wzhd) +Tom learned French. 汤姆学习了法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #6685084 (CK) & #8727846 (crescat) +Tom likes football. 汤姆喜欢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #6910028 (CK) & #8635730 (ZeroAurora) +Tom likes swimming. 湯姆喜歡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #37185 (CK) & #826152 (Martha) +Tom made fun of me. 汤姆拿我开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415391 (CK) & #5911610 (verdastelo9604) +Tom runs very fast. 湯姆跑得快。 CC-BY 2.0 (France) Attribution: tatoeba.org #37231 (CK) & #832766 (Martha) +Tom said he'd wait. 湯姆說他會等。 CC-BY 2.0 (France) Attribution: tatoeba.org #6358101 (CK) & #6682288 (verdastelo9604) +Tom studied French. 汤姆学习了法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #6274657 (CK) & #8727846 (crescat) +Tom teaches French. 湯姆教法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451674 (CK) & #6325095 (verdastelo9604) +Tom waited outside. 湯姆在外面等。 CC-BY 2.0 (France) Attribution: tatoeba.org #2238858 (CK) & #6309836 (verdastelo9604) +Tom wanted revenge. 湯姆想報仇。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092536 (CK) & #6093363 (verdastelo9604) +Tom wants to speak. 汤姆想说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011447 (CK) & #5613702 (verdastelo9604) +Tom wasn't thirsty. 汤姆不渴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3099792 (CK) & #5630451 (verdastelo9604) +Tom waved his hand. 汤姆挥手了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6663180 (CK) & #5102356 (mirrorvan) +Tom's door is open. 湯姆的門開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #4667132 (CK) & #6309826 (verdastelo9604) +Turn off the light. 關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #279153 (CK) & #771563 (Martha) +Wait just a moment. 就等一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #435746 (CK) & #825124 (Martha) +Was her story true? 她的故事是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #430440 (FeuDRenais) & #782198 (fucongcong) +Was his story true? 他的故事是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #430439 (FeuDRenais) & #782197 (fucongcong) +We all fell asleep. 我们都睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3046475 (Whitney) & #3032000 (sadhen) +We can't talk here. 我们不能在这里谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954967 (CK) & #5900366 (verdastelo9604) +We didn't break in. 我们没有打断。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273834 (CK) & #5576795 (verdastelo9604) +We don't have time. 我们没时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #449441 (Swift) & #335818 (fucongcong) +We don't trust Tom. 我们不相信汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273779 (CK) & #5819697 (verdastelo9604) +We have many goals. 我們有許多目標。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493716 (CK) & #4504498 (egg0073) +We have three kids. 我們有三個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493715 (CK) & #4504500 (egg0073) +We kept them quiet. 我們讓他們保持安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #249254 (CK) & #826282 (Martha) +We know everything. 我们什么都知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241137 (CK) & #5862122 (verdastelo9604) +We know our rights. 我们知道我们的权利。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548505 (CK) & #5963985 (verdastelo9604) +We love each other. 我們彼此相愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #247916 (CK) & #803785 (Martha) +We love our school. 我們愛我們的學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500880 (CK) & #6309818 (verdastelo9604) +We need assistance. 我們需要幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #7781088 (sharris123) & #6284531 (xjjAstrus) +We ran in the park. 我们在公园里跑了步。 CC-BY 2.0 (France) Attribution: tatoeba.org #509218 (blay_paul) & #808263 (fucongcong) +We should sit down. 我們應該坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #361509 (Hautis) & #894076 (Martha) +We studied English. 我们学了英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #262905 (CK) & #401037 (fucongcong) +We want to go home. 我們想回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011453 (CK) & #6101307 (verdastelo9604) +We want to hear it. 我们想听听。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011454 (CK) & #5856753 (verdastelo9604) +We're almost broke. 我們快破產了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5924926 (Karl69Marx) & #5924727 (xjjAstrus) +We're conservative. 我们很保守。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202680 (CK) & #4265158 (notabene) +We're eating bread. 我们在吃面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #8866581 (CK) & #8929172 (crescat) +We're having lunch. 我們在吃午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #3311061 (CK) & #3984806 (tsayng) +We're the same age. 他和我同岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #249118 (Shiawase) & #335118 (fucongcong) +We've been tricked. 我们被耍了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241663 (CK) & #5611554 (verdastelo9604) +We've forgiven you. 我们已经原谅你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241673 (CK) & #2241840 (sadhen) +Were you a soldier? 你是士兵嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2647822 (CK) & #6064661 (verdastelo9604) +What a lot of pens! 那么多钢笔! CC-BY 2.0 (France) Attribution: tatoeba.org #1913100 (CK) & #5552572 (verdastelo9604) +What a strong wind! 多麼強的風啊! CC-BY 2.0 (France) Attribution: tatoeba.org #435181 (CK) & #825920 (Martha) +What an idiot I am! 我真是個白痴! CC-BY 2.0 (France) Attribution: tatoeba.org #410599 (CK) & #845974 (Martha) +What are you after? 你想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2852038 (CK) & #333098 (fucongcong) +What are you after? 你想要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2852038 (CK) & #874392 (Martha) +What are you doing? 你做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16492 (CK) & #826252 (Martha) +What are you doing? 你在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16492 (CK) & #6057717 (xjjAstrus) +What are you doing? 搞什么啊? CC-BY 2.0 (France) Attribution: tatoeba.org #16492 (CK) & #8591235 (easononizuka) +What awful weather! 多么糟糕的天气啊! CC-BY 2.0 (France) Attribution: tatoeba.org #1475903 (niceguydave) & #8727951 (crescat) +What do tigers eat? 老虎吃什么东西? CC-BY 2.0 (France) Attribution: tatoeba.org #1870095 (Amastan) & #7774824 (jiangche) +What happened here? 这儿发生了什么事? CC-BY 2.0 (France) Attribution: tatoeba.org #51011 (fucongcong) & #344411 (fucongcong) +What happened then? 然後發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #816062 (afeinberg) & #816892 (Martha) +What is over there? 那是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #25235 (CK) & #465906 (fucongcong) +What just happened? 刚刚发生了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1628159 (Spamster) & #3044037 (sadhen) +What will you have? 你将拥有什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16265 (CK) & #2007060 (sadhen) +What will you make? 你會做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #511883 (CK) & #825189 (Martha) +What're you eating? 在吃什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1830493 (CK) & #4879262 (musclegirlxyp) +What're you saying? 你在說什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #433498 (CK) & #825763 (Martha) +What's in this bag? 這個袋子裡是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #450136 (CK) & #825906 (Martha) +What's up with you? 你怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #2193749 (Hybrid) & #7771865 (jiangche) +What's your advice? 你有什么建议呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3737754 (CK) & #1746105 (sadhen) +When does it begin? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #42781 (CK) & #332585 (fucongcong) +When does it start? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #1125757 (CM) & #332585 (fucongcong) +When was Tom fired? 湯姆什麼時候被開除的? CC-BY 2.0 (France) Attribution: tatoeba.org #4498705 (CK) & #4794656 (umidake) +When was Tom fired? 湯姆什麼時候被解雇的? CC-BY 2.0 (France) Attribution: tatoeba.org #4498705 (CK) & #4794659 (umidake) +When will it begin? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #707328 (papabear) & #332585 (fucongcong) +When will it start? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #4866983 (CK) & #332585 (fucongcong) +Where are my books? 我的書在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #1495883 (CK) & #1561711 (egg0073) +Where are you from? 你從哪裡來? CC-BY 2.0 (France) Attribution: tatoeba.org #370703 (saeb) & #9209961 (xjjAstrus) +Where do you study? 你在哪讀書? CC-BY 2.0 (France) Attribution: tatoeba.org #3350506 (feiningyuan) & #3713557 (egg0073) +Where does it hurt? 哪裡痛? CC-BY 2.0 (France) Attribution: tatoeba.org #37512 (CK) & #735108 (Martha) +Where does it hurt? 哪裡疼? CC-BY 2.0 (France) Attribution: tatoeba.org #37512 (CK) & #771431 (Martha) +Where is the vodka? 伏特加在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #781579 (CC) & #784510 (fucongcong) +Where should we go? 我們應該去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #517410 (CK) & #832946 (Martha) +Where're the shoes? 鞋子在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #18105 (Zifre) & #336028 (fucongcong) +Where's the hammer? 锤子在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #4076838 (CK) & #7772596 (jiangche) +Which cap is yours? 哪顶帽子是你的? CC-BY 2.0 (France) Attribution: tatoeba.org #37929 (CK) & #336689 (fucongcong) +Which cup is yours? 哪个杯子是你的? CC-BY 2.0 (France) Attribution: tatoeba.org #1554393 (CK) & #3580026 (CLARET) +Which hat is yours? 哪顶帽子是你的? CC-BY 2.0 (France) Attribution: tatoeba.org #453576 (FeuDRenais) & #336689 (fucongcong) +Which is your book? 哪本是你的书? CC-BY 2.0 (France) Attribution: tatoeba.org #36873 (CK) & #334623 (fucongcong) +Which is your book? 哪本是你們的書? CC-BY 2.0 (France) Attribution: tatoeba.org #36873 (CK) & #1688836 (egg0073) +Which is your book? 哪本是您的書? CC-BY 2.0 (France) Attribution: tatoeba.org #36873 (CK) & #1688837 (egg0073) +Which is your book? 哪本書是您的? CC-BY 2.0 (France) Attribution: tatoeba.org #36873 (CK) & #1688841 (egg0073) +Which is your book? 哪本書是你們的? CC-BY 2.0 (France) Attribution: tatoeba.org #36873 (CK) & #1688842 (egg0073) +Who are those guys? 那些家伙是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2451 (CK) & #1778257 (sadhen) +Who is that person? 那人谁啊? CC-BY 2.0 (France) Attribution: tatoeba.org #450137 (CK) & #2442276 (ydcok) +Who took the money? 誰拿了錢? CC-BY 2.0 (France) Attribution: tatoeba.org #1886566 (CK) & #6132407 (verdastelo9604) +Who touched my gun? 誰碰了我的槍? CC-BY 2.0 (France) Attribution: tatoeba.org #368187 (Aihe) & #1243780 (tsayng) +Whose bike is this? 这辆自行车是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #386698 (Mouseneb) & #334531 (fucongcong) +Whose book is this? 這是誰的書? CC-BY 2.0 (France) Attribution: tatoeba.org #54871 (CK) & #810030 (Martha) +Whose book is this? 這書是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #54871 (CK) & #6149269 (xjjAstrus) +Whose ring is that? 那是谁的环? CC-BY 2.0 (France) Attribution: tatoeba.org #3408916 (CK) & #5780604 (verdastelo9604) +Why are they angry? 他们为什么在生气? CC-BY 2.0 (France) Attribution: tatoeba.org #796886 (Shishir) & #8729926 (morningstar) +Why are you crying? 你为什么哭? CC-BY 2.0 (France) Attribution: tatoeba.org #36405 (CK) & #343391 (fucongcong) +Why are you crying? 你為什麼哭? CC-BY 2.0 (France) Attribution: tatoeba.org #36405 (CK) & #828691 (Martha) +Why are you so mad? 你為什麼這麼生氣? CC-BY 2.0 (France) Attribution: tatoeba.org #826488 (odiernod) & #827567 (Martha) +Why can't you come? 你為什麼不能來? CC-BY 2.0 (France) Attribution: tatoeba.org #16450 (CK) & #793228 (Martha) +Why do you need it? 你為什麼需要它? CC-BY 2.0 (France) Attribution: tatoeba.org #36783 (CK) & #844582 (Martha) +Why should we help? 为什么我们应该要帮助? CC-BY 2.0 (France) Attribution: tatoeba.org #4834916 (CK) & #4844814 (pig8322) +Why were you there? 你為什麼在那裡? CC-BY 2.0 (France) Attribution: tatoeba.org #411315 (CK) & #771615 (Martha) +Why worry about it? 為什麼要擔心? CC-BY 2.0 (France) Attribution: tatoeba.org #4503003 (CK) & #4504419 (egg0073) +Will I have a scar? 我会留疤吗? CC-BY 2.0 (France) Attribution: tatoeba.org #267343 (CK) & #5094118 (mirrorvan) +Write it in pencil. 用鉛筆寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #69636 (CK) & #9054741 (xjjAstrus) +You are free to go. 你可以走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331071 (CK) & #824627 (Martha) +You are very brave. 您非常勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #16474 (CK) & #471280 (fucongcong) +You are very brave. 你非常勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #16474 (CK) & #471292 (fucongcong) +You aren't invited. 你没受到邀请。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218263 (CK) & #4760172 (ryanwoo) +You broke the rule. 你坏了规矩。 CC-BY 2.0 (France) Attribution: tatoeba.org #16216 (CK) & #1992653 (sadhen) +You can't say that. 你不能这么说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954825 (CK) & #4845019 (pig8322) +You did a good job. 你干得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #707269 (CM) & #482712 (biglion) +You don't scare us. 你別嚇我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #2274011 (CK) & #6923177 (verdastelo9604) +You have cute eyes. 你有一双很可爱的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #402423 (CK) & #609915 (sarah) +You have nice skin. 你的皮膚真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #754751 (CM) & #776933 (Martha) +You know I'm right. 你知道我是正确的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548458 (CK) & #3289605 (sadhen) +You like elephants. 你喜欢大象。 CC-BY 2.0 (France) Attribution: tatoeba.org #20120 (CM) & #407241 (fucongcong) +You live and learn. 你一面生活一面學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #810562 (CM) & #810601 (Martha) +You look surprised. 你看起来很吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2079850 (Spamster) & #7780762 (jiangche) +You look very good. 你看上去很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1935382 (Spamster) & #5091401 (mirrorvan) +You look very pale. 你看上去很苍白。 CC-BY 2.0 (France) Attribution: tatoeba.org #15912 (CK) & #782330 (fucongcong) +You made a mistake. 你犯了个错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230752 (alec) & #334321 (fucongcong) +You might meet him. 你可能會見到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #464994 (CK) & #833043 (Martha) +You must be joking! 你一定是开玩笑! CC-BY 2.0 (France) Attribution: tatoeba.org #268461 (CK) & #1878342 (sadhen) +You must be joking. 你一定是开玩笑! CC-BY 2.0 (France) Attribution: tatoeba.org #2954592 (CK) & #1878342 (sadhen) +You should know it. 你應該知道的。 CC-BY 2.0 (France) Attribution: tatoeba.org #327658 (CK) & #793227 (Martha) +You'd better hurry. 你最好快点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1048337 (Brian255) & #466238 (fucongcong) +You'll be confused. 你會困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825592 (CK) & #6585435 (verdastelo9604) +You'll bounce back. 你会东山再起的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255348 (CK) & #5094129 (mirrorvan) +You're a good cook. 你是个好厨师。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713700 (CK) & #5650501 (verdastelo9604) +You're always busy. 你一直忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218068 (CK) & #5763002 (verdastelo9604) +You're always late. 你总是迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713698 (CK) & #7767588 (jiangche) +You're an optimist. 你是个乐观主义者。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218083 (CK) & #4972527 (wzhd) +You're not special. 您不特別。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218294 (CK) & #5254674 (xjjAstrus) +You're quite right. 你是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #273682 (CK) & #825887 (Martha) +You're still green. 你还年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #32650 (CM) & #609964 (sarah) +You're still young. 你仍然很年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #69763 (CK) & #771631 (Martha) +You're such a jerk. 你真是個傻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2220319 (Hybrid) & #6147573 (verdastelo9604) +You're turning red. 你脸红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218466 (CK) & #5911651 (verdastelo9604) +"Trust me," he said. “相信我。”他说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1512 (brauliobezerra) & #334478 (fucongcong) +A whale is a mammal. 鲸鱼是哺乳动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #238461 (CK) & #782150 (fucongcong) +Am I a good teacher? 我是一個好老師嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7798492 (sharris123) & #6130422 (xjjAstrus) +America is very big. 美洲很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2802297 (Deerhound) & #4262233 (notabene) +Answer my questions. 回答我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #433642 (CK) & #780283 (Martha) +Answer the question. 回答問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #265040 (CK) & #777935 (Martha) +Are those new shoes? 那是新买的鞋子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2548434 (CK) & #8696423 (morningstar) +Are you guys crying? 你們在哭嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3962718 (JSakuragi) & #3718943 (egg0073) +Are you off tonight? 你今天晚上有沒有要上班? CC-BY 2.0 (France) Attribution: tatoeba.org #6156197 (rayshih715) & #6156207 (rayshih715) +But I don't want to. 但是,我不要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1491670 (fanty) & #8696219 (crescat) +Can I have some tea? 可以给我一些茶水吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2347263 (CK) & #5096820 (mirrorvan) +Can you drive a car? 您会开车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16020 (CK) & #472411 (fucongcong) +Can you really swim? 你真的會游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #488046 (CK) & #825880 (Martha) +Christmas is coming. 聖誕節快到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #387474 (CK) & #825947 (Martha) +Come again any time. 隨時再來。 CC-BY 2.0 (France) Attribution: tatoeba.org #433513 (CK) & #824705 (Martha) +Could I try this on? 我能試一下這個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6159785 (leishenki) & #6158465 (xjjAstrus) +Could you sign here? 你能在这里签名吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61821 (CK) & #415645 (fucongcong) +Destroy this temple. 摧毁这个寺庙。 CC-BY 2.0 (France) Attribution: tatoeba.org #58333 (Eldad) & #334125 (fucongcong) +Do you drink coffee? 你喝咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #449095 (CK) & #771627 (Martha) +Do you go to church? 你去教堂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1887074 (Spamster) & #6111744 (verdastelo9604) +Do you have a child? 你有孩子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #852857 (piksea) & #1960023 (egg0073) +Do you have a cough? 你咳嗽嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3318983 (CK) & #6169142 (verdastelo9604) +Do you have a fever? 你發燒了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433669 (CK) & #834314 (Martha) +Do you have a knife? 你有刀吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3823220 (CK) & #7768306 (jiangche) +Do you know my name? 你知道我的名字嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1453949 (Spamster) & #3957635 (egg0073) +Do you like English? 你喜歡英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69663 (CK) & #811842 (Martha) +Do you like oranges? 你喜歡橙子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #711406 (Shishir) & #8824108 (xjjAstrus) +Do you like spinach? 你喜歡菠菜嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5034000 (Hybrid) & #6937158 (xjjAstrus) +Do you speak French? 你會講法語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #415441 (FeuDRenais) & #811844 (Martha) +Do you want to know? 你想知道嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2011466 (CK) & #4741982 (egg0073) +Does Tom have a job? 汤姆有工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5103499 (CK) & #5685895 (verdastelo9604) +Don't drop this cup. 不要掉了这个杯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765350 (sharris123) & #1785980 (sadhen) +Don't let Tom leave. 别让汤姆走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270472 (CK) & #6563546 (gumblex) +Don't listen to her. 別聽她的。 CC-BY 2.0 (France) Attribution: tatoeba.org #309239 (CK) & #904849 (Martha) +Don't stand near me. 不要站在我身邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #410592 (CK) & #819452 (Martha) +Don't you feel cold? 你不冷吗? CC-BY 2.0 (France) Attribution: tatoeba.org #21126 (CK) & #8673739 (crescat) +Don't you know that? 你不知道那件事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2271380 (CK) & #2694364 (sadhen) +Dry wood burns well. 干柴燒得旺。 CC-BY 2.0 (France) Attribution: tatoeba.org #906472 (jakov) & #6146532 (verdastelo9604) +Enjoy your holidays. 度假愉快! CC-BY 2.0 (France) Attribution: tatoeba.org #19758 (CK) & #1363636 (tsayng) +Every minute counts. 分秒必争。 CC-BY 2.0 (France) Attribution: tatoeba.org #3550297 (CK) & #3662923 (yss123231) +Everybody knows her. 每個人都認識她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1580107 (fanty) & #3957646 (egg0073) +Everybody thinks so. 大家都是这样想的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2348418 (FeuDRenais) & #2346771 (sadhen) +Everyone's laughing. 每個人都在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111864 (CK) & #5351526 (egg0073) +Everything is ready. 一切就绪。 CC-BY 2.0 (France) Attribution: tatoeba.org #36297 (CK) & #4970144 (wzhd) +Everything seems OK. 一切看上去正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245480 (CK) & #5267573 (CLARET) +Everything's normal. 一切正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #2111846 (CK) & #7781930 (jiangche) +Excuse me, I'm lost. 不好意思,我迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51482 (autuno) & #346873 (fucongcong) +Few people think so. 很少人这么认为。 CC-BY 2.0 (France) Attribution: tatoeba.org #51060 (TRANG) & #332422 (fucongcong) +Fish is cheap today. 今天魚很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #242830 (CK) & #825798 (Martha) +Freedom is not free. 自由是有代价的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2159 (kebukebu) & #332638 (fucongcong) +Give me a cigarette. 给我支香烟吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #568598 (FeuDRenais) & #4267340 (notabene) +Has Tom gone insane? Tom瘋了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3962726 (JSakuragi) & #3718272 (egg0073) +Have a good weekend! 周末愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #30070 (CK) & #1878357 (sadhen) +Have a good weekend. 周末愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877605 (CK) & #1878357 (sadhen) +Have you been fired? 你曾經被開除過嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4498704 (CK) & #4794664 (umidake) +He accepted my idea. 他接受了我的主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #297781 (CK) & #444605 (fucongcong) +He became a pianist. 他成為了一個鋼琴家。 CC-BY 2.0 (France) Attribution: tatoeba.org #292468 (CK) & #825979 (Martha) +He called me a taxi. 他替我叫了一部計程車。 CC-BY 2.0 (France) Attribution: tatoeba.org #416343 (CK) & #833771 (Martha) +He changed his mind. 他改变想法了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295863 (CK) & #7787471 (jiangche) +He climbed Mt. Fuji. 他爬上了富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #550263 (CK) & #910219 (Martha) +He cured my illness. 我的病给他治好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297977 (CK) & #2029366 (ydcok) +He did it for money. 他做这个是为了钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1049295 (Brian255) & #463938 (fucongcong) +He didn't know that. 他不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #468010 (Belcantante) & #737102 (Martha) +He does not like us. 他不喜欢我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #773913 (BraveSentry) & #517541 (fucongcong) +He drives very fast. 他開車速度非常快。 CC-BY 2.0 (France) Attribution: tatoeba.org #292127 (CK) & #826306 (Martha) +He entered the army. 他加入了陸軍。 CC-BY 2.0 (France) Attribution: tatoeba.org #304635 (CK) & #842401 (Martha) +He greeted the lady. 他向那位女士问好。 CC-BY 2.0 (France) Attribution: tatoeba.org #383705 (CM) & #333332 (fucongcong) +He has a big family. 他有个大家庭。 CC-BY 2.0 (France) Attribution: tatoeba.org #786206 (Eldad) & #343231 (fucongcong) +He has a round face. 他有一張圓臉。 CC-BY 2.0 (France) Attribution: tatoeba.org #530046 (wma) & #875127 (Martha) +He has his own room. 他有自己的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #298838 (CK) & #4517811 (yuiyu) +He has lost his job. 他已經失去了他的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #298928 (CK) & #832976 (Martha) +He hates air travel. 他讨厌坐飞机旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #303016 (CK) & #401216 (fucongcong) +He is a good fellow. 他是個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #288943 (CM) & #780339 (Martha) +He is a learned man. 他是个有教养的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #294832 (CM) & #816481 (fucongcong) +He is at home today. 他今天在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #296616 (CK) & #6169154 (verdastelo9604) +He is good at rugby. 他很擅長橄欖球。 CC-BY 2.0 (France) Attribution: tatoeba.org #293329 (CK) & #1225669 (tsayng) +He is not religious. 他不信教。 CC-BY 2.0 (France) Attribution: tatoeba.org #1265295 (yifen238) & #462045 (fucongcong) +He is playing music. 他在演奏音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #294202 (CK) & #788727 (Martha) +He is taking a walk. 他正在散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #297003 (CK) & #833113 (Martha) +He is telling a lie. 他說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #913463 (Shiawase) & #1252413 (cienias) +He is very handsome. 他很英俊。 CC-BY 2.0 (France) Attribution: tatoeba.org #400911 (CK) & #336228 (fucongcong) +He kept his promise. 他信守了他的承诺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1682873 (Spamster) & #7780801 (jiangche) +He laid on his back. 他仰躺。 CC-BY 2.0 (France) Attribution: tatoeba.org #513540 (CK) & #736294 (Martha) +He left an hour ago. 他一小时前走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73151 (CK) & #366884 (fucongcong) +He lives by himself. 他一个人生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #293723 (CK) & #346797 (fucongcong) +He lives by himself. 他独自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #293723 (CK) & #812227 (fucongcong) +He may not be happy. 他可能不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #296295 (CK) & #813627 (fucongcong) +He raised his hands. 他舉起了他的手。 CC-BY 2.0 (France) Attribution: tatoeba.org #513534 (CK) & #825966 (Martha) +He saluted the lady. 他向那位女士问好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291251 (CM) & #333332 (fucongcong) +He sat on the bench. 他坐在長凳上。 CC-BY 2.0 (France) Attribution: tatoeba.org #501259 (CK) & #832960 (Martha) +He seems to be rich. 他看起來很有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #288115 (CK) & #483915 (moonoops) +He shaves every day. 他每天刮鬍子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2150183 (FeuDRenais) & #917999 (Martha) +He should thank you. 他應該感謝您。 CC-BY 2.0 (France) Attribution: tatoeba.org #1752567 (donkirkby) & #766436 (Martha) +He was made captain. 他被選為隊長。 CC-BY 2.0 (France) Attribution: tatoeba.org #307383 (CK) & #780044 (Martha) +He was very patient. 他非常有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #523271 (CK) & #826108 (Martha) +He was wet all over. 他从头到脚都湿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #301165 (CK) & #389434 (fucongcong) +He worked very hard. 他工作很努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #291584 (CK) & #336920 (fucongcong) +He wrote one letter. 他写了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #452751 (FeuDRenais) & #442288 (fucongcong) +He wrote the report. 他寫了這份報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #520064 (CK) & #826295 (Martha) +He'll never beat me. 他永远不会打败我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #892815 (Scott) & #819805 (fucongcong) +He's afraid of dogs. 他怕狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #387478 (Mouseneb) & #334621 (fucongcong) +He's always smiling. 他总是在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211565 (alec) & #334059 (fucongcong) +He's doing his best. 他在全力以赴。 CC-BY 2.0 (France) Attribution: tatoeba.org #1855215 (Spamster) & #6005570 (verdastelo9604) +He's in the kitchen. 他在厨房。 CC-BY 2.0 (France) Attribution: tatoeba.org #1260118 (Scott) & #8692953 (crescat) +He's the oldest son. 他是长子。 CC-BY 2.0 (France) Attribution: tatoeba.org #593283 (CK) & #7768239 (jiangche) +He's the oldest son. 他是最年长的儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #593283 (CK) & #7768240 (jiangche) +Her son is a genius. 她儿子是个天才。 CC-BY 2.0 (France) Attribution: tatoeba.org #309542 (CK) & #389357 (fucongcong) +Here is your change. 這是你零錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2421 (CK) & #772037 (Martha) +Here's how we do it. 以下是我们怎么做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3126584 (CK) & #5091710 (mirrorvan) +Here's your pudding. 这是你的布丁。 CC-BY 2.0 (France) Attribution: tatoeba.org #34125 (CK) & #8761486 (crescat) +His bicycle is blue. 他的自行车是蓝色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #386701 (Mouseneb) & #334534 (fucongcong) +His speech moved us. 他的演说打动了我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075492 (CK) & #1438316 (asosan) +How I've missed you! 我多麼想念你! CC-BY 2.0 (France) Attribution: tatoeba.org #17486 (CK) & #826046 (Martha) +How about Thai food? 泰国菜怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #41103 (Swift) & #515857 (fucongcong) +How are you feeling? 你感觉如何? CC-BY 2.0 (France) Attribution: tatoeba.org #1839466 (CK) & #5026446 (murr) +How can I reach you? 我怎么联系你? CC-BY 2.0 (France) Attribution: tatoeba.org #38605 (CK) & #408244 (fucongcong) +How can I reach you? 我怎樣才能連絡到你? CC-BY 2.0 (France) Attribution: tatoeba.org #38605 (CK) & #833823 (Martha) +How do you feel now? 你现在感觉如何? CC-BY 2.0 (France) Attribution: tatoeba.org #20283 (CK) & #1358665 (sadhen) +How far away are we? 我们有多远了? CC-BY 2.0 (France) Attribution: tatoeba.org #619764 (ulyssemc1) & #7768295 (jiangche) +How is it at school? 学校怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1086407 (CM) & #5096478 (mirrorvan) +How old is this zoo? 這間動物園多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #436249 (lukaszpp) & #3982099 (tsayng) +How old is your son? 你兒子幾歲? CC-BY 2.0 (France) Attribution: tatoeba.org #436251 (lukaszpp) & #796083 (Martha) +How was the fishing? 釣魚怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #2548425 (CK) & #6635893 (verdastelo9604) +How was the seminar? 这研究会怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #2548422 (CK) & #5595208 (verdastelo9604) +I always study hard. 我總是用功讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #66085 (CK) & #919879 (Martha) +I am afraid of dogs. 我怕狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #374213 (CK) & #1672004 (sadhen) +I am an electrician. 我是一名電工。 CC-BY 2.0 (France) Attribution: tatoeba.org #785458 (hrin) & #881277 (Martha) +I am engaged to her. 我跟她訂婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261114 (CK) & #919884 (Martha) +I am in Tokyo today. 我今天在東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #257596 (CK) & #917907 (Martha) +I am too busy to go. 我太忙了不能去。 CC-BY 2.0 (France) Attribution: tatoeba.org #438382 (Plodder) & #769697 (Martha) +I arrived in London. 我到達倫敦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255948 (CK) & #919943 (Martha) +I ate a hasty lunch. 我匆忙的吃了午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #256851 (CK) & #866298 (Martha) +I built a new house. 我盖了栋新房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #258797 (CK) & #7767605 (jiangche) +I can come at three. 我三點鐘可以來。 CC-BY 2.0 (France) Attribution: tatoeba.org #72701 (CK) & #919862 (Martha) +I can help you, too. 我也能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #5958534 (CK) & #6119454 (verdastelo9604) +I can see the light. 我能看到光線。 CC-BY 2.0 (France) Attribution: tatoeba.org #323700 (CK) & #833079 (Martha) +I can speak English. 我會講英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #256187 (CK) & #920113 (Martha) +I can start anytime. 我随时可以开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #5407164 (mailohilohi) & #5945143 (verdastelo9604) +I can win this time. 我這回能贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301421 (CK) & #6089926 (verdastelo9604) +I can't afford that. 我买不起那个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211553 (alec) & #334044 (fucongcong) +I can't do anything. 我不会做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #256389 (CK) & #3783082 (Debbie_Linder) +I can't fall asleep. 我睡不着觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #337417 (TRANG) & #8655634 (slo_oth) +I can't find my pen. 我找不到我的筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #321460 (CK) & #918553 (Martha) +I can't swim at all. 我一点也不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #258660 (CK) & #345844 (fucongcong) +I cleared the table. 我清理了桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #258751 (CK) & #917932 (Martha) +I continued singing. 我繼續唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #410606 (CK) & #819338 (Martha) +I continued singing. 我继续唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #410606 (CK) & #4270138 (notabene) +I continued working. 我繼續工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #418870 (CK) & #771656 (Martha) +I couldn't hear you. 我听不见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #8848136 (CK) & #8914629 (fresky) +I didn't order this. 我没有预定这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2526590 (CK) & #4600736 (Seek) +I disagree with you. 我不同意你的看法。 CC-BY 2.0 (France) Attribution: tatoeba.org #252710 (CK) & #333122 (fucongcong) +I do not have a cat. 我没有猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #259880 (CK) & #407226 (fucongcong) +I do not sleep well. 我睡不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #436517 (lukaszpp) & #3003775 (egg0073) +I do not understand. 我不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #376610 (CM) & #409679 (egg0073) +I don't have a bike. 我沒有腳踏車。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826211 (CK) & #5401634 (egg0073) +I don't like movies. 我不喜歡電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #419109 (CK) & #826208 (Martha) +I don't like school. 我不喜欢学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #386739 (Mouseneb) & #336239 (fucongcong) +I don't like summer. 我不喜欢夏天。 CC-BY 2.0 (France) Attribution: tatoeba.org #252224 (CK) & #1700146 (sadhen) +I don't like winter. 我不喜欢冬天。 CC-BY 2.0 (France) Attribution: tatoeba.org #1570519 (fanty) & #4673821 (McMeao) +I don't need anyone. 我谁也不需要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1567429 (CK) & #7772598 (jiangche) +I don't see why not. 我看不出为什么不。 CC-BY 2.0 (France) Attribution: tatoeba.org #1152567 (wma) & #1397364 (mtdot) +I don't want to eat. 我不想吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825001 (CK) & #4795947 (umidake) +I dreamed about you. 我梦到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #776012 (Zifre) & #503039 (fucongcong) +I felt good tonight. 我今晚感觉良好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498566 (CK) & #5613723 (verdastelo9604) +I forgot to ask Tom. 我忘了问汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3172152 (CK) & #5694499 (verdastelo9604) +I forgot to ask him. 我忘了問他。 CC-BY 2.0 (France) Attribution: tatoeba.org #354494 (plover) & #6332401 (verdastelo9604) +I forgot to ask him. 我忘记问他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #354494 (plover) & #7771856 (jiangche) +I got home at seven. 我七點回到家。 CC-BY 2.0 (France) Attribution: tatoeba.org #252622 (CK) & #8388716 (wangchou) +I grew up in Boston. 我在波士頓成長。 CC-BY 2.0 (France) Attribution: tatoeba.org #2330005 (CK) & #8960535 (egg0073) +I have a dictionary. 我有個字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #321846 (CK) & #6203798 (User76378) +I have a dictionary. 我有一個字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #321846 (CK) & #6203913 (User76378) +I have a high fever. 我烧得很厉害。 CC-BY 2.0 (France) Attribution: tatoeba.org #387437 (CK) & #451437 (fucongcong) +I have been to Rome. 我去过罗马。 CC-BY 2.0 (France) Attribution: tatoeba.org #371414 (saeb) & #616202 (sarah) +I have chapped lips. 我的嘴裂开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268877 (CK) & #334318 (fucongcong) +I have to go to bed. 我该去睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1395 (brauliobezerra) & #2 (fucongcong) +I have to go to bed. 我该上床了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1395 (brauliobezerra) & #501373 (fucongcong) +I have to stay home. 我得留在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #256482 (CK) & #6077358 (verdastelo9604) +I heard her singing. 我听见她唱歌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308210 (CK) & #819806 (fucongcong) +I just need a break. 我只想休息一下 CC-BY 2.0 (France) Attribution: tatoeba.org #2372801 (CK) & #5975078 (zhangxr91) +I know none of them. 他们中的任何一位我都不认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #260859 (CK) & #1446777 (asosan) +I know that feeling. 我知道那種感覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498565 (CK) & #714321 (egg0073) +I know what you did. 我知道你做了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553461 (CK) & #5907483 (verdastelo9604) +I know where she is. 我知道她在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #308095 (CK) & #726748 (CLARET) +I know you're upset. 我知道你难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887529 (CK) & #5983687 (verdastelo9604) +I like dragon fruit. 我喜欢火龙果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1604652 (Spamster) & #5715134 (verdastelo9604) +I like each of them. 我喜欢他们每一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #461899 (regisb) & #461688 (fucongcong) +I like eating fruit. 我喜歡吃水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #7808535 (sharris123) & #6057706 (xjjAstrus) +I like movies a lot. 我很喜歡電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #521656 (CK) & #834572 (Martha) +I like taking walks. 我喜欢散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #554225 (CK) & #784473 (fucongcong) +I live in this area. 我住在这区。 CC-BY 2.0 (France) Attribution: tatoeba.org #929143 (tatoebaforme) & #441465 (fucongcong) +I live too far away. 我住得太遠了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4368263 (AlanF_US) & #6149006 (verdastelo9604) +I love drinking tea. 我很愛喝茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794451 (sharris123) & #6057688 (xjjAstrus) +I need a bigger box. 我需要個更大的箱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #6025434 (mailohilohi) & #6103192 (verdastelo9604) +I never played golf. 我从没玩过高尔夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1311864 (CM) & #5911588 (verdastelo9604) +I noticed a pattern. 我注意到一個圖案。 CC-BY 2.0 (France) Attribution: tatoeba.org #5958597 (CK) & #6103177 (verdastelo9604) +I often catch colds. 我常常感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #473597 (CK) & #825935 (Martha) +I often eat chicken. 我經常吃雞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1830585 (CK) & #6624685 (verdastelo9604) +I quickly ate lunch. 我迅速地吃了午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #433484 (CK) & #832456 (Martha) +I really am unlucky! 我真的很倒霉! CC-BY 2.0 (France) Attribution: tatoeba.org #410605 (CK) & #819400 (Martha) +I really don't sing. 我真的不会唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280314 (CK) & #5091610 (mirrorvan) +I really have to go. 我真的得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2390840 (CK) & #713158 (egg0073) +I remember this map. 我記得這張地圖。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822877 (CK) & #6150019 (verdastelo9604) +I retired last year. 我去年退休了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257819 (CK) & #819411 (Martha) +I speak French, too. 我也说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406545 (CK) & #7772673 (jiangche) +I talked to friends. 我和朋友们交谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2437 (CK) & #1776669 (sadhen) +I think Tom is good. 我觉得Tom人很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7785093 (sharris123) & #343921 (fucongcong) +I think you're dumb. 我认为你傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2799083 (CK) & #5091263 (mirrorvan) +I told Tom I was OK. 我对汤姆说我很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548419 (CK) & #3338910 (sadhen) +I tried to tell you. 我試著要告訴你。 CC-BY 2.0 (France) Attribution: tatoeba.org #41064 (CK) & #754625 (Martha) +I want a girlfriend. 我想找女朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011485 (CK) & #6903766 (verdastelo9604) +I want another beer. 我想再来一杯啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #942545 (spockofvulcan) & #332782 (fucongcong) +I want your opinion. 我想要聽聽你的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #17317 (CK) & #793238 (Martha) +I was already tired. 我已经累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819637 (CK) & #7768195 (jiangche) +I was born in Kyoto. 我生于京都。 CC-BY 2.0 (France) Attribution: tatoeba.org #256896 (CK) & #414046 (fucongcong) +I was pretty hungry. 我真是饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647679 (CK) & #5942063 (verdastelo9604) +I was quite annoyed. 我被烦死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495614 (CK) & #5091208 (mirrorvan) +I wasn't alone then. 我当时不孤单。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734782 (CK) & #5694480 (verdastelo9604) +I will try it again. 我會再試一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #33518 (CK) & #834699 (Martha) +I wish I could swim. 我希望我會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #26397 (CK) & #834878 (Martha) +I wish I were young. 但願我還年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #242080 (CK) & #835692 (Martha) +I won't stay silent. 我不會保持沉默的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962722 (JSakuragi) & #3718933 (egg0073) +I work in a factory. 我在一家工廠工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2412764 (fjrjdk) & #2684992 (egg0073) +I wrote it all down. 我全写下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5207782 (CK) & #5794110 (verdastelo9604) +I'll be back at ten. 我十点回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #73430 (CK) & #8791918 (crescat) +I'll do it tomorrow. 我明天再做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2077751 (Spamster) & #8734952 (crescat) +I'll drive you home. 我開車送你回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #24132 (CK) & #819412 (Martha) +I'll join you later. 我一會兒就來。 CC-BY 2.0 (France) Attribution: tatoeba.org #257340 (CK) & #793313 (Martha) +I'll let you decide. 我让你来决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #437969 (aliene) & #427624 (fucongcong) +I'll make you happy. 我会让你幸福的。 CC-BY 2.0 (France) Attribution: tatoeba.org #237692 (CK) & #408459 (fucongcong) +I'll return at 6:30. 我六點半回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #419251 (CK) & #771640 (Martha) +I'm Tom's assistant. 我是湯姆的助手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235776 (CK) & #6150026 (verdastelo9604) +I'm a social worker. 我是個社會工作人員。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890956 (CK) & #2771148 (cienias) +I'm a stranger here. 我是這裡的外地人。 CC-BY 2.0 (France) Attribution: tatoeba.org #61358 (CK) & #941138 (Martha) +I'm afraid of death. 我怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548276 (CK) & #335251 (fucongcong) +I'm afraid of dying. 我怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #3564111 (CK) & #335251 (fucongcong) +I'm almost finished. 我差不多完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247908 (CK) & #333787 (fucongcong) +I'm already married. 我已婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732336 (CK) & #761438 (Martha) +I'm as old as he is. 我和他同年。 CC-BY 2.0 (France) Attribution: tatoeba.org #401673 (CK) & #855654 (Martha) +I'm counting on you. 我就指望你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64314 (CK) & #793297 (Martha) +I'm crazy about you. 我为你着迷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2147 (CM) & #503255 (fucongcong) +I'm crazy about you. 我為你瘋狂。 CC-BY 2.0 (France) Attribution: tatoeba.org #2147 (CM) & #760878 (Martha) +I'm going to school. 我去学校了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3315771 (CK) & #8936490 (crescat) +I'm good at singing. 我唱歌很好听。 CC-BY 2.0 (France) Attribution: tatoeba.org #256534 (CK) & #6884328 (maggiesq) +I'm just about done. 我差不多完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548235 (CK) & #333787 (fucongcong) +I'm looking for you. 我在找你。 CC-BY 2.0 (France) Attribution: tatoeba.org #252914 (CK) & #4971559 (wzhd) +I'm nearly finished. 我差不多完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248109 (CK) & #333787 (fucongcong) +I'm not a bit tired. 我一點也不累。 CC-BY 2.0 (France) Attribution: tatoeba.org #258663 (CK) & #848702 (Martha) +I'm not your mother. 我不是你們的媽媽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1943924 (Spamster) & #1946497 (egg0073) +I'm not your mother. 我不是你母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #1943924 (Spamster) & #1946499 (egg0073) +I'm on the roof now. 我现在在屋顶上。 CC-BY 2.0 (France) Attribution: tatoeba.org #7920309 (CK) & #8696216 (crescat) +I'm proud of my son. 我为我儿子感到骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #259233 (CK) & #829573 (fucongcong) +I'm sad without you. 沒有你我很悲傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #618153 (kebukebu) & #760880 (Martha) +I'm stuck in my job. 我被工作困住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2253284 (_undertoad) & #6568300 (verdastelo9604) +I'm taller than you. 我比你高。 CC-BY 2.0 (France) Attribution: tatoeba.org #257131 (CK) & #833198 (Martha) +I'm very busy today. 我今天很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #257593 (CK) & #941155 (Martha) +I'm very hungry now. 我現在非常餓。 CC-BY 2.0 (France) Attribution: tatoeba.org #241543 (CK) & #826245 (Martha) +I'm very methodical. 我很有条理。 CC-BY 2.0 (France) Attribution: tatoeba.org #5958367 (CK) & #8795190 (slo_oth) +I'm waiting for him. 我在等他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260962 (CK) & #1227093 (tsayng) +I'm watching TV now. 我正在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #2794591 (CK) & #472985 (fucongcong) +I've been in prison. 我進過監獄。 CC-BY 2.0 (France) Attribution: tatoeba.org #5754651 (CM) & #6114441 (verdastelo9604) +I've got a headache. 我头痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #497934 (FeuDRenais) & #332568 (fucongcong) +I've got no friends. 我没有朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359667 (CK) & #7768285 (jiangche) +I've just had lunch. 我剛吃過午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #3646858 (CK) & #835777 (Martha) +I've lost my pencil. 我的鉛筆掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25766 (CK) & #9054745 (xjjAstrus) +I've lost my ticket. 我把票弄丟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259030 (CK) & #819428 (Martha) +I've lost my wallet. 我掉了我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #2674574 (Gulo_Luscus) & #344189 (fucongcong) +I've missed so much. 我错过了太多。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359961 (CK) & #3770499 (Debbie_Linder) +I've seen Tom naked. 我见过汤姆光着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2262057 (CK) & #5877084 (verdastelo9604) +Is Tom helping Mary? 汤姆在帮玛丽吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4950728 (CK) & #5983667 (verdastelo9604) +Is anybody in there? 那边有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2092546 (CK) & #5091361 (mirrorvan) +Is it far from here? 离这儿远吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1651 (CK) & #501530 (fucongcong) +Is that our problem? 那是我們的問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886903 (CK) & #6103166 (verdastelo9604) +Is that the station? 那是車站嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2975867 (KiwiCreme) & #5570720 (egg0073) +Is this really real? 这真是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4494908 (CK) & #5685913 (verdastelo9604) +Is this your family? 这是你的家人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2661923 (WestofEden) & #471395 (fucongcong) +Is this your pencil? 這是你的鉛筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1764749 (CK) & #6159157 (verdastelo9604) +It can be dangerous. 它有危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #1820249 (Spamster) & #5967291 (verdastelo9604) +It hasn't been easy. 它不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647663 (CK) & #6568268 (verdastelo9604) +It is too expensive. 这太贵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #925077 (zvaigzne) & #7771677 (jiangche) +It may never happen. 它可能從沒發生過。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499238 (CK) & #6169156 (verdastelo9604) +It rained yesterday. 昨天下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63300 (CK) & #819458 (Martha) +It serves you right. 自作自受。 CC-BY 2.0 (France) Attribution: tatoeba.org #42209 (CK) & #728754 (Martha) +It was a lot of fun. 它很好玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #503864 (CK) & #849811 (Martha) +It was getting dark. 天要黑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40300 (CK) & #6903843 (verdastelo9604) +It was really cheap. 它真的很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #37840 (CK) & #793263 (Martha) +It's a real bargain. 真是物美價廉。 CC-BY 2.0 (France) Attribution: tatoeba.org #435204 (CK) & #832770 (Martha) +It's all your fault. 都是你的错。 CC-BY 2.0 (France) Attribution: tatoeba.org #1780024 (Spamster) & #4972523 (wzhd) +It's already eleven. 已经是11点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396333 (CK) & #334137 (fucongcong) +It's as cold as ice. 它冷得像冰一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #442090 (CK) & #836112 (Martha) +It's really awesome. 太棒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745765 (Spamster) & #1746049 (sadhen) +It's safe to say so. 這麼說是安全的。 CC-BY 2.0 (France) Attribution: tatoeba.org #826071 (U2FS) & #827576 (Martha) +It's very difficult. 这很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #1530678 (cc_neko) & #869094 (sadhen) +It's worth the wait. 它是值得等待的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818774 (CK) & #5978334 (verdastelo9604) +Just take it slowly. 慢慢来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891675 (CK) & #334395 (fucongcong) +Keep going straight. 繼續直行。 CC-BY 2.0 (France) Attribution: tatoeba.org #449158 (CK) & #825984 (Martha) +Keep your eyes open. 睜大你的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #323770 (CK) & #826011 (Martha) +Let's call it a day. 今天就到此為止吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #503842 (CK) & #835347 (Martha) +Let's go to a movie. 讓我們去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #388684 (CK) & #835802 (Martha) +Let's keep in touch. 让我们保持联络。 CC-BY 2.0 (France) Attribution: tatoeba.org #56278 (CK) & #334204 (fucongcong) +Let's play baseball! 讓我們來打棒球吧! CC-BY 2.0 (France) Attribution: tatoeba.org #54226 (CK) & #819348 (Martha) +Let's play baseball! 我們去打棒球吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #54226 (CK) & #3706752 (egg0073) +Let's play baseball. 我們去打棒球吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #324084 (CK) & #3706752 (egg0073) +Lift your right arm. 舉起你的右臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #6049398 (mailohilohi) & #6119488 (verdastelo9604) +Love is like oxygen. 爱就像氧气。 CC-BY 2.0 (France) Attribution: tatoeba.org #1670129 (al_ex_an_der) & #5794118 (verdastelo9604) +Love your neighbors. 与邻居相亲相爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #36153 (CK) & #591880 (CLARET) +Mary can dance well. 瑪麗舞跳得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #31764 (CK) & #771426 (Martha) +Mary is very pretty. 瑪麗很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1030057 (CK) & #5708687 (xjjAstrus) +May I eat something? 我可以吃點什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1176180 (paula_guisard) & #8387434 (wangchou) +May I eat that cake? 我可以吃那个蛋糕吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68701 (CK) & #472300 (fucongcong) +May I say something? 我可以說些什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25108 (CK) & #759154 (Martha) +Mercury is a planet. 水星是一顆行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156296 (Kiwi) & #6961320 (xjjAstrus) +More coffee, please. 請再給我一點咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #701897 (Eldad) & #4636651 (egg0073) +My back still hurts. 我的背還在痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #282462 (CK) & #4493480 (egg0073) +My girlfriend cried. 我女朋友哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7770417 (sharris123) & #3701816 (egg0073) +My home is far away. 我家很远。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757673 (Doremi391) & #4764659 (ryanwoo) +My neck still hurts. 我的脖子还疼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3436690 (CK) & #5631912 (verdastelo9604) +My notebook is pink. 我的笔记本是粉色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1763152 (CK) & #1763159 (sadhen) +My purse was stolen. 我的錢包被搶了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962723 (JSakuragi) & #3718278 (egg0073) +My room is a pigsty. 我房间是个猪窝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846004 (englishchinese) & #461666 (fucongcong) +My throat feels dry. 我喉咙很干。 CC-BY 2.0 (France) Attribution: tatoeba.org #35759 (CK) & #333589 (fucongcong) +My whole body hurts. 我全身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #7923942 (shekitten) & #917936 (Martha) +My zipper got stuck. 我的拉链卡住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647637 (CK) & #8795191 (slo_oth) +No drinkers allowed. 飲酒者不准禁入。 CC-BY 2.0 (France) Attribution: tatoeba.org #433807 (CM) & #771551 (Martha) +Nobody has seen God. 沒有人看過神。 CC-BY 2.0 (France) Attribution: tatoeba.org #7802996 (sharris123) & #3149017 (cienias) +Now it's your serve. 現在該你發球。 CC-BY 2.0 (France) Attribution: tatoeba.org #242375 (CK) & #825150 (Martha) +One of us has to go. 我们中的一个得走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2852210 (CK) & #5845651 (verdastelo9604) +Ostriches can't fly. 鴕鳥不會飛。 CC-BY 2.0 (France) Attribution: tatoeba.org #425154 (CK) & #832947 (Martha) +Ostriches can't fly. 鸵鸟不会飞。 CC-BY 2.0 (France) Attribution: tatoeba.org #425154 (CK) & #4265088 (notabene) +Paper burns quickly. 紙燒得快。 CC-BY 2.0 (France) Attribution: tatoeba.org #263348 (CK) & #6120833 (verdastelo9604) +People love to talk. 人們就是愛說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1298429 (alec) & #1296661 (tsayng) +Please make the bed. 請整理床鋪。 CC-BY 2.0 (France) Attribution: tatoeba.org #33956 (CK) & #3416059 (egg0073) +Please wash my back. 請幫我洗背。 CC-BY 2.0 (France) Attribution: tatoeba.org #282468 (CK) & #4493478 (egg0073) +Please wish me luck. 請祝我好運。 CC-BY 2.0 (France) Attribution: tatoeba.org #65447 (CK) & #825881 (Martha) +Prices are going up. 物价上涨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319909 (CK) & #332871 (fucongcong) +Put on some clothes. 你穿點東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5431156 (CK) & #8727932 (shou) +Put on some clothes. 穿上點衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #5431156 (CK) & #8727933 (shou) +Roll the ball to me. 把球传给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #49911 (CK) & #2002963 (sunnywqing) +See you in two days. 后天见。 CC-BY 2.0 (France) Attribution: tatoeba.org #3056419 (WestofEden) & #5571069 (verdastelo9604) +She boiled the eggs. 她煮了蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #317391 (CK) & #8701003 (crescat) +She cried all night. 她一整晚都在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477115 (weihaiping) & #333193 (fucongcong) +She did not turn up. 她沒有出現。 CC-BY 2.0 (France) Attribution: tatoeba.org #313931 (CK) & #5372265 (egg0073) +She didn't like him. 她不喜歡他。 CC-BY 2.0 (France) Attribution: tatoeba.org #388373 (CK) & #771483 (Martha) +She didn't think so. 她不這麼想。 CC-BY 2.0 (France) Attribution: tatoeba.org #591754 (CK) & #6086864 (verdastelo9604) +She finally made it. 她終於做到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2114997 (Eldad) & #6098469 (verdastelo9604) +She gave me a watch. 她給了我一支手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #489438 (CK) & #840764 (Martha) +She got in at 9 p.m. 她晚上九點鐘上了車。 CC-BY 2.0 (France) Attribution: tatoeba.org #247570 (CK) & #802789 (Martha) +She has lost weight. 她的体重减轻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #315646 (CK) & #346773 (fucongcong) +She held her breath. 她止住了呼吸。 CC-BY 2.0 (France) Attribution: tatoeba.org #315557 (CK) & #8388777 (wangchou) +She is a mere child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #312199 (CM) & #884731 (Tajfun) +She is about my age. 她大約跟我同年紀。 CC-BY 2.0 (France) Attribution: tatoeba.org #311507 (CK) & #840746 (Martha) +She is just a child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #858584 (piksea) & #884731 (Tajfun) +She is only a child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #858582 (piksea) & #884731 (Tajfun) +She kept on working. 她繼續工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388558 (CK) & #819308 (Martha) +She kept on working. 她继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388558 (CK) & #2052522 (sadhen) +She made tea for me. 她给我沏了茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #314143 (CK) & #2254291 (KerenDeng) +She made tea for me. 她给我泡了茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #314143 (CK) & #2283483 (KerenDeng) +She went for a walk. 她去散步了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388294 (CK) & #844646 (Martha) +She went on working. 她继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #316007 (CK) & #2052522 (sadhen) +She works from nine. 她九点开始工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #310224 (CK) & #8789781 (crescat) +She works very hard. 她很努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #311756 (CK) & #343642 (fucongcong) +Someone is watching. 有人在监视。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249982 (CK) & #5091339 (mirrorvan) +Stay out of my room. 别进我的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #3184916 (CK) & #5613642 (verdastelo9604) +Stop fooling around. 不要隨便開玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #3350115 (CK) & #781518 (Martha) +Stop talking loudly. 停止大声说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #275781 (Dejo) & #430993 (fucongcong) +Stop, or I'll shoot. 停止,不然我就開槍了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246314 (CK) & #825172 (Martha) +Take off your socks. 把襪子脫掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #50756 (CK) & #5780279 (xjjAstrus) +Take off your socks. 把你的袜子脱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50756 (CK) & #7774361 (jiangche) +Thank you very much. 非常感谢! CC-BY 2.0 (France) Attribution: tatoeba.org #1839560 (CK) & #334426 (fucongcong) +That boy is running. 这个男孩子在跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #68203 (CK) & #1160777 (sadhen) +That boy is running. 那个男孩在跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #68203 (CK) & #1192398 (sadhen) +That is not my line. 这不是我拿手的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42359 (CK) & #1397142 (mtdot) +That was a disaster. 那是災難。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494884 (CK) & #6111875 (verdastelo9604) +That was my mistake. 那是我的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #67057 (CK) & #771607 (Martha) +That wasn't too bad. 那不太坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594115 (CK) & #5650452 (verdastelo9604) +That's Tom's mother. 那是汤姆的妈妈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235914 (CK) & #5574745 (verdastelo9604) +That's a great poem. 這是一首很棒的詩。 CC-BY 2.0 (France) Attribution: tatoeba.org #395034 (CK) & #825192 (Martha) +That's an exception. 那是例外。 CC-BY 2.0 (France) Attribution: tatoeba.org #4947885 (CK) & #6077477 (verdastelo9604) +That's an imitation. 那是一個仿造品。 CC-BY 2.0 (France) Attribution: tatoeba.org #435733 (CK) & #825940 (Martha) +That's your opinion. 那是你的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #2252556 (CK) & #5698028 (verdastelo9604) +The boys kept quiet. 男孩子們保持安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #503523 (CK) & #826220 (Martha) +The button came off. 這顆鈕扣脫落了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33425 (CK) & #908386 (Martha) +The cat is adorable. 這隻貓很可愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #487303 (adjusting) & #874293 (Martha) +The cat is not dead. 那猫没死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2030141 (Spamster) & #6938000 (Cheng) +The crops need rain. 農作物需要雨水。 CC-BY 2.0 (France) Attribution: tatoeba.org #714315 (CM) & #714313 (egg0073) +The file is corrupt. 文件已损坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #965928 (CM) & #7773121 (jiangche) +The fire alarm rang. 火警警报响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23849 (CK) & #334258 (fucongcong) +The lake was frozen. 湖冻冰了。 CC-BY 2.0 (France) Attribution: tatoeba.org #239985 (CK) & #1416169 (sadhen) +The moon is shining. 月光在照耀著。 CC-BY 2.0 (France) Attribution: tatoeba.org #462826 (lukaszpp) & #918540 (Martha) +The papers blew off. 文件被风刮起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #267155 (CM) & #5585198 (verdastelo9604) +The picture is nice. 这画不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494870 (CK) & #5574148 (verdastelo9604) +The skies are clear. 天空很清朗。 CC-BY 2.0 (France) Attribution: tatoeba.org #433660 (CK) & #819307 (Martha) +The skies are clear. 天空很晴朗。 CC-BY 2.0 (France) Attribution: tatoeba.org #433660 (CK) & #825138 (Martha) +The sky turned dark. 天暗了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #844190 (Zifre) & #426152 (fucongcong) +The soup is too hot. 汤太烫了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1106888 (Scott) & #8831896 (crescat) +The trees are green. 树是绿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #182196 (TRANG) & #442154 (fucongcong) +There's a book here. 這裡有一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #515536 (CK) & #825137 (Martha) +There's nobody here. 這裡沒人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2252666 (CK) & #6065738 (verdastelo9604) +They ruined my life. 他们毁了我的生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #2030136 (Spamster) & #5613654 (verdastelo9604) +They were surprised. 他们震惊了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502456 (CK) & #7769293 (jiangche) +They won't find Tom. 他们不会找到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272149 (CK) & #5574468 (verdastelo9604) +They'll be grateful. 他們會感激。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243538 (CK) & #6065359 (verdastelo9604) +They're ignoring me. 他們不理我。 CC-BY 2.0 (France) Attribution: tatoeba.org #307555 (CK) & #825167 (Martha) +This car sells well. 这辆车卖得好。 CC-BY 2.0 (France) Attribution: tatoeba.org #58729 (CK) & #8511497 (gumblex) +This chair is light. 这把椅子很轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #463266 (lukaszpp) & #8656972 (crescat) +This is a bad thing. 這是件壞事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5756577 (Hybrid) & #6120899 (verdastelo9604) +This is a great day. 真是美好的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #5499780 (CK) & #8679927 (shou) +This is an ice cube. 這是冰塊。 CC-BY 2.0 (France) Attribution: tatoeba.org #681181 (Source_VOA) & #1205944 (cienias) +This is my daughter. 這是我女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #61484 (CK) & #796082 (Martha) +This is my notebook. 這本是我的筆記本。 CC-BY 2.0 (France) Attribution: tatoeba.org #370564 (saeb) & #9054606 (xjjAstrus) +This is my property. 這是我的財產。 CC-BY 2.0 (France) Attribution: tatoeba.org #895085 (pauldhunt) & #757489 (Martha) +This is not a tiger. 这不是老虎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1739147 (CM) & #7768251 (jiangche) +This is their house. 这是他们家。 CC-BY 2.0 (France) Attribution: tatoeba.org #55437 (adjusting) & #487586 (fucongcong) +This is what I want. 这就是我想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56120 (CK) & #336501 (fucongcong) +This makes me angry. 這讓我憤怒。 CC-BY 2.0 (France) Attribution: tatoeba.org #5548459 (Hybrid) & #5548469 (egg0073) +This makes me happy. 這讓我開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5548462 (Hybrid) & #5548467 (egg0073) +This table is heavy. 这张桌子很重。 CC-BY 2.0 (France) Attribution: tatoeba.org #464216 (lukaszpp) & #7771871 (jiangche) +This won't help you. 這幫不了你。 CC-BY 2.0 (France) Attribution: tatoeba.org #555283 (FeuDRenais) & #6111976 (verdastelo9604) +Thou shalt not kill. 不可殺人。 CC-BY 2.0 (France) Attribution: tatoeba.org #694330 (shanghainese) & #917783 (Martha) +Tokyo is a big city. 东京是一个很大的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #279791 (CK) & #333362 (fucongcong) +Tom bought a ticket. 汤姆买了张票。 CC-BY 2.0 (France) Attribution: tatoeba.org #5448766 (CK) & #5694957 (verdastelo9604) +Tom can't find Mary. 汤姆找不到玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951617 (CK) & #2007040 (sadhen) +Tom can't tie a tie. 汤姆不会系领带。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955071 (CK) & #4844847 (sadhen) +Tom cares about you. 汤姆关心你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647548 (CK) & #5611583 (verdastelo9604) +Tom changed clothes. 湯姆換了衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095313 (CK) & #6624628 (verdastelo9604) +Tom closed his eyes. 汤姆闭上了眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026675 (CK) & #5142204 (musclegirlxyp) +Tom dealt the cards. Tom处理了卡片。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026529 (CK) & #4844992 (pig8322) +Tom doesn't like me. 汤姆不喜欢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026036 (CK) & #1438558 (asosan) +Tom found me a taxi. 湯姆幫我叫了輛計程車。 CC-BY 2.0 (France) Attribution: tatoeba.org #37411 (CK) & #844467 (Martha) +Tom gave us nothing. 汤姆什么也没给我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647526 (CK) & #5983648 (verdastelo9604) +Tom had no children. Tom沒有孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493709 (CK) & #4504496 (egg0073) +Tom has calmed down. 汤姆冷静下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272708 (CK) & #5863295 (verdastelo9604) +Tom has disappeared. 汤姆不见了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1418969 (Spamster) & #5092425 (mirrorvan) +Tom has no siblings. Tom沒有兄弟姊妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493708 (CK) & #4504495 (egg0073) +Tom hid in the shed. 汤姆躲在棚里。 CC-BY 2.0 (France) Attribution: tatoeba.org #8580457 (CK) & #8580985 (slo_oth) +Tom is 30 years old. 汤姆今年三十岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #5001404 (CK) & #8738755 (crescat) +Tom is Mary's uncle. 汤姆是玛丽的叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028532 (CK) & #8939102 (crescat) +Tom is a bus driver. 汤姆是个公交车司机。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396042 (Spamster) & #2500048 (fenfang557) +Tom is a clever kid. 汤姆是聪明的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5082232 (zvzuibqx) & #5072261 (musclegirlxyp) +Tom is a politician. 汤姆是位政治家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272850 (CK) & #7767670 (jiangche) +Tom is awfully sick. 湯姆非常虚弱。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825663 (CK) & #6147569 (verdastelo9604) +Tom is exaggerating. 汤姆在吹嘘。 CC-BY 2.0 (France) Attribution: tatoeba.org #5583078 (CK) & #5949243 (verdastelo9604) +Tom is in the attic. 湯姆在閣樓裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868201 (CK) & #6624666 (verdastelo9604) +Tom is in the house. 湯姆在這棟房子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #37177 (CK) & #845440 (Martha) +Tom is in the house. 湯姆在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #37177 (CK) & #845441 (Martha) +Tom is insufferable. 汤姆令人难以忍受。 CC-BY 2.0 (France) Attribution: tatoeba.org #7114032 (CM) & #8692457 (slo_oth) +Tom is working hard. 汤姆在努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5109622 (CK) & #5611642 (verdastelo9604) +Tom knows it's over. 湯姆知道它結束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647480 (CK) & #6065384 (verdastelo9604) +Tom knows my number. Tom知道我的號碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495872 (CK) & #5363975 (egg0073) +Tom likes hot curry. 湯姆喜歡辣咖哩。 CC-BY 2.0 (France) Attribution: tatoeba.org #37086 (CK) & #826117 (Martha) +Tom made a sandwich. 汤姆做了个三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548092 (CK) & #5903475 (verdastelo9604) +Tom made me do that. 是汤姆让我做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868033 (CK) & #8936682 (crescat) +Tom needs the money. 湯姆需要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415181 (CK) & #6119450 (verdastelo9604) +Tom nodded approval. 汤姆点头同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237458 (CK) & #5571085 (verdastelo9604) +Tom owes us a favor. 汤姆欠我们个情。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957630 (CK) & #5983645 (verdastelo9604) +Tom plans to return. 湯姆打算回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501440 (CK) & #6947341 (verdastelo9604) +Tom sat beside Mary. 汤姆坐在玛丽旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028117 (CK) & #5613615 (verdastelo9604) +Tom saw Mary crying. 湯姆看見瑪麗在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548075 (CK) & #6146523 (verdastelo9604) +Tom says he's tired. 汤姆说他累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273664 (CK) & #5574492 (verdastelo9604) +Tom should be fired. 湯姆應該要被開除。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498703 (CK) & #4794669 (umidake) +Tom should be happy. 汤姆应该高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494834 (CK) & #5624864 (verdastelo9604) +Tom should thank me. 汤姆应该感谢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821653 (CK) & #5865527 (verdastelo9604) +Tom started singing. 湯姆開始唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #2238712 (CK) & #6132217 (verdastelo9604) +Tom stood behind me. 汤姆站在我后面。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415313 (CK) & #5780568 (verdastelo9604) +Tom swims very fast. 湯姆游泳游得非常快。 CC-BY 2.0 (France) Attribution: tatoeba.org #37232 (CK) & #824711 (Martha) +Tom took Friday off. 汤姆星期五闲着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1789142 (Spamster) & #5576781 (verdastelo9604) +Tom took this photo. 汤姆拍了这张照。 CC-BY 2.0 (France) Attribution: tatoeba.org #5455502 (CK) & #5670724 (verdastelo9604) +Tom was a real hero. 汤姆是个真英雄。 CC-BY 2.0 (France) Attribution: tatoeba.org #3922009 (CK) & #8696218 (crescat) +Tom was never happy. 湯姆從不高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044457 (CK) & #6165434 (verdastelo9604) +Tom was on the list. 湯姆在名單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647391 (CK) & #6103126 (verdastelo9604) +Tom was very scared. 湯姆非常害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2892382 (CK) & #4639943 (egg0073) +Tom was very scared. 湯姆當時非常害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2892382 (CK) & #4639945 (egg0073) +Tom went home alone. 汤姆一个人回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4629732 (Amastan) & #5096403 (mirrorvan) +Tom won't be coming. 汤姆不会来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272490 (CK) & #3338906 (sadhen) +Tom works in Boston. 湯姆在波士頓工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2678403 (WestofEden) & #6119453 (verdastelo9604) +Tom wrote two books. 汤姆写了两本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315179 (CK) & #5842717 (verdastelo9604) +Tom's check bounced. 汤姆的支票被退票了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240266 (CK) & #5094126 (mirrorvan) +Tom's eyes are blue. 汤姆的眼睛是蓝色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647376 (CK) & #5072398 (musclegirlxyp) +Tom's not breathing. 汤姆没有呼吸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023839 (CK) & #3780478 (e78xx_xxx) +Tom's room is dirty. 汤姆的房间很脏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2548043 (CK) & #8696224 (crescat) +Try resting for now. 现在休息一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #7779344 (sharris123) & #333585 (fucongcong) +Umbrellas sell well. 雨伞卖得好。 CC-BY 2.0 (France) Attribution: tatoeba.org #245014 (CM) & #5794113 (verdastelo9604) +Wake me up at seven. 七点叫醒我。 CC-BY 2.0 (France) Attribution: tatoeba.org #477745 (mamat) & #5967319 (verdastelo9604) +Waste not, want not. 不浪費則不匱乏。 CC-BY 2.0 (France) Attribution: tatoeba.org #32061 (eastasiastudent) & #718437 (egg0073) +We all have secrets. 我們都有秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893940 (CK) & #6098448 (verdastelo9604) +We all like cycling. 我们都喜欢骑自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #32105 (CK) & #5617143 (verdastelo9604) +We are good friends. 我們是好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #249493 (CK) & #1441661 (egg0073) +We caught the thief. 我们抓住了小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #278653 (CK) & #8698975 (crescat) +We couldn't do that. 我们做不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312795 (CK) & #6098435 (verdastelo9604) +We did it ourselves. 我们自己做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #258059 (CK) & #466262 (fucongcong) +We have seen no one. 我们谁也没看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091134 (CK) & #7771853 (jiangche) +We just need a plan. 我們只是需要個計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893786 (CK) & #5418974 (egg0073) +We swam in the lake. 我们在湖里游了泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #248098 (CK) & #334201 (fucongcong) +We were born to die. 我们是为了死亡而诞生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5753725 (CM) & #8686666 (crescat) +We're eating apples. 我們正在吃蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #405769 (CK) & #826188 (Martha) +We're eating apples. 我們在吃蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #405769 (CK) & #8824081 (xjjAstrus) +We're having dinner. 我們在吃晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240764 (CK) & #3984800 (tsayng) +We're not in Boston. 我們不在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #5485270 (CK) & #6874549 (verdastelo9604) +We're still nervous. 我們還是緊張。 CC-BY 2.0 (France) Attribution: tatoeba.org #5488323 (CK) & #6070933 (verdastelo9604) +We've not done well. 我们没有做好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5493855 (CK) & #5983583 (verdastelo9604) +Welcome to our home. 欢迎来到我们家。 CC-BY 2.0 (France) Attribution: tatoeba.org #247442 (CK) & #1753035 (sadhen) +What am I to do now? 怎么办? CC-BY 2.0 (France) Attribution: tatoeba.org #257493 (CM) & #1748539 (sadhen) +What are you eating? 在吃什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1097919 (cntrational) & #4879262 (musclegirlxyp) +What are you hiding? 你在掩饰什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1886811 (CK) & #8715890 (crescat) +What are your names? 你們叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #2647340 (CK) & #3148912 (cienias) +What did he ask you? 他問你什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1495871 (CK) & #5363973 (egg0073) +What did you answer? 你回答了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1426 (Zifre) & #335067 (fucongcong) +What do you do here? 你在這裡做甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2647333 (CK) & #6568337 (verdastelo9604) +What does this mean? 这是什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #464566 (lukaszpp) & #469553 (fucongcong) +What if Tom says no? 汤姆说不行会怎样呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3382692 (Hybrid) & #8511474 (gumblex) +What is on the desk? 桌子上有什么? CC-BY 2.0 (France) Attribution: tatoeba.org #20561 (CK) & #8976061 (crescat) +What made her do so? 为什么她要做这种事情呢? CC-BY 2.0 (France) Attribution: tatoeba.org #24953 (CM) & #8734997 (crescat) +What should I bring? 我该带些什么? CC-BY 2.0 (France) Attribution: tatoeba.org #24692 (CK) & #745824 (fucongcong) +What should be done? 怎么办? CC-BY 2.0 (France) Attribution: tatoeba.org #1795965 (ifethereal) & #1748539 (sadhen) +What would you like? 你想要甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1839617 (CK) & #6103137 (verdastelo9604) +What're you reading? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2548014 (CK) & #7768300 (jiangche) +What's Tom given us? 汤姆给了我们什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3151174 (CK) & #5933802 (verdastelo9604) +What's today's date? 今天幾號? CC-BY 2.0 (France) Attribution: tatoeba.org #1495870 (CK) & #5363972 (egg0073) +What's wrong, honey? 出什么事了,宝贝? CC-BY 2.0 (France) Attribution: tatoeba.org #4144786 (Hybrid) & #4147300 (sissima) +What's your problem? 你有什么问题? CC-BY 2.0 (France) Attribution: tatoeba.org #3573705 (CK) & #718821 (fucongcong) +When did you buy it? 你甚麼時候買的? CC-BY 2.0 (France) Attribution: tatoeba.org #66301 (CK) & #6089714 (verdastelo9604) +When does it arrive? 它什么时候到? CC-BY 2.0 (France) Attribution: tatoeba.org #280089 (CK) & #5762988 (verdastelo9604) +When will you leave? 你什麼時候離開? CC-BY 2.0 (France) Attribution: tatoeba.org #66004 (CK) & #825876 (Martha) +When will you leave? 你什么时候离开? CC-BY 2.0 (France) Attribution: tatoeba.org #66004 (CK) & #7772334 (jiangche) +Where are you going? 你去哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #416367 (phrasemix) & #389803 (fucongcong) +Where are you going? 你要去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #416367 (phrasemix) & #781106 (Martha) +Where are you going? 你们去哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #416367 (phrasemix) & #6850318 (mao) +Where have you been? 你一直在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #6026 (CK) & #1778319 (sadhen) +Where is your house? 你家在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #370706 (saeb) & #1440409 (egg0073) +Where is your house? 您的家在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #370706 (saeb) & #1440417 (egg0073) +Where is your house? 你們家在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #370706 (saeb) & #1440419 (egg0073) +Where's the kitchen? 厨房在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #2900773 (AlanF_US) & #8775856 (crescat) +Which book is yours? 哪本是你的书? CC-BY 2.0 (France) Attribution: tatoeba.org #37928 (CK) & #334623 (fucongcong) +Which book is yours? 哪本是你們的書? CC-BY 2.0 (France) Attribution: tatoeba.org #37928 (CK) & #1688836 (egg0073) +Which book is yours? 哪本是您的書? CC-BY 2.0 (France) Attribution: tatoeba.org #37928 (CK) & #1688837 (egg0073) +Which book is yours? 哪本書是您的? CC-BY 2.0 (France) Attribution: tatoeba.org #37928 (CK) & #1688841 (egg0073) +Which book is yours? 哪本書是你們的? CC-BY 2.0 (France) Attribution: tatoeba.org #37928 (CK) & #1688842 (egg0073) +Which one is easier? 哪一個最簡單? CC-BY 2.0 (France) Attribution: tatoeba.org #4755147 (garborg) & #4754682 (egg0073) +Who did you talk to? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1042635 (GPHemsley) & #7771910 (jiangche) +Who is that old man? 那個老男人是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #1147593 (mookeee) & #6111952 (verdastelo9604) +Who is this, please? 請問這是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #37901 (CM) & #886597 (Martha) +Who is your teacher? 谁是你老师? CC-BY 2.0 (France) Attribution: tatoeba.org #17660 (CK) & #787631 (fucongcong) +Whose glass is this? 这是谁的杯子? CC-BY 2.0 (France) Attribution: tatoeba.org #3416475 (jackchak) & #4885037 (musclegirlxyp) +Whose shirt is this? 這是誰的襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #61035 (lilygilder) & #1261424 (tsayng) +Why am I still here? 为什么我还在这里? CC-BY 2.0 (France) Attribution: tatoeba.org #3737891 (CK) & #4970103 (wzhd) +Why did you do that? 你為什麼要那樣做呢? CC-BY 2.0 (France) Attribution: tatoeba.org #401801 (CK) & #839475 (Martha) +Why do you say that? 你為什麼那樣說? CC-BY 2.0 (France) Attribution: tatoeba.org #36442 (CK) & #780270 (Martha) +Why don't you do it? 你为什么不做? CC-BY 2.0 (France) Attribution: tatoeba.org #2210606 (CK) & #5581738 (verdastelo9604) +Why is the sky blue? 为什么天是蓝的? CC-BY 2.0 (France) Attribution: tatoeba.org #2595655 (WestofEden) & #812329 (fucongcong) +Why isn't that good? 那為甚麼不好? CC-BY 2.0 (France) Attribution: tatoeba.org #4494787 (CK) & #6198951 (verdastelo9604) +Why worry about Tom? 為什麼要擔心Tom? CC-BY 2.0 (France) Attribution: tatoeba.org #4503002 (CK) & #4504420 (egg0073) +You are a professor. 你是教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #2116142 (jamesforsyth) & #8671297 (crescat) +You are always late. 你总是迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #70194 (CK) & #7767588 (jiangche) +You are quite right. 你說得很對。 CC-BY 2.0 (France) Attribution: tatoeba.org #32528 (CK) & #834335 (Martha) +You broke the rules. 你触犯了规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #1895817 (CK) & #844130 (fucongcong) +You can count on it. 你可以依靠它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3341714 (CK) & #5581788 (verdastelo9604) +You can rely on him. 你可以依靠他。 CC-BY 2.0 (France) Attribution: tatoeba.org #9905 (CK) & #1780770 (sadhen) +You can shut up now. 你現在可以住口了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5629440 (Hybrid) & #6073876 (verdastelo9604) +You disappointed me. 你让我失望了。 CC-BY 2.0 (France) Attribution: tatoeba.org #482613 (FeuDRenais) & #4265189 (notabene) +You do have choices. 你有选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497998 (CK) & #5613722 (verdastelo9604) +You guys looked mad. 你们疯了吧 CC-BY 2.0 (France) Attribution: tatoeba.org #4773085 (cairnhead) & #4773193 (kiyawang23) +You guys looked mad. 你們那時候看起來在生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #4773085 (cairnhead) & #4794764 (umidake) +You have everything. 您全都有。 CC-BY 2.0 (France) Attribution: tatoeba.org #69611 (CK) & #8215722 (verdastelo9604) +You have many books. 您有很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #16525 (CK) & #471242 (fucongcong) +You have many books. 你有许多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #16525 (CK) & #471243 (fucongcong) +You look pale today. 你今天看上去很苍白。 CC-BY 2.0 (France) Attribution: tatoeba.org #16130 (CK) & #844116 (fucongcong) +You look very tired. 你看上去非常累。 CC-BY 2.0 (France) Attribution: tatoeba.org #16475 (CK) & #471319 (fucongcong) +You may go anywhere. 您可以随便去哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #16250 (CK) & #469416 (fucongcong) +You may go anywhere. 你可以随便去哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #16250 (CK) & #469417 (fucongcong) +You may go home now. 你現在可以回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16405 (CK) & #836426 (Martha) +You may not come in. 你不能進來。 CC-BY 2.0 (France) Attribution: tatoeba.org #281900 (CK) & #6101325 (verdastelo9604) +You must be kidding! 你一定是开玩笑! CC-BY 2.0 (France) Attribution: tatoeba.org #32858 (CK) & #1878342 (sadhen) +You must study more. 你该学得更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #16352 (CK) & #334683 (fucongcong) +You need a vacation. 你需要個假期。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647245 (CK) & #6111984 (verdastelo9604) +You need protection. 你需要保護。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255171 (CK) & #6128504 (verdastelo9604) +You should try this. 你应该试试这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3178294 (CK) & #5819727 (verdastelo9604) +You'd better go now. 你最好现在就走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2954859 (CK) & #334627 (fucongcong) +You'd better not go. 你最好不要去。 CC-BY 2.0 (France) Attribution: tatoeba.org #16161 (CK) & #833062 (Martha) +You're irresistible. 你令人难以抗拒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1823 (Swift) & #4640216 (olive_wang) +You're not a doctor. 您不是医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #520153 (kebukebu) & #782332 (fucongcong) +You're not too late. 你還不太晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823164 (CK) & #6624679 (verdastelo9604) +You're so beautiful! 你太漂亮了! CC-BY 2.0 (France) Attribution: tatoeba.org #385394 (Mouseneb) & #609958 (sarah) +You're the prisoner. 你是囚犯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218434 (CK) & #5819729 (verdastelo9604) +You're too generous. 你太大方了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218447 (CK) & #6127311 (verdastelo9604) +You're working hard. 你工作努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218510 (CK) & #1992630 (sadhen) +Your father is tall. 你爸爸很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #70957 (CK) & #334118 (fucongcong) +Your hair is pretty. 你的头发很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1130090 (cntrational) & #1417546 (sadhen) +Your memory is good. 你的記憶力很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #432909 (aliene) & #3148828 (cienias) +Your shoes are here. 你的鞋在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #17265 (adjusting) & #373457 (fucongcong) +Your tie looks good. 你的領帶不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #50070 (CM) & #6074202 (xjjAstrus) +Yours is over there. 你的在那儿呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #70864 (CK) & #334276 (fucongcong) +A cup of tea, please. 请给我一杯茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #240980 (CK) & #335003 (fucongcong) +A permit is required. 需要准许。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501385 (CK) & #5701327 (verdastelo9604) +All we need is water. 我们需要的只有水。 CC-BY 2.0 (France) Attribution: tatoeba.org #4700819 (NatsuDonkey) & #8589623 (tianblr) +Almost everyone came. 几乎每个人都来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #894917 (pauldhunt) & #5926170 (verdastelo9604) +Are those explosives? 那些是爆炸物嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2244921 (CK) & #6325083 (verdastelo9604) +Are we going to lose? 我们将会输了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2876101 (CK) & #6938095 (Cheng) +Are you Tom's mother? 你是湯姆的母親嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3678262 (CK) & #6903845 (verdastelo9604) +Are you angry at Tom? 你在生汤姆的气吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4667067 (CK) & #4887670 (musclegirlxyp) +Are you busy at work? 你工作很忙嗎 ? CC-BY 2.0 (France) Attribution: tatoeba.org #5471982 (egg0073) & #1441690 (egg0073) +Are you following me? 你在跟著我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886348 (CK) & #6560620 (verdastelo9604) +Are you going or not? 你去還是不去? CC-BY 2.0 (France) Attribution: tatoeba.org #518631 (CK) & #833801 (Martha) +Are you good at math? 你数学好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2820101 (CK) & #472397 (fucongcong) +Are your hands clean? 你的手乾淨嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17076 (CK) & #793234 (Martha) +Be quiet, all of you. 你們所有的人都安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #273752 (CK) & #833815 (Martha) +Blood was everywhere. 到处都是血。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245003 (CK) & #8739652 (slo_oth) +Bring me a dry towel. 給我一條乾毛巾。 CC-BY 2.0 (France) Attribution: tatoeba.org #21186 (CK) & #832970 (Martha) +But you're not there. 但你不在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #53546 (CK) & #824529 (Martha) +Can I ask a question? 我能问个问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #437979 (aliene) & #334172 (fucongcong) +Can he speak English? 他會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #294045 (CK) & #811815 (Martha) +Can we stop fighting? 我们能不打了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3327502 (CK) & #5983588 (verdastelo9604) +Can you guess my age? 你能猜到我的年龄吗? CC-BY 2.0 (France) Attribution: tatoeba.org #251565 (CK) & #333677 (fucongcong) +Can you ride a horse? 您会骑马吗? CC-BY 2.0 (France) Attribution: tatoeba.org #15859 (CK) & #472381 (fucongcong) +Can you ride a horse? 你会骑马吗? CC-BY 2.0 (France) Attribution: tatoeba.org #15859 (CK) & #3376509 (go_oo) +Can you speak French? 你會講法語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16428 (CK) & #811844 (Martha) +Cats hate to get wet. 猫讨厌被弄湿。 CC-BY 2.0 (France) Attribution: tatoeba.org #623203 (darinmex) & #815302 (fucongcong) +Children need loving. 孩子们需要关爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #245897 (CK) & #1366174 (sadhen) +Clothes make the man. 人要衣裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #269812 (CK) & #766428 (Martha) +Come again next week. 下周再來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496710 (CK) & #6070912 (verdastelo9604) +Come home before six. 六点之前要回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #72433 (CK) & #8591279 (easononizuka) +Could I get some tea? 可以给我一些茶水吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2347264 (CK) & #5096820 (mirrorvan) +Did I miss the party? 我错过派对了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5392595 (CK) & #5393360 (soldier) +Did Tom say anything? Tom有說什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1495869 (CK) & #5363971 (egg0073) +Did Tom talk to Mary? 汤姆跟玛丽说话了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3181165 (CK) & #5983617 (verdastelo9604) +Did somebody hit Tom? 有人打汤姆了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3364629 (CK) & #5576816 (verdastelo9604) +Did something happen? 發生了什麼事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435199 (CK) & #825868 (Martha) +Did you buy cat food? 你买猫粮了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4644964 (ProfessorGiraffe) & #8753734 (slo_oth) +Did you get up early? 你起床早嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2891059 (CK) & #6111940 (verdastelo9604) +Did you go to school? 你去學校了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7819918 (sharris123) & #6014615 (xjjAstrus) +Didn't I tell you so? 我不是告訴過你了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17555 (CK) & #834441 (Martha) +Do it somewhere else. 到别处去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1565499 (CM) & #5794105 (verdastelo9604) +Do you eat out often? 你常常外食嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29957 (CK) & #833038 (Martha) +Do you get up at six? 你六点起床吗? CC-BY 2.0 (France) Attribution: tatoeba.org #237649 (CK) & #813581 (fucongcong) +Do you have a camera? 你有照相机吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63552 (CK) & #336672 (fucongcong) +Do you have a garage? 你有車庫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2647200 (CK) & #6098428 (verdastelo9604) +Do you have children? 你有孩子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434570 (lukaszpp) & #1960023 (egg0073) +Do you have siblings? 你有兄弟姐妹吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7156536 (Kiwi) & #3365893 (go_oo) +Do you have tinnitus? 你耳鸣吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8645625 (hamsolo474) & #1317019 (vicch) +Do you know Tom well? 你很了解汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1066909 (CK) & #1438469 (asosan) +Do you like shopping? 你喜歡購物嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4497991 (CK) & #6059535 (verdastelo9604) +Do you like swimming? 你喜欢游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2280273 (CK) & #5072418 (musclegirlxyp) +Do you run every day? 你每天都跑步吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68918 (CK) & #437958 (fucongcong) +Do you speak Chinese? 你會說中文嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434626 (lukaszpp) & #811843 (Martha) +Do you study English? 您学英语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16289 (brauliobezerra) & #469341 (fucongcong) +Do you study English? 你学英语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16289 (brauliobezerra) & #469344 (fucongcong) +Do you want anything? 你想要什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16449 (CK) & #826230 (Martha) +Does Tom play tennis? 湯姆打網球嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4497989 (CK) & #6199290 (verdastelo9604) +Does anyone know Tom? 有人認識湯姆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5756639 (CM) & #6057846 (verdastelo9604) +Don't be so careless! 别这么粗心! CC-BY 2.0 (France) Attribution: tatoeba.org #1418885 (Spamster) & #5931753 (verdastelo9604) +Don't be so childish. 不要那么幼稚。 CC-BY 2.0 (France) Attribution: tatoeba.org #245683 (CK) & #829735 (fucongcong) +Don't disappoint him. 别让他失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #284416 (CK) & #1324868 (vicch) +Don't eat like a pig. 别像猪一样猛吃东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #41548 (CK) & #1790135 (sadhen) +Don't go to extremes. 别走极端。 CC-BY 2.0 (France) Attribution: tatoeba.org #18859 (CK) & #1878293 (sadhen) +Don't leave the room. 别离开房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360980 (CK) & #1361970 (sadhen) +Don't let the dog in. 别让狗进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #566407 (CK) & #1411550 (asosan) +Don't open your book. 不要打开你的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #453893 (saasmath) & #731725 (fucongcong) +Don't try to stop me. 别想阻止我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1852408 (CK) & #5862105 (verdastelo9604) +Don't worry about it. 不要擔心它。 CC-BY 2.0 (France) Attribution: tatoeba.org #433745 (CK) & #825933 (Martha) +Don't worry about me. 不要擔心我。 CC-BY 2.0 (France) Attribution: tatoeba.org #25528 (CK) & #793248 (Martha) +Everyone, say cheese. 所有人,都请说 cheese 。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877594 (CK) & #1878361 (sadhen) +Everything is normal. 一切正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #1892487 (CM) & #7781930 (jiangche) +Everything went well. 一切都很顺利。 CC-BY 2.0 (France) Attribution: tatoeba.org #530030 (wma) & #466062 (fucongcong) +Finally, it's Friday. 終於星期五了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433868 (CK) & #826267 (Martha) +Get me the newspaper. 去拿一下报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #269445 (CK) & #8938660 (crescat) +Give me the notebook. 把筆記本給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151473 (CK) & #9054604 (xjjAstrus) +Go back to your seat. 回到你的座位。 CC-BY 2.0 (France) Attribution: tatoeba.org #17013 (CK) & #834384 (Martha) +Go get your passport. 去拿你的护照。 CC-BY 2.0 (France) Attribution: tatoeba.org #3411023 (CK) & #8621494 (slo_oth) +Go on with your work. 繼續工作! CC-BY 2.0 (France) Attribution: tatoeba.org #2647174 (CK) & #3982106 (tsayng) +Has anything changed? 有任何事情改變了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433721 (CK) & #825180 (Martha) +Have a nice day, Tom. 汤姆,希望你今天玩得开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3371184 (CK) & #5091372 (mirrorvan) +Have you been eating? 你在吃东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2647169 (CK) & #5989213 (verdastelo9604) +Have you eaten lunch? 你吃過午飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1477113 (weihaiping) & #838601 (Martha) +Have you finished it? 你做完了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16546 (CK) & #793229 (Martha) +He accepted her gift. 他接受了她的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #302582 (CK) & #397147 (fucongcong) +He acted as my guide. 他擔任我的嚮導。 CC-BY 2.0 (France) Attribution: tatoeba.org #297774 (CK) & #834546 (Martha) +He came to my rescue. 他拯救了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #283751 (CK) & #834514 (Martha) +He clipped the sheep. 他為羊隻修剪羊毛。 CC-BY 2.0 (France) Attribution: tatoeba.org #304518 (CM) & #1368341 (tsayng) +He committed suicide. 他自杀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298467 (CK) & #405244 (fucongcong) +He devoured his meal. 他狼吞虎咽地吃了一顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #299784 (CM) & #334763 (fucongcong) +He doesn't like fish. 他不喜歡吃魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #295268 (CK) & #710953 (egg0073) +He doesn't tell lies. 他不说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173823 (CK) & #5865517 (verdastelo9604) +He fell to the floor. 他摔倒在地。 CC-BY 2.0 (France) Attribution: tatoeba.org #2184747 (FeuDRenais) & #408831 (fucongcong) +He gets tired easily. 他很容易觉得累。 CC-BY 2.0 (France) Attribution: tatoeba.org #291794 (CK) & #335106 (fucongcong) +He had a hungry look. 他面有飢色 CC-BY 2.0 (France) Attribution: tatoeba.org #292566 (CM) & #875130 (Martha) +He has a nice income. 他收入可观。 CC-BY 2.0 (France) Attribution: tatoeba.org #674128 (Eldad) & #1454454 (sadhen) +He has lots of money. 他有很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1311867 (CM) & #480581 (biglion) +He has poor eyesight. 他的视力不佳。 CC-BY 2.0 (France) Attribution: tatoeba.org #298212 (CK) & #794252 (fucongcong) +He has strange ideas. 他有着奇妙的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #1047143 (CK) & #3630238 (suitchic) +He has two daughters. 他有两个女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #284644 (CN) & #811296 (fucongcong) +He is a Japanese boy. 他是个日本少年。 CC-BY 2.0 (France) Attribution: tatoeba.org #302228 (CK) & #347096 (fucongcong) +He is about your age. 他跟您年纪差不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #301315 (CK) & #7780773 (jiangche) +He is always with me. 他一直与我同在。 CC-BY 2.0 (France) Attribution: tatoeba.org #289132 (CK) & #2004691 (sadhen) +He is angry with you. 他在生你的氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #295630 (CK) & #834499 (Martha) +He is apt to be late. 他很容易遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #301509 (CK) & #786101 (Martha) +He is as tall as her. 他和她一样高。 CC-BY 2.0 (France) Attribution: tatoeba.org #302633 (CK) & #335147 (fucongcong) +He is full of energy. 他充满活力。 CC-BY 2.0 (France) Attribution: tatoeba.org #294885 (CK) & #336432 (fucongcong) +He is in the kitchen. 他在厨房。 CC-BY 2.0 (France) Attribution: tatoeba.org #434934 (lukaszpp) & #8692953 (crescat) +He is very sensitive. 他很敏感。 CC-BY 2.0 (France) Attribution: tatoeba.org #729951 (Martha) & #729952 (Martha) +He is wearing gloves. 他戴着手套。 CC-BY 2.0 (France) Attribution: tatoeba.org #299237 (CK) & #410823 (fucongcong) +He isn't an American. 他不是美国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1120774 (cntrational) & #389442 (fucongcong) +He knows how to swim. 他会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1540650 (CM) & #408816 (fucongcong) +He knows many people. 他认识很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1774965 (potatosoup) & #335104 (fucongcong) +He likes to watch TV. 他喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #291890 (CK) & #826203 (Martha) +He likes watching TV. 他喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #388834 (CK) & #826203 (Martha) +He may have been ill. 他可能病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #303096 (Eldad) & #426880 (fucongcong) +He put away his toys. 他收起了他的玩具。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230662 (alec) & #334123 (fucongcong) +He ran into the room. 他跑进房间内。 CC-BY 2.0 (France) Attribution: tatoeba.org #303395 (CK) & #1358530 (sadhen) +He reads a good deal. 他读很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #292244 (CM) & #8605838 (slo_oth) +He seems quite happy. 他看起来好像很幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #292097 (CK) & #8697577 (morningstar) +He slipped me a note. 他悄悄地递给我一张纸条。 CC-BY 2.0 (France) Attribution: tatoeba.org #297544 (CK) & #2440659 (fenfang557) +He spoke very loudly. 他说得很大声。 CC-BY 2.0 (France) Attribution: tatoeba.org #292140 (CK) & #332473 (fucongcong) +He studied very hard. 他学习非常努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #293766 (CK) & #2050889 (sadhen) +He took it literally. 他按照字面上的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #354503 (plover) & #785144 (Martha) +He used to live here. 他以前住在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #293512 (CK) & #426893 (fucongcong) +He wants to kiss her. 他想亲她。 CC-BY 2.0 (France) Attribution: tatoeba.org #956248 (CK) & #7771862 (jiangche) +He was an honest man. 他以前是个诚实的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2908273 (CK) & #7779225 (jiangche) +He was elected mayor. 他被选为市长。 CC-BY 2.0 (France) Attribution: tatoeba.org #297172 (CK) & #332862 (fucongcong) +He was sitting there. 他之前坐在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2720234 (WestofEden) & #4844983 (pig8322) +He went to the store. 他去了商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #485111 (Scott) & #785849 (fucongcong) +He will be back soon. 他很快就会回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #290243 (CK) & #332892 (fucongcong) +He wrote me a letter. 他给我写了封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #514904 (Gabuliellu) & #7768143 (jiangche) +He's a bit energetic. 他有点活泼。 CC-BY 2.0 (France) Attribution: tatoeba.org #551530 (FeuDRenais) & #336451 (fucongcong) +He's a tennis player. 他是个网球球手。 CC-BY 2.0 (France) Attribution: tatoeba.org #454470 (FeuDRenais) & #335092 (fucongcong) +He's bound to forget. 他准会忘。 CC-BY 2.0 (France) Attribution: tatoeba.org #2795200 (CM) & #5550267 (verdastelo9604) +He's eating an apple. 他正吃著一個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #405764 (CK) & #824642 (Martha) +He's younger than me. 他比我年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1346002 (viljami) & #1415765 (sadhen) +Her nose is bleeding. 她在流鼻血。 CC-BY 2.0 (France) Attribution: tatoeba.org #950190 (CM) & #8655346 (slo_oth) +Here comes the train. 火車來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33133 (CK) & #919712 (Martha) +Hey you! Please wait. 嘿,你!請稍候。 CC-BY 2.0 (France) Attribution: tatoeba.org #410598 (CK) & #825181 (Martha) +Hi! Do you work here? 嗨!你在这儿工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #54608 (Zifre) & #1883019 (sadhen) +His face turned pale. 他的脸失去了所有颜色。 CC-BY 2.0 (France) Attribution: tatoeba.org #395658 (CK) & #847704 (fucongcong) +His memory amazes me. 他的记忆力使我惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #285861 (Zifre) & #406321 (fucongcong) +How about a sandwich? 三明治怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #2871777 (CK) & #6073895 (verdastelo9604) +How can you say that? 你怎麼能那麼說? CC-BY 2.0 (France) Attribution: tatoeba.org #17548 (CK) & #833189 (Martha) +How deep is the hole? 這個洞多深? CC-BY 2.0 (France) Attribution: tatoeba.org #680647 (Source_VOA) & #778479 (Martha) +How did you meet Tom? 你是怎麼見到湯姆的? CC-BY 2.0 (France) Attribution: tatoeba.org #3277267 (dimitris) & #6535841 (verdastelo9604) +How did your test go? 你的测验怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3408148 (Hybrid) & #473012 (fucongcong) +How high is Mt. Fuji? 富士山有多高? CC-BY 2.0 (France) Attribution: tatoeba.org #318767 (CK) & #817266 (fucongcong) +How much did you bid? 你出价多少? CC-BY 2.0 (France) Attribution: tatoeba.org #2912572 (CK) & #5640739 (verdastelo9604) +How much did you pay? 您付了多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #2912577 (CK) & #7780777 (jiangche) +How much is this hat? 这顶帽子多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #4817728 (CK) & #5096462 (mirrorvan) +How much is this pen? 这支钢笔要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #60537 (CK) & #363987 (fucongcong) +How much is this pen? 這支筆多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #60537 (CK) & #790378 (Martha) +How was your weekend? 你的周末是怎么过的? CC-BY 2.0 (France) Attribution: tatoeba.org #466007 (CK) & #472764 (fucongcong) +How was your weekend? 你週末過得怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #466007 (CK) & #825147 (Martha) +How's your job going? 工作怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3943856 (sabretou) & #5100103 (mirrorvan) +How's your wife, Tom? 你媳妇怎么样,汤姆? CC-BY 2.0 (France) Attribution: tatoeba.org #2647157 (CK) & #8511422 (gumblex) +I accepted the offer. 我接受了报价。 CC-BY 2.0 (France) Attribution: tatoeba.org #1640911 (summer) & #804837 (fucongcong) +I already apologized. 我已经道歉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745665 (Spamster) & #1746053 (sadhen) +I am a stranger here. 我是這裡的外地人。 CC-BY 2.0 (France) Attribution: tatoeba.org #253493 (CK) & #941138 (Martha) +I am afraid of death. 我怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #801756 (CM) & #335251 (fucongcong) +I am afraid of dying. 我怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #246329 (CK) & #335251 (fucongcong) +I am counting on you. 我指望你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #237705 (CK) & #834296 (Martha) +I am leaving at four. 我四點要離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #72584 (CK) & #917776 (Martha) +I am not well at all. 我一点都不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #259287 (CM) & #390543 (fucongcong) +I am poor at drawing. 我不擅長畫畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #256601 (CK) & #941150 (Martha) +I ate Tom's sandwich. 我吃了湯姆的三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938421 (CK) & #6132365 (verdastelo9604) +I believe that story. 我相信那个故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #254738 (CK) & #343987 (fucongcong) +I bought an old lamp. 我买了一盏很旧的灯。 CC-BY 2.0 (France) Attribution: tatoeba.org #257298 (CK) & #2029285 (ydcok) +I bought her a watch. 我買了一支手錶給她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394667 (CK) & #834493 (Martha) +I broke my right leg. 我摔斷了右腿。 CC-BY 2.0 (France) Attribution: tatoeba.org #256129 (CK) & #918556 (Martha) +I can barely see you. 我幾乎看不見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2300615 (CK) & #6583892 (verdastelo9604) +I can swim very fast. 我游泳可以游得很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #254910 (CK) & #917950 (Martha) +I can't afford a car. 我買不起車子。 CC-BY 2.0 (France) Attribution: tatoeba.org #249843 (CK) & #919877 (Martha) +I can't believe that. 我不能相信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950849 (CK) & #5617198 (verdastelo9604) +I can't do it either. 我也不會做。 CC-BY 2.0 (France) Attribution: tatoeba.org #433649 (CK) & #832967 (Martha) +I can't say for sure. 我不太確定。 CC-BY 2.0 (France) Attribution: tatoeba.org #24895 (CK) & #792397 (Martha) +I can't shut it down. 我不能關掉它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1125530 (Scott) & #6150009 (verdastelo9604) +I can't sleep at all! 完全睡不着。 CC-BY 2.0 (France) Attribution: tatoeba.org #32315 (CK) & #8727952 (crescat) +I can't sleep at all. 完全睡不着。 CC-BY 2.0 (France) Attribution: tatoeba.org #664043 (bluepie88) & #8727952 (crescat) +I can't tell you now. 我現在不能告訴你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3737047 (CK) & #6199270 (verdastelo9604) +I can't wait for you. 我不能等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237702 (CK) & #833049 (Martha) +I can't wait forever. 我不能永远地等。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955104 (CK) & #5670783 (verdastelo9604) +I couldn't leave Tom. 我不能離開湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #4667052 (CK) & #6959854 (verdastelo9604) +I didn't do anything. 我什么事都没有做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1634944 (Amastan) & #2028056 (sadhen) +I didn't do it alone. 我没有独自做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2208390 (CK) & #5911683 (verdastelo9604) +I dislike big cities. 我不喜歡大城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #275861 (CK) & #899513 (Martha) +I don't discriminate. 我不歧视人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245719 (CK) & #7767712 (jiangche) +I don't get the joke. 我没明白那个笑话。 CC-BY 2.0 (France) Attribution: tatoeba.org #792246 (CK) & #804871 (fucongcong) +I don't go to school. 我不去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #1578584 (CM) & #6332424 (verdastelo9604) +I don't like English. 我不喜歡英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #256182 (CK) & #768263 (Martha) +I don't like science. 我不喜欢科学。 CC-BY 2.0 (France) Attribution: tatoeba.org #5389132 (Hybrid) & #2032167 (ydcok) +I don't need anybody. 我谁也不需要。 CC-BY 2.0 (France) Attribution: tatoeba.org #2092593 (CK) & #7772598 (jiangche) +I don't speak German. 我不会说德语。 CC-BY 2.0 (France) Attribution: tatoeba.org #482351 (adjusting) & #472964 (fucongcong) +I don't want to swim. 我不想游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #4737848 (mervert1) & #4739767 (elenachang) +I don't want to wait. 我不想等。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012073 (CK) & #6874552 (verdastelo9604) +I found it by chance. 我偶然找到了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #5341000 (Amittai) & #5640705 (verdastelo9604) +I guess you're right. 我猜你是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887329 (CK) & #835850 (Martha) +I had fun last night. 昨晚我玩得开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331654 (CK) & #5091761 (mirrorvan) +I hate silent movies. 我讨厌无声电影。 CC-BY 2.0 (France) Attribution: tatoeba.org #2665328 (meerkat) & #8809757 (crescat) +I have a job for you. 我有工作給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237724 (CK) & #848838 (Martha) +I have a lot of cats. 我有很多狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851509 (CK) & #6120798 (verdastelo9604) +I have a new red car. 我有一輛新的紅色汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #259020 (CK) & #846173 (Martha) +I have a sore throat. 我喉嚨痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #417891 (CK) & #834580 (Martha) +I have a stomachache. 我胃痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #64954 (CK) & #332916 (fucongcong) +I have lost my watch. 我把我的表丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258128 (CK) & #7771926 (jiangche) +I have so many ideas. 我有那麼多的主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887368 (CK) & #6111927 (verdastelo9604) +I have three cameras. 我有三台攝影機。 CC-BY 2.0 (France) Attribution: tatoeba.org #321599 (CK) & #826141 (Martha) +I have what you need. 我有你需要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822105 (CK) & #5675492 (xjjAstrus) +I intend to go there. 我打算去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #50878 (CK) & #824353 (Martha) +I just cut my finger. 我剛剛切到手指了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246249 (CK) & #3841891 (cienias) +I just don't like it. 我只是不喜欢它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276287 (CK) & #5983676 (verdastelo9604) +I just want to sleep. 我只想睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2079037 (CK) & #8777516 (crescat) +I know everyone here. 我認識這裡的每個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6220217 (CK) & #3742573 (egg0073) +I know her very well. 我非常了解她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261340 (CK) & #812261 (fucongcong) +I know life is short. 我知道生命是短暂的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7240571 (CK) & #7772403 (jiangche) +I know what you mean. 我知道你的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #17198 (CK) & #834604 (Martha) +I know who likes Tom. 我知道谁喜欢汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5754860 (CM) & #5794151 (verdastelo9604) +I left the door open. 我讓門開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #406685 (CK) & #835333 (Martha) +I lent Tom my camera. 我把我的相機借給了湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5708389 (CK) & #6535834 (verdastelo9604) +I like to eat apples. 我喜欢吃苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #255926 (CK) & #444717 (fucongcong) +I like walking alone. 我喜歡獨自行走。 CC-BY 2.0 (France) Attribution: tatoeba.org #350900 (human600) & #6621226 (verdastelo9604) +I like you very much. 我非常喜歡你。 CC-BY 2.0 (France) Attribution: tatoeba.org #257095 (CK) & #803741 (Martha) +I live in a big city. 我住在一个大城市里。 CC-BY 2.0 (France) Attribution: tatoeba.org #259357 (CK) & #334645 (fucongcong) +I look forward to it. 我很期待哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1565471 (CK) & #3610746 (slo_oth) +I looked at my notes. 我看了自己的笔记。 CC-BY 2.0 (France) Attribution: tatoeba.org #3536304 (Hybrid) & #8777514 (crescat) +I made a few changes. 我做了点改动。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887562 (CK) & #7772623 (jiangche) +I made a paper plane. 我造了架纸飞机。 CC-BY 2.0 (France) Attribution: tatoeba.org #263359 (CK) & #5550202 (verdastelo9604) +I met Mary yesterday. 昨天我遇見了瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #257749 (CK) & #824748 (Martha) +I miss you very much. 我非常想你。 CC-BY 2.0 (France) Attribution: tatoeba.org #18053 (CK) & #444654 (fucongcong) +I must sell my house. 我得卖我的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5298848 (Joseph) & #5581729 (verdastelo9604) +I need to go to work. 我得去工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140166 (CK) & #1415898 (sadhen) +I need to study math. 我需要学习数学。 CC-BY 2.0 (France) Attribution: tatoeba.org #258939 (CK) & #792855 (fucongcong) +I need to take notes. 我需要作筆記。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387746 (CK) & #4754696 (egg0073) +I no longer love Tom. 我不再愛湯姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5583956 (CK) & #6109307 (verdastelo9604) +I no longer love him. 我已经不爱他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #454097 (saasmath) & #7772514 (jiangche) +I no longer love you. 我不再爱你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1081165 (keira_n) & #335060 (fucongcong) +I owe Tom some money. 我欠湯姆錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2389598 (CK) & #6393364 (verdastelo9604) +I owe a lot of money. 我欠了很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2389592 (CK) & #4517817 (yuiyu) +I paid $200 in taxes. 我付了兩百元含稅。 CC-BY 2.0 (France) Attribution: tatoeba.org #259005 (CK) & #835787 (Martha) +I paid him the money. 我付了他钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #260304 (CK) & #5911723 (verdastelo9604) +I promise I'll do it. 我保证我会做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8442736 (CK) & #8463667 (gumblex) +I refused, of course. 我當然拒絶了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6887091 (Hybrid) & #8215751 (verdastelo9604) +I rejected the offer. 我拒绝了报价。 CC-BY 2.0 (France) Attribution: tatoeba.org #46062 (CK) & #804839 (fucongcong) +I remember this word. 我记得这个单词。 CC-BY 2.0 (France) Attribution: tatoeba.org #943777 (shanghainese) & #1776720 (sadhen) +I said it might rain. 我说了可能要下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #26883 (CK) & #334080 (fucongcong) +I said open the door. 我說開門。 CC-BY 2.0 (France) Attribution: tatoeba.org #2405888 (CK) & #6101352 (verdastelo9604) +I saw a lot of buses. 我看見了很多大巴車。 CC-BY 2.0 (France) Attribution: tatoeba.org #8780298 (weihaiping) & #5833757 (xjjAstrus) +I should've declined. 我本应婉拒。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721616 (CM) & #4844815 (sadhen) +I sometimes watch TV. 我有時看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #544697 (CK) & #825905 (Martha) +I sort of understand. 我大概懂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24900 (CK) & #333776 (fucongcong) +I think I understand. 我想我懂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #320004 (CK) & #335167 (fucongcong) +I think Tom is awake. 我想Tom已经醒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408256 (CK) & #4845062 (pig8322) +I think it was wrong. 我认为它错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4980096 (CK) & #5576836 (verdastelo9604) +I think that's awful. 我看那糟透了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408156 (CK) & #5576797 (verdastelo9604) +I think this is true. 我想这是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5313664 (csmjj) & #4264926 (notabene) +I think you're lying. 我觉得你在撒谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1879826 (Spamster) & #4764630 (ryanwoo) +I think you're ready. 我認為你準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887796 (CK) & #6114385 (verdastelo9604) +I walked up the hill. 我走上山了。 CC-BY 2.0 (France) Attribution: tatoeba.org #28932 (CK) & #834716 (Martha) +I want an MP3 player! 我想要一个MP3播放器! CC-BY 2.0 (France) Attribution: tatoeba.org #2161 (CK) & #503279 (fucongcong) +I want some potatoes. 我要几个土豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #253906 (CK) & #816472 (fucongcong) +I want the other one. 我想要另一個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011560 (CK) & #6058606 (verdastelo9604) +I want to make a pie. 我想做个派。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361775 (CK) & #4625752 (Yashanti) +I want to study math. 我想学数学。 CC-BY 2.0 (France) Attribution: tatoeba.org #258938 (CK) & #616204 (sarah) +I wanted to go there. 我想去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #29011 (CK) & #834662 (Martha) +I wanted to stop Tom. 我想阻止湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011585 (CK) & #6105209 (verdastelo9604) +I was at the theater. 我在劇場。 CC-BY 2.0 (France) Attribution: tatoeba.org #256730 (CK) & #6128437 (verdastelo9604) +I was late to school. 我上学迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2025 (CK) & #503041 (fucongcong) +I was somewhere else. 我在另一个地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547913 (CK) & #7768156 (jiangche) +I was stung by a bee. 我被蜜蜂蛰了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1384365 (CK) & #334139 (fucongcong) +I went into the navy. 我加入了海軍。 CC-BY 2.0 (France) Attribution: tatoeba.org #256592 (CK) & #786117 (Martha) +I will come with you. 我會和你一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #71246 (CK) & #834947 (Martha) +I wish I were taller. 我希望我比較高。 CC-BY 2.0 (France) Attribution: tatoeba.org #30375 (CK) & #834625 (Martha) +I wish you good luck. 我祝您好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #54468 (CK) & #344208 (fucongcong) +I'll admit I'm wrong. 我承認我錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #321323 (CK) & #819339 (Martha) +I'll ask Tom to wait. 我會請Tom等。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495866 (CK) & #5363970 (egg0073) +I'll be watching you. 我會看著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #321960 (CK) & #825901 (Martha) +I'll dream about you. 我会梦到你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890892 (CK) & #7771848 (jiangche) +I'll give you a book. 我會給你一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #515540 (CK) & #835349 (Martha) +I'll give you a ride. 我會載你一程。 CC-BY 2.0 (France) Attribution: tatoeba.org #265472 (Dejo) & #910290 (Martha) +I'll give you a ride. 我会让你搭个便车。 CC-BY 2.0 (France) Attribution: tatoeba.org #265472 (Dejo) & #5091847 (mirrorvan) +I'll give you a ring. 我会打电话给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2164519 (FeuDRenais) & #2163111 (sadhen) +I'll help you escape. 我会帮你逃跑的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547826 (CK) & #7767660 (jiangche) +I'll never leave you. 我永远不会离开您的。 CC-BY 2.0 (France) Attribution: tatoeba.org #614435 (CK) & #7781751 (jiangche) +I'll prove it to you. 我会给你证明的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841639 (CK) & #4177486 (maple) +I'll take care of it. 我會關照它的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433528 (CK) & #834720 (Martha) +I'm an honest person. 我是个老实人。 CC-BY 2.0 (France) Attribution: tatoeba.org #258975 (CK) & #426409 (fucongcong) +I'm buying a new car. 我在买一辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2116390 (Eldad) & #5663532 (verdastelo9604) +I'm closing the door. 我在關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #1978785 (LanguageExpert) & #6624698 (verdastelo9604) +I'm coming home, Tom. 我在回家,湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547784 (CK) & #6089781 (verdastelo9604) +I'm folding my dress. 我在叠我的连衣裙。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873231 (CK) & #3043967 (sadhen) +I'm glad I was there. 我很高興我在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #254082 (CK) & #917966 (Martha) +I'm here on business. 我在這裡出差。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547741 (CK) & #918012 (Martha) +I'm here to help you. 我來這裡幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891003 (CK) & #6199273 (verdastelo9604) +I'm in a hurry today. 我今天趕時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #242828 (CK) & #834798 (Martha) +I'm in love with her. 我愛上她了。 CC-BY 2.0 (France) Attribution: tatoeba.org #394631 (CK) & #834647 (Martha) +I'm incredibly tired. 我累死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1120772 (cntrational) & #333923 (fucongcong) +I'm just another man. 我只是个大众脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #38144 (CM) & #1397353 (mtdot) +I'm learning English. 我學英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #1188743 (cntrational) & #759624 (Martha) +I'm not at all tired. 我根本不累。 CC-BY 2.0 (France) Attribution: tatoeba.org #51271 (CK) & #334090 (fucongcong) +I'm not feeling well. 我感觉不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #20288 (CK) & #501698 (fucongcong) +I'm not feeling well. 我身体不适。 CC-BY 2.0 (France) Attribution: tatoeba.org #20288 (CK) & #1424250 (sadhen) +I'm not tired at all. 我根本不累。 CC-BY 2.0 (France) Attribution: tatoeba.org #321559 (CK) & #334090 (fucongcong) +I'm not turning back. 我不回去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547698 (CK) & #6111870 (verdastelo9604) +I'm playing baseball. 我在打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873224 (CK) & #917977 (Martha) +I'm sorry to hear it. 我听了感到抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #41765 (CK) & #5900185 (verdastelo9604) +I'm sure they'll win. 我確定他們會贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #305593 (CK) & #917791 (Martha) +I'm sure they'll win. 我相信他們會贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #305593 (CK) & #917792 (Martha) +I'm the one you want. 我就是你要找的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547670 (CK) & #6483524 (verdastelo9604) +I'm thirty years old. 我三十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547669 (CK) & #8767504 (xjjAstrus) +I'm tired of dancing. 我厭倦了跳舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #531645 (Shishir) & #884215 (Martha) +I'm tired of writing. 我写腻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1567410 (CK) & #8780270 (crescat) +I'm walking with her. 我正跟她一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #410763 (CK) & #824573 (Martha) +I'm willing to share. 我乐意分享。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547662 (CK) & #5903478 (verdastelo9604) +I've deleted the app. 我删除了这个应用。 CC-BY 2.0 (France) Attribution: tatoeba.org #8444208 (Luiaard) & #8463669 (gumblex) +I've eaten one apple. 我吃了一個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #7816235 (sharris123) & #6057138 (xjjAstrus) +I've got a pacemaker. 我裝了個心臟起搏器。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236 (kebukebu) & #760753 (Martha) +I've got one for you. 我給你帶了一個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2769457 (CM) & #6624668 (verdastelo9604) +I've won first prize! 我贏得了第一名! CC-BY 2.0 (France) Attribution: tatoeba.org #73092 (CK) & #826280 (Martha) +Is Tom there already? 汤姆已经在那里了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3371189 (CK) & #8926977 (crescat) +Is his pulse regular? 他的脈搏正常嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #287571 (CK) & #780050 (Martha) +Is she a taxi driver? 她是出租车司机吗? CC-BY 2.0 (France) Attribution: tatoeba.org #311544 (CK) & #8511483 (gumblex) +Is there a timetable? 有时间表吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3730482 (CM) & #5763020 (verdastelo9604) +It belongs to me now. 它现在归我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1820324 (Spamster) & #4764634 (ryanwoo) +It is already eleven. 已经是11点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1618 (CK) & #334137 (fucongcong) +It looks like a duck. 它看起來像一隻鴨子。 CC-BY 2.0 (France) Attribution: tatoeba.org #67766 (CK) & #881726 (Martha) +It looks like an egg. 这看上去像个蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #42039 (CK) & #334185 (fucongcong) +It makes me feel sad. 这让我感到沮丧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447020 (CK) & #5637375 (verdastelo9604) +It only costs $10.00! 只要十元! CC-BY 2.0 (France) Attribution: tatoeba.org #40834 (CK) & #8388775 (wangchou) +It rained for a week. 雨下了一周。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211536 (alec) & #333989 (fucongcong) +It seems so familiar. 这看起来似曾相识。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824775 (CK) & #5911894 (chowhak) +It snowed last night. 昨晚下了雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247090 (mayahueli) & #8800811 (crescat) +It was a long letter. 它是封长信。 CC-BY 2.0 (France) Attribution: tatoeba.org #42224 (CK) & #5670808 (verdastelo9604) +It was time to leave. 是时候离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266756 (CK) & #8768758 (slo_oth) +It'll be spring soon. 春天快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5471295 (CK) & #797026 (Martha) +It's a good question. 它是一個很好的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #521667 (CK) & #826107 (Martha) +It's a piece of cake. 小菜一碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #21259 (Eldad) & #794009 (fucongcong) +It's a waste of time. 这是浪费时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #42348 (CK) & #405204 (fucongcong) +It's all Greek to me. 我对此一窍不通。 CC-BY 2.0 (France) Attribution: tatoeba.org #249797 (Zifre) & #785914 (fucongcong) +It's all Tom's fault. 全是湯姆的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027398 (CK) & #6923174 (verdastelo9604) +It's an easy victory. 這是一個輕鬆取得的勝利。 CC-BY 2.0 (France) Attribution: tatoeba.org #435761 (CK) & #819342 (Martha) +It's been a long war. 这是场长久的战争。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636099 (CK) & #5550010 (verdastelo9604) +It's good to see you. 见到你真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #954081 (CK) & #795754 (fucongcong) +It's my CD, isn't it? 這是我的CD,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433737 (CK) & #835442 (Martha) +It's not that simple. 它沒有那麼簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #777268 (FeuDRenais) & #903588 (Martha) +It's nothing serious. 這沒什麼要緊的。 CC-BY 2.0 (France) Attribution: tatoeba.org #449019 (CK) & #826187 (Martha) +It's sort of strange. 有點奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #42706 (CK) & #6132368 (verdastelo9604) +It's stopped snowing. 雪停了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6440422 (CK) & #8940735 (crescat) +It's time for dinner. 吃晚飯的時間到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324619 (CK) & #484096 (moonoops) +It's under the table. 它在桌下。 CC-BY 2.0 (France) Attribution: tatoeba.org #39623 (CK) & #1366055 (sadhen) +Keep your voice down. 你说话小点声。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860649 (CK) & #7767745 (jiangche) +Let me get my violin. 让我拿一下我的小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3403373 (CK) & #8589628 (tianblr) +Let me say one thing. 讓我說一件事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #433735 (CK) & #834675 (Martha) +Let's clean our room. 打扫我们的房间吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #247678 (CK) & #835658 (fucongcong) +Let's go to the club. 讓我們去俱樂部吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #619676 (ulyssemc1) & #6623183 (verdastelo9604) +Let's hope she comes. 讓我們祈盼她會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #815440 (U2FS) & #816789 (Martha) +Let's make some more. 我們做多一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756003 (garborg) & #4754638 (egg0073) +Let's not discuss it. 我们不要讨论它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007687 (CK) & #3087004 (sadhen) +Lincoln died in 1865. 林肯於1865年去世。 CC-BY 2.0 (France) Attribution: tatoeba.org #29653 (CK) & #824589 (Martha) +Mary came on her own. Mary自己一個人來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898340 (CK) & #5344339 (egg0073) +Mary hugged her doll. Mary擁抱她的娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898338 (CK) & #5344311 (egg0073) +Mary plays the piano. 瑪麗彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #31969 (CK) & #824592 (Martha) +May I ask a question? 我能问个问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1594 (CK) & #334172 (fucongcong) +May I go out to play? 我可以出去玩嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22017 (CK) & #862705 (Martha) +May I play the piano? 我可以彈鋼琴嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34901 (CK) & #835629 (Martha) +Maybe we should talk. 大概我们需要交谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #3181162 (CK) & #4844973 (pig8322) +Maybe you'll succeed. 也許你會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #65028 (CK) & #819352 (Martha) +Mission accomplished. 任务完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #4706619 (shekitten) & #7768129 (jiangche) +My car's in the shop. 我的車在店裡修理中。 CC-BY 2.0 (France) Attribution: tatoeba.org #321459 (CK) & #835657 (Martha) +My eyes are watering. 我在流眼淚。 CC-BY 2.0 (France) Attribution: tatoeba.org #325981 (CK) & #781151 (Martha) +My father became old. 我爸爸變老了。 CC-BY 2.0 (France) Attribution: tatoeba.org #780857 (ingenius000) & #781503 (Martha) +My father grows rice. 我爸种水稻。 CC-BY 2.0 (France) Attribution: tatoeba.org #319336 (CK) & #1397045 (mtdot) +My father is healthy. 父亲很健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #2455027 (wma) & #7767607 (jiangche) +My gums are bleeding. 我的牙齦流血。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755425 (garborg) & #4492477 (egg0073) +My head is exploding. 我的頭要炸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1124833 (CM) & #6064597 (verdastelo9604) +My watch has stopped. 我的錶停了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2656894 (FeuDRenais) & #2638746 (cienias) +No news is good news. 没消息就是好消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2352 (CK) & #375348 (fucongcong) +No one else was hurt. 没有别的人受伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #4962881 (CK) & #5845641 (verdastelo9604) +No one escaped alive. 沒有人生還。 CC-BY 2.0 (France) Attribution: tatoeba.org #2570960 (Hybrid) & #2771133 (cienias) +Nobody supported her. 没人支持她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1329084 (Eldad) & #7772134 (jiangche) +One of them is a spy. 他們其中一人是間諜。 CC-BY 2.0 (France) Attribution: tatoeba.org #68748 (CK) & #797075 (Martha) +Orange juice, please. 柳橙汁,麻煩你。 CC-BY 2.0 (France) Attribution: tatoeba.org #536954 (blay_paul) & #5548488 (egg0073) +Our fridge is broken. 我們的冰箱壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #574026 (Scott) & #9096090 (xjjAstrus) +Our train is delayed. 我們的車誤點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1073136 (CM) & #1073135 (egg0073) +People have two legs. 人有两只脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #7790241 (sharris123) & #1423336 (sadhen) +Perhaps you're right. 也许您有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898277 (CK) & #7768335 (jiangche) +Please eat some cake. 请吃点蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1008846 (AOCinJAPAN) & #5091393 (mirrorvan) +Please lock the door. 請把門鎖上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495865 (CK) & #5363969 (egg0073) +Please open the door. 請把門打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #39008 (CK) & #710680 (egg0073) +Please open the door. 請開門。 CC-BY 2.0 (France) Attribution: tatoeba.org #39008 (CK) & #5234818 (xjjAstrus) +Please shut the door. 請關上門。 CC-BY 2.0 (France) Attribution: tatoeba.org #495837 (CK) & #819305 (Martha) +Please shut the door. 請關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #495837 (CK) & #819441 (Martha) +Please stop fighting. 請您們別再吵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1326102 (CK) & #4117395 (egg0073) +Please think it over. 請考慮一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #442023 (CK) & #771515 (Martha) +Please wait a moment. 请稍等一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #430067 (witbrock) & #8795146 (crescat) +Put handcuffs on him. 把他铐上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954297 (CK) & #5102333 (mirrorvan) +Put your weapon down. 把你的武器放下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3155585 (CK) & #6678460 (verdastelo9604) +See you at the party. 在派對上見。 CC-BY 2.0 (France) Attribution: tatoeba.org #53205 (CK) & #840806 (Martha) +See you at the party. 在派对上见 CC-BY 2.0 (France) Attribution: tatoeba.org #53205 (CK) & #1358642 (sadhen) +She always gets lost. 她总是迷路。 CC-BY 2.0 (France) Attribution: tatoeba.org #310494 (CK) & #1350131 (vicch) +She gave him a watch. 她给了他一块表。 CC-BY 2.0 (France) Attribution: tatoeba.org #316307 (CK) & #844517 (kooler) +She gave him the car. 她给了他车。 CC-BY 2.0 (France) Attribution: tatoeba.org #316269 (CK) & #5613687 (verdastelo9604) +She gets up at seven. 她早上7点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #743104 (Zifre) & #375361 (fucongcong) +She has a pure heart. 她有一颗纯洁的心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1511059 (weihaiping) & #866757 (kooler) +She has a round face. 她有张圆脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #313077 (CM) & #336434 (fucongcong) +She ironed her shirt. 她熨了衬衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #424863 (FeuDRenais) & #8737020 (crescat) +She is a good dancer. 她是一個很好的舞者。 CC-BY 2.0 (France) Attribution: tatoeba.org #311580 (CK) & #919708 (Martha) +She is a pretty girl. 她是一個漂亮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #310694 (CK) & #840532 (Martha) +She is a quiet woman. 她是一個安靜的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #312733 (CK) & #844612 (Martha) +She is wearing a hat. 她戴著一頂帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476783 (weihaiping) & #762010 (Martha) +She raised her voice. 她提高了她的嗓音。 CC-BY 2.0 (France) Attribution: tatoeba.org #315372 (CK) & #336183 (fucongcong) +She sat on the bench. 她坐在長椅上。 CC-BY 2.0 (France) Attribution: tatoeba.org #501258 (CK) & #839616 (Martha) +She sent me a letter. 她寄给我一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #314219 (CK) & #343634 (fucongcong) +She slapped his face. 她摑了他的臉。 CC-BY 2.0 (France) Attribution: tatoeba.org #388068 (CK) & #825182 (Martha) +She wants to hug him. 她想擁抱他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887515 (CK) & #6119317 (verdastelo9604) +She was hit by a car. 她被車撞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388642 (CK) & #850126 (Martha) +She wore a red dress. 她穿了一条红色的裙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #315402 (CK) & #494868 (fucongcong) +She's a quiet person. 她是個安靜的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #521613 (CK) & #826172 (Martha) +She's as busy as Tom. 她和湯姆一樣忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #311824 (CK) & #904792 (kanaorange) +She's my best friend. 她是我最好的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #520885 (Shishir) & #785293 (Martha) +She's older than Tom. 她年紀比湯姆大。 CC-BY 2.0 (France) Attribution: tatoeba.org #311827 (CK) & #845955 (Martha) +She's very beautiful. 她非常漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #311506 (CK) & #408845 (fucongcong) +Should we be worried? 我們應該要擔心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4503001 (CK) & #4504421 (egg0073) +Some bugs were fixed. 一些程式錯誤被改正了。 CC-BY 2.0 (France) Attribution: tatoeba.org #777031 (CK) & #6150008 (verdastelo9604) +Something did happen. 有什么事发生了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497979 (CK) & #5942064 (verdastelo9604) +Stay out of the rain. 躲雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #26765 (CK) & #836421 (Martha) +Stay out of the rain. 別被雨淋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26765 (CK) & #836422 (Martha) +Tell me when to stop. 告訴我甚麼時候停下。 CC-BY 2.0 (France) Attribution: tatoeba.org #66047 (CK) & #6098445 (verdastelo9604) +Thanks for yesterday. 昨天的事真的要谢谢您了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3374657 (CK) & #5100139 (mirrorvan) +That bicycle is mine. 那自行车是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #942303 (spockofvulcan) & #5845550 (verdastelo9604) +That did occur to me. 那就發生在我身上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594049 (CK) & #6682287 (verdastelo9604) +That meat is chicken. 那個肉是雞肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #418859 (CK) & #832798 (Martha) +That was a month ago. 那是一個月前了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5008906 (CK) & #6109341 (verdastelo9604) +That was pretty neat. 那真整潔。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494736 (CK) & #6103222 (verdastelo9604) +That's a lot of cash. 那是很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594108 (CK) & #6077372 (verdastelo9604) +That's my dictionary. 那是我的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #42367 (CK) & #780253 (Martha) +That's my toothbrush. 這把是我的牙刷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251106 (CK) & #9049743 (xjjAstrus) +That's quite obvious. 那很明顯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2251219 (CK) & #6635890 (verdastelo9604) +The baby is sleeping. 宝宝正在睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #272329 (CK) & #406688 (fucongcong) +The box wasn't empty. 箱子不是空的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3737586 (CK) & #5555559 (verdastelo9604) +The couple had a son. 这对夫妇生了个儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1499010 (weihaiping) & #335277 (fucongcong) +The grass looks nice. 草地看来不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #265285 (CK) & #5663601 (verdastelo9604) +The house is burning. 這房子正在燃燒著。 CC-BY 2.0 (France) Attribution: tatoeba.org #387424 (CK) & #826270 (Martha) +The house is haunted. 這房子鬧鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #68547 (CK) & #793208 (Martha) +The job is half done. 這項工作已經完成了一半。 CC-BY 2.0 (France) Attribution: tatoeba.org #245360 (CK) & #793952 (Martha) +The lights aren't on. 灯没有亮着。 CC-BY 2.0 (France) Attribution: tatoeba.org #742114 (CM) & #2000409 (sadhen) +The old man sat down. 老人坐了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #43375 (CK) & #332886 (fucongcong) +The phone is ringing. 電話正在響。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547639 (CK) & #710667 (egg0073) +The rumor isn't true. 傳聞不是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #49581 (CK) & #824544 (Martha) +The taxi has arrived. 出租车到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40974 (CK) & #346457 (fucongcong) +The well has run dry. 這口井乾涸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27884 (CK) & #866153 (Martha) +The wind calmed down. 风停了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1771 (CK) & #502704 (fucongcong) +There isn't any soap. 沒有任何肥皂。 CC-BY 2.0 (France) Attribution: tatoeba.org #448962 (CK) & #832948 (Martha) +There were two cakes. 那有两块蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #430064 (witbrock) & #334594 (fucongcong) +There's a car coming. 有車來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #265412 (CK) & #819474 (Martha) +There's no more salt. 沒有再多的鹽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #467337 (CK) & #819477 (Martha) +These shoes are hers. 這些鞋是她的。 CC-BY 2.0 (France) Attribution: tatoeba.org #417351 (CK) & #824530 (Martha) +They always complain. 他們總是抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #662582 (bluepie88) & #3713638 (egg0073) +They are my brothers. 他们是我的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #370716 (saeb) & #463414 (fucongcong) +They didn't like you. 他们不喜欢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3912872 (CK) & #5897890 (verdastelo9604) +They failed the exam. 他們考試失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1556883 (brymck) & #6114404 (verdastelo9604) +They kept on walking. 他们继续走。 CC-BY 2.0 (France) Attribution: tatoeba.org #305960 (CK) & #1397033 (mtdot) +They love each other. 他們彼此相愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #307721 (CK) & #803781 (Martha) +They made me captain. 他們讓我當了隊長。 CC-BY 2.0 (France) Attribution: tatoeba.org #306723 (CK) & #2715468 (cienias) +They went to Tottori. 他們去了鳥取。 CC-BY 2.0 (France) Attribution: tatoeba.org #305377 (CK) & #779013 (Martha) +They were both drunk. 他們兩個都喝醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2186507 (Hybrid) & #6111771 (verdastelo9604) +They were frightened. 他們被嚇到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243382 (CK) & #6064630 (verdastelo9604) +They were persecuted. 他们受到迫害。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243396 (CK) & #5611555 (verdastelo9604) +They're afraid of us. 他們害怕我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3449093 (CK) & #5402021 (egg0073) +They're already here. 他們已經在這裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31669 (CK) & #826214 (Martha) +They're both artists. 他们都是艺术家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713631 (CK) & #5581772 (verdastelo9604) +Think about tomorrow. 請思考一下明天。 CC-BY 2.0 (France) Attribution: tatoeba.org #2253707 (CK) & #8388812 (wangchou) +This bicycle is mine. 這輛自行車是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #496111 (CK) & #826021 (Martha) +This book sells well. 那本書賣得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #56999 (Dejo) & #5254679 (xjjAstrus) +This camera is cheap. 这个相机很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #463260 (lukaszpp) & #8795147 (crescat) +This is a good movie. 這是一部好電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573342 (n1ls) & #5449333 (xjjAstrus) +This is a small town. 这是个小镇。 CC-BY 2.0 (France) Attribution: tatoeba.org #5500329 (CK) & #5692349 (verdastelo9604) +This is a true story. 这个故事是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498819 (Spamster) & #1749767 (sadhen) +This is just for you. 這是只給你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818148 (CK) & #6111795 (verdastelo9604) +This isn't difficult. 這個不難。 CC-BY 2.0 (France) Attribution: tatoeba.org #6961086 (CK) & #6937182 (xjjAstrus) +This job doesn't pay. 这个工作没有酬劳。 CC-BY 2.0 (France) Attribution: tatoeba.org #59143 (CM) & #334556 (fucongcong) +This job doesn't pay. 这份工作不付钱的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59143 (CM) & #510654 (fucongcong) +This must be my book. 这肯定是我的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #2783841 (Gulo_Luscus) & #5650487 (verdastelo9604) +This novel is boring. 這本小說很無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #630620 (CK) & #909848 (Martha) +This rug is handmade. 这块地毯是手工制作的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2731702 (sharptoothed) & #8815172 (crescat) +This tea tastes good. 這茶味道不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #816072 (afeinberg) & #816739 (Martha) +This watch is broken. 这个手表坏掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58929 (CK) & #8761473 (crescat) +Those apples are big. 那些蘋果很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #67019 (CK) & #832933 (Martha) +Today is my birthday. 今天是我的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #985108 (riccioberto) & #1480125 (egg0073) +Tom broke the window. 湯姆打破了窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #37071 (CK) & #771416 (Martha) +Tom burst into tears. 汤姆泪流满面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026938 (CK) & #1416054 (sadhen) +Tom doesn't eat pork. 湯姆不吃猪肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956635 (CK) & #6148995 (verdastelo9604) +Tom doesn't think so. 汤姆可不这么认为。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025939 (CK) & #1235615 (sunnywqing) +Tom drank some juice. Tom喝了些果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2647000 (CK) & #5548506 (egg0073) +Tom enjoys gardening. 汤姆享受园艺。 CC-BY 2.0 (France) Attribution: tatoeba.org #3428546 (CK) & #5701334 (verdastelo9604) +Tom has been wounded. Tom负伤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272704 (CK) & #3630066 (suitchic) +Tom has two children. Tom有兩個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495864 (CK) & #5363967 (egg0073) +Tom is a good friend. 汤姆是个好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868240 (CK) & #8883978 (crescat) +Tom is a good golfer. 汤姆是个不错的高尔夫球手。 CC-BY 2.0 (France) Attribution: tatoeba.org #7959143 (CK) & #8789699 (crescat) +Tom is a good person. 湯姆是個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #406600 (CK) & #845947 (Martha) +Tom is a good person. Tom是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #406600 (CK) & #1545326 (egg0073) +Tom is a good worker. 湯姆是個好工人。 CC-BY 2.0 (France) Attribution: tatoeba.org #37194 (CK) & #840586 (Martha) +Tom is always absent. 汤姆总是旷课。 CC-BY 2.0 (France) Attribution: tatoeba.org #7790179 (sharris123) & #2777942 (fenfang557) +Tom is in the shower. Tom在洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868197 (CK) & #5418705 (egg0073) +Tom is indispensable. 汤姆是必不可少的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2203001 (CK) & #5856757 (verdastelo9604) +Tom is late as usual. 汤姆像往常一样来晚了 CC-BY 2.0 (France) Attribution: tatoeba.org #8367013 (CK) & #8746410 (cxpadonis) +Tom is really gifted. 湯姆真有才華。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494689 (CK) & #6131481 (verdastelo9604) +Tom is the one I saw. 我看见的是汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166154 (CK) & #5862125 (verdastelo9604) +Tom is there already. 湯姆己經在那裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273558 (CK) & #6105211 (verdastelo9604) +Tom is very talented. 汤姆多才多艺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663305 (liwan1208) & #1661549 (sadhen) +Tom let Mary go home. 湯姆讓瑪麗回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #5106403 (CK) & #6086849 (verdastelo9604) +Tom looks a bit sick. 湯姆看來有點不適。 CC-BY 2.0 (France) Attribution: tatoeba.org #3121700 (CK) & #6103061 (verdastelo9604) +Tom looks very happy. 汤姆看起来非常开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024523 (CK) & #8935889 (crescat) +Tom loves doing this. 湯姆喜歡做這事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497970 (CK) & #6923171 (verdastelo9604) +Tom mopped the floor. 汤姆擦了地板。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164413 (CK) & #7767665 (jiangche) +Tom needed treatment. 汤姆需要接受治疗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237413 (CK) & #4970091 (wzhd) +Tom said Mary is shy. 湯姆說瑪麗害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #6274936 (CK) & #6994072 (verdastelo9604) +Tom said he loved me. 汤姆说他爱我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573998 (CK) & #5574486 (verdastelo9604) +Tom said he was sick. 湯姆說他病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2646884 (CK) & #6483521 (verdastelo9604) +Tom saw the exhibits. 汤姆看了展览会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164237 (CK) & #5595143 (verdastelo9604) +Tom seems very happy. 汤姆看起来非常开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1056822 (CK) & #8935889 (crescat) +Tom slept until noon. 汤姆睡到中午。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573996 (CK) & #5574481 (verdastelo9604) +Tom still can't read. 汤姆还是不能读书。 CC-BY 2.0 (France) Attribution: tatoeba.org #3257583 (CK) & #6089941 (verdastelo9604) +Tom sure talks a lot. 汤姆一定很能讲。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573994 (CK) & #5574479 (verdastelo9604) +Tom taught me French. 汤姆教了我法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4530116 (CK) & #5933800 (verdastelo9604) +Tom tried to stab me. 汤姆企图刺我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573992 (CK) & #5574476 (verdastelo9604) +Tom turned up the TV. 汤姆把电视调大声。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547541 (CK) & #5670774 (verdastelo9604) +Tom wanted to see me. 汤姆想见我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011607 (CK) & #5574800 (verdastelo9604) +Tom wants to see you. 汤姆想见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092452 (CK) & #9007524 (jacintoo) +Tom was all worn out. 湯姆完全筋疲力盡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #37273 (CK) & #836269 (Martha) +Tom was an architect. 汤姆是建筑师。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573990 (CK) & #5574469 (verdastelo9604) +Tom was conservative. 汤姆过去很保守。 CC-BY 2.0 (France) Attribution: tatoeba.org #4764560 (Stalwartlover) & #4764654 (ryanwoo) +Tom works long hours. 汤姆的工作时间很长。 CC-BY 2.0 (France) Attribution: tatoeba.org #3094195 (CK) & #8765058 (crescat) +Tom wouldn't like it. 湯姆不會喜歡它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736534 (CK) & #6325070 (verdastelo9604) +Tom, we have to talk. 汤姆,我们必须谈谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547511 (CK) & #5933786 (verdastelo9604) +Turn on the computer. 打開電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #9075110 (antonb) & #9054806 (xjjAstrus) +Turtles are reptiles. 海龟是爬行动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1199270 (cariito) & #5640768 (verdastelo9604) +We can seat you soon. 我们很快就可以安排您入座。 CC-BY 2.0 (France) Attribution: tatoeba.org #32481 (CK) & #336461 (fucongcong) +We can't sit idly by. 我們不能光坐著。 CC-BY 2.0 (France) Attribution: tatoeba.org #5752312 (CM) & #6325114 (verdastelo9604) +We got to be friends. 我们交了朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #3313066 (CK) & #5670755 (verdastelo9604) +We have a great team. 我们有个好极了的团队。 CC-BY 2.0 (France) Attribution: tatoeba.org #5008985 (CK) & #5863280 (verdastelo9604) +We have two children. 我們有兩個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #506454 (rtomharper) & #759637 (Martha) +We haven't lost much. 我們沒有失去太多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5789467 (CK) & #6057850 (verdastelo9604) +We knew it all along. 我们一开始就知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #248180 (CK) & #792785 (fucongcong) +We met at the church. 我们在教堂里遇到。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144820 (CK) & #4147290 (sissima) +We must do something. 我們必須做點甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1801645 (Spamster) & #6150027 (verdastelo9604) +We must go to school. 我们必须去学校了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248530 (CK) & #334285 (fucongcong) +We need an ambulance. 我们需要一辆救护车。 CC-BY 2.0 (France) Attribution: tatoeba.org #489487 (adjusting) & #389819 (fucongcong) +We ran after the cat. 我們追著貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #263186 (CK) & #790854 (Martha) +We ran down the hill. 我們跑下山。 CC-BY 2.0 (France) Attribution: tatoeba.org #23282 (CK) & #836351 (Martha) +We require your help. 我們需要你的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #248606 (CK) & #824643 (Martha) +We sell orange juice. 我們賣柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1641764 (Amastan) & #5548496 (egg0073) +We took a wrong turn. 我們拐錯彎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #823901 (jellorage) & #824410 (Martha) +We tried to stop you. 我們試著阻止你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312569 (CK) & #6146534 (verdastelo9604) +We want a new carpet. 我们想要一条新毯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #269074 (CK) & #512874 (fucongcong) +We went to the races. 我们去看了比赛。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312841 (CK) & #5091476 (mirrorvan) +We work in a factory. 我们在一个工厂工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2650907 (CK) & #7781777 (jiangche) +We're going by train. 我们要乘火车去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310969 (CK) & #5862119 (verdastelo9604) +We're going downtown. 我们正在去市里。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093610 (CarpeLanam) & #5095189 (mirrorvan) +We're ready to leave. 我們準備離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #66182 (CK) & #819457 (Martha) +We're very different. 我们很不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240701 (CK) & #5862130 (verdastelo9604) +We're very skeptical. 我们非常怀疑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240686 (CK) & #8753731 (slo_oth) +What a bizarre story! 多么荒唐的故事! CC-BY 2.0 (France) Attribution: tatoeba.org #4495392 (CK) & #5691274 (verdastelo9604) +What are they saying? 他們在說什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2646763 (CK) & #6057719 (xjjAstrus) +What are you cooking? 你在煮什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #445021 (kaitlin) & #910233 (Martha) +What are you reading? 你在看什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #24676 (CK) & #846000 (Martha) +What are you reading? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #24676 (CK) & #7768300 (jiangche) +What are you writing? 你在寫什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1886804 (CK) & #5112390 (xjjAstrus) +What do you want now? 您现在想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16275 (CK) & #469355 (fucongcong) +What do you want now? 你现在想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16275 (CK) & #469364 (fucongcong) +What does it contain? 它包含了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464564 (lukaszpp) & #469530 (fucongcong) +What happened to him? 他發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #68180 (CK) & #825915 (Martha) +What we need is help. 我们需要的是帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159840 (tinytina) & #333457 (fucongcong) +What'll you give Tom? 你会给汤姆什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3171005 (CK) & #6020848 (verdastelo9604) +What're you watching? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2547474 (CK) & #7768300 (jiangche) +What's in the closet? 橱柜里有什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2547473 (CK) & #7772329 (jiangche) +What's not necessary? 什麼是不必要的? CC-BY 2.0 (France) Attribution: tatoeba.org #2234085 (CK) & #2638675 (cienias) +What's that building? 那栋建筑是什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #68433 (CK) & #5096824 (mirrorvan) +What's the daily fee? 每天费用多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1479240 (weihaiping) & #465910 (fucongcong) +What's your job here? 你在这里的工作是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3395890 (CK) & #5983594 (verdastelo9604) +What's your nickname? 你的昵称是甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2646730 (CK) & #6105110 (verdastelo9604) +When are you leaving? 你什麼時候離開? CC-BY 2.0 (France) Attribution: tatoeba.org #499538 (blay_paul) & #825876 (Martha) +When are you leaving? 你什么时候离开? CC-BY 2.0 (France) Attribution: tatoeba.org #499538 (blay_paul) & #7772334 (jiangche) +When does that start? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #3665388 (ravas) & #332585 (fucongcong) +When is your bedtime? 你什么时候睡觉? CC-BY 2.0 (France) Attribution: tatoeba.org #5011412 (CK) & #5630397 (verdastelo9604) +When was it finished? 是什么时候完成的? CC-BY 2.0 (France) Attribution: tatoeba.org #24559 (CK) & #335133 (fucongcong) +When will you go out? 你什麼時候要出去? CC-BY 2.0 (France) Attribution: tatoeba.org #66388 (CK) & #840658 (Martha) +Where are we meeting? 我们在哪里见面? CC-BY 2.0 (France) Attribution: tatoeba.org #4656828 (AqQoyriq_1) & #7768148 (jiangche) +Where is my umbrella? 我的傘在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #1495863 (CK) & #5363966 (egg0073) +Where is the mailbox? 郵箱在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #33455 (CK) & #832957 (Martha) +Where is the problem? 哪裡有問題? CC-BY 2.0 (France) Attribution: tatoeba.org #1431 (Zifre) & #60 (fucongcong) +Where's the bathroom? 廁所在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #634087 (Eldad) & #6158451 (xjjAstrus) +Which book is better? 哪一本書比較好? CC-BY 2.0 (France) Attribution: tatoeba.org #37927 (CK) & #825151 (Martha) +Which ones are Tom's? 哪个是汤姆的? CC-BY 2.0 (France) Attribution: tatoeba.org #4574684 (Wierdmin) & #8700795 (crescat) +Who can do this work? 谁能做这件工作? CC-BY 2.0 (France) Attribution: tatoeba.org #276202 (CK) & #7768168 (jiangche) +Who do you live with? 你和誰住在一起? CC-BY 2.0 (France) Attribution: tatoeba.org #700113 (Zifre) & #6120176 (xjjAstrus) +Who gave them to you? 谁给了你这些东西? CC-BY 2.0 (France) Attribution: tatoeba.org #3151162 (CK) & #5978320 (verdastelo9604) +Who invited you guys? 誰邀請了你們? CC-BY 2.0 (France) Attribution: tatoeba.org #3396706 (CK) & #5402067 (egg0073) +Who is the secretary? 谁是秘书? CC-BY 2.0 (France) Attribution: tatoeba.org #687742 (lukaszpp) & #7704614 (leafjensen) +Who said that to you? 是谁给你说那个的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2646712 (CK) & #5100179 (mirrorvan) +Who wrote this story? 谁写了这个故事? CC-BY 2.0 (France) Attribution: tatoeba.org #4764618 (Stalwartlover) & #4764647 (ryanwoo) +Whose pencil is this? 这支铅笔是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #55521 (CK) & #1328157 (vicch) +Why are you so smart? 为什么你的脑袋那么聪明呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3856494 (CK) & #5097613 (mirrorvan) +Why did you run away? 你為什麼逃走? CC-BY 2.0 (France) Attribution: tatoeba.org #38653 (CK) & #3742393 (egg0073) +Why do you resent me? 你为什么恨我? CC-BY 2.0 (France) Attribution: tatoeba.org #3822513 (CK) & #8589273 (easononizuka) +Why do you work here? 你為什麼在這兒工作? CC-BY 2.0 (France) Attribution: tatoeba.org #36464 (CK) & #844479 (Martha) +Why don't we go home? 我们何不回家呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1540 (CK) & #334555 (fucongcong) +Why don't you hug me? 你為甚麼不抱我? CC-BY 2.0 (France) Attribution: tatoeba.org #2268828 (CK) & #6119409 (verdastelo9604) +Will it snow tonight? 今晚会下雪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #243382 (CK) & #334748 (fucongcong) +Would you like to go? 你想去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69445 (CK) & #846002 (Martha) +You always work hard. 你一直努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5403058 (CK) & #5611634 (verdastelo9604) +You are irresistible. 你是不可抗拒的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479258 (weihaiping) & #502762 (fucongcong) +You are irresistible. 你令人难以抗拒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479258 (weihaiping) & #4640216 (olive_wang) +You are not a coward. 您不是个懦夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #16281 (CK) & #469382 (fucongcong) +You are not a coward. 你不是个懦夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #16281 (CK) & #469383 (fucongcong) +You are not a doctor. 您不是医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #69692 (CK) & #782332 (fucongcong) +You are now an adult. 你现在是大人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16387 (CK) & #471372 (fucongcong) +You can bank on that. 你可以相信那個。 CC-BY 2.0 (France) Attribution: tatoeba.org #16542 (CK) & #844532 (Martha) +You can bank on that. 你可以寄希望于此。 CC-BY 2.0 (France) Attribution: tatoeba.org #16542 (CK) & #844549 (kooler) +You can come with me. 你可以跟我來。 CC-BY 2.0 (France) Attribution: tatoeba.org #33574 (CK) & #845446 (Martha) +You can count on her. 你可以相信她。 CC-BY 2.0 (France) Attribution: tatoeba.org #662711 (bluepie88) & #779053 (Martha) +You can hold my hand. 你能握我的手。 CC-BY 2.0 (France) Attribution: tatoeba.org #3342854 (CK) & #5650456 (verdastelo9604) +You can use this car. 你可以使用這輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #16687 (CK) & #840511 (Martha) +You can't go outside. 你不能到外面去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715086 (CK) & #5715119 (verdastelo9604) +You don't deserve it. 你不配。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715090 (CK) & #5715123 (verdastelo9604) +You don't need a gun. 你不需要枪。 CC-BY 2.0 (France) Attribution: tatoeba.org #4888480 (CK) & #5763021 (verdastelo9604) +You don't need money. 你不需要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2274007 (CK) & #6019724 (xjjAstrus) +You don't seem happy. 你看起来不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044480 (CK) & #2694365 (sadhen) +You don't understand. 你不了解。 CC-BY 2.0 (France) Attribution: tatoeba.org #18073 (CK) & #792405 (Martha) +You look happy today. 你今天看起來很高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #16127 (xtofu80) & #793224 (Martha) +You look happy today. 你今天看上去很开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #16127 (xtofu80) & #844114 (fucongcong) +You may use this car. 你可以使用這輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #405519 (CK) & #840511 (Martha) +You owe me something. 你欠我點東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064628 (CK) & #6086798 (verdastelo9604) +You seemed surprised. 你看起来很吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255212 (CK) & #7780762 (jiangche) +You should apologize. 你應該道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #16023 (CK) & #825188 (Martha) +You should know this. 你該知道這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500467 (CK) & #6098073 (verdastelo9604) +You shouldn't go out. 你不應該出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #516307 (CK) & #833086 (Martha) +You'd better go home. 你最好回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #69434 (CK) & #796039 (Martha) +You're a good driver. 你开车很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4786041 (CK) & #4265129 (notabene) +You're a good leader. 你是個好的領導人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5860545 (CK) & #6159218 (rayshih715) +You're a good person. 你是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547447 (CK) & #1545316 (egg0073) +You're a good person. 您是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547447 (CK) & #1545318 (egg0073) +You're a real friend. 你是個真正的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2342510 (Hybrid) & #5423493 (egg0073) +You're bound to fail. 你注定失败。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715094 (CK) & #5715127 (verdastelo9604) +You're just a coward. 你就是胆小鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #4296870 (AlanF_US) & #5845589 (verdastelo9604) +You're looking tired. 你看起来很困了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5860544 (CK) & #5097669 (mirrorvan) +You're our only hope. 你是我们唯一的希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #1122908 (Scott) & #1394896 (mtdot) +You're such an idiot! 你真是個傻瓜! CC-BY 2.0 (France) Attribution: tatoeba.org #984523 (CM) & #1236302 (tsayng) +You're such an idiot. 你真是個傻瓜! CC-BY 2.0 (France) Attribution: tatoeba.org #2713612 (CK) & #1236302 (tsayng) +You've been deceived. 你被騙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #410892 (CK) & #771363 (Martha) +You've made progress. 你进步了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255447 (CK) & #5819684 (verdastelo9604) +Your answer is right. 您的答案是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16948 (CK) & #5672786 (xjjAstrus) +Your answer is wrong. 你的回答是错的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16950 (CK) & #1752972 (sadhen) +Your dog is very big. 您的狗非常胖。 CC-BY 2.0 (France) Attribution: tatoeba.org #64241 (CK) & #465862 (fucongcong) +Your dog is very big. 你的狗非常胖。 CC-BY 2.0 (France) Attribution: tatoeba.org #64241 (CK) & #465863 (fucongcong) +Your dog is very fat. 你的狗非常胖。 CC-BY 2.0 (France) Attribution: tatoeba.org #485958 (minshirui) & #465863 (fucongcong) +Your opinion matters. 你的觀點是重要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500995 (CK) & #6071012 (verdastelo9604) +A dolphin is a mammal. 海豚是哺乳動物。 CC-BY 2.0 (France) Attribution: tatoeba.org #65812 (CK) & #834381 (Martha) +A little bird told me. 我听传闻说的。 CC-BY 2.0 (France) Attribution: tatoeba.org #327991 (CM) & #8725754 (crescat) +Above all, be patient. 尤其是要有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #24789 (CK) & #343936 (fucongcong) +Actually, I was wrong. 实际上我错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7535765 (shekitten) & #7773244 (jiangche) +All lawyers are liars. 律师都是骗子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1594112 (CM) & #7708514 (biglion) +All this is new to me. 这对我来说全是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4325122 (monahxo) & #5631899 (verdastelo9604) +America is very large. 美洲很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #67543 (CK) & #4262233 (notabene) +Any child can do that. 任何小孩都能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #36641 (CK) & #833179 (Martha) +Are these your things? 這些是你的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #442733 (CK) & #825131 (Martha) +Are they all the same? 他们都是一样的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1563 (CK) & #334427 (fucongcong) +Are you afraid of Tom? 你會怕Tom嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1495861 (CK) & #5363964 (egg0073) +Are you dating anyone? 你跟人约会吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2220896 (CK) & #5842716 (verdastelo9604) +Are you feeling tired? 你覺得累嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2909241 (Hybrid) & #3742432 (egg0073) +Are you free tomorrow? 你明天有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68908 (CK) & #472358 (fucongcong) +Are you going outside? 你去外面吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2890939 (CK) & #3780477 (e78xx_xxx) +Are you going to sing? 你要唱歌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69542 (CK) & #834326 (Martha) +Are you satisfied now? 你現在滿意了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1495860 (CK) & #5363963 (egg0073) +Are you still at home? 你還在家裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886321 (CK) & #2090839 (egg0073) +Are you still at home? 你們還在家裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886321 (CK) & #2090840 (egg0073) +Are you still winning? 你還在贏嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6356919 (CK) & #6624672 (verdastelo9604) +Are you talking to me? 你在跟我说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25538 (CK) & #478844 (biglion) +Ask for what you want. 要你想要的! CC-BY 2.0 (France) Attribution: tatoeba.org #1196607 (CK) & #5965721 (verdastelo9604) +Bears can climb trees. 熊会爬树。 CC-BY 2.0 (France) Attribution: tatoeba.org #1081294 (Vortarulo) & #677642 (Martha) +Better luck next time. 祝你下一次好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #264344 (CK) & #713209 (Yashanti) +Beware of pickpockets. 小心扒手。 CC-BY 2.0 (France) Attribution: tatoeba.org #51404 (CK) & #2143971 (ydcok) +Both of you are wrong. 你們倆都錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4404688 (CK) & #6671776 (verdastelo9604) +Call me at the office. 打電話到我辦公室來。 CC-BY 2.0 (France) Attribution: tatoeba.org #22364 (CK) & #834373 (Martha) +Can I borrow your car? 我能借你的车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #265616 (CK) & #404463 (fucongcong) +Can I eat this orange? 我能吃这只橙子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #896172 (pauldhunt) & #334501 (fucongcong) +Can I open the window? 可以开窗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #274195 (CK) & #5097880 (mirrorvan) +Can I use your pencil? 我能用一下你的铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #17298 (CK) & #333383 (fucongcong) +Can I use your pencil? 我可以用你的鉛筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17298 (CK) & #833803 (Martha) +Can his story be true? 他的故事可能是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #27499 (papabear) & #410859 (fucongcong) +Can we go now, please? 请问我们现在能走吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3328488 (CK) & #5698024 (verdastelo9604) +Can we lock this door? 我們能鎖門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3327801 (CK) & #8215754 (verdastelo9604) +Can you speak English? 你們會說英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26170 (CK) & #6284534 (xjjAstrus) +Check your dictionary. 查你的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245081 (CK) & #6073917 (verdastelo9604) +Come here, all of you. 你们全都过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891020 (CK) & #5911576 (verdastelo9604) +Control is everything. 控制就是一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245230 (CK) & #5780597 (verdastelo9604) +Did he go to see Mary? 他去看瑪麗了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #293013 (CK) & #842422 (Martha) +Did he propose to you? 他向你求婚了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #460864 (CK) & #834348 (Martha) +Did you cut the paper? 你裁切紙張了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16591 (CK) & #833129 (Martha) +Did you get my letter? 你收到了我发的邮件了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1495859 (CK) & #4844986 (pig8322) +Did you get my letter? 你收到了我的信了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1495859 (CK) & #9057894 (xjjAstrus) +Did you get your wish? 你如願以償了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #20743 (CK) & #833796 (Martha) +Did you hear the news? 你听到新闻了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69991 (CK) & #345984 (fucongcong) +Did you lock the door? 你有關門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1495858 (CK) & #5363961 (egg0073) +Do I need to transfer? 我需要换乘吗? CC-BY 2.0 (France) Attribution: tatoeba.org #268383 (CK) & #1423977 (asosan) +Do you believe in God? 你相信上帝吗? CC-BY 2.0 (France) Attribution: tatoeba.org #15971 (Swift) & #332728 (fucongcong) +Do you have a bicycle? 你有自行車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #264497 (CK) & #9179738 (xjjAstrus) +Do you know this song? 你知道這首歌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1064334 (CK) & #3957651 (egg0073) +Do you know who he is? 你知道他是誰嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15845 (CK) & #845991 (Martha) +Do you like this book? 你喜欢这本书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1098272 (cntrational) & #1428131 (sadhen) +Do you need this book? 你需要这本书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #372452 (ilayde) & #444797 (fucongcong) +Do you really want it? 你真的想要嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68936 (CK) & #833246 (Martha) +Do you still love Tom? 你依然爱汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3550599 (CK) & #3636677 (suitchic) +Do you still need tea? 你还需要茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #32684 (Eldad) & #332766 (fucongcong) +Do you want some rice? 你們要米飯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7367785 (Hybrid) & #6057683 (xjjAstrus) +Does Tom drink coffee? 汤姆喝咖啡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2261209 (CK) & #4971580 (wzhd) +Does he speak English? 他说英语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #293951 (CK) & #430978 (fucongcong) +Does she like oranges? 她喜歡柳橙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410534 (CK) & #826101 (Martha) +Don't ask me anything. 什麼都別問我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495857 (CK) & #5363960 (egg0073) +Don't be disappointed. 不要失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #449072 (CK) & #819310 (Martha) +Don't expect miracles. 別期盼奇跡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2567705 (Hybrid) & #6635898 (verdastelo9604) +Don't forget about me. 別忘了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1453887 (CK) & #6325084 (verdastelo9604) +Don't leave the TV on. 不要让电视机开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1071656 (CK) & #1438536 (asosan) +Don't speak to anyone. 你們別和任何人說。 CC-BY 2.0 (France) Attribution: tatoeba.org #6007899 (szilviez) & #5998478 (xjjAstrus) +Don't step in the mud. 别走进泥地。 CC-BY 2.0 (France) Attribution: tatoeba.org #4376026 (Lepotdeterre) & #5869910 (verdastelo9604) +Don't touch my camera. 不要碰我的相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #410769 (CK) & #824590 (Martha) +Don't try my patience. 別挑戰我的耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495855 (CK) & #5363959 (egg0073) +Don't walk home alone. 不要自己一个人走回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #5720600 (CK) & #8591244 (easononizuka) +Don't waste your time. 别浪费时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860392 (CK) & #5571858 (verdastelo9604) +Don't you play tennis? 你不打網球嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405516 (CK) & #771488 (Martha) +Every dog has his day. 凡人皆有得意时。 CC-BY 2.0 (France) Attribution: tatoeba.org #36595 (CK) & #333200 (fucongcong) +Everybody is laughing. 每個人都在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5353117 (Amittai) & #5351526 (egg0073) +Everything went black. 一切都變成了黑色。 CC-BY 2.0 (France) Attribution: tatoeba.org #321552 (CK) & #825885 (Martha) +Everything will be OK. 一切都会好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #710797 (CM) & #710795 (Yashanti) +Fasten your seat belt. 系上您的安全带。 CC-BY 2.0 (France) Attribution: tatoeba.org #53900 (CK) & #335035 (fucongcong) +Fortune smiled on him. 好运向他露出了笑容。 CC-BY 2.0 (France) Attribution: tatoeba.org #240788 (CK) & #8739345 (crescat) +Fur coats are on sale. 毛皮大衣在打折。 CC-BY 2.0 (France) Attribution: tatoeba.org #323540 (CK) & #427609 (fucongcong) +Get down on the floor! 趴在地上! CC-BY 2.0 (France) Attribution: tatoeba.org #433524 (CK) & #833806 (Martha) +Give it to me, please. 請把它給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #41825 (CK) & #834528 (Martha) +Give me your location. 给我你的位置。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151442 (CK) & #5630448 (verdastelo9604) +Go back to the office. 回辦公室去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3413094 (CK) & #6333806 (verdastelo9604) +Good luck on the test! 祝考试好运! CC-BY 2.0 (France) Attribution: tatoeba.org #698759 (papabear) & #802858 (fucongcong) +Goodbye and good luck. 再见,祝好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #434818 (lukaszpp) & #5574725 (verdastelo9604) +Guess what he told me. 猜猜看他告訴了我什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #283413 (CK) & #833245 (Martha) +Has he met them today? 他今天見他們了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1160310 (cntrational) & #6197307 (verdastelo9604) +Have a good Christmas. 祝您有一個愉快的聖誕節。 CC-BY 2.0 (France) Attribution: tatoeba.org #387476 (CK) & #824588 (Martha) +Have we made progress? 我們取得進步了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4500946 (CK) & #6333818 (verdastelo9604) +Have you eaten dinner? 你吃晚飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #953285 (CK) & #5909513 (xjjAstrus) +Haven't we met before? 我们以前没见过吗? CC-BY 2.0 (France) Attribution: tatoeba.org #28370 (CK) & #408832 (fucongcong) +He abandoned all hope. 他放弃了所有希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #290339 (CK) & #427597 (fucongcong) +He admitted his guilt. 他承認他有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #298868 (autuno) & #834583 (Martha) +He broke into a house. 他闖入一間房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #283445 (CK) & #771355 (Martha) +He came several times. 他来了很多次了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2390 (CK) & #1776634 (sadhen) +He came to pick me up. 他來接我走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1932092 (Spamster) & #6091674 (verdastelo9604) +He can swim very fast. 他能游得很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #292130 (CK) & #332778 (fucongcong) +He cleared his throat. 他清了清喉嚨。 CC-BY 2.0 (France) Attribution: tatoeba.org #294760 (CK) & #4506371 (egg0073) +He climbed the stairs. 他爬上了樓梯。 CC-BY 2.0 (France) Attribution: tatoeba.org #530801 (wma) & #819395 (Martha) +He comes from England. 他从英国来。 CC-BY 2.0 (France) Attribution: tatoeba.org #288977 (CK) & #333281 (fucongcong) +He comes from England. 他来自英格兰。 CC-BY 2.0 (France) Attribution: tatoeba.org #288977 (CK) & #3289577 (sadhen) +He drives his own car. 他開他自己的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #298454 (CK) & #832963 (Martha) +He gave it a new name. 他给了它一个新名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #50998 (ludoviko) & #1785965 (sadhen) +He gave me 10,000 yen. 他给了我1万日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #297462 (CK) & #343810 (fucongcong) +He got 90% in English. 他英文得到了九十分。 CC-BY 2.0 (France) Attribution: tatoeba.org #418443 (CK) & #833145 (Martha) +He grew up in Germany. 他在德國長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2737524 (eastasiastudent) & #2737429 (egg0073) +He had the right idea. 他的想法是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745658 (Spamster) & #1746055 (sadhen) +He had to stay in bed. 他得卧床休息. CC-BY 2.0 (France) Attribution: tatoeba.org #299818 (CK) & #1423991 (asosan) +He has a large family. 他有一個大家庭。 CC-BY 2.0 (France) Attribution: tatoeba.org #301226 (CK) & #754706 (Martha) +He has a lot of money. 他有很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #480576 (CK) & #480581 (biglion) +He has done it before. 他以前做過。 CC-BY 2.0 (France) Attribution: tatoeba.org #1723726 (Spamster) & #6070988 (verdastelo9604) +He has gone to London. 他去了伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #293391 (CK) & #2030748 (sadhen) +He has just left home. 他刚离开家。 CC-BY 2.0 (France) Attribution: tatoeba.org #294425 (CK) & #333209 (fucongcong) +He has three brothers. 他有三个哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #284807 (CK) & #2144004 (ydcok) +He has three brothers. 他有三名兄长。 CC-BY 2.0 (France) Attribution: tatoeba.org #284807 (CK) & #2144006 (ydcok) +He hopes to go abroad. 他希望到國外去。 CC-BY 2.0 (France) Attribution: tatoeba.org #489683 (CK) & #833776 (Martha) +He is a tennis player. 他是个网球球手。 CC-BY 2.0 (France) Attribution: tatoeba.org #291869 (CK) & #335092 (fucongcong) +He is afraid of death. 他害怕死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #297216 (CK) & #435362 (fucongcong) +He is always laughing. 他总是在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #66062 (Scott) & #334059 (fucongcong) +He is good at driving. 他擅長駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #293895 (CK) & #833091 (Martha) +He is like his father. 他像他父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1647549 (CM) & #5830176 (verdastelo9604) +He is mad about music. 他痴迷于音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #294194 (CM) & #609961 (sarah) +He is no longer a boy. 他不再是个男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #293103 (CK) & #6940034 (Cheng) +He is not an American. 他不是美国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #288860 (CK) & #389442 (fucongcong) +He is sure to succeed. 他一定会成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #275740 (CM) & #2029434 (ydcok) +He is the tallest boy. 他是最高的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #293827 (CK) & #8888007 (crescat) +He is washing his car. 他正在洗他的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #298494 (CK) & #408504 (fucongcong) +He knows who they are. 他知道他们是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1828703 (Amastan) & #5574742 (verdastelo9604) +He lived a moral life. 他以君子之道生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #293223 (CM) & #1394950 (mtdot) +He looks kind of pale. 他有点苍白。 CC-BY 2.0 (France) Attribution: tatoeba.org #291752 (CK) & #335114 (fucongcong) +He married an actress. 他和一个女演员结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299475 (CK) & #803826 (fucongcong) +He might not be happy. 他可能會不高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #469179 (CK) & #834336 (Martha) +He must be over sixty. 他应该超过六十岁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288616 (CK) & #504882 (fucongcong) +He reads a great deal. 他读很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #291620 (CM) & #8605838 (slo_oth) +He rested for a while. 他休息了一会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #290114 (CK) & #352061 (fucongcong) +He sang while working. 他一边唱歌一边工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #294485 (CK) & #1454456 (sadhen) +He says he won't come. 他說他不會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #304542 (CK) & #765328 (Martha) +He speaks poor French. 他讲不好法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #995344 (NickC) & #334905 (fucongcong) +He spoke for one hour. 他讲了一小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893286 (dgibbons) & #799216 (fucongcong) +He was a rugby player. 他曾是个英式橄榄球运动员。 CC-BY 2.0 (France) Attribution: tatoeba.org #293330 (CK) & #7781726 (jiangche) +He was born in Africa. 他出生在非洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #288790 (CK) & #343370 (fucongcong) +He works in a factory. 他在一家工廠工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #296292 (CK) & #1278566 (egg0073) +He's afraid of snakes. 他害怕蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #2234595 (FeuDRenais) & #2084022 (egg0073) +He's afraid of snakes. 他怕蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #2234595 (FeuDRenais) & #2085081 (sadhen) +He's my older brother. 他是我的哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #511849 (CK) & #825802 (Martha) +He's shorter than Tom. 他比湯姆矮。 CC-BY 2.0 (France) Attribution: tatoeba.org #292196 (CK) & #834371 (Martha) +His concert was great. 他的演唱會很棒。 CC-BY 2.0 (France) Attribution: tatoeba.org #465973 (CK) & #824607 (Martha) +His plan is dangerous! 他的計劃是危險的! CC-BY 2.0 (France) Attribution: tatoeba.org #403301 (CK) & #825873 (Martha) +His story sounds true. 他的故事聽起來是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #465106 (CK) & #832834 (Martha) +How dare you say that! 你怎么敢那么说。 CC-BY 2.0 (France) Attribution: tatoeba.org #29999 (CM) & #796838 (fucongcong) +How did you get there? 你怎麼到那的? CC-BY 2.0 (France) Attribution: tatoeba.org #1495854 (CK) & #5363957 (egg0073) +How do you make a box? 你怎么做箱子? CC-BY 2.0 (France) Attribution: tatoeba.org #38347 (CK) & #5595090 (verdastelo9604) +How high can you jump? 您能跳多高? CC-BY 2.0 (France) Attribution: tatoeba.org #16471 (CK) & #471316 (fucongcong) +How high can you jump? 你能跳多高? CC-BY 2.0 (France) Attribution: tatoeba.org #16471 (CK) & #471318 (fucongcong) +How is your new class? 新的班级怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3643166 (boukensha) & #8756332 (crescat) +How long did you stay? 你待了多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1373 (CK) & #57 (fucongcong) +How long does it take? 要花多久時間? CC-BY 2.0 (France) Attribution: tatoeba.org #36829 (CK) & #833821 (Martha) +How many does he want? 他要多少? CC-BY 2.0 (France) Attribution: tatoeba.org #288990 (CK) & #778020 (Martha) +How much do I owe you? 我欠您多少? CC-BY 2.0 (France) Attribution: tatoeba.org #257062 (CK) & #786025 (fucongcong) +How much does it cost? 多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #436193 (lukaszpp) & #761442 (Martha) +How much time is left? 还剩多少时间? CC-BY 2.0 (France) Attribution: tatoeba.org #2912652 (CK) & #4885868 (gumblex) +How much will it cost? 这要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #37619 (CK) & #335904 (fucongcong) +How old are your kids? 你的孩子多大了? CC-BY 2.0 (France) Attribution: tatoeba.org #1743486 (Spamster) & #478790 (biglion) +How soon can we leave? 我们过多久才能离开? CC-BY 2.0 (France) Attribution: tatoeba.org #3442199 (CK) & #5640731 (verdastelo9604) +How was the interview? 面試怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #2547412 (CK) & #6075674 (verdastelo9604) +I admire your courage. 我佩服你的勇氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #16874 (CK) & #793232 (Martha) +I always lock my room. 我總是鎖上我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174934 (FeuDRenais) & #2174226 (sadhen) +I am 30 years old now. 我现在30岁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252248 (CK) & #335364 (fucongcong) +I am an honest person. 我是个老实人。 CC-BY 2.0 (France) Attribution: tatoeba.org #854480 (piksea) & #426409 (fucongcong) +I am here on business. 我在這裡出差。 CC-BY 2.0 (France) Attribution: tatoeba.org #61602 (CK) & #918012 (Martha) +I am near the station. 我在車站附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #256268 (CK) & #917941 (Martha) +I am poor at swimming. 我不擅長游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #258904 (CK) & #926593 (Martha) +I am shorter than you. 我比你矮。 CC-BY 2.0 (France) Attribution: tatoeba.org #252891 (CK) & #916624 (Martha) +I am tired of my work. 我厌倦了我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #258284 (CK) & #332780 (fucongcong) +I am very, very sorry. 我非常,非常抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #914045 (Jane_Austen) & #1394860 (mtdot) +I am writing a letter. 我正在寫一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257508 (CK) & #763858 (Martha) +I bought it last week. 我上週買了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #272720 (CK) & #842245 (Martha) +I bought some clothes. 我買衣服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8732766 (Ada_Virus) & #6092443 (xjjAstrus) +I can do it by myself. 我可以自己做。 CC-BY 2.0 (France) Attribution: tatoeba.org #256063 (CK) & #918074 (Martha) +I can do it in a week. 我可以在一週內做。 CC-BY 2.0 (France) Attribution: tatoeba.org #73140 (CK) & #917933 (Martha) +I can open the window. 我可以打開這扇窗。 CC-BY 2.0 (France) Attribution: tatoeba.org #254534 (CK) & #926581 (Martha) +I can't bear the pain. 我無法忍受這個痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #278300 (CK) & #3742617 (egg0073) +I can't do any better. 我做得好到不能再好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #895947 (pauldhunt) & #335046 (fucongcong) +I can't find my shoes. 我找不到我的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #250666 (CK) & #919878 (Martha) +I caught the last bus. 我趕上了最後一班公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #257669 (CK) & #917969 (Martha) +I chose the wrong one. 我選了錯的那個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2307984 (CK) & #6568279 (verdastelo9604) +I dialed Tom's number. 我拨打了Tom的号码。 CC-BY 2.0 (France) Attribution: tatoeba.org #2261937 (CK) & #4845137 (pig8322) +I didn't get his joke. 我不懂他的玩笑話。 CC-BY 2.0 (France) Attribution: tatoeba.org #392153 (CK) & #834434 (Martha) +I didn't get the joke. 我没明白那个笑话。 CC-BY 2.0 (France) Attribution: tatoeba.org #46232 (CK) & #804871 (fucongcong) +I didn't see anything. 我什麼都沒看見。 CC-BY 2.0 (France) Attribution: tatoeba.org #1034660 (Brian255) & #765346 (Martha) +I dislike being alone. 我不喜歡獨處。 CC-BY 2.0 (France) Attribution: tatoeba.org #27616 (CK) & #826244 (Martha) +I do not like science. 我不喜欢科学。 CC-BY 2.0 (France) Attribution: tatoeba.org #24007 (CK) & #2032167 (ydcok) +I don't care for eggs. 我不喜欢鸡蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #325226 (CK) & #4673809 (McMeao) +I don't do it anymore. 我已经不再做这个了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2317571 (Hybrid) & #7773204 (jiangche) +I don't have a pencil. 我沒鉛筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1456137 (CK) & #9054743 (xjjAstrus) +I don't know anything. 我什么都不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #370605 (saeb) & #8709506 (crescat) +I don't like anything. 我什么都不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #631758 (Shishir) & #4673810 (McMeao) +I don't like big dogs. 我不喜歡大狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1245327 (eastasiastudent) & #1245323 (egg0073) +I don't like children. 我不喜欢小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #6272790 (CK) & #4673823 (McMeao) +I don't like drinking. 我不喜欢喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #256127 (CK) & #4673802 (McMeao) +I don't like her face. 我不喜歡她的臉。 CC-BY 2.0 (France) Attribution: tatoeba.org #391891 (CK) & #834621 (Martha) +I don't like homework. 我不喜欢作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #258539 (CK) & #4673804 (McMeao) +I don't like studying. 我不喜欢学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #261642 (CK) & #4673805 (McMeao) +I don't like that guy. 我不喜欢那家伙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824284 (CK) & #5983654 (verdastelo9604) +I don't like this one. 我不喜欢这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #55765 (CK) & #465928 (fucongcong) +I don't need anything. 我不需要任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271887 (CK) & #4635741 (egg0073) +I don't need anything. 我什么都不需要。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271887 (CK) & #6484880 (FAErika) +I don't want any more. 我不想要了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31649 (CK) & #834627 (Martha) +I dove into the river. 我跳进了河里。 CC-BY 2.0 (France) Attribution: tatoeba.org #475953 (minshirui) & #5931781 (verdastelo9604) +I even made Tom laugh. 我甚至讓湯姆笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2325185 (CK) & #6064624 (verdastelo9604) +I finally found a job. 我終于找到工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6534864 (kayano) & #6475446 (xjjAstrus) +I found you, didn't I? 我找到你了,没有么? CC-BY 2.0 (France) Attribution: tatoeba.org #2361579 (CK) & #5978318 (verdastelo9604) +I gave my cold to him. 我的感冒传染了他. CC-BY 2.0 (France) Attribution: tatoeba.org #260485 (CK) & #1423995 (asosan) +I go to bed at eleven. 我十一点上床。 CC-BY 2.0 (France) Attribution: tatoeba.org #73354 (CK) & #5554058 (verdastelo9604) +I go to school by bus. 我乘车去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #321680 (CK) & #405242 (fucongcong) +I got out of the taxi. 我從出租車上下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #254926 (CK) & #9179884 (xjjAstrus) +I had a strange dream. 我做了一个奇怪的梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #3954077 (plumblossoms) & #1372552 (sadhen) +I had nothing to hide. 我没什么可隐藏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331706 (CK) & #4760156 (ryanwoo) +I had to stay at home. 我得留在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4879876 (zvzuibqx) & #6101355 (verdastelo9604) +I have a bad headache. 我頭疼得厲害。 CC-BY 2.0 (France) Attribution: tatoeba.org #34727 (CK) & #834753 (Martha) +I have a little money. 我有一些錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #18587 (CK) & #1962158 (egg0073) +I have class tomorrow. 我明天有课。 CC-BY 2.0 (France) Attribution: tatoeba.org #2075 (CK) & #503098 (fucongcong) +I have eight siblings. 我有八個兄弟姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266453 (yifen238) & #846181 (Martha) +I have lost my pencil. 我的鉛筆掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25767 (CK) & #9054745 (xjjAstrus) +I have many abilities. 我有很多才能。 CC-BY 2.0 (France) Attribution: tatoeba.org #321430 (CK) & #824547 (Martha) +I have nothing to say. 我没什么可说的。 CC-BY 2.0 (France) Attribution: tatoeba.org #249876 (CK) & #2620170 (fenfang557) +I have to go to sleep. 我该去睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1277 (vinhan) & #2 (fucongcong) +I have to lose weight. 我必须要减肥了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745200 (Amastan) & #7767563 (jiangche) +I have to wake Tom up. 我得叫醒汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745190 (Amastan) & #5845640 (verdastelo9604) +I haven't decided yet. 我還沒決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #32719 (CK) & #904788 (kanaorange) +I heard a car pull up. 我听到一辆车停了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360714 (CK) & #5094116 (mirrorvan) +I hid under the table. 我藏在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #255055 (CK) & #834870 (Martha) +I hired someone today. 我今天雇了个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2095448 (CK) & #5949279 (verdastelo9604) +I knew you'd find Tom. 我知道你会找到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375800 (CK) & #5555413 (verdastelo9604) +I know everybody here. 我認識這裡的每個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2094779 (CK) & #3742573 (egg0073) +I know my limitations. 我知道我的限度。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376095 (CK) & #5900371 (verdastelo9604) +I know what I'm doing. 我知道我在做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1648888 (Spamster) & #7772142 (jiangche) +I know what you meant. 我知道你是什么意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376386 (CK) & #5670778 (verdastelo9604) +I know where he lives. 我知道他住哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #259986 (CK) & #333770 (fucongcong) +I laughed at his joke. 他的笑話讓我大笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #465030 (CK) & #834560 (Martha) +I like playing sports. 我喜歡運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #435161 (CK) & #771412 (Martha) +I met your girlfriend. 我見過你的女朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #257094 (CK) & #824721 (Martha) +I miss Mary's cooking. 我想念Mary 的廚藝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387236 (CK) & #5548481 (egg0073) +I must be leaving now. 我現在必須離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #486444 (blay_paul) & #834615 (Martha) +I must help my mother. 我必須幫忙我母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #484052 (CK) & #834807 (Martha) +I must repay the debt. 我必须偿还债务。 CC-BY 2.0 (France) Attribution: tatoeba.org #258421 (CM) & #5617152 (verdastelo9604) +I need a lot of books. 我需要很多書。 CC-BY 2.0 (France) Attribution: tatoeba.org #826483 (odiernod) & #827574 (Martha) +I need to get a stamp. 我需要一張郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #259028 (CK) & #793499 (Martha) +I never liked biology. 我從來沒喜歡過生物學。 CC-BY 2.0 (France) Attribution: tatoeba.org #1317 (brauliobezerra) & #37 (Martha) +I owe you ten dollars. 我欠你10美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #17572 (CK) & #834666 (Martha) +I phone him every day. 我每天都给他打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1736436 (Djef_Messaoudi) & #7772433 (jiangche) +I prefer cats to dogs. 比起狗,我更喜欢猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #257246 (CK) & #796630 (fucongcong) +I prefer cats to dogs. 與狗相比,我更喜歡貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #257246 (CK) & #5728391 (xjjAstrus) +I prefer cats to dogs. 較之于狗,我更喜欢猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #257246 (CK) & #5728392 (xjjAstrus) +I ran a race with him. 我和他比賽跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #260203 (CK) & #795806 (Martha) +I ran away in a hurry. 我趕快跑走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253056 (CK) & #795316 (Martha) +I really do want that. 我真的很想要它。 CC-BY 2.0 (France) Attribution: tatoeba.org #435168 (CK) & #834623 (Martha) +I really like puppies. 我非常喜欢小狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #5099502 (chris3spice) & #8725788 (crescat) +I really like to read. 我真喜欢阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #4980070 (CK) & #5630399 (verdastelo9604) +I remember seeing her. 我記得我看過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261139 (CK) & #778702 (Martha) +I remember seeing him. 我记得见过他。 CC-BY 2.0 (France) Attribution: tatoeba.org #285017 (CK) & #1415766 (sadhen) +I respect the elderly. 我尊敬长辈。 CC-BY 2.0 (France) Attribution: tatoeba.org #575353 (FeuDRenais) & #332797 (fucongcong) +I saw you kissing Tom. 我看到了你在吻汤姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171985 (CK) & #5091248 (mirrorvan) +I shave every morning. 我每天早上刮鬍子。 CC-BY 2.0 (France) Attribution: tatoeba.org #436953 (lukaszpp) & #713270 (egg0073) +I signed the document. 我簽了文件。 CC-BY 2.0 (France) Attribution: tatoeba.org #7768858 (sharris123) & #5542982 (egg0073) +I sleep on my stomach. 我趴着睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #8555442 (CK) & #8555685 (slo_oth) +I think Tom can't win. 我認為湯姆不會贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #6351062 (CK) & #6483514 (verdastelo9604) +I think he won't come. 我认为他不会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #399185 (blay_paul) & #1066247 (cranewang) +I think you're stupid. 我认为你傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732577 (CK) & #5091263 (mirrorvan) +I thought it was true. 我以为这是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2401 (CK) & #1415728 (sadhen) +I threw away my shoes. 我把自己的鞋子扔掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2494009 (Hybrid) & #5091692 (mirrorvan) +I told Tom what to do. 我告诉了汤姆要做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547390 (CK) & #6094849 (verdastelo9604) +I told you to get out. 我告诉过你出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5889784 (Hybrid) & #5911760 (verdastelo9604) +I turned the doorknob. 我轉動了門把。 CC-BY 2.0 (France) Attribution: tatoeba.org #321668 (CK) & #819438 (Martha) +I used to play tennis. 我以前打网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #453663 (FeuDRenais) & #4623415 (McMeao) +I want a few potatoes. 我要幾個土豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156322 (Kiwi) & #6940186 (xjjAstrus) +I want to be a lawyer. 我要當律師。 CC-BY 2.0 (France) Attribution: tatoeba.org #1821413 (Amastan) & #8215724 (verdastelo9604) +I want to become rich. 我想變有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4091865 (andymakespasta) & #4061625 (egg0073) +I want to go with you. 我想和你一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #28972 (CK) & #397152 (fucongcong) +I want to go with you. 我想和你一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #28972 (CK) & #7774771 (jiangche) +I want to keep moving. 我想继续走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011676 (CK) & #6020856 (verdastelo9604) +I want to lose weight. 我想减肥。 CC-BY 2.0 (France) Attribution: tatoeba.org #259295 (CK) & #332631 (fucongcong) +I want to participate. 我想参加。 CC-BY 2.0 (France) Attribution: tatoeba.org #5288568 (AlanF_US) & #8727835 (crescat) +I want to retire soon. 我想早點退休。 CC-BY 2.0 (France) Attribution: tatoeba.org #5193601 (CK) & #6044369 (verdastelo9604) +I want to see a movie. 我要去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761637 (DrWinters) & #716665 (egg0073) +I want to sing a song. 我想唱個歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #27829 (CK) & #860559 (Martha) +I want to take a bath. 我要洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #437071 (lukaszpp) & #6923168 (verdastelo9604) +I want to talk to him. 我想跟他說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1325014 (CK) & #6534034 (verdastelo9604) +I want to visit Korea. 我想访问韩国。 CC-BY 2.0 (France) Attribution: tatoeba.org #556616 (Pun_intended) & #1446885 (asosan) +I want you to grow up. 我希望你能长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011690 (CK) & #3839485 (sadhen) +I wanted to smack you. 我想过扇你一巴掌。 CC-BY 2.0 (France) Attribution: tatoeba.org #4980181 (CK) & #5091625 (mirrorvan) +I was in the bathroom. 我当时在卫生间。 CC-BY 2.0 (France) Attribution: tatoeba.org #5828323 (OsoHombre) & #7767594 (jiangche) +I was quite satisfied. 我真是满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821010 (CK) & #5685927 (verdastelo9604) +I went there recently. 我刚去过那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #808715 (ryanthewired) & #6075193 (mendel) +I will do it tomorrow. 我明天再做。 CC-BY 2.0 (France) Attribution: tatoeba.org #619610 (ulyssemc1) & #8734952 (crescat) +I will make you happy. 我会让你幸福的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321787 (CK) & #408459 (fucongcong) +I wish I had seen her. 但願我見過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308847 (CK) & #855681 (Martha) +I wish I were younger. 但願我年輕一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #30437 (CK) & #835731 (Martha) +I won't do this again. 我不想再做這個了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5822992 (CK) & #6903771 (verdastelo9604) +I won't need any help. 我不需要任何帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755433 (cairnhead) & #4757623 (ryanwoo) +I won't see her again. 我不會再見她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394803 (CK) & #835631 (Martha) +I wonder who has come. 我想知道谁来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #276391 (adjusting) & #334195 (fucongcong) +I work even on Sunday. 我甚至在週日工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #6019 (Zifre) & #785252 (Martha) +I'd like another beer. 我想再来一杯啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1037078 (GPHemsley) & #332782 (fucongcong) +I'd like orange juice. 我想要橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #64785 (CK) & #334502 (fucongcong) +I'd like to go skiing. 我喜歡去滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #52309 (CK) & #835538 (Martha) +I'll be back tomorrow. 我明天回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666926 (CK) & #6903839 (verdastelo9604) +I'll be busy tomorrow. 我明天会很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #261953 (CK) & #431500 (fucongcong) +I'll be there at once. 我會立刻到那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #518886 (CK) & #834873 (Martha) +I'll get some glasses. 我會去拿一些玻璃杯。 CC-BY 2.0 (France) Attribution: tatoeba.org #29110 (CK) & #793253 (Martha) +I'll let Tom tell you. 我会让汤姆告诉你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547264 (CK) & #4972569 (wzhd) +I'll miss you so much. 我會非常想念你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63377 (CK) & #803788 (Martha) +I'll show you my room. 我會帶你看看我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #251793 (CK) & #788847 (Martha) +I'll show you the way. 我會為你帶路。 CC-BY 2.0 (France) Attribution: tatoeba.org #280431 (CK) & #835364 (Martha) +I'm a college student. 我是个大学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #568944 (FeuDRenais) & #2031433 (ydcok) +I'm a little confused. 我有一点困惑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1549729 (Spamster) & #2440675 (fenfang557) +I'm absolutely elated. 我真是欣喜若狂。 CC-BY 2.0 (France) Attribution: tatoeba.org #5751928 (CM) & #5794139 (verdastelo9604) +I'm afraid of heights. 我恐高。 CC-BY 2.0 (France) Attribution: tatoeba.org #1110791 (Scott) & #1785889 (sadhen) +I'm afraid of spiders. 我怕蜘蛛。 CC-BY 2.0 (France) Attribution: tatoeba.org #453111 (FeuDRenais) & #426358 (fucongcong) +I'm almost sure of it. 我幾乎能確定。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547234 (CK) & #6059531 (verdastelo9604) +I'm busy all the time. 我總是忙碌。 CC-BY 2.0 (France) Attribution: tatoeba.org #253162 (CK) & #3713700 (egg0073) +I'm busy all the time. 我总是有事。 CC-BY 2.0 (France) Attribution: tatoeba.org #253162 (CK) & #7771930 (jiangche) +I'm doing my homework. 我正在做我的作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #258045 (CK) & #4540618 (McMeao) +I'm getting choked up. 我快要激动得说不出话来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5751919 (CM) & #8744640 (slo_oth) +I'm glad I could help. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63878 (CK) & #5097642 (mirrorvan) +I'm glad to hear that. 我很高興聽到這個消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #254847 (CK) & #834973 (Martha) +I'm going to the bank. 我要去银行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256982 (CK) & #4625747 (Yashanti) +I'm going to the park. 我去公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #931361 (FeuDRenais) & #759070 (Martha) +I'm grateful for that. 我对那事很是感激。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547193 (CK) & #5907640 (verdastelo9604) +I'm not afraid to die. 我不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547172 (CK) & #802838 (fucongcong) +I'm not wearing pants. 我没穿裤子 CC-BY 2.0 (France) Attribution: tatoeba.org #5748433 (CM) & #8746379 (cxpadonis) +I'm playing a TV game. 我在玩電視遊樂器。 CC-BY 2.0 (France) Attribution: tatoeba.org #25516 (CK) & #834952 (Martha) +I'm still your friend. 我还是你的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1970198 (CK) & #5897900 (verdastelo9604) +I'm used to it by now. 我现在已经习惯它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547089 (CK) & #4540613 (McMeao) +I'm worried about Tom. 我在為湯姆擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839542 (CK) & #5924732 (xjjAstrus) +I've been on vacation. 我在休假。 CC-BY 2.0 (France) Attribution: tatoeba.org #4976801 (CK) & #6071018 (verdastelo9604) +I've had a good sleep. 我睡得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #29915 (CK) & #791343 (fucongcong) +I've just eaten lunch. 我剛吃過午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #6666790 (CK) & #835777 (Martha) +I've lost my umbrella. 我丢了我的伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359929 (CK) & #332434 (fucongcong) +I've run out of money. 我錢已經用完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433612 (CK) & #834994 (Martha) +Is Tom afraid of dogs? 汤姆怕狗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6233146 (CK) & #8860209 (crescat) +Is Tom ready for that? 汤姆准备好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5006223 (CK) & #5617279 (verdastelo9604) +Is breakfast included? 包括早饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4870573 (zvzuibqx) & #5684089 (verdastelo9604) +Is it near your house? 它在你家附近嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #42494 (CK) & #834605 (Martha) +Is it really possible? 真的是可能的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1538643 (CM) & #4455714 (egg0073) +Is it really worth it? 这真的值得吗? CC-BY 2.0 (France) Attribution: tatoeba.org #794169 (CK) & #818891 (fucongcong) +Is there life on Mars? 火星上有生命嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2179087 (Hybrid) & #6961329 (xjjAstrus) +Is this your daughter? 這是你的女兒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3825478 (CK) & #6138321 (verdastelo9604) +Is this your notebook? 這是你的筆記本嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1031212 (Brian255) & #9054607 (xjjAstrus) +It all depends on you. 这都取决于你。 CC-BY 2.0 (France) Attribution: tatoeba.org #8569662 (CK) & #8574701 (slo_oth) +It is a very sad tale. 这是一个非常悲伤的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #684772 (notrwanda) & #1415773 (sadhen) +It is good to see you. 见到你真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1587304 (Spamster) & #795754 (fucongcong) +It makes me feel good. 它讓我感覺很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5203945 (CK) & #6147576 (verdastelo9604) +It might be a wedding. 這可能是一場婚禮。 CC-BY 2.0 (France) Attribution: tatoeba.org #781135 (CM) & #781523 (Martha) +It might snow tonight. 晚上也许会下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #5036359 (AlanF_US) & #4960567 (murr) +It seemed to be cheap. 似乎很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #28501 (CM) & #333228 (fucongcong) +It tastes really good. 它的滋味真的很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #402339 (CK) & #824542 (Martha) +It was a terrible day. 這是糟糕的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #441955 (CK) & #834832 (Martha) +It was amazingly easy. 这出乎意料地容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #4530096 (CK) & #5091377 (mirrorvan) +It was really special. 它真特別。 CC-BY 2.0 (France) Attribution: tatoeba.org #3409161 (CK) & #6077424 (verdastelo9604) +It won't take so long. 它不會花很長的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #515767 (CK) & #835388 (Martha) +It'll definitely rain. 绝对将要下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1263640 (CK) & #1780746 (sadhen) +It's OK not to eat it. 你不吃沒關係。 CC-BY 2.0 (France) Attribution: tatoeba.org #435766 (CK) & #851535 (Martha) +It's a very sad story. 这是一个非常悲伤的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1412385 (CK) & #1415773 (sadhen) +It's been a long time. 已經很長一段時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #417006 (CK) & #835484 (Martha) +It's my birthday soon. 我的生日就快到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2128164 (donkirkby) & #884638 (Tajfun) +It's so different now. 现在真是不一样了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729382 (CM) & #5863263 (verdastelo9604) +Keep next Sunday free. 把下周日空出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #264314 (CK) & #869970 (kooler) +Lawyers are all liars. 律师都是骗子。 CC-BY 2.0 (France) Attribution: tatoeba.org #847127 (Source_Benedict_1921) & #7708514 (biglion) +Leave my camera alone. 別碰我的相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #33563 (CK) & #793260 (Martha) +Let me think about it. 让我想一想。 CC-BY 2.0 (France) Attribution: tatoeba.org #869514 (CK) & #707208 (Yashanti) +Let's go to the beach. 讓我們去海邊吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #34867 (CK) & #834808 (Martha) +Let's meet again soon. 讓我們很快地再次見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #435196 (CK) & #825899 (Martha) +Let's start the party. 讓我們開始這個派對吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #387385 (CK) & #819404 (Martha) +Like father, like son. 有其父必有其子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2345 (brauliobezerra) & #728638 (Martha) +Look, it's my problem. 看,这是我的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663568 (CK) & #5911752 (verdastelo9604) +Make yourself at home. 就当在家一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #2378 (CK) & #1776656 (sadhen) +May I borrow your car? 我可以借用你的車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #388282 (CK) & #834609 (Martha) +May I eat this orange? 我可以吃這個柳橙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410535 (CK) & #834585 (Martha) +May I open the window? 可以开窗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4260723 (CK) & #5097880 (mirrorvan) +May I use your pencil? 我可以用你的鉛筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405530 (CK) & #833803 (Martha) +May I use your toilet? 我能用一下你们的厕所吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38936 (CK) & #472961 (fucongcong) +Maybe I'm just a fool. 可能我就是個傻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824636 (CK) & #6119436 (verdastelo9604) +Maybe you should move. 你可能該動一動。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501066 (CK) & #6103235 (verdastelo9604) +Money rules the world. 金钱万能。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076598 (sacredceltic) & #5092154 (mirrorvan) +My baggage is missing. 我的行李丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250590 (autuno) & #794187 (fucongcong) +My children are twins. 我的孩子是雙胞胎。 CC-BY 2.0 (France) Attribution: tatoeba.org #1744418 (Djef_Messaoudi) & #6623166 (verdastelo9604) +My father is a doctor. 我父亲是个大夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #251657 (CK) & #787604 (fucongcong) +My father likes pizza. 我父親喜歡批薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #7770337 (sharris123) & #727788 (Martha) +My father loves pizza. 我父親愛吃比薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #469183 (CK) & #825133 (Martha) +My mother is a lawyer. 我妈妈是律师。 CC-BY 2.0 (France) Attribution: tatoeba.org #1771641 (Zaphod) & #5099419 (musclegirlxyp) +My mother is a lawyer. 我妈妈是个律师。 CC-BY 2.0 (France) Attribution: tatoeba.org #1771641 (Zaphod) & #8673655 (crescat) +My right hand is numb. 我的右手麻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27064 (CK) & #834945 (Martha) +My room is just below. 我的房間就在樓下。 CC-BY 2.0 (France) Attribution: tatoeba.org #251777 (U2FS) & #788810 (Martha) +My room is very small. 我的房間非常小。 CC-BY 2.0 (France) Attribution: tatoeba.org #251779 (CK) & #763893 (Martha) +My room is very small. 我的房間很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #251779 (CK) & #788814 (Martha) +My sister often cries. 我妹妹经常哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #378512 (CK) & #811295 (fucongcong) +My underpants are wet. 我的內褲是濕的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1014508 (CM) & #5414822 (egg0073) +My underwear is dirty. 我的內衣髒了 CC-BY 2.0 (France) Attribution: tatoeba.org #7790189 (sharris123) & #5112340 (xjjAstrus) +My whole body is sore. 我全身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #273774 (CK) & #917936 (Martha) +No one listened to me. 沒有人聽我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #817944 (Cindrogriza) & #818171 (Martha) +No one understands me. 没有人理解我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4948492 (onie23) & #334907 (fucongcong) +No one's stopping you. 没有人在阻止你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3519309 (CK) & #6315362 (yuiyu) +No, I didn't write it. 不,我沒寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #516734 (CK) & #834925 (Martha) +Nobody understands me. 没有人理解我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1484 (CK) & #334907 (fucongcong) +None of your business. 这不是你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #324771 (CK) & #7774787 (jiangche) +Open the door, please. 請把門打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #38523 (CK) & #710680 (egg0073) +Open the door, please. 请开门。 CC-BY 2.0 (France) Attribution: tatoeba.org #38523 (CK) & #794003 (fucongcong) +Our team won the game. 我們這隊贏得了比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #23458 (CK) & #845453 (Martha) +Perhaps you are right. 也许您有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #1042322 (yessoos) & #7768335 (jiangche) +Playing tennis is fun. 打網球很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #487834 (CK) & #825900 (Martha) +Please allow me to go. 請允許我去。 CC-BY 2.0 (France) Attribution: tatoeba.org #433630 (CK) & #826174 (Martha) +Please close the door. 請關上門。 CC-BY 2.0 (France) Attribution: tatoeba.org #495838 (CK) & #819305 (Martha) +Please close the door. 請關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #495838 (CK) & #819441 (Martha) +Please come back home. 請回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823800 (CK) & #8215739 (verdastelo9604) +Please deal the cards. 請發一下牌。 CC-BY 2.0 (France) Attribution: tatoeba.org #63503 (Eldad) & #5254681 (xjjAstrus) +Please don't say that. 请不要这样说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163507 (CK) & #4885866 (gumblex) +Please don't say that. 请你不要说这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163507 (CK) & #7771878 (jiangche) +Please give me a call. 请给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #250165 (CK) & #8933788 (crescat) +Please go to the bank. 請去銀行。 CC-BY 2.0 (France) Attribution: tatoeba.org #18441 (CK) & #842263 (Martha) +Please keep it secret. 請保守秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #38457 (BraveSentry) & #825771 (Martha) +Please leave me alone. 请让我静一静。 CC-BY 2.0 (France) Attribution: tatoeba.org #38903 (CK) & #462043 (fucongcong) +Please show me around. 請帶我到處看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #262377 (CK) & #819405 (Martha) +Please take your seat. 请坐。 CC-BY 2.0 (France) Attribution: tatoeba.org #64719 (CK) & #5780574 (verdastelo9604) +Please tell the truth. 请把真实的情况说出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501491 (CK) & #8729930 (morningstar) +Please tell the truth. 请把事实说出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501491 (CK) & #8729933 (morningstar) +Please think about it. 請你考慮考慮。 CC-BY 2.0 (France) Attribution: tatoeba.org #442022 (CK) & #825179 (Martha) +Put away your bicycle. 把你的自行车放好。 CC-BY 2.0 (France) Attribution: tatoeba.org #264503 (CK) & #332686 (fucongcong) +Put down your weapons. 放下你们的武器。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636142 (CK) & #344205 (fucongcong) +Put on some sunscreen. 涂点防晒吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501258 (CK) & #8869378 (crescat) +Red is out of fashion. 红色不流行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272442 (CM) & #343963 (fucongcong) +Remember Tom's advice. 记住汤姆的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #5478494 (CK) & #8696297 (crescat) +Restart your computer. 重新启动你的电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5628408 (Hybrid) & #5911699 (verdastelo9604) +Say it in another way. 换种方式说。 CC-BY 2.0 (France) Attribution: tatoeba.org #41792 (CK) & #796842 (fucongcong) +She accepted his gift. 她收下了他的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #316428 (CK) & #493515 (biglion) +She almost passed out. 她几乎喝晕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313141 (CK) & #5949076 (verdastelo9604) +She answered in tears. 她很傷心地回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #388578 (CK) & #832467 (Martha) +She asked for my help. 她向我求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #798665 (Eldad) & #791656 (fucongcong) +She asked me for help. 她向我求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #404172 (CK) & #791656 (fucongcong) +She attempted suicide. 她企圖自殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #314569 (SUZIE) & #838593 (Martha) +She can play the drum. 她會打鼓。 CC-BY 2.0 (France) Attribution: tatoeba.org #311830 (CK) & #904793 (kanaorange) +She decided to resign. 她決定辭職了。 CC-BY 2.0 (France) Attribution: tatoeba.org #521662 (CK) & #824635 (Martha) +She gave me a present. 她給了我一件禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #308501 (CK) & #840747 (Martha) +She gave us a present. 她給了我們一個禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #314077 (CK) & #873434 (Martha) +She graduated in 1996. 她在1996年畢業。 CC-BY 2.0 (France) Attribution: tatoeba.org #2737518 (eastasiastudent) & #2737432 (egg0073) +She has a pretty doll. 她有个漂亮的洋娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #316621 (CK) & #2027985 (ydcok) +She has been to Paris. 她去过巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #311992 (CK) & #333004 (fucongcong) +She has gone shopping. 她去购物了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316152 (CK) & #5836098 (xiaofeng502190) +She hated her husband. 她恨她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #388374 (CK) & #819344 (Martha) +She hit the ball hard. 她用力地拍了球。 CC-BY 2.0 (France) Attribution: tatoeba.org #312166 (CK) & #461497 (fucongcong) +She is a noted singer. 她是一个著名的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #317296 (CM) & #1358430 (sadhen) +She is as tall as you. 她跟你一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #313361 (CK) & #864269 (Martha) +She is evidently sick. 她明顯生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317157 (CM) & #6070041 (verdastelo9604) +She is weak by nature. 她天生体弱。 CC-BY 2.0 (France) Attribution: tatoeba.org #315349 (CK) & #8765192 (crescat) +She isn't a good cook. 她不是一個好廚師。 CC-BY 2.0 (France) Attribution: tatoeba.org #317445 (CK) & #840553 (Martha) +She isn't at home now. 她現在不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #388866 (CK) & #845509 (Martha) +She lived a long life. 她活了很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #315868 (CK) & #333957 (fucongcong) +She lives in New York. 她住在纽约。 CC-BY 2.0 (France) Attribution: tatoeba.org #456735 (lukaszpp) & #512934 (fucongcong) +She loves Tom, not me. 她爱汤姆,而不是我。 CC-BY 2.0 (France) Attribution: tatoeba.org #308174 (CK) & #2052189 (sadhen) +She made a man of him. 她使他長大成人。 CC-BY 2.0 (France) Attribution: tatoeba.org #316490 (CK) & #916613 (Martha) +She never wears green. 她從來不穿綠色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019956 (CM) & #1019959 (egg0073) +She seems to hate you. 她好像很讨厌你。 CC-BY 2.0 (France) Attribution: tatoeba.org #310281 (CK) & #336017 (fucongcong) +She talked childishly. 她说话幼稚。 CC-BY 2.0 (France) Attribution: tatoeba.org #310255 (Eldad) & #333734 (fucongcong) +She teaches us French. 她教我们法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #402517 (xtofu80) & #609883 (sarah) +She turned eighty-one. 她八十一歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388583 (CK) & #824527 (Martha) +She was wearing pumps. 她穿著舞鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #388660 (CK) & #824615 (Martha) +She's a stubborn girl. 她是个倔强的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #432804 (aliene) & #336456 (fucongcong) +She's eating an apple. 她正吃著一個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #405766 (CK) & #825972 (Martha) +She's in the restroom. 她在上廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #523175 (CK) & #825995 (Martha) +She's my older sister. 她是我的姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #469125 (CK) & #469258 (fucongcong) +She's sure to succeed. 她理所当然的取得了胜利。 CC-BY 2.0 (France) Attribution: tatoeba.org #1327568 (CK) & #3783107 (Debbie_Linder) +Should Tom be worried? Tom應該要擔心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4503000 (CK) & #4504435 (egg0073) +Shut the door, please. 請關上門。 CC-BY 2.0 (France) Attribution: tatoeba.org #38852 (CK) & #819305 (Martha) +Shut the door, please. 請關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #38852 (CK) & #819441 (Martha) +Sit wherever you like. 你愛坐哪裡就坐哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #64505 (CK) & #793299 (Martha) +Smoking is prohibited. 禁止吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #2717915 (WestofEden) & #4885840 (gumblex) +So you give up, right? 所以你放弃了,是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #53214 (CK) & #5865516 (verdastelo9604) +Somebody was murdered. 有人被謀殺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249976 (CK) & #6903852 (verdastelo9604) +Someone has been here. 有人來過這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4950124 (adamtrousers) & #4950410 (umidake) +Something is changing. 有些東西在變化。 CC-BY 2.0 (France) Attribution: tatoeba.org #4463787 (fekundulo) & #6150011 (verdastelo9604) +Spring is coming soon. 春天就要来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266898 (sacredceltic) & #343938 (fucongcong) +Spring will come soon. 春天就要来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31604 (CM) & #343938 (fucongcong) +Spring will come soon. 春天快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31604 (CM) & #797026 (Martha) +Stop swearing, please. 请别再发誓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4876481 (Amastan) & #5900368 (verdastelo9604) +Take care of yourself. 照顾好自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #64257 (CK) & #510765 (fucongcong) +Tears filled her eyes. 她热泪盈眶。 CC-BY 2.0 (France) Attribution: tatoeba.org #325986 (CS) & #336435 (fucongcong) +Tell me how he got it. 告诉我他怎么弄到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283233 (CM) & #334814 (fucongcong) +Tell me what happened. 告訴我發生了什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2444 (CK) & #1639547 (cienias) +Tell me what you want. 告訴我你要什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #25020 (CK) & #836420 (Martha) +Tell me when to begin. 告诉我什么时候开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #980727 (CM) & #437954 (fucongcong) +Tell me when to start. 告诉我什么时候开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #65995 (CK) & #437954 (fucongcong) +Thanks for calling me. 谢谢你给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2995268 (CK) & #5969429 (verdastelo9604) +Thanks for your reply. 谢谢你的答复。 CC-BY 2.0 (France) Attribution: tatoeba.org #64012 (CK) & #332508 (fucongcong) +Thanks to both of you. 感谢你们两位。 CC-BY 2.0 (France) Attribution: tatoeba.org #3049960 (CK) & #4900940 (musclegirlxyp) +That book is very old. 那本書很舊。 CC-BY 2.0 (France) Attribution: tatoeba.org #4676048 (CK) & #769623 (Martha) +That book's over here. 那本书在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2156685 (FeuDRenais) & #2152768 (sadhen) +That car is quite new. 那辆车十分新。 CC-BY 2.0 (France) Attribution: tatoeba.org #46841 (CK) & #816434 (fucongcong) +That is useless to me. 那對我沒有用處。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972310 (FlamingTofu) & #6150879 (verdastelo9604) +That looks like blood. 那看起来像血。 CC-BY 2.0 (France) Attribution: tatoeba.org #4597454 (Hybrid) & #5581830 (verdastelo9604) +That was Tom's choice. 那是汤姆的选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891915 (CK) & #8715872 (crescat) +That wasn't very good. 那不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5411382 (CK) & #5611632 (verdastelo9604) +That's Mary's husband. 那是玛丽的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #7453389 (CK) & #8514570 (gumblex) +That's awesome, right? 很棒,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #704173 (jakov) & #811331 (fucongcong) +That's good, isn't it? 那太好了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435579 (CK) & #826238 (Martha) +The baby smiled at me. 宝宝对我笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272361 (CK) & #791573 (fucongcong) +The boy has come home. 男孩到家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1174861 (CK) & #7773126 (jiangche) +The boy was shirtless. 男孩赤裸着上身。 CC-BY 2.0 (France) Attribution: tatoeba.org #1324880 (shanghainese) & #1324872 (vicch) +The bread isn't fresh. 面包不新鲜。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492763 (CK) & #7771872 (jiangche) +The cake is delicious. 蛋糕很美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #4580227 (AlanF_US) & #4759956 (ryanwoo) +The child will be six. 那孩子要六歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #714347 (CM) & #714346 (egg0073) +The clock has stopped. 時鐘已經停止了。 CC-BY 2.0 (France) Attribution: tatoeba.org #448955 (CK) & #824603 (Martha) +The door clicked shut. 门咔哒一声关上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39124 (CM) & #1397341 (mtdot) +The evidence is clear. 证据确凿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268226 (CM) & #8688061 (crescat) +The fire has gone out. 火已經灭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736821 (CK) & #6152998 (verdastelo9604) +The girls were asleep. 女孩们睡着了 CC-BY 2.0 (France) Attribution: tatoeba.org #4197968 (Sereptie) & #5411826 (Janevy) +The kettle is boiling. 茶壺沸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324248 (CK) & #9135896 (xjjAstrus) +The lake is deep here. 这个湖在这个地方很深。 CC-BY 2.0 (France) Attribution: tatoeba.org #239969 (CK) & #2076262 (sadhen) +The meat has gone bad. 這肉已經壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #281003 (CK) & #909858 (Martha) +The news made her sad. 这个消息让她很伤心。 CC-BY 2.0 (France) Attribution: tatoeba.org #45158 (CK) & #334540 (fucongcong) +The plan was executed. 计划被执行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765389 (sharris123) & #829599 (fucongcong) +The problem isn't Tom. 問題不是湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663562 (CK) & #6147578 (verdastelo9604) +The risk is too great. 风险太大。 CC-BY 2.0 (France) Attribution: tatoeba.org #497959 (FeuDRenais) & #5691298 (verdastelo9604) +The train has arrived. 這班火車已經到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #449053 (CK) & #832801 (Martha) +The war has not ended. 战争还没结束。 CC-BY 2.0 (France) Attribution: tatoeba.org #5774128 (CK) & #5780549 (verdastelo9604) +There are no problems. 沒有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #433783 (CK) & #825141 (Martha) +There are three of us. 我們是三個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3519566 (CK) & #6057674 (xjjAstrus) +There's no way to win. 沒有辦法贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #1617176 (Spamster) & #6105242 (verdastelo9604) +These boxes are heavy. 这些箱子是重的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636285 (CK) & #5856780 (verdastelo9604) +They burst into tears. 他們突然哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306349 (CM) & #876223 (Martha) +They made fun of Mary. 他們取笑瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #293019 (CK) & #836227 (Martha) +They never tell a lie. 他们从不说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #306429 (mamat) & #7768216 (jiangche) +They tasted the bread. 他們嚐了麵包。 CC-BY 2.0 (France) Attribution: tatoeba.org #463232 (lukaszpp) & #907307 (Martha) +They wash their hands. 他們洗手。 CC-BY 2.0 (France) Attribution: tatoeba.org #463184 (lukaszpp) & #6132405 (verdastelo9604) +They work really hard. 他们工作的很辛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502956 (CK) & #4845074 (pig8322) +They're eating apples. 他們正在吃蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #405767 (CK) & #832777 (Martha) +This car needs washed. 这辆车需要清洗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3319845 (pne) & #8511493 (gumblex) +This dog is a mongrel. 這隻狗是雜種狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #59421 (CK) & #785007 (Martha) +This is how I made it. 这就是我的办法。 CC-BY 2.0 (France) Attribution: tatoeba.org #54712 (CK) & #5945156 (verdastelo9604) +This is my dictionary. 这是我的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #55618 (CK) & #334384 (fucongcong) +This is my first time. 這是我的第一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522824 (Spamster) & #1523540 (egg0073) +This is my new guitar. 这是我的新吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3264689 (CK) & #8589627 (tianblr) +This is not important. 這個不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1385 (CK) & #59 (fucongcong) +This is not important. 这不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1385 (CK) & #1415838 (sadhen) +This is not true love. 這不是真實的愛情。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522975 (donkirkby) & #757614 (Martha) +This is too expensive! 这太贵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #890492 (Scott) & #7771677 (jiangche) +This is too expensive. 这太贵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4410136 (XenoKat) & #7771677 (jiangche) +This may take a while. 这要花时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732936 (CK) & #5574380 (verdastelo9604) +This news is official. 这是官方消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #57159 (CK) & #334538 (fucongcong) +This pear smells nice. 这只梨闻上去很香。 CC-BY 2.0 (France) Attribution: tatoeba.org #60753 (CK) & #333031 (fucongcong) +This work doesn't pay. 这个工作没有酬劳。 CC-BY 2.0 (France) Attribution: tatoeba.org #59112 (CK) & #334556 (fucongcong) +Those are my trousers. 那些都是我的褲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #42103 (CK) & #825896 (Martha) +Those are their books. 这是他们的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #66998 (CK) & #5617148 (verdastelo9604) +Time waits for no one. 时间不等人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1744302 (belgavox) & #3367336 (go_oo) +Tom and I are friends. 湯姆和我是朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #37370 (CK) & #844586 (Martha) +Tom became a minister. 汤姆当上了部长。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495984 (CK) & #5794138 (verdastelo9604) +Tom bought new gloves. 湯姆買了新手套。 CC-BY 2.0 (France) Attribution: tatoeba.org #5587428 (CK) & #6148998 (verdastelo9604) +Tom burned the letter. 汤姆烧掉了信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1492144 (Spamster) & #2518642 (fenfang557) +Tom called the police. 汤姆叫了警察。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547041 (CK) & #5663521 (verdastelo9604) +Tom can keep a secret. 汤姆会保密。 CC-BY 2.0 (France) Attribution: tatoeba.org #2698665 (WestofEden) & #4760091 (ryanwoo) +Tom can't afford that. 汤姆负担不起。 CC-BY 2.0 (France) Attribution: tatoeba.org #2646461 (CK) & #5905026 (verdastelo9604) +Tom can't afford this. 汤姆买不起这个东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666908 (CK) & #5091577 (mirrorvan) +Tom can't drive a bus. 湯姆不能開巴士。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026793 (CK) & #6146508 (verdastelo9604) +Tom clapped his hands. 湯姆拍了手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026684 (CK) & #5812342 (xjjAstrus) +Tom could be Canadian. 汤姆可能是加拿大人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2646452 (CK) & #5650502 (verdastelo9604) +Tom doesn't have time. 汤姆没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666899 (CK) & #7771676 (jiangche) +Tom doesn't talk much. 汤姆说话不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094338 (CK) & #5617174 (verdastelo9604) +Tom doesn't work here. 湯姆不在這裡工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272487 (CK) & #6197291 (verdastelo9604) +Tom fell off his bike. 汤姆从他的自行车上掉了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #6532159 (CK) & #7772584 (jiangche) +Tom got ready for bed. 湯姆準備睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2547025 (CK) & #6923210 (verdastelo9604) +Tom gritted his teeth. 汤姆咬紧牙关。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025624 (CK) & #8791844 (slo_oth) +Tom had a heat stroke. 汤姆中暑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085391 (Hybrid) & #5085417 (Jubilee11) +Tom had to go himself. 汤姆不得不自己去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025540 (CK) & #1752967 (sadhen) +Tom has a good memory. 湯姆有好的記憶力。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025487 (CK) & #6119468 (verdastelo9604) +Tom has a reservation. 汤姆有预约。 CC-BY 2.0 (France) Attribution: tatoeba.org #1177490 (CK) & #5983689 (verdastelo9604) +Tom has gained weight. 湯姆變胖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #681051 (Source_VOA) & #900025 (kanaorange) +Tom has lost his keys. 湯姆弄丟了他的鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025361 (CK) & #4805789 (umidake) +Tom has lost his keys. 湯姆遺失了他的鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025361 (CK) & #4805791 (umidake) +Tom has lost his mind. 湯姆失去理智了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1414999 (Spamster) & #3322616 (cienias) +Tom has written to me. 汤姆写给我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733031 (CK) & #5900396 (verdastelo9604) +Tom is a bit snobbish. 汤姆有一点势利。 CC-BY 2.0 (France) Attribution: tatoeba.org #5193162 (CK) & #8794701 (slo_oth) +Tom is consoling Mary. 汤姆在安慰玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1662906 (Amastan) & #2487743 (fenfang557) +Tom is coughing again. 汤姆又在咳嗽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7930280 (CK) & #8936494 (crescat) +Tom is drinking juice. Tom正在喝果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1660852 (Amastan) & #5548503 (egg0073) +Tom is friendly to me. 湯姆對我友好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5589813 (CK) & #6114425 (verdastelo9604) +Tom is my grandfather. Tom是我爺爺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495853 (CK) & #5363956 (egg0073) +Tom is our oldest son. 汤姆是我们最大的儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921461 (CK) & #5694474 (verdastelo9604) +Tom is the one I want. 汤姆是我想要的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166151 (CK) & #5574534 (verdastelo9604) +Tom is very angry now. 汤姆现在很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546992 (CK) & #5818098 (verdastelo9604) +Tom is wearing gloves. 汤姆戴着手套。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273628 (CK) & #5863223 (verdastelo9604) +Tom isn't complaining. 湯姆沒有抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236948 (CK) & #8032169 (verdastelo9604) +Tom likes me the most. Tom 最喜欢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4872229 (zvzuibqx) & #4789468 (Hellomarc) +Tom lost his car keys. 汤姆丢了他的车钥匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3439718 (CK) & #5911757 (verdastelo9604) +Tom needs Mary's help. 湯姆需要瑪麗的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028283 (CK) & #6000438 (xjjAstrus) +Tom seems to know how. 湯姆看來知道那是怎樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009650 (CK) & #6132412 (verdastelo9604) +Tom set the bird free. Tom將鳥放走。 CC-BY 2.0 (France) Attribution: tatoeba.org #3922017 (CK) & #3710596 (egg0073) +Tom should be worried. Tom應該要擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502999 (CK) & #4504438 (egg0073) +Tom snickered at Mary. 汤姆暗中笑玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546957 (CK) & #5663522 (verdastelo9604) +Tom sold Mary his car. 汤姆把他的汽车卖给了玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028015 (CK) & #1426441 (sadhen) +Tom told Mary his age. 湯姆告訴瑪麗他的年齡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027932 (CK) & #6678463 (verdastelo9604) +Tom used to work here. 汤姆过去在这里工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171166 (CK) & #4970100 (wzhd) +Tom walks very slowly. 汤姆走得很慢。 CC-BY 2.0 (France) Attribution: tatoeba.org #432743 (aliene) & #335609 (fucongcong) +Tom wants to sit down. 汤姆想坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009644 (CK) & #5698022 (verdastelo9604) +Tom was a little late. Tom迟到了一小段时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2790310 (CK) & #4845020 (pig8322) +Tom was afraid of you. 湯姆怕你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818249 (CK) & #6109287 (verdastelo9604) +Tom was buried Monday. 汤姆在周一被埋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496209 (CK) & #5945142 (verdastelo9604) +Tom was ready to work. 湯姆準備去工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009637 (CK) & #6089683 (verdastelo9604) +Tom was wearing jeans. 湯姆穿著牛仔褲。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823302 (CK) & #8215709 (verdastelo9604) +Tom watched in horror. 汤姆惊恐地盯着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546932 (CK) & #5094103 (mirrorvan) +Tom wore ripped jeans. 汤姆穿了破洞牛仔裤。 CC-BY 2.0 (France) Attribution: tatoeba.org #7921441 (Hybrid) & #8791848 (slo_oth) +Tom's coach likes him. 汤姆的教练喜欢他。 CC-BY 2.0 (France) Attribution: tatoeba.org #5151201 (CK) & #5911764 (verdastelo9604) +Tom's speech was good. 汤姆的演讲很精彩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3428643 (CK) & #8756384 (crescat) +Two times two is four. 二乘以二等于四。 CC-BY 2.0 (France) Attribution: tatoeba.org #1790836 (newkome) & #401074 (fucongcong) +Wait here for a while. 在这儿等一会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #53434 (CK) & #784412 (fucongcong) +War broke out in 1941. 战争于1941年爆发。 CC-BY 2.0 (France) Attribution: tatoeba.org #73289 (CM) & #8725797 (crescat) +We all hope for peace. 我們都希望和平。 CC-BY 2.0 (France) Attribution: tatoeba.org #248327 (CK) & #904856 (Martha) +We captured the thief. 我们抓住了小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #23176 (CK) & #8698975 (crescat) +We defeated the enemy. 我們戰勝了敵人。 CC-BY 2.0 (France) Attribution: tatoeba.org #28768 (CK) & #780343 (Martha) +We didn't see anybody. 我们谁也没看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2092474 (CK) & #7771853 (jiangche) +We do the best we can. 我们尽我们所能。 CC-BY 2.0 (France) Attribution: tatoeba.org #5434706 (CK) & #5576843 (verdastelo9604) +We don't speak French. 我們不講法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273782 (CK) & #9155261 (shou) +We had a lot to drink. 我们喝了很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #4769444 (garborg) & #4182621 (ekgermana) +We have time to spare. 我們有多餘的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #387442 (CK) & #845965 (Martha) +We have two daughters. 我们有两个女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #249592 (CK) & #334779 (fucongcong) +We hear with our ears. 我们用耳朵听。 CC-BY 2.0 (France) Attribution: tatoeba.org #248818 (Zifre) & #5640781 (verdastelo9604) +We just wanted to win. 我們只想贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009614 (CK) & #6089711 (verdastelo9604) +We owe you an apology. 我们欠你个道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953748 (CK) & #5907641 (verdastelo9604) +We ran short of money. 我们缺钱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18493 (CK) & #804852 (fucongcong) +We should do our best. 我们应该做到最好。 CC-BY 2.0 (France) Attribution: tatoeba.org #28796 (CK) & #334642 (fucongcong) +We should go to sleep. 我该去睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4426570 (Serafin) & #2 (fucongcong) +We should work faster. 我們的工作應該要加快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1979799 (AryKiss) & #5363944 (egg0073) +We sometimes see them. 我們有時會看見他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #400279 (CK) & #819445 (Martha) +We took turns driving. 我們輪流開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #263005 (CK) & #825949 (Martha) +We watch TV every day. 我们每天看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #249386 (CK) & #3629988 (suitchic) +We'll begin work soon. 我們立即開始施工。 CC-BY 2.0 (France) Attribution: tatoeba.org #52078 (CK) & #766769 (Martha) +We'll have to go back. 我们还得回去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1675370 (fanty) & #5819688 (verdastelo9604) +We're looking for him. 我们在找他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3917485 (CH) & #7774226 (jiangche) +We're waiting for Tom. 我们在等汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310987 (CK) & #4971576 (wzhd) +We've got a situation. 我们有情况了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310028 (CK) & #5595235 (verdastelo9604) +We've had it analyzed. 我们已经将它做了分析。 CC-BY 2.0 (France) Attribution: tatoeba.org #2646233 (CK) & #5762984 (verdastelo9604) +Well, let's get going! 好吧,讓我們出發吧! CC-BY 2.0 (France) Attribution: tatoeba.org #410595 (CK) & #832789 (Martha) +Were you guys serious? 你们是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6093006 (shekitten) & #7772067 (jiangche) +What are you here for? 你為什麼在這? CC-BY 2.0 (France) Attribution: tatoeba.org #1109889 (Scott) & #3742607 (egg0073) +What are you watching? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1841548 (CK) & #7768300 (jiangche) +What did you find out? 你發現了甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1886783 (CK) & #6109323 (verdastelo9604) +What do we have to do? 我們必須做甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3178389 (CK) & #6120837 (verdastelo9604) +What does Tom suggest? 汤姆建议了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2869282 (CK) & #7771923 (jiangche) +What else can this do? 这还有什么能做的? CC-BY 2.0 (France) Attribution: tatoeba.org #8249367 (francaisr0wlet) & #7781532 (jiangche) +What horrible weather! 多么糟糕的天气啊! CC-BY 2.0 (France) Attribution: tatoeba.org #2766902 (CK) & #8727951 (crescat) +What language is this? 這是什麼語言? CC-BY 2.0 (France) Attribution: tatoeba.org #4749473 (CK) & #5250641 (xjjAstrus) +What made her do that? 为什么她要做这种事情呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1258801 (CK) & #8734997 (crescat) +What time do you open? 你们什么时候开始营业? CC-BY 2.0 (France) Attribution: tatoeba.org #631033 (CK) & #8730057 (crescat) +What's my room number? 我的房间号是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #4662375 (CK) & #332881 (fucongcong) +What's wrong with you? 你到底怎么回事啊? CC-BY 2.0 (France) Attribution: tatoeba.org #664250 (BlueLagoon) & #3897850 (liyongtao) +What's wrong with you? 你到底怎麼回事啊? CC-BY 2.0 (France) Attribution: tatoeba.org #664250 (BlueLagoon) & #3897851 (liyongtao) +When did Tom get here? 湯姆是甚麼時候來到這裡的? CC-BY 2.0 (France) Attribution: tatoeba.org #2869291 (CK) & #6131470 (verdastelo9604) +When did you get here? 你是什麼時候來的? CC-BY 2.0 (France) Attribution: tatoeba.org #954601 (CK) & #2737427 (egg0073) +When will it be ready? 这什么时候能准备好? CC-BY 2.0 (France) Attribution: tatoeba.org #2071673 (Avanna) & #7768157 (jiangche) +When will they arrive? 他們何時抵達? CC-BY 2.0 (France) Attribution: tatoeba.org #66016 (CK) & #780372 (Martha) +When will you be free? 你什麼時候有空? CC-BY 2.0 (France) Attribution: tatoeba.org #16758 (CK) & #780394 (Martha) +Where are the showers? 浴室在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #1663 (CK) & #501553 (fucongcong) +Where are your things? 你的東西在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #17110 (CK) & #793235 (Martha) +Where are your things? 你們的東西在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #17110 (CK) & #1561706 (egg0073) +Where are your things? 您的東西在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #17110 (CK) & #1561707 (egg0073) +Where are your things? 你的東西在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #17110 (CK) & #1561708 (egg0073) +Where did you guys go? 你们这些家伙去哪儿了? CC-BY 2.0 (France) Attribution: tatoeba.org #1886627 (CK) & #2082980 (sadhen) +Where do you live now? 你现在住在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #239578 (CK) & #7771963 (jiangche) +Where do you work now? 你现在在哪里工作? CC-BY 2.0 (France) Attribution: tatoeba.org #3821899 (CK) & #4970088 (wzhd) +Where is my newspaper? 我的报纸在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #1963344 (JohnRail) & #4972686 (wzhd) +Where is the bathroom? 洗手間在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #2136 (brauliobezerra) & #6284507 (xjjAstrus) +Where is the elevator? 電梯在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #65239 (CK) & #6284516 (xjjAstrus) +Where was the mistake? 錯在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #4102939 (jmcd93) & #6923190 (verdastelo9604) +Who did you talk with? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1042637 (GPHemsley) & #7771910 (jiangche) +Who discovered radium? 誰發現了鐳? CC-BY 2.0 (France) Attribution: tatoeba.org #276275 (CK) & #1255479 (cienias) +Who do you think I am? 你把我当什么啦? CC-BY 2.0 (France) Attribution: tatoeba.org #254992 (CK) & #437408 (fucongcong) +Who planted this tree? 谁种了这棵树? CC-BY 2.0 (France) Attribution: tatoeba.org #8462450 (CK) & #8463583 (gumblex) +Who told you the news? 誰告訴了你這個消息? CC-BY 2.0 (France) Attribution: tatoeba.org #276310 (CK) & #836434 (Martha) +Who wrote these poems? 这是谁写的诗? CC-BY 2.0 (France) Attribution: tatoeba.org #852315 (willhite2) & #8500234 (black333) +Who wrote these poems? 这些诗的作者是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #852315 (willhite2) & #8500235 (black333) +Who's your girlfriend? 你女朋友是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2240401 (Hybrid) & #4473139 (yuiyu) +Whose bicycle is this? 这辆自行车是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #55517 (CK) & #334531 (fucongcong) +Whose is this bicycle? 这辆自行车是谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #58875 (CK) & #334531 (fucongcong) +Why are you asking me? 你為什麼問我? CC-BY 2.0 (France) Attribution: tatoeba.org #1495849 (CK) & #5363954 (egg0073) +Why can't we talk now? 为什么我们现在不能讲? CC-BY 2.0 (France) Attribution: tatoeba.org #3181174 (CK) & #5993933 (verdastelo9604) +Why did you come here? 你為什麼來這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #392144 (CK) & #836406 (Martha) +Why did you marry Tom? 你為甚麼跟湯姆結婚? CC-BY 2.0 (France) Attribution: tatoeba.org #3738208 (CK) & #6149011 (verdastelo9604) +Why don't you go home? 你为什么不回家呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1412377 (CK) & #1415798 (sadhen) +Why don't you grow up? 你为什么长不大呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2210747 (CK) & #3839481 (sadhen) +Why is change so hard? 為什麼改變那麼難? CC-BY 2.0 (France) Attribution: tatoeba.org #4666848 (CK) & #6070983 (verdastelo9604) +Why should I hire Tom? 为什么我要雇佣Tom? CC-BY 2.0 (France) Attribution: tatoeba.org #4834926 (CK) & #4844761 (pig8322) +Will he come tomorrow? 他明天会来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #453389 (saasmath) & #8686685 (crescat) +Will it rain tomorrow? 明天会下雨吗? CC-BY 2.0 (France) Attribution: tatoeba.org #475766 (FeuDRenais) & #333928 (fucongcong) +Will you stay at home? 你会待在家吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16246 (CK) & #336018 (fucongcong) +Would you like a tour? 你想去旅游嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3123329 (CK) & #6936189 (verdastelo9604) +Write everything down. 把所有東西寫下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503013 (CK) & #4504374 (egg0073) +Write your goals down. 把你的目標寫下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503012 (CK) & #4504376 (egg0073) +You are a good person. 你是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1545297 (Spamster) & #1545316 (egg0073) +You are a good person. 您是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1545297 (Spamster) & #1545318 (egg0073) +You deserve the prize. 你應該得到這個獎金。 CC-BY 2.0 (France) Attribution: tatoeba.org #17534 (CK) & #793242 (Martha) +You didn't protect me. 你没有保护我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273991 (CK) & #5091470 (mirrorvan) +You don't have to eat. 你不必吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #435768 (CK) & #836370 (Martha) +You have to work hard. 你必须努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #69682 (CK) & #8955183 (crescat) +You must do your best. 你必须做到最好。 CC-BY 2.0 (France) Attribution: tatoeba.org #16122 (CK) & #1992640 (sadhen) +You must stop smoking. 你必须停止吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #40615 (Swift) & #429114 (fucongcong) +You need to get ready. 你需要做好准备。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276415 (CK) & #5865510 (verdastelo9604) +You need to seek help. 你需要尋求協助。 CC-BY 2.0 (France) Attribution: tatoeba.org #4950737 (CK) & #4962220 (umidake) +You reap what you sow. 种瓜得瓜,种豆得豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #32882 (Bing05) & #333123 (fucongcong) +You reap what you sow. 種什麼因得什麼果。 CC-BY 2.0 (France) Attribution: tatoeba.org #32882 (Bing05) & #766426 (Martha) +You seem very nervous. 你看起来很紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #3316032 (garthberry) & #3289653 (sadhen) +You should make notes. 你应该做笔记。 CC-BY 2.0 (France) Attribution: tatoeba.org #31782 (CK) & #5571039 (verdastelo9604) +You weren't here then. 你那時不在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546876 (CK) & #6105273 (verdastelo9604) +You'll get used to it. 你会习惯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #710695 (CM) & #710694 (gumblex) +You'll never be alone. 你们永远不会一个人的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16314 (CK) & #469277 (fucongcong) +You'll never be alone. 你永远不会一个人的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16314 (CK) & #469284 (fucongcong) +You're a mean old man. 你这个吝啬的老头。 CC-BY 2.0 (France) Attribution: tatoeba.org #3354141 (CK) & #5554534 (Alieen) +You're frightening me. 你在嚇我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218149 (CK) & #6325110 (verdastelo9604) +You're in big trouble. 你们有大麻烦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1808201 (Spamster) & #1808256 (sadhen) +You're in trouble now. 你有麻烦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356347 (CK) & #9178028 (xiaohong) +You're really useless. 你真沒用。 CC-BY 2.0 (France) Attribution: tatoeba.org #5809807 (Catriona) & #6065718 (verdastelo9604) +You've got to wake up. 你必須醒醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546848 (CK) & #6109312 (verdastelo9604) +You've made a mistake. 你犯了个错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #3346366 (CK) & #334321 (fucongcong) +Your cat scratched me. 你的猫抓伤我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822753 (CK) & #8696278 (crescat) +Zero comes before one. 零在一前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #682520 (Source_VOA) & #816566 (fucongcong) +A rock fell from above. 一块岩石从上面落下。 CC-BY 2.0 (France) Attribution: tatoeba.org #268272 (Dejo) & #332567 (fucongcong) +A sponge absorbs water. 海绵吸水。 CC-BY 2.0 (France) Attribution: tatoeba.org #51613 (CM) & #677985 (Martha) +A thousand yen will do. 1000日元足够了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73505 (CK) & #8835110 (crescat) +All the dogs are alive. 所有狗都活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #51784 (CK) & #7772562 (jiangche) +All you can do is wait. 所有你能做的就是等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #693917 (Eldad) & #408259 (fucongcong) +Are they all like this? 他们都像这一样吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5011423 (CK) & #5685876 (verdastelo9604) +Are they both the same? 他们都是一样的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1230781 (alec) & #334427 (fucongcong) +Are you afraid of bugs? 你怕虫子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4872217 (zvzuibqx) & #4813407 (sadhen) +Are you afraid of dogs? 你怕狗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3825167 (CK) & #7781713 (jiangche) +Are you angry with Tom? 你在生汤姆的气吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1495847 (CK) & #4887670 (musclegirlxyp) +Are you dating anybody? 你跟人約會過嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2092623 (CK) & #6073855 (verdastelo9604) +Are you free right now? 你現在有空嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5413927 (CK) & #6393366 (verdastelo9604) +Are you laughing at me? 你在嘲笑我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1091989 (CK) & #8514537 (gumblex) +Are you speaking to me? 你在跟我说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #475755 (darinmex) & #478844 (biglion) +Are you speaking to me? 你是在对我说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #475755 (darinmex) & #1827545 (sadhen) +Be careful not to fall. 小心别摔倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345547 (CK) & #5153236 (musclegirlxyp) +Better late than never. 迟做总比不做好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2344 (CK) & #332923 (fucongcong) +Better late than never. 迟到总比不到好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2344 (CK) & #836581 (slo_oth) +Both you and I are men. 你和我都是男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2684788 (CK) & #4845084 (pig8322) +Bring me the magazines. 把那本雜誌拿來給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #244955 (CK) & #819476 (Martha) +Can I park my car here? 我能把我的车停在这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #528542 (wma) & #334986 (fucongcong) +Can anyone believe you? 誰會相信你? CC-BY 2.0 (France) Attribution: tatoeba.org #66252 (CK) & #819407 (Martha) +Can we save the planet? 我们能拯救这颗星球吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1808129 (Spamster) & #1808258 (sadhen) +Can we talk in private? 我们能私下谈谈吗? CC-BY 2.0 (France) Attribution: tatoeba.org #326516 (CK) & #336455 (fucongcong) +Can you do bookkeeping? 你會記帳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #8389 (CK) & #771577 (Martha) +Can you hurry up a bit? 快一点好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7844502 (sharris123) & #1888690 (Venki) +Can you just please go? 能請你離開嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5195293 (CK) & #6309829 (verdastelo9604) +Can you play the piano? 你會彈鋼琴嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34911 (CK) & #833191 (Martha) +Can you please shut up? 你可以閉嘴嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1224528 (madison) & #1224534 (tsayng) +Can you use a computer? 您会使用计算机吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1159212 (CK) & #7781512 (jiangche) +Can't we work this out? 我们做不成吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3329794 (CK) & #5856792 (verdastelo9604) +Cats don't eat bananas. 猫不吃香蕉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1254113 (Tlustulimu) & #7768336 (jiangche) +Close the door, please. 請關上門。 CC-BY 2.0 (France) Attribution: tatoeba.org #38524 (CK) & #819305 (Martha) +Close the door, please. 請關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #38524 (CK) & #819441 (Martha) +Come and dance with me. 过来和我跳舞啊! CC-BY 2.0 (France) Attribution: tatoeba.org #3635877 (CK) & #4640136 (olive_wang) +Come whenever you want. 什么时候想来就过来吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #508379 (blay_paul) & #5153294 (musclegirlxyp) +Could I have the check? 把帳單給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22462 (CK) & #833150 (Martha) +Could you come up here? 你能来这里吗?? CC-BY 2.0 (France) Attribution: tatoeba.org #3096333 (CK) & #5617217 (verdastelo9604) +Could you turn it down? 你可以轉小聲一點嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433496 (CK) & #833802 (Martha) +Dad bought me a camera. 爸爸给我买了一个照相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #64054 (CM) & #469479 (fucongcong) +Dead men tell no tales. 死人不會告密。 CC-BY 2.0 (France) Attribution: tatoeba.org #246356 (CM) & #806620 (Martha) +Did they buy the juice? 他們有買果汁嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2239680 (AlanF_US) & #5548510 (egg0073) +Did you hear the click? 你聽到了點擊聲嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #818087 (CK) & #818091 (Martha) +Did you see him go out? 你看到他出去了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283489 (CK) & #839538 (Martha) +Did you watch the game? 你看了比賽嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16590 (CK) & #834409 (Martha) +Do we have enough food? 我们有足够的食物吗? CC-BY 2.0 (France) Attribution: tatoeba.org #266515 (CK) & #1786148 (sadhen) +Do you come here often? 您经常来这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #619636 (ulyssemc1) & #4879037 (musclegirlxyp) +Do you drink green tea? 您喝绿茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1768241 (CM) & #8689195 (jacintoo) +Do you know each other? 你們認識嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64229 (CK) & #6147817 (xjjAstrus) +Do you know the answer? 你知道答案嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #493028 (Swift) & #2757033 (cienias) +Do you know the reason? 你知道是什麼原因嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16567 (CK) & #833147 (Martha) +Do you like black cats? 你喜歡黑色的貓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69436 (CK) & #832998 (Martha) +Do you often come here? 您经常来这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4666841 (CK) & #4879037 (musclegirlxyp) +Do you study every day? 你每天都学习吗? CC-BY 2.0 (France) Attribution: tatoeba.org #530175 (wma) & #1323411 (vicch) +Do you study every day? 你們每天都讀書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #530175 (wma) & #1507026 (egg0073) +Do you study every day? 您每天都讀書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #530175 (wma) & #1507027 (egg0073) +Do you take MasterCard? 可以用万事达信用卡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4795804 (CK) & #5096471 (mirrorvan) +Do you think I'm crazy? 你认为我疯了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #953217 (CK) & #1438576 (asosan) +Do you want me to help? 要我帮忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2762840 (CK) & #5096869 (mirrorvan) +Do you want to be rich? 你想致富嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #18527 (CK) & #844477 (Martha) +Do you want to come in? 你想进来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1944103 (Spamster) & #2394592 (fenfang557) +Do you want to go, too? 你也要去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6093949 (CK) & #3739008 (egg0073) +Do you want to hear it? 您想听它吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2011743 (CK) & #7767636 (jiangche) +Does she speak English? 她會說英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #312698 (CK) & #811851 (Martha) +Don't ask me for money. 不要問我要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #249671 (CK) & #798426 (Martha) +Don't begin without me. 我不在就别开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093295 (CarpeLanam) & #5095196 (mirrorvan) +Don't change your mind. 不要改變你的心意。 CC-BY 2.0 (France) Attribution: tatoeba.org #20314 (CK) & #872102 (Martha) +Don't miss this chance. 不要让机会溜走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2782554 (CK) & #8777527 (crescat) +Don't play in the road. 別在馬路上玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #6272034 (CK) & #3718941 (egg0073) +Don't start without me. 我不在就别开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733072 (CK) & #5095196 (mirrorvan) +Don't tell anyone this. 不要告訴任何人這件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #529830 (CK) & #826198 (Martha) +Don't throw trash here. 别在这儿扔垃圾。 CC-BY 2.0 (France) Attribution: tatoeba.org #61822 (CK) & #1397009 (mtdot) +Don't underestimate me. 别低估我。 CC-BY 2.0 (France) Attribution: tatoeba.org #459048 (FeuDRenais) & #2052537 (sadhen) +Don't worry about this. 別為此擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2271367 (CK) & #6472014 (verdastelo9604) +Don't write in red ink. 別用紅墨水寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #272290 (adjusting) & #6128481 (verdastelo9604) +Don't you have to work? 你不用工作吗 CC-BY 2.0 (France) Attribution: tatoeba.org #5414443 (CK) & #5414471 (Janevy) +Everybody was confused. 每个人都很困惑 CC-BY 2.0 (France) Attribution: tatoeba.org #5414451 (CK) & #5414469 (Janevy) +Everyone knows the law. 大家都知道這個法律。 CC-BY 2.0 (France) Attribution: tatoeba.org #276534 (CM) & #823023 (Martha) +Everyone was surprised. 所有人都很吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2245465 (CK) & #7771893 (jiangche) +Everything is changing. 一切都在变。 CC-BY 2.0 (France) Attribution: tatoeba.org #6469251 (OsoHombre) & #6534035 (verdastelo9604) +Fancy meeting you here! 想不到會在這裡遇見你! CC-BY 2.0 (France) Attribution: tatoeba.org #54765 (CK) & #824549 (Martha) +Fasten your seat belts. 系上你們的安全带。 CC-BY 2.0 (France) Attribution: tatoeba.org #434724 (lukaszpp) & #6094900 (verdastelo9604) +Foxes are wild animals. 狐狸是野生动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #425812 (blay_paul) & #426413 (fucongcong) +Get a grip on yourself. 冷静下来! CC-BY 2.0 (France) Attribution: tatoeba.org #2986061 (CK) & #5640761 (verdastelo9604) +Give me a little money. 给我一点钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #64568 (CK) & #347057 (fucongcong) +Give me back my wallet. 把钱包还我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4317003 (CK) & #8703977 (crescat) +Give me some milk, too. 也給我一些牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #250027 (CK) & #793310 (Martha) +Give the cat some meat. 給猫喂點肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1572939 (fanty) & #6623173 (verdastelo9604) +Good luck on your test. 考试加油! CC-BY 2.0 (France) Attribution: tatoeba.org #3616228 (CK) & #4885094 (musclegirlxyp) +Has something happened? 發生了什麼事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435754 (CK) & #825868 (Martha) +Have you already voted? 您已經投了票了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #558565 (Eldad) & #6015799 (xjjAstrus) +Have you seen this man? 您见过这个人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #758084 (CK) & #1659797 (vicch) +He acted like a madman. 他表现的像个疯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #295368 (CK) & #5091210 (mirrorvan) +He asked me a question. 他問了我一個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #297626 (CK) & #834361 (Martha) +He ate the whole apple. 他把整个苹果都吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1393854 (CM) & #7774356 (jiangche) +He brought us sad news. 他给我们带来了令人难过的消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #297371 (CK) & #817285 (fucongcong) +He did nothing but cry. 他只是哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #47492 (CK) & #799303 (fucongcong) +He didn't study at all. 他根本就没有学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #300780 (CK) & #5142099 (relaxchinese) +He died of lung cancer. 他死於肺癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #302426 (CK) & #767035 (Martha) +He doesn't like coffee. 他不喜歡喝咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #289812 (CK) & #826237 (Martha) +He has a good appetite. 他的胃口很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #299795 (CK) & #833104 (Martha) +He has gone to Britain. 他已经去了英国。 CC-BY 2.0 (France) Attribution: tatoeba.org #288974 (CK) & #1423329 (sadhen) +He hid behind the door. 他藏到了门后。 CC-BY 2.0 (France) Attribution: tatoeba.org #843929 (J_S) & #8780275 (crescat) +He is a man of ability. 他是个能干的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #299247 (CK) & #366865 (fucongcong) +He is afraid of snakes. 他害怕蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #292670 (CK) & #2084022 (egg0073) +He is afraid of snakes. 他怕蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #292670 (CK) & #2085081 (sadhen) +He is fluent in French. 他说法语说得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #292607 (CK) & #1753036 (sadhen) +He is good at baseball. 他垒球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #304251 (CK) & #336003 (fucongcong) +He is good at football. 他擅長足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #815917 (heranje) & #816897 (Martha) +He is terrible at math. 他的数学很不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #300241 (CK) & #8839846 (crescat) +He knocked on the door. 他敲了門。 CC-BY 2.0 (France) Attribution: tatoeba.org #467817 (CK) & #833257 (Martha) +He must be about forty. 他应该40岁左右吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #288559 (CK) & #410833 (fucongcong) +He often quotes Milton. 他常引用米爾頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #292992 (CK) & #826297 (Martha) +He pretends to be deaf. 他装听不见。 CC-BY 2.0 (France) Attribution: tatoeba.org #1130434 (Sibelius) & #2394579 (fenfang557) +He probably won't come. 他可能不会来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #274994 (CK) & #406705 (fucongcong) +He regrets what he did. 他对他所做的一切感到后悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #572913 (CK) & #8589246 (easononizuka) +He returned from China. 他从中国回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #684763 (notrwanda) & #343360 (fucongcong) +He runs as fast as you. 他跑得跟你一樣快。 CC-BY 2.0 (France) Attribution: tatoeba.org #295621 (CK) & #848697 (Martha) +He sang some old songs. 他唱了些老歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #843534 (CM) & #843476 (fucongcong) +He saw her and blushed. 他看到她就臉紅了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317593 (Eldad) & #803810 (Martha) +He sent a card to Mary. 他送了一張卡片給瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #293014 (CK) & #848239 (Martha) +He took out some coins. 他拿出了几枚硬币。 CC-BY 2.0 (France) Attribution: tatoeba.org #288983 (CK) & #8789702 (crescat) +He was in good spirits. 他精神很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #299666 (CK) & #6075689 (verdastelo9604) +He went to the dentist. 他去看牙医了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298299 (CK) & #7771894 (jiangche) +He wore a dark sweater. 他穿了一件深色毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #296447 (CK) & #1394889 (mtdot) +He's afraid of the dog. 他怕那只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3259745 (CM) & #4649886 (hoyakoh) +He's out taking a walk. 他出去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #387450 (CK) & #834374 (Martha) +He's stronger than you. 他比你強壯。 CC-BY 2.0 (France) Attribution: tatoeba.org #295648 (CK) & #832794 (Martha) +He's such a sweetheart. 他真是甜心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2220233 (Hybrid) & #5911619 (verdastelo9604) +He's used to traveling. 他習慣了旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #2948180 (Joseph) & #825129 (Martha) +Health is above wealth. 健康比财富重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #238971 (hebrajska) & #346072 (fucongcong) +Help us reach our goal. 幫助我們達成目標。 CC-BY 2.0 (France) Attribution: tatoeba.org #4950738 (CK) & #4962226 (umidake) +Her father is Japanese. 她父親是日本人。 CC-BY 2.0 (France) Attribution: tatoeba.org #309715 (CK) & #727581 (Martha) +Here are some pictures. 這裡有一些圖片。 CC-BY 2.0 (France) Attribution: tatoeba.org #4121193 (Hybrid) & #5542966 (egg0073) +Hey, look what I found. 嘿,看我找到了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3575463 (CK) & #5819712 (verdastelo9604) +His car is really cool. 他的車真的很酷。 CC-BY 2.0 (France) Attribution: tatoeba.org #465114 (CK) & #834419 (Martha) +His father is Japanese. 他父親是日本人。 CC-BY 2.0 (France) Attribution: tatoeba.org #727582 (Zifre) & #727573 (Martha) +His plan was discarded. 他的计划被驳回了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285957 (CM) & #817271 (fucongcong) +His words gave me hope. 他的話給了我希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #808728 (TomSFox) & #810083 (Martha) +His words surprised me. 他的話讓我吃驚。 CC-BY 2.0 (France) Attribution: tatoeba.org #286145 (CM) & #886577 (Martha) +Hope is not a strategy. 希望不是一种策略。 CC-BY 2.0 (France) Attribution: tatoeba.org #2298 (CM) & #437957 (fucongcong) +How about another beer? 再来一杯啤酒怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #553951 (CK) & #5097655 (mirrorvan) +How are things at work? 工作怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #569277 (FeuDRenais) & #5100103 (mirrorvan) +How long did that take? 那持续了多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #5068282 (jhomel) & #5068349 (FeAst) +How long would it take? 要多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #4666828 (CK) & #5780621 (verdastelo9604) +How much is this watch? 这只表多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #56432 (CK) & #4903269 (musclegirlxyp) +I always keep promises. 我總是信守承諾。 CC-BY 2.0 (France) Attribution: tatoeba.org #549673 (CK) & #918044 (Martha) +I am a college student. 我是个大学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #602532 (CK) & #2031433 (ydcok) +I am leaving next week. 我下個星期離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #262147 (CK) & #919772 (Martha) +I am sixteen years old. 我16岁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258523 (CK) & #517570 (fucongcong) +I am tired of homework. 我厭倦了功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #258543 (CK) & #926788 (Martha) +I asked her for a date. 我向她提出約會的請求。 CC-BY 2.0 (France) Attribution: tatoeba.org #261338 (CK) & #846425 (Martha) +I asked him to help me. 我請他幫我。 CC-BY 2.0 (France) Attribution: tatoeba.org #260434 (CK) & #919946 (Martha) +I ate curry last night. 我昨晚吃了咖喱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8779658 (shekitten) & #8777596 (crescat) +I ate lunch in a hurry. 我匆忙地吃了午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #433485 (CK) & #849292 (Martha) +I believe Tom is right. 我相信湯姆是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37082 (CK) & #941169 (Martha) +I bought a book online. 我在網上買了一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #8770101 (shekitten) & #8767481 (xjjAstrus) +I bought a good camera. 我買了一台不錯的照相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #66769 (CK) & #834405 (Martha) +I bought her a new car. 我给她买了辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #308899 (CK) & #7772150 (jiangche) +I can make that happen. 我不能让那事发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301273 (CK) & #5574622 (verdastelo9604) +I can work with anyone. 我能跟任何人工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4979557 (CK) & #6094832 (verdastelo9604) +I can't agree with you. 我无法同意你的意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #1069281 (CK) & #375309 (fucongcong) +I can't answer you now. 我现在不能回答你。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850971 (CK) & #5983637 (verdastelo9604) +I can't bear this pain. 我無法忍受這個痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #57812 (CK) & #3742617 (egg0073) +I can't explain it now. 我现在不能解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951585 (CK) & #5911756 (verdastelo9604) +I can't figure him out. 我不了解他。 CC-BY 2.0 (France) Attribution: tatoeba.org #283243 (CK) & #917793 (Martha) +I can't find my ticket. 我找不到我的票。 CC-BY 2.0 (France) Attribution: tatoeba.org #268417 (CK) & #926811 (Martha) +I can't find my wallet. 我找不到我的錢包了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301963 (CK) & #8352688 (xjjAstrus) +I can't find the broom. 我找不到掃把了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826014 (CK) & #9170828 (xjjAstrus) +I can't hear very well. 我聽不太清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #29921 (CK) & #917829 (Martha) +I can't put up with it. 我无法忍受它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22604 (CK) & #1691736 (sadhen) +I can't sleep at night. 我有失眠症。 CC-BY 2.0 (France) Attribution: tatoeba.org #318679 (CK) & #8800719 (crescat) +I contacted my parents. 我跟父母联络了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #262223 (CK) & #330586 (ZeroAurora) +I dare say he is right. 我敢说他是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #274985 (CS) & #804779 (fucongcong) +I decided to buy a car. 我決定買一輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258406 (CK) & #926809 (Martha) +I didn't get your name. 我沒聽清楚你的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #63927 (CK) & #941115 (Martha) +I discovered the truth. 我發現了真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #690254 (Eldad) & #6095965 (verdastelo9604) +I don't agree with him. 我不同意他。 CC-BY 2.0 (France) Attribution: tatoeba.org #2453 (CK) & #1778258 (sadhen) +I don't agree with you. 我不同意你的看法。 CC-BY 2.0 (France) Attribution: tatoeba.org #17423 (CK) & #333122 (fucongcong) +I don't drink or smoke. 我既不抽烟也不喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #509627 (blay_paul) & #4765407 (ryanwoo) +I don't have a bicycle. 我沒有腳踏車。 CC-BY 2.0 (France) Attribution: tatoeba.org #264495 (CK) & #5401634 (egg0073) +I don't have a partner. 我沒有夥伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271854 (CK) & #6628362 (verdastelo9604) +I don't have money now. 我现在没有钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586747 (CK) & #8589662 (tianblr) +I don't have much time. 我时间不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #67690 (CK) & #813630 (fucongcong) +I don't know right now. 我现在不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747699 (CM) & #5933764 (verdastelo9604) +I don't know who he is. 我不知道他是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #260118 (CK) & #782722 (fucongcong) +I don't like this idea. 我不喜歡這個主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276103 (CK) & #767119 (Martha) +I don't need your help. 我不需要你的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #17057 (CK) & #834968 (Martha) +I don't sing very well. 我唱歌不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916676 (CK) & #6624702 (verdastelo9604) +I don't sleep in a bed. 我不在床上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2431669 (CK) & #7769300 (jiangche) +I don't speak Japanese. 我不说日语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1482 (CK) & #334909 (fucongcong) +I don't speak Japanese. 我不說日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #1482 (CK) & #759735 (Martha) +I don't work like that. 我不像那樣工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276269 (CK) & #6132411 (verdastelo9604) +I drank a cup of water. 我喝了一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765386 (sharris123) & #6057148 (xjjAstrus) +I envied his new house. 我羨慕他的新房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #402043 (CK) & #835650 (Martha) +I even work on Sundays. 我甚至在週日工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3870064 (AlanF_US) & #785252 (Martha) +I felt like I was dead. 我感觉好像死了一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #321883 (CK) & #334549 (fucongcong) +I go to bed very early. 我很早就去睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #33484 (CK) & #846098 (Martha) +I go to work every day. 我每天去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #261838 (CK) & #774132 (Martha) +I got on the wrong bus. 我上錯車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #479979 (CK) & #846314 (Martha) +I grew up near a river. 我在一條河的附近長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2330012 (CK) & #9037039 (xjjAstrus) +I had a wonderful time. 我度過了美好的時光。 CC-BY 2.0 (France) Attribution: tatoeba.org #37834 (CK) & #919596 (Martha) +I had a wonderful time. 我玩得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #37834 (CK) & #919598 (Martha) +I had curry last night. 我昨晚吃了咖喱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8779659 (shekitten) & #8777596 (crescat) +I had my wallet stolen. 我的钱包被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253854 (CK) & #411624 (fucongcong) +I have a bad toothache. 我牙痛得厲害。 CC-BY 2.0 (France) Attribution: tatoeba.org #34695 (CK) & #834985 (Martha) +I have a dog and a cat. 我有一隻狗和一隻貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #441581 (CK) & #889185 (Martha) +I have a pair of shoes. 我有一双鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #762643 (CK) & #819697 (fucongcong) +I have heard the story. 我听说过那个故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #43281 (CK) & #2182956 (sadhen) +I have no energy today. 今天我沒有精神。 CC-BY 2.0 (France) Attribution: tatoeba.org #321823 (CK) & #834814 (Martha) +I have no time to read. 我没时间阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #259753 (CK) & #334401 (fucongcong) +I heard the door close. 我听到门关了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39100 (CK) & #472981 (fucongcong) +I helped him yesterday. 昨天我帮了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #257798 (brauliobezerra) & #344181 (fucongcong) +I hit him in the belly. 我打了他的肚子。 CC-BY 2.0 (France) Attribution: tatoeba.org #401967 (CK) & #846375 (Martha) +I hope Tom isn't angry. 我希望湯姆不生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3101542 (CK) & #6447552 (verdastelo9604) +I hope to see Tom soon. 我希望能早点看到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5175112 (CK) & #8631840 (ZeroAurora) +I just couldn't say no. 我就是不能说不。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887428 (CK) & #5842715 (verdastelo9604) +I just heard something. 我只是听到了一些消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2372742 (CK) & #4463425 (MirendaBABY) +I knew he would accept. 我知道他会接受的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2399 (CK) & #1323983 (vicch) +I know I owe you money. 我知道我欠你錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375991 (CK) & #6169144 (verdastelo9604) +I know how old you are. 我知道你多大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252682 (CK) & #783024 (fucongcong) +I know how we can help. 我知道我們要怎麼幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375961 (CK) & #6098443 (verdastelo9604) +I know who you all are. 我知道你們都是誰。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376501 (CK) & #6119144 (verdastelo9604) +I know you like sports. 我知道你喜欢体育运动。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376579 (CK) & #7767643 (jiangche) +I left it on the table. 我把它留在桌上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #436723 (lukaszpp) & #6114426 (verdastelo9604) +I like summer the best. 我最喜歡夏天。 CC-BY 2.0 (France) Attribution: tatoeba.org #256455 (CK) & #845959 (Martha) +I like tennis and golf. 我喜歡打網球和高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #490138 (CK) & #834589 (Martha) +I like this color, too. 我也喜歡這個顏色。 CC-BY 2.0 (France) Attribution: tatoeba.org #411242 (CK) & #834652 (Martha) +I like to travel alone. 我喜欢独自旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #252478 (CK) & #335410 (fucongcong) +I love the people here. 我爱这里的人们。 CC-BY 2.0 (France) Attribution: tatoeba.org #4980045 (CK) & #5762990 (verdastelo9604) +I meet him at the club. 我在俱樂部見到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #321602 (CK) & #848581 (Martha) +I might make a mistake. 我可能犯了個錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387221 (CK) & #6165428 (verdastelo9604) +I prefer milk to juice. 比起果汁,我比較喜歡牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #562328 (darinmex) & #5548509 (egg0073) +I prefer rice to bread. 比起面包,我更喜欢米饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #255448 (CK) & #8761470 (crescat) +I prefer tea to coffee. 我喜歡茶勝過咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #33537 (CK) & #834579 (Martha) +I put it in the drawer. 我把它放在抽屜裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #42572 (blay_paul) & #795255 (Martha) +I put it in the drawer. 我把它放在了抽屜裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #42572 (blay_paul) & #9046302 (xjjAstrus) +I received your letter. 我收到了您的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #64424 (CK) & #334694 (fucongcong) +I saw Liz this morning. 今天早上我看到了利茲。 CC-BY 2.0 (France) Attribution: tatoeba.org #742131 (CK) & #918022 (Martha) +I saw a woman in black. 我看见一个穿黑衣服的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #241485 (CK) & #333954 (fucongcong) +I saw him wash the car. 我看見他洗車。 CC-BY 2.0 (France) Attribution: tatoeba.org #283828 (CK) & #862728 (Martha) +I seem to have a fever. 我好像发烧了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38381 (CK) & #427591 (fucongcong) +I sell clothing online. 我在網路上賣衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #844710 (eastasiastudent) & #844709 (egg0073) +I should clean my room. 我应该打扫我的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1821028 (Aharlekyn) & #512911 (fucongcong) +I slept just two hours. 我只睡了两小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #2234203 (lutao) & #6047457 (verdastelo9604) +I slept only two hours. 我祇睡了兩小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #280860 (CK) & #6678452 (verdastelo9604) +I smell something here. 我在这里闻见了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747627 (CM) & #5845644 (verdastelo9604) +I still need an answer. 我仍然需要一个答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619574 (CK) & #8635728 (ZeroAurora) +I studied for one hour. 我讀了一個小時的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #256047 (CK) & #5544843 (egg0073) +I suppose you like him. 我猜想您喜欢他。 CC-BY 2.0 (France) Attribution: tatoeba.org #69041 (CK) & #472380 (fucongcong) +I think I lost my keys. 我觉得我把钥匙丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #528185 (fanty) & #7774788 (jiangche) +I think I'll go by bus. 我認為我要坐巴士去。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271602 (CK) & #6460643 (verdastelo9604) +I think Tom lied to us. 我觉得汤姆对我们撒谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887741 (CK) & #8926979 (crescat) +I think Tom's cheating. 我觉得汤姆有外遇。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756184 (cairnhead) & #4757241 (ryanwoo) +I think about it often. 我经常想着它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1650275 (Spamster) & #6015160 (verdastelo9604) +I think that it's true. 我認為這是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321657 (CK) & #834613 (Martha) +I think you're jealous. 我觉得你妒忌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1780015 (Spamster) & #1878376 (sadhen) +I understand perfectly. 我完全明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247433 (CK) & #5945140 (verdastelo9604) +I want a quart of milk. 我要一夸脫的牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #19459 (CK) & #864272 (Martha) +I want some fresh eggs. 我想要一些新鲜的鸡蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #271754 (CK) & #5091355 (mirrorvan) +I want something sweet. 我要一些甜的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #21003 (CK) & #824540 (Martha) +I want to learn French. 我要学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #255539 (CK) & #8496235 (gumblex) +I want to ride a horse. 我想騎馬。 CC-BY 2.0 (France) Attribution: tatoeba.org #321910 (CK) & #858293 (Martha) +I want to study French. 我要学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #255547 (CK) & #8496235 (gumblex) +I was happy to see him. 我很高兴见到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #284455 (CK) & #726759 (CLARET) +I was not scolding you. 我不是在罵你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237694 (samueldora) & #904848 (Martha) +I was right behind you. 我就在你后面。 CC-BY 2.0 (France) Attribution: tatoeba.org #3919474 (CK) & #8860204 (crescat) +I was totally confused. 我完全不懂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732453 (CK) & #6070847 (verdastelo9604) +I was truly astonished. 我真是惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499801 (CK) & #5574358 (verdastelo9604) +I was very, very lucky. 我非常非常幸运。 CC-BY 2.0 (France) Attribution: tatoeba.org #5636605 (CK) & #8589624 (tianblr) +I went there yesterday. 我昨天去那儿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257721 (CK) & #795753 (fucongcong) +I went there yesterday. 昨天我去了那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257721 (CK) & #1205958 (cienias) +I will gladly help you. 我會很樂意幫助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #20664 (CK) & #835651 (Martha) +I will not do it again. 下次我不做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #280961 (CK) & #794241 (fucongcong) +I wish to go to Hawaii. 我希望去夏威夷。 CC-BY 2.0 (France) Attribution: tatoeba.org #255439 (CK) & #862703 (Martha) +I wish you'd slow down. 我希望你慢下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #3311883 (CK) & #6673094 (verdastelo9604) +I worked all this week. 这周我一直在工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #242096 (hasentier) & #332423 (fucongcong) +I would like mine rare. 我的牛排要生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29546 (CK) & #834804 (Martha) +I would like to see it. 我想看看它。 CC-BY 2.0 (France) Attribution: tatoeba.org #41846 (CK) & #861111 (Martha) +I'd like for you to go. 我希望你去。 CC-BY 2.0 (France) Attribution: tatoeba.org #71076 (CK) & #864359 (Martha) +I'd like to rent a car. 我想租一輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #29477 (CK) & #861007 (Martha) +I'd rather be with you. 我更愿意跟着你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546732 (CK) & #5911649 (verdastelo9604) +I'd rather go swimming. 我寧願去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #28979 (CK) & #793252 (Martha) +I'll be right with you. 我馬上就来。 CC-BY 2.0 (France) Attribution: tatoeba.org #455851 (lukaszpp) & #710733 (egg0073) +I'll call you tomorrow. 明天我給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546709 (CK) & #3782195 (egg0073) +I'll call you up later. 我稍後會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #35771 (CK) & #835686 (Martha) +I'll have another beer. 我会再喝一杯啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546686 (CK) & #5763012 (verdastelo9604) +I'll leave that to you. 我會留給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #50417 (CK) & #834979 (Martha) +I'll miss your cooking. 我會想念你的廚藝。 CC-BY 2.0 (France) Attribution: tatoeba.org #17071 (CK) & #771589 (Martha) +I'll study your report. 我會研究你的報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #17331 (CK) & #824707 (Martha) +I'll tell Tom tomorrow. 我明天告訴湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546646 (CK) & #6624606 (verdastelo9604) +I'll wait a day or two. 我會等一兩天。 CC-BY 2.0 (France) Attribution: tatoeba.org #5186972 (CK) & #6109325 (verdastelo9604) +I'll write to you soon. 我會盡快寫信給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4321099 (AlanF_US) & #859227 (Martha) +I'm a big football fan. 我是足球的忠实粉丝。 CC-BY 2.0 (France) Attribution: tatoeba.org #4963972 (CK) & #5091680 (mirrorvan) +I'm afraid to go alone. 我害怕一個人去。 CC-BY 2.0 (France) Attribution: tatoeba.org #255487 (CK) & #834575 (Martha) +I'm anxious to see you. 我渴望見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17557 (CK) & #835323 (Martha) +I'm at the airport now. 我现在在机场。 CC-BY 2.0 (France) Attribution: tatoeba.org #257501 (CK) & #794232 (fucongcong) +I'm doubling my prices. 我正在把价格涨一倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #3147974 (CK) & #5091606 (mirrorvan) +I'm feeling blue today. 我今天的心情不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #836565 (CM) & #836563 (egg0073) +I'm glad you came over. 我很高兴你回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4649577 (Hybrid) & #5617270 (verdastelo9604) +I'm going to miss that. 我要失去它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546603 (CK) & #5880033 (verdastelo9604) +I'm here to assist you. 我來協助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546590 (CK) & #6635889 (verdastelo9604) +I'm listening to music. 我正在听音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #757414 (sctld) & #804865 (fucongcong) +I'm looking for my pen. 我在找我的鋼筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #255574 (CK) & #835688 (Martha) +I'm not as tall as you. 我沒有你高。 CC-BY 2.0 (France) Attribution: tatoeba.org #252886 (CK) & #860537 (Martha) +I'm not married to Tom. 我没跟汤姆结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #4963963 (CK) & #5983605 (verdastelo9604) +I'm really bad at this. 我实在不擅长这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462312 (Hybrid) & #8463689 (gumblex) +I'm the one who's sick. 我就是那个生病的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546495 (CK) & #7768243 (jiangche) +I'm thinking about you. 我正考慮到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #257110 (CK) & #793311 (Martha) +I'm thinking about you. 我突然想到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #257110 (CK) & #793319 (Martha) +I'm translating a book. 我在翻譯一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #6067660 (mailohilohi) & #7042039 (xjjAstrus) +I've already had lunch. 我已經吃過午餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850430 (CK) & #8388709 (wangchou) +I've always been smart. 我一直聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #2358931 (CK) & #5581756 (verdastelo9604) +I've caught a bad cold. 我得了重感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #28914 (CK) & #834863 (Martha) +I've got a few friends. 我有一些朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #958854 (FeuDRenais) & #2254288 (KerenDeng) +I've got it right here. 我就是在这得到它的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359654 (CK) & #4353685 (e78xx_xxx) +I've never felt better. 我从来没感觉那么好过。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360039 (CK) & #334546 (fucongcong) +Iron is a useful metal. 铁是个有用的金属。 CC-BY 2.0 (France) Attribution: tatoeba.org #467339 (CK) & #343769 (fucongcong) +Iron is a useful metal. 铁是种有用的金属。 CC-BY 2.0 (France) Attribution: tatoeba.org #467339 (CK) & #471147 (fucongcong) +Is anyone absent today? 今天有人缺席嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242924 (CK) & #819330 (Martha) +Is he still interested? 他還有興趣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2021197 (Spamster) & #6086866 (verdastelo9604) +Is it a recent picture? 那是一张近照吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1291 (Swift) & #16 (Martha) +Is it something I said? 是我說的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2064645 (CK) & #6119490 (verdastelo9604) +Is there any salt left? 还有多余的盐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25758 (CK) & #993764 (leoyzy) +Is this seat available? 这个位子空着吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1492938 (weihaiping) & #471070 (fucongcong) +Isn't that good enough? 那不夠好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3636384 (CK) & #6923207 (verdastelo9604) +It doesn't surprise me. 这并不让我惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1330 (CK) & #501313 (fucongcong) +It is me that is wrong. 是我错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32552 (CK) & #791663 (fucongcong) +It looks like an apple. 看起来像个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #42596 (CK) & #1438409 (asosan) +It may not be possible. 不太可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #5012658 (CK) & #6132373 (verdastelo9604) +It seems she hates you. 她好像很讨厌你。 CC-BY 2.0 (France) Attribution: tatoeba.org #338306 (Sprachprofi) & #336017 (fucongcong) +It took me three years. 它花了我三年。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747445 (CM) & #6109326 (verdastelo9604) +It was extremely scary. 这太可怕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7782254 (sharris123) & #7774749 (jiangche) +It will be spring soon. 春天快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #694426 (AmberShadow) & #797026 (Martha) +It'll take a long time. 我要花很长时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2499284 (CK) & #5691275 (verdastelo9604) +It's awfully hot today. 今天非常熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #242667 (CK) & #801525 (Martha) +It's cold this morning. 今天早上冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #1905912 (Budz888) & #6936204 (verdastelo9604) +It's fairly warm today. 今天相當暖和。 CC-BY 2.0 (France) Attribution: tatoeba.org #242917 (CK) & #825990 (Martha) +It's for you to decide. 這由你來決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #410930 (CK) & #835332 (Martha) +It's time to eat lunch. 午餐時間到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433693 (CK) & #825916 (Martha) +It's too noisy in here. 這兒太吵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3635912 (CK) & #8706874 (shou) +It's you I've come for. 我是为你来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #423332 (FeuDRenais) & #4287488 (notabene) +Keep the window closed. 让窗子关着。 CC-BY 2.0 (France) Attribution: tatoeba.org #274238 (CK) & #332939 (fucongcong) +Let bygones be bygones. 既往不咎。 CC-BY 2.0 (France) Attribution: tatoeba.org #20524 (CM) & #6484848 (FAErika) +Let me cut the carrots. 讓我來切胡蘿蔔。 CC-BY 2.0 (France) Attribution: tatoeba.org #422956 (FeuDRenais) & #6937169 (xjjAstrus) +Let me try another one. 让我试试别的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3168207 (CK) & #5842661 (verdastelo9604) +Let them learn from us. 让他们向我们学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #2278212 (FeuDRenais) & #2440716 (fenfang557) +Let's ask if it's true. 让我们来问问这是不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #43085 (CK) & #1358646 (sadhen) +Let's begin on page 30. 讓我們從第30頁開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #1286502 (CK) & #872183 (Martha) +Let's go ahead and eat. 咱们去吃饭吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140072 (CK) & #4760043 (ryanwoo) +Let's go to the movies. 我们去看电影吧! CC-BY 2.0 (France) Attribution: tatoeba.org #3071628 (sharptoothed) & #7774577 (jiangche) +Let's go to the picnic. 讓我們去野餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #34811 (CK) & #834944 (Martha) +Let's sit on the grass. 我们坐在草地上吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #265287 (CK) & #796652 (fucongcong) +Let's start right away. 我们立刻开始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #52156 (CK) & #1878268 (sadhen) +Let's take a break now. 现在休息一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #61904 (CK) & #333585 (fucongcong) +Let's take a break now. 现在,让我们休息一会儿吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #61904 (CK) & #1428152 (sadhen) +Lie on your right side. 躺在你右邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #27068 (CK) & #834967 (Martha) +May I borrow your bike? 我能借一下您的自行车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #264499 (CK) & #846692 (fucongcong) +May I go to the toilet? 我可以去廁所嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #517394 (CK) & #855653 (Martha) +May I introduce myself? 我可以自我介紹嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #264432 (CK) & #761309 (Martha) +May I open my eyes now? 我現在能睜眼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5411971 (CK) & #6120904 (verdastelo9604) +May I open the windows? 可以开窗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3818524 (CK) & #5097880 (mirrorvan) +May I put it down here? 我可以把它放在这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61776 (CK) & #1438615 (asosan) +Mind your own business! 管好你自己的事吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #16996 (CK) & #803834 (fucongcong) +Mom, can I go swimming? 媽,我可以去游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #484065 (CK) & #834874 (Martha) +Mom, can I go swimming? 妈妈,我能去游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #484065 (CK) & #1471508 (sadhen) +My TV has quit working. 我的電視已經壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435792 (CK) & #834966 (Martha) +My body aches all over. 我全身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #562053 (darinmex) & #917936 (Martha) +My cats will love this. 我的猫会爱上这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1792464 (Spamster) & #5911719 (verdastelo9604) +My cholesterol is high. 我的胆固醇很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #56108 (CK) & #504890 (fucongcong) +My father went fishing. 我父親去釣魚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #467332 (CK) & #819446 (Martha) +My father will kill me. 我爸会杀了我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2060399 (halfb1t) & #2065358 (sadhen) +My father's car is new. 我爸爸的車是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #318891 (jakov) & #1223784 (tsayng) +My fountain pen is new. 我的钢笔是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #837417 (Mouseneb) & #710912 (Yashanti) +My scalp is very itchy. 我的頭皮非常癢。 CC-BY 2.0 (France) Attribution: tatoeba.org #280183 (CK) & #785146 (Martha) +My son doesn't obey me. 我儿子不听我话。 CC-BY 2.0 (France) Attribution: tatoeba.org #4759178 (cairnhead) & #4764610 (ryanwoo) +No one came except Tom. 除了汤姆没有人来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666803 (CK) & #5663448 (verdastelo9604) +No one can control him. 沒人管束或開導他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1832675 (Aharlekyn) & #884713 (Tajfun) +No one man could do it. 沒有一個人能做到這一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #40405 (CK) & #795234 (Martha) +Nobody knows the truth. 没有人知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #770140 (Shishir) & #408232 (fucongcong) +Not all aliens are bad. 不是所有外星人都坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721383 (CM) & #5574494 (verdastelo9604) +Now is the time to act. 现在是行动的时候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264340 (sharptoothed) & #333240 (fucongcong) +OK, you two, follow me. 好,你們兩個,跟著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733073 (CK) & #6109349 (verdastelo9604) +Open your eyes, please. 请睁开眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #323771 (CK) & #1438437 (asosan) +Please add up the bill. 請確認帳單。 CC-BY 2.0 (France) Attribution: tatoeba.org #21099 (CK) & #838532 (Martha) +Please call the police. 叫警察。 CC-BY 2.0 (France) Attribution: tatoeba.org #238377 (CK) & #1397323 (mtdot) +Please drive carefully. 請小心駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #38464 (CK) & #825197 (Martha) +Please give me a break. 饶了我吧! CC-BY 2.0 (France) Attribution: tatoeba.org #954239 (CK) & #1397313 (mtdot) +Please kill the lights. 请关灯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821595 (CK) & #6089778 (verdastelo9604) +Please open the bottle. 請打開瓶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #442957 (CK) & #819481 (Martha) +Please open the window. 麻煩你開一下窗。 CC-BY 2.0 (France) Attribution: tatoeba.org #274213 (CK) & #3709592 (egg0073) +Please spell your name. 请拼一下您的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149887 (FeuDRenais) & #787371 (fucongcong) +Please turn off the TV. 請把電視關掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #39147 (CK) & #845987 (Martha) +Please turn off the TV. 请关闭电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #39147 (CK) & #866210 (kooler) +Please write back soon. 请快点回信。 CC-BY 2.0 (France) Attribution: tatoeba.org #52123 (CK) & #794210 (fucongcong) +Promises aren't enough. 承諾是不夠的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7213141 (CK) & #778859 (Martha) +Pull up your stockings. 把你的絲襪拉上去。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765377 (sharris123) & #6142005 (xjjAstrus) +Put on your good shoes. 穿上你的好鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #29899 (CK) & #845961 (Martha) +Quit talking, will you? 不要说话,好不好? CC-BY 2.0 (France) Attribution: tatoeba.org #53059 (CM) & #336900 (fucongcong) +Selling cars is my job. 賣車是我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #503055 (CK) & #836305 (Martha) +Shall I close the door? 我應該把門關上嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38983 (CM) & #876228 (Martha) +She always believes me. 她一直都相信我。 CC-BY 2.0 (France) Attribution: tatoeba.org #793005 (Swift) & #793998 (fucongcong) +She always wears black. 她總是穿著黑色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #837413 (Mouseneb) & #836582 (egg0073) +She asked him for help. 她向他求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #404171 (CK) & #784083 (fucongcong) +She bit into the apple. 她咬了一口蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #29614 (CK) & #844600 (Martha) +She came into the room. 她进了房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #308492 (CK) & #5967290 (verdastelo9604) +She caught colds often. 她常常感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #388661 (CK) & #825135 (Martha) +She doesn't like sushi. 她不喜歡壽司。 CC-BY 2.0 (France) Attribution: tatoeba.org #508748 (CK) & #771613 (Martha) +She gave him a sweater. 她给他一件毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #887138 (CK) & #5640771 (verdastelo9604) +She got out of the car. 她从车里出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314809 (CK) & #407251 (fucongcong) +She got out of the car. 她下了車。 CC-BY 2.0 (France) Attribution: tatoeba.org #314809 (CK) & #802490 (Martha) +She had a little money. 她有一点钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #315020 (CK) & #835567 (fucongcong) +She handed him the key. 她遞給了他鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #388385 (CK) & #844602 (Martha) +She has a little bread. 她有点儿面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #456691 (lukaszpp) & #787242 (fucongcong) +She has three brothers. 她有三个兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #451365 (CK) & #8940730 (crescat) +She is a famous singer. 她是一个著名的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #389142 (CK) & #1358430 (sadhen) +She is fond of animals. 她很喜欢动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #316008 (CK) & #333667 (fucongcong) +She knit him a sweater. 她给他织了件毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #887267 (CK) & #8743955 (crescat) +She looks very elegant. 她看上去十分优雅。 CC-BY 2.0 (France) Attribution: tatoeba.org #311814 (CM) & #1733274 (yuzazaza) +She married a musician. 她和一位音乐家结了婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #312764 (CK) & #4267373 (notabene) +She married a rich man. 她嫁给了一个有钱人。 CC-BY 2.0 (France) Attribution: tatoeba.org #310617 (CK) & #334036 (fucongcong) +She really wants to go. 她特别想去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1257029 (CK) & #2052497 (sadhen) +She resembles her aunt. 她长得像她姑姑。 CC-BY 2.0 (France) Attribution: tatoeba.org #310595 (CK) & #4764552 (ryanwoo) +She said she was happy. 她说了她很幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #1490281 (niceguydave) & #334284 (fucongcong) +She smiled at her baby. 她對著她的孩子微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #512662 (CK) & #842488 (Martha) +She was born last year. 她去年出生。 CC-BY 2.0 (France) Attribution: tatoeba.org #313842 (CK) & #5907629 (verdastelo9604) +She woke up on her own. 她自己起床的。 CC-BY 2.0 (France) Attribution: tatoeba.org #312076 (kebukebu) & #760839 (Martha) +She wore a white dress. 她穿了一件白色的洋裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #316161 (CK) & #896648 (Martha) +She writes beautifully. 她的筆跡很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #395538 (CK) & #819410 (Martha) +She's a glamorous girl. 她是个迷人的女孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #310767 (CK) & #2518656 (fenfang557) +She's already sleeping. 她已经睡下了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1384930 (Eldad) & #4270140 (notabene) +She's correct for sure. 她的確是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #388879 (CK) & #824537 (Martha) +She's younger than him. 她比他年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #887624 (CK) & #5617171 (verdastelo9604) +Should I go to college? 我該上大學嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #758595 (CM) & #846301 (Martha) +Sing us a song, please. 請為我們唱首歌吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #247356 (CK) & #918021 (Martha) +So what if that's true? 那如果那是真的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #5012998 (CK) & #5581844 (verdastelo9604) +Someone is calling you. 有人在叫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #40469 (CK) & #832942 (Martha) +Something must be done! 必須採取一些行動了! CC-BY 2.0 (France) Attribution: tatoeba.org #25239 (CK) & #868403 (Martha) +Sport knows no borders. 体育无国界。 CC-BY 2.0 (France) Attribution: tatoeba.org #2457492 (CM) & #2394580 (fenfang557) +Stay out of my kitchen. 别进我的厨房。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891868 (CK) & #5845635 (verdastelo9604) +Take whatever you like. 你喜歡什麼就拿吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574902 (n1ls) & #3706733 (egg0073) +Tell me more about Tom. 告诉我汤姆的情况。 CC-BY 2.0 (France) Attribution: tatoeba.org #3199970 (CK) & #5650463 (verdastelo9604) +Tell me which you want. 告訴我你想要哪個。 CC-BY 2.0 (France) Attribution: tatoeba.org #38007 (CK) & #839516 (Martha) +Tell them we're coming. 告诉他们我们要来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3199964 (CK) & #5595229 (verdastelo9604) +Thank you all the same. 同样感谢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #24771 (CK) & #5624987 (verdastelo9604) +Thank you ever so much. 非常感谢! CC-BY 2.0 (France) Attribution: tatoeba.org #275960 (CK) & #334426 (fucongcong) +Thanks for the comment. 谢谢您的评论。 CC-BY 2.0 (France) Attribution: tatoeba.org #1840167 (luca22) & #5100134 (mirrorvan) +Thanks for the updates. 谢谢提供新消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2428962 (CM) & #7768245 (jiangche) +Thanks for your advice. 谢谢你的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #2592598 (WestofEden) & #1763678 (sadhen) +That could be too late. 那可能太晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723479 (CM) & #6548848 (verdastelo9604) +That isn't Tom's fault. 那不是湯姆的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7493255 (CK) & #6845579 (verdastelo9604) +That means a lot to me. 那对我来说意义重大。 CC-BY 2.0 (France) Attribution: tatoeba.org #3333950 (CK) & #6093317 (verdastelo9604) +That was really boring. 那真是無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733873 (CK) & #6058620 (verdastelo9604) +That was really unfair. 那真不公平。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494481 (CK) & #6635880 (verdastelo9604) +That won't ever happen. 那从不会发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280400 (CK) & #5945147 (verdastelo9604) +That would be relevant. 那会有关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891967 (CK) & #5969430 (verdastelo9604) +That would be unlikely. 那不太可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891977 (CK) & #6111931 (verdastelo9604) +That's a dumb question. 这是一个愚蠢的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #3142734 (CK) & #1808259 (sadhen) +That's a good question. 那是一個很好的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #435750 (CK) & #819427 (Martha) +That's my final answer. 这是我的最终回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #896160 (pauldhunt) & #805175 (fucongcong) +That's my sole concern. 这是我唯一关心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42050 (CM) & #2032133 (ydcok) +That's not Tom's fault. 那不是湯姆的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1897809 (CK) & #6845579 (verdastelo9604) +That's weird, isn't it? 那真奇怪,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #3539241 (Hybrid) & #5931775 (verdastelo9604) +That's what Tom wanted. 那就是汤姆想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2876098 (CK) & #5911640 (verdastelo9604) +The bell rings at noon. 正午時分鐘聲響起。 CC-BY 2.0 (France) Attribution: tatoeba.org #33870 (CK) & #780370 (Martha) +The boy had a red face. 這個男孩有一張紅潤的臉。 CC-BY 2.0 (France) Attribution: tatoeba.org #268025 (CK) & #796065 (Martha) +The bread is not fresh. 面包不新鲜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1866935 (LanguageExpert) & #7771872 (jiangche) +The bus will take time. 乘公交车费时。 CC-BY 2.0 (France) Attribution: tatoeba.org #35394 (CK) & #332551 (fucongcong) +The cat caught a mouse. 猫抓住了老鼠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301125 (CK) & #332496 (fucongcong) +The child cried loudly. 小孩大声呼叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #6403833 (alishalikescats) & #3380568 (go_oo) +The door opened slowly. 门慢慢地开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39119 (Swift) & #8591212 (easononizuka) +The fire alarm sounded. 火警警报响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23848 (CK) & #334258 (fucongcong) +The girl has no mother. 这个女孩没有母亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #46490 (CK) & #336973 (fucongcong) +The knife is not sharp. 這刀不鋒利。 CC-BY 2.0 (France) Attribution: tatoeba.org #60758 (CK) & #793922 (Martha) +The law is quite clear. 法律很清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747239 (CM) & #6114398 (verdastelo9604) +The man robbed her bag. 這名男子搶走了她的包包。 CC-BY 2.0 (France) Attribution: tatoeba.org #388018 (CK) & #836432 (Martha) +The map is on the wall. 地图挂在墙上。 CC-BY 2.0 (France) Attribution: tatoeba.org #879581 (CK) & #8869384 (crescat) +The negotiation is off. 谈判中止了。 CC-BY 2.0 (France) Attribution: tatoeba.org #240296 (pierrephi) & #336100 (fucongcong) +The next one's for you. 下一个给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3168160 (CK) & #5576809 (verdastelo9604) +The pain is unbearable. 疼痛令人难以忍受。 CC-BY 2.0 (France) Attribution: tatoeba.org #1789071 (jonlam) & #336004 (fucongcong) +The pen is on the desk. 笔在桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846097 (englishchinese) & #802832 (fucongcong) +The project is ongoing. 该项目正在进行中。 CC-BY 2.0 (France) Attribution: tatoeba.org #7964846 (Hybrid) & #8563442 (slo_oth) +The rain is letting up. 雨变小了。 CC-BY 2.0 (France) Attribution: tatoeba.org #974869 (MecklyBver) & #5670855 (verdastelo9604) +The rain lasted a week. 雨下了一周。 CC-BY 2.0 (France) Attribution: tatoeba.org #26703 (CK) & #333989 (fucongcong) +The rear gate was open. 后门曾开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725465 (CM) & #5931754 (verdastelo9604) +The snow was knee deep. 積雪深及膝蓋。 CC-BY 2.0 (France) Attribution: tatoeba.org #272605 (CK) & #778760 (Martha) +The train came on time. 火车准时到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1031265 (CK) & #510665 (fucongcong) +The train passed by us. 列车从我们身边经过。 CC-BY 2.0 (France) Attribution: tatoeba.org #326145 (CM) & #5931752 (verdastelo9604) +The vase was shattered. 花瓶被打碎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5313616 (csmjj) & #5113341 (xjjAstrus) +The wind is cold today. 今天刮冷风。 CC-BY 2.0 (France) Attribution: tatoeba.org #242972 (CK) & #332571 (fucongcong) +The woman glared at us. 女人瞪了我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254593 (_undertoad) & #6148384 (verdastelo9604) +The world is beautiful. 世界真美好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8898987 (Adelpa) & #9155257 (shou) +The world is beautiful. 萬物真美好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8898987 (Adelpa) & #9155266 (shou) +There were no mistakes. 没有错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501047 (CK) & #787341 (fucongcong) +There were two bridges. 那里有两座桥。 CC-BY 2.0 (France) Attribution: tatoeba.org #806839 (Source_VOA) & #5670796 (verdastelo9604) +There's a page missing. 有一页缺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713546 (CK) & #409456 (fucongcong) +There's no way to know. 沒有辦法知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2192580 (Hybrid) & #6109273 (verdastelo9604) +These are called shoes. 這些叫鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1506136 (CM) & #1506606 (egg0073) +These are the new ones. 這些是一些新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3264697 (CK) & #6860675 (verdastelo9604) +These glasses are cool. 這些眼鏡真酷。 CC-BY 2.0 (France) Attribution: tatoeba.org #1700718 (Scott) & #6064600 (verdastelo9604) +They are having a chat. 他們正在聊天。 CC-BY 2.0 (France) Attribution: tatoeba.org #46045 (CK) & #919689 (Martha) +They both want a child. 他倆想要一個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819841 (sharris123) & #5968303 (xjjAstrus) +They closed their eyes. 他们闭上眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #3431332 (CK) & #5958730 (verdastelo9604) +They have many friends. 他们有很多朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1174873 (CK) & #8866915 (crescat) +They kissed each other. 他们亲吻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877195 (Spamster) & #5102369 (mirrorvan) +They say love is blind. 人们说爱情是盲目的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1578 (CK) & #334333 (fucongcong) +They settled in Canada. 他们在加拿大安家落户。 CC-BY 2.0 (France) Attribution: tatoeba.org #305582 (CK) & #1417568 (sadhen) +They sometimes help us. 他們有時幫我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3902430 (felvideki) & #6635888 (verdastelo9604) +They talked about love. 他們談論了愛情。 CC-BY 2.0 (France) Attribution: tatoeba.org #306144 (CK) & #803783 (Martha) +They were very excited. 他们非常兴奋。 CC-BY 2.0 (France) Attribution: tatoeba.org #307469 (CK) & #1502349 (fenfang557) +They're digging a hole. 他們正在挖一個洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #452264 (CK) & #840426 (Martha) +This apple is very red. 这只苹果非常红。 CC-BY 2.0 (France) Attribution: tatoeba.org #60350 (CK) & #745929 (fucongcong) +This boat has six oars. 這艘船有六個槳。 CC-BY 2.0 (France) Attribution: tatoeba.org #60523 (Zifre) & #9179853 (xjjAstrus) +This car needs washing. 这辆车需要清洗。 CC-BY 2.0 (France) Attribution: tatoeba.org #58709 (CK) & #8511493 (gumblex) +This decision is final. 这是最终决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #59501 (CK) & #5617147 (verdastelo9604) +This is Tom's umbrella. 這是湯姆的雨傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #4012238 (CK) & #5386943 (xjjAstrus) +This is a great moment. 这是一个伟大的时刻。 CC-BY 2.0 (France) Attribution: tatoeba.org #35075 (CM) & #2027916 (sadhen) +This is a wooden table. 这是张木桌。 CC-BY 2.0 (France) Attribution: tatoeba.org #389014 (CM) & #785840 (fucongcong) +This is not a sentence. 这不是一句话。 CC-BY 2.0 (France) Attribution: tatoeba.org #547389 (MUIRIEL) & #819742 (fucongcong) +This is not a sentence. 這不是一個句子。 CC-BY 2.0 (France) Attribution: tatoeba.org #547389 (MUIRIEL) & #4642396 (egg0073) +This is old news to me. 這對我來說是舊聞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #809792 (TomSFox) & #810040 (Martha) +This is the real world. 這是真實的世界。 CC-BY 2.0 (France) Attribution: tatoeba.org #1806177 (Spamster) & #6114393 (verdastelo9604) +This is very expensive. 這是非常昂貴的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7834149 (sharris123) & #4394682 (elena_chang) +This is very good soil. 这是非常好的土壤。 CC-BY 2.0 (France) Attribution: tatoeba.org #5196360 (mailohilohi) & #5993945 (verdastelo9604) +This isn't a good idea. 這不是好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3530025 (CK) & #6120907 (verdastelo9604) +This juice tastes sour. 這個果汁喝起來酸酸的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61020 (CK) & #5548492 (egg0073) +This makes me so angry. 這讓我非常憤怒。 CC-BY 2.0 (France) Attribution: tatoeba.org #5548463 (Hybrid) & #5548466 (egg0073) +This one's still alive. 這一個還活著。 CC-BY 2.0 (France) Attribution: tatoeba.org #3168123 (CK) & #6293106 (verdastelo9604) +This room is too small. 這個房間太小了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7768922 (sharris123) & #6467564 (xjjAstrus) +This rose is beautiful. 這玫瑰花很美麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #56428 (CK) & #826058 (Martha) +This table is reserved. 这个桌子被预约了。 CC-BY 2.0 (France) Attribution: tatoeba.org #60863 (CK) & #8704399 (crescat) +This water tastes good. 這水很好喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #58297 (brauliobezerra) & #779536 (Martha) +This wine tastes great. 這葡萄酒非常好喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481682 (weihaiping) & #766438 (Martha) +This writer is Russian. 这个作家是俄罗斯人。 CC-BY 2.0 (France) Attribution: tatoeba.org #791248 (CM) & #791446 (fucongcong) +Tom asked Mary to help. 湯姆向瑪麗求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #3902550 (CK) & #6058644 (verdastelo9604) +Tom asked me about you. 汤姆向我问起你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546444 (CK) & #5091704 (mirrorvan) +Tom can't ride a horse. 湯姆不能騎馬。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666781 (CK) & #6105231 (verdastelo9604) +Tom clenched his fists. 汤姆握紧了他的拳头。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645934 (CK) & #8791843 (slo_oth) +Tom clenched his teeth. 汤姆咬紧牙关。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956284 (CK) & #8791844 (slo_oth) +Tom crushed the garlic. 汤姆捣碎了大蒜。 CC-BY 2.0 (France) Attribution: tatoeba.org #7446766 (Hybrid) & #7795216 (xinqian94) +Tom doesn't have a dad. 汤姆没有父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497920 (CK) & #4972752 (wzhd) +Tom found new evidence. 汤姆发现了新的证据。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645899 (CK) & #8697595 (morningstar) +Tom has Mary's address. 汤姆有玛丽的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #3605533 (DostKaplan) & #3605692 (sadhen) +Tom has a big appetite. 汤姆胃口很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #5591310 (CK) & #5630374 (verdastelo9604) +Tom has a twin brother. Tom有個雙胞胎兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493672 (CK) & #4504493 (egg0073) +Tom has visited Boston. 汤姆去过波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #5152647 (CK) & #5684087 (verdastelo9604) +Tom heard Mary's voice. 汤姆听见了玛丽的声音。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645876 (CK) & #5925245 (verdastelo9604) +Tom is a Boston native. 湯姆是波士頓本地人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494445 (CK) & #6132213 (verdastelo9604) +Tom is a real good man. 汤姆是个很好的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825566 (CK) & #8463545 (gumblex) +Tom is a very good man. 汤姆是个很好的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5155173 (CK) & #8463545 (gumblex) +Tom is good at cooking. 湯姆擅長烹飪。 CC-BY 2.0 (France) Attribution: tatoeba.org #406581 (CK) & #838551 (Martha) +Tom is in the hospital. Tom在醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868200 (CK) & #5418707 (egg0073) +Tom is obese, isn't he? 汤姆很胖,是吧? CC-BY 2.0 (France) Attribution: tatoeba.org #3417057 (CK) & #5091616 (mirrorvan) +Tom is older than I am. 湯姆年紀比我大。 CC-BY 2.0 (France) Attribution: tatoeba.org #406588 (CK) & #872127 (Martha) +Tom is on his way here. 湯姆正在來這里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868175 (CK) & #6059529 (verdastelo9604) +Tom is out of his mind. 湯姆失去理智了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024911 (CK) & #3322616 (cienias) +Tom is quite drunk now. 汤姆现在醉醺醺的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821581 (CK) & #5091036 (mirrorvan) +Tom is quite sarcastic. 汤姆真会挖苦人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3409435 (CK) & #5663484 (verdastelo9604) +Tom is really handsome. 汤姆真帅。 CC-BY 2.0 (France) Attribution: tatoeba.org #5082202 (zvzuibqx) & #5072357 (musclegirlxyp) +Tom is speaking French. 汤姆在说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666737 (CK) & #5763047 (verdastelo9604) +Tom is still in Boston. 汤姆还在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024864 (CK) & #5780569 (verdastelo9604) +Tom is taking a shower. Tom在洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1660856 (Amastan) & #5418705 (egg0073) +Tom is taller than you. 汤姆比你高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546407 (CK) & #5780577 (verdastelo9604) +Tom is too old to work. 湯姆老得不能工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546406 (CK) & #6623202 (verdastelo9604) +Tom is very much alone. 汤姆非常孤单。 CC-BY 2.0 (France) Attribution: tatoeba.org #2208433 (CK) & #5780625 (verdastelo9604) +Tom isn't happy at all. 汤姆根本不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #5592759 (CK) & #5663541 (verdastelo9604) +Tom let out a big sigh. 汤姆大声叹了口气。 CC-BY 2.0 (France) Attribution: tatoeba.org #3315028 (CK) & #8933579 (crescat) +Tom lied to the others. 汤姆向其他人撒谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5013717 (CK) & #5091633 (mirrorvan) +Tom listened carefully. 湯姆仔細聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2237179 (CK) & #6333803 (verdastelo9604) +Tom looked for his pen. 湯姆找他的鋼筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546391 (CK) & #6199260 (verdastelo9604) +Tom picked up a pencil. 汤姆拿起铅笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546379 (CK) & #5869906 (verdastelo9604) +Tom picked up the book. 汤姆捡起了书 CC-BY 2.0 (France) Attribution: tatoeba.org #8382468 (CK) & #8743629 (cxpadonis) +Tom says he has a plan. 汤姆说他有个计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #5112817 (CK) & #5660529 (verdastelo9604) +Tom seems really happy. 汤姆看起来非常开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3854938 (Jenn) & #8935889 (crescat) +Tom started the engine. 湯姆發動了引擎。 CC-BY 2.0 (France) Attribution: tatoeba.org #18968 (CK) & #795271 (Martha) +Tom studies at Harvard. 汤姆在哈佛学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #4037044 (CK) & #5992381 (verdastelo9604) +Tom threw in the towel. 汤姆不干了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5748314 (CM) & #5102347 (mirrorvan) +Tom tried to kill Mary. 汤姆试着杀死玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027859 (CK) & #1394834 (mtdot) +Tom wanted to see Mary. 湯姆想見瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867796 (CK) & #6640400 (verdastelo9604) +Tom was a little drunk. 汤姆有点醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645741 (CK) & #5911617 (verdastelo9604) +Tom was not apologetic. Tom并不觉得抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546327 (CK) & #4845109 (pig8322) +Tom went down the hill. 汤姆走下山坡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3436419 (CK) & #5574439 (verdastelo9604) +Tom won't be here long. 湯姆不會在這裡久留。 CC-BY 2.0 (France) Attribution: tatoeba.org #2281723 (CK) & #6064698 (verdastelo9604) +Tom wrote us postcards. Tom寫明信片給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503011 (CK) & #4504390 (egg0073) +Tomorrow is my day off. 明天是我的休息日。 CC-BY 2.0 (France) Attribution: tatoeba.org #33476 (CK) & #844445 (Martha) +Tulips will bloom soon. 鬱金香很快將盛開。 CC-BY 2.0 (France) Attribution: tatoeba.org #495620 (CK) & #832930 (Martha) +Wait for me downstairs. 在楼下等我 CC-BY 2.0 (France) Attribution: tatoeba.org #3735982 (CK) & #5973401 (zhangxr91) +Wait for me in the car. 在车里等一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #5466120 (CK) & #8792067 (crescat) +Was it all an illusion? 那全是幻觉吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1125479 (Eldad) & #5576775 (verdastelo9604) +Was that what Tom said? 那就是汤姆说的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2645702 (CK) & #5925244 (verdastelo9604) +Watch my camera for me. 幫我看著我的相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #63557 (CK) & #845456 (Martha) +We can't just fire Tom. 我们不能仅仅就这样炒了汤姆 CC-BY 2.0 (France) Attribution: tatoeba.org #1951984 (CK) & #3662783 (yss123231) +We enjoy reading books. 我们喜欢阅读书籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #263175 (CK) & #4970084 (wzhd) +We enjoyed watching TV. 我們喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #588352 (CK) & #772095 (Martha) +We gave the car a push. 我們推了車。 CC-BY 2.0 (France) Attribution: tatoeba.org #321369 (CK) & #805107 (Martha) +We go to school by bus. 我們乘公共汽車去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #248260 (CK) & #795860 (Martha) +We got lost in the fog. 我们在雾中迷了路。 CC-BY 2.0 (France) Attribution: tatoeba.org #249403 (CK) & #799258 (fucongcong) +We have a problem here. 我们现在有了麻烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663541 (CK) & #4844976 (pig8322) +We have no electricity. 我們沒有電。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493661 (CK) & #6293084 (verdastelo9604) +We have to do our best. 我们应该做到最好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1309027 (CK) & #334642 (fucongcong) +We have to do our best. 我们要尽力而为。 CC-BY 2.0 (France) Attribution: tatoeba.org #1309027 (CK) & #2040502 (sadhen) +We have to have a plan. 我們必須有計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501430 (CK) & #6119148 (verdastelo9604) +We haven't seen anyone. 我们谁也没看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091135 (CK) & #7771853 (jiangche) +We help each other out. 我們互相幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4950749 (CK) & #4962230 (umidake) +We helped them as well. 我們也幫助他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #551154 (FeuDRenais) & #870171 (Martha) +We like to play soccer. 我們喜歡踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753747 (garborg) & #4746493 (egg0073) +We live in the suburbs. 我们住在郊区。 CC-BY 2.0 (France) Attribution: tatoeba.org #263021 (CK) & #8829214 (crescat) +We met her by accident. 我们偶然碰到了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #248601 (CK) & #332910 (fucongcong) +We must get up at dawn. 黎明時我們必須起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #263300 (Eldad) & #858785 (Martha) +We must obey the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #1417114 (CK) & #334729 (fucongcong) +We need one more spoon. 缺一把勺子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765367 (sharris123) & #1316988 (vicch) +We need to make a plan. 我们需要做计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013774 (CK) & #5907508 (verdastelo9604) +We often hear you sing. 我们经常听到你唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #71489 (CK) & #406741 (fucongcong) +We should be safe here. 我们在这里应该是安全的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3238890 (CK) & #5942085 (verdastelo9604) +We sometimes meet them. 我們有時會見到他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #400280 (CK) & #819365 (Martha) +We still have a chance. 我們還有次機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #3313130 (CK) & #6109300 (verdastelo9604) +We'll be ready in time. 我们会及时准备好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645679 (CK) & #5663518 (verdastelo9604) +We're going to eat now. 我們現在就要吃飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #4902770 (CK) & #6826175 (verdastelo9604) +We're out of stock now. 我们现在缺乏库存。 CC-BY 2.0 (France) Attribution: tatoeba.org #40894 (CK) & #4845135 (pig8322) +We're still doing well. 我们依然做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4850993 (CK) & #4844790 (pig8322) +We're still vulnerable. 我们还是脆弱不堪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240668 (CK) & #5613651 (verdastelo9604) +We've been here before. 这里我们以前来过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1702602 (Spamster) & #9012155 (jacintoo) +We've got lots of time. 我們有很多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #4915783 (CK) & #6468681 (verdastelo9604) +We've got what we need. 我們得到了我們想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310092 (CK) & #6109350 (verdastelo9604) +Well, have you decided? 那麼, 你決定好了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #464480 (lukaszpp) & #778543 (Martha) +Were you able to do it? 你有能力去做这个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3823337 (CK) & #4845022 (pig8322) +What a wonderful night! 多美妙的夜晚啊! CC-BY 2.0 (France) Attribution: tatoeba.org #36120 (jakov) & #816483 (fucongcong) +What are those numbers? 那些数字是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2645667 (CK) & #4844975 (pig8322) +What are you doing now? 你現在在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #241947 (CK) & #844613 (Martha) +What disease do I have? 我得了什麼病? CC-BY 2.0 (France) Attribution: tatoeba.org #435201 (CK) & #836131 (Martha) +What do you plan to do? 你打算怎麼辦? CC-BY 2.0 (France) Attribution: tatoeba.org #405508 (CK) & #865390 (Martha) +What do you want to be? 您想成为什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16263 (CK) & #469407 (fucongcong) +What do you want to be? 你想成为什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16263 (CK) & #469410 (fucongcong) +What do you want to do? 你想做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #24759 (CK) & #870165 (Martha) +What does your aunt do? 你姑姑是做什麼的? CC-BY 2.0 (France) Attribution: tatoeba.org #17411 (CK) & #839525 (Martha) +What is my room number? 我的房间号是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #464588 (lukaszpp) & #332881 (fucongcong) +What made her so angry? 什麼事讓她這麼生氣? CC-BY 2.0 (France) Attribution: tatoeba.org #38619 (CK) & #794049 (Martha) +What made you so angry? 什麼讓你這麼生氣? CC-BY 2.0 (France) Attribution: tatoeba.org #36444 (CK) & #842438 (Martha) +What should I look for? 我应该寻找什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4834931 (CK) & #4844746 (pig8322) +What time do you close? 你们几点关门? CC-BY 2.0 (France) Attribution: tatoeba.org #503520 (darinmex) & #1785977 (sadhen) +What time does it open? 什么时候开门? CC-BY 2.0 (France) Attribution: tatoeba.org #24558 (CK) & #335134 (fucongcong) +What time was she born? 她幾點出生的? CC-BY 2.0 (France) Attribution: tatoeba.org #509414 (CH) & #844460 (Martha) +What'll the results be? 結果會是甚麼樣的? CC-BY 2.0 (France) Attribution: tatoeba.org #5852279 (CK) & #6877969 (verdastelo9604) +What're you looking at? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2645646 (CK) & #7768300 (jiangche) +What's in front of you? 在你面前是什麼東西? CC-BY 2.0 (France) Attribution: tatoeba.org #264764 (CK) & #842490 (Martha) +What's your occupation? 您的職業是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #410787 (CK) & #832460 (Martha) +When do you eat dinner? 你几点吃的晚饭? CC-BY 2.0 (France) Attribution: tatoeba.org #687510 (lukaszpp) & #3376539 (go_oo) +When do you eat turkey? 你什麼時候吃火雞? CC-BY 2.0 (France) Attribution: tatoeba.org #1830491 (CK) & #8215750 (verdastelo9604) +When do you need it by? 您何時需要它? CC-BY 2.0 (France) Attribution: tatoeba.org #869457 (CK) & #917974 (Martha) +When do you want to go? 你什麼時候要去? CC-BY 2.0 (France) Attribution: tatoeba.org #66023 (CK) & #874969 (Martha) +Where can I get a taxi? 我在哪裡可以搭到計程車? CC-BY 2.0 (France) Attribution: tatoeba.org #38194 (CK) & #873340 (Martha) +Where did it come from? 它从哪里来? CC-BY 2.0 (France) Attribution: tatoeba.org #1886636 (CK) & #5883313 (verdastelo9604) +Where did you get this? 这是你哪里拿的? CC-BY 2.0 (France) Attribution: tatoeba.org #41861 (CK) & #864280 (kooler) +Where did you meet Tom? 你是在哪里认识汤姆的? CC-BY 2.0 (France) Attribution: tatoeba.org #1495841 (CK) & #8679680 (crescat) +Where do you have pain? 你哪裡痛? CC-BY 2.0 (France) Attribution: tatoeba.org #403283 (CK) & #842286 (Martha) +Where is the cafeteria? 自助餐厅在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #268769 (CK) & #1361983 (sadhen) +Where is the city hall? 市政府在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #510565 (CK) & #4739751 (elenachang) +Where was it published? 它发表在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #3821329 (CK) & #8511419 (gumblex) +Where's my apple juice? 我的蘋果汁在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #3737753 (CK) & #5548527 (egg0073) +Where's the phone book? 电话簿在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #3795282 (Muskwalker) & #7768287 (jiangche) +Which way is the beach? 去海滩走哪条路? CC-BY 2.0 (France) Attribution: tatoeba.org #22175 (CK) & #745809 (fucongcong) +Which way should we go? 我们应该往哪个方向走? CC-BY 2.0 (France) Attribution: tatoeba.org #4834928 (CK) & #4844755 (pig8322) +Who are you going with? 你和谁一起去那? CC-BY 2.0 (France) Attribution: tatoeba.org #1839631 (CK) & #6075195 (mendel) +Who are you looking at? 你在看谁? CC-BY 2.0 (France) Attribution: tatoeba.org #3738585 (CK) & #5907624 (verdastelo9604) +Who are you voting for? 你投给谁? CC-BY 2.0 (France) Attribution: tatoeba.org #813833 (U2FS) & #813619 (fucongcong) +Who did you give it to? 你把它給誰了? CC-BY 2.0 (France) Attribution: tatoeba.org #16543 (CK) & #775807 (Martha) +Who did you speak with? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1042639 (GPHemsley) & #7771910 (jiangche) +Who teaches you French? 谁教你们法语? CC-BY 2.0 (France) Attribution: tatoeba.org #40482 (CK) & #487550 (fucongcong) +Who told you the story? 誰告訴你這個故事? CC-BY 2.0 (France) Attribution: tatoeba.org #276309 (CK) & #844484 (Martha) +Who's Tom's girlfriend? 汤姆的女朋友是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2777217 (CK) & #4885074 (musclegirlxyp) +Who's your favorite DJ? 谁是你最喜爱的 DJ ? CC-BY 2.0 (France) Attribution: tatoeba.org #908697 (CK) & #2028063 (sadhen) +Whose is that notebook? 這臺筆記本電腦是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #831802 (Swift) & #9057861 (xjjAstrus) +Whose notebook is that? 這臺筆記本電腦是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #68649 (Zifre) & #9057861 (xjjAstrus) +Why are you busy today? 你今天为什么忙? CC-BY 2.0 (France) Attribution: tatoeba.org #69583 (CK) & #1438402 (asosan) +Why are you so worried? 你這麼擔心做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2772384 (CK) & #1423405 (cienias) +Why do you need change? 你為什麼需要零錢? CC-BY 2.0 (France) Attribution: tatoeba.org #36630 (Dejo) & #874187 (Martha) +Why do you want to die? 你为什么想死? CC-BY 2.0 (France) Attribution: tatoeba.org #1111558 (Scott) & #8696238 (crescat) +Why should I thank Tom? 我為甚麼該感謝湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #4834923 (CK) & #6120897 (verdastelo9604) +Why were you so scared? 你为什么这么害怕? CC-BY 2.0 (France) Attribution: tatoeba.org #4501940 (CK) & #5650409 (verdastelo9604) +Will it be much longer? 還要很久嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #278081 (CK) & #838568 (Martha) +Will you buy something? 你要买点东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2681339 (FeuDRenais) & #7774770 (jiangche) +Will you drive me home? 你會開車送我回家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #265457 (CK) & #842408 (Martha) +Will you wait a minute? 麻煩您等一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3973205 (felvideki) & #4104695 (andymakespasta) +Will you wait a moment? 麻煩您稍待一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3973207 (felvideki) & #4104691 (andymakespasta) +Words express thoughts. 語言表達思想。 CC-BY 2.0 (France) Attribution: tatoeba.org #461181 (jeanne) & #801946 (Martha) +Words express thoughts. 語詞表達思想。 CC-BY 2.0 (France) Attribution: tatoeba.org #461181 (jeanne) & #801947 (Martha) +Would you like a drink? 你想喝點什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435197 (CK) & #840434 (Martha) +Would you like to come? 你愿意来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2398 (CK) & #1776642 (sadhen) +Would you like to wait? 你愿意等吗 ? CC-BY 2.0 (France) Attribution: tatoeba.org #64251 (CK) & #401004 (fucongcong) +Yes, I have student ID. 是的,我有學生證。 CC-BY 2.0 (France) Attribution: tatoeba.org #7770316 (sharris123) & #6284496 (xjjAstrus) +You are my best friend. 你是我最好的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #20116 (CK) & #3630134 (suitchic) +You can take today off. 你今天可以休假一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #242861 (CK) & #838642 (Martha) +You can take your time. 你可以慢慢来。 CC-BY 2.0 (France) Attribution: tatoeba.org #19693 (CK) & #334393 (fucongcong) +You come back soon, OK? 你早點回來,行嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3330983 (CK) & #6826148 (verdastelo9604) +You could have done it. 你本來可以做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16544 (CK) & #836242 (Martha) +You deserve to succeed. 你的成功是应得的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17579 (CM) & #1428113 (sadhen) +You don't have a fever. 你没发烧。 CC-BY 2.0 (France) Attribution: tatoeba.org #402491 (CK) & #609888 (sarah) +You don't have to hide. 你不用藏著。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823875 (CK) & #6101318 (verdastelo9604) +You don't look so well. 你看上去不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2283661 (CK) & #8727908 (crescat) +You guys have to hurry. 你们这些家伙得快点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1895752 (CK) & #5611539 (verdastelo9604) +You have a good memory. 你的記憶力很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #69506 (CK) & #3148828 (cienias) +You have a point there. 喔!你提到一個重點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #36518 (CK) & #1426355 (tsayng) +You have to be patient. 你必須有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #20305 (CK) & #793498 (Martha) +You have to study more. 你该学得更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1168568 (Chrikaru) & #334683 (fucongcong) +You like it, don't you? 你喜歡它,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405517 (CK) & #842260 (Martha) +You look just like Tom. 你看起来就像湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276414 (CK) & #6293095 (verdastelo9604) +You look like a monkey. 你看着像猴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3348067 (CK) & #5780564 (verdastelo9604) +You made a wise choice. 你做了一個明智的選擇。 CC-BY 2.0 (France) Attribution: tatoeba.org #16170 (CK) & #844482 (Martha) +You may use my new car. 你可以使用我的新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #16082 (CK) & #868475 (Martha) +You must go to bed now. 你現在必須上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #16391 (CK) & #872446 (Martha) +You must start at once. 你必须马上开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #17649 (Swift) & #333008 (fucongcong) +You never get my jokes. 你从来不明白我的玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #841063 (darinmex) & #844175 (fucongcong) +You ought to thank him. 你应该感谢他。 CC-BY 2.0 (France) Attribution: tatoeba.org #15838 (CK) & #1780777 (sadhen) +You said you'd help me. 你说过你会帮我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356365 (CK) & #9178041 (xiaohong) +You should wear a coat. 你應該穿一件大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #419660 (CK) & #839590 (Martha) +You should've woken me. 你应该叫醒我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356366 (CK) & #9178038 (xiaohong) +You shouldn't eat here. 你不该在这里吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #70119 (CK) & #846781 (fucongcong) +You sing like an angel. 你唱歌像天使。 CC-BY 2.0 (France) Attribution: tatoeba.org #2954783 (CK) & #5978351 (verdastelo9604) +You speak good English. 你的英語說得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #26178 (CK) & #790650 (Martha) +You took the wrong key. 你拿错钥匙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2416 (CK) & #1776658 (sadhen) +You were at my wedding. 你出席了我的婚礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645567 (CK) & #3043968 (sadhen) +You were eavesdropping. 你在偷听。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255263 (CK) & #5581739 (verdastelo9604) +You were late for work. 你上班迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16104 (Swift) & #332606 (fucongcong) +You'd better go by bus. 你最好坐公共汽車去。 CC-BY 2.0 (France) Attribution: tatoeba.org #16433 (CK) & #838625 (Martha) +You'd better not speak. 你最好不要說。 CC-BY 2.0 (France) Attribution: tatoeba.org #1033113 (Brian255) & #751480 (Martha) +You'd better start now. 你最好現在就開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #16148 (CK) & #833061 (Martha) +You'll need their help. 你会需要他们的帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #3680838 (AlanF_US) & #5640724 (verdastelo9604) +You're a celebrity now. 你现在是名人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546244 (CK) & #6089775 (verdastelo9604) +You're cuter than Mary. 你比玛丽可爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2274053 (CK) & #5595187 (verdastelo9604) +You're making progress. 你在進步。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218204 (CK) & #6936195 (verdastelo9604) +You're not fast enough. 你不够快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476 (CK) & #501529 (fucongcong) +You're quite forgetful. 你很健忘。 CC-BY 2.0 (France) Attribution: tatoeba.org #7222039 (CK) & #2007070 (sadhen) +Your answer is correct. 您的答案是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70439 (CK) & #5672786 (xjjAstrus) +Your cake is delicious. 您的蛋糕很美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #17395 (CK) & #782881 (fucongcong) +Your cake is delicious. 你的蛋糕很美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #17395 (CK) & #782886 (fucongcong) +Your plan sounds great. 你的計劃聽起來很不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #17357 (CK) & #793239 (Martha) +A glass of wine, please. 一杯葡萄酒,謝謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795887 (sharris123) & #4394673 (elena_chang) +A good idea came to him. 他想到一个好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #1507073 (coryleach) & #8765235 (crescat) +All my homework is done. 我做完了所有的回家作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #266674 (CK) & #780371 (Martha) +Are there any questions? 有什么问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1553537 (CK) & #1783789 (sadhen) +Are they treated fairly? 他们受到公正对待了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4502680 (CK) & #5555233 (verdastelo9604) +Are those two going out? 那兩個要出去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #67886 (papabear) & #803787 (Martha) +Are you coming tomorrow? 你明天要來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6389254 (SilasNordgren) & #6333805 (verdastelo9604) +Are you free on Tuesday? 周二你有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #23779 (CK) & #616203 (sarah) +Are you having problems? 你有问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2713495 (CK) & #5613647 (verdastelo9604) +Are you here to see Tom? 你是來見湯姆的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3350174 (Hybrid) & #6114418 (verdastelo9604) +Are you referring to me? 你在说我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1499 (CK) & #337972 (fucongcong) +Are you still in school? 你还在上学吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4889710 (CK) & #8696428 (morningstar) +Are you sure about this? 你确定吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1112296 (Scott) & #343645 (fucongcong) +Are you wearing a watch? 你有戴手表吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6356007 (CK) & #8751151 (crescat) +Aren't you free tonight? 你今天晚上沒空嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6093981 (CK) & #6119437 (verdastelo9604) +Ask him what to do next. 问他下一步该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #264175 (CK) & #1360033 (sadhen) +Ask me something easier. 问我简单些的。 CC-BY 2.0 (France) Attribution: tatoeba.org #516612 (kebukebu) & #1438399 (asosan) +Bear his advice in mind. 牢記他的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #287152 (CM) & #6119417 (verdastelo9604) +Beauty is but skin deep. 美貌只是表面性的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #318157 (CK) & #462034 (fucongcong) +Being rich isn't enough. 有钱还不够。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734115 (CK) & #5780620 (verdastelo9604) +Breathing was difficult. 呼吸困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496173 (CK) & #6109345 (verdastelo9604) +Bring me the dictionary. 把那本詞典遞給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #249694 (CK) & #9054800 (xjjAstrus) +Can I drive the tractor? 我能開拖拉機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4144648 (Hybrid) & #6109357 (verdastelo9604) +Can I eat my lunch here? 我能在這裡吃午飯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #953150 (CK) & #6120774 (verdastelo9604) +Can I get my money back? 我是不是能收回我的钱? CC-BY 2.0 (France) Attribution: tatoeba.org #5081931 (konkorde) & #845124 (fucongcong) +Can Tom buy that for us? 湯姆能給我們買嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6232609 (CK) & #8215684 (verdastelo9604) +Can you eat raw oysters? 你能生吃牡蠣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15953 (CK) & #833134 (Martha) +Can you get it repaired? 你能不能修理它? CC-BY 2.0 (France) Attribution: tatoeba.org #36526 (CK) & #834429 (Martha) +Can you lower the price? 可以便宜點嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434416 (lukaszpp) & #6284508 (xjjAstrus) +Can you make it on time? 你能准时做好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #41854 (CK) & #336252 (fucongcong) +Can you play the guitar? 你会弹吉他吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63394 (CK) & #389409 (fucongcong) +Can you really not swim? 你真的不會游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #63214 (CK) & #824714 (Martha) +Can you swim underwater? 你能潜水吗? CC-BY 2.0 (France) Attribution: tatoeba.org #270907 (CK) & #1776712 (sadhen) +Can't you speak English? 你不會說英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #483613 (CK) & #771435 (Martha) +Carry on with your work. 繼續工作! CC-BY 2.0 (France) Attribution: tatoeba.org #69361 (CM) & #3982106 (tsayng) +Check Tom's pulse again. 再检查一下汤姆的脉搏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3319247 (CK) & #8606824 (slo_oth) +Children are our future. 孩子是我们的未来。 CC-BY 2.0 (France) Attribution: tatoeba.org #5109406 (honestlang) & #8514529 (gumblex) +Children like chocolate. 孩子们喜欢巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #7017901 (timoteojohano) & #7056740 (ydcok) +Choose the one you like. 選一個你喜歡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #450116 (CK) & #834378 (Martha) +Choose the one you like. 选喜欢的。 CC-BY 2.0 (France) Attribution: tatoeba.org #450116 (CK) & #3630196 (suitchic) +Classes begin next week. 课程下周开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #881014 (CK) & #2694357 (sadhen) +Could I borrow a pencil? 我能借支铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1075506 (CK) & #1438617 (asosan) +Could you do me a favor? 請你幫我一個忙好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #485496 (CK) & #842322 (Martha) +Could you shut the door? 你能把門關上嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #789975 (CK) & #796034 (Martha) +Days are getting longer. 白天越來越長了。 CC-BY 2.0 (France) Attribution: tatoeba.org #515772 (CK) & #819448 (Martha) +Did you come here alone? 你是一个人来这儿的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #27660 (CK) & #465830 (fucongcong) +Did you grade the tests? 你給測驗評分了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435638 (CK) & #833085 (Martha) +Did you push the button? 你按了按鈕嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33423 (CK) & #908387 (Martha) +Do they love each other? 他們彼此相愛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #305558 (CK) & #803782 (Martha) +Do you have a cellphone? 你有手機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #535419 (FeuDRenais) & #5254704 (xjjAstrus) +Do you have a soup bowl? 你有碗盛湯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2494048 (CK) & #9135856 (xjjAstrus) +Do you have a soup bowl? 你有湯碗嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2494048 (CK) & #9135857 (xjjAstrus) +Do you have enough food? 你有足够的食物吗? CC-BY 2.0 (France) Attribution: tatoeba.org #680823 (Source_VOA) & #2050886 (sadhen) +Do you know what I mean? 你知道我的意思嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #321488 (CK) & #836433 (Martha) +Do you like Indian food? 你喜歡印度菜嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2207455 (Hybrid) & #6534033 (verdastelo9604) +Do you really mean that? 你是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #526826 (darinmex) & #4887667 (musclegirlxyp) +Do you think I can help? 你认为我能帮忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5780475 (CK) & #5780498 (verdastelo9604) +Do you think I'm joking? 你觉得我是在开玩笑吗? CC-BY 2.0 (France) Attribution: tatoeba.org #780871 (ingenius000) & #786037 (fucongcong) +Do you think I'm stupid? 你認為我傻嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #953224 (CK) & #6058645 (verdastelo9604) +Do you want fruit juice? 您想要果汁嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2367 (CK) & #5548517 (egg0073) +Do you want to die here? 你想死在這裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3084493 (YoungRobin) & #6198952 (verdastelo9604) +Do you want to eat this? 你想吃這個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3154872 (CK) & #6057668 (xjjAstrus) +Do you wish to complain? 你想抱怨嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3825629 (CK) & #6447553 (verdastelo9604) +Does Tom live in Boston? 汤姆住在波士顿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5514040 (Mar1L) & #4815125 (McMeao) +Does that belong to Tom? 这是汤姆的东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3637643 (MTC) & #4879141 (musclegirlxyp) +Don't ask any questions. 別提問。 CC-BY 2.0 (France) Attribution: tatoeba.org #1989658 (Spamster) & #9155265 (shou) +Don't be so pessimistic. 不要感觉那么悲观。 CC-BY 2.0 (France) Attribution: tatoeba.org #3603648 (CK) & #8850437 (morningstar) +Don't come into my room. 不要進入我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #251772 (CK) & #788793 (Martha) +Don't forget the ticket. 不要忘了票。 CC-BY 2.0 (France) Attribution: tatoeba.org #2424 (Dorenda) & #389446 (fucongcong) +Don't forget your money. 不要忘记您的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #602885 (fliegster) & #799244 (fucongcong) +Don't forget your money. 不要忘记你的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #602885 (fliegster) & #799245 (fucongcong) +Don't go out after dark. 天黑以後不要出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #28454 (CK) & #834395 (Martha) +Don't lie to Tom and me. 不要对我和汤姆撒谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #8429094 (CK) & #8765232 (crescat) +Don't look into my room. 不要往我房间里看。 CC-BY 2.0 (France) Attribution: tatoeba.org #251795 (CK) & #333189 (fucongcong) +Don't make a fool of me. 别把人家当傻瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #270182 (CM) & #2032129 (ydcok) +Don't make stupid jokes. 开什么国际玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860426 (CK) & #2395014 (fenfang557) +Don't put it on my desk. 不要把它放在我的桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #25531 (CK) & #839533 (Martha) +Don't quit your day job. 别辞掉你的正职。 CC-BY 2.0 (France) Attribution: tatoeba.org #4889718 (CK) & #5093988 (mirrorvan) +Don't trust anyone here. 你在這別相信任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1486670 (Spamster) & #3710634 (egg0073) +Don't you like baseball? 你不喜欢棒球吗? CC-BY 2.0 (France) Attribution: tatoeba.org #324076 (CK) & #373452 (fucongcong) +Don't you miss anything? 难道你不想念什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3826594 (CK) & #5091569 (mirrorvan) +Draw a line from A to B. 请画一条从A到B的线。 CC-BY 2.0 (France) Attribution: tatoeba.org #72258 (CK) & #8692927 (crescat) +Eat a lot of vegetables. 多吃点蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #324120 (CK) & #345971 (fucongcong) +Every man has his price. 每个人都有个价。 CC-BY 2.0 (France) Attribution: tatoeba.org #36594 (CM) & #343973 (fucongcong) +Everybody wanted to eat. 每个人都想吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780479 (CK) & #5780502 (verdastelo9604) +Follow me into the room. 跟我进房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #453006 (FeuDRenais) & #444694 (fucongcong) +Forewarned is forearmed. 凡事豫則立。 CC-BY 2.0 (France) Attribution: tatoeba.org #238066 (xtofu80) & #806554 (Martha) +Forewarned is forearmed. 凡事要預先準備好。 CC-BY 2.0 (France) Attribution: tatoeba.org #238066 (xtofu80) & #806558 (Martha) +Fresh food is wonderful. 新鮮的食物最棒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #681018 (Source_VOA) & #899967 (kanaorange) +From now on, try harder. 從現在起,更加努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #4875396 (AlanF_US) & #6333817 (verdastelo9604) +Get me a ticket, please. 請給我一張票。 CC-BY 2.0 (France) Attribution: tatoeba.org #272483 (CK) & #834340 (Martha) +Give Tom back his money. 把汤姆的钱还给他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151430 (CK) & #5670762 (verdastelo9604) +Give me a dozen oranges. 給我一打橘子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2258226 (_undertoad) & #6332432 (verdastelo9604) +Give me a ring tomorrow. 明天打电话给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #323450 (CM) & #1738150 (sadhen) +Give me something to do. 给我点事做。 CC-BY 2.0 (France) Attribution: tatoeba.org #25103 (CK) & #785833 (fucongcong) +Give us a ride downtown. 載我們到市區。 CC-BY 2.0 (France) Attribution: tatoeba.org #21771 (CK) & #833103 (Martha) +Go outside and play now. 現在出去玩吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #5172658 (Hybrid) & #6119480 (verdastelo9604) +Goodbyes are always sad. 离别总是让人悲伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #2215 (CK) & #1772677 (sadhen) +Grab a hold of the rope. 抓住繩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #435753 (CK) & #844644 (Martha) +Have a pleasant journey. 旅途愉快! CC-BY 2.0 (France) Attribution: tatoeba.org #3737299 (CK) & #6559029 (xjjAstrus) +Have you heard from Tom? 汤姆那里有联系过你吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1885969 (CK) & #5096805 (mirrorvan) +Have you heard from him? 你收到他的音訊了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283345 (CK) & #833832 (Martha) +He acted like a lunatic. 他表现的像个疯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #852277 (beauzavier) & #5091210 (mirrorvan) +He asked for some money. 他要了一些錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #295461 (CK) & #832973 (Martha) +He asked me to help him. 他要求我幫助他。 CC-BY 2.0 (France) Attribution: tatoeba.org #297644 (CK) & #839615 (Martha) +He ate all of the apple. 他把整个苹果都吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290562 (CK) & #7774356 (jiangche) +He began to feel afraid. 他开始害怕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289995 (CK) & #799297 (fucongcong) +He bought her a sweater. 他買了一件毛衣給她。 CC-BY 2.0 (France) Attribution: tatoeba.org #302657 (CK) & #834544 (Martha) +He bought himself a dog. 他給自己買了一隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #816068 (afeinberg) & #816759 (Martha) +He came back from China. 他从中国回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #387585 (Mouseneb) & #343360 (fucongcong) +He can read well enough. 他能讀得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #388982 (CK) & #824500 (Martha) +He catches colds easily. 他很容易感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #473603 (CK) & #826143 (Martha) +He couldn't get the job. 他無法得到這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #47600 (CK) & #795802 (Martha) +He decided to marry her. 他決定娶她。 CC-BY 2.0 (France) Attribution: tatoeba.org #302619 (CK) & #834362 (Martha) +He did not get up early. 他没有早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #300825 (CK) & #336851 (fucongcong) +He died three years ago. 他三年前死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #822043 (CK) & #823031 (Martha) +He does not like tennis. 他不喜欢网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #291855 (CK) & #1323782 (vicch) +He doesn't eat raw fish. 他不吃生鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #295273 (nickyeow) & #464938 (fucongcong) +He doesn't look his age. 他的长相与年龄不符。 CC-BY 2.0 (France) Attribution: tatoeba.org #2309 (CK) & #1776587 (sadhen) +He doesn't need to work. 他不需要工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #503772 (CK) & #834345 (Martha) +He drinks too much beer. 他喝太多啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #288803 (CK) & #834507 (Martha) +He finally got his wish. 他終於如願以償了。 CC-BY 2.0 (France) Attribution: tatoeba.org #291966 (CK) & #834406 (Martha) +He found me a good seat. 他幫我找到了一個好位子。 CC-BY 2.0 (France) Attribution: tatoeba.org #297475 (CK) & #842466 (Martha) +He glanced at his watch. 他看了一眼他的表。 CC-BY 2.0 (France) Attribution: tatoeba.org #291762 (CK) & #335111 (fucongcong) +He got tired of reading. 他厌倦了读书。 CC-BY 2.0 (France) Attribution: tatoeba.org #302106 (CK) & #802857 (fucongcong) +He has a lot of hobbies. 他有很多兴趣爱好。 CC-BY 2.0 (France) Attribution: tatoeba.org #301125 (CK) & #8936656 (crescat) +He has a test next week. 他下禮拜要考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #1151470 (FiRez) & #1225679 (tsayng) +He has been to Hokkaido. 他曾去過北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #303725 (CK) & #818206 (Martha) +He has gone to Hokkaido. 他去北海道了。 CC-BY 2.0 (France) Attribution: tatoeba.org #303723 (CK) & #833108 (Martha) +He has no eye for women. 他對女人沒有眼光。 CC-BY 2.0 (France) Attribution: tatoeba.org #299462 (CK) & #801991 (Martha) +He has written a letter. 他写了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #299227 (CK) & #442288 (fucongcong) +He has written a letter. 他寫了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #299227 (CK) & #834321 (Martha) +He invited me to dinner. 他邀請我吃晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #298147 (CK) & #833786 (Martha) +He is a baseball player. 他是个棒球手。 CC-BY 2.0 (France) Attribution: tatoeba.org #304260 (Eldad) & #335624 (fucongcong) +He is a famous composer. 他是一位著名的作曲家。 CC-BY 2.0 (France) Attribution: tatoeba.org #302208 (CK) & #833097 (Martha) +He is a friendly person. 他是一個友善的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #302443 (CK) & #833216 (Martha) +He is a pleasant person. 他是个好脾气的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #707475 (Shishir) & #9012191 (jacintoo) +He is afraid of the dog. 他怕那只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #290760 (CK) & #4649886 (hoyakoh) +He is drawing a picture. 他正在画一幅画。 CC-BY 2.0 (France) Attribution: tatoeba.org #294703 (CK) & #405186 (fucongcong) +He is eager to go there. 他渴望去那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #292061 (CK) & #5863292 (verdastelo9604) +He is fluent in Chinese. 他能說流利的中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #301539 (CK) & #833148 (Martha) +He is fond of adventure. 他喜欢冒险。 CC-BY 2.0 (France) Attribution: tatoeba.org #303717 (CM) & #335025 (fucongcong) +He is hard to deal with. 他很難對付。 CC-BY 2.0 (France) Attribution: tatoeba.org #68075 (CK) & #846352 (Martha) +He is not a good driver. 他不擅长开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #386694 (Mouseneb) & #333905 (fucongcong) +He is not from Hokkaido. 他不是來自北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #303727 (CK) & #818215 (Martha) +He is poor at chemistry. 他的化学很差。 CC-BY 2.0 (France) Attribution: tatoeba.org #294218 (CM) & #332985 (fucongcong) +He is used to traveling. 他習慣了旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #304688 (CK) & #825129 (Martha) +He keeps his room clean. 他保持他的房間乾淨。 CC-BY 2.0 (France) Attribution: tatoeba.org #303414 (CK) & #833211 (Martha) +He leaned on his elbows. 他把身子靠在胳膊上。 CC-BY 2.0 (France) Attribution: tatoeba.org #292504 (CM) & #2143990 (ydcok) +He left ten minutes ago. 他十分鐘前離開了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288379 (CK) & #834392 (Martha) +He likes anything sweet. 他喜歡一切甜的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #294931 (CK) & #832462 (Martha) +He likes playing soccer. 他喜歡踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #290025 (CK) & #819409 (Martha) +He looked like a doctor. 他看起來像個醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #293639 (CK) & #833139 (Martha) +He made her a bookshelf. 他做了一個書架給她。 CC-BY 2.0 (France) Attribution: tatoeba.org #302733 (CK) & #833185 (Martha) +He made his son a chair. 他做了一把椅子給他兒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #300953 (CK) & #846068 (Martha) +He married a stewardess. 他娶了一个空姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #290277 (CK) & #334878 (fucongcong) +He married a stewardess. 他娶了一位空姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #290277 (CK) & #771397 (Martha) +He neglected his duties. 他怠忽職守了。 CC-BY 2.0 (France) Attribution: tatoeba.org #535249 (CK) & #825960 (Martha) +He never drinks alcohol. 他從不喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #288897 (CK) & #825914 (Martha) +He no longer lives here. 他不再住在這裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293053 (CK) & #834313 (Martha) +He objected to our plan. 他反對我們的計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #303737 (CK) & #833153 (Martha) +He only had 100 dollars. 他只有100美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #291649 (CK) & #834347 (Martha) +He ordered a cup of tea. 他點了一杯茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #296335 (CK) & #848753 (Martha) +He reads a lot of books. 他读很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #3232302 (CK) & #8605838 (slo_oth) +He sometimes watches TV. 他有時看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #298391 (CK) & #825975 (Martha) +He stuck to his promise. 他信守了承诺. CC-BY 2.0 (France) Attribution: tatoeba.org #304295 (CK) & #1424201 (asosan) +He thinks he's so great. 他以為自己很了不起。 CC-BY 2.0 (France) Attribution: tatoeba.org #1573803 (donkirkby) & #876370 (Martha) +He took off his glasses. 他摘下了眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #294986 (CK) & #833163 (Martha) +He traveled on business. 他旅行洽商。 CC-BY 2.0 (France) Attribution: tatoeba.org #299517 (CK) & #819430 (Martha) +He turned down my offer. 他拒絕了我的提議。 CC-BY 2.0 (France) Attribution: tatoeba.org #297913 (CK) & #833204 (Martha) +He used to get up early. 他以前很早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #293537 (CK) & #848604 (Martha) +He wants a book to read. 他想找本書來讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #302100 (CK) & #846270 (Martha) +He was born in Nagasaki. 他出生於長崎。 CC-BY 2.0 (France) Attribution: tatoeba.org #301641 (CK) & #834339 (Martha) +He was supposed to come. 他應該來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #289775 (CK) & #834375 (Martha) +He went out of the room. 他走出了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #303386 (CK) & #757604 (Martha) +He witnessed the murder. 他目睹了謀殺案。 CC-BY 2.0 (France) Attribution: tatoeba.org #296961 (CK) & #771405 (Martha) +He wrote to his parents. 他寫信給他的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #304723 (CK) & #834425 (Martha) +He'll be back home soon. 他很快就會回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #509753 (CK) & #834399 (Martha) +He's afraid of that dog. 他怕那只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2805866 (CK) & #4649886 (hoyakoh) +He's crazy about soccer. 他酷爱足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #451744 (FeuDRenais) & #446166 (fucongcong) +He's highly intelligent. 他聪明得很。 CC-BY 2.0 (France) Attribution: tatoeba.org #1386865 (Spamster) & #5555696 (verdastelo9604) +He's just gone on leave. 他剛請假走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #713015 (CM) & #713014 (egg0073) +He's my younger brother. 他是我弟弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #511852 (CK) & #771449 (Martha) +He's scared of that dog. 他怕那只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2805867 (CK) & #4649886 (hoyakoh) +He's the same age as me. 他和我同岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2307533 (erikspen) & #335118 (fucongcong) +His parents ran a hotel. 他的父母经营一家酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #287792 (CK) & #616207 (sarah) +His room is always tidy. 他的房間總是很整齊。 CC-BY 2.0 (France) Attribution: tatoeba.org #287454 (CM) & #8387370 (wangchou) +How about another round? 再來一輪怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #31564 (CM) & #871218 (Martha) +How about taking a rest? 休息一下怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #27831 (CK) & #833792 (Martha) +How are you doing today? 你今天怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #429851 (baxtree) & #388517 (fucongcong) +How did your weekend go? 你的周末是怎么过的? CC-BY 2.0 (France) Attribution: tatoeba.org #7770307 (sharris123) & #472764 (fucongcong) +How do you go to school? 你是怎麼去上學的? CC-BY 2.0 (France) Attribution: tatoeba.org #38327 (CK) & #849260 (Martha) +How far is it from here? 离这儿有多远? CC-BY 2.0 (France) Attribution: tatoeba.org #62119 (CK) & #335163 (fucongcong) +How important can it be? 它能有多重要? CC-BY 2.0 (France) Attribution: tatoeba.org #4016994 (CK) & #8635447 (slo_oth) +How much do you love me? 你有多爱我? CC-BY 2.0 (France) Attribution: tatoeba.org #1816761 (Amastan) & #5983653 (verdastelo9604) +How much does this cost? 多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #432824 (aliene) & #6158471 (xjjAstrus) +How much is this camera? 这部相机多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #61222 (CK) & #5096459 (mirrorvan) +How much is this camera? 這個相機多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #61222 (CK) & #5367935 (xjjAstrus) +How soon do you need it? 你多久后需要它? CC-BY 2.0 (France) Attribution: tatoeba.org #66149 (CK) & #332611 (fucongcong) +How's the weather there? 那儿是什么天气? CC-BY 2.0 (France) Attribution: tatoeba.org #50753 (autuno) & #335515 (fucongcong) +How's the weather there? 那里的气候怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #50753 (autuno) & #406353 (fucongcong) +Hurry up! We'll be late. 快點!我們要遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433479 (CK) & #834398 (Martha) +I always walk to school. 我總是走路到學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #29032 (CK) & #832966 (Martha) +I am disgusted with him. 我厌恶他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260337 (CK) & #1776814 (sadhen) +I am proud of my father. 我为我父亲而自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1827298 (Amastan) & #2052147 (sadhen) +I am reading a book now. 我現在正在讀一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #257629 (CK) & #917961 (Martha) +I am the fastest runner. 我是跑得最快的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #257652 (CK) & #917826 (Martha) +I am the fastest runner. 我是最快的跑者。 CC-BY 2.0 (France) Attribution: tatoeba.org #257652 (CK) & #917828 (Martha) +I appreciate good music. 我欣賞好音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #255852 (CK) & #916646 (Martha) +I arrived two weeks ago. 我在兩週前到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2169044 (CK) & #2638703 (cienias) +I asked him for a favor. 我請他幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #403375 (CK) & #846089 (Martha) +I asked him point-blank. 我直接地問了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #321894 (CK) & #826225 (Martha) +I ate your strawberries. 我吃了你的草莓。 CC-BY 2.0 (France) Attribution: tatoeba.org #6796815 (Eccles17) & #8848658 (crescat) +I baked some apple pies. 我烤了蘋果派。 CC-BY 2.0 (France) Attribution: tatoeba.org #4240107 (CK) & #6548864 (verdastelo9604) +I believe you're honest. 我相信你是诚实的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4737013 (paper1n0) & #2037336 (sadhen) +I bought this yesterday. 昨天我買了這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #54958 (CK) & #917929 (Martha) +I can't believe my eyes. 我无法相信自己的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #6133 (CK) & #332561 (fucongcong) +I can't find my glasses. 我找不到我的眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #31841 (CK) & #834525 (Martha) +I can't find my glasses. 我的眼鏡不見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31841 (CK) & #2757230 (cienias) +I can't give up smoking. 我無法戒煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #256287 (CK) & #941167 (Martha) +I can't live without TV. 没有电视,我无法生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230703 (alec) & #334161 (fucongcong) +I can't put up with him. 我受不了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #284757 (CK) & #782167 (fucongcong) +I can't stand the noise. 我不能忍受這個噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #44413 (CK) & #833180 (Martha) +I can't stand this heat. 我受不了這麼熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #433760 (CK) & #834497 (Martha) +I can't stand this pain. 我無法忍受這個痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #278311 (CK) & #3742617 (egg0073) +I collect foreign coins. 我收集外國硬幣。 CC-BY 2.0 (France) Attribution: tatoeba.org #9139633 (LanguageExpert) & #9139535 (xjjAstrus) +I could hardly hear him. 我幾乎聽不到他的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #403363 (CK) & #833006 (Martha) +I couldn't get to sleep. 我無法入睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #36519 (CK) & #833041 (Martha) +I do not play the piano. 我不彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #255458 (CK) & #910384 (Martha) +I don't have a computer. 我沒有電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1773405 (Spamster) & #4104421 (andymakespasta) +I don't have any change. 我没任何零钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #249944 (CK) & #334618 (fucongcong) +I don't like rock music. 我不喜欢摇滚乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361325 (CK) & #5617205 (verdastelo9604) +I don't like your smile. 我不喜欢你的微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315312 (CK) & #8589249 (easononizuka) +I don't see much of him. 我不常見到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #67662 (CK) & #846449 (Martha) +I don't want Tom to die. 我不想让汤姆死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2011875 (CK) & #5965732 (verdastelo9604) +I don't want it anymore. 我再也不想要了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2389 (CK) & #772035 (Martha) +I don't want to grow up. 我不想长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #3709621 (CK) & #3839406 (sadhen) +I encountered a problem. 我遇到了故障。 CC-BY 2.0 (France) Attribution: tatoeba.org #7772348 (sharris123) & #472911 (fucongcong) +I enjoy taking pictures. 我喜欢拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #265308 (CK) & #334388 (fucongcong) +I expect a lot from him. 我對他期望很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #403381 (CK) & #849024 (Martha) +I fell in love with her. 我爱上了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308938 (Hellerick) & #816446 (fucongcong) +I felt my hands tremble. 我感覺到我的手在震動 CC-BY 2.0 (France) Attribution: tatoeba.org #258447 (CM) & #4365373 (npes89033) +I gave Tom one of those. 我给了汤姆其中之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151407 (CK) & #5574769 (verdastelo9604) +I got a letter from her. 我收到她的來信。 CC-BY 2.0 (France) Attribution: tatoeba.org #261023 (CK) & #846090 (Martha) +I got lost in the woods. 我在树林里迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735759 (CK) & #678189 (Martha) +I got up early as usual. 我和往常一样起得很早。 CC-BY 2.0 (France) Attribution: tatoeba.org #253117 (CK) & #400006 (fucongcong) +I had a dream about him. 我夢到了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260747 (CK) & #801994 (Martha) +I had a happy childhood. 我的童年很快乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #257385 (CK) & #8727834 (crescat) +I had her sweep my room. 我讓她打掃了我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #308326 (CK) & #803778 (Martha) +I hate myself sometimes. 偶尔我会讨厌我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #3064280 (Hybrid) & #8696346 (crescat) +I have a bath every day. 我每天洗一次澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #261819 (CK) & #678006 (Martha) +I have a lot of regrets. 我觉得太遗憾了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5187013 (CK) & #1506809 (fenfang557) +I have just eaten lunch. 我剛吃過午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #255029 (CK) & #835777 (Martha) +I have lost my umbrella. 我丢了我的伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #245032 (CK) & #332434 (fucongcong) +I have no books to read. 我没书可读。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498981 (weihaiping) & #1490533 (sadhen) +I have to iron my shirt. 我必須熨我的襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #53084 (CK) & #777664 (Martha) +I have to sell my house. 我得卖我的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1744777 (Amastan) & #5581729 (verdastelo9604) +I have to take medicine. 我必须吃药。 CC-BY 2.0 (France) Attribution: tatoeba.org #5999 (CK) & #1778314 (sadhen) +I have written a letter. 我写了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #2151628 (Tokeingah) & #1792513 (sadhen) +I haven't finished this. 我做不了這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #5933015 (peterius) & #5524948 (xjjAstrus) +I heard a strange sound. 我聽見一聲怪響。 CC-BY 2.0 (France) Attribution: tatoeba.org #322678 (CK) & #6114392 (verdastelo9604) +I heard it on the radio. 我從收音機聽到它。 CC-BY 2.0 (France) Attribution: tatoeba.org #255910 (CK) & #848957 (Martha) +I heard it on the radio. 我從廣播中聽到它。 CC-BY 2.0 (France) Attribution: tatoeba.org #255910 (CK) & #848959 (Martha) +I heard someone come in. 我聽到有人進來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360747 (CK) & #6094837 (verdastelo9604) +I hid in the tall grass. 我躲在高草丛里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8933496 (CK) & #8936488 (crescat) +I hope we stay in touch. 我希望我们能保持联系。 CC-BY 2.0 (France) Attribution: tatoeba.org #56276 (CK) & #334648 (fucongcong) +I just can't believe it. 我真是不能相信。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361056 (CK) & #5650521 (verdastelo9604) +I just want to be happy. 我只想高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2815359 (Hybrid) & #6628356 (verdastelo9604) +I just want you to come. 我只是想要你来。 CC-BY 2.0 (France) Attribution: tatoeba.org #324999 (CK) & #816467 (fucongcong) +I know all my neighbors. 我认识我所有的邻居。 CC-BY 2.0 (France) Attribution: tatoeba.org #4977826 (CK) & #5617277 (verdastelo9604) +I know all your secrets. 我知道你所有的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #6398203 (Hybrid) & #8696434 (morningstar) +I know that he was busy. 我知道他忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #284179 (CK) & #5905027 (verdastelo9604) +I know what his name is. 我知道他叫什么名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #287622 (CK) & #390853 (fucongcong) +I know why you're happy. 我知道你为什么高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #7213149 (CK) & #1415738 (sadhen) +I know you're busy, too. 我知道,您也很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2046743 (CK) & #5122672 (xjjAstrus) +I like grape jelly best. 葡萄味的果凍是我最喜歡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #261563 (CK) & #8824089 (xjjAstrus) +I like my job very much. 我非常喜欢我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007 (brauliobezerra) & #407231 (fucongcong) +I like playing baseball. 我喜歡打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #262012 (CK) & #832781 (Martha) +I like shopping on Ebay. 我喜欢在eBay上购物。 CC-BY 2.0 (France) Attribution: tatoeba.org #476209 (morganlmallory) & #476186 (fucongcong) +I like singing with Tom. 我喜欢跟汤姆唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715087 (CK) & #5715120 (verdastelo9604) +I like tennis very much. 我非常喜歡網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #33551 (CK) & #834884 (Martha) +I like the way you walk. 我喜欢你走路的方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #63695 (CK) & #343367 (fucongcong) +I like walking at night. 我喜歡在夜晚走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #321974 (CK) & #835768 (Martha) +I love elderberry juice. 我愛接骨木果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1475901 (niceguydave) & #5548495 (egg0073) +I met him on the street. 我在街上遇到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260466 (CK) & #1019864 (egg0073) +I met with an old woman. 我遇见了一位老妇人。 CC-BY 2.0 (France) Attribution: tatoeba.org #893961 (Zifre) & #465033 (fucongcong) +I missed the last train. 我錯過了最後一班火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #411317 (CK) & #835328 (Martha) +I need some good advice. 我需要一些好的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #25286 (CK) & #834743 (Martha) +I need to know tomorrow. 我明天需要知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #386759 (Mouseneb) & #334716 (fucongcong) +I need to take a shower. 我需要洗个澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #388269 (sysko) & #388520 (fucongcong) +I need your cooperation. 我需要你们的合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140165 (CK) & #2254273 (KerenDeng) +I only know him by name. 我只知道他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #322930 (CK) & #785817 (fucongcong) +I only wanted to forget. 我只想忘记。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728066 (CM) & #5965738 (verdastelo9604) +I owe everything to Tom. 我什么都欠汤姆的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4980062 (CK) & #5556152 (verdastelo9604) +I owe him 1,000 dollars. 我欠他1000美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #284531 (CK) & #335935 (fucongcong) +I owe my success to him. 我把我的成功歸功於他。 CC-BY 2.0 (France) Attribution: tatoeba.org #246857 (CK) & #881834 (Martha) +I paid him five dollars. 我付了他五塊美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #260390 (CK) & #2757053 (cienias) +I painted the gate blue. 我把大門漆成了藍色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321971 (CK) & #834993 (Martha) +I plan to buy him a pen. 我打算給他買一支鋼筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #499581 (CK) & #881230 (Martha) +I play volleyball a lot. 我常打排球。 CC-BY 2.0 (France) Attribution: tatoeba.org #34990 (CK) & #836117 (Martha) +I really agree with you. 我非常同意你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2381339 (FeuDRenais) & #918032 (Martha) +I really don't know Tom. 我真不了解汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715091 (CK) & #5715124 (verdastelo9604) +I really like what I do. 我真喜欢我做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5187036 (CK) & #5983589 (verdastelo9604) +I saw him looking at me. 我看見他在看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #283746 (CK) & #859144 (Martha) +I saw him sawing a tree. 我看见他正在锯一棵树。 CC-BY 2.0 (France) Attribution: tatoeba.org #284214 (CK) & #415638 (fucongcong) +I saw tears in her eyes. 我在她的眼睛裡看到淚水。 CC-BY 2.0 (France) Attribution: tatoeba.org #309814 (CK) & #861391 (Martha) +I still have a question. 我還有个問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619340 (CK) & #6145383 (verdastelo9604) +I suppose you're hungry. 我猜想您饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16196 (CK) & #476634 (fucongcong) +I suppose you're hungry. 我猜想你饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16196 (CK) & #476635 (fucongcong) +I take a bath every day. 我每天洗一次澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #352295 (human600) & #678006 (Martha) +I think I'm going crazy. 我认为我快疯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #953628 (CK) & #1786006 (sadhen) +I think I'm intelligent. 我觉得我很聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #8433429 (Ricardo14) & #8463648 (gumblex) +I think Tom is athletic. 我认为汤姆好运动。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171966 (CK) & #5650467 (verdastelo9604) +I think Tom is sleeping. 我以為湯姆在睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408290 (CK) & #6594652 (xjjAstrus) +I think Tom is talented. 我認為湯姆有才能。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183980 (CK) & #6568347 (verdastelo9604) +I think that's not true. 我認為那不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916481 (CK) & #6103172 (verdastelo9604) +I thought Tom would win. 我认为汤姆会赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5602701 (Hybrid) & #5911586 (verdastelo9604) +I thought he would come. 我以为他会来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #260165 (CK) & #510675 (fucongcong) +I usually get up at six. 我一般六点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #253112 (CK) & #8780276 (crescat) +I want a piece of candy. 我想要一颗糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2067 (CK) & #503091 (fucongcong) +I want him to read this. 想让他读这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #284568 (CK) & #3630309 (suitchic) +I want to eat apple pie. 我想吃苹果派。 CC-BY 2.0 (France) Attribution: tatoeba.org #252663 (adjusting) & #333852 (fucongcong) +I want to eat ice cream. 我想吃冰淇凌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1370839 (TuckingFypo) & #8762953 (crescat) +I want to get rid of it. 我想擺脫它。 CC-BY 2.0 (France) Attribution: tatoeba.org #38715 (CK) & #887871 (Martha) +I want to go for a swim. 我想去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #487887 (CK) & #881027 (Martha) +I want to see you again. 我希望再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17494 (CK) & #856385 (Martha) +I wasn't busy last week. 我上周不忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #259067 (CK) & #332678 (fucongcong) +I wasn't busy yesterday. 我昨天不忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #257810 (CK) & #832935 (Martha) +I went there many times. 我去那裡很多次了。 CC-BY 2.0 (France) Attribution: tatoeba.org #411283 (CK) & #835488 (Martha) +I will ask him tomorrow. 我明天會問他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1330505 (CK) & #881082 (Martha) +I will ask him tomorrow. 明天我会问他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1330505 (CK) & #7768146 (jiangche) +I will love you forever. 我會永遠愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #66141 (CK) & #803712 (Martha) +I wish I could help you. 但願我可以幫助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63889 (CK) & #850300 (Martha) +I wish I had more money. 我希望我有更多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1888388 (CK) & #8215741 (verdastelo9604) +I wish he were here now. 我希望他現在在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #283642 (CK) & #857867 (Martha) +I wish to see my father. 我希望看看我的父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #33478 (CK) & #851532 (Martha) +I wonder if he loves me. 我不知道他是否愛我。 CC-BY 2.0 (France) Attribution: tatoeba.org #298092 (xtofu80) & #803793 (Martha) +I work in this building. 我在这栋楼里工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546127 (CK) & #7773207 (jiangche) +I'd be crazy to do that. 我做那事会疯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546123 (CK) & #5911763 (verdastelo9604) +I'd do anything for Tom. 我会为汤姆做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546122 (CK) & #5581766 (verdastelo9604) +I'd like three of these. 这我要三个。 CC-BY 2.0 (France) Attribution: tatoeba.org #54957 (CK) & #462042 (fucongcong) +I'd like three of these. 这个给我来三个。 CC-BY 2.0 (France) Attribution: tatoeba.org #54957 (CK) & #727503 (fucongcong) +I'd like to buy a house. 我想买套房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #6890591 (CK) & #8929192 (crescat) +I'd like to go with Tom. 我想跟湯姆走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936462 (CK) & #6077445 (verdastelo9604) +I'd like to pay in cash. 我想用現金支付。 CC-BY 2.0 (France) Attribution: tatoeba.org #39365 (CK) & #860986 (Martha) +I'd rather stay at home. 我寧願待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #24262 (CK) & #834698 (Martha) +I'd rather stay than go. 我寧願待在這裡而不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #516345 (CK) & #834664 (Martha) +I'll attend the meeting. 我將參加這個會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #256570 (CK) & #819443 (Martha) +I'll be back in a jiffy. 我马上就回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #593653 (darinmex) & #819694 (fucongcong) +I'll call you on Monday. 我會在星期一給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #5590916 (CK) & #6197298 (verdastelo9604) +I'll come to your place. 我會來你的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #17365 (CK) & #834981 (Martha) +I'll fight to the death. 我会战斗至死。 CC-BY 2.0 (France) Attribution: tatoeba.org #9139654 (CK) & #5978346 (verdastelo9604) +I'll join you all later. 我晚会加入你们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546066 (CK) & #5978322 (verdastelo9604) +I'll see you in an hour. 我一小时内来见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3096260 (CK) & #1314408 (vicch) +I'll see you next month. 我下個月會來看你。 CC-BY 2.0 (France) Attribution: tatoeba.org #325025 (CK) & #836126 (Martha) +I'll take this umbrella. 我將拿這把傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #59189 (CK) & #825196 (Martha) +I'll tell you the truth. 我會告訴你真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #252788 (CK) & #6127308 (verdastelo9604) +I'll treat you to sushi. 我會請你吃壽司。 CC-BY 2.0 (France) Attribution: tatoeba.org #266204 (CK) & #834694 (Martha) +I'll visit him tomorrow. 明天我將拜訪他。 CC-BY 2.0 (France) Attribution: tatoeba.org #466168 (CK) & #771466 (Martha) +I'm concerned about Tom. 我在為湯姆擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #680556 (Source_VOA) & #5924732 (xjjAstrus) +I'm content with my job. 我對我的工作感到滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #8322916 (CK) & #917910 (Martha) +I'm dripping with sweat. 我正流着汗。 CC-BY 2.0 (France) Attribution: tatoeba.org #21028 (CM) & #336502 (fucongcong) +I'm fed up with English. 我受够英文了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256207 (CM) & #784501 (fucongcong) +I'm glad you were right. 很高兴你是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2546008 (CK) & #4625751 (Yashanti) +I'm hers and she's mine. 我是她的,而她是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6872926 (CK) & #5526849 (egg0073) +I'm in a bad mood today. 我今天的心情不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #837416 (Mouseneb) & #836563 (egg0073) +I'm just looking around. 我只是到處看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #40017 (CK) & #771411 (Martha) +I'm not absolutely sure. 我不完全肯定。 CC-BY 2.0 (France) Attribution: tatoeba.org #272628 (CK) & #794143 (fucongcong) +I'm not afraid of death. 我不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #801769 (CM) & #802838 (fucongcong) +I'm not afraid of dying. 我不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2561548 (svhschinese) & #802838 (fucongcong) +I'm not as brave as Tom. 我不像湯姆那樣勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938964 (CK) & #6105278 (verdastelo9604) +I'm not really prepared. 我沒有真的準備好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5187253 (CK) & #6075522 (verdastelo9604) +I'm open to suggestions. 我愿意接受建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #700006 (darinmex) & #805607 (fucongcong) +I'm so proud of my boys. 我為我的孩子們感到很驕傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #251874 (CK) & #795997 (Martha) +I'm sorry I didn't call. 我很抱歉我没有打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2561737 (Hybrid) & #5556044 (verdastelo9604) +I'm sorry I was so rude. 對不起,我太無理了。 CC-BY 2.0 (France) Attribution: tatoeba.org #66880 (CK) & #795253 (Martha) +I'm sorry to bother you. 對不起打擾你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64416 (CK) & #850363 (Martha) +I'm still the boss here. 我仍是这里的老板。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545903 (CK) & #3770552 (Debbie_Linder) +I'm such an unlucky guy. 我真是不走运的家伙。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825674 (CK) & #5967292 (verdastelo9604) +I'm sure Tom can't swim. 我确定汤姆不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715095 (CK) & #5715128 (verdastelo9604) +I'm sure of his success. 我肯定他会成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #259954 (CM) & #333257 (fucongcong) +I'm very busy this week. 这周我非常忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #242108 (CK) & #8692954 (crescat) +I'm willing to help him. 我願意幫湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #20659 (CK) & #6119430 (verdastelo9604) +I've already tried that. 我已经试过那个了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280352 (CK) & #4620857 (Yashanti) +I've forgotten his name. 我已经忘了他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #740067 (Shishir) & #1746065 (sadhen) +I've never heard of Tom. 我從沒聽說過湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5471938 (CK) & #6091821 (verdastelo9604) +I've quit drinking beer. 我已經不喝啤酒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #435193 (CK) & #819401 (Martha) +Is Tom living in Boston? 汤姆住在波士顿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4811752 (CK) & #4815125 (McMeao) +Is it about ten o'clock? 大約十點鐘嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #266488 (CK) & #835626 (Martha) +Is that a picture of me? 那是我的照片嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #67030 (CK) & #859379 (Martha) +Is that black bag yours? 那個黑色提包是你的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68385 (CK) & #778887 (Martha) +Is this really worth it? 这样真的值得吗? CC-BY 2.0 (France) Attribution: tatoeba.org #711978 (kcaze) & #710384 (fucongcong) +It all seems so strange. 看起来全都太奇怪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820559 (CK) & #5631906 (verdastelo9604) +It can be done in a day. 它可以在一天之內完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #42833 (CK) & #893493 (Martha) +It didn't cross my mind. 这不是我的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846786 (CK) & #4846809 (pig8322) +It happens occasionally. 它偶尔会发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2248732 (CK) & #2567498 (fenfang557) +It looks like an orange. 它看起來像橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171873 (CK) & #8032171 (verdastelo9604) +It may freeze next week. 下周可能会结冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #1398 (CK) & #501377 (fucongcong) +It needs to be repaired. 它需要修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #42330 (CK) & #5780511 (verdastelo9604) +It was cloudy yesterday. 昨天是多雲。 CC-BY 2.0 (France) Attribution: tatoeba.org #244466 (CK) & #6092451 (xjjAstrus) +It was truly depressing. 真的令人丧气。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497207 (CK) & #4757754 (ryanwoo) +It won't take much time. 不會花很多時間的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1170429 (CM) & #1170427 (egg0073) +It's a quarter to three. 現在是兩點四十五分。 CC-BY 2.0 (France) Attribution: tatoeba.org #703322 (papabear) & #4262052 (egg0073) +It's almost six o'clock. 差不多六点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41220 (CK) & #609853 (CLARET) +It's almost six o'clock. 快要六點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41220 (CK) & #832800 (Martha) +It's going to rain soon. 天快要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #995246 (NickC) & #335128 (fucongcong) +It's just what I wanted. 我想要的就是这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #277718 (CK) & #1314313 (vicch) +It's nearly six o'clock. 差不多六点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #519113 (blay_paul) & #609853 (CLARET) +It's not a dream at all. 它根本不是夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5746319 (CM) & #6120895 (verdastelo9604) +It's one of the reasons. 這是其中一個原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #2988763 (CM) & #6119407 (verdastelo9604) +It's very uncomfortable. 它真是不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2249380 (CK) & #6059526 (verdastelo9604) +It's wrong to tell lies. 說謊是錯誤的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713482 (CK) & #798066 (Martha) +It's your favorite song. 它是你最喜歡的歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1461275 (CM) & #6073890 (verdastelo9604) +Keep an eye on the bags. 把包包看好。 CC-BY 2.0 (France) Attribution: tatoeba.org #35156 (CK) & #859307 (Martha) +Keep it in a cool place. 保存在陰涼的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #42035 (CK) & #798319 (Martha) +Kyoto is worth visiting. 京都值得游览。 CC-BY 2.0 (France) Attribution: tatoeba.org #19289 (CK) & #782363 (fucongcong) +Leave the room as it is. 保留原狀地離開房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #319587 (CK) & #797088 (Martha) +Let me have a try at it. 让我试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #249704 (CK) & #333051 (fucongcong) +Let me introduce myself. 請允許我自我介紹一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #353241 (Hertz) & #6559019 (xjjAstrus) +Let them have their fun. 讓他們鬧去。 CC-BY 2.0 (France) Attribution: tatoeba.org #7841343 (basilhan) & #5551610 (xjjAstrus) +Let's all pray together. 大家来一起祈祷吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1387234 (CM) & #8673587 (crescat) +Let's drive to the lake. 讓我們開車到湖邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #239993 (CK) & #834864 (Martha) +Let's end this nonsense. 让我们结束这胡言乱语。 CC-BY 2.0 (France) Attribution: tatoeba.org #5178444 (CK) & #5983675 (verdastelo9604) +Let's forget it for now. 讓我們現在忘了它吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3392683 (CK) & #6103225 (verdastelo9604) +Let's stay here tonight. 讓我們今晚留在這裡吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #243335 (CK) & #6131452 (verdastelo9604) +Life has been very hard. 生活很艰苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666218 (CK) & #6132212 (verdastelo9604) +London is on the Thames. 倫敦在泰唔士河旁。 CC-BY 2.0 (France) Attribution: tatoeba.org #29276 (CK) & #5363935 (egg0073) +Man cannot live forever. 人无法长生不死。 CC-BY 2.0 (France) Attribution: tatoeba.org #628914 (blay_paul) & #1839150 (sadhen) +Mary can speak Japanese. 瑪麗會講日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #31894 (CK) & #825168 (Martha) +Mary dyed her hair blue. 瑪麗把她的頭髮染成藍色。 CC-BY 2.0 (France) Attribution: tatoeba.org #3469937 (Hybrid) & #6059536 (verdastelo9604) +Mary has just come home. 瑪麗剛剛回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #31978 (CK) & #834750 (Martha) +Mary is Tom's secretary. 玛丽是汤姆的秘书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1030062 (CK) & #1397101 (mtdot) +May I borrow your knife? 我能借一下你的刀吗? CC-BY 2.0 (France) Attribution: tatoeba.org #36541 (CK) & #2052690 (sadhen) +May I see the wine list? 我可以看一下酒單嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29224 (CK) & #859724 (Martha) +May I see your passport? 我可以看看你的護照嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #35268 (CK) & #834746 (Martha) +May I take your picture? 我可以幫你照相嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17088 (CK) & #835370 (Martha) +Most boys like baseball. 大部分男生喜欢棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #33312 (CK) & #846802 (fucongcong) +My father quit drinking. 父亲戒酒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1017956 (DanaDescalza) & #334237 (fucongcong) +My mother isn't at home. 我媽媽不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #593247 (CK) & #6460644 (verdastelo9604) +My parents are divorced. 我父母离婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456461 (lukaszpp) & #2109174 (sadhen) +My passport has expired. 我的護照過期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135432 (CK) & #5995371 (xjjAstrus) +My plan is to buy a car. 我打算買輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #250752 (CK) & #781081 (Martha) +My strength is all gone. 我的力气耗尽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #325907 (CK) & #8723588 (crescat) +My uncle gave me a book. 我的叔叔給了我一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #65060 (CK) & #805230 (Martha) +My uncle gave me a gift. 我叔叔给了我一份礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #707207 (papabear) & #334104 (fucongcong) +My uncle gave me a gift. 我叔叔送了我一样礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #707207 (papabear) & #811303 (fucongcong) +Nara is a very old city. 奈良是个非常古老的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #280748 (CK) & #332929 (fucongcong) +No one came except Mary. 除了瑪麗沒有人來。 CC-BY 2.0 (France) Attribution: tatoeba.org #324988 (CK) & #834618 (Martha) +No one ran ahead of him. 没有人跑在他前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #40340 (CK) & #332726 (fucongcong) +No one voted against it. 没有人投反对票。 CC-BY 2.0 (France) Attribution: tatoeba.org #804297 (Source_VOA) & #2000401 (sadhen) +No students were absent. 沒有學生缺席。 CC-BY 2.0 (France) Attribution: tatoeba.org #238507 (CK) & #885374 (Martha) +No, thank you. I'm full. 不,謝謝你。我吃飽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #65670 (CK) & #835728 (Martha) +Nobody gave us a chance. 没人给我们机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #4917387 (CK) & #5685878 (verdastelo9604) +Not everyone is smiling. 不是每個人都在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5087408 (CK) & #6333808 (verdastelo9604) +Now I need you to leave. 現在我需要你離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #5746238 (CM) & #6103039 (verdastelo9604) +Our baby can't talk yet. 我家宝宝还不会说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873463 (CK) & #2032294 (ydcok) +Paper is made from wood. 纸是由木制成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #263352 (CK) & #406363 (fucongcong) +People can't keep quiet. 人們無法保持沉默。 CC-BY 2.0 (France) Attribution: tatoeba.org #7787237 (sharris123) & #736278 (Martha) +Perhaps it was worth it. 可能是值得的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736546 (CK) & #5581805 (verdastelo9604) +Please bring me my bill. 請把帳單給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #435202 (CK) & #839548 (Martha) +Please give me the menu. 請給我菜單。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753739 (garborg) & #713003 (egg0073) +Please keep this secret. 請保守這個秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #544583 (CK) & #826209 (Martha) +Please leave right away. 請馬上離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #433545 (CK) & #832956 (Martha) +Please pass me the salt. 請把鹽遞給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #25741 (CK) & #838594 (Martha) +Please say it once more. 請再說一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #433595 (CK) & #845973 (Martha) +Please send me a letter. 請寄信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #542518 (CK) & #780276 (Martha) +Please show me the menu. 請給我菜單。 CC-BY 2.0 (France) Attribution: tatoeba.org #713005 (CM) & #713003 (egg0073) +Please show me your bag. 請讓我看看你的袋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #35157 (CK) & #844616 (Martha) +Please show your ticket. 请出示您的票子。 CC-BY 2.0 (France) Attribution: tatoeba.org #272481 (autuno) & #746061 (fucongcong) +Please tell me about it. 请告诉我它的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #785516 (CK) & #5670797 (verdastelo9604) +Please write with a pen. 请用钢笔写。 CC-BY 2.0 (France) Attribution: tatoeba.org #33806 (saeb) & #408249 (fucongcong) +Put it back on the desk. 把它放回桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #41852 (CK) & #798178 (Martha) +Put it out of your mind. 別去想它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721915 (CM) & #6628668 (verdastelo9604) +School starts next week. 學校下週開學。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574781 (n1ls) & #713281 (egg0073) +She always smiles at me. 她總是對我微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #310433 (CK) & #839100 (Martha) +She asked him questions. 她問了他問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #886966 (CK) & #1440958 (egg0073) +She asked me a question. 她問了我一個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #314216 (CK) & #842291 (Martha) +She came home very late. 她很晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #528259 (fanty) & #781124 (Martha) +She can't write or read. 她不会读书写字。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442138 (CK) & #1454431 (sadhen) +She cried her heart out. 她哭得肝腸寸斷。 CC-BY 2.0 (France) Attribution: tatoeba.org #310880 (CM) & #772138 (Martha) +She does not like sushi. 她不喜欢寿司。 CC-BY 2.0 (France) Attribution: tatoeba.org #621807 (xiuqin) & #464926 (fucongcong) +She doesn't like soccer. 她不喜欢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #310875 (CK) & #819783 (fucongcong) +She gave me a shy smile. 她給了我一個靦腆的笑容。 CC-BY 2.0 (France) Attribution: tatoeba.org #314206 (CK) & #805226 (Martha) +She gave us lots to eat. 她給了我們很多吃的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #308573 (CK) & #805025 (Martha) +She got wet to the skin. 她渾身濕透了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311031 (CK) & #802100 (Martha) +She has attractive eyes. 她有一双迷人的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #317194 (CK) & #1238192 (sunnywqing) +She has plenty of books. 她有大量的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #311537 (CK) & #6028131 (verdastelo9604) +She hates green peppers. 她討厭青椒。 CC-BY 2.0 (France) Attribution: tatoeba.org #312051 (CK) & #6940163 (xjjAstrus) +She is already sleeping. 她已经睡下了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1384222 (Eldad) & #4270140 (notabene) +She is dressed in white. 她穿着白色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #316164 (CK) & #8738757 (crescat) +She is having lunch now. 她现在正在吃午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #315806 (CK) & #3783367 (Debbie_Linder) +She is not always happy. 她不總是高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #316650 (CK) & #6070845 (verdastelo9604) +She liked him right off. 她立刻喜歡上他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388401 (CK) & #840573 (Martha) +She lived a lonely life. 她的生活很寂寞。 CC-BY 2.0 (France) Attribution: tatoeba.org #310878 (CK) & #5411250 (egg0073) +She made him a new coat. 她為他做了件新大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #887287 (CK) & #5496241 (egg0073) +She made him a new suit. 她為他做了一套新衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #388337 (CK) & #852176 (Martha) +She must be over eighty. 她肯定超过80岁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310212 (CK) & #334099 (fucongcong) +She must have been sick. 她一定是生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313343 (CK) & #844516 (Martha) +She said she had a cold. 她說她感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316854 (CK) & #6146649 (verdastelo9604) +She seems to be unhappy. 她看起来不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #316726 (CK) & #336021 (fucongcong) +She seems to be unhappy. 她看起來不快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #316726 (CK) & #780340 (Martha) +She showed me her album. 她給我看她的相簿。 CC-BY 2.0 (France) Attribution: tatoeba.org #314133 (CK) & #781446 (Martha) +She spoke Japanese well. 她日语说的很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #316084 (CK) & #2195330 (sadhen) +She studies mathematics. 她学习数学 CC-BY 2.0 (France) Attribution: tatoeba.org #309992 (CK) & #4456365 (plutowu) +She took care of my dog. 她照顧了我的狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #314316 (CK) & #5405534 (egg0073) +She understands you now. 她现在了解你。 CC-BY 2.0 (France) Attribution: tatoeba.org #881321 (CM) & #5993939 (verdastelo9604) +She was aching all over. 她全身都疼。 CC-BY 2.0 (France) Attribution: tatoeba.org #315650 (CK) & #8765254 (crescat) +She was born in America. 她生在美洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422501 (CK) & #7771873 (jiangche) +She was dressed in wool. 她穿著羊毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #388606 (CK) & #844458 (Martha) +She's fluent in English. 她英語說得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #837423 (Mouseneb) & #836418 (Martha) +Show me another example. 再给我举个例子。 CC-BY 2.0 (France) Attribution: tatoeba.org #320313 (CK) & #794248 (fucongcong) +So, what'll you give me? 那你会给我什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3151306 (CK) & #5663560 (verdastelo9604) +Someone is watching you. 有人在看著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #276316 (CK) & #832940 (Martha) +Someone yelled for help. 有人呼救。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499315 (CK) & #5907627 (verdastelo9604) +Sometimes I hate myself. 偶尔我会讨厌我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #3322696 (pne) & #8696346 (crescat) +Sometimes you get lucky. 你有時候真走運。 CC-BY 2.0 (France) Attribution: tatoeba.org #2879529 (CK) & #6535852 (verdastelo9604) +Sorry, I made a mistake. 对不起,我错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2312025 (CK) & #4881640 (musclegirlxyp) +Spell your name, please. 请拼一下您的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #70363 (CK) & #787371 (fucongcong) +Stay out of my business. 别管我的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891867 (CK) & #5762998 (verdastelo9604) +Swimming is easy for me. 游泳對我來說很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #487827 (CK) & #836391 (Martha) +Sydney is far from here. 雪梨離這裡很遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #62130 (CK) & #842434 (Martha) +Sydney is far from here. 悉尼离这里很远。 CC-BY 2.0 (France) Attribution: tatoeba.org #62130 (CK) & #1366182 (sadhen) +Take a book and read it. 拿本书读! CC-BY 2.0 (France) Attribution: tatoeba.org #1803 (CK) & #389789 (fucongcong) +Take whichever you want. 拿你想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37992 (CK) & #819360 (Martha) +Tell Tom what you heard. 把你听到的告诉汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3024019 (CK) & #7704612 (leafjensen) +Tell us what to do next. 告訴我們下一步該怎麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #264164 (CK) & #798192 (Martha) +Thank you for yesterday. 昨天的事真的要谢谢您了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4331024 (aixvee) & #5100139 (mirrorvan) +Thank you just the same. 还是要说谢谢的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37638 (CK) & #5092338 (mirrorvan) +That book is a new book. 那本書是一本新書。 CC-BY 2.0 (France) Attribution: tatoeba.org #67821 (CK) & #871134 (Martha) +That changed everything. 那改变了一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250095 (CK) & #4972480 (wzhd) +That doesn't make sense. 这没有任何意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #1569130 (Spamster) & #346785 (fucongcong) +That factory makes toys. 那家工廠生產玩具。 CC-BY 2.0 (France) Attribution: tatoeba.org #543763 (CK) & #825923 (Martha) +That one is really good. 那一個真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5021774 (CK) & #6169153 (verdastelo9604) +That river is dangerous. 那條河是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3324408 (CK) & #5350413 (egg0073) +That was three days ago. 这是三天之前了。 CC-BY 2.0 (France) Attribution: tatoeba.org #995261 (NickC) & #993773 (leoyzy) +That was you, wasn't it? 那就是你,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #2545857 (CK) & #5574634 (verdastelo9604) +That's a bad day for me. 那天我不行。 CC-BY 2.0 (France) Attribution: tatoeba.org #44597 (CK) & #874154 (Martha) +That's a huge challenge. 这是一个巨大的挑战。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496374 (CK) & #4845054 (pig8322) +That's absolutely right. 那是絕對正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433664 (CK) & #825143 (Martha) +That's all I could find. 那是我所有能找到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594092 (CK) & #5574363 (verdastelo9604) +That's an original idea. 那是原创的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #2784324 (sharptoothed) & #5613646 (verdastelo9604) +The baby started crying. 宝宝开始哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733937 (CK) & #481195 (fucongcong) +The baby started to cry. 宝宝开始哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272307 (CK) & #481195 (fucongcong) +The bell rings at eight. 鈴聲在八點鐘響起。 CC-BY 2.0 (France) Attribution: tatoeba.org #49933 (blay_paul) & #836138 (Martha) +The books here are mine. 這兒的書是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8727936 (shou) & #8727931 (shou) +The box is almost empty. 盒子几乎是空的。 CC-BY 2.0 (France) Attribution: tatoeba.org #44463 (CK) & #335903 (fucongcong) +The boy feared the dark. 这个男孩害怕黑夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #45408 (CK) & #1235244 (sunnywqing) +The boy is eating bread. 这个男孩子在吃面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #881343 (Zifre) & #1192411 (sadhen) +The boy remained silent. 男孩依旧沉默不语。 CC-BY 2.0 (France) Attribution: tatoeba.org #47434 (CK) & #8935964 (crescat) +The butterfly flew away. 蝴蝶飛走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7805705 (sharris123) & #6017478 (xjjAstrus) +The cat caught the rats. 猫抓住了老鼠。 CC-BY 2.0 (France) Attribution: tatoeba.org #282041 (CK) & #332496 (fucongcong) +The contract was signed. 契約簽訂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2047559 (halfb1t) & #6047485 (verdastelo9604) +The cup is on the table. 杯子在桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #879572 (CK) & #2040505 (sadhen) +The hawk caught a mouse. 這隻鷹抓到一隻老鼠。 CC-BY 2.0 (France) Attribution: tatoeba.org #810698 (slomox) & #810713 (Martha) +The house was in flames. 房子被火吞噬了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24147 (CK) & #8924801 (crescat) +The house was in flames. 房子着火了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24147 (CK) & #8924802 (crescat) +The jet landed at Tokyo. 這架客機降落在東京了。 CC-BY 2.0 (France) Attribution: tatoeba.org #53697 (CK) & #793953 (Martha) +The letter was finished. 信寫完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #938078 (FeuDRenais) & #6151296 (verdastelo9604) +The man is eating bread. 这个男人在吃面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #853262 (piksea) & #1192410 (sadhen) +The moon is already out. 月亮已經出來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #387413 (CK) & #836157 (Martha) +The music was very loud. 那音乐声音十分响。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545847 (CK) & #4147304 (sissima) +The news made her happy. 这消息让她很高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #50076 (CK) & #333657 (fucongcong) +The party was a success. 晚会很成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #386722 (Mouseneb) & #335877 (fucongcong) +The policeman was drunk. 警察醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #757774 (Aeetlrcreejl) & #5856741 (verdastelo9604) +The radio is a bit loud. 收音机的声音有点响。 CC-BY 2.0 (France) Attribution: tatoeba.org #29797 (CK) & #785993 (fucongcong) +The serpent tempted Eve. 蛇誘惑了夏娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #809841 (BraveSentry) & #810035 (Martha) +The sheet is on the bed. 床单在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #462910 (lukaszpp) & #867386 (kooler) +The storm has died down. 暴风雨平息下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #325308 (CK) & #8800827 (crescat) +The sum of 5 and 3 is 8. 五和三的總和是八。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019878 (CM) & #1019879 (egg0073) +The toilet is backed up. 厕所塞住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5870557 (peterius) & #799308 (fucongcong) +The train leaves at six. 火车6点出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #1286887 (CK) & #333835 (fucongcong) +The water turned to ice. 水结成冰了。 CC-BY 2.0 (France) Attribution: tatoeba.org #270834 (CK) & #2241817 (sadhen) +There is a fork missing. 少一把叉子。 CC-BY 2.0 (France) Attribution: tatoeba.org #34390 (autuno) & #745977 (fucongcong) +There is a page missing. 有一页缺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73207 (CK) & #409456 (fucongcong) +There's a back entrance. 有后门。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016054 (CK) & #5696833 (verdastelo9604) +There's some water left. 还剩一点水。 CC-BY 2.0 (France) Attribution: tatoeba.org #6770315 (CK) & #435375 (fucongcong) +These dirty socks stink. 脏袜子散发臭气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2707351 (Hybrid) & #5640744 (verdastelo9604) +These pants fit me well. 我穿這條褲子很合身。 CC-BY 2.0 (France) Attribution: tatoeba.org #463134 (lukaszpp) & #766434 (Martha) +These pants fit me well. 这些裤子我穿起来很合身。 CC-BY 2.0 (France) Attribution: tatoeba.org #463134 (lukaszpp) & #1750348 (sadhen) +They adopted the orphan. 他们收养了那个孤儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #305757 (CK) & #8730054 (crescat) +They always skip school. 他們總是逃學。 CC-BY 2.0 (France) Attribution: tatoeba.org #410544 (CK) & #825759 (Martha) +They are bitter enemies. 他們是仇敵。 CC-BY 2.0 (France) Attribution: tatoeba.org #64512 (CK) & #824637 (Martha) +They changed the system. 他們改變了制度。 CC-BY 2.0 (France) Attribution: tatoeba.org #305809 (mamat) & #858768 (Martha) +They didn't act quickly. 他们没有立刻行动。 CC-BY 2.0 (France) Attribution: tatoeba.org #680071 (Source_VOA) & #818932 (fucongcong) +They don't have to know. 他們不需要知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1667062 (Spamster) & #4742002 (egg0073) +They freed the prisoner. 他們釋放了犯人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360726 (SeeVogel) & #790284 (Martha) +They got here yesterday. 他們昨天到這裡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2737521 (eastasiastudent) & #2737430 (egg0073) +They got into the train. 她們上了火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #307684 (CK) & #9179794 (xjjAstrus) +They got out of the car. 他們下了車。 CC-BY 2.0 (France) Attribution: tatoeba.org #306812 (CK) & #802492 (Martha) +They know what happened. 他们知道发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522320 (Spamster) & #2620174 (fenfang557) +They laughed at my idea. 他們嘲笑我的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #307558 (CK) & #842467 (Martha) +They moved ahead slowly. 他們慢慢地向前進。 CC-BY 2.0 (France) Attribution: tatoeba.org #306100 (Eldad) & #918001 (Martha) +They took our passports. 他們拿了我們的護照。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502490 (CK) & #6635862 (verdastelo9604) +They were going to lose. 他們要輸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822942 (CK) & #6903867 (verdastelo9604) +They'll understand that. 他們會明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #2243565 (CK) & #6101311 (verdastelo9604) +They're self-sufficient. 他们自给自足。 CC-BY 2.0 (France) Attribution: tatoeba.org #1699343 (Spamster) & #1708657 (sadhen) +They're still in Boston. 他們還在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3148347 (CK) & #6073863 (verdastelo9604) +This apple is too small. 這個蘋果太小。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812305 (sharris123) & #6092464 (xjjAstrus) +This book is really old. 這本書真的很舊。 CC-BY 2.0 (France) Attribution: tatoeba.org #769426 (Dardasavta) & #5496315 (egg0073) +This book is very thick. 这本书非常厚。 CC-BY 2.0 (France) Attribution: tatoeba.org #682176 (Source_VOA) & #839835 (fucongcong) +This diamond isn't real. 这颗钻石不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492821 (CK) & #335031 (fucongcong) +This dictionary is mine. 这本字典是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1766709 (CK) & #4845117 (pig8322) +This is a crucial point. 这是一个关键点。 CC-BY 2.0 (France) Attribution: tatoeba.org #8550226 (CK) & #8550380 (slo_oth) +This is a defibrillator. 这是一个除颤器。 CC-BY 2.0 (France) Attribution: tatoeba.org #8550312 (CK) & #8550349 (slo_oth) +This is a stupid design. 这份设计很蠢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4870312 (CK) & #5091289 (mirrorvan) +This is an old building. 这是幢老楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3422036 (CK) & #8511512 (gumblex) +This is really terrible. 这真可怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2832526 (CK) & #5091294 (mirrorvan) +This paragraph is vague. 這一個段落是模糊不清的。 CC-BY 2.0 (France) Attribution: tatoeba.org #57952 (CM) & #778548 (Martha) +This program is a rerun. 这个节目是重播。 CC-BY 2.0 (France) Attribution: tatoeba.org #57468 (CK) & #8777606 (crescat) +This turkey tastes good. 这只火鸡味道很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #58817 (CK) & #335407 (fucongcong) +This will keep you warm. 这个能保暖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2240863 (Hybrid) & #5613650 (verdastelo9604) +Those flowers have died. 那些花已經枯死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #42008 (CK) & #826243 (Martha) +Those flowers have died. 那些花死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #42008 (CK) & #5816153 (xjjAstrus) +Tickets are on sale now. 现在售票。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501253 (CK) & #5611650 (verdastelo9604) +Tom and I are teammates. 湯姆和我是隊友。 CC-BY 2.0 (France) Attribution: tatoeba.org #6273107 (CK) & #6635895 (verdastelo9604) +Tom and Mary were alone. 汤姆和玛丽单独在一起 CC-BY 2.0 (France) Attribution: tatoeba.org #8385685 (CK) & #8748598 (cxpadonis) +Tom applied for the job. 湯姆申請了這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #37258 (CK) & #840663 (Martha) +Tom can't get over Mary. 汤姆不能原谅玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095586 (CK) & #1394941 (mtdot) +Tom clenched the shovel. 汤姆握紧了铲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645405 (CK) & #8791842 (slo_oth) +Tom couldn't see anyone. 汤姆看不到任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6430570 (CK) & #8914623 (fresky) +Tom decided not to wait. 汤姆决定不再等了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4850013 (CK) & #5091480 (mirrorvan) +Tom didn't talk to Mary. 汤姆没跟玛丽说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822812 (CK) & #5650420 (verdastelo9604) +Tom didn't want to come. 汤姆不想来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3422381 (CK) & #5630436 (verdastelo9604) +Tom died in an accident. 湯姆在一場意外中喪生。 CC-BY 2.0 (France) Attribution: tatoeba.org #3522446 (neron) & #4816283 (umidake) +Tom died in his kitchen. 汤姆是在自家厨房里死的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8340868 (CK) & #8715860 (crescat) +Tom doesn't like Boston. 汤姆不喜欢波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735034 (CK) & #5907619 (verdastelo9604) +Tom doesn't like cheese. 湯姆不喜歡乳酪。 CC-BY 2.0 (France) Attribution: tatoeba.org #37243 (CK) & #826294 (Martha) +Tom embraced his father. 汤姆拥抱了他的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726482 (CM) & #5846067 (verdastelo9604) +Tom got out of the jeep. 汤姆从吉普车上下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545811 (CK) & #8800715 (crescat) +Tom got out of the taxi. 汤姆从出租车上下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025646 (CK) & #7771881 (jiangche) +Tom had a strange dream. 汤姆做了个奇怪的梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171419 (CK) & #8686328 (crescat) +Tom has a beautiful car. Tom有台靓车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045765 (CK) & #3671248 (shirleyleee) +Tom has his own bedroom. 湯姆有他自己的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025373 (CK) & #4805795 (umidake) +Tom hasn't finished yet. 湯姆還沒完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #1177578 (CK) & #6059532 (verdastelo9604) +Tom headed out the door. 汤姆向门走去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3502281 (CK) & #5780573 (verdastelo9604) +Tom hid under the table. Tom躲在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #37241 (CK) & #332772 (fucongcong) +Tom is a French teacher. 汤姆是法语老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451618 (CK) & #8798307 (crescat) +Tom is a friend of mine. 湯姆是我朋友中的其中一位。 CC-BY 2.0 (France) Attribution: tatoeba.org #37342 (CK) & #772384 (Martha) +Tom is a grumpy old man. 汤姆是个脾气暴躁的老人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1934784 (Spamster) & #8743670 (slo_oth) +Tom is a little worried. 湯姆有點擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545796 (CK) & #6086827 (verdastelo9604) +Tom is a strange person. 湯姆是個怪人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3411004 (CK) & #6128509 (verdastelo9604) +Tom is a violin teacher. 湯姆是小提琴教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735532 (CK) & #6325090 (verdastelo9604) +Tom is fluent in French. 湯姆的法語說的很流暢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141214 (CK) & #8388748 (wangchou) +Tom is getting paranoid. 汤姆越来越多疑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2273167 (CK) & #8589166 (easononizuka) +Tom is going to help us. 汤姆要帮助我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023653 (CK) & #5846066 (verdastelo9604) +Tom is my older brother. Tom是我哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495832 (CK) & #8591295 (easononizuka) +Tom is reading an essay. 湯姆在讀一篇短文。 CC-BY 2.0 (France) Attribution: tatoeba.org #7768549 (sharris123) & #2757105 (cienias) +Tom is taking a day off. 汤姆在休一天假。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446788 (CK) & #5698023 (verdastelo9604) +Tom is taller than I am. 湯姆比我高。 CC-BY 2.0 (France) Attribution: tatoeba.org #406587 (CK) & #874387 (Martha) +Tom is thirty years old. 汤姆今年三十岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024810 (CK) & #8738755 (crescat) +Tom is watching a video. 湯姆在看影片。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545780 (CK) & #6671777 (verdastelo9604) +Tom isn't a good person. 湯姆不是好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410991 (CK) & #6845601 (verdastelo9604) +Tom isn't a good worker. 湯姆不是個好工人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5024087 (CK) & #6483526 (verdastelo9604) +Tom isn't going to stop. 湯姆不會停。 CC-BY 2.0 (France) Attribution: tatoeba.org #3409132 (CK) & #8215700 (verdastelo9604) +Tom just wants my money. 湯姆就是想要我的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4972784 (CK) & #6635905 (verdastelo9604) +Tom kissed Mary's cheek. 汤姆吻了玛丽的脸颊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545772 (CK) & #7772336 (jiangche) +Tom knew how to do that. 汤姆知道怎么做那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4047442 (CK) & #5611668 (verdastelo9604) +Tom knows Mary was here. 湯姆知道瑪麗在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645333 (CK) & #6630012 (verdastelo9604) +Tom looked at his notes. 汤姆看了看笔记。 CC-BY 2.0 (France) Attribution: tatoeba.org #3121828 (CK) & #8969814 (WilsonWong) +Tom nearly died tonight. 汤姆昨晚差点死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736478 (CK) & #5663551 (verdastelo9604) +Tom needs encouragement. 湯姆需要鼓勵。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645319 (CK) & #6623186 (verdastelo9604) +Tom never saw her again. 湯姆沒再見過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1544010 (Spamster) & #6635878 (verdastelo9604) +Tom picked up the knife. 汤姆拿起了刀。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545756 (CK) & #5780553 (verdastelo9604) +Tom played with his dog. 汤姆和他的狗玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3923023 (CK) & #5900184 (verdastelo9604) +Tom put down his pencil. 汤姆放下他的铅笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545753 (CK) & #3770557 (Debbie_Linder) +Tom regrets his mistake. 湯姆為他的錯誤後悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747553 (CM) & #6091697 (verdastelo9604) +Tom ripped out the page. 汤姆把这一页撕掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957963 (CK) & #8791851 (slo_oth) +Tom runs faster than me. 汤姆跑得比我快。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545747 (CK) & #7772605 (jiangche) +Tom sat on a tree trunk. 汤姆坐在了树干上。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085473 (Airvian) & #5085512 (Jubilee11) +Tom says he left a note. 汤姆说他留了张便条。 CC-BY 2.0 (France) Attribution: tatoeba.org #3413225 (CK) & #5091297 (mirrorvan) +Tom says he needs a nap. 汤姆说他需要午睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867933 (CK) & #8792844 (crescat) +Tom says he's very rich. 湯姆說他很有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645292 (CK) & #6923220 (verdastelo9604) +Tom should be here soon. 汤姆应该很快就到。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164205 (CK) & #7795214 (xinqian94) +Tom thinks there's hope. 汤姆认为有希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141133 (CK) & #4620134 (Yashanti) +Tom told me what to say. 汤姆告诉我该说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200006 (CK) & #5865537 (verdastelo9604) +Tom was already at work. 湯姆已經在上班了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7978321 (CK) & #8215753 (verdastelo9604) +Tom was late for dinner. 湯姆晚餐遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #36996 (CK) & #842313 (Martha) +Tom works in a bank now. 湯姆現在在銀行上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #6531865 (CK) & #6635901 (verdastelo9604) +Tom's hands are shaking. 汤姆的手在颤动。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250280 (CK) & #5931779 (verdastelo9604) +Tomorrow is my birthday. 明天是我生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #71844 (CK) & #844551 (kooler) +Try to keep from crying. 試著不要哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #19566 (CK) & #844623 (Martha) +Turn the flame down low. 把火轉小一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #25907 (CK) & #836431 (Martha) +Water is very important. 水非常重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #5358554 (dfordivam) & #8888006 (crescat) +We are a family of five. 我家有5口人。 CC-BY 2.0 (France) Attribution: tatoeba.org #65500 (CK) & #3630116 (suitchic) +We bought a round table. 我们买了张圆桌。 CC-BY 2.0 (France) Attribution: tatoeba.org #248550 (CK) & #7771687 (jiangche) +We didn't bring it back. 我们没把它带回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2281743 (CK) & #6307272 (gumblex) +We don't live in Boston. 我们不住在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2281804 (CK) & #5091602 (mirrorvan) +We gave him up for dead. 我們為死者放棄了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #249274 (CK) & #805612 (Martha) +We got lost in the snow. 我們在雪地裡迷了路。 CC-BY 2.0 (France) Attribution: tatoeba.org #263110 (CK) & #802506 (Martha) +We got on the bus there. 我們在那裡上了公共汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #248046 (CK) & #802496 (Martha) +We had a large audience. 我们有很多听众。 CC-BY 2.0 (France) Attribution: tatoeba.org #274920 (CK) & #332601 (fucongcong) +We had to live together. 我們要在一起生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #5788228 (CK) & #8215737 (verdastelo9604) +We have a test tomorrow. 我们明天有个测验。 CC-BY 2.0 (France) Attribution: tatoeba.org #323248 (CK) & #333773 (fucongcong) +We have only one chance. 我们只有一次机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #3115541 (Hybrid) & #8511511 (gumblex) +We let him keep the dog. 我們讓他養狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #249187 (CK) & #6120826 (verdastelo9604) +We made it out of there. 我們從那裡逃了出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #24927 (CK) & #801983 (Martha) +We need to buy a new TV. 我们需要买新电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #7775080 (sharris123) & #5549707 (verdastelo9604) +We ordered Chinese food. 我们点了中餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #3633846 (mingzhouren) & #3630686 (suitchic) +We ran three kilometers. 我們跑了三公里。 CC-BY 2.0 (France) Attribution: tatoeba.org #8075346 (CK) & #8387376 (wangchou) +We still don't know why. 我們仍然不知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5452152 (CK) & #5452167 (egg0073) +We still have more time. 我們仍然有更多的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #450066 (CK) & #845508 (Martha) +We'd better wake Tom up. 我们最好叫醒汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312635 (CK) & #5611596 (verdastelo9604) +We'll always be friends. 我们永远都会是朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #247890 (CK) & #465833 (fucongcong) +We're going out tonight. 我们今晚出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310975 (CK) & #5581785 (verdastelo9604) +We've been watching you. 我们在看着你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3309906 (CK) & #4972582 (wzhd) +Well begun is half done. 好的開始是成功的一半。 CC-BY 2.0 (France) Attribution: tatoeba.org #21231 (CK) & #763872 (Martha) +Were you out last night? 昨晚你出去了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244870 (CK) & #842456 (Martha) +What I'm saying is true. 我說的是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #433638 (CK) & #846021 (Martha) +What a beautiful flower! 多漂亮的花啊! CC-BY 2.0 (France) Attribution: tatoeba.org #36037 (CK) & #407228 (fucongcong) +What a wonderful family. 多美好的家庭啊! CC-BY 2.0 (France) Attribution: tatoeba.org #36126 (papabear) & #334124 (fucongcong) +What are you crying for? 你為什麼哭? CC-BY 2.0 (France) Attribution: tatoeba.org #1140043 (CK) & #828691 (Martha) +What are you doing here? 你在這裡做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #61908 (CK) & #839594 (Martha) +What are you looking at? 你在看什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16256 (CK) & #846000 (Martha) +What are you looking at? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #16256 (CK) & #7768300 (jiangche) +What are you staring at? 你在看什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16662 (CK) & #846000 (Martha) +What color is your hair? 您的头发是什么颜色的? CC-BY 2.0 (France) Attribution: tatoeba.org #464526 (lukaszpp) & #469464 (fucongcong) +What did you want to do? 你以前想做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #5917931 (CK) & #8739487 (crescat) +What do you think of it? 你觉得怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #464554 (lukaszpp) & #336719 (fucongcong) +What do you think of it? 你認為如何? CC-BY 2.0 (France) Attribution: tatoeba.org #464554 (lukaszpp) & #735175 (Martha) +What do you want it for? 你要它干什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464558 (lukaszpp) & #469526 (fucongcong) +What does PTA stand for? PTA代表什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #72188 (CK) & #336481 (fucongcong) +What does he want to do? 他到底想干嘛? CC-BY 2.0 (France) Attribution: tatoeba.org #294309 (CK) & #1238191 (sunnywqing) +What does it sound like? 那聽起來像什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3823023 (CK) & #6142314 (rayshih715) +What does this pen cost? 这支钢笔要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #60538 (CK) & #363987 (fucongcong) +What does this pen cost? 這支筆多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #60538 (CK) & #790378 (Martha) +What have I got to lose? 我要失去什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3822937 (CK) & #5555239 (verdastelo9604) +What is Gestalt Therapy? 什么是格式塔疗法? CC-BY 2.0 (France) Attribution: tatoeba.org #1290950 (Bryanr12) & #8589162 (easononizuka) +What is aspirin made of? 阿司匹林是用什么做的? CC-BY 2.0 (France) Attribution: tatoeba.org #1126754 (CK) & #4267324 (notabene) +What is your house like? 你的房子如何? CC-BY 2.0 (France) Attribution: tatoeba.org #1295333 (crnel727) & #5350411 (egg0073) +What sports do you like? 你喜歡什麼運動? CC-BY 2.0 (France) Attribution: tatoeba.org #36776 (CK) & #836315 (Martha) +What time does it start? 什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #24572 (CK) & #332585 (fucongcong) +What're you doing there? 你在那里做什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2645183 (CK) & #7768269 (jiangche) +What're you laughing at? 你在笑什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #6796168 (Eccles17) & #4879268 (musclegirlxyp) +What're you laughing at? 在笑什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #6796168 (Eccles17) & #4879272 (musclegirlxyp) +What's Tom's blood type? 湯姆的血型是甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2545683 (CK) & #6111941 (verdastelo9604) +What's that bird called? 那隻鳥叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #449055 (CK) & #825128 (Martha) +What's the weather like? 天氣怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #442070 (CK) & #832927 (Martha) +When are you going home? 你什麼時候要回家? CC-BY 2.0 (France) Attribution: tatoeba.org #398929 (FeuDRenais) & #809998 (Martha) +When did you go to work? 你什么时候上班? CC-BY 2.0 (France) Attribution: tatoeba.org #2402194 (CK) & #5863315 (verdastelo9604) +Where are the elevators? 電梯在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #8091258 (CK) & #6284516 (xjjAstrus) +Where are you right now? 你現在在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #2821521 (CK) & #6486877 (xjjAstrus) +Where can I catch a bus? 我可以在哪裡搭公車? CC-BY 2.0 (France) Attribution: tatoeba.org #35246 (CK) & #871222 (Martha) +Where can I take a bath? 我能在哪裡洗澡? CC-BY 2.0 (France) Attribution: tatoeba.org #2459517 (sharptoothed) & #6923186 (verdastelo9604) +Where did you come from? 你從哪裡來? CC-BY 2.0 (France) Attribution: tatoeba.org #38220 (CK) & #9209961 (xjjAstrus) +Where do you want to go? 你要去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #38104 (CK) & #781106 (Martha) +Where do you want to go? 你想去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #38104 (CK) & #874214 (Martha) +Where do you want to go? 你們要去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #38104 (CK) & #6284500 (xjjAstrus) +Where else should we go? 我们要去其他的什么地方? CC-BY 2.0 (France) Attribution: tatoeba.org #4834929 (CK) & #4844749 (pig8322) +Where is the stage door? 请问剧场后门在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #2350805 (hutian) & #8792062 (crescat) +Where's the dining room? 餐厅在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #4704237 (CK) & #6101361 (verdastelo9604) +Who are you waiting for? 你在等誰? CC-BY 2.0 (France) Attribution: tatoeba.org #15904 (CK) & #781493 (Martha) +Who do you think we are? 你认为我们是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #3014896 (CK) & #5624916 (verdastelo9604) +Who else knows about it? 還有誰知道它? CC-BY 2.0 (France) Attribution: tatoeba.org #4593581 (Hybrid) & #6084403 (verdastelo9604) +Who else uses this room? 还有谁用这个房间? CC-BY 2.0 (France) Attribution: tatoeba.org #5027117 (CK) & #5091309 (mirrorvan) +Who wants hot chocolate? 谁要热巧克力? CC-BY 2.0 (France) Attribution: tatoeba.org #451728 (FeuDRenais) & #450634 (fucongcong) +Who were you talking to? 你跟誰說話呢? CC-BY 2.0 (France) Attribution: tatoeba.org #276501 (CK) & #6047480 (verdastelo9604) +Who were you talking to? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #276501 (CK) & #7771910 (jiangche) +Who wrote these stories? 誰寫了這些故事? CC-BY 2.0 (France) Attribution: tatoeba.org #4503010 (CK) & #4504410 (egg0073) +Who's worried about Tom? 谁担心汤姆? CC-BY 2.0 (France) Attribution: tatoeba.org #4620502 (CK) & #4620843 (Yashanti) +Why can't we have pizza? 为什么我们不能要比萨? CC-BY 2.0 (France) Attribution: tatoeba.org #4350119 (Tjagotje) & #5576831 (verdastelo9604) +Why did you cry so much? 你為甚麼哭得這麼厲害? CC-BY 2.0 (France) Attribution: tatoeba.org #2466815 (Hybrid) & #6057856 (verdastelo9604) +Why do you need my help? 你為甚麼需要我幫助? CC-BY 2.0 (France) Attribution: tatoeba.org #3824034 (CK) & #6111844 (verdastelo9604) +Why don't you stay here? 你为什么不留在这里? CC-BY 2.0 (France) Attribution: tatoeba.org #2210900 (CK) & #8589163 (easononizuka) +Why wasn't Tom arrested? 為甚麼湯姆沒被捕? CC-BY 2.0 (France) Attribution: tatoeba.org #4529991 (CK) & #6673093 (verdastelo9604) +Will I see you tomorrow? 我明天能见到你吗? CC-BY 2.0 (France) Attribution: tatoeba.org #757373 (sctld) & #7774799 (jiangche) +Will Tom really do that? 湯姆真要做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6079187 (CK) & #6094834 (verdastelo9604) +Winners don't use drugs. 優勝者不使用藥物。 CC-BY 2.0 (France) Attribution: tatoeba.org #827236 (Scott) & #827524 (Martha) +Would you do me a favor? 你能幫我一個忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27869 (CK) & #865568 (Martha) +Write your address here. 在這裡寫下你的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #17065 (CK) & #793233 (Martha) +Yes, I have a good idea. 是的,我有一個好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #433804 (CK) & #873222 (Martha) +You are as tall as I am. 你和我一样高。 CC-BY 2.0 (France) Attribution: tatoeba.org #4909 (CK) & #1778304 (sadhen) +You are free to go home. 你隨時可以回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #16031 (CK) & #874402 (Martha) +You are in a safe place. 您在一个安全的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #16326 (CK) & #469310 (fucongcong) +You are very courageous. 您非常勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #588005 (leyla) & #471280 (fucongcong) +You aren't kids anymore. 你們不再是小孩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2946951 (mervert1) & #6105112 (verdastelo9604) +You can delete that now. 你现在可以删除它。 CC-BY 2.0 (France) Attribution: tatoeba.org #5425623 (CK) & #5911773 (verdastelo9604) +You can start right now. 你现在可以开始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5028372 (CK) & #7704619 (leafjensen) +You can swim, can't you? 你會游泳, 不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16299 (brauliobezerra) & #793226 (Martha) +You can't depend on Tom. 你不能靠湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852890 (CK) & #6534786 (verdastelo9604) +You can't keep a secret. 你不能有秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820920 (CK) & #5992380 (verdastelo9604) +You don't know who I am. 您不知道我是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1762 (Swift) & #502692 (fucongcong) +You don't look so happy. 你看来不大高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044558 (CK) & #5574365 (verdastelo9604) +You don't need to hurry. 你不必著急。 CC-BY 2.0 (France) Attribution: tatoeba.org #411309 (CK) & #793501 (Martha) +You dropped your pencil. 你把你的铅笔弄掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16283 (CK) & #469391 (fucongcong) +You hate Tom, don't you? 你恨湯姆,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1023717 (CK) & #6058641 (verdastelo9604) +You have beautiful eyes. 你的眼睛真漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045766 (CK) & #3671251 (shirleyleee) +You have beautiful legs. 你有着漂亮的腿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4833376 (derpapottamus) & #4844809 (pig8322) +You have beautiful lips. 你的嘴唇很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #4051669 (Hybrid) & #4147377 (sissima) +You have done very well. 你做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #16749 (CK) & #844599 (Martha) +You have plenty of time. 你有足够的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1895743 (CK) & #2092765 (sadhen) +You look really nervous. 你看起来真的很紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #5506289 (CK) & #8696385 (morningstar) +You look very dignified. 你看起來很威嚴。 CC-BY 2.0 (France) Attribution: tatoeba.org #20907 (CK) & #834510 (Martha) +You must do it yourself. 你应该自己做。 CC-BY 2.0 (France) Attribution: tatoeba.org #16056 (CK) & #392254 (fucongcong) +You must pay in advance. 您必须预先付钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #273598 (CK) & #787172 (fucongcong) +You must've been asleep. 你一定睡著了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3178283 (CK) & #6105237 (verdastelo9604) +You or I will be chosen. 你或者我会被选中。 CC-BY 2.0 (France) Attribution: tatoeba.org #17724 (CK) & #1878278 (sadhen) +You ought not to go out. 你不應該出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #69215 (CK) & #872375 (Martha) +You really are an idiot. 你真的是(一)個笨蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753759 (garborg) & #4739764 (elenachang) +You really are hopeless. 你真的是一點希望也沒有。 CC-BY 2.0 (France) Attribution: tatoeba.org #17623 (CK) & #793243 (Martha) +You remind me of myself. 你让我想起我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356349 (CK) & #9178026 (xiaohong) +You should check it out. 你應該檢查一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3354967 (CK) & #6114409 (verdastelo9604) +You should do that soon. 你應該很快那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #483606 (CK) & #842458 (Martha) +You should go in person. 你應該親自去。 CC-BY 2.0 (France) Attribution: tatoeba.org #411308 (CK) & #844511 (Martha) +You should have done so. 你本應該這樣做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16630 (CK) & #842472 (Martha) +You should have seen it. 您本應該看看它的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17549 (CK) & #840761 (Martha) +You should not go alone. 你不應該一個人去。 CC-BY 2.0 (France) Attribution: tatoeba.org #69783 (CK) & #845989 (Martha) +You should quit smoking. 你應該戒菸。 CC-BY 2.0 (France) Attribution: tatoeba.org #495668 (CK) & #832959 (Martha) +You should see a doctor. 你應該去看醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #405716 (CK) & #836382 (Martha) +You should study harder. 你應該更努力學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #16356 (CK) & #833042 (Martha) +You should take up golf. 你应该开始从事高尔夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834910 (CK) & #4844824 (pig8322) +You shouldn't wait here. 你不應該在這裡等。 CC-BY 2.0 (France) Attribution: tatoeba.org #405520 (CK) & #833193 (Martha) +You swim better than me. 你游泳游得比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5325368 (csmjj) & #1749755 (sadhen) +You'd better do it soon. 你最好尽快去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #3377113 (CK) & #5611598 (verdastelo9604) +You'd better not go out. 你最好不要出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #69219 (CK) & #838569 (Martha) +You'll understand later. 你晚一會就能明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823146 (CK) & #6325075 (verdastelo9604) +You're absolutely right. 你完全正確。 CC-BY 2.0 (France) Attribution: tatoeba.org #737667 (Eldad) & #771314 (Martha) +You're driving too fast. 你開得太快了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51828 (CK) & #833059 (Martha) +You're everything to me. 你是我的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #8332955 (CK) & #333179 (fucongcong) +You're really beautiful. 你真的很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045767 (CK) & #3671252 (shirleyleee) +You're really wonderful. 你真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #434009 (CK) & #471295 (fucongcong) +You're the one who quit. 你是退出的那個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955030 (CK) & #6560621 (verdastelo9604) +You're very resourceful. 你鬼点子真多。 CC-BY 2.0 (France) Attribution: tatoeba.org #2218496 (CK) & #4760178 (ryanwoo) +You've got to apologize. 你應該道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723618 (CM) & #825188 (Martha) +You've got to be joking! 你一定是开玩笑! CC-BY 2.0 (France) Attribution: tatoeba.org #3823256 (CK) & #1878342 (sadhen) +You've got to be joking. 你一定是开玩笑! CC-BY 2.0 (France) Attribution: tatoeba.org #3357812 (CK) & #1878342 (sadhen) +Your dress is very nice. 你的穿著非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #17363 (CK) & #845956 (Martha) +Your wife is mad at you. 你太太在生你的氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #25705 (CK) & #873266 (Martha) +"I'll be back," said Tom. “我会回来,”汤姆说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1516356 (Spamster) & #5574849 (verdastelo9604) +A light bulb gives light. 灯泡发光。 CC-BY 2.0 (France) Attribution: tatoeba.org #681358 (Source_VOA) & #1366061 (sadhen) +A truck ran over our dog. 一輛卡車輾過一隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #36952 (CK) & #836440 (Martha) +A year has twelve months. 一年有十二個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #73060 (CM) & #778507 (Martha) +Add a tiny pinch of salt. 加一丁點鹽。 CC-BY 2.0 (France) Attribution: tatoeba.org #5776173 (Hybrid) & #6077420 (verdastelo9604) +All I want is my freedom. 我只要自由。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824581 (CK) & #5845654 (verdastelo9604) +All of them are not poor. 他们都不穷。 CC-BY 2.0 (France) Attribution: tatoeba.org #304957 (CK) & #5967294 (verdastelo9604) +All of you did good work. 你們所有的人都做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #17642 (CK) & #836278 (Martha) +Am I allowed to use this? 能让我用这个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2129925 (AlanF_US) & #5574405 (verdastelo9604) +Any comments are welcome. 欢迎作任何评论。 CC-BY 2.0 (France) Attribution: tatoeba.org #1131483 (perry) & #1170081 (fucongcong) +Are these your daughters? 這些是你的女兒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2988561 (CK) & #6111878 (verdastelo9604) +Are you also from Boston? 你也是從波士頓來的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5468439 (CK) & #6309833 (verdastelo9604) +Are you coming next week? 你下週來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4134539 (CK) & #6057854 (verdastelo9604) +Are you here on business? 你来这里出差的? CC-BY 2.0 (France) Attribution: tatoeba.org #245317 (CK) & #9012174 (jacintoo) +Are you hiding something? 你是不是瞒着我什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2951523 (CK) & #4881588 (musclegirlxyp) +Are you looking for work? 你是在找工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1959341 (Flargus) & #3671511 (shirleyleee) +Are you looking for work? 你在找工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1959341 (Flargus) & #3671516 (shirleyleee) +Are you not feeling well? 你身体不舒服吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3658435 (AlanF_US) & #4844988 (pig8322) +Are you on the committee? 你是委員會中的成員嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16808 (CK) & #834318 (Martha) +Are you ready to proceed? 准备好继续了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3821353 (CK) & #8500231 (black333) +Are you studying English? 你在研讀英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69641 (CK) & #811594 (Martha) +Are you writing a letter? 你在写信吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16010 (Swift) & #746048 (fucongcong) +Are you writing a letter? 你在寫信嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16010 (Swift) & #786434 (Martha) +Ask your dad to help you. 請你父親幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #64084 (CK) & #781155 (Martha) +At last, the bus stopped. 公车最终停了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #30244 (CK) & #336178 (fucongcong) +Big fish eat little fish. 大鱼吃小鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #7772868 (sharris123) & #464946 (fucongcong) +Bread is made from flour. 面包是面粉做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34927 (CK) & #7771914 (jiangche) +Bread is made from wheat. 麵包是用小麥做成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #527167 (blay_paul) & #778497 (Martha) +Call me at 9:00 tomorrow. 明天九点打电话给我吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2810824 (xylian) & #4903261 (musclegirlxyp) +Can I ask you a question? 我可以问你个问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #795220 (CK) & #480595 (biglion) +Can I ask you a question? 我能问您一个问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #795220 (CK) & #795623 (fucongcong) +Can I ask you a question? 我可以問您一個問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #795220 (CK) & #5114803 (xjjAstrus) +Can I pay by credit card? 我可以用信用卡付帳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2238 (CK) & #765559 (Martha) +Can I stay here with you? 我可以和你一起待在这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8586760 (CK) & #8589663 (tianblr) +Can I stay here with you? 我可以和你一起呆在这里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8586760 (CK) & #8589664 (tianblr) +Can I take pictures here? 我能在这里拍照吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61888 (CK) & #334387 (fucongcong) +Can I try on this jacket? 我可以試穿這件外套嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #61040 (CK) & #1261431 (tsayng) +Can we speak in the hall? 我們能在走廊裡說話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3183443 (CK) & #9035056 (xjjAstrus) +Can you copy this for me? 你能替我拷貝這個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54995 (CK) & #5401637 (egg0073) +Can you help me a little? 你能帮我一点忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #39986 (CK) & #8696351 (crescat) +Can you hold on a second? 你能等一下嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3328138 (CK) & #6628383 (verdastelo9604) +Can you pass me the milk? 可以把牛奶递给我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1190917 (CK) & #9140814 (vermouthmjl) +Can you stay for a while? 你能待一会吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886242 (CK) & #5942075 (verdastelo9604) +Can you turn the TV down? 您能把电视开小声点吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8466255 (moarplease) & #472989 (fucongcong) +Certainly she is correct. 當然,她是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #388875 (CK) & #824712 (Martha) +Cheese is made from milk. 奶酪是用奶做成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #32228 (CK) & #782314 (fucongcong) +Christmas is soon, right? 聖誕節很快就到了,對嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #387465 (CK) & #825139 (Martha) +Clearly you are mistaken. 顯然的,你錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #322993 (CK) & #824539 (Martha) +Coal is not always black. 煤并不一定都是黑的。 CC-BY 2.0 (France) Attribution: tatoeba.org #272238 (CK) & #530708 (biglion) +Come and see me tomorrow. 明天来看看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #323473 (CK) & #336448 (fucongcong) +Come as soon as possible. 尽早来。 CC-BY 2.0 (France) Attribution: tatoeba.org #39515 (CK) & #1785950 (sadhen) +Come in, the door's open. 進來, 門是開的。 CC-BY 2.0 (France) Attribution: tatoeba.org #681636 (Source_VOA) & #789974 (Martha) +Could I park my car here? 我能把我的车停在这儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61732 (CK) & #334986 (fucongcong) +Could you drive Tom home? 你能載湯姆回家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1027636 (CK) & #6111767 (verdastelo9604) +Did Tom show an interest? 汤姆感兴趣吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4497876 (CK) & #5846069 (verdastelo9604) +Did you have a good rest? 休息好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6013566 (CK) & #884724 (Tajfun) +Did you hear what I said? 你聽見我說的了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3114099 (CK) & #6728915 (verdastelo9604) +Did you know that before? 你之前知道那個嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3962735 (JSakuragi) & #3715254 (egg0073) +Did you pay for the book? 你付錢買這本書了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237586 (CK) & #842301 (Martha) +Did you watch TV tonight? 你今晚看電視了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1224951 (CK) & #9135846 (xjjAstrus) +Do it when you have time. 你有时间再做吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #241726 (CK) & #334400 (fucongcong) +Do we have enough chairs? 我們的椅子夠嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3738530 (CK) & #6635900 (verdastelo9604) +Do whatever he tells you. 他跟你说什么,你就做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1615 (CK) & #334146 (fucongcong) +Do you believe in ghosts? 你相信有幽灵吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63212 (CK) & #5153260 (musclegirlxyp) +Do you believe in ghosts? 你相信鬼存在吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63212 (CK) & #5153265 (musclegirlxyp) +Do you believe in ghosts? 你相信有鬼魂吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63212 (CK) & #5153266 (musclegirlxyp) +Do you feel like resting? 你感觉轻松吗? CC-BY 2.0 (France) Attribution: tatoeba.org #19837 (CK) & #5842709 (verdastelo9604) +Do you have a cell phone? 你有手機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2800541 (CK) & #5254704 (xjjAstrus) +Do you have a dictionary? 你有字典嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2654806 (CK) & #2705437 (egg0073) +Do you have a pen on you? 你身上有铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2301 (CK) & #389824 (fucongcong) +Do you have a red pencil? 你有紅色的鉛筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1460939 (CK) & #4732052 (egg0073) +Do you have an extra key? 你有多余的钥匙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3564976 (CK) & #5576820 (verdastelo9604) +Do you have any brothers? 你有兄弟吗? CC-BY 2.0 (France) Attribution: tatoeba.org #71127 (CK) & #8690579 (crescat) +Do you have any siblings? 你有兄弟姐妹吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1556507 (brymck) & #3365893 (go_oo) +Do you have enough money? 你的钱够吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1096509 (CK) & #1490467 (sadhen) +Do you have many friends? 你有很多朋友吗? CC-BY 2.0 (France) Attribution: tatoeba.org #324418 (CK) & #397549 (fucongcong) +Do you have other family? 你有其他家人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3732072 (CM) & #5694481 (verdastelo9604) +Do you know how to dance? 你會跳舞嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2059963 (Spamster) & #3748352 (egg0073) +Do you know what he said? 你知道他說了什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283431 (CK) & #838645 (Martha) +Do you know where I live? 你知道我住哪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69349 (Kerstin) & #1312546 (vicch) +Do you know who they are? 你知道他們是誰嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56304 (CK) & #4953635 (umidake) +Do you like strawberries? 你喜歡草莓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #982239 (Arraroak) & #6392169 (verdastelo9604) +Do you like to eat fruit? 你喜歡吃水果嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7681639 (potatoindespair) & #6057153 (xjjAstrus) +Do you need an ambulance? 你需要救護車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #19591 (CK) & #793497 (Martha) +Do you plan to go abroad? 你打算出国吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16239 (CK) & #476641 (fucongcong) +Do you plan to stay long? 你打算長時間停留嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #515768 (CK) & #840432 (Martha) +Do you really need a car? 你真的需要车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1673240 (Amastan) & #5780552 (verdastelo9604) +Do you think it's a sign? 你认为这是个预兆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3820826 (CK) & #5685930 (verdastelo9604) +Do you think it's a trap? 你認為它是陷阱嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3819103 (CK) & #6086830 (verdastelo9604) +Do you understand French? 你會法語? CC-BY 2.0 (France) Attribution: tatoeba.org #2265793 (_undertoad) & #6057721 (xjjAstrus) +Do you want some company? 你想要伙伴吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2012089 (CK) & #5617202 (verdastelo9604) +Do you want this T-shirt? 你要這件T恤嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2389648 (CK) & #8356146 (xjjAstrus) +Does Tom still like jazz? 湯姆還喜歡爵士樂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6531850 (CK) & #6535843 (verdastelo9604) +Dog is man's best friend. 狗是人类最好的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #707004 (papabear) & #1235591 (sunnywqing) +Don't ask me what it was. 别问我这是什么东西! CC-BY 2.0 (France) Attribution: tatoeba.org #2288911 (CK) & #7768277 (jiangche) +Don't do anything stupid. 请不要做傻事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1837979 (CK) & #8734940 (crescat) +Don't let them forget me. 别让他们忘了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2275253 (CK) & #5845596 (verdastelo9604) +Don't make fun of people. 不要取笑人。 CC-BY 2.0 (France) Attribution: tatoeba.org #543984 (CK) & #834319 (Martha) +Don't make me stand here. 別讓我一直站在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2275281 (CK) & #6635887 (verdastelo9604) +Don't play baseball here. 不要在這裡打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #61859 (CK) & #832787 (Martha) +Don't play in the street. 別在馬路上玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #280465 (CK) & #3718941 (egg0073) +Don't think about it now. 現在別想這事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2275338 (CK) & #6877963 (verdastelo9604) +Don't worry about others. 不用担心其他人。 CC-BY 2.0 (France) Attribution: tatoeba.org #274705 (CK) & #510742 (fucongcong) +Don't you have any money? 你沒有錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #409018 (CK) & #834369 (Martha) +Don't you want to go out? 你不想出去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #266739 (CK) & #842285 (Martha) +Dozens are still missing. 数十人仍然失踪。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501036 (CK) & #5091673 (mirrorvan) +Education begins at home. 教育从家庭开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #1005359 (ellasevia) & #346757 (fucongcong) +Education starts at home. 教育从家庭开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #19122 (CK) & #346757 (fucongcong) +English is easy to learn. 英語簡單易學。 CC-BY 2.0 (France) Attribution: tatoeba.org #26285 (CK) & #811879 (Martha) +Even a child could do it. 连小孩儿都会做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757694 (garborg) & #4757667 (ryanwoo) +Everybody has weaknesses. 谁都有弱点。 CC-BY 2.0 (France) Attribution: tatoeba.org #690559 (CK) & #8780285 (crescat) +Everybody knows his name. 每個人都知道他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #276452 (CK) & #918005 (Martha) +Everything depends on it. 全都靠它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497205 (CK) & #6089707 (verdastelo9604) +Fire is always dangerous. 火是非常危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #23869 (CK) & #893016 (Martha) +Fire is always dangerous. 火總是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #23869 (CK) & #893017 (Martha) +First impressions matter. 第一印象很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #5759935 (Hybrid) & #6089949 (verdastelo9604) +Food shouldn't be wasted. 食物不該被浪費。 CC-BY 2.0 (France) Attribution: tatoeba.org #2265961 (_undertoad) & #6070923 (verdastelo9604) +Give me a bottle of wine. 給我一瓶葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #34313 (CK) & #839433 (Martha) +Give me something to eat. 給我點東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #25070 (CK) & #834385 (Martha) +Give me the same, please. 请给我同样的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #250028 (CK) & #787608 (fucongcong) +Grandpa bought it for me! 爷爷买给我的! CC-BY 2.0 (France) Attribution: tatoeba.org #73932 (CK) & #334262 (fucongcong) +Have you ever seen a UFO? 你看過飛碟嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16345 (CK) & #844643 (Martha) +Haven't I met you before? 我以前沒見過你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #543976 (CK) & #833158 (Martha) +He admitted his mistakes. 他承认了自己的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #298705 (CK) & #363971 (fucongcong) +He already knew about it. 他已经意识到它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3046455 (Whitney) & #3032026 (sadhen) +He always keeps his word. 他总是遵守诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #289227 (Dejo) & #1316695 (vicch) +He and I walked together. 我和他一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #284468 (CK) & #908548 (Martha) +He behaved like a madman. 他表现的像个疯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #898962 (shiba80) & #5091210 (mirrorvan) +He came back last August. 他去年八月回來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #289927 (CK) & #781189 (Martha) +He caught her by the arm. 他抓住了她的胳膊。 CC-BY 2.0 (France) Attribution: tatoeba.org #302853 (CK) & #1394880 (mtdot) +He cut the envelope open. 他裁開了那個信封。 CC-BY 2.0 (France) Attribution: tatoeba.org #288026 (CK) & #795273 (Martha) +He disregarded my advice. 他不顧我的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #303761 (CK) & #832471 (Martha) +He doesn't understand me. 他不理解我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2217658 (Hybrid) & #3289612 (sadhen) +He drank a cup of coffee. 他喝了一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #289816 (CK) & #844505 (Martha) +He drank a lot yesterday. 昨天他喝了很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #435643 (CK) & #834330 (Martha) +He dressed up as a woman. 他打扮得像女人一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #2764252 (CK) & #4635781 (egg0073) +He had to clean his room. 他不得不打扫了他的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #303402 (CK) & #6307273 (gumblex) +He has already had lunch. 他已经吃过午饭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293113 (CK) & #334783 (fucongcong) +He has never played golf. 他从没打过高尔夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #293782 (CK) & #406355 (fucongcong) +He has no manners at all. 他一點禮貌也沒有。 CC-BY 2.0 (France) Attribution: tatoeba.org #296359 (CK) & #802024 (Martha) +He is anxious to see you. 他急於要見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #292089 (CK) & #846032 (Martha) +He is armed to the teeth. 他武装到牙齒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1768739 (Spamster) & #6098464 (verdastelo9604) +He is rotten to the core. 他壞透了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296453 (CM) & #781078 (Martha) +He is the same age as me. 他和我同岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #995358 (NickC) & #335118 (fucongcong) +He jumped onto the table. 他跳上了桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #713165 (CM) & #713161 (Yashanti) +He knew he could not win. 他早就知道自己不会赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #802939 (Source_VOA) & #1366181 (sadhen) +He knows a lot of people. 他认识很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #294993 (CK) & #335104 (fucongcong) +He likes music very much. 他非常喜歡音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #294185 (CK) & #833780 (Martha) +He likes to travel alone. 他喜歡獨自旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #293733 (CK) & #834530 (Martha) +He lived here for a time. 他在这儿住了有一段时间了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293683 (CK) & #1426445 (sadhen) +He lives next door to us. 他住在我們隔壁。 CC-BY 2.0 (France) Attribution: tatoeba.org #294558 (CK) & #846361 (Martha) +He looked after the baby. 他照顧孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #300590 (CK) & #834320 (Martha) +He looked left and right. 他左右看了看。 CC-BY 2.0 (France) Attribution: tatoeba.org #4351264 (CK) & #8756388 (crescat) +He looked over my report. 他仔細看了我的報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #297771 (CK) & #833169 (Martha) +He looks like a good boy. 他看起來是個好男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #304752 (CK) & #846372 (Martha) +He looks like his father. 他看起來像他的父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #289503 (CK) & #832979 (Martha) +He looks old for his age. 他看起來比他的實際年齡大。 CC-BY 2.0 (France) Attribution: tatoeba.org #292584 (CK) & #848220 (Martha) +He married a pretty girl. 他娶了一個漂亮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #289596 (CK) & #833131 (Martha) +He may have lost his way. 他可能迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302061 (CK) & #332783 (fucongcong) +He might change his mind. 他可能會改變心意。 CC-BY 2.0 (France) Attribution: tatoeba.org #31051 (CK) & #771341 (Martha) +He missed the last train. 他错过了最后一班火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #296751 (CK) & #352049 (fucongcong) +He must be Tom's brother. 他一定是湯姆的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #68103 (CK) & #833032 (Martha) +He must be the principal. 他一定是校長。 CC-BY 2.0 (France) Attribution: tatoeba.org #413023 (CK) & #832969 (Martha) +He often walks to school. 他常常走路去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #293273 (CK) & #832997 (Martha) +He plays the guitar well. 他吉他彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #299686 (CK) & #833111 (Martha) +He put on clean trousers. 他穿上了乾淨的褲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #300428 (CK) & #833255 (Martha) +He put on the black coat. 他穿上了黑色的外套。 CC-BY 2.0 (France) Attribution: tatoeba.org #290798 (CK) & #848840 (Martha) +He put on the red jacket. 他穿上了紅色的外套。 CC-BY 2.0 (France) Attribution: tatoeba.org #291088 (CK) & #848889 (Martha) +He really likes baseball. 他非常喜欢棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #386728 (Mouseneb) & #333729 (fucongcong) +He refuses to believe us. 他拒绝相信我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159914 (tinytina) & #785851 (fucongcong) +He seldom goes to church. 他很少去教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #304133 (CK) & #834349 (Martha) +He showed me her picture. 他給我看了她的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #303747 (CK) & #833789 (Martha) +He slept well last night. 他昨晚睡得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #296890 (CK) & #343377 (fucongcong) +He studied for ten years. 他研究了十年。 CC-BY 2.0 (France) Attribution: tatoeba.org #296326 (CK) & #833044 (Martha) +He swam across the river. 他遊過了河。 CC-BY 2.0 (France) Attribution: tatoeba.org #291092 (CK) & #833173 (Martha) +He taught himself French. 他自學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #302082 (CK) & #771638 (Martha) +He thanked me for coming. 他感謝我的到來。 CC-BY 2.0 (France) Attribution: tatoeba.org #297243 (CK) & #833088 (Martha) +He told us to keep quiet. 他告訴我們要保持安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #300543 (CK) & #846113 (Martha) +He took a trip to Europe. 他去歐洲旅行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293235 (CK) & #846316 (Martha) +He took off his overcoat. 他脫掉了大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #289403 (CK) & #832986 (Martha) +He took out his passport. 他拿出了他的護照。 CC-BY 2.0 (France) Attribution: tatoeba.org #292405 (CK) & #833071 (Martha) +He tried to kill himself. 他試圖自殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #298463 (CK) & #832985 (Martha) +He used to be a nice boy. 他以前是個好男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #300561 (CK) & #881278 (Martha) +He used to read at night. 他以前都在夜晚看書。 CC-BY 2.0 (France) Attribution: tatoeba.org #304223 (CK) & #846084 (Martha) +He walked past the house. 他走過這棟房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #290597 (CK) & #833181 (Martha) +He wants to go to Africa. 他想要去非洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #288793 (CK) & #848344 (Martha) +He was accused of murder. 他被控告杀人罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #296957 (CK) & #783007 (fucongcong) +He was elected president. 他被选为总统。 CC-BY 2.0 (France) Attribution: tatoeba.org #301323 (CK) & #410860 (fucongcong) +He was held in captivity. 他被囚禁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #303607 (CK) & #8794844 (slo_oth) +He was playing the piano. 他那時正在彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #292479 (CK) & #833152 (Martha) +He was run over by a car. 他被車輾過了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299030 (CK) & #885521 (Martha) +He was the first to come. 他是第一個來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283664 (CK) & #848976 (Martha) +He was very busy all day. 他一整天都很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #288451 (CK) & #816438 (fucongcong) +He was very busy all day. 他忙了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #288451 (CK) & #816440 (fucongcong) +He went to Boston by car. 他坐汽車到波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #299020 (CK) & #848690 (Martha) +He whistled as he walked. 他邊走邊吹口哨。 CC-BY 2.0 (France) Attribution: tatoeba.org #491545 (CK) & #832975 (Martha) +He will be a good doctor. 他会成为一个好的医生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481748 (weihaiping) & #406344 (fucongcong) +He will be back tomorrow. 明天他會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #304103 (CK) & #833133 (Martha) +He will be busy tomorrow. 他明天會很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #304093 (CK) & #832981 (Martha) +He will be free tomorrow. 他明天有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #304092 (CK) & #833018 (Martha) +He will not listen to me. 他不會聽我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #291954 (CK) & #848348 (Martha) +He wrote to me yesterday. 昨天他寫信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #283339 (CK) & #834502 (Martha) +He'll be glad to see you. 他會很高興見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #295626 (CK) & #848454 (Martha) +He's a strange character. 他的性情古怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #288286 (CK) & #333195 (fucongcong) +He's been to the stadium. 他去過體育館。 CC-BY 2.0 (France) Attribution: tatoeba.org #848749 (CM) & #6138314 (verdastelo9604) +He's very angry with you. 他對你非常生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #295629 (CK) & #833046 (Martha) +He's very good at guitar. 他非常擅長吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #467853 (CK) & #833224 (Martha) +Help me lift the package. 帮我抬起这包裹。 CC-BY 2.0 (France) Attribution: tatoeba.org #320951 (CK) & #5856739 (verdastelo9604) +Her English is excellent. 她的英语好极了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309079 (CK) & #399884 (fucongcong) +Here is a letter for you. 这是你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #18067 (CK) & #333502 (fucongcong) +Here is a letter for you. 这儿有你的一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #18067 (CK) & #796828 (fucongcong) +His new car is wonderful. 他的新車很棒。 CC-BY 2.0 (France) Attribution: tatoeba.org #466132 (CK) & #832995 (Martha) +His work is washing cars. 他的工作是洗車。 CC-BY 2.0 (France) Attribution: tatoeba.org #286432 (CK) & #9179750 (xjjAstrus) +How about playing tennis? 打網球怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #39390 (CK) & #917832 (Martha) +How about tomorrow night? 明晚怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #323226 (CM) & #4881634 (musclegirlxyp) +How are things at school? 学校怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #2366909 (Hybrid) & #5096478 (mirrorvan) +How can that be possible? 那怎麼可能? CC-BY 2.0 (France) Attribution: tatoeba.org #2891248 (CK) & #6903872 (verdastelo9604) +How do you say this word? 你们怎么读这个词? CC-BY 2.0 (France) Attribution: tatoeba.org #387499 (Mouseneb) & #345739 (fucongcong) +How is the weather there? 那里的气候怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #50761 (CK) & #406353 (fucongcong) +How large is your family? 你的家庭有多大? CC-BY 2.0 (France) Attribution: tatoeba.org #69565 (CK) & #6149013 (verdastelo9604) +How many CDs do you have? 你有多少张CD? CC-BY 2.0 (France) Attribution: tatoeba.org #72239 (Eldad) & #858140 (kooler) +How many teams are there? 那里有多少队伍? CC-BY 2.0 (France) Attribution: tatoeba.org #2196911 (CK) & #5595181 (verdastelo9604) +How much is the bus fare? 公車票價多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #35222 (CK) & #848868 (Martha) +How much time has passed? 過了多長時間? CC-BY 2.0 (France) Attribution: tatoeba.org #877890 (CK) & #6482299 (verdastelo9604) +How often do you see him? 您多久见他一次? CC-BY 2.0 (France) Attribution: tatoeba.org #284994 (CK) & #481255 (fucongcong) +How old is that painting? 那幅画有多少年了? CC-BY 2.0 (France) Attribution: tatoeba.org #436247 (lukaszpp) & #784058 (fucongcong) +How tall is your brother? 你的兄弟多高? CC-BY 2.0 (France) Attribution: tatoeba.org #237832 (CK) & #833775 (Martha) +How well do you know Tom? 你了解汤姆多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1066910 (CK) & #1438467 (asosan) +How's everything at work? 工作怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3738105 (CK) & #5100103 (mirrorvan) +How's it going at school? 学校怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #2891374 (CK) & #5096478 (mirrorvan) +Hunger is the best sauce. 饑餓是最好的調味品。 CC-BY 2.0 (France) Attribution: tatoeba.org #18157 (papabear) & #806226 (Martha) +Hunger is the best sauce. 对于一个饥饿的人来说,任何食物都是美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #18157 (papabear) & #2454746 (fenfang557) +I admit that he is right. 我承认他是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283927 (CK) & #399947 (fucongcong) +I agree to your proposal. 我同意你的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #257119 (CK) & #834397 (Martha) +I agree with his opinion. 我同意他的觀點。 CC-BY 2.0 (France) Attribution: tatoeba.org #403321 (CK) & #834295 (Martha) +I agreed to the proposal. 我同意這項建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #321651 (CK) & #833773 (Martha) +I almost caught the fish. 我幾乎釣到了魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #255778 (CK) & #918036 (Martha) +I almost didn't meet her. 我幾乎沒有遇見她。 CC-BY 2.0 (France) Attribution: tatoeba.org #254051 (CK) & #919951 (Martha) +I almost forgot my lunch. 我快把我的午饭忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3199066 (CK) & #5611586 (verdastelo9604) +I am able to drive a car. 我會開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258399 (CK) & #881297 (Martha) +I am able to drive a car. 我会开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #258399 (CK) & #4764637 (ryanwoo) +I am acquainted with him. 我和他认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #260219 (CK) & #8888035 (crescat) +I am interested in music. 我對音樂有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #256330 (CK) & #917843 (Martha) +I am not afraid of dying. 我不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1533152 (Chevere33) & #802838 (fucongcong) +I am quite all right now. 我一切都很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #255785 (CK) & #780375 (Martha) +I am sure of his success. 我肯定他会成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #260099 (CK) & #333257 (fucongcong) +I arrived here yesterday. 我昨天到這裡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #493788 (CK) & #819435 (Martha) +I asked Tom to wait here. 我讓湯姆在這裡等。 CC-BY 2.0 (France) Attribution: tatoeba.org #5592940 (CK) & #6064713 (verdastelo9604) +I asked him to wait here. 我請他在這裡等。 CC-BY 2.0 (France) Attribution: tatoeba.org #260279 (CK) & #918054 (Martha) +I ate breakfast at eight. 我八點鐘吃了早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #252628 (CK) & #917942 (Martha) +I bet he doesn't make it. 我打赌他没搞定。 CC-BY 2.0 (France) Attribution: tatoeba.org #63342 (CK) & #655970 (fucongcong) +I bought a pair of shoes. 我買了一雙鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #18099 (CK) & #846370 (Martha) +I came here to thank you. 我來感謝你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2300236 (CK) & #6624657 (verdastelo9604) +I can't find my suitcase. 我找不到我的手提箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #250337 (CK) & #918543 (Martha) +I can't follow his logic. 我无法理解他的逻辑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1465962 (CK) & #7068905 (la_kanro) +I can't keep up with Tom. 我跟不上汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819387 (CK) & #5091608 (mirrorvan) +I can't keep up with you. 我無法跟上你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17545 (CK) & #846277 (Martha) +I can't live without you. 沒有你我活不下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #237738 (CK) & #803739 (Martha) +I can't stand that noise. 我不能忍受那個噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #421970 (CK) & #833135 (Martha) +I can't stand this noise. 我不能忍受這個噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #424833 (CK) & #833180 (Martha) +I can't thank you enough. 我無法表達我對你的感謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #17540 (CK) & #836577 (egg0073) +I confess that I'm tired. 我承认我很累。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756800 (cairnhead) & #4757233 (ryanwoo) +I could've told you that. 我應該告訴過你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200123 (CK) & #6947343 (verdastelo9604) +I decided to be a doctor. 我決定當個醫生了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256025 (CK) & #916644 (Martha) +I didn't know what to do. 我不知道要做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #255152 (CK) & #919751 (Martha) +I didn't know what to do. 我不知道該怎麼辦。 CC-BY 2.0 (France) Attribution: tatoeba.org #255152 (CK) & #919752 (Martha) +I didn't mean to do that. 我不是故意那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #29012 (CK) & #848223 (Martha) +I didn't mean to do that. 我没想那样做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29012 (CK) & #8715852 (crescat) +I didn't sell Tom my car. 我没把我的车卖给汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2290451 (CK) & #5613706 (verdastelo9604) +I don't care if it snows. 我不在乎是否下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #259032 (CK) & #846054 (Martha) +I don't eat chicken skin. 我吃不下鸡皮。 CC-BY 2.0 (France) Attribution: tatoeba.org #953420 (CK) & #2031425 (ydcok) +I don't have any enemies. 我没有敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #673109 (CK) & #760877 (vicch) +I don't have any sisters. 我没有姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #249753 (CK) & #2174231 (sadhen) +I don't know any of them. 他们中的任何一位我都不认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492498 (Ricardo14) & #1446777 (asosan) +I don't know for certain. 我不太確定。 CC-BY 2.0 (France) Attribution: tatoeba.org #35179 (CK) & #792397 (Martha) +I don't know his address. 我不知道他的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #261278 (CK) & #1416164 (sadhen) +I don't know what to say. 我不知道说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #436541 (lukaszpp) & #426418 (fucongcong) +I don't laugh very often. 我不常笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #6355367 (CK) & #6623179 (verdastelo9604) +I don't like eating meat. 我不喜歡吃肉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795620 (sharris123) & #6057151 (xjjAstrus) +I don't like this jacket. 我不喜歡那件夾克。 CC-BY 2.0 (France) Attribution: tatoeba.org #61041 (CK) & #767034 (Martha) +I don't like you anymore. 我再也不喜欢你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1435 (CK) & #1768157 (sadhen) +I don't love you anymore. 我不再爱你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #556796 (kebukebu) & #335060 (fucongcong) +I don't mind hot weather. 我不在乎炎熱的天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #321862 (CK) & #834738 (Martha) +I don't mind if it's hot. 辣点儿没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076309 (CK) & #1438343 (asosan) +I don't quite follow you. 我聽不太懂你的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #17202 (CK) & #834754 (Martha) +I don't think he'll come. 我不認為他會來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #418625 (CK) & #834984 (Martha) +I don't understand music. 我不懂音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #472165 (CK) & #472864 (fucongcong) +I don't want any excuses. 我不想听解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497865 (CK) & #5576832 (verdastelo9604) +I don't want to go alone. 我不想独自前往。 CC-BY 2.0 (France) Attribution: tatoeba.org #27653 (CK) & #528026 (biglion) +I don't want to lose you. 我不想失去你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012118 (CK) & #3710626 (egg0073) +I don't wish to harm you. 我不想傷害你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729096 (CM) & #6624633 (verdastelo9604) +I doubt if Tom is single. 我怀疑汤姆是单身。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027576 (CK) & #5983615 (verdastelo9604) +I feel like another beer. 我想再来一杯啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #31446 (CK) & #332782 (fucongcong) +I feel much better today. 我今天感觉好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242702 (CK) & #334279 (fucongcong) +I gave Tom three cookies. 我给了汤姆三块饼干。 CC-BY 2.0 (France) Attribution: tatoeba.org #8877771 (CK) & #8877846 (crescat) +I get a kick out of life. 我為人生感到很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #270517 (CK) & #805012 (Martha) +I go to church every day. 我每天上教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #507914 (CK) & #848458 (Martha) +I go to church on Sunday. 周日我去做礼拜。 CC-BY 2.0 (France) Attribution: tatoeba.org #259857 (CK) & #4764638 (ryanwoo) +I go to school by subway. 我搭地铁上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #259409 (CK) & #8795139 (crescat) +I go to school here, too. 我也在这儿上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #2329587 (CK) & #7773125 (jiangche) +I got a hole in my jeans. 我的牛仔褲破了一個洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #53894 (CK) & #804619 (Martha) +I got lost in the forest. 我在树林里迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255821 (CK) & #678189 (Martha) +I got my notebook stolen. 有人把我的筆記本電腦偷掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1279210 (CK) & #9057863 (xjjAstrus) +I got on the wrong train. 我上錯了火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #479978 (CK) & #846435 (Martha) +I got up early yesterday. 昨天我很早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #257789 (CK) & #835662 (Martha) +I grew up in the country. 我在鄉下長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #321900 (CK) & #848988 (Martha) +I guess it's only a joke. 估计那就是个笑话吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269597 (FeuDRenais) & #2254378 (KerenDeng) +I had some calls to make. 我要打几个电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331717 (CK) & #5555189 (verdastelo9604) +I handed the mike to him. 我把麥克風遞給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260334 (CK) & #846059 (Martha) +I have a bit of bad news. 我有个坏消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728412 (paper1n0) & #2052242 (cranewang) +I have a lot of homework. 我有很多功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #418848 (CK) & #846379 (Martha) +I have a stupid question. 我有一個愚蠢的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #410531 (CK) & #834892 (Martha) +I have a stupid question. 我有一个挺蠢的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #410531 (CK) & #6218394 (yuiyu) +I have confidence in you. 我對你有信心。 CC-BY 2.0 (France) Attribution: tatoeba.org #257142 (CK) & #834570 (Martha) +I have never felt better. 我从来没感觉那么好过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1884633 (davearms) & #334546 (fucongcong) +I have no doubt about it. 我没有疑问。 CC-BY 2.0 (France) Attribution: tatoeba.org #1403189 (al_ex_an_der) & #5091122 (mirrorvan) +I have no homework today. 我今天沒有功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #242878 (CK) & #834969 (Martha) +I have nowhere to go now. 我现在无处可去。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586777 (CK) & #8589665 (tianblr) +I have to get some sleep. 我必須睡一下覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #617467 (CK) & #793505 (Martha) +I have to go to the bank. 我必须到银行去。 CC-BY 2.0 (France) Attribution: tatoeba.org #256981 (CK) & #7772603 (jiangche) +I have to help my mother. 我必須幫忙我母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #484051 (CK) & #834807 (Martha) +I have trouble breathing. 我呼吸困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #7837112 (shekitten) & #8692456 (slo_oth) +I haven't eaten for days. 我好多天沒吃東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #689937 (ulyssemc1) & #764476 (Martha) +I haven't eaten for days. 我好多天没吃东西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #689937 (ulyssemc1) & #1417555 (sadhen) +I heard Tom was captured. 我听说汤姆被捕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360783 (CK) & #5650526 (verdastelo9604) +I heard an unusual sound. 我聽到一個不尋常的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #321714 (CK) & #834607 (Martha) +I helped her wash dishes. 我幫她洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #261043 (CK) & #834867 (Martha) +I hope he'll wait for me. 我希望他會等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #707188 (papabear) & #823004 (Martha) +I hung my hat on the peg. 我把我的帽子掛在掛鉤上。 CC-BY 2.0 (France) Attribution: tatoeba.org #321122 (CK) & #888470 (Martha) +I know I heard something. 我知道我听见了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064678 (CK) & #5900405 (verdastelo9604) +I know a lot about ships. 我知道很多關於船的知識。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375828 (CK) & #6147572 (verdastelo9604) +I know he is watching me. 我知道他在看著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #283748 (CK) & #849283 (Martha) +I know how to set a trap. 我知道怎么设陷阱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4279700 (Mofli) & #5576829 (verdastelo9604) +I know nothing about her. 我对她一无所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #308672 (CK) & #462020 (fucongcong) +I know that you're right. 我知道你是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6269420 (CK) & #6628367 (verdastelo9604) +I know what you're doing. 我知道你在做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887512 (CK) & #5691293 (verdastelo9604) +I know what's in the box. 我知道盒子裡有什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #256355 (CK) & #9096120 (xjjAstrus) +I like being on the team. 我喜欢在队伍里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553460 (CK) & #5883323 (verdastelo9604) +I like playing the piano. 我喜欢弹钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #255455 (CK) & #347427 (fucongcong) +I like shopping with Tom. 我喜歡跟湯姆購物。 CC-BY 2.0 (France) Attribution: tatoeba.org #5481158 (CK) & #6923181 (verdastelo9604) +I like to do my homework. 我喜歡做我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #1762587 (Amastan) & #6568346 (verdastelo9604) +I like to ride on trains. 我喜歡乘坐火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #326169 (CK) & #802009 (Martha) +I looked him in the eyes. 我直视他的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #260760 (CK) & #332762 (fucongcong) +I lost my notebook today. 今天我的筆記本掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242488 (CK) & #9054608 (xjjAstrus) +I love my work very much. 我非常喜欢我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2144985 (AlanF_US) & #407231 (fucongcong) +I love my yellow sweater. 我很喜欢我的黄色套衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #682509 (Source_VOA) & #816552 (fucongcong) +I met a friend of Mary's. 我遇到了瑪麗的一位朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #32016 (CK) & #846350 (Martha) +I met him at the station. 我在車站遇見他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260346 (CK) & #848779 (Martha) +I met him on my way home. 我在回家的路上遇到了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #20422 (CK) & #794156 (fucongcong) +I met him on my way home. 我在回家的路上遇見了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #20422 (CK) & #824438 (Martha) +I met the prince himself. 我见到了王子真人。 CC-BY 2.0 (France) Attribution: tatoeba.org #256311 (CK) & #791493 (fucongcong) +I often go to the movies. 我常常去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #29958 (CK) & #846376 (Martha) +I owe ten dollars to her. 我欠她10美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #308642 (CK) & #332806 (fucongcong) +I promise that I'll come. 我保证我会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825662 (CK) & #4760088 (ryanwoo) +I provided him with food. 我提供了他食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #285102 (CS) & #810590 (Martha) +I read a book last night. 我昨晚讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #744897 (Swift) & #3713601 (egg0073) +I read an exciting story. 我讀了一篇精彩的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #35074 (CK) & #835348 (Martha) +I really like this story. 我真喜歡這故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3598245 (karloelkebekio) & #6105116 (verdastelo9604) +I really want to see you. 好想見到你 CC-BY 2.0 (France) Attribution: tatoeba.org #1887630 (CK) & #5544966 (sodajuice) +I received an invitation. 我收到了一张请帖。 CC-BY 2.0 (France) Attribution: tatoeba.org #258705 (CK) & #332420 (fucongcong) +I saw her clean the room. 我看見了她打掃房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #261072 (CK) & #862735 (Martha) +I saw her enter the room. 我看見她進了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #261008 (CK) & #851492 (Martha) +I saw him cross the road. 我看见他穿过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #260130 (CK) & #405046 (fucongcong) +I saw him reading a book. 我看見他在讀一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #2587869 (CM) & #6309834 (verdastelo9604) +I see you found your bag. 我见你找到了你的包。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406263 (CK) & #5829617 (verdastelo9604) +I shouldn't have done it. 我本不应该做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #264957 (CK) & #1372503 (sadhen) +I signed the lease today. 我今天签了租约。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406519 (CK) & #5670779 (verdastelo9604) +I spent 10 dollars on it. 我在这东西上花了十美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #1042236 (yessoos) & #1413681 (sadhen) +I telephoned her at once. 我立刻打電話給她。 CC-BY 2.0 (France) Attribution: tatoeba.org #248026 (CK) & #780236 (Martha) +I think I made a mistake. 我认为我犯了个错。 CC-BY 2.0 (France) Attribution: tatoeba.org #2473875 (Hybrid) & #5903465 (verdastelo9604) +I think I'm going to cry. 我想我要哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2407900 (CK) & #6044371 (verdastelo9604) +I think I've done enough. 我認為我做得夠了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916341 (CK) & #6119484 (verdastelo9604) +I think Tom is very cool. 我認為湯姆很酷。 CC-BY 2.0 (France) Attribution: tatoeba.org #5164847 (CK) & #6169157 (verdastelo9604) +I think it won't succeed. 我認為它不會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #416233 (CK) & #834701 (Martha) +I think we should try it. 我認為我們該試試。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619961 (CK) & #8215747 (verdastelo9604) +I think we're in trouble. 我认为我们有麻烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408503 (CK) & #5780598 (verdastelo9604) +I think you went too far. 我觉得您过火了。 CC-BY 2.0 (France) Attribution: tatoeba.org #434087 (blay_paul) & #785991 (fucongcong) +I thought I was dreaming. 我还以为我在做梦呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961297 (CK) & #2033412 (sadhen) +I tried to call Tom back. 我試著叫湯姆回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545583 (CK) & #6128453 (verdastelo9604) +I understand the concept. 我明白这概念。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666468 (CK) & #5911674 (verdastelo9604) +I used to eat like a pig. 我曾经像猪一样吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1724649 (CM) & #5670787 (verdastelo9604) +I usually get up at 6:00. 我通常在六點鐘起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #460916 (CK) & #859126 (Martha) +I usually get up at 6:00. 我一般六点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #460916 (CK) & #8780276 (crescat) +I usually walk to school. 我通常走去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #254901 (CK) & #345930 (fucongcong) +I usually walk to school. 一般我步行去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #254901 (CK) & #481022 (biglion) +I walked along the river. 我沿着河走了段路。 CC-BY 2.0 (France) Attribution: tatoeba.org #259103 (CK) & #8673733 (crescat) +I want Tom put in prison. 我想讓湯姆進監獄。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012149 (CK) & #6111922 (verdastelo9604) +I want a good dictionary. 我想要本好词典。 CC-BY 2.0 (France) Attribution: tatoeba.org #453183 (FeuDRenais) & #4265103 (notabene) +I want some orange juice. 我想要一點柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2744939 (sharptoothed) & #5548522 (egg0073) +I want something to read. 我要些讀的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25049 (CK) & #834961 (Martha) +I want to believe in Tom. 我要相信湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7834037 (sharris123) & #5856915 (xjjAstrus) +I want to reserve a room. 我想預定一個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020024 (CM) & #1020025 (egg0073) +I wanted to surprise her. 我想給她一個驚喜。 CC-BY 2.0 (France) Attribution: tatoeba.org #261342 (CK) & #835766 (Martha) +I was abducted by aliens. 我被外星人绑架了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253209 (CK) & #435364 (fucongcong) +I was afraid I'd be late. 我怕我會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #508770 (CK) & #861157 (Martha) +I was asked to wait here. 我被要求在这里等。 CC-BY 2.0 (France) Attribution: tatoeba.org #253458 (CK) & #465884 (fucongcong) +I was born in the winter. 我在冬天出生。 CC-BY 2.0 (France) Attribution: tatoeba.org #682445 (Source_VOA) & #887849 (Martha) +I was in Tokyo yesterday. 我昨天在東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #257792 (CK) & #834796 (Martha) +I was lonely without her. 她不在,我很孤独。 CC-BY 2.0 (France) Attribution: tatoeba.org #310510 (Eldad) & #375290 (fucongcong) +I was waiting for a taxi. 我等着出租车。 CC-BY 2.0 (France) Attribution: tatoeba.org #254932 (CK) & #363981 (fucongcong) +I will be at the meeting. 我会出席会议的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2845997 (englishchinese) & #462105 (fucongcong) +I will explain it to her. 我会跟她解释的。 CC-BY 2.0 (France) Attribution: tatoeba.org #247031 (CK) & #344195 (fucongcong) +I will go to the meeting. 我将要去参加会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #490262 (sacredceltic) & #3770520 (Debbie_Linder) +I will not eat ice cream. 我不會吃冰淇淋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1132445 (Scott) & #6169145 (verdastelo9604) +I will write to you soon. 我會盡快寫信給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #52195 (CK) & #859227 (Martha) +I wish I was young again. 我希望我再年輕一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #885649 (Trailsend) & #778836 (Martha) +I won't be here tomorrow. 我明天不在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1412469 (CK) & #1415796 (sadhen) +I wonder if Tom likes me. 我不知道湯姆是否喜歡我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330337 (CK) & #6923189 (verdastelo9604) +I wonder if this is love. 我不知道這是不是愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #435651 (CK) & #861147 (Martha) +I wonder why he did that. 我不知道他為什麼那樣做? CC-BY 2.0 (France) Attribution: tatoeba.org #448906 (CK) & #859412 (Martha) +I worked a lot this week. 我这周干了很多活。 CC-BY 2.0 (France) Attribution: tatoeba.org #1160551 (Eldad) & #8936504 (crescat) +I worked hard last month. 我上個月很努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #259046 (CK) & #834806 (Martha) +I would do it if I could. 我如果能做就做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4555298 (Eldad) & #6103247 (verdastelo9604) +I would like fruit juice. 我想要果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #455795 (lukaszpp) & #5548508 (egg0073) +I would like to help you. 我愿意帮你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2275532 (Dejo) & #1867015 (yuzazaza) +I'd be happy to help you. 我愿意帮你。 CC-BY 2.0 (France) Attribution: tatoeba.org #409116 (blay_paul) & #1867015 (yuzazaza) +I'd better get back home. 我回家比较好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361821 (CK) & #5829615 (verdastelo9604) +I'd like an orange juice. 我想要一杯柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #537051 (CK) & #836111 (Martha) +I'd like some more water. 请再给我一些水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270772 (CK) & #8698961 (crescat) +I'd like to go to London. 我想要去伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #255944 (CK) & #332718 (fucongcong) +I'd like to see a doctor. 我想看醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #28045 (CK) & #859451 (Martha) +I'd like to see a doctor. 我要看病。 CC-BY 2.0 (France) Attribution: tatoeba.org #28045 (CK) & #859469 (Martha) +I'd like you to go there. 我希望你去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257069 (CK) & #864324 (Martha) +I'd never done it before. 我以前從未過它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361847 (CK) & #6065360 (verdastelo9604) +I'd very much like to go. 我非常想离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #7803396 (CK) & #3579845 (CLARET) +I'll be flying to Boston. 我将要飞到波士顿去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3036337 (CK) & #5091332 (mirrorvan) +I'll be gone for a while. 我要暂时离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #5205110 (CK) & #5907491 (verdastelo9604) +I'll be here for a while. 我在这待一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #585504 (CK) & #8734979 (crescat) +I'll be there right away. 我馬上到那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #518885 (CK) & #834872 (Martha) +I'll get you some coffee. 我會給你帶些咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545479 (CK) & #6109286 (verdastelo9604) +I'll give you this money. 我會給你這筆錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #17562 (CK) & #835643 (Martha) +I'll make you a new suit. 我會給你做一套新衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #17462 (CK) & #834797 (Martha) +I'll never do this again. 我永遠不會再這樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #28379 (CK) & #834995 (Martha) +I'll stay here for a bit. 我在这待一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #415436 (FeuDRenais) & #8734979 (crescat) +I'll treat you to dinner. 晚饭我请客。 CC-BY 2.0 (France) Attribution: tatoeba.org #1225375 (CK) & #8742132 (crescat) +I'm a university student. 我是个大学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #568945 (FeuDRenais) & #2031433 (ydcok) +I'm afraid it won't work. 我怕它是行不通的。 CC-BY 2.0 (France) Attribution: tatoeba.org #416232 (CK) & #836114 (Martha) +I'm as hungry as a horse. 我餓得像匹馬。 CC-BY 2.0 (France) Attribution: tatoeba.org #321302 (CK) & #857838 (Martha) +I'm as hungry as a horse. 我饿得跟饿虎扑羊似的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321302 (CK) & #5092076 (mirrorvan) +I'm as tall as my father. 我跟我父親一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #261535 (CK) & #919735 (Martha) +I'm completely exhausted. 我完全地筋疲力盡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433726 (CK) & #826150 (Martha) +I'm crazy about football. 我愛足球愛瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #512224 (CK) & #819450 (Martha) +I'm delighted to see you. 我很高兴见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545426 (CK) & #406328 (fucongcong) +I'm glad someone told me. 真高兴有人告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5260884 (CK) & #5631894 (verdastelo9604) +I'm glad to see you back. 很高兴再见到您。 CC-BY 2.0 (France) Attribution: tatoeba.org #2441 (CK) & #794188 (fucongcong) +I'm glad to see you back. 很高兴再见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2441 (CK) & #794189 (fucongcong) +I'm going to go sit down. 我要坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545401 (CK) & #5780508 (verdastelo9604) +I'm going to go tell Tom. 我要告诉汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545400 (CK) & #5595207 (verdastelo9604) +I'm going to take a bath. 我打算洗个澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2393 (CK) & #1776636 (sadhen) +I'm going to take my car. 我将去取我的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2334 (CK) & #1776579 (sadhen) +I'm interested in sports. 我对运动感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873168 (CK) & #8698963 (crescat) +I'm learning how to type. 我正在學如何打字。 CC-BY 2.0 (France) Attribution: tatoeba.org #28997 (CK) & #917934 (Martha) +I'm not a native speaker. 我不是个母语者。 CC-BY 2.0 (France) Attribution: tatoeba.org #4620521 (CK) & #4620847 (Yashanti) +I'm not finding anything. 我甚麼也沒找到。 CC-BY 2.0 (France) Attribution: tatoeba.org #5744952 (CM) & #6138318 (verdastelo9604) +I'm not going to give up. 我不会放弃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952797 (CK) & #8686679 (crescat) +I'm not moving to Boston. 我没有向波士顿走。 CC-BY 2.0 (France) Attribution: tatoeba.org #4963943 (CK) & #5983634 (verdastelo9604) +I'm only thinking of you. 我只想到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #430988 (CK) & #835764 (Martha) +I'm playing football now. 我現在正在踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #257472 (CK) & #917794 (Martha) +I'm responsible for that. 我对此负有责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #2904404 (CK) & #7772147 (jiangche) +I'm running out of ideas. 我没主意了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2208 (CK) & #343922 (fucongcong) +I'm staying at my aunt's. 我住在我姑姑家。 CC-BY 2.0 (France) Attribution: tatoeba.org #253246 (CK) & #918000 (Martha) +I'm tired of translating. 我厭倦了翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #721034 (brauliobezerra) & #818184 (Martha) +I'm too drunk to do that. 我喝醉了,做不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #5654425 (CK) & #6146503 (verdastelo9604) +I'm very tired right now. 我現在很累。 CC-BY 2.0 (France) Attribution: tatoeba.org #5973901 (Sethlang) & #5973319 (xjjAstrus) +I've already eaten lunch. 我已經吃過午餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6769469 (CK) & #8388709 (wangchou) +I've always kept my word. 我一直信守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #7781434 (CK) & #846158 (Martha) +I've always kept my word. 我一直遵守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #7781434 (CK) & #848420 (Martha) +I've been cheated before. 我以前被騙過。 CC-BY 2.0 (France) Attribution: tatoeba.org #5191960 (CK) & #6071011 (verdastelo9604) +I've done enough already. 我已经做够了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850213 (CK) & #5931760 (verdastelo9604) +Is Tom really a nice guy? 汤姆是个好人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5164853 (CK) & #5767603 (verdastelo9604) +Is that what it's called? 那就是它的叫法嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5744915 (CM) & #6325089 (verdastelo9604) +Is there a zoo in Boston? 波士顿有动物园吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1451597 (CK) & #5862157 (verdastelo9604) +Is there an app for that? 有它的应用吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1306945 (CK) & #5663598 (verdastelo9604) +Is this a duty-free shop? 這是一間免稅商店嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #495846 (CK) & #835679 (Martha) +Is this bag yours or his? 那个包是你的还是他的? CC-BY 2.0 (France) Attribution: tatoeba.org #60661 (CK) & #2040522 (sadhen) +Is this fish still alive? 这条鱼还是活的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #59696 (CK) & #346461 (fucongcong) +Isn't Tom from Australia? 汤姆不是澳洲来的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7422206 (CK) & #8924822 (crescat) +It belongs to my brother. 它屬於我兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #628448 (Eldad) & #780235 (Martha) +It doesn't mean anything. 这什么都说明不了! CC-BY 2.0 (France) Attribution: tatoeba.org #2269346 (CK) & #502860 (fucongcong) +It doesn't really matter. 那不真的重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #2272039 (CK) & #6070852 (verdastelo9604) +It is going to rain soon. 天快要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32468 (CK) & #335128 (fucongcong) +It is unfortunately true. 可惜这是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1320 (Zifre) & #38 (fucongcong) +It makes no sense at all. 这没有任何意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #1832135 (Spamster) & #346785 (fucongcong) +It must be a coincidence. 這一定是個巧合。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645050 (CK) & #5542972 (egg0073) +It really comes in handy. 這真的能派上用場。 CC-BY 2.0 (France) Attribution: tatoeba.org #1170464 (CM) & #714319 (egg0073) +It seems that he's happy. 看來,他很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #512043 (CK) & #835844 (Martha) +It was already very late. 天色已晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #1416206 (CM) & #1416190 (sadhen) +It was beginning to snow. 開始下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272546 (CK) & #835742 (Martha) +It was discovered by Tom. 它是由湯姆發現的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5747165 (CM) & #6332417 (verdastelo9604) +It was just as I thought. 这正如我想的一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #42622 (CK) & #866236 (kooler) +It's a basic human right. 它是基本人权。 CC-BY 2.0 (France) Attribution: tatoeba.org #1983986 (Spamster) & #5613655 (verdastelo9604) +It's about time to start. 差不多该开始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31574 (CK) & #8854599 (crescat) +It's better than nothing. 有比沒有好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3286850 (CK) & #759630 (Martha) +It's hot today, isn't it? 今天很熱,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242884 (CK) & #834893 (Martha) +It's my duty to help you. 帮助你是我的责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #68789 (CK) & #472326 (fucongcong) +It's not quite ready yet. 还没怎么准备好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1550913 (Scott) & #5576779 (verdastelo9604) +It's our job to help you. 帮助你是我们的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3915108 (CK) & #5613634 (verdastelo9604) +It's pitch black outside. 外面一片漆黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1053374 (CK) & #503068 (fucongcong) +It's six o'clock already. 已經六點鐘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31687 (CK) & #832831 (Martha) +It's time to take a bath. 是时候洗个澡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64042 (CK) & #343961 (fucongcong) +It's up to you to decide. 由你來決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #238563 (CK) & #834868 (Martha) +Just take my word for it. 請相信我的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #40560 (CM) & #798264 (Martha) +Keep this lesson in mind. 记好了这教训。 CC-BY 2.0 (France) Attribution: tatoeba.org #59671 (CK) & #5983644 (verdastelo9604) +Let him play your guitar. 讓他彈你的吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #285047 (CK) & #834876 (Martha) +Let me check your ticket. 讓我看一下你的票。 CC-BY 2.0 (France) Attribution: tatoeba.org #442059 (CK) & #834978 (Martha) +Let me explain it to Tom. 讓我跟湯姆說明。 CC-BY 2.0 (France) Attribution: tatoeba.org #3534157 (CK) & #6086797 (verdastelo9604) +Let me explain it to you. 讓我給你說明。 CC-BY 2.0 (France) Attribution: tatoeba.org #3907305 (CK) & #6149018 (verdastelo9604) +Let me have a look at it. 讓我看看它。 CC-BY 2.0 (France) Attribution: tatoeba.org #41823 (CK) & #894409 (Martha) +Let me make you some tea. 讓我給你沏茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820377 (CK) & #6624655 (verdastelo9604) +Let me think for a while. 讓我思考一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #53401 (CK) & #781191 (Martha) +Let's do it another time. 改天再說吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #32652 (CK) & #834975 (Martha) +Let's do it another time. 再找時間吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #32652 (CK) & #834977 (Martha) +Let's get together again! 讓我們再聚在一起! CC-BY 2.0 (France) Attribution: tatoeba.org #32633 (CK) & #771392 (Martha) +Let's not fool ourselves. 我们别自骗自了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5178467 (CK) & #5632412 (verdastelo9604) +Let's take a short break. 讓我們休息一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #471780 (Swift) & #748747 (Martha) +Look out for pickpockets. 小心扒手。 CC-BY 2.0 (France) Attribution: tatoeba.org #33464 (CK) & #2143971 (ydcok) +Look what I made for you. 看我为你做了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3917441 (CK) & #5685916 (verdastelo9604) +Many friends saw him off. 許多朋友為他送行。 CC-BY 2.0 (France) Attribution: tatoeba.org #402908 (CK) & #835396 (Martha) +Mary had to go to school. 瑪麗必須去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #31951 (CK) & #862868 (Martha) +May I ask some questions? 我可以問一些問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #66544 (CK) & #834886 (Martha) +May I ask you a question? 我可以问你个问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #71054 (CK) & #480595 (biglion) +May I go to the bathroom? 我可以去洗手間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #517397 (CK) & #850379 (Martha) +May I go to the restroom? 我可以去洗手間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #517399 (CK) & #850379 (Martha) +May I see you in private? 我們能私下見見嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3821388 (CK) & #4467877 (yuiyu) +Mother has a coffee shop. 媽媽有一個咖啡廳。 CC-BY 2.0 (France) Attribution: tatoeba.org #320705 (CM) & #881141 (Martha) +Mt. Asama is now dormant. 浅间山现在是寂静的。 CC-BY 2.0 (France) Attribution: tatoeba.org #273346 (CK) & #5655373 (verdastelo9604) +My aunt gave me a camera. 我的阿姨給了我一台攝影機。 CC-BY 2.0 (France) Attribution: tatoeba.org #64933 (CK) & #805231 (Martha) +My aunt gave me an album. 我姑姑給了我一張唱片專輯。 CC-BY 2.0 (France) Attribution: tatoeba.org #266659 (CK) & #805215 (Martha) +My aunt gave me an album. 我姑姑給了我一本相簿。 CC-BY 2.0 (France) Attribution: tatoeba.org #266659 (CK) & #805217 (Martha) +My aunt gave me an album. 我姑姑給了我一本集郵冊。 CC-BY 2.0 (France) Attribution: tatoeba.org #266659 (CK) & #805218 (Martha) +My blood pressure is low. 我的血压很低。 CC-BY 2.0 (France) Attribution: tatoeba.org #7051162 (AlanF_US) & #399949 (fucongcong) +My father drives to work. 我父親開車去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #497115 (CK) & #834890 (Martha) +My father gave me a game. 我爸爸给我了游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #261520 (CK) & #5611441 (verdastelo9604) +My father is in his room. 我父親在他的房間裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #319252 (CK) & #861155 (Martha) +My front teeth stick out. 我门牙突出。 CC-BY 2.0 (France) Attribution: tatoeba.org #7213391 (CM) & #835602 (fucongcong) +My house is old and ugly. 我的房子又舊又難看。 CC-BY 2.0 (France) Attribution: tatoeba.org #250549 (CK) & #6678446 (verdastelo9604) +My husband's not in town. 我丈夫没在城里。 CC-BY 2.0 (France) Attribution: tatoeba.org #4381953 (Hybrid) & #7767655 (jiangche) +My job is to wash dishes. 我的工作是洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #250934 (CK) & #333039 (fucongcong) +My job is to wash dishes. 我的工作是洗盤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #250934 (CK) & #5234815 (xjjAstrus) +My job is washing dishes. 我的工作是洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #7801460 (sharris123) & #333039 (fucongcong) +My job is washing dishes. 我的工作是洗盤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7801460 (sharris123) & #5234815 (xjjAstrus) +My mother is quite angry. 我母亲十分生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795899 (sharris123) & #1783838 (sadhen) +My room faces the garden. 我的房間面向花園。 CC-BY 2.0 (France) Attribution: tatoeba.org #251787 (CK) & #788832 (Martha) +My shoulder really aches. 我的肩膀很痠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2262981 (FeuDRenais) & #2256354 (cienias) +My team is always losing. 我们队总是输。 CC-BY 2.0 (France) Attribution: tatoeba.org #1689353 (mookeee) & #2454700 (fenfang557) +My team is always losing. 我们队从来就没赢过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1689353 (mookeee) & #2454702 (fenfang557) +My uncle gave me his car. 我叔叔給了我他的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #490358 (CK) & #850369 (Martha) +My watch has been stolen. 我的表被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251010 (CK) & #487711 (fucongcong) +Nobody should be worried. 沒人應該擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502995 (CK) & #6624683 (verdastelo9604) +Nobody tried to help Tom. 没人试图帮汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898294 (CK) & #5611543 (verdastelo9604) +Nothing is going his way. 什么都没按他的路子走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1522288 (Spamster) & #5595153 (verdastelo9604) +Nothing much has changed. 沒有多少改變。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825794 (CK) & #6149910 (verdastelo9604) +One of the dogs is alive. 這些狗中的其中一隻是活的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42013 (CK) & #886586 (Martha) +Our baby cannot talk yet. 我家宝宝还不会说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #65556 (CM) & #2032294 (ydcok) +Pass me the salt, please. 请把盐递给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #25729 (CK) & #407281 (fucongcong) +Pass me the salt, please. 请给我盐。 CC-BY 2.0 (France) Attribution: tatoeba.org #25729 (CK) & #7767733 (jiangche) +Pass me the wine, please. 請把酒遞給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #29069 (CK) & #845476 (Martha) +People should be dancing. 人們應該在跳舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497112 (CK) & #6103209 (verdastelo9604) +Please choose one person. 請選擇一個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #442000 (CK) & #819479 (Martha) +Please don't use my name. 請不要用我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276693 (CK) & #6293066 (verdastelo9604) +Please find me my wallet. 请帮我找一下我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #250918 (CK) & #332582 (fucongcong) +Please give me a blanket. 請給我送一塊毯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2769828 (CK) & #768166 (Martha) +Please knock on the door. 请敲门。 CC-BY 2.0 (France) Attribution: tatoeba.org #2883605 (CK) & #472974 (fucongcong) +Please put on your shoes. 請穿上你的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #18092 (CK) & #840665 (Martha) +Please put your shoes on. 請穿上你的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #414063 (CK) & #840665 (Martha) +Please speak more loudly. 請說大聲一點兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #450078 (CK) & #824564 (Martha) +Please speak more loudly. 請說更大聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #450078 (CK) & #844567 (Martha) +Please speak more loudly. 請說話大聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #450078 (CK) & #856377 (Martha) +Please take off your hat. 请您摘下您的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #38456 (CK) & #343263 (fucongcong) +Please tell me Tom is OK. 请告诉我汤姆很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3721288 (CM) & #5698041 (verdastelo9604) +Please tell me your name. 請告訴我你的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #250101 (CK) & #840610 (Martha) +Please turn on the radio. 請打開收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #29764 (CK) & #844592 (Martha) +Please turn on the radio. 请打开收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #29764 (CK) & #2032173 (ydcok) +Please turn on the radio. 请将收音机打开。 CC-BY 2.0 (France) Attribution: tatoeba.org #29764 (CK) & #2032174 (ydcok) +Please wait on him first. 請先等他。 CC-BY 2.0 (France) Attribution: tatoeba.org #285113 (CK) & #6624688 (verdastelo9604) +Please water the flowers. 請澆花。 CC-BY 2.0 (France) Attribution: tatoeba.org #507184 (FeuDRenais) & #6146641 (verdastelo9604) +Politics leaves him cold. 他對政治沒有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #509205 (blay_paul) & #909883 (Martha) +Pride goes before a fall. 骄傲是失败的先行者。 CC-BY 2.0 (France) Attribution: tatoeba.org #65099 (CM) & #3086999 (sadhen) +Pride goes before a fall. 骄傲使人落后。 CC-BY 2.0 (France) Attribution: tatoeba.org #65099 (CM) & #4546871 (murr) +Put the gun on the table. 把槍放在桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #46688 (CK) & #798153 (Martha) +Read as much as possible. 盡可能地多閱讀書籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496207 (weihaiping) & #786622 (Martha) +She also likes chocolate. 她也喜欢巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #1152245 (belgavox) & #1428135 (sadhen) +She and I are classmates. 她和我是同學。 CC-BY 2.0 (France) Attribution: tatoeba.org #321410 (CK) & #842391 (Martha) +She burned her left hand. 她的左手被燙到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #578929 (CK) & #6016966 (xjjAstrus) +She called me many times. 她打了很多次電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #388589 (CK) & #836289 (Martha) +She decided to marry him. 她决定和他结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #887061 (CK) & #1360032 (sadhen) +She disliked her husband. 她不喜歡她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #388376 (CK) & #832761 (Martha) +She divorced her husband. 她與丈夫離婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #316753 (CK) & #781427 (Martha) +She fell down the ladder. 她从梯子上摔了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #310894 (CM) & #7772608 (jiangche) +She goes to night school. 她上夜校。 CC-BY 2.0 (France) Attribution: tatoeba.org #410542 (CK) & #842445 (Martha) +She has had to stay here. 她不得不待在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #61816 (Eldad) & #812217 (fucongcong) +She is a wonderful woman. 她是個很棒的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #311024 (CK) & #838521 (Martha) +She is an obstinate girl. 她是个倔强的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #312513 (Eldad) & #336456 (fucongcong) +She is at work right now. 她现在正在工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #313650 (CK) & #2032126 (ydcok) +She is everything to him. 她是他的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #284628 (CK) & #332435 (fucongcong) +She is hard up for money. 她錢不夠。 CC-BY 2.0 (France) Attribution: tatoeba.org #310609 (CK) & #772145 (Martha) +She laid the work on him. 她派他去工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388393 (CK) & #851549 (Martha) +She left here in a hurry. 她匆忙地離開了這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #388962 (CK) & #852137 (Martha) +She left here right away. 她馬上離開了這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #388673 (CK) & #844596 (Martha) +She likes chocolate, too. 她也喜欢巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #707189 (papabear) & #1428135 (sadhen) +She looks like a teacher. 她看起来像老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #313257 (CK) & #8686303 (crescat) +She loves chocolate, too. 她也喜欢巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #311595 (CK) & #1428135 (sadhen) +She made me a nice dress. 她做了一件好看的衣服給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #314232 (CK) & #801964 (Martha) +She made the doll for me. 她為我做了這個娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #311312 (CK) & #796013 (Martha) +She prefers beer to wine. 她喜欢啤酒胜过葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #312450 (CK) & #863954 (kooler) +She sang better than him. 她唱得比他好。 CC-BY 2.0 (France) Attribution: tatoeba.org #580432 (CK) & #813508 (fucongcong) +She sent this book to me. 她寄這本書給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #310854 (CK) & #862700 (Martha) +She showed him the photo. 她把照片给他看。 CC-BY 2.0 (France) Attribution: tatoeba.org #607245 (darinmex) & #1753160 (sadhen) +She talked as she walked. 她邊走邊談。 CC-BY 2.0 (France) Attribution: tatoeba.org #388595 (CK) & #839568 (Martha) +She went there yesterday. 她昨天去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #313813 (CK) & #780380 (Martha) +She's Tom's older sister. 她是Tom的姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1523978 (CK) & #1523967 (egg0073) +She's not as old as Mary. 她沒有瑪麗年紀大。 CC-BY 2.0 (France) Attribution: tatoeba.org #309934 (CK) & #891765 (Martha) +Should I cancel the call? 我该取消通话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #278426 (CK) & #333285 (fucongcong) +Someone pushed me inside. 有人推我到裡面。 CC-BY 2.0 (France) Attribution: tatoeba.org #763890 (rpglover64) & #767058 (Martha) +Spring will be here soon. 春天快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #573072 (FeuDRenais) & #797026 (Martha) +Stand back from the rope. 退到繩子後面。 CC-BY 2.0 (France) Attribution: tatoeba.org #29444 (CK) & #836439 (Martha) +Take a taxi to the hotel. 打的去旅馆吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #33354 (Blaz) & #745868 (fucongcong) +Take as much as you like. 你爱拿多少就拿多少。 CC-BY 2.0 (France) Attribution: tatoeba.org #52298 (Swift) & #336507 (fucongcong) +Tell her to come at noon. 让她中午过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #308906 (CK) & #375286 (fucongcong) +Ten years is a long time. 十年是很長的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #73398 (CK) & #874503 (Martha) +Thank you for everything. 为一切感谢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2107842 (Eldad) & #5845554 (verdastelo9604) +Thank you for your reply. 谢谢你的答复。 CC-BY 2.0 (France) Attribution: tatoeba.org #2645019 (CK) & #332508 (fucongcong) +That flower smells sweet. 那花闻起来很香。 CC-BY 2.0 (France) Attribution: tatoeba.org #68517 (CK) & #363881 (fucongcong) +That goes without saying. 不言而喻。 CC-BY 2.0 (France) Attribution: tatoeba.org #42466 (CS) & #4760000 (ryanwoo) +That guy drives me crazy. 那家伙让我发疯。 CC-BY 2.0 (France) Attribution: tatoeba.org #4568878 (imjcooper) & #5617266 (verdastelo9604) +That house is very small. 這房子非常小。 CC-BY 2.0 (France) Attribution: tatoeba.org #68537 (CK) & #793207 (Martha) +That makes no difference. 这没有任何区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #41534 (Swift) & #335016 (fucongcong) +That man stole my wallet. 那男人偷了我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #1102855 (ScarsAndStripes) & #792791 (fucongcong) +That toy is made of wood. 这个玩具是木制的。 CC-BY 2.0 (France) Attribution: tatoeba.org #68727 (Zifre) & #415639 (fucongcong) +That toy is made of wood. 這個玩具是用木頭做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #68727 (Zifre) & #778846 (Martha) +That was all Greek to me. 我完全看不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #426943 (blay_paul) & #760717 (Martha) +That wasn't my intention. 那不是我的本意。 CC-BY 2.0 (France) Attribution: tatoeba.org #1402 (CK) & #461600 (fucongcong) +That wasn't my intention. 这不是我的初衷。 CC-BY 2.0 (France) Attribution: tatoeba.org #1402 (CK) & #501393 (fucongcong) +That wasn't my intention. 那不是我故意的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1402 (CK) & #8686697 (crescat) +That's a stupid question. 这是一个愚蠢的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2711968 (CK) & #1808259 (sadhen) +That's against the rules. 这违反规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594013 (CK) & #7767601 (jiangche) +That's my favorite chair. 那是我最喜歡的椅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #410747 (CK) & #825132 (Martha) +That's quite meaningless. 这毫无意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #42620 (CK) & #866233 (kooler) +That's very sweet of you. 您真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16476 (CK) & #471294 (fucongcong) +That's what I always say. 那是我經常說的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3591640 (CK) & #6109330 (verdastelo9604) +That's what I have to do. 那是我必須做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3591652 (CK) & #6105196 (verdastelo9604) +That's what Tom promised. 那是汤姆承诺的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2869540 (CK) & #5555670 (verdastelo9604) +The Hilton Hotel, please. 请开到希尔顿酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #34575 (autuno) & #343443 (fucongcong) +The baby cried all night. 這孩子哭了一整夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #492680 (CK) & #844486 (Martha) +The bell hasn't rung yet. 钟还没响。 CC-BY 2.0 (France) Attribution: tatoeba.org #9013912 (CK) & #846667 (fucongcong) +The blanket is still wet. 这个毯子还是湿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144844 (CK) & #4147285 (sissima) +The boy can count to ten. 这小男孩能数到十。 CC-BY 2.0 (France) Attribution: tatoeba.org #47537 (CK) & #4265107 (notabene) +The car is in the garage. 车在车库里。 CC-BY 2.0 (France) Attribution: tatoeba.org #882715 (CK) & #8831892 (crescat) +The class begins at 8:30. 課程八點半開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #413315 (CK) & #840648 (Martha) +The dog was hit by a car. 狗被車撞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388643 (CK) & #904912 (Martha) +The door was kicked open. 门被踢开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725457 (CM) & #5581800 (verdastelo9604) +The fuel gauge is broken. 燃油表坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1545434 (Spamster) & #1873096 (sadhen) +The nail tore his jacket. 這個釘子撕破了他的夾克。 CC-BY 2.0 (France) Attribution: tatoeba.org #278607 (CK) & #840799 (Martha) +The old man is very kind. 這位老人家非常仁慈。 CC-BY 2.0 (France) Attribution: tatoeba.org #480143 (CK) & #872147 (Martha) +The plan was carried out. 计划被执行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7765388 (sharris123) & #829599 (fucongcong) +The police are after him. 警察在跟著他。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264396 (sharptoothed) & #6098431 (verdastelo9604) +The poor girl went blind. 這可憐的女孩瞎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63450 (Dejo) & #778726 (Martha) +The red dress suited her. 這件紅色的洋裝適合她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394945 (CK) & #836376 (Martha) +The refrigerator is open. 冰箱開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #3779408 (Eldad) & #9096091 (xjjAstrus) +The sky is full of stars. 天空中繁星点点。 CC-BY 2.0 (France) Attribution: tatoeba.org #18278 (CK) & #346466 (fucongcong) +The sky is full of stars. 天空布满星辰。 CC-BY 2.0 (France) Attribution: tatoeba.org #18278 (CK) & #7772580 (jiangche) +The snow has disappeared. 雪消失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272602 (CK) & #397552 (fucongcong) +The students all laughed. 學生都笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3402133 (Hybrid) & #6623188 (verdastelo9604) +The telephone is ringing. 電話正在響。 CC-BY 2.0 (France) Attribution: tatoeba.org #710668 (CM) & #710667 (egg0073) +The train got in on time. 火车准时到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #326251 (CK) & #510665 (fucongcong) +The vacation is over now. 现在假期结束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1809 (brauliobezerra) & #502747 (fucongcong) +Their cattle are all fat. 他們的牛都很肥。 CC-BY 2.0 (France) Attribution: tatoeba.org #24058 (CK) & #794038 (Martha) +There is a knife missing. 少一把刀。 CC-BY 2.0 (France) Attribution: tatoeba.org #36555 (CK) & #746030 (fucongcong) +There is a spoon missing. 少了一把勺子。 CC-BY 2.0 (France) Attribution: tatoeba.org #51818 (CK) & #466234 (fucongcong) +There is a spoon missing. 缺一把勺子。 CC-BY 2.0 (France) Attribution: tatoeba.org #51818 (CK) & #1316988 (vicch) +There isn't any solution. 无解。 CC-BY 2.0 (France) Attribution: tatoeba.org #2362 (CK) & #1776593 (sadhen) +There's a letter for you. 你有一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #5815864 (Hybrid) & #9057897 (xjjAstrus) +There's been an accident. 曾經有一個意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #263667 (CK) & #826301 (Martha) +There's no need to hurry. 沒有必要著急。 CC-BY 2.0 (France) Attribution: tatoeba.org #450099 (CK) & #836368 (Martha) +There's nothing I can do. 沒有我可以做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #25515 (CK) & #840515 (Martha) +These things aren't mine! 这些东西不是我的! CC-BY 2.0 (France) Attribution: tatoeba.org #1652 (CK) & #501533 (fucongcong) +They are very big apples. 他們是非常大的蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #41963 (CK) & #839514 (Martha) +They became very nervous. 他们变得很紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481683 (weihaiping) & #476201 (fucongcong) +They called him a coward. 他們稱他膽小鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #307401 (CK) & #842426 (Martha) +They don't even know why. 他們甚至不知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2428 (CM) & #893018 (Martha) +They don't need a reason. 他们不需要理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #2278281 (CK) & #5883314 (verdastelo9604) +They don't pay me enough. 他們給我錢沒給夠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2278283 (CK) & #6534795 (verdastelo9604) +They flunked their exams. 他們考試不及格。 CC-BY 2.0 (France) Attribution: tatoeba.org #4778155 (garborg) & #4455671 (egg0073) +They granted his request. 他們批准了他的請求。 CC-BY 2.0 (France) Attribution: tatoeba.org #307376 (CM) & #780064 (Martha) +They have nothing to eat. 他們沒有東西吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1058921 (Brian255) & #766440 (Martha) +They must really hate me. 他们一定很恨我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1121905 (CM) & #1415767 (sadhen) +They named their son Tom. 他们给他们的儿子取名叫汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5482630 (CK) & #5694460 (verdastelo9604) +They now have three kids. 现在他们有三个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3249293 (nava) & #7781516 (jiangche) +They sell sporting goods. 他们卖体育产品。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259635 (_undertoad) & #5842701 (verdastelo9604) +They set out on a picnic. 他们出发去野餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305996 (CK) & #796913 (fucongcong) +They should all be fired. 他們全部都應該被開除。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498695 (CK) & #4794676 (umidake) +This amount includes tax. 这个价格含了税。 CC-BY 2.0 (France) Attribution: tatoeba.org #59922 (CK) & #404455 (fucongcong) +This article is nonsense. 這文章是胡說。 CC-BY 2.0 (France) Attribution: tatoeba.org #5744380 (CM) & #6073873 (verdastelo9604) +This clock isn't working. 这表不走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58914 (CK) & #5670806 (verdastelo9604) +This diamond is not real. 这颗钻石不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60913 (CK) & #335031 (fucongcong) +This doesn't concern you. 跟你没半毛钱关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #1889404 (zaytsev126) & #5091948 (mirrorvan) +This doesn't concern you. 这不是你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1889404 (zaytsev126) & #7774787 (jiangche) +This is Uncle Tom's farm. 這是湯姆叔叔的農場。 CC-BY 2.0 (France) Attribution: tatoeba.org #62142 (CK) & #838550 (Martha) +This is a bird sanctuary. 这是鸟类庇护所。 CC-BY 2.0 (France) Attribution: tatoeba.org #3174854 (Hybrid) & #5576810 (verdastelo9604) +This is a friend of mine. 這是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #455069 (FeuDRenais) & #6149256 (xjjAstrus) +This is a friend of mine. 這個是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #455069 (FeuDRenais) & #9232871 (xjjAstrus) +This is a very tall tree. 这是棵很高的树。 CC-BY 2.0 (France) Attribution: tatoeba.org #55879 (CK) & #5574670 (verdastelo9604) +This is all he has to do. 這是所有他必須做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #56104 (CK) & #778015 (Martha) +This is not very stylish. 這不是很流行。 CC-BY 2.0 (France) Attribution: tatoeba.org #775717 (U2FS) & #777066 (Martha) +This is your only chance. 這是你唯一的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #55755 (CK) & #844636 (Martha) +This knife is very sharp. 这把刀很锋利。 CC-BY 2.0 (France) Attribution: tatoeba.org #60764 (CK) & #710289 (fucongcong) +This makes me very angry. 這讓我很生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #56112 (CK) & #836329 (Martha) +This man is not reliable. 这个人靠不住的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1750564 (sysko) & #1750560 (sadhen) +This shirt needs ironing. 这衬衫需要熨。 CC-BY 2.0 (France) Attribution: tatoeba.org #3707701 (andrewgtreantos) & #5630431 (verdastelo9604) +This time it's different. 這次不一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728651 (CM) & #6568343 (verdastelo9604) +This time it's different. 这一次不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728651 (CM) & #7771952 (jiangche) +This toy is made of wood. 這玩具是用木頭做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819410 (sharris123) & #763911 (Martha) +This watch is waterproof. 這手錶是防水的。 CC-BY 2.0 (France) Attribution: tatoeba.org #58908 (CK) & #6293117 (verdastelo9604) +Today is Valentine's Day. 今天是情人节 CC-BY 2.0 (France) Attribution: tatoeba.org #1083652 (CM) & #8993706 (changerduo520) +Tom arrived after I left. 汤姆在我走后到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5597136 (CK) & #5694450 (verdastelo9604) +Tom ate a slice of pizza. 湯姆吃了一片比薩餅。 CC-BY 2.0 (France) Attribution: tatoeba.org #6026668 (Hybrid) & #6482302 (verdastelo9604) +Tom can swim pretty well. 汤姆能游得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5502569 (CK) & #5631884 (verdastelo9604) +Tom couldn't see anybody. 汤姆看不到任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644955 (CK) & #8914623 (fresky) +Tom did an excellent job. 汤姆做得很出色。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026486 (CK) & #1394785 (mtdot) +Tom didn't buy any bread. 湯姆沒有買甚麼麵包。 CC-BY 2.0 (France) Attribution: tatoeba.org #3922273 (CK) & #6149003 (verdastelo9604) +Tom didn't like the idea. 湯姆不喜歡這個主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794435 (CK) & #4794614 (umidake) +Tom doesn't eat red meat. 湯姆不吃紅肉 CC-BY 2.0 (France) Attribution: tatoeba.org #3170652 (CK) & #4104419 (andymakespasta) +Tom doesn't have a fever. 汤姆没有发烧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094512 (CK) & #1416232 (sadhen) +Tom doesn't want to come. 汤姆不想来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012182 (CK) & #5630436 (verdastelo9604) +Tom drank my apple juice. Tom喝我的蘋果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #3157857 (CK) & #5548525 (egg0073) +Tom fell asleep in class. 汤姆在课堂上睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025813 (CK) & #2500072 (fenfang557) +Tom fell off his bicycle. 汤姆从他的自行车上掉了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094128 (CK) & #7772584 (jiangche) +Tom finally quit smoking. 汤姆终于戒烟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171548 (CK) & #8511425 (gumblex) +Tom has his own problems. 汤姆有他自己的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023759 (CK) & #7771898 (jiangche) +Tom has to do that again. 湯姆必須再做一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #6272207 (CK) & #6628660 (verdastelo9604) +Tom hasn't done anything. 汤姆什么都没做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5439710 (CK) & #7704618 (leafjensen) +Tom is a Vietnam veteran. 汤姆是一个越军退役军人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085379 (Hybrid) & #5085423 (Jubilee11) +Tom is a normal teenager. 湯姆是個普通的青少年。 CC-BY 2.0 (France) Attribution: tatoeba.org #5259960 (CK) & #6325099 (verdastelo9604) +Tom is a very bad person. 汤姆是个非常坏的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6655835 (CK) & #8727903 (crescat) +Tom is able to swim well. 湯姆游泳可以游得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #37089 (CK) & #871065 (Martha) +Tom is afraid of heights. 汤姆恐高。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025113 (CK) & #1428122 (sadhen) +Tom is an unknown artist. Tom是個不知名的藝術家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1517915 (Spamster) & #4267387 (egg0073) +Tom is careful, isn't he? 湯姆很仔細,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3417302 (CK) & #6065906 (verdastelo9604) +Tom is kind to everybody. 汤姆对每个人都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5054922 (CK) & #5819724 (verdastelo9604) +Tom is looking for a job. Tom正在找工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1494608 (Spamster) & #3739110 (egg0073) +Tom is not as old as you. 湯姆的年紀不比你大。 CC-BY 2.0 (France) Attribution: tatoeba.org #37320 (CK) & #900257 (Martha) +Tom is perfect, isn't he? 湯姆是完美的,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3417010 (CK) & #6111950 (verdastelo9604) +Tom is the one, isn't he? 湯姆就是那一個,不是他麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3166131 (CK) & #6325097 (verdastelo9604) +Tom is working in Boston. 湯姆在波士頓工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #6272078 (CK) & #6119453 (verdastelo9604) +Tom knew Mary would come. 湯姆知道瑪麗會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733145 (CK) & #6624732 (verdastelo9604) +Tom knows the difference. 湯姆知道不同之處。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500453 (CK) & #6633863 (verdastelo9604) +Tom lost his credibility. 湯姆失去了信譽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2733643 (CK) & #6044387 (verdastelo9604) +Tom made a bet with Mary. 湯姆跟瑪麗打了個賭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3922970 (CK) & #6131482 (verdastelo9604) +Tom repaired his bicycle. 湯姆修好了他的自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #6776892 (CK) & #6923188 (verdastelo9604) +Tom ripped up the letter. 汤姆把信撕碎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164263 (CK) & #8791850 (slo_oth) +Tom said Mary was hungry. 汤姆说玛丽饿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644826 (CK) & #5763013 (verdastelo9604) +Tom said he needed money. 湯姆說他需要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840005 (CK) & #6064634 (verdastelo9604) +Tom seems to be prepared. 湯姆看來準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410892 (CK) & #6065361 (verdastelo9604) +Tom seems to have a cold. 湯姆看來感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271898 (CK) & #6728901 (verdastelo9604) +Tom should've been ready. 汤姆本该已经准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271883 (CK) & #8589631 (tianblr) +Tom thinks I'm too young. 汤姆认为我太年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3184024 (CK) & #5983649 (verdastelo9604) +Tom took a step backward. 汤姆后退一步。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024079 (CK) & #5762997 (verdastelo9604) +Tom took the clock apart. 汤姆把钟拆开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6106128 (CK) & #8736991 (crescat) +Tom wants to be the boss. 湯姆想當老闆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545116 (CK) & #6145403 (verdastelo9604) +Tom wants to go to Japan. 湯姆想去日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #37049 (CK) & #868084 (Martha) +Tom wants to sleep on it. 汤姆想在它上面睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012194 (CK) & #5818092 (verdastelo9604) +Tom was absent yesterday. 湯姆昨天缺席了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3689986 (karloelkebekio) & #6853180 (verdastelo9604) +Tom was fired in October. 湯姆在十月被解雇了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5219321 (CK) & #6333810 (verdastelo9604) +Tom was hiding something. 湯姆在藏甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2009307 (CK) & #6393360 (verdastelo9604) +Tom was replaced by Mary. 汤姆被玛丽替换下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #5259952 (CK) & #5637352 (verdastelo9604) +Tom watched TV yesterday. Tom昨天看了电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #37132 (CK) & #344196 (fucongcong) +Tom wished he hadn't won. 汤姆希望他没有赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #6354682 (CK) & #8969809 (WilsonWong) +Tom wouldn't hurt anyone. 湯姆不會傷害任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545099 (CK) & #6393330 (verdastelo9604) +Tomorrow is Mother's Day. 明天是母親節。 CC-BY 2.0 (France) Attribution: tatoeba.org #323315 (CK) & #826272 (Martha) +Unfortunately, it rained. 很遗憾,下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71946 (CM) & #7768284 (jiangche) +Was the baby crying then? 那時嬰兒正在哭嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #50181 (CK) & #886536 (Martha) +Wash your face and hands. 洗你的臉和手。 CC-BY 2.0 (France) Attribution: tatoeba.org #433499 (CK) & #836228 (Martha) +We accept your challenge. 我們接受你們的挑戰。 CC-BY 2.0 (France) Attribution: tatoeba.org #5786313 (CK) & #6903848 (verdastelo9604) +We bought a pound of tea. 我們買了一磅的茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #23251 (CK) & #785178 (Martha) +We buy eggs by the dozen. 鸡蛋是论打买的。 CC-BY 2.0 (France) Attribution: tatoeba.org #41247 (CK) & #8591292 (easononizuka) +We didn't get an apology. 我们没有收到过道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529940 (CK) & #5091730 (mirrorvan) +We didn't start the fire. 我们没点火。 CC-BY 2.0 (France) Attribution: tatoeba.org #2281761 (CK) & #5670782 (verdastelo9604) +We do what we want to do. 我們做我們想做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573320 (n1ls) & #5500523 (egg0073) +We expect a lot from him. 我們對他期望很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #403382 (CK) & #872155 (Martha) +We go to school to study. 我們去學校學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #249354 (CK) & #819253 (Martha) +We go to the same school. 我們上同一所學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #249116 (CK) & #795807 (Martha) +We got up after midnight. 我们在午夜之后起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #663867 (bluepie88) & #2188399 (sadhen) +We had some chicken soup. 我們喝了些雞湯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019929 (CM) & #1019934 (egg0073) +We have the same problem. 你的问题和我的一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #1790835 (newkome) & #784502 (fucongcong) +We import tea from India. 我們從印度進口茶葉。 CC-BY 2.0 (France) Attribution: tatoeba.org #29179 (CK) & #840804 (Martha) +We just want to find Tom. 我們只是想找Tom。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893785 (CK) & #5418971 (egg0073) +We know what we're doing. 我們知道我們在做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893783 (CK) & #5418968 (egg0073) +We meet here once a week. 我们每周在这儿聚一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #2479421 (espjulie) & #333775 (fucongcong) +We must follow the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #1417113 (CK) & #334729 (fucongcong) +We must make a new start. 我們必須重新開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #1170422 (CM) & #1170421 (egg0073) +We need some more coffee. 我們需要多一點咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #715674 (CM) & #4754659 (egg0073) +We need to get some help. 我们需要人帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3161731 (CK) & #8584885 (tianblr) +We ordered too much food. 我們點太多食物了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1073082 (CM) & #1073083 (egg0073) +We ought to obey the law. 我们必须遵纪守法。 CC-BY 2.0 (France) Attribution: tatoeba.org #263276 (CK) & #792784 (fucongcong) +We postponed the meeting. 我们推迟了会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #5226431 (Airvian) & #5762983 (verdastelo9604) +We raced toward the fire. 我們急忙跑向火。 CC-BY 2.0 (France) Attribution: tatoeba.org #729943 (Martha) & #729944 (Martha) +We should run some tests. 我们应该进行测试。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893728 (CK) & #5819726 (verdastelo9604) +We talked over the phone. 我們電話裡說。 CC-BY 2.0 (France) Attribution: tatoeba.org #249101 (CK) & #9149211 (xjjAstrus) +We want you to marry Tom. 我们希望你和汤姆能结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012205 (CK) & #4177487 (maple) +We'll be late for dinner. 我們的晚飯要晚點吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2545077 (CK) & #6623171 (verdastelo9604) +We'll come back tomorrow. 我们明天回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3311989 (CK) & #4970102 (wzhd) +We're just like brothers. 我們就像兄弟一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #628618 (CK) & #919182 (Martha) +We're not ready to leave. 我们还没有准备好离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #8554587 (CK) & #8914624 (fresky) +We're on the third floor. 我们在三楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #7722416 (CK) & #8690283 (crescat) +We're preparing to do so. 我们准备去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953934 (CK) & #5780607 (verdastelo9604) +We've got plenty of time. 我們有充足的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #958763 (FeuDRenais) & #6109327 (verdastelo9604) +We've run short of money. 我们缺钱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22945 (CK) & #804852 (fucongcong) +Welcome to your new home. 歡迎來到你的新家。 CC-BY 2.0 (France) Attribution: tatoeba.org #4737363 (CM) & #6092227 (xjjAstrus) +What are they doing here? 他們在這裡做甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2644705 (CK) & #6065392 (verdastelo9604) +What are you doing there? 你在那里做什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3819961 (CK) & #7768269 (jiangche) +What are you girls doing? 你們這些姑娘在做甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3825142 (CK) & #6073914 (verdastelo9604) +What are you laughing at? 你在笑什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #24686 (CK) & #4879268 (musclegirlxyp) +What are you laughing at? 在笑什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #24686 (CK) & #4879272 (musclegirlxyp) +What are you laughing at? 你笑什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #24686 (CK) & #4881696 (musclegirlxyp) +What are you reading now? 你現在在讀甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2871751 (CK) & #6103149 (verdastelo9604) +What are your influences? 你的影响力是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4500248 (CK) & #8589274 (easononizuka) +What did you guys go see? 你们去看啥了? CC-BY 2.0 (France) Attribution: tatoeba.org #4278993 (shirlli) & #4274179 (bobomaygo) +What did you have to eat? 你必須吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #36600 (CK) & #869888 (Martha) +What do you intend to do? 你想做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16259 (CK) & #775768 (Martha) +What do you plan to sell? 你計劃賣甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #5851727 (CK) & #6199284 (verdastelo9604) +What do you think I want? 你認為我想要甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3818735 (CK) & #6086868 (verdastelo9604) +What do you think he did? 你覺得他這樣做怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #283417 (CK) & #871197 (Martha) +What do you want to know? 你想知道什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2011620 (CK) & #4742042 (egg0073) +What does this stand for? 这是什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #24838 (CK) & #469553 (fucongcong) +What does this word mean? 这个词是什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #48085 (CK) & #335099 (fucongcong) +What does your father do? 你父亲是做什么的? CC-BY 2.0 (France) Attribution: tatoeba.org #64082 (CK) & #471108 (fucongcong) +What exactly does Tom do? 汤姆究竟在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3426073 (CK) & #5658824 (verdastelo9604) +What happened that night? 这个晚上发生了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2700317 (Hybrid) & #4845126 (pig8322) +What he said is not true. 他說的話不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283609 (CK) & #870048 (Martha) +What is it that you want? 你想要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #17706 (CK) & #874392 (Martha) +What more would you want? 你還想要什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #775922 (BraveSentry) & #777047 (Martha) +What time do you go home? 你几点回家? CC-BY 2.0 (France) Attribution: tatoeba.org #70296 (CK) & #792836 (fucongcong) +What time will you leave? 你什麼時候離開? CC-BY 2.0 (France) Attribution: tatoeba.org #18072 (CK) & #825876 (Martha) +What time will you leave? 你什么时候离开? CC-BY 2.0 (France) Attribution: tatoeba.org #18072 (CK) & #7772334 (jiangche) +What will you use it for? 你會用它來做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #433514 (CK) & #869853 (Martha) +What you said is baloney. 你说的东西是胡扯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7796502 (sharris123) & #7768257 (jiangche) +What's going on with Tom? 汤姆出什么事了? CC-BY 2.0 (France) Attribution: tatoeba.org #2892694 (CK) & #6028136 (verdastelo9604) +What's going on with you? 你怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #2880684 (CK) & #7771865 (jiangche) +What's your biggest fear? 你最害怕的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3636413 (CK) & #9316491 (slo_oth) +What's your home address? 你家的地址是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #20134 (CK) & #826020 (Martha) +What's your phone number? 你电话号码是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #466624 (FeuDRenais) & #7773123 (jiangche) +When are you coming home? 你什麼時候回家? CC-BY 2.0 (France) Attribution: tatoeba.org #499531 (CK) & #842398 (Martha) +When does the game begin? 游戏几点开始? CC-BY 2.0 (France) Attribution: tatoeba.org #2166230 (faraway9911) & #2109227 (sadhen) +Where do you play tennis? 你在哪裡打網球? CC-BY 2.0 (France) Attribution: tatoeba.org #69860 (CK) & #6057865 (verdastelo9604) +Where does he want to go? 他想去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #776134 (BraveSentry) & #776998 (Martha) +Where does it leave from? 它从哪里离开的? CC-BY 2.0 (France) Attribution: tatoeba.org #38222 (CK) & #336497 (fucongcong) +Where is Tom's classroom? 湯姆的教室在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #37357 (CK) & #824608 (Martha) +Where is the coffee shop? 這家咖啡館在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #62268 (CK) & #836129 (Martha) +Where were you yesterday? 您昨天在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #595597 (qdii) & #462037 (fucongcong) +Which one will he choose? 他會選哪個? CC-BY 2.0 (France) Attribution: tatoeba.org #1629805 (Spamster) & #6197297 (verdastelo9604) +Who did you give that to? 你把東西交給誰了? CC-BY 2.0 (France) Attribution: tatoeba.org #5506964 (CK) & #738516 (Martha) +Who is playing the piano? 谁在弹钢琴? CC-BY 2.0 (France) Attribution: tatoeba.org #276269 (mamat) & #792874 (fucongcong) +Why are you not doing it? 你为什么不做? CC-BY 2.0 (France) Attribution: tatoeba.org #1857056 (dryhay) & #5581738 (verdastelo9604) +Why are your ears so big? 為什麼你的耳朵這麼大? CC-BY 2.0 (France) Attribution: tatoeba.org #36497 (CK) & #1426344 (tsayng) +Why aren't you listening? 你為甚麼不聽? CC-BY 2.0 (France) Attribution: tatoeba.org #5753124 (Cainntear) & #6145405 (verdastelo9604) +Why can't Tom come to us? 為甚麼湯姆不能來我們這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #3738563 (CK) & #6923199 (verdastelo9604) +Why did you open the box? 你為什麼打開這個盒子? CC-BY 2.0 (France) Attribution: tatoeba.org #36418 (CK) & #874386 (Martha) +Why did you show me this? 你为什么让我看这个? CC-BY 2.0 (France) Attribution: tatoeba.org #4012617 (CK) & #5581824 (verdastelo9604) +Why do I have to do that? 我为什么一定要那么做? CC-BY 2.0 (France) Attribution: tatoeba.org #36059 (CK) & #335491 (fucongcong) +Why do you have two cars? 他為什麼有兩輛車? CC-BY 2.0 (France) Attribution: tatoeba.org #1673281 (Amastan) & #4455691 (egg0073) +Why don't we have dinner? 為甚麼我們不吃晚飯? CC-BY 2.0 (France) Attribution: tatoeba.org #2281883 (CK) & #6635903 (verdastelo9604) +Why don't we order pizza? 为什么不订些批萨呢? CC-BY 2.0 (France) Attribution: tatoeba.org #34785 (CK) & #335312 (fucongcong) +Why don't we order pizza? 为什么我们不订披萨呢? CC-BY 2.0 (France) Attribution: tatoeba.org #34785 (CK) & #4274299 (notabene) +Why don't you go see Tom? 你為甚麼不去看湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #2210732 (CK) & #6472013 (verdastelo9604) +Will you accept this job? 你会接受这份工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8586802 (CK) & #8589666 (tianblr) +Will you give me a light? 借個火好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25895 (CK) & #734308 (Martha) +Wine is made from grapes. 葡萄酒是用葡萄做成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29226 (CK) & #838555 (Martha) +Without you, I'm nothing. 沒有你,我甚麼也不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #1824983 (Eldad) & #6093376 (verdastelo9604) +Would you give me a hint? 你可以给我一个提示吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3151140 (CK) & #4845071 (pig8322) +Would you like to listen? 你想聽嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1879982 (Asma) & #6150037 (verdastelo9604) +You are absolutely right. 你完全正確。 CC-BY 2.0 (France) Attribution: tatoeba.org #69761 (CK) & #771314 (Martha) +You are just saying that. 你只是說說而已。 CC-BY 2.0 (France) Attribution: tatoeba.org #897525 (CM) & #897526 (egg0073) +You are not at all wrong. 你并不完全错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #9590 (CK) & #1780766 (sadhen) +You can come at any time. 你隨時可以來。 CC-BY 2.0 (France) Attribution: tatoeba.org #727563 (Zifre) & #727522 (Martha) +You can do it, can't you? 你可以做到,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405518 (CK) & #866165 (Martha) +You can only use it once. 这个你只能用一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #1702686 (Spamster) & #8689186 (jacintoo) +You can't live like this. 你不能這樣活。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819858 (CK) & #6923182 (verdastelo9604) +You didn't need to hurry. 你不需要著急。 CC-BY 2.0 (France) Attribution: tatoeba.org #17640 (CK) & #844594 (Martha) +You don't have any money. 您沒有任何錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #409013 (CK) & #844446 (Martha) +You don't have to eat it. 你不必吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #435767 (CK) & #836370 (Martha) +You have to be proactive. 你必须积极主动。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493635 (CK) & #5091518 (mirrorvan) +You have to come with me. 你必須跟我來。 CC-BY 2.0 (France) Attribution: tatoeba.org #7029 (CK) & #874678 (Martha) +You like rain, don't you? 你喜欢雨对吧? CC-BY 2.0 (France) Attribution: tatoeba.org #20103 (blay_paul) & #8688060 (crescat) +You may come if you like. 如果你想,你可以來。 CC-BY 2.0 (France) Attribution: tatoeba.org #29865 (CK) & #874284 (Martha) +You must clear the table. 你必须把桌子清理干净。 CC-BY 2.0 (France) Attribution: tatoeba.org #15979 (CK) & #1992627 (sadhen) +You must not stay in bed. 你不能待在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #33982 (CK) & #6206029 (verdastelo9604) +You must not talk to Tom. 你绝不能跟汤姆说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #5554625 (CK) & #5983591 (verdastelo9604) +You should be a diplomat. 你应该做一个外交官。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834914 (CK) & #4844783 (pig8322) +You speak fluent English. 你英语说得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #237639 (CK) & #517568 (fucongcong) +You spend too much money. 你花太多钱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356352 (CK) & #9178001 (xiaohong) +You'd better relax a bit. 你最好休息一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #267707 (CK) & #1394881 (mtdot) +You'll have to leave now. 你现在必须离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356345 (CK) & #9178029 (xiaohong) +You're a beautiful woman. 你是个美人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045768 (CK) & #3671259 (shirleyleee) +You're a wonderful woman. 你是位了不起的女性。 CC-BY 2.0 (France) Attribution: tatoeba.org #2835742 (CK) & #5555755 (verdastelo9604) +You're lying, aren't you? 你在撒謊,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435198 (CK) & #834508 (Martha) +You're lying, aren't you? 在撒谎吧? CC-BY 2.0 (France) Attribution: tatoeba.org #435198 (CK) & #5100170 (mirrorvan) +You're partially correct. 你部分正确。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666285 (CK) & #5571892 (verdastelo9604) +You've got a lot of guts. 你膽子很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #16637 (CK) & #795343 (Martha) +You've got a strong will. 你的意志力很強。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256612 (FeuDRenais) & #2256415 (cienias) +You've set a bad example. 你做了个坏榜样。 CC-BY 2.0 (France) Attribution: tatoeba.org #16329 (CK) & #469263 (fucongcong) +Your book is on the desk. 你的書在書桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #16908 (CK) & #875086 (Martha) +Your book is on the desk. 你的书在书桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #16908 (CK) & #1366204 (sadhen) +Your reason is very good. 你的理由很充分。 CC-BY 2.0 (France) Attribution: tatoeba.org #7796493 (sharris123) & #5985452 (xjjAstrus) +Your tie has come undone. 你的領帶鬆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17362 (CK) & #844578 (Martha) +Your time is running out. 你的时间快用完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543868 (CK) & #5933761 (verdastelo9604) +"Let's go," he said to me. "咱們走吧,"他對我說。 CC-BY 2.0 (France) Attribution: tatoeba.org #404116 (CK) & #862888 (Martha) +A fork fell off the table. 叉子从桌上掉了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #34388 (CK) & #4764553 (ryanwoo) +All at once, he spoke out. 他突然发言了。 CC-BY 2.0 (France) Attribution: tatoeba.org #280713 (CK) & #782909 (fucongcong) +All men are created equal. 人人生来平等。 CC-BY 2.0 (France) Attribution: tatoeba.org #51724 (CK) & #392705 (fucongcong) +All those things are true. 那些事都是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3307525 (Hybrid) & #6585424 (verdastelo9604) +All you can do is to wait. 所有你能做的就是等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #17544 (Zifre) & #408259 (fucongcong) +Am I supposed to help Tom? 我该帮汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3405305 (CK) & #5863265 (verdastelo9604) +Any one of us could do it. 我們之中任何一個都能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #247367 (CK) & #798190 (Martha) +Anyway, you'll never know. 不管怎樣,你永遠不會知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #63264 (CK) & #825764 (Martha) +Are oysters in season now? 现在牡蛎当季吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8045839 (CK) & #8893006 (crescat) +Are they actually friends? 他們真是朋友嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4286968 (seltsameseeds) & #8215746 (verdastelo9604) +Are you a college student? 你是大学生吗? CC-BY 2.0 (France) Attribution: tatoeba.org #275628 (CK) & #475871 (biglion) +Are you afraid of insects? 你怕虫子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4872214 (zvzuibqx) & #4813407 (sadhen) +Are you available tonight? 今晚有空嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1211456 (alec) & #1205888 (cienias) +Are you free this weekend? 這個週末你有時間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58568 (CK) & #6120180 (xjjAstrus) +Are you sure Tom is happy? 你確定湯姆高興嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3434181 (CK) & #6568270 (verdastelo9604) +As for me, I am satisfied. 就我而言,我很满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #249711 (CK) & #349667 (fucongcong) +At last, it began to rain. 终于开始下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39900 (Zifre) & #431501 (fucongcong) +At this point, he arrived. 在這時候,他到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264713 (_undertoad) & #6393329 (verdastelo9604) +Being rejected is painful. 被拒絕是痛苦的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5769648 (Hybrid) & #6120796 (verdastelo9604) +Being sick is very boring. 生病很無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #869275 (CM) & #6623167 (verdastelo9604) +Breathe through your nose. 用你的鼻子呼吸。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666280 (CK) & #4845078 (pig8322) +Bring me a glass of water. 给我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #250148 (CK) & #4885833 (gumblex) +Bring me something to eat. 給我東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #25074 (CK) & #832971 (Martha) +Bring the water to a boil. 把水燒開。 CC-BY 2.0 (France) Attribution: tatoeba.org #240224 (adjusting) & #896660 (Martha) +Bring your children along. 把你的孩子带来。 CC-BY 2.0 (France) Attribution: tatoeba.org #245682 (CK) & #794230 (fucongcong) +Buy milk on your way home. 回来的路上买点牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #7981379 (CK) & #8656919 (crescat) +Can I do anything for you? 我能為你做點甚麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25266 (CK) & #6621225 (verdastelo9604) +Can I do anything to help? 我能幫上忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2951565 (CK) & #6150897 (verdastelo9604) +Can you guess what I have? 你能猜到我有什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #246634 (CK) & #333142 (fucongcong) +Can you guess what I have? 你们能猜到我有什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #246634 (CK) & #1790075 (sadhen) +Can you put me up tonight? 今晚可以住你家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243309 (CK) & #8388720 (wangchou) +Can you solve this puzzle? 你能解開這個謎嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5195285 (CK) & #6145406 (verdastelo9604) +Can you speak French well? 你法语说得好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2451599 (CK) & #4760142 (ryanwoo) +Cats hate vacuum cleaners. 猫很讨厌吸尘器。 CC-BY 2.0 (France) Attribution: tatoeba.org #870412 (Scott) & #574937 (humihiro) +Children like fruit juice. 孩子們喜歡果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2280901 (ichivivi20) & #5548505 (egg0073) +Choose whichever you like. 選你喜歡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #450117 (CK) & #825865 (Martha) +Come and have tea with me. 来跟我喝茶吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #64191 (CK) & #6089788 (verdastelo9604) +Come on! Give me a chance. 来嘛!给我个机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #64704 (CK) & #461998 (fucongcong) +Come whenever you want to. 什么时候想来就过来吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1392640 (CM) & #5153294 (musclegirlxyp) +Could you get me some tea? 你能給我來點茶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #240981 (CK) & #6936241 (verdastelo9604) +Cows provide us with milk. 奶牛为我们提供牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #19495 (CK) & #343727 (fucongcong) +Did Tom actually say that? 汤姆真的那么说了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1975669 (CK) & #6098432 (verdastelo9604) +Did Tom ever threaten you? 湯姆威脅過你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3818060 (CK) & #6728900 (verdastelo9604) +Did he look like a doctor? 他看起來像個醫生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #46022 (CK) & #891574 (Martha) +Did you complete the work? 你完成工作了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1154010 (belgavox) & #7767750 (jiangche) +Did you go out last night? 你昨天晚上出去了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16113 (CK) & #842335 (Martha) +Did you notice Tom's hair? 你注意到湯姆的頭髪了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3824269 (CK) & #6105182 (verdastelo9604) +Did you receive my letter? 你收到了我的信了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #265984 (CK) & #9057894 (xjjAstrus) +Did you rent an apartment? 你租房子了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #67769 (CK) & #334117 (fucongcong) +Divide the pizza in three. 把披薩分成三份。 CC-BY 2.0 (France) Attribution: tatoeba.org #896141 (pauldhunt) & #1544234 (tsayng) +Do it as soon as possible. 尽早做。 CC-BY 2.0 (France) Attribution: tatoeba.org #266880 (CK) & #1428126 (sadhen) +Do not read while walking. 不要边走边看书。 CC-BY 2.0 (France) Attribution: tatoeba.org #320505 (CM) & #512489 (fucongcong) +Do what you think is best. 做你所想的是最好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #410767 (CK) & #840650 (Martha) +Do you believe in fairies? 你相信神話傳說嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #324809 (CK) & #834337 (Martha) +Do you deliver on Sundays? 你们周日送货吗? CC-BY 2.0 (France) Attribution: tatoeba.org #281817 (CK) & #332781 (fucongcong) +Do you have Tom's address? 你有汤姆的住址吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2644583 (CK) & #4887568 (musclegirlxyp) +Do you have a larger size? 你有比較大的尺寸嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #30401 (CK) & #844496 (Martha) +Do you have a lot of pens? 你有很多笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69772 (CK) & #5091444 (mirrorvan) +Do you have a points card? 您有会员卡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #838663 (Scott) & #437263 (fucongcong) +Do you have a temperature? 你發燒了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #913417 (Shiawase) & #834314 (Martha) +Do you have any day tours? 你有任何一日遊的行程嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #73082 (CK) & #842407 (Martha) +Do you have plans tonight? 今晚有什么计划吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2032987 (CK) & #5094727 (musclegirlxyp) +Do you know Tom's address? 你有汤姆的住址吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3738537 (CK) & #4887568 (musclegirlxyp) +Do you know what happened? 你知道发生了什么事情吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25167 (CK) & #8839834 (crescat) +Do you like Japanese food? 你喜欢日本菜吗? CC-BY 2.0 (France) Attribution: tatoeba.org #281698 (CK) & #390546 (fucongcong) +Do you like Japanese food? 你喜歡日本料理嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #281698 (CK) & #907873 (Martha) +Do you like pirate movies? 你喜欢盗版电影吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2951751 (CK) & #5670767 (verdastelo9604) +Do you like to drink wine? 你喜歡喝紅酒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6138568 (Sethlang) & #6120162 (xjjAstrus) +Do you regret marrying me? 你後悔跟我結婚嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4809293 (CK) & #4809347 (umidake) +Do you think they noticed? 你认为他们注意了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3348175 (CK) & #5581790 (verdastelo9604) +Do you want some more tea? 您想再来点茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3408994 (CK) & #334887 (fucongcong) +Do you want some more tea? 你想再要点茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3408994 (CK) & #5637377 (verdastelo9604) +Do you want to come along? 你想不想一起去? CC-BY 2.0 (France) Attribution: tatoeba.org #27693 (CK) & #842461 (Martha) +Does Tom have to be there? 湯姆必須在那裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2644573 (CK) & #6903880 (verdastelo9604) +Does he have any brothers? 他有任何的兄弟嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #295689 (CK) & #781671 (Martha) +Don't be cruel to animals. 不要虐待动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #280217 (CK) & #336977 (fucongcong) +Don't do this to me again. 別再對我做這事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2288921 (CK) & #6073901 (verdastelo9604) +Don't leave me here alone. 別把我一個人留在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2481334 (Opiejay888) & #6111967 (verdastelo9604) +Don't leave the door open. 不要把门开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #38996 (CK) & #334214 (fucongcong) +Don't let the dog come in. 别让狗进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #5302159 (Joseph) & #1411550 (asosan) +Don't look down on others. 不要看不起別人。 CC-BY 2.0 (France) Attribution: tatoeba.org #274752 (CK) & #833106 (Martha) +Each student has a locker. 每個學生都有一櫃子。 CC-BY 2.0 (France) Attribution: tatoeba.org #37488 (CK) & #833817 (Martha) +Every rose has its thorns. 沒有不帶刺的玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #1636183 (ari_diary) & #806751 (Martha) +Everybody had a hard time. 每个人都遇到过困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #276440 (CK) & #1990186 (sunnywqing) +Everybody looks up to Tom. 每个人都看向汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5597194 (CK) & #5794146 (verdastelo9604) +Everyone loves that place. 每一個人都喜歡那個地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #421375 (FeuDRenais) & #873448 (Martha) +Everyone, please be quiet. 各位,請安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #435748 (CK) & #824599 (Martha) +Everything's working fine. 一切正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #8249335 (francaisr0wlet) & #7781930 (jiangche) +Express your idea clearly. 把你的想法表達清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #17169 (CK) & #826285 (Martha) +Felicja likes to watch TV. Felicja喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #1264964 (yifen238) & #919642 (Martha) +French bread is delicious. 法国的面包很好吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1829479 (Spamster) & #8696324 (crescat) +Give Tom any help you can. 给予汤姆一些你力所能及的帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #3151431 (CK) & #3783081 (Debbie_Linder) +Give me five more minutes. 再给我五分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822409 (CK) & #5613717 (verdastelo9604) +Give me your phone number. 给我你的电话号码。 CC-BY 2.0 (France) Attribution: tatoeba.org #279374 (CK) & #5780559 (verdastelo9604) +Give my love to your kids. 替我向你的孩子們問好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019960 (CM) & #1019965 (egg0073) +Give some meat to the dog. 給這隻狗一些肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #825702 (odiernod) & #827599 (Martha) +Good luck. You'll need it. 祝你好運。你會需要它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3361237 (Hybrid) & #6169152 (verdastelo9604) +Hang on till I get to you. 坚持下去直到我找到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #246491 (CM) & #4845007 (pig8322) +Hang up your coat, please. 請把你的外套掛起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #62294 (CK) & #832965 (Martha) +Has Tom come back already? 汤姆已经回来了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3826775 (CK) & #5685924 (verdastelo9604) +Have you ever been robbed? 你被抢劫过吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5066386 (CK) & #5067441 (jiaweikai) +Have you ever loved a man? 你曾經愛過一個男人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55357 (CK) & #834332 (Martha) +Haven't I seen you before? 我以前沒見過你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55360 (CK) & #833158 (Martha) +He agrees with my opinion. 他同意我的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #403320 (CK) & #834529 (Martha) +He always tells the truth. 他總是說實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #289215 (mamat) & #896653 (Martha) +He asked me if I was busy. 他问我是否很忙? CC-BY 2.0 (France) Attribution: tatoeba.org #297717 (CK) & #1878387 (sadhen) +He asked me two questions. 他問了我兩個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #297695 (nickyeow) & #780282 (Martha) +He became a famous singer. 他成为了著名的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #304449 (CK) & #1417584 (sadhen) +He began to look for work. 他开始找工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1739113 (belgavox) & #334042 (fucongcong) +He came back from America. 他從美國回來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288830 (CK) & #795865 (Martha) +He can also speak Russian. 他也會說俄語。 CC-BY 2.0 (France) Attribution: tatoeba.org #435647 (CK) & #833249 (Martha) +He can speak Russian, too. 他也會說俄語。 CC-BY 2.0 (France) Attribution: tatoeba.org #435646 (CK) & #833249 (Martha) +He couldn't run very fast. 他無法跑得非常快。 CC-BY 2.0 (France) Attribution: tatoeba.org #288822 (CK) & #802007 (Martha) +He didn't listen to music. 他没有听音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493791 (niceguydave) & #2065336 (sadhen) +He doesn't believe in God. 他不信神。 CC-BY 2.0 (France) Attribution: tatoeba.org #299996 (CK) & #6903858 (verdastelo9604) +He doesn't know any of us. 他不认识我们中的任何一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #877051 (avenelanna) & #346815 (fucongcong) +He earns double my salary. 他的工资是我的两倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #297971 (fucongcong) & #349680 (fucongcong) +He extended his right arm. 他伸长了他的右手。 CC-BY 2.0 (France) Attribution: tatoeba.org #293860 (CK) & #885211 (fucongcong) +He fell down on the floor. 他摔倒在地。 CC-BY 2.0 (France) Attribution: tatoeba.org #299628 (CK) & #408831 (fucongcong) +He goes to school on foot. 他步行上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #288249 (CK) & #5550289 (verdastelo9604) +He grew up to be a doctor. 他長大後成為了一名醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #300331 (CK) & #802071 (Martha) +He had a book in his hand. 他手里拿着一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #299195 (CK) & #510870 (fucongcong) +He had his hair cut short. 他把头发剪短了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302449 (CK) & #333115 (fucongcong) +He has all kinds of books. 他有各种各样的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #288881 (Dejo) & #819734 (fucongcong) +He has had a crush on her. 他一直暗恋着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493274 (weihaiping) & #1490518 (sadhen) +He has not been to France. 他从没去过法国。 CC-BY 2.0 (France) Attribution: tatoeba.org #292598 (CK) & #783037 (fucongcong) +He hid it behind the door. 他把它藏在了门后。 CC-BY 2.0 (France) Attribution: tatoeba.org #291902 (CK) & #2000408 (sadhen) +He is a promising student. 他是一位有前途的学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1565835 (eastasiastudent) & #1565682 (sadhen) +He is an agreeable person. 他是个好脾气的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #300170 (CM) & #9012191 (jacintoo) +He is confined to bed now. 他现在卧床不起。 CC-BY 2.0 (France) Attribution: tatoeba.org #299624 (CK) & #8709498 (crescat) +He is my youngest brother. 他是我最年轻的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #3046424 (Whitney) & #3044035 (sadhen) +He is no ordinary student. 他不是个普通的学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #295845 (CM) & #8897464 (crescat) +He is old enough to drive. 他年紀夠大可以開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #299050 (CK) & #846208 (Martha) +He is old enough to drive. 他夠開車的年紀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299050 (CK) & #5117819 (xjjAstrus) +He is one of my neighbors. 他是我的一個鄰居。 CC-BY 2.0 (France) Attribution: tatoeba.org #460639 (blay_paul) & #795249 (Martha) +He is playing in his room. 他在自己房里玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #302516 (CK) & #819774 (fucongcong) +He is proficient in Farsi. 他精通波斯语。 CC-BY 2.0 (France) Attribution: tatoeba.org #810865 (U2FS) & #805117 (fucongcong) +He is unable to buy a car. 他不能买车。 CC-BY 2.0 (France) Attribution: tatoeba.org #298495 (CK) & #8692916 (crescat) +He likes playing football. 他喜歡踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #450270 (CK) & #819409 (Martha) +He married an air hostess. 他娶了一个空姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #289381 (CK) & #334878 (fucongcong) +He offered his help to us. 他向我们提供了帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #294545 (CK) & #5613612 (verdastelo9604) +He often plays the guitar. 他常常彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #293244 (CK) & #834368 (Martha) +He picked flowers for her. 他为她摘了些花。 CC-BY 2.0 (France) Attribution: tatoeba.org #302680 (CK) & #796816 (fucongcong) +He plays tennis very well. 他打网球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #461949 (blay_paul) & #335091 (fucongcong) +He rode his bicycle there. 他是騎自行車去的。 CC-BY 2.0 (France) Attribution: tatoeba.org #643839 (CS) & #9179740 (xjjAstrus) +He sat next to the stream. 他坐在溪流旁邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #530769 (CK) & #848446 (Martha) +He sat next to the stream. 他坐在河边。 CC-BY 2.0 (France) Attribution: tatoeba.org #530769 (CK) & #2109176 (sadhen) +He seldom comes to see me. 他很少来看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #293034 (CK) & #471105 (fucongcong) +He speaks French fluently. 他说法语说得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #587174 (qdii) & #1753036 (sadhen) +He swims better than I do. 他游泳比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #387429 (CK) & #743739 (CLARET) +He swims better than I do. 他游泳游得比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #387429 (CK) & #846452 (Martha) +He took me to the station. 他帶我到車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479233 (weihaiping) & #884696 (Tajfun) +He wants to go to America. 他想去美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #252995 (CK) & #846568 (Martha) +He wants you to stay here. 他要你留在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #295622 (CK) & #848210 (Martha) +He was listening to music. 他正在聽音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #294205 (CK) & #788729 (Martha) +He was wounded in the war. 他是在战争中受伤的。 CC-BY 2.0 (France) Attribution: tatoeba.org #300690 (CK) & #616210 (sarah) +He went back to the store. 他回店里去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #794178 (CK) & #795619 (fucongcong) +He went to London in 1970. 他1970年去了伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #288399 (adjusting) & #429064 (fucongcong) +He went to London in 1970. 他在1970年前往倫敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #288399 (adjusting) & #805234 (Martha) +He will make you eat dirt. 他会让你吃灰的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2169 (CK) & #503291 (fucongcong) +He won't live a long life. 他不會長壽。 CC-BY 2.0 (France) Attribution: tatoeba.org #502626 (CK) & #848736 (Martha) +He's good at flying kites. 他擅長放風箏。 CC-BY 2.0 (France) Attribution: tatoeba.org #301368 (CK) & #849015 (Martha) +He's much taller than you. 他比你高得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #295647 (CK) & #833114 (Martha) +He's not breaking the law. 他没违法。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890746 (Spamster) & #5931774 (verdastelo9604) +He's running very quickly. 他跑得非常快。 CC-BY 2.0 (France) Attribution: tatoeba.org #817966 (Cindrogriza) & #818163 (Martha) +He's sleeping like a baby. 他正睡着,像个婴儿一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #2089 (CK) & #1772671 (sadhen) +He's very straightforward. 他说话很直接。 CC-BY 2.0 (France) Attribution: tatoeba.org #2311496 (FeuDRenais) & #2298338 (Gustav249) +Help me peel the potatoes. 幫我削一下土豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156329 (Kiwi) & #6940187 (xjjAstrus) +Here's an even better one. 这里有个更好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891233 (CK) & #5931783 (verdastelo9604) +Hey guys, please be quiet. 嗨,請保持安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #410589 (CK) & #833822 (Martha) +Hey, your dog just bit me. 嘿,你的狗刚咬了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3575415 (CK) & #5611619 (verdastelo9604) +Hippopotamuses love water. 河马喜欢水。 CC-BY 2.0 (France) Attribution: tatoeba.org #4684541 (Hybrid) & #7768346 (jiangche) +His father is an impostor. 他爸爸是个骗子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1273499 (Scott) & #8832697 (crescat) +His hat isn't on straight. 他的帽子没戴正。 CC-BY 2.0 (France) Attribution: tatoeba.org #713177 (CM) & #713176 (Yashanti) +His request is as follows. 他的要求如下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162663 (FeuDRenais) & #2143954 (ydcok) +How can you do this to me? 你怎么这样对我? CC-BY 2.0 (France) Attribution: tatoeba.org #2722460 (Hybrid) & #5794121 (verdastelo9604) +How did you find my house? 你怎么找到我的房子的? CC-BY 2.0 (France) Attribution: tatoeba.org #38354 (CM) & #4270133 (notabene) +How did you know all that? 你怎麼全都知道? CC-BY 2.0 (France) Attribution: tatoeba.org #2891317 (CK) & #6146515 (verdastelo9604) +How do I get to Chinatown? 我該怎麼去唐人街? CC-BY 2.0 (France) Attribution: tatoeba.org #40204 (CK) & #848586 (Martha) +How do we get out of here? 我们该怎么从这里出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1672463 (CK) & #4845014 (pig8322) +How do you heat the house? 您怎么让屋子暖起来? CC-BY 2.0 (France) Attribution: tatoeba.org #64239 (CK) & #336463 (fucongcong) +How long were you in jail? 你在监狱里呆了多久? CC-BY 2.0 (France) Attribution: tatoeba.org #5478202 (CK) & #5660519 (verdastelo9604) +How many cats do you have? 您有几只猫? CC-BY 2.0 (France) Attribution: tatoeba.org #4129982 (allasobirova) & #4264866 (notabene) +How many forks do we need? 我們需要多少把叉子? CC-BY 2.0 (France) Attribution: tatoeba.org #8893048 (sundown) & #9135869 (xjjAstrus) +How many kids do you have? 你有幾個孩子? CC-BY 2.0 (France) Attribution: tatoeba.org #245942 (CK) & #848872 (Martha) +How many pens do you have? 你有多少支铅笔? CC-BY 2.0 (France) Attribution: tatoeba.org #370728 (saeb) & #405160 (fucongcong) +How much is this umbrella? 這把傘多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #3847212 (CK) & #4830644 (umidake) +How much sugar do you use? 你用多少糖? CC-BY 2.0 (France) Attribution: tatoeba.org #243593 (CK) & #846109 (Martha) +How much will it all cost? 一共要多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #5834713 (CK) & #6903855 (verdastelo9604) +How old are your children? 你的孩子多大了? CC-BY 2.0 (France) Attribution: tatoeba.org #64463 (CK) & #478790 (biglion) +How tall are your parents? 你的父母有多高? CC-BY 2.0 (France) Attribution: tatoeba.org #4013859 (CK) & #5918306 (verdastelo9604) +I accepted her invitation. 我接受了她的邀請。 CC-BY 2.0 (France) Attribution: tatoeba.org #261283 (CK) & #917953 (Martha) +I actually agree with you. 我确实同意你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3904246 (CK) & #5569420 (verdastelo9604) +I agree with that opinion. 我同意那個意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #403322 (CK) & #833055 (Martha) +I agree with your opinion. 我同意您的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #252813 (CK) & #5112361 (xjjAstrus) +I almost laughed out loud. 我差點大聲笑了出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #259350 (CK) & #916668 (Martha) +I always keep my promises. 我總是信守我的承諾。 CC-BY 2.0 (France) Attribution: tatoeba.org #256142 (CK) & #916653 (Martha) +I always kept my promises. 我一直信守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #4064018 (Caecilius) & #846158 (Martha) +I always kept my promises. 我一直遵守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #4064018 (Caecilius) & #848420 (Martha) +I am a citizen of Sapporo. 我是札幌的市民。 CC-BY 2.0 (France) Attribution: tatoeba.org #257857 (CK) & #819268 (Martha) +I am four months pregnant. 我怀孕四个月了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2235 (CM) & #389818 (fucongcong) +I am going to play tennis. 我要去打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #255099 (CK) & #777930 (Martha) +I am hers and she is mine. 我是她的,而她是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1787894 (sadhen) & #5526849 (egg0073) +I am interested in sports. 我对运动感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #254033 (CK) & #8698963 (crescat) +I am not writing a letter. 我沒在寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #258460 (CK) & #917986 (Martha) +I am not writing a letter. 我不是正在寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #258460 (CK) & #917991 (Martha) +I am sorry to trouble you. 我很抱歉給你添麻煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #54311 (CK) & #917905 (Martha) +I am sorry to trouble you. 我很抱歉打擾你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #54311 (CK) & #917906 (Martha) +I am very busy these days. 我最近很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #253599 (CK) & #409710 (egg0073) +I am watering the flowers. 我在澆花。 CC-BY 2.0 (France) Attribution: tatoeba.org #256541 (CK) & #941085 (Martha) +I appreciate your concern. 我感謝你的關心。 CC-BY 2.0 (France) Attribution: tatoeba.org #20400 (CK) & #919955 (Martha) +I asked her out on a date. 我請她出去約會。 CC-BY 2.0 (France) Attribution: tatoeba.org #395033 (CK) & #917786 (Martha) +I believe that he's happy. 我相信他是幸福的。 CC-BY 2.0 (France) Attribution: tatoeba.org #296310 (eastasiastudent) & #426417 (fucongcong) +I belong to a tennis club. 我是网球俱乐部的会员。 CC-BY 2.0 (France) Attribution: tatoeba.org #39424 (CK) & #332450 (fucongcong) +I bought a new television. 我买了台新电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #258790 (CK) & #785933 (fucongcong) +I bought a red sports car. 我買了一輛紅色的跑車。 CC-BY 2.0 (France) Attribution: tatoeba.org #259014 (CK) & #849273 (Martha) +I called him up yesterday. 我昨天打電話給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #257796 (CK) & #832990 (Martha) +I can do without his help. 沒有他的幫助我也能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #285577 (CK) & #918658 (Martha) +I can read Spanish easily. 我能很輕鬆地讀西班牙文。 CC-BY 2.0 (France) Attribution: tatoeba.org #256728 (CK) & #833809 (Martha) +I can take care of myself. 我可以照顧自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #1871856 (Spamster) & #6318532 (verdastelo9604) +I can't ask Tom right now. 我現在不能問湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301876 (CK) & #6086781 (verdastelo9604) +I can't bend my right arm. 我無法彎曲我的右手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #27048 (CK) & #848580 (Martha) +I can't explain it either. 我也无法解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1452 (CK) & #335045 (fucongcong) +I can't explain it either. 我也無法解釋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1452 (CK) & #759672 (Martha) +I can't find him anywhere. 我在哪儿都没找到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1109689 (Brian255) & #843465 (fucongcong) +I can't lift my right arm. 我無法舉起我的右手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #27046 (CK) & #848768 (Martha) +I can't make an exception. 我不能破例。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954624 (CK) & #6832183 (verdastelo9604) +I can't remember his name. 我不記得他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #411238 (CK) & #833826 (Martha) +I can't shake off my cold. 我的感冒怎麼也不會好。 CC-BY 2.0 (France) Attribution: tatoeba.org #319732 (CK) & #916660 (Martha) +I couldn't find his house. 我找不到他的家。 CC-BY 2.0 (France) Attribution: tatoeba.org #402986 (CK) & #834495 (Martha) +I decided to study abroad. 我決定出國留學了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262200 (CK) & #941157 (Martha) +I didn't ask Tom for help. 我没有找Tom帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #5759268 (CK) & #8591286 (easononizuka) +I didn't even think of it. 我連想都不想。 CC-BY 2.0 (France) Attribution: tatoeba.org #2290291 (CK) & #8215743 (verdastelo9604) +I didn't have lunch today. 我今天沒吃午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #257594 (CK) & #926831 (Martha) +I didn't know what to say. 我不知道該說些什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #24890 (CK) & #792389 (Martha) +I didn't mean to wake you. 我沒打算叫醒你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2290422 (CK) & #6633869 (verdastelo9604) +I didn't suspect anything. 我沒有懷疑任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2473720 (Hybrid) & #6103240 (verdastelo9604) +I do not love him anymore. 我已经不爱他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103327 (supplementfacts) & #7772514 (jiangche) +I don't believe it at all. 我根本不信。 CC-BY 2.0 (France) Attribution: tatoeba.org #5218439 (CK) & #6101308 (verdastelo9604) +I don't care what happens. 我不在乎發生什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #25151 (CK) & #833805 (Martha) +I don't care what he does. 我不在乎他做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #283422 (CK) & #846264 (Martha) +I don't get what you mean. 我不明白你的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #17241 (CK) & #846108 (Martha) +I don't have any children. 我没有孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #257961 (CK) & #344213 (fucongcong) +I don't have many friends. 我朋友很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #1970154 (CK) & #4265094 (notabene) +I don't have time to read. 我没时间阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #322103 (CK) & #334401 (fucongcong) +I don't know anybody here. 我不認識這裡的任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3301001 (CK) & #6860671 (verdastelo9604) +I don't know what Tom got. 我不知道湯姆拿到了甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350176 (CK) & #6877970 (verdastelo9604) +I don't know what Tom saw. 我不知道汤姆看到了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736981 (CK) & #8632089 (ZeroAurora) +I don't like green onions. 我不喜欢葱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8776763 (weihaiping) & #8701009 (crescat) +I don't like to socialize. 我不喜欢跟人打交道。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756783 (cairnhead) & #4757234 (ryanwoo) +I don't meet him so often. 我不常見到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #410177 (CK) & #846449 (Martha) +I don't mind if I get wet. 我不介意被弄濕。 CC-BY 2.0 (France) Attribution: tatoeba.org #281989 (CK) & #766431 (Martha) +I don't trust businessmen. 我不相信商人。 CC-BY 2.0 (France) Attribution: tatoeba.org #543118 (FeuDRenais) & #803706 (Martha) +I don't understand German. 我不懂德语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1784 (CK) & #502726 (fucongcong) +I don't understand at all. 我完全不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #4567997 (CM) & #789338 (Martha) +I feel a lot better today. 我今天感觉好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2325973 (CK) & #334279 (fucongcong) +I feel bad enough already. 我已经感觉够坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2325982 (CK) & #5819690 (verdastelo9604) +I forgot it in the garage. 我把它忘在车库里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #910515 (guesser) & #847830 (fucongcong) +I found out where she was. 我弄清楚她在哪儿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308204 (CK) & #1394948 (mtdot) +I gave her a lift to town. 我載她去城裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317619 (CK) & #805618 (Martha) +I go to bed after I study. 我讀完書之後就去睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #261660 (CK) & #804860 (Martha) +I go to bed late at night. 我晚上很晚就寢。 CC-BY 2.0 (France) Attribution: tatoeba.org #255903 (CK) & #804862 (Martha) +I go to church on Sundays. 周日我去做礼拜。 CC-BY 2.0 (France) Attribution: tatoeba.org #259855 (CK) & #4764638 (ryanwoo) +I got a new pair of shoes. 我得到了一雙新鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #632478 (CK) & #804597 (Martha) +I got some sand in my eye. 我的眼睛進了些沙。 CC-BY 2.0 (France) Attribution: tatoeba.org #323745 (Zifre) & #802325 (Martha) +I guess I waited too long. 我好像等太久了 CC-BY 2.0 (France) Attribution: tatoeba.org #2330045 (CK) & #5247698 (bingxiong) +I had an accident at work. 我出了工伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #257925 (adjusting) & #787053 (fucongcong) +I have a Facebook account. 我有一个Facebook的帐号。 CC-BY 2.0 (France) Attribution: tatoeba.org #436627 (lukaszpp) & #478841 (biglion) +I have a few friends here. 我在这儿有一些朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #253474 (CK) & #8496041 (gumblex) +I have a high temperature. 我發燒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388564 (CK) & #835800 (Martha) +I have a surprise for you. 我帶了一個驚喜給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237681 (CK) & #846438 (Martha) +I have breakfast at seven. 我在七點吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #252624 (CK) & #6149014 (verdastelo9604) +I have mislaid my baggage. 我的行李丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1960212 (CM) & #794187 (fucongcong) +I have no idea who she is. 我不知道她是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1412485 (CK) & #1415772 (sadhen) +I have some English books. 我有一些英文書。 CC-BY 2.0 (France) Attribution: tatoeba.org #256225 (CK) & #759634 (Martha) +I haven't eaten lunch yet. 我现在还没有吃过午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #32579 (CK) & #1366179 (sadhen) +I haven't seen Tom lately. 我最近沒看到湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #243772 (CK) & #834957 (Martha) +I haven't smoked for ages. 我很久没有抽烟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259506 (CK) & #335273 (fucongcong) +I hope I can see you soon. 我希望很快就能見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230478 (alec) & #1223813 (tsayng) +I hope I'm not boring you. 希望我没有烦到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360859 (CK) & #5091173 (mirrorvan) +I hope Tom appreciates it. 我希望汤姆欣赏它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839497 (CK) & #5762986 (verdastelo9604) +I just finished breakfast. 我剛吃完了早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2922456 (odango_daisuki) & #835676 (Martha) +I knew I was going to win. 我知道我会赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5217982 (CK) & #5556053 (verdastelo9604) +I knew what Tom was doing. 我知道汤姆在做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375737 (CK) & #5581757 (verdastelo9604) +I know Tom is watching me. 我知道湯姆在看着我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5599632 (CK) & #6931233 (verdastelo9604) +I know that Tom is hungry. 我知道湯姆餓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6231105 (CK) & #6826139 (verdastelo9604) +I know that life is short. 我知道生命是短暂的。 CC-BY 2.0 (France) Attribution: tatoeba.org #664080 (bluepie88) & #7772403 (jiangche) +I like both dogs and cats. 我喜歡狗和貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #28947 (CK) & #848640 (Martha) +I like instrumental music. 我喜歡器樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #321747 (CK) & #771445 (Martha) +I like learning languages. 我喜欢学习外语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1568731 (Sharaf78) & #2040306 (sadhen) +I like this color as well. 我也喜歡這顏色。 CC-BY 2.0 (France) Attribution: tatoeba.org #321616 (CK) & #848232 (Martha) +I like to play basketball. 我喜歡打籃球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321679 (CK) & #834656 (Martha) +I like to travel by train. 我喜歡搭火車旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #262276 (CK) & #805082 (Martha) +I looked over my shoulder. 我回過頭去。 CC-BY 2.0 (France) Attribution: tatoeba.org #321801 (CK) & #834795 (Martha) +I made his son a new suit. 我給他的兒子做了一套新西裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #259220 (CK) & #802064 (Martha) +I may have made a mistake. 我可能犯了个错。 CC-BY 2.0 (France) Attribution: tatoeba.org #256735 (CK) & #466222 (fucongcong) +I may have made a mistake. 我可能搞错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256735 (CK) & #846755 (fucongcong) +I met him at the barber's. 我在理发店碰到了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #325348 (CK) & #333790 (fucongcong) +I met him on his way home. 在他回家的路上我遇見了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #823795 (CM) & #824437 (Martha) +I might not see Tom today. 我今天可能見不到湯姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6231045 (CK) & #6853179 (verdastelo9604) +I must have caught a cold. 我肯定着凉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319770 (CK) & #336032 (fucongcong) +I need to get some stamps. 我需要一些郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #407135 (CK) & #793500 (Martha) +I noticed Tom was smiling. 我注意到汤姆在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #7521435 (CK) & #8744076 (crescat) +I prefer to remain seated. 我更想繼續坐著。 CC-BY 2.0 (France) Attribution: tatoeba.org #2389876 (CK) & #6472032 (verdastelo9604) +I prefer to travel by air. 我寧願搭飛機旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #261433 (CK) & #795264 (Martha) +I promise that I'll do it. 我保证我会做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8442735 (CK) & #8463667 (gumblex) +I ran as fast as possible. 我跑得尽可能快。 CC-BY 2.0 (France) Attribution: tatoeba.org #252189 (CK) & #473018 (fucongcong) +I ran as fast as possible. 我盡可能地跑快一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #252189 (CK) & #795805 (Martha) +I really don't believe so. 我真不這麼想。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666246 (CK) & #6105177 (verdastelo9604) +I really have to be going. 我真的得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #897471 (CM) & #713158 (egg0073) +I really need a drink now. 我现在真需要来杯喝的。 CC-BY 2.0 (France) Attribution: tatoeba.org #241808 (CK) & #787362 (fucongcong) +I remember the first time. 我记得第一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #244014 (CK) & #794229 (fucongcong) +I remember writing to her. 我记得给她写过信。 CC-BY 2.0 (France) Attribution: tatoeba.org #261193 (CK) & #405126 (fucongcong) +I saw Tom three hours ago. 我在三小时前见过汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406160 (CK) & #5581760 (verdastelo9604) +I saw him after ten years. 十年之後我看到了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #299332 (Scott) & #873445 (Martha) +I saw it in the newspaper. 我在报纸上看到了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #387702 (Mouseneb) & #332437 (fucongcong) +I saw it with my own eyes. 我親眼看見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #254819 (CK) & #3036125 (egg0073) +I saw more than Tom knows. 我看的比Tom知道得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406077 (CK) & #4844969 (pig8322) +I see a cat chasing a dog. 我看见一只猫追着一只狗跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #7152124 (sapphrein) & #334802 (fucongcong) +I should be ready by 2:30. 我应该在2:30准备好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858787 (CK) & #5983662 (verdastelo9604) +I speak English every day. 我每天都说英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1017210 (AOCinJAPAN) & #2030788 (sadhen) +I spoke to Tom last night. 昨晚我和汤姆说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406565 (CK) & #5091326 (mirrorvan) +I stay at home on Sundays. 我星期天在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #281868 (CK) & #5911623 (verdastelo9604) +I stood waiting for a bus. 我站著等公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #254961 (CK) & #781109 (Martha) +I study Chinese every day. 我每天讀中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #929061 (CN) & #2427414 (egg0073) +I take a bath every night. 我每晚洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #707284 (CK) & #707281 (Yashanti) +I think I have a question. 我覺的有一個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #7789278 (sharris123) & #6467630 (xjjAstrus) +I think I know who did it. 我認為我知道是誰做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2407804 (CK) & #6146522 (verdastelo9604) +I think Tom is optimistic. 我認為湯姆樂觀。 CC-BY 2.0 (France) Attribution: tatoeba.org #3184031 (CK) & #6077356 (verdastelo9604) +I think Tom is photogenic. 我觉得汤姆很上镜。 CC-BY 2.0 (France) Attribution: tatoeba.org #3184035 (CK) & #8739620 (slo_oth) +I think it was a good day. 我認為那是個好日子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3620196 (CK) & #6624677 (verdastelo9604) +I think that would be fun. 我認為那會很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666242 (CK) & #6585418 (verdastelo9604) +I think this book is easy. 我觉得这本书很简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #253741 (CK) & #3630685 (suitchic) +I think you look like Tom. 我看你长得像汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408611 (CK) & #5845581 (verdastelo9604) +I think you understand me. 我认为你了解我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6031866 (Djd_9) & #6031935 (verdastelo9604) +I understand how you feel. 我明白你的感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #20315 (CK) & #334576 (fucongcong) +I want something to drink. 我想喝點什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #25192 (CK) & #835627 (Martha) +I want to become a singer. 我想當歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #3777831 (CK) & #6080211 (verdastelo9604) +I want to eat out tonight. 我今晚想出去吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #490011 (CK) & #850407 (Martha) +I want to play the guitar. 我想彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #253369 (CK) & #781682 (Martha) +I want to see your mother. 我想看看你的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #252802 (CK) & #864275 (Martha) +I want to travel with you. 我想和你去旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #29042 (CK) & #851482 (Martha) +I want you out of my room. 我想讓你離開我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012477 (CK) & #6393328 (verdastelo9604) +I want you to be prepared. 我想讓你準備好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012478 (CK) & #6084404 (verdastelo9604) +I want you to sleep on it. 我想要你睡在它上边。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033205 (CK) & #5091438 (mirrorvan) +I want you to wait for me. 我想让你等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012486 (CK) & #5842653 (verdastelo9604) +I want you to work harder. 我希望你更加努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #17493 (CK) & #848262 (Martha) +I was almost hit by a car. 我幾乎被車撞到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388649 (CK) & #885519 (Martha) +I was barely able to work. 我几乎不能工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33276 (CK) & #803843 (fucongcong) +I was exhausted from work. 我工作累死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257900 (CK) & #333924 (fucongcong) +I was fired without cause. 我被无故辞退了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825834 (CK) & #5780609 (verdastelo9604) +I was just about to leave. 我就要离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839520 (CK) & #5845642 (verdastelo9604) +I was scared all the time. 我一直很害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #8344859 (CK) & #8589280 (easononizuka) +I was struck by lightning. 我被雷劈了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544955 (CK) & #5574631 (verdastelo9604) +I was trying to kill time. 我试着消磨时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1703 (CK) & #501603 (fucongcong) +I was very busy last week. 上星期我非常地忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #272746 (CK) & #804535 (Martha) +I watched TV this morning. 我今天早上看了电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #1880 (Swift) & #389795 (fucongcong) +I will give you this book. 我会把这本书给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #56849 (CK) & #796863 (fucongcong) +I wish you had been there. 但願你去過那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #68830 (CK) & #858801 (Martha) +I wonder what will happen. 我不知道會發生甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #989041 (CK) & #6057853 (verdastelo9604) +I work for an oil company. 我為一家石油公司工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #259013 (CK) & #860959 (Martha) +I work with her boyfriend. 我和她的男朋友在一起上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #912735 (FeuDRenais) & #6093516 (xjjAstrus) +I would like your picture. 我想要你的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #17089 (CK) & #834865 (Martha) +I wouldn't try that again. 我不会再试了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544906 (CK) & #5862111 (verdastelo9604) +I'd like a glass of water. 我想要一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270846 (CK) & #727810 (Martha) +I'd like some tea, please. 請給我一杯茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #64184 (CK) & #834729 (Martha) +I'd like something to eat. 我想吃点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25078 (CK) & #444818 (fucongcong) +I'd like to come with you. 我想和你一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936504 (CK) & #7774771 (jiangche) +I'd love to come with you. 我想和你一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #257056 (CK) & #397152 (fucongcong) +I'll bring one more towel. 我再拿块毛巾过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #35404 (CK) & #8887773 (morningstar) +I'll call you every night. 我每晚都給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438080 (CK) & #6826149 (verdastelo9604) +I'll call you up tomorrow. 明天我會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323051 (CK) & #834960 (Martha) +I'll call you up tomorrow. 明天我給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #323051 (CK) & #3782195 (egg0073) +I'll give you this camera. 我會給你這台相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #17561 (CK) & #834755 (Martha) +I'll go shopping tomorrow. 我明天要去购物。 CC-BY 2.0 (France) Attribution: tatoeba.org #386761 (Mouseneb) & #343266 (fucongcong) +I'll lend you my notebook. 我會借給你我的筆記本。 CC-BY 2.0 (France) Attribution: tatoeba.org #17470 (CK) & #834927 (Martha) +I'll lend you my textbook. 我會借給你我的課本。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850162 (CK) & #6150023 (verdastelo9604) +I'll personally visit you. 我會親自拜訪您。 CC-BY 2.0 (France) Attribution: tatoeba.org #466176 (CK) & #832780 (Martha) +I'll remember you forever. 我會永遠記住你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #627359 (CK) & #3713693 (egg0073) +I'll show you around town. 我會帶你逛逛這個鎮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1256481 (yuya) & #772106 (Martha) +I'll try harder next time. 下次我會更加努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #418861 (CK) & #834680 (Martha) +I'm a high school student. 我是个高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #257432 (CK) & #4104759 (maple) +I'm afraid of earthquakes. 我怕地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #259413 (CK) & #334322 (fucongcong) +I'm counting on your help. 我指望你的帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #2267200 (_undertoad) & #5900370 (verdastelo9604) +I'm glad I could help out. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544799 (CK) & #5097642 (mirrorvan) +I'm glad I could help you. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3402377 (CK) & #5097642 (mirrorvan) +I'm glad to see you again. 很高興再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #252747 (CK) & #1020002 (egg0073) +I'm going out for a while. 我出去一会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #39987 (CK) & #389427 (fucongcong) +I'm going to learn French. 我要学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451590 (CK) & #8496235 (gumblex) +I'm going to study French. 我要学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451589 (CK) & #8496235 (gumblex) +I'm going to study harder. 我決定更努力讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755391 (garborg) & #4754670 (egg0073) +I'm going to the restroom. 我去下洗手间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544760 (CK) & #5096722 (mirrorvan) +I'm happy if you're happy. 如果你開心,我也就開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5389396 (raychsy) & #5386938 (xjjAstrus) +I'm happy to see you here. 我很高興在這裡看到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1439831 (Eldad) & #876938 (Martha) +I'm hoping that'll happen. 我希望那會發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #7870830 (CK) & #834584 (Martha) +I'm interested in history. 我對歷史有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #262259 (CK) & #941116 (Martha) +I'm learning how to drive. 我正在學習如何駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #4793764 (CK) & #4794091 (umidake) +I'm much younger than you. 我比你年輕得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #257130 (CK) & #834885 (Martha) +I'm never late for school. 我從來沒有上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #321793 (CK) & #835646 (Martha) +I'm not good at carpentry. 我不擅長做木工。 CC-BY 2.0 (France) Attribution: tatoeba.org #1228975 (CK) & #1228982 (tsayng) +I'm not very good at golf. 我不太擅长打高尔夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #7733475 (CK) & #8692446 (slo_oth) +I'm ready to go back home. 我準備回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5216285 (CK) & #6198949 (verdastelo9604) +I'm sure they can hear us. 我確定他們能聽見我們的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544659 (CK) & #6860869 (verdastelo9604) +I'm telling you the truth. 我在告訴你真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #433639 (CK) & #835357 (Martha) +I'm very happy to see you. 我很高兴见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #432319 (FeuDRenais) & #406328 (fucongcong) +I've already eaten dinner. 我已經吃晚飯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1260143 (donkirkby) & #835390 (Martha) +I've been looking for you. 我一直在找你。 CC-BY 2.0 (France) Attribution: tatoeba.org #321791 (CK) & #834987 (Martha) +I've done a lot this week. 我在本週做了許多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916185 (CK) & #6086796 (verdastelo9604) +I've lost a little weight. 我瘦了一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #267736 (CK) & #3163360 (cienias) +I've never been to Europe. 我从没去过欧洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #30012 (CK) & #334093 (fucongcong) +I've never seen Tom laugh. 我從沒見湯姆笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823130 (CK) & #6624662 (verdastelo9604) +I've tried to contact Tom. 我试过去联系汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360655 (CK) & #5091132 (mirrorvan) +In case of fire, call 119. 遇到火灾打119。 CC-BY 2.0 (France) Attribution: tatoeba.org #23851 (CK) & #512164 (fucongcong) +Is Tom going to dump Mary? 汤姆要甩了玛丽吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4499011 (CK) & #8860207 (crescat) +Is anything bothering you? 有什么事让你烦心吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4496126 (CK) & #5091256 (mirrorvan) +Is death the only way out? 死是唯一的解脱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1066875 (CM) & #333959 (fucongcong) +Is it still far from here? 离这里还远吗? CC-BY 2.0 (France) Attribution: tatoeba.org #873609 (CM) & #3365867 (hzy980512) +Is it true Tom can't swim? 汤姆真的不会游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8186005 (CK) & #8709412 (slo_oth) +Is this a pen or a pencil? 这是一只钢笔还是铅笔? CC-BY 2.0 (France) Attribution: tatoeba.org #55841 (CK) & #1416061 (sadhen) +Is this car your friend's? 這輛車是你朋友的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #8716833 (krrk) & #6047125 (xjjAstrus) +Is this the bus to Oxford? 这是去牛津大学的车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #55947 (CK) & #332851 (fucongcong) +Is your family doing well? 你的家人好么? CC-BY 2.0 (France) Attribution: tatoeba.org #2438450 (FeuDRenais) & #2437250 (CLARET) +Is your homework finished? 你的作業做完了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4960774 (Chackoony) & #6309837 (verdastelo9604) +It can be used as a knife. 它可以被當成一把刀來用。 CC-BY 2.0 (France) Attribution: tatoeba.org #36547 (CK) & #796968 (Martha) +It depends on the context. 这要看情况。 CC-BY 2.0 (France) Attribution: tatoeba.org #1333 (CK) & #501316 (fucongcong) +It depends on the context. 这得看情况。 CC-BY 2.0 (France) Attribution: tatoeba.org #1333 (CK) & #1768156 (sadhen) +It doesn't sound like Tom. 聽起來不像湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276519 (CK) & #6128447 (verdastelo9604) +It grew larger and larger. 它变得越来越大。 CC-BY 2.0 (France) Attribution: tatoeba.org #42709 (CM) & #5698034 (verdastelo9604) +It is by no means certain. 这根本不是确定的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42480 (CK) & #5550171 (verdastelo9604) +It is easy to add 5 to 10. 5加10很简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #72570 (CK) & #8714992 (crescat) +It is good to be a winner. 做个赢家很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #267379 (CK) & #333778 (fucongcong) +It is too early to get up. 時間還早不用起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #20091 (CK) & #798087 (Martha) +It is wrong to tell a lie. 說謊是錯誤的。 CC-BY 2.0 (France) Attribution: tatoeba.org #26648 (CK) & #798066 (Martha) +It isn't too late for you. 对你来说还不太晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3518512 (CK) & #5920771 (verdastelo9604) +It may or may not be true. 這可能是真的,也可能不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #42095 (CK) & #2661362 (cienias) +It rained hard last night. 昨晚雨下得很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #244828 (CK) & #510779 (fucongcong) +It seems very interesting. 它似乎很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #323526 (CK) & #1750395 (sadhen) +It snowed a lot last year. 去年下了很多雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #569759 (kebukebu) & #336618 (fucongcong) +It was my duty to do that. 做那事是我的责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820208 (CK) & #5624889 (verdastelo9604) +It was the only way to go. 那是唯一的出路。 CC-BY 2.0 (France) Attribution: tatoeba.org #869520 (CM) & #6065362 (verdastelo9604) +It's a beautiful painting. 是一幅漂亮的畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2617606 (CK) & #5527534 (xjjAstrus) +It's a nice day, isn't it? 美丽的一天,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #51842 (CK) & #782764 (fucongcong) +It's a really good school. 它真是個好学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619170 (CK) & #6959860 (verdastelo9604) +It's almost midnight here. 這裡已經是午夜了。 CC-BY 2.0 (France) Attribution: tatoeba.org #792415 (CK) & #6482312 (verdastelo9604) +It's almost three o'clock. 將近三點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7910811 (CK) & #824571 (Martha) +It's already nine o'clock. 已经9点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31681 (CK) & #406740 (fucongcong) +It's an artificial flower. 這是朵人造花。 CC-BY 2.0 (France) Attribution: tatoeba.org #42254 (CK) & #1233792 (tsayng) +It's difficult to do that. 那麼做很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851624 (CK) & #6635906 (verdastelo9604) +It's easy to catch a cold. 很容易感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #776367 (lde) & #776961 (Martha) +It's hard to quit smoking. 戒烟难。 CC-BY 2.0 (France) Attribution: tatoeba.org #896156 (pauldhunt) & #5894455 (verdastelo9604) +It's just what I expected. 它正是我所期待的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732468 (CK) & #6111738 (verdastelo9604) +It's later than you think. 時間比你想的還要晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #904845 (LittleBoy) & #904853 (Martha) +It's much more convenient. 这方便得多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #713260 (CM) & #713258 (Yashanti) +It's nearly three o'clock. 將近三點了。 CC-BY 2.0 (France) Attribution: tatoeba.org #519323 (CK) & #824571 (Martha) +It's nice to have friends. 有朋友真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #6303746 (Hybrid) & #6318533 (verdastelo9604) +It's none of your concern. 这不关你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3518557 (CK) & #1327882 (vicch) +It's nonsense to try that. 这种尝试很荒谬。 CC-BY 2.0 (France) Attribution: tatoeba.org #41627 (CK) & #335012 (fucongcong) +It's not good for anybody. 这对任何人都不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5069826 (CK) & #5863248 (verdastelo9604) +It's obvious that he lied. 顯然地他撒了謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #395383 (CK) & #835761 (Martha) +It's really not important. 真的不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #4015170 (CK) & #5630423 (verdastelo9604) +It's totally dark outside. 外面一片漆黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1053235 (Eldad) & #503068 (fucongcong) +It's true that she's dead. 她确实死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388852 (CK) & #4885873 (gumblex) +It's warm today, isn't it? 今天很溫暖,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242928 (CK) & #834724 (Martha) +Jealousy made him do that. 嫉妒讓他那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #328932 (fcbond) & #834757 (Martha) +Lend me your book, please. 請​​借我你的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #70387 (CK) & #834687 (Martha) +Let me think for a minute. 让我想想。 CC-BY 2.0 (France) Attribution: tatoeba.org #40010 (CK) & #5842629 (verdastelo9604) +Let's meet at one o'clock. 讓我們一點鐘見面吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #73173 (CK) & #835771 (Martha) +Let's take the 4:10 train. 我们去坐四点十分的火车吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #72587 (CK) & #8742138 (crescat) +Many attended his funeral. 很多人都参加了他的葬礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2065200 (halfb1t) & #2065349 (sadhen) +Mary likes milk very much. 瑪麗很喜歡牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #31960 (CK) & #835330 (Martha) +May I ask a few questions? 我能问一些问题吗? CC-BY 2.0 (France) Attribution: tatoeba.org #73014 (Eldad) & #332979 (fucongcong) +May I ask how old you are? 请问您老人家高寿? CC-BY 2.0 (France) Attribution: tatoeba.org #984512 (LittleBoy) & #4887658 (musclegirlxyp) +May I have a bus schedule? 我可以有張公車的時刻表嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #35354 (CK) & #856397 (Martha) +May I see your claim tags? 我可以看看你的行李條嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27153 (CK) & #858717 (Martha) +Maybe they have something. 他们可能有点什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064705 (CK) & #5640757 (verdastelo9604) +Money can't buy happiness. 钱买不到幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #18625 (CK) & #401010 (fucongcong) +Mother Nature is generous. 大自然很慷慨。 CC-BY 2.0 (France) Attribution: tatoeba.org #792819 (U2FS) & #794063 (fucongcong) +Mother made a doll for me. 妈妈给我做了一个洋娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #320756 (CM) & #1424141 (sadhen) +My apartment is near here. 我的公寓在這附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #321476 (CK) & #835441 (Martha) +My brother is a professor. 我哥哥是教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #873456 (CM) & #8696349 (crescat) +My car burns a lot of gas. 我的車子很耗油。 CC-BY 2.0 (France) Attribution: tatoeba.org #33554 (CK) & #894053 (Martha) +My daughter caught a cold. 我的女儿感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #556617 (Pun_intended) & #8845369 (crescat) +My daughter wants a piano. 我女儿想要架钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #251958 (CK) & #7773135 (jiangche) +My father's in the garden. 我爸爸在花园里。 CC-BY 2.0 (France) Attribution: tatoeba.org #971773 (FeuDRenais) & #791652 (fucongcong) +My house has a small yard. 我的房子有一個小院子。 CC-BY 2.0 (France) Attribution: tatoeba.org #250559 (CK) & #862885 (Martha) +My house is fully insured. 我的房子绝对保险。 CC-BY 2.0 (France) Attribution: tatoeba.org #250489 (CK) & #389428 (fucongcong) +My mother boiled ten eggs. 妈妈煮了十只蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1439839 (CK) & #1394945 (mtdot) +My mother is a good woman. 我媽媽是個好女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2893995 (CK) & #5363875 (egg0073) +My neighbor's dog is dead. 我鄰居的狗死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #715045 (CK) & #778523 (Martha) +My parents aren't old yet. 我父母还不老。 CC-BY 2.0 (France) Attribution: tatoeba.org #252080 (CK) & #333789 (fucongcong) +My phone was out of order. 我的電話壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #713021 (CM) & #713020 (egg0073) +My uncle gave me a camera. 我叔叔給了我一個照相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #65087 (CK) & #856388 (Martha) +My watch is very accurate. 我的手錶很準。 CC-BY 2.0 (France) Attribution: tatoeba.org #251021 (CK) & #6150021 (verdastelo9604) +No arrests were ever made. 根本就没实施过逮捕行动。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529918 (CK) & #5091078 (mirrorvan) +Nobody would listen to me. 沒有人會聽我說。 CC-BY 2.0 (France) Attribution: tatoeba.org #276688 (CK) & #842248 (Martha) +Not a star was to be seen. 星星沒有被看到。 CC-BY 2.0 (France) Attribution: tatoeba.org #271535 (CM) & #778034 (Martha) +Not a star was to be seen. 沒看到任何一顆星星。 CC-BY 2.0 (France) Attribution: tatoeba.org #271535 (CM) & #778043 (Martha) +Not even one taxi stopped. 甚至沒有一輛計程車停下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #442983 (CK) & #844572 (Martha) +Nothing is worse than war. 没有什么比战争更糟的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273321 (CK) & #401001 (fucongcong) +One of my bags is missing. 我的一個包包不見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35164 (CK) & #850299 (Martha) +One of your tires is flat. 你的轮胎爆了一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #8460116 (CK) & #8463684 (gumblex) +One plus two equals three. 一加二等于三。 CC-BY 2.0 (France) Attribution: tatoeba.org #475773 (biglion) & #475764 (biglion) +Our fence is made of iron. 我們的欄杆是鐵做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #681236 (Source_VOA) & #5505592 (egg0073) +Our train arrived on time. 我们的火车准时来到。 CC-BY 2.0 (France) Attribution: tatoeba.org #247704 (CK) & #8591238 (easononizuka) +Part of his story is true. 他的故事一部分是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #287864 (CK) & #332940 (fucongcong) +People are counting on us. 人们正在依赖着我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846726 (CK) & #4846814 (pig8322) +People can't live forever. 人无法长生不死。 CC-BY 2.0 (France) Attribution: tatoeba.org #270038 (CK) & #1839150 (sadhen) +Pizza is my favorite food. 比薩是我最喜歡的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #34792 (CK) & #844527 (Martha) +Please answer my question. 请回答我的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #251059 (CK) & #349931 (fucongcong) +Please answer my question. 請回答我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #251059 (CK) & #8962860 (egg0073) +Please don't get me wrong. 千万别误会我的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #2654640 (Hybrid) & #4282947 (notabene) +Please don't interrupt me. 请不要打断我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2120494 (jjbraam) & #1889625 (Venki) +Please keep this a secret. 请保密。 CC-BY 2.0 (France) Attribution: tatoeba.org #61099 (CK) & #404460 (fucongcong) +Please lend me your knife. 請借我你的刀。 CC-BY 2.0 (France) Attribution: tatoeba.org #36536 (CK) & #840780 (Martha) +Please pass me the butter. 请把黄油递给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #35194 (CK) & #335332 (fucongcong) +Please say it more loudly. 請說更大聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #441969 (CK) & #844567 (Martha) +Please send me your photo. 請把您的照片發給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4758404 (cairnhead) & #6286213 (xjjAstrus) +Please speak more clearly. 请说得更清楚些。 CC-BY 2.0 (France) Attribution: tatoeba.org #619693 (ulyssemc1) & #1361973 (sadhen) +Please take a deep breath. 请深吸一口气。 CC-BY 2.0 (France) Attribution: tatoeba.org #1208128 (deparuma) & #8715883 (crescat) +Please take off your coat. 請脫下您的外套。 CC-BY 2.0 (France) Attribution: tatoeba.org #6354279 (CK) & #6014699 (xjjAstrus) +Please tell me when to go. 請告訴我什麼時候該走。 CC-BY 2.0 (France) Attribution: tatoeba.org #66021 (CK) & #1236361 (tsayng) +Please turn off the light. 請關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #29826 (CK) & #798428 (Martha) +Read it once more, please. 請再讀一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #31472 (CK) & #793258 (Martha) +Roll up your right sleeve. 捲起你右邊的袖子。 CC-BY 2.0 (France) Attribution: tatoeba.org #27076 (CK) & #845438 (Martha) +School begins at 8:30 a.m. 学校8点半开始上课。 CC-BY 2.0 (France) Attribution: tatoeba.org #266228 (CK) & #332951 (fucongcong) +School begins at 8:30 a.m. 學校在上午八點三十分開始上課。 CC-BY 2.0 (France) Attribution: tatoeba.org #266228 (CK) & #798350 (Martha) +School starts next Monday. 下周一开学。 CC-BY 2.0 (France) Attribution: tatoeba.org #21522 (CK) & #431555 (fucongcong) +Second semester has ended. 第二學期結束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #494252 (CK) & #771384 (Martha) +See how high you can jump. 看看你能跳多高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2744935 (sharptoothed) & #6147593 (verdastelo9604) +See you again next Monday. 下週一再見。 CC-BY 2.0 (France) Attribution: tatoeba.org #6110279 (CK) & #6325072 (verdastelo9604) +Send for a doctor at once. 立即送醫。 CC-BY 2.0 (France) Attribution: tatoeba.org #52209 (CK) & #798359 (Martha) +She asked about my school. 她問了關於我學校的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #314301 (CK) & #5405458 (egg0073) +She called me many a time. 她叫了我很多次。 CC-BY 2.0 (France) Attribution: tatoeba.org #312826 (CM) & #5780505 (verdastelo9604) +She cannot be over thirty. 她不可能超过30岁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307970 (CM) & #465875 (fucongcong) +She gave her father a tie. 她给了她父亲一条领带。 CC-BY 2.0 (France) Attribution: tatoeba.org #456683 (lukaszpp) & #4267390 (notabene) +She gave me plenty to eat. 她給了我很多吃的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #314161 (CK) & #805202 (Martha) +She gave me several books. 她給了我幾本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #261026 (CK) & #836325 (Martha) +She got sick this weekend. 她周末病倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2086 (CK) & #503111 (fucongcong) +She has a very quick mind. 她反應很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259132 (_undertoad) & #6447546 (verdastelo9604) +She has an eye for beauty. 她有一雙美麗的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #388449 (CK) & #850356 (Martha) +She has hundreds of books. 她有幾百本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #312832 (saeb) & #2638767 (cienias) +She is Tom's older sister. 她是Tom的姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1526458 (pauldhunt) & #1523967 (egg0073) +She isn't afraid of death. 她不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #801771 (CM) & #802839 (fucongcong) +She kept crying all night. 她一整晚都在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #312602 (CK) & #333193 (fucongcong) +She likes music very much. 她非常喜欢音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #312735 (CK) & #8688058 (crescat) +She likes taking pictures. 她喜欢拍照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #859995 (piksea) & #346071 (fucongcong) +She lived for a long time. 她活了很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211527 (alec) & #333957 (fucongcong) +She lives in a huge house. 她住在一個很大的房子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #311788 (CK) & #794077 (Martha) +She married her classmate. 她跟她的同學結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310760 (CK) & #6131461 (verdastelo9604) +She must be angry with me. 她一定在生我的氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #317010 (CK) & #861150 (Martha) +She put sheets on her bed. 她在她的床上鋪了床單。 CC-BY 2.0 (France) Attribution: tatoeba.org #314627 (CK) & #861346 (Martha) +She said something to him. 她對他說了些話。 CC-BY 2.0 (France) Attribution: tatoeba.org #887359 (CK) & #8215674 (verdastelo9604) +She said that she was ill. 她说她病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316673 (CM) & #1397139 (mtdot) +She slept for a few hours. 她睡了几小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1532049 (LittleBoy) & #9007523 (jacintoo) +She taught me how to swim. 她教我如何游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #314186 (CK) & #333161 (fucongcong) +She traveled around Japan. 她环游了日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #567463 (CK) & #8739363 (crescat) +She tried to kill herself. 她企圖自殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1008961 (AOCinJAPAN) & #838593 (Martha) +She used to live with him. 她以前和他住一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #887490 (CK) & #1360006 (sadhen) +She usually gets up early. 她通常很早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #388300 (CK) & #845990 (Martha) +She walked very carefully. 她小心翼翼地走。 CC-BY 2.0 (France) Attribution: tatoeba.org #310021 (CK) & #1395107 (mtdot) +She was run over by a car. 她被車子輾過了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388640 (CK) & #908370 (Martha) +She wears a lot of makeup. 她化着浓妆。 CC-BY 2.0 (France) Attribution: tatoeba.org #312770 (CK) & #1416142 (sadhen) +She wept the entire night. 她一整晚都在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #453216 (FeuDRenais) & #333193 (fucongcong) +She won many competitions. 她贏了許多比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #776156 (BraveSentry) & #776984 (Martha) +Should we have some lunch? 我們該吃午飯了吧? CC-BY 2.0 (France) Attribution: tatoeba.org #3730755 (CM) & #6585428 (verdastelo9604) +Shouldn't you be studying? 你不应该在学习吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3820525 (CK) & #5554539 (Alieen) +Some people never grow up. 有些人永远也长不大。 CC-BY 2.0 (France) Attribution: tatoeba.org #3495024 (Hybrid) & #3839490 (sadhen) +Speaking in French is fun. 说法语很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451587 (CK) & #8496234 (gumblex) +Stay right here and relax. 待在這里,放鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185053 (CK) & #6058596 (verdastelo9604) +Suddenly it began to rain. 突然開始下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1600022 (CM) & #797087 (Martha) +Take a breath and hold it. 深吸一口氣然後屏住氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #274361 (CK) & #855651 (Martha) +Take any train on track 5. 到5号轨道乘随便什么火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #72481 (CM) & #336503 (fucongcong) +Take the pan off the fire. 把平底鍋離火。 CC-BY 2.0 (France) Attribution: tatoeba.org #320143 (CK) & #798275 (Martha) +Take the road on the left. 走左邊的道路。 CC-BY 2.0 (France) Attribution: tatoeba.org #243549 (CK) & #798155 (Martha) +Thank you for inviting me. 謝謝你邀請我。 CC-BY 2.0 (France) Attribution: tatoeba.org #54430 (CK) & #842492 (Martha) +That book was interesting. 那本書很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #515598 (CK) & #832784 (Martha) +That film is for children. 那部電影是給小孩看的。 CC-BY 2.0 (France) Attribution: tatoeba.org #639901 (meiko452) & #6149015 (verdastelo9604) +That girl is good-looking. 那個女孩長得很好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #890436 (Scott) & #890438 (Martha) +That house belongs to him. 這棟房子是屬於他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #68535 (CK) & #793206 (Martha) +That is rather unexpected. 这真是很意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #1603 (CK) & #334163 (fucongcong) +That pasture is ten acres. 那個牧場有十英畝大。 CC-BY 2.0 (France) Attribution: tatoeba.org #470994 (CK) & #836374 (Martha) +That red dress suited her. 那件紅色的洋裝適合她。 CC-BY 2.0 (France) Attribution: tatoeba.org #394947 (CK) & #845506 (Martha) +That's a strange question. 真是奇怪的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487427 (marshmallowcat) & #8848650 (crescat) +That's exactly how I feel. 那就是我的感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #3591708 (CK) & #5091238 (mirrorvan) +That's just what I wanted. 我想要的就是这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #56128 (CK) & #1314313 (vicch) +That's thirty meters long. 那個長30米。 CC-BY 2.0 (France) Attribution: tatoeba.org #7790477 (CK) & #5722983 (xjjAstrus) +That's what Tom requested. 那就是汤姆想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2876095 (CK) & #5911640 (verdastelo9604) +The car was going forward. 车往前走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268024 (_undertoad) & #3780485 (e78xx_xxx) +The company went bankrupt. 公司破产了。 CC-BY 2.0 (France) Attribution: tatoeba.org #49044 (Scott) & #1366056 (sadhen) +The doctor gave it to her. 醫生把它給了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #27921 (CK) & #805544 (Martha) +The dog chased the rabbit. 狗追兔子。 CC-BY 2.0 (France) Attribution: tatoeba.org #818073 (Cindrogriza) & #818114 (Martha) +The economy is picking up. 经济在复苏之中。 CC-BY 2.0 (France) Attribution: tatoeba.org #237950 (CK) & #2030817 (sadhen) +The funeral was yesterday. 葬禮是昨天。 CC-BY 2.0 (France) Attribution: tatoeba.org #681046 (Source_VOA) & #900011 (kanaorange) +The man finally confessed. 那个男人最终供认了他的罪行。 CC-BY 2.0 (France) Attribution: tatoeba.org #45353 (CK) & #3338920 (sadhen) +The matter is all settled. 這個問題都被解決了。 CC-BY 2.0 (France) Attribution: tatoeba.org #43710 (CK) & #793929 (Martha) +The message was in French. 这条消息是法语写的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451586 (CK) & #8496213 (gumblex) +The polar bears are dying. 北极熊正在死去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5739549 (CM) & #6094894 (verdastelo9604) +The pond is 3 meters deep. 这个池塘有三米深。 CC-BY 2.0 (France) Attribution: tatoeba.org #45111 (CK) & #8845126 (crescat) +The price of meat dropped. 肉价下跌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #281001 (CK) & #1783894 (sadhen) +The prisoner was released. 囚犯重獲自由。 CC-BY 2.0 (France) Attribution: tatoeba.org #46719 (CK) & #870122 (Martha) +The problem's been solved. 問題已解決。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663477 (CK) & #6047456 (verdastelo9604) +The school is on the hill. 学校在小丘上面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1728957 (CM) & #8752870 (crescat) +The service here is awful. 這裡的服務很糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #4813091 (Hybrid) & #4813627 (umidake) +The stew smells delicious. 這鍋墩湯聞起來真美味。 CC-BY 2.0 (France) Attribution: tatoeba.org #61049 (CK) & #1261463 (tsayng) +The train arrived on time. 火车准时到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #43422 (CK) & #510665 (fucongcong) +The universe is limitless. 宇宙浩瀚無邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #928899 (CM) & #928900 (egg0073) +The warnings were ignored. 警告被忽视。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500191 (CK) & #5983620 (verdastelo9604) +The weather is good today. 今天天气很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867475 (CM) & #333127 (fucongcong) +The weather turned better. 天氣轉好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278806 (CM) & #880391 (Martha) +The young man is a doctor. 这个年轻人是医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #463040 (lukaszpp) & #4282850 (notabene) +Their wedding is tomorrow. 他們明天舉行婚禮。 CC-BY 2.0 (France) Attribution: tatoeba.org #492868 (CK) & #771651 (Martha) +There are almost no books. 幾乎沒有任何書籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #515588 (CK) & #838634 (Martha) +There are no comments yet. 還沒有任何評論。 CC-BY 2.0 (France) Attribution: tatoeba.org #388349 (CK) & #839611 (Martha) +There is a letter for you. 你有一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #680993 (Source_VOA) & #9057897 (xjjAstrus) +There is food on the desk. 书桌上有食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #48843 (CK) & #464873 (fucongcong) +There were lots of people. 有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #275545 (CK) & #842484 (Martha) +There's a hair in my soup. 我的湯裡有一根頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #52333 (Swift) & #801326 (Martha) +There's also a park there. 那里也有个公园。 CC-BY 2.0 (France) Attribution: tatoeba.org #530664 (FeuDRenais) & #8798310 (crescat) +There's no doubt about it. 關於此事毫無疑問。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644495 (CK) & #8570931 (verdastelo9604) +There's somebody in there. 有人在那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2892149 (CK) & #5942072 (verdastelo9604) +These apples are very big. 这些苹果很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #6177965 (CarpeLanam) & #6307275 (gumblex) +They are watching a movie. 他們在看一部電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #463168 (lukaszpp) & #5234822 (xjjAstrus) +They became close friends. 他們成了密友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2298097 (Hybrid) & #6903864 (verdastelo9604) +They can't hear me either. 他們也不能聽見我說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951825 (CK) & #6073899 (verdastelo9604) +They gave him up for lost. 他們為失敗放棄了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #306640 (CK) & #805595 (Martha) +They had a baby last week. 上週他們生了一個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #305096 (CK) & #801918 (Martha) +They have the same habits. 他們有相同的嗜好。 CC-BY 2.0 (France) Attribution: tatoeba.org #307245 (CK) & #786126 (Martha) +They have twelve children. 他们有12个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #305403 (CK) & #411706 (fucongcong) +They made me really angry. 他们让我很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #3272138 (CM) & #5918307 (verdastelo9604) +They made us work all day. 他們讓我們工作了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #306729 (CK) & #795800 (Martha) +They sank ten enemy ships. 他们使10艘敌船沉了 CC-BY 2.0 (France) Attribution: tatoeba.org #307205 (CK) & #5975061 (zhangxr91) +They smiled at each other. 他們曾彼此微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #289490 (CK) & #3383929 (hanchingame) +They were left speechless. 他们惊得目瞪口呆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1571 (CM) & #334419 (fucongcong) +They're all the same size. 他們都是一樣的大小。 CC-BY 2.0 (France) Attribution: tatoeba.org #516681 (CK) & #836251 (Martha) +This book is easy to read. 這本書很容易讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #43910 (CK) & #1440489 (egg0073) +This desk is made of wood. 这张书桌是木制的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59842 (CK) & #333309 (fucongcong) +This glass contains water. 這個杯子裡有水。 CC-BY 2.0 (France) Attribution: tatoeba.org #61131 (CK) & #9135883 (xjjAstrus) +This guy looks like a fox. 这家伙像个狐狸。 CC-BY 2.0 (France) Attribution: tatoeba.org #2160739 (FeuDRenais) & #2144016 (ydcok) +This happens all the time. 這是常有的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2665019 (Hybrid) & #1170461 (egg0073) +This is a present for you. 這是給你的禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #55745 (CK) & #871163 (Martha) +This is atrocious weather. 惡劣的天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #7241290 (CM) & #910241 (Martha) +This is just a hypothesis. 这只是个假设。 CC-BY 2.0 (France) Attribution: tatoeba.org #2110836 (CM) & #1316987 (vicch) +This is my younger sister. 这是我的妹妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #3378980 (boosure) & #3365858 (hzy980512) +This is smaller than that. 这个比那个更小。 CC-BY 2.0 (France) Attribution: tatoeba.org #55961 (CK) & #1372487 (sadhen) +This is the flag of Japan. 这是日本国旗。 CC-BY 2.0 (France) Attribution: tatoeba.org #55473 (CK) & #8792848 (crescat) +This isn't what I ordered. 這不是我點的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #55508 (CK) & #836381 (Martha) +This job pays pretty well. 这工作报酬很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #5436585 (CK) & #5555326 (verdastelo9604) +This old house is haunted. 这个老房子闹鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5568129 (Hybrid) & #5568462 (Lunar) +This time, it's different. 這次不一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #7264964 (Hybrid) & #6568343 (verdastelo9604) +This time, it's different. 这一次不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #7264964 (Hybrid) & #7771952 (jiangche) +This wasn't cheap, was it? 這不便宜, 是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55814 (CK) & #793292 (Martha) +This whisky is too strong. 这种威士忌太烈了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61318 (eastasiastudent) & #718397 (Yashanti) +Throw the ball back to me. 把球丟還給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #33627 (CK) & #798058 (Martha) +Tickets are available now. 现在有票。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494155 (CK) & #5554545 (Alieen) +To master English is hard. 精通英語是困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #26218 (CM) & #826195 (Martha) +Tom abstained from voting. 汤姆投票弃权。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027247 (CK) & #4267288 (notabene) +Tom always makes me laugh. 湯姆總是讓我笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644486 (CK) & #6073911 (verdastelo9604) +Tom and I are almost done. 湯姆和我要做完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271709 (CK) & #6923180 (verdastelo9604) +Tom and Mary were smiling. 汤姆和玛丽正微笑着。 CC-BY 2.0 (France) Attribution: tatoeba.org #8385786 (CK) & #8969805 (WilsonWong) +Tom asked a few questions. 湯姆問了幾個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955913 (CK) & #6633870 (verdastelo9604) +Tom ate only one sandwich. Tom吃了唯一一个三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #3154758 (CK) & #4845093 (pig8322) +Tom bought a dozen donuts. 汤姆买了一打甜甜圈。 CC-BY 2.0 (France) Attribution: tatoeba.org #5608154 (CK) & #8658803 (slo_oth) +Tom bought a mobile phone. 汤姆买了个手机。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821530 (CK) & #5945161 (verdastelo9604) +Tom bought a new notebook. 汤姆买了新笔记本。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821989 (CK) & #5637369 (verdastelo9604) +Tom bought a plane ticket. 湯姆買了張機票。 CC-BY 2.0 (France) Attribution: tatoeba.org #5745997 (CM) & #6109353 (verdastelo9604) +Tom climbed over the wall. 湯姆爬上了墙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3042359 (CK) & #6138328 (verdastelo9604) +Tom cried for a long time. 湯姆哭了很長時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #4107578 (CK) & #6728898 (verdastelo9604) +Tom deserves to be blamed. 汤姆应当被责备。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026498 (CK) & #1433796 (sadhen) +Tom didn't agree to do it. 汤姆不同意做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026448 (CK) & #1416069 (sadhen) +Tom didn't get much sleep. 汤姆没怎么睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #6439709 (CK) & #8591219 (easononizuka) +Tom died three months ago. 湯姆三個月前死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544601 (CK) & #6325092 (verdastelo9604) +Tom doesn't have the time. 汤姆没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666154 (CK) & #7771676 (jiangche) +Tom doesn't want our help. 湯姆不想讓我們幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012524 (CK) & #6476306 (verdastelo9604) +Tom finally understood it. 汤姆最终明白了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498647 (CK) & #5863273 (verdastelo9604) +Tom found a job in Boston. 汤姆在波士顿找了份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3148335 (CK) & #4704311 (Yashanti) +Tom had to sell his house. 湯姆必須賣了他的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3923296 (CK) & #6621224 (verdastelo9604) +Tom has been very careful. 汤姆非常谨慎。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734396 (CK) & #5715138 (verdastelo9604) +Tom hasn't complained yet. 湯姆還沒有抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271352 (CK) & #8572024 (verdastelo9604) +Tom is a man of few wants. 汤姆是个寡欲的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025167 (CK) & #8685608 (crescat) +Tom is a very good person. 汤姆是个很好的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6776955 (shekitten) & #8463545 (gumblex) +Tom is a very good singer. 汤姆是个很好的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666124 (CK) & #5933785 (verdastelo9604) +Tom is afraid of everyone. 湯姆害怕每個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6271298 (CK) & #6535835 (verdastelo9604) +Tom is always daydreaming. Tom總是在做白日夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2853043 (CK) & #3718217 (egg0073) +Tom is anxious to see you. Tom非常渴望见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2986322 (CK) & #4845046 (pig8322) +Tom is being held captive. 汤姆被囚禁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723593 (CM) & #8794851 (slo_oth) +Tom is extremely romantic. 汤姆非常的浪漫。 CC-BY 2.0 (France) Attribution: tatoeba.org #4145086 (Hybrid) & #4147268 (sissima) +Tom is growing a mustache. 湯姆留著小鬍子。 CC-BY 2.0 (France) Attribution: tatoeba.org #37149 (CK) & #836404 (Martha) +Tom is here because of me. 因为我,汤姆在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #3618710 (CK) & #5631910 (verdastelo9604) +Tom is in the living room. 汤姆在起居室里。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410703 (CK) & #7767743 (jiangche) +Tom is lonely and unhappy. 汤姆又孤单又不幸。 CC-BY 2.0 (France) Attribution: tatoeba.org #3403500 (CK) & #8696343 (crescat) +Tom is never going to cry. 汤姆永远不会哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #7117095 (CM) & #8739621 (slo_oth) +Tom is not a friendly guy. 汤姆不是个友好的家伙。 CC-BY 2.0 (France) Attribution: tatoeba.org #5615911 (CK) & #5865523 (verdastelo9604) +Tom is out of your league. 汤姆不在你的联盟里。 CC-BY 2.0 (France) Attribution: tatoeba.org #5616891 (CK) & #5637329 (verdastelo9604) +Tom isn't a very nice guy. 湯姆不是個多好的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6033344 (CK) & #6583889 (verdastelo9604) +Tom isn't watching TV now. 湯姆現在沒在電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #37142 (CK) & #838644 (Martha) +Tom joined the discussion. 汤姆参加了讨论。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497350 (CK) & #5630408 (verdastelo9604) +Tom knows we aren't happy. 湯姆知道我們不高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544567 (CK) & #6447551 (verdastelo9604) +Tom laughed for no reason. 湯姆無故地笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183737 (CK) & #6923217 (verdastelo9604) +Tom likes science fiction. 汤姆喜欢科幻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3478121 (CK) & #5640729 (verdastelo9604) +Tom may have left already. 汤姆可能已经走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5553963 (CK) & #5568482 (Lunar) +Tom might be a vegetarian. 湯姆可能是素食者。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734739 (CK) & #6151294 (verdastelo9604) +Tom never turned up again. 湯姆沒有再出現。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725564 (CM) & #6057852 (verdastelo9604) +Tom no longer trusts Mary. 湯姆不再相信瑪麗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3956088 (CK) & #6938387 (verdastelo9604) +Tom often walks to school. 汤姆经常步行去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #3409395 (CK) & #6093311 (verdastelo9604) +Tom or somebody said that. 汤姆或某人说了那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644349 (CK) & #5845584 (verdastelo9604) +Tom plays chess very well. 汤姆下棋下得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5553959 (CK) & #5568484 (Lunar) +Tom plays the violin well. 汤姆拉小提琴拉得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5553957 (CK) & #5568486 (Lunar) +Tom promised to try again. 湯姆答應再試一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #5112821 (CK) & #6635871 (verdastelo9604) +Tom really needs help now. 湯姆現在真的需要幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #3444749 (CK) & #6150039 (verdastelo9604) +Tom said it was a diamond. 汤姆说它是钻石。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644335 (CK) & #5942071 (verdastelo9604) +Tom seems to be easygoing. 湯姆看來隨和。 CC-BY 2.0 (France) Attribution: tatoeba.org #3486338 (CK) & #6109288 (verdastelo9604) +Tom showed us his new car. 湯姆給我們看他的新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016773 (CK) & #6098449 (verdastelo9604) +Tom typed in the password. 湯姆輸入密碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867820 (CK) & #6199275 (verdastelo9604) +Tom wanted something else. 湯姆想要別的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5834900 (CK) & #6058539 (verdastelo9604) +Tom wanted to say goodbye. 汤姆想说声再见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012529 (CK) & #5091030 (mirrorvan) +Tom was at school all day. 汤姆一整天都在学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #5113430 (CK) & #8924833 (crescat) +Tom wears a hat every day. Tom每天都戴帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1974835 (CK) & #4263852 (notabene) +Tom will follow my advice. 汤姆会听从我的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #5553248 (CK) & #5558575 (verdastelo9604) +Tom won't know what to do. 湯姆不會知道要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544516 (CK) & #6635904 (verdastelo9604) +Tom would like to see you. 汤姆想见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544513 (CK) & #9007524 (jacintoo) +Tom wrote postcards to us. Tom寫明信片給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #6772405 (CK) & #4504390 (egg0073) +Tom's car has been stolen. 汤姆的汽车被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761130 (billt_estates) & #2440758 (fenfang557) +Tom's got nothing to hide. 汤姆没有什么可隐藏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3286860 (CK) & #5911621 (verdastelo9604) +Tom's hair was disheveled. 湯姆頭發蓬亂。 CC-BY 2.0 (France) Attribution: tatoeba.org #5744848 (CM) & #6098451 (verdastelo9604) +Tom, you've got to get up. 湯姆,你必須起床了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544506 (CK) & #6534797 (verdastelo9604) +Training will be provided. 会有训练。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501576 (CK) & #5670733 (verdastelo9604) +Trim the fat off the meat. 切除這塊肉的脂肪。 CC-BY 2.0 (France) Attribution: tatoeba.org #280999 (CK) & #798271 (Martha) +Trouble began immediately. 麻烦说来就来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496001 (CK) & #5650410 (verdastelo9604) +True love never grows old. 真愛不會變老。 CC-BY 2.0 (France) Attribution: tatoeba.org #3387163 (CK) & #6073871 (verdastelo9604) +Turn on the light, please. 麻煩開燈一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #38817 (CK) & #793267 (Martha) +Turn on the light, please. 請開燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #38817 (CK) & #798427 (Martha) +Turn on the radio, please. 請打開收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #858579 (piksea) & #844592 (Martha) +Turn on the radio, please. 请打开收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #858579 (piksea) & #2032173 (ydcok) +Turn on the radio, please. 请将收音机打开。 CC-BY 2.0 (France) Attribution: tatoeba.org #858579 (piksea) & #2032174 (ydcok) +Turn the key to the right. 往右邊轉動鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #239404 (CK) & #798061 (Martha) +Waiter, I'd like to order. 服务生,我要点菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #65663 (CK) & #333237 (fucongcong) +We all felt sorry for Tom. 我們都為Tom感到遺憾。 CC-BY 2.0 (France) Attribution: tatoeba.org #3539246 (Hybrid) & #5496244 (egg0073) +We all miss you very much. 我们都非常想你。 CC-BY 2.0 (France) Attribution: tatoeba.org #18054 (CK) & #335821 (fucongcong) +We aren't afraid of death. 我们不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #801774 (CM) & #802840 (fucongcong) +We ate breakfast at seven. 我们7点吃了早饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #247842 (CK) & #333531 (fucongcong) +We both know why I'm here. 我們都知道我為甚麼在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3313024 (CK) & #6673098 (verdastelo9604) +We can't let them do that. 我们不能让他们那么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312782 (CK) & #5845598 (verdastelo9604) +We consider it a blessing. 我们把它当作恩惠。 CC-BY 2.0 (France) Attribution: tatoeba.org #5739200 (CM) & #5739294 (verdastelo9604) +We could do something big. 我们能做点大事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5739199 (CM) & #5739295 (verdastelo9604) +We don't do it very often. 我们不常做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5462948 (CK) & #5794111 (verdastelo9604) +We don't have any secrets. 我們沒有秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893886 (CK) & #6065381 (verdastelo9604) +We had a chat for a while. 我們聊了一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #248003 (CK) & #801914 (Martha) +We had a lot of furniture. 我們有很多家具。 CC-BY 2.0 (France) Attribution: tatoeba.org #24246 (CK) & #796068 (Martha) +We had a party last night. 我們昨晚有一個聚會。 CC-BY 2.0 (France) Attribution: tatoeba.org #263044 (CK) & #796063 (Martha) +We have a big supermarket. 我們有一個大超市。 CC-BY 2.0 (France) Attribution: tatoeba.org #275490 (CK) & #842284 (Martha) +We have nothing in common. 我們沒有任何共同之處。 CC-BY 2.0 (France) Attribution: tatoeba.org #321998 (CK) & #842450 (Martha) +We have to obey the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #1417115 (CK) & #334729 (fucongcong) +We have to pull the weeds. 我們必須拔除雜草。 CC-BY 2.0 (France) Attribution: tatoeba.org #408289 (CK) & #874730 (Martha) +We have to think about it. 我們必須考慮它。 CC-BY 2.0 (France) Attribution: tatoeba.org #5464000 (CK) & #6098471 (verdastelo9604) +We made friends with them. 我們與他們交朋友了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249246 (CK) & #842431 (Martha) +We may be late for school. 我們上學可能會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #262943 (CK) & #793899 (Martha) +We must observe the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #20225 (CK) & #334729 (fucongcong) +We need competent leaders. 我们需要称职的领导人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500544 (CK) & #8792037 (slo_oth) +We needed to learn French. 我們需要學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #7976619 (CK) & #8767458 (xjjAstrus) +We saw monkeys at the zoo. 我們在動物園裡看到了猴子。 CC-BY 2.0 (France) Attribution: tatoeba.org #402363 (CK) & #873216 (Martha) +We should call the doctor. 我們應該去請醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #632493 (CK) & #796041 (Martha) +We should call the police. 我們應該叫警察來。 CC-BY 2.0 (France) Attribution: tatoeba.org #632491 (CK) & #796042 (Martha) +We should call the police. 我们该报警。 CC-BY 2.0 (France) Attribution: tatoeba.org #632491 (CK) & #796691 (fucongcong) +We should cancel the hike. 我們應該取消這次遠足。 CC-BY 2.0 (France) Attribution: tatoeba.org #632558 (CK) & #795227 (Martha) +We suspected him of lying. 我们怀疑他说谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249240 (CK) & #8656963 (crescat) +We swam until it got dark. 我們游泳到天黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953804 (CK) & #6089754 (verdastelo9604) +We think that he's honest. 我們認為他誠實。 CC-BY 2.0 (France) Attribution: tatoeba.org #1458771 (CK) & #6568345 (verdastelo9604) +We usually walk to school. 我们通常步行去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #263265 (CK) & #336653 (fucongcong) +We want to know the facts. 我们想知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #263095 (CK) & #678180 (Martha) +We were caught in a storm. 我们被暴风雨袭击了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22638 (CK) & #335879 (fucongcong) +We'll die sooner or later. 我們早晚要死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1501370 (CK) & #6903879 (verdastelo9604) +We'll save a seat for you. 我们会给你留个位置。 CC-BY 2.0 (France) Attribution: tatoeba.org #3241661 (CK) & #5931761 (verdastelo9604) +We're next-door neighbors. 我们是隔着墙的邻居。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713335 (CK) & #5933770 (verdastelo9604) +We're not as young as Tom. 我们不再像汤姆那样年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2940710 (AlanF_US) & #3783362 (Debbie_Linder) +We've got another problem. 我們又遇上問題了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663469 (CK) & #6671778 (verdastelo9604) +We've only got one chance. 我们只有一次机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1107960 (Scott) & #8511511 (gumblex) +Were you expecting to win? 你打算赢吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4902860 (CK) & #5660530 (verdastelo9604) +Were you tired last night? 昨晚你累了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69374 (CK) & #5660044 (xjjAstrus) +What Tom said wasn't true. 湯姆說的不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733585 (CK) & #6119461 (verdastelo9604) +What book are you reading? 你在读哪本书? CC-BY 2.0 (France) Attribution: tatoeba.org #4757678 (garborg) & #4757668 (ryanwoo) +What country are you from? 你是从哪个国家来的? CC-BY 2.0 (France) Attribution: tatoeba.org #679856 (ulyssemc1) & #75 (fucongcong) +What did you open it with? 你用什么打开的? CC-BY 2.0 (France) Attribution: tatoeba.org #16553 (CK) & #471198 (fucongcong) +What do you do on Sundays? 你星期天都做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #281844 (CK) & #870100 (Martha) +What do you think of that? 你認為如何? CC-BY 2.0 (France) Attribution: tatoeba.org #464556 (lukaszpp) & #735175 (Martha) +What do you want me to do? 你要我做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #25106 (CK) & #903465 (Martha) +What does this key unlock? 这钥匙能打开什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2049701 (CK) & #4844739 (sadhen) +What happened in the park? 公園裡發生了甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3129496 (CK) & #6091803 (verdastelo9604) +What is your phone number? 你电话号码是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #687372 (lukaszpp) & #7773123 (jiangche) +What steps should we take? 我们应该走出什么样的步伐。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834930 (CK) & #4844752 (pig8322) +What symptoms do you have? 你有什麼症狀? CC-BY 2.0 (France) Attribution: tatoeba.org #36602 (CK) & #844453 (Martha) +What time are you leaving? 你什么时候走? CC-BY 2.0 (France) Attribution: tatoeba.org #24574 (CK) & #6884329 (maggiesq) +What time is it in Boston? 波士顿现在几点? CC-BY 2.0 (France) Attribution: tatoeba.org #2882527 (CK) & #8936512 (crescat) +What would you say to Tom? 你要对汤姆说些什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2869269 (CK) & #3783084 (Debbie_Linder) +What you said is not true. 你说的不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70697 (CK) & #1428141 (sadhen) +What's Tom so angry about? 湯姆為了甚麼生氣? CC-BY 2.0 (France) Attribution: tatoeba.org #2713330 (CK) & #6630023 (verdastelo9604) +What's become of your dog? 你的狗怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #17244 (CK) & #872216 (Martha) +What's for dinner tonight? 今天晚饭吃什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4704216 (CK) & #5100130 (mirrorvan) +What's in the living room? 客廳裏有什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #7813916 (CK) & #6120178 (xjjAstrus) +What's the Wi-Fi password? Wifi的密碼是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #6063929 (mailohilohi) & #6158453 (xjjAstrus) +What's wrong with my legs? 我的腿有什么毛病? CC-BY 2.0 (France) Attribution: tatoeba.org #5738493 (CM) & #5967333 (verdastelo9604) +What's wrong with my plan? 我的計畫有問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3821477 (CK) & #6111832 (verdastelo9604) +When can we eat, I wonder. 我不知道我們什麼時候可以吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #410791 (CK) & #874520 (Martha) +When did it begin to rain? 什么时候开始下雨的? CC-BY 2.0 (France) Attribution: tatoeba.org #26712 (CK) & #390447 (fucongcong) +When did you last see Tom? 你最后一次看到汤姆是什么时候? CC-BY 2.0 (France) Attribution: tatoeba.org #1023762 (CK) & #7771890 (jiangche) +When does the movie start? 電影什麼時候開始? CC-BY 2.0 (France) Attribution: tatoeba.org #26457 (CK) & #918096 (Martha) +When does the movie start? 电影什么时间开始? CC-BY 2.0 (France) Attribution: tatoeba.org #26457 (CK) & #5097878 (mirrorvan) +Where can you get tickets? 在哪里可以买到车票? CC-BY 2.0 (France) Attribution: tatoeba.org #2403395 (FeuDRenais) & #2394804 (fenfang557) +Where does she want to go? 她想去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #776135 (BraveSentry) & #776996 (Martha) +Where were you last night? 昨天晚上你在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #244462 (CK) & #6471025 (xjjAstrus) +Which way is Central Park? 中央公園在哪個方向? CC-BY 2.0 (France) Attribution: tatoeba.org #51267 (CK) & #836330 (Martha) +Who buys this type of art? 谁买这种艺术品? CC-BY 2.0 (France) Attribution: tatoeba.org #2152 (CM) & #503259 (fucongcong) +Who were you talking with? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #40389 (CK) & #7771910 (jiangche) +Who's your favorite actor? 你最喜歡的演員是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #240693 (CK) & #6120154 (xjjAstrus) +Why are you guys so angry? 你們為什麼這麼生氣? CC-BY 2.0 (France) Attribution: tatoeba.org #826487 (odiernod) & #827569 (Martha) +Why are you so mean to me? 你为什么对我这么小气? CC-BY 2.0 (France) Attribution: tatoeba.org #3822538 (CK) & #5715195 (verdastelo9604) +Why does Tom call me Mary? 为什么汤姆叫我玛丽? CC-BY 2.0 (France) Attribution: tatoeba.org #5552902 (CK) & #5637351 (verdastelo9604) +Why don't you go to sleep? 你怎么不睡觉呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2892943 (CK) & #1746056 (sadhen) +Why don't you talk to him? 你為甚麼不跟他講? CC-BY 2.0 (France) Attribution: tatoeba.org #2214356 (Hybrid) & #6058630 (verdastelo9604) +Why should I go to school? 为什么我应该去上学? CC-BY 2.0 (France) Attribution: tatoeba.org #1850581 (jinpt) & #2431745 (fenfang557) +Why should you think that? 为什么你对于这个有这样的想法? CC-BY 2.0 (France) Attribution: tatoeba.org #4834915 (CK) & #4844817 (pig8322) +Will six o'clock suit you? 六點鐘你方便嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #72439 (CK) & #778006 (Martha) +Will six o'clock suit you? 六点您行吗? CC-BY 2.0 (France) Attribution: tatoeba.org #72439 (CK) & #794037 (fucongcong) +Will you be here tomorrow? 你明天在这里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1926411 (dexique) & #5978356 (verdastelo9604) +Will you pass me the salt? 請你把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25730 (CK) & #866063 (Martha) +Wine helps with digestion. 葡萄酒幫助消化。 CC-BY 2.0 (France) Attribution: tatoeba.org #4091901 (andymakespasta) & #4071835 (egg0073) +Would you like some salad? 你要來點兒沙拉嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54002 (CK) & #727952 (Martha) +Write on every other line. 每隔一行寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #27794 (CK) & #846020 (Martha) +Yesterday was my birthday. 昨天是我的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #244539 (CK) & #793308 (Martha) +You and Tom must be happy. 你和湯姆一定很高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044633 (CK) & #6673108 (verdastelo9604) +You are selling him short. 你別小看了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #15799 (CK) & #795334 (Martha) +You are tired, aren't you? 你累了,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #9601 (Swift) & #333191 (fucongcong) +You can no longer hurt me. 你不再能伤害到我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2954428 (CK) & #4972638 (wzhd) +You can use my dictionary. 你可以用我的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #984752 (Andoromeda) & #1227100 (tsayng) +You didn't write anything. 你甚麼也沒寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1513128 (CM) & #6148999 (verdastelo9604) +You don't have to help me. 你不用帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266050 (CK) & #8463637 (gumblex) +You don't need to call me. 你不必打电话给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #611769 (CK) & #3629987 (suitchic) +You don't need to do this. 你不需要做这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3358346 (CK) & #5574536 (verdastelo9604) +You don't need to help me. 你不用帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #8456943 (Luiaard) & #8463637 (gumblex) +You drink too much coffee. 你咖啡喝得太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #70123 (CK) & #332479 (fucongcong) +You had better go at once. 你最好馬上走。 CC-BY 2.0 (France) Attribution: tatoeba.org #52186 (CK) & #872439 (Martha) +You have a way with women. 你对女人有一套。 CC-BY 2.0 (France) Attribution: tatoeba.org #15995 (Swift) & #332906 (fucongcong) +You know that's not right. 你知道不是那样的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2563725 (FeuDRenais) & #4262127 (notabene) +You know that's your duty. 你知道那是你的责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #7193920 (CK) & #5663516 (verdastelo9604) +You may use my dictionary. 你可以用我的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #69312 (CK) & #1227100 (tsayng) +You must control yourself. 你必須控制自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #16061 (CK) & #793223 (Martha) +You must not eat too much. 你不该吃太多。 CC-BY 2.0 (France) Attribution: tatoeba.org #69199 (CK) & #336586 (fucongcong) +You must think I'm stupid. 你肯定认为我傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #3178299 (CK) & #5630444 (verdastelo9604) +You should speak with Tom. 你應該和Tom說。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573317 (n1ls) & #5500544 (egg0073) +You should tell the truth. 你该把事实说出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #269582 (CK) & #787287 (fucongcong) +You swim better than I do. 你游泳游得比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5618183 (adamtrousers) & #1749755 (sadhen) +You understand, don't you? 你明白,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433503 (CK) & #834317 (Martha) +You were treated unfairly. 你被不公平地對待。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502679 (CK) & #4737566 (egg0073) +You'd better go in person. 你最好親自去。 CC-BY 2.0 (France) Attribution: tatoeba.org #237716 (CK) & #845489 (Martha) +You'd better not go today. 你今天最好不要去。 CC-BY 2.0 (France) Attribution: tatoeba.org #242839 (CK) & #844472 (Martha) +You'd better take it easy. 你最好放松。 CC-BY 2.0 (France) Attribution: tatoeba.org #3349517 (CK) & #5555436 (verdastelo9604) +You'll succeed if you try. 如果你尝试的话,你会成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #30253 (CK) & #782245 (fucongcong) +You'll understand someday. 你有一天會明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644167 (CK) & #6086841 (verdastelo9604) +You're German, aren't you? 你是德国人,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1132151 (CM) & #8692459 (slo_oth) +You're not as smart as me. 你没有我聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #3500612 (Hybrid) & #5918305 (verdastelo9604) +You're not even listening. 你就没在听。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356370 (CK) & #9178037 (xiaohong) +You're on the right track. 你的想法是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17344 (CK) & #838577 (Martha) +You're on the right track. 你在正確的軌道上。 CC-BY 2.0 (France) Attribution: tatoeba.org #17344 (CK) & #838578 (Martha) +You're too drunk to drive. 你酒喝得太醉了不能開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #26614 (CK) & #844571 (Martha) +You've arrived very early. 你來得很早。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916155 (CK) & #6057862 (verdastelo9604) +You've done a perfect job. 你做了一项完美的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #16230 (CK) & #1992655 (sadhen) +You've got a great memory. 你的記憶力很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3357809 (CK) & #3148828 (cienias) +Your English is improving. 你的英語正在進步。 CC-BY 2.0 (France) Attribution: tatoeba.org #17308 (CK) & #793236 (Martha) +Your letter made me happy. 你的來信使我快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #17074 (CK) & #840655 (Martha) +A lot of people came today. 今天來了很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #9203466 (LanguageExpert) & #9203446 (xjjAstrus) +After a storm comes a calm. 暴風過後是寧靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #21263 (CK) & #806235 (Martha) +After a storm comes a calm. 否極泰來。 CC-BY 2.0 (France) Attribution: tatoeba.org #21263 (CK) & #806236 (Martha) +All at once, I heard a cry. 突然,我听到了一声喊叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #280650 (CM) & #2004700 (sadhen) +All of the dogs were alive. 所有狗都活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #569619 (CK) & #7772562 (jiangche) +Almost no one believes her. 几乎没人相信她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137270 (soj4l) & #343386 (fucongcong) +Always be true to yourself. 永遠要對自己誠實。 CC-BY 2.0 (France) Attribution: tatoeba.org #66075 (CM) & #778480 (Martha) +An apple sits on the table. 桌上有个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #896154 (pauldhunt) & #334725 (fucongcong) +Animals are afraid of fire. 动物怕火。 CC-BY 2.0 (France) Attribution: tatoeba.org #280244 (CK) & #512178 (fucongcong) +Anybody can make a mistake. 谁都会犯错。 CC-BY 2.0 (France) Attribution: tatoeba.org #40401 (CK) & #512819 (fucongcong) +Are there problems at home? 在家裡有問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2663468 (CK) & #6635883 (verdastelo9604) +Are you able to play organ? 你能演奏管风琴吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4841310 (sicerabibax) & #4844748 (sadhen) +Are you feeling better now? 你觉得好些了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4014133 (CK) & #8851376 (crescat) +Are you going out tomorrow? 你明天出去吗? CC-BY 2.0 (France) Attribution: tatoeba.org #386760 (Mouseneb) & #335715 (fucongcong) +Are you going to come back? 你要回來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3096313 (CK) & #6086867 (verdastelo9604) +Are you going to sing here? 你们要在这里唱歌吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16718 (CK) & #1878272 (sadhen) +Are you sure of your facts? 你確定你的資料屬實嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16057 (CK) & #836307 (Martha) +Banks open at nine o'clock. 银行九点开门。 CC-BY 2.0 (France) Attribution: tatoeba.org #18433 (CK) & #1878287 (sadhen) +Banks open at nine o'clock. 銀行九點開門 CC-BY 2.0 (France) Attribution: tatoeba.org #18433 (CK) & #6842377 (hanksudo) +Basketball is a lot of fun. 篮球可真是有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #35409 (CK) & #6020854 (verdastelo9604) +Best wishes from all of us. 我们所有人都祝福你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2819986 (patgfisher) & #2819988 (CLARET) +Boston is a wonderful city. 波士顿是一座非常好的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644149 (CK) & #5096833 (mirrorvan) +Boys, don't make any noise. 男孩們,不要製造任何噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #17676 (CK) & #833002 (Martha) +Bring me a bucket of water. 給我一桶水。 CC-BY 2.0 (France) Attribution: tatoeba.org #35475 (CK) & #842441 (Martha) +Bring your student ID card. 帶上你的學生卡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573336 (n1ls) & #5451949 (xjjAstrus) +Can I see the menu, please? 麻煩給我菜單。 CC-BY 2.0 (France) Attribution: tatoeba.org #2192189 (acbarbosa) & #2256417 (cienias) +Can she endure a long trip? 她能忍受長途旅行嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #388303 (CK) & #836424 (Martha) +Can you give me a discount? 能给我打个折么? CC-BY 2.0 (France) Attribution: tatoeba.org #31283 (CK) & #1468433 (sadhen) +Can you give me an example? 你可以给我举个例子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #490674 (darinmex) & #8789261 (crescat) +Can you give me some money? 你能給我一些錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33571 (CK) & #836295 (Martha) +Can you guess how old I am? 你能猜到我的年龄吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4755353 (garborg) & #333677 (fucongcong) +Can you help me find a job? 你能幫我找一個工作嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3114078 (CK) & #9210031 (xjjAstrus) +Can you lend me 10,000 yen? 你能借給我10000日元? CC-BY 2.0 (France) Attribution: tatoeba.org #27198 (CK) & #839578 (Martha) +Can you lend me some money? 你可以借我一些錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #249668 (CK) & #777016 (Martha) +Can you show me on the map? 可以在地图上展示给我看吗? CC-BY 2.0 (France) Attribution: tatoeba.org #434430 (lukaszpp) & #2393878 (fenfang557) +Can you solve this problem? 你能解決這個問題呢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #698942 (Zifre) & #823008 (Martha) +Can you wait about an hour? 能麻烦您等一个小时左右吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4352873 (CK) & #5100161 (mirrorvan) +Can you weigh this, please? 請你稱一下這個的重量好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58562 (CK) & #833237 (Martha) +Can't you lower your voice? 你不能小聲點說話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2761684 (sharptoothed) & #6936192 (verdastelo9604) +Carrots cost three dollars. 胡萝卜要三美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #1492902 (weihaiping) & #466170 (fucongcong) +Christmas is December 25th. 聖誕節是12月25日。 CC-BY 2.0 (France) Attribution: tatoeba.org #387470 (CK) & #825919 (Martha) +Come on over to have a try. 你過來試試看。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019884 (CM) & #1019887 (egg0073) +Could I see you in private? 我能私下見你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3821389 (CK) & #6131473 (verdastelo9604) +Could you lend me the book? 你能借我这本书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38877 (CK) & #1416176 (sadhen) +Could you show me this bag? 你能給我看看這個包嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60652 (CK) & #836361 (Martha) +Could you stop saying that? 你能不说那个了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4012877 (CK) & #5624866 (verdastelo9604) +Did he tell you what to do? 他告訴過你要做什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #295625 (CK) & #874684 (Martha) +Did she come here to relax? 她來這裡放鬆的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #388301 (CK) & #842491 (Martha) +Did you bring a hair dryer? 你有帶吹風機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #980596 (CK) & #2595828 (egg0073) +Did you bring a hair dryer? 你吹風機帶來了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #980596 (CK) & #2596235 (egg0073) +Did you buy a nice bicycle? 你買了輛好自行車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #66712 (CK) & #6146646 (verdastelo9604) +Did you go to see a doctor? 你去看过医生了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64765 (CK) & #397553 (fucongcong) +Do all of you speak French? 你們都講法語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1886120 (CK) & #6678459 (verdastelo9604) +Do what you think is right. 做你認為正確的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #17797 (CK) & #836366 (Martha) +Do you belong to any clubs? 您隶属哪家俱乐部吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16278 (CK) & #469377 (fucongcong) +Do you drink a lot of milk? 你喝很多牛奶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5906441 (jan_Keto) & #5906575 (verdastelo9604) +Do you have a mobile phone? 你有手機嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1489178 (weihaiping) & #5254704 (xjjAstrus) +Do you have any light beer? 你有任何淡啤酒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29824 (CK) & #838553 (Martha) +Do you have to make dinner? 你必须做晚饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68876 (CK) & #5433144 (liangh) +Do you know a good dentist? 你有認識好的牙醫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434598 (lukaszpp) & #816730 (Martha) +Do you know how to do that? 你知道怎么做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2951733 (CK) & #8463539 (gumblex) +Do you know how to do this? 你知道怎么做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2182814 (Hybrid) & #8463539 (gumblex) +Do you know much about art? 你對藝術知道得多嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3396467 (CK) & #6568333 (verdastelo9604) +Do you know what I'm doing? 你知道我在做什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7825929 (sharris123) & #5815590 (xjjAstrus) +Do you know where he lives? 你知道他住在哪裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69044 (CK) & #816880 (Martha) +Do you like Mozart's music? 你喜歡莫扎特的音樂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16379 (CK) & #833171 (Martha) +Do you like my new haircut? 你喜欢我的新发型吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1855262 (Spamster) & #8829581 (crescat) +Do you often hear from him? 你常常收到他的音訊嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283323 (CK) & #836259 (Martha) +Do you often travel abroad? 你经常去国外旅行吗? CC-BY 2.0 (France) Attribution: tatoeba.org #407577 (Scott) & #609877 (sarah) +Do you often travel abroad? 你经常出国吗? CC-BY 2.0 (France) Attribution: tatoeba.org #407577 (Scott) & #614913 (fucongcong) +Do you plan to go overseas? 你打算出國嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405494 (CK) & #842437 (Martha) +Do you think I'm beautiful? 你認為我美嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #953215 (CK) & #6560611 (verdastelo9604) +Do you think that was fair? 你认为那公平吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2891114 (CK) & #5965731 (verdastelo9604) +Do you weigh more than Tom? 你有比湯姆重嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4815476 (CK) & #4816191 (umidake) +Does Tom have a girlfriend? 湯姆有女朋友嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1040730 (CK) & #6845587 (verdastelo9604) +Does anybody have a pencil? 有谁有铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3030047 (CK) & #8933577 (crescat) +Doesn't that change things? 那能改变甚麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2269294 (CK) & #6673089 (verdastelo9604) +Doing that won't take long. 做起來不會很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916149 (CK) & #6077443 (verdastelo9604) +Doing this is a lot of fun. 这样做很有趣 CC-BY 2.0 (France) Attribution: tatoeba.org #7426430 (CK) & #8746405 (cxpadonis) +Don't beat around the bush. 不要拐彎抹角。 CC-BY 2.0 (France) Attribution: tatoeba.org #22322 (CK) & #834543 (Martha) +Don't stand in front of me. 不要站在我前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #7737778 (CK) & #8888273 (crescat) +Don't talk to me like this. 不要这样对我讲话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2288978 (CK) & #8463543 (gumblex) +Don't tell anyone our plan. 不要把我们的计划告诉任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #387549 (Mouseneb) & #332771 (fucongcong) +Don't try to intimidate me. 别想吓唬我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270541 (CK) & #5556135 (verdastelo9604) +Don't worry about the past. 不要担心过去。 CC-BY 2.0 (France) Attribution: tatoeba.org #23628 (CK) & #796829 (fucongcong) +Don't worry, I'll help you. 不要担心,我会帮你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7976633 (CK) & #8756291 (crescat) +Don't you want to know why? 你不想知道为什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2040820 (Asma) & #3035562 (vicch) +Don't you want to use mine? 你不想用我的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6071395 (CK) & #6089931 (verdastelo9604) +Eggs are sold by the dozen. 蛋是按打卖的。 CC-BY 2.0 (France) Attribution: tatoeba.org #325219 (CK) & #8897383 (crescat) +Electricity is very useful. 电很有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #279145 (CK) & #1397334 (mtdot) +English is not spoken here. 這裡的人不說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26295 (CK) & #811887 (Martha) +Father is watering flowers. 父亲在浇花。 CC-BY 2.0 (France) Attribution: tatoeba.org #319089 (CM) & #1691740 (sadhen) +Few students knew his name. 很少学生知道他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #287661 (CK) & #335367 (fucongcong) +Fill the bucket with water. 把水裝滿桶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #35471 (CK) & #834380 (Martha) +French is my mother tongue. 法语是我的母语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2043143 (nabeel_tahir) & #2043147 (sadhen) +Give me a light, would you? 借個火,好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #23858 (CK) & #836412 (Martha) +Hang your coat on the hook. 把你的外套掛在鉤子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #21245 (CK) & #838520 (Martha) +Have you ever been in jail? 你去过监狱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6898671 (CK) & #8686687 (crescat) +Have you ever seen Tom mad? 你有看见过汤姆生气的时候吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4724244 (CK) & #5097868 (mirrorvan) +He acknowledged his faults. 他得知了他的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #298523 (CK) & #5992377 (verdastelo9604) +He asked that we be silent. 他要求我們安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1441093 (CS) & #6149911 (verdastelo9604) +He ate a box of chocolates. 他吃了一盒巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #255036 (CK) & #844481 (Martha) +He began to look for a job. 他开始找工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #245450 (CK) & #334042 (fucongcong) +He brought his lunch today. 他今天带了午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #296586 (CK) & #5763000 (verdastelo9604) +He can read English easily. 他能轻松地读英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #294874 (CK) & #1397011 (mtdot) +He can't buy himself a car. 他不能买车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2052224 (chubbard) & #8692916 (crescat) +He caught hold of the rope. 他抓住了绳子。 CC-BY 2.0 (France) Attribution: tatoeba.org #293362 (CK) & #510886 (fucongcong) +He comes here twice a week. 他一周来这儿两次。 CC-BY 2.0 (France) Attribution: tatoeba.org #2698873 (WestofEden) & #444688 (fucongcong) +He confessed to the murder. 他供认了杀人的罪行。 CC-BY 2.0 (France) Attribution: tatoeba.org #2160742 (FeuDRenais) & #2144014 (ydcok) +He decided to quit smoking. 他決定戒菸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #291665 (CK) & #793891 (Martha) +He didn't mean to hurt you. 他不是故意要傷害你。 CC-BY 2.0 (France) Attribution: tatoeba.org #284773 (CK) & #836168 (Martha) +He even called me an idiot. 他甚至叫你傻瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487325 (fengli) & #768216 (Martha) +He even called me an idiot. 他甚至骂我傻瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487325 (fengli) & #1490484 (sadhen) +He got up at five as usual. 他像往常一樣五點鐘起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #289062 (CK) & #879195 (Martha) +He had a smile on his face. 他面帶笑容。 CC-BY 2.0 (France) Attribution: tatoeba.org #928890 (CM) & #928892 (egg0073) +He had an accident at work. 他在工作中出了意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #297088 (CK) & #842481 (Martha) +He has an eye for antiques. 他对古董很有鉴赏力。 CC-BY 2.0 (France) Attribution: tatoeba.org #296454 (Eldad) & #1423371 (sadhen) +He has been to many places. 他去过很多地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #288718 (CK) & #5558523 (verdastelo9604) +He has no house to live in. 他没有房子住。 CC-BY 2.0 (France) Attribution: tatoeba.org #284840 (sacredceltic) & #334564 (fucongcong) +He has three older sisters. 他有三个姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #468061 (CK) & #469250 (fucongcong) +He has to repair the clock. 他必須修理這個時鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #543581 (CK) & #846169 (Martha) +He hates cleaning his room. 他讨厌打扫自己的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #303401 (CK) & #4789635 (400S) +He intruded on her privacy. 他侵犯了她的隐私。 CC-BY 2.0 (France) Attribution: tatoeba.org #302793 (CM) & #1780725 (sadhen) +He invited me to his house. 他邀请我去他家。 CC-BY 2.0 (France) Attribution: tatoeba.org #298100 (CK) & #490023 (fucongcong) +He is a good tennis player. 他是个网球高手。 CC-BY 2.0 (France) Attribution: tatoeba.org #291853 (CK) & #335077 (fucongcong) +He is a student at Harvard. 他是一個哈佛的學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #292358 (CK) & #846486 (Martha) +He is an aggressive person. 他是个咄咄逼人的的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #295953 (orcrist) & #787539 (fucongcong) +He is an expert at fishing. 他是个钓鱼专家。 CC-BY 2.0 (France) Attribution: tatoeba.org #291803 (CK) & #335088 (fucongcong) +He is careless about money. 他不關心錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #295534 (CK) & #6094903 (verdastelo9604) +He is driving at top speed. 他全速驾驶着。 CC-BY 2.0 (France) Attribution: tatoeba.org #412016 (Mouseneb) & #343282 (fucongcong) +He is studying at his desk. 他正在他的書桌旁讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #513531 (CK) & #848716 (Martha) +He isn't able to buy a car. 他不能买车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1054586 (CK) & #8692916 (crescat) +He left after he had lunch. 他吃过午餐就出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277605 (CK) & #8737024 (crescat) +He likes math, but I don't. 他喜欢数学,但我不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266419 (yifen238) & #478846 (biglion) +He looks like a clever boy. 他看起來像是個聰明的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #296027 (CK) & #778902 (Martha) +He may have left for Kyoto. 他可能已經離開京都了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295279 (CK) & #848451 (Martha) +He occasionally visited me. 他偶尔会来拜访我。 CC-BY 2.0 (France) Attribution: tatoeba.org #298392 (CK) & #2567430 (fenfang557) +He painted his bicycle red. 他把他的自行车刷成红色。 CC-BY 2.0 (France) Attribution: tatoeba.org #386691 (Mouseneb) & #333535 (fucongcong) +He plays baseball tomorrow. 他明天將打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #890501 (Scott) & #833814 (Martha) +He ran as fast as he could. 他跑得能有多快就有多快。 CC-BY 2.0 (France) Attribution: tatoeba.org #291831 (CK) & #335082 (fucongcong) +He said hello to the woman. 他向那位女士问好。 CC-BY 2.0 (France) Attribution: tatoeba.org #383529 (Mouseneb) & #333332 (fucongcong) +He said, "I'm from Canada." 他说:“我是加拿大来的。” CC-BY 2.0 (France) Attribution: tatoeba.org #288326 (CK) & #426419 (fucongcong) +He saw a dog near the door. 他在門附近看到了一隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #296065 (CK) & #887685 (Martha) +He sent me a birthday card. 他寄給我一張生日賀卡。 CC-BY 2.0 (France) Attribution: tatoeba.org #284002 (CK) & #848532 (Martha) +He shaved his mustache off. 他刮了他的胡子。 CC-BY 2.0 (France) Attribution: tatoeba.org #296263 (CK) & #408840 (fucongcong) +He studied English history. 他学了英国历史。 CC-BY 2.0 (France) Attribution: tatoeba.org #294067 (CK) & #446169 (fucongcong) +He studies Chinese as well. 他也学习汉语。 CC-BY 2.0 (France) Attribution: tatoeba.org #713205 (CM) & #713203 (Yashanti) +He told me to wash my face. 他叫我洗脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #20755 (CK) & #799250 (fucongcong) +He told me when to say yes. 他告诉我什么时候该说是。 CC-BY 2.0 (France) Attribution: tatoeba.org #289019 (CK) & #333538 (fucongcong) +He took us back in his car. 他开车送我们回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #297415 (CK) & #796801 (fucongcong) +He turned pale with fright. 他嚇得臉色發白。 CC-BY 2.0 (France) Attribution: tatoeba.org #533762 (CK) & #833081 (Martha) +He was almost hit by a car. 他差點被一輛汽車撞上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388647 (CK) & #881720 (Martha) +He was paid 10,000 dollars. 有人付给他10000美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #284534 (magnificentgoddess) & #5595147 (verdastelo9604) +He was seen to go upstairs. 有人看見他上樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #284077 (CM) & #848193 (Martha) +He's a high school student. 他是一名高中學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #521976 (CK) & #832968 (Martha) +He's much younger than Tom. 他比Tom年轻得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #292105 (CK) & #435380 (fucongcong) +He's staying at his aunt's. 他呆在他阿姨家。 CC-BY 2.0 (France) Attribution: tatoeba.org #432880 (aliene) & #336447 (fucongcong) +He's writing a long letter. 他写长信。 CC-BY 2.0 (France) Attribution: tatoeba.org #301632 (Barbiche0) & #1424270 (sadhen) +His lectures are very long. 他的講座很長。 CC-BY 2.0 (France) Attribution: tatoeba.org #466911 (CK) & #832992 (Martha) +His letter makes me uneasy. 他的来信让我不安。 CC-BY 2.0 (France) Attribution: tatoeba.org #286639 (Shiawase) & #1366057 (sadhen) +How about calling it a day? 今天就做到這裡如何? CC-BY 2.0 (France) Attribution: tatoeba.org #503840 (CK) & #846265 (Martha) +How could things get worse? 事情怎麼變糟的? CC-BY 2.0 (France) Attribution: tatoeba.org #4666051 (CK) & #6058611 (verdastelo9604) +How did you like the party? 你覺得這個派對如何? CC-BY 2.0 (France) Attribution: tatoeba.org #35645 (CK) & #846590 (Martha) +How did you make this soup? 这汤怎么做的? CC-BY 2.0 (France) Attribution: tatoeba.org #4187891 (CK) & #5100286 (mirrorvan) +How did your journey begin? 你的旅行是怎么开始的? CC-BY 2.0 (France) Attribution: tatoeba.org #5738384 (CM) & #6091724 (verdastelo9604) +How do you make your money? 你怎麼賺錢? CC-BY 2.0 (France) Attribution: tatoeba.org #389968 (blay_paul) & #6568344 (verdastelo9604) +How do you spell your name? 你怎麼拼你的名字的? CC-BY 2.0 (France) Attribution: tatoeba.org #63915 (CK) & #2654149 (tsayng) +How heavy is your suitcase? 您的行李箱有多重? CC-BY 2.0 (France) Attribution: tatoeba.org #2610048 (WestofEden) & #2243466 (cienias) +How is your business going? 你的生意进展如何? CC-BY 2.0 (France) Attribution: tatoeba.org #245351 (CM) & #1423321 (sadhen) +How many books do you have? 你有多少本書? CC-BY 2.0 (France) Attribution: tatoeba.org #16254 (CK) & #846426 (Martha) +How many people work there? 有多少人在那里工作? CC-BY 2.0 (France) Attribution: tatoeba.org #5068211 (CK) & #5068212 (FeAst) +How many plates do we have? 我們有多少個盤子? CC-BY 2.0 (France) Attribution: tatoeba.org #436163 (lukaszpp) & #9135863 (xjjAstrus) +How much is four times six? 6乘以4是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1410570 (Eldad) & #1738294 (sadhen) +How much is four times six? 6的4倍是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1410570 (Eldad) & #1738296 (sadhen) +How much is the commission? 手续费是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #266029 (CM) & #530713 (biglion) +How much money do you have? 你有多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #64597 (CK) & #846200 (Martha) +How much money do you need? 你需要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #2448653 (Felipe) & #5863242 (verdastelo9604) +How often do the buses run? 公共汽車隔多久一班? CC-BY 2.0 (France) Attribution: tatoeba.org #35307 (CK) & #848361 (Martha) +How often does the bus run? 公共汽车多久发车一次? CC-BY 2.0 (France) Attribution: tatoeba.org #8815038 (sundown) & #4263850 (notabene) +How old is your oldest son? 你的長子幾歲? CC-BY 2.0 (France) Attribution: tatoeba.org #467969 (CK) & #846368 (Martha) +I actually didn't say that. 我其實沒那麼說。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890093 (CK) & #6216628 (verdastelo9604) +I am an optimist by nature. 我天生是一個樂觀主義者。 CC-BY 2.0 (France) Attribution: tatoeba.org #258984 (CK) & #918033 (Martha) +I am an optimist by nature. 我生性樂觀。 CC-BY 2.0 (France) Attribution: tatoeba.org #258984 (CK) & #918035 (Martha) +I am happy to see you here. 我很高興在這裡看到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #62006 (CK) & #876938 (Martha) +I am interested in English. 我对英语感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #256211 (CK) & #797545 (fucongcong) +I am just going for a walk. 我只是去散散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #255022 (CK) & #919732 (Martha) +I am playing the piano now. 我現在正在彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #257470 (CK) & #918555 (Martha) +I am pleased with his work. 對於他的工作我很滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #260629 (CK) & #926808 (Martha) +I am staying with a friend. 我和一位朋友住在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #262047 (CK) & #917836 (Martha) +I arrived later than usual. 我比平常晚到。 CC-BY 2.0 (France) Attribution: tatoeba.org #66094 (CK) & #833003 (Martha) +I awoke to find it snowing. 當我醒來時,天正下著雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #323695 (Zifre) & #801443 (Martha) +I believe Tom will do that. 我相信汤姆会去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4666050 (CK) & #5624856 (verdastelo9604) +I belong to the drama club. 我參加戲劇社。 CC-BY 2.0 (France) Attribution: tatoeba.org #256281 (CK) & #918103 (Martha) +I came to Japan from China. 我從中國到日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #259442 (CK) & #761314 (Martha) +I can call Tom if you want. 如果你想要的话,我可以打电话给汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2300637 (CK) & #5091328 (mirrorvan) +I can read without glasses. 没眼镜我可以读。 CC-BY 2.0 (France) Attribution: tatoeba.org #256747 (CK) & #390479 (fucongcong) +I can't afford to buy that. 我买不起那个。 CC-BY 2.0 (France) Attribution: tatoeba.org #241241 (CK) & #334044 (fucongcong) +I can't eat this much food. 我不能吃这么多食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #3071772 (sharptoothed) & #5694503 (verdastelo9604) +I can't follow Tom's logic. 我跟不上汤姆的逻辑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2734280 (CK) & #8739482 (crescat) +I can't lend you any money. 我不能借你任何錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #64552 (CK) & #5350406 (egg0073) +I can't remember any of it. 我对这些都没有印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954763 (CK) & #6307287 (gumblex) +I cannot follow your logic. 我跟不上你的逻辑。 CC-BY 2.0 (France) Attribution: tatoeba.org #257124 (CM) & #4760161 (ryanwoo) +I caught a cold last month. 上個月我感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259049 (CK) & #834550 (Martha) +I caught up with them soon. 我很快就趕上了他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #248025 (CK) & #846447 (Martha) +I come from a large family. 我从一个大家庭来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2308004 (CK) & #5967289 (verdastelo9604) +I did everything by myself. 我全靠自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #2275815 (CK) & #5581751 (verdastelo9604) +I didn't meet anyone there. 我在那裡沒遇見任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #51023 (CK) & #834342 (Martha) +I didn't want to come here. 我不想來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012627 (CK) & #6682283 (verdastelo9604) +I don't belong to any club. 我不屬於任何社團。 CC-BY 2.0 (France) Attribution: tatoeba.org #255270 (CK) & #3158612 (cienias) +I don't care all that much. 我不那么在意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361129 (CK) & #5574747 (verdastelo9604) +I don't care what they say. 我不在乎他們說什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #72057 (CK) & #848527 (Martha) +I don't feel like studying. 我没有强烈的欲望去学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #320407 (CK) & #604910 (CLARET) +I don't have classes today. 我今天沒課。 CC-BY 2.0 (France) Attribution: tatoeba.org #242874 (CK) & #834810 (Martha) +I don't know any blind men. 我不认识任何一个盲人。 CC-BY 2.0 (France) Attribution: tatoeba.org #740788 (Swift) & #2620161 (fenfang557) +I don't know what is worse. 我不知道什么更糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2148 (al_ex_an_der) & #7774816 (jiangche) +I don't know what we'll do. 我不知道我们将会做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3562525 (CK) & #3662909 (yss123231) +I don't know what you mean. 我不懂你什么意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1408 (CK) & #1426499 (sadhen) +I don't like these remarks. 我不喜歡這番話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2330 (Plodder) & #769669 (Martha) +I don't like wearing socks. 我不喜歡穿襪子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7807351 (sharris123) & #6074191 (xjjAstrus) +I don't remember any of it. 我对这些都没有印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361393 (CK) & #6307287 (gumblex) +I don't remember your name. 我不记得你的名字了。 CC-BY 2.0 (France) Attribution: tatoeba.org #383640 (Dorenda) & #466283 (fucongcong) +I don't think she is happy. 我觉得她不开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #313574 (CK) & #8902608 (crescat) +I don't think you ought to. 我認為你不應該。 CC-BY 2.0 (France) Attribution: tatoeba.org #713284 (CM) & #713282 (egg0073) +I don't trust him any more. 我不再相信他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #818058 (Cindrogriza) & #818148 (Martha) +I don't want to live alone. 我不想獨自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #662603 (bluepie88) & #781678 (Martha) +I don't want to play cards. 我不想玩紙牌。 CC-BY 2.0 (France) Attribution: tatoeba.org #2012644 (CK) & #6047455 (verdastelo9604) +I enjoyed talking with him. 我和他谈得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #260243 (CK) & #1438465 (asosan) +I feel no sympathy for Tom. 我不同情湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5836402 (CK) & #6624663 (verdastelo9604) +I forgot what his name was. 我忘记他叫什么名字了。 CC-BY 2.0 (France) Attribution: tatoeba.org #451745 (FeuDRenais) & #446165 (fucongcong) +I found the test difficult. 我觉得这个测试很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #50233 (CK) & #373472 (fucongcong) +I generally agree with her. 我大致上同意她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308585 (CM) & #779033 (Martha) +I generally walk to school. 我通常走去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #254905 (CK) & #345930 (fucongcong) +I generally walk to school. 一般我步行去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #254905 (CK) & #481022 (biglion) +I got a good night's sleep. 我睡了个好觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #5215310 (CK) & #5613626 (verdastelo9604) +I got along with everybody. 我和大家相處。 CC-BY 2.0 (France) Attribution: tatoeba.org #321694 (CK) & #835362 (Martha) +I got her to clean my room. 我讓她清掃了我的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #261218 (CK) & #804551 (Martha) +I got her to clean my room. 我讓她把我的房間弄乾淨。 CC-BY 2.0 (France) Attribution: tatoeba.org #261218 (CK) & #804552 (Martha) +I got him to repair my car. 我讓他修理我的車子。 CC-BY 2.0 (France) Attribution: tatoeba.org #260420 (CK) & #804541 (Martha) +I grew up in a poor family. 我出身贫寒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2182447 (Hybrid) & #5613652 (verdastelo9604) +I had a good night's sleep. 我睡了一整夜的好觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #62994 (CK) & #7781500 (jiangche) +I had a long talk with her. 我和她有一段長談。 CC-BY 2.0 (France) Attribution: tatoeba.org #836575 (CM) & #836574 (egg0073) +I had a nice chat with her. 我和她聊得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #261109 (CK) & #796062 (Martha) +I had intended to go there. 我本來打算去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #321640 (CK) & #846190 (Martha) +I have a brother in Boston. 我有个在波士顿的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #5215297 (CK) & #5663442 (verdastelo9604) +I have a frog in my throat. 我的喉嚨裡有一隻青蛙。 CC-BY 2.0 (France) Attribution: tatoeba.org #5896818 (peterius) & #772026 (Martha) +I have a pair of red shoes. 我有一双红鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2672963 (CM) & #2672965 (sadhen) +I have already eaten lunch. 我已經吃過午餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31191 (CK) & #8388709 (wangchou) +I have more money than Tom. 我比汤姆有钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713309 (CK) & #5694555 (verdastelo9604) +I have no secrets from you. 我對你毫無隱瞞。 CC-BY 2.0 (France) Attribution: tatoeba.org #71100 (CK) & #848715 (Martha) +I have no time for reading. 我没时间阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #461148 (jeanne) & #334401 (fucongcong) +I have to go meet with Tom. 我必須去見湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360514 (CK) & #6535851 (verdastelo9604) +I have to go to the toilet. 我要去上廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #1421916 (CM) & #9096137 (xjjAstrus) +I have to go to the toilet. 我要去廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #1421916 (CM) & #9096139 (xjjAstrus) +I haven't seen you in ages. 我已經好久沒有見到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #417021 (CK) & #848975 (Martha) +I hear they're pretty good. 我听说他们挺好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360697 (CK) & #5611559 (verdastelo9604) +I heard her singing a song. 我聽到她唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #261035 (CK) & #848693 (Martha) +I hope he will wait for me. 我希望他會等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1265220 (yifen238) & #823004 (Martha) +I hope you will call again. 我希望你會再打一次電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #32559 (CK) & #884692 (Martha) +I knew this day was coming. 我知道這天要來。 CC-BY 2.0 (France) Attribution: tatoeba.org #2374817 (CK) & #6832184 (verdastelo9604) +I know that she is Spanish. 我知道她是西班牙人。 CC-BY 2.0 (France) Attribution: tatoeba.org #261005 (CK) & #710349 (fucongcong) +I know where he comes from. 我知道他来自哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #259987 (CK) & #1423327 (sadhen) +I know you think I'm crazy. 我知道你覺得我瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376602 (CK) & #8215675 (verdastelo9604) +I lost my way in the woods. 我在树林里迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258835 (CK) & #678189 (Martha) +I love going to the movies. 我喜歡看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #511906 (CK) & #848229 (Martha) +I love jokes about animals. 我爱听有关动物的笑话。 CC-BY 2.0 (France) Attribution: tatoeba.org #681259 (Source_VOA) & #5763007 (verdastelo9604) +I love passion fruit juice. 我愛百香果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2686397 (Joseph) & #5548513 (egg0073) +I love watching talk shows. 我愛看脫口秀。 CC-BY 2.0 (France) Attribution: tatoeba.org #5951527 (mailohilohi) & #6105299 (verdastelo9604) +I made a few modifications. 我做了点改动。 CC-BY 2.0 (France) Attribution: tatoeba.org #2380379 (CK) & #7772623 (jiangche) +I made him paint the house. 我讓他刷房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #260353 (CK) & #6150881 (verdastelo9604) +I met a Smith at the party. 我在聚会上见了史密斯。 CC-BY 2.0 (France) Attribution: tatoeba.org #254182 (CN) & #5911654 (verdastelo9604) +I need a new pair of shoes. 我需要一双新鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #660436 (CK) & #846735 (fucongcong) +I need to go to the toilet. 我要去上廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #2721204 (kieranjpball) & #9096137 (xjjAstrus) +I need to go to the toilet. 我要去廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #2721204 (kieranjpball) & #9096139 (xjjAstrus) +I often visit my relatives. 我常常访问我的亲戚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174962 (FeuDRenais) & #2174213 (sadhen) +I only spent three dollars. 我只花了三美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #534169 (CK) & #834728 (Martha) +I paid about fifty dollars. 我花了大約五十美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #502824 (CK) & #834645 (Martha) +I play the tenor saxophone. 我吹次中音薩克斯風。 CC-BY 2.0 (France) Attribution: tatoeba.org #814474 (Zifre) & #816927 (Martha) +I prefer apples to oranges. 比起橘子,我更喜欢苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #64776 (CK) & #4463424 (MirendaBABY) +I prefer red wine to white. 我喜歡紅葡萄酒勝過白葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #259919 (CK) & #795851 (Martha) +I prefer riding to walking. 我喜歡騎車勝過走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #320514 (CK) & #875042 (Martha) +I really like my coworkers. 我确实喜欢我的同事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1098282 (cntrational) & #1420617 (sadhen) +I ripped the envelope open. 我撕开了信封。 CC-BY 2.0 (France) Attribution: tatoeba.org #261580 (CK) & #8791849 (slo_oth) +I sat between Tom and John. 我坐在汤姆和约翰中间。 CC-BY 2.0 (France) Attribution: tatoeba.org #255279 (CK) & #792886 (fucongcong) +I saw him cross the street. 我看见他穿过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #260124 (CK) & #405046 (fucongcong) +I saw him playing baseball. 我看到他在打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #260150 (CK) & #1428127 (sadhen) +I see a flower on the desk. 我看见书桌上有朵花。 CC-BY 2.0 (France) Attribution: tatoeba.org #20559 (CK) & #333005 (fucongcong) +I seem to be unlucky today. 我今天看來很幸運。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850511 (CK) & #6624659 (verdastelo9604) +I should have left earlier. 我應該要早點出發的。 CC-BY 2.0 (France) Attribution: tatoeba.org #30410 (CK) & #898955 (kanaorange) +I still can't speak French. 我还是不会说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183479 (CK) & #5611585 (verdastelo9604) +I still haven't found work. 我還沒有找到工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5325350 (csmjj) & #766461 (Martha) +I studied around the clock. 我夜以繼日地讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #718360 (eastasiastudent) & #718359 (egg0073) +I support political reform. 我支持政治改革。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819964 (sharris123) & #5384769 (xjjAstrus) +I take my health seriously. 我重視自身的健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #257225 (CM) & #1239325 (tsayng) +I talked to Tom last night. 昨晚我和汤姆说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887700 (CK) & #5091326 (mirrorvan) +I think Tom is still alive. 我認為湯姆還活著。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408292 (CK) & #6152795 (verdastelo9604) +I think you're quite right. 我認為你說得很對。 CC-BY 2.0 (France) Attribution: tatoeba.org #273663 (CK) & #781426 (Martha) +I thought Tom had heard us. 我觉得汤姆听说过我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938887 (CK) & #5576789 (verdastelo9604) +I took a day off last week. 上週我休了一天的假。 CC-BY 2.0 (France) Attribution: tatoeba.org #272749 (CK) & #804538 (Martha) +I tried not to wake you up. 我设法不让你醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #5272857 (CK) & #5640708 (verdastelo9604) +I understand your feelings. 我明白你的感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396147 (CK) & #334576 (fucongcong) +I want a dozen cream puffs. 我要一打奶油泡芙。 CC-BY 2.0 (France) Attribution: tatoeba.org #53031 (CK) & #804844 (fucongcong) +I want a few empty glasses. 我要一些空的玻璃杯。 CC-BY 2.0 (France) Attribution: tatoeba.org #18302 (CK) & #1878284 (sadhen) +I want to have my own room. 我想要有我自己的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #258198 (CK) & #346070 (fucongcong) +I want to stay here longer. 我想在这里再待一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #253462 (CK) & #8686319 (crescat) +I want to write an article. 我想写篇文章。 CC-BY 2.0 (France) Attribution: tatoeba.org #1657749 (CK) & #6094908 (verdastelo9604) +I want you to take a break. 我想讓你歇歇。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033289 (CK) & #6065940 (verdastelo9604) +I wanted to see Tom's room. 我就想看看汤姆的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #8441019 (CK) & #8686671 (crescat) +I wanted to show it to you. 我想把它給你看。 CC-BY 2.0 (France) Attribution: tatoeba.org #17475 (CK) & #883036 (Martha) +I was a little bit nervous. 我有点紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #5259218 (CK) & #5911701 (verdastelo9604) +I was bitten by a mosquito. 我被蚊子叮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794027 (NatsuDonkey) & #4760169 (ryanwoo) +I was feeling blue all day. 我一整天都觉得很消沉。 CC-BY 2.0 (France) Attribution: tatoeba.org #73064 (CK) & #835562 (fucongcong) +I was in Boston last month. 我上個月在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3024230 (CK) & #6162279 (verdastelo9604) +I was in London last month. 上個月我在倫敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #259045 (CK) & #862691 (Martha) +I was sore for three weeks. 我难受三周了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5213812 (CK) & #5632408 (verdastelo9604) +I wasn't implying anything. 我沒有暗示甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3050642 (Hybrid) & #6534049 (verdastelo9604) +I went fishing last Monday. 上个周一我去钓鱼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252291 (CK) & #784092 (fucongcong) +I went to school in Boston. 我曾经在波士顿上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #5154783 (CK) & #6938002 (Cheng) +I will be a doctor someday. 我有朝一日会成为一名医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #253091 (CK) & #1394797 (mtdot) +I will be with you tonight. 今晚我將與你在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #257630 (CK) & #845496 (Martha) +I will do anything for you. 我會為你做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #17376 (CK) & #850388 (Martha) +I will never see him again. 我永遠不會再看到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #391056 (CK) & #850606 (Martha) +I will take you for a swim. 我會帶你去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #33501 (CK) & #881295 (Martha) +I wish I could go to Japan. 我非常希望能够去日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #1393 (CK) & #501369 (fucongcong) +I wish I could go to Japan. 要是能去日本就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1393 (CK) & #1867031 (yuzazaza) +I wish I could go with you. 我希望能跟你走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544357 (CK) & #4760089 (ryanwoo) +I wish I could talk to you. 我希望能与你谈话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544354 (CK) & #5670775 (verdastelo9604) +I wish I earned more money. 我希望我賺更多的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #30512 (CK) & #864264 (Martha) +I wish I knew where he was! 但願我知道他在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #285890 (CK) & #894021 (Martha) +I wish I were in Paris now. 但願我現在在巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #241537 (CK) & #894057 (Martha) +I wish we had won the game. 要是我們贏了這場比賽就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50510 (CK) & #892560 (Martha) +I wish we had won the game. 但願我們贏了這場比賽就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50510 (CK) & #892561 (Martha) +I won't stay here for long. 我不会在这里呆很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093726 (AlanF_US) & #5095181 (mirrorvan) +I work best under pressure. 我在壓力之下工作表現最好。 CC-BY 2.0 (France) Attribution: tatoeba.org #321897 (CK) & #834942 (Martha) +I'd be thrilled to do that. 我很乐意这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #8369520 (CK) & #8753720 (slo_oth) +I'd better do it right now. 我马上做比较好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544322 (CK) & #5900373 (verdastelo9604) +I'd like a receipt, please. 麻煩我要一張收據。 CC-BY 2.0 (France) Attribution: tatoeba.org #325901 (CK) & #835852 (Martha) +I'd like to be a guitarist. 我想要成为吉他手。 CC-BY 2.0 (France) Attribution: tatoeba.org #253371 (CK) & #335723 (fucongcong) +I'd like to get some sleep. 我想睡点觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936480 (CK) & #5863266 (verdastelo9604) +I'd like to go to the mall. 我想去商场。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936463 (CK) & #5556118 (verdastelo9604) +I'd rather do it by myself. 我更願意自己做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1012701 (DanaDescalza) & #6145400 (verdastelo9604) +I'll be able to assist you. 我能協助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544302 (CK) & #6086833 (verdastelo9604) +I'll be your first patient. 我將是你的第一個病人。 CC-BY 2.0 (France) Attribution: tatoeba.org #252863 (CM) & #818200 (Martha) +I'll give you a little tip. 我会给你些提示。 CC-BY 2.0 (France) Attribution: tatoeba.org #1129719 (CM) & #2625982 (fenfang557) +I'll give you this pendant. 我會給你這個墜飾。 CC-BY 2.0 (France) Attribution: tatoeba.org #17560 (CK) & #834877 (Martha) +I'll go back home with you. 我會跟你一起回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1388125 (CK) & #6150013 (verdastelo9604) +I'll open the window a bit. 我把窗户打开一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663363 (liwan1208) & #1659830 (vicch) +I'll phone you every night. 我每晚都給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438081 (CK) & #6826149 (verdastelo9604) +I'll reconsider the matter. 我會重新考慮此事。 CC-BY 2.0 (France) Attribution: tatoeba.org #43616 (CK) & #832826 (Martha) +I'll send a message to Tom. 我会给汤姆发信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544246 (CK) & #5945150 (verdastelo9604) +I'll stay at home tomorrow. 明天我会呆在家里。 CC-BY 2.0 (France) Attribution: tatoeba.org #386762 (Mouseneb) & #343905 (fucongcong) +I'm a citizen of the world. 我是世界公民。 CC-BY 2.0 (France) Attribution: tatoeba.org #1313351 (CM) & #2007054 (sadhen) +I'm a little bit concerned. 我有点担心。 CC-BY 2.0 (France) Attribution: tatoeba.org #7837605 (CK) & #8698964 (crescat) +I'm blind in the right eye. 我的右眼瞎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873137 (CK) & #919860 (Martha) +I'm breast-feeding my baby. 我餵我的孩子母乳。 CC-BY 2.0 (France) Attribution: tatoeba.org #320948 (CM) & #678947 (Martha) +I'm dying for a cold drink. 我迫切需要冷饮。 CC-BY 2.0 (France) Attribution: tatoeba.org #262251 (CK) & #1450467 (asosan) +I'm glad you guys are here. 我很高兴你们都在。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462513 (CK) & #8463574 (gumblex) +I'm listening to the radio. 我在聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #29749 (CK) & #835485 (Martha) +I'm looking for an old man. 我正在尋找一位老人。 CC-BY 2.0 (France) Attribution: tatoeba.org #253052 (CK) & #795798 (Martha) +I'm not afraid of anything. 我什么都不怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020951 (CK) & #3630209 (suitchic) +I'm not doing that anymore. 我不再做那事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6265962 (CK) & #8571941 (verdastelo9604) +I'm not guilty of anything. 我没有对任何事感到有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #3462172 (hantol01) & #5624907 (verdastelo9604) +I'm not used to spicy food. 我不習慣辛辣的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #51868 (CK) & #796006 (Martha) +I'm playing volleyball now. 我现在在打排球。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873127 (CK) & #1446763 (asosan) +I'm satisfied with my work. 我很滿意我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #257906 (CK) & #918112 (Martha) +I'm scared of wild animals. 我怕野兽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1123478 (CK) & #4265179 (notabene) +I'm still angry about that. 我还是为那生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544087 (CK) & #5611576 (verdastelo9604) +I'm sure Tom would approve. 我確定湯姆會同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330681 (CK) & #6635876 (verdastelo9604) +I'm sure that it'll be fun. 我确定它将会很有趣 CC-BY 2.0 (France) Attribution: tatoeba.org #4850980 (CK) & #4844583 (pig8322) +I've already been punished. 我己經被懲罰了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821324 (CK) & #6070989 (verdastelo9604) +I've always distrusted Tom. 我一直不信任湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2358936 (CK) & #6105190 (verdastelo9604) +I've been here a long time. 我在這裡很長一段時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5254569 (CK) & #919617 (Martha) +I've found a place to live. 我找到了个住处。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359523 (CK) & #5624929 (verdastelo9604) +I've got to go to the bank. 我要去银行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728100 (paper1n0) & #4625747 (Yashanti) +I've got to go to the bank. 我必须到银行去。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728100 (paper1n0) & #7772603 (jiangche) +I've missed another chance. 我又失去了一次机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1415775 (CK) & #1415794 (sadhen) +If you get sleepy, tell me. 困了的话就说哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4525577 (CK) & #5100235 (mirrorvan) +If you're happy, I'm happy. 如果你高興,我就高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2055230 (CS) & #6200061 (verdastelo9604) +If you're tired, go to bed. 你若累了,就去睡個覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2582554 (CK) & #3704984 (egg0073) +Is Tom in a lot of trouble? 汤姆是不是麻烦事很多? CC-BY 2.0 (France) Attribution: tatoeba.org #1886878 (CK) & #4760027 (ryanwoo) +Is one thousand yen enough? 1000日元够不够? CC-BY 2.0 (France) Attribution: tatoeba.org #73497 (CK) & #846485 (kooler) +Is ten thousand yen enough? 一萬日元夠嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #500494 (CK) & #835324 (Martha) +Is ten thousand yen enough? 一万日元够吗? CC-BY 2.0 (France) Attribution: tatoeba.org #500494 (CK) & #7781712 (jiangche) +Is that all you have to do? 这些都是你不得不做的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3825201 (CK) & #4845079 (pig8322) +Is the snake alive or dead? 這條蛇是活的還是死的? CC-BY 2.0 (France) Attribution: tatoeba.org #49936 (CK) & #844495 (Martha) +Is there a doctor on board? 船上有醫生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #463451 (CK) & #790268 (Martha) +Is there a zoo in the park? 公园里有动物园吗? CC-BY 2.0 (France) Attribution: tatoeba.org #48029 (CM) & #336484 (fucongcong) +Is there anything I can do? 有什么事我可以做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1886895 (CK) & #6197254 (yuiyu) +Is this something you want? 这是你要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2012713 (CK) & #5663588 (verdastelo9604) +It is already nine o'clock. 已经9点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #863626 (cris) & #406740 (fucongcong) +It is especially hot today. 今天特別熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #242725 (CK) & #801531 (Martha) +It is likely to rain again. 很有可能还会下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #32642 (CK) & #1361959 (sadhen) +It is too hot to stay here. 太熱了不能待在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #267103 (CK) & #798091 (Martha) +It really is very annoying. 真是烦死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7829837 (sharris123) & #2531369 (fenfang557) +It seems interesting to me. 在我看来很有意思! CC-BY 2.0 (France) Attribution: tatoeba.org #1423 (CK) & #335070 (fucongcong) +It seems that Tom is lying. 看來湯姆在說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2734321 (CK) & #6923187 (verdastelo9604) +It sounds like a good idea. 它聽起來是個好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953059 (CK) & #6070947 (verdastelo9604) +It was a great shock to me. 這對我是很大的震撼。 CC-BY 2.0 (France) Attribution: tatoeba.org #42105 (CK) & #801471 (Martha) +It was love at first sight. 那是一见钟情。 CC-BY 2.0 (France) Attribution: tatoeba.org #456157 (lukaszpp) & #334213 (fucongcong) +It's all you can really do. 这是你所能做的一切了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3865715 (CK) & #7768301 (jiangche) +It's exactly what I wanted. 我想要的就是这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #693555 (Eldad) & #1314313 (vicch) +It's just your imagination. 那只是你的想象。 CC-BY 2.0 (France) Attribution: tatoeba.org #20384 (CK) & #466187 (fucongcong) +It's just your imagination. 这只是你的想象。 CC-BY 2.0 (France) Attribution: tatoeba.org #20384 (CK) & #745820 (fucongcong) +It's my turn to drive next. 下次该轮到我开车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242378 (CK) & #8877852 (crescat) +It's none of your business. 這不關你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #16994 (CK) & #836119 (Martha) +It's none of your business. 跟你没半毛钱关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #16994 (CK) & #5091948 (mirrorvan) +It's not a cat. It's a dog. 它不是猫。它是狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #5176525 (CarpeLanam) & #5702561 (verdastelo9604) +It's only a matter of time. 這只是時間的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #897541 (CM) & #897543 (egg0073) +It's only your imagination. 那只是你的想象。 CC-BY 2.0 (France) Attribution: tatoeba.org #599209 (Dejo) & #466187 (fucongcong) +It's started raining again. 又开始下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794493 (CK) & #1888704 (Venki) +It's the right thing to do. 這是正確的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #3396887 (CK) & #6146548 (verdastelo9604) +It's too late to apologize. 现在道歉也迟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4844637 (pig8322) & #4789664 (400S) +It's very hot in this room. 這間房裡很熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2986055 (CK) & #6585434 (verdastelo9604) +It's very hot this morning. 今天早上很熱呢! CC-BY 2.0 (France) Attribution: tatoeba.org #7812885 (CK) & #884715 (Tajfun) +Just then, the bus stopped. 就在那时,公交车停住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40171 (CK) & #1786150 (sadhen) +Languages aren't his forte. 语言不是他的强项。 CC-BY 2.0 (France) Attribution: tatoeba.org #623973 (darinmex) & #1454442 (sadhen) +Learning French isn't hard. 学法语不难。 CC-BY 2.0 (France) Attribution: tatoeba.org #8415697 (CK) & #8463626 (gumblex) +Leave the room immediately. 馬上離開房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3737325 (CK) & #6630027 (verdastelo9604) +Lend me some books to read. 借我一些書看。 CC-BY 2.0 (France) Attribution: tatoeba.org #25048 (CK) & #859102 (Martha) +Let me buy you another one. 我给你再买一个吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #320289 (CK) & #1395057 (mtdot) +Let me give you an example. 让我来给你举个例子吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #71020 (Zifre) & #333672 (fucongcong) +Let's finish up in a hurry. 讓我們快點做完吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #19715 (CK) & #884191 (Martha) +Let's have dinner together. 一起吃晚饭吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007473 (CK) & #5574501 (verdastelo9604) +Life in Japan is expensive. 在日本生活消费很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #3741142 (Eldad) & #3845383 (sadhen) +Look at that tall building. 看那棟高樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #68396 (CK) & #886530 (Martha) +Mars has two natural moons. 火星有兩個天然衛星。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156301 (Kiwi) & #6961300 (xjjAstrus) +Mary is a very pretty girl. 瑪麗是一個非常漂亮的姑娘。 CC-BY 2.0 (France) Attribution: tatoeba.org #31973 (CK) & #785190 (Martha) +Mary is helping her mother. 瑪麗正在幫忙她的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #31998 (CK) & #834816 (Martha) +Mary looks like her mother. 瑪麗長得像她媽媽。 CC-BY 2.0 (France) Attribution: tatoeba.org #31878 (CK) & #835344 (Martha) +Mary spoke Japanese slowly. 瑪麗日語說得很慢。 CC-BY 2.0 (France) Attribution: tatoeba.org #31893 (CK) & #826017 (Martha) +May I come and see you now? 我現在可以來看看你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242001 (CK) & #893175 (Martha) +May I have a talk with you? 我能和你谈谈吗? CC-BY 2.0 (France) Attribution: tatoeba.org #71244 (CK) & #846723 (fucongcong) +Maybe I should go help Tom. 或許我該去幫湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3523515 (CK) & #6149009 (verdastelo9604) +Maybe Tom just got nervous. 可能汤姆紧张了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953224 (CK) & #5780509 (verdastelo9604) +Money can't buy everything. 金钱不能买到所有的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1334072 (CM) & #4600759 (Seek) +Money cannot buy happiness. 钱买不到幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #18622 (Zifre) & #401010 (fucongcong) +Money has changed his life. 金钱改变了他的生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #64626 (CK) & #1786002 (sadhen) +My bicycle has a flat tire. 我的腳踏車輪胎沒氣了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33555 (CK) & #857985 (Martha) +My brother can drive a car. 我哥哥會開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #250718 (CK) & #851524 (Martha) +My car is at your disposal. 你可以随便用我的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #251074 (CK) & #343356 (fucongcong) +My dad doesn't like soccer. 我爸爸不喜欢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #386726 (Mouseneb) & #333380 (fucongcong) +My daughter wants a kitten. 我女儿想要一只小猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1183896 (Scott) & #6977799 (verdastelo9604) +My dream is to be a doctor. 我的梦想是成为医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #251933 (sacredceltic) & #813600 (fucongcong) +My dream is to go to Japan. 我的夢想是去日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #400831 (Sushiman) & #890919 (Martha) +My father bought a new car. 我的父親買了一輛新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #413970 (jerom) & #856381 (Martha) +My father has a restaurant. 我父亲有家餐馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #488425 (biglion) & #4267379 (notabene) +My father is in the garden. 我爸爸在花园里。 CC-BY 2.0 (France) Attribution: tatoeba.org #742812 (rpglover64) & #791652 (fucongcong) +My father stopped drinking. 父亲戒酒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #559355 (CK) & #334237 (fucongcong) +My friends all call me Tom. 我的朋友都叫我湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5241604 (cinqhiboux) & #5234813 (xjjAstrus) +My hometown is very pretty. 我的家乡非常漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #474080 (FeuDRenais) & #476609 (fucongcong) +My mother is making a cake. 我的母親在做蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #320639 (CK) & #6131493 (verdastelo9604) +My mother was an alcoholic. 我母亲是个酒鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #4968958 (CK) & #5091598 (mirrorvan) +My papers were in that box. 我的文件在那個箱子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5333363 (mailohilohi) & #6128471 (verdastelo9604) +My sister has a nice piano. 我妹妹有架漂亮的钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #245572 (CK) & #795773 (fucongcong) +My sister married a doctor. 我妹妹嫁给了一个医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #251904 (CK) & #333186 (fucongcong) +My son is taller than I am. 我兒子比我高。 CC-BY 2.0 (France) Attribution: tatoeba.org #467341 (CK) & #894342 (Martha) +My uncle gave me a present. 我叔叔给了我一份礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #65062 (CK) & #334104 (fucongcong) +My uncle gave me the watch. 我叔叔給了我這支錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #65073 (CK) & #805184 (Martha) +Neither Tom nor I did that. 汤姆和我都没有那么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7737921 (CK) & #8550942 (slo_oth) +No one is listening to Tom. 没人听汤姆说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #3523512 (CK) & #5911715 (verdastelo9604) +No one's going to find you. 没有人要去找你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3918265 (CK) & #5907487 (verdastelo9604) +Nobody believes what I say. 没有人相信我说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #387557 (Mouseneb) & #333942 (fucongcong) +Nobody can know everything. 沒有人能無所不知。 CC-BY 2.0 (France) Attribution: tatoeba.org #664021 (bluepie88) & #3701787 (egg0073) +Nobody is too old to learn. 沒有人會因為太老而不能學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #541067 (CK) & #855695 (Martha) +Nobody is too old to learn. 活到老學到老。 CC-BY 2.0 (France) Attribution: tatoeba.org #541067 (CK) & #855696 (Martha) +None of the money is yours. 這些錢都不是你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #50597 (CK) & #850298 (Martha) +None of this is your money. 這些都不是你的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #7840503 (sharris123) & #771260 (Martha) +Not everyone can be a poet. 不是每個人都能成為詩人。 CC-BY 2.0 (France) Attribution: tatoeba.org #40368 (CK) & #796970 (Martha) +Now is the time for action. 现在是行动的时候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #241607 (CK) & #333240 (fucongcong) +Now let's get down to work. 現在讓我們開始工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #54242 (CK) & #798390 (Martha) +Oh! I'm sorry to hear that. 哦!我很遺憾聽到這個消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #433724 (CK) & #852212 (Martha) +One year has twelve months. 一年有十二個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #480575 (biglion) & #778507 (Martha) +One's new. The other's old. 一个是新的,另一个是旧的。 CC-BY 2.0 (France) Attribution: tatoeba.org #974170 (FeuDRenais) & #334784 (fucongcong) +Others are less optimistic. 其他人不那么乐观。 CC-BY 2.0 (France) Attribution: tatoeba.org #5738032 (CM) & #5945159 (verdastelo9604) +Parking is prohibited here. 此处禁止停车。 CC-BY 2.0 (France) Attribution: tatoeba.org #61622 (CK) & #2027989 (ydcok) +Pass me the butter, please. 請把奶油遞給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #35197 (CK) & #793262 (Martha) +Pass me the salt, will you? 請把鹽遞給我,好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25733 (CK) & #858891 (Martha) +People in Taiwan work hard. 在台灣人們工作很努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #765401 (Martha) & #765392 (Martha) +People need to stop hating. 人们需要止住仇恨。 CC-BY 2.0 (France) Attribution: tatoeba.org #4949946 (CK) & #5883315 (verdastelo9604) +People used to laugh at us. 人们以前笑话我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #5189336 (CK) & #5581847 (verdastelo9604) +Place it wherever you like. 你想放在哪裡就放在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #483977 (minshirui) & #892451 (Martha) +Please be quiet, everybody. 请大家都保持安静。 CC-BY 2.0 (France) Attribution: tatoeba.org #22119 (CK) & #1416139 (sadhen) +Please don't speak so fast. 请不要说得那么快。 CC-BY 2.0 (France) Attribution: tatoeba.org #41498 (CK) & #746035 (fucongcong) +Please don't speak so fast. 請不要說得這麼快。 CC-BY 2.0 (France) Attribution: tatoeba.org #41498 (CK) & #763932 (Martha) +Please let me try the game. 請讓我試試這個遊戲吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #249692 (CK) & #771261 (Martha) +Please show me another one. 请给我看看其他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #31522 (CK) & #1415802 (sadhen) +Please stop that right now. 请即刻停止。 CC-BY 2.0 (France) Attribution: tatoeba.org #2192255 (acbarbosa) & #5715136 (verdastelo9604) +Please take a look at this. 请看看这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #6029125 (Huskion) & #8777611 (crescat) +Please take off your shoes. 請脫掉你的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #18097 (CK) & #836386 (Martha) +Please take your shoes off. 請脫掉你的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #4054880 (CK) & #836386 (Martha) +Please turn down the radio. 請把收音機關小聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #29776 (CK) & #844488 (Martha) +Please turn off the lights. 請關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2510837 (Hybrid) & #798428 (Martha) +Please write with a pencil. 請用鉛筆寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #25772 (CK) & #845510 (Martha) +Pork doesn't agree with me. 猪肉不适合我。 CC-BY 2.0 (France) Attribution: tatoeba.org #280737 (CK) & #8789278 (crescat) +Put in a little more sugar. 多放一點糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #31266 (CK) & #795869 (Martha) +Put it on one bill, please. 請記在一張帳單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #27696 (CK) & #858741 (Martha) +Remember to cross your t's. 记得在字母 t 上画上横。 CC-BY 2.0 (France) Attribution: tatoeba.org #244208 (CM) & #3289574 (sadhen) +Rome wasn't built in a day. 罗马不是一天建成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1777 (CK) & #74 (fucongcong) +See you tomorrow at school. 明天在學校見。 CC-BY 2.0 (France) Attribution: tatoeba.org #323402 (CK) & #6534802 (verdastelo9604) +Shall we go out for a walk? 出去散步怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #1386667 (quickfitter) & #883317 (Martha) +She abandoned her children. 她抛弃了她的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #314675 (CK) & #349936 (fucongcong) +She and I are the same age. 她跟我同年。 CC-BY 2.0 (France) Attribution: tatoeba.org #401671 (CK) & #894170 (Martha) +She beckoned me to come in. 她招呼我进来。 CC-BY 2.0 (France) Attribution: tatoeba.org #317005 (CK) & #1394972 (mtdot) +She didn't have much money. 她沒有很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #312185 (CK) & #836267 (Martha) +She died of stomach cancer. 她死于胃癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #312520 (jakov) & #400998 (fucongcong) +She does not have a ticket. 她沒有票。 CC-BY 2.0 (France) Attribution: tatoeba.org #1795968 (ifethereal) & #1754865 (egg0073) +She especially likes music. 她特別喜愛音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #311832 (CK) & #904795 (kanaorange) +She gave him a tender kiss. 她給了他一個溫柔的吻。 CC-BY 2.0 (France) Attribution: tatoeba.org #316334 (CK) & #805593 (Martha) +She gave me a strange look. 她奇怪地看了我一眼。 CC-BY 2.0 (France) Attribution: tatoeba.org #314460 (CK) & #805210 (Martha) +She gave us a vague answer. 她給了我們一個模糊的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #314067 (CK) & #805027 (Martha) +She goes to school on foot. 她走路去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #316920 (CK) & #804828 (Martha) +She had her handbag stolen. 她的手提包被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312008 (CK) & #419901 (fucongcong) +She had to accept her fate. 她该接受她的命运。 CC-BY 2.0 (France) Attribution: tatoeba.org #314636 (CK) & #396380 (fucongcong) +She has a dog and six cats. 她有一只狗和六只猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #858614 (princesamee) & #4764518 (ryanwoo) +She has a rose in her hand. 她手里拿着一朵玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #317534 (CK) & #334317 (fucongcong) +She has an agreeable voice. 她的声音令人愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #309497 (Eldad) & #1397308 (mtdot) +She has no sense of beauty. 她沒有審美感。 CC-BY 2.0 (France) Attribution: tatoeba.org #388446 (CK) & #858185 (Martha) +She is a very good teacher. 她是个非常好的老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #311752 (CK) & #512495 (fucongcong) +She is a well-known singer. 她是一个著名的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #389143 (CK) & #1358430 (sadhen) +She is going to Mount Tate. 她將去立山。 CC-BY 2.0 (France) Attribution: tatoeba.org #310039 (CK) & #804793 (Martha) +She is nothing but a child. 她只是個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #312200 (CK) & #884731 (Tajfun) +She is older and wiser now. 她現在更加年長也更加有智慧。 CC-BY 2.0 (France) Attribution: tatoeba.org #858905 (piksea) & #5411170 (egg0073) +She lives in a large house. 她住在一棟大房子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #313591 (CK) & #802503 (Martha) +She made a serious mistake. 她犯了一個嚴重的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #632483 (CK) & #801922 (Martha) +She managed to drive a car. 她成功地開車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311703 (CK) & #795233 (Martha) +She married a rich old man. 她嫁給了一個富有的老男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #313323 (CK) & #794060 (Martha) +She married a rich old man. 她嫁给了个有钱老头。 CC-BY 2.0 (France) Attribution: tatoeba.org #313323 (CK) & #5550233 (verdastelo9604) +She plays tennis every day. 她每天都打网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #317090 (saeb) & #334212 (fucongcong) +She showed him to his seat. 她領他到他的座位上。 CC-BY 2.0 (France) Attribution: tatoeba.org #887391 (CK) & #6633866 (verdastelo9604) +She speaks a little Arabic. 她说一点阿拉伯语。 CC-BY 2.0 (France) Attribution: tatoeba.org #310326 (CK) & #782917 (fucongcong) +She took me for my brother. 她把我认作我弟弟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314429 (CM) & #791483 (fucongcong) +She took my joke seriously. 她把我的玩笑当真了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314354 (CM) & #343696 (fucongcong) +She was listening to music. 她听着音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #312756 (CK) & #5585200 (verdastelo9604) +She was washing the dishes. 那時她正在洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #501378 (CK) & #839613 (Martha) +She was wearing long boots. 她穿着长靴。 CC-BY 2.0 (France) Attribution: tatoeba.org #312443 (CM) & #863877 (kooler) +She wore a beautiful dress. 她穿著漂亮的洋裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #388420 (CK) & #840782 (Martha) +She's Tom's younger sister. 她是湯姆的妹妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #1523979 (CK) & #826146 (Martha) +She's sitting on the bench. 她坐在長椅上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2693532 (WestofEden) & #839616 (Martha) +Sheep provide us with wool. 绵羊提供我們羊毛。 CC-BY 2.0 (France) Attribution: tatoeba.org #34763 (CM) & #2624120 (egg0073) +Smoking isn't allowed here. 这里不允许抽烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #4265978 (CK) & #8673668 (crescat) +Someone told me about that. 有人跟我說這件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753765 (garborg) & #4732053 (egg0073) +Something weird's going on. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064723 (CK) & #8720496 (crescat) +Sometimes I still miss her. 有時候,我還是會想起她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230459 (alec) & #1227124 (tsayng) +Speaking English is useful. 说英语很有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #26187 (CK) & #787602 (fucongcong) +Stay put till I get to you. 待在原地,直到我找到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742435 (deniko) & #8744902 (slo_oth) +Suddenly, I heard shouting. 突然,我听到了一声喊叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2336004 (CK) & #2004700 (sadhen) +Suddenly, it began to rain. 突然開始下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #280690 (CK) & #797087 (Martha) +Take a deep breath, please. 請深呼吸。 CC-BY 2.0 (France) Attribution: tatoeba.org #274366 (CK) & #842307 (Martha) +Take good care of yourself. 照顾好你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260 (CK) & #1772682 (sadhen) +Take the road on the right. 走右邊的道路。 CC-BY 2.0 (France) Attribution: tatoeba.org #27074 (CK) & #798156 (Martha) +Tell me how you're feeling. 告訴我你的感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200451 (CK) & #6624727 (verdastelo9604) +Tell me the correct answer. 告诉我正确的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #792839 (hrin) & #792818 (fucongcong) +Tell me what to do with it. 告诉我拿它做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #41882 (CK) & #816484 (fucongcong) +Thank you, I've had enough. 謝謝你,我吃飽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67370 (CK) & #844480 (Martha) +That child has few friends. 那孩子沒有什麼朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #47530 (CK) & #876169 (Martha) +That is a strange sentence. 那是一個奇怪的句子。 CC-BY 2.0 (France) Attribution: tatoeba.org #767004 (Zifre) & #767000 (Martha) +That is no business of his. 那不關他的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #42165 (CK) & #865550 (Martha) +That makes no sense at all. 这没有任何意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #42264 (CK) & #346785 (fucongcong) +That movie is for children. 那部電影是給小孩看的。 CC-BY 2.0 (France) Attribution: tatoeba.org #811437 (GeeZ) & #6149015 (verdastelo9604) +That movie is worth seeing. 那部电影值得一看。 CC-BY 2.0 (France) Attribution: tatoeba.org #68571 (CK) & #2029445 (ydcok) +That should make you happy. 那该让你高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044647 (CK) & #5894457 (verdastelo9604) +That was an excellent putt. 那是一個很棒的推桿。 CC-BY 2.0 (France) Attribution: tatoeba.org #442057 (CK) & #845455 (Martha) +That white parasol is hers. 那把白色阳伞是她的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1482641 (weihaiping) & #343607 (fucongcong) +That won't change anything. 這樣做的話什麼都不會改變的。 CC-BY 2.0 (France) Attribution: tatoeba.org #24801 (CK) & #22 (fucongcong) +That young lady is a nurse. 这个年轻女孩是护士。 CC-BY 2.0 (France) Attribution: tatoeba.org #1258603 (CK) & #1314047 (vicch) +That's an interesting idea. 那是个有趣的主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732186 (CK) & #5926168 (verdastelo9604) +That's not what I told Tom. 那不是我對湯姆說的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200424 (CK) & #6057861 (verdastelo9604) +That's really a great idea. 真是个好主意! CC-BY 2.0 (France) Attribution: tatoeba.org #42085 (CK) & #334422 (fucongcong) +That's your responsibility. 这是您的义务。 CC-BY 2.0 (France) Attribution: tatoeba.org #42488 (CK) & #4263781 (notabene) +The air felt a little cold. 空气有点冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #21979 (Swift) & #1420669 (sadhen) +The archer killed the deer. 射手打死了鹿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1531 (CK) & #334456 (fucongcong) +The boat can still be seen. 船还能看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #603901 (qdii) & #5900378 (verdastelo9604) +The boy is full of promise. 这个男孩很有前途。 CC-BY 2.0 (France) Attribution: tatoeba.org #46316 (CK) & #1358585 (sadhen) +The boy is wearing glasses. 這個男孩戴著眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #388021 (CK) & #842337 (Martha) +The building has 20 floors. 大楼有20层。 CC-BY 2.0 (France) Attribution: tatoeba.org #1542258 (SHamp) & #466126 (fucongcong) +The buildings look so tiny. 大楼看上去那么寒酸。 CC-BY 2.0 (France) Attribution: tatoeba.org #239073 (CM) & #796640 (fucongcong) +The cat is under the table. 猫在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #801731 (CM) & #802831 (fucongcong) +The chicken is undercooked. 雞肉還不夠熟。 CC-BY 2.0 (France) Attribution: tatoeba.org #4104549 (Hybrid) & #4104893 (andymakespasta) +The doctor called him back. 医生把他叫了回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #27923 (CK) & #1426447 (sadhen) +The dog always barks at me. 狗總是對著我嚎叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #48277 (CK) & #3701773 (egg0073) +The dog came running to me. 狗向着我跑了过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #48247 (CK) & #333968 (fucongcong) +The dog was hit by a truck. 狗被卡車撞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #239172 (CK) & #6111958 (verdastelo9604) +The election was unanimous. 选举一致通过了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1538931 (SHamp) & #805192 (fucongcong) +The exhibition is now open. 展览现在已经开放。 CC-BY 2.0 (France) Attribution: tatoeba.org #44922 (CK) & #1361952 (sadhen) +The job offer still stands. 這份工作錄取仍然有效。 CC-BY 2.0 (France) Attribution: tatoeba.org #68356 (CK) & #793944 (Martha) +The lady tolerated the man. 那女士容忍了那男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #318745 (CM) & #5555550 (verdastelo9604) +The law is not always fair. 法律並不總是公平的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321017 (CK) & #775460 (Martha) +The meeting lasted until 5. 會議一直持續到5點鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #22493 (CK) & #836429 (Martha) +The meeting was called off. 会议取消了。 CC-BY 2.0 (France) Attribution: tatoeba.org #49151 (CK) & #817280 (fucongcong) +The moonlight is beautiful. 月光真美。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045786 (CK) & #2680872 (tsayng) +The old man got in her way. 這個老人擋了她的路。 CC-BY 2.0 (France) Attribution: tatoeba.org #43415 (CK) & #802544 (Martha) +The plane is about to land. 飛機就要降落了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7242765 (CK) & #6316773 (xjjAstrus) +The price isn't reasonable. 这个价格不合理。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492886 (CK) & #334855 (fucongcong) +The price of gas is rising. 天然氣的價格上升。 CC-BY 2.0 (France) Attribution: tatoeba.org #620115 (ulyssemc1) & #834535 (Martha) +The room is full of people. 屋里挤满了人。 CC-BY 2.0 (France) Attribution: tatoeba.org #44197 (CK) & #816454 (fucongcong) +The ship went up in flames. 船起了火。 CC-BY 2.0 (France) Attribution: tatoeba.org #273388 (CM) & #5670799 (verdastelo9604) +The students have returned. 学生们回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1165016 (emmettricks) & #799209 (fucongcong) +The teacher had a bad cold. 老師患了重感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #272787 (CK) & #801913 (Martha) +The train has already gone. 列车已经出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #4935714 (warrenbisch) & #482704 (biglion) +The train has already left. 列车已经出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #43442 (CK) & #482704 (biglion) +The two of us are students. 我們兩個是學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574925 (n1ls) & #4185346 (egg0073) +There is a TV in this room. 这个房间里有个电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #894926 (pauldhunt) & #333126 (fucongcong) +There is a bag on the desk. 书桌上有一个包。 CC-BY 2.0 (France) Attribution: tatoeba.org #20580 (CK) & #426297 (fucongcong) +There is a map on the wall. 墙上有张地图。 CC-BY 2.0 (France) Attribution: tatoeba.org #320259 (CK) & #335369 (fucongcong) +There is no doubt about it. 關於此事毫無疑問。 CC-BY 2.0 (France) Attribution: tatoeba.org #50458 (CK) & #8570931 (verdastelo9604) +There was complete silence. 一片寂静无声。 CC-BY 2.0 (France) Attribution: tatoeba.org #3722195 (CM) & #5091663 (mirrorvan) +There were three survivors. 有三个幸存者。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013157 (CK) & #5949278 (verdastelo9604) +There's no one in the room. 沒有人在房間裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #418624 (CK) & #871187 (Martha) +There's nothing to forgive. 没什么可原谅的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3286885 (CK) & #5863228 (verdastelo9604) +These figures don't add up. 这些数字总数不符。 CC-BY 2.0 (France) Attribution: tatoeba.org #41982 (CK) & #336684 (fucongcong) +They all envied my new car. 他们都羡慕我的新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #306073 (CK) & #1753191 (sadhen) +They dropped out of school. 他們輟學了。 CC-BY 2.0 (France) Attribution: tatoeba.org #410549 (CK) & #842473 (Martha) +They gave in to my opinion. 他們屈服於我的看法了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306691 (CK) & #805554 (Martha) +They live across the river. 他們住在河對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #307015 (CK) & #838574 (Martha) +They treat me like a child. 他们把我当小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #4769443 (garborg) & #4182618 (ekgermana) +They water the fruit trees. 他们给果树浇水。 CC-BY 2.0 (France) Attribution: tatoeba.org #796133 (awynands) & #2028046 (ydcok) +They won many competitions. 他們贏了許多比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #776162 (BraveSentry) & #776981 (Martha) +They're typical youngsters. 他们是典型的年轻人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728083 (paper1n0) & #4674461 (yuiyu) +They're very close friends. 他們是非常親密的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #5064735 (AlanF_US) & #6065394 (verdastelo9604) +This bicycle belongs to me. 这辆自行车属于我。 CC-BY 2.0 (France) Attribution: tatoeba.org #58881 (CK) & #334535 (fucongcong) +This car is easy to handle. 這輛車很容易操控。 CC-BY 2.0 (France) Attribution: tatoeba.org #58876 (lilygilder) & #874383 (Martha) +This chair has to be fixed. 这张椅子需要修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #8466309 (moarplease) & #472774 (fucongcong) +This directly concerns you. 这与你有直接关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #3918747 (CK) & #5663456 (verdastelo9604) +This drink is on the house. 這種飲料是免費招待的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60272 (CK) & #788775 (Martha) +This house is not for sale. 这房子不出售。 CC-BY 2.0 (France) Attribution: tatoeba.org #60133 (Dejo) & #791654 (fucongcong) +This is a beautiful flower. 这是一朵美丽的花。 CC-BY 2.0 (France) Attribution: tatoeba.org #55417 (CK) & #1358621 (sadhen) +This is a book about stars. 这是一本关于星星的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #55552 (Eldad) & #782250 (fucongcong) +This is a book about stars. 这是本关于星星的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #55552 (Eldad) & #7772079 (jiangche) +This is a low-budget movie. 這是一部低成本的電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #7773713 (sharris123) & #5941708 (xjjAstrus) +This is a strange sentence. 這是一個奇怪的句子。 CC-BY 2.0 (France) Attribution: tatoeba.org #890441 (Scott) & #890443 (Martha) +This is an important event. 这是个重要事件。 CC-BY 2.0 (France) Attribution: tatoeba.org #55578 (CK) & #335527 (fucongcong) +This is just what I wanted. 我想要的就是这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #55891 (CK) & #1314313 (vicch) +This is never going to end. 这将永远继续下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1287 (CK) & #1411602 (asosan) +This is never going to end. 這個永遠結束不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1287 (CK) & #3739038 (egg0073) +This matter is very urgent. 這件事非常緊急。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477124 (weihaiping) & #775892 (Martha) +This piano is really cheap. 這鋼琴真便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825783 (CK) & #6169147 (verdastelo9604) +This sentence is ambiguous. 此句有歧義 CC-BY 2.0 (France) Attribution: tatoeba.org #6840666 (kaiperkins271) & #7316730 (zzztat) +This table is made of wood. 这张桌子是木制的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60865 (CK) & #785837 (fucongcong) +This whisky is very strong. 这种威士忌太烈了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1775010 (CM) & #718397 (Yashanti) +This word comes from Greek. 這個詞來源于希臘語。 CC-BY 2.0 (France) Attribution: tatoeba.org #59390 (CK) & #6284425 (xjjAstrus) +This word comes from Latin. 這個詞源於拉丁語。 CC-BY 2.0 (France) Attribution: tatoeba.org #2060138 (halfb1t) & #6332429 (verdastelo9604) +Those tulips are beautiful. 那些郁金香很美丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144781 (Hybrid) & #4147301 (sissima) +Those were difficult times. 那是困难时期。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502640 (CK) & #5624859 (verdastelo9604) +Tom already knew the truth. 湯姆己經知道了真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #5089995 (CK) & #6103196 (verdastelo9604) +Tom and I are good friends. 湯姆和我是好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #37374 (CK) & #874361 (Martha) +Tom can't cross the border. Tom没办法穿过边界。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846788 (CK) & #4846807 (pig8322) +Tom complains all the time. 汤姆老是发牢骚。 CC-BY 2.0 (France) Attribution: tatoeba.org #4700098 (CK) & #4760015 (ryanwoo) +Tom didn't have any family. 过去汤姆没有家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2279352 (CK) & #4264860 (notabene) +Tom didn't know who it was. 湯姆不知道那是誰。 CC-BY 2.0 (France) Attribution: tatoeba.org #2644005 (CK) & #6673104 (verdastelo9604) +Tom didn't seem that happy. 汤姆看来不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3297602 (CM) & #6015159 (verdastelo9604) +Tom didn't want to do that. 湯姆不想去做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820221 (CK) & #6630028 (verdastelo9604) +Tom didn't write Mary back. 汤姆没给玛丽写回复。 CC-BY 2.0 (France) Attribution: tatoeba.org #3010330 (Hybrid) & #5965720 (verdastelo9604) +Tom disassembled the clock. 汤姆把钟拆开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6106102 (peterius) & #8736991 (crescat) +Tom drank his orange juice. Tom喝了他的柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643995 (CK) & #5548514 (egg0073) +Tom gave Mary a flashlight. 汤姆给了玛丽一把手电筒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643989 (CK) & #5091162 (mirrorvan) +Tom goes to school on foot. 湯姆走路去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #37011 (CK) & #804827 (Martha) +Tom had a decision to make. 湯姆要做個決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #2544000 (CK) & #6132219 (verdastelo9604) +Tom has a pretty big mouth. 汤姆是一个大嘴巴。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734141 (CK) & #3783115 (Debbie_Linder) +Tom has been gone for ages. 汤姆年纪大去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023811 (CK) & #5555460 (verdastelo9604) +Tom has been uncooperative. 湯姆不合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023788 (CK) & #6057874 (verdastelo9604) +Tom has low blood pressure. 汤姆有低血压。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025358 (CK) & #5072420 (musclegirlxyp) +Tom has never been on time. 汤姆从来都没有准时过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1223906 (Scott) & #1776715 (sadhen) +Tom has nothing to do here. 湯姆在這裡沒有可做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5621875 (CK) & #6623172 (verdastelo9604) +Tom has to protect himself. 汤姆得保护自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #1177565 (CK) & #4764641 (ryanwoo) +Tom hasn't called Mary yet. 湯姆還沒打給瑪莉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3975760 (CK) & #4104551 (andymakespasta) +Tom helped me fix my watch. 汤姆帮我修好了我的手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #3161944 (CK) & #6047445 (verdastelo9604) +Tom is Mary's ex-boyfriend. 汤姆是玛丽的前男友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028546 (CK) & #5903470 (verdastelo9604) +Tom is a very generous man. 湯姆是個大方的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825687 (CK) & #6068355 (verdastelo9604) +Tom is an excellent father. 汤姆是个杰出的爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1167523 (CK) & #9007596 (jacintoo) +Tom is an important person. 湯姆是個重要的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938648 (CK) & #9155262 (shou) +Tom is asleep on the couch. 汤姆在长沙发上睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868227 (CK) & #5585216 (verdastelo9604) +Tom is at school, isn't he? 湯姆在學校裡,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3416921 (CK) & #6119433 (verdastelo9604) +Tom is doing what he loves. 汤姆在做他喜欢做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5450187 (CK) & #5685861 (verdastelo9604) +Tom is drinking some water. 汤姆在喝点水。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643972 (CK) & #8589281 (easononizuka) +Tom is in the bathroom now. 湯姆現在在衛生間。 CC-BY 2.0 (France) Attribution: tatoeba.org #5623247 (CK) & #6534804 (verdastelo9604) +Tom is the easy-going sort. 汤姆是容易相处的类型。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499003 (CK) & #5631897 (verdastelo9604) +Tom is unbelievably stupid. 汤姆傻得难以置信。 CC-BY 2.0 (France) Attribution: tatoeba.org #5624896 (CK) & #5660518 (verdastelo9604) +Tom isn't paying attention. 汤姆在开小差。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643954 (CK) & #8511513 (gumblex) +Tom isn't planning to stay. 湯姆不打算留下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185164 (CK) & #6131486 (verdastelo9604) +Tom just got divorced, too. 湯姆也剛離婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3449011 (CK) & #6633892 (verdastelo9604) +Tom kept talking all night. 湯姆整夜一直在說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #37000 (CK) & #836419 (Martha) +Tom knows what we're doing. 汤姆知道我们在做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890255 (CK) & #5780571 (verdastelo9604) +Tom likes to play baseball. 湯姆喜歡打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #36998 (CK) & #845451 (Martha) +Tom looked Mary in the eye. 湯姆與瑪麗對視。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164448 (CK) & #6086851 (verdastelo9604) +Tom mostly kept to himself. 汤姆大多一个人独处。 CC-BY 2.0 (France) Attribution: tatoeba.org #3174748 (CK) & #5091699 (mirrorvan) +Tom needed to wash his car. 湯姆需要洗他的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543978 (CK) & #6568325 (verdastelo9604) +Tom needs to speak to Mary. 湯姆需要跟瑪麗說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164390 (CK) & #6309812 (verdastelo9604) +Tom never wanted to try it. 湯姆從不想試試。 CC-BY 2.0 (France) Attribution: tatoeba.org #3439449 (CK) & #6091711 (verdastelo9604) +Tom passed away last night. 汤姆在昨晚去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093151 (CK) & #6321886 (yuiyu) +Tom rolled down his window. 湯姆拉下了他的窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #3403150 (CK) & #6150024 (verdastelo9604) +Tom says Mary wasn't tired. 湯姆說瑪麗不累。 CC-BY 2.0 (France) Attribution: tatoeba.org #6274239 (CK) & #8215752 (verdastelo9604) +Tom seems to be very happy. 汤姆看起来非常开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3434171 (CK) & #8935889 (crescat) +Tom should hear about this. 汤姆应该听说这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867909 (CK) & #5698042 (verdastelo9604) +Tom should've known better. 汤姆应该更清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164182 (CK) & #5574799 (verdastelo9604) +Tom showed up just in time. 汤姆刚好准时到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164167 (CK) & #7771978 (jiangche) +Tom sneaked up behind Mary. 汤姆鬼鬼祟祟地遛近了玛丽身后。 CC-BY 2.0 (France) Attribution: tatoeba.org #3444485 (CK) & #5094003 (mirrorvan) +Tom speaks French a little. 汤姆会说一点法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451567 (CK) & #4817241 (CLARET) +Tom speaks French fluently. 湯姆的法語說的很流暢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141182 (CK) & #8388748 (wangchou) +Tom studies French as well. 湯姆也學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #5550867 (CK) & #6047504 (verdastelo9604) +Tom told Mary to help John. 湯姆讓瑪麗幚約翰。 CC-BY 2.0 (France) Attribution: tatoeba.org #5840656 (CK) & #6059540 (verdastelo9604) +Tom told me he was nervous. 湯姆告訴我他緊張。 CC-BY 2.0 (France) Attribution: tatoeba.org #6353452 (CK) & #6547468 (verdastelo9604) +Tom told me where he lived. 湯姆告訴我他住在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200409 (CK) & #6199257 (verdastelo9604) +Tom took over after I left. 我走了后汤姆接手了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3442220 (CK) & #5091317 (mirrorvan) +Tom used to live near Mary. 汤姆以前跟玛丽住得近。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027838 (CK) & #5819710 (verdastelo9604) +Tom wanted to comfort Mary. Tom是想着去安慰Mary的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3671264 (CK) & #3671484 (shirleyleee) +Tom wants a glass of water. 汤姆想要一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141036 (CK) & #1397340 (mtdot) +Tom was my first boyfriend. 汤姆是我第一个男朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140954 (CK) & #9012193 (jacintoo) +Tom was the first to react. 湯姆是最先作出反應的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446940 (CK) & #6152794 (verdastelo9604) +Tom was there this morning. 汤姆早上去过那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643876 (CK) & #4760063 (ryanwoo) +Tom will go there tomorrow. 湯姆明天會去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #37004 (CK) & #839618 (Martha) +Tom will never do it again. 汤姆再也不做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3417439 (CK) & #5963989 (verdastelo9604) +Tom will probably be there. 湯姆可能會去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494077 (CK) & #6635902 (verdastelo9604) +Tom's name was on the list. 湯姆的名字在名單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2476546 (arnxy20) & #6075483 (verdastelo9604) +Tom's passport has expired. 湯姆的護照過期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135433 (CK) & #6197287 (verdastelo9604) +Tom's speech was excellent. 湯姆的演講非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #37358 (CK) & #832952 (Martha) +Tom, your life's in danger. 湯姆,你的生命有危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543931 (CK) & #6111978 (verdastelo9604) +Turn off the light, please. 請關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #38829 (CK) & #798428 (Martha) +Turn the radio up a little. 把收音機開大聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #29777 (CK) & #872420 (Martha) +Volleyball is a lot of fun. 排球很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331148 (CK) & #5942069 (verdastelo9604) +Wait here till I come back. 在這兒等著,直到我回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #20452 (CK) & #875049 (Martha) +Washing clothes is my work. 洗衣服是我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #273357 (CM) & #4844742 (pig8322) +Water boils at 100 degrees. 水在攝氏100度沸騰。 CC-BY 2.0 (France) Attribution: tatoeba.org #270781 (CK) & #868077 (Martha) +We also went to the temple. 我们也去了庙里。 CC-BY 2.0 (France) Attribution: tatoeba.org #47039 (CK) & #332717 (fucongcong) +We don't care what he does. 我們不在乎他做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #283412 (CK) & #865434 (Martha) +We elected her chairperson. 我們選她為主席。 CC-BY 2.0 (France) Attribution: tatoeba.org #249312 (CK) & #846293 (Martha) +We enjoyed watching the TV. 我們喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #248056 (CK) & #772095 (Martha) +We gather here once a week. 我们每周在这儿聚一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #248851 (CK) & #333775 (fucongcong) +We gave our mother a watch. 我們給了母親一支手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #22667 (CK) & #805113 (Martha) +We grow a variety of crops. 我們種植各種的作物。 CC-BY 2.0 (France) Attribution: tatoeba.org #262712 (CK) & #802026 (Martha) +We had a good conversation. 我们谈得不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126743 (CK) & #5624947 (verdastelo9604) +We had a late lunch at two. 我們在兩點鐘吃了晚午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #72872 (CK) & #796069 (Martha) +We had a late lunch at two. 我們在兩點鐘很晚才吃午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #72872 (CK) & #796070 (Martha) +We had a rest in the shade. 我們在樹蔭下休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #263183 (CK) & #796059 (Martha) +We have a little time left. 我們還有一點時间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543924 (CK) & #6534773 (verdastelo9604) +We have no idea what to do. 我們不知道要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5509410 (CK) & #6103229 (verdastelo9604) +We have to go by the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #33578 (CK) & #334729 (fucongcong) +We live on the third floor. 我们住在三楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649822 (sharptoothed) & #8696275 (crescat) +We must execute his orders. 我们必须执行他的命令。 CC-BY 2.0 (France) Attribution: tatoeba.org #287670 (CM) & #8800301 (slo_oth) +We played soccer yesterday. 我们昨天踢了足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #247937 (saeb) & #464842 (fucongcong) +We saw Tom talking to Mary. 我们看见汤姆跟玛丽说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #3181469 (CK) & #5978319 (verdastelo9604) +We should always obey laws. 我们总要遵守法律。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075502 (CK) & #1438614 (asosan) +We should've worked harder. 我們應該工作得更努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502935 (CK) & #6628364 (verdastelo9604) +We took a walk in the park. 我们在公园里散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #248677 (CK) & #4845139 (pig8322) +We were driven to the wall. 我们被逼得走投无路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22853 (CK) & #5092042 (mirrorvan) +We'll have guests tomorrow. 我們明天會有客人。 CC-BY 2.0 (France) Attribution: tatoeba.org #8215822 (CK) & #6114413 (verdastelo9604) +We'll have to do that, too. 我们也不得不做 CC-BY 2.0 (France) Attribution: tatoeba.org #5781633 (CK) & #5973393 (zhangxr91) +We'll have to wait and see. 你得等一等看。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312061 (CK) & #714332 (ZeroAurora) +We're almost like brothers. 我們幾乎像兄弟一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #628617 (CK) & #919181 (Martha) +We're confident of victory. 我們有信心獲勝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019893 (CM) & #1019894 (egg0073) +We've ordered Chinese food. 我们点了中餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310192 (CK) & #3630686 (suitchic) +Were you at home yesterday? 昨天你不在家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #63227 (CK) & #840606 (Martha) +What are you doing tonight? 你今晚在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #243253 (CK) & #842482 (Martha) +What are you talking about? 你说的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2066 (CK) & #503090 (fucongcong) +What browser are you using? 你用什么浏览器? CC-BY 2.0 (France) Attribution: tatoeba.org #2659659 (WestofEden) & #9007587 (jacintoo) +What color is your new car? 你的新車是甚麼顏色的? CC-BY 2.0 (France) Attribution: tatoeba.org #6267279 (CK) & #6318530 (verdastelo9604) +What did you do last night? 你昨天晚上做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #401847 (CK) & #775876 (Martha) +What did you do last night? 你昨晚做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #401847 (CK) & #868433 (Martha) +What did you eat for lunch? 你们午饭吃了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1830500 (CK) & #7772627 (jiangche) +What did you name your son? 你给你儿子起什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #4013263 (CK) & #5983655 (verdastelo9604) +What do you call this bird? 這隻鳥叫作什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #57816 (CK) & #864465 (Martha) +What do you think about it? 你認為如何? CC-BY 2.0 (France) Attribution: tatoeba.org #42939 (CK) & #735175 (Martha) +What do you think about it? 关于那个你有什么看法? CC-BY 2.0 (France) Attribution: tatoeba.org #42939 (CK) & #5095011 (mirrorvan) +What do you two do for fun? 你们两个做了什么有趣的事情呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4015785 (CK) & #4845111 (pig8322) +What if Tom is still alive? 如果汤姆还活着呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3730664 (CM) & #5576822 (verdastelo9604) +What is your date of birth? 你的生日是几号? CC-BY 2.0 (France) Attribution: tatoeba.org #703328 (papabear) & #844152 (fucongcong) +What is your mother tongue? 你的母语是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #70402 (CM) & #4815174 (McMeao) +What kind of person is she? 她是怎样的人呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1188696 (FiRez) & #1691742 (sadhen) +What kind of stone is this? 这是什么石头? CC-BY 2.0 (France) Attribution: tatoeba.org #55856 (CK) & #5613672 (verdastelo9604) +What's the matter with you? 你怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #1841534 (CK) & #7771865 (jiangche) +What's wrong with your dog? 你的狗怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #3426105 (CK) & #872216 (Martha) +What's your favorite color? 你最喜欢的颜色是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #906731 (CK) & #7771880 (jiangche) +What's your favorite drink? 你最喜欢的饮料是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #906749 (CK) & #2186246 (sadhen) +What's your favorite fruit? 你最喜爱的水果是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #906765 (CK) & #2186199 (sadhen) +What's your favorite movie? 你最喜歡的電影是哪部? CC-BY 2.0 (France) Attribution: tatoeba.org #680944 (Source_VOA) & #5122675 (xjjAstrus) +What's your husband's name? 你丈夫叫什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2543901 (CK) & #5595206 (verdastelo9604) +What's your marital status? 能告诉我你的婚姻状况吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4999143 (CK) & #4313856 (cindycute) +When did you come to Japan? 你何時來日本的? CC-BY 2.0 (France) Attribution: tatoeba.org #16755 (CK) & #775842 (Martha) +When did you get to London? 你什麼時候到倫敦的? CC-BY 2.0 (France) Attribution: tatoeba.org #29301 (CK) & #2527766 (tsayng) +When did you learn to swim? 你什么时候学会游泳的? CC-BY 2.0 (France) Attribution: tatoeba.org #621067 (CM) & #621068 (Yashanti) +When was this temple built? 这个寺庙是何时造的? CC-BY 2.0 (France) Attribution: tatoeba.org #61271 (CK) & #782740 (fucongcong) +Where are the strawberries? 草莓在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #5485597 (CK) & #8824156 (xjjAstrus) +Where are we going to meet? 我们在哪里见面? CC-BY 2.0 (France) Attribution: tatoeba.org #4980516 (tinnatay) & #7768148 (jiangche) +Where did you get the idea? 你哪儿来的主意? CC-BY 2.0 (France) Attribution: tatoeba.org #38193 (CK) & #334045 (fucongcong) +Where did you go yesterday? 你昨天去哪裡了? CC-BY 2.0 (France) Attribution: tatoeba.org #63281 (CK) & #842394 (Martha) +Where do I pay for the gas? 我该在哪儿付煤气费? CC-BY 2.0 (France) Attribution: tatoeba.org #38169 (CK) & #784535 (fucongcong) +Where does your uncle live? 你叔叔住在什麼地方? CC-BY 2.0 (France) Attribution: tatoeba.org #17412 (CK) & #845975 (Martha) +Where is the ticket window? 售票窗口在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #63322 (CK) & #844614 (Martha) +Where is the wedding to be? 婚礼在哪儿举行? CC-BY 2.0 (France) Attribution: tatoeba.org #238732 (CK) & #811017 (fucongcong) +Where's the telephone book? 电话簿在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #7706656 (CK) & #7768287 (jiangche) +Which book are you reading? 你在读哪本书? CC-BY 2.0 (France) Attribution: tatoeba.org #3036028 (CM) & #4757668 (ryanwoo) +Which country are you from? 你是从哪个国家来的? CC-BY 2.0 (France) Attribution: tatoeba.org #329612 (fcbond) & #75 (fucongcong) +Which judge heard the case? 哪一位法官審理此案? CC-BY 2.0 (France) Attribution: tatoeba.org #263664 (CK) & #836274 (Martha) +Who do you think they were? 你认为他们是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #2892865 (CK) & #5595223 (verdastelo9604) +Who do you want to talk to? 你想跟誰說話? CC-BY 2.0 (France) Attribution: tatoeba.org #69107 (CK) & #895448 (Martha) +Who does the gun belong to? 這把槍是屬於誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #58557 (CK) & #778519 (Martha) +Who exactly is responsible? 究竟谁要负责? CC-BY 2.0 (France) Attribution: tatoeba.org #5134829 (CK) & #5617298 (verdastelo9604) +Who invented the telephone? 谁发明了电话? CC-BY 2.0 (France) Attribution: tatoeba.org #40421 (CK) & #343714 (fucongcong) +Who is your favorite actor? 你最喜歡的演員是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #70477 (CK) & #6120154 (xjjAstrus) +Who organized that meeting? 谁组织了这次会议? CC-BY 2.0 (France) Attribution: tatoeba.org #45510 (CK) & #392241 (fucongcong) +Who were you speaking with? 你和谁说话呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2982255 (AlanF_US) & #7771910 (jiangche) +Who would want to hire Tom? 誰會想雇湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #2011839 (CK) & #6135022 (verdastelo9604) +Who'll be elected chairman? 谁将当选主席呢? CC-BY 2.0 (France) Attribution: tatoeba.org #7712694 (CK) & #1468440 (sadhen) +Who's the girl at the door? 在门口的女孩是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #7784910 (CK) & #811019 (fucongcong) +Why aren't you married yet? 你为啥还不结婚? CC-BY 2.0 (France) Attribution: tatoeba.org #6042726 (mailohilohi) & #9007585 (jacintoo) +Why do you need this money? 你為什麼需要這筆錢? CC-BY 2.0 (France) Attribution: tatoeba.org #495642 (CK) & #866160 (Martha) +Why do you study every day? 为什么你每天都学习呢? CC-BY 2.0 (France) Attribution: tatoeba.org #36473 (CK) & #2038838 (sadhen) +Why do you want to kill me? 你們為什麼想殺我? CC-BY 2.0 (France) Attribution: tatoeba.org #2033296 (CK) & #3701743 (egg0073) +Why do you want to kill me? 你為什麼想殺我? CC-BY 2.0 (France) Attribution: tatoeba.org #2033296 (CK) & #3701745 (egg0073) +Why don't you have a party? 你為什麼不舉行派對? CC-BY 2.0 (France) Attribution: tatoeba.org #35619 (CK) & #874462 (Martha) +Why is Tom still at school? 为社么汤姆还在学校? CC-BY 2.0 (France) Attribution: tatoeba.org #3738131 (CK) & #5631907 (verdastelo9604) +Why should it be different? 为什么它应该要变得不一样? CC-BY 2.0 (France) Attribution: tatoeba.org #4834922 (CK) & #4844835 (pig8322) +Why should it be necessary? 为什么它是必要的? CC-BY 2.0 (France) Attribution: tatoeba.org #4836859 (CK) & #4844735 (pig8322) +Will you send for a doctor? 你會派人去請醫生來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27906 (mcq) & #769674 (Martha) +Won't you have some coffee? 你不要點咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62282 (CK) & #6149004 (verdastelo9604) +World War II ended in 1945. 第二次世界大戰結束於1945年。 CC-BY 2.0 (France) Attribution: tatoeba.org #276061 (CK) & #798293 (Martha) +Would you close the window? 請您把窗戶關起來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274198 (CK) & #844647 (Martha) +Would you lend me a pencil? 能借我支铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1075505 (CK) & #1438613 (asosan) +Would you like more coffee? 你想再喝點咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62210 (CK) & #874025 (Martha) +Would you like some coffee? 你要喝咖啡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #62220 (CK) & #8832717 (crescat) +Would you pass me the salt? 請你把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25734 (CK) & #874216 (Martha) +Wow! It's been a long time. 哇! 好久不見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #417020 (CK) & #872387 (Martha) +You and I are good friends. 你和我是好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #17588 (CK) & #864425 (Martha) +You and I are the same age. 你和我同龄。 CC-BY 2.0 (France) Attribution: tatoeba.org #17589 (CK) & #1423324 (sadhen) +You are always watching TV. 你總是在看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #16776 (CK) & #770351 (Martha) +You are taller than she is. 你們比她高。 CC-BY 2.0 (France) Attribution: tatoeba.org #1454208 (CK) & #4262712 (egg0073) +You ask too many questions. 你问题太多了 CC-BY 2.0 (France) Attribution: tatoeba.org #3170990 (CK) & #5975075 (zhangxr91) +You can't park around here. 你不能在這附近停車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2777229 (CK) & #6623168 (verdastelo9604) +You did what was necessary. 你做了必要的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3358940 (CK) & #6070974 (verdastelo9604) +You don't need to be there. 你不必去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135177 (CK) & #6111741 (verdastelo9604) +You don't need to thank me. 您不必感谢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2665618 (FeuDRenais) & #7767730 (jiangche) +You don't seem to like Tom. 你看來不喜歡湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938560 (CK) & #6111971 (verdastelo9604) +You have a wonderful voice. 你有副好嗓音。 CC-BY 2.0 (France) Attribution: tatoeba.org #2835721 (CK) & #6073897 (verdastelo9604) +You haven't changed at all. 你一点都没变。 CC-BY 2.0 (France) Attribution: tatoeba.org #16420 (CK) & #471357 (fucongcong) +You haven't changed at all. 你真的一点没变。 CC-BY 2.0 (France) Attribution: tatoeba.org #16420 (CK) & #1323775 (vicch) +You lied to me, didn't you? 你對我說了謊, 沒有嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16090 (CK) & #778741 (Martha) +You make life worth living. 你讓生命值得活下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #70984 (CK) & #803805 (Martha) +You make me feel so guilty. 你讓我感到很內疚。 CC-BY 2.0 (France) Attribution: tatoeba.org #17522 (CK) & #795289 (Martha) +You may be late for school. 您上學可能會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #16233 (CK) & #868446 (Martha) +You may choose any of them. 你可以選擇他們之中的任何一個。 CC-BY 2.0 (France) Attribution: tatoeba.org #69932 (CK) & #793893 (Martha) +You might have heard of it. 你可能听说过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211533 (alec) & #333991 (fucongcong) +You must start immediately. 你必须马上开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #662678 (bluepie88) & #333008 (fucongcong) +You need not do it at once. 你没必要马上去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #505490 (CK) & #1361958 (sadhen) +You ought to see a dentist. 你應該去看牙醫。 CC-BY 2.0 (France) Attribution: tatoeba.org #16070 (CK) & #872128 (Martha) +You should be more careful. 你應該要更小心。 CC-BY 2.0 (France) Attribution: tatoeba.org #16359 (CK) & #844525 (Martha) +You should give up smoking. 你應該戒菸。 CC-BY 2.0 (France) Attribution: tatoeba.org #16513 (CK) & #832959 (Martha) +You should use a deodorant. 你应该用一下除臭剂。 CC-BY 2.0 (France) Attribution: tatoeba.org #3893971 (CK) & #8936662 (crescat) +You shouldn't have done it. 你不應該做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16554 (CK) & #836414 (Martha) +You two should get married. 你们两个应该结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2954791 (CK) & #6020853 (verdastelo9604) +You were late, weren't you? 你遲到了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433974 (CK) & #839097 (Martha) +You'd better eat something. 你最好吃点东西 CC-BY 2.0 (France) Attribution: tatoeba.org #4843040 (Ishao) & #4844595 (pig8322) +You'd better not wait here. 你最好不要在這裡等。 CC-BY 2.0 (France) Attribution: tatoeba.org #16717 (CK) & #840526 (Martha) +You're going to be a mommy. 你要當媽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1121820 (CM) & #6064595 (verdastelo9604) +You're liable for the debt. 你有义务还债。 CC-BY 2.0 (France) Attribution: tatoeba.org #8332962 (CK) & #332812 (fucongcong) +You're not too bad-looking. 你看起來不難看。 CC-BY 2.0 (France) Attribution: tatoeba.org #5737515 (CM) & #6534775 (verdastelo9604) +You're too young to retire. 你太年輕,不能退休。 CC-BY 2.0 (France) Attribution: tatoeba.org #3390611 (CK) & #6325066 (verdastelo9604) +Your father is pretty tall. 你爸爸很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #911296 (shanghainese) & #334118 (fucongcong) +Your memory isn't too good. 您记性不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7785203 (sharris123) & #4265029 (notabene) +Your work is below average. 你的工作表現低於平均水平。 CC-BY 2.0 (France) Attribution: tatoeba.org #17122 (CK) & #839519 (Martha) +"How do you feel?" he asked. “你感觉怎么样?”他问。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230717 (alec) & #334171 (fucongcong) +"More coffee?" "No, thanks." “还要咖啡吗?”“不了,谢谢。” CC-BY 2.0 (France) Attribution: tatoeba.org #1966978 (mseifert) & #7768117 (jiangche) +A good idea occurred to him. 他想到一个好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #325837 (CK) & #8765235 (crescat) +A man can't escape his past. 人無法逃避過去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2681949 (FeuDRenais) & #2661331 (cienias) +A mouse is a timid creature. 老鼠是胆小的生物。 CC-BY 2.0 (France) Attribution: tatoeba.org #35792 (CM) & #8795175 (crescat) +A new difficulty has arisen. 出现了新困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #269150 (CM) & #713167 (Yashanti) +A nurse took my temperature. 一個護士量了我的體溫。 CC-BY 2.0 (France) Attribution: tatoeba.org #20987 (CK) & #834360 (Martha) +A stitch in time saves nine. 小洞及時補,免遭大洞苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #406986 (xtofu80) & #806571 (Martha) +A stitch in time saves nine. 防微杜漸。 CC-BY 2.0 (France) Attribution: tatoeba.org #406986 (xtofu80) & #806576 (Martha) +All of the milk was spilled. 所有的牛奶都溢出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32213 (CK) & #897291 (Martha) +All of the milk was spilled. 所有的牛奶都灑出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32213 (CK) & #897292 (Martha) +All of them are not present. 他們所有的人都沒有出席。 CC-BY 2.0 (France) Attribution: tatoeba.org #307037 (CK) & #779529 (Martha) +All of these books are mine. 这些书都是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360853 (xrchz) & #799259 (fucongcong) +All that Jack does is sleep. 所有傑克做的事就是睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149791 (FeuDRenais) & #833058 (Martha) +An apple fell to the ground. 一個蘋果落到了地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #29639 (CK) & #6047413 (verdastelo9604) +An elephant has a long nose. 大象有長鼻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #268258 (CK) & #795291 (Martha) +Anniversaries are important. 週年紀念很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898426 (CK) & #6585429 (verdastelo9604) +Are you all listening to me? 你们在听我说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1037420 (Brian255) & #793986 (fucongcong) +Are you feeling better, Tom? 你感覺好點了嗎,湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #3394443 (CK) & #6624681 (verdastelo9604) +Are you free this afternoon? 你们今天下午有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #242545 (CK) & #8938615 (crescat) +Are you good at mathematics? 你数学好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69177 (CK) & #472397 (fucongcong) +Are you still at the office? 你還在辦公室裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3219239 (Hybrid) & #6132402 (verdastelo9604) +Aren't you happy about this? 你對此不高興嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6102550 (CK) & #6624641 (verdastelo9604) +Ask her when she comes back. 等她回来的时候问问她。 CC-BY 2.0 (France) Attribution: tatoeba.org #686489 (sysko) & #332472 (fucongcong) +At first, I had no idea why. 起初我不知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #858949 (eastasiastudent) & #858987 (Martha) +Basho was the greatest poet. Basho是最偉大的詩人。 CC-BY 2.0 (France) Attribution: tatoeba.org #282360 (CM) & #834386 (Martha) +Be careful. It's very sharp. 小心點,它很锋利。 CC-BY 2.0 (France) Attribution: tatoeba.org #2627956 (Hybrid) & #6325052 (verdastelo9604) +Both brothers are musicians. 两兄弟都是音乐家。 CC-BY 2.0 (France) Attribution: tatoeba.org #48583 (CK) & #429185 (fucongcong) +Can I have something to eat? 我能些吃的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25071 (CK) & #844618 (Martha) +Can you do that by yourself? 你自己一個人能做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6049135 (CK) & #6049582 (magicalrpetz47) +Can you feel the difference? 你能感受到不同之處嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4084371 (CK) & #6101461 (verdastelo9604) +Children often hate spinach. 小孩一般都討厭菠菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #245931 (CK) & #6937160 (xjjAstrus) +China is an emerging market. 中国是一个新兴市场。 CC-BY 2.0 (France) Attribution: tatoeba.org #813829 (U2FS) & #813639 (fucongcong) +Chinese is a tonal language. 漢語是一個聲調語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #7842263 (sharris123) & #5683213 (xjjAstrus) +Choose your favorite racket. 選擇你喜歡的球拍。 CC-BY 2.0 (France) Attribution: tatoeba.org #17187 (CK) & #819473 (Martha) +Christmas is soon, isn't it? 聖誕節很快就到了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #387466 (CK) & #833791 (Martha) +Could you sign here, please? 請你在這裡簽名好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #61518 (CK) & #834505 (Martha) +Could you solve the problem? 你能解決這個問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16569 (CK) & #833125 (Martha) +Could you take this, please? 請你拿這個好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54998 (CK) & #833047 (Martha) +Crocodiles have sharp teeth. 鳄鱼有尖利的牙齿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1254301 (Tlustulimu) & #7781739 (jiangche) +Did Tom not know what to do? 汤姆不知道该做什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5266993 (CK) & #5685890 (verdastelo9604) +Did Tom use to be a teacher? 湯姆以前是教師嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6228546 (CK) & #6325139 (verdastelo9604) +Did you already eat at home? 你在家吃过了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1343071 (mcadagio) & #1335428 (vicch) +Did you buy a return ticket? 你买回程机票了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #891658 (Swift) & #6482556 (FAErika) +Did you do this on your own? 這是你自己做的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16670 (CK) & #775826 (Martha) +Did you drink tea yesterday? 你昨天喝茶了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3157608 (CK) & #5965709 (verdastelo9604) +Did you go to the book fair? 你去書展了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1522306 (erikspen) & #9054601 (xjjAstrus) +Did you learn that from Tom? 你從湯姆那裡學到了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4012421 (CK) & #6333821 (verdastelo9604) +Did you watch TV last night? 你昨晚看電視了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244793 (CK) & #836425 (Martha) +Didn't you lock up your car? 你没有把你的车上锁吗? CC-BY 2.0 (France) Attribution: tatoeba.org #265473 (CK) & #782226 (fucongcong) +Do you believe ghosts exist? 你相信鬼存在吗? CC-BY 2.0 (France) Attribution: tatoeba.org #607745 (Samer) & #5153265 (musclegirlxyp) +Do you believe what he said? 你相信他說的話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283618 (CK) & #836407 (Martha) +Do you guys know each other? 你們認識嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2713242 (CK) & #6147817 (xjjAstrus) +Do you have anything to eat? 你有东西吃吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25073 (CK) & #1316923 (vicch) +Do you have anything to say? 你有任何話要說嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #36306 (CK) & #845474 (Martha) +Do you hear what I'm saying? 你在听我说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2305057 (muggies16) & #332820 (fucongcong) +Do you know how to use this? 你知道怎么使用吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3408710 (CK) & #5715132 (verdastelo9604) +Do you know what's happened? 你知道发生了什么事情吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3737687 (CK) & #8839834 (crescat) +Do you know where Tom lives? 你知道汤姆住哪儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1096254 (CK) & #4887567 (musclegirlxyp) +Do you like to watch movies? 你喜歡看電影嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4264743 (JFMorais) & #6120147 (xjjAstrus) +Do you need to buy anything? 你有什么需要买的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4872159 (zvzuibqx) & #4859701 (musclegirlxyp) +Do you think Tom is wealthy? 你認為湯姆有錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3172210 (CK) & #6105176 (verdastelo9604) +Do you want a cup of coffee? 来杯咖啡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #138867 (CK) & #8696299 (crescat) +Do you want anything to eat? 你想要吃任何東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69619 (CK) & #842281 (Martha) +Do you want anything to eat? 您想吃点什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69619 (CK) & #7773212 (jiangche) +Do you want this job or not? 你想不想要這工作? CC-BY 2.0 (France) Attribution: tatoeba.org #2012907 (CK) & #6860868 (verdastelo9604) +Do you want to go somewhere? 你打算去什么地方吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3146646 (Hybrid) & #8697579 (morningstar) +Do you want to speak to Tom? 你想跟汤姆说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4767203 (Stalwartlover) & #5993954 (verdastelo9604) +Doing the laundry is my job. 洗衣服是我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4837277 (AlanF_US) & #4844742 (pig8322) +Don't believe what she says. 不要相信她說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #391889 (CK) & #834533 (Martha) +Don't lean against the wall. 别倚着墙。 CC-BY 2.0 (France) Attribution: tatoeba.org #44088 (kebukebu) & #5574664 (verdastelo9604) +Don't let that happen again! 不要再让这种事发生了! CC-BY 2.0 (France) Attribution: tatoeba.org #41670 (CK) & #333710 (fucongcong) +Don't let that happen again. 不要再让这种事发生了! CC-BY 2.0 (France) Attribution: tatoeba.org #3129353 (CK) & #333710 (fucongcong) +Don't release that prisoner. 別放了那個犯人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270525 (CK) & #6131463 (verdastelo9604) +Don't talk in the classroom. 別在教室裡說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #495877 (CK) & #833220 (Martha) +Don't walk alone after dark. 不要一個人在黑暗中走。 CC-BY 2.0 (France) Attribution: tatoeba.org #28457 (CK) & #833045 (Martha) +Don't worry. You'll make it. 不要擔心。你辦得到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #269024 (CK) & #833110 (Martha) +English is spoken in Canada. 在加拿大的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26297 (CK) & #811891 (Martha) +English is studied in Japan. 在日本的人學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26245 (CK) & #811897 (Martha) +English is studied in Japan. 英語在日本被學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #26245 (CK) & #811898 (Martha) +Everybody desires happiness. 每个人都向往幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #276425 (CK) & #5655357 (verdastelo9604) +Everybody likes to goof off. 所有人都喜欢偷懒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736823 (paper1n0) & #1417575 (sadhen) +Everyone I know uses Google. 我认识的每个人都用谷歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499677 (CK) & #5780587 (verdastelo9604) +Everyone is waiting for Tom. 每個人都在等湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2094820 (CK) & #6084396 (verdastelo9604) +Father recovered his health. 爸爸恢复了健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #319118 (CM) & #8696375 (morningstar) +Feel this. It's really soft. 来摸摸这个感觉一下。真的很柔软啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1972625 (CK) & #5097611 (mirrorvan) +Get them before they get us. 在他们控制我们之前,我们先制服他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #2453076 (fenfang557) & #2453077 (fenfang557) +Get them before they get us. 先下手为强,后下手遭殃。 CC-BY 2.0 (France) Attribution: tatoeba.org #2453076 (fenfang557) & #2453078 (fenfang557) +Get up early in the morning. 早上要早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #277829 (CK) & #1423330 (sadhen) +Hands up! This is a robbery. 把手举起来!这是抢劫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1296486 (Shishir) & #4287479 (notabene) +Harvard was founded in 1636. 哈佛始建于1636年。 CC-BY 2.0 (France) Attribution: tatoeba.org #457642 (FeuDRenais) & #1358639 (sadhen) +Has she ever fallen in love? 她曾经坠入过爱河吗 ? CC-BY 2.0 (France) Attribution: tatoeba.org #317500 (CK) & #1450473 (asosan) +Has something good happened? 發生了什麼好事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2064733 (CK) & #4455730 (egg0073) +Have there been any changes? 有過任何改變嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433741 (CK) & #833128 (Martha) +Have you chosen a major yet? 你选好专业了吗 CC-BY 2.0 (France) Attribution: tatoeba.org #2777678 (CK) & #5975077 (zhangxr91) +Have you made your decision? 你决定好了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6028322 (Hybrid) & #8715886 (crescat) +Have you read this book yet? 你讀過這本書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16676 (CK) & #836403 (Martha) +Have you washed the car yet? 你洗過車子了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69743 (CK) & #839535 (Martha) +He absconded with the money. 他携款潜逃。 CC-BY 2.0 (France) Attribution: tatoeba.org #290691 (CM) & #1878433 (sadhen) +He accomplished his mission. 他完成了他的使命。 CC-BY 2.0 (France) Attribution: tatoeba.org #302296 (CK) & #1450478 (asosan) +He arrived after I had left. 我走之后他到达了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246815 (CK) & #1450481 (asosan) +He calls her up every night. 他每天晚上打電話給她。 CC-BY 2.0 (France) Attribution: tatoeba.org #303929 (CK) & #836408 (Martha) +He can pull strings for you. 他能为你暗箱操作。 CC-BY 2.0 (France) Attribution: tatoeba.org #325370 (CK) & #1450494 (asosan) +He could not breathe deeply. 他無法深呼吸。 CC-BY 2.0 (France) Attribution: tatoeba.org #299966 (CK) & #795799 (Martha) +He did not know what to say. 他不知道说什么好。 CC-BY 2.0 (France) Attribution: tatoeba.org #292310 (CK) & #1450499 (asosan) +He differs from his brother. 他和他兄弟不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #295673 (CM) & #4878657 (ziska) +He doesn't always come late. 他不是总来晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #289187 (CK) & #1450502 (asosan) +He doesn't have any friends. 他没有任何朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #284930 (CK) & #1450505 (asosan) +He doesn't have any friends. 他没有朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #284930 (CK) & #2241812 (sadhen) +He doesn't know how to swim. 他不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #510265 (minshirui) & #406690 (fucongcong) +He doesn't like to eat fish. 他不喜歡吃魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #710954 (CM) & #710953 (egg0073) +He drives a car, doesn't he? 他開車,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #299049 (CK) & #838622 (Martha) +He flew a kite with his son. 他和他的儿子放风筝了。 CC-BY 2.0 (France) Attribution: tatoeba.org #300945 (CK) & #1450516 (asosan) +He got a loan from the bank. 他從銀行得到了貸款。 CC-BY 2.0 (France) Attribution: tatoeba.org #295545 (CK) & #804608 (Martha) +He got engaged to my cousin. 他和我的堂姊妹订婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297740 (CK) & #1450523 (asosan) +He had barely enough to eat. 他仅有够糊口的吃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #293181 (CK) & #1450529 (asosan) +He hadn't eaten in two days. 他已經兩天沒吃東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #816061 (afeinberg) & #816894 (Martha) +He has been sick for a week. 他病了一星期。 CC-BY 2.0 (France) Attribution: tatoeba.org #293693 (CK) & #407248 (fucongcong) +He has more books than I do. 他拥有的书比我的多。 CC-BY 2.0 (France) Attribution: tatoeba.org #298042 (CK) & #1450530 (asosan) +He has no reason to be late. 他迟到没有理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149070 (irrationale) & #464764 (fucongcong) +He helped me do my homework. 他幫我做我的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #303732 (CK) & #848704 (Martha) +He is a bit like his father. 他有点像他的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #291757 (CK) & #335113 (fucongcong) +He is a head taller than me. 他比我高一个头。 CC-BY 2.0 (France) Attribution: tatoeba.org #298061 (CK) & #760548 (CLARET) +He is a mathematical genius. 他是一個數學天才。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020038 (CM) & #1020042 (egg0073) +He is an old friend of mine. 他是我的一位老朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #297769 (CK) & #1450532 (asosan) +He is as tall as his father. 他和他爸爸一样高。 CC-BY 2.0 (France) Attribution: tatoeba.org #47447 (CK) & #343694 (fucongcong) +He is giving me a hard time. 他跟我過不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #284805 (CK) & #804975 (Martha) +He is glad to hear the news. 他很高興聽到這個消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #291147 (CK) & #804961 (Martha) +He is just pulling your leg. 他只是跟你開玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #40862 (CK) & #848980 (Martha) +He is known as a great poet. 他以一個偉大的詩人聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #293555 (CK) & #819271 (Martha) +He is lacking in experience. 他缺乏經驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #295701 (CM) & #892581 (Martha) +He is likely to arrive soon. 他可能很快就到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292936 (CK) & #848530 (Martha) +He is looking forward to it. 他对此很期待。 CC-BY 2.0 (France) Attribution: tatoeba.org #291488 (CK) & #343277 (fucongcong) +He is not likely to succeed. 他不可能成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #301135 (CK) & #848578 (Martha) +He is rarely in a good mood. 他很少心情很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #285847 (CK) & #880275 (Martha) +He is rather hard to please. 取悅他很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #288996 (CK) & #848789 (Martha) +He is still very much alive. 他依旧充满活力。 CC-BY 2.0 (France) Attribution: tatoeba.org #292837 (CK) & #1450533 (asosan) +He is unfit to be a teacher. 他不适合当老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #295359 (CK) & #1450537 (asosan) +He likes baseball very much. 他非常喜欢棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #304250 (CK) & #333729 (fucongcong) +He likes to read newspapers. 他喜欢看报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #299946 (CK) & #1450538 (asosan) +He looks like an honest man. 他看起来忠厚老实。 CC-BY 2.0 (France) Attribution: tatoeba.org #300426 (CK) & #1450539 (asosan) +He lost everything he owned. 他失去了他擁有的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #513522 (CK) & #833194 (Martha) +He made fun of me in public. 他在公共場合取笑了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #270618 (CK) & #819248 (Martha) +He made his way to the room. 他走進了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #291254 (CK) & #802013 (Martha) +He may be on the next train. 他可能在下一班火車上。 CC-BY 2.0 (France) Attribution: tatoeba.org #298435 (CK) & #793896 (Martha) +He mistook me for my mother. 他把我誤認為是我的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #539599 (CK) & #848359 (Martha) +He painted the ceiling blue. 他把天花板刷成了蓝色。 CC-BY 2.0 (France) Attribution: tatoeba.org #301758 (CK) & #1314449 (vicch) +He plays baseball every day. 他每天都打垒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #303925 (CK) & #352063 (fucongcong) +He plays golf every weekend. 他每個週末打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #2166222 (faraway9911) & #2118650 (egg0073) +He prefers French to German. 他喜歡法語勝過德語。 CC-BY 2.0 (France) Attribution: tatoeba.org #291934 (CK) & #834531 (Martha) +He pretended not to hear me. 他假裝沒有聽見我。 CC-BY 2.0 (France) Attribution: tatoeba.org #401694 (CK) & #848590 (Martha) +He pretended to be a doctor. 他假裝是一名醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #491729 (CK) & #846177 (Martha) +He really likes music a lot. 他真的很热爱音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1316128 (CK) & #1450399 (asosan) +He really wants to meet you. 他真的想見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #411236 (CK) & #849021 (Martha) +He retired at the age of 65. 他65岁退了休。 CC-BY 2.0 (France) Attribution: tatoeba.org #288621 (Kat) & #784038 (fucongcong) +He rushed out of the office. 他急忙出了办公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #298353 (CK) & #816478 (fucongcong) +He said it merely as a joke. 他这么说就是为了开玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #301417 (CK) & #829322 (fucongcong) +He seems to have told a lie. 他似乎已經說了謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #293881 (CK) & #785164 (Martha) +He started to speak English. 他开始说英语了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294044 (CK) & #1450403 (asosan) +He threw a stone at the dog. 他朝着狗扔了块石头。 CC-BY 2.0 (France) Attribution: tatoeba.org #290758 (CK) & #1450406 (asosan) +He told me his life's story. 他跟我讲了他的人生故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396499 (CK) & #1450413 (asosan) +He told me not to tell lies. 他告訴我不要說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #297566 (CK) & #779078 (Martha) +He took her out for a drive. 他帶她出去兜風了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302871 (CK) & #879155 (Martha) +He treats me like his slave. 他對待我就像他的奴隸。 CC-BY 2.0 (France) Attribution: tatoeba.org #298162 (CK) & #848448 (Martha) +He vowed to give up smoking. 他发誓要戒烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #295417 (CK) & #332445 (fucongcong) +He was expelled from school. 他被逐出了学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #303648 (CK) & #349674 (fucongcong) +He was laughed at in public. 他在众人面前被嘲笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #300164 (CK) & #609959 (sarah) +He was standing at the door. 他站在了门口。 CC-BY 2.0 (France) Attribution: tatoeba.org #302277 (CK) & #1450414 (asosan) +He went there ten years ago. 他十年前去了那‘里。 CC-BY 2.0 (France) Attribution: tatoeba.org #288374 (CK) & #5905031 (verdastelo9604) +He went to London via Paris. 他经由巴黎去了伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #292442 (CK) & #1450416 (asosan) +He will be at home tomorrow. 他明天会在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #304091 (CK) & #333678 (fucongcong) +He will be back in a second. 他很快就会回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #296478 (CK) & #333791 (fucongcong) +He won't make it to old age. 他不會長壽。 CC-BY 2.0 (France) Attribution: tatoeba.org #502625 (CK) & #848736 (Martha) +He wrote a letter yesterday. 昨天他写好了信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257783 (CK) & #7772332 (jiangche) +He'd prefer not to eat that. 他宁愿不吃这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #794410 (eastasiastudent) & #343838 (fucongcong) +He's always been kind to me. 他总是对我很亲切。 CC-BY 2.0 (France) Attribution: tatoeba.org #300552 (CK) & #1450420 (asosan) +He's not as tall as you are. 他沒你高。 CC-BY 2.0 (France) Attribution: tatoeba.org #411314 (CK) & #877661 (Martha) +He's pale because he's sick. 他病了,所以脸色显得苍白。 CC-BY 2.0 (France) Attribution: tatoeba.org #303132 (CM) & #1361982 (sadhen) +Her dream is to visit Paris. 她的梦想是参观巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #878775 (CK) & #1415817 (sadhen) +Her garden is a work of art. 她的花园是一件艺术作品。 CC-BY 2.0 (France) Attribution: tatoeba.org #2473 (CK) & #1778261 (sadhen) +Here's a big map of Germany. 这儿有张德国的大地图。 CC-BY 2.0 (France) Attribution: tatoeba.org #61810 (CK) & #346454 (fucongcong) +His advice didn't help much. 他的忠告没起到太大的作用。 CC-BY 2.0 (France) Attribution: tatoeba.org #1099369 (CK) & #1450427 (asosan) +His cottage is on the coast. 他的村屋在海岸上。 CC-BY 2.0 (France) Attribution: tatoeba.org #320320 (CK) & #847772 (fucongcong) +His house was small and old. 他的房子又小又旧。 CC-BY 2.0 (France) Attribution: tatoeba.org #285696 (CK) & #334638 (fucongcong) +His name is not on the list. 他的名字不在名单里。 CC-BY 2.0 (France) Attribution: tatoeba.org #287649 (Swift) & #782335 (fucongcong) +Hold your horses, young man. 別那麼猴急,年輕人。 CC-BY 2.0 (France) Attribution: tatoeba.org #40043 (CK) & #834238 (Martha) +Hold your horses, young man. 握住你的馬,年輕人。 CC-BY 2.0 (France) Attribution: tatoeba.org #40043 (CK) & #834239 (Martha) +How about going for a drive? 去開車兜風怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #36959 (CK) & #848585 (Martha) +How about going out tonight? 今晚出去怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #7768930 (sharris123) & #808218 (fucongcong) +How are you doing in school? 学校怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #5839806 (CK) & #5096478 (mirrorvan) +How could it be Tom's fault? 它怎麼能是湯姆的錯? CC-BY 2.0 (France) Attribution: tatoeba.org #5842772 (CK) & #6119455 (verdastelo9604) +How dare you say that to me! 你怎麼能這麼對我說話! CC-BY 2.0 (France) Attribution: tatoeba.org #5800845 (CK) & #6483522 (verdastelo9604) +How did Tom get out of jail? 汤姆是如何出狱的? CC-BY 2.0 (France) Attribution: tatoeba.org #2891288 (CK) & #4972681 (wzhd) +How did you accomplish this? 你怎么完成的? CC-BY 2.0 (France) Attribution: tatoeba.org #4127638 (allasobirova) & #5632418 (verdastelo9604) +How did you do on your exam? 考得如何? CC-BY 2.0 (France) Attribution: tatoeba.org #263471 (CK) & #3667754 (inkarl) +How did you enjoy the party? 你在派對上玩得開心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22570 (CK) & #848605 (Martha) +How did you feel about that? 关于那件事你之前怎么想的? CC-BY 2.0 (France) Attribution: tatoeba.org #5842398 (CK) & #5842418 (59) +How did you get to know him? 你是怎么认识他的? CC-BY 2.0 (France) Attribution: tatoeba.org #38626 (CK) & #408473 (fucongcong) +How do you account for that? 你怎么解释那个? CC-BY 2.0 (France) Attribution: tatoeba.org #69928 (CK) & #1450435 (asosan) +How do you account for that? 你怎样作出的解释? CC-BY 2.0 (France) Attribution: tatoeba.org #69928 (CK) & #1450439 (asosan) +How do you view this matter? 您怎麼看這個問題? CC-BY 2.0 (France) Attribution: tatoeba.org #59461 (CM) & #918671 (Martha) +How far away is the airport? 到机场有多远? CC-BY 2.0 (France) Attribution: tatoeba.org #578779 (langulo) & #344190 (fucongcong) +How far away is your school? 你的学校有多远? CC-BY 2.0 (France) Attribution: tatoeba.org #1885904 (CK) & #6005572 (verdastelo9604) +How long did you live there? 你住在那裡多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #508845 (sysko) & #918536 (Martha) +How long have you been here? 你在這裡多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #61716 (CK) & #846571 (Martha) +How long will you stay here? 你会在这儿待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #16466 (CK) & #392265 (fucongcong) +How many apples do you want? 你要多少個蘋果? CC-BY 2.0 (France) Attribution: tatoeba.org #70217 (CK) & #848855 (Martha) +How many apples do you want? 你要幾個蘋果? CC-BY 2.0 (France) Attribution: tatoeba.org #70217 (CK) & #8824080 (xjjAstrus) +How many books does he have? 他有多少册图书? CC-BY 2.0 (France) Attribution: tatoeba.org #431128 (saeb) & #1450443 (asosan) +How many people can do that? 有多少人能做? CC-BY 2.0 (France) Attribution: tatoeba.org #3731692 (CM) & #5640720 (verdastelo9604) +How many things did you buy? 你買了多少東西? CC-BY 2.0 (France) Attribution: tatoeba.org #2167402 (CM) & #6080283 (verdastelo9604) +How much are you paying Tom? 你给汤姆多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #5206953 (CK) & #6098436 (verdastelo9604) +How much does this hat cost? 这顶帽子多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #4817730 (CK) & #5096462 (mirrorvan) +How much does this pen cost? 这支钢笔要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #7819953 (sharris123) & #363987 (fucongcong) +How much does this pen cost? 這支筆多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #7819953 (sharris123) & #790378 (Martha) +How much money do I owe you? 我欠你多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #1103243 (CK) & #1250635 (tsayng) +How old do you think Tom is? 你觉得汤姆有多大? CC-BY 2.0 (France) Attribution: tatoeba.org #1141254 (CK) & #1450452 (asosan) +How old do you think she is? 你认为她多大? CC-BY 2.0 (France) Attribution: tatoeba.org #312816 (CK) & #1450447 (asosan) +I accompanied her on a walk. 我陪她散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #261087 (CK) & #926694 (Martha) +I admit that I was careless. 我承认我大意了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1287050 (CK) & #1767821 (sadhen) +I agree with you absolutely. 我完全赞同你。 CC-BY 2.0 (France) Attribution: tatoeba.org #321772 (CK) & #1450459 (asosan) +I also had a very good time. 我也过得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #262347 (CK) & #333496 (fucongcong) +I am blind in the right eye. 我的右眼瞎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256128 (CK) & #919860 (Martha) +I am dying for a cold drink. 我迫切需要冷饮。 CC-BY 2.0 (France) Attribution: tatoeba.org #326048 (CK) & #1450467 (asosan) +I am going to see him today. 今天我要去看他。 CC-BY 2.0 (France) Attribution: tatoeba.org #242957 (CK) & #779072 (Martha) +I am going to the store now. 我現在要去這家商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #259604 (CK) & #917958 (Martha) +I am not certain about that. 对于那个,我不确信。 CC-BY 2.0 (France) Attribution: tatoeba.org #254761 (CK) & #1446749 (asosan) +I am playing volleyball now. 我现在在打排球。 CC-BY 2.0 (France) Attribution: tatoeba.org #257465 (CK) & #1446763 (asosan) +I am yours and you are mine. 我是你的,而你是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1787892 (sadhen) & #5526845 (egg0073) +I arrived at school on time. 我按时到了学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #256668 (CK) & #1446764 (asosan) +I asked Tom a few questions. 我问了汤姆几个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #3142905 (CK) & #5863226 (verdastelo9604) +I believe in what they said. 我相信他們說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #260854 (CK) & #919749 (Martha) +I bought a hat at the store. 我在這家商店買了一頂帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #254587 (CK) & #918104 (Martha) +I bought it for ten dollars. 我花10美元买的。 CC-BY 2.0 (France) Attribution: tatoeba.org #254785 (adjusting) & #1446766 (asosan) +I can only speak for myself. 我只能代表我自己講話。 CC-BY 2.0 (France) Attribution: tatoeba.org #258244 (CK) & #918558 (Martha) +I can see through your lies. 我能看穿你的謊言。 CC-BY 2.0 (France) Attribution: tatoeba.org #1005961 (darinmex) & #6325079 (verdastelo9604) +I can swim across the river. 我能游泳過河。 CC-BY 2.0 (France) Attribution: tatoeba.org #254527 (CK) & #848679 (Martha) +I can teach you how to swim. 我能教你怎样游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1739431 (Amastan) & #6325142 (verdastelo9604) +I can't believe he did that. 我不能相信他做到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1745837 (Spamster) & #5983613 (verdastelo9604) +I can't believe you love me. 我不能相信你愛我。 CC-BY 2.0 (France) Attribution: tatoeba.org #8222893 (CK) & #6119441 (verdastelo9604) +I can't do without her help. 沒有她的幫助我做不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #261280 (CK) & #919770 (Martha) +I can't find fault with him. 我挑不出他的毛病。 CC-BY 2.0 (France) Attribution: tatoeba.org #260951 (CM) & #332809 (fucongcong) +I can't resist sweet things. 我抵抗不了甜食的诱惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #21006 (CK) & #8692947 (crescat) +I can't stand his arrogance. 我受不了他的傲慢。 CC-BY 2.0 (France) Attribution: tatoeba.org #403607 (CK) & #832962 (Martha) +I could hear doors slamming. 我可以聽見門砰砰作響。 CC-BY 2.0 (France) Attribution: tatoeba.org #39073 (CK) & #918111 (Martha) +I couldn't control my anger. 我不能控制我的愤怒。 CC-BY 2.0 (France) Attribution: tatoeba.org #259649 (CK) & #5945149 (verdastelo9604) +I couldn't find it anywhere. 我在任何地方都没能找到。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076331 (CK) & #1438391 (asosan) +I crossed the river by boat. 我乘船过了河。 CC-BY 2.0 (France) Attribution: tatoeba.org #258645 (CK) & #1446769 (asosan) +I didn't catch what he said. 我没听懂他说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #260602 (CK) & #1446772 (asosan) +I didn't enjoy it very much. 我不是很喜歡它。 CC-BY 2.0 (France) Attribution: tatoeba.org #324759 (CK) & #941121 (Martha) +I didn't even consider that. 我甚至沒考慮過。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269335 (CK) & #6077442 (verdastelo9604) +I didn't expect that result. 我没有期望得到这样的结果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1636105 (Spamster) & #2007050 (sadhen) +I didn't get along with her. 我沒有和她相處過。 CC-BY 2.0 (France) Attribution: tatoeba.org #261095 (CK) & #846340 (Martha) +I didn't get your last name. 我沒有聽清楚你的姓。 CC-BY 2.0 (France) Attribution: tatoeba.org #71042 (CK) & #919960 (Martha) +I didn't mean to be selfish. 自私不是我的本意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2155929 (FeuDRenais) & #501330 (fucongcong) +I do hope you'll come again. 我很希望你会再来。 CC-BY 2.0 (France) Attribution: tatoeba.org #51301 (CK) & #745923 (fucongcong) +I do not know how to use it. 我不知道如何使用它。 CC-BY 2.0 (France) Attribution: tatoeba.org #254386 (CK) & #1428151 (sadhen) +I do not remember any of it. 我对这些都没有印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #1636075 (Spamster) & #6307287 (gumblex) +I don't drink coffee at all. 我一点咖啡也不喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #921330 (riccioberto) & #8914626 (fresky) +I don't even want to try it. 我甚至不想试试。 CC-BY 2.0 (France) Attribution: tatoeba.org #5737355 (CM) & #5967314 (verdastelo9604) +I don't go to school by bus. 我不乘公交去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #255396 (CK) & #1446774 (asosan) +I don't have any experience. 我什么经验都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #6264986 (CK) & #7767559 (jiangche) +I don't know either of them. 他们中的任何一位我都不认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #260864 (CK) & #1446777 (asosan) +I don't know if I can do it. 我不知道我能不能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543849 (CK) & #5856743 (verdastelo9604) +I don't know what I'm doing. 我不知道我在做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887247 (CK) & #6127046 (verdastelo9604) +I don't know where he lives. 我不知道他住在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #473587 (CK) & #846354 (Martha) +I don't know, nor do I care. 我不知道,也不想知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #33482 (CM) & #332786 (fucongcong) +I don't like my hair at all. 我根本不喜歡我的頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1579484 (fanty) & #6059527 (verdastelo9604) +I don't like reading at all. 我一点都不喜欢阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #8457629 (Luiaard) & #8463635 (gumblex) +I don't need to do anything. 我什么都不用做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361360 (CK) & #8463700 (gumblex) +I don't think he is sincere. 我不觉得他很诚实。 CC-BY 2.0 (France) Attribution: tatoeba.org #2067998 (CK) & #8780273 (crescat) +I don't think he is sincere. 我不相信他是真心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2067998 (CK) & #9007568 (jacintoo) +I don't think he'll say yes. 我不認為他會說好。 CC-BY 2.0 (France) Attribution: tatoeba.org #288952 (CK) & #910223 (Martha) +I don't think he'll say yes. 我不認為他會同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #288952 (CK) & #910224 (Martha) +I don't want either of them. 它们中没有我要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1156147 (CK) & #1446781 (asosan) +I don't want to look stupid. 我不想看起來傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2587002 (Hybrid) & #6149001 (verdastelo9604) +I don't want to talk to you. 我不想跟你说! CC-BY 2.0 (France) Attribution: tatoeba.org #953445 (CK) & #1446789 (asosan) +I expect you to be punctual. 我期待你能準時。 CC-BY 2.0 (France) Attribution: tatoeba.org #17514 (CK) & #849022 (Martha) +I expect you to work harder. 我希望你更加努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #17525 (CK) & #848262 (Martha) +I feel like going on a trip. 我想去旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #325508 (CK) & #1446790 (asosan) +I feel like going out today. 我今天想出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #242880 (CK) & #848941 (Martha) +I fell asleep while reading. 我看书的时候睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #322096 (Swift) & #1446791 (asosan) +I forget where I put my hat. 我忘了我把我的帽子放在哪裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736211 (CK) & #6111924 (verdastelo9604) +I found the boy fast asleep. 我发觉男孩儿酣然入睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246752 (CK) & #1446795 (asosan) +I gave it to the little boy. 我把它給這個小男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #254828 (CK) & #805232 (Martha) +I go by the nickname "Itch." 我用我的暱稱"Itch"。 CC-BY 2.0 (France) Attribution: tatoeba.org #435588 (CK) & #846433 (Martha) +I got a shave and a haircut. 我刮了鬍子並理了髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #318212 (CK) & #804589 (Martha) +I got him to fix my bicycle. 我讓他修理了我的腳踏車。 CC-BY 2.0 (France) Attribution: tatoeba.org #260412 (CK) & #804548 (Martha) +I got my friends to help me. 我請我的朋友來幫助我。 CC-BY 2.0 (France) Attribution: tatoeba.org #262045 (CK) & #802497 (Martha) +I got this bicycle for free. 我免費得到了這輛自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #490037 (CK) & #848998 (Martha) +I got your letter yesterday. 我昨天收到了你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #497477 (FeuDRenais) & #835445 (Martha) +I guess it was our bad luck. 我猜这是我们的运气坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #5250872 (CK) & #5632405 (verdastelo9604) +I had a good opinion of her. 我對她的評價很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #261334 (CH) & #801908 (Martha) +I had a phone call from him. 我接到了他打來的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #283344 (CK) & #880316 (Martha) +I had no right to interfere. 我没有权利干涉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331702 (CK) & #8635485 (slo_oth) +I hardly ever go to museums. 我几乎不去博物馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952098 (CK) & #8832693 (crescat) +I have a bad headache today. 今天我头痛欲裂。 CC-BY 2.0 (France) Attribution: tatoeba.org #257586 (CK) & #332993 (fucongcong) +I have a shower every night. 我每晚洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #848643 (Cainntear) & #707281 (Yashanti) +I have a slight fever today. 我今天有點發燒。 CC-BY 2.0 (France) Attribution: tatoeba.org #242900 (CK) & #848733 (Martha) +I have a thorn in my finger. 我的手指頭有一根刺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2266988 (_undertoad) & #2638715 (cienias) +I have been to the barber's. 我去了理发店。 CC-BY 2.0 (France) Attribution: tatoeba.org #325349 (CK) & #1446796 (asosan) +I have finished my homework. 我已經完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #255026 (CK) & #834803 (Martha) +I have just finished eating. 我刚刚吃完。 CC-BY 2.0 (France) Attribution: tatoeba.org #1369314 (CK) & #1878330 (sadhen) +I have never been to Europe. 我从没去过欧洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #256087 (CC) & #334093 (fucongcong) +I have no home to return to. 我無家可回。 CC-BY 2.0 (France) Attribution: tatoeba.org #4269248 (CK) & #6197299 (verdastelo9604) +I have no idea what to wear. 我不知道要穿什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5356545 (Hybrid) & #6047505 (verdastelo9604) +I have no knife to cut with. 我沒有刀子可用來切。 CC-BY 2.0 (France) Attribution: tatoeba.org #259026 (CK) & #883132 (Martha) +I have nothing better to do. 我没有其他更好的事情去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1451 (akaihen) & #1446800 (asosan) +I have seen the film before. 我已经看过这部电影了。 CC-BY 2.0 (France) Attribution: tatoeba.org #254229 (BE) & #7166 (fucongcong) +I have to ask you something. 我得问你点事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064738 (CK) & #5989209 (verdastelo9604) +I have to cook dinner today. 我今天要准备晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #257600 (CK) & #342851 (fucongcong) +I haven't seen you for ages. 我已經有很長的時間沒有見到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #417019 (CK) & #846331 (Martha) +I heard a knock at the door. 我聽到了敲門聲。 CC-BY 2.0 (France) Attribution: tatoeba.org #239933 (CK) & #889161 (Martha) +I held my breath and waited. 我屏住了呼吸等待着。 CC-BY 2.0 (France) Attribution: tatoeba.org #259204 (CK) & #2002974 (sunnywqing) +I hope everything goes well. 我希望万事如意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734351 (CK) & #5685932 (verdastelo9604) +I hope people are satisfied. 我希望人们满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #4953365 (CK) & #5637361 (verdastelo9604) +I hope that is not the case. 我希望事情並非如此。 CC-BY 2.0 (France) Attribution: tatoeba.org #433714 (CK) & #880924 (Martha) +I hope you'll get well soon. 我希望您快就会好起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #70414 (CK) & #335512 (fucongcong) +I hope you'll get well soon. 我希望你很快就會好。 CC-BY 2.0 (France) Attribution: tatoeba.org #70414 (CK) & #889557 (Martha) +I hope you'll soon get well. 我希望您快就会好起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #52042 (CK) & #335512 (fucongcong) +I intend to become a lawyer. 我有志成为一名律师。 CC-BY 2.0 (France) Attribution: tatoeba.org #261715 (CK) & #1397104 (mtdot) +I invited them to the party. 我邀請了他們參加派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #29023 (CK) & #846096 (Martha) +I know I did an awful thing. 我知道,我做了很可怕的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375986 (CK) & #7773133 (jiangche) +I know it's hard to believe. 我知道,要相信这件事很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376052 (CK) & #7771860 (jiangche) +I know people think I'm odd. 我知道人們認為我古怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #5249715 (CK) & #6111850 (verdastelo9604) +I know that you like sports. 我知道你喜欢体育运动。 CC-BY 2.0 (France) Attribution: tatoeba.org #7521027 (CK) & #7767643 (jiangche) +I know what I did was wrong. 我知道我做错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376270 (CK) & #5663534 (verdastelo9604) +I know what can happen here. 我知道这里会发生什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376263 (CK) & #8632110 (ZeroAurora) +I know where I'm going next. 我知道我接下來去哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376443 (CK) & #6103206 (verdastelo9604) +I lent my friend some money. 我借给了朋友一些钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318768 (CK) & #1446804 (asosan) +I like rice more than bread. 比起面包,我更喜欢米饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1626134 (CM) & #8761470 (crescat) +I like strawberry ice cream. 我喜歡草莓味的冰淇淋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1129683 (CK) & #8824163 (xjjAstrus) +I like your way of thinking. 我喜歡你思考的方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #7681624 (potatoindespair) & #3158528 (cienias) +I live in this neighborhood. 我住在這附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #413830 (CK) & #826271 (Martha) +I look after my grandfather. 我照顧我的爺爺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315159 (CK) & #850391 (Martha) +I lost my way in the forest. 我在树林里迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258838 (CK) & #678189 (Martha) +I love her and she loves me. 我愛她,她也愛我。 CC-BY 2.0 (France) Attribution: tatoeba.org #321946 (CK) & #803868 (Martha) +I love to make people laugh. 我喜歡逗人笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5248415 (CK) & #6628663 (verdastelo9604) +I made an apple pie for you. 我做了一個蘋果派給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71704 (CK) & #908522 (Martha) +I met your father yesterday. 昨天我見到了你父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #257766 (CK) & #835351 (Martha) +I must help her at any cost. 我必须不惜一切代价帮助她。 CC-BY 2.0 (France) Attribution: tatoeba.org #36668 (CK) & #1446807 (asosan) +I must make up for the loss. 我必须弥补损失。 CC-BY 2.0 (France) Attribution: tatoeba.org #254536 (CK) & #1416297 (sadhen) +I need someone to talk with. 我得找人商量一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #326546 (CK) & #1446809 (asosan) +I need to search for my pen. 我得查找一下我的笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #1148932 (CK) & #1446819 (asosan) +I only took a bite of bread. 我仅仅吃了口面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #254943 (CK) & #1446821 (asosan) +I plan to break up with her. 我打算與她分手。 CC-BY 2.0 (France) Attribution: tatoeba.org #394802 (CK) & #881904 (Martha) +I plan to never drink again. 我打算絕不再喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #719240 (eastasiastudent) & #719246 (egg0073) +I play tennis an hour a day. 我每天打一小时网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #39394 (CK) & #1446822 (asosan) +I really didn't even notice. 我真的根本沒注意到。 CC-BY 2.0 (France) Attribution: tatoeba.org #5737208 (CM) & #6325098 (verdastelo9604) +I really enjoy your company. 我非常享受你的陪伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #4583943 (AlanF_US) & #4844756 (sadhen) +I really enjoyed last night. 我昨晚真盡興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2390830 (CK) & #6149000 (verdastelo9604) +I recorded our conversation. 我录下了我们的谈话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2392555 (CK) & #7781510 (jiangche) +I remember locking the door. 我記得鎖門了。 CC-BY 2.0 (France) Attribution: tatoeba.org #321667 (CK) & #835798 (Martha) +I saw a girl with long hair. 我看见一个长头发的女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #278062 (CK) & #332523 (fucongcong) +I saw a strange woman there. 我看见那儿有个奇怪的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #254079 (CK) & #346810 (fucongcong) +I saw a strange woman there. 我看见一位陌生女人在那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #254079 (CK) & #1446847 (asosan) +I saw him crossing the road. 我看见他穿过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #260129 (CK) & #405046 (fucongcong) +I see a woman wearing black. 我看见一个穿黑衣服的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #387558 (Mouseneb) & #333954 (fucongcong) +I see her sweeping the room. 我看见她在打扫房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #599699 (baisong) & #461679 (fucongcong) +I should not have said that. 我不该说那个。 CC-BY 2.0 (France) Attribution: tatoeba.org #327534 (CK) & #1446852 (asosan) +I shouldn't have logged off. 我不该退出的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442 (CK) & #335054 (fucongcong) +I shouldn't have logged off. 我不應該登出。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442 (CK) & #751686 (Martha) +I slipped the letter to him. 我悄悄把信给了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260281 (CK) & #1446860 (asosan) +I solved the problem easily. 我很容易地解決了這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #43617 (CK) & #834812 (Martha) +I sometimes break the rules. 我有时候打破规矩。 CC-BY 2.0 (France) Attribution: tatoeba.org #5860530 (CK) & #5862096 (verdastelo9604) +I stayed at home last night. 我昨晚待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257834 (CK) & #858221 (Martha) +I stayed up all night again. 我又熬夜了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6106238 (Sethlang) & #6069406 (xjjAstrus) +I stayed up late last night. 我昨晚睡得晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #257711 (CK) & #1446863 (asosan) +I still need to talk to you. 我还有话要对您说。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396122 (CK) & #4878741 (musclegirlxyp) +I sure hope this is a dream. 我当然希望这是一个梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #700478 (Zifre) & #1428154 (sadhen) +I thanked Mary for her help. 我对玛丽的帮助表示了感谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #255719 (CK) & #334864 (fucongcong) +I think I'm going to go now. 我认为我现在该走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4908593 (Hybrid) & #5926167 (verdastelo9604) +I think he will do his best. 我認為他會盡力而為。 CC-BY 2.0 (France) Attribution: tatoeba.org #513544 (CK) & #889164 (Martha) +I think he's a great writer. 我认为他是位伟大的作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103619 (CK) & #1446868 (asosan) +I think it'll turn out fine. 我觉得没问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #5247040 (CK) & #8955192 (crescat) +I think it's very difficult. 我認為它很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #4999849 (CK) & #6293058 (verdastelo9604) +I think maybe Tom was right. 我認為湯姆可能是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408126 (CK) & #6131468 (verdastelo9604) +I think that Tom lied to us. 我觉得汤姆对我们撒谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7169418 (CK) & #8926979 (crescat) +I think we need a doggy bag. 看來我們得打包了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1073080 (CM) & #1073081 (egg0073) +I thought he was my brother. 我以为他是我弟弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #471075 (CK) & #472825 (fucongcong) +I threw a stone at the bird. 我扔了块石头打向鸟儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #254577 (CK) & #1446878 (asosan) +I took a cab to the station. 我搭了計程車到車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #256276 (CK) & #888594 (Martha) +I took the fact for granted. 我忽略了事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #254419 (CK) & #1416062 (sadhen) +I try not to think about it. 我試著不去想了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159938 (tinytina) & #738378 (Martha) +I visit him every other day. 我每隔一天拜訪他。 CC-BY 2.0 (France) Attribution: tatoeba.org #466174 (CK) & #850133 (Martha) +I want to be as tall as Tom. 我想和Tom一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033387 (CK) & #3701753 (egg0073) +I want to eat pizza tonight. 我今晚想吃些批萨。 CC-BY 2.0 (France) Attribution: tatoeba.org #895382 (pauldhunt) & #335313 (fucongcong) +I want to go to see a movie. 我要去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #716666 (CM) & #716665 (egg0073) +I want to keep my car there. 我想把我的車停放在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #530378 (CK) & #875276 (Martha) +I want to know why I'm here. 我想知道我為甚麼在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033391 (CK) & #6132401 (verdastelo9604) +I want to learn how to swim. 我想学习如何游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #256169 (CK) & #1446881 (asosan) +I want to see him very much. 我非常想见到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #255232 (CK) & #843420 (fucongcong) +I want to talk to your boss. 我想跟你老板谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #3248560 (Hybrid) & #5551158 (verdastelo9604) +I want to visit South Korea. 我想访问韩国。 CC-BY 2.0 (France) Attribution: tatoeba.org #557329 (CK) & #1446885 (asosan) +I want us to do it together. 我想讓我們一起做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2013001 (CK) & #6309835 (verdastelo9604) +I warmed myself in the bath. 我泡了个澡身体暖和起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261596 (CK) & #4757730 (ryanwoo) +I warned him not to be late. 我警告了他不要遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #403378 (CK) & #883499 (Martha) +I was absent from the party. 我沒去派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #29009 (CK) & #858218 (Martha) +I was amazed at his courage. 我對他的勇氣感到驚訝。 CC-BY 2.0 (France) Attribution: tatoeba.org #287712 (CK) & #872133 (Martha) +I was born on April 3, 1950. 我出生于1950年4月3日。 CC-BY 2.0 (France) Attribution: tatoeba.org #252428 (CK) & #1446886 (asosan) +I was tired, so I didn't go. 我累了,所以我沒去。 CC-BY 2.0 (France) Attribution: tatoeba.org #261405 (CK) & #887823 (Martha) +I was very tired last night. 我昨晚很累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244736 (CK) & #857816 (Martha) +I will not attend the party. 我将不出席派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #254189 (CK) & #1446888 (asosan) +I will not see him any more. 我不会再见他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255792 (CK) & #1446889 (asosan) +I will show you the picture. 我会给你看图片。 CC-BY 2.0 (France) Attribution: tatoeba.org #252763 (CK) & #5978324 (verdastelo9604) +I will wait until she comes. 我会等到她来。 CC-BY 2.0 (France) Attribution: tatoeba.org #308541 (CK) & #346007 (fucongcong) +I wish I hadn't bought this. 我希望我沒買這東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5168456 (CK) & #6903860 (verdastelo9604) +I wish I were a good singer. 但願我是一個好歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #23928 (CK) & #894331 (Martha) +I wish I were a good singer. 但愿我是一个好歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #23928 (CK) & #1415841 (sadhen) +I wish I were an only child. 我要是个独子就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3054089 (WestofEden) & #4906169 (musclegirlxyp) +I wish you a happy birthday. 我祝你生日快乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #897532 (CM) & #1490466 (sadhen) +I wish you had come with us. 要是你和我們一起來就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68836 (CK) & #891327 (Martha) +I wish you had told me that. 但願你告訴過我就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41837 (CK) & #893997 (Martha) +I wish you had told me that. 要是你告訴過我就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41837 (CK) & #894000 (Martha) +I wish you the best of luck. 祝你好運。 CC-BY 2.0 (France) Attribution: tatoeba.org #240806 (CK) & #891059 (Martha) +I wish you were close to me. 我希望你在我身边。 CC-BY 2.0 (France) Attribution: tatoeba.org #17922 (wwkudu) & #1501737 (fenfang557) +I won't be home next Sunday. 我下周日不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755351 (garborg) & #333554 (fucongcong) +I won't talk to him anymore. 我不會再跟他說話了。 CC-BY 2.0 (France) Attribution: tatoeba.org #411318 (CK) & #861436 (Martha) +I won't work overtime today. 今天我不加班。 CC-BY 2.0 (France) Attribution: tatoeba.org #242857 (CK) & #801570 (Martha) +I wonder if Tom can help us. 我不知道湯姆能不能幚我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952675 (CK) & #6333814 (verdastelo9604) +I wonder why nobody told me. 不知道为什么没有人告诉过我。 CC-BY 2.0 (France) Attribution: tatoeba.org #38652 (papabear) & #5091378 (mirrorvan) +I work every day but Sunday. 除了星期天我每一天都工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #477261 (CK) & #850360 (Martha) +I work every day but Sunday. 我除了星期天外每天都上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #477261 (CK) & #860535 (Martha) +I would do anything for Tom. 我会为汤姆做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3539499 (CK) & #5581766 (verdastelo9604) +I would like to go home now. 我現在想回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39487 (CK) & #874163 (Martha) +I would like to go with you. 我想和你一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #27692 (CK) & #7774771 (jiangche) +I wouldn't buy that for Tom. 我不會給湯姆買那東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #6228814 (CK) & #6624678 (verdastelo9604) +I'd like a room in the back. 我想要一間後面的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #325374 (CK) & #801404 (Martha) +I'd like to buy half a cake. 我想买半个蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #681128 (Source_VOA) & #5863296 (verdastelo9604) +I'd like to join your group. 我想加入你们的团对。 CC-BY 2.0 (France) Attribution: tatoeba.org #71562 (CK) & #1446893 (asosan) +I'd like to see your father. 我想去看你的父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #17408 (CK) & #852211 (Martha) +I'd like to see your sister. 我想见你的姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #70382 (CK) & #1446895 (asosan) +I'll act as a guide for you. 我为你充当导游。 CC-BY 2.0 (France) Attribution: tatoeba.org #246418 (CK) & #1446898 (asosan) +I'll be back by six o'clock. 我将6点回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #262300 (CK) & #1446899 (asosan) +I'll be back in ten minutes. 我10分钟后回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #73382 (CK) & #1446901 (asosan) +I'll be seventeen next year. 我明年17岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #325124 (CK) & #1446903 (asosan) +I'll be there rain or shine. 風雨無阻我都會在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #26844 (CK) & #855700 (Martha) +I'll buy a watch for my son. 我将给儿子买块手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #259225 (CK) & #1446905 (asosan) +I'll get started right away. 我會立刻開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543673 (CK) & #6119482 (verdastelo9604) +I'll get you something nice. 我会给点你好东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5320769 (mailohilohi) & #5842644 (verdastelo9604) +I'll gladly pay you anytime. 我隨時樂意付錢給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #576969 (kebukebu) & #886593 (Martha) +I'll have to think about it. 我将考虑考虑。 CC-BY 2.0 (France) Attribution: tatoeba.org #241008 (CK) & #1446908 (asosan) +I'll leave this work to you. 我會把這個工作留給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #59141 (CK) & #849825 (Martha) +I'll pay you back next week. 我下週去還你錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543647 (CK) & #6316315 (xjjAstrus) +I'll see you next Wednesday. 我下星期三见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #953809 (CK) & #1446911 (asosan) +I'll tell Tom you said that. 我會告訴湯姆你說了那話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543628 (CK) & #6150896 (verdastelo9604) +I'll try my best today, too. 今天我也会努力的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1050547 (CK) & #1446913 (asosan) +I'm a little angry with you. 我對你有一點生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #33487 (CK) & #862896 (Martha) +I'm afraid I have to go now. 恐怕我现在得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41697 (CK) & #1446914 (asosan) +I'm already full, thank you. 我已经吃饱了,谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #586899 (Shoyren) & #333663 (fucongcong) +I'm already full, thank you. 我已经很饱了,谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #586899 (Shoyren) & #8899473 (crescat) +I'm amazed at your audacity. 我对你的厚颜无耻感到惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873120 (CK) & #332996 (fucongcong) +I'm an actress, not a model. 我是演员,不是模特。 CC-BY 2.0 (France) Attribution: tatoeba.org #5644479 (Hybrid) & #5715131 (verdastelo9604) +I'm glad I was able to help. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543602 (CK) & #5097642 (mirrorvan) +I'm glad Mary isn't my wife. 我很高兴玛丽不是我的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5427259 (CK) & #8591217 (easononizuka) +I'm going to propose to her. 我打算向她求婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #308860 (CK) & #1446918 (asosan) +I'm just looking, thank you. 我只是看看, 謝謝你。 CC-BY 2.0 (France) Attribution: tatoeba.org #38407 (CK) & #793266 (Martha) +I'm looking over his report. 我在阅读他的报告。 CC-BY 2.0 (France) Attribution: tatoeba.org #260536 (CK) & #1446921 (asosan) +I'm not sure Tom would help. 我不確定湯姆能不能幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543512 (CK) & #6028076 (verdastelo9604) +I'm really glad you're here. 你能来我真高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543492 (CK) & #3671241 (shirleyleee) +I'm seeing her this evening. 我打算今晚和她约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #243266 (CK) & #1446928 (asosan) +I'm sorry to disappoint you. 我對讓你失望感到抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3519544 (CK) & #6150022 (verdastelo9604) +I'm starting to dislike her. 我开始不喜欢她了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1102298 (CK) & #1446936 (asosan) +I'm studying in the library. 我正在图书馆学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #1488371 (marco87) & #6093308 (verdastelo9604) +I'm sure that he'll succeed. 我肯定他会成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #627303 (CK) & #333257 (fucongcong) +I'm sure that he'll succeed. 我相信他會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #627303 (CK) & #818152 (Martha) +I'm talking about my friend. 我在談我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1199513 (Anon) & #6293070 (verdastelo9604) +I'm the owner of this house. 我是這房子的主人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5243413 (CK) & #6064651 (verdastelo9604) +I'm used to staying up late. 我习惯晚睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1058983 (CK) & #1446942 (asosan) +I'm very interested in jazz. 我對爵士樂很有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938159 (CK) & #6393358 (verdastelo9604) +I'm very proud of my father. 我非常以我的父親為榮。 CC-BY 2.0 (France) Attribution: tatoeba.org #261560 (CK) & #919944 (Martha) +I'm worried about my weight. 我担心我的体重。 CC-BY 2.0 (France) Attribution: tatoeba.org #1200741 (CK) & #1446952 (asosan) +I've been learning to drive. 我一直在學開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #265505 (CK) & #849267 (Martha) +I've caught a terrible cold. 我得了一種可怕的感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #34712 (CK) & #835700 (Martha) +I've climbed Mt. Fuji twice. 我爬過兩次富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #261486 (CK) & #793325 (Martha) +I've got a lot of questions. 我有许多问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #5641546 (CK) & #5702559 (verdastelo9604) +I've got to try to find Tom. 我试图找到Tom。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359781 (CK) & #4844974 (pig8322) +I've heard this joke before. 我以前聽過這笑話。 CC-BY 2.0 (France) Attribution: tatoeba.org #4949956 (CK) & #6028175 (verdastelo9604) +I've heard you've been sick. 我听说你病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318395 (CK) & #1867075 (yuzazaza) +I've lost one of my folders. 我丢了我的一个文件夹。 CC-BY 2.0 (France) Attribution: tatoeba.org #7802099 (CK) & #843495 (fucongcong) +I've lost patience with Tom. 我对汤姆失去了耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5619937 (CK) & #5694954 (verdastelo9604) +I've met so many new people. 我遇見了許多新的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5243181 (CK) & #6086783 (verdastelo9604) +I've never climbed Mt. Fuji. 我從來沒有爬過富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #261490 (CK) & #793327 (Martha) +I've worn holes in my socks. 我把襪子穿破了。 CC-BY 2.0 (France) Attribution: tatoeba.org #714352 (CM) & #714348 (egg0073) +I, for one, am for the plan. 就個人而言, 我贊同這個計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #257294 (CM) & #779052 (Martha) +Iceland belonged to Denmark. 冰岛曾属于丹麦。 CC-BY 2.0 (France) Attribution: tatoeba.org #424864 (FeuDRenais) & #5865505 (verdastelo9604) +If you are tired, go to bed. 你若累了,就去睡個覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #30634 (CK) & #3704984 (egg0073) +In my opinion, you're wrong. 在我看来,你错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1057886 (human600) & #7771922 (jiangche) +Is Tom able to speak French? Tom能说法文吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2953015 (CK) & #4844993 (pig8322) +Is it going to snow tonight? 今晚会下雪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #954972 (FeuDRenais) & #334748 (fucongcong) +Is it hard to speak English? 說英語很難嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26189 (CK) & #790672 (Martha) +Is there a cat on the table? 桌子上有只猫吗? CC-BY 2.0 (France) Attribution: tatoeba.org #39601 (CK) & #1446967 (asosan) +Is there anyone in the room? 房间里有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319502 (CK) & #349657 (fucongcong) +Is there anyone in the room? 屋里有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319502 (CK) & #787585 (fucongcong) +Is there anything I must do? 有什么事是我该做的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #274614 (CK) & #334319 (fucongcong) +Is this jacket right for me? 我穿這件外套好看嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #61042 (CM) & #1261436 (tsayng) +Is this snake safe to touch? 摸這條蛇安全嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58694 (CK) & #786139 (Martha) +Is your school in this town? 你的学校在这个城市吗? CC-BY 2.0 (France) Attribution: tatoeba.org #70774 (CK) & #332900 (fucongcong) +It doesn't make sense to me. 这对于我来说没任何意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #249869 (CK) & #2440958 (fenfang557) +It happened a long time ago. 这事发生在很多年以前。 CC-BY 2.0 (France) Attribution: tatoeba.org #6024 (CK) & #1446972 (asosan) +It has had no effect on him. 这对他没有影响。 CC-BY 2.0 (France) Attribution: tatoeba.org #42172 (CM) & #332838 (fucongcong) +It is a nice view from here. 从这儿看景色很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #62117 (CK) & #1446976 (asosan) +It is a sheer waste of time. 這完全是浪費時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #42273 (CM) & #918098 (Martha) +It is an endangered species. 这是一个濒临灭绝的物种。 CC-BY 2.0 (France) Attribution: tatoeba.org #797152 (U2FS) & #797541 (fucongcong) +It is an endangered species. 这是一个濒临消失的物种。 CC-BY 2.0 (France) Attribution: tatoeba.org #797152 (U2FS) & #797542 (fucongcong) +It is easier than I thought. 它比我想的容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #246223 (CK) & #881088 (Martha) +It is just your imagination. 那只是你的想象。 CC-BY 2.0 (France) Attribution: tatoeba.org #42489 (CK) & #466187 (fucongcong) +It is just your imagination. 这只是你的想象。 CC-BY 2.0 (France) Attribution: tatoeba.org #42489 (CK) & #745820 (fucongcong) +It is none of your business. 跟你没半毛钱关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #42807 (CK) & #5091948 (mirrorvan) +It never rains but it pours. 不下雨則矣,一下一定是傾盆大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #3387145 (CK) & #859177 (Martha) +It never rains but it pours. 禍不單行。 CC-BY 2.0 (France) Attribution: tatoeba.org #3387145 (CK) & #859179 (Martha) +It suddenly started raining. 突然開始下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1468208 (CK) & #797087 (Martha) +It was absolutely brilliant. 它真是太妙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5736710 (CM) & #8570958 (verdastelo9604) +It was rather easy for them. 這是對他們來說相當容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #68166 (CK) & #855673 (Martha) +It was too difficult for me. 它對我來說太困難了。 CC-BY 2.0 (France) Attribution: tatoeba.org #42106 (CK) & #863973 (Martha) +It'll cost about 10,000 yen. 它將花費大約10,000日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #476643 (CK) & #836113 (Martha) +It'll soon be three o'clock. 很快就要三點鐘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #519325 (CK) & #834871 (Martha) +It's a very serious illness. 这是很严重的病。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085942 (CK) & #5780588 (verdastelo9604) +It's been snowing all night. 雪下了一整夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #6034 (CK) & #1659564 (vicch) +It's boring to stay at home. 呆在家里很无聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1046425 (CK) & #1446982 (asosan) +It's fun to speak in French. 说法语很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451556 (CK) & #8496234 (gumblex) +It's just around the corner. 就在转角处。 CC-BY 2.0 (France) Attribution: tatoeba.org #52272 (autuno) & #746039 (fucongcong) +It's not a road, but a path. 它不是一條路,而是一條小徑。 CC-BY 2.0 (France) Attribution: tatoeba.org #42204 (CK) & #798227 (Martha) +It's not hard to understand. 不難理解。 CC-BY 2.0 (France) Attribution: tatoeba.org #5087182 (CK) & #6077357 (verdastelo9604) +It's nothing to worry about. 沒什麼好擔心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #449020 (CK) & #834951 (Martha) +It's too hot for us to work. 太熱了所以我們無法工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #37787 (CK) & #798402 (Martha) +Keep oil away from the fire. 讓油遠離火。 CC-BY 2.0 (France) Attribution: tatoeba.org #324267 (CK) & #797054 (Martha) +Kobe is famous for its port. 神戶是著名的港口。 CC-BY 2.0 (France) Attribution: tatoeba.org #269686 (CK) & #797111 (Martha) +Kyoto has many universities. 京都有很多所大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #19318 (CK) & #333508 (fucongcong) +Leave the book where it was. 把书放在原处。 CC-BY 2.0 (France) Attribution: tatoeba.org #1723986 (erikspen) & #5818090 (verdastelo9604) +Let me give you some advice. 讓我給你一些建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #17567 (CK) & #858244 (Martha) +Let me introduce you to him. 讓我把你介紹給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #284539 (CK) & #5542975 (egg0073) +Let your hair down a little. 稍微随意一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #20367 (CK) & #5092019 (mirrorvan) +Let's assume that'll happen. 讓我們假定那會發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #5736648 (CM) & #6064674 (verdastelo9604) +Let's clear up this problem. 让我们来澄清一下这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #56664 (CK) & #332536 (fucongcong) +Let's clear up this problem. 把问题澄清一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #56664 (CK) & #333401 (fucongcong) +Let's eat now. I'm starving. 咱们吃吧!我饿死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1051877 (CK) & #2116863 (sadhen) +Let's see what's in the box. 看看我會在盒子裡找到什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #4008892 (JSakuragi) & #3763505 (cienias) +Let's start with Lesson Ten. 我们从第十课开始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #73451 (CK) & #1446985 (asosan) +Lincoln set the slaves free. 林肯釋放了奴隸。 CC-BY 2.0 (France) Attribution: tatoeba.org #29645 (CM) & #835366 (Martha) +Listen and listen carefully. 听而且听仔细。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496294 (CK) & #5611652 (verdastelo9604) +Many books have been stolen. 很多书被盗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8249401 (francaisr0wlet) & #7768221 (jiangche) +Mary helped her mother cook. 瑪麗幫她媽媽做飯 CC-BY 2.0 (France) Attribution: tatoeba.org #423892 (CK) & #835772 (Martha) +Mary is pregnant with twins. 玛丽怀了双胞胎。 CC-BY 2.0 (France) Attribution: tatoeba.org #5819682 (Hybrid) & #5819707 (verdastelo9604) +Mary is sitting at the desk. 瑪麗正坐在辦公桌旁。 CC-BY 2.0 (France) Attribution: tatoeba.org #31949 (CK) & #864330 (Martha) +May I have a napkin, please? 請給我一張餐巾紙好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #36286 (CK) & #850354 (Martha) +May I have some more coffee? 我可以再要些咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #499362 (CK) & #860848 (Martha) +May I speak to you a minute? 我可以和你講一下話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267692 (CK) & #795288 (Martha) +Maybe we should open it now. 我們現在可能該打開它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821928 (CK) & #6098439 (verdastelo9604) +Mix the flour with two eggs. 把麵粉和兩顆雞蛋混合。 CC-BY 2.0 (France) Attribution: tatoeba.org #320017 (CK) & #798055 (Martha) +Mom is getting dinner ready. 媽媽快把晚餐準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #486130 (CK) & #834964 (Martha) +Most people think I'm crazy. 大部份的人覺得我瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1322 (CK) & #39 (Martha) +My French isn't good enough. 我的法语说得不够好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5941368 (peterius) & #472809 (fucongcong) +My aunt made me a new skirt. 我阿姨做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266655 (CK) & #801965 (Martha) +My aunt made me a new skirt. 我舅母做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266655 (CK) & #801966 (Martha) +My aunt made me a new skirt. 我嬸嬸做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266655 (CK) & #801967 (Martha) +My aunt made me a new skirt. 我姑姑做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266655 (CK) & #801968 (Martha) +My birthday falls on Sunday. 我的生日在星期日。 CC-BY 2.0 (France) Attribution: tatoeba.org #251422 (CK) & #919630 (Martha) +My blood type is A positive. 我的血型是A型血阳性。 CC-BY 2.0 (France) Attribution: tatoeba.org #652516 (darinmex) & #812379 (fucongcong) +My car isn't red. It's blue. 我的汽車不是紅色的, 而是藍色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794500 (CK) & #765303 (Martha) +My car's not red. It's blue. 我的汽車不是紅色的, 而是藍色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794501 (CK) & #765303 (Martha) +My father has five siblings. 我父親有五個兄弟姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #1265004 (yifen238) & #894386 (Martha) +My father is in good health. 我父亲身体很健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #319120 (CK) & #784039 (fucongcong) +My father made me what I am. 我父親讓我知道了我自己是誰。 CC-BY 2.0 (France) Attribution: tatoeba.org #246767 (CK) & #801955 (Martha) +My father runs a restaurant. 我的父親經營一家餐館。 CC-BY 2.0 (France) Attribution: tatoeba.org #64068 (CK) & #834658 (Martha) +My grades are above average. 我的成績高於平均水平。 CC-BY 2.0 (France) Attribution: tatoeba.org #477358 (CK) & #834996 (Martha) +My grandson is still a baby. 我的孫子還是個嬰兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #814624 (brauliobezerra) & #816816 (Martha) +My left eyelid is twitching. 我的左眼皮在跳。 CC-BY 2.0 (France) Attribution: tatoeba.org #8018060 (AlanF_US) & #8555762 (slo_oth) +My mother left me a message. 我媽媽留了口信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #484054 (CK) & #860973 (Martha) +My mother made me a sweater. 我媽媽為我做了一件毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #484058 (CK) & #860835 (Martha) +My mother never punishes me. 我母親從來沒有懲罰過我。 CC-BY 2.0 (France) Attribution: tatoeba.org #7803066 (sharris123) & #6014616 (xjjAstrus) +My uncle gave his car to me. 我叔叔把他的車給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #490355 (CK) & #894359 (Martha) +My vacation went by quickly. 我的假期一下就過完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19811 (CK) & #1250594 (tsayng) +Nature is full of mysteries. 自然充满了神秘。 CC-BY 2.0 (France) Attribution: tatoeba.org #3129168 (WestofEden) & #6047447 (verdastelo9604) +Next time I'll come earlier. 下一次我會早一點到。 CC-BY 2.0 (France) Attribution: tatoeba.org #503719 (darinmex) & #5542977 (egg0073) +No one answered my question. 沒人回答我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #1242885 (alec) & #1227125 (tsayng) +No one believed what I said. 没有人相信我说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #8063998 (CK) & #333942 (fucongcong) +No one here will betray you. 這裡沒有人會背叛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091187 (CK) & #6534801 (verdastelo9604) +No one supported his motion. 沒人支持他的動議。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259066 (_undertoad) & #6109356 (verdastelo9604) +No one will bother you here. 這裡沒人會打擾你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733360 (CK) & #6146536 (verdastelo9604) +Nobody believed what I said. 没有人相信我说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #250798 (CK) & #333942 (fucongcong) +Nobody else offered to help. 没有其他人伸出援手。 CC-BY 2.0 (France) Attribution: tatoeba.org #25933 (CK) & #1394956 (mtdot) +Nobody had ever heard of it. 以前從來沒有人聽說過。 CC-BY 2.0 (France) Attribution: tatoeba.org #556069 (kebukebu) & #805055 (Martha) +Nobody had ever heard of it. 从没有人听说过这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #556069 (kebukebu) & #7772082 (jiangche) +Nobody wants you to do that. 没人想要你那样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033401 (CK) & #2033408 (sadhen) +Now shake hands and make up. 现在握个手和解吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #603584 (darinmex) & #818901 (fucongcong) +Now who's going to help you? 現在誰要幫你? CC-BY 2.0 (France) Attribution: tatoeba.org #4011565 (CK) & #6089719 (verdastelo9604) +Ogai is his favorite author. Ogai是他最喜欢的作者。 CC-BY 2.0 (France) Attribution: tatoeba.org #386731 (Mouseneb) & #333976 (fucongcong) +Oh, no! My house is on fire! 哦,不!我的房子着火了! CC-BY 2.0 (France) Attribution: tatoeba.org #36130 (CM) & #478772 (biglion) +Open your book to page nine. 打開你的書到第九頁。 CC-BY 2.0 (France) Attribution: tatoeba.org #18406 (CK) & #852122 (Martha) +Open your book to page nine. 翻開你的書到第九頁。 CC-BY 2.0 (France) Attribution: tatoeba.org #18406 (CK) & #6157014 (User76378) +Parents love their children. 父母爱自己的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #269726 (CK) & #794235 (fucongcong) +Pass me the salt, would you? 把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25742 (CK) & #850599 (Martha) +People should do their best. 人們應該盡力而為。 CC-BY 2.0 (France) Attribution: tatoeba.org #450246 (CK) & #844627 (Martha) +Perhaps he missed the train. 他可能错过了火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1105414 (jast) & #390544 (fucongcong) +Please send it to me by fax. 请把它传真给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #41824 (CK) & #8800725 (crescat) +Please send me your picture. 請把您的照片發給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4758403 (cairnhead) & #6286213 (xjjAstrus) +Please tell me your address. 请告诉我你的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #38532 (CK) & #782237 (fucongcong) +Remember that I outrank you. 记住我的级别在你的之上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818222 (CK) & #5780596 (verdastelo9604) +Rome was not built in a day. 罗马不是一天建成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #27493 (CK) & #74 (fucongcong) +Send for the doctor at once. 立刻派人去請醫生來。 CC-BY 2.0 (France) Attribution: tatoeba.org #52098 (mcq) & #769678 (Martha) +Sensing danger, he ran away. 他感覺到危險就逃跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20691 (CK) & #848195 (Martha) +Sensing danger, he ran away. 他一嗅到风声不对,就逃之夭夭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20691 (CK) & #5090973 (mirrorvan) +She always dresses in black. 她總是穿著黑色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #836583 (CM) & #836582 (egg0073) +She always gets her own way. 她總是隨心所欲。 CC-BY 2.0 (France) Attribution: tatoeba.org #310447 (CK) & #890437 (Martha) +She assigned him to the job. 她指派他做這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388389 (CK) & #862678 (Martha) +She came back an hour later. 一个小时后,她返回了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310088 (CK) & #1790038 (sadhen) +She can never keep a secret. 她永远也做不到保守秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #313408 (CK) & #7774769 (jiangche) +She continued with the work. 她繼續工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442221 (CK) & #819308 (Martha) +She continued with the work. 她继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442221 (CK) & #2052522 (sadhen) +She decided to quit her job. 她決定辭去工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #521664 (CK) & #862687 (Martha) +She didn't have any pencils. 她一支铅笔也没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #312722 (CK) & #866740 (kooler) +She didn't like her husband. 她不喜歡她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #388375 (CK) & #832761 (Martha) +She doesn't have the ticket. 她沒有票。 CC-BY 2.0 (France) Attribution: tatoeba.org #1455110 (CM) & #1754865 (egg0073) +She felt like taking a walk. 她想去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #388658 (CK) & #862883 (Martha) +She found a job as a typist. 她找到了一份打字員的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #632477 (CK) & #804616 (Martha) +She gave away all her dolls. 她把她所有的娃娃送給了別人。 CC-BY 2.0 (France) Attribution: tatoeba.org #314693 (CK) & #818947 (Martha) +She gave him a lot of money. 她给了他很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #887132 (CK) & #8935894 (crescat) +She gave me these old coins. 她給了我這些舊硬幣。 CC-BY 2.0 (France) Attribution: tatoeba.org #314148 (CK) & #805183 (Martha) +She greeted me with a smile. 她用一个微笑迎接了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #316604 (Eldad) & #791348 (fucongcong) +She greeted us with a smile. 她面帶微笑向我們打招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #311897 (CK) & #802076 (Martha) +She has a gift for prophecy. 她有预言的能力。 CC-BY 2.0 (France) Attribution: tatoeba.org #308813 (CM) & #2028039 (ydcok) +She has a lot of work to do. 她有很多事要做。 CC-BY 2.0 (France) Attribution: tatoeba.org #308719 (CK) & #332760 (fucongcong) +She has an eye for antiques. 她看古董的眼光很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #310351 (CK) & #8739479 (crescat) +She ignored all my warnings. 她忽視了我所有的警告。 CC-BY 2.0 (France) Attribution: tatoeba.org #314315 (CK) & #5405533 (egg0073) +She is drunk with happiness. 她陶醉在幸福裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #919880 (Shiawase) & #919885 (Martha) +She is going to have a baby. 她將生孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #308907 (CK) & #804826 (Martha) +She is gracious to everyone. 她对谁都很和蔼可亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #315735 (mamat) & #333661 (fucongcong) +She is proficient in French. 她精通法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312105 (CK) & #757627 (Martha) +She is qualified as a nurse. 她是个合格的护士。 CC-BY 2.0 (France) Attribution: tatoeba.org #313061 (CK) & #1424148 (sadhen) +She is sitting on the bench. 她坐在長椅上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1361649 (GaryM) & #839616 (Martha) +She is watering the flowers. 她正在澆花。 CC-BY 2.0 (France) Attribution: tatoeba.org #312908 (CK) & #886521 (Martha) +She keeps a parrot as a pet. 她養一隻鸚鵡作為寵物。 CC-BY 2.0 (France) Attribution: tatoeba.org #310561 (CK) & #891328 (Martha) +She kissed him on the cheek. 她亲吻他的脸颊。 CC-BY 2.0 (France) Attribution: tatoeba.org #887258 (CK) & #1428110 (sadhen) +She kissed him on the cheek. 她在他的脸颊上吻了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #887258 (CK) & #1501622 (fenfang557) +She made a mess of the work. 她把工作弄得一團糟。 CC-BY 2.0 (France) Attribution: tatoeba.org #312155 (CK) & #910295 (Martha) +She made a mess of the work. 她工作做得亂七八糟。 CC-BY 2.0 (France) Attribution: tatoeba.org #312155 (CK) & #910297 (Martha) +She made a new suit for him. 她做了一套新衣服給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #316262 (CK) & #894006 (Martha) +She made fun of her husband. 她取笑了她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #316777 (CK) & #819260 (Martha) +She proceeded with the work. 她继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #313902 (CM) & #2052522 (sadhen) +She ran as fast as possible. 她盡可能地快跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #311631 (CK) & #779039 (Martha) +She remained silent all day. 她一整天都沉默不语。 CC-BY 2.0 (France) Attribution: tatoeba.org #312597 (CK) & #1235592 (sunnywqing) +She rides a motorcycle well. 她骑摩托车的技术不错! CC-BY 2.0 (France) Attribution: tatoeba.org #310564 (CS) & #1235599 (sunnywqing) +She said she had been happy. 她說她以前很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1185356 (bart) & #893499 (Martha) +She said that she was happy. 她说了她很幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #240778 (CK) & #334284 (fucongcong) +She seemed to have been ill. 好像她病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316671 (Dejo) & #795744 (fucongcong) +She stabbed him in the back. 她在他的背上戳了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #887396 (CK) & #4760174 (ryanwoo) +She thanked us for our help. 她感謝我們的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #316997 (CK) & #861027 (Martha) +She tried to commit suicide. 她企圖自殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #314568 (SUZIE) & #838593 (Martha) +She wants a new dress badly. 她很想要一条新的连衣裙。 CC-BY 2.0 (France) Attribution: tatoeba.org #315132 (CK) & #332966 (fucongcong) +She was accepted by Harvard. 她被哈佛錄取了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388598 (CK) & #842390 (Martha) +She was accepted to Harvard. 她被哈佛大學錄取了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388597 (CK) & #842338 (Martha) +She was almost hit by a car. 她幾乎被車撞到。 CC-BY 2.0 (France) Attribution: tatoeba.org #388645 (CK) & #895160 (Martha) +She was busy with housework. 她忙於家務。 CC-BY 2.0 (France) Attribution: tatoeba.org #388638 (CK) & #845995 (Martha) +She was holding an umbrella. 她握着一把伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #310654 (CK) & #835545 (fucongcong) +She was wearing a blue coat. 她穿了一件蓝色大衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #315376 (CK) & #423409 (fucongcong) +She won't be back till five. 她五點前不會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #310190 (CK) & #917892 (Martha) +She won't be back till five. 她五點鐘才會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #310190 (CK) & #917893 (Martha) +Singing is her strong point. 唱歌是她的强项。 CC-BY 2.0 (France) Attribution: tatoeba.org #23926 (CK) & #782304 (fucongcong) +Six divided by two is three. 六除以二得三。 CC-BY 2.0 (France) Attribution: tatoeba.org #713155 (CM) & #713154 (egg0073) +Smoking affects your health. 吸烟有害健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #19942 (CK) & #333670 (fucongcong) +Smoking is not allowed here. 这里不允许抽烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #61982 (CK) & #8673668 (crescat) +So, what happened this time? 那么,这次发生了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2430262 (AlanF_US) & #6101310 (verdastelo9604) +Soccer is my favorite sport. 足球是我最喜欢的运动。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481754 (weihaiping) & #406351 (fucongcong) +Some foods make you thirsty. 有些食物令人口渴。 CC-BY 2.0 (France) Attribution: tatoeba.org #7791050 (sharris123) & #1535975 (tsayng) +Some gum stuck to his shoes. 口香糖粘到他的鞋子上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63568 (CK) & #8940749 (crescat) +Some people don't know that. 有些人不知道那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2276702 (CK) & #6624736 (verdastelo9604) +Someone ate all my cupcakes. 某人把我的杯形蛋糕吃完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3044019 (CM) & #3044028 (sadhen) +Speaking English isn't easy. 說英語是不容易的。 CC-BY 2.0 (France) Attribution: tatoeba.org #400395 (CK) & #819331 (Martha) +Take off your socks, please. 請脫下你的襪子。 CC-BY 2.0 (France) Attribution: tatoeba.org #18086 (CK) & #793245 (Martha) +Teachers also make mistakes. 老师也会犯错。 CC-BY 2.0 (France) Attribution: tatoeba.org #3618423 (weihaiping) & #1883018 (sadhen) +Tears rolled down my cheeks. 泪水沿着我的面颊流了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #325980 (CM) & #345946 (fucongcong) +Tell Tom everything is fine. 告訴湯姆一切都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3113392 (CK) & #6860682 (verdastelo9604) +Tell me Tom's email address. 告诉我汤姆的邮箱地址吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3049965 (CK) & #8877874 (crescat) +Ten houses were burned down. 十間房屋被燒毀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73440 (CK) & #795302 (Martha) +Tennis is my favorite sport. 网球是我最喜欢的运动。 CC-BY 2.0 (France) Attribution: tatoeba.org #39403 (CK) & #3783097 (Debbie_Linder) +Thank you for your patience. 谢谢你的耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #64254 (CK) & #335869 (fucongcong) +Thanks for your explanation. 谢谢你的解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1403 (CK) & #501395 (fucongcong) +That affair made him famous. 那件事情使他一舉成名。 CC-BY 2.0 (France) Attribution: tatoeba.org #400143 (CK) & #846017 (Martha) +That house appears deserted. 那幢房子看起来被遗弃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68741 (CM) & #1394859 (mtdot) +That meal was simply divine. 那頓飯簡直好極了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019975 (CM) & #1019977 (egg0073) +That was a beautiful moment. 那是個美好的瞬間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728623 (CM) & #6628382 (verdastelo9604) +That wasn't so hard, was it? 那不难,是吧? CC-BY 2.0 (France) Attribution: tatoeba.org #2891920 (CK) & #5613713 (verdastelo9604) +That's exactly what he said. 这就是他所说的。 CC-BY 2.0 (France) Attribution: tatoeba.org #43190 (CK) & #343747 (fucongcong) +That's not important, is it? 那不重要,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #2713229 (CK) & #5911662 (verdastelo9604) +The Japanese have dark eyes. 日本人有黑色的眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #281775 (CK) & #794015 (Martha) +The Sahara is a vast desert. 撒哈拉沙漠广袤无垠。 CC-BY 2.0 (France) Attribution: tatoeba.org #54060 (CM) & #1454464 (sadhen) +The acid ate into the metal. 酸性腐蚀了金属。 CC-BY 2.0 (France) Attribution: tatoeba.org #245176 (CK) & #2819994 (CLARET) +The answer misses the point. 回答偏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44709 (CK) & #5595094 (verdastelo9604) +The audience was very large. 观众人数庞大。 CC-BY 2.0 (France) Attribution: tatoeba.org #277929 (CK) & #332653 (fucongcong) +The birds flew to the south. 群鸟南翔。 CC-BY 2.0 (France) Attribution: tatoeba.org #278211 (CK) & #2007038 (sadhen) +The boy got his hands dirty. 這個男孩把他的手弄髒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45401 (CK) & #804540 (Martha) +The boy has learned to read. 男孩學會了閱讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #45402 (adjusting) & #1445962 (egg0073) +The bus was behind schedule. 公交车迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50020 (CK) & #464766 (fucongcong) +The clown made a funny face. 小丑做了个鬼脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #280440 (CK) & #332854 (fucongcong) +The deadline is approaching. 期限近了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1497746 (weihaiping) & #335315 (fucongcong) +The design itself is flawed. 設計本身有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #4870315 (CK) & #6728899 (verdastelo9604) +The doctor may have said so. 医生可能说过。 CC-BY 2.0 (France) Attribution: tatoeba.org #28010 (CK) & #5585171 (verdastelo9604) +The dog is blind in one eye. 這隻狗的一隻眼睛瞎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48217 (CK) & #785165 (Martha) +The dog is blind in one eye. 那狗一只眼是瞎的。 CC-BY 2.0 (France) Attribution: tatoeba.org #48217 (CK) & #1312550 (vicch) +The end justifies the means. 為了正當目的可以不擇手段。 CC-BY 2.0 (France) Attribution: tatoeba.org #26656 (MUIRIEL) & #806215 (Martha) +The fish tasted like salmon. 這魚吃著像三文魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #48712 (CK) & #5248188 (xjjAstrus) +The goods arrived undamaged. 货物毫无损坏地到达了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1702455 (Spamster) & #7768400 (jiangche) +The guy with a beard is Tom. 长胡子的是汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #4012412 (CK) & #5571082 (verdastelo9604) +The light suddenly went out. 灯突然灭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #484896 (darinmex) & #363915 (fucongcong) +The losses are incalculable. 損失是無法估計的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494051 (CK) & #5350382 (egg0073) +The medicine worked marvels. 这药创造了奇迹。 CC-BY 2.0 (France) Attribution: tatoeba.org #43551 (CM) & #332520 (fucongcong) +The mouse ran into the hole. 這隻老鼠跑進洞裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #770059 (marloncori) & #770245 (Martha) +The neighborhood was silent. 社區是安靜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494050 (CK) & #5350381 (egg0073) +The old man got off the bus. 這位老人下了公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #44550 (CK) & #802494 (Martha) +The pressure was tremendous. 壓力很巨大。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494048 (CK) & #5350376 (egg0073) +The report is utterly false. 这份报告完全错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #44041 (CM) & #1888673 (Venki) +The room is fully furnished. 房間裡家具齊全。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180914 (treskro3) & #770341 (Martha) +The room smelled of tobacco. 房里有股烟味。 CC-BY 2.0 (France) Attribution: tatoeba.org #507759 (FeuDRenais) & #797547 (fucongcong) +The room smelled of tobacco. 房里闻起来有股烟味。 CC-BY 2.0 (France) Attribution: tatoeba.org #507759 (FeuDRenais) & #797550 (fucongcong) +The room was cleaned by Tom. 這房間是由湯姆清掃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009456 (dantat65) & #765382 (Martha) +The rumor proved to be true. 经过证实,谣言是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #65424 (CM) & #1372489 (sadhen) +The sky was completely dark. 天空完全变黑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18284 (CK) & #1878280 (sadhen) +The soccer game is tomorrow. 明天有足球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #541989 (CK) & #839439 (Martha) +The store is closed Mondays. 商店周一关门。 CC-BY 2.0 (France) Attribution: tatoeba.org #44881 (CK) & #1314475 (vicch) +The stripes were horizontal. 條紋是水平的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4494047 (CK) & #5350373 (egg0073) +The television doesn't work. 电视机坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39262 (CK) & #2004679 (sadhen) +The train should be on time. 火车应当准点到。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812244 (sharris123) & #7774611 (jiangche) +The weather is nice tonight. 今晚天公作美。 CC-BY 2.0 (France) Attribution: tatoeba.org #739986 (Christiane) & #1394930 (mtdot) +There is a cup on the table. 桌上有個杯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #39602 (CK) & #5386942 (xjjAstrus) +There is no cause for worry. 这没什么好担心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #269027 (CK) & #1235484 (sunnywqing) +There is no place like home. 金窩銀窩不如自己的狗窩。 CC-BY 2.0 (France) Attribution: tatoeba.org #24038 (Eldad) & #806240 (Martha) +There will be snow tomorrow. 明天會下雪喔! CC-BY 2.0 (France) Attribution: tatoeba.org #463456 (CK) & #1270573 (tsayng) +There's a large supermarket. 有一個大型超市。 CC-BY 2.0 (France) Attribution: tatoeba.org #9052503 (CK) & #840759 (Martha) +These dresses are too large. 這些洋裝太大。 CC-BY 2.0 (France) Attribution: tatoeba.org #515526 (CK) & #844573 (Martha) +These oranges are very sour. 這些橘子很酸。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259515 (_undertoad) & #6947342 (verdastelo9604) +They all burst out laughing. 他们都哈哈大笑起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183738 (CK) & #335934 (fucongcong) +They are about the same age. 他们年龄相仿。 CC-BY 2.0 (France) Attribution: tatoeba.org #406349 (blay_paul) & #8879826 (crescat) +They are always complaining. 他們總是抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #66059 (CK) & #3713638 (egg0073) +They aren't afraid of death. 他们不怕死。 CC-BY 2.0 (France) Attribution: tatoeba.org #801776 (CM) & #802845 (fucongcong) +They decided to get married. 他們決定結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #568569 (CK) & #803780 (Martha) +They go to church on Sunday. 他們禮拜天上教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #307288 (CK) & #801989 (Martha) +They had a rest for a while. 他們休息了一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #305652 (CK) & #796061 (Martha) +They left one after another. 他们一个接着一个地离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1361941 (CK) & #1361969 (sadhen) +They made me go there alone. 他們讓我獨自去了那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #306716 (CK) & #801962 (Martha) +They made us work all night. 他們要我們整夜工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #306665 (CK) & #795797 (Martha) +They say that love is blind. 人们说爱情是盲目的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6921711 (hadawayman) & #334333 (fucongcong) +They won't tell us anything. 他們甚麼也不會告訴我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898132 (CK) & #6114416 (verdastelo9604) +They would never meet again. 他们不会再见面了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307271 (CM) & #5613685 (verdastelo9604) +They're eating their apples. 他們在吃他們的蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #9007385 (CK) & #6119434 (verdastelo9604) +This article is of no value. 这篇文章没有价值。 CC-BY 2.0 (France) Attribution: tatoeba.org #463252 (lukaszpp) & #726780 (CLARET) +This car needs to be washed. 这辆车需要清洗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396916 (CK) & #8511493 (gumblex) +This cat doesn't chase mice. 这只猫不抓老鼠。 CC-BY 2.0 (France) Attribution: tatoeba.org #3011192 (CK) & #8500215 (black333) +This chair is uncomfortable. 这个椅子坐着不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268904 (_undertoad) & #8815377 (crescat) +This gives me renewed hopes. 这给了我新的希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #7841351 (basilhan) & #1311378 (vicch) +This is a Turkish tradition. 這是個土耳其的傳統。 CC-BY 2.0 (France) Attribution: tatoeba.org #545534 (FeuDRenais) & #8962855 (egg0073) +This is a comfortable chair. 这是张舒服的椅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #243639 (mamat) & #335033 (fucongcong) +This is a dangerous mission. 這是個危險的任務。 CC-BY 2.0 (France) Attribution: tatoeba.org #3226504 (CK) & #6633896 (verdastelo9604) +This is exactly what I need. 这正是我需要的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #6439222 (CK) & #839807 (fucongcong) +This is kind of interesting. 這真是有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3439381 (CK) & #6058639 (verdastelo9604) +This is my business address. 这是我的公司地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #56209 (CK) & #1438553 (asosan) +This is my page on Facebook. 這是我的Facebook頁面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1426039 (Eldad) & #5414859 (egg0073) +This is the window he broke. 他砸坏的是这扇窗。 CC-BY 2.0 (France) Attribution: tatoeba.org #485802 (adjusting) & #431479 (fucongcong) +This isn't a trivial matter. 这不是鸡毛蒜皮的小事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5090019 (CK) & #5611646 (verdastelo9604) +This medicine will help you. 這個藥會幫助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #413825 (CK) & #845492 (Martha) +This method is sure to work. 這個方法一定會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #57148 (CK) & #8388787 (wangchou) +This pen doesn't write well. 这支笔不太好用。 CC-BY 2.0 (France) Attribution: tatoeba.org #2236412 (CK) & #2394788 (fenfang557) +This room is cleaned by Tom. 這房間是由湯姆清掃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #765403 (Martha) & #765382 (Martha) +This should be a lot of fun. 這應該很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #4015776 (CK) & #6959855 (verdastelo9604) +This song makes me homesick. 这首歌让我想家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5582498 (zumley) & #332873 (fucongcong) +Those chairs are in the way. 那些椅子擋住了去路。 CC-BY 2.0 (France) Attribution: tatoeba.org #42012 (CK) & #886588 (Martha) +Those two are exactly alike. 那兩個是一模一樣的。 CC-BY 2.0 (France) Attribution: tatoeba.org #67880 (CK) & #838495 (Martha) +Three bulbs have burned out. 三个灯泡烧坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259727 (_undertoad) & #8655350 (slo_oth) +Three cubed is twenty-seven. 三的立方是二十七。 CC-BY 2.0 (France) Attribution: tatoeba.org #897469 (CM) & #897470 (egg0073) +Tom asked me if I was tired. 湯姆問我我是不是累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956000 (CK) & #6151298 (verdastelo9604) +Tom bought a house for Mary. 汤姆给玛丽买了个房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #4588085 (Amastan) & #5993928 (verdastelo9604) +Tom brought Mary some juice. Tom幫Mary買了點果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643646 (CK) & #5548512 (egg0073) +Tom can swim as fast as you. 湯姆游泳可以游得跟你一樣快。 CC-BY 2.0 (France) Attribution: tatoeba.org #37321 (CK) & #903469 (Martha) +Tom can't remember anything. 汤姆什么都记不住。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954768 (CK) & #4759973 (ryanwoo) +Tom can't work this evening. 湯姆今晚不能工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5526890 (mailohilohi) & #6633871 (verdastelo9604) +Tom couldn't help but smile. 汤姆帮不了,只能笑笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868401 (CK) & #5611537 (verdastelo9604) +Tom demanded an explanation. 汤姆要求有人解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094899 (CK) & #5931770 (verdastelo9604) +Tom didn't deny he did that. 汤姆没有否认他做的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #7520987 (CK) & #7704625 (leafjensen) +Tom didn't have to thank me. 汤姆不必谢我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665686 (CK) & #5631896 (verdastelo9604) +Tom didn't show me anything. 湯姆甚麼也沒給我看。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890444 (CK) & #6101343 (verdastelo9604) +Tom didn't tell me her name. 湯姆沒有告訴我她的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794430 (CK) & #4794629 (umidake) +Tom doesn't like this color. 汤姆不喜欢这种颜色。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094402 (CK) & #2442227 (ydcok) +Tom doesn't understand this. 湯姆不明白這事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025932 (CK) & #6673092 (verdastelo9604) +Tom drank some orange juice. T喝了點柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643620 (CK) & #5548511 (egg0073) +Tom failed to persuade Mary. 汤姆没能说服玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028952 (CK) & #8897386 (crescat) +Tom finally gave up smoking. 汤姆终于戒烟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #37236 (CK) & #8511425 (gumblex) +Tom forgot to sign his name. 汤姆忘记签名了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025734 (CK) & #8715012 (crescat) +Tom gave a different answer. 湯姆給出了不同的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529802 (CK) & #6325063 (verdastelo9604) +Tom got here before sunrise. 汤姆天亮前就到这了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5205852 (CK) & #8514589 (gumblex) +Tom got to Boston yesterday. 汤姆昨天到波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025638 (CK) & #5581712 (verdastelo9604) +Tom had a drink in his hand. 汤姆手里拿着饮料。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543393 (CK) & #5903477 (verdastelo9604) +Tom has been expecting Mary. 湯姆預計瑪莉會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #3975757 (CK) & #4104552 (andymakespasta) +Tom has high blood pressure. 汤姆有高血压。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025374 (CK) & #5072422 (musclegirlxyp) +Tom has three older sisters. 汤姆有三个姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025290 (CK) & #1372504 (sadhen) +Tom hasn't forgiven anybody. 汤姆没原谅过任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5739198 (CM) & #5739296 (verdastelo9604) +Tom helped me with the move. 汤姆帮我搬了家。 CC-BY 2.0 (France) Attribution: tatoeba.org #491926 (swagner) & #785918 (fucongcong) +Tom is a decent sort of guy. 汤姆是个诚实的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1144623 (CK) & #5576777 (verdastelo9604) +Tom is about to fall asleep. 湯姆要睡著了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5687190 (CK) & #6086856 (verdastelo9604) +Tom is almost six feet tall. 湯姆差不多有六呎高。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921229 (CK) & #6678461 (verdastelo9604) +Tom is an extraordinary man. 汤姆是个不寻常的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4014636 (CK) & #5911656 (verdastelo9604) +Tom is drinking apple juice. Tom正在喝蘋果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #3439704 (CK) & #5548526 (egg0073) +Tom is friendly to everyone. 汤姆对每个人都很友好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543380 (CK) & #8727930 (crescat) +Tom is just a crazy old man. 湯姆只是一個瘋老頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1453556 (Spamster) & #5816154 (xjjAstrus) +Tom is living in Boston now. 汤姆现在住在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #6221213 (CK) & #4815126 (McMeao) +Tom is more famous than you. 湯姆比你有名。 CC-BY 2.0 (France) Attribution: tatoeba.org #3402430 (CK) & #6103081 (verdastelo9604) +Tom is not easily satisfied. Tom不容易被滿足。 CC-BY 2.0 (France) Attribution: tatoeba.org #5104977 (CK) & #5534936 (egg0073) +Tom is now living in Boston. 汤姆现在住在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4811748 (CK) & #4815126 (McMeao) +Tom is quite thin, isn't he? 汤姆真瘦,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #3416816 (CK) & #6089929 (verdastelo9604) +Tom is very important to me. 汤姆对我来说很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #3934292 (Hybrid) & #5574495 (verdastelo9604) +Tom isn't feeling very well. 湯姆感覺不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5858307 (CK) & #6119316 (verdastelo9604) +Tom just doesn't understand. 汤姆就是不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164483 (CK) & #5907638 (verdastelo9604) +Tom knew what Mary had done. 湯姆知道瑪麗做了甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5115858 (CK) & #6624717 (verdastelo9604) +Tom knows many French songs. 汤姆知道许多法语歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5546295 (CK) & #5546465 (verdastelo9604) +Tom knows what he has to do. 湯姆知道他該做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543369 (CK) & #9170794 (xjjAstrus) +Tom looked at me and smiled. 汤姆看着我笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2835711 (CK) & #7798820 (jiangche) +Tom needs to get into shape. Tom需要让身体好起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024404 (CK) & #4844979 (pig8322) +Tom probably knew who I was. 汤姆可能知道我是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543357 (CK) & #5595204 (verdastelo9604) +Tom put down his paintbrush. 湯姆放下了他的畫筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957767 (CK) & #6065742 (verdastelo9604) +Tom really doesn't like you. 汤姆真的不喜欢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2281715 (CK) & #7771684 (jiangche) +Tom refused to pay the bill. 湯姆拒絕付賬。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185852 (CK) & #6103118 (verdastelo9604) +Tom sat at his desk working. 湯姆在他的桌邊工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543352 (CK) & #6086887 (verdastelo9604) +Tom seems a little confused. 湯姆看來有點困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713212 (CK) & #6103238 (verdastelo9604) +Tom slept with his shoes on. 汤姆穿着鞋睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3177883 (CK) & #5780599 (verdastelo9604) +Tom speaks without thinking. 汤姆不假思索脱口而出。 CC-BY 2.0 (France) Attribution: tatoeba.org #4518891 (carlosalberto) & #5613724 (verdastelo9604) +Tom stood up from his chair. 汤姆从椅子上站了起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #5738282 (CM) & #5983619 (verdastelo9604) +Tom talked about his school. 湯姆談了他的學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #6352687 (CK) & #6483527 (verdastelo9604) +Tom thanked Mary for coming. 汤姆感谢玛丽的光临。 CC-BY 2.0 (France) Attribution: tatoeba.org #5130160 (CK) & #5865520 (verdastelo9604) +Tom thanked me for the gift. 湯姆為這個禮物感謝我。 CC-BY 2.0 (France) Attribution: tatoeba.org #37041 (CK) & #870390 (Martha) +Tom told me he was Canadian. 汤姆告诉我他是加拿大人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200605 (CK) & #5650461 (verdastelo9604) +Tom tore the ticket to bits. 湯姆把票撕成碎片。 CC-BY 2.0 (France) Attribution: tatoeba.org #6566360 (Hybrid) & #8215749 (verdastelo9604) +Tom wanted to take a shower. 汤姆想洗个澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092489 (CK) & #1360198 (sadhen) +Tom was completely worn out. 湯姆完全筋疲力盡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736832 (CK) & #836269 (Martha) +Tom was making French fries. 汤姆想做炸薯条。 CC-BY 2.0 (France) Attribution: tatoeba.org #5286003 (mailohilohi) & #5571080 (verdastelo9604) +Tom was sent back to Boston. 汤姆被送回了波士顿 CC-BY 2.0 (France) Attribution: tatoeba.org #5392594 (CK) & #5393363 (soldier) +Tom will be there, won't he? 汤姆会去那里,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #4665625 (CK) & #5555732 (verdastelo9604) +Tom will now be proud of me. 汤姆现在会以我为傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #5539168 (CK) & #5698036 (verdastelo9604) +Tom's boss was really angry. 汤姆的上司真的非常生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #8126729 (Hybrid) & #8696279 (crescat) +Tom's dog bit him playfully. 汤姆的狗咬他玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023855 (CK) & #1438421 (asosan) +Tom's parachute didn't open. 湯姆的降落傘沒有打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250326 (CK) & #6150012 (verdastelo9604) +Tom, I want to talk to Mary. 汤姆,我想跟玛丽谈话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033294 (CK) & #5911618 (verdastelo9604) +Tom, you'd better stay here. 湯姆,你留在這裡比較好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185192 (CK) & #6325109 (verdastelo9604) +Tomorrow I'm going to Paris. 明天我去巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #697430 (Eldad) & #1334026 (vicch) +Try and do better next time. 嘗試在下一次做得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #264355 (CK) & #798244 (Martha) +Valuable time has been lost. 宝貴的時間已失去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5090711 (CK) & #6101472 (verdastelo9604) +Waitress, I'd like to order. 服务生,我要点菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #65664 (CK) & #333237 (fucongcong) +We almost had Tom convinced. 我们差不多说服Tom了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643485 (CK) & #4845008 (pig8322) +We can change if we want to. 如果我们想,我们就能变。 CC-BY 2.0 (France) Attribution: tatoeba.org #5064836 (jhomel) & #5617283 (verdastelo9604) +We don't have too much time. 我们没有太多时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819692 (CK) & #5819741 (verdastelo9604) +We don't think it's serious. 我们认为这不严肃。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890423 (CK) & #5911771 (verdastelo9604) +We enjoyed playing baseball. 我們喜歡打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #263305 (CK) & #825199 (Martha) +We get together once a year. 我們一年聚一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #249149 (CK) & #805008 (Martha) +We gladly accept your offer. 我们很高兴接受你的提议。 CC-BY 2.0 (France) Attribution: tatoeba.org #20660 (CK) & #336711 (fucongcong) +We got him to carry our bag. 我們讓他幫我們拿袋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #263201 (CK) & #804559 (Martha) +We got together in the park. 我們在公園裡聚在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #248674 (CK) & #802111 (Martha) +We had a great relationship. 我們的關係非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5090713 (CK) & #6077499 (verdastelo9604) +We had a kid just last year. 就在去年我們有了一個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #19447 (CK) & #796067 (Martha) +We had to go there together. 我们必须一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780481 (CK) & #5780504 (verdastelo9604) +We have French third period. 我們第三節是法語課。 CC-BY 2.0 (France) Attribution: tatoeba.org #72688 (CK) & #870113 (Martha) +We have all we need for now. 我们现在拥有了所有我们想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643479 (CK) & #4845011 (pig8322) +We have to get through this. 我们要了结此事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5736284 (CM) & #5780520 (verdastelo9604) +We have to have fun somehow. 我们总得找点乐子。 CC-BY 2.0 (France) Attribution: tatoeba.org #8626141 (Hybrid) & #8753758 (slo_oth) +We have to wash the clothes. 我们得洗衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270011 (_undertoad) & #5611556 (verdastelo9604) +We haven't thought about it. 我们还没考虑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780477 (CK) & #5780500 (verdastelo9604) +We hope a solution is found. 我们希望找到解决方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780473 (CK) & #5780496 (verdastelo9604) +We invited him to our house. 我們邀請了他到我們家。 CC-BY 2.0 (France) Attribution: tatoeba.org #249253 (CK) & #872491 (Martha) +We kept our fingers crossed. 我们试图让手指互相交错。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846793 (CK) & #4846804 (pig8322) +We know so little about you. 我們對你知道得不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #3920847 (CK) & #6635877 (verdastelo9604) +We really enjoyed ourselves. 我們真的玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #435426 (CK) & #819311 (Martha) +We should've stayed at home. 我們本來應該留在家裡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #262918 (CK) & #870108 (Martha) +We should've studied harder. 我们本该更加努力学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #6263945 (CK) & #6940029 (Cheng) +We soon caught up with them. 我們很快就追上了他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #400179 (CK) & #874492 (Martha) +We suggest raising the fees. 我們建議提高收費。 CC-BY 2.0 (France) Attribution: tatoeba.org #809210 (CM) & #810072 (Martha) +We used to play in the park. 我们过去常在公园玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #248379 (CK) & #333434 (fucongcong) +We want further information. 我们想要更多信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #29876 (CM) & #335897 (fucongcong) +We went to London last year. 我们去年去了伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890 (CK) & #389798 (fucongcong) +We weren't able to find Tom. 我們找不到湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #6660454 (CK) & #6845605 (verdastelo9604) +We'll deal with it tomorrow. 我们明天解决它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3377086 (CK) & #5900374 (verdastelo9604) +We'll talk about this later. 我們晚會再談這事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841555 (CK) & #6624734 (verdastelo9604) +We're all praying for Japan. 我們全體為日本祈禱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8220886 (CK) & #789406 (Martha) +We're doing the best we can. 我们尽力而为。 CC-BY 2.0 (France) Attribution: tatoeba.org #3311139 (CK) & #4760092 (ryanwoo) +We're fighting against time. 我們在跟時間鬥爭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264456 (sharptoothed) & #6065715 (verdastelo9604) +We're friends from way back. 我们是老朋友了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248961 (CK) & #407274 (fucongcong) +We're not going on vacation. 我们不去度假。 CC-BY 2.0 (France) Attribution: tatoeba.org #6874227 (CK) & #843467 (fucongcong) +We're not scared of anybody. 我们谁都不怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093622 (CK) & #5095187 (mirrorvan) +Were you serious about that? 你对那是认真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4013075 (CK) & #5558541 (verdastelo9604) +Were you working last night? 你昨晚在工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4014181 (CK) & #8947254 (crescat) +What a pity you can't dance! 可惜你不會跳舞! CC-BY 2.0 (France) Attribution: tatoeba.org #40319 (shanghainese) & #943692 (Martha) +What are you doing that for? 你正在做的那個東西是做什麼用的? CC-BY 2.0 (France) Attribution: tatoeba.org #38683 (CK) & #870305 (Martha) +What are your strong points? 你的强项是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #70461 (CK) & #334405 (fucongcong) +What are your weekend plans? 你週末有什麼計劃? CC-BY 2.0 (France) Attribution: tatoeba.org #387445 (CK) & #836230 (Martha) +What did you have for lunch? 你午饭吃的什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2643465 (CK) & #7767749 (jiangche) +What did you have for lunch? 你们午饭吃了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2643465 (CK) & #7772627 (jiangche) +What did you tell your boss? 你跟你的老板说什么了? CC-BY 2.0 (France) Attribution: tatoeba.org #3200511 (CK) & #5611590 (verdastelo9604) +What do you do after school? 你放学以后干什么? CC-BY 2.0 (France) Attribution: tatoeba.org #320992 (CM) & #427648 (fucongcong) +What do you do for a living? 您做什麼工作為生? CC-BY 2.0 (France) Attribution: tatoeba.org #410785 (CK) & #908376 (Martha) +What do you want to tell me? 你想跟我说什么? CC-BY 2.0 (France) Attribution: tatoeba.org #5093806 (mailohilohi) & #5095179 (mirrorvan) +What does Tom know about me? 汤姆知道我的什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3415291 (CK) & #5869909 (verdastelo9604) +What exactly happened there? 那裡究竟發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #817956 (CM) & #818164 (Martha) +What goes up must come down. 会起必会落。 CC-BY 2.0 (France) Attribution: tatoeba.org #1130098 (cntrational) & #5794115 (verdastelo9604) +What have you come here for? 你为什么来这儿? CC-BY 2.0 (France) Attribution: tatoeba.org #16501 (CK) & #429244 (fucongcong) +What have you come here for? 你们来这儿干嘛? CC-BY 2.0 (France) Attribution: tatoeba.org #16501 (CK) & #471266 (fucongcong) +What have you come here for? 您来这儿干嘛? CC-BY 2.0 (France) Attribution: tatoeba.org #16501 (CK) & #471273 (fucongcong) +What is it you want to know? 你想知道什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2013086 (CK) & #4742042 (egg0073) +What is the matter with you? 你到底怎么回事嘛 CC-BY 2.0 (France) Attribution: tatoeba.org #25200 (CK) & #4503177 (liyongtao) +What is the matter with you? 你怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #25200 (CK) & #7771865 (jiangche) +What is your favorite movie? 你最喜歡的電影是哪部? CC-BY 2.0 (France) Attribution: tatoeba.org #2150578 (dryhay) & #5122675 (xjjAstrus) +What languages do you speak? 你會說什麼語言? CC-BY 2.0 (France) Attribution: tatoeba.org #685840 (Zifre) & #6047131 (xjjAstrus) +What size shoes do you wear? 你穿幾號的鞋子? CC-BY 2.0 (France) Attribution: tatoeba.org #18112 (CK) & #872496 (Martha) +What time do you start work? 你什么时候开始工作? CC-BY 2.0 (France) Attribution: tatoeba.org #1696807 (Amastan) & #2007041 (sadhen) +What trips are you planning? 你在计划什么出游吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5094799 (CK) & #5095173 (mirrorvan) +What was that meeting about? 那场会议主题是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #5094800 (CK) & #5095132 (mirrorvan) +What was that you just said? 你刚说了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2954155 (CK) & #5780592 (verdastelo9604) +What were the meetings like? 会议怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #5094801 (CK) & #5095118 (mirrorvan) +What you say makes no sense. 你說的話沒有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019946 (CM) & #1019949 (egg0073) +What's so special about Tom? 汤姆有什么很与众不同的地方吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5094803 (CK) & #5095102 (mirrorvan) +What's the idea behind that? 那背后是什么意思? CC-BY 2.0 (France) Attribution: tatoeba.org #5094804 (CK) & #5095050 (mirrorvan) +What's the weather like now? 现在的天气怎么样了? CC-BY 2.0 (France) Attribution: tatoeba.org #5094805 (CK) & #5095013 (mirrorvan) +What's your native language? 你的母语是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #997544 (CK) & #4815174 (McMeao) +What's your opinion on that? 关于那个你有什么看法? CC-BY 2.0 (France) Attribution: tatoeba.org #5094806 (CK) & #5095011 (mirrorvan) +When does Tom eat breakfast? 汤姆什么时候吃早饭? CC-BY 2.0 (France) Attribution: tatoeba.org #2543285 (CK) & #5856755 (verdastelo9604) +Where are those people from? 那些人从哪来的? CC-BY 2.0 (France) Attribution: tatoeba.org #5094807 (CK) & #5094999 (mirrorvan) +Where are those posters now? 那些海报现在都到哪里去了? CC-BY 2.0 (France) Attribution: tatoeba.org #5094808 (CK) & #5094994 (mirrorvan) +Where can I find toothpaste? 在哪儿我能找到牙膏? CC-BY 2.0 (France) Attribution: tatoeba.org #263640 (CK) & #392232 (fucongcong) +Where did you go that night? 那天晚上你在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #7781153 (sharris123) & #6020594 (xjjAstrus) +Where in Turkey do you live? 你在土耳其哪儿生活? CC-BY 2.0 (France) Attribution: tatoeba.org #1396417 (CK) & #1862596 (sadhen) +Where is the police station? 警察局在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #238250 (CK) & #1738120 (sadhen) +Where will we go afterwards? 我们以后往哪走? CC-BY 2.0 (France) Attribution: tatoeba.org #5134170 (Joseph) & #5701324 (verdastelo9604) +Where's the nearest station? 最近的車站在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #7712699 (CK) & #839098 (Martha) +Which club do you belong to? 你屬於哪個社團? CC-BY 2.0 (France) Attribution: tatoeba.org #16470 (Swift) & #775791 (Martha) +Which is your favorite team? 你最喜歡哪一隊? CC-BY 2.0 (France) Attribution: tatoeba.org #37586 (mamat) & #908336 (Martha) +Which team are you a fan of? 你是哪一隊的迷? CC-BY 2.0 (France) Attribution: tatoeba.org #406619 (CK) & #908335 (Martha) +Who can tell the difference? 谁能说清不同点? CC-BY 2.0 (France) Attribution: tatoeba.org #5094809 (CK) & #5094962 (mirrorvan) +Who do you want to speak to? 你想跟誰說話? CC-BY 2.0 (France) Attribution: tatoeba.org #37744 (CK) & #895448 (Martha) +Who does the book belong to? 這本書是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #2818692 (CM) & #6047124 (xjjAstrus) +Who is your English teacher? 你的英語老師是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #237726 (CK) & #842432 (Martha) +Who solved the hard problem? 誰解決了這個難題? CC-BY 2.0 (France) Attribution: tatoeba.org #808758 (willhite2) & #810080 (Martha) +Who taught you how to dance? 谁教你跳舞的? CC-BY 2.0 (France) Attribution: tatoeba.org #40487 (CK) & #411650 (fucongcong) +Who threw a stone at my dog? 谁朝我的狗扔的石子? CC-BY 2.0 (France) Attribution: tatoeba.org #276332 (CK) & #2440642 (fenfang557) +Who were they talking about? 他们在讨论谁? CC-BY 2.0 (France) Attribution: tatoeba.org #3181518 (CK) & #4797648 (CLARET) +Who would want to live here? 誰會想住在這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #5850714 (CK) & #6086800 (verdastelo9604) +Who wrote these two letters? 誰寫了這兩封信? CC-BY 2.0 (France) Attribution: tatoeba.org #61398 (CK) & #5685456 (xjjAstrus) +Who's going to believe that? 谁会信呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4811300 (khaledp16) & #4815169 (McMeao) +Who's your favorite TV star? 谁是你最喜爱的电视明星? CC-BY 2.0 (France) Attribution: tatoeba.org #908670 (CK) & #334122 (fucongcong) +Why are you always shouting? 你為什麼總要大叫? CC-BY 2.0 (France) Attribution: tatoeba.org #5109097 (CarpeLanam) & #8215681 (verdastelo9604) +Why are you still at school? 你为什么还在学校? CC-BY 2.0 (France) Attribution: tatoeba.org #7817527 (CK) & #8854613 (crescat) +Why are you still unmarried? 你為甚麼還不結婚? CC-BY 2.0 (France) Attribution: tatoeba.org #6439026 (CK) & #6560616 (verdastelo9604) +Why can't we go and see Tom? 為甚麼我們不能去看湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #3523643 (CK) & #6309827 (verdastelo9604) +Why did she come home early? 為什麼她早回家了? CC-BY 2.0 (France) Attribution: tatoeba.org #36328 (CK) & #872105 (Martha) +Why did you get up so early? 你為什麼這麼早起? CC-BY 2.0 (France) Attribution: tatoeba.org #36488 (CK) & #873387 (Martha) +Why did you try to run away? 为什么你企图逃走? CC-BY 2.0 (France) Attribution: tatoeba.org #16451 (Swift) & #476596 (fucongcong) +Why don't you come visit us? 为什么你不来看我们? CC-BY 2.0 (France) Attribution: tatoeba.org #1439 (LittleBoy) & #335057 (fucongcong) +Why don't you eat pineapple? 你為什麼不吃菠蘿? CC-BY 2.0 (France) Attribution: tatoeba.org #8826927 (francaisr0wlet) & #8825036 (xjjAstrus) +Why don't you quit Facebook? 你為什麼不戒掉Facebook? CC-BY 2.0 (France) Attribution: tatoeba.org #2212216 (CM) & #5414848 (egg0073) +Will this year be different? 今年将会不同以往吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5094810 (CK) & #5094948 (mirrorvan) +Would you care for some tea? 你要喝點茶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #240974 (CK) & #875098 (Martha) +Would you like another beer? 再来一杯啤酒怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3698987 (CK) & #5097655 (mirrorvan) +Would you like to go abroad? 你想出國嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16238 (CK) & #874404 (Martha) +Would you look after my cat? 你可以照顧一下我的貓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776343 (CK) & #776975 (Martha) +Write your name in capitals. 写下你名字的大写字母。 CC-BY 2.0 (France) Attribution: tatoeba.org #16886 (CK) & #332654 (fucongcong) +Write your name in capitals. 把你的名字用大写写下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #16886 (CK) & #333145 (fucongcong) +You are not coming, are you? 你不會來,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237634 (CK) & #870321 (Martha) +You are wanted on the phone. 有你的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #17453 (CK) & #871167 (Martha) +You can always count on Tom. 你可以永遠信賴湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #16467 (CK) & #872440 (Martha) +You didn't find it, did you? 你沒找到,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3360290 (CK) & #6624613 (verdastelo9604) +You get up early, don't you? 你很早起床,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69142 (CK) & #805007 (Martha) +You go to school, don't you? 你去上學,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69527 (CK) & #796025 (Martha) +You have only to ask for it. 你只要问就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #69927 (CK) & #843554 (fucongcong) +You have to clean your room. 你该打扫你的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #319608 (CK) & #808207 (fucongcong) +You have to have confidence. 你必须得自信。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094811 (CK) & #5094939 (mirrorvan) +You have to start somewhere. 你必须有一个出发点。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094812 (CK) & #5094923 (mirrorvan) +You look as healthy as ever. 你看起來健康如昔。 CC-BY 2.0 (France) Attribution: tatoeba.org #15933 (CK) & #864485 (Martha) +You look as healthy as ever. 你看起来和以前一样健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #15933 (CK) & #1839198 (sadhen) +You look like a little girl. 你看来是个小女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3361845 (CM) & #5650454 (verdastelo9604) +You may leave your bag here. 你可以把你的袋子留在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #21226 (CK) & #874967 (Martha) +You said that you'd help me. 你说过你会帮我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7737673 (CK) & #9178041 (xiaohong) +You seem to know everything. 你看起来什么都知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713189 (CK) & #5091724 (mirrorvan) +You should begin right away. 你應該立即開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #489417 (CK) & #842453 (Martha) +You should put your coat on. 你應該把大衣穿上。 CC-BY 2.0 (France) Attribution: tatoeba.org #62288 (CK) & #778708 (Martha) +You shouldn't smoke so much. 你不该抽那么多烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #41541 (CK) & #466013 (fucongcong) +You sound like a politician. 你说话像个当官的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094813 (CK) & #5094912 (mirrorvan) +You will soon hear from him. 你很快就會收到他的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #32432 (CK) & #884217 (Martha) +You won't be late, will you? 你不會遲到,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15896 (CK) & #870155 (Martha) +You'd better check this out. 你最好检查一下这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3356344 (CK) & #9178033 (xiaohong) +You'll have to wait and see. 你得等一等看。 CC-BY 2.0 (France) Attribution: tatoeba.org #714335 (CK) & #714332 (ZeroAurora) +You'll never know the truth. 你永远不会知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094814 (CK) & #5094911 (mirrorvan) +You'll never see that again. 你以后再也不会看到它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094815 (CK) & #5094909 (mirrorvan) +You're really a hard worker. 你真是个努力的工人。 CC-BY 2.0 (France) Attribution: tatoeba.org #16343 (xtofu80) & #6028029 (verdastelo9604) +You're your own worst enemy. 你是你自己最大的敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5094816 (CK) & #5094907 (mirrorvan) +You've given me good advice. 你給了我很好的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #16792 (CK) & #842298 (Martha) +Your face is familiar to me. 我對你的臉很熟悉。 CC-BY 2.0 (France) Attribution: tatoeba.org #64711 (CK) & #845985 (Martha) +Your prophecy has come true. 你的预言成真了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16870 (eastasiastudent) & #785981 (fucongcong) +Your question has no answer. 你的问题没有答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #858872 (piksea) & #1366053 (sadhen) +Your tripod is in my office. 你的三腳架在我的辦公室裏。 CC-BY 2.0 (France) Attribution: tatoeba.org #6116857 (nickyeow) & #6100202 (xjjAstrus) +Your view is too optimistic. 你的看法過於樂觀。 CC-BY 2.0 (France) Attribution: tatoeba.org #17179 (CK) & #845970 (Martha) +"She likes music." "So do I." “她喜欢音乐。”“我也是。” CC-BY 2.0 (France) Attribution: tatoeba.org #1520 (CK) & #334470 (fucongcong) +"You talk too much," he said. “你说得太多了,”他说道。 CC-BY 2.0 (France) Attribution: tatoeba.org #240573 (Zifre) & #784573 (fucongcong) +A Mexican taught him Spanish. 一個墨西哥人教了他西班牙文。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264601 (_undertoad) & #4247369 (egg0073) +A beautiful sunset, isn't it? 美麗的夕陽,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #402411 (CK) & #832996 (Martha) +A big tree fell in the storm. 一棵大樹在暴風中倒下。 CC-BY 2.0 (France) Attribution: tatoeba.org #275539 (CK) & #801317 (Martha) +A bottle of red wine, please. 請來瓶紅酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #8249308 (francaisr0wlet) & #8215730 (verdastelo9604) +A dog will bark at strangers. 狗会对陌生人叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #239190 (CK) & #1417538 (sadhen) +A hare raced with a tortoise. 兔子和乌龟赛跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #65636 (CM) & #5842712 (verdastelo9604) +A lot of trees were cut down. 很多树被砍倒。 CC-BY 2.0 (France) Attribution: tatoeba.org #40994 (CK) & #5794152 (verdastelo9604) +All my friends will be there. 我所有的朋友都会到那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #5568126 (Hybrid) & #5568466 (Lunar) +All of us like you very much. 我们都非常喜欢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #248305 (CK) & #510780 (fucongcong) +All our efforts were in vain. 我们所有的努力都白费了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23353 (CK) & #349673 (fucongcong) +All the world speaks English. 世界各地都說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #3040055 (roeschter) & #797029 (Martha) +Allow me to introduce myself. 請允許我自我介紹一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #452218 (enwilson) & #6559019 (xjjAstrus) +Almost everybody was invited. 幾乎每個人都被邀請了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33285 (CK) & #908502 (Martha) +Answer my question carefully. 仔细回答我的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #277633 (CK) & #1426459 (sadhen) +Are you coming along with us? 你要跟我們一起來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #816089 (afeinberg) & #816719 (Martha) +Are you listening to English? 你在聽英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69642 (CK) & #811593 (Martha) +Are you meeting someone here? 你在这里是要见谁吧? CC-BY 2.0 (France) Attribution: tatoeba.org #15909 (CK) & #1785932 (sadhen) +Are you sure Tom can do that? 你確定湯姆能做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5442649 (CK) & #6145394 (verdastelo9604) +Are you the one who did that? 你就是做那事的人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6089891 (CK) & #6120909 (verdastelo9604) +As you sow, so will you reap. 种瓜得瓜,种豆得豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #266082 (CM) & #333123 (fucongcong) +Be sure to pick up some milk. 務必要買一些牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #318236 (CK) & #798217 (Martha) +Both of them are in the room. 他們兩個人都在房間裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #404265 (CK) & #869913 (Martha) +Call me if you need anything. 需要什么就给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2973750 (Hybrid) & #5663502 (verdastelo9604) +Can I ask you some questions? 我能問你們一些問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5573343 (n1ls) & #5442269 (xjjAstrus) +Can I catch a taxi near here? 我能在這附近打車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #57207 (CK) & #6109339 (verdastelo9604) +Can I speak with the teacher? 我能和老师说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #799200 (Zifre) & #346055 (fucongcong) +Can you lend me your bicycle? 你能把你的自行车借给我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1477152 (weihaiping) & #334089 (fucongcong) +Can you take a picture of us? 您能好好给我们照一张相吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7302870 (CK) & #835584 (fucongcong) +Can you tell me what this is? 你能告诉我这是什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #55865 (CK) & #333977 (fucongcong) +Can your brother drive a car? 你弟弟會開車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64544 (CK) & #840555 (Martha) +Children need a lot of sleep. 孩子們需要大量的睡眠。 CC-BY 2.0 (France) Attribution: tatoeba.org #579224 (CK) & #793508 (Martha) +Could you please repeat that? 你能重复一遍吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2242 (CK) & #1772679 (sadhen) +Could you send me a brochure? 你能寄宣傳冊給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #28396 (CK) & #836401 (Martha) +Could you take me to a movie? 你帶我去看電影好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #521659 (CK) & #869901 (Martha) +December has thirty-one days. 十二月有三十一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #664032 (bluepie88) & #1440499 (egg0073) +Did I leave my umbrella here? 我把雨伞落在这里了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3737874 (CK) & #5574438 (verdastelo9604) +Did she show you the picture? 她給你看過照片了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #313362 (CK) & #840661 (Martha) +Did you just get to know him? 你是不是刚认识他? CC-BY 2.0 (France) Attribution: tatoeba.org #785437 (hrin) & #784403 (fucongcong) +Do I have to go to the party? 我需要去派對嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1103189 (supplementfacts) & #5414933 (egg0073) +Do you actually believe that? 你真信吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2713181 (CK) & #5574753 (verdastelo9604) +Do you feel any better today? 你今天感覺好多了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242821 (CK) & #845450 (Martha) +Do you have a coat and a hat? 你有外套和帽子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434538 (lukaszpp) & #1261475 (tsayng) +Do you have a favorite color? 你有喜欢的颜色吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6740409 (CK) & #8976062 (crescat) +Do you have a gift shop here? 你們這裡有禮品店嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434540 (lukaszpp) & #1261476 (tsayng) +Do you have a list of hotels? 你有旅館名錄嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434542 (lukaszpp) & #1261478 (tsayng) +Do you have children already? 你已經有孩子了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1120515 (CM) & #6109338 (verdastelo9604) +Do you have something to say? 你有什么事要说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #500454 (darinmex) & #782106 (fucongcong) +Do you have something to say? 您有什么事要说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #500454 (darinmex) & #782110 (fucongcong) +Do you have younger brothers? 你有弟弟嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1441729 (CM) & #1441728 (egg0073) +Do you know how to cook meat? 你知道怎麼煮肉嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15873 (Swift) & #775642 (Martha) +Do you read French every day? 你每天读法语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2451541 (CK) & #6047437 (verdastelo9604) +Do you want something to eat? 您想吃点什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1799703 (Spamster) & #7773212 (jiangche) +Does this book belong to you? 這是你的書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #57052 (CK) & #715737 (egg0073) +Doesn't Tom have any friends? 汤姆没有朋友吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5130144 (CK) & #5556437 (verdastelo9604) +Don't bite on the right side. 不要從右邊咬。 CC-BY 2.0 (France) Attribution: tatoeba.org #27058 (CK) & #778764 (Martha) +Don't exceed the speed limit. 不要超速。 CC-BY 2.0 (France) Attribution: tatoeba.org #2734388 (CK) & #790852 (Martha) +Don't intrude on her privacy. 不要侵犯她的隐私。 CC-BY 2.0 (France) Attribution: tatoeba.org #309040 (CM) & #1780724 (sadhen) +Don't let your feelings show. 不要流露你的感情。 CC-BY 2.0 (France) Attribution: tatoeba.org #20655 (CK) & #1438387 (asosan) +Don't make fun of old people. 不要捉弄老人家。 CC-BY 2.0 (France) Attribution: tatoeba.org #282160 (CK) & #896667 (Martha) +Don't open this door, please. 請不要打開此門。 CC-BY 2.0 (France) Attribution: tatoeba.org #60814 (CK) & #834288 (Martha) +Don't put books on the table. 不要把書放在那張桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #525756 (CK) & #836372 (Martha) +Don't underestimate my power. 不要小看我的力量。 CC-BY 2.0 (France) Attribution: tatoeba.org #1461 (CK) & #335028 (fucongcong) +Don't underestimate my power. 不要低估我的力量。 CC-BY 2.0 (France) Attribution: tatoeba.org #1461 (CK) & #1778281 (sadhen) +Dust got into one of my eyes. 灰塵鑽進了我的一隻眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #320351 (CM) & #919941 (Martha) +English is spoken in America. 在美国说英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #26300 (CK) & #846673 (fucongcong) +Europeans like to drink wine. 欧洲人喜欢喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #497135 (CK) & #782716 (fucongcong) +Europeans like to drink wine. 歐洲人都愛喝葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #497135 (CK) & #6535144 (xjjAstrus) +Everybody needs to calm down. 大家需要冷静下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2094835 (CK) & #7704626 (leafjensen) +Everyone admired his courage. 每個人都佩服他的勇氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #276560 (CK) & #904863 (Martha) +Everyone attacked my opinion. 每個人都抨擊我的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #32161 (CM) & #825897 (Martha) +Facebook is blocked in China. Facebook在中國是被封鎖的。 CC-BY 2.0 (France) Attribution: tatoeba.org #539546 (tomkun01) & #5414864 (egg0073) +Few people know how to do it. 很少有人知道怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #47579 (CK) & #375293 (fucongcong) +Fill it with regular, please. 請定期填寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #29526 (CK) & #793254 (Martha) +Finally, he reached his goal. 他终于达到了自己的目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #389162 (CK) & #7769165 (jiangche) +Fluency in English is a must. 流利的英語是必須的。 CC-BY 2.0 (France) Attribution: tatoeba.org #21096 (CK) & #811913 (Martha) +Frankly speaking, he's wrong. 坦率地说,他错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1839102 (CK) & #1839117 (sadhen) +Get off your high horse, Tom. 别那么趾高气扬,汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3724872 (CM) & #4764864 (ryanwoo) +Give me your opinion, please. 請給我你的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #38486 (CK) & #833099 (Martha) +Great progress has been made. 已经取得巨大进展。 CC-BY 2.0 (France) Attribution: tatoeba.org #3153310 (eirik174) & #5863250 (verdastelo9604) +Has the mailman already come? 郵差已經來過了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #542040 (CK) & #833138 (Martha) +Hasn't Tom told you anything? 汤姆什么都没告诉你吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3200887 (CK) & #5694498 (verdastelo9604) +Have a look at the world map. 来看看世界地图。 CC-BY 2.0 (France) Attribution: tatoeba.org #271174 (CK) & #8798295 (crescat) +Have you ever dyed your hair? 你染過頭髮嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #953296 (CK) & #6105124 (verdastelo9604) +Have you ever seen Tom angry? 你有看见过汤姆生气的时候吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4724243 (CK) & #5097868 (mirrorvan) +Have you ever written a blog? 你写过博客吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1765121 (alec) & #1762992 (sadhen) +He acts as if he were a king. 他做得好像自己是国王一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #292954 (CK) & #5780628 (verdastelo9604) +He always wears dark glasses. 他总是带着黑色眼镜。 CC-BY 2.0 (France) Attribution: tatoeba.org #291797 (CK) & #335089 (fucongcong) +He appeared on TV last night. 他昨晚上电视了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296942 (CK) & #510766 (fucongcong) +He asked the man to help him. 他叫那个男人帮助他。 CC-BY 2.0 (France) Attribution: tatoeba.org #291129 (CK) & #1358685 (sadhen) +He came here ten minutes ago. 他十分鐘前到這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #289835 (CK) & #808583 (Martha) +He came home late last night. 他昨晚很晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #296950 (CK) & #780362 (Martha) +He came to see you yesterday. 他昨天來看你。 CC-BY 2.0 (France) Attribution: tatoeba.org #283672 (CK) & #840763 (Martha) +He can play tennis very well. 他网球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #292112 (CK) & #335090 (fucongcong) +He can speak Russian as well. 他还会说俄语。 CC-BY 2.0 (France) Attribution: tatoeba.org #293371 (CK) & #528028 (biglion) +He catches colds very easily. 他很容易感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #473602 (CK) & #826143 (Martha) +He changed schools last year. 去年他转校了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296931 (CK) & #7771679 (jiangche) +He changed schools last year. 去年他换了学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #296931 (CK) & #7771680 (jiangche) +He continued working all day. 他繼續工作了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #388562 (CK) & #833783 (Martha) +He decided to become a pilot. 他決定成為一名飛行員。 CC-BY 2.0 (France) Attribution: tatoeba.org #808760 (willhite2) & #810077 (Martha) +He designed the new building. 他設計了新建筑。 CC-BY 2.0 (France) Attribution: tatoeba.org #283117 (CK) & #6148212 (verdastelo9604) +He does not have any friends. 他一个朋友都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #879881 (CM) & #2241811 (sadhen) +He doesn't believe me at all. 他根本不相信我。 CC-BY 2.0 (France) Attribution: tatoeba.org #260520 (CK) & #408843 (fucongcong) +He doesn't have any children. 他沒有孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #424239 (CK) & #832972 (Martha) +He drove the truck to Dallas. 他開卡車到達拉斯。 CC-BY 2.0 (France) Attribution: tatoeba.org #291693 (CK) & #840552 (Martha) +He eats lunch at a cafeteria. 他在自助餐廳吃午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #289576 (CK) & #864379 (Martha) +He gave a nice present to me. 他送给我一份漂亮的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #297673 (CK) & #512168 (fucongcong) +He gave her a piece of paper. 他給了她一張紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #302704 (CK) & #805621 (Martha) +He gave it to me for nothing. 他免費把它給了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #291497 (CK) & #805547 (Martha) +He goes to the office by car. 他開車去辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #294629 (CK) & #804821 (Martha) +He grew up to be an engineer. 他長大後成為了一名工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #300332 (CK) & #802025 (Martha) +He had no qualms in doing so. 他这么做,没有任何不安。 CC-BY 2.0 (France) Attribution: tatoeba.org #290407 (CK) & #7768152 (jiangche) +He is a doctor by profession. 他的职业是医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #286778 (CK) & #347089 (fucongcong) +He is allergic to house dust. 他對室內灰塵過敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #35502 (CK) & #846199 (Martha) +He is ashamed of his failure. 他为他的失败感到羞耻。 CC-BY 2.0 (France) Attribution: tatoeba.org #298939 (CK) & #8652791 (crescat) +He is going to run for mayor. 他將競選市長。 CC-BY 2.0 (France) Attribution: tatoeba.org #297177 (CK) & #804819 (Martha) +He is good at playing tennis. 他打网球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291860 (CK) & #335091 (fucongcong) +He is good at riding a horse. 他擅長騎馬。 CC-BY 2.0 (France) Attribution: tatoeba.org #299711 (CK) & #804625 (Martha) +He is hard to get along with. 他這個人很難相處。 CC-BY 2.0 (France) Attribution: tatoeba.org #303256 (CK) & #882520 (Martha) +He is likely to win the game. 他有可能赢得比赛。 CC-BY 2.0 (France) Attribution: tatoeba.org #298286 (CK) & #332558 (fucongcong) +He is not what he used to be. 他不再是以前的那个他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272158 (CK) & #334034 (fucongcong) +He is something of a scholar. 他有几分像学者。 CC-BY 2.0 (France) Attribution: tatoeba.org #21460 (CK) & #335117 (fucongcong) +He is twice as old as she is. 他的年龄是她的两倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #878452 (CK) & #1415824 (sadhen) +He is up to his ears in debt. 他浑身是债。 CC-BY 2.0 (France) Attribution: tatoeba.org #265672 (CK) & #5624979 (verdastelo9604) +He knows New York inside out. 他对纽约了如指掌。 CC-BY 2.0 (France) Attribution: tatoeba.org #292327 (CK) & #7772474 (jiangche) +He knows how to make a radio. 他知道如何做收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #293336 (CK) & #333941 (fucongcong) +He knows how to read Chinese. 他看得懂中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #1751921 (Amastan) & #1754355 (sadhen) +He leaves for China tomorrow. 他明天出发去中国。 CC-BY 2.0 (France) Attribution: tatoeba.org #387586 (Mouseneb) & #363883 (fucongcong) +He lost his way in the woods. 他在森林中迷了路。 CC-BY 2.0 (France) Attribution: tatoeba.org #269482 (CK) & #332770 (fucongcong) +He made me his own assistant. 他让我做他的助理。 CC-BY 2.0 (France) Attribution: tatoeba.org #721480 (Eldad) & #4182615 (ekgermana) +He made me sing on the stage. 他讓我在舞台上唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #297753 (CK) & #801957 (Martha) +He may have missed the train. 他可能错过了火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #301802 (CK) & #390544 (fucongcong) +He patted me on the shoulder. 他拍拍我的肩膀。 CC-BY 2.0 (France) Attribution: tatoeba.org #303755 (CK) & #848645 (Martha) +He played the part of Hamlet. 他扮演哈姆雷特的角色。 CC-BY 2.0 (France) Attribution: tatoeba.org #292423 (CK) & #846366 (Martha) +He prefers poetry to fiction. 比起小说,他更喜欢诗歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #299554 (CM) & #787311 (fucongcong) +He presented her with a doll. 他送她一個洋娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #261200 (CK) & #848415 (Martha) +He pretended to be my friend. 他假装是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2282912 (Hybrid) & #5780555 (verdastelo9604) +He put the book on the shelf. 他把书放在了书架上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396455 (CK) & #1862607 (sadhen) +He put the book on the table. 他把书放在了桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1195649 (CK) & #335085 (fucongcong) +He refused my friend request. 他拒绝了我加好友的请求。 CC-BY 2.0 (France) Attribution: tatoeba.org #1848923 (Spamster) & #8463553 (gumblex) +He said, "It's nine o'clock." 他说,“九点了”。 CC-BY 2.0 (France) Attribution: tatoeba.org #295564 (CM) & #8698566 (crescat) +He shot an arrow at the deer. 他射了鹿一箭。 CC-BY 2.0 (France) Attribution: tatoeba.org #290949 (CK) & #464810 (fucongcong) +He should have been a lawyer. 他本应该成为一个律师。 CC-BY 2.0 (France) Attribution: tatoeba.org #303594 (CK) & #1672008 (sadhen) +He sometimes comes to see me. 他有时会来看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #291997 (CK) & #799205 (fucongcong) +He took me for an Englishman. 他误认为我是一个英国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #298070 (CM) & #760566 (CLARET) +He traveled around the world. 他周遊世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #300270 (CK) & #848602 (Martha) +He wants to pay off his loan. 他想还清贷款。 CC-BY 2.0 (France) Attribution: tatoeba.org #2702127 (CK) & #5670769 (verdastelo9604) +He was jealous of my success. 他嫉妒我的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #297923 (CK) & #848444 (Martha) +He was late for the 7:30 bus. 他错过了7点30分的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #288646 (CK) & #1438425 (asosan) +He was opposed to monopolies. 他反对垄断。他曾经/以前反对垄断 CC-BY 2.0 (France) Attribution: tatoeba.org #302084 (CM) & #4832325 (sunflower) +He wishes to become a doctor. 他希望成為一名醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #293625 (CK) & #846317 (Martha) +He's accustomed to traveling. 他習慣了旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #387430 (CK) & #825129 (Martha) +He's two years older than me. 他比我大两岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #713261 (Zifre) & #713216 (Yashanti) +Health is better than wealth. 健康勝過財富。 CC-BY 2.0 (France) Attribution: tatoeba.org #18570 (Zifre) & #806227 (Martha) +Her book is very interesting. 她的書非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1441680 (CK) & #1441683 (egg0073) +Her feelings are easily hurt. 她很容易受到感情上的伤害。 CC-BY 2.0 (France) Attribution: tatoeba.org #878792 (CK) & #1415820 (sadhen) +Her skin is whiter than snow. 她的皮肤比雪还白。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498527 (weihaiping) & #1422180 (sadhen) +Hey, what are you doing here? 嘿,你在這做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3737888 (CK) & #5496243 (egg0073) +Hey, you! What are you doing? 嘿,你!你在幹什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #65202 (CK) & #848360 (Martha) +His book is very interesting. 他的書非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1441679 (CM) & #1441678 (egg0073) +His clothes always smell bad. 他的衣服總是很臭。 CC-BY 2.0 (France) Attribution: tatoeba.org #287469 (CK) & #834416 (Martha) +His explanation is not clear. 他的說明並不清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #287003 (CK) & #2680854 (tsayng) +His father doesn't play golf. 他父親不打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #285289 (CK) & #916659 (Martha) +His son wants to be a lawyer. 他儿子想当律师。 CC-BY 2.0 (France) Attribution: tatoeba.org #287062 (CK) & #4270101 (notabene) +How about dining out tonight? 我们今晚出去吃怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #243408 (CK) & #352068 (fucongcong) +How can I get to the station? 我怎樣才能到火車站? CC-BY 2.0 (France) Attribution: tatoeba.org #26024 (CK) & #883478 (Martha) +How come you don't know this? 你怎么会不知道? CC-BY 2.0 (France) Attribution: tatoeba.org #38690 (CK) & #334830 (fucongcong) +How dare you speak like that? 您怎么敢这样说话? CC-BY 2.0 (France) Attribution: tatoeba.org #16340 (Swift) & #471434 (fucongcong) +How did you get back so soon? 你怎么回来得这么快? CC-BY 2.0 (France) Attribution: tatoeba.org #3820648 (CK) & #5926184 (verdastelo9604) +How did you get to know Mary? 你怎麼認識瑪麗的? CC-BY 2.0 (France) Attribution: tatoeba.org #32038 (CK) & #889171 (Martha) +How do I explain that to Tom? 我怎麼跟湯姆解釋? CC-BY 2.0 (France) Attribution: tatoeba.org #3405330 (CK) & #6105180 (verdastelo9604) +How do you want this handled? 你想怎麼處理? CC-BY 2.0 (France) Attribution: tatoeba.org #2013503 (CK) & #6131491 (verdastelo9604) +How far is it to the airport? 到机场有多远? CC-BY 2.0 (France) Attribution: tatoeba.org #18189 (CK) & #344190 (fucongcong) +How far is it to the station? 到火車站有多遠? CC-BY 2.0 (France) Attribution: tatoeba.org #25994 (CK) & #883319 (Martha) +How long do you plan to stay? 你准备待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #37625 (CK) & #333370 (fucongcong) +How long will this rope hold? 這條繩子能撐多久? CC-BY 2.0 (France) Attribution: tatoeba.org #36867 (CK) & #874201 (Martha) +How long will you be staying? 你会待多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #37609 (CK) & #335235 (fucongcong) +How many friends do you have? 你有多少朋友? CC-BY 2.0 (France) Attribution: tatoeba.org #569276 (FeuDRenais) & #784055 (fucongcong) +How many oranges did Tom eat? 湯姆吃了多少橘子? CC-BY 2.0 (France) Attribution: tatoeba.org #1820764 (Amastan) & #6114405 (verdastelo9604) +How many rackets do you have? 你有多少支球拍? CC-BY 2.0 (France) Attribution: tatoeba.org #69711 (CK) & #846163 (Martha) +How was your summer vacation? 暑假過得如何? CC-BY 2.0 (France) Attribution: tatoeba.org #24309 (CK) & #1442715 (egg0073) +How would you like your eggs? 请问鸡蛋要什么做法? CC-BY 2.0 (France) Attribution: tatoeba.org #325221 (CK) & #8940739 (crescat) +Hurry. Please lend me a hand. 快點。請幫幫我。 CC-BY 2.0 (France) Attribution: tatoeba.org #433888 (CK) & #849285 (Martha) +I advertised my car for sale. 我登廣告賣我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #265629 (CK) & #926679 (Martha) +I aimed my gun at the target. 我把我的手枪指向了目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #321899 (CK) & #438491 (fucongcong) +I also heard a similar story. 我也听过一个类似的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #262360 (CK) & #333510 (fucongcong) +I am a student, but he isn't. 我是個學生,但他不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #256687 (CK) & #917959 (Martha) +I am amazed at your audacity. 我对你的厚颜无耻感到惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #17193 (Zifre) & #332996 (fucongcong) +I am amazed at your audacity. 我对你的大胆感到很惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #17193 (Zifre) & #335317 (fucongcong) +I am not good at mathematics. 我的數學不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019899 (CM) & #1019903 (egg0073) +I asked for my father's help. 我請我父親幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #261548 (CK) & #918027 (Martha) +I asked for my father's help. 我向我父親求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #261548 (CK) & #918028 (Martha) +I asked her to wait a minute. 我让她等了一分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #321568 (CK) & #401003 (fucongcong) +I asked her to wait a moment. 我請她等一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #411316 (CK) & #883294 (Martha) +I asked him to drive me home. 我請他開車送我回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #260419 (CK) & #884204 (Martha) +I asked him to mend my shoes. 我請他修理我的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #260376 (CK) & #919762 (Martha) +I believe that he'll do fine. 我相信他會做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #289626 (CK) & #941152 (Martha) +I belong to the sailing club. 我參加帆船社。 CC-BY 2.0 (France) Attribution: tatoeba.org #255899 (CK) & #919945 (Martha) +I bought them each a present. 我買給了他們每人一份禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #307704 (CK) & #918056 (Martha) +I bought two bags of popcorn. 我買了兩袋爆米花。 CC-BY 2.0 (France) Attribution: tatoeba.org #255593 (CK) & #941118 (Martha) +I bought two loaves of bread. 我買了兩條麵包。 CC-BY 2.0 (France) Attribution: tatoeba.org #34921 (CK) & #926586 (Martha) +I brush my teeth twice a day. 我一天刷兩次牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #321574 (CK) & #882516 (Martha) +I came to Japan to see Kyoto. 我來日本看京都。 CC-BY 2.0 (France) Attribution: tatoeba.org #246979 (CK) & #917972 (Martha) +I can do it without her help. 沒有她的幫忙我也能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #866506 (papabear) & #918659 (Martha) +I can teach you how to drive. 我会教你怎么开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #386690 (Mouseneb) & #332775 (fucongcong) +I can't go, nor do I want to. 我去不了,也不想去。 CC-BY 2.0 (France) Attribution: tatoeba.org #257421 (CM) & #334780 (fucongcong) +I can't speak English at all. 我一点英文都不会说。 CC-BY 2.0 (France) Attribution: tatoeba.org #398653 (CK) & #8792101 (crescat) +I cannot afford to buy a car. 我買不起一輛車。 CC-BY 2.0 (France) Attribution: tatoeba.org #249914 (CK) & #918552 (Martha) +I cannot find fault with him. 我挑不出他的毛病。 CC-BY 2.0 (France) Attribution: tatoeba.org #260950 (Dejo) & #332809 (fucongcong) +I cannot speak Mandarin well. 我的中文說得不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020184 (CM) & #1020182 (egg0073) +I caught a cold two days ago. 我兩天前感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #280989 (CK) & #916625 (Martha) +I caught five fish yesterday. 我昨天釣了五條魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #257763 (CK) & #5382960 (egg0073) +I cut a branch from the tree. 我從樹上砍下了一根樹枝。 CC-BY 2.0 (France) Attribution: tatoeba.org #43807 (CK) & #926845 (Martha) +I decided to study every day. 我決定每天用功讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #261857 (CK) & #918544 (Martha) +I didn't hear anyone talking. 我沒聽到任何人在說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #7204934 (CK) & #8969925 (egg0073) +I didn't mean to disturb you. 我不是想打扰你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2291176 (CK) & #5907525 (verdastelo9604) +I didn't want this to happen. 我不想这种事发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1446 (CK) & #335050 (fucongcong) +I do not love him any longer. 我已经不爱他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255796 (CK) & #7772514 (jiangche) +I don't have any money on me. 我身上沒有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #436535 (lukaszpp) & #875094 (Martha) +I don't have the address now. 我沒有現在的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #472112 (CK) & #849025 (Martha) +I don't have the address now. 我現在沒有地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #472112 (CK) & #849026 (Martha) +I don't know if there's time. 我不知道有没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1033662 (Brian255) & #4859571 (musclegirlxyp) +I don't know what time it is. 我不知道現在幾點鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #256429 (Hellerick) & #879196 (Martha) +I don't know when he'll come. 我不知道他什么时候来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3562510 (CK) & #3636661 (suitchic) +I don't know where she lives. 我不知道她住在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #473588 (CK) & #846106 (Martha) +I don't know why you're here. 我不知道你為甚麼在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361307 (CK) & #6936237 (verdastelo9604) +I don't like going to school. 我不喜欢上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #6263096 (CK) & #7773124 (jiangche) +I don't quite agree with you. 我不太同意你的看法。 CC-BY 2.0 (France) Attribution: tatoeba.org #321761 (CK) & #846072 (Martha) +I don't read newspapers much. 我不太看报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #67681 (CK) & #334407 (fucongcong) +I don't see any bullet holes. 我没看见什么弹孔。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361417 (CK) & #5993925 (verdastelo9604) +I don't think Tom is serious. 我不覺得湯姆是認真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6228309 (CK) & #6903774 (verdastelo9604) +I don't think he is truthful. 我不觉得他很诚实。 CC-BY 2.0 (France) Attribution: tatoeba.org #286032 (CK) & #8780273 (crescat) +I don't want Tom seeing this. 我不想讓湯姆看見這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361567 (CK) & #6065356 (verdastelo9604) +I don't want Tom to see this. 我不想讓湯姆看見這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323317 (CK) & #6065356 (verdastelo9604) +I don't want him to touch me. 我不想被他感动。 CC-BY 2.0 (France) Attribution: tatoeba.org #260283 (CK) & #796701 (fucongcong) +I don't want to get a suntan. 我不想晒黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #259794 (CK) & #429146 (fucongcong) +I don't want to go to school. 我不想去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860 (CK) & #389791 (fucongcong) +I don't want to play anymore. 我不想再玩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4471279 (Hybrid) & #4517860 (yuiyu) +I don't worry about the risk. 我不担心风险。 CC-BY 2.0 (France) Attribution: tatoeba.org #5240989 (CK) & #5863291 (verdastelo9604) +I followed the deer's tracks. 我跟着鹿的踪迹。 CC-BY 2.0 (France) Attribution: tatoeba.org #253876 (CK) & #464823 (fucongcong) +I found the book interesting. 我觉得这本书很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #43930 (CK) & #343944 (fucongcong) +I gave up smoking for a year. 我戒煙一年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33548 (CK) & #805049 (Martha) +I gazed at the sea for hours. 我望著海好幾個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #24553 (CK) & #805018 (Martha) +I go into town every weekend. 我每周末都会去市区。 CC-BY 2.0 (France) Attribution: tatoeba.org #8397731 (CK) & #8975263 (WilsonWong) +I got him to polish my shoes. 我要他擦亮我的皮鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #260378 (CK) & #804543 (Martha) +I got it for next to nothing. 我簡直不用花錢就買到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #496144 (CK) & #883301 (Martha) +I got something nice for you. 我给你个好东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064781 (CK) & #5595170 (verdastelo9604) +I got up at six this morning. 我今天早上六點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #257525 (CK) & #802109 (Martha) +I got your fax the other day. 我前幾天收到了你的傳真。 CC-BY 2.0 (France) Attribution: tatoeba.org #59901 (CK) & #802107 (Martha) +I grew up in this small town. 我在這個小鎮上長大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #253665 (CK) & #802077 (Martha) +I had a very good time today. 我今天玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #242731 (CK) & #796047 (Martha) +I had sore legs the next day. 第二天我的腿很酸。 CC-BY 2.0 (France) Attribution: tatoeba.org #324977 (CK) & #616205 (sarah) +I had to stay in bed all day. 我不得不一整天都呆在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #27410 (CK) & #343950 (fucongcong) +I have a feeling he is right. 我覺得他是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #291988 (CK) & #882514 (Martha) +I have a good appetite today. 我今天的食慾很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242902 (CK) & #848819 (Martha) +I have a slight headache now. 现在我有些许头痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #257502 (CK) & #333997 (fucongcong) +I have a stomachache, doctor. 我胃痛,醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #272777 (CM) & #834953 (Martha) +I have absolute faith in you. 我百分之百相信你。 CC-BY 2.0 (France) Attribution: tatoeba.org #7236785 (CM) & #3675073 (cienias) +I have absolute trust in you. 我絕對信任你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17390 (CK) & #846039 (Martha) +I have an umbrella in my car. 我的车里有伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #5597080 (CK) & #5663392 (verdastelo9604) +I have never thought of that. 我從來沒有想到這一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755373 (garborg) & #734942 (Martha) +I have no friends to help me. 我没朋友帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #258598 (CK) & #332934 (fucongcong) +I have no idea of what to do. 我不知道该怎么办。 CC-BY 2.0 (France) Attribution: tatoeba.org #714389 (CM) & #714388 (Yashanti) +I have something to give you. 我有些东西要给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71185 (CK) & #487908 (biglion) +I have something to tell you. 我有事要告訴你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17430 (CK) & #848835 (Martha) +I have three million dollars. 我有三百萬美圓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360416 (CK) & #6535847 (verdastelo9604) +I have to clean the bathroom. 我要清理廁所了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6944262 (CK) & #9037045 (xjjAstrus) +I have to go to the bathroom. 我要去廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #1461964 (Spamster) & #9096139 (xjjAstrus) +I have to study for the test. 我必須讀書準備考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #419055 (CK) & #883279 (Martha) +I haven't made much progress. 我还没有取得那么大的进展。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359939 (CK) & #8800806 (crescat) +I haven't seen him for years. 我有些年没见过他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24460 (mamat) & #819823 (fucongcong) +I hear he is good at mahjong. 我听说他打麻将很厉害。 CC-BY 2.0 (France) Attribution: tatoeba.org #303840 (CK) & #333497 (fucongcong) +I heard someone call my name. 我聽見有人叫我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #276126 (CK) & #846348 (Martha) +I helped my father yesterday. 昨天我帮了我爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #257806 (CK) & #344180 (fucongcong) +I hope no one saw me dancing. 我希望沒人看見我跳舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #5799537 (CK) & #6151300 (verdastelo9604) +I hope this is the right one. 我希望這是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3089452 (Hybrid) & #6534050 (verdastelo9604) +I hope you have sweet dreams. 祝你好梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1643653 (kerbear407) & #3781063 (Debbie_Linder) +I know that you're busy, too. 我知道,您也很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #7520786 (CK) & #5122672 (xjjAstrus) +I know this area pretty well. 我很瞭解這地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376166 (CK) & #6138316 (verdastelo9604) +I know very little about Tom. 我对汤姆知道得很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330015 (CK) & #6089954 (verdastelo9604) +I know you're richer than me. 我知道你比我有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376693 (CK) & #6111750 (verdastelo9604) +I like both science and math. 科学和数学我都喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #262182 (CK) & #332615 (fucongcong) +I lived abroad for ten years. 我住在國外十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252413 (CK) & #802008 (Martha) +I love watching soccer games. 我爱看足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #253861 (CK) & #493516 (biglion) +I made an abstract of a book. 我為一本書寫了內容提要。 CC-BY 2.0 (France) Attribution: tatoeba.org #322062 (CK) & #908533 (Martha) +I might've forgotten my keys. 我可能把钥匙忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7024577 (CK) & #7771879 (jiangche) +I must catch the first train. 我必须赶上头班火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #257941 (CM) & #1397357 (mtdot) +I need to go to the bathroom. 我要去方便一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1864529 (Spamster) & #9096138 (xjjAstrus) +I need to go to the bathroom. 我要去廁所。 CC-BY 2.0 (France) Attribution: tatoeba.org #1864529 (Spamster) & #9096139 (xjjAstrus) +I need to know what you know. 我需要知道你知道的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387681 (CK) & #6332426 (verdastelo9604) +I never want to leave Boston. 我從不想離開波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #6062285 (CK) & #6568329 (verdastelo9604) +I ordered a book from London. 我從倫敦訂購了一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #29313 (CK) & #848692 (Martha) +I owe my success to his help. 我的成功要归功于他。 CC-BY 2.0 (France) Attribution: tatoeba.org #251286 (CK) & #345962 (fucongcong) +I paid him a visit yesterday. 我昨天去见他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257799 (CK) & #5862104 (verdastelo9604) +I played tennis after school. 放学后我打了网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #261707 (CK) & #1238175 (sunnywqing) +I really don't need any help. 我真的不需要幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #4779063 (garborg) & #4504355 (egg0073) +I received a letter from her. 我收到了她的來信。 CC-BY 2.0 (France) Attribution: tatoeba.org #261024 (CK) & #851529 (Martha) +I saw a horse pulling a cart. 我看見一匹馬拉著一架馬車。 CC-BY 2.0 (France) Attribution: tatoeba.org #259904 (CK) & #6150899 (verdastelo9604) +I saw a man get hit by a car. 我看见有个男人被车撞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3527301 (adamtrousers) & #5780514 (verdastelo9604) +I seem to have a temperature. 我好像发烧了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38380 (CK) & #427591 (fucongcong) +I should put on more clothes. 我应该多穿点衣服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4636402 (CM) & #4625762 (Yashanti) +I shouldn't have lied to you. 我不該對你說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406502 (CK) & #6119152 (verdastelo9604) +I started thinking about Tom. 我开始想起汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406571 (CK) & #3289581 (sadhen) +I still don't know your name. 我到現在還是不知道你的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822131 (CK) & #4104420 (andymakespasta) +I study English and Japanese. 我学习英语和日语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1542454 (Aomori) & #3367332 (go_oo) +I swear I didn't do anything. 我发誓我什么也没做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2407141 (CK) & #5967321 (verdastelo9604) +I think Tom is getting ready. 我认为汤姆准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408263 (CK) & #5624927 (verdastelo9604) +I think Tom would be pleased. 我認為湯姆會高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #5204166 (CK) & #6624643 (verdastelo9604) +I think exams ruin education. 我认为考试破坏教育。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230707 (alec) & #334155 (fucongcong) +I think it will be hot today. 我觉得今天会很热。 CC-BY 2.0 (France) Attribution: tatoeba.org #242885 (CK) & #510680 (fucongcong) +I think perhaps you're right. 我猜想你可能是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408134 (CK) & #332989 (fucongcong) +I think she will divorce him. 我想她會和他離婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #325384 (CK) & #786128 (Martha) +I think that I'm intelligent. 我觉得我很聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #8442708 (CK) & #8463648 (gumblex) +I thought that he would come. 我以为他会来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #641018 (jakov) & #510675 (fucongcong) +I thought you said something. 我觉得你说了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543218 (CK) & #5640748 (verdastelo9604) +I thought you were listening. 我以为你在听。 CC-BY 2.0 (France) Attribution: tatoeba.org #5915857 (CK) & #8500229 (black333) +I thought you were my friend. 我以为你是我的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1453929 (Spamster) & #2500002 (fenfang557) +I told you to stop, didn't I? 我告訴了你停下來,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433872 (CK) & #887728 (Martha) +I understand it more or less. 我大概懂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #781496 (ingenius000) & #333776 (fucongcong) +I used to be a forest ranger. 我以前是護林人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5915853 (CK) & #6333809 (verdastelo9604) +I used to swim in this river. 我以前在這條河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #272167 (CK) & #889632 (Martha) +I want something to write on. 我想要可以在上面寫字的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25088 (CK) & #858033 (Martha) +I want to become an engineer. 我想要成為一位工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #777946 (FeuDRenais) & #777943 (Martha) +I want to go there once more. 我想再去那裡一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #31502 (CK) & #875295 (Martha) +I want to talk to your uncle. 我想和你的舅舅谈一谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #3044017 (CK) & #3044029 (sadhen) +I was a student at that time. 我当时是学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #412026 (FeuDRenais) & #464948 (fucongcong) +I was afraid I might be late. 我怕我可能遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277413 (CK) & #884203 (Martha) +I was alone in the classroom. 我独自待在教室里。 CC-BY 2.0 (France) Attribution: tatoeba.org #256937 (CK) & #463921 (fucongcong) +I was always good at English. 我一直都擅長英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #253128 (CK) & #3459575 (egg0073) +I was always good at English. 我的英文一直都不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #253128 (CK) & #3459580 (egg0073) +I was ashamed of my behavior. 我对自己的行为感到羞愧。 CC-BY 2.0 (France) Attribution: tatoeba.org #258250 (CK) & #604581 (CLARET) +I was just talking about Tom. 我仅仅是在和Tom交谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2543183 (CK) & #4845069 (pig8322) +I went swimming in the river. 我去了河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #2079997 (CK) & #6028190 (verdastelo9604) +I will study English at home. 我将在家学习英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1736472 (mookeee) & #1754833 (sadhen) +I wish I could speak English. 但願我會講英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26382 (CK) & #855648 (Martha) +I wish I didn't have to work. 我希望我不必工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #245417 (CK) & #891610 (Martha) +I wish I had a better memory. 希望我的記憶力能好一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #31271 (CK) & #893189 (Martha) +I wish I had a better memory. 但願我有好一點的記憶力。 CC-BY 2.0 (France) Attribution: tatoeba.org #31271 (CK) & #893192 (Martha) +I wish it would stop raining. 我希望雨會停。 CC-BY 2.0 (France) Attribution: tatoeba.org #26831 (CK) & #852165 (Martha) +I won't allow you to do that. 我不会让你做那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713178 (CK) & #5856778 (verdastelo9604) +I wonder what else Tom wants. 我想知道汤姆还要别的什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3677160 (CK) & #4757708 (ryanwoo) +I worked on the farm all day. 我整天在農場上工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #487163 (CK) & #891046 (Martha) +I would like some more water. 请再给我一些水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270771 (CK) & #8698961 (crescat) +I'd like a room in the front. 我想要一間前面的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #318353 (CK) & #801405 (Martha) +I'd like to attend the party. 我想要出席排队。 CC-BY 2.0 (France) Attribution: tatoeba.org #516475 (CK) & #782835 (fucongcong) +I'd like to get home by five. 我想在五點前到家。 CC-BY 2.0 (France) Attribution: tatoeba.org #72513 (CK) & #801387 (Martha) +I'd like to go to the movies. 我想去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #26447 (CK) & #881683 (Martha) +I'd like to live in New York. 我想住在紐約。 CC-BY 2.0 (France) Attribution: tatoeba.org #255340 (CK) & #801389 (Martha) +I'd like to order drinks now. 我現在想點飲料。 CC-BY 2.0 (France) Attribution: tatoeba.org #8338340 (CK) & #890970 (Martha) +I'd like to see you tomorrow. 明天我想见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323095 (CK) & #8696223 (crescat) +I'll attend the next meeting. 我会参加下次的会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #242299 (CK) & #466200 (fucongcong) +I'll definitely vote for Tom. 我一定要給湯姆投票。 CC-BY 2.0 (France) Attribution: tatoeba.org #4976768 (CK) & #6936203 (verdastelo9604) +I'll give you a prescription. 我会给你开个药方。 CC-BY 2.0 (France) Attribution: tatoeba.org #266989 (CK) & #332958 (fucongcong) +I'll send it to you tomorrow. 我明天把它寄给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4726425 (mailohilohi) & #5632413 (verdastelo9604) +I'll send my mother a letter. 我会给我的母亲寄封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #3012367 (CK) & #5091340 (mirrorvan) +I'll show you to the station. 我會告訴你去車站的路。 CC-BY 2.0 (France) Attribution: tatoeba.org #26006 (CK) & #851505 (Martha) +I'll think it over carefully. 我会深思熟虑。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665542 (CK) & #5574719 (verdastelo9604) +I'll try to meet your wishes. 我會盡力滿足你的願望。 CC-BY 2.0 (France) Attribution: tatoeba.org #54495 (CK) & #852186 (Martha) +I'm afraid I've offended you. 我怕我冒犯了你。 CC-BY 2.0 (France) Attribution: tatoeba.org #237703 (CK) & #835456 (Martha) +I'm as tired as tired can be. 我累得不能再累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253669 (CM) & #334138 (fucongcong) +I'm fed up with this weather. 我受够了这天气。 CC-BY 2.0 (France) Attribution: tatoeba.org #60266 (CK) & #5949075 (verdastelo9604) +I'm going to bed. Good night. 我要睡了。晚安。 CC-BY 2.0 (France) Attribution: tatoeba.org #2496951 (CK) & #6624733 (verdastelo9604) +I'm going to change my shirt. 我要去換我的襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #321632 (CK) & #858727 (Martha) +I'm in a desperate situation. 我处在绝境。 CC-BY 2.0 (France) Attribution: tatoeba.org #1486339 (CM) & #5926180 (verdastelo9604) +I'm never at home on Sundays. 我周日从不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #259851 (CK) & #406736 (fucongcong) +I'm new at this kind of work. 我新接触這種工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2784478 (sharptoothed) & #6094914 (verdastelo9604) +I'm no longer your assistant. 我不再是你的助手了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542966 (CK) & #6109275 (verdastelo9604) +I'm not as optimistic as you. 我不像你那么乐观。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586504 (CK) & #8589652 (tianblr) +I'm not as optimistic as you. 我没有你那么乐观。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586504 (CK) & #8589653 (tianblr) +I'm not disagreeing with you. 我没有反对你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2869061 (Hybrid) & #5978333 (verdastelo9604) +I'm not so sure Tom is wrong. 我不太確定湯姆錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891064 (CK) & #6325060 (verdastelo9604) +I'm not sure what's going on. 我不清楚發生了甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851242 (CK) & #6141299 (verdastelo9604) +I'm on my way back to Boston. 我在回波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542932 (CK) & #5624926 (verdastelo9604) +I'm really scared of spiders. 我真怕蜘蛛。 CC-BY 2.0 (France) Attribution: tatoeba.org #5273772 (Hybrid) & #5630394 (verdastelo9604) +I'm sick of eating fast food. 我受够吃快餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728735 (paper1n0) & #784499 (fucongcong) +I'm sorry, I can't stay long. 对不起,我不能待很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #1541 (CK) & #334448 (fucongcong) +I'm sorry, I didn't hear you. 对不起,我没有听见你说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361911 (CK) & #5949074 (verdastelo9604) +I'm the captain of this ship. 我是這船的船長。 CC-BY 2.0 (France) Attribution: tatoeba.org #1963117 (CK) & #6534764 (verdastelo9604) +I'm the tallest in our class. 我在班里是最高的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713172 (CK) & #2028017 (ydcok) +I'm tired of your complaints. 我已經厭倦了你的投訴。 CC-BY 2.0 (France) Attribution: tatoeba.org #16921 (CK) & #835543 (Martha) +I'm used to getting up early. 我習慣早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #252294 (CK) & #860933 (Martha) +I've already eaten breakfast. 我已经吃过早饭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255766 (CK) & #414240 (fucongcong) +I've always kept my promises. 我一直信守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #7580797 (CK) & #846158 (Martha) +I've always kept my promises. 我一直遵守我的諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #7580797 (CK) & #848420 (Martha) +I've been wanting to see you. 我一直想見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #410600 (CK) & #858292 (Martha) +I've got a frog in my throat. 我緊張得說不出話來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2377 (CK) & #772028 (Martha) +I've got a lot more to learn. 我要学很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5277174 (CK) & #5650402 (verdastelo9604) +I've got blisters on my feet. 我的腳起水泡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #274471 (CK) & #795999 (Martha) +I've heard this story before. 我以前听过这个故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396201 (CK) & #6094851 (verdastelo9604) +I've just finished breakfast. 我剛吃完了早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #255030 (CK) & #835676 (Martha) +I've never seen Tom so angry. 我从没见过汤姆那么生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360093 (CK) & #5091596 (mirrorvan) +I've never seen a live whale. 我從來沒有見過一條活生生的鯨魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #258980 (CK) & #796005 (Martha) +I've never seen you so happy. 我从没见过你这么高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044703 (CK) & #5574508 (verdastelo9604) +If I get rich, I will buy it. 如果我有钱,我就会买它。 CC-BY 2.0 (France) Attribution: tatoeba.org #18522 (Zifre) & #5624992 (verdastelo9604) +If you don't understand, ask. 如果你不懂,那就问。 CC-BY 2.0 (France) Attribution: tatoeba.org #842801 (riccioberto) & #843553 (fucongcong) +In case it rains, I won't go. 萬一下雨,我就不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #26729 (CK) & #801419 (Martha) +In my opinion, he is correct. 在我看来,他是有道理的。 CC-BY 2.0 (France) Attribution: tatoeba.org #388737 (CK) & #426367 (fucongcong) +In my opinion, you are wrong. 在我看来,你错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250860 (CK) & #7771922 (jiangche) +Industry was growing quickly. 工業發展迅速。 CC-BY 2.0 (France) Attribution: tatoeba.org #807009 (Source_VOA) & #6058556 (verdastelo9604) +Interest rates are still low. 利率还是低。 CC-BY 2.0 (France) Attribution: tatoeba.org #5134823 (CK) & #5907492 (verdastelo9604) +Is it going to rain tomorrow? 明天会下雨吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1213449 (alec) & #333928 (fucongcong) +Is that the railroad station? 这是火车站吗? CC-BY 2.0 (France) Attribution: tatoeba.org #403071 (Ramses) & #544885 (biglion) +Is the customer always right? 顾客永远是正确的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3252081 (patgfisher) & #7771669 (jiangche) +Is there a hotel around here? 附近有酒店吗? CC-BY 2.0 (France) Attribution: tatoeba.org #60540 (CK) & #1335409 (vicch) +Is there anything in the box? 箱子裡有任何東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #44470 (CK) & #4816286 (umidake) +Is there anything in the box? 盒子裡有任何東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #44470 (CK) & #4816287 (umidake) +Is there anything you can do? 有什么事是你能做的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25294 (mamat) & #782912 (fucongcong) +It has nothing to do with me. 这不关我的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3286951 (CK) & #2028032 (ydcok) +It has nothing to do with me. 它跟我没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #3286951 (CK) & #5780582 (verdastelo9604) +It is easy to read this book. 读这本书很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #56890 (CK) & #336666 (fucongcong) +It is easy to read this book. 這本書很容易讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #56890 (CK) & #1440489 (egg0073) +It is not easy to train dogs. 訓練狗是不容易的。 CC-BY 2.0 (France) Attribution: tatoeba.org #239234 (CK) & #798225 (Martha) +It is our obligation to help. 幫助是我們的義務。 CC-BY 2.0 (France) Attribution: tatoeba.org #267184 (bluepie88) & #907299 (Martha) +It makes no difference to me. 這對我沒什麼差別。 CC-BY 2.0 (France) Attribution: tatoeba.org #42384 (CK) & #1020004 (egg0073) +It makes no sense whatsoever. 无论如何说不通。 CC-BY 2.0 (France) Attribution: tatoeba.org #2367850 (mrtaistoi) & #5640752 (verdastelo9604) +It may snow in the afternoon. 下午可能會下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #277569 (CK) & #917801 (Martha) +It rained on and off all day. 雨斷斷續續地下了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #266395 (CK) & #886595 (Martha) +It rarely snows in this area. 这片区域很少下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2592859 (WestofEden) & #5091706 (mirrorvan) +It was a calm winter evening. 这是个静谧的冬夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #838712 (Scott) & #7772073 (jiangche) +It was just a matter of time. 这只是时间上的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1617825 (Spamster) & #3845336 (sadhen) +It was nice meeting you here. 在这里见到您真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61897 (CK) & #783019 (fucongcong) +It wasn't interesting at all. 一点也不好玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734318 (CK) & #5670742 (verdastelo9604) +It won't make any difference. 这没有任何区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #1702587 (Spamster) & #335016 (fucongcong) +It's already time to go home. 已经是时候回去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31404 (TRANG) & #343673 (fucongcong) +It's clear that you're wrong. 很明顯地你錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17895 (CK) & #834813 (Martha) +It's going to rain, for sure. 要下雨了,我敢肯定。 CC-BY 2.0 (France) Attribution: tatoeba.org #63367 (CK) & #5091592 (mirrorvan) +It's just big enough for Tom. 这尽够汤姆的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725251 (CM) & #3779019 (e78xx_xxx) +It's no use arguing about it. 爭論是它是沒有用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7422930 (CK) & #797027 (Martha) +It's no use arguing with him. 跟他吵没用。 CC-BY 2.0 (France) Attribution: tatoeba.org #284457 (CK) & #5905030 (verdastelo9604) +It's no use trying to escape. 試圖逃跑是沒有用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713168 (CK) & #798081 (Martha) +It's obvious that she's sick. 顯然地她生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388853 (CK) & #835363 (Martha) +It's on the tip of my tongue. 它在我的舌尖上。 CC-BY 2.0 (France) Attribution: tatoeba.org #139274 (fcbond) & #760756 (Martha) +Japan is famous for Mt. Fuji. 日本以富士山聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #281601 (CK) & #797116 (Martha) +Kyoto has many places to see. 在京都,有很多的景点值得一看。 CC-BY 2.0 (France) Attribution: tatoeba.org #19323 (CK) & #784011 (fucongcong) +Let me ask a stupid question. 我来问个有点傻的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #3142780 (CK) & #5091772 (mirrorvan) +Let's go to the hospital now. 我们现在就去医院吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3392661 (CK) & #5856761 (verdastelo9604) +Let's hope you don't need it. 希望你用不着它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007413 (CK) & #5585226 (verdastelo9604) +London is famous for its fog. 倫敦以霧著名。 CC-BY 2.0 (France) Attribution: tatoeba.org #29262 (CK) & #797141 (Martha) +Mary arrived at the hospital. 瑪麗到了醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #31885 (CK) & #834958 (Martha) +Mary closed the door quietly. 瑪麗悄悄地關上了門。 CC-BY 2.0 (France) Attribution: tatoeba.org #31976 (CK) & #834707 (Martha) +Mary is studying in her room. 瑪麗在她的房間裡讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #31924 (CK) & #862842 (Martha) +Mary is very cute, isn't she? 马力很可爱,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #3417251 (CK) & #5670750 (verdastelo9604) +Mary loses her temper easily. 瑪麗很容易發脾氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #31988 (CK) & #835358 (Martha) +Mary reminds me of my mother. 玛丽让我想起我母亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2959247 (sharptoothed) & #5845587 (verdastelo9604) +Mary showed the letter to me. 瑪麗給我看了這封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #31920 (CK) & #851541 (Martha) +May I have the check, please? 請把帳單給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #21104 (CK) & #836255 (Martha) +May I pay with a credit card? 我能用信用卡支付吗? CC-BY 2.0 (France) Attribution: tatoeba.org #711333 (Eldad) & #785910 (fucongcong) +May I speak with the teacher? 我能和老师说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1265422 (yifen238) & #346055 (fucongcong) +Maybe he won't become famous. 也許他不會成名。 CC-BY 2.0 (France) Attribution: tatoeba.org #448788 (CK) & #835329 (Martha) +Money does not grow on trees. 錢不會從樹上長出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #18574 (CK) & #806228 (Martha) +Mother prepared lunch for me. 妈妈为我准备了午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #320758 (CM) & #332840 (fucongcong) +Mt. Aso is an active volcano. 阿蘇山是一座活火山。 CC-BY 2.0 (France) Attribution: tatoeba.org #28742 (CK) & #801306 (Martha) +My computer's acting strange. 我的电脑好诡异。 CC-BY 2.0 (France) Attribution: tatoeba.org #778269 (kenken) & #6197258 (yuiyu) +My dictionary is very useful. 我的字典非常有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #251056 (CK) & #466235 (fucongcong) +My eyesight is getting worse. 我的视力正慢慢下降。 CC-BY 2.0 (France) Attribution: tatoeba.org #263376 (CK) & #2031259 (ydcok) +My father works at a factory. 我父亲在工厂工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255946 (FeuDRenais) & #2255509 (Venki) +My father's hobby is fishing. 我父親的嗜好是釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #539834 (CK) & #781186 (Martha) +My friend is studying Korean. 我的朋友在學朝鮮語。 CC-BY 2.0 (France) Attribution: tatoeba.org #718849 (cagey_cat) & #5683270 (xjjAstrus) +My friends don't play tennis. 我的朋友不打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #252037 (CK) & #835678 (Martha) +My grandfather gets up early. 我的祖父早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #250234 (CK) & #834667 (Martha) +My house doesn't have a roof. 我的房子沒有頂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1572905 (fanty) & #6120857 (verdastelo9604) +My house is near the station. 我家离火车站很近。 CC-BY 2.0 (France) Attribution: tatoeba.org #250537 (CK) & #490107 (fucongcong) +My job is to wash the dishes. 我的工作是洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2744923 (sharptoothed) & #333039 (fucongcong) +My job is to wash the dishes. 我的工作是洗盤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2744923 (sharptoothed) & #5234815 (xjjAstrus) +My parents live in Australia. 我的父母住在澳大利亚 CC-BY 2.0 (France) Attribution: tatoeba.org #7152614 (CK) & #8746397 (cxpadonis) +My parents won't let me date. 我父母不让我和男生约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496250 (weihaiping) & #464776 (fucongcong) +My son is brushing his teeth. 我儿子在刷牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3634645 (thegui) & #5670744 (verdastelo9604) +No man can serve two masters. 没有人可以共侍二主。 CC-BY 2.0 (France) Attribution: tatoeba.org #270116 (CK) & #804800 (fucongcong) +No more, thank you. I'm full. 不,谢谢,我饱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #65830 (CK) & #430995 (fucongcong) +No student went to the party. 没有学生去参加派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #50046 (CK) & #1360196 (sadhen) +None of this makes any sense. 這裡頭沒有一件事說得通。 CC-BY 2.0 (France) Attribution: tatoeba.org #1911854 (Spamster) & #2638718 (cienias) +Not every child likes apples. 不是每一个孩子喜欢吃苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #596726 (CK) & #1454438 (sadhen) +Nothing ever makes him angry. 沒有什麼事曾讓他憤怒。 CC-BY 2.0 (France) Attribution: tatoeba.org #36779 (CK) & #844470 (Martha) +Nothing is really guaranteed. 沒有甚麼是真正有保證的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5735626 (CM) & #6624709 (verdastelo9604) +Now they have three children. 现在他们有三个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #305516 (CK) & #7781516 (jiangche) +Now, what do you want to see? 現在,你想看甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3563822 (CK) & #6150880 (verdastelo9604) +Oil is extracted from olives. 油是从橄榄中提炼出来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #64820 (CM) & #334997 (fucongcong) +Old people get up very early. 老人們很早就起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #64123 (CK) & #804992 (Martha) +One language is never enough. 一種語言是永遠不夠的。 CC-BY 2.0 (France) Attribution: tatoeba.org #614312 (Eldad) & #874702 (Martha) +Our garden was full of weeds. 我们的花园布满了杂草。 CC-BY 2.0 (France) Attribution: tatoeba.org #65522 (CK) & #487520 (fucongcong) +Our house has three bedrooms. 我們家有三個臥室。 CC-BY 2.0 (France) Attribution: tatoeba.org #7265195 (anattado) & #5707225 (xjjAstrus) +Our mother bought us a puppy. 我們的媽媽買了一隻小狗給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #484055 (CK) & #864270 (Martha) +Our new home has an elevator. 我們的新家有一臺電梯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7770323 (sharris123) & #6020619 (xjjAstrus) +Our supplies are running out. 我们的供给要用完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254433 (_undertoad) & #5663583 (verdastelo9604) +People from Madrid are weird. 从马德里来的人都很怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1558 (CK) & #334432 (fucongcong) +People must love one another. 人要爱他人。 CC-BY 2.0 (France) Attribution: tatoeba.org #270456 (CK) & #5558525 (verdastelo9604) +Please get me hotel security. 请帮我叫宾馆保安。 CC-BY 2.0 (France) Attribution: tatoeba.org #33362 (CM) & #794185 (fucongcong) +Please knock before entering. 进来之前请敲门。 CC-BY 2.0 (France) Attribution: tatoeba.org #530050 (wma) & #504885 (fucongcong) +Please make yourself at home. 請不要客氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #20334 (CK) & #836286 (Martha) +Please put on these slippers. 请穿上这些拖鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #60950 (CK) & #6094844 (verdastelo9604) +Please put those chairs away. 請把那些椅子放好。 CC-BY 2.0 (France) Attribution: tatoeba.org #42011 (CK) & #886589 (Martha) +Please remember what he said. 請記住他說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #466276 (CK) & #842446 (Martha) +Please show me your notebook. 請給我看一下你的筆記本電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #70869 (CK) & #9057855 (xjjAstrus) +Police shouldn't take bribes. 警方不應該收取賄賂。 CC-BY 2.0 (France) Attribution: tatoeba.org #497121 (CK) & #824651 (Martha) +Popcorn is my favorite snack. 爆米花是我最喜欢的零食。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820754 (CK) & #5993948 (verdastelo9604) +Prices have dropped recently. 最近物價已經下降。 CC-BY 2.0 (France) Attribution: tatoeba.org #435636 (CK) & #825770 (Martha) +Put some water into the vase. 在花瓶裡裝些水。 CC-BY 2.0 (France) Attribution: tatoeba.org #23742 (CK) & #858791 (Martha) +Reading books is interesting. 看书很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #577830 (CK) & #345790 (fucongcong) +Remember to brush your teeth. 别忘了刷牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770643 (garborg) & #4265177 (notabene) +Remember to mail this letter. 記得要去寄這封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #58629 (CK) & #842305 (Martha) +Rice is sold by the kilogram. 米以公斤為單位來出售。 CC-BY 2.0 (France) Attribution: tatoeba.org #320202 (CK) & #798202 (Martha) +Say hi to your father for me. 代我向你父親問好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477119 (weihaiping) & #893023 (Martha) +She adores her older brother. 她爱慕她哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #469118 (CK) & #1883016 (sadhen) +She assigned the work to him. 她把這個工作派給他做。 CC-BY 2.0 (France) Attribution: tatoeba.org #388390 (CK) & #864343 (Martha) +She can't ride a bicycle yet. 她還不會騎腳踏車。 CC-BY 2.0 (France) Attribution: tatoeba.org #312234 (CK) & #5419359 (egg0073) +She doesn't have any enemies. 她没有敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #308795 (CK) & #343461 (fucongcong) +She doesn't have any friends. 她一个朋友都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #317270 (CK) & #1428150 (sadhen) +She earns 30 dollars per day. 她每天挣30美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #310114 (CK) & #512201 (fucongcong) +She gave birth to a baby boy. 她生下了一個男嬰。 CC-BY 2.0 (France) Attribution: tatoeba.org #308883 (CK) & #818946 (Martha) +She gave birth to twin girls. 她生了雙胞胎女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #315512 (CK) & #805622 (Martha) +She gave me some good advice. 她給了我一些很好的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #307985 (CK) & #805190 (Martha) +She got married in her teens. 她十幾歲時就結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310061 (CK) & #802500 (Martha) +She has a cottage by the sea. 她在海边有一间小屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #312959 (CK) & #847775 (fucongcong) +She has a flower in her hand. 她手上有一朵花。 CC-BY 2.0 (France) Attribution: tatoeba.org #538435 (CK) & #894081 (Martha) +She has plenty of work to do. 她有很多事要做。 CC-BY 2.0 (France) Attribution: tatoeba.org #311528 (CK) & #332760 (fucongcong) +She is not as patient as you. 她没像你那样有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697706 (shanghainese) & #1695526 (sadhen) +She killed herself yesterday. 她昨天自杀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313812 (CK) & #512100 (fucongcong) +She likes to go to the sauna. 她喜欢去桑拿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2793979 (Hybrid) & #9007599 (jacintoo) +She likes to listen to music. 她喜欢听音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #312758 (CK) & #1417566 (sadhen) +She looked out of the window. 她看了窗外。 CC-BY 2.0 (France) Attribution: tatoeba.org #315530 (CK) & #8387375 (wangchou) +She made faces at that woman. 她對那個女人做了鬼臉。 CC-BY 2.0 (France) Attribution: tatoeba.org #311297 (CK) & #819280 (Martha) +She made jam from the apples. 她用蘋果做了果醬。 CC-BY 2.0 (France) Attribution: tatoeba.org #311145 (CK) & #801977 (Martha) +She might be taller than you. 她可能比你高。 CC-BY 2.0 (France) Attribution: tatoeba.org #388295 (CK) & #862688 (Martha) +She plays golf every weekend. 她每周末都打高尔夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #317069 (CK) & #1792512 (sadhen) +She put on her hat to go out. 她戴上了帽子准备出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #312985 (CK) & #429165 (fucongcong) +She really does like animals. 她确实喜欢动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #3041624 (alec) & #3032019 (sadhen) +She saw a tall man yesterday. 她昨天看见一个高大的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #310734 (CK) & #333764 (fucongcong) +She sometimes gets depressed. 她偶爾有憂鬱的心情。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481680 (weihaiping) & #908306 (Martha) +She took a bite of the apple. 她咬了一口蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477116 (weihaiping) & #844600 (Martha) +She was sitting under a tree. 她在一棵树下坐着。 CC-BY 2.0 (France) Attribution: tatoeba.org #317175 (CK) & #332962 (fucongcong) +She was susceptible to colds. 她易患感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #388662 (CK) & #840517 (Martha) +She wrote a book about birds. 她寫了一本關於鳥類的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #497129 (CK) & #864289 (Martha) +She's not yet heard the news. 她还没听到这个消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #312223 (CK) & #334281 (fucongcong) +Skating is one of my hobbies. 滑冰是我的嗜好之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #52036 (CK) & #797082 (Martha) +Skating is one of my hobbies. 溜冰是我的嗜好之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #52036 (CK) & #892443 (Martha) +Smoking isn't permitted here. 这里不允许抽烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #7493064 (CK) & #8673668 (crescat) +Some of the money was stolen. 一部分钱被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18635 (CK) & #1661559 (sadhen) +Some people relax by reading. 一些人通过阅读来放松。 CC-BY 2.0 (France) Attribution: tatoeba.org #280594 (CK) & #332842 (fucongcong) +Someone's been here recently. 有人刚才在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891861 (CK) & #5993929 (verdastelo9604) +Spanish is her mother tongue. 西班牙语是她的母语。 CC-BY 2.0 (France) Attribution: tatoeba.org #473822 (FeuDRenais) & #347044 (fucongcong) +Spring is my favorite season. 春天是我最喜歡的季節。 CC-BY 2.0 (France) Attribution: tatoeba.org #681990 (Source_VOA) & #781108 (Martha) +Spring is my favorite season. 春天是我最喜爱的季节。 CC-BY 2.0 (France) Attribution: tatoeba.org #681990 (Source_VOA) & #1415756 (sadhen) +Strike while the iron is hot. 打鐵趁熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #240718 (CM) & #806216 (Martha) +Study hard so you don't fail. 努力學習,這樣你就不會失敗。 CC-BY 2.0 (France) Attribution: tatoeba.org #325202 (CK) & #864320 (Martha) +Such a plan is bound to fail. 這樣的計劃注定會失敗的。 CC-BY 2.0 (France) Attribution: tatoeba.org #41397 (CK) & #798162 (Martha) +Suddenly, it started to rain. 突然開始下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #5303599 (3040403) & #797087 (Martha) +Suddenly, the light went out. 灯突然灭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #280658 (CK) & #363915 (fucongcong) +Tell me again where you live. 再跟我說一次,你住哪? CC-BY 2.0 (France) Attribution: tatoeba.org #1860559 (CK) & #3982103 (tsayng) +Thank you for your attention. 谢谢您的关注。 CC-BY 2.0 (France) Attribution: tatoeba.org #1767253 (CK) & #2500039 (fenfang557) +Thanks for returning my call. 感謝您的回電。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665512 (CK) & #6109364 (verdastelo9604) +Thanks for your quick answer. 谢谢您的迅速回复。 CC-BY 2.0 (France) Attribution: tatoeba.org #1157722 (Shishir) & #4517845 (yuiyu) +That car is really expensive. 那辆汽车真的很贵。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126628 (CK) & #1420607 (sadhen) +That dress looks good on you. 那条连衣裙很适合您。 CC-BY 2.0 (France) Attribution: tatoeba.org #497134 (CK) & #784387 (fucongcong) +That is all I know about him. 这就是我关于他知道的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #284608 (CK) & #4265002 (notabene) +That is no business of yours. 这不关你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #17282 (Swift) & #1327882 (vicch) +That song was written by Tom. 那首歌是Tom寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503007 (CK) & #4504413 (egg0073) +That thought crossed my mind. 这应证了我的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846789 (CK) & #4846806 (pig8322) +That's because you're a girl. 那是因為妳是女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1348 (CK) & #53 (fucongcong) +That's just your imagination. 这只是幻想而已。 CC-BY 2.0 (France) Attribution: tatoeba.org #3498705 (Hybrid) & #7781775 (jiangche) +That's none of your business. 那不關你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #514940 (Swift) & #842409 (Martha) +That's not a cat. It's a dog. 那不是猫。那是狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #475753 (darinmex) & #476230 (fucongcong) +That's the part I liked best. 那是我最喜歡的部分。 CC-BY 2.0 (France) Attribution: tatoeba.org #29044 (CM) & #6560618 (verdastelo9604) +The assistant took the money. 助手拿了钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #71849 (CK) & #844563 (kooler) +The bottle smashed to pieces. 瓶子摔成了碎片。 CC-BY 2.0 (France) Attribution: tatoeba.org #318575 (CK) & #8888005 (crescat) +The boy made fun of the girl. 這個男孩取笑了這個女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #46391 (CK) & #819243 (Martha) +The boy took the radio apart. 这个男孩把收音机折散架了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45409 (CK) & #1235245 (sunnywqing) +The bucket was full of water. 这桶装满了水。 CC-BY 2.0 (France) Attribution: tatoeba.org #50027 (human600) & #614791 (CLARET) +The bucket was full of water. 這個桶裝滿了水。 CC-BY 2.0 (France) Attribution: tatoeba.org #50027 (human600) & #9170873 (xjjAstrus) +The bus was ten minutes late. 公车晚了十分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #351268 (human600) & #1323684 (vicch) +The car got stuck in the mud. 這輛車陷在泥裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #265420 (CK) & #858340 (Martha) +The cat is watching the fish. 猫看着鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #462638 (lukaszpp) & #466164 (fucongcong) +The conference ended at five. 會議在五點鐘結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #478193 (CK) & #836411 (Martha) +The cost of living has risen. 生活費升高了。 CC-BY 2.0 (France) Attribution: tatoeba.org #442110 (CK) & #866302 (Martha) +The dress fits you very well. 这条裙子你穿着很合身。 CC-BY 2.0 (France) Attribution: tatoeba.org #335768 (TRANG) & #335855 (fucongcong) +The girl made an awkward bow. 這個女孩做了一把很難使用的弓。 CC-BY 2.0 (France) Attribution: tatoeba.org #267839 (CK) & #908515 (Martha) +The girl made an awkward bow. 這個女孩做了一把不稱手的弓。 CC-BY 2.0 (France) Attribution: tatoeba.org #267839 (CK) & #908517 (Martha) +The horse is a useful animal. 马是种很有用的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #282392 (CM) & #346475 (fucongcong) +The house isn't occupied now. 房子现在没被占住。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492890 (CK) & #6089948 (verdastelo9604) +The hunter shot the fox dead. 獵人射殺了狐狸。 CC-BY 2.0 (France) Attribution: tatoeba.org #776086 (BraveSentry) & #777001 (Martha) +The king crushed his enemies. 國王摧毀了他的敵人。 CC-BY 2.0 (France) Attribution: tatoeba.org #25632 (CK) & #793939 (Martha) +The leaves fell to the earth. 树叶掉在地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #323604 (CK) & #817370 (fucongcong) +The man is wanted for murder. 這人因謀殺被通緝。 CC-BY 2.0 (France) Attribution: tatoeba.org #45318 (CK) & #6309816 (verdastelo9604) +The meeting has almost ended. 会议接近了尾声。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812279 (sharris123) & #1328075 (vicch) +The meeting lasted two hours. 這個會議持續了兩個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #22445 (CK) & #845448 (Martha) +The monkey climbed up a tree. 猴子爬上了树。 CC-BY 2.0 (France) Attribution: tatoeba.org #50347 (CK) & #1372495 (sadhen) +The moon was full last night. 昨晚月亮满了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5576348 (CK) & #5845582 (verdastelo9604) +The news of his death spread. 他去世的消息傳開來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #400144 (CK) & #874966 (Martha) +The old man died from hunger. 這位老人死於飢餓。 CC-BY 2.0 (France) Attribution: tatoeba.org #480146 (CK) & #871042 (Martha) +The old man lived by himself. 老人独自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #43348 (CK) & #5967306 (verdastelo9604) +The old man starved to death. 這位老人餓死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #480145 (CK) & #875060 (Martha) +The pirates boarded the ship. 海盜們上了船。 CC-BY 2.0 (France) Attribution: tatoeba.org #2491864 (Hybrid) & #6547466 (verdastelo9604) +The price of rice has fallen. 米价下跌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8952376 (Ag12x) & #333506 (fucongcong) +The price of the book was $5. 这本书的价格是5美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #43942 (CK) & #1415795 (sadhen) +The road is very treacherous. 这条路挺险恶。 CC-BY 2.0 (France) Attribution: tatoeba.org #8669516 (ajje) & #9007594 (jacintoo) +The soldier gave water to me. 士兵給了我水。 CC-BY 2.0 (France) Attribution: tatoeba.org #44107 (CK) & #805024 (Martha) +The teacher gave us homework. 老师给我们布置了家庭作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #272954 (CK) & #332544 (fucongcong) +The total comes to 3,000 yen. 总共是3000日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #451751 (FeuDRenais) & #444800 (fucongcong) +The word is unfamiliar to me. 我对这个单词不熟。 CC-BY 2.0 (France) Attribution: tatoeba.org #48176 (CK) & #1235246 (sunnywqing) +Their meeting was inevitable. 他們的相遇是必然的。 CC-BY 2.0 (France) Attribution: tatoeba.org #547045 (FeuDRenais) & #767126 (Martha) +There is a clock on the wall. 牆壁上掛著一個時鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #320255 (CK) & #779046 (Martha) +There is a hole in your sock. 你的袜子上有个洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #18089 (Zifre) & #1878281 (sadhen) +There is a hole in your sock. 你的袜子破了一个洞呀。 CC-BY 2.0 (France) Attribution: tatoeba.org #18089 (Zifre) & #8593083 (easononizuka) +There is a little water left. 还剩一点水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270809 (CK) & #435375 (fucongcong) +There is no clock in my room. 我的房间里没有时钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #251763 (CK) & #8703965 (crescat) +There is no denying the fact. 這是無可否認的事實。 CC-BY 2.0 (France) Attribution: tatoeba.org #47047 (CK) & #769691 (Martha) +There is only one bath towel. 只有一條浴巾。 CC-BY 2.0 (France) Attribution: tatoeba.org #539026 (CK) & #872394 (Martha) +There was a shortage of fuel. 燃料短缺。 CC-BY 2.0 (France) Attribution: tatoeba.org #282241 (CK) & #801472 (Martha) +There was no one in the room. 房間裡沒有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #319545 (Eldad) & #801456 (Martha) +There was no one left but me. 除了我没有人離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #247154 (CK) & #801457 (Martha) +There wasn't a soul in sight. 一個人影也看不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #34679 (CK) & #798295 (Martha) +There's a cat under the desk. 书桌下有一只猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #9013940 (CK) & #336604 (fucongcong) +There's no chair to sit upon. 沒有椅子坐。 CC-BY 2.0 (France) Attribution: tatoeba.org #243640 (CK) & #798071 (Martha) +There's no need to apologize. 沒有必要道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #448957 (CK) & #836276 (Martha) +These apples look very fresh. 这些苹果看起来很新鲜。 CC-BY 2.0 (France) Attribution: tatoeba.org #682172 (Source_VOA) & #1395074 (mtdot) +They adopted the little girl. 他们收养了那个小女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #291023 (CK) & #782323 (fucongcong) +They are much taller than us. 他們比我們高得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #306660 (CK) & #759770 (Martha) +They are peace-loving people. 他们是热爱和平的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #659815 (xiuqin) & #332441 (fucongcong) +They are talking about music. 他们在谈音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #306212 (CK) & #808217 (fucongcong) +They bought a box of cookies. 他们买了一盒曲奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #305598 (CK) & #335828 (fucongcong) +They forgot to lock the door. 他们忘了锁门。 CC-BY 2.0 (France) Attribution: tatoeba.org #6050 (CK) & #1397012 (mtdot) +They gave a big party for me. 他們為我辦了一個盛大的派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #306690 (CK) & #818961 (Martha) +They greeted me with a smile. 他們面帶微笑向我打招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #306724 (CK) & #802075 (Martha) +They must be waiting for you. 他們一定在等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #306409 (CK) & #872377 (Martha) +They must work 8 hours a day. 他们每天必须工作8小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #305412 (CK) & #334152 (fucongcong) +They now have three children. 现在他们有三个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3249294 (nava) & #7781516 (jiangche) +This book is quite difficult. 这本书很难读。 CC-BY 2.0 (France) Attribution: tatoeba.org #7681638 (potatoindespair) & #1765702 (sadhen) +This bucket has a hole in it. 這個桶有個洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823432 (CK) & #9170865 (xjjAstrus) +This car handles very easily. 这车容易开。 CC-BY 2.0 (France) Attribution: tatoeba.org #58731 (CK) & #6020844 (verdastelo9604) +This car is the latest model. 这辆车是最新款。 CC-BY 2.0 (France) Attribution: tatoeba.org #58722 (CM) & #2027923 (sadhen) +This coat fits you perfectly. 這件大衣十分適合你。 CC-BY 2.0 (France) Attribution: tatoeba.org #410775 (CK) & #836322 (Martha) +This could hurt our business. 这会打击我们的生意。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665494 (CK) & #5613631 (verdastelo9604) +This dress is a good bargain. 这条连衣裙很便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #56541 (CK) & #333160 (fucongcong) +This is a kind of watermelon. 这是一种西瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #55566 (CK) & #334498 (fucongcong) +This is a very hard mattress. 這個床墊很硬。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268938 (_undertoad) & #9046309 (xjjAstrus) +This is difficult to believe. 這讓人難以置信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180904 (treskro3) & #9037043 (xjjAstrus) +This is the only book I have. 这是我仅有的一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #246800 (CK) & #791415 (fucongcong) +This machine is out of order. 这个机器出故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #59798 (CK) & #8759489 (crescat) +This piece is in a major key. 这首曲子是大调。 CC-BY 2.0 (France) Attribution: tatoeba.org #2763430 (sharptoothed) & #8786454 (slo_oth) +This question is very simple. 这个问题很简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #2857288 (AlanF_US) & #6563550 (gumblex) +This really is a masterpiece. 这真是个杰作。 CC-BY 2.0 (France) Attribution: tatoeba.org #8885809 (iiujik) & #8877860 (crescat) +This really is great weather. 這真的是個好天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #402405 (CK) & #842310 (Martha) +This room is air-conditioned. 這個房間有空調。 CC-BY 2.0 (France) Attribution: tatoeba.org #57295 (CK) & #781158 (Martha) +This shirt costs ten dollars. 這襯衫要十元。 CC-BY 2.0 (France) Attribution: tatoeba.org #61038 (CK) & #1261427 (tsayng) +Three voted against the idea. 有三票反对这主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #804306 (Source_VOA) & #5558543 (verdastelo9604) +Tom always sings out of tune. 汤姆唱歌总跑调。 CC-BY 2.0 (France) Attribution: tatoeba.org #2476394 (FeuDRenais) & #2454777 (fenfang557) +Tom and Mary are very hungry. 汤姆和玛丽很饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422745 (Spamster) & #5571924 (verdastelo9604) +Tom and Mary will go with me. 湯姆和瑪麗會跟我走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269006 (_undertoad) & #6860867 (verdastelo9604) +Tom built his own motorcycle. 湯姆造了他自己的摩托車。 CC-BY 2.0 (France) Attribution: tatoeba.org #5737609 (CM) & #6150885 (verdastelo9604) +Tom changed into his uniform. 汤姆换上制服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643292 (CK) & #5780579 (verdastelo9604) +Tom couldn't control himself. 汤姆不能自已。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095141 (CK) & #1395101 (mtdot) +Tom decided to become a monk. 汤姆(Tom)决定出家为僧。 CC-BY 2.0 (France) Attribution: tatoeba.org #4700075 (CK) & #8500224 (black333) +Tom declined to give details. 汤姆拒绝提供详细信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #4850008 (CK) & #5685897 (verdastelo9604) +Tom didn't look happy at all. 汤姆看起来一点也不开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094701 (CK) & #4972575 (wzhd) +Tom didn't say a single word. 湯姆甚麼也没說。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956563 (CK) & #6293099 (verdastelo9604) +Tom didn't sound too worried. 湯姆聽起來不太擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5938074 (CK) & #6103200 (verdastelo9604) +Tom didn't tell me the truth. 湯姆沒有告訴我實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794428 (CK) & #4794637 (umidake) +Tom doesn't care about money. 汤姆不关心钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821386 (CK) & #5650484 (verdastelo9604) +Tom doesn't have to thank me. 湯姆不需要謝我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665465 (CK) & #6150882 (verdastelo9604) +Tom doesn't really love Mary. 汤姆不是真的爱玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665456 (CK) & #5091434 (mirrorvan) +Tom doesn't seem to think so. 汤姆似乎不这么认为。 CC-BY 2.0 (France) Attribution: tatoeba.org #5272434 (CK) & #8739631 (slo_oth) +Tom doesn't talk with anyone. 湯姆不跟任何人說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #3149955 (Ricardo14) & #6132396 (verdastelo9604) +Tom doesn't trust the police. 湯姆並不信任警察。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422697 (Spamster) & #1422748 (cienias) +Tom doesn't want to go alone. 汤姆不想一个人走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025918 (CK) & #5611487 (verdastelo9604) +Tom forgot to buy toothpaste. 湯姆忘了買牙膏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7732807 (CK) & #9049746 (xjjAstrus) +Tom gave Mary a nice present. 湯姆給了瑪麗一個不錯的禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410889 (CK) & #6103058 (verdastelo9604) +Tom got rid of his old books. 汤姆扔掉了他的旧书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093935 (CK) & #5091667 (mirrorvan) +Tom had numerous girlfriends. Tom有很多女友。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493603 (CK) & #4504492 (egg0073) +Tom has a lot to think about. 汤姆要考虑很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1177615 (CK) & #5617179 (verdastelo9604) +Tom has been driving all day. 汤姆整天都在开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #3424200 (CK) & #5685939 (verdastelo9604) +Tom has been here since 2013. 湯姆從2013年起一直在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5272846 (CK) & #6483525 (verdastelo9604) +Tom has been lying all along. 湯姆一直在說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3724102 (CM) & #6070876 (verdastelo9604) +Tom has got his own problems. 汤姆有他自己的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663380 (CK) & #7771898 (jiangche) +Tom has lost weight recently. 湯姆最近變瘦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025359 (CK) & #4805780 (umidake) +Tom has more books than Mary. 湯姆的書比瑪麗的還多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5640492 (CK) & #6098453 (verdastelo9604) +Tom has never been in prison. 湯姆從沒進過監獄。 CC-BY 2.0 (France) Attribution: tatoeba.org #5243176 (CK) & #6624670 (verdastelo9604) +Tom hasn't given us anything. 汤姆什么也没给我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #5148883 (CK) & #5983648 (verdastelo9604) +Tom heard this and got angry. 聽到這事之後,湯姆為之色變。 CC-BY 2.0 (France) Attribution: tatoeba.org #37289 (CK) & #1225698 (tsayng) +Tom hitched a ride to Boston. 汤姆搭便车去波士顿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6124237 (CK) & #8553156 (slo_oth) +Tom is Mary's former husband. 湯姆是瑪麗的前夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028543 (CK) & #6931231 (verdastelo9604) +Tom is a high school student. 湯姆是個高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #37147 (CK) & #872139 (Martha) +Tom is as tall as his father. 湯姆跟他爸爸一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #37308 (CK) & #903471 (Martha) +Tom is in Boston on business. 汤姆因为工作现在在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2734243 (CK) & #8739490 (crescat) +Tom is looking for a new job. 湯姆在找新工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3264724 (CK) & #6568340 (verdastelo9604) +Tom is quite good at cooking. Tom對烹飪很在行。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024892 (CK) & #5496311 (egg0073) +Tom is resting at the moment. 汤姆现在在休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713149 (CK) & #5983587 (verdastelo9604) +Tom isn't afraid of anything. 湯姆對甚麼都不怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024728 (CK) & #6585427 (verdastelo9604) +Tom jumped up from his chair. 湯姆從他的椅子上跳了起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #2744925 (sharptoothed) & #6151297 (verdastelo9604) +Tom kissed Mary on the cheek. 汤姆亲了玛丽脸颊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028434 (CK) & #4759978 (ryanwoo) +Tom knew he should help Mary. 湯姆知道他該幫瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #6438880 (CK) & #8215755 (verdastelo9604) +Tom knew that Mary was upset. 汤姆知道玛丽不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132860 (CK) & #5978341 (verdastelo9604) +Tom looked at the photograph. 汤姆看了看照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #3122134 (CK) & #8839902 (crescat) +Tom needs to be very careful. 湯姆需要很小心。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665413 (CK) & #6028108 (verdastelo9604) +Tom owes Mary thirty dollars. Tom欠Mary三十元。 CC-BY 2.0 (France) Attribution: tatoeba.org #5104976 (CK) & #5534935 (egg0073) +Tom owns a yellow sports car. 汤姆有一辆黄色跑车。 CC-BY 2.0 (France) Attribution: tatoeba.org #681678 (Source_VOA) & #8798296 (crescat) +Tom put a cover over his car. 汤姆给车盖上套。 CC-BY 2.0 (France) Attribution: tatoeba.org #3155854 (CK) & #5903466 (verdastelo9604) +Tom quit smoking cold turkey. 汤姆突然戒烟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5736586 (CM) & #8743590 (slo_oth) +Tom says they need more time. 汤姆说他们需要更多时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643181 (CK) & #3289595 (sadhen) +Tom shot himself in the head. 汤姆拿枪射自己的头。 CC-BY 2.0 (France) Attribution: tatoeba.org #1617080 (Spamster) & #1749200 (sadhen) +Tom should wait until Monday. 汤姆应该等到星期一。 CC-BY 2.0 (France) Attribution: tatoeba.org #6267502 (CK) & #8751413 (slo_oth) +Tom told me he wanted to win. 湯姆告訴我他想贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #6351849 (CK) & #6936233 (verdastelo9604) +Tom told me where Mary lives. 汤姆告诉了我玛丽住哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #3200710 (CK) & #8877854 (crescat) +Tom told the cops everything. 湯姆全都告訴了條子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5368864 (CK) & #6105289 (verdastelo9604) +Tom told them not to do that. 湯姆告訴他們不要去做那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141110 (CK) & #6936207 (verdastelo9604) +Tom turned out to be a thief. 原来Tom是贼来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092609 (CK) & #8593082 (easononizuka) +Tom visited Boston last year. 湯姆去年去了波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023328 (CK) & #6623169 (verdastelo9604) +Tom was completely exhausted. 湯姆完全筋疲力盡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4828621 (salpfish) & #836269 (Martha) +Tom was injured in the blast. 汤姆在爆炸中受伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958552 (CK) & #5780614 (verdastelo9604) +Tom went back to his bedroom. 汤姆回到了他的卧室。 CC-BY 2.0 (France) Attribution: tatoeba.org #3419879 (CK) & #5576817 (verdastelo9604) +Tom will never see you again. 汤姆以后再也不会见你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826872 (CK) & #5091141 (mirrorvan) +Tom will never see you again. 汤姆永远也不会见你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826872 (CK) & #5091142 (mirrorvan) +Tom will never see you again. 汤姆再也不会见你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826872 (CK) & #5091143 (mirrorvan) +Tom's birthday was yesterday. 汤姆的生日是昨天。 CC-BY 2.0 (France) Attribution: tatoeba.org #682512 (Source_VOA) & #816556 (fucongcong) +Tom, have you eaten anything? 汤姆,你吃过东西了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7936448 (AlanF_US) & #8778497 (crescat) +Turn left at the first light. 在第一個紅綠燈左轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #244028 (CK) & #801350 (Martha) +Turn left at the next corner. 下一个街角左转。 CC-BY 2.0 (France) Attribution: tatoeba.org #264209 (autuno) & #746056 (fucongcong) +Turn the radio down a little. 把收音機的聲音關小一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #31288 (CK) & #796977 (Martha) +Underage drinking is a crime. 未满年龄饮酒是罪行。 CC-BY 2.0 (France) Attribution: tatoeba.org #1848864 (Spamster) & #5687003 (verdastelo9604) +Unfortunately, she is absent. 不幸的是,她不在。 CC-BY 2.0 (France) Attribution: tatoeba.org #408579 (CK) & #819402 (Martha) +Wait here till he comes back. 在这儿等到他回来为止。 CC-BY 2.0 (France) Attribution: tatoeba.org #284229 (CK) & #332859 (fucongcong) +Was there anyone in the room? 房间里有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319501 (CK) & #349657 (fucongcong) +Wash your hands before meals. 饭前要洗手。 CC-BY 2.0 (France) Attribution: tatoeba.org #268719 (Barbiche0) & #544891 (biglion) +We are badly in need of food. 我们非常需要食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #248896 (CK) & #336218 (fucongcong) +We ate curry rice last night. 我們昨晚吃了咖哩飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #788259 (hrin) & #780272 (Martha) +We can do more than they can. 我們能比他們做得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953568 (CK) & #6826153 (verdastelo9604) +We could see nothing but fog. 除了雾我看不见任何东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #322861 (CK) & #678948 (Martha) +We could walk there together. 我們可以一起走著去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312691 (CK) & #6624699 (verdastelo9604) +We couldn't keep from crying. 我們止不住哭泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1823892 (Amastan) & #6111752 (verdastelo9604) +We don't have another choice. 我们没有别的选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269594 (FeuDRenais) & #2254381 (KerenDeng) +We don't have any bread left. 我們沒麵包了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4563708 (mailohilohi) & #5706094 (xjjAstrus) +We don't have any more bread. 我們沒麵包了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31118 (CK) & #5706094 (xjjAstrus) +We fixed that pretty quickly. 我們很快修好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4908403 (CK) & #6094829 (verdastelo9604) +We found the boy fast asleep. 我們發現這個男孩睡得很沉。 CC-BY 2.0 (France) Attribution: tatoeba.org #247247 (CK) & #805573 (Martha) +We got a good price for that. 我們得到了一個很好的價格買那個東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #42450 (CK) & #804617 (Martha) +We got to the station at six. 我們六點鐘到了車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #23295 (CK) & #802114 (Martha) +We had bad weather yesterday. 昨天天氣很糟。 CC-BY 2.0 (France) Attribution: tatoeba.org #244529 (CK) & #1233811 (tsayng) +We have a special connection. 我們有特殊聯繫。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665394 (CK) & #6146648 (verdastelo9604) +We have to do something, Tom. 汤姆,我们必须要做点什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064799 (CK) & #2440917 (fenfang557) +We have to stop the bleeding. 我們必須止血。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312390 (CK) & #6120861 (verdastelo9604) +We live in the United States. 我們住在美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #464412 (lukaszpp) & #886537 (Martha) +We must conform to the rules. 我们必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #248558 (CK) & #334729 (fucongcong) +We must reduce energy demand. 我们必须降低能源需求。 CC-BY 2.0 (France) Attribution: tatoeba.org #23261 (Swift) & #5911627 (verdastelo9604) +We set a trap to catch a fox. 我们设了个陷阱来抓狐狸。 CC-BY 2.0 (France) Attribution: tatoeba.org #248653 (CK) & #813597 (fucongcong) +We watched the children play. 我们看着这孩子玩耍。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479232 (weihaiping) & #332545 (fucongcong) +We went on a picnic together. 我們一起去野餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262889 (al_ex_an_der) & #780250 (Martha) +We weren't making fun of you. 我們没有笑話你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728987 (CM) & #6141297 (verdastelo9604) +We work every day but Sunday. 我們除了週日每一天都工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #466916 (CK) & #874385 (Martha) +We'll begin tomorrow morning. 我們明天上午開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #2643123 (CK) & #6483523 (verdastelo9604) +We'll go when the rain stops. 當雨停了,我們就會去。 CC-BY 2.0 (France) Attribution: tatoeba.org #503837 (CK) & #868449 (Martha) +We'll talk about it tomorrow. 我們明天討論它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898808 (Spamster) & #6103227 (verdastelo9604) +We're both reasonable people. 我们是两个通情达理的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953904 (CK) & #4844987 (pig8322) +Wearing a suit, he stood out. 他穿著西裝站了出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388829 (CK) & #874982 (Martha) +Well, girls, it's time to go. 那么,女孩们,是时候出发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2254382 (_undertoad) & #2254385 (KerenDeng) +What are my responsibilities? 我的责任是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464498 (lukaszpp) & #469444 (fucongcong) +What are you concerned about? 你在担心什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #24684 (CK) & #1719577 (yuzazaza) +What did she buy at the shop? 她在店裡買了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #311372 (CK) & #1448572 (egg0073) +What did you come here to do? 您来这儿干嘛? CC-BY 2.0 (France) Attribution: tatoeba.org #8466574 (moarplease) & #471273 (fucongcong) +What did you go to Kyoto for? 你為什麼去京都? CC-BY 2.0 (France) Attribution: tatoeba.org #36404 (CK) & #781182 (Martha) +What do you call this flower? 這個花叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #60062 (CK) & #874357 (Martha) +What do you have in your bag? 你的袋子裡有什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #69790 (CK) & #895591 (Martha) +What do you say we go skiing? 我们去滑雪怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #52312 (Zifre) & #332768 (fucongcong) +What do you think about that? 你認為如何? CC-BY 2.0 (France) Attribution: tatoeba.org #1744630 (Amastan) & #735175 (Martha) +What exactly happened to you? 你到底怎麼回事啊? CC-BY 2.0 (France) Attribution: tatoeba.org #3931911 (freequiet) & #3897851 (liyongtao) +What grade is your sister in? 你的妹妹唸幾年級? CC-BY 2.0 (France) Attribution: tatoeba.org #16905 (CK) & #864391 (Martha) +What have I ever done to Tom? 我对汤姆做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3394342 (CK) & #5983629 (verdastelo9604) +What kind of a person is Tom? 汤姆是个什么样的人? CC-BY 2.0 (France) Attribution: tatoeba.org #5082197 (zvzuibqx) & #5072392 (musclegirlxyp) +What you see is what you get. 你看到什麼拿什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #643731 (kebukebu) & #761290 (Martha) +What's the name of that bird? 那隻鳥叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #7868758 (CK) & #825128 (Martha) +What's the name of this tune? 這首曲子叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #433608 (CK) & #869858 (Martha) +What's the name of this tune? 这歌叫什么名字? CC-BY 2.0 (France) Attribution: tatoeba.org #433608 (CK) & #7774357 (jiangche) +What's this supposed to mean? 這該是甚麼意思? CC-BY 2.0 (France) Attribution: tatoeba.org #4014558 (CK) & #6148373 (verdastelo9604) +What's your telephone number? 你电话号码是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #6334759 (CK) & #7773123 (jiangche) +When I awoke, it was snowing. 當我醒來時,天正下著雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #323704 (CM) & #801443 (Martha) +When did you get to know Tom? 你是甚麼時候認識湯姆的? CC-BY 2.0 (France) Attribution: tatoeba.org #1023763 (CK) & #6128515 (verdastelo9604) +Where did you go last Sunday? 上周日你去哪儿了? CC-BY 2.0 (France) Attribution: tatoeba.org #16681 (CK) & #476571 (fucongcong) +Where did you live last year? 你去年住在哪儿? CC-BY 2.0 (France) Attribution: tatoeba.org #69492 (CK) & #8924835 (crescat) +Where was this picture taken? 这张照片在哪儿照的? CC-BY 2.0 (France) Attribution: tatoeba.org #1886607 (CK) & #4887725 (musclegirlxyp) +Where's the checkout counter? 結帳櫃台在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #29518 (CK) & #778513 (Martha) +Where's the closest pharmacy? 最近的藥房在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #555278 (FeuDRenais) & #766411 (Martha) +Where's the next train going? 下一列火車去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #4015727 (CK) & #6309822 (verdastelo9604) +Wherever you go, I'll follow. 無論你去哪裡我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #9052497 (CK) & #850409 (Martha) +Wherever you go, I'll follow. 無論你到哪裡,我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #9052497 (CK) & #868447 (Martha) +Which bed do you want to use? 你想睡哪張床? CC-BY 2.0 (France) Attribution: tatoeba.org #16477 (CK) & #775793 (Martha) +Which credit cards can I use? 我可以用哪些信用卡? CC-BY 2.0 (France) Attribution: tatoeba.org #37597 (CK) & #870099 (Martha) +Which road goes to city hall? 哪條路通往市政廳? CC-BY 2.0 (France) Attribution: tatoeba.org #502511 (CK) & #864427 (Martha) +Who are you looking for, Tom? 你在找誰,湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #4308863 (monahxo) & #4308997 (wzhd) +Who is your favorite TV star? 谁是你最喜爱的电视明星? CC-BY 2.0 (France) Attribution: tatoeba.org #70827 (CK) & #334122 (fucongcong) +Why are you being so evasive? 你为什么这么躲躲闪闪? CC-BY 2.0 (France) Attribution: tatoeba.org #8215694 (CK) & #8791831 (slo_oth) +Why did you begin without me? 为什么你不等等我就开始了? CC-BY 2.0 (France) Attribution: tatoeba.org #5093297 (CarpeLanam) & #5095195 (mirrorvan) +Why did you say such a thing? 你為什麼說了這樣的事? CC-BY 2.0 (France) Attribution: tatoeba.org #16500 (CK) & #775797 (Martha) +Why didn't you lock the door? 你為甚麼不鎖門? CC-BY 2.0 (France) Attribution: tatoeba.org #3825096 (CK) & #6624701 (verdastelo9604) +Why do people commit suicide? 为什么人们会自杀? CC-BY 2.0 (France) Attribution: tatoeba.org #841010 (papabear) & #1424341 (sadhen) +Why don't we get out of here? 我们为什么不离开这里? CC-BY 2.0 (France) Attribution: tatoeba.org #2954213 (CK) & #6028213 (verdastelo9604) +Why don't you eat vegetables? 为什么你不吃蔬菜? CC-BY 2.0 (France) Attribution: tatoeba.org #1763 (Swift) & #502693 (fucongcong) +Why don't you join our party? 你為什麼不參加我們的派對? CC-BY 2.0 (France) Attribution: tatoeba.org #247641 (CK) & #874350 (Martha) +Will it take long to recover? 要很長的時間才能恢復嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #278098 (CK) & #872171 (Martha) +Will it take long to recover? 復原需要花很長的時間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #278098 (CK) & #872178 (Martha) +Will the train leave on time? 這班火車會準時出發嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #326230 (CK) & #872222 (Martha) +Will you sell your car to me? 你可以把你的車賣給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #249663 (CK) & #896511 (Martha) +Winds from the sea are moist. 从海洋吹来的风感觉湿漉漉的。 CC-BY 2.0 (France) Attribution: tatoeba.org #22267 (CK) & #2513895 (fenfang557) +Winter is my favorite season. 冬天是我最喜欢的季节。 CC-BY 2.0 (France) Attribution: tatoeba.org #2079 (Swift) & #414622 (fucongcong) +Would 9 o'clock be all right? 9點可以嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #72288 (CK) & #866309 (Martha) +Would you lend me some money? 你可以借我一些錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64560 (CK) & #777016 (Martha) +Would you lend me your knife? 你可以借我你的刀嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #36538 (CK) & #777012 (Martha) +Would you like another apple? 你要再來顆蘋果嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29613 (CK) & #838547 (Martha) +Would you like anything else? 还有什么想要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #687832 (lukaszpp) & #8902614 (crescat) +Would you like some more tea? 您想再来点茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64204 (CK) & #334887 (fucongcong) +Would you like tea or coffee? 您想要茶还是咖啡? CC-BY 2.0 (France) Attribution: tatoeba.org #64213 (CK) & #335008 (fucongcong) +Would you like to come along? 你想一起去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237657 (CK) & #875123 (Martha) +You and I have the same idea. 你和我有相同的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #410755 (CK) & #895655 (Martha) +You are suitable for the job. 你很適合這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #16692 (CK) & #875047 (Martha) +You are your own worst enemy. 你是你自己最大的敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5331127 (Bianquita) & #5094907 (mirrorvan) +You can go anywhere you want. 你可以去任何你想去的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #24536 (CK) & #866055 (Martha) +You can go wherever you want. 你想去哪里都可以。 CC-BY 2.0 (France) Attribution: tatoeba.org #69857 (CK) & #4267276 (notabene) +You can't live without water. 沒有水你不能生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #466971 (CK) & #842465 (Martha) +You don't have any more time. 你沒有時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3373038 (CK) & #6148211 (verdastelo9604) +You gave me only fifty cents. 你只給了我五十美分。 CC-BY 2.0 (France) Attribution: tatoeba.org #72549 (CK) & #805200 (Martha) +You gave me the wrong change. 你找錯了零錢給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #64979 (CK) & #805186 (Martha) +You have no right to do that. 你無權那麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1996967 (FrankeeD) & #6071004 (verdastelo9604) +You have to follow the rules. 你必须遵守规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #3783117 (CK) & #3783445 (Debbie_Linder) +You know what I want to hear. 你知道我想聽甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2013700 (CK) & #6131315 (verdastelo9604) +You look very charming today. 今天你看起来很迷人啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #16136 (CK) & #1992644 (sadhen) +You may as well come with me. 你不如跟我一起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #69341 (CK) & #793909 (Martha) +You may choose what you like. 你可以選擇你喜歡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #240680 (CK) & #793890 (Martha) +You may go anywhere you like. 你喜欢去哪儿就可以去哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #16481 (CK) & #471298 (fucongcong) +You must keep your eyes open. 你得留意一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #29947 (CK) & #1438460 (asosan) +You must send for the doctor. 你必須派人去請醫生來。 CC-BY 2.0 (France) Attribution: tatoeba.org #27904 (CK) & #769673 (Martha) +You need to shed some pounds. 你需要甩掉几磅。 CC-BY 2.0 (France) Attribution: tatoeba.org #8743427 (Solana) & #8744746 (slo_oth) +You only gave me fifty cents. 你只給了我五十美分。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149830 (FeuDRenais) & #805200 (Martha) +You people are no fun at all. 你们这帮人真没意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #2821361 (CK) & #5945141 (verdastelo9604) +You seem to be an honest man. 你看起来像个老实人。 CC-BY 2.0 (France) Attribution: tatoeba.org #15956 (CK) & #1992626 (sadhen) +You should be kind to others. 对其他人你应该和善一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #274680 (CK) & #3783099 (Debbie_Linder) +You should get your hair cut. 你该剪头发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #15857 (CK) & #343229 (fucongcong) +You should get your hair cut. 你该理发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #15857 (CK) & #1839177 (sadhen) +You should have come earlier. 你本应该来得更早的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16378 (CK) & #335532 (fucongcong) +You should keep your promise. 你應該信守諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #237621 (CK) & #874172 (Martha) +You should obey your parents. 你该听你父母的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #237640 (CK) & #811286 (fucongcong) +You should've come yesterday. 你昨天應該來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5651761 (CK) & #845490 (Martha) +You should've kept it secret. 你應該保密的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678519 (CK) & #868392 (Martha) +You shouldn't break promises. 你不该违背你的诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #68882 (CK) & #426337 (fucongcong) +You shouldn't have done that. 我不應該做那件事的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1996938 (Spamster) & #4504232 (egg0073) +You think I'm mad, don't you? 你認為我瘋了,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3373033 (CK) & #6132395 (verdastelo9604) +You want to remain anonymous. 你想保持匿名身份。 CC-BY 2.0 (France) Attribution: tatoeba.org #1325448 (CM) & #7768398 (jiangche) +You'd better go home at once. 你最好立刻回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #52201 (CK) & #874471 (Martha) +You'll go to school tomorrow. 你明天去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #20112 (CK) & #6325087 (verdastelo9604) +You'll have to start at once. 你必须马上开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #52163 (CK) & #333008 (fucongcong) +You'll miss me when I'm gone. 我走了你会想我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2713123 (CK) & #5640743 (verdastelo9604) +You're about three days late. 你大約遅了三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542700 (CK) & #6149020 (verdastelo9604) +You're always criticizing me! 你总是批评我! CC-BY 2.0 (France) Attribution: tatoeba.org #16761 (CK) & #1235590 (sunnywqing) +You're just being ridiculous. 你就是荒唐。 CC-BY 2.0 (France) Attribution: tatoeba.org #3360203 (CK) & #5965711 (verdastelo9604) +You've cut my hair too short. 你把我的头发剪得太短了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251582 (CK) & #1767731 (yuzazaza) +You've told Tom, haven't you? 你告诉汤姆了,没有吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2542695 (CK) & #5900367 (verdastelo9604) +Your behavior is intolerable. 你的行为让人无法忍受。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493988 (CK) & #8655341 (slo_oth) +Your brother will not buy it. 你哥哥不會買它。 CC-BY 2.0 (France) Attribution: tatoeba.org #770168 (marloncori) & #770206 (Martha) +Your pen is better than mine. 你的笔比我的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #17355 (CK) & #333143 (fucongcong) +"I like traveling." "So do I." “我喜欢旅游。“ ”我也是。“ CC-BY 2.0 (France) Attribution: tatoeba.org #262206 (blay_paul) & #1490503 (sadhen) +"Who is in the car?" "Tom is." “谁在车里?” “汤姆。” CC-BY 2.0 (France) Attribution: tatoeba.org #73610 (CK) & #493460 (biglion) +A bird is singing in the tree. 一隻鳥正在樹上唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #278169 (CK) & #943457 (Martha) +A doctor was sent for at once. 醫生立刻被請來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #52217 (CK) & #801492 (Martha) +A dog was run over by a truck. 一条狗被卡车碾过。 CC-BY 2.0 (France) Attribution: tatoeba.org #239101 (CK) & #787367 (fucongcong) +A dolphin is a kind of mammal. 海豚是一種哺乳動物。 CC-BY 2.0 (France) Attribution: tatoeba.org #65811 (CK) & #873292 (Martha) +A fly can walk on the ceiling. 蒼蠅能在天花板上走。 CC-BY 2.0 (France) Attribution: tatoeba.org #35496 (CK) & #798176 (Martha) +A hungry pig dreams of acorns. 飢餓的豬夢到橡樹子。 CC-BY 2.0 (France) Attribution: tatoeba.org #818080 (Cindrogriza) & #818102 (Martha) +All of my friends like soccer. 我所有的朋友都喜歡足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321555 (CK) & #846012 (Martha) +All of them are good teachers. 他们都是好老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #1099030 (shanghainese) & #333284 (fucongcong) +All that glitters is not gold. 發光的未必都是金子。 CC-BY 2.0 (France) Attribution: tatoeba.org #20086 (Swift) & #806207 (Martha) +All that glitters is not gold. 光看表面是不足夠的。 CC-BY 2.0 (France) Attribution: tatoeba.org #20086 (Swift) & #806211 (Martha) +All you have to do is to wait. 所有您要做的,就是等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #16519 (sacredceltic) & #476591 (fucongcong) +America did away with slavery. 美國廢除了奴隸制度。 CC-BY 2.0 (France) Attribution: tatoeba.org #67529 (shanghainese) & #736317 (Martha) +Any bed is better than no bed. 任何床都比沒有床好。 CC-BY 2.0 (France) Attribution: tatoeba.org #36682 (CK) & #801308 (Martha) +Are any seats still available? 還剩座位嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1600523 (jathonjet) & #8353011 (xjjAstrus) +Are there any messages for me? 有任何給我的訊息嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #262455 (CK) & #844581 (Martha) +Are these all your books, Tom? 汤姆,这些全都是你的书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3719732 (patgfisher) & #3839412 (sadhen) +Are you a high school student? 你是高中生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69439 (CK) & #2638753 (cienias) +Are you afraid of being fired? 你害怕被解雇吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8580873 (CK) & #8580979 (slo_oth) +Are you afraid of being fired? 你害怕被炒鱿鱼吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8580873 (CK) & #8580980 (slo_oth) +Are you free in the afternoon? 你下午有空嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323154 (CK) & #845516 (Martha) +Are you free tomorrow evening? 你明晚有空嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323232 (CK) & #833057 (Martha) +Are you looking for something? 您在找什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #594724 (CK) & #5114115 (musclegirlxyp) +Are you planning to help them? 你打算幫助他們嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #400284 (CK) & #838570 (Martha) +Are you staying at this hotel? 你住在這家旅館嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60494 (CK) & #838512 (Martha) +Arithmetic deals with numbers. 算数处理数字。 CC-BY 2.0 (France) Attribution: tatoeba.org #245172 (Zifre) & #2819991 (CLARET) +As you sow, so shall you reap. 种瓜得瓜,种豆得豆。 CC-BY 2.0 (France) Attribution: tatoeba.org #406268 (blay_paul) & #333123 (fucongcong) +Ask Tom if you have any doubt. 你如果有疑问,就问汤姆吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #7771941 (CK) & #7771947 (jiangche) +At home, we speak only French. 在家里,我们只说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3457469 (Eldad) & #5637374 (verdastelo9604) +Bird watching is a nice hobby. 观察鸟类是个很好的业余爱好。 CC-BY 2.0 (France) Attribution: tatoeba.org #324134 (CK) & #333590 (fucongcong) +Can I borrow your car tonight? 我今晚可以借一下你的车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #371967 (saeb) & #8943494 (crescat) +Can I carry this on the plane? 我能把这个东西带到飞机上吗? CC-BY 2.0 (France) Attribution: tatoeba.org #55768 (CK) & #1361975 (sadhen) +Can I register for that class? 我可以登記這堂課嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2738934 (Dejo) & #5422702 (egg0073) +Can I speak to the head nurse? 我能跟護士長說話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #318749 (CK) & #801400 (Martha) +Can anyone answer my question? 有人可以回答我的問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #276333 (CK) & #834491 (Martha) +Can you save this seat for me? 你可以幫我保留這個座位嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58208 (CK) & #866146 (Martha) +Clean the dirt off the mirror. 清理鏡子上的灰塵。 CC-BY 2.0 (France) Attribution: tatoeba.org #450107 (CK) & #842474 (Martha) +Close the door when you leave. 出去的时候把门关上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1897 (CK) & #502864 (fucongcong) +Could I borrow your gray suit? 我可以借你的灰色西装吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3170749 (CK) & #8589287 (easononizuka) +Could I have the bill, please? 請把帳單給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435203 (CK) & #836255 (Martha) +Could we have a table outside? 我們在外面可以有一張桌子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22015 (CK) & #839565 (Martha) +Could you bring me some water? 你能帶給我一些水嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64351 (CK) & #842478 (Martha) +Could you bring me some water? 能给我带一点水来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64351 (CK) & #7768234 (jiangche) +Could you help me find my dog? 你能幫我找到我的狗嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4016340 (CK) & #6197304 (verdastelo9604) +Could you turn down the radio? 您能把收音机开小声一点吗? CC-BY 2.0 (France) Attribution: tatoeba.org #29780 (CK) & #444715 (fucongcong) +Could you turn off the lights? 你可以關燈嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279151 (CK) & #836301 (Martha) +Cross out the incorrect words. 把错误的单词划掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #271586 (CK) & #8553162 (slo_oth) +Cross out the incorrect words. 划掉错误的单词。 CC-BY 2.0 (France) Attribution: tatoeba.org #271586 (CK) & #8553163 (slo_oth) +Did Tom break something again? 汤姆又弄坏了什么东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2064810 (CK) & #5096504 (mirrorvan) +Did you accomplish your goals? 你達成你的目標了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #997243 (CK) & #5499527 (egg0073) +Did you go to London that day? 你那天去了倫敦嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #844696 (eastasiastudent) & #844695 (egg0073) +Did you hear your name called? 你聽見有人叫你的名字嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #322926 (CK) & #6065354 (verdastelo9604) +Did you leave the window open? 你讓窗戶開著嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16831 (CK) & #836402 (Martha) +Did you play tennis yesterday? 你昨天打网球了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #244484 (CK) & #476644 (fucongcong) +Did you visit the Tokyo Tower? 您参观过东京塔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69075 (CK) & #472389 (fucongcong) +Do I have to do it right away? 我必須立刻做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #52268 (CK) & #872137 (Martha) +Do we have milk in the fridge? 我们冰箱里有牛奶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2643062 (CK) & #5663519 (verdastelo9604) +Do you go to a private school? 你在私立学校读书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2847829 (englishchinese) & #2052511 (sadhen) +Do you have any Japanese beer? 您有日本啤酒吗? CC-BY 2.0 (France) Attribution: tatoeba.org #281327 (CK) & #349655 (fucongcong) +Do you have any smaller sizes? 你有任何比較小的尺寸嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #30434 (CK) & #842316 (Martha) +Do you have medical insurance? 你有醫療保險嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27892 (CK) & #833004 (Martha) +Do you have plans for tonight? 今晚有什么计划吗? CC-BY 2.0 (France) Attribution: tatoeba.org #569280 (FeuDRenais) & #5094727 (musclegirlxyp) +Do you know a good restaurant? 你知道一个好飯店嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #66740 (CK) & #6923204 (verdastelo9604) +Do you know what Tom will say? 你知道湯姆會說甚麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6049044 (CK) & #6098438 (verdastelo9604) +Do you know where to find Tom? 你知道去哪找汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3540359 (CK) & #5978361 (verdastelo9604) +Do you live with your parents? 你和你的父母同住嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #440064 (Clavain) & #793955 (Martha) +Do you mind turning on the TV? 你介意打開電視嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #39179 (Nolantm) & #6138320 (verdastelo9604) +Do you need to work on Sunday? 你週日需要去工作嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #495532 (Swift) & #842244 (Martha) +Do you think Tom is too young? 你觉得汤姆是不是太嫩了? CC-BY 2.0 (France) Attribution: tatoeba.org #3172240 (CK) & #5091416 (mirrorvan) +Do you think Tom will show up? 你認為湯姆會出現嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4497733 (CK) & #6073879 (verdastelo9604) +Do you understand what I mean? 你知道我的意思嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #608028 (CK) & #836433 (Martha) +Do you want me to make coffee? 你要我煮咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70291 (CK) & #881535 (Martha) +Do you want to get some lunch? 你想吃点午饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2013873 (CK) & #5581737 (verdastelo9604) +Does this bus go to the beach? 這輛公車去海灘嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60676 (CK) & #881224 (Martha) +Don't be silly. I can't do it. 别犯傻。我能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860511 (CK) & #5933784 (verdastelo9604) +Don't bother calling security. 别麻烦保安了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2270322 (CK) & #5650531 (verdastelo9604) +Don't ever mention that again. 永远别再提它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826887 (CK) & #9178020 (xiaohong) +Don't forget to take a camera. 别忘了带个相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #7298405 (CK) & #349672 (fucongcong) +Don't forget where you put it. 不要忘記你放在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #770241 (marloncori) & #770268 (Martha) +Don't interfere in my affairs. 不要插手我的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #321454 (CM) & #333204 (fucongcong) +Don't leave the water running. 不要讓水一直流。 CC-BY 2.0 (France) Attribution: tatoeba.org #270859 (CK) & #833170 (Martha) +Don't look at Tom. Look at me. 不要看湯姆。看著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860444 (CK) & #3149464 (cienias) +Don't move, or I'll shoot you. 別動,不然我就開槍射你。 CC-BY 2.0 (France) Attribution: tatoeba.org #280207 (CK) & #846023 (Martha) +Don't put anything in the bag. 不要把所有东西都放到包里面。 CC-BY 2.0 (France) Attribution: tatoeba.org #689892 (ulyssemc1) & #1878375 (sadhen) +Don't rely too much on others. 别老依赖别人。 CC-BY 2.0 (France) Attribution: tatoeba.org #67674 (CK) & #2031426 (ydcok) +Don't tell me you didn't know. 别跟我说你不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1873858 (CK) & #7772572 (jiangche) +England is proud of her poets. 英格兰为她的诗人感到自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #66572 (CK) & #334206 (fucongcong) +English is difficult to learn. 英語很難學。 CC-BY 2.0 (France) Attribution: tatoeba.org #26207 (CK) & #811877 (Martha) +English is useful in commerce. 英語在商業中很有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #26265 (CK) & #811904 (Martha) +Everyone except Tom ate pizza. 所有人除了汤姆都吃了比萨。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665352 (CK) & #5684090 (verdastelo9604) +Everyone is talking about Tom. 每个人都在谈论汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2996331 (CK) & #5907485 (verdastelo9604) +Excuse me, where are the eggs? 请问鸡蛋在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #1230782 (alec) & #334425 (fucongcong) +Fasten your seat belt, please. 請繫好安全帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #53897 (CK) & #832980 (Martha) +Fill in your name and address. 填上你的姓名和地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #70367 (CK) & #842442 (Martha) +Finally, he achieved his goal. 他终于达到了自己的目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #389163 (CK) & #7769165 (jiangche) +Finally, he attained his goal. 他终于达到了自己的目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #389161 (CK) & #7769165 (jiangche) +Fish cannot live out of water. 魚離開水就無法生存。 CC-BY 2.0 (France) Attribution: tatoeba.org #19347 (CK) & #764473 (Martha) +Flying kites can be dangerous. 放風箏可以是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #276073 (CK) & #833829 (Martha) +Frankly speaking, he is wrong. 坦率地说,他错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35173 (CK) & #1839117 (sadhen) +Getting started was difficult. 开始很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #8580907 (CK) & #8580972 (slo_oth) +Give me something to write on. 給我一些我可以在上面寫字的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25091 (CK) & #842288 (Martha) +Give me your telephone number. 给我你的电话号码。 CC-BY 2.0 (France) Attribution: tatoeba.org #279375 (CK) & #5780559 (verdastelo9604) +Has she finished her work yet? 她完成了她的工作嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #312333 (CK) & #844466 (Martha) +Have you already eaten supper? 你已经吃晚饭了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1072639 (CK) & #1438552 (asosan) +Have you eaten your lunch yet? 你吃過午飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31192 (CK) & #838601 (Martha) +Have you ever been to America? 你去過美國嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16800 (CK) & #840647 (Martha) +Have you given Tom everything? 你全都给汤姆了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3153714 (CK) & #5993942 (verdastelo9604) +Have you gone to see a doctor? 你去看过医生了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8466341 (moarplease) & #397553 (fucongcong) +He arrived earlier than usual. 他比平常早一點到達。 CC-BY 2.0 (France) Attribution: tatoeba.org #289079 (CK) & #833819 (Martha) +He arrived in Tokyo yesterday. 他昨天抵達東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #244644 (CK) & #834377 (Martha) +He arrived in Tokyo yesterday. 他昨天到了东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #244644 (CK) & #846688 (fucongcong) +He asked for a drink of water. 他要了水喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #300196 (CK) & #875375 (Martha) +He asked his friends for help. 他尋求他的朋友的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #404173 (CK) & #842306 (Martha) +He asked me what I had bought. 他问我买了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #297444 (CK) & #481151 (fucongcong) +He began to eat his breakfast. 他開始吃他的早餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #301588 (CK) & #844485 (Martha) +He belongs to the camera club. 他參加攝影社。 CC-BY 2.0 (France) Attribution: tatoeba.org #298987 (CK) & #785114 (Martha) +He blamed me for the accident. 他為這個意外指責我。 CC-BY 2.0 (France) Attribution: tatoeba.org #290920 (CK) & #844489 (Martha) +He bought me a new dictionary. 他買給我一本新字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #430195 (witbrock) & #845966 (Martha) +He brought me to the bus stop. 他帶我到車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #1389784 (Zifre) & #884696 (Tajfun) +He checked in at a good hotel. 他入住了一間很好的旅館。 CC-BY 2.0 (France) Attribution: tatoeba.org #288942 (CK) & #881290 (Martha) +He cleaned his room on Sunday. 他在週日打掃他的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #302272 (CK) & #844576 (Martha) +He comes to Tokyo once a year. 他一年來東京一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #288454 (CK) & #887830 (Martha) +He complained about the noise. 他抱怨這個噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #291109 (CK) & #833112 (Martha) +He continued reading the book. 他繼續看書。 CC-BY 2.0 (France) Attribution: tatoeba.org #291286 (CK) & #819252 (Martha) +He didn't give me much advice. 他没给我多少建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #297471 (CK) & #8517165 (gumblex) +He doesn't live there anymore. 他不再住在這裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296501 (CK) & #834313 (Martha) +He doesn't speak our language. 他不會說我們的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #297848 (CK) & #890455 (Martha) +He found a ball in the garden. 他在花園裡找到了一顆球。 CC-BY 2.0 (France) Attribution: tatoeba.org #301703 (CK) & #875331 (Martha) +He gathered his toys together. 他收起了他的玩具。 CC-BY 2.0 (France) Attribution: tatoeba.org #47409 (CK) & #334123 (fucongcong) +He gave her a piece of advice. 他給了她一個忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #302672 (CK) & #805614 (Martha) +He gives some meat to the dog. 他給這隻狗一些肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #825701 (odiernod) & #827601 (Martha) +He got hurt when he fell down. 他跌倒的時候受了傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #301782 (CK) & #802792 (Martha) +He got out from under the car. 他從車子底下出來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299035 (CK) & #802481 (Martha) +He got to school just in time. 他刚好准时到校。 CC-BY 2.0 (France) Attribution: tatoeba.org #291723 (CK) & #335121 (fucongcong) +He has gone abroad by himself. 他一个人去了国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #292559 (CK) & #408247 (fucongcong) +He has made the baseball team. 他已經成為了棒球隊員。 CC-BY 2.0 (France) Attribution: tatoeba.org #291362 (CK) & #909864 (Martha) +He has some money in the bank. 他银行里有点钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #290696 (CK) & #334640 (fucongcong) +He is a dentist by profession. 他是一位专职牙医。 CC-BY 2.0 (France) Attribution: tatoeba.org #286780 (CM) & #5093971 (mirrorvan) +He is a teacher at our school. 他是我們學校的老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #297391 (CK) & #875346 (Martha) +He is able to play the guitar. 他會彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #289619 (CK) & #883290 (Martha) +He is acquainted with my wife. 他是我太太认识的一个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #297857 (CM) & #487719 (fucongcong) +He is always asking for money. 他總是要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #289049 (CK) & #849020 (Martha) +He is better than anyone else. 他比任何人都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #301063 (CK) & #791345 (fucongcong) +He is going to be an engineer. 他將成為一名工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #295148 (CK) & #877604 (Martha) +He is lacking in common sense. 他缺乏常识。 CC-BY 2.0 (France) Attribution: tatoeba.org #299730 (CK) & #1746046 (sadhen) +He is likely to be late again. 他可能又遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288063 (CK) & #881245 (Martha) +He is lying through his teeth. 他明显在撒谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #953314 (CK) & #8936267 (crescat) +He is studying law at Harvard. 他在哈佛大學學習法律。 CC-BY 2.0 (France) Attribution: tatoeba.org #292357 (CK) & #848762 (Martha) +He is taller than his brother. 他比他的弟弟高。 CC-BY 2.0 (France) Attribution: tatoeba.org #285416 (CK) & #848990 (Martha) +He is too drunk to drive home. 他喝酒醉無法開車回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #300211 (CK) & #879190 (Martha) +He is used to making speeches. 他習慣於作演說。 CC-BY 2.0 (France) Attribution: tatoeba.org #294107 (CK) & #846053 (Martha) +He knocked on the closed door. 他敲了敲緊閉的門。 CC-BY 2.0 (France) Attribution: tatoeba.org #467810 (CK) & #846262 (Martha) +He knows how to play baseball. 他知道怎么玩棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #931381 (FeuDRenais) & #5900390 (verdastelo9604) +He leaves for school at seven. 他七點鐘去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #288645 (CK) & #777718 (Martha) +He left the book on the table. 他在桌子上留下了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #303781 (CK) & #889188 (Martha) +He likes to travel by himself. 他喜歡獨自旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #293725 (CK) & #834530 (Martha) +He likes to travel. I do, too. 他喜欢旅行。我也是。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266430 (yifen238) & #330591 (ZeroAurora) +He lives just across the road. 他就住在馬路對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #302062 (CK) & #848677 (Martha) +He lives somewhere about here. 他住在這附近某個地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #292003 (CK) & #833093 (Martha) +He looks just like his mother. 他看起來就像他的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #292915 (CK) & #846503 (Martha) +He made good use of the money. 他好好的使用了​​這筆錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #290689 (CK) & #819238 (Martha) +He made his son a wealthy man. 他使他儿子成了个有钱人。 CC-BY 2.0 (France) Attribution: tatoeba.org #300982 (CK) & #343918 (fucongcong) +He made me go against my will. 他讓我違背了我的意願。 CC-BY 2.0 (France) Attribution: tatoeba.org #304006 (CK) & #801963 (Martha) +He married a very pretty girl. 他娶了一個很漂亮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #301337 (CK) & #848970 (Martha) +He moved into my neighborhood. 他搬到了我家附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #283548 (CK) & #833192 (Martha) +He must have missed the train. 他一定是錯過了這班火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #284035 (CK) & #848236 (Martha) +He often eats breakfast there. 他常常在那裡吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #290089 (CK) & #834364 (Martha) +He often eats fish for dinner. 他晚飯經常吃魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #293319 (CK) & #848864 (Martha) +He often takes me for a drive. 他常常載我去兜風。 CC-BY 2.0 (France) Attribution: tatoeba.org #298088 (CK) & #885410 (Martha) +He painted a picture of a dog. 他畫了一幅狗的畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #285993 (CK) & #885530 (Martha) +He painted a picture of roses. 他畫了一幅玫瑰的畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #292424 (CK) & #848707 (Martha) +He participated in the debate. 他参加辩论 CC-BY 2.0 (France) Attribution: tatoeba.org #291193 (CK) & #5975067 (zhangxr91) +He paused to have a cigarette. 他停下来抽根烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #291748 (CK) & #335115 (fucongcong) +He played tennis all day long. 他整天打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #293801 (CK) & #846274 (Martha) +He plays the guitar very well. 他吉他彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #289614 (CK) & #833111 (Martha) +He plays the violin very well. 他小提琴拉得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291582 (CK) & #846101 (Martha) +He put on an air of innocence. 他摆出一副无辜的样子。 CC-BY 2.0 (France) Attribution: tatoeba.org #303994 (CM) & #8795204 (slo_oth) +He runs in the park every day. 他每天都在公园中跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #303914 (CK) & #2052714 (sadhen) +He shook his head up and down. 他上下晃了晃头。 CC-BY 2.0 (France) Attribution: tatoeba.org #299269 (CK) & #8739360 (crescat) +He should have arrived by now. 现在他应该已经到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293112 (CK) & #333107 (fucongcong) +He spared no pains to help me. 他不遺餘力幫助我。 CC-BY 2.0 (France) Attribution: tatoeba.org #304816 (CK) & #772124 (Martha) +He stayed at his aunt's house. 他呆在他阿姨家。 CC-BY 2.0 (France) Attribution: tatoeba.org #299376 (CK) & #336447 (fucongcong) +He stayed at his aunt's house. 他住在他舅妈家。 CC-BY 2.0 (France) Attribution: tatoeba.org #299376 (CK) & #1424255 (sadhen) +He studies history at college. 他在大学修读历史。 CC-BY 2.0 (France) Attribution: tatoeba.org #301236 (CK) & #866244 (kooler) +He substituted for his father. 子承父业。 CC-BY 2.0 (France) Attribution: tatoeba.org #303359 (CK) & #2394595 (fenfang557) +He suddenly became very happy. 他突然變得非常開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #784747 (Zifre) & #3430896 (egg0073) +He takes a walk every morning. 他每天早上都散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #1470763 (CK) & #333822 (fucongcong) +He thinks he knows everything. 他以为什么都知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #643271 (darinmex) & #791613 (fucongcong) +He thought of a good solution. 他想到了一個解決的好辦法。 CC-BY 2.0 (France) Attribution: tatoeba.org #283314 (CK) & #848346 (Martha) +He threw a rock into the pond. 他扔一塊石頭到池塘裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #466914 (CK) & #881232 (Martha) +He threw a rock into the pond. 他扔了一塊石頭到池塘裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #466914 (CK) & #883277 (Martha) +He was busy with his homework. 他忙於做功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #299377 (CK) & #848731 (Martha) +He was home alone at the time. 他当时一个人在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1357300 (mcdanieljosh50) & #472857 (fucongcong) +He was hurt in a car accident. 他在一次車禍中受傷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298502 (CK) & #876932 (Martha) +He was playing tennis all day. 他整天打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #73070 (CK) & #846274 (Martha) +He was present at the meeting. 他出席了会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #290611 (CK) & #333543 (fucongcong) +He was watching TV last night. 他昨晚在看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #296887 (CK) & #848703 (Martha) +He was willing to help others. 他願意幫助別人。 CC-BY 2.0 (France) Attribution: tatoeba.org #295048 (CK) & #846035 (Martha) +He went to Nagoya on business. 他到名古屋洽談業務。 CC-BY 2.0 (France) Attribution: tatoeba.org #297030 (Hautis) & #849259 (Martha) +He went to New York on Monday. 他星期一去了紐約。 CC-BY 2.0 (France) Attribution: tatoeba.org #295916 (CK) & #884171 (Martha) +He will play golf next Sunday. 他下週日將打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #296583 (CK) & #848844 (Martha) +He will succeed to the throne. 他会继承王位。 CC-BY 2.0 (France) Attribution: tatoeba.org #294164 (CM) & #5794153 (verdastelo9604) +He'll be back by five o'clock. 他五點左右會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #72512 (CK) & #846152 (Martha) +He's a friend of my brother's. 他是我弟弟的一個朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #297824 (CK) & #875300 (Martha) +He's a friend of my brother's. 他是我哥哥的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #297824 (CK) & #2029456 (ydcok) +He's rich, but he's not happy. 虽然他很有钱,但他不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #1312938 (CK) & #334255 (fucongcong) +He's very sloppy in his dress. 他穿着上很不讲究。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255637 (_undertoad) & #2455649 (fenfang557) +Her idea is better than yours. 她的想法比你的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #826039 (odiernod) & #827583 (Martha) +Her older daughter is married. 她的大女兒結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #467955 (CK) & #833124 (Martha) +Her speech moved the audience. 她的演说感动了听众。 CC-BY 2.0 (France) Attribution: tatoeba.org #309090 (CS) & #808256 (fucongcong) +Here is a pan without handles. 这是个没有柄的平锅。 CC-BY 2.0 (France) Attribution: tatoeba.org #61752 (CK) & #5794147 (verdastelo9604) +His advice counted for little. 他的建議不算什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #287148 (CM) & #781119 (Martha) +His advice didn't help at all. 他的建议完全没用。 CC-BY 2.0 (France) Attribution: tatoeba.org #1099395 (CK) & #8800698 (crescat) +His brother studies very hard. 他的哥哥很用功讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #520727 (CK) & #834435 (Martha) +His grandmother looks healthy. 他祖母看起來很健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #285280 (CK) & #771469 (Martha) +His house is across from mine. 他的房子在我的對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #466248 (CK) & #848574 (Martha) +His speech lasted three hours. 他的演讲持续了三个小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #660406 (CS) & #678169 (Martha) +His uncle died five years ago. 他的叔叔五年前去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285278 (CK) & #848600 (Martha) +His wife is one of my friends. 他的妻子是我的一個朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #286366 (CK) & #881853 (Martha) +How about going out for lunch? 出去吃午飯怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #277570 (CK) & #848226 (Martha) +How about going to the movies? 我们去电影院怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #26445 (CK) & #472844 (fucongcong) +How about going to the movies? 去看電影怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #26445 (CK) & #846308 (Martha) +How are you going to get home? 你打算怎麼回家? CC-BY 2.0 (France) Attribution: tatoeba.org #38361 (CK) & #887694 (Martha) +How did you draw this picture? 你怎么画这幅画? CC-BY 2.0 (France) Attribution: tatoeba.org #1098704 (cntrational) & #5900384 (verdastelo9604) +How do you want your hair cut? 你想怎麼剪你的頭髮? CC-BY 2.0 (France) Attribution: tatoeba.org #37566 (CK) & #885533 (Martha) +How do you want your hair cut? 你想將頭髮剪成怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #37566 (CK) & #885535 (Martha) +How is your last name written? 你的姓氏怎么写? CC-BY 2.0 (France) Attribution: tatoeba.org #1074524 (CK) & #5794104 (verdastelo9604) +How is your work coming along? 你的工作進行得怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #17127 (CK) & #848701 (Martha) +How long have you been abroad? 你在國外多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #37600 (CK) & #846594 (Martha) +How long will this rain go on? 雨会下多久? CC-BY 2.0 (France) Attribution: tatoeba.org #60264 (CM) & #812216 (fucongcong) +How long will we have to wait? 我們要等多久? CC-BY 2.0 (France) Attribution: tatoeba.org #36864 (CK) & #875292 (Martha) +How many children do you have? 你有幾個小孩? CC-BY 2.0 (France) Attribution: tatoeba.org #24512 (CK) & #848641 (Martha) +How many people know about us? 有多少人知道我們? CC-BY 2.0 (France) Attribution: tatoeba.org #2912512 (CK) & #6070915 (verdastelo9604) +How many pictures did you buy? 你買了多少張圖畫? CC-BY 2.0 (France) Attribution: tatoeba.org #22071 (CK) & #848549 (Martha) +How many pictures did you buy? 你買了多少張照片? CC-BY 2.0 (France) Attribution: tatoeba.org #22071 (CK) & #848550 (Martha) +How much did the glasses cost? 這副眼鏡多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #826486 (odiernod) & #827570 (Martha) +How much does this watch cost? 这只表多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #3651767 (furoraceltica) & #4903269 (musclegirlxyp) +How much is this handkerchief? 请问这个手帕多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #60638 (CK) & #8686702 (crescat) +How much money do you owe Tom? 你欠湯姆多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #1103241 (CK) & #1250622 (tsayng) +How often did you visit Kyoto? 你多常造訪京都? CC-BY 2.0 (France) Attribution: tatoeba.org #69586 (CK) & #848720 (Martha) +How often do the buses depart? 公共汽车多久发车一次? CC-BY 2.0 (France) Attribution: tatoeba.org #7825170 (sharris123) & #4263850 (notabene) +How old will you be next year? 明年你会是几岁? CC-BY 2.0 (France) Attribution: tatoeba.org #17630 (Swift) & #1878273 (sadhen) +How was the meeting yesterday? 昨天的会议怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #3818333 (CK) & #5613715 (verdastelo9604) +How will we protect ourselves? 我們怎麼保護自己? CC-BY 2.0 (France) Attribution: tatoeba.org #4013930 (CK) & #6065720 (verdastelo9604) +How would you like your steak? 您的牛排要几分熟? CC-BY 2.0 (France) Attribution: tatoeba.org #51914 (CK) & #472845 (fucongcong) +Humans can't live without air. 没有空气,人无法存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #7908305 (shekitten) & #333241 (fucongcong) +I admire you for your courage. 我佩服你的勇氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #16872 (CK) & #793232 (Martha) +I advised her to come by 9:00. 我建議她九點前來。 CC-BY 2.0 (France) Attribution: tatoeba.org #261138 (CK) & #920099 (Martha) +I agreed with him on the plan. 對於這個計劃我同意他的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #249633 (CK) & #917773 (Martha) +I always feel blue on Mondays. 我每個星期一都覺得很憂鬱。 CC-BY 2.0 (France) Attribution: tatoeba.org #238869 (CK) & #926697 (Martha) +I am a student of this school. 我是这个学校的学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #253572 (CK) & #336240 (fucongcong) +I am blessed with good health. 上帝賜予我健康的身體。 CC-BY 2.0 (France) Attribution: tatoeba.org #257222 (CK) & #919857 (Martha) +I am blessed with good health. 我很幸運有健康的身體。 CC-BY 2.0 (France) Attribution: tatoeba.org #257222 (CK) & #919858 (Martha) +I am glad to have her company. 我很高興有她的陪伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #261119 (CK) & #804956 (Martha) +I am going out this afternoon. 今天下午我會外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #257584 (CK) & #846546 (Martha) +I am going to major in French. 我將主修法文。 CC-BY 2.0 (France) Attribution: tatoeba.org #255543 (CK) & #890470 (Martha) +I am interested in this story. 我對這個故事感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #253765 (CK) & #918548 (Martha) +I am looking for an assistant. 我正在找一個助手。 CC-BY 2.0 (France) Attribution: tatoeba.org #258601 (CK) & #780401 (Martha) +I am never at home on Sundays. 我周日从来都不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #259856 (CK) & #472874 (fucongcong) +I am seeing my uncle tomorrow. 我明天要去看我叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #323092 (CK) & #919953 (Martha) +I am the tallest in our class. 我在班里是最高的。 CC-BY 2.0 (France) Attribution: tatoeba.org #258029 (CK) & #2028017 (ydcok) +I am thinking of going abroad. 我在考慮出國。 CC-BY 2.0 (France) Attribution: tatoeba.org #256623 (CK) & #919948 (Martha) +I appreciate your cooperation. 我感謝您的合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #54487 (CK) & #825134 (Martha) +I asked Tom to close the door. 我要求湯姆關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #255282 (CK) & #881101 (Martha) +I asked him what his name was. 我問了他叫什麼名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #260493 (CK) & #890459 (Martha) +I ate breakfast in my pajamas. 我穿著我的睡衣吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #550751 (CK) & #917971 (Martha) +I ate breakfast in my pajamas. 我穿著睡衣吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #550751 (CK) & #8351570 (xjjAstrus) +I ate breakfast on my balcony. 我在陽臺上吃的早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #5277814 (CK) & #9037054 (xjjAstrus) +I belong to the swimming club. 我是游泳社的成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #258912 (CK) & #893040 (Martha) +I belong to the swimming club. 我參加游泳社。 CC-BY 2.0 (France) Attribution: tatoeba.org #258912 (CK) & #919964 (Martha) +I bought a new sewing machine. 我買了一台新的縫紉機。 CC-BY 2.0 (France) Attribution: tatoeba.org #258792 (CK) & #848362 (Martha) +I bought a pen, but I lost it. 我买了一支钢笔,但我把它丢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255575 (CK) & #472887 (fucongcong) +I came to Japan two years ago. 我兩年前來日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #252542 (CK) & #889115 (Martha) +I can do it without your help. 沒有你的幫忙我也能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #866507 (papabear) & #918661 (Martha) +I can eat anything but onions. 除了洋葱我什么都可以吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #254987 (CK) & #472888 (fucongcong) +I can see you're good at this. 我看你擅长做这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301328 (CK) & #5658823 (verdastelo9604) +I can't afford to pay so much. 我付不起這麼多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #33570 (CK) & #779071 (Martha) +I can't afford to play tennis. 我負擔不起打網球的費用。 CC-BY 2.0 (France) Attribution: tatoeba.org #255100 (CK) & #918041 (Martha) +I can't bear the sight of him. 我受不了他的視線。 CC-BY 2.0 (France) Attribution: tatoeba.org #66892 (CK) & #920111 (Martha) +I can't believe Tom kissed me. 我不敢相信汤姆亲了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330331 (CK) & #3775631 (Debbie_Linder) +I can't do any more than this. 我無法做比這更多的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #421984 (CK) & #889343 (Martha) +I can't do any more than this. 我無法再做下去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #421984 (CK) & #889346 (Martha) +I can't find my keys anywhere. 我到处都找不到我的钥匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649790 (sharptoothed) & #5926173 (verdastelo9604) +I can't play tennis that well. 我不那麼會打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #1822957 (donkirkby) & #1423415 (cienias) +I can't play tennis very well. 我網球打的不是很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #472107 (CK) & #848372 (Martha) +I can't tell if you're joking. 我無法分辨你是否在開玩笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5350368 (Hybrid) & #5527055 (egg0073) +I caught three fish yesterday. 昨天我釣了三條魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #63296 (CK) & #834389 (Martha) +I caused him a lot of trouble. 我給他帶來了很多麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #417025 (CK) & #889160 (Martha) +I decided not to go to Europe. 我决定不去欧洲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255859 (CK) & #472885 (fucongcong) +I decided not to study French. 我決定不學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #2313711 (CK) & #6623170 (verdastelo9604) +I deleted my Facebook account. 我刪除了我的Facebook帳號。 CC-BY 2.0 (France) Attribution: tatoeba.org #2454385 (Hybrid) & #5414833 (egg0073) +I did something really stupid. 我做了很蠢的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064819 (CK) & #5613620 (verdastelo9604) +I didn't believe him at first. 起初我不相信他。 CC-BY 2.0 (France) Attribution: tatoeba.org #244051 (CK) & #846338 (Martha) +I didn't catch your last name. 我没听到您的姓。 CC-BY 2.0 (France) Attribution: tatoeba.org #70513 (CK) & #472889 (fucongcong) +I didn't hear anybody talking. 我沒聽到任何人在說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #7204935 (CK) & #8969925 (egg0073) +I didn't know about your plan. 我不知道你的計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #395703 (CK) & #941158 (Martha) +I didn't know she was married. 我不知道她结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308257 (CK) & #472866 (fucongcong) +I didn't know what to do then. 那時我不知道該怎麼辦。 CC-BY 2.0 (France) Attribution: tatoeba.org #47009 (CK) & #875320 (Martha) +I didn't tell the whole truth. 我沒把真相全告訴你。 CC-BY 2.0 (France) Attribution: tatoeba.org #6261314 (CK) & #6585436 (verdastelo9604) +I didn't want to get up early. 我不想很早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #259162 (CK) & #779462 (Martha) +I didn't want to surprise you. 我没想吓唬你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1293007 (CK) & #1323657 (vicch) +I do my homework after school. 我在放学後做作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #398543 (whipback) & #6147568 (verdastelo9604) +I do not trust him any longer. 我再也不相信他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255797 (CK) & #478819 (biglion) +I do not want any milk at all. 我完全不要牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #879864 (CM) & #881275 (Martha) +I don't approve your decision. 我不同意你的決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #17662 (CK) & #833833 (Martha) +I don't feel comfortable here. 我在這裡感到不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #436533 (lukaszpp) & #872465 (Martha) +I don't have an ear for music. 我不懂音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #472164 (CK) & #875357 (Martha) +I don't have much money on me. 我身上沒有很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #502800 (CK) & #884160 (Martha) +I don't have time for reading. 我没时间阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #387493 (Mouseneb) & #334401 (fucongcong) +I don't have to clean my room. 我不用打扫房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #261572 (CK) & #472868 (fucongcong) +I don't know when he's coming. 不知道他什么时候来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2425565 (FeuDRenais) & #2422277 (huangfen) +I don't like the way he talks. 我不喜歡他講話的樣子。 CC-BY 2.0 (France) Attribution: tatoeba.org #260780 (CK) & #887810 (Martha) +I don't like to swim in pools. 我不喜歡在泳池裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #502705 (CK) & #846105 (Martha) +I don't particularly like her. 我特别不喜欢她。 CC-BY 2.0 (France) Attribution: tatoeba.org #310304 (CK) & #465930 (fucongcong) +I don't play tennis that well. 我网球打得不那么好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8466243 (moarplease) & #472860 (fucongcong) +I don't think he can help you. 我覺得他不能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1077014 (Brian255) & #765325 (Martha) +I don't think that he's right. 我不認為他是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #260104 (CK) & #881718 (Martha) +I don't think this is correct. 我觉得这不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812270 (sharris123) & #7780760 (jiangche) +I don't understand any French. 我一点法语都不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #5313666 (csmjj) & #4262212 (notabene) +I don't want to eat lunch now. 我现在不想吃午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #257469 (CK) & #472881 (fucongcong) +I don't want to fail my exams. 我不想不通过考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109 (CK) & #1778268 (sadhen) +I don't want to fail my exams. 我不想挂科。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109 (CK) & #2395001 (fenfang557) +I don't want to fail my exams. 我不想不及格。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109 (CK) & #2395002 (fenfang557) +I don't want to fail my exams. 我不想落榜。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109 (CK) & #2395004 (fenfang557) +I don't want to fail my exams. 我不想考试失败。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109 (CK) & #2395005 (fenfang557) +I don't want to miss my train. 我不想错过我的火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553477 (CK) & #1783798 (sadhen) +I don't want to miss the exam. 我不想错过考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #2395007 (fenfang557) & #503209 (fucongcong) +I don't want to quit this job. 我不想辞去这份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553476 (CK) & #1783797 (sadhen) +I don't write letters anymore. 我不再写信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6351643 (CK) & #8686682 (crescat) +I eat breakfast every morning. 我每天早上吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #464655 (CK) & #834646 (Martha) +I eat meat three times a week. 我每週吃肉三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #1492179 (CK) & #6059525 (verdastelo9604) +I expect that he will help us. 我期望他會幫助我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #283461 (CK) & #881181 (Martha) +I fed the leftovers to my dog. 我把剩下的东西给我的狗吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #258745 (CK) & #472879 (fucongcong) +I feel like taking a bath now. 我現在想洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257446 (CK) & #884208 (Martha) +I feel like taking a walk now. 我現在想要散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #241557 (CK) & #881222 (Martha) +I feel sad every now and then. 我常常覺得悲傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #255203 (CK) & #884229 (Martha) +I feel sad every now and then. 我不時地覺得難過。 CC-BY 2.0 (France) Attribution: tatoeba.org #255203 (CK) & #884230 (Martha) +I found this book interesting. 我觉得这本书很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #56881 (CK) & #343944 (fucongcong) +I gave my sister a dictionary. 我給了我妹妹一本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #261776 (CK) & #849012 (Martha) +I go shopping every other day. 我每隔一天去購物。 CC-BY 2.0 (France) Attribution: tatoeba.org #73085 (CK) & #848757 (Martha) +I got a good grade in English. 我的英文成績很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #256190 (CK) & #880997 (Martha) +I got a good grade in English. 我的英文得到了好成績。 CC-BY 2.0 (France) Attribution: tatoeba.org #256190 (CK) & #880998 (Martha) +I got a letter from her today. 我今天收到了她的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257599 (CK) & #804609 (Martha) +I got a lot of mosquito bites. 我被很多的蚊子叮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23594 (CK) & #804604 (Martha) +I got on the train for London. 我登上去伦敦的火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #29257 (CK) & #333111 (fucongcong) +I got the money back from him. 我拿到了他還給我的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #259998 (CK) & #802265 (Martha) +I got this CD player for free. 我免費得到這個CD播放機。 CC-BY 2.0 (France) Attribution: tatoeba.org #252149 (CK) & #802132 (Martha) +I got up at five that morning. 那天早上我五點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #254573 (CK) & #802113 (Martha) +I got up early in the morning. 我早上很早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #259492 (CK) & #875341 (Martha) +I had a good dream last night. 昨晚,我做了个好梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #257854 (CK) & #411529 (fucongcong) +I had a good sleep last night. 我昨晚睡得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #30155 (CK) & #770996 (Martha) +I had a tennis match with him. 我曾與他的比賽網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #260184 (CK) & #796052 (Martha) +I had hoped to meet you there. 我曾希望在那裡遇見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71154 (CK) & #889642 (Martha) +I have difficulty in Japanese. 我学日語有困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #259824 (CM) & #6333812 (verdastelo9604) +I have neither time nor money. 我沒有時間,也沒有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #249911 (CK) & #6068645 (xjjAstrus) +I have never climbed Mt. Fuji. 我從來沒有爬過富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #255661 (CK) & #793327 (Martha) +I have no way of knowing that. 我无从知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360161 (CK) & #5715133 (verdastelo9604) +I have only five thousand yen. 我只有5000日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #252597 (CK) & #528021 (biglion) +I have some good news for you. 我有好消息要告訴你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17432 (CK) & #882517 (Martha) +I have things to take care of. 我有些事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360402 (CK) & #5624928 (verdastelo9604) +I have to buy Christmas gifts. 我必须要买圣诞礼物了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5720845 (Airvian) & #5722745 (chloe77) +I have to explain this to Tom. 我必須向Tom解釋這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360455 (CK) & #4732087 (egg0073) +I have to get to the hospital. 我得去医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360490 (CK) & #5842654 (verdastelo9604) +I have to stay in bed all day. 我不得不一整天都待在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #482282 (adjusting) & #408257 (fucongcong) +I have to take the test again. 我必須再考一次試。 CC-BY 2.0 (France) Attribution: tatoeba.org #278295 (CK) & #879183 (Martha) +I haven't eaten for many days. 我好多天沒吃東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1309296 (Eldad) & #764476 (Martha) +I haven't eaten for many days. 我好多天没吃东西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1309296 (Eldad) & #1417555 (sadhen) +I haven't made up my mind yet. 我還沒有下定決心。 CC-BY 2.0 (France) Attribution: tatoeba.org #32623 (CK) & #881097 (Martha) +I haven't made up my mind yet. 我還沒有拿定主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #32623 (CK) & #881098 (Martha) +I haven't seen Tom since 1988. 我從1988年起就沒有看過湯姆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73270 (CK) & #846344 (Martha) +I haven't seen her since then. 我從那時起就沒有見過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #41741 (CK) & #846041 (Martha) +I haven't seen him since then. 從那時起我就沒有看到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #409496 (CK) & #848218 (Martha) +I hear that he sold his house. 我聽說他賣掉了房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #294429 (CK) & #882507 (Martha) +I heard him coming downstairs. 我聽見他下樓的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #283407 (CK) & #834727 (Martha) +I heard the news on the radio. 我從收音機聽到了這個消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #50087 (CK) & #878427 (Martha) +I heard the telephone ringing. 我听到电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #279243 (CK) & #787634 (fucongcong) +I hope I'm not disturbing you. 我希望没打扰到你吧? CC-BY 2.0 (France) Attribution: tatoeba.org #64437 (CK) & #336700 (fucongcong) +I hope it'll be fine tomorrow. 我希望明天將是美好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71826 (CK) & #848927 (Martha) +I hope that you are very well. 我希望你很健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #1243999 (Eldad) & #1397027 (mtdot) +I hope you'll get better soon. 我想你快点好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2160734 (FeuDRenais) & #2144018 (ydcok) +I just don't want to lose you. 我只是不想失去你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2013926 (CK) & #5856773 (verdastelo9604) +I just wanted to speak to Tom. 我只想跟汤姆说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2374109 (CK) & #5780606 (verdastelo9604) +I know that he went to London. 我知道他去了伦敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #260011 (CK) & #345885 (fucongcong) +I know that she has been busy. 我知道她一直很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #261074 (CK) & #883318 (Martha) +I know that you did your best. 我知道你盡力了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63271 (CK) & #889318 (Martha) +I know you're going to say no. 我知道你要說不。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376663 (CK) & #4639672 (egg0073) +I know you're not comfortable. 我知道你不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376683 (CK) & #5698026 (verdastelo9604) +I know your brother very well. 我和你哥哥很熟。 CC-BY 2.0 (France) Attribution: tatoeba.org #257090 (CK) & #848655 (Martha) +I learned to live without her. 我学会了不靠她生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #1485 (CK) & #334906 (fucongcong) +I left earlier than my sister. 我比我的妹妹早離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #261782 (CK) & #848240 (Martha) +I left my umbrella in the cab. 我把我的傘忘在計程車上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40963 (CK) & #883134 (Martha) +I like coffee better than tea. 我喜歡咖啡勝過茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #253295 (CK) & #846522 (Martha) +I like listening to the radio. 我喜歡聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #6788801 (CK) & #883401 (Martha) +I like to listen to the radio. 我喜歡聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #255913 (CK) & #883401 (Martha) +I like to listen to the radio. 我喜歡聽廣播。 CC-BY 2.0 (France) Attribution: tatoeba.org #255913 (CK) & #883402 (Martha) +I like to walk in the country. 我喜歡在鄉間散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #259614 (CK) & #876936 (Martha) +I love spending time with Tom. 我喜欢花时间和Tom在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #3098719 (CK) & #4845130 (pig8322) +I made him carry the suitcase. 我要他提行李箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #260285 (CK) & #848723 (Martha) +I made the decision by myself. 我自己做了决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #7476894 (CK) & #8936278 (crescat) +I made up my mind to go there. 我决定去那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #50954 (CK) & #8792064 (crescat) +I met a friend at the airport. 我在机场见了个朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1541738 (Zaghawa) & #5900404 (verdastelo9604) +I met her late in the evening. 我在深夜遇見了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #43590 (CK) & #885527 (Martha) +I met her on campus yesterday. 我昨天在校園裡遇到了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #240914 (CK) & #846091 (Martha) +I mistook him for his brother. 我把他誤認為是他的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #539608 (CK) & #848358 (Martha) +I must finish this work first. 我必須先完成這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #32759 (CK) & #846272 (Martha) +I must've mistyped the number. 我一定是打錯號碼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7816285 (sharris123) & #735192 (Martha) +I need some help with my work. 我在我的工作上需要一些幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #250927 (CK) & #887866 (Martha) +I need to exercise more often. 我需要更经常地锻炼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952364 (CK) & #5613714 (verdastelo9604) +I need to know what you think. 我需要知道你怎么想。 CC-BY 2.0 (France) Attribution: tatoeba.org #5298940 (CK) & #5581868 (verdastelo9604) +I often go downtown on Sunday. 我常常星期日去市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #259853 (CK) & #846103 (Martha) +I often play tennis on Sunday. 我常常在週日打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #281840 (CK) & #846549 (Martha) +I often went fishing with him. 我經常和他去釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #284427 (CK) & #848234 (Martha) +I only do what I'm paid to do. 我祇做別人付錢讓我做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1956032 (CK) & #6150892 (verdastelo9604) +I only want to know the facts. 我只想知道事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #5300586 (CK) & #5630392 (verdastelo9604) +I only wanted to do some good. 我只想做好事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1956092 (CK) & #6560612 (verdastelo9604) +I play tennis once in a while. 我偶爾打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #258146 (CK) & #881038 (Martha) +I played catch with my father. 我和我爸爸玩接球。 CC-BY 2.0 (France) Attribution: tatoeba.org #253299 (CK) & #851520 (Martha) +I put some cream in my coffee. 我在我的咖啡裡放了一些奶油。 CC-BY 2.0 (France) Attribution: tatoeba.org #62264 (CK) & #881753 (Martha) +I put the money into the safe. 我把錢放入保險櫃裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #625902 (CK) & #795247 (Martha) +I really enjoyed your company. 我真的很喜歡你的陪伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #71230 (CK) & #835769 (Martha) +I regret eating those oysters. 我後悔吃了那些牡蠣。 CC-BY 2.0 (France) Attribution: tatoeba.org #50575 (CK) & #834889 (Martha) +I relaxed at home last Sunday. 我上個星期天在家裡放輕鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #281867 (CK) & #851531 (Martha) +I remember giving him the key. 我記得給了他鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #285056 (CK) & #860992 (Martha) +I remember mailing the letter. 我記得寄了信。 CC-BY 2.0 (France) Attribution: tatoeba.org #265991 (CK) & #835436 (Martha) +I remember meeting you before. 我記得以前見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #537342 (CK) & #834997 (Martha) +I said I would make her happy. 我说我会让她幸福的。 CC-BY 2.0 (France) Attribution: tatoeba.org #328726 (CK) & #2161723 (sadhen) +I saw a light in the distance. 我看见远处有灯光。 CC-BY 2.0 (France) Attribution: tatoeba.org #25824 (CK) & #346462 (fucongcong) +I saw him crossing the street. 我看见他穿过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #260126 (CK) & #405046 (fucongcong) +I saw them walking arm in arm. 我看见他们胳膊挽着胳膊地走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #260827 (CK) & #2437290 (CLARET) +I should have taken the money. 我應該拿那些錢的。 CC-BY 2.0 (France) Attribution: tatoeba.org #18555 (CK) & #860826 (Martha) +I should stop procrastinating. 我做事该果断。 CC-BY 2.0 (France) Attribution: tatoeba.org #334553 (TRANG) & #334554 (fucongcong) +I should've brought my camera. 我應該把我的相機帶來。 CC-BY 2.0 (France) Attribution: tatoeba.org #63551 (CK) & #860749 (Martha) +I should've gone home earlier. 我該早點回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735575 (CK) & #6109296 (verdastelo9604) +I still don't think I'm wrong. 我還是不認為我錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406626 (CK) & #6058604 (verdastelo9604) +I study for 3 hours every day. 我每天讀書三個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #261822 (CK) & #884153 (Martha) +I subscribe to two newspapers. 我訂閱了兩份報紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #258831 (CK) & #835375 (Martha) +I suggest we go out on Friday. 我建议我们星期五出去玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #8338376 (CK) & #1772678 (sadhen) +I suggested that she go alone. 我建議她一個人去。 CC-BY 2.0 (France) Attribution: tatoeba.org #260997 (CK) & #862743 (Martha) +I support you whole-heartedly. 我全心全意地支持你。 CC-BY 2.0 (France) Attribution: tatoeba.org #321790 (CK) & #825766 (Martha) +I take a bath every other day. 我每兩天洗一次澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #252485 (CK) & #880288 (Martha) +I take care of my grandfather. 我照顧我的爺爺。 CC-BY 2.0 (France) Attribution: tatoeba.org #65097 (CK) & #850391 (Martha) +I talked with her for an hour. 我跟她談了一個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #261106 (CK) & #881546 (Martha) +I thank you with all my heart. 我衷心感谢您。 CC-BY 2.0 (France) Attribution: tatoeba.org #436985 (lukaszpp) & #803835 (fucongcong) +I think I've found the answer. 我想我找到答案了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3390712 (CK) & #5624911 (verdastelo9604) +I think Tom really likes Mary. 我認為湯姆真喜歡瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3123372 (CK) & #6111944 (verdastelo9604) +I think she's an honest woman. 我认为她是一个诚实的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318732 (CK) & #1786145 (sadhen) +I think we were well-prepared. 我認為我們準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5732987 (CM) & #5500612 (egg0073) +I think you're really amazing. 我觉得你真是让人大吃一惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2458596 (CK) & #5091411 (mirrorvan) +I thought that I was dreaming. 我还以为我在做梦呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #7174253 (CK) & #2033412 (sadhen) +I took a picture of my family. 我為我的家人拍了照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #256520 (CK) & #881109 (Martha) +I took an art class last year. 我去年上了一堂藝術課。 CC-BY 2.0 (France) Attribution: tatoeba.org #19414 (CK) & #881087 (Martha) +I took the children to school. 我帶孩子們去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #245793 (CK) & #859109 (Martha) +I tried to change the subject. 我試圖改變話題。 CC-BY 2.0 (France) Attribution: tatoeba.org #262312 (CK) & #850408 (Martha) +I trust his executive ability. 我相信他的执行能力。 CC-BY 2.0 (France) Attribution: tatoeba.org #260647 (CK) & #8800300 (slo_oth) +I used to swim here every day. 我以前每天在這裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #253461 (CK) & #881203 (Martha) +I usually go to school by bus. 我經常搭公車上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #253120 (CK) & #876723 (Martha) +I waited for him all day long. 我等了他一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #252495 (CK) & #876742 (Martha) +I walked as slowly as I could. 我盡可能的走慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #255062 (CK) & #876939 (Martha) +I want Tom to let Mary finish. 我希望汤姆让玛丽完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #4415517 (meerkat) & #5911607 (verdastelo9604) +I want him to play the guitar. 我要他彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260278 (CK) & #881849 (Martha) +I want something hot to drink. 我想喝點熱的飲料。 CC-BY 2.0 (France) Attribution: tatoeba.org #25060 (CK) & #857845 (Martha) +I want something sweet to eat. 我想要吃甜的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25179 (CK) & #859138 (Martha) +I want something to drink now. 我現在想要喝點東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #321813 (CK) & #858207 (Martha) +I want to brush up my English. 我要溫習一下我的英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #256230 (CK) & #877608 (Martha) +I want to buy a pair of pants. 我想買條褲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #6559104 (ren) & #6559078 (xjjAstrus) +I want to buy this dictionary. 我想買這本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #253640 (CK) & #859101 (Martha) +I want to eat some cake first. 我想先吃點蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #32812 (CK) & #887796 (Martha) +I want to go abroad next year. 我明年想去國外。 CC-BY 2.0 (France) Attribution: tatoeba.org #262161 (CK) & #889194 (Martha) +I want to know where she went. 我想知道她去哪儿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230657 (alec) & #334136 (fucongcong) +I want you to meet my parents. 我想讓你見見我的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #68794 (CK) & #882159 (Martha) +I want you to open the window. 我要你把窗戶打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #252779 (CK) & #880395 (Martha) +I wanted to go to the concert. 我本想去参加音乐会的。 CC-BY 2.0 (France) Attribution: tatoeba.org #253822 (CK) & #609966 (sarah) +I warned you not to come here. 我警告過你別來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4927665 (Hybrid) & #6075558 (verdastelo9604) +I was certain that you'd come. 我確定你會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #3978193 (patgfisher) & #6086802 (verdastelo9604) +I was frightened by the sight. 我被这情景吓到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48044 (CK) & #1358453 (sadhen) +I was impressed with her work. 她的作品給我留下了深刻印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #2130914 (Hybrid) & #6132389 (verdastelo9604) +I was mistaken for a salesman. 我被誤認為是推銷員。 CC-BY 2.0 (France) Attribution: tatoeba.org #254056 (CK) & #858724 (Martha) +I was out of town on vacation. 我出城度假了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256834 (CK) & #887690 (Martha) +I was surprised to see a lion. 我很驚訝竟然看到了獅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #255905 (CK) & #772361 (Martha) +I was the last one to see Tom. 我是见汤姆的最后一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542603 (CK) & #5576799 (verdastelo9604) +I went camping with my family. 我和家人去露營。 CC-BY 2.0 (France) Attribution: tatoeba.org #256514 (CK) & #862877 (Martha) +I went for a walk in the park. 我去公园散了步。 CC-BY 2.0 (France) Attribution: tatoeba.org #257357 (CK) & #333219 (fucongcong) +I went shopping last Saturday. 上週六我去購物。 CC-BY 2.0 (France) Attribution: tatoeba.org #272735 (CK) & #835438 (Martha) +I went there by bus and train. 我搭公車和火車去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #50886 (CK) & #881846 (Martha) +I went to a park this morning. 今天早上我去了公园。 CC-BY 2.0 (France) Attribution: tatoeba.org #242249 (CK) & #410855 (fucongcong) +I went to the airport by taxi. 我搭計程車去機場。 CC-BY 2.0 (France) Attribution: tatoeba.org #18195 (CK) & #881751 (Martha) +I will be busy this afternoon. 我今天下午會很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #242547 (CK) & #858827 (Martha) +I will be free in ten minutes. 我十分钟后有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #71699 (CK) & #438493 (fucongcong) +I will come earlier next time. 我下次會早點來。 CC-BY 2.0 (France) Attribution: tatoeba.org #58893 (CK) & #861082 (Martha) +I will find you a good doctor. 我會幫你找個好醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #17433 (CK) & #889643 (Martha) +I will go to America tomorrow. 我明天會去美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #261914 (CK) & #852180 (Martha) +I will pick you up around six. 我會在六點鐘左右接你。 CC-BY 2.0 (France) Attribution: tatoeba.org #72440 (CK) & #881196 (Martha) +I will say something about it. 我會談談它。 CC-BY 2.0 (France) Attribution: tatoeba.org #42922 (CK) & #852154 (Martha) +I will show you some pictures. 我會讓你看照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #71094 (CK) & #734937 (Martha) +I will show you some pictures. 我會給你們看些照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #71094 (CK) & #765525 (Martha) +I wish I could stop hiccuping. 我希望我能停止打嗝。 CC-BY 2.0 (France) Attribution: tatoeba.org #5915726 (CK) & #8739647 (slo_oth) +I wish I were a little taller. 但願我長高一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #31236 (CK) & #894008 (Martha) +I wish Tom would just go away. 我希望汤姆走开。 CC-BY 2.0 (France) Attribution: tatoeba.org #5168435 (CK) & #5685875 (verdastelo9604) +I wish that Tom would go home. 我希望湯姆回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952654 (CK) & #6309832 (verdastelo9604) +I wish to visit Egypt someday. 我希望有一天去埃及。 CC-BY 2.0 (France) Attribution: tatoeba.org #253089 (CK) & #894144 (Martha) +I wish you could come with us. 但願你可以跟我們一起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #17838 (CK) & #893515 (Martha) +I wonder if I can do it again. 我不知道我能不能再做一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542570 (CK) & #5926181 (verdastelo9604) +I work for a shipping company. 我為一家船運公司工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #22213 (CK) & #850111 (Martha) +I would like to become a poet. 我想要成為詩人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736799 (paper1n0) & #4262699 (egg0073) +I would like to know her name. 我想知道她的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #309801 (CK) & #894304 (Martha) +I wrote a letter to my mother. 我寫了一封信給我的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #252366 (CK) & #890983 (Martha) +I wrote down his phone number. 我寫下他的電話號碼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #260727 (CK) & #862890 (Martha) +I'd bought it the week before. 我一周前已經買了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8999791 (CK) & #795232 (Martha) +I'd like to go abroad one day. 我想有一天去国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #792350 (Swift) & #804994 (fucongcong) +I'd like to talk to Tom alone. 我想和汤姆单独谈一谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936329 (CK) & #8877845 (crescat) +I'd like to try on this dress. 我想試穿這件衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #60771 (CK) & #892578 (Martha) +I'd rather die than surrender. 我寧死不降 CC-BY 2.0 (France) Attribution: tatoeba.org #1332077 (CK) & #7432361 (zzztat) +I'd rather you stayed at home. 我寧願你待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #71093 (CK) & #891161 (Martha) +I'll be back at seven o'clock. 我會在七點鐘回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #252621 (CK) & #885529 (Martha) +I'll be free all day tomorrow. 明天我一整天都有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #71843 (CK) & #844570 (kooler) +I'll bring it to you tomorrow. 我明天带给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323113 (CK) & #472859 (fucongcong) +I'll come to pick it up later. 我晚点再来拿。 CC-BY 2.0 (France) Attribution: tatoeba.org #240130 (CK) & #8789683 (crescat) +I'll drive you to the airport. 我会开车送你去机场。 CC-BY 2.0 (France) Attribution: tatoeba.org #18185 (CK) & #745828 (fucongcong) +I'll drive you to the airport. 我会开车送你们去机场。 CC-BY 2.0 (France) Attribution: tatoeba.org #18185 (CK) & #745829 (fucongcong) +I'll give you a call tomorrow. 明天我給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542512 (CK) & #3782195 (egg0073) +I'll lend you this dictionary. 我會借給你這本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #58819 (CK) & #835327 (Martha) +I'll never speak to you again. 我再也不会跟你说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826870 (CK) & #9178035 (xiaohong) +I'll pick you up at your home. 我会去你家接你。 CC-BY 2.0 (France) Attribution: tatoeba.org #70798 (CK) & #472851 (fucongcong) +I'll show you around the town. 我會帶你逛逛這個鎮。 CC-BY 2.0 (France) Attribution: tatoeba.org #277892 (CK) & #772106 (Martha) +I'll take you to the bus stop. 我会带你到公交车站。 CC-BY 2.0 (France) Attribution: tatoeba.org #5598513 (CK) & #5637331 (verdastelo9604) +I'll try to find them for you. 我会努力帮你找到他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #3918178 (CK) & #5794142 (verdastelo9604) +I'm accustomed to the climate. 我对这气候习惯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810469 (CK) & #5696835 (verdastelo9604) +I'm actually doing quite well. 我其實做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890795 (CK) & #6309823 (verdastelo9604) +I'm afraid I must say goodbye. 恐怕我必須說再見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #245223 (CM) & #885677 (Martha) +I'm asking you what you think. 我问你你在想什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542474 (CK) & #5555820 (verdastelo9604) +I'm calling from a cell phone. 我正在用手机打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890967 (CK) & #8777601 (crescat) +I'm extremely grateful to you. 我無法表達我對你的感謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #836578 (CM) & #836577 (egg0073) +I'm feeling good this morning. 我今天早晨感觉良好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242203 (CK) & #5670803 (verdastelo9604) +I'm feeling much better today. 我今天感觉好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242701 (CK) & #334279 (fucongcong) +I'm glad the thief was caught. 抓到小偷真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8525811 (CK) & #8910881 (crescat) +I'm going to Europe next week. 我下週要去歐洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #28927 (CK) & #850591 (Martha) +I'm going to be a millionaire. 我就要成为百万富翁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542451 (CK) & #5091599 (mirrorvan) +I'm going to make you a drink. 我去弄飲料給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4610301 (CK) & #4645066 (flysun) +I'm grateful for what Tom did. 我很感激汤姆所做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3092465 (CK) & #4876376 (ryanwoo) +I'm hearing that a lot lately. 我最近听说了不少。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729849 (CM) & #5617240 (verdastelo9604) +I'm not very good at swimming. 我不是很擅長游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #321878 (CK) & #857988 (Martha) +I'm planning to study tonight. 我打算今天晚上讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #243278 (CK) & #835623 (Martha) +I'm really not happy about it. 我對此真不高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852093 (CK) & #6047531 (verdastelo9604) +I'm really sorry to hear that. 听到这样的消息我真的很难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264976 (irrationale) & #3671663 (shirleyleee) +I'm seeing you in a new light. 我对你刮目相看了。 CC-BY 2.0 (France) Attribution: tatoeba.org #239347 (CM) & #8893590 (crescat) +I'm studying computer science. 我在学习计算机科学。 CC-BY 2.0 (France) Attribution: tatoeba.org #7784861 (CK) & #1361985 (sadhen) +I'm suffering from a bad cold. 我患上了重感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873085 (CK) & #6483619 (FAErika) +I'm sure Tom will do his best. 我确定汤姆会尽力去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2947010 (CK) & #5617215 (verdastelo9604) +I'm sure you'll be interested. 我确定你會感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823539 (CK) & #8570953 (verdastelo9604) +I'm taking an exam in January. 我一月份要参加考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #27825 (CK) & #334499 (fucongcong) +I'm tired of eating fast food. 我厌倦吃快餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2129 (CK) & #503234 (fucongcong) +I'm tired of eating fast food. 我受够吃快餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2129 (CK) & #784499 (fucongcong) +I'm tired of listening to Tom. 我厌倦了听汤姆说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780476 (CK) & #5780499 (verdastelo9604) +I'm used to working all night. 我習慣整夜工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #259591 (CK) & #883284 (Martha) +I've always been proud of you. 我一直以您为荣。 CC-BY 2.0 (France) Attribution: tatoeba.org #3911556 (CK) & #7767716 (jiangche) +I've always been proud of you. 我一直为您骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #3911556 (CK) & #7767719 (jiangche) +I've always wanted to do that. 我一直都想做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5282235 (CK) & #6146510 (verdastelo9604) +I've decided to shave my head. 我已经决定把我的头发剃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8567041 (CK) & #8567052 (slo_oth) +I've got things under control. 我控制住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359708 (CK) & #5698058 (verdastelo9604) +I've had enough of your lying. 我听够你的谎话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4545447 (CK) & #5911614 (verdastelo9604) +I've never been abroad before. 我以前从没去过国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #530526 (blay_paul) & #5715139 (verdastelo9604) +I've never stopped loving Tom. 我從沒停止過愛湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3448977 (CK) & #6105249 (verdastelo9604) +I've never underestimated Tom. 我从没低估汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2262055 (CK) & #5965707 (verdastelo9604) +I've read many kinds of books. 我已经读过很多种类的书了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1556172 (CK) & #1783785 (sadhen) +If only I could speak English! 我要是会说英语就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26381 (CK) & #5920772 (verdastelo9604) +If you want to know, just ask. 如果您想知道,直接问就是了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2013640 (CK) & #7781704 (jiangche) +If you're busy, I'll help you. 如果你忙,我會幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17728 (CK) & #858718 (Martha) +In a sense, she is right, too. 从某种意义上来说,她也是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #239367 (Eldad) & #8795174 (slo_oth) +In my opinion, she is correct. 在我看來,她是正確的。 CC-BY 2.0 (France) Attribution: tatoeba.org #388734 (CK) & #850412 (Martha) +In the case of fire, dial 119. 遇到火警時,撥打119。 CC-BY 2.0 (France) Attribution: tatoeba.org #23823 (CK) & #797067 (Martha) +India is a developing country. 印度是发展中国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1501758 (MrShoval) & #5696834 (verdastelo9604) +Is it OK if I go out with Tom? 我跟汤姆外出行吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3394309 (CK) & #5640732 (verdastelo9604) +Is it safe to eat cockroaches? 吃蟑螂安全吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5205397 (CK) & #5903473 (verdastelo9604) +Is there a hospital near here? 這附近有醫院嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59628 (CK) & #861132 (Martha) +Is there anybody in the house? 屋里有人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #788244 (hrin) & #787585 (fucongcong) +Isn't this weather just great! 天氣真是太好了! CC-BY 2.0 (France) Attribution: tatoeba.org #402401 (CK) & #834683 (Martha) +Isn't this what Tom asked for? 这不是汤姆要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5780480 (CK) & #5780503 (verdastelo9604) +It all depends on the weather. 一切都取決於天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #42735 (CK) & #861053 (Martha) +It doesn't matter what you do. 你做什么都无所谓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3075212 (CK) & #5911620 (verdastelo9604) +It exploded with a loud noise. 它發出巨響爆炸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #275578 (ludoviko) & #781105 (Martha) +It has nothing to do with you. 跟你沒有關係。 CC-BY 2.0 (France) Attribution: tatoeba.org #42626 (CK) & #894230 (Martha) +It has nothing to do with you. 不關你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #42626 (CK) & #894232 (Martha) +It is clear what must be done. 顯然地勢必要做些什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #24746 (CK) & #797039 (Martha) +It is fun to speak in English. 说英语很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #26351 (CK) & #1541585 (CLARET) +It is getting lighter outside. 外面天色越來越亮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22008 (CK) & #835669 (Martha) +It is going to rain very soon. 很快就要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31614 (CK) & #891066 (Martha) +It is hardly worth discussing. 這幾乎不值得討論。 CC-BY 2.0 (France) Attribution: tatoeba.org #19993 (CK) & #834617 (Martha) +It is likely to rain tomorrow. 明天有可能會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #40563 (CK) & #855692 (Martha) +It is never too late to learn. 活到老,学到老。 CC-BY 2.0 (France) Attribution: tatoeba.org #2061 (CK) & #503082 (fucongcong) +It is no use arguing with her. 和她争辩是没用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #308607 (CK) & #332577 (fucongcong) +It is no use asking him again. 再问他也没用。 CC-BY 2.0 (France) Attribution: tatoeba.org #284952 (CK) & #796901 (fucongcong) +It is no use talking with him. 跟他說話沒用。 CC-BY 2.0 (France) Attribution: tatoeba.org #285204 (CK) & #6325141 (verdastelo9604) +It is rude to laugh at others. 嘲笑別人是無禮的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270176 (CK) & #801344 (Martha) +It is rude to point at others. 指著別人是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #274757 (CK) & #801345 (Martha) +It is ten o'clock by my watch. 我的手錶是十點鐘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251013 (CK) & #798205 (Martha) +It is too dark for me to read. 太暗了我無法讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #37839 (CK) & #727909 (Martha) +It is wrong to cheat at cards. 玩牌作弊是錯誤的。 CC-BY 2.0 (France) Attribution: tatoeba.org #36920 (CK) & #801348 (Martha) +It isn't as hard as you think. 那个没你想象的那么难。 CC-BY 2.0 (France) Attribution: tatoeba.org #7198656 (CK) & #8696247 (crescat) +It was a quiet winter evening. 这是个静谧的冬夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #414959 (FeuDRenais) & #7772073 (jiangche) +It was a very stupid decision. 这是一个十分愚蠢的决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144913 (Hybrid) & #4148146 (sissima) +It was only a partial success. 那只是部分的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #42123 (CK) & #8756330 (crescat) +It was very cold this morning. 今天早上很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #242185 (CK) & #859151 (Martha) +It wasn't very hot last night. 昨晚不是很熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #324576 (CK) & #859367 (Martha) +It'll soon be time for dinner. 不久就要吃正餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31593 (CK) & #1358707 (sadhen) +It's about the size of an egg. 它的大小就像雞蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #42038 (CK) & #797089 (Martha) +It's almost time to go to bed. 差不多是就寢的時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41691 (CK) & #894221 (Martha) +It's already past ten o'clock. 已經過了十點鐘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31736 (CK) & #834684 (Martha) +It's exactly as you say it is. 它跟你說的完全一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #410891 (CK) & #891732 (Martha) +It's fun to ride a motorcycle. 騎摩托車很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #65133 (CK) & #860569 (Martha) +It's impossible to go out now. 現在不可能出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #242130 (CK) & #850315 (Martha) +It's not as hard as you think. 那个没你想象的那么难。 CC-BY 2.0 (France) Attribution: tatoeba.org #3518518 (CK) & #8696247 (crescat) +It's really bad for your eyes. 它对你的眼睛有害。 CC-BY 2.0 (France) Attribution: tatoeba.org #2561368 (Hybrid) & #4540826 (McMeao) +It's too late to call Tom now. 现在很晚了,没法电联汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794489 (CK) & #8975254 (WilsonWong) +It's very hot today, isn't it? 今天非常熱,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242712 (CK) & #801530 (Martha) +Japan is not as big as Canada. 日本不像加拿大那么大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477160 (weihaiping) & #782117 (fucongcong) +Just put yourself in my shoes. 你站在我的立場上考慮看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #32990 (CK) & #798288 (Martha) +Keep to the left when driving. 車輛靠左行駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #265582 (CK) & #798064 (Martha) +Kobe is famous as a port city. 科比是一個著名的港口城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #269687 (CK) & #797040 (Martha) +Learning English is hard work. 學習英語很辛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #26229 (CK) & #835695 (Martha) +Let your uncle think about it. 讓你叔叔想一想。 CC-BY 2.0 (France) Attribution: tatoeba.org #770194 (marloncori) & #770213 (Martha) +Let's begin with this problem. 从这个问题开始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #56757 (CK) & #784559 (fucongcong) +Let's go back to lesson three. 让我们回到第三课。 CC-BY 2.0 (France) Attribution: tatoeba.org #7785177 (sharris123) & #470981 (fucongcong) +Let's synchronize our watches. 讓我們校對一下錶吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #23401 (CK) & #832824 (Martha) +Let's take a rest for a while. 我们休息一会儿吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #40027 (CK) & #813506 (fucongcong) +Let's take a ten-minute break. 讓我們休息10分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #518315 (darinmex) & #835682 (Martha) +Let's take a trip to New York. 去纽约旅行吧! CC-BY 2.0 (France) Attribution: tatoeba.org #35886 (CK) & #812239 (fucongcong) +Let's take a trip to New York. 去纽约吧! CC-BY 2.0 (France) Attribution: tatoeba.org #35886 (CK) & #812243 (fucongcong) +Let's take a walk in the park. 讓我們在公園裡散步吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #240456 (CK) & #894051 (Martha) +Let's wait till he comes back. 等到他回来吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #284235 (CK) & #8936353 (crescat) +Liars must have a good memory. 骗子们必须有好记性。 CC-BY 2.0 (France) Attribution: tatoeba.org #855282 (dobleahl) & #6089947 (verdastelo9604) +Lie down and rest for a while. 躺下來休息一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #25667 (CK) & #798231 (Martha) +Life is full of ups and downs. 人生充滿了高低起伏。 CC-BY 2.0 (France) Attribution: tatoeba.org #270545 (CK) & #798234 (Martha) +Life is not all fun and games. 生活並不都是輕鬆愉快的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270581 (CK) & #798236 (Martha) +Look at me when I talk to you! 我跟你说话的时候看着我! CC-BY 2.0 (France) Attribution: tatoeba.org #1698 (CE) & #501595 (fucongcong) +Look it up in your dictionary. 查查你的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #264889 (CK) & #858326 (Martha) +Love makes the world go round. 爱让世界转动。 CC-BY 2.0 (France) Attribution: tatoeba.org #28718 (CM) & #796780 (fucongcong) +Mary has a flower in her hand. 瑪麗手上有一朵花。 CC-BY 2.0 (France) Attribution: tatoeba.org #32350 (CK) & #891773 (Martha) +Mary has beautiful brown eyes. 玛丽的褐色眼睛很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045814 (CK) & #8902612 (crescat) +Mary hid the money in her bra. 瑪麗把錢藏在了文胸裏。 CC-BY 2.0 (France) Attribution: tatoeba.org #4540648 (Hybrid) & #5254702 (xjjAstrus) +Mary is carrying a watermelon. 瑪麗婭抱著一個西瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1397715 (Spamster) & #8824166 (xjjAstrus) +Mary succeeded in her studies. 玛丽在研究上成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #682102 (Source_VOA) & #5911724 (verdastelo9604) +Mary treated her wounded knee. 玛丽处理了膝盖的伤口。 CC-BY 2.0 (France) Attribution: tatoeba.org #682497 (Source_VOA) & #816504 (fucongcong) +Mary went down to the kitchen. 瑪麗下樓到廚房。 CC-BY 2.0 (France) Attribution: tatoeba.org #31952 (CK) & #864341 (Martha) +May I have a road map, please? 請給我一張路線圖。 CC-BY 2.0 (France) Attribution: tatoeba.org #29446 (CK) & #894020 (Martha) +May I have something to drink? 我可以喝點東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25190 (CK) & #850698 (Martha) +Maybe you should just give up. 可能你应该放弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818963 (CK) & #5617245 (verdastelo9604) +Maybe you're working too hard. 可能你工作得太拼命? CC-BY 2.0 (France) Attribution: tatoeba.org #9250921 (CK) & #604938 (CLARET) +Money is the root of all evil. 金錢是一切罪惡之源。 CC-BY 2.0 (France) Attribution: tatoeba.org #18505 (orcrist) & #806184 (Martha) +Most boys like computer games. 大多数男生喜欢电脑游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #41174 (Wolf) & #816436 (fucongcong) +My bike was stolen last night. 昨晚我的自行车被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #386697 (Mouseneb) & #334530 (fucongcong) +My boss made me work overtime. 我的老闆要我加班。 CC-BY 2.0 (France) Attribution: tatoeba.org #268313 (CK) & #858947 (Martha) +My brother became an engineer. 我哥哥成了一名工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #250707 (CK) & #834742 (Martha) +My canary was killed by a cat. 我的金絲雀被一隻貓殺死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250282 (CK) & #893039 (Martha) +My dad died before I was born. 我出生前,我父亲就死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #755212 (sctld) & #784390 (fucongcong) +My dream is to become a pilot. 我的梦想是成为一名飞行员。 CC-BY 2.0 (France) Attribution: tatoeba.org #251930 (sacredceltic) & #405056 (fucongcong) +My father bought me a bicycle. 我父亲给我买了一辆自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #570335 (CK) & #2690862 (sadhen) +My father can fly an airplane. 我的父親會駕駛飛機。 CC-BY 2.0 (France) Attribution: tatoeba.org #251726 (CK) & #850128 (Martha) +My father died four years ago. 我的父親四年前去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251682 (CK) & #850312 (Martha) +My father died of lung cancer. 我的父親死於肺癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #319321 (CK) & #851522 (Martha) +My father doesn't like soccer. 我爸爸不喜欢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #430198 (witbrock) & #333380 (fucongcong) +My father had me wash the car. 父亲让我洗汽车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1415668 (CK) & #1415761 (sadhen) +My father is an office worker. 我父親是一名辦公室職員。 CC-BY 2.0 (France) Attribution: tatoeba.org #251666 (CK) & #860750 (Martha) +My father likes strong coffee. 我父親喜歡濃咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #319318 (CK) & #834834 (Martha) +My father made a shelf for me. 我父親為我做了個架子。 CC-BY 2.0 (France) Attribution: tatoeba.org #319213 (CK) & #891615 (Martha) +My father told me where to go. 我爸爸告诉我去哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #319189 (CK) & #336959 (fucongcong) +My favorite sport is baseball. 我最喜歡的運動是棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499639 (CK) & #6936234 (verdastelo9604) +My grandfather is a carpenter. 我爺爺是個木匠。 CC-BY 2.0 (France) Attribution: tatoeba.org #250235 (CK) & #834631 (Martha) +My hands and legs are swollen. 我的手和腳都腫了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266034 (CK) & #852222 (Martha) +My hobby is collecting stamps. 我的嗜好是集郵。 CC-BY 2.0 (France) Attribution: tatoeba.org #251147 (CK) & #834805 (Martha) +My hobby is playing the piano. 我的嗜好就是彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #251132 (CK) & #816814 (Martha) +My house is close to the park. 我的房子靠近公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #250550 (CK) & #894054 (Martha) +My leg was bitten by that dog. 我的腿被那隻狗咬了。 CC-BY 2.0 (France) Attribution: tatoeba.org #419266 (CK) & #894065 (Martha) +My mother is a very good cook. 我媽媽的廚藝很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #251864 (CK) & #894002 (Martha) +My mother is a very good cook. 我媽媽是一個很棒的廚師。 CC-BY 2.0 (France) Attribution: tatoeba.org #251864 (CK) & #894003 (Martha) +My mother likes tea very much. 我媽媽很喜歡茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #251830 (CK) & #858763 (Martha) +My mother never gets up early. 我的母親從不早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #320650 (CK) & #863964 (Martha) +My mother took me to the park. 媽媽帶我去公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #320781 (CK) & #886569 (Martha) +My mother took my temperature. 我媽媽量了我的體溫。 CC-BY 2.0 (France) Attribution: tatoeba.org #320772 (CK) & #835684 (Martha) +My nephew is allergic to eggs. 我侄子對雞蛋過敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #250229 (CK) & #859442 (Martha) +My older brother is a teacher. 我哥哥是一名教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #250708 (CK) & #860576 (Martha) +My parents sent me a postcard. 我父母給我寄了一張明信片。 CC-BY 2.0 (France) Attribution: tatoeba.org #325651 (CK) & #864296 (Martha) +My pen isn't as good as yours. 我的钢笔不像你那支那么好。 CC-BY 2.0 (France) Attribution: tatoeba.org #33558 (CK) & #441472 (fucongcong) +My sister is shorter than you. 我妹妹比你矮。 CC-BY 2.0 (France) Attribution: tatoeba.org #250962 (CK) & #856387 (Martha) +My sister resembles my mother. 我妹妹很像我妈妈。 CC-BY 2.0 (France) Attribution: tatoeba.org #322348 (CK) & #334032 (fucongcong) +My son is now as tall as I am. 我儿子现在和我一样高了。 CC-BY 2.0 (France) Attribution: tatoeba.org #274430 (CK) & #397550 (fucongcong) +My son is tired of hamburgers. 我的兒子厭煩了漢堡包。 CC-BY 2.0 (France) Attribution: tatoeba.org #274425 (CK) & #859206 (Martha) +My uncle never writes letters. 我的叔叔從來不寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #251181 (CK) & #834736 (Martha) +My watch is five minutes slow. 我的錶慢了五分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #714329 (CM) & #714328 (egg0073) +My whole family's from Boston. 我全家來自波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3396891 (CK) & #6091808 (verdastelo9604) +No one can escape growing old. 没有人能逃过衰老。 CC-BY 2.0 (France) Attribution: tatoeba.org #2435887 (kuma) & #8765233 (crescat) +No one could solve the puzzle. 没人解得了这个谜题。 CC-BY 2.0 (France) Attribution: tatoeba.org #276583 (CK) & #8511415 (gumblex) +No one is calling you a thief. 沒人叫你小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #5395133 (Hybrid) & #6199289 (verdastelo9604) +No one lives in this building. 没有人住在这栋楼里。 CC-BY 2.0 (France) Attribution: tatoeba.org #451748 (FeuDRenais) & #444814 (fucongcong) +No one was killed in the fire. 沒人死在火裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3885012 (Hybrid) & #6127047 (verdastelo9604) +Nobody likes being laughed at. 沒有人喜歡被人嘲笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #40395 (CK) & #835331 (Martha) +Of course she passed the test. 當然,她通過了測驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #388565 (CK) & #851467 (Martha) +Old dogs can learn new tricks. 老的犬可以学新的诡计。 CC-BY 2.0 (France) Attribution: tatoeba.org #4836683 (AliBeadle) & #4844828 (pig8322) +Only peace can save the world. 只有和平能够拯救世界。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663390 (liwan1208) & #1659818 (vicch) +Our car broke down last night. 我們的昨晚車拋錨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30164 (CK) & #857842 (Martha) +Our school is fifty years old. 我們學校有五十年的歷史了。 CC-BY 2.0 (France) Attribution: tatoeba.org #247486 (CK) & #851514 (Martha) +Our teacher likes his new car. 我們的老師喜歡他的新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #273010 (CK) & #855664 (Martha) +Our team lost the first match. 我們隊輸了第一場比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260081 (FeuDRenais) & #2256386 (cienias) +People can't live without air. 没有空气,人无法存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #427995 (witbrock) & #333241 (fucongcong) +Perhaps it will rain tomorrow. 也許明天會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #34604 (CK) & #840765 (Martha) +Please close the door quietly. 請安靜地關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #272060 (CK) & #836334 (Martha) +Please come whenever you like. 請你想什麼時候來都可以。 CC-BY 2.0 (France) Attribution: tatoeba.org #66199 (CK) & #840776 (Martha) +Please don't misunderstand me. 千万别误会我的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #250324 (CK) & #4282947 (notabene) +Please feed the dog every day. 请每天喂一下狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #48285 (CK) & #333849 (fucongcong) +Please give me a cup of water. 请你给我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #387566 (Mouseneb) & #334646 (fucongcong) +Please give me a cup of water. 請給我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #387566 (Mouseneb) & #890631 (Martha) +Please leave everything to me. 請把所有的東西留給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #51781 (CK) & #845964 (Martha) +Please show me those pictures. 請讓我看看那些圖片。 CC-BY 2.0 (France) Attribution: tatoeba.org #6351129 (CK) & #6534048 (verdastelo9604) +Please tell me what you think. 請告訴我你的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #70669 (CK) & #864266 (Martha) +Please wait until I come back. 請等到我回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #247111 (CK) & #864294 (Martha) +Put the book on the top shelf. 把書放在最上面的架子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #43934 (CK) & #893999 (Martha) +Rome is a city worth visiting. 羅馬這個城市值得一遊。 CC-BY 2.0 (France) Attribution: tatoeba.org #29406 (CK) & #797060 (Martha) +Run and hide in the mountains. 跑到山里躲起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #280103 (CM) & #463883 (fucongcong) +Sales should double this year. 今年销售会翻番。 CC-BY 2.0 (France) Attribution: tatoeba.org #243116 (CK) & #2007052 (sadhen) +School begins at eight-thirty. 学校8点半开始上课。 CC-BY 2.0 (France) Attribution: tatoeba.org #21549 (CK) & #332951 (fucongcong) +School will start next Monday. 下周一开学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1350120 (Chrikaru) & #431555 (fucongcong) +Shake the bottle before using. 使用前搖動一下瓶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #245493 (CK) & #839103 (Martha) +She always keeps her promises. 她總是信守承諾。 CC-BY 2.0 (France) Attribution: tatoeba.org #476442 (CK) & #842485 (Martha) +She believes whatever he says. 她相信他說的任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #312789 (CK) & #3158525 (cienias) +She bought two pairs of socks. 她買了兩雙襪子。 CC-BY 2.0 (France) Attribution: tatoeba.org #313354 (CK) & #857854 (Martha) +She can speak three languages. 她會講三種語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #310163 (CK) & #836158 (Martha) +She cannot do without her car. 她離不開她的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #314812 (CK) & #793512 (Martha) +She cannot do without her car. 沒有車她做不了事。 CC-BY 2.0 (France) Attribution: tatoeba.org #314812 (CK) & #793514 (Martha) +She cooked the dinner herself. 她自己煮晚餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324633 (CK) & #839607 (Martha) +She didn't tell me her secret. 她沒有告訴我她的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #541111 (CK) & #850308 (Martha) +She does nothing but complain. 她什麼都不做只會抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #316732 (CK) & #842258 (Martha) +She doesn't get outdoors much. 她沒有常到戶外。 CC-BY 2.0 (France) Attribution: tatoeba.org #310300 (CK) & #848182 (Martha) +She finally reached the hotel. 她終於到達了酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #312379 (CK) & #839561 (Martha) +She forgot to mail the letter. 她忘了寄信。 CC-BY 2.0 (France) Attribution: tatoeba.org #314894 (CK) & #850381 (Martha) +She gave away all her dresses. 她把她所有的洋裝都送人。 CC-BY 2.0 (France) Attribution: tatoeba.org #314730 (CK) & #805704 (Martha) +She gave in to the temptation. 她屈服於誘惑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311254 (CK) & #805560 (Martha) +She gave me a meaningful look. 她意味深長地看了我一眼。 CC-BY 2.0 (France) Attribution: tatoeba.org #309553 (CK) & #805227 (Martha) +She gave me this compact disc. 她給了我這個光碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #308314 (CK) & #805116 (Martha) +She gave out a sigh of relief. 她鬆了一口氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #312489 (CK) & #805103 (Martha) +She got on a bus for Harajuku. 她搭上了去原宿的巴士。 CC-BY 2.0 (France) Attribution: tatoeba.org #313497 (CK) & #894337 (Martha) +She had died before I arrived. 她在我到達之前去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #930451 (miry) & #924325 (Martha) +She has a bit of a bad temper. 她脾气有点坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3046496 (Whitney) & #3031996 (sadhen) +She has always lived in Otaru. 她一直住在小樽。 CC-BY 2.0 (France) Attribution: tatoeba.org #311005 (CK) & #850309 (Martha) +She has beautiful handwriting. 她的筆跡很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #395537 (CK) & #819410 (Martha) +She hasn't heard the news yet. 她还没听到这个消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #575333 (FeuDRenais) & #334281 (fucongcong) +She held her baby in her arms. 她把她的孩子抱在懷裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #317438 (CK) & #890963 (Martha) +She hired him as a programmer. 她聘請他作程式設計師。 CC-BY 2.0 (France) Attribution: tatoeba.org #388367 (CK) & #859192 (Martha) +She is absorbed in rock music. 她沉迷于摇滚乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #312441 (CK) & #863808 (kooler) +She is doing her homework now. 她現在正在做她的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #313708 (CK) & #851533 (Martha) +She is fond of playing tennis. 她酷爱打网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #311648 (CM) & #333421 (fucongcong) +She is giving a party tonight. 她今晚舉行派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #313743 (CK) & #804977 (Martha) +She is giving the baby a bath. 她正在給嬰兒洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #315426 (CK) & #804965 (Martha) +She is going to Chiba Stadium. 她將去千葉球場。 CC-BY 2.0 (France) Attribution: tatoeba.org #309994 (CK) & #804823 (Martha) +She is good at playing tennis. 她擅長打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #311649 (CK) & #861022 (Martha) +She is married to a foreigner. 她嫁給了一個外國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #312980 (CK) & #793920 (Martha) +She is married to an American. 她嫁給了美國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #310319 (CK) & #793917 (Martha) +She is not afraid of anything. 她不害怕任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #316789 (CK) & #849814 (Martha) +She is poor, but she is happy. 她很窮,但是她很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #508799 (kebukebu) & #892521 (Martha) +She is progressing in Chinese. 她中文有进步。 CC-BY 2.0 (France) Attribution: tatoeba.org #315801 (CK) & #426862 (fucongcong) +She is working on the problem. 她在处理问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #311423 (CK) & #816451 (fucongcong) +She knows how to do the crawl. 她知道怎麼游自由式。 CC-BY 2.0 (France) Attribution: tatoeba.org #310778 (CK) & #805626 (Martha) +She left early in the morning. 她清晨離開了。 CC-BY 2.0 (France) Attribution: tatoeba.org #315841 (CK) & #863974 (Martha) +She left for London yesterday. 她昨天離開去倫敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #313820 (CK) & #840767 (Martha) +She left home ten minutes ago. 她十分鐘前離家。 CC-BY 2.0 (France) Attribution: tatoeba.org #73372 (CK) & #862720 (Martha) +She likes all kinds of sports. 她喜歡各種運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019950 (CM) & #1019951 (egg0073) +She lives just across from us. 她就住在我們對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #312924 (CK) & #862852 (Martha) +She looked after the children. 她照顧孩子們。 CC-BY 2.0 (France) Attribution: tatoeba.org #313958 (CK) & #836377 (Martha) +She looked after the children. 她照顧孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #313958 (CK) & #864308 (Martha) +She made coffee for all of us. 她為我們所有的人煮咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #314073 (CK) & #891033 (Martha) +She made room for an old lady. 她讓座給一位老太太。 CC-BY 2.0 (France) Attribution: tatoeba.org #317508 (CK) & #801897 (Martha) +She made room for an old lady. 她讓出個空間給一位老太太。 CC-BY 2.0 (France) Attribution: tatoeba.org #317508 (CK) & #801899 (Martha) +She makes all her own clothes. 她的衣服全部都是她自己做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #314767 (CK) & #862734 (Martha) +She married him for his money. 她为了他的钱嫁给了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #887300 (CK) & #3783436 (Debbie_Linder) +She mistook me for my brother. 她把我誤認為是我的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #539603 (CK) & #859294 (Martha) +She mistook my brother for me. 她把我哥哥誤認為我。 CC-BY 2.0 (France) Attribution: tatoeba.org #539605 (CK) & #850124 (Martha) +She opened the letter quickly. 她很快地打開了信。 CC-BY 2.0 (France) Attribution: tatoeba.org #388851 (CK) & #844598 (Martha) +She paid me a visit yesterday. 她昨天来见我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #789536 (Eldad) & #5613690 (verdastelo9604) +She plays tennis after school. 她放学后打网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #310030 (CS) & #344414 (fucongcong) +She plays tennis every Sunday. 她每個星期天打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #317066 (CK) & #836409 (Martha) +She plays the piano very well. 她鋼琴彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #309929 (CK) & #849817 (Martha) +She pretended to be a student. 她假装是学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #313021 (Eldad) & #334611 (fucongcong) +She pulled him out of the mud. 她把他从烂泥中拽出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #887345 (CK) & #1419915 (asosan) +She put the key in her pocket. 她把鑰匙放在她的口袋裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #313493 (CK) & #894050 (Martha) +She put the money in the bank. 她把钱放在银行里。 CC-BY 2.0 (France) Attribution: tatoeba.org #311184 (CK) & #5617166 (verdastelo9604) +She saddled him with the work. 她強迫他做這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388388 (CK) & #864301 (Martha) +She said that he was handsome. 她說他很英俊。 CC-BY 2.0 (France) Attribution: tatoeba.org #461932 (CK) & #864372 (Martha) +She saw herself in the mirror. 她看到鏡子裡的自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #313272 (CK) & #849822 (Martha) +She showed us a beautiful hat. 她給我們看了一頂漂亮的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #314072 (CK) & #886603 (Martha) +She stayed at home by herself. 她獨自留在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #310101 (CK) & #857987 (Martha) +She stayed there for a moment. 她在那裡留了一會。 CC-BY 2.0 (France) Attribution: tatoeba.org #315022 (CK) & #6111982 (verdastelo9604) +She studies English every day. 她每天學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312696 (CK) & #836441 (Martha) +She takes care of my children. 她照顧我的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #309970 (CK) & #860850 (Martha) +She took care of the children. 她照顧孩子們。 CC-BY 2.0 (France) Attribution: tatoeba.org #245638 (adjusting) & #836377 (Martha) +She took care of the children. 她照顧孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #245638 (adjusting) & #864308 (Martha) +She traveled around the world. 她周遊世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #855378 (piksea) & #856394 (Martha) +She turned a page of her book. 她翻了一页书。 CC-BY 2.0 (France) Attribution: tatoeba.org #317029 (CM) & #8765047 (crescat) +She visits us every other day. 她每兩天探訪我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #310109 (CK) & #859155 (Martha) +She wants to attend the party. 她想參加這個派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #311925 (CK) & #860542 (Martha) +She was absorbed in the video. 她迷上了视频。 CC-BY 2.0 (France) Attribution: tatoeba.org #312058 (CK) & #5624965 (verdastelo9604) +She was appointed chairperson. 她被任命為主席。 CC-BY 2.0 (France) Attribution: tatoeba.org #388631 (CK) & #825140 (Martha) +She was feeling kind of tired. 她覺得有點累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310364 (Eldad) & #849810 (Martha) +She was in America last month. 她上個月在美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #315445 (CK) & #860838 (Martha) +She was married to a rich man. 她嫁給了一個有錢的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #313322 (CK) & #907502 (Martha) +She was often late for school. 她經常上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #419283 (CK) & #850304 (Martha) +She was sick in bed yesterday. 她昨天臥病在床。 CC-BY 2.0 (France) Attribution: tatoeba.org #244352 (CK) & #864362 (Martha) +She went from London to Paris. 她从伦敦去了巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #312446 (CK) & #863930 (kooler) +She went out to buy some food. 她出去買些食物了。 CC-BY 2.0 (France) Attribution: tatoeba.org #315098 (CK) & #907513 (Martha) +She went to Mexico by herself. 她独自一人去了墨西哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #310100 (CK) & #405778 (fucongcong) +She went to Shanghai by train. 她是坐火車去上海的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2737525 (eastasiastudent) & #2737428 (egg0073) +She went to the Takasu clinic. 她去了高須診所。 CC-BY 2.0 (France) Attribution: tatoeba.org #388680 (CK) & #852156 (Martha) +She went to the museum by cab. 她搭計程車到博物館。 CC-BY 2.0 (France) Attribution: tatoeba.org #388675 (CK) & #895190 (Martha) +She went to the park with him. 她跟他去公園了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316243 (CK) & #895708 (Martha) +She will be here this evening. 她今天晚上將在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #243198 (CK) & #850691 (Martha) +She will make him a good wife. 她会是他的好妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #316341 (CK) & #345925 (fucongcong) +She wrote 5 novels in 5 years. 她在5年里写了5本小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #2056414 (CM) & #5698030 (verdastelo9604) +She's a girl, but she's brave. 她是個女孩,但她勇敢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442126 (CM) & #6119465 (verdastelo9604) +She's a middle-aged fat woman. 她是個中年胖女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1189864 (CK) & #6148996 (verdastelo9604) +She's fond of taking pictures. 她喜欢拍照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #314800 (CM) & #346071 (fucongcong) +She's neither rich nor famous. 她既没钱,也不出名。 CC-BY 2.0 (France) Attribution: tatoeba.org #317303 (CK) & #829694 (fucongcong) +She's really smart, isn't she? 她真的很聪明,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1864 (CK) & #389793 (fucongcong) +Shouldn't you still be in bed? 你不該還在床上嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4017043 (CK) & #6073874 (verdastelo9604) +Show me a cheaper one, please. 請給我看看便宜一點的。 CC-BY 2.0 (France) Attribution: tatoeba.org #30476 (CK) & #851507 (Martha) +Show me your passport, please. 请给我看看您的护照。 CC-BY 2.0 (France) Attribution: tatoeba.org #35276 (CK) & #462032 (fucongcong) +Shut the door on your way out. 出去的时候把门关上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2618624 (vijaysharma) & #502864 (fucongcong) +Smoking is not permitted here. 这里不允许抽烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #61981 (CK) & #8673668 (crescat) +Some people believe in ghosts. 有些人相信鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #324440 (CK) & #836133 (Martha) +Somebody caught me by the arm. 有人抓住了我的手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #24530 (CK) & #6114399 (verdastelo9604) +Somebody is playing the piano. 有人正在彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #40474 (CK) & #845475 (Martha) +Someone locked me in the room. 有人把我鎖在這房間裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174940 (FeuDRenais) & #2174223 (sadhen) +Something strange is going on. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064830 (CK) & #8720496 (crescat) +Something's really weird here. 這裡有些事真怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #5135010 (CK) & #6105300 (verdastelo9604) +Sometimes I can't help myself. 有时候我帮不了自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #4950781 (CK) & #5551145 (verdastelo9604) +Sorry, I don't have any money. 抱歉,我没钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #462466 (lukaszpp) & #2395009 (fenfang557) +Speaking English is difficult. 說英語很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #26188 (CK) & #790670 (Martha) +Stay and have a drink with us. 留下来和我们一起喝酒吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877603 (CK) & #1878358 (sadhen) +Stick a stamp on the envelope. 把郵票貼在信封上。 CC-BY 2.0 (France) Attribution: tatoeba.org #319646 (CK) & #798196 (Martha) +Stop talking and listen to me. 別說話,聽我說。 CC-BY 2.0 (France) Attribution: tatoeba.org #65046 (CK) & #864189 (Martha) +Summers are very hot in Kyoto. 京都的夏天很热。 CC-BY 2.0 (France) Attribution: tatoeba.org #19310 (CK) & #335172 (fucongcong) +Swimming strengthens the legs. 游泳使腿部强健。 CC-BY 2.0 (France) Attribution: tatoeba.org #4046161 (Lisandro586) & #332679 (fucongcong) +Take care not to catch a cold. 小心不要着凉。 CC-BY 2.0 (France) Attribution: tatoeba.org #63729 (CK) & #782170 (fucongcong) +Thank you for your invitation. 感謝您的邀請。 CC-BY 2.0 (France) Attribution: tatoeba.org #268110 (CK) & #842433 (Martha) +That bridge is very beautiful. 那座橋很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #68450 (CK) & #838544 (Martha) +That furniture is my mother's. 那個家具是我母親的。 CC-BY 2.0 (France) Attribution: tatoeba.org #419249 (CK) & #836238 (Martha) +That incident made him famous. 這起事件使他一舉成名。 CC-BY 2.0 (France) Attribution: tatoeba.org #400142 (CK) & #840429 (Martha) +That is how I learned English. 我就是这么学会英语的。 CC-BY 2.0 (France) Attribution: tatoeba.org #43123 (CM) & #4270135 (notabene) +That novel isn't for children. 那本小說不適合兒童。 CC-BY 2.0 (France) Attribution: tatoeba.org #46525 (CK) & #845452 (Martha) +That really whets my appetite. 那很開胃。 CC-BY 2.0 (France) Attribution: tatoeba.org #8645658 (hamsolo474) & #884693 (Tajfun) +That red car hit the blue van. 那輛紅色汽車撞到了藍色麵包車。 CC-BY 2.0 (France) Attribution: tatoeba.org #1242098 (eastasiastudent) & #9179894 (xjjAstrus) +That was an excellent meeting. 那是场精彩的会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493799 (niceguydave) & #5670789 (verdastelo9604) +The Seine flows through Paris. 塞纳河穿越了巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #51353 (CK) & #829690 (fucongcong) +The airplane took off on time. 這班飛機準時起飛。 CC-BY 2.0 (France) Attribution: tatoeba.org #318093 (CM) & #868459 (Martha) +The army forced him to resign. 军队强迫他辞职。 CC-BY 2.0 (France) Attribution: tatoeba.org #805368 (Source_VOA) & #812205 (fucongcong) +The barber gave him a haircut. 理髮師為他理了頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #43495 (CK) & #868434 (Martha) +The best hairdressers are gay. 最好的理发师是同性恋。 CC-BY 2.0 (France) Attribution: tatoeba.org #602024 (darinmex) & #818869 (fucongcong) +The box is too heavy to carry. 這個箱子太重了無法攜帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #44455 (CK) & #905839 (Martha) +The boy jumped into the water. 這個男孩跳入了水中。 CC-BY 2.0 (France) Attribution: tatoeba.org #268023 (CK) & #869856 (Martha) +The bridge is being repainted. 這座橋正被重新油漆。 CC-BY 2.0 (France) Attribution: tatoeba.org #18974 (CK) & #838598 (Martha) +The bus should be coming soon. 公車應該很快就會來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35321 (CK) & #874211 (Martha) +The bus was two minutes early. 巴士早了兩分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #35325 (CK) & #870102 (Martha) +The capital of Japan is Tokyo. 日本的首都是东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #281408 (CK) & #333236 (fucongcong) +The car isn't worth repairing. 這車不值得修了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46823 (CK) & #6127049 (verdastelo9604) +The cat got through the hedge. 貓從樹籬穿過去。 CC-BY 2.0 (France) Attribution: tatoeba.org #282062 (CK) & #802120 (Martha) +The children went out to play. 孩子們出去玩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246065 (CK) & #874228 (Martha) +The clouds are getting darker. 雲越來越黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #26530 (CK) & #838524 (Martha) +The concert is about to start. 音樂會即將開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #25913 (CK) & #868440 (Martha) +The doctor examined my throat. 醫生檢查了我的喉嚨。 CC-BY 2.0 (France) Attribution: tatoeba.org #27960 (CK) & #842304 (Martha) +The dog barked at the mailman. 狗對著郵差叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #239129 (CK) & #870045 (Martha) +The dog saved the girl's life. 這隻狗救了這個小女孩的命。 CC-BY 2.0 (France) Attribution: tatoeba.org #48240 (CK) & #865557 (Martha) +The dress suits you very well. 这条裙子很适合你。 CC-BY 2.0 (France) Attribution: tatoeba.org #50154 (CM) & #335854 (fucongcong) +The experiment was successful. 這實驗是成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #265199 (CK) & #825886 (Martha) +The food isn't very good here. 這裡的食物不是很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #280019 (CK) & #872427 (Martha) +The girl did not say anything. 這個女孩什麼也沒說。 CC-BY 2.0 (France) Attribution: tatoeba.org #46467 (CK) & #874729 (Martha) +The girl is small for her age. 就她的年齡來說,這個女孩算是矮小的。 CC-BY 2.0 (France) Attribution: tatoeba.org #46433 (CK) & #900684 (Martha) +The girl resembled her mother. 這個女孩很像她的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #46629 (CK) & #842318 (Martha) +The girl resembles her mother. 這個女孩酷似她的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #46478 (CK) & #845497 (Martha) +The guests are in the kitchen. 客人們在廚房裏。 CC-BY 2.0 (France) Attribution: tatoeba.org #4308884 (monahxo) & #4308991 (wzhd) +The king governed the country. 國王統治了這個國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #25652 (CK) & #793934 (Martha) +The letter was written by Tom. 這信是湯姆寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027319 (CK) & #6923200 (verdastelo9604) +The lion is stalking its prey. 狮子在跟踪它的猎物。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742992 (Solana) & #8744840 (slo_oth) +The manager approved our plan. 經理批准了我們的計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #246288 (CK) & #844465 (Martha) +The meal satisfied his hunger. 這頓飯讓他充饑解餓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46142 (CK) & #875259 (Martha) +The meeting ended at 4:00 p.m. 會議於下午4點結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #494216 (CK) & #868483 (Martha) +The monkey fell from the tree. 猴子從樹上掉了下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #402354 (CK) & #874514 (Martha) +The noise frightened the baby. 噪声吓到了婴儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #49440 (CK) & #5978343 (verdastelo9604) +The old man breathed his last. 老人咽下了最后一口气。 CC-BY 2.0 (France) Attribution: tatoeba.org #326451 (CM) & #8936667 (crescat) +The old man made out his will. 這位老先生立了他的遗嘱。 CC-BY 2.0 (France) Attribution: tatoeba.org #43390 (CK) & #801943 (Martha) +The patient is in a deep coma. 患者现在处于深度昏迷状态。 CC-BY 2.0 (France) Attribution: tatoeba.org #1812127 (Bah_Dure) & #8743959 (crescat) +The police broke up the fight. 警察驅散了這場鬥毆。 CC-BY 2.0 (France) Attribution: tatoeba.org #238213 (CK) & #868101 (Martha) +The poor man has no relatives. 窮人無親戚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174986 (FeuDRenais) & #2174202 (sadhen) +The price of eggs is going up. 蛋的價格正在上漲。 CC-BY 2.0 (France) Attribution: tatoeba.org #325217 (CK) & #903606 (Martha) +The robot went out of control. 這個機器人失控了。 CC-BY 2.0 (France) Attribution: tatoeba.org #798418 (FeuDRenais) & #798420 (Martha) +The soldier groaned with pain. 這名士兵痛苦地呻吟。 CC-BY 2.0 (France) Attribution: tatoeba.org #320118 (CK) & #842308 (Martha) +The station is two miles away. 車站離這裡兩英里遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #26050 (CK) & #872406 (Martha) +The sun rose over the horizon. 太陽升出了地平線。 CC-BY 2.0 (France) Attribution: tatoeba.org #275149 (CK) & #868417 (Martha) +The topic is worth discussing. 這是值得探討的話題。 CC-BY 2.0 (France) Attribution: tatoeba.org #43253 (CK) & #892494 (Martha) +The town was full of activity. 小镇充满了活力。 CC-BY 2.0 (France) Attribution: tatoeba.org #48964 (CM) & #336865 (fucongcong) +The train arrived on schedule. 火车准时到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #43419 (CK) & #510665 (fucongcong) +The train leaves at 6 o'clock. 火车6点出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #386692 (Mouseneb) & #333835 (fucongcong) +The wall is thirty yards long. 這堵牆長三十碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #44087 (CK) & #868414 (Martha) +The watch on the desk is mine. 桌上的手表是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #20535 (CK) & #6059533 (verdastelo9604) +The weather is unusually cold. 天气非常寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728118 (paper1n0) & #4547211 (murr) +Their father is a taxi driver. 他們的父親是一個計程車司機。 CC-BY 2.0 (France) Attribution: tatoeba.org #305295 (CK) & #866152 (Martha) +There is a cat in the kitchen. 廚房裡有一隻貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #275410 (CK) & #902982 (Martha) +There is a park near my house. 我家附近有一個公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #250499 (CK) & #907216 (Martha) +There is an apple on the desk. 桌上有个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #20566 (CK) & #334725 (fucongcong) +There is an apple on the desk. 书桌上有一个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #20566 (CK) & #745821 (fucongcong) +There was not a tree in sight. 看不到任何一棵樹。 CC-BY 2.0 (France) Attribution: tatoeba.org #323622 (CK) & #801433 (Martha) +There were no more free seats. 没有更多免费座位了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1299972 (Eldad) & #5900393 (verdastelo9604) +There were two pieces of cake. 那有两块蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1097173 (ArizonaJim) & #334594 (fucongcong) +There's a hole in this bucket. 這個桶子上有個洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #60712 (CK) & #865485 (Martha) +There's a hole in this bucket. 這個桶有個洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #60712 (CK) & #9170865 (xjjAstrus) +There's a picture on the wall. 牆上有一幅畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #9250943 (CK) & #907539 (Martha) +There's no use making excuses. 借口是没用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7426640 (CK) & #786047 (fucongcong) +There's no way off the island. 沒有辦法離開這個島。 CC-BY 2.0 (France) Attribution: tatoeba.org #279678 (CK) & #798302 (Martha) +There's not a moment to waste. 一刻也不浪費。 CC-BY 2.0 (France) Attribution: tatoeba.org #263788 (CK) & #798226 (Martha) +There's still no end in sight. 還是看不見盡頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736507 (CK) & #6109362 (verdastelo9604) +These containers are airtight. 這些容器是密封的。 CC-BY 2.0 (France) Attribution: tatoeba.org #55051 (CK) & #832954 (Martha) +These paintings are beautiful. 這些畫很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #2682237 (iainmb93) & #2635827 (cienias) +These scissors don't cut well. 这把剪刀不好用。 CC-BY 2.0 (France) Attribution: tatoeba.org #60708 (CK) & #8696328 (crescat) +These shoes don't fit my feet. 這些鞋不合我的脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #59583 (CK) & #6216633 (verdastelo9604) +They all laughed at his jokes. 他們全都被他的笑話逗笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306304 (CK) & #872192 (Martha) +They are all college students. 他們都是大學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #306077 (CK) & #844501 (Martha) +They are having breakfast now. 他們現在正在吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #306557 (CK) & #838557 (Martha) +They are high school students. 他們是高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #306543 (CK) & #842299 (Martha) +They are sure to fall in love. 他们肯定会相恋的。 CC-BY 2.0 (France) Attribution: tatoeba.org #305594 (CK) & #334616 (fucongcong) +They ate sandwiches for lunch. 他们午饭吃了三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #307154 (Eldad) & #332731 (fucongcong) +They don't talk to us anymore. 他們不再跟我們談了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260255 (Hybrid) & #6150014 (verdastelo9604) +They have a very nice veranda. 他们有一个非常漂亮的暖房。 CC-BY 2.0 (France) Attribution: tatoeba.org #895090 (pauldhunt) & #847837 (fucongcong) +They helped him get to Canada. 他們幫他去加拿大。 CC-BY 2.0 (France) Attribution: tatoeba.org #802212 (Source_VOA) & #6120813 (verdastelo9604) +They insist that he should go. 他们坚持让他走。 CC-BY 2.0 (France) Attribution: tatoeba.org #307324 (CM) & #333037 (fucongcong) +They moved here two years ago. 他們兩年前搬到了這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #305426 (CK) & #868397 (Martha) +They must have made a mistake. 他們一定是犯錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306504 (CK) & #874395 (Martha) +They say that he is very rich. 據說他很富有。 CC-BY 2.0 (France) Attribution: tatoeba.org #292053 (mamat) & #895606 (Martha) +They skip school all the time. 他們總是逃學。 CC-BY 2.0 (France) Attribution: tatoeba.org #410545 (CK) & #825759 (Martha) +They waited for him for hours. 他們等了他好幾個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #306232 (CK) & #875087 (Martha) +They waited for their teacher. 他們等待著他們的老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #307009 (CK) & #840540 (Martha) +They were always making jokes. 他们一直闹笑话。 CC-BY 2.0 (France) Attribution: tatoeba.org #305508 (CK) & #5763045 (verdastelo9604) +They work only during the day. 他們只在白天工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #307152 (CK) & #872471 (Martha) +They're trying to control you. 他們設法控制你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665269 (CK) & #6086809 (verdastelo9604) +This book is full of mistakes. 這本書充滿了錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #56975 (CK) & #868421 (Martha) +This book is very interesting. 這本書很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #57026 (CK) & #845458 (Martha) +This book isn't worth reading. 這本書不值得一讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #56883 (CK) & #844512 (Martha) +This chair is made of plastic. 這把椅子是用塑膠製成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60291 (CK) & #827517 (Martha) +This dog eats almost anything. 這隻狗幾乎吃任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #59427 (CK) & #842312 (Martha) +This is exactly what I wanted. 我想要的就是这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3716241 (Hybrid) & #1314313 (vicch) +This is none of your business. 跟你没半毛钱关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064130 (Spamster) & #5091948 (mirrorvan) +This is none of your business. 这不是你的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064130 (Spamster) & #7774787 (jiangche) +This is what I can do for you. 这是我能为您做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321335 (CK) & #784558 (fucongcong) +This is worth one million yen. 這值100萬日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #55416 (CK) & #869905 (Martha) +This place is large, isn't it? 這個地方很大,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #435614 (CK) & #870041 (Martha) +This river is safe to swim in. 在这条河里游泳很安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #58136 (CK) & #609969 (sarah) +This school has many students. 这个学校有很多学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #59930 (CK) & #530704 (biglion) +This shirt needs to be ironed. 这衬衫需要熨。 CC-BY 2.0 (France) Attribution: tatoeba.org #1129494 (CK) & #5630431 (verdastelo9604) +This size is too large for me. 这个码对我来说太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61057 (CK) & #867741 (kooler) +This tape recorder is not new. 这个磁带录音机不是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60853 (CK) & #796870 (fucongcong) +Today I'm feeling melancholic. 今天我很憂鬱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1508047 (CM) & #1508055 (egg0073) +Today is my sister's birthday. 今天是我姊姊的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #242653 (Swift) & #836437 (Martha) +Tom asked if I'd found my key. 湯姆問我找到我的鑰匙了吗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823245 (CK) & #6877972 (verdastelo9604) +Tom came home early yesterday. 湯姆昨天提早回來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #37306 (CK) & #842462 (Martha) +Tom can't get his car started. 汤姆没法发动他的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026777 (CK) & #1235630 (sunnywqing) +Tom certainly has a tough job. 汤姆确实有个麻烦的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095460 (CK) & #5945155 (verdastelo9604) +Tom decided to stay with Mary. 汤姆决定陪玛丽在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #2069486 (marcelostockle) & #7768217 (jiangche) +Tom did a lot of great things. 汤姆做了许多大事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5442639 (CK) & #5983664 (verdastelo9604) +Tom did a very good job today. 湯姆今天做得非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5277821 (CK) & #6325104 (verdastelo9604) +Tom did it the same way I did. 汤姆我按我做的办法做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3325800 (CK) & #5624914 (verdastelo9604) +Tom didn't attend the meeting. 湯姆沒有参加會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956464 (CK) & #6120770 (verdastelo9604) +Tom didn't go there yesterday. 汤姆昨天没去那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #3402523 (CK) & #5691284 (verdastelo9604) +Tom didn't take his shoes off. 汤姆没脱鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #5440933 (CK) & #5983685 (verdastelo9604) +Tom didn't tell me his secret. 湯姆沒有告訴我他的祕密。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794429 (CK) & #4794529 (umidake) +Tom didn't write back to Mary. 汤姆没给玛丽写回复。 CC-BY 2.0 (France) Attribution: tatoeba.org #3010380 (CK) & #5965720 (verdastelo9604) +Tom doesn't even know my name. 汤姆甚至不知道我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642947 (CK) & #5983665 (verdastelo9604) +Tom doesn't have any shoes on. 汤姆没穿鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #5239224 (CK) & #5670726 (verdastelo9604) +Tom doesn't want to lose Mary. 汤姆不想失去玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094251 (CK) & #5900174 (verdastelo9604) +Tom forgot to do his homework. 汤姆忘了做作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025740 (CK) & #5574592 (verdastelo9604) +Tom got angry at the children. 湯姆對孩子們生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #37256 (CK) & #873282 (Martha) +Tom had no reason to be angry. 汤姆没有动怒的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #681852 (Source_VOA) & #1394971 (mtdot) +Tom has a very friendly smile. 汤姆有很友好的微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2662388 (sharptoothed) & #5863294 (verdastelo9604) +Tom has absolutely no enemies. 汤姆绝没有敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5806135 (CK) & #5965737 (verdastelo9604) +Tom has lived here since 2003. 汤姆自从2003年就住在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2961183 (meerkat) & #5595226 (verdastelo9604) +Tom has only a week to decide. 湯姆只有一週時間做決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025321 (CK) & #6145395 (verdastelo9604) +Tom has something else to say. 湯姆還有想說的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5435637 (CK) & #6673105 (verdastelo9604) +Tom has to do that right away. 汤姆必须马上去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665206 (CK) & #5637362 (verdastelo9604) +Tom is a very talented writer. 汤姆是个很有才华的作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957037 (CK) & #5978329 (verdastelo9604) +Tom is an electrical engineer. 湯姆是一個電子工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #37055 (CK) & #836161 (Martha) +Tom is going to run for mayor. 汤姆要竞选市长。 CC-BY 2.0 (France) Attribution: tatoeba.org #3444540 (CK) & #5558542 (verdastelo9604) +Tom is looking for a good job. 汤姆在找工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642916 (CK) & #4970094 (wzhd) +Tom is on the bus to the city. 湯姆搭公車去市區。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137036 (meishi) & #754649 (Martha) +Tom is playing the violin now. 湯姆正在拉小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #37145 (CK) & #873325 (Martha) +Tom is standing in the garden. 汤姆在花园里站着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663815 (Amastan) & #5650547 (verdastelo9604) +Tom is taller than his mother. 湯姆比他的母親高。 CC-BY 2.0 (France) Attribution: tatoeba.org #37307 (CK) & #865484 (Martha) +Tom is the richest guy I know. 汤姆是我所知道的最有钱的家伙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665190 (CK) & #5650405 (verdastelo9604) +Tom is the tallest man I know. 湯姆是我所知道的最高的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4785513 (CK) & #6673103 (verdastelo9604) +Tom is working on a new novel. 汤姆正致力于一部新小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #4743825 (CK) & #8632084 (ZeroAurora) +Tom is worried for his safety. 湯姆擔心他的安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921722 (CK) & #6635891 (verdastelo9604) +Tom isn't an elected official. 湯姆不是選出來的官員。 CC-BY 2.0 (France) Attribution: tatoeba.org #5735589 (CM) & #6150048 (verdastelo9604) +Tom likes to sit on the floor. 汤姆喜欢坐在地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #6523462 (CK) & #8938654 (crescat) +Tom managed to find a new job. 汤姆找到了新工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3264731 (CK) & #5845652 (verdastelo9604) +Tom needs a change of scenery. 汤姆需要换换风景。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164402 (CK) & #5091169 (mirrorvan) +Tom put his money in the safe. 汤姆把他的钱放在保险柜里。 CC-BY 2.0 (France) Attribution: tatoeba.org #7543979 (CK) & #8739616 (slo_oth) +Tom put some salt on his eggs. 湯姆在他的蛋上撒鹽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164292 (CK) & #6065736 (verdastelo9604) +Tom put the vase on the table. 湯姆把花瓶放在桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #5800568 (CK) & #6853178 (verdastelo9604) +Tom recently found a good job. 湯姆最近找到了一份好工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498664 (CK) & #4794689 (umidake) +Tom said that he lost his key. 汤姆说他丢了钥匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132393 (CK) & #5767604 (verdastelo9604) +Tom says he's willing to help. 汤姆说他愿意帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #6647715 (CK) & #8584891 (tianblr) +Tom says it's quite important. 汤姆说它十分重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736658 (CK) & #5780608 (verdastelo9604) +Tom seems to be an honest man. 汤姆似乎是个诚实的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092976 (CK) & #2241879 (sadhen) +Tom should be here any minute. 湯姆應該隨時就會到這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #37141 (CK) & #872136 (Martha) +Tom suddenly looked concerned. 湯姆突然看起來在擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496816 (CK) & #6105246 (verdastelo9604) +Tom takes the bus to the city. 湯姆搭公車去市區。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137034 (meishi) & #754649 (Martha) +Tom took a step back and fell. 湯姆後退一步跌倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5734473 (CM) & #6103134 (verdastelo9604) +Tom took his wedding ring off. 汤姆拿掉了他的婚戒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164163 (CK) & #9012236 (jacintoo) +Tom took off his wedding ring. 汤姆拿掉了他的婚戒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092650 (CK) & #9012236 (jacintoo) +Tom used to drink like a fish. Tom過去喝很多酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141061 (CK) & #3399125 (egg0073) +Tom wanted to go to Australia. 汤姆想去澳大利亚。 CC-BY 2.0 (France) Attribution: tatoeba.org #5285540 (CK) & #5877083 (verdastelo9604) +Tom wanted to see Mary's room. 湯姆想看看瑪麗的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3956437 (CK) & #6624604 (verdastelo9604) +Tom wants me to join his team. 汤姆希望我加入他的团队。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734425 (CK) & #6177335 (kaoet) +Tom was dressed like a pirate. Tom穿得像个海盗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958521 (CK) & #4844995 (pig8322) +Tom was stripped to the waist. 汤姆光着膀子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7653680 (karloelkebekio) & #8835189 (crescat) +Tom will be a teacher someday. 湯姆有一天會成為教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848936 (CK) & #6111901 (verdastelo9604) +Tom will be able to swim soon. 湯姆將很快就會游泳了。 CC-BY 2.0 (France) Attribution: tatoeba.org #37275 (CK) & #896753 (Martha) +Tom will return home tomorrow. 汤姆明天回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3405264 (CK) & #5670751 (verdastelo9604) +Tom wondered what he could do. 汤姆不知道他能做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642843 (CK) & #5907493 (verdastelo9604) +Tom worries a lot about money. 汤姆很担心钱的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092192 (CK) & #2002943 (sunnywqing) +Tom's answer was very evasive. 汤姆的回答很含糊不清。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529659 (CK) & #8791832 (slo_oth) +Tom's house has a nice garden. 湯姆的住宅有一個不錯的花園。 CC-BY 2.0 (France) Attribution: tatoeba.org #4308887 (monahxo) & #4308988 (wzhd) +Trees do not grow on prairies. 樹不會長在草原上。 CC-BY 2.0 (France) Attribution: tatoeba.org #275823 (CK) & #798219 (Martha) +Turn right at the next corner. 在下一個轉角右轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #264257 (CK) & #870069 (Martha) +Two teas and a coffee, please. 请来两杯茶和一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #240960 (CK) & #335007 (fucongcong) +Wash your hands before eating. 進食前先洗手。 CC-BY 2.0 (France) Attribution: tatoeba.org #54335 (CK) & #836367 (Martha) +Watch him and do what he does. 看著他並跟著他做。 CC-BY 2.0 (France) Attribution: tatoeba.org #466162 (CK) & #903045 (Martha) +Water is important for people. 水對人是很重要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #541286 (CK) & #842328 (Martha) +We are both in the same class. 我們兩個同班。 CC-BY 2.0 (France) Attribution: tatoeba.org #247818 (CK) & #895575 (Martha) +We are happy to see you again. 我们很高兴再次见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #247859 (CK) & #1454441 (sadhen) +We are staying at our uncle's. 我们待在舅舅家。 CC-BY 2.0 (France) Attribution: tatoeba.org #321385 (CK) & #426148 (fucongcong) +We can't tell which is better. 我们无法辨别哪个更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360982 (CK) & #1361971 (sadhen) +We didn't stay home yesterday. 我們昨天沒有待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #308572 (CK) & #842333 (Martha) +We go fishing once in a while. 我們偶爾去釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #248800 (CK) & #804950 (Martha) +We got there at the same time. 我們在同一時間到了那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #262755 (CK) & #802147 (Martha) +We had a good time last night. 我們昨晚玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #248755 (CK) & #896386 (Martha) +We had a heavy rain yesterday. 昨天下大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244525 (CK) & #870126 (Martha) +We had a nice time last night. 我們昨晚過得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #244839 (CK) & #896485 (Martha) +We immediately became friends. 我們馬上成為了朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #495639 (CK) & #826006 (Martha) +We made an appeal for support. 我們提出了請求支持的呼籲。 CC-BY 2.0 (France) Attribution: tatoeba.org #248777 (CK) & #908527 (Martha) +We met in front of the school. 我們在學校前面見面了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248527 (CK) & #895729 (Martha) +We must never confuse the two. 我们决不能混淆两者。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726096 (CM) & #5780510 (verdastelo9604) +We must not break our promise. 我們不能違背我們的承諾。 CC-BY 2.0 (France) Attribution: tatoeba.org #324204 (CK) & #795849 (Martha) +We must not laugh at the poor. 我们不能嘲笑穷人。 CC-BY 2.0 (France) Attribution: tatoeba.org #28754 (CK) & #1423326 (sadhen) +We often play cards on Sunday. 我們常常在週日打牌。 CC-BY 2.0 (France) Attribution: tatoeba.org #249145 (CK) & #875082 (Martha) +We sometimes swim in the lake. 我們偶爾在湖裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #248224 (CK) & #874427 (Martha) +We took turns driving the car. 我們輪流開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #22998 (CK) & #825949 (Martha) +We watched them play baseball. 我們看著他們打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #263225 (CK) & #842429 (Martha) +We went down a river by canoe. 我們乘著獨木舟向河的下游而行。 CC-BY 2.0 (France) Attribution: tatoeba.org #247934 (CK) & #895858 (Martha) +We went swimming at the beach. 我們去海邊游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #249324 (CK) & #874215 (Martha) +We went swimming in the river. 我們去河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #263118 (qdii) & #872484 (Martha) +We'll be sure to look into it. 我们将一定会观察它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312167 (CK) & #5558515 (verdastelo9604) +We'll fly there in 50 minutes. 50分鐘之內我們將飛到那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #317994 (CK) & #811920 (Martha) +We're going to paint the wall. 我们准备刷墙。 CC-BY 2.0 (France) Attribution: tatoeba.org #320275 (CK) & #5551182 (verdastelo9604) +We're ready for the next step. 我們準備好了走下一步。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642829 (CK) & #6084406 (verdastelo9604) +We're still a little confused. 我們還是有點疑惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665146 (CK) & #6197330 (verdastelo9604) +We've already won this battle. 我們已經贏得了這場戰鬥。 CC-BY 2.0 (France) Attribution: tatoeba.org #7802088 (CK) & #770999 (Martha) +We've decided not to fire you. 我们决定不开除你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3918036 (CK) & #5684118 (verdastelo9604) +We've got too much work to do. 我們要做的工作太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5536151 (CK) & #6120900 (verdastelo9604) +We've just finished breakfast. 我們剛剛吃完了早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #262810 (CK) & #825925 (Martha) +Weather's pretty nice tonight. 今晚的天气不错。 CC-BY 2.0 (France) Attribution: tatoeba.org #2438448 (FeuDRenais) & #2437256 (CLARET) +Weeds sprang up in the garden. 花園裡雜草叢生。 CC-BY 2.0 (France) Attribution: tatoeba.org #244957 (CK) & #798289 (Martha) +What are we having for dinner? 我们晚饭吃什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1539913 (SHamp) & #1323692 (vicch) +What are you doing down there? 你在那里干什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4012814 (CK) & #5574823 (verdastelo9604) +What are you guys going to do? 你们这些家伙想去干什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3396751 (CK) & #5624910 (verdastelo9604) +What are you up to these days? 最近在干些什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2892484 (CK) & #4878999 (musclegirlxyp) +What do you eat for breakfast? 你早餐吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #411296 (CK) & #874523 (Martha) +What do you think I was doing? 你觉得我在干吗呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1275896 (Eldad) & #1397355 (mtdot) +What don't you want us to see? 你不想让我们看见什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2014041 (CK) & #5574503 (verdastelo9604) +What have you guys done to me? 你们到底对我做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #5901313 (tvindy) & #6940054 (Cheng) +What he said was over my head. 这人讲的我完全听不懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #46027 (CM) & #2030728 (ydcok) +What if something gets broken? 要是有东西坏了呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064838 (CK) & #5595175 (verdastelo9604) +What is done cannot be undone. 覆水難收。 CC-BY 2.0 (France) Attribution: tatoeba.org #20094 (Zifre) & #806229 (Martha) +What is the name of that bird? 那隻鳥叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #1476788 (weihaiping) & #825128 (Martha) +What is the price of this cap? 这顶帽子多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #57128 (CK) & #5096462 (mirrorvan) +What kind of meal did you eat? 您吃了什麼樣的膳食? CC-BY 2.0 (France) Attribution: tatoeba.org #401796 (CK) & #895137 (Martha) +What kind of wine do you have? 您有什麼樣的葡萄酒? CC-BY 2.0 (France) Attribution: tatoeba.org #36679 (CK) & #895449 (Martha) +What kind of work will you do? 你將做什麼樣的工作? CC-BY 2.0 (France) Attribution: tatoeba.org #36647 (CK) & #895598 (Martha) +What subject do you like best? 你最喜歡哪一個科目? CC-BY 2.0 (France) Attribution: tatoeba.org #69827 (CK) & #869917 (Martha) +What time does boarding begin? 什麼時候開始登機? CC-BY 2.0 (France) Attribution: tatoeba.org #24568 (CK) & #838586 (Martha) +What time does the play begin? 演出什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #22058 (Dejo) & #334789 (fucongcong) +What time is it by your watch? 你表上是几点? CC-BY 2.0 (France) Attribution: tatoeba.org #17108 (papabear) & #336872 (fucongcong) +What time is it in Boston now? 波士顿现在几点? CC-BY 2.0 (France) Attribution: tatoeba.org #3023199 (CK) & #8936512 (crescat) +What time is it now in Boston? 波士顿现在几点? CC-BY 2.0 (France) Attribution: tatoeba.org #3023198 (CK) & #8936512 (crescat) +What time shall I pick you up? 我該幾點去接你? CC-BY 2.0 (France) Attribution: tatoeba.org #24578 (CK) & #895142 (Martha) +What type of food do you like? 你喜欢什么样的食物? CC-BY 2.0 (France) Attribution: tatoeba.org #7801505 (sharris123) & #5550314 (verdastelo9604) +What were you doing in Boston? 你在波士顿做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2642822 (CK) & #7774360 (jiangche) +What's the biggest difference? 最不一样的的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4493946 (CK) & #5096730 (mirrorvan) +What's the climate there like? 那里的气候怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1481760 (weihaiping) & #406353 (fucongcong) +What's the time in Boston now? 波士顿现在几点? CC-BY 2.0 (France) Attribution: tatoeba.org #4791576 (CK) & #8936512 (crescat) +What's the weather like there? 那儿是什么天气? CC-BY 2.0 (France) Attribution: tatoeba.org #386684 (Mouseneb) & #335515 (fucongcong) +What's the weather like today? 今天天气怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #687484 (lukaszpp) & #845162 (fucongcong) +What's the width of this road? 這條路的寬度是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #503848 (CK) & #872449 (Martha) +What's your favorite beverage? 你最喜欢的饮料是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #906695 (CK) & #2186246 (sadhen) +What's your favorite iPad app? 你最喜欢的iPad应用是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #906787 (CK) & #5780589 (verdastelo9604) +What's your home phone number? 你家的電話號碼幾號? CC-BY 2.0 (France) Attribution: tatoeba.org #54461 (CK) & #838538 (Martha) +When did he say he would come? 他說他什麼時候會來? CC-BY 2.0 (France) Attribution: tatoeba.org #294348 (CK) & #900248 (Martha) +When did she break the window? 她什麼時候打破了窗戶? CC-BY 2.0 (France) Attribution: tatoeba.org #310374 (CK) & #874727 (Martha) +When do you have to go to bed? 你甚麼時候必須去睡覺? CC-BY 2.0 (France) Attribution: tatoeba.org #4847702 (Muelisto) & #6309830 (verdastelo9604) +When does your new store open? 你的新商店什么时候开张? CC-BY 2.0 (France) Attribution: tatoeba.org #7767761 (sharris123) & #1424351 (sadhen) +When is it convenient for you? 你什么时候方便? CC-BY 2.0 (France) Attribution: tatoeba.org #24603 (CK) & #811003 (fucongcong) +When will your new store open? 你的新商店什么时候开张? CC-BY 2.0 (France) Attribution: tatoeba.org #7767762 (sharris123) & #1424351 (sadhen) +Where are we eating breakfast? 我們在哪裡吃早餐? CC-BY 2.0 (France) Attribution: tatoeba.org #7851986 (sharris123) & #6284518 (xjjAstrus) +Where did you go for vacation? 你去哪裡度假了? CC-BY 2.0 (France) Attribution: tatoeba.org #1555172 (lutao) & #765233 (Martha) +Where do you want to go today? 你今天想去哪儿呀? CC-BY 2.0 (France) Attribution: tatoeba.org #2721969 (Hybrid) & #4270129 (notabene) +Where do you watch television? 您在哪儿看电视? CC-BY 2.0 (France) Attribution: tatoeba.org #69859 (CK) & #795781 (fucongcong) +Where is the Japanese Embassy? 日本大使館在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #281794 (CK) & #838603 (Martha) +Where should I put my laundry? 我應該把我要洗的衣服放在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #251322 (CK) & #874370 (Martha) +Where will the bus pick us up? 巴士會在哪裡接我們? CC-BY 2.0 (France) Attribution: tatoeba.org #35317 (CK) & #895845 (Martha) +Where's the nearest drugstore? 最近的藥店在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #27254 (CK) & #825126 (Martha) +Who do you suggest we talk to? 你建議我們跟誰講話? CC-BY 2.0 (France) Attribution: tatoeba.org #3127940 (CK) & #6678447 (verdastelo9604) +Who is going to speak tonight? 今晚谁发言? CC-BY 2.0 (France) Attribution: tatoeba.org #243324 (CK) & #811024 (fucongcong) +Who was the letter written to? 信是写给谁的? CC-BY 2.0 (France) Attribution: tatoeba.org #46764 (CK) & #829692 (fucongcong) +Why aren't you coming with us? 你为什么不和我们一起来? CC-BY 2.0 (France) Attribution: tatoeba.org #2383 (CK) & #1776630 (sadhen) +Why did you come home so late? 你為什麼這麼晚回家? CC-BY 2.0 (France) Attribution: tatoeba.org #38694 (CK) & #905345 (Martha) +Why didn't you dance with him? 你為什麼不跟他跳舞呢? CC-BY 2.0 (France) Attribution: tatoeba.org #36352 (CK) & #869953 (Martha) +Why do you want to be a nurse? 你为什么想成为护士呢? CC-BY 2.0 (France) Attribution: tatoeba.org #36407 (CK) & #2031268 (ydcok) +Why don't you have some sushi? 为什么不尝尝寿司? CC-BY 2.0 (France) Attribution: tatoeba.org #1001618 (Brian255) & #427615 (fucongcong) +Why should I apologize to you? 为什么我要向你道歉? CC-BY 2.0 (France) Attribution: tatoeba.org #38784 (CK) & #4885879 (gumblex) +Will you all be here tomorrow? 明天你一整天都會在這裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #770146 (marloncori) & #770348 (Martha) +Will you go on foot or by bus? 你要用走的還是搭公車? CC-BY 2.0 (France) Attribution: tatoeba.org #68951 (CM) & #1241267 (tsayng) +Will you lend me your bicycle? 你能把你的自行车借给我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #264501 (CK) & #334089 (fucongcong) +Will you please let me go now? 可否请你现在让我走? CC-BY 2.0 (France) Attribution: tatoeba.org #51454 (CK) & #7772152 (jiangche) +Will you stay at home tonight? 你今晚會待在家裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69409 (CK) & #865474 (Martha) +Will you switch seats with me? 您愿意跟我换座位吗? CC-BY 2.0 (France) Attribution: tatoeba.org #638695 (kebukebu) & #512054 (fucongcong) +Wine made here is very famous. 這裡製造的葡萄酒非常有名。 CC-BY 2.0 (France) Attribution: tatoeba.org #61877 (CK) & #797015 (Martha) +World War I broke out in 1914. 第一次世界大戰於1914年爆發。 CC-BY 2.0 (France) Attribution: tatoeba.org #276046 (Dejo) & #798366 (Martha) +Would you lend me your pencil? 你可以借我你的鉛筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776004 (CK) & #777009 (Martha) +Would you like me to help you? 你要我幫你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #246442 (CK) & #907326 (Martha) +Would you like some more beef? 你想再來些牛肉嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31298 (CK) & #872123 (Martha) +Would you like some more beer? 你想再喝些啤酒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34839 (adjusting) & #868437 (Martha) +Would you like some more cake? 你想再來些蛋糕嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31311 (CK) & #868398 (Martha) +Would you like to eat with us? 你想和我們一起吃嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #262528 (CK) & #905795 (Martha) +Would you mind coming with me? 你介意跟我一起来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #249621 (CK) & #795661 (fucongcong) +Yes, it's such a nice evening. 是的,今天晚上很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #402418 (CK) & #609920 (sarah) +You and he are both very kind. 你和他都很友好 。 CC-BY 2.0 (France) Attribution: tatoeba.org #71198 (CK) & #6098433 (verdastelo9604) +You can borrow my car anytime. 你隨時可以借用我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #66186 (CK) & #870132 (Martha) +You can eat whatever you like. 你可以吃你喜歡的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #36106 (CK) & #871206 (Martha) +You can stay here if you like. 你要是願意就留在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185232 (CK) & #6114419 (verdastelo9604) +You can watch TV after supper. 晚餐之後你才可以看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #324617 (CK) & #1225638 (tsayng) +You can't count on their help. 你不能指望他们的帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #68064 (CK) & #1394852 (mtdot) +You could be right, I suppose. 我猜想你可能是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70714 (CK) & #332989 (fucongcong) +You don't believe Tom, do you? 你不信任汤姆,对吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3402333 (CK) & #5091423 (mirrorvan) +You don't need to study today. 你今天不必讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #242975 (CK) & #866179 (Martha) +You dropped your handkerchief. 你的手帕掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #69276 (CK) & #833842 (Martha) +You have to leave home at six. 你必須在六點鐘時從家中出發。 CC-BY 2.0 (France) Attribution: tatoeba.org #16818 (Swift) & #1225685 (tsayng) +You look like you're confused. 你看起來有困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350952 (CK) & #6624660 (verdastelo9604) +You may sit wherever you like. 你喜欢坐哪儿就坐哪儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #24538 (CK) & #796830 (fucongcong) +You must make up for the loss. 您必须弥补损失。 CC-BY 2.0 (France) Attribution: tatoeba.org #16332 (Swift) & #469265 (fucongcong) +You must pay attention to him. 你必须注意他。 CC-BY 2.0 (France) Attribution: tatoeba.org #15817 (CK) & #1785931 (sadhen) +You need to go home right now. 你需要現在就回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3387688 (CK) & #6105178 (verdastelo9604) +You remind me of your brother. 你讓我想起你的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #68799 (CK) & #865388 (Martha) +You should be more reasonable. 你应该更明智一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #69717 (CK) & #335311 (fucongcong) +You should get your car fixed. 你應該把你的車修好。 CC-BY 2.0 (France) Attribution: tatoeba.org #16016 (CK) & #872187 (Martha) +You should have worked harder. 你應該要更努力的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16373 (CK) & #836359 (Martha) +You should stay at home today. 你今天應該待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #242793 (CK) & #875089 (Martha) +You should stay away from Tom. 你应该离汤姆远点儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502308 (CK) & #5091097 (mirrorvan) +You should tell him the truth. 您该告诉他真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #15830 (CK) & #501211 (fucongcong) +You should tell him the truth. 你该告诉他真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #15830 (CK) & #501212 (fucongcong) +You shouldn't have come alone. 你不該一個人來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1895661 (CK) & #6624735 (verdastelo9604) +You shouldn't have gone there. 你不應該去那裡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #541476 (CK) & #836371 (Martha) +You used to smoke, didn't you? 你以前吸煙,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #28340 (CK) & #871215 (Martha) +You will have to wait and see. 你得等一等看。 CC-BY 2.0 (France) Attribution: tatoeba.org #714334 (CM) & #714332 (ZeroAurora) +You'd better do what they say. 你最好照他們所說的做。 CC-BY 2.0 (France) Attribution: tatoeba.org #305196 (CK) & #896522 (Martha) +You'd better go back home now. 你現在最好回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #31424 (CK) & #900260 (Martha) +You'd better not go out today. 你今天最好不要出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #16131 (CK) & #907252 (Martha) +You're a better skier than me. 你滑雪比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415421 (CK) & #5993944 (verdastelo9604) +You're drinking out of my cup. 你正在把我杯子里的东西喝掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2422925 (CK) & #4845053 (pig8322) +You're not satisfied, are you? 你并不满意,对吧? CC-BY 2.0 (France) Attribution: tatoeba.org #68913 (CK) & #2254032 (KerenDeng) +You're one of my best friends. 你是我最好的朋友之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819722 (CK) & #1330057 (vicch) +You're sick. You have to rest. 你病了,该休息了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2092 (Swift) & #366889 (fucongcong) +You're very brave, aren't you? 你很勇敢,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237624 (CK) & #836435 (Martha) +You've got a lot of willpower. 你的意志力很強。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256611 (FeuDRenais) & #2256415 (cienias) +Your family's waiting for you. 你的家人在等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3831465 (CK) & #6169159 (verdastelo9604) +Your manners aren't very good. 你的舉止不是很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #433802 (CK) & #842319 (Martha) +Your manners aren't very good. 你的禮貌不是很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #433802 (CK) & #842320 (Martha) +Your order has been submitted. 您的訂單已經提交了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71004 (Zifre) & #778546 (Martha) +A burglar broke into his house. 一個竊賊闖進了他的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #19212 (CK) & #844475 (Martha) +A cold front swept over Europe. 一股寒流侵袭了欧洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1499040 (weihaiping) & #335283 (fucongcong) +A cornered rat will bite a cat. 窮鼠囓狸。 CC-BY 2.0 (France) Attribution: tatoeba.org #19548 (CK) & #806618 (Martha) +A dog followed me to my school. 一隻狗跟著我到我的學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #239107 (CK) & #868454 (Martha) +A strange feeling came over me. 我觉得不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #20323 (CK) & #5591005 (verdastelo9604) +A typhoon is approaching Japan. 颱風正接近日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #275427 (CK) & #834327 (Martha) +Actually, it was pretty boring. 实际上,我非常无聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016907 (CK) & #5883317 (verdastelo9604) +Admission is $3.00 at the door. 入场费是3美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495499 (CK) & #5780570 (verdastelo9604) +Admission is free for children. 儿童免费入场。 CC-BY 2.0 (France) Attribution: tatoeba.org #434164 (lukaszpp) & #784118 (fucongcong) +Algebra is my favorite subject. 代數是我最喜歡的科目。 CC-BY 2.0 (France) Attribution: tatoeba.org #275391 (CK) & #833122 (Martha) +All I want to do is go fishing. 我唯一想做的是去釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2006523 (CK) & #4193788 (egg0073) +All he thinks about is himself. 他只顾自己的利益。 CC-BY 2.0 (France) Attribution: tatoeba.org #792905 (FeuDRenais) & #792777 (fucongcong) +All of my attempts have failed. 我所有的尝试都失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159932 (tinytina) & #799282 (fucongcong) +All their efforts were in vain. 他們的努力都白費了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305272 (CK) & #794053 (Martha) +An army marches on its stomach. 胃里如同千军万马开过。 CC-BY 2.0 (France) Attribution: tatoeba.org #3501290 (CK) & #5640728 (verdastelo9604) +An ugly man knocked on my door. 一个丑男人敲了我的门。 CC-BY 2.0 (France) Attribution: tatoeba.org #73119 (CK) & #333234 (fucongcong) +Another bottle of wine, please. 麻煩再一瓶葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #503832 (CK) & #832974 (Martha) +Answer the telephone, will you? 請你接聽一下電話,好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279286 (CK) & #833141 (Martha) +Are you a practicing physician? 你是执业医师吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4501513 (CK) & #5819685 (verdastelo9604) +Are you a teacher or a student? 您是老师,还是学生? CC-BY 2.0 (France) Attribution: tatoeba.org #370763 (saeb) & #4264871 (notabene) +Are you doing anything special? 你在做什麼特別的事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25050 (CK) & #834412 (Martha) +Are you going to come tomorrow? 你明天要來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #619621 (ulyssemc1) & #6333805 (verdastelo9604) +Are you interested in politics? 你对政治感兴趣吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69172 (CK) & #375338 (fucongcong) +Are you really willing to help? 你是真的很樂意幫忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4499303 (CK) & #4954169 (umidake) +Aren't you going to go with me? 你不要跟我一起走嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6099822 (CK) & #6624615 (verdastelo9604) +As for me, I have no objection. 对于我,我不反对。 CC-BY 2.0 (France) Attribution: tatoeba.org #255143 (CM) & #5842620 (verdastelo9604) +At first, I thought I was sick. 一开始,我以为我病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1417531 (CK) & #1417593 (sadhen) +Be careful not to catch a cold. 小心不要感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #473593 (CK) & #873211 (Martha) +Bee stings can be very painful. 蜜蜂螫人可以是非常痛苦的。 CC-BY 2.0 (France) Attribution: tatoeba.org #321079 (CK) & #845461 (Martha) +Beer bottles are made of glass. 啤酒瓶是玻璃做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34849 (CK) & #349684 (fucongcong) +Beethoven was a great musician. 貝多芬是一個偉大的音樂家。 CC-BY 2.0 (France) Attribution: tatoeba.org #34022 (CK) & #834421 (Martha) +Both of my sisters are married. 我的两个姐妹都结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250952 (CK) & #346791 (fucongcong) +Bright ideas never occur to me. 我總想不出什麼好點子。 CC-BY 2.0 (France) Attribution: tatoeba.org #36516 (CM) & #1426352 (tsayng) +Bring me the newspaper, please. 請把報紙拿來給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #269444 (CK) & #834520 (Martha) +Bring me today's paper, please. 請幫我把今天的報紙帶來。 CC-BY 2.0 (France) Attribution: tatoeba.org #242603 (CM) & #833012 (Martha) +Buy some milk on your way home. 回来的路上买点牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #7217910 (CK) & #8656919 (crescat) +Call Tom and Mary this evening. 今晚给汤姆和玛丽打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1871061 (Amastan) & #5650545 (verdastelo9604) +Can I use my medical insurance? 我可以使用我的醫療保險嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27890 (CK) & #845443 (Martha) +Can anyone pronounce this word? 有人能发这个词的音吗? CC-BY 2.0 (France) Attribution: tatoeba.org #387555 (Mouseneb) & #333748 (fucongcong) +Can you guess what I have here? 你能猜到我有什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4755172 (garborg) & #333142 (fucongcong) +Can you teach me to play chess? 您能教我下国际象棋吗? CC-BY 2.0 (France) Attribution: tatoeba.org #995306 (NickC) & #335103 (fucongcong) +Can you tell those twins apart? 你可以分出那對雙胞胎中誰是誰嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2260087 (FeuDRenais) & #2256369 (cienias) +Can you tell wheat from barley? 你能辨别小麦和大麦吗? CC-BY 2.0 (France) Attribution: tatoeba.org #15911 (CK) & #1785939 (sadhen) +Can't you discount it a little? 你不能打一點折嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267738 (CK) & #842486 (Martha) +Can't you stay a little longer? 你不能待久一點嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31243 (CK) & #836336 (Martha) +Christmas is a special holiday. 聖誕節是一個特別的節日。 CC-BY 2.0 (France) Attribution: tatoeba.org #62796 (CK) & #834388 (Martha) +Close the door on your way out. 出去的时候把门关上。 CC-BY 2.0 (France) Attribution: tatoeba.org #6375225 (CK) & #502864 (fucongcong) +Come here by ten at the latest. 最晚十點前來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #277337 (CK) & #798365 (Martha) +Compare your answer with Tom's. 比較你和湯姆的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #16945 (CK) & #834235 (Martha) +Cookie's mother died of cancer. Cookie的母親死於癌症。 CC-BY 2.0 (France) Attribution: tatoeba.org #63013 (CK) & #833065 (Martha) +Could we go somewhere and talk? 我们能去别的地方谈谈吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4757217 (Hybrid) & #4757227 (ryanwoo) +Could you carry my bags for me? 你可以幫我提我的袋子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #23676 (CK) & #873291 (Martha) +Could you help us after school? 你能在放學後幫助我們嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #320993 (CK) & #842393 (Martha) +Could you please drive me home? 你可以載我回家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #24131 (CK) & #836383 (Martha) +Could you please get me a taxi? 你可以幫我叫一輛計程車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #40940 (CK) & #874212 (Martha) +Could you show me that necktie? 你能給我看看這條領帶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #35824 (CK) & #840547 (Martha) +Could you take a picture of us? 您能好好给我们照一张相吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3308275 (CK) & #835584 (fucongcong) +Could you tell me where Tom is? 你能告訴我湯姆在哪裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3201230 (CK) & #6197303 (verdastelo9604) +Dark clouds are a sign of rain. 乌云是下雨的征兆。 CC-BY 2.0 (France) Attribution: tatoeba.org #28470 (Swift) & #410874 (fucongcong) +Did I tell you I got a new job? 我有告訴你我找到新工作了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2770128 (sysko) & #2770126 (egg0073) +Did you go to school yesterday? 你昨天去上學了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69389 (CK) & #845978 (Martha) +Do they speak French in Canada? 他們在加拿大說法語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #63650 (CK) & #811836 (Martha) +Do whatever you think is right. 做你認為正確的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #271580 (CK) & #836366 (Martha) +Do you believe that God exists? 你相信神存在嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #269660 (CK) & #844444 (Martha) +Do you guys want to go with me? 你們要和我一起去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6008609 (szilviez) & #4262602 (egg0073) +Do you happen to know his name? 你說不定知道他的名字? CC-BY 2.0 (France) Attribution: tatoeba.org #69013 (CK) & #872119 (Martha) +Do you have a driver's license? 你有駕駛執照嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26572 (CK) & #836324 (Martha) +Do you have a steady boyfriend? 你有一个固定的男朋友吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4145046 (danepo) & #4147271 (sissima) +Do you have any cough medicine? 你有止咳藥嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #21838 (CK) & #845459 (Martha) +Do you have any money with you? 你身上有錢嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64608 (CK) & #866305 (Martha) +Do you have fresh strawberries? 您有新鮮草莓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434576 (lukaszpp) & #8824153 (xjjAstrus) +Do you know how to drive a car? 您会开车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #265501 (CK) & #472411 (fucongcong) +Do you know how to drive a car? 你知道如何開車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #265501 (CK) & #866066 (Martha) +Do you know when she will come? 你知道她什麼時候會來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #307993 (CK) & #887856 (Martha) +Do you know why it's happening? 你知道为什么它正在发生吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3129742 (CK) & #5670763 (verdastelo9604) +Do you know why she's so angry? 你知道她為什麼這麼生氣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #461198 (CK) & #889162 (Martha) +Do you like playing volleyball? 你喜歡打排球嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34991 (CK) & #833121 (Martha) +Do you mind if I open the door? 你介意我開門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #903488 (Zifre) & #903474 (Martha) +Do you offer any all-day tours? 你提供任何全日遊嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27430 (CK) & #844606 (Martha) +Do you realize what this means? 你知道這是甚麼意思嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2951754 (CK) & #6393361 (verdastelo9604) +Do you take pride in your work? 你为你的工作感到自豪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #264716 (CM) & #829618 (fucongcong) +Do you think I'm made of money? 你以为我造钱啊? CC-BY 2.0 (France) Attribution: tatoeba.org #953220 (CK) & #1419922 (asosan) +Do you think Tom is having fun? 你認為湯姆玩得高興嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2888238 (CK) & #6105208 (verdastelo9604) +Do you think Tom was satisfied? 你認為湯姆滿意了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6250625 (CK) & #6534793 (verdastelo9604) +Do you want any of these books? 你要這些書中的任何一本嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55093 (CK) & #881171 (Martha) +Do you want something to drink? 你想要什么喝的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64760 (CK) & #334493 (fucongcong) +Do you want to eat out tonight? 你今晚想出去吃嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243017 (CK) & #881202 (Martha) +Do you want to know what I see? 你想知道我看见什么了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2014241 (CK) & #5762985 (verdastelo9604) +Do you want to know why I quit? 您想知道为什么我要离开吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2014242 (CK) & #4913693 (khe) +Do you want to stay any longer? 你想再待下去嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31568 (CK) & #881237 (Martha) +Does anyone want some more pie? 有人想要更多的餡餅嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #30502 (CK) & #840756 (Martha) +Does he know that you love him? 他知道你愛他嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17748 (CK) & #803884 (Martha) +Does it sound like I'm in love? 聽起來像是我戀愛了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #394638 (CK) & #887853 (Martha) +Don't be late for school again. 不要再上學遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72801 (CK) & #845436 (Martha) +Don't blame the mistake on her. 不要把這個錯誤歸咎於她。 CC-BY 2.0 (France) Attribution: tatoeba.org #264971 (CK) & #836392 (Martha) +Don't complain. You have to go. 別抱怨了。你必須去。 CC-BY 2.0 (France) Attribution: tatoeba.org #320049 (shanghainese) & #775435 (Martha) +Don't confuse desire with love. 不要把欲望和爱情混为一谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #324955 (CM) & #8798303 (crescat) +Don't fail to mail this letter. 不要忘了寄這封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #58631 (CK) & #845942 (Martha) +Don't forget to bring a camera. 别忘了带个相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #4784344 (garborg) & #349672 (fucongcong) +Don't forget to sign your name. 不要忘記簽上你的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #321149 (CK) & #842455 (Martha) +Don't go above the speed limit. 不要超速。 CC-BY 2.0 (France) Attribution: tatoeba.org #495871 (CK) & #790852 (Martha) +Don't let Tom lie on the floor. 别让汤姆躺在地板上。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665104 (CK) & #5845552 (verdastelo9604) +Don't pay any attention to Tom. 千万别理汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2288960 (CK) & #5920776 (verdastelo9604) +Don't pry into my private life. 不要插手我的私生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #262479 (CK) & #406735 (fucongcong) +Don't stay in the sun too long. 不要在陽光下逗留太久。 CC-BY 2.0 (France) Attribution: tatoeba.org #281127 (CK) & #883298 (Martha) +Don't step on the broken glass. 不要踩在碎玻璃上。 CC-BY 2.0 (France) Attribution: tatoeba.org #21238 (CK) & #844442 (Martha) +Don't take things so seriously. 不要把事情看得這麼嚴重。 CC-BY 2.0 (France) Attribution: tatoeba.org #67658 (CK) & #884686 (Martha) +Don't throw away this magazine. 不要丟掉這本雜誌。 CC-BY 2.0 (France) Attribution: tatoeba.org #59199 (CK) & #834496 (Martha) +Don't use computer translation. 别用机翻。 CC-BY 2.0 (France) Attribution: tatoeba.org #492044 (CK) & #7068919 (la_kanro) +Don't worry about such a thing. 不要擔心這樣的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #41581 (CK) & #842324 (Martha) +Don't you ever clean your room? 你從不清掃你的房間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2288874 (CK) & #6623185 (verdastelo9604) +Don't you like my yellow scarf? 你不喜歡我的黃圍巾嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3093403 (CM) & #6585417 (verdastelo9604) +Drivers should wear seat belts. 司機應該繫安全帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #26592 (CK) & #833251 (Martha) +Each of them was given a prize. 他們每個人都被授獎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305880 (CK) & #801505 (Martha) +English is a Germanic language. 英語是一種日耳曼語。 CC-BY 2.0 (France) Attribution: tatoeba.org #460340 (blay_paul) & #811862 (Martha) +English is spoken in Australia. 在澳洲的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #65158 (CK) & #811890 (Martha) +English is spoken in Singapore. 在新加坡的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #52480 (CK) & #811894 (Martha) +English is used by many people. 英語是被許多人使用。 CC-BY 2.0 (France) Attribution: tatoeba.org #26291 (CK) & #811903 (Martha) +Even his servants despised him. 連他的僕人都鄙視他 CC-BY 2.0 (France) Attribution: tatoeba.org #470448 (CM) & #7300206 (zzztat) +Everybody jumped into the pool. 每個人都跳進了游泳池。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500374 (CK) & #6151295 (verdastelo9604) +Everyone except me was invited. 除了我,每个人都受到了邀请。 CC-BY 2.0 (France) Attribution: tatoeba.org #262461 (CK) & #390477 (fucongcong) +Everyone in his family is tall. 他家的每個人都很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #466050 (CK) & #836340 (Martha) +Everyone said that I was wrong. 大家都說我是錯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #276544 (CK) & #842447 (Martha) +Excuse me for interrupting you. 對不起,打擾你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63851 (CK) & #833782 (Martha) +Experience is the best teacher. 經驗是最好的老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #237982 (CK) & #779470 (Martha) +Father named me after his aunt. 父親以他姑姑的名字為我命名。 CC-BY 2.0 (France) Attribution: tatoeba.org #318972 (CM) & #804531 (Martha) +Fear quickly turned into anger. 恐惧很快变成愤怒。 CC-BY 2.0 (France) Attribution: tatoeba.org #5731056 (CM) & #5949245 (verdastelo9604) +Feel free to ask any questions. 隨時問任何問題都可以。 CC-BY 2.0 (France) Attribution: tatoeba.org #36621 (CK) & #839481 (Martha) +Feel free to ask any questions. 尽管提问。 CC-BY 2.0 (France) Attribution: tatoeba.org #36621 (CK) & #1397035 (mtdot) +Fish is sold by the pound here. 魚在這裡是以磅為單位來出售。 CC-BY 2.0 (France) Attribution: tatoeba.org #61941 (CK) & #798203 (Martha) +Five years is too long to wait. 五年太漫長而無法等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #72487 (CK) & #875395 (Martha) +Flying a kite can be dangerous. 放風箏可以是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #40912 (CK) & #833829 (Martha) +Give me some paper to write on. 給我一些紙來寫字。 CC-BY 2.0 (France) Attribution: tatoeba.org #267135 (CK) & #881863 (Martha) +Give me three pieces of salmon. 給我三片鮭魚肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #244922 (CK) & #845953 (Martha) +Gold is far heavier than water. 金子比水重得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #18583 (CK) & #332591 (fucongcong) +Has Tom broken something again? 汤姆又弄坏了什么东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4746175 (CK) & #5096504 (mirrorvan) +Have you been to London before? 你以前去過倫敦嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29259 (CK) & #840563 (Martha) +Have you cleaned your room yet? 你打掃你的房間了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31155 (CK) & #845967 (Martha) +Have you ever climbed Mt. Yari? 你曾爬過槍岳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69141 (CK) & #844509 (Martha) +Have you ever dreamed about me? 你梦见过我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3415292 (CK) & #8514610 (gumblex) +Have you ever seen Tokyo Tower? 你曾看過東京鐵塔嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69426 (CK) & #844461 (Martha) +Have you ever shaved your legs? 你剃过腿毛吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7910844 (Graeme) & #8696206 (crescat) +Have you found your ticket yet? 你找到你的票了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4011753 (CK) & #5958731 (verdastelo9604) +Have you seen all these movies? 你把電影全看了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2542097 (CK) & #6146498 (verdastelo9604) +Have you seen all these movies? 你把這些電影全看了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2542097 (CK) & #6146499 (verdastelo9604) +Have you turned in your report? 你交報告了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16407 (CK) & #838618 (Martha) +Have you washed your hands yet? 你洗過你的手了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31342 (CK) & #840653 (Martha) +Have you worked the puzzle out? 你解开谜团了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #44651 (CM) & #817295 (fucongcong) +He always keeps his room clean. 他總是把他的房間保持乾淨。 CC-BY 2.0 (France) Attribution: tatoeba.org #289209 (CK) & #836241 (Martha) +He always takes sides with her. 他總是跟她站在同一邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #289198 (CK) & #844439 (Martha) +He always takes sides with her. 他總是支持她。 CC-BY 2.0 (France) Attribution: tatoeba.org #289198 (CK) & #844440 (Martha) +He applied for the scholarship. 他申請了獎學金。 CC-BY 2.0 (France) Attribution: tatoeba.org #291013 (CK) & #834492 (Martha) +He arrived after the bell rang. 鈴響後他就到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292674 (CK) & #836416 (Martha) +He asked her to call him later. 他要求她稍後打電話給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #302641 (CK) & #880249 (Martha) +He asked me whether I was busy. 他问我是否很忙? CC-BY 2.0 (France) Attribution: tatoeba.org #430077 (witbrock) & #1878387 (sadhen) +He asked me why I was laughing. 他問我為什麼在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #287947 (CK) & #880300 (Martha) +He behaved as if he were crazy. 他表现的像个疯子。 CC-BY 2.0 (France) Attribution: tatoeba.org #292966 (CK) & #5091210 (mirrorvan) +He bought his daughter a dress. 他買了一件洋裝給他女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #304022 (CK) & #842451 (Martha) +He broke the window on purpose. 他故意打破了窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #279548 (CK) & #840584 (Martha) +He came home three hours later. 他三個小時後回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288541 (CK) & #842302 (Martha) +He came to Japan two years ago. 他兩年前來日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #288510 (CK) & #884156 (Martha) +He came to my office yesterday. 他昨天來我的辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #297869 (CK) & #836275 (Martha) +He can do it better than I can. 他有能力比我做得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #392145 (CK) & #335938 (fucongcong) +He can scarcely write his name. 他很难写他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #298857 (CK) & #333184 (fucongcong) +He carried six boxes at a time. 他一次搬6个箱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #293780 (CK) & #343937 (fucongcong) +He caught them stealing apples. 他抓到了他們在偷蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #306116 (CK) & #833051 (Martha) +He cheated on the biology exam. 他在生物學考試時作弊。 CC-BY 2.0 (France) Attribution: tatoeba.org #300503 (CK) & #842475 (Martha) +He comes here almost every day. 他几乎每天都来。 CC-BY 2.0 (France) Attribution: tatoeba.org #292771 (CK) & #405249 (fucongcong) +He comes here every three days. 他每三天來這裡一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #288550 (CK) & #836410 (Martha) +He denied having written to me. 他否認曾寫信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #297636 (CK) & #839503 (Martha) +He did not accept my apologies. 他不接受我的道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #297990 (CK) & #845511 (Martha) +He didn't agree to my proposal. 他不同意我的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #297958 (CK) & #844513 (Martha) +He didn't hear his name called. 他没听见有人叫他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #298851 (CK) & #819717 (fucongcong) +He didn't know what to do next. 他不知道下一步要做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #264186 (CK) & #876734 (Martha) +He didn't show up at the party. 他沒有在派對上出現。 CC-BY 2.0 (France) Attribution: tatoeba.org #292349 (CK) & #881235 (Martha) +He disappeared without a trace. 他没有留下痕迹就消失了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2096 (CK) & #503190 (fucongcong) +He disappeared without a trace. 他消失了,不留一丝踪迹。 CC-BY 2.0 (France) Attribution: tatoeba.org #2096 (CK) & #4757702 (ryanwoo) +He doesn't altogether trust me. 他並不完全信任我。 CC-BY 2.0 (France) Attribution: tatoeba.org #292907 (CK) & #833030 (Martha) +He doesn't come here every day. 他不是每一天都來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #303895 (CK) & #842476 (Martha) +He doesn't come here every day. 他不是每天都來這。 CC-BY 2.0 (France) Attribution: tatoeba.org #303895 (CK) & #1233812 (tsayng) +He doesn't know English at all. 他一點也不懂英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #294017 (CK) & #839522 (Martha) +He drank three bottles of beer. 他喝了三瓶啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #292487 (CK) & #839608 (Martha) +He dropped in at the bookstore. 他順道去了這家書店。 CC-BY 2.0 (France) Attribution: tatoeba.org #303802 (CK) & #838640 (Martha) +He earns his living by writing. 他靠寫作謀生。 CC-BY 2.0 (France) Attribution: tatoeba.org #435292 (CK) & #836257 (Martha) +He failed to answer the letter. 他沒有回信。 CC-BY 2.0 (France) Attribution: tatoeba.org #290978 (CK) & #838587 (Martha) +He failed to follow our advice. 他沒有遵循我們的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #294577 (CK) & #836332 (Martha) +He felt his heart beating fast. 他覺得他的心跳加速。 CC-BY 2.0 (France) Attribution: tatoeba.org #299843 (CK) & #836287 (Martha) +He flatly refused to let me in. 他斷然地拒絕讓我進去。 CC-BY 2.0 (France) Attribution: tatoeba.org #298156 (CK) & #881554 (Martha) +He gave us the signal to begin. 他給了我們開始的信號。 CC-BY 2.0 (France) Attribution: tatoeba.org #297361 (CK) & #887709 (Martha) +He gave us the signal to begin. 他給了我們信號讓我們開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #297361 (CK) & #887710 (Martha) +He goes to London once a month. 他一個月去一次倫敦。 CC-BY 2.0 (France) Attribution: tatoeba.org #295906 (CK) & #890466 (Martha) +He got off at the next station. 他在下一站下車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298429 (CK) & #887873 (Martha) +He got thrown out of the house. 他被趕出了這棟房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #294388 (CK) & #802141 (Martha) +He grew up in a little village. 他在一個小村莊裡長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #299545 (CK) & #875372 (Martha) +He had decided on a new policy. 他已經決定了新的政策。 CC-BY 2.0 (France) Attribution: tatoeba.org #299909 (CK) & #793885 (Martha) +He had his shirt on inside out. 他把他的襯衫穿反了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290139 (CK) & #883289 (Martha) +He had his socks on inside out. 他把他的襪子穿反了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295611 (CK) & #889613 (Martha) +He had his socks on inside out. 他将袜子的里外穿反了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295611 (CK) & #4463427 (MirendaBABY) +He had no luck in finding work. 他找工作不走運。 CC-BY 2.0 (France) Attribution: tatoeba.org #65404 (CK) & #876923 (Martha) +He had no luck in finding work. 他不幸找不到工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #65404 (CK) & #876925 (Martha) +He has a good grasp of English. 他精通英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #294020 (CK) & #884194 (Martha) +He has a lot of foreign stamps. 他有很多外國郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #294746 (CK) & #888499 (Martha) +He has a lot of original ideas. 他有很多獨到的見解。 CC-BY 2.0 (France) Attribution: tatoeba.org #302085 (CK) & #887677 (Martha) +He has a son and two daughters. 他有一個兒子和兩個女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #284640 (CK) & #881089 (Martha) +He has a wonderful personality. 他有一個很好的性格。 CC-BY 2.0 (France) Attribution: tatoeba.org #290313 (CK) & #833250 (Martha) +He has been dead for ten years. 他已經死了十年。 CC-BY 2.0 (France) Attribution: tatoeba.org #299334 (CK) & #882168 (Martha) +He has been in Hokkaido before. 他以前曾在北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #303722 (CK) & #845439 (Martha) +He has dozens of English books. 他有幾十本的英文書籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #294354 (CK) & #844447 (Martha) +He has just become a principal. 他剛成為一名校長。 CC-BY 2.0 (France) Attribution: tatoeba.org #296329 (CK) & #836355 (Martha) +He has lived here for one week. 他已經住在這裡一個星期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288428 (CK) & #888519 (Martha) +He has no chance of succeeding. 他沒有成功的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #393364 (CK) & #842480 (Martha) +He has no choice but to resign. 他沒有選擇,只能辭職。 CC-BY 2.0 (France) Attribution: tatoeba.org #293183 (CK) & #882166 (Martha) +He has no interest in politics. 他對政治沒有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #509204 (blay_paul) & #909883 (Martha) +He hasn't come already, has he? 他並沒有來,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #32840 (CK) & #848839 (Martha) +He heard the news on the radio. 他從收音機聽到了這個消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #290520 (CK) & #883473 (Martha) +He hid himself behind the door. 他把自己藏在門後面。 CC-BY 2.0 (France) Attribution: tatoeba.org #296149 (CK) & #848913 (Martha) +He hid himself behind the door. 他藏到了门后。 CC-BY 2.0 (France) Attribution: tatoeba.org #296149 (CK) & #8780275 (crescat) +He hit his head against a rock. 他的頭撞到了一塊岩石。 CC-BY 2.0 (France) Attribution: tatoeba.org #302005 (CK) & #889355 (Martha) +He hit his head against a rock. 他的头撞倒了一块岩石。 CC-BY 2.0 (France) Attribution: tatoeba.org #302005 (CK) & #1361954 (sadhen) +He ignored his father's advice. 他不顧他父親的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #303361 (CK) & #833008 (Martha) +He is a famous baseball player. 他是一位著名的棒球選手。 CC-BY 2.0 (France) Attribution: tatoeba.org #304455 (CK) & #849018 (Martha) +He is a very thoughtful person. 他是個很體貼的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #292102 (CK) & #848554 (Martha) +He is absent from school today. 他今天沒上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #296619 (CK) & #848628 (Martha) +He is afraid of his own shadow. 他怕自己的影子。 CC-BY 2.0 (France) Attribution: tatoeba.org #292498 (CK) & #879133 (Martha) +He is afraid of his own shadow. 他是个胆小鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #292498 (CK) & #1419948 (asosan) +He is always forgetting things. 他總是忘記事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #289212 (CK) & #834370 (Martha) +He is flying to Paris tomorrow. 他明天將飛往巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #304122 (CK) & #848714 (Martha) +He is leaving Chicago tomorrow. 他明天將離開芝加哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #288703 (CK) & #833804 (Martha) +He is much older than he looks. 他的實際年齡比他看起來老得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #296008 (CK) & #881178 (Martha) +He is often absent from school. 他经常翘课。 CC-BY 2.0 (France) Attribution: tatoeba.org #290094 (CK) & #785841 (fucongcong) +He is the richest man on earth. 他是世界上最有錢的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #289924 (CK) & #890476 (Martha) +He is to blame for the failure. 失败的责任在他。 CC-BY 2.0 (France) Attribution: tatoeba.org #284684 (CK) & #335406 (fucongcong) +He is two years older than you. 他比你大兩歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #287958 (CK) & #881701 (Martha) +He is used to getting up early. 他習慣早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #300838 (CK) & #889109 (Martha) +He isn't going to buy a camera. 他不打算买一个摄像机。 CC-BY 2.0 (France) Attribution: tatoeba.org #289579 (CK) & #333000 (fucongcong) +He isn't here because he's ill. 他不在这儿,因为他病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #434952 (lukaszpp) & #1361995 (sadhen) +He kept me waiting all morning. 他讓我等了整整一上午。 CC-BY 2.0 (France) Attribution: tatoeba.org #296200 (CK) & #846050 (Martha) +He kept me waiting for an hour. 他讓我等了一個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #284533 (CK) & #881242 (Martha) +He knows how to play the piano. 他知道如何彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #292473 (CK) & #880303 (Martha) +He left in the blink of an eye. 他一转眼就跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #534718 (Scott) & #8737036 (crescat) +He left without saying goodbye. 他不辭而別。 CC-BY 2.0 (France) Attribution: tatoeba.org #290042 (CK) & #833039 (Martha) +He likes both music and sports. 他喜歡音樂和運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #294201 (CK) & #788726 (Martha) +He likes geography and history. 他喜欢地理和历史。 CC-BY 2.0 (France) Attribution: tatoeba.org #301471 (CK) & #528057 (biglion) +He likes smoking in the toilet. 他喜欢在厕所里吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1756616 (Djef_Messaoudi) & #5611529 (verdastelo9604) +He likes to build model planes. 他喜歡建造模型飛機。 CC-BY 2.0 (France) Attribution: tatoeba.org #304147 (CK) & #848817 (Martha) +He likes traveling and so do I. 他喜欢旅行。我也是。 CC-BY 2.0 (France) Attribution: tatoeba.org #374762 (shirayuki) & #330591 (ZeroAurora) +He lived abroad for many years. 他居住在國外多年。 CC-BY 2.0 (France) Attribution: tatoeba.org #294735 (CK) & #848711 (Martha) +He lives alone in an apartment. 他一個人住在公寓裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #288787 (CK) & #846074 (Martha) +He lives in a world of fantasy. 他住在一個奇幻世界裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #295592 (CK) & #801969 (Martha) +He looks older than my brother. 他看起來年紀比我的兄弟大。 CC-BY 2.0 (France) Attribution: tatoeba.org #250732 (CK) & #848538 (Martha) +He made an important discovery. 他有了一個重要的發現。 CC-BY 2.0 (France) Attribution: tatoeba.org #299357 (CK) & #833024 (Martha) +He majored in drama at college. 他在大學主修戲劇。 CC-BY 2.0 (France) Attribution: tatoeba.org #301231 (CK) & #848810 (Martha) +He makes his living by singing. 他以唱歌為生。 CC-BY 2.0 (France) Attribution: tatoeba.org #23919 (CK) & #848208 (Martha) +He may come and see us tonight. 他今天晚上可能來看我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #296645 (CK) & #880285 (Martha) +He may come tomorrow afternoon. 他明天下午可能會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #304084 (CK) & #833774 (Martha) +He painted all the walls green. 他把所有的牆壁漆成了綠色。 CC-BY 2.0 (France) Attribution: tatoeba.org #303552 (CK) & #848233 (Martha) +He painted the door over white. 他把門漆成了白色。 CC-BY 2.0 (France) Attribution: tatoeba.org #296153 (CK) & #846116 (Martha) +He practiced every day at home. 他每天在家練習。 CC-BY 2.0 (France) Attribution: tatoeba.org #303911 (CK) & #846051 (Martha) +He pushed the emergency button. 他按下了緊急按鈕。 CC-BY 2.0 (France) Attribution: tatoeba.org #303008 (CK) & #834488 (Martha) +He quarrelled with his brother. 他和他弟弟吵了起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2980720 (pne) & #464758 (fucongcong) +He rarely stays home on Sunday. 他很少週日待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #302259 (CK) & #848363 (Martha) +He rescued a boy from drowning. 他救了一个溺水的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #289436 (CK) & #8746514 (crescat) +He returned very late at night. 他晚上回來得很晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2258447 (_undertoad) & #6468680 (verdastelo9604) +He said that you had better go. 他說你最好去。 CC-BY 2.0 (France) Attribution: tatoeba.org #69442 (CK) & #887708 (Martha) +He seldom writes to his father. 他很少写信给他父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #293037 (CK) & #414056 (fucongcong) +He shook hands with his friend. 他和他的朋友握手。 CC-BY 2.0 (France) Attribution: tatoeba.org #304380 (CK) & #846566 (Martha) +He showed interest in the plan. 他對這個計劃表示了興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #290711 (CK) & #848613 (Martha) +He stayed there for three days. 他在那裡待了三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #72649 (CK) & #846573 (Martha) +He stole money from her wallet. 他從她的錢包偷了錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #302790 (CK) & #848981 (Martha) +He threw a ball over the fence. 他把球扔過了柵欄。 CC-BY 2.0 (France) Attribution: tatoeba.org #303518 (CK) & #881279 (Martha) +He threw a stone into the pond. 他扔一塊石頭到池塘裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #300575 (CK) & #881232 (Martha) +He threw a stone into the pond. 他扔了一塊石頭到池塘裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #300575 (CK) & #883277 (Martha) +He tiptoed so no one heard him. 他踮著腳尖走, 所以沒有人聽到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159694 (tinytina) & #751710 (Martha) +He took a picture of the koala. 他為無尾熊拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #289802 (CK) & #875315 (Martha) +He traveled all over the world. 他周遊世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #300283 (CK) & #848602 (Martha) +He traveled around the country. 他周遊全國各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #296436 (CK) & #834391 (Martha) +He tried speaking French to us. 他試圖跟我們說法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #297362 (CK) & #848583 (Martha) +He tried to sleep on the floor. 他試著在地板上睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1572101 (fanty) & #6093329 (verdastelo9604) +He tried to speak French to us. 他試著跟我們講法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #297351 (CK) & #880394 (Martha) +He visited his uncle yesterday. 昨天他拜訪了他的叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #296909 (CK) & #833089 (Martha) +He walks his dog every morning. 他每天早晨溜狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #303874 (CK) & #848429 (Martha) +He wants to be a tennis player. 他想成為一名網球選手。 CC-BY 2.0 (France) Attribution: tatoeba.org #291867 (CK) & #883278 (Martha) +He wants to work in a hospital. 他想在醫院工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #303089 (CK) & #875272 (Martha) +He was born on July 28th, 1888. 他出生於1888年7月28日。 CC-BY 2.0 (France) Attribution: tatoeba.org #6054 (CK) & #881870 (Martha) +He was brought up by his uncle. 他被他的叔叔撫養長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #289412 (CK) & #889107 (Martha) +He was brought up in Australia. 他在澳大利亚长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #289399 (Scott) & #332981 (fucongcong) +He was determined to go abroad. 他下定決心要出國了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294737 (CK) & #846280 (Martha) +He was forced to work overtime. 他被迫加班。 CC-BY 2.0 (France) Attribution: tatoeba.org #304009 (CK) & #848213 (Martha) +He was in America at that time. 他當時在美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #279947 (CK) & #875385 (Martha) +He was injured in the accident. 他在事故中受傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #290906 (CK) & #846326 (Martha) +He was involved in the trouble. 他被卷进了是非中。 CC-BY 2.0 (France) Attribution: tatoeba.org #290546 (CK) & #336450 (fucongcong) +He was not aware of the danger. 他沒有意識到自己有危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #290658 (CK) & #882985 (Martha) +He was sleeping under the tree. 他在樹下睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #304160 (CK) & #848802 (Martha) +He was too drunk to drive home. 他喝酒醉無法開車回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #292544 (CK) & #879190 (Martha) +He was too young to live alone. 他太年輕了無法獨自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #299156 (CK) & #883406 (Martha) +He was waiting for a long time. 他等了很長的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #301625 (CK) & #881210 (Martha) +He was wounded in the shoulder. 他伤了肩膀。 CC-BY 2.0 (France) Attribution: tatoeba.org #295997 (CK) & #465814 (fucongcong) +He wasn't able to open the box. 他沒有能力打開箱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #9089540 (CK) & #6057868 (verdastelo9604) +He wears Chinese-style clothes. 他穿中式服裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2202413 (FeuDRenais) & #2201736 (egg0073) +He went to some place or other. 他去了某个地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #292009 (CK) & #334979 (fucongcong) +He who laughs last laughs best. 最後笑的人,才是笑得最得意的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #274040 (CS) & #806223 (Martha) +He will be back in ten minutes. 他十分鐘後會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #288377 (CK) & #881220 (Martha) +He will be coming to the party. 他會來參加派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #292352 (CK) & #879192 (Martha) +He will play baseball tomorrow. 他明天將打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #304125 (CK) & #833814 (Martha) +He will reach Hakodate tonight. 他今晚將抵達函館。 CC-BY 2.0 (France) Attribution: tatoeba.org #296632 (CK) & #833798 (Martha) +He works at the welfare office. 他在福利辦事處上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #303456 (CK) & #848434 (Martha) +He works from Monday to Friday. 他周一到周五上班。。 CC-BY 2.0 (France) Attribution: tatoeba.org #295914 (CK) & #848892 (Martha) +He works with me at the office. 他跟我在這間辦公室一起工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #294636 (CK) & #880281 (Martha) +He's a student at this college. 他是這所大學的學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #289933 (CK) & #882572 (Martha) +He's about the same age as you. 他跟您年纪差不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173783 (CK) & #7780773 (jiangche) +He's always at home on Mondays. 他星期一總是在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1474667 (Eldad) & #881706 (Martha) +He's always at home on Sundays. 他星期日總是在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #302263 (CK) & #849010 (Martha) +He's interested in many things. 他對很多事情都有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #295110 (CK) & #848427 (Martha) +He's just a business associate. 他只是個事業合夥人。 CC-BY 2.0 (France) Attribution: tatoeba.org #284432 (CM) & #4739245 (egg0073) +He's old enough to drive a car. 他的年紀可以開車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #757506 (sctld) & #5117821 (xjjAstrus) +He's popular with the students. 他受到學生的歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #294856 (CK) & #848691 (Martha) +He's sitting at an empty table. 他坐在一张空桌旁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1580075 (fanty) & #4760010 (ryanwoo) +He's started looking for a job. 他开始找工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211554 (alec) & #334042 (fucongcong) +He's three years older than me. 他比我大三歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #392148 (CK) & #846587 (Martha) +Her hair is long and beautiful. 她的頭髮長而美麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #309628 (CK) & #846067 (Martha) +Her hair is streaked with gray. 她的頭髮中夾有白髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #309641 (CK) & #846048 (Martha) +Her hobby is collecting stamps. 她的嗜好是集郵。 CC-BY 2.0 (France) Attribution: tatoeba.org #309392 (CK) & #833078 (Martha) +Her mother is writing a letter. 她的母親正在寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #309748 (CK) & #846328 (Martha) +Her mother knocked on the door. 她的母親敲門。 CC-BY 2.0 (France) Attribution: tatoeba.org #320889 (CK) & #848340 (Martha) +His clothes are out of fashion. 他的衣服過時了。 CC-BY 2.0 (France) Attribution: tatoeba.org #287470 (CK) & #846325 (Martha) +His doctor ordered him to rest. 他的医生命令他休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #27938 (CK) & #333530 (fucongcong) +His house is across the street. 他的房子在街對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #285701 (CK) & #848555 (Martha) +His house is not far from here. 他家離這兒不遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #285671 (CK) & #889799 (Martha) +His ideas are always practical. 他的主意总是可行的。 CC-BY 2.0 (France) Attribution: tatoeba.org #286214 (CK) & #528033 (biglion) +His methods are not scientific. 他的方法不科学。 CC-BY 2.0 (France) Attribution: tatoeba.org #287535 (CK) & #791504 (fucongcong) +His mother came to pick him up. 他的母親來接他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #287509 (CK) & #875303 (Martha) +His new novel is worth reading. 他的新小說值得一讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #286824 (CK) & #848425 (Martha) +His political career has ended. 他的政治生涯完蛋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286952 (CM) & #5093995 (mirrorvan) +His room was covered with dust. 他的房間佈滿了灰塵。 CC-BY 2.0 (France) Attribution: tatoeba.org #287460 (CK) & #848211 (Martha) +His sad story touched my heart. 他悲伤的故事触动了我的心。 CC-BY 2.0 (France) Attribution: tatoeba.org #287341 (CK) & #8924832 (crescat) +Hokkaido is very far, isn't it? 北海道很遠,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #321279 (CK) & #848919 (Martha) +How about going out for a walk? 出去散步怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #245151 (CK) & #883317 (Martha) +How about going out for dinner? 出去吃晚餐如何? CC-BY 2.0 (France) Attribution: tatoeba.org #324613 (CK) & #846383 (Martha) +How about some more roast beef? 再多一些烤牛肉怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #30479 (CK) & #848664 (Martha) +How am I going to explain this? 我要怎麼解釋? CC-BY 2.0 (France) Attribution: tatoeba.org #3305864 (Hybrid) & #6460671 (verdastelo9604) +How did you come by this money? 用這些錢你怎麼來的? CC-BY 2.0 (France) Attribution: tatoeba.org #16706 (CK) & #775833 (Martha) +How do you like your eggs done? 您要什麼樣的蛋? CC-BY 2.0 (France) Attribution: tatoeba.org #325223 (CK) & #882156 (Martha) +How do you like your eggs done? 你的蛋要怎麼做? CC-BY 2.0 (France) Attribution: tatoeba.org #325223 (CK) & #882158 (Martha) +How do you pronounce this word? 这个词怎么发音? CC-BY 2.0 (France) Attribution: tatoeba.org #57963 (CK) & #333780 (fucongcong) +How do you pronounce this word? 你们怎么读这个词? CC-BY 2.0 (France) Attribution: tatoeba.org #57963 (CK) & #345739 (fucongcong) +How do you pronounce your name? 你怎麼唸你的名字? CC-BY 2.0 (France) Attribution: tatoeba.org #70360 (CK) & #846076 (Martha) +How long ago did the bus leave? 這輛公車多久前離開的? CC-BY 2.0 (France) Attribution: tatoeba.org #35315 (CK) & #876715 (Martha) +How long are you going to stay? 你准备待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #24467 (CK) & #333370 (fucongcong) +How long have you been in here? 你来这里多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #1355686 (CK) & #5640764 (verdastelo9604) +How long is the Rainbow Bridge? 彩虹橋有多長? CC-BY 2.0 (France) Attribution: tatoeba.org #29540 (lilygilder) & #848241 (Martha) +How long is this visa good for? 這個簽證的有效期限是多久? CC-BY 2.0 (France) Attribution: tatoeba.org #60615 (CK) & #881519 (Martha) +How long will the meeting last? 會議持續多久? CC-BY 2.0 (France) Attribution: tatoeba.org #2542096 (CK) & #6064678 (verdastelo9604) +How many children were injured? 有几个小孩受伤了? CC-BY 2.0 (France) Attribution: tatoeba.org #8363053 (CK) & #8725792 (crescat) +How much is that mountain bike? 那辆山地车多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #267095 (CK) & #797560 (fucongcong) +How much is the rent per month? 一個月的租金多少? CC-BY 2.0 (France) Attribution: tatoeba.org #24050 (CK) & #4262611 (egg0073) +How much was your new computer? 这台电脑你用多少钱买的? CC-BY 2.0 (France) Attribution: tatoeba.org #837406 (Mouseneb) & #375376 (fucongcong) +How soon can they be delivered? 它们什么时候能被送到? CC-BY 2.0 (France) Attribution: tatoeba.org #36869 (CK) & #5967334 (verdastelo9604) +I accompanied her on the piano. 我為她作鋼琴伴奏。 CC-BY 2.0 (France) Attribution: tatoeba.org #321940 (CK) & #848743 (Martha) +I accompanied her on the piano. 我彈鋼琴為她伴奏。 CC-BY 2.0 (France) Attribution: tatoeba.org #321940 (CK) & #850123 (Martha) +I advise you to change clothes. 我建議你換衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2291592 (CK) & #6728909 (verdastelo9604) +I agree with him on that point. 我在那一個觀點上同意他。 CC-BY 2.0 (France) Attribution: tatoeba.org #321652 (CK) & #916667 (Martha) +I agree with you on this issue. 我同意你對這問題的看法。 CC-BY 2.0 (France) Attribution: tatoeba.org #253590 (CK) & #883498 (Martha) +I agree with you on this point. 我同意你這一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #253702 (CK) & #883451 (Martha) +I almost forgot all about that. 我幾乎忘了所有關於那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #253202 (CK) & #848985 (Martha) +I always try to tell the truth. 我總是試著說實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #253102 (CK) & #941109 (Martha) +I am always at home on Sundays. 我星期日總是在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #259847 (CK) & #887687 (Martha) +I am going to Hawaii next year. 我明年要去夏威夷。 CC-BY 2.0 (France) Attribution: tatoeba.org #262159 (CK) & #883276 (Martha) +I am in favor of your proposal. 我贊成你的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #16977 (CK) & #887883 (Martha) +I am not the least bit worried. 我一點也不擔心。 CC-BY 2.0 (France) Attribution: tatoeba.org #40222 (CK) & #890457 (Martha) +I am positive that he is wrong. 我確定他是錯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #21698 (CK) & #875264 (Martha) +I am sorry. I am not from here. 抱歉,我不是本地人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1153960 (belgavox) & #1395091 (mtdot) +I am suffering from a bad cold. 我患上了重感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #254951 (CK) & #6483619 (FAErika) +I am sure that he will succeed. 我肯定他会成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #260098 (CK) & #333257 (fucongcong) +I am the laziest person I know. 我是据我所知最懒的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1690426 (Spamster) & #5555194 (verdastelo9604) +I am very interested in French. 我對法語很感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #255535 (CK) & #848453 (Martha) +I asked Tom about his new book. 我問了湯姆關於他的新書的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #255287 (CK) & #887822 (Martha) +I asked Tom to open the window. 我請湯姆把窗戶打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #255284 (CK) & #883432 (Martha) +I asked Tom to play the guitar. 我叫汤姆弹吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #255283 (CK) & #791478 (fucongcong) +I asked for a table over there. 我在那裡要了一張桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #68671 (CK) & #941147 (Martha) +I asked him about the accident. 我問他關於這個意外的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #47162 (CK) & #846577 (Martha) +I asked him to open the window. 我請他把窗戶打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #285115 (CK) & #881085 (Martha) +I asked him where he was going. 我問了他要去哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #260320 (CK) & #888596 (Martha) +I began playing golf years ago. 幾年前我開始打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #258944 (CK) & #848428 (Martha) +I believe this was unnecessary. 我相信這是不必要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818974 (CK) & #6138323 (verdastelo9604) +I bought a bottle of salad oil. 我買了一瓶沙拉油。 CC-BY 2.0 (France) Attribution: tatoeba.org #253864 (CK) & #880279 (Martha) +I bought a camera two days ago. 兩天前我買了一台照相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #259778 (CK) & #881719 (Martha) +I bought a dozen pencils today. 我今天買了一打鉛筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #25765 (CK) & #848978 (Martha) +I bought a kite to give to you. 我買了一個風箏給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #7842269 (sharris123) & #765691 (Martha) +I bought this camera yesterday. 我昨天買了這台相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #257719 (CK) & #833172 (Martha) +I bought two pairs of trousers. 我买了两条裤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #254040 (CK) & #817296 (fucongcong) +I built an amplifier yesterday. 昨天我組裝了一個揚聲器。 CC-BY 2.0 (France) Attribution: tatoeba.org #244327 (CK) & #926838 (Martha) +I can understand him perfectly. 我十分能理解他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260594 (CK) & #833096 (Martha) +I can't believe anyone anymore. 我再也不相信任何人了! CC-BY 2.0 (France) Attribution: tatoeba.org #4652698 (CK) & #4906193 (musclegirlxyp) +I can't believe anyone anymore. 我再也无法相信任何人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4652698 (CK) & #4906345 (musclegirlxyp) +I can't get away from work now. 我現在上班無法離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #242069 (CK) & #926755 (Martha) +I can't get away from work now. 我現在在工作無法離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #242069 (CK) & #926759 (Martha) +I can't get my tractor started. 我發動不了我的拖拉機。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852240 (CK) & #6065884 (verdastelo9604) +I can't make any sense of this. 我完全不明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #55832 (CK) & #875339 (Martha) +I can't make out what he wants. 我不明白他想要什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #249981 (CK) & #1394903 (mtdot) +I can't predict what'll happen. 我不能預言會發生甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954687 (CK) & #6077435 (verdastelo9604) +I can't put up with this noise. 我不能忍受這個噪音。 CC-BY 2.0 (France) Attribution: tatoeba.org #58020 (CK) & #833180 (Martha) +I can't put up with this smell. 我不能忍受這種氣味。 CC-BY 2.0 (France) Attribution: tatoeba.org #253657 (CK) & #889620 (Martha) +I can't understand this at all. 我一點也不懂這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #421991 (CK) & #846156 (Martha) +I cannot afford to pay so much. 我付不起這麼多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #41314 (CK) & #779071 (Martha) +I caught a beautiful butterfly. 我抓到一隻漂亮的蝴蝶。 CC-BY 2.0 (France) Attribution: tatoeba.org #261436 (CK) & #4262139 (egg0073) +I couldn't agree with you more. 我再同意你不過了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273685 (CK) & #918031 (Martha) +I couldn't agree with you more. 我非常同意你。 CC-BY 2.0 (France) Attribution: tatoeba.org #273685 (CK) & #918032 (Martha) +I couldn't bear to look at her. 我无法忍受看着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #317594 (CK) & #336046 (fucongcong) +I couldn't stand looking at it. 我不能忍受就這樣看著它。 CC-BY 2.0 (France) Attribution: tatoeba.org #383861 (CK) & #846318 (Martha) +I didn't know he drank so much. 我不知道他喝那么多酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2364 (CK) & #405195 (fucongcong) +I didn't play tennis yesterday. 我昨天沒有打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #1769375 (wwkudu) & #846342 (Martha) +I didn't want to humiliate you. 我不是想要羞辱你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2968820 (AlanF_US) & #5091637 (mirrorvan) +I do not agree with you at all. 我完全不赞成你的意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #257053 (CK) & #899434 (kooler) +I don't feel like eating sushi. 我不想吃壽司。 CC-BY 2.0 (France) Attribution: tatoeba.org #266203 (CK) & #848219 (Martha) +I don't feel much like talking. 我不太想說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315256 (CK) & #6325059 (verdastelo9604) +I don't go to school on Sunday. 我周日不去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #259854 (CK) & #444784 (fucongcong) +I don't have that kind of time. 我可沒有那閒空。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315279 (CK) & #6860865 (verdastelo9604) +I don't know what I don't know. 我不知道我不知道什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5731005 (CM) & #8780262 (crescat) +I don't know when he will come. 我不知道他什么时候会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #259946 (CK) & #336663 (fucongcong) +I don't know where my watch is. 我不知道我的手錶在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #616130 (kebukebu) & #760872 (Martha) +I don't know who made the cake. 我不知道這個蛋糕是誰做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #259371 (CK) & #884165 (Martha) +I don't like swimming in pools. 我不喜歡在泳池裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #502703 (CK) & #846105 (Martha) +I don't like the way he speaks. 我不喜歡他說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #260522 (CK) & #883469 (Martha) +I don't like to sing in public. 我不喜歡在公共場合唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #270616 (CK) & #881562 (Martha) +I don't plan to stay very long. 我沒有打算停留太久。 CC-BY 2.0 (France) Attribution: tatoeba.org #7955166 (CK) & #6633881 (verdastelo9604) +I don't really read newspapers. 我不太看报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230773 (alec) & #334407 (fucongcong) +I don't think that he's honest. 我不觉得他诚实。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543193 (Bah_Dure) & #2002960 (sunnywqing) +I don't think that he's honest. 我不觉得他很诚实。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543193 (Bah_Dure) & #8780273 (crescat) +I don't want anything to drink. 我什么都不想喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #256125 (CK) & #332566 (fucongcong) +I don't want to drink anything. 我什么都不想喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477114 (weihaiping) & #332566 (fucongcong) +I don't want to go there again. 我不想再次去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553478 (CK) & #1783799 (sadhen) +I don't want to lose you again. 我不想再失去你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2014277 (CK) & #5091449 (mirrorvan) +I don't want to wait that long. 我不想等那么久。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438 (CK) & #332935 (fucongcong) +I explained the process to him. 我向他解釋了這個過程。 CC-BY 2.0 (France) Attribution: tatoeba.org #49197 (CK) & #848652 (Martha) +I feel like I'm going to faint. 我覺得我快昏倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7837611 (sharris123) & #785253 (Martha) +I felt as if I were in a dream. 我感觉就像做梦一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #32313 (CK) & #334550 (fucongcong) +I filled the bucket with water. 我在桶子裡裝滿了水。 CC-BY 2.0 (France) Attribution: tatoeba.org #254193 (CK) & #848917 (Martha) +I forgot to bring my I.D. card. 我忘了帶我的身份證。 CC-BY 2.0 (France) Attribution: tatoeba.org #269800 (CK) & #876735 (Martha) +I found a coin on the sidewalk. 我在人行道上發現了一枚硬幣。 CC-BY 2.0 (France) Attribution: tatoeba.org #320522 (CK) & #887832 (Martha) +I found what I was looking for. 我找到了我正在找的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #273983 (CK) & #883460 (Martha) +I gained two kilos this summer. 这个夏天我胖了两公斤。 CC-BY 2.0 (France) Attribution: tatoeba.org #4668890 (CK) & #8832014 (crescat) +I gave her her dictionary back. 我把她的字典还给了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #646848 (CK) & #793874 (fucongcong) +I gave my brother a dictionary. 我給了我弟弟一本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #259577 (CK) & #848531 (Martha) +I gave up all hope of survival. 我放棄了所有生存的希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #31321 (CK) & #805079 (Martha) +I got bored with his long talk. 我厌烦了他的长篇大论。 CC-BY 2.0 (France) Attribution: tatoeba.org #287166 (CK) & #334771 (fucongcong) +I got off at the wrong station. 我下錯了車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #256279 (CK) & #881190 (Martha) +I got off at the wrong station. 我在錯誤的車站下車。 CC-BY 2.0 (France) Attribution: tatoeba.org #256279 (CK) & #881191 (Martha) +I got this bicycle for nothing. 我免費得到這輛自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #253629 (CK) & #846429 (Martha) +I got up at seven this morning. 我今天早上7点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #242178 (CK) & #346782 (fucongcong) +I guess I'll have to leave now. 我想我現在得走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31407 (CK) & #801930 (Martha) +I guess most of them went home. 我猜他們大多數回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305135 (CK) & #801929 (Martha) +I had a funny dream last night. 我昨晚做了一個有趣的夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #257837 (CK) & #801904 (Martha) +I had a good time this evening. 今天晚上我玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #243340 (CK) & #881112 (Martha) +I had a neighbor who was blind. 我有個盲鄰居。 CC-BY 2.0 (France) Attribution: tatoeba.org #5643977 (CK) & #6057858 (verdastelo9604) +I had no feeling in my fingers. 我的手指没有感觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #258016 (CK) & #5640780 (verdastelo9604) +I had no idea Tom wasn't happy. 我不知道汤姆不开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5290496 (CK) & #9316472 (slo_oth) +I had to get my tattoo removed. 我必須把文身去掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2916643 (Hybrid) & #6585416 (verdastelo9604) +I hate terrorist organizations. 我痛恨恐怖主义组织。 CC-BY 2.0 (France) Attribution: tatoeba.org #949388 (CK) & #7772407 (jiangche) +I have a black and a white dog. 我有一只黑狗和一只白狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #248694 (CK) & #5762989 (verdastelo9604) +I have a lot of homework to do. 我有很多作业要做。 CC-BY 2.0 (France) Attribution: tatoeba.org #30181 (CK) & #401219 (fucongcong) +I have a slight headache today. 我今天有輕微的頭痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #242899 (CK) & #848759 (Martha) +I have almost no money with me. 我身上幾乎沒有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #28985 (CK) & #876933 (Martha) +I have known her for two years. 我认识她两年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261328 (CK) & #333348 (fucongcong) +I have no problem with my boss. 我和老闆沒有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812241 (sharris123) & #6081962 (xjjAstrus) +I have nothing to fall back on. 我没什么可依靠的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256403 (CK) & #332597 (fucongcong) +I have plenty of money with me. 我身上帶著很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #22280 (CK) & #881184 (Martha) +I have to find a part-time job. 我必須找一份兼職工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #544718 (CK) & #883492 (Martha) +I have to say goodnight to Tom. 我必须跟汤姆说晚安。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819352 (CK) & #5983660 (verdastelo9604) +I have to stop procrastinating. 我不能再拖延了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1650044 (CM) & #6483519 (verdastelo9604) +I have to take a test tomorrow. 明天我必須參加考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736882 (paper1n0) & #769638 (Martha) +I haven't heard that story yet. 我還沒有聽過那個故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #496152 (CK) & #848719 (Martha) +I haven't seen you for a while. 我好一陣子沒看到你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #417014 (CK) & #881080 (Martha) +I haven't started anything yet. 我还没开始做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360371 (CK) & #4845041 (pig8322) +I hear my uncle died of cancer. 我聽到我叔叔死於癌症的消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #266631 (CK) & #889143 (Martha) +I hear that you play the piano. 我聽說你彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #69786 (CK) & #881694 (Martha) +I hear that you play the piano. 我听说你弹钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #69786 (CK) & #1358716 (sadhen) +I hear you are good at cooking. 我聽說你擅長烹飪。 CC-BY 2.0 (France) Attribution: tatoeba.org #325765 (CK) & #889578 (Martha) +I heard him go down the stairs. 我聽見了他下樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #283488 (CK) & #880280 (Martha) +I helped him with his homework. 我幫他做他的家庭作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #260666 (CK) & #846570 (Martha) +I hope I'll see you again soon. 我希望我會很快再見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #32627 (CK) & #876722 (Martha) +I hugged him tightly and cried. 我緊緊地抱著他哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #780919 (tangereeny) & #781533 (Martha) +I invited my friends to dinner. 我邀請我的朋友吃晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #262055 (CK) & #848343 (Martha) +I just don't want to marry Tom. 我只是不想和汤姆结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2014290 (CK) & #2241824 (sadhen) +I just don't want to marry you. 我就是不想嫁給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2014291 (CK) & #5812361 (xjjAstrus) +I just knew you would say that. 我就知道你会这么说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1031181 (Brian255) & #812326 (fucongcong) +I just want to be Tom's friend. 我只想做汤姆的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330512 (CK) & #5958728 (verdastelo9604) +I just wasn't paying attention. 我只是没注意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2374135 (CK) & #6101269 (verdastelo9604) +I know the girl playing tennis. 我認識這個打網球的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #255090 (CK) & #848228 (Martha) +I know who lives in this house. 我知道谁住在这房子里。 CC-BY 2.0 (France) Attribution: tatoeba.org #259372 (CK) & #791595 (fucongcong) +I learned a lot from his books. 我從他的書學到了很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #260744 (CK) & #889645 (Martha) +I left my briefcase on the bus. 我把我的公事包留在公車上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #554211 (CK) & #879176 (Martha) +I like going to watch baseball. 我喜歡去看棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #402880 (CK) & #849004 (Martha) +I like my coffee without sugar. 我喜欢喝咖啡不加糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #707991 (papabear) & #710301 (fucongcong) +I like spring better than fall. 我喜歡春天勝過秋天。 CC-BY 2.0 (France) Attribution: tatoeba.org #258496 (CK) & #848694 (Martha) +I like to watch baseball games. 我喜歡看棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #496158 (CK) & #846159 (Martha) +I lost my camera the other day. 那天我丢了我的照相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #252292 (CK) & #401123 (fucongcong) +I managed to get there in time. 我設法及時到那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #28994 (CK) & #794094 (Martha) +I need something to write with. 我需要一些用來寫字的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25087 (CK) & #848224 (Martha) +I need you to help me find Tom. 我需要你幫我找湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387814 (CK) & #6169150 (verdastelo9604) +I noticed that Tom was smiling. 我注意到汤姆在笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #7520120 (CK) & #8744076 (crescat) +I often go sailing on weekends. 我經常在週末去航海。 CC-BY 2.0 (France) Attribution: tatoeba.org #496178 (CK) & #848633 (Martha) +I often played tennis with her. 我常常和她打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #253892 (CK) & #846069 (Martha) +I ordered a pizza on the phone. 我打电话订了个披萨。 CC-BY 2.0 (France) Attribution: tatoeba.org #259624 (CK) & #334639 (fucongcong) +I play the guitar after dinner. 我晚飯後彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #262092 (CK) & #850384 (Martha) +I play the guitar after school. 我放學後彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #261708 (CK) & #852619 (Martha) +I poured water into the bucket. 我把水倒入了桶子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #255384 (CK) & #880250 (Martha) +I really don't know that woman. 我完全不认识那个女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1497738 (weihaiping) & #1424380 (sadhen) +I really need to read all this. 我真的需要把这都读了。 CC-BY 2.0 (France) Attribution: tatoeba.org #792987 (FeuDRenais) & #794011 (fucongcong) +I rented a house with a garage. 我租了一間有車庫的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #258413 (CK) & #888524 (Martha) +I rode my bicycle to the store. 我騎了我的自行車去商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #259605 (CK) & #881698 (Martha) +I saw you driving your new car. 我看到你開著你的新車。 CC-BY 2.0 (France) Attribution: tatoeba.org #252700 (CK) & #885523 (Martha) +I should really get some sleep. 我真該睡一覺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820785 (CK) & #6128438 (verdastelo9604) +I shouldn't have sold my house. 我不该把我的房子卖了的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8365620 (CK) & #8715882 (crescat) +I sometimes dream of my mother. 有時我夢見我的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #252367 (CK) & #852163 (Martha) +I spent all day in the library. 我整天待在图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952433 (CK) & #5780603 (verdastelo9604) +I still can't believe I did it. 我仍旧无法相信我居然做了这种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406581 (CK) & #4866939 (TroubleTree) +I still haven't found anything. 我还什么都没找到呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #736616 (Darkmaster) & #7772563 (jiangche) +I still haven't heard from him. 我還沒收到他的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #28301 (CK) & #864285 (Martha) +I still live at my dad's place. 我還住在我父親的房子裏。 CC-BY 2.0 (France) Attribution: tatoeba.org #5920128 (Sethlang) & #5861140 (xjjAstrus) +I suppose I'd better phone Tom. 我想我给汤姆打电话比较好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406873 (CK) & #5780561 (verdastelo9604) +I suppose he will be back soon. 我想他会很快回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #290251 (CK) & #4757654 (ryanwoo) +I take a bath almost every day. 我幾乎每天洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #255608 (CK) & #880305 (Martha) +I think it won't rain tomorrow. 我認為明天不會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #511183 (CK) & #908549 (Martha) +I think my right arm is broken. 我想我的右手臂斷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27047 (CK) & #884159 (Martha) +I think that Tom is photogenic. 我觉得汤姆很上镜。 CC-BY 2.0 (France) Attribution: tatoeba.org #7168804 (CK) & #8739620 (slo_oth) +I think that they will be late. 我想他們會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #307145 (CK) & #883408 (Martha) +I think we're ready to do that. 我认为我们准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5651658 (CK) & #5911698 (verdastelo9604) +I think your work is all right. 我觉得你的工作可以。 CC-BY 2.0 (France) Attribution: tatoeba.org #17121 (CK) & #333016 (fucongcong) +I thought Tom would be worried. 我以为汤姆会感到担心。 CC-BY 2.0 (France) Attribution: tatoeba.org #6249969 (CK) & #6940038 (Cheng) +I told her what should be done. 我告诉了她应该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745850 (russell359) & #2040282 (sadhen) +I usually go to bed before ten. 我通常在十點前上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #254892 (CK) & #880242 (Martha) +I usually wear jeans on Sunday. 我星期天通常穿牛仔褲。 CC-BY 2.0 (France) Attribution: tatoeba.org #259864 (CK) & #850125 (Martha) +I vaguely remember meeting him. 我依稀記得見過他。 CC-BY 2.0 (France) Attribution: tatoeba.org #253354 (CK) & #834624 (Martha) +I visited him a week ago today. 我在一周前的今天拜訪了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #502835 (CK) & #881170 (Martha) +I waited an hour for my friend. 我等我的一个朋友等了一小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211548 (alec) & #334031 (fucongcong) +I walked as far as the station. 我們走到跟火車站那樣遠的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #256277 (CK) & #883131 (Martha) +I want something cold to drink. 我想喝點冷飲。 CC-BY 2.0 (France) Attribution: tatoeba.org #25013 (CK) & #851481 (Martha) +I want something cold to drink. 我想喝冷飲。 CC-BY 2.0 (France) Attribution: tatoeba.org #25013 (CK) & #861043 (Martha) +I want to be a baseball player. 我想成為一名棒球運動員。 CC-BY 2.0 (France) Attribution: tatoeba.org #262013 (CK) & #889381 (Martha) +I want to buy something to eat. 我想買點東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #256365 (CK) & #887788 (Martha) +I want to drink something cold. 我想喝點冷飲。 CC-BY 2.0 (France) Attribution: tatoeba.org #25015 (CK) & #851481 (Martha) +I want to drink something cold. 我想喝冷飲。 CC-BY 2.0 (France) Attribution: tatoeba.org #25015 (CK) & #861043 (Martha) +I want to go to Africa someday. 有一天我要去非洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #253105 (CK) & #881897 (Martha) +I want to talk with your uncle. 我想跟你叔叔談談。 CC-BY 2.0 (France) Attribution: tatoeba.org #70572 (CK) & #875263 (Martha) +I want you to read this letter. 我想你读一下这封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257066 (CK) & #487728 (fucongcong) +I want you to stay here longer. 我希望你留在這兒久一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #257064 (CK) & #889558 (Martha) +I was about to go look for you. 我剛才正要找你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753741 (garborg) & #713156 (egg0073) +I was asked to umpire the game. 我被要求當這場比賽的裁判。 CC-BY 2.0 (France) Attribution: tatoeba.org #254396 (CK) & #881189 (Martha) +I was bored with his old jokes. 我厌倦了他的老笑话。 CC-BY 2.0 (France) Attribution: tatoeba.org #260617 (CK) & #332845 (fucongcong) +I was delayed by a traffic jam. 我被交通堵塞耽擱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266568 (CK) & #887805 (Martha) +I was expecting you last night. 昨天晚上我等著你來。 CC-BY 2.0 (France) Attribution: tatoeba.org #30160 (CK) & #858290 (Martha) +I was invited to their wedding. 我被邀請參加他們的婚禮。 CC-BY 2.0 (France) Attribution: tatoeba.org #305181 (CK) & #849823 (Martha) +I was late for the appointment. 我約會遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324174 (CK) & #855690 (Martha) +I was offended by his behavior. 他的行為冒犯了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #403310 (CK) & #850403 (Martha) +I was supposed to go to school. 我该去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #2773985 (CK) & #5613709 (verdastelo9604) +I was worried about his health. 我担心他的健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #260589 (CK) & #5691278 (verdastelo9604) +I went to Disneyland yesterday. 昨天我去了迪士尼樂園。 CC-BY 2.0 (France) Attribution: tatoeba.org #244402 (CK) & #834552 (Martha) +I went to the park last Sunday. 上個星期天我去了公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #253687 (CK) & #875267 (Martha) +I went without food for a week. 我一星期沒帶食物去。 CC-BY 2.0 (France) Attribution: tatoeba.org #27726 (CK) & #889602 (Martha) +I will find you your lost ring. 我会找到你丢失的戒指。 CC-BY 2.0 (France) Attribution: tatoeba.org #70876 (CK) & #8612474 (ZPVIP) +I will go to Hokkaido tomorrow. 我明天要去北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #261956 (CK) & #861440 (Martha) +I will let you know in advance. 我会让你提前知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #259122 (CK) & #5595097 (verdastelo9604) +I will play the guitar for you. 我會為你彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #252734 (CK) & #887904 (Martha) +I will teach you to play chess. 我會教你下棋。 CC-BY 2.0 (France) Attribution: tatoeba.org #40256 (CK) & #884173 (Martha) +I will wait for my sister here. 我會在這裡等我姊姊。 CC-BY 2.0 (France) Attribution: tatoeba.org #253460 (CK) & #890678 (Martha) +I will wait here till he comes. 我會在這裡等直到他來。 CC-BY 2.0 (France) Attribution: tatoeba.org #284315 (CK) & #893185 (Martha) +I wish I could buy that guitar. 但願我可以買那把吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #68709 (CK) & #894343 (Martha) +I wish I could give up smoking. 我希望能够戒烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #40612 (sysko) & #333735 (fucongcong) +I wish Tom could've been there. 我希望汤姆能在那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2542014 (CK) & #5967305 (verdastelo9604) +I wish she had come last night. 要是她昨晚來就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308295 (CK) & #892545 (Martha) +I wish she had come last night. 但願她昨晚來就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308295 (CK) & #892549 (Martha) +I wish to climb Mt. Fuji again. 我希望再爬一次上富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #31715 (CK) & #893027 (Martha) +I woke up at five this morning. 我今天早上五點醒來。 CC-BY 2.0 (France) Attribution: tatoeba.org #242177 (CK) & #893375 (Martha) +I wonder if he'll come tonight. 我不知道他今晚會不會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #296634 (CK) & #864235 (Martha) +I wonder what she really means. 我自問她真正的意思是什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #762156 (CK) & #765582 (Martha) +I wonder why Tom is so excited. 我奇怪為甚麼湯姆那麼激動。 CC-BY 2.0 (France) Attribution: tatoeba.org #5377303 (CK) & #6145384 (verdastelo9604) +I work every day except Sunday. 除了星期天我每一天都工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #259863 (CK) & #850360 (Martha) +I work every day except Sunday. 我除了星期天外每天都上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #259863 (CK) & #860535 (Martha) +I wrote her a letter every day. 我一天又一天地给她写信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1293167 (CK) & #8935898 (crescat) +I'd like a table by the window. 我要一張靠窗的桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #274247 (CK) & #894071 (Martha) +I'd like a window seat, please. 請給我靠窗口的位子。 CC-BY 2.0 (France) Attribution: tatoeba.org #274252 (CK) & #856389 (Martha) +I'd like an aisle seat, please. 請給我靠走道的位子。 CC-BY 2.0 (France) Attribution: tatoeba.org #278424 (CK) & #859040 (Martha) +I'd like the sauce on the side. 我想要醬料放在旁邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #51049 (CK) & #801406 (Martha) +I'd like to go skiing with her. 我想和她去滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #261089 (CK) & #334617 (fucongcong) +I'd like to make a reservation. 我要預約。 CC-BY 2.0 (France) Attribution: tatoeba.org #324725 (CK) & #862744 (Martha) +I'd like to pay by credit card. 我想用信用卡支付。 CC-BY 2.0 (France) Attribution: tatoeba.org #62773 (CK) & #894390 (Martha) +I'd like to show you something. 我有东西想给你看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936362 (CK) & #8936287 (crescat) +I'd like to stay for one night. 我想待一夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1660 (CK) & #501544 (fucongcong) +I'd like to swim in this river. 我想在這條河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #253681 (CK) & #894183 (Martha) +I'll be at home in the morning. 我早上會在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #240103 (CK) & #891050 (Martha) +I'll boil the potatoes for you. 我為你煮馬鈴薯。 CC-BY 2.0 (France) Attribution: tatoeba.org #637462 (kebukebu) & #761285 (Martha) +I'll call you as soon as I can. 我会尽快给你打电话的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1687657 (CM) & #2410972 (fenfang557) +I'll call you tomorrow morning. 明天早上我會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1471982 (CM) & #857967 (Martha) +I'll come as often as possible. 我會來盡可能常來。 CC-BY 2.0 (France) Attribution: tatoeba.org #255061 (CK) & #850121 (Martha) +I'll do what I can to help you. 我會盡力幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1041646 (mangodurian) & #6094848 (verdastelo9604) +I'll explain everything to you. 我会向你全部解释清楚的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8442725 (CK) & #8463668 (gumblex) +I'll get you whatever you want. 我會給你任何你想要的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #71297 (CK) & #863966 (Martha) +I'll keep that book for myself. 我要把这本书留给自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #67816 (CK) & #787372 (fucongcong) +I'll leave when she comes back. 當她回來的時後,我就離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #308517 (CK) & #860554 (Martha) +I'll miss you when you're gone. 你走後,我會想念你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71447 (CK) & #893502 (Martha) +I'll see you a week from today. 我下星期的今天會和你見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #325067 (CK) & #891265 (Martha) +I'll stake my reputation on it. 我赌上我的名声。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728386 (CM) & #5624893 (verdastelo9604) +I'll telephone you every night. 我每晚都給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438082 (CK) & #6826149 (verdastelo9604) +I'm coming to see you tomorrow. 我明天會來看你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323474 (CK) & #855698 (Martha) +I'm fixing the washing machine. 我在修洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1799471 (kamikun) & #9096097 (xjjAstrus) +I'm glad I could be of service. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541912 (CK) & #5097642 (mirrorvan) +I'm going to call you tomorrow. 明天我給你打電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541902 (CK) & #3782195 (egg0073) +I'm going to change my clothes. 我要去换衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541901 (CK) & #4764622 (ryanwoo) +I'm going to go there with Tom. 我要和汤姆去那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665079 (CK) & #8696236 (crescat) +I'm going to register at a gym. 我去註冊一家健身房。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156267 (Kiwi) & #6999507 (xjjAstrus) +I'm going to see what I can do. 我要看看我能做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541883 (CK) & #6105217 (verdastelo9604) +I'm hoping that that'll happen. 我希望那會發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #7870831 (CK) & #834584 (Martha) +I'm just a plain office worker. 我只是一個普通的上班族。 CC-BY 2.0 (France) Attribution: tatoeba.org #477343 (CK) & #852157 (Martha) +I'm looking for a place to sit. 我正在找个地方坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #5004164 (CK) & #5863300 (verdastelo9604) +I'm not always free on Sundays. 我星期日並不總是有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #259865 (CK) & #850296 (Martha) +I'm not going to show any fear. 我不会表现出恐惧。 CC-BY 2.0 (France) Attribution: tatoeba.org #5659246 (CK) & #5933783 (verdastelo9604) +I'm not sure of the exact date. 我不知道確切的日期。 CC-BY 2.0 (France) Attribution: tatoeba.org #258970 (CK) & #891983 (Martha) +I'm opposed to any type of war. 我反對任何形式的戰爭。 CC-BY 2.0 (France) Attribution: tatoeba.org #255307 (CK) & #893501 (Martha) +I'm saving up to buy a new car. 我在省钱买新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #258818 (CK) & #5691280 (verdastelo9604) +I'm sorry, I don't have change. 對不起, 我沒有零錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2425 (CK) & #772038 (Martha) +I'm sorry, I don't have change. 不好意思,我没零钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2425 (CK) & #7798822 (jiangche) +I'm sorry, but it's impossible. 我很抱歉, 但它是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #269542 (CK) & #793330 (Martha) +I'm starting to agree with you. 我開始同意你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541795 (CK) & #6114448 (verdastelo9604) +I'm studying several languages. 我在学几门语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #4923346 (CK) & #5845592 (verdastelo9604) +I'm sure we'll find a solution. 我确信我们会找到解决办法的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4384183 (CK) & #7772139 (jiangche) +I'm the one who has to do this. 我是必須去做這事的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619677 (CK) & #6624742 (verdastelo9604) +I'm very glad to see you again. 我很高興再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #322500 (CK) & #891647 (Martha) +I'm waiting for you to help me. 我等着你帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3652065 (karloelkebekio) & #8592712 (easononizuka) +I've already visited Australia. 我已经游览过澳大利亚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6943193 (CK) & #8631837 (ZeroAurora) +I've always wanted to meet you. 我一直想見你。 CC-BY 2.0 (France) Attribution: tatoeba.org #28369 (CK) & #858292 (Martha) +I've been busy since yesterday. 我從昨天開始一直忙著。 CC-BY 2.0 (France) Attribution: tatoeba.org #7715146 (CK) & #846180 (Martha) +I've been here for a long time. 我在這裡很長一段時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5659389 (CK) & #919617 (Martha) +I've done everything necessary. 我做完了所有重要的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2827309 (patgfisher) & #6064653 (verdastelo9604) +I've finally got the whole set! 我終於擁有了一整套! CC-BY 2.0 (France) Attribution: tatoeba.org #327166 (CM) & #780075 (Martha) +I've finished cleaning my room. 我已經打掃完我的房間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7633544 (CK) & #846365 (Martha) +I've finished reading the book. 我看完了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #43876 (CK) & #490039 (fucongcong) +I've known her for a long time. 我已經認識她很久了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261096 (CK) & #894401 (Martha) +I've never heard of this actor. 我从没听说过这个演员。 CC-BY 2.0 (France) Attribution: tatoeba.org #56631 (AlanF_US) & #784393 (fucongcong) +I've never met such a kind man. 我从没遇到过那么好心的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #253061 (blay_paul) & #512447 (fucongcong) +If I were you, I'd do the same. 如果我是你,我也会这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #8040331 (CK) & #333157 (fucongcong) +If you bite me, I'll bite back. 如果你咬我,我就咬回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #430174 (FeuDRenais) & #796814 (fucongcong) +If you get sleepy, let me know. 困了的话就说哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4525578 (CK) & #5100235 (mirrorvan) +In case of emergency, call 119. 在緊急情況下,可撥打 119。 CC-BY 2.0 (France) Attribution: tatoeba.org #18801 (CK) & #794046 (Martha) +In case of fire, ring the bell. 萬一發生火災,按鈴。 CC-BY 2.0 (France) Attribution: tatoeba.org #23813 (CK) & #797095 (Martha) +Innocence is a beautiful thing. 纯真是一件美好的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1375 (CM) & #501346 (fucongcong) +Is everything going OK at work? 工作一切顺利吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4011882 (CK) & #5780554 (verdastelo9604) +Is it OK for me to come in now? 我现在进来方便么? CC-BY 2.0 (France) Attribution: tatoeba.org #4014096 (CK) & #5267571 (CLARET) +Is it OK to take pictures here? 这里允许拍照吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8032107 (CK) & #332926 (fucongcong) +Is it true that Tom can't swim? 汤姆真的不会游泳吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2952994 (CK) & #8709412 (slo_oth) +Is the room big enough for you? 這間房間對你來說夠大嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #319535 (CK) & #894344 (Martha) +Is there any mail for me today? 今天有給我的郵件嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2970698 (AlanF_US) & #6199254 (verdastelo9604) +Is there anything you can't do? 有你不能做的事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3197861 (CK) & #5780580 (verdastelo9604) +Is this the bus for Park Ridge? 這是去帕克里奇的巴士? CC-BY 2.0 (France) Attribution: tatoeba.org #60686 (CK) & #894423 (Martha) +Is this the train for New York? 這班是去紐約的火車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56302 (CK) & #894375 (Martha) +Is this your first trip abroad? 這是你第一次出國嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56185 (CK) & #851515 (Martha) +It could be just a coincidence. 可能只是巧合。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953038 (CK) & #5900173 (verdastelo9604) +It doesn't matter what he said. 他說的不重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #852236 (piksea) & #6132403 (verdastelo9604) +It had to be Tom that did that. 一定是汤姆做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642759 (CK) & #6093314 (verdastelo9604) +It is going to be cold tonight. 今晚會很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #243243 (CK) & #894209 (Martha) +It is no use worrying about it. 擔心它是沒有用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #41828 (CM) & #797028 (Martha) +It is our duty to obey the law. 遵守法律是我們的義務。 CC-BY 2.0 (France) Attribution: tatoeba.org #321018 (CK) & #775461 (Martha) +It is really time for us to go. 这真是我们该走的时候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266854 (Dejo) & #5691302 (verdastelo9604) +It is rude to stare at someone. 盯著別人看是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #276283 (CK) & #801346 (Martha) +It is still fresh in my memory. 我仍然記憶猶新。 CC-BY 2.0 (France) Attribution: tatoeba.org #20212 (CK) & #798315 (Martha) +It looks like Tom won the race. 看起來像是湯姆贏得了比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #37263 (CK) & #891052 (Martha) +It looks like snow, doesn't it? 看起來要下雪了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #272563 (CK) & #861396 (Martha) +It must be done more carefully. 应该更谨慎地处理它。 CC-BY 2.0 (France) Attribution: tatoeba.org #42609 (CK) & #5576746 (verdastelo9604) +It stopped snowing an hour ago. 一個小時前雪停了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27747 (CK) & #851476 (Martha) +It turned out that I was right. 結果證明我是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #246863 (CK) & #894088 (Martha) +It was Tom that saved the girl. 是湯姆救了這個小女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #46619 (CK) & #890610 (Martha) +It was fun playing in the park. 在公園裡玩很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #240412 (CK) & #893350 (Martha) +It was just a joke. Lighten up! 只是个玩笑。放松点! CC-BY 2.0 (France) Attribution: tatoeba.org #601258 (darinmex) & #818811 (fucongcong) +It was not very cold yesterday. 昨天不是很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #244476 (CK) & #850119 (Martha) +It was raining when we arrived. 我們到的時候正在下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #262515 (CK) & #864325 (Martha) +It was very hot this afternoon. 今天下午非常炎熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #242543 (CK) & #851431 (Martha) +It will be fine this afternoon. 今天下午天氣會很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242537 (CK) & #851543 (Martha) +It will cost around 10,000 yen. 這將花費約10000日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #42831 (CK) & #860725 (Martha) +It's a beautiful day, isn't it? 今天的天氣真好,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #66774 (CK) & #858029 (Martha) +It's a long way to the station. 到車站的路程很遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #25992 (CK) & #891055 (Martha) +It's a pity when somebody dies. 有人死了的时候真是遗憾。 CC-BY 2.0 (France) Attribution: tatoeba.org #1570 (CK) & #334420 (fucongcong) +It's a waste of time and money. 这是在浪费时间和金钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #42349 (CK) & #1426456 (sadhen) +It's about time we went to bed. 差不多是我們就寢的時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41694 (CK) & #892559 (Martha) +It's almost time for Tom to go. 汤姆快该走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3113301 (CK) & #5842657 (verdastelo9604) +It's already time for us to go. 到我們該走的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3175712 (Joseph) & #6119311 (verdastelo9604) +It's difficult to keep secrets. 守住秘密很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #3164480 (CK) & #8696431 (morningstar) +It's difficult to quit smoking. 戒烟难。 CC-BY 2.0 (France) Attribution: tatoeba.org #6221747 (CK) & #5894455 (verdastelo9604) +It's getting warmer day by day. 天日渐回暖。 CC-BY 2.0 (France) Attribution: tatoeba.org #281150 (CK) & #333106 (fucongcong) +It's going to get cold tonight. 今晚天气会变冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #7480483 (CK) & #8969845 (WilsonWong) +It's healthy to breathe deeply. 深呼吸有益健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #269507 (CK) & #335270 (fucongcong) +It's high time you were in bed. 你早该睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31226 (CM) & #5092045 (mirrorvan) +It's not possible to stop here. 在这停留,这不可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #2311293 (FeuDRenais) & #2307203 (Gustav249) +It's still too early to get up. 時間還早不必這麼早起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #32629 (CK) & #798057 (Martha) +Keep in mind that you must die. 你要想到你必须死。 CC-BY 2.0 (France) Attribution: tatoeba.org #814531 (BraveSentry) & #829638 (fucongcong) +Keep the money in a safe place. 把錢保存在安全的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #18593 (Swift) & #894378 (Martha) +Kuala Lumpur is worth visiting. 吉隆坡值得一遊。 CC-BY 2.0 (France) Attribution: tatoeba.org #63061 (CK) & #835648 (Martha) +Kyoto is not as large as Osaka. 京都不如大阪大。 CC-BY 2.0 (France) Attribution: tatoeba.org #19291 (CK) & #893529 (Martha) +Let me help you with your work. 讓我幫你做你的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #250115 (CK) & #894412 (Martha) +Let us know when you'll arrive. 讓我們知道你什麼時候會到。 CC-BY 2.0 (France) Attribution: tatoeba.org #20129 (CK) & #890981 (Martha) +Let's find something to sit on. 讓我們找些可以坐在上面的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #36305 (CK) & #862738 (Martha) +Let's get our photograph taken. 讓我們來拍照吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #265309 (CK) & #834629 (Martha) +Let's go and swim in the river. 讓我們去河裡游泳吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #273183 (CK) & #894063 (Martha) +Let's meet here again tomorrow. 讓我們明天再在這裡見面吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #61861 (CK) & #834998 (Martha) +Let's play tennis after school. 讓我們放學後打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321002 (CK) & #834696 (Martha) +Let's sing the song in English. 讓我們唱英文歌曲。 CC-BY 2.0 (France) Attribution: tatoeba.org #49273 (CK) & #861060 (Martha) +Let's talk about this tomorrow. 我们来讨论下明天吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007349 (CK) & #4844989 (pig8322) +Love blinded him to her faults. 愛情讓他盲目到看不到她的錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #28690 (Swift) & #803906 (Martha) +Many moons orbit around Saturn. 許多衛星繞著土星運行。 CC-BY 2.0 (France) Attribution: tatoeba.org #681652 (Source_VOA) & #918539 (Martha) +Many people envy Tom's success. 许多人嫉妒汤姆的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #1418891 (Spamster) & #4759990 (ryanwoo) +Marriage frightens some people. 有些人害怕婚姻。 CC-BY 2.0 (France) Attribution: tatoeba.org #681024 (Source_VOA) & #899973 (kanaorange) +Mary stayed up late last night. 瑪麗昨晚熬夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #31937 (CK) & #852171 (Martha) +Mary wants to become a teacher. 瑪麗想成為一名教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #31762 (CK) & #862846 (Martha) +Mary wore a simple white dress. 玛丽穿了一条朴素的白裙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1096128 (CK) & #8496245 (gumblex) +May I go to the movies tonight? 我今晚可以去看電影嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243402 (CK) & #894026 (Martha) +Maybe you should just fire Tom. 或许你就应该把汤姆开除掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3539531 (CK) & #7771859 (jiangche) +Money makes the world go round. 金钱万能。 CC-BY 2.0 (France) Attribution: tatoeba.org #531203 (lilygilder) & #5092154 (mirrorvan) +Most Americans like hamburgers. 大多數的美國人喜歡漢堡。 CC-BY 2.0 (France) Attribution: tatoeba.org #41207 (CK) & #825175 (Martha) +Mother stays at home every day. 媽媽每天待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #320861 (CK) & #859237 (Martha) +Mt. Fuji can be seen from here. 從這裡可以看到富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #477350 (CK) & #893532 (Martha) +Mt. Fuji was covered with snow. 富士山被雪所覆蓋。 CC-BY 2.0 (France) Attribution: tatoeba.org #318778 (CK) & #860672 (Martha) +My briefcase is full of papers. 我的公事包裡裝滿了文件。 CC-BY 2.0 (France) Attribution: tatoeba.org #250614 (CK) & #850359 (Martha) +My brother gave me a cute doll. 我哥哥給了我一個可愛的娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #237872 (CK) & #805228 (Martha) +My brother has become a priest. 我的兄弟已经成为了牧师。 CC-BY 2.0 (France) Attribution: tatoeba.org #649936 (Zifre) & #1417539 (sadhen) +My brother is now in Australia. 我哥哥現在在澳洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #250692 (CK) & #862893 (Martha) +My brother is small but strong. 我哥哥雖然矮小可是很強壯。 CC-BY 2.0 (France) Attribution: tatoeba.org #278567 (CK) & #859302 (Martha) +My brother likes horror movies. 我哥哥喜歡恐怖電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #237860 (CK) & #834948 (Martha) +My daughter loves jumping rope. 我女兒喜歡跳繩。 CC-BY 2.0 (France) Attribution: tatoeba.org #795246 (CK) & #797020 (Martha) +My dog goes everywhere with me. 我的狗總是跟著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #250771 (CK) & #864369 (Martha) +My dog often lies on the grass. 我家的狗經常躺在草地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #250768 (Eldad) & #8388697 (wangchou) +My father goes to work by bike. 我父親騎自行車去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #251693 (CK) & #5728707 (xjjAstrus) +My father is far from artistic. 我父親一點也不懂藝術。 CC-BY 2.0 (France) Attribution: tatoeba.org #318970 (CM) & #804529 (Martha) +My father lives in the country. 我父親住在鄉下。 CC-BY 2.0 (France) Attribution: tatoeba.org #319305 (CK) & #861309 (Martha) +My father made me wash the car. 我父親要我洗車。 CC-BY 2.0 (France) Attribution: tatoeba.org #319202 (CK) & #891054 (Martha) +My father works at the factory. 我父亲在工厂工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2255947 (FeuDRenais) & #2255509 (Venki) +My friend's father is a doctor. 我朋友的爸爸是個醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #7782974 (sharris123) & #6056447 (xjjAstrus) +My girlfriend is a good dancer. 我的女朋友跳舞跳得很棒。 CC-BY 2.0 (France) Attribution: tatoeba.org #250280 (mamat) & #8831888 (crescat) +My grandfather is very healthy. 我的祖父非常健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #273885 (CK) & #834833 (Martha) +My grandfather was a policeman. 我的祖父是警察。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850035 (CK) & #6111759 (verdastelo9604) +My legs are smaller than yours. 我的腿比你的小。 CC-BY 2.0 (France) Attribution: tatoeba.org #749283 (Serhiy) & #5945151 (verdastelo9604) +My mother did nothing but weep. 我的母亲只是默默地哭泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #320662 (CM) & #1394844 (mtdot) +My mother has good handwriting. 我母親的筆跡很好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #251843 (CK) & #834801 (Martha) +My mother plays the piano well. 我的母親鋼琴彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #251846 (CK) & #857962 (Martha) +My opinion is similar to yours. 我的觀點和你的類似。 CC-BY 2.0 (France) Attribution: tatoeba.org #250450 (CK) & #864274 (Martha) +My parents live in the country. 我父母住在鄉下。 CC-BY 2.0 (France) Attribution: tatoeba.org #252077 (CK) & #860824 (Martha) +My plane leaves at six o'clock. 我搭的飛機在六點鐘起飛。 CC-BY 2.0 (France) Attribution: tatoeba.org #72423 (CK) & #850411 (Martha) +My room is twice as big as his. 我的房間是他的兩倍大。 CC-BY 2.0 (France) Attribution: tatoeba.org #251792 (Zifre) & #788845 (Martha) +My shoes are bigger than yours. 我的鞋比你的大。 CC-BY 2.0 (France) Attribution: tatoeba.org #321483 (CK) & #857814 (Martha) +My sister goes to a university. 我妹妹上大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #250970 (CK) & #858195 (Martha) +My son believes in Santa Claus. 我兒子相信聖誕老人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1344019 (Chrikaru) & #6065894 (verdastelo9604) +My uncle lives in an apartment. 我叔叔住在公寓裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #250252 (CK) & #860753 (Martha) +My uncle lives near the school. 我叔叔住在学校附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #65069 (CK) & #332488 (fucongcong) +My uncle made a will last year. 我叔叔去年立下了遺囑。 CC-BY 2.0 (France) Attribution: tatoeba.org #266636 (CK) & #908543 (Martha) +My wife wants to adopt a child. 我妻子想收养一个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1413465 (CK) & #1415755 (sadhen) +My wish is to become a teacher. 我的願望是成為一個老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #5675714 (phantomslikeamofo) & #5673833 (xjjAstrus) +Nagoya is to the east of Kyoto. 名古屋在京都的東方。 CC-BY 2.0 (France) Attribution: tatoeba.org #322911 (CK) & #798084 (Martha) +No, thank you. I've had enough. 不,謝謝你。我已經吃飽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #66818 (CK) & #851430 (Martha) +Nobody knows where he has gone. 沒有人知道他去了哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #391970 (CK) & #858335 (Martha) +None of those books are useful. 這些書都沒有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #515617 (CK) & #856372 (Martha) +None of those books are useful. 這些書裡沒有一本是有用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #515617 (CK) & #856373 (Martha) +Not everybody can be an artist. 不是所有人都能当艺术家的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270105 (CK) & #4267421 (notabene) +Nothing is as precious as love. 沒有什麼東西是跟愛一樣珍貴的。 CC-BY 2.0 (France) Attribution: tatoeba.org #28706 (CM) & #803909 (Martha) +Now, what do you want me to do? 現在,你想讓我怎麼做? CC-BY 2.0 (France) Attribution: tatoeba.org #3563788 (CK) & #6077386 (verdastelo9604) +One of my suitcases is missing. 我的其中一个行李不见了。 CC-BY 2.0 (France) Attribution: tatoeba.org #52371 (CK) & #335846 (fucongcong) +Only you answered the question. 只有你回答了这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #17685 (CK) & #528062 (biglion) +Our refrigerator isn't working. 我們的冰箱壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #523888 (Dejo) & #9096090 (xjjAstrus) +Our school is across the river. 我們學校在河的對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #29104 (CK) & #862671 (Martha) +Our school is near the station. 我們學校在車站的附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #262570 (CK) & #860558 (Martha) +Our team lost all of its games. 我們的隊伍輸了所有的比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #644107 (CK) & #801952 (Martha) +Our team scored the first goal. 我们队进了第一个球。 CC-BY 2.0 (France) Attribution: tatoeba.org #7829881 (sharris123) & #7774760 (jiangche) +Pale ale is a low-alcohol beer. 淡啤酒是一種酒精含量低的啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #327270 (CK) & #797057 (Martha) +Pay the cashier on the way out. 在出口處的收银台付款。 CC-BY 2.0 (France) Attribution: tatoeba.org #22463 (CK) & #798152 (Martha) +Perhaps she will come tomorrow. 也許她明天會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #311566 (CK) & #845960 (Martha) +Physics is my favorite subject. 物理是我最喜歡的科目。 CC-BY 2.0 (France) Attribution: tatoeba.org #319980 (CK) & #839463 (Martha) +Playing tennis is a lot of fun. 打網球很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #39379 (CK) & #825900 (Martha) +Please add my name to the list. 請把我的名字加在名單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #322954 (CK) & #893047 (Martha) +Please add my name to the list. 請在名單上加上我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #322954 (CK) & #893048 (Martha) +Please do not open the windows. 请不要开窗。 CC-BY 2.0 (France) Attribution: tatoeba.org #797499 (FeuDRenais) & #797506 (fucongcong) +Please feel free to call me up. 請隨時都可以打電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #38503 (CK) & #785071 (Martha) +Please get me a scrap of paper. 請給我一張廢紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #503026 (CK) & #893347 (Martha) +Please give me a glass of milk. 請給我一杯牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #32207 (CK) & #894126 (Martha) +Please have someone else do it. 請讓別人去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #42240 (CK) & #864327 (Martha) +Please help me clean the house. 請幫我打掃房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #246650 (CK) & #850318 (Martha) +Please mail this letter for me. 請幫我寄信。 CC-BY 2.0 (France) Attribution: tatoeba.org #58643 (CK) & #860994 (Martha) +Please make a milkshake for me. 請幫我做個奶昔。 CC-BY 2.0 (France) Attribution: tatoeba.org #321433 (CK) & #851516 (Martha) +Please pick up my dry cleaning. 請取回我乾洗的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #62864 (CK) & #861106 (Martha) +Please show me the green shirt. 請給我看看這件綠色的襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #43456 (CK) & #852160 (Martha) +Please show me what to do next. 請告訴我下一步該做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #264345 (CK) & #894366 (Martha) +Please show me what to do next. 請讓我看看下一步該做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #264345 (CK) & #894367 (Martha) +Please speak in a louder voice. 請說話大聲一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #441968 (CK) & #856377 (Martha) +Please take me to the hospital. 請帶我去醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #318384 (CK) & #851523 (Martha) +Please tell me about your trip. 請告訴我有關你旅行的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #38574 (CK) & #861050 (Martha) +Please tell me everything's OK. 請告訴我一切都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3201194 (CK) & #6216627 (verdastelo9604) +Please tell us what to do next. 請告訴我們下一步要做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #264174 (CK) & #893351 (Martha) +Please think about the problem. 請想想這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #43754 (CK) & #881160 (Martha) +Please turn off the television. 請把電視關掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #39149 (CK) & #845987 (Martha) +Please turn off the television. 请关闭电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #39149 (CK) & #866210 (kooler) +Please wait till he comes back. 請等到他回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #283515 (CK) & #858809 (Martha) +Promises are made to be broken. 诺言就是用来打破的。 CC-BY 2.0 (France) Attribution: tatoeba.org #324186 (CK) & #1330030 (vicch) +Put some more wood on the fire. 再往火裡添些木柴。 CC-BY 2.0 (France) Attribution: tatoeba.org #31297 (CK) & #891731 (Martha) +Put the book back on the shelf. 把書放回書架上。 CC-BY 2.0 (France) Attribution: tatoeba.org #43882 (CK) & #891043 (Martha) +Put the book back where it was. 把書放回它原來的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #43895 (CK) & #894382 (Martha) +Put the egg into boiling water. 把蛋放入沸水中。 CC-BY 2.0 (France) Attribution: tatoeba.org #387562 (Mouseneb) & #333858 (fucongcong) +Raspberries are very expensive. 覆盆子很貴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2793114 (CK) & #8825049 (xjjAstrus) +Rice is grown in rainy regions. 人們在多雨地區種植水稻。 CC-BY 2.0 (France) Attribution: tatoeba.org #27170 (CK) & #798329 (Martha) +She accused me of being a liar. 她罵我是個騙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #314414 (CK) & #891124 (Martha) +She appears to have a headache. 她看起來頭痛的樣子。 CC-BY 2.0 (France) Attribution: tatoeba.org #315993 (CK) & #861107 (Martha) +She asked a very good question. 她問了一個非常好的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #311751 (CK) & #860732 (Martha) +She asked how to cook the fish. 她问了怎么烧鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #311177 (CK) & #408256 (fucongcong) +She asked me where I was going. 她問了我要去哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #314123 (CK) & #891980 (Martha) +She asked us several questions. 她问了我们好几个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #998961 (Brian255) & #799187 (fucongcong) +She became drowsy after supper. 晚飯後她變得昏昏欲睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #317320 (CK) & #836268 (Martha) +She bought a toy for her child. 她買了一個玩具給她的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #313967 (CK) & #894010 (Martha) +She came from Canada to see me. 她從加拿大來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #310672 (CK) & #890626 (Martha) +She climbed down from the roof. 她从屋顶上下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312729 (CK) & #336108 (fucongcong) +She cooked herself a good meal. 她為自己煮了好吃的一餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #314623 (CK) & #862871 (Martha) +She cooked us a wonderful meal. 她為我們煮了豐盛的一餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #311748 (CK) & #860711 (Martha) +She cut the apple with a knife. 她用刀子切蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #311855 (CK) & #893537 (Martha) +She fainted when she saw blood. 她看见血就晕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313440 (CK) & #335385 (fucongcong) +She filled her bag with apples. 她在她的袋子裡裝滿了蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #314625 (CK) & #849821 (Martha) +She filled the glass with wine. 她在玻璃杯裡裝滿了酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #310752 (CK) & #864256 (Martha) +She found a ball in the garden. 她在花園裡發現了一顆球。 CC-BY 2.0 (France) Attribution: tatoeba.org #315893 (CK) & #893536 (Martha) +She gets good marks in English. 她英语成绩很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #312675 (CK) & #343433 (fucongcong) +She gets good marks in English. 她取得了優異的英語成績。 CC-BY 2.0 (France) Attribution: tatoeba.org #312675 (CK) & #804998 (Martha) +She got good grades in English. 她在英文上取得了很好的成績。 CC-BY 2.0 (France) Attribution: tatoeba.org #312654 (CK) & #857850 (Martha) +She got good grades in English. 她的英文成績很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #312654 (CK) & #857857 (Martha) +She got on the subway at Ginza. 她在銀座搭乘了地鐵。 CC-BY 2.0 (France) Attribution: tatoeba.org #313337 (CK) & #802486 (Martha) +She got the ticket for nothing. 她免費得到這張票。 CC-BY 2.0 (France) Attribution: tatoeba.org #311548 (CK) & #802307 (Martha) +She had the nerve to speak out. 她竟敢說出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #541126 (CK) & #893179 (Martha) +She had the nerve to speak out. 她有膽量說出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #541126 (CK) & #893180 (Martha) +She has a lot of English books. 她有很多英文書。 CC-BY 2.0 (France) Attribution: tatoeba.org #311533 (CK) & #894381 (Martha) +She has never been to Hokkaido. 她從未去過北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #317107 (CK) & #856374 (Martha) +She has put on weight recently. 她最近增加了體重。 CC-BY 2.0 (France) Attribution: tatoeba.org #313289 (CK) & #860712 (Martha) +She helped me pack my suitcase. 她幫我打包我的手提箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #314046 (CK) & #861016 (Martha) +She hopes to become a designer. 她希望成為一名設計師。 CC-BY 2.0 (France) Attribution: tatoeba.org #309173 (CK) & #852195 (Martha) +She is always dressed in black. 她總是穿著黑色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #310426 (CK) & #836582 (egg0073) +She is always dressed in black. 她總是一身黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #310426 (CK) & #1243801 (tsayng) +She is certain to be surprised. 她肯定会大吃一惊的。 CC-BY 2.0 (France) Attribution: tatoeba.org #310722 (CK) & #8762952 (crescat) +She is lacking in common sense. 她缺乏常识。 CC-BY 2.0 (France) Attribution: tatoeba.org #308771 (CK) & #1746045 (sadhen) +She is what we call a bookworm. 她就是所谓的书虫。 CC-BY 2.0 (France) Attribution: tatoeba.org #310520 (CK) & #4815130 (McMeao) +She kept crying all night long. 她一整晚都在哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #312603 (CK) & #333193 (fucongcong) +She kept the secret to herself. 她守著這個秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #311397 (CK) & #795301 (Martha) +She kept various kinds of pets. 她养各种不同的宠物。 CC-BY 2.0 (France) Attribution: tatoeba.org #310511 (CK) & #333709 (fucongcong) +She left her gloves in the car. 她把她的手套留在車上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314820 (CK) & #891720 (Martha) +She likes going to the library. 她喜欢去图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1588720 (CM) & #6563547 (gumblex) +She likes to go to the library. 她喜欢去图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1588719 (CM) & #6563547 (gumblex) +She lived at 56 Russell Square. 她住在罗素广场56号。 CC-BY 2.0 (France) Attribution: tatoeba.org #327964 (CK) & #332600 (fucongcong) +She lives in a two-story house. 她住在一棟兩層樓的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #310136 (CK) & #862847 (Martha) +She looks as if she were drunk. 她看起來好像喝醉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32319 (CK) & #891042 (Martha) +She looks blue for some reason. 由于某些原因,她看起来很忧伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #311865 (CM) & #7768330 (jiangche) +She looks pretty in that dress. 她穿上那件衣服看起來很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #311409 (CK) & #860716 (Martha) +She may not come here tomorrow. 她明天可能不會來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #317159 (CK) & #852174 (Martha) +She played a tune on the piano. 她在鋼琴上彈了一首曲子。 CC-BY 2.0 (France) Attribution: tatoeba.org #312023 (CK) & #893036 (Martha) +She plays the violin very well. 她小提琴演奏得非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #311521 (CK) & #851475 (Martha) +She rarely goes out on Sundays. 她星期日很少出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #316090 (CK) & #850132 (Martha) +She thought of a good solution. 她想到了一个好的解决办法。 CC-BY 2.0 (France) Attribution: tatoeba.org #310355 (CK) & #611539 (sarah) +She told me to open the window. 她告訴我把窗戶打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #314235 (CK) & #903481 (Martha) +She turned down every proposal. 她拒绝了每一项提议。 CC-BY 2.0 (France) Attribution: tatoeba.org #311035 (CK) & #2017443 (sadhen) +She used to visit me regularly. 她以前定期來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #315888 (CK) & #852179 (Martha) +She waited for hours and hours. 她等了好幾個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #312823 (CK) & #856378 (Martha) +She warmed herself by the fire. 她在火旁邊讓自己暖和起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #312900 (CK) & #793204 (Martha) +She warned him not to go alone. 她警告了他不要一個人去。 CC-BY 2.0 (France) Attribution: tatoeba.org #316255 (CK) & #900232 (Martha) +She was afraid to travel alone. 她怕獨自旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #312563 (CK) & #849818 (Martha) +She was almost late for school. 她上學幾乎遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #312339 (CK) & #850390 (Martha) +She was arrested by the police. 她被警方逮捕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313384 (CK) & #864314 (Martha) +She was buried in her hometown. 她被安葬在她的家鄉。 CC-BY 2.0 (France) Attribution: tatoeba.org #315356 (CK) & #864386 (Martha) +She was busy with her knitting. 她忙着编织。 CC-BY 2.0 (France) Attribution: tatoeba.org #311058 (CK) & #333182 (fucongcong) +She was coming down the stairs. 她下樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #312972 (CK) & #851506 (Martha) +She was crying as she answered. 她邊哭邊回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #388579 (CK) & #864361 (Martha) +She was on the verge of crying. 她要哭出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313675 (CK) & #796633 (fucongcong) +She was out of Japan last year. 去年她离开了日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #313215 (CK) & #332787 (fucongcong) +She went to the museum by taxi. 她搭計程車去博物館了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388676 (CK) & #905878 (Martha) +She whispered something to him. 她對他小聲說了些什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #887594 (CK) & #6075919 (xjjAstrus) +She will be back within a week. 她一週之內會回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #310095 (CK) & #903044 (Martha) +She's about the same age as me. 她大約跟我同年紀。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173722 (CK) & #840746 (Martha) +She's hiding the truth from us. 她不让我们知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #1572984 (fanty) & #5897902 (verdastelo9604) +She's two years older than you. 她比你大兩歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1722035 (drnm2) & #894374 (Martha) +Should I buy something for him? 我應該買些東西給他嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #403374 (CK) & #862736 (Martha) +Shut all the doors and windows. 關閉所有的門和窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #51780 (CK) & #798242 (Martha) +Smoking is bad for your health. 吸煙對你的健康不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #40661 (CK) & #861302 (Martha) +Smoking is strictly prohibited. 严禁吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #19937 (CK) & #2027988 (ydcok) +Somebody's got to do something. 得有人做点什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891856 (CK) & #5856796 (verdastelo9604) +Someday I'll run like the wind. 有一天,我会跑得像风一样快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1519 (CK) & #334471 (fucongcong) +Someone's knocking at the door. 有人在敲門。 CC-BY 2.0 (France) Attribution: tatoeba.org #712102 (Shishir) & #778549 (Martha) +Something strange is happening. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2062718 (CK) & #8720496 (crescat) +Sorry to have kept you waiting. 對不起讓你一直等。 CC-BY 2.0 (France) Attribution: tatoeba.org #275291 (CK) & #862886 (Martha) +Sorry, I don't have any change. 不好意思,我没零钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #7843013 (sharris123) & #7798822 (jiangche) +Spanish is her native language. 西班牙语是她的母语。 CC-BY 2.0 (France) Attribution: tatoeba.org #51806 (CK) & #347044 (fucongcong) +Stop looking for problems, Tom. 别找事,汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663302 (CK) & #5670770 (verdastelo9604) +Stop making a fool of yourself. 停止愚弄你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #282404 (CK) & #859351 (Martha) +Stop putting off finding a job. 不要拖延去找工作的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #327610 (CK) & #798310 (Martha) +Strawberries are in season now. 現在是草莓的季節。 CC-BY 2.0 (France) Attribution: tatoeba.org #66417 (CK) & #836271 (Martha) +Study hard, and you'll succeed. 努力學習, 那麼你就會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #27547 (CK) & #793251 (Martha) +Sulfur burns with a blue flame. 硫磺燃燒著藍色的火焰。 CC-BY 2.0 (France) Attribution: tatoeba.org #325501 (CM) & #798050 (Martha) +Sunday is not a workday for me. 星期天不是我的工作日。 CC-BY 2.0 (France) Attribution: tatoeba.org #281841 (Eldad) & #798388 (Martha) +Sunday is not a workday for me. 我在星期日不工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #281841 (Eldad) & #798389 (Martha) +Swimming at night is dangerous. 夜里游泳很危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #323978 (CK) & #487582 (fucongcong) +Take a picture with your phone. 用你的手机拍一张照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #3109062 (Hybrid) & #7704608 (leafjensen) +Thank you for your cooperation. 謝謝您的合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #54488 (CK) & #842440 (Martha) +Thank you for your translation. 謝謝你的翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7797466 (sharris123) & #5344346 (egg0073) +Thanks for coming over tonight. 謝謝您今晚的光臨。 CC-BY 2.0 (France) Attribution: tatoeba.org #243254 (CK) & #844448 (Martha) +That boy used to drop in on me. 那男孩儿来访过我家。 CC-BY 2.0 (France) Attribution: tatoeba.org #46347 (CK) & #1394900 (mtdot) +That child can count to twenty. 这孩子能数到20。 CC-BY 2.0 (France) Attribution: tatoeba.org #68341 (bluepie88) & #333028 (fucongcong) +That film's really interesting. 那部电影很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1213530 (alec) & #472271 (fucongcong) +That fish lives in fresh water. 那魚棲息在淡水域中。 CC-BY 2.0 (France) Attribution: tatoeba.org #48710 (CK) & #2511384 (tsayng) +That mountain is easy to climb. 那座山很容易爬。 CC-BY 2.0 (France) Attribution: tatoeba.org #494219 (CK) & #874697 (Martha) +That only happens occasionally. 这只是偶发事件。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753822 (garborg) & #332893 (fucongcong) +That shouldn't be hard for you. 那对你来说应该不难。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729162 (CM) & #5650437 (verdastelo9604) +That tree is on Tom's property. 那樹是湯姆的財産。 CC-BY 2.0 (France) Attribution: tatoeba.org #5849178 (CK) & #6325101 (verdastelo9604) +That won't make any difference. 这没有任何区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #41634 (CK) & #335016 (fucongcong) +That's a face I've seen before. 這張臉我以前見過。 CC-BY 2.0 (France) Attribution: tatoeba.org #8705964 (CK) & #8706806 (shou) +That's a pretty big assumption. 那是个很大的设想。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529621 (CK) & #5691242 (verdastelo9604) +That's not a cat. That's a dog. 那不是猫。那是狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #475485 (FeuDRenais) & #476230 (fucongcong) +The baby went to sleep at once. 這個小嬰兒立刻去睡覺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272375 (CK) & #902977 (Martha) +The bill will never go through. 該法案將永遠不會通過。 CC-BY 2.0 (France) Attribution: tatoeba.org #321026 (CM) & #775475 (Martha) +The blouse costs twelve libras. 这件衬衫卖十二英镑。 CC-BY 2.0 (France) Attribution: tatoeba.org #462582 (lukaszpp) & #1397023 (mtdot) +The book was published in 1689. 这本书出版于1689年。 CC-BY 2.0 (France) Attribution: tatoeba.org #553660 (Shishir) & #1358783 (sadhen) +The boy I love doesn't love me. 我爱的那个男孩不爱我。 CC-BY 2.0 (France) Attribution: tatoeba.org #246595 (CK) & #334596 (fucongcong) +The boy made his parents happy. 這個男孩讓他的父母高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #46276 (CK) & #802270 (Martha) +The boy was naked to the waist. 男孩赤裸着上身。 CC-BY 2.0 (France) Attribution: tatoeba.org #46335 (CK) & #1324872 (vicch) +The bus leaves in five minutes. 公車將在五分鐘後開動。 CC-BY 2.0 (France) Attribution: tatoeba.org #35305 (CK) & #871129 (Martha) +The bus was filled to capacity. 這輛公車客滿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35287 (CK) & #871220 (Martha) +The car crashed into the truck. 汽車撞上了卡車。 CC-BY 2.0 (France) Attribution: tatoeba.org #265417 (CK) & #868430 (Martha) +The car is waiting at the gate. 車在門口等著。 CC-BY 2.0 (France) Attribution: tatoeba.org #264529 (CK) & #6119408 (verdastelo9604) +The castle is across the river. 城堡在河的對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #268467 (CK) & #865556 (Martha) +The cat is looking at the fish. 猫看着鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1492899 (weihaiping) & #466164 (fucongcong) +The child's body felt feverish. 這個小孩身體很燙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1019936 (CM) & #1019938 (egg0073) +The children are afraid of Tom. 孩子們怕湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3489117 (CK) & #6071016 (verdastelo9604) +The children ran down the hill. 孩子們跑下了山丘。 CC-BY 2.0 (France) Attribution: tatoeba.org #245757 (CK) & #870326 (Martha) +The children washed their feet. 孩子们洗了他们的脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #245637 (CK) & #332642 (fucongcong) +The children were flying kites. 孩子們在放風箏。 CC-BY 2.0 (France) Attribution: tatoeba.org #246074 (CK) & #840509 (Martha) +The city was destroyed by fire. 這個城市毀於火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #45050 (CK) & #868409 (Martha) +The cost of living has gone up. 生活費提高了。 CC-BY 2.0 (France) Attribution: tatoeba.org #442112 (CK) & #895846 (Martha) +The cottage was clean and tidy. 小屋干净又整洁。 CC-BY 2.0 (France) Attribution: tatoeba.org #44084 (CK) & #847806 (fucongcong) +The countryside has many trees. 乡间有很多树。 CC-BY 2.0 (France) Attribution: tatoeba.org #279100 (CK) & #332921 (fucongcong) +The dog barked at the stranger. 這隻狗對著陌生人叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #48253 (CK) & #872467 (Martha) +The dog is sitting by the bowl. 狗坐在碗旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #680463 (Source_VOA) & #5911714 (verdastelo9604) +The enemy attacked us at night. 敵人在夜間攻擊了我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #278686 (CK) & #874501 (Martha) +The entire world desires peace. 整个世界都需要和平。 CC-BY 2.0 (France) Attribution: tatoeba.org #1296560 (Eldad) & #1358623 (sadhen) +The family ate dinner together. 家裡人一起吃了晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #49308 (CK) & #6288100 (xjjAstrus) +The game ended at nine o'clock. 比賽在九點鐘結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #263520 (CK) & #870174 (Martha) +The investigation is under way. 相關調查正在進行中。 CC-BY 2.0 (France) Attribution: tatoeba.org #45028 (CK) & #794043 (Martha) +The law is full of ambiguities. 法律有很多不明确的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #44004 (CM) & #335822 (fucongcong) +The law should not be violated. 法律不應受到侵犯。 CC-BY 2.0 (France) Attribution: tatoeba.org #321022 (CM) & #775467 (Martha) +The man got away from the city. 這名男子逃離了這個城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #45277 (CK) & #804578 (Martha) +The party ended at ten o'clock. 派對在十點鐘結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #49180 (CK) & #872400 (Martha) +The pianist played two encores. 這位鋼琴家演奏了兩首安可曲。 CC-BY 2.0 (France) Attribution: tatoeba.org #49991 (CK) & #839471 (Martha) +The plane flew toward the west. 飞机向西飞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317986 (CK) & #5715118 (verdastelo9604) +The plane is about to take off. 飞机快要起飞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318068 (CK) & #8883976 (crescat) +The police held him in custody. 警方拘留了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #238151 (CK) & #864389 (Martha) +The problem was very difficult. 這個問題非常困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #43706 (CK) & #844456 (Martha) +The road is under construction. 路正在建。 CC-BY 2.0 (France) Attribution: tatoeba.org #5444080 (CK) & #6149486 (verdastelo9604) +The road was wet from the rain. 這條路因為下雨所以是濕的。 CC-BY 2.0 (France) Attribution: tatoeba.org #280477 (CK) & #902877 (Martha) +The sky grew darker and darker. 天空变得越来越暗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18280 (CK) & #1456457 (ekgermana) +The sky is full of dark clouds. 天空乌云密布。 CC-BY 2.0 (France) Attribution: tatoeba.org #462922 (lukaszpp) & #2052704 (sadhen) +The sky is full of dark clouds. 空中烏雲密佈。 CC-BY 2.0 (France) Attribution: tatoeba.org #462922 (lukaszpp) & #6152776 (xjjAstrus) +The song reminds me of my home. 这首歌让我想家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #49269 (CM) & #332873 (fucongcong) +The stream flows into the pond. 溪水流進這個池塘裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #495618 (CK) & #868280 (Martha) +The sun doesn't shine at night. 太陽在晚上不亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #324012 (CK) & #6476292 (verdastelo9604) +The sun went below the horizon. 太陽落到地平線下了。 CC-BY 2.0 (France) Attribution: tatoeba.org #275148 (CM) & #885371 (Martha) +The talks will last three days. 这场谈话将要持续三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163177 (Source_VOA) & #2581519 (fenfang557) +The towel wasn't useful at all. 毛巾完全没起作用。 CC-BY 2.0 (France) Attribution: tatoeba.org #1170417 (CK) & #2442255 (ydcok) +The traffic light turned green. 紅綠燈變成綠色了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268842 (CK) & #842483 (Martha) +The two teams fought very hard. 两队打了场硬仗。 CC-BY 2.0 (France) Attribution: tatoeba.org #50744 (CK) & #336886 (fucongcong) +The village has no electricity. 村里没通电。 CC-BY 2.0 (France) Attribution: tatoeba.org #1804113 (Spamster) & #7772130 (jiangche) +The visitor sat across from me. 訪客坐在我的對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #19901 (CK) & #875058 (Martha) +Their house is being remodeled. 他們的房子正在裝潢。 CC-BY 2.0 (France) Attribution: tatoeba.org #305150 (CK) & #794032 (Martha) +Their wedding will be tomorrow. 他们的婚礼将在明天举行。 CC-BY 2.0 (France) Attribution: tatoeba.org #305184 (CK) & #335382 (fucongcong) +There are holes in the ceiling. 天花板上有洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #7832940 (sharris123) & #2035068 (Venki) +There are many hotels downtown. 市中心有很多旅馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #41101 (CK) & #414614 (fucongcong) +There are many slums in Mexico. 在墨西哥有很多貧民窟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1156838 (wma) & #4953631 (umidake) +There are no clouds in the sky. 天上没有云。 CC-BY 2.0 (France) Attribution: tatoeba.org #425820 (CK) & #335530 (fucongcong) +There are some eggs in the box. 盒子裡有一些蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #282641 (CK) & #905946 (Martha) +There is a picture on the wall. 牆上有一幅畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #320252 (CK) & #907539 (Martha) +There is an apple on the table. 桌上有个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #39609 (CK) & #334725 (fucongcong) +There is no fire without smoke. 沒有不冒煙的火。 CC-BY 2.0 (France) Attribution: tatoeba.org #25901 (Swift) & #806241 (Martha) +There is one apple on the desk. 桌上有个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #20567 (blay_paul) & #334725 (fucongcong) +There is one apple on the desk. 书桌上有一个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #20567 (blay_paul) & #745821 (fucongcong) +There isn't a cloud in the sky. 天上没有一片云。 CC-BY 2.0 (France) Attribution: tatoeba.org #1511070 (weihaiping) & #426400 (fucongcong) +There isn't anyone in the room. 房間裡沒有任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #319512 (CK) & #865489 (Martha) +There used to be a bridge here. 以前這裡有一座橋。 CC-BY 2.0 (France) Attribution: tatoeba.org #63676 (CK) & #896508 (Martha) +There used to be a prison here. 這裡以前有一座監獄。 CC-BY 2.0 (France) Attribution: tatoeba.org #61792 (CK) & #900729 (Martha) +There was no water in the well. 這口井裡沒有水。 CC-BY 2.0 (France) Attribution: tatoeba.org #27885 (CK) & #895791 (Martha) +There was nobody in the garden. 花園裡沒有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #278473 (CK) & #868493 (Martha) +There's a doghouse in the yard. 院子里的是狗屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #2510198 (AlanF_US) & #3780997 (Debbie_Linder) +There's a telephone in my room. 我的房里有部电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #473576 (CK) & #345940 (fucongcong) +There's a telephone in my room. 我的房間裡有一支電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #473576 (CK) & #873202 (Martha) +There's always someone talking. 總是會有人談論。 CC-BY 2.0 (France) Attribution: tatoeba.org #910696 (CK) & #919603 (Martha) +There's always someone talking. 總是會有人說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #910696 (CK) & #919609 (Martha) +There's an orange on the table. 桌上有一只橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #996346 (Eldad) & #334500 (fucongcong) +There's no film in this camera. 這個相機裡沒有胶卷。 CC-BY 2.0 (France) Attribution: tatoeba.org #986472 (CK) & #6132214 (verdastelo9604) +There's no need to hail a taxi. 没必要叫出租车。 CC-BY 2.0 (France) Attribution: tatoeba.org #5313708 (csmjj) & #2052722 (sadhen) +There's no one in your bedroom. 你的卧室里没有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1358579 (CK) & #4972631 (wzhd) +There's no reason to get angry. 沒有生气的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268732 (_undertoad) & #6628379 (verdastelo9604) +There's not a cloud in the sky. 天上没有云。 CC-BY 2.0 (France) Attribution: tatoeba.org #507297 (FeuDRenais) & #335530 (fucongcong) +There's nothing else we can do. 没有我们能还做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287018 (CK) & #5942061 (verdastelo9604) +There's something in your hair. 你头发上粘着什么东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4717494 (xorgy) & #4903270 (musclegirlxyp) +There's something odd going on. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064859 (CK) & #8720496 (crescat) +These shoes are too big for me. 这双鞋对我来说太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #454438 (FeuDRenais) & #2255117 (Venki) +They are all innocent children. 他们都是天真的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #354276 (Hautis) & #792809 (fucongcong) +They are all innocent children. 他们都是无辜的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #354276 (Hautis) & #792810 (fucongcong) +They are making for the forest. 他们正向森林而去。 CC-BY 2.0 (France) Attribution: tatoeba.org #306920 (CM) & #2393835 (fenfang557) +They decided to build a bridge. 他們決定建一座橋。 CC-BY 2.0 (France) Attribution: tatoeba.org #306381 (CK) & #870153 (Martha) +They didn't keep their promise. 他們沒有信守諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #307624 (CK) & #844493 (Martha) +They didn't obey their parents. 他們沒有遵從他們的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #307673 (CK) & #840428 (Martha) +They gave a series of concerts. 他們辦了一系列的音樂會。 CC-BY 2.0 (France) Attribution: tatoeba.org #306172 (CK) & #818948 (Martha) +They go to church every Sunday. 他們每個星期天上教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #307564 (CK) & #874289 (Martha) +They have been here since 1989. 他們自1989年以來一直在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #305405 (CK) & #873488 (Martha) +They killed time playing cards. 他們玩牌來殺時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #305955 (CK) & #781188 (Martha) +They made us work all day long. 他們讓我們工作了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #306663 (CK) & #795800 (Martha) +They may have missed the train. 他們可能錯過了火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #305871 (CK) & #875091 (Martha) +They must have had an accident. 他們一定發生了意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #279412 (CK) & #872197 (Martha) +They serve excellent food here. 他們這裡提供一流的美食。 CC-BY 2.0 (France) Attribution: tatoeba.org #61969 (CK) & #836148 (Martha) +They studied English yesterday. 他們昨天學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #306601 (CK) & #832951 (Martha) +They told me it was your fault. 他们告诉我这是你的错。 CC-BY 2.0 (France) Attribution: tatoeba.org #1533771 (erikspen) & #5856756 (verdastelo9604) +They were alone in the library. 他們獨自在圖書館裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #270689 (CK) & #874480 (Martha) +They won't come until tomorrow. 他們直到明天前不會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #307597 (CK) & #842396 (Martha) +They won't come until tomorrow. 他們明天才會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #307597 (CK) & #842397 (Martha) +Things are not clearly defined. 事情还没解释清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #1953317 (CM) & #5585225 (verdastelo9604) +This bike needs to be repaired. 这辆自行车需要修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #386700 (Mouseneb) & #334533 (fucongcong) +This bomb can kill many people. 这个炸弹可以炸死很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #57523 (CM) & #333893 (fucongcong) +This booklet is free of charge. 這本小冊子是免費的。 CC-BY 2.0 (France) Attribution: tatoeba.org #58503 (CK) & #769840 (Martha) +This box is too bulky to carry. 這個箱子太笨重了無法攜帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #57506 (CK) & #895816 (Martha) +This car isn't worth repairing. 這輛車不值得修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #58706 (CK) & #838592 (Martha) +This dictionary is my sister's. 這本字典是我妹妹的。 CC-BY 2.0 (France) Attribution: tatoeba.org #58825 (CK) & #844490 (Martha) +This doesn't seem normal to me. 我看這不正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #2400088 (CK) & #6111814 (verdastelo9604) +This doghouse was built by Tom. 这狗屋是汤姆建的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4665027 (CK) & #5983684 (verdastelo9604) +This has nothing to do with me. 这不关我的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #697824 (papabear) & #2028032 (ydcok) +This has nothing to do with me. 此事与我无关。 CC-BY 2.0 (France) Attribution: tatoeba.org #697824 (papabear) & #2028033 (ydcok) +This hotel was built last year. 這家旅館是去年蓋的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60481 (CK) & #871195 (Martha) +This house belongs to my uncle. 這棟房子屬於我的叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #60139 (CK) & #872434 (Martha) +This house is really beautiful. 这房子真漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #8860561 (iiujik) & #8698976 (crescat) +This is a picture of my family. 這是一張我全家的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #55624 (CK) & #895620 (Martha) +This is a picture of my family. 這是一張我的全家福照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #55624 (CK) & #895622 (Martha) +This is a picture of my mother. 這張是我媽媽的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #56193 (CK) & #902994 (Martha) +This is a picture of my sister. 這是我姊姊的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #55609 (CK) & #895028 (Martha) +This is a well-written article. 這是篇寫得很好的文章。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503005 (CK) & #4504416 (egg0073) +This is about as large as that. 這個大約跟那個一樣大。 CC-BY 2.0 (France) Attribution: tatoeba.org #516682 (CK) & #905895 (Martha) +This is the cheaper of the two. 這是兩件裡便宜的那個。 CC-BY 2.0 (France) Attribution: tatoeba.org #280823 (CK) & #6101330 (verdastelo9604) +This is the house where I live. 这是我住的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #56203 (CK) & #2032302 (ydcok) +This job pays 10,000 yen a day. 這個工作一天有10,000日圓的報酬。 CC-BY 2.0 (France) Attribution: tatoeba.org #59118 (CK) & #858780 (Martha) +This may not be a real diamond. 這可能不是一顆真的鑽石。 CC-BY 2.0 (France) Attribution: tatoeba.org #55393 (CK) & #905870 (Martha) +This medicine will do you good. 这药对你有好处。 CC-BY 2.0 (France) Attribution: tatoeba.org #56567 (CM) & #336866 (fucongcong) +This noise is driving me crazy. 這個噪聲快把我逼瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #480130 (CK) & #865565 (Martha) +This really is a nice surprise. 真是个惊喜! CC-BY 2.0 (France) Attribution: tatoeba.org #7829984 (CK) & #1314406 (vicch) +This room has air conditioning. 這個房間有空調。 CC-BY 2.0 (France) Attribution: tatoeba.org #57351 (CK) & #781158 (Martha) +This table is made out of wood. 这张桌子是木的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60864 (CK) & #785835 (fucongcong) +Those houses are 500 years old. 那些房子有500年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67013 (CK) & #886578 (Martha) +To master English is difficult. 精通英語是困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #26238 (CM) & #826195 (Martha) +Today is my sixteenth birthday. 今天是我十六歲的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #242865 (CK) & #838583 (Martha) +Tom added broccoli to the stew. 汤姆往炖菜里加了西兰花。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529615 (CK) & #5613725 (verdastelo9604) +Tom always seems to be working. 湯姆看來總是在工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5153925 (CK) & #6077494 (verdastelo9604) +Tom and Mary are close friends. Tom和Mary是親密的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029929 (CK) & #4189980 (egg0073) +Tom apologized for what he did. 湯姆為他所做的事道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027120 (CK) & #6585426 (verdastelo9604) +Tom asked Mary to stop the car. 湯姆讓瑪麗停住車。 CC-BY 2.0 (France) Attribution: tatoeba.org #5641850 (CK) & #6073882 (verdastelo9604) +Tom claims he doesn't remember. 湯姆聲稱他不記得了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2279317 (CK) & #6585414 (verdastelo9604) +Tom clapped his hands together. 湯姆拍了手。 CC-BY 2.0 (France) Attribution: tatoeba.org #4471299 (Hybrid) & #5812342 (xjjAstrus) +Tom climbed down from the tree. 汤姆从树上爬了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026680 (CK) & #7767574 (jiangche) +Tom could've called the police. 汤姆本可以报警的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916695 (CK) & #8550324 (slo_oth) +Tom could've called the police. 汤姆本可以叫警察的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916695 (CK) & #8550325 (slo_oth) +Tom didn't give an explanation. 汤姆没做解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #5852190 (CK) & #5862117 (verdastelo9604) +Tom died in a traffic accident. 湯姆死於交通事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026252 (CK) & #6114403 (verdastelo9604) +Tom doesn't know how bad it is. 湯姆不知道它有多壞。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664985 (CK) & #6098456 (verdastelo9604) +Tom finished college last year. 湯姆去年上完了大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664972 (CK) & #6075706 (verdastelo9604) +Tom found out where Mary lives. 湯姆找到了瑪麗的住處。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028901 (CK) & #6064715 (verdastelo9604) +Tom gave Mary a ride to Boston. 汤姆载玛丽去波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #5374489 (CK) & #5571945 (verdastelo9604) +Tom goes to work by motorcycle. 湯姆騎摩托車上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025669 (CK) & #6145404 (verdastelo9604) +Tom got first prize, didn't he? 湯姆得了第一名,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #37400 (CK) & #804556 (Martha) +Tom has a 13-year-old daughter. Tom有個十三歲的女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493593 (CK) & #4504489 (egg0073) +Tom has a girlfriend in Boston. Tom有個在波士頓的女友。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493592 (CK) & #4504486 (egg0073) +Tom has a large jar of pennies. 湯姆有一大罐零錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5997702 (Hybrid) & #6134979 (verdastelo9604) +Tom has always been a bachelor. 汤姆一直都是单身汉。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350664 (CK) & #8739613 (slo_oth) +Tom has been quite cooperative. 汤姆很合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3431209 (CK) & #4972572 (wzhd) +Tom has changed his mind again. 汤姆又改变了他的主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #5643136 (CK) & #8751438 (slo_oth) +Tom has no brothers or sisters. Tom沒有兄弟也沒有姊妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493591 (CK) & #4504482 (egg0073) +Tom hasn't lost his confidence. 湯姆還沒有失去信心。 CC-BY 2.0 (France) Attribution: tatoeba.org #5732590 (CM) & #6145396 (verdastelo9604) +Tom is a good friend of Mary's. 汤姆是玛丽的一个好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642651 (CK) & #5091364 (mirrorvan) +Tom is a native French speaker. 汤姆是法语母语者。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451475 (CK) & #5780562 (verdastelo9604) +Tom is a professional magician. 汤姆是个专业的魔术师。 CC-BY 2.0 (France) Attribution: tatoeba.org #6657715 (CK) & #8854614 (crescat) +Tom is certain to come on time. 汤姆一定会准时来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025067 (CK) & #7772145 (jiangche) +Tom is leaving Boston tomorrow. 湯姆明天離開波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023632 (CK) & #6568276 (verdastelo9604) +Tom is now a software engineer. 湯姆現在是軟體工程師。 CC-BY 2.0 (France) Attribution: tatoeba.org #5834714 (CK) & #6109360 (verdastelo9604) +Tom is on good terms with John. 汤姆和约翰关系很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #37280 (CK) & #2143991 (ydcok) +Tom is on the go day and night. 汤姆日夜兼程。 CC-BY 2.0 (France) Attribution: tatoeba.org #2662382 (sharptoothed) & #5763017 (verdastelo9604) +Tom is quite likely to be late. 湯姆很可能遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #3922269 (CK) & #6065901 (verdastelo9604) +Tom is serving a life sentence. 汤姆正在服无期徒刑。 CC-BY 2.0 (France) Attribution: tatoeba.org #5834805 (CK) & #8635814 (slo_oth) +Tom is working the night shift. 湯姆上夜班。 CC-BY 2.0 (France) Attribution: tatoeba.org #5853796 (CK) & #6119487 (verdastelo9604) +Tom isn't very strict about it. 湯姆對此不嚴格。 CC-BY 2.0 (France) Attribution: tatoeba.org #5836373 (CK) & #6635841 (verdastelo9604) +Tom knows that we aren't happy. 湯姆知道我們不高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #7176620 (CK) & #6447551 (verdastelo9604) +Tom likes chocolate cake a lot. 汤姆很喜欢巧克力蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #5496399 (CK) & #5967293 (verdastelo9604) +Tom likes sitting on the floor. 汤姆喜欢坐在地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #6523463 (CK) & #8938654 (crescat) +Tom looked a little frightened. 湯姆看來受了點驚嚇。 CC-BY 2.0 (France) Attribution: tatoeba.org #3121679 (CK) & #8570950 (verdastelo9604) +Tom needs the money right away. 湯姆現在就需要錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164389 (CK) & #6107067 (verdastelo9604) +Tom plays chess better than me. 汤姆下国际象棋比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4556601 (dbahasa) & #5611649 (verdastelo9604) +Tom put his keys in his pocket. 湯姆把他的鈅匙放在他的口袋裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541671 (CK) & #6728906 (verdastelo9604) +Tom put his wallet on the desk. 汤姆把钱包放在了桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2481313 (CK) & #8933591 (crescat) +Tom searched inside the closet. 汤姆搜查了衣柜里面。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736398 (CK) & #5091321 (mirrorvan) +Tom should have plenty of time. 汤姆应该有很多时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092927 (CK) & #5845638 (verdastelo9604) +Tom told me he was coming back. 湯姆告訴我他正在回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350271 (CK) & #6535848 (verdastelo9604) +Tom told me he'd be right back. 汤姆告诉我他会马上回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350226 (CK) & #8514620 (gumblex) +Tom turned on the electric fan. 湯姆打開了電風扇。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794454 (sharris123) & #5246181 (xjjAstrus) +Tom undressed and got into bed. 汤姆脱光睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017042 (CK) & #5581826 (verdastelo9604) +Tom was afraid to ask for help. 汤姆不敢求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #3161773 (CK) & #5574712 (verdastelo9604) +Tom was hiding under the table. Tom躲在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541645 (CK) & #332772 (fucongcong) +Tom was in Boston last weekend. 湯姆上週末在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664933 (CK) & #6197302 (verdastelo9604) +Tom wasn't surprised to see me. 汤姆见到我并没有惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #6350142 (CK) & #8834995 (crescat) +Tom went there to learn French. 汤姆去那里学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451472 (CK) & #5903474 (verdastelo9604) +Tom won't let you in his house. 汤姆不会让你进他的屋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541638 (CK) & #5581764 (verdastelo9604) +Tom's house has three bedrooms. Tom的房子有三個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493590 (CK) & #4504481 (egg0073) +Tom's life was changed forever. 湯姆的生活被彻底改變了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1524709 (Spamster) & #6065364 (verdastelo9604) +Tomorrow I have to go shopping. 明天我得购物。 CC-BY 2.0 (France) Attribution: tatoeba.org #5177276 (tabular) & #5650403 (verdastelo9604) +Tomorrow I'm going to Shanghai. 我明天要去上海。 CC-BY 2.0 (France) Attribution: tatoeba.org #1953205 (CM) & #1953188 (egg0073) +Turn right at the intersection. 在十字路口右转。 CC-BY 2.0 (France) Attribution: tatoeba.org #722540 (kebukebu) & #389828 (fucongcong) +Two tears fell down her cheeks. 两滴眼泪从她的脸颊滑落下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #72766 (CK) & #8727847 (crescat) +Ueno is the station after next. 下下一站是上野站。 CC-BY 2.0 (France) Attribution: tatoeba.org #268366 (CK) & #797032 (Martha) +Very few people live to be 100. 很少人活到100岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266465 (yifen238) & #389421 (fucongcong) +Walk two blocks, and turn left. 走過兩個街區,然後左轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #72904 (CM) & #798238 (Martha) +War doesn't make anybody happy. 战争不会使任何人幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #273303 (CK) & #335259 (fucongcong) +Was Tom watching TV last night? 湯姆昨天晚上在看電視嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6249725 (CK) & #6826141 (verdastelo9604) +Water is indispensable to life. 水是生命所不可缺少的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270822 (CK) & #5698033 (verdastelo9604) +We are going to leave tomorrow. 我們明天要離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #247851 (CK) & #875120 (Martha) +We are sorry we can't help you. 我们很遗憾没能帮助你们。 CC-BY 2.0 (France) Attribution: tatoeba.org #262696 (CK) & #4084073 (sadhen) +We can deliver it this evening. 我們今天晚上可以運送它。 CC-BY 2.0 (France) Attribution: tatoeba.org #242637 (CK) & #872391 (Martha) +We didn't know what to do next. 我們不知道下一步要做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #247764 (CK) & #896385 (Martha) +We don't have any other choice. 我们别无选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269592 (FeuDRenais) & #2254383 (KerenDeng) +We enjoyed ourselves very much. 我們玩的很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #248229 (CK) & #844452 (Martha) +We found the front door locked. 我們發現前門被鎖上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23013 (CK) & #805042 (Martha) +We got permission to park here. 我們有在這裡停車的許可。 CC-BY 2.0 (France) Attribution: tatoeba.org #3313015 (CK) & #6145401 (verdastelo9604) +We had a heavy rain last night. 昨晚下了一場大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244759 (CK) & #796071 (Martha) +We had a lot of rain yesterday. 昨天下很多雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244399 (CK) & #907861 (Martha) +We had a lot of snow last year. 去年下了很多雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #19421 (CK) & #336618 (fucongcong) +We had a mild winter last year. 去年冬天很暖和。 CC-BY 2.0 (France) Attribution: tatoeba.org #19427 (CK) & #900230 (Martha) +We had a welcome party for her. 我們為她舉辦了一個歡迎會。 CC-BY 2.0 (France) Attribution: tatoeba.org #309124 (CK) & #796048 (Martha) +We have plenty of time tonight. 今晚我们有充分的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #243379 (CK) & #335345 (fucongcong) +We have some decisions to make. 我们要做些决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312423 (CK) & #5650458 (verdastelo9604) +We just don't have enough time. 我们没有足够的时间了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5538567 (CK) & #5632404 (verdastelo9604) +We made pancakes for breakfast. 我们早餐做了煎饼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2112 (CK) & #503212 (fucongcong) +We moved to New York last fall. 我們去年秋天搬到了紐約。 CC-BY 2.0 (France) Attribution: tatoeba.org #19431 (CK) & #900214 (Martha) +We often eat fish raw in Japan. 我們在日本常常吃生魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #281206 (CK) & #903612 (Martha) +We plan to climb that mountain. 我們計劃去爬那座山。 CC-BY 2.0 (France) Attribution: tatoeba.org #409471 (CK) & #875081 (Martha) +We played basketball yesterday. 我們昨天打籃球。 CC-BY 2.0 (France) Attribution: tatoeba.org #248740 (CK) & #771500 (Martha) +We played poker the entire day. 我们用了一整天打扑克。 CC-BY 2.0 (France) Attribution: tatoeba.org #4768074 (garborg) & #4765458 (ryanwoo) +We should all sleep easier now. 我們現在都該早點睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5729712 (CM) & #6198953 (verdastelo9604) +We should've been more careful. 我們應該更小心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678543 (CK) & #872210 (Martha) +We think Tom will be back soon. 我們認為湯姆會很快回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #6438095 (CK) & #6472026 (verdastelo9604) +We took a walk along the river. 我們沿著河散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #248976 (CK) & #903344 (Martha) +We took part in the discussion. 我們參加了討論。 CC-BY 2.0 (France) Attribution: tatoeba.org #248079 (CK) & #872209 (Martha) +We took turns with the driving. 我們輪流駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #22997 (CK) & #871071 (Martha) +We toured all the major cities. 我们游览了所有主要城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #686970 (ulyssemc1) & #5900380 (verdastelo9604) +We traveled to Mexico by plane. 我們搭飛機去墨西哥旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #22690 (CK) & #778711 (Martha) +We went into the red last year. 我们去年遇到了赤字。 CC-BY 2.0 (France) Attribution: tatoeba.org #244706 (CM) & #333588 (fucongcong) +We were nearly frozen to death. 我们几乎被冻死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23280 (CK) & #1438579 (asosan) +We will stay here until Sunday. 星期天前我們將會待在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #249146 (CK) & #874213 (Martha) +We'll go when it quits raining. 雨停了我們就會去。 CC-BY 2.0 (France) Attribution: tatoeba.org #503838 (CK) & #874156 (Martha) +We're going to be here all day. 我們要在這裡待一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310835 (CK) & #6165432 (verdastelo9604) +We're going to set up shelters. 我们要建立避难所。 CC-BY 2.0 (France) Attribution: tatoeba.org #5729664 (CM) & #5958729 (verdastelo9604) +We're just about finished here. 我們快要結束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #954485 (CK) & #1270568 (tsayng) +We're very disappointed in you. 我们对你很失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953947 (CK) & #5856787 (verdastelo9604) +We've decided to remain silent. 我們決定要保持沉默。 CC-BY 2.0 (France) Attribution: tatoeba.org #665754 (qdii) & #3718932 (egg0073) +We've got to get you some help. 我们不得不给你一点帮助了 CC-BY 2.0 (France) Attribution: tatoeba.org #3161719 (CK) & #5975063 (zhangxr91) +We've spent too much time here. 我們在這裡花了太多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3045593 (sharptoothed) & #6623193 (verdastelo9604) +Wear whatever you want to wear. 穿你想穿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2852093 (CK) & #5911765 (verdastelo9604) +Were you in America last month? 你上個月在美國嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69160 (CK) & #865488 (Martha) +Were you in Boston last summer? 你上个夏季在波士顿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4500518 (CK) & #5715196 (verdastelo9604) +Wet clothes stick to your skin. 濕衣服貼著你的皮膚。 CC-BY 2.0 (France) Attribution: tatoeba.org #495641 (CK) & #874494 (Martha) +What are you going to do today? 你今天要做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #242789 (CK) & #905856 (Martha) +What are you reading right now? 你在看什么? CC-BY 2.0 (France) Attribution: tatoeba.org #7033260 (Hybrid) & #7768300 (jiangche) +What are you two arguing about? 你們兩個在爭論甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #4017446 (CK) & #6145398 (verdastelo9604) +What are your thoughts on this? 你觉得这个怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1571127 (Spamster) & #8631087 (ZeroAurora) +What did Tom expect Mary to do? 汤姆打算让玛丽做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1092131 (CK) & #5965723 (verdastelo9604) +What did you do last Christmas? 去年圣诞节做了什么了? CC-BY 2.0 (France) Attribution: tatoeba.org #1218346 (CM) & #5097658 (mirrorvan) +What did you do with that book? 你用那本書做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #515612 (CK) & #895144 (Martha) +What did you get for Christmas? 你耶誕節得到了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #62811 (CK) & #872430 (Martha) +What did you say your name was? 你說你叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #467822 (CK) & #895571 (Martha) +What do you have for breakfast? 你早餐吃什么? CC-BY 2.0 (France) Attribution: tatoeba.org #15893 (Swift) & #334256 (fucongcong) +What do you know about the CIA? 你知道中央情报局的什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1886763 (CK) & #5818091 (verdastelo9604) +What do you need the money for? 你要这钱干嘛? CC-BY 2.0 (France) Attribution: tatoeba.org #16458 (CK) & #471309 (fucongcong) +What do you really want to say? 你实际上想说什么? CC-BY 2.0 (France) Attribution: tatoeba.org #5255820 (CK) & #5942077 (verdastelo9604) +What do you think of this plan? 你覺得這個計畫如何? CC-BY 2.0 (France) Attribution: tatoeba.org #59520 (CK) & #902940 (Martha) +What do you want for Christmas? 想要什么样的圣诞节礼物呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2014383 (CK) & #5097659 (mirrorvan) +What do you want for breakfast? 你早餐想要吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #277779 (CK) & #868451 (Martha) +What do you want me to do, Tom? 你想讓我做甚麼,湯姆? CC-BY 2.0 (France) Attribution: tatoeba.org #1920680 (Spamster) & #6147565 (verdastelo9604) +What does everybody else think? 其他人怎麼想? CC-BY 2.0 (France) Attribution: tatoeba.org #4890860 (CK) & #6028212 (verdastelo9604) +What does he say in his letter? 他在信上说什么? CC-BY 2.0 (France) Attribution: tatoeba.org #286627 (CK) & #334634 (fucongcong) +What else have you figured out? 你还发现什么了? CC-BY 2.0 (France) Attribution: tatoeba.org #3395905 (CK) & #5630437 (verdastelo9604) +What happened to you yesterday? 你昨天發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #244564 (CK) & #842457 (Martha) +What happened to your computer? 你的電腦怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #5285527 (CK) & #6309815 (verdastelo9604) +What have you done with my bag? 你用我的袋子做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #250286 (CK) & #895166 (Martha) +What have you done with my pen? 你把我的筆怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #321461 (CK) & #907541 (Martha) +What have you done with my pen? 你用我的筆做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #321461 (CK) & #907542 (Martha) +What he says is total nonsense. 他说的话根本毫无意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481674 (weihaiping) & #335127 (fucongcong) +What is the name of that river? 這條河叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #67083 (CK) & #900244 (Martha) +What is the name of that river? 這條河的名字是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #67083 (CK) & #900246 (Martha) +What is the name of this river? 這條河叫什麼名字? CC-BY 2.0 (France) Attribution: tatoeba.org #58126 (CK) & #900244 (Martha) +What is the name of this river? 這條河的名字是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #58126 (CK) & #900246 (Martha) +What sound does a giraffe make? 长颈鹿是怎么叫的? CC-BY 2.0 (France) Attribution: tatoeba.org #2921563 (CK) & #8955171 (crescat) +What time does the movie start? 電影什麼時候開始? CC-BY 2.0 (France) Attribution: tatoeba.org #4051598 (CK) & #918096 (Martha) +What time does the movie start? 电影什么时间开始? CC-BY 2.0 (France) Attribution: tatoeba.org #4051598 (CK) & #5097878 (mirrorvan) +What were you up to last night? 你昨天晚上做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #885662 (Trailsend) & #775876 (Martha) +What would you all like to eat? 你們想吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #7262702 (CK) & #6057676 (xjjAstrus) +What would you like for supper? 你晚餐想吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #324627 (CK) & #864416 (Martha) +What's the exchange rate today? 今天的匯率是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #2713011 (CK) & #871097 (Martha) +What's the point in doing that? 那樣做有什麼用? CC-BY 2.0 (France) Attribution: tatoeba.org #449972 (CK) & #874971 (Martha) +What's the point in doing that? 幹嘛那麼麻煩? CC-BY 2.0 (France) Attribution: tatoeba.org #449972 (CK) & #874972 (Martha) +What's the worst-case scenario? 最坏的情境是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1529453 (Spamster) & #2518629 (fenfang557) +When I arrived, it was raining. 當我到達時,天正下著雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #246966 (CK) & #801441 (Martha) +When I heard the news, I cried. 當我聽到這個消息,我哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45194 (CK) & #798380 (Martha) +When I woke up, it was snowing. 當我醒來時,天正下著雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2681494 (iainmb93) & #801443 (Martha) +When did you learn how to swim? 你什么时候学会游泳的? CC-BY 2.0 (France) Attribution: tatoeba.org #4533256 (chloehuangAtsugi) & #621068 (Yashanti) +When did your father come home? 你爸爸什麼時候回家? CC-BY 2.0 (France) Attribution: tatoeba.org #64078 (CK) & #875085 (Martha) +When do you practice the piano? 你什麼時候練習彈鋼琴? CC-BY 2.0 (France) Attribution: tatoeba.org #70199 (CK) & #869882 (Martha) +When does the next train leave? 下一班火車什麼時候開? CC-BY 2.0 (France) Attribution: tatoeba.org #264302 (CK) & #872106 (Martha) +When will that new school open? 那是新学校什么时候开学? CC-BY 2.0 (France) Attribution: tatoeba.org #1570650 (fanty) & #4764540 (ryanwoo) +When would you like to see him? 你想要什麼時候見他? CC-BY 2.0 (France) Attribution: tatoeba.org #284547 (CK) & #895905 (Martha) +When you're here, I feel safer. 你在這裡的時候,我感到更安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #3238866 (CK) & #6630018 (verdastelo9604) +Where are you going to take me? 你們要帶我去哪? CC-BY 2.0 (France) Attribution: tatoeba.org #7785178 (sharris123) & #4189391 (egg0073) +Where are you planning to stay? 你打算在哪裡留宿? CC-BY 2.0 (France) Attribution: tatoeba.org #38123 (CK) & #874141 (Martha) +Where can we make a phone call? 我們能在哪裡打電話? CC-BY 2.0 (France) Attribution: tatoeba.org #693478 (Shishir) & #6146506 (verdastelo9604) +Where does this street lead to? 這條街通到哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #57628 (CK) & #6098071 (verdastelo9604) +Which is heavier, lead or gold? 哪個比較重,鉛還是黃金? CC-BY 2.0 (France) Attribution: tatoeba.org #25779 (CK) & #875084 (Martha) +Which one are you referring to? 你指的是哪个? CC-BY 2.0 (France) Attribution: tatoeba.org #3168078 (CK) & #5829620 (verdastelo9604) +Who did you see at the station? 你在車站看見了誰? CC-BY 2.0 (France) Attribution: tatoeba.org #26101 (CK) & #907512 (Martha) +Who else in Boston do you know? 你还認識波士頓的誰? CC-BY 2.0 (France) Attribution: tatoeba.org #3302696 (CK) & #6101367 (verdastelo9604) +Who is the author of this book? 這本書的作者是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #57068 (CK) & #907874 (Martha) +Who will take care of the baby? 誰將照顧這個嬰兒? CC-BY 2.0 (France) Attribution: tatoeba.org #276209 (CK) & #896630 (Martha) +Who's the author of this story? 这本小说的作者是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #7784981 (CK) & #811007 (fucongcong) +Who's the boss of this company? 这家公司的老板是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #7856241 (CK) & #811010 (fucongcong) +Who's the girl in this picture? 這張照片裡的女孩是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #7784970 (CK) & #894954 (Martha) +Why are you being so secretive? 你為什麼這麼神秘? CC-BY 2.0 (France) Attribution: tatoeba.org #36395 (CK) & #871221 (Martha) +Why are you just sitting there? 你为什么就站在这里? CC-BY 2.0 (France) Attribution: tatoeba.org #3223075 (CK) & #5663494 (verdastelo9604) +Why are you so good at cooking? 为什么你做饭那么拿手呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4569171 (CK) & #5097616 (mirrorvan) +Why are you wearing that scarf? 你为什么戴那条围巾? CC-BY 2.0 (France) Attribution: tatoeba.org #2642527 (CK) & #5551024 (verdastelo9604) +Why can't he play tennis today? 為什麼他今天不能打網球呢? CC-BY 2.0 (France) Attribution: tatoeba.org #292262 (CH) & #874407 (Martha) +Why did you buy a Japanese car? 你為甚麼買日本車? CC-BY 2.0 (France) Attribution: tatoeba.org #2631678 (CK) & #6860870 (verdastelo9604) +Why did you come here so early? 你為什麼這麼早來這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #401795 (CK) & #900730 (Martha) +Why do you want to leave today? 你们为什么想今天走? CC-BY 2.0 (France) Attribution: tatoeba.org #2333 (CK) & #389826 (fucongcong) +Why don't you take the day off? 你為什麼不請一天假? CC-BY 2.0 (France) Attribution: tatoeba.org #243009 (CK) & #903608 (Martha) +Why should anyone be surprised? 为什么任何人应该感到惊喜? CC-BY 2.0 (France) Attribution: tatoeba.org #4834927 (CK) & #4844759 (pig8322) +Why were you late this morning? 今天早上你為什麼遲到了呢? CC-BY 2.0 (France) Attribution: tatoeba.org #36493 (CK) & #677633 (Martha) +Why would they need to do that? 为什么他们会需要那么做呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4664905 (CK) & #5091716 (mirrorvan) +Will you hold this seat for me? 您能給我留這個座嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58207 (CK) & #8215712 (verdastelo9604) +Will you permit me to go there? 您允许我去吗? CC-BY 2.0 (France) Attribution: tatoeba.org #50947 (CK) & #792823 (fucongcong) +Will you please hold this edge? 能不能请你拿着这端? CC-BY 2.0 (France) Attribution: tatoeba.org #61462 (CM) & #335484 (fucongcong) +Will you take a personal check? 你收私人支票嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267613 (CK) & #874694 (Martha) +Without water, we cannot exist. 没有水,我们无法生存。 CC-BY 2.0 (France) Attribution: tatoeba.org #387561 (Mouseneb) & #333102 (fucongcong) +Would you care for more coffee? 你想再喝點咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62207 (CK) & #874025 (Martha) +Would you lend me your bicycle? 你可以借我你的腳踏車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776000 (CK) & #777015 (Martha) +Would you like a cup of coffee? 你要來杯咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62204 (CK) & #895192 (Martha) +Would you like a cup of coffee? 来杯咖啡吗? CC-BY 2.0 (France) Attribution: tatoeba.org #62204 (CK) & #8696299 (crescat) +Would you like anything to eat? 您想吃点什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25229 (Dejo) & #7773212 (jiangche) +Would you like some more gravy? 你想再來些醬汁嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62781 (CK) & #873219 (Martha) +Would you like to be my friend? 你想做我的朋友嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5170050 (Lindoula) & #6325100 (verdastelo9604) +Would you mind explaining this? 你願意解釋嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3359693 (CK) & #6109319 (verdastelo9604) +Would you please lock the door? 請你鎖門好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #39087 (CK) & #874699 (Martha) +Would you please open the door? 請你開門好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #39011 (CK) & #873303 (Martha) +You are no longer a mere child. 你不再只是一个孩子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16346 (CK) & #2007067 (sadhen) +You are not to leave this room. 你不應該離開這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #16678 (CK) & #907523 (Martha) +You are not to leave this room. 你不可以離開這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #16678 (CK) & #907526 (Martha) +You can drive a car, can't you? 你會開車,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16021 (CK) & #908383 (Martha) +You can get a loan from a bank. 你可以从银行贷款。 CC-BY 2.0 (France) Attribution: tatoeba.org #16201 (CK) & #1992652 (sadhen) +You can use my car if you like. 如果你喜歡你可以用我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #550928 (darinmex) & #874516 (Martha) +You didn't need to take a taxi. 你不必搭計程車。 CC-BY 2.0 (France) Attribution: tatoeba.org #411312 (CK) & #903483 (Martha) +You don't have to get up early. 你不必早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #69089 (CK) & #895719 (Martha) +You don't have to talk so loud. 你不必這麼大聲說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #69906 (CK) & #900234 (Martha) +You don't have to work so hard. 你不必這麼辛苦地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #69914 (CK) & #890612 (Martha) +You don't like sashimi, do you? 你不喜歡生魚片,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #245498 (CK) & #865373 (Martha) +You don't want to be an editor? 你不想做编辑? CC-BY 2.0 (France) Attribution: tatoeba.org #2090865 (CK) & #5670859 (verdastelo9604) +You have a good sense of humor. 你很有幽默感。 CC-BY 2.0 (France) Attribution: tatoeba.org #16344 (CK) & #2007065 (sadhen) +You have no need to be ashamed. 你不需要害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #24804 (CK) & #745825 (fucongcong) +You have no sense of direction. 你一点方向感都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #8390 (CK) & #1780760 (sadhen) +You have three cars, don't you? 你有三辆车对吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7809206 (CK) & #8654606 (crescat) +You have to give Tom more time. 你必須給湯姆更多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3152505 (CK) & #6151293 (verdastelo9604) +You have to go to the hospital. 你必須去醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #1570751 (fanty) & #6111934 (verdastelo9604) +You have to make a reservation. 你必須事先預約。 CC-BY 2.0 (France) Attribution: tatoeba.org #68874 (CK) & #875096 (Martha) +You know that that's your duty. 你知道那是你的责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #2806268 (Flargus) & #5663516 (verdastelo9604) +You look just like your mother. 你看起來就像你的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #70146 (CK) & #870148 (Martha) +You may take anything you like. 你可以拿你喜歡的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #24965 (CK) & #871185 (Martha) +You must always tell the truth. 你必須永遠說實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #66053 (CK) & #874414 (Martha) +You must be back by 10 o'clock. 你必須在10點前回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #73427 (CK) & #908365 (Martha) +You must be mentally exhausted. 你肯定脑子糊掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16728 (CK) & #333925 (fucongcong) +You must build up your courage. 你一定要鼓起勇气。 CC-BY 2.0 (France) Attribution: tatoeba.org #15905 (CK) & #1783777 (sadhen) +You need to let me handle this. 你要让我来解决。 CC-BY 2.0 (France) Attribution: tatoeba.org #3178341 (CK) & #5780595 (verdastelo9604) +You need to register by Monday. 你需要在星期一前註冊。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501098 (CK) & #5422705 (egg0073) +You owe me an apology for that. 关于那件事你欠我一个道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #16598 (Swift) & #2455688 (fenfang557) +You should always do your best. 你應該永遠盡力而為。 CC-BY 2.0 (France) Attribution: tatoeba.org #268479 (CK) & #872141 (Martha) +You should consult your doctor. 你應該諮詢你的醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #28066 (CK) & #842452 (Martha) +You should eat more vegetables. 你應該多吃蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #30364 (CK) & #836323 (Martha) +You should emphasize that fact. 你應該重視那個事實。 CC-BY 2.0 (France) Attribution: tatoeba.org #16584 (CK) & #836353 (Martha) +You should have kept it secret. 你應該保密的。 CC-BY 2.0 (France) Attribution: tatoeba.org #69916 (CK) & #868392 (Martha) +You should have started by now. 你早就該開始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30416 (CK) & #898957 (kanaorange) +You should not waste your time. 你不该浪费你的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #264026 (CK) & #333674 (fucongcong) +You should've never interfered. 你从来不该干涉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2718536 (CK) & #5926175 (verdastelo9604) +You sure were noisy last night. 你昨晚確實很吵。 CC-BY 2.0 (France) Attribution: tatoeba.org #6257972 (CK) & #6468685 (verdastelo9604) +You'd better go to bed at once. 你最好马上去睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #52148 (CK) & #829310 (fucongcong) +You'd better go to bed at once. 你最好立马去睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #52148 (CK) & #1990187 (sunnywqing) +You'd better put on a raincoat. 您最好穿一件雨衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #7021404 (CK) & #469269 (fucongcong) +You'd better send for a doctor. 你最好派人去請醫生來。 CC-BY 2.0 (France) Attribution: tatoeba.org #27908 (mcq) & #769675 (Martha) +You'll be answering the phones. 你要接電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642504 (CK) & #6064637 (verdastelo9604) +You'll forget about me someday. 有一天你会忘了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1602 (CK) & #334164 (fucongcong) +You're a beautiful young woman. 你是一个美丽的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045819 (CK) & #3289553 (sadhen) +You're a beautiful young woman. 你是一个美丽的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2045819 (CK) & #3289554 (sadhen) +You're the one who must decide. 你是要做決定的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497138 (CK) & #6149008 (verdastelo9604) +Your glasses fell on the floor. 你的眼镜掉在地上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1888 (Swift) & #502855 (fucongcong) +Your proposal is a bit extreme. 你的建議有點極端。 CC-BY 2.0 (France) Attribution: tatoeba.org #16974 (CK) & #870317 (Martha) +Your son is dating my daughter. 你儿子正在和我女儿约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #3424198 (CK) & #7774427 (jiangche) +"What's in that box?" "Nothing." “盒子里有什么?”“什么都没有。” CC-BY 2.0 (France) Attribution: tatoeba.org #8459785 (CK) & #8463619 (gumblex) +"Who is it?" "It's your mother." “是谁?”“是你妈妈。” CC-BY 2.0 (France) Attribution: tatoeba.org #1505 (CK) & #334489 (fucongcong) +A beautiful girl sat next to me. 一個美麗的女孩坐在我旁邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #318148 (CK) & #873213 (Martha) +A card was attached to the gift. 一張卡片被附在了禮物上。 CC-BY 2.0 (France) Attribution: tatoeba.org #274350 (CK) & #801487 (Martha) +A computer is a complex machine. 电脑是个复杂的机器。 CC-BY 2.0 (France) Attribution: tatoeba.org #54545 (CM) & #335129 (fucongcong) +A crowd gathered on this street. 人群聚集在这条街上。 CC-BY 2.0 (France) Attribution: tatoeba.org #451758 (FeuDRenais) & #444769 (fucongcong) +A friend's coming over tomorrow. 一個朋友明天要過來。 CC-BY 2.0 (France) Attribution: tatoeba.org #323050 (CK) & #834309 (Martha) +A full moon can be seen tonight. 今晚能看到满月。 CC-BY 2.0 (France) Attribution: tatoeba.org #243395 (CK) & #8749669 (crescat) +A good idea suddenly came to me. 我的大腦裏突然出現了一個很好的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795833 (sharris123) & #5450984 (xjjAstrus) +A penny saved is a penny earned. 省下了一分錢,就等於賺了一分錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #73206 (CK) & #874297 (Martha) +A rolling stone gathers no moss. 滚石不生苔。 CC-BY 2.0 (France) Attribution: tatoeba.org #279026 (CM) & #5617157 (verdastelo9604) +Actions speak louder than words. 行動勝於雄辯。 CC-BY 2.0 (France) Attribution: tatoeba.org #241136 (CK) & #886598 (Martha) +Actions speak louder than words. 坐而言不如起而行。 CC-BY 2.0 (France) Attribution: tatoeba.org #241136 (CK) & #886599 (Martha) +Actions speak louder than words. 行動比語言更響亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #241136 (CK) & #886602 (Martha) +After dinner, I did my homework. 吃完晚飯後,我做作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #262094 (CK) & #6159158 (verdastelo9604) +All men are equal under the law. 法律之前人人平等。 CC-BY 2.0 (France) Attribution: tatoeba.org #321019 (CK) & #775462 (Martha) +All plants need water and light. 所有的植物都需要陽光和水。 CC-BY 2.0 (France) Attribution: tatoeba.org #268570 (CK) & #1250648 (tsayng) +All the desk drawers were empty. 所有的办公桌抽屉都是空的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553538 (CK) & #1783790 (sadhen) +All three of you are very lucky. 你們三個很走運。 CC-BY 2.0 (France) Attribution: tatoeba.org #3749297 (CK) & #6159156 (verdastelo9604) +Almost all the work is done now. 幾乎所有的工作都完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #245404 (CK) & #874226 (Martha) +An unforgettable event occurred. 一场令人难忘的事件发生了。 CC-BY 2.0 (France) Attribution: tatoeba.org #321127 (CM) & #335886 (fucongcong) +April showers bring May flowers. 四月春雨,五月花。 CC-BY 2.0 (France) Attribution: tatoeba.org #713408 (Zifre) & #1397385 (mtdot) +Are both Tom and Mary Canadians? 湯姆和瑪麗都是加拿大人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5937925 (CK) & #6128472 (verdastelo9604) +Are there any apples in the box? 箱子裡有蘋果嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #282643 (CK) & #874409 (Martha) +Are there any other suggestions? 還有其他建議嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3127933 (CK) & #6135014 (verdastelo9604) +Are you busy tomorrow afternoon? 明天下午你忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323148 (CK) & #833807 (Martha) +Are you carrying a lot of money? 你身上有很多钱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7325350 (Sleekkat) & #463850 (fucongcong) +Are you finished with your work? 你完成你的工作了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #245378 (CK) & #836357 (Martha) +Are you for or against his idea? 您赞成还是反对他的想法? CC-BY 2.0 (France) Attribution: tatoeba.org #15807 (Swift) & #4287483 (notabene) +Are you for or against the plan? 你赞成还是反对这个计划? CC-BY 2.0 (France) Attribution: tatoeba.org #16605 (Zifre) & #333501 (fucongcong) +Are you free tomorrow afternoon? 你明天下午有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #795964 (awynands) & #5763029 (verdastelo9604) +Are you saying that you give up? 你是说你放弃了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4811312 (khaledp16) & #4815166 (McMeao) +Are you still collecting stamps? 你還在收集郵票嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #32594 (CK) & #833772 (Martha) +Are you students at this school? 你是這所學校的學生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17654 (Swift) & #838627 (Martha) +Are you sure Tom will come back? 你確定湯姆會回來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6048926 (CK) & #6624599 (verdastelo9604) +Are you the owner of this house? 你是這棟房子的主人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70093 (CK) & #865435 (Martha) +Aren't you the one who saved me? 你不是救了我的人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6099639 (CK) & #6472022 (verdastelo9604) +Ask her how much soup she wants. 問她要多少湯? CC-BY 2.0 (France) Attribution: tatoeba.org #308681 (CK) & #779526 (Martha) +Ask her when she will come back. 问问她什么时候回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #308838 (CK) & #693696 (fucongcong) +Ask him where he parked his car. 問問他把他的車停在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #284620 (CK) & #866075 (Martha) +Ask him where he parked his car. 问他把他自己的车停在哪里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284620 (CK) & #1672015 (sadhen) +At last, she solved the problem. 最後,她解決了這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #39844 (CK) & #840425 (Martha) +At night, she gazed at the moon. 她在夜晚望著月亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #534152 (CK) & #872431 (Martha) +Both my parents are at home now. 我父母現在都在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #252088 (CK) & #874157 (Martha) +Both of my brothers are married. 我的兩個兄弟都結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250690 (CK) & #844491 (Martha) +Breakfast is from seven to nine. 早餐时间在七点到九点。 CC-BY 2.0 (France) Attribution: tatoeba.org #2438437 (FeuDRenais) & #2437269 (CLARET) +Bringing up a baby is hard work. 养大一个宝宝是一项艰难的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #272341 (CK) & #787565 (fucongcong) +By the way, what's your address? 对了,你的地址是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4737845 (patgfisher) & #390439 (fucongcong) +Call me at six tomorrow morning. 明天早上6点给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #323179 (CK) & #411654 (fucongcong) +Call me when you get settled in. 你安頓好就打電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #325187 (CK) & #865479 (Martha) +Can I have a bottle of red wine? 請來瓶紅酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #8249309 (francaisr0wlet) & #8215730 (verdastelo9604) +Can I have a few words with you? 可不可以和你说几句? CC-BY 2.0 (France) Attribution: tatoeba.org #328901 (fcbond) & #4885804 (gumblex) +Can you come for dinner tonight? 你今天晚上能來吃飯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243195 (CK) & #842468 (Martha) +Can you do some shopping for me? 你能幫我買些東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #282507 (CK) & #868439 (Martha) +Can you name one of their songs? 你能够说出一首他们的歌的名字吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4144737 (Hybrid) & #4148180 (sissima) +Can't you get by on your salary? 靠你的收入你不能過活嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #241758 (CK) & #786051 (Martha) +Cash donations will be accepted. 接受现金捐赠。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529576 (CK) & #6307282 (gumblex) +Come to my house this afternoon. 今天下午到我家来一趟。 CC-BY 2.0 (France) Attribution: tatoeba.org #242517 (CK) & #2432794 (fenfang557) +Could you call a doctor, please? 你能請個醫生來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27899 (CK) & #839451 (Martha) +Could you cancel my reservation? 你能取消我的預訂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #324748 (CK) & #833785 (Martha) +Could you write it down, please? 請你寫下來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267129 (CK) & #845442 (Martha) +Creationism is a pseudo-science. 创造主义是一种伪科学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1770 (Zifre) & #502701 (fucongcong) +Daddy loves to say funny things. 爹地喜歡講有趣的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #318971 (CM) & #804530 (Martha) +Delete Tom's name from the list. 从名单上删掉汤姆的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #7839556 (CK) & #8589279 (easononizuka) +Did you hear my show last night? 你听了我昨天晚上的节目吗? CC-BY 2.0 (France) Attribution: tatoeba.org #244458 (CK) & #8698607 (crescat) +Did you notice anything strange? 你注意到奇怪的地方了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3820554 (CK) & #6624719 (verdastelo9604) +Did you play baseball yesterday? 你昨天打棒球了没有? CC-BY 2.0 (France) Attribution: tatoeba.org #69381 (CK) & #718412 (Yashanti) +Did you see yesterday's eclipse? 你看了昨天的月蝕了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7767806 (sharris123) & #6961326 (xjjAstrus) +Did you show it to your parents? 你給你父母看了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #41920 (CK) & #871087 (Martha) +Did you understand what he said? 你听懂他说的了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #778354 (CK) & #8778495 (crescat) +Do I have to take this medicine? 我必須吃這個藥嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #56586 (CK) & #870188 (Martha) +Do not give in to those demands. 不要屈服於這些要求。 CC-BY 2.0 (France) Attribution: tatoeba.org #43508 (CK) & #798320 (Martha) +Do you believe there are ghosts? 你相信有幽灵吗? CC-BY 2.0 (France) Attribution: tatoeba.org #607740 (Samer) & #5153260 (musclegirlxyp) +Do you believe there are ghosts? 你相信鬼存在吗? CC-BY 2.0 (France) Attribution: tatoeba.org #607740 (Samer) & #5153265 (musclegirlxyp) +Do you believe there are ghosts? 你相信有鬼魂吗? CC-BY 2.0 (France) Attribution: tatoeba.org #607740 (Samer) & #5153266 (musclegirlxyp) +Do you commute to school by bus? 你搭公車上下學嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #407126 (CK) & #870323 (Martha) +Do you deny that you went there? 你否認你去了那裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16626 (jakov) & #775816 (Martha) +Do you eat rice in your country? 在你们国家吃米饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #17151 (CM) & #504875 (fucongcong) +Do you feel like going swimming? 你想去游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26412 (CK) & #845500 (Martha) +Do you get along with your boss? 你跟老板合得来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69205 (CK) & #336622 (fucongcong) +Do you go to school on Saturday? 你星期六去上學嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279510 (CK) & #865591 (Martha) +Do you have any other questions? 你有任何其他的問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274612 (CK) & #836317 (Martha) +Do you have anything for a cold? 你有任何治感冒的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #319743 (CK) & #781160 (Martha) +Do you have anything to declare? 你有任何要申報的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #23665 (CK) & #842436 (Martha) +Do you have change for a dollar? 你有零錢換一元美金嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #502621 (CK) & #873208 (Martha) +Do you have school on Saturdays? 你星期六要上學嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279528 (CK) & #840523 (Martha) +Do you know how to play mahjong? 你知道怎麼打麻將嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #322279 (CK) & #874339 (Martha) +Do you know how to ride a horse? 你会骑马吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2219904 (Hybrid) & #3376509 (go_oo) +Do you know what PKO stands for? 你知道PKO是什么意思吗? CC-BY 2.0 (France) Attribution: tatoeba.org #72190 (CK) & #8879825 (crescat) +Do you really believe in ghosts? 你真的相信鬼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #237594 (CK) & #839610 (Martha) +Do you still want to talk to me? 你还想跟我谈吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2446709 (CK) & #5967632 (verdastelo9604) +Do you think animals have souls? 你认为动物有灵魂吗? CC-BY 2.0 (France) Attribution: tatoeba.org #280219 (CK) & #1323691 (vicch) +Do you think this thing is cute? 你覺得這個東西萌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7787208 (sharris123) & #5997712 (xjjAstrus) +Do you want to drink some water? 你要喝水嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7832951 (sharris123) & #6057689 (xjjAstrus) +Do your best in anything you do. 你做任何事都要尽全力。 CC-BY 2.0 (France) Attribution: tatoeba.org #30183 (CK) & #335275 (fucongcong) +Does anyone here speak Japanese? 这儿有人说日语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61727 (CK) & #334985 (fucongcong) +Does he study English every day? 他每天研讀英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #303908 (CK) & #811848 (Martha) +Does she know your phone number? 她知道你的電話號碼? CC-BY 2.0 (France) Attribution: tatoeba.org #310273 (CK) & #840757 (Martha) +Does your father get home early? 你爸爸很早回家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64060 (CK) & #845480 (Martha) +Does your school have a library? 你的学校有图书馆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1827560 (CK) & #5865542 (verdastelo9604) +Dogs have a keen sense of smell. 狗的嗅觉灵敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #387379 (Mouseneb) & #333227 (fucongcong) +Don't be afraid of barking dogs. 別怕吠犬。 CC-BY 2.0 (France) Attribution: tatoeba.org #321249 (CK) & #6089930 (verdastelo9604) +Don't depend too much on others. 不要太过于依赖别人。 CC-BY 2.0 (France) Attribution: tatoeba.org #451771 (FeuDRenais) & #444711 (fucongcong) +Don't go out after it gets dark. 天黑以後不要出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #28453 (CK) & #834395 (Martha) +Don't hesitate to ask questions. 不要猶豫去問問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #265037 (CK) & #834365 (Martha) +Don't let anyone enter the room. 不要讓任何人進入這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #276671 (CK) & #845445 (Martha) +Don't let her go out after dark. 天黑後不要讓她出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #28452 (CK) & #883308 (Martha) +Don't let opportunities pass by. 不要让机会溜走。 CC-BY 2.0 (France) Attribution: tatoeba.org #40200 (CK) & #8777527 (crescat) +Edison was not a bright student. 爱迪生不是个优秀的学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #65329 (CK) & #333854 (fucongcong) +Every cloud has a silver lining. 每朵雲都披著銀衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #36678 (CK) & #806547 (Martha) +Every cloud has a silver lining. 山窮水盡疑無路,柳暗花明又一村。 CC-BY 2.0 (France) Attribution: tatoeba.org #36678 (CK) & #806549 (Martha) +Everybody was singing except me. 除我以外每個人都在歌唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #250404 (CK) & #833799 (Martha) +Everyone in her class likes her. 她班上的每個人都喜歡她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308989 (CK) & #836254 (Martha) +Everyone is here except for him. 除了他每個人都在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #392141 (CK) & #845945 (Martha) +Excuse me, do you speak English? 對不起。你會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1951244 (Wittich) & #811910 (Martha) +Excuse me. Do you speak English? 對不起。你會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #264984 (CK) & #811910 (Martha) +Five gallons of regular, please. 請照平常一樣五加侖。 CC-BY 2.0 (France) Attribution: tatoeba.org #29527 (CK) & #793256 (Martha) +Freedom is very, very important. 自由非常非常重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364085 (CK) & #5364102 (egg0073) +Get it done as soon as possible. 盡快把它完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #39523 (CK) & #797109 (Martha) +Give me something to write with. 給我些可以寫字的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25090 (CK) & #836163 (Martha) +Go straight on down this street. 沿着这条街直走。 CC-BY 2.0 (France) Attribution: tatoeba.org #474090 (blay_paul) & #476610 (fucongcong) +Gold is much heavier than water. 金子比水重得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #755141 (sctld) & #332591 (fucongcong) +Grammar is a very complex thing. 语法是很复杂的。 CC-BY 2.0 (France) Attribution: tatoeba.org #401607 (FeuDRenais) & #5640774 (verdastelo9604) +Half a loaf is better than none. 半個麵包總比沒有好。 CC-BY 2.0 (France) Attribution: tatoeba.org #34917 (CK) & #801302 (Martha) +Half a loaf is better than none. 聊勝於無、有比沒有好。 CC-BY 2.0 (France) Attribution: tatoeba.org #34917 (CK) & #801303 (Martha) +Half of these apples are rotten. 這些蘋果的其中一半都爛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55274 (CK) & #836165 (Martha) +Has anybody here been to Hawaii? 这儿有人去过夏威夷吗? CC-BY 2.0 (France) Attribution: tatoeba.org #361589 (blay_paul) & #787368 (fucongcong) +Have any letters arrived for me? 到的有我的信吗? CC-BY 2.0 (France) Attribution: tatoeba.org #246397 (CK) & #1990189 (sunnywqing) +Have you already fed the horses? 你喂过马了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8459466 (yamanq) & #8463628 (gumblex) +Have you done all your homework? 你做了所有的功課嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16400 (CK) & #839488 (Martha) +Have you ever been hit by a car? 你被车撞过吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6138524 (Krzysztof92) & #8686678 (crescat) +Have you ever seen him swimming? 你曾看過他游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15850 (CK) & #844629 (Martha) +Have you ever traveled by plane? 你曾經坐飛機旅行過嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #318005 (CK) & #836152 (Martha) +Have you finished breakfast yet? 你吃完早飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69735 (CK) & #833063 (Martha) +Have you finished your homework? 你做完作業了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31331 (CK) & #833090 (Martha) +Have you read this book already? 你讀過這本書了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16675 (CK) & #836128 (Martha) +Have you read today's paper yet? 你看過今天的報紙了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31376 (CK) & #840561 (Martha) +Have you seen any movies lately? 最近看了什么电影没有? CC-BY 2.0 (France) Attribution: tatoeba.org #243837 (CK) & #4887529 (musclegirlxyp) +Haven't we met somewhere before? 我们好像在哪见过? CC-BY 2.0 (France) Attribution: tatoeba.org #4017014 (CK) & #3338897 (sadhen) +He advised her to stop drinking. 他建議她戒酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #302677 (CK) & #839510 (Martha) +He asked me whether I like math. 他问我喜不喜欢数学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266429 (yifen238) & #345743 (fucongcong) +He behaves as if he were insane. 他表现得像疯了一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #1642027 (CM) & #5585213 (verdastelo9604) +He broke in on our conversation. 他打斷了我們的談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #297390 (CK) & #1422717 (cienias) +He carried a bag full of apples. 他拿着一个装满了苹果的袋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #293354 (CK) & #8686664 (crescat) +He comes back from Sydney today. 他今天從雪梨回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #283042 (CK) & #838612 (Martha) +He confessed that he was guilty. 他承认有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #298536 (CK) & #363879 (fucongcong) +He couldn't remember my address. 他不記得我的地址了。 CC-BY 2.0 (France) Attribution: tatoeba.org #291953 (CK) & #834341 (Martha) +He did not work on Sunday night. 他週日晚上不工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #281861 (CK) & #889131 (Martha) +He died soon after the accident. 他在事故後不久就去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290914 (CK) & #842423 (Martha) +He disguised himself as a woman. 他把自己化裝成一個女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #299469 (CK) & #844504 (Martha) +He divorced his wife last month. 上個月他和妻子離婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #300627 (CK) & #839492 (Martha) +He does not come here every day. 他不是每一天都來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #303894 (CK) & #842476 (Martha) +He does not come here every day. 他不是每天都來這。 CC-BY 2.0 (France) Attribution: tatoeba.org #303894 (CK) & #1233812 (tsayng) +He does not like being punished. 他不喜歡被懲罰。 CC-BY 2.0 (France) Attribution: tatoeba.org #1796000 (ifethereal) & #761903 (Martha) +He does nothing but read comics. 他什麼都不做只是看漫畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #303944 (CK) & #840430 (Martha) +He doesn't have to go to school. 他不必上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #294818 (CK) & #881218 (Martha) +He drank a whole bottle of milk. 他喝了一整瓶的牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #292991 (CK) & #881102 (Martha) +He dropped the cup and broke it. 他把杯子掉到地板上打碎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289853 (CK) & #887814 (Martha) +He filled the bottle with water. 他用水装满了瓶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #292573 (CK) & #429150 (fucongcong) +He forgot to turn off the light. 他忘了關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #301809 (CK) & #884175 (Martha) +He goes to Karuizawa every year. 他每年都去輕井澤。 CC-BY 2.0 (France) Attribution: tatoeba.org #303927 (CK) & #838581 (Martha) +He goes to bed at eight o'clock. 他八點上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #47532 (CK) & #883449 (Martha) +He got a master's degree in law. 他得到了法律碩士學位。 CC-BY 2.0 (France) Attribution: tatoeba.org #303656 (CK) & #804605 (Martha) +He got his meaning across to me. 他把他的意思對我講清楚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298620 (CK) & #804549 (Martha) +He grows tomatoes in his garden. 他在他的花園種番茄。 CC-BY 2.0 (France) Attribution: tatoeba.org #296823 (CK) & #838576 (Martha) +He had a second helping of soup. 他又喝了一碗湯。 CC-BY 2.0 (France) Attribution: tatoeba.org #290183 (CK) & #796058 (Martha) +He has a large farm in Colorado. 他在科羅拉多州有一個大農場。 CC-BY 2.0 (France) Attribution: tatoeba.org #289991 (CK) & #883488 (Martha) +He has been very busy this week. 他這個星期一直很忙碌。 CC-BY 2.0 (France) Attribution: tatoeba.org #296552 (CK) & #879141 (Martha) +He has been waiting for an hour. 他已經等了一個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #288417 (CK) & #889625 (Martha) +He held a package under his arm. 他把一個包裹挾在腋下。 CC-BY 2.0 (France) Attribution: tatoeba.org #303636 (CK) & #889119 (Martha) +He held a package under his arm. 他挾著一個包裹。 CC-BY 2.0 (France) Attribution: tatoeba.org #303636 (CK) & #889121 (Martha) +He helped the lady into the car. 他幫助這位女士上車。 CC-BY 2.0 (France) Attribution: tatoeba.org #303261 (CK) & #889622 (Martha) +He hit the ball with his racket. 他用他的球拍擊球。 CC-BY 2.0 (France) Attribution: tatoeba.org #293331 (CK) & #876740 (Martha) +He hung a lamp from the ceiling. 他把一盏灯挂在了天花板上。 CC-BY 2.0 (France) Attribution: tatoeba.org #301752 (CK) & #444611 (fucongcong) +He interrupted our conversation. 他打断了我们的谈论。 CC-BY 2.0 (France) Attribution: tatoeba.org #870086 (user) & #1672003 (sadhen) +He introduced me to his parents. 他把我介紹給他的父母認識。 CC-BY 2.0 (France) Attribution: tatoeba.org #298163 (CK) & #848671 (Martha) +He invested his money in stocks. 他把錢投資於股票。 CC-BY 2.0 (France) Attribution: tatoeba.org #295466 (CK) & #846061 (Martha) +He is a very imaginative writer. 他是非常有想像力的作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #291588 (CK) & #737167 (Martha) +He is acquainted with the mayor. 他认识市长。 CC-BY 2.0 (France) Attribution: tatoeba.org #297169 (CK) & #390545 (fucongcong) +He is also very famous in Japan. 他在日本也很有名。 CC-BY 2.0 (France) Attribution: tatoeba.org #302210 (CK) & #882990 (Martha) +He is doing very well at school. 他在學校的表現很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #294802 (CK) & #889576 (Martha) +He is getting better bit by bit. 他一點一點地變好。 CC-BY 2.0 (France) Attribution: tatoeba.org #299571 (CK) & #804985 (Martha) +He is getting better day by day. 他一天一天地好轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #302195 (CK) & #804982 (Martha) +He is in London on business now. 他現在在倫敦洽公。 CC-BY 2.0 (France) Attribution: tatoeba.org #296547 (CK) & #875288 (Martha) +He is married with two children. 他已婚並育有兩個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #295888 (CK) & #848455 (Martha) +He is my brother, not my father. 他是我哥哥,不是我爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1153923 (belgavox) & #345822 (fucongcong) +He is not a high school student. 他不是個高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #296407 (CK) & #881078 (Martha) +He is not ashamed of being poor. 他不因貧窮而感到羞愧。 CC-BY 2.0 (France) Attribution: tatoeba.org #303174 (CK) & #889641 (Martha) +He is not qualified for the job. 他不勝任這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #291052 (CK) & #889192 (Martha) +He is old enough to drive a car. 他的年紀可以開車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288078 (CK) & #5117821 (xjjAstrus) +He is old enough to know better. 他已經長大該懂事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293146 (CK) & #881270 (Martha) +He is very afraid of his mother. 他非常怕他的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #292166 (CK) & #889650 (Martha) +He is very busy writing stories. 他忙于写故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #295139 (CK) & #1426443 (sadhen) +He kept a diary during the trip. 他旅行期间,写了旅游日记。 CC-BY 2.0 (France) Attribution: tatoeba.org #304697 (CK) & #343956 (fucongcong) +He knows how to brush his teeth. 他知道怎么刷牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1751351 (Amastan) & #5650541 (verdastelo9604) +He left his son a large fortune. 他留給了他的兒子一大筆財富。 CC-BY 2.0 (France) Attribution: tatoeba.org #300969 (CK) & #877616 (Martha) +He likes listening to the radio. 他喜歡聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #530150 (CK) & #846203 (Martha) +He likes listening to the radio. 他喜歡聽廣播。 CC-BY 2.0 (France) Attribution: tatoeba.org #530150 (CK) & #846207 (Martha) +He likes to cook for his family. 他喜歡為家人做飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #294448 (CK) & #889623 (Martha) +He likes to listen to the radio. 他喜歡聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #530149 (CK) & #846203 (Martha) +He likes to listen to the radio. 他喜歡聽廣播。 CC-BY 2.0 (France) Attribution: tatoeba.org #530149 (CK) & #846207 (Martha) +He likes to sing in the bathtub. 他喜歡在浴缸裡唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #289506 (CK) & #876745 (Martha) +He likes to smoke in the toilet. 他喜欢在厕所里吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1756017 (Amastan) & #5611529 (verdastelo9604) +He lived to be eighty years old. 他活到了八十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #288651 (CK) & #889357 (Martha) +He lives in a cozy little house. 他住在一個舒適的小房子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #637344 (CK) & #794080 (Martha) +He lives just around the corner. 他就住在附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #290460 (CK) & #846191 (Martha) +He lives just around the corner. 他就住在拐角的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #290460 (CK) & #846195 (Martha) +He made a clean break with them. 他跟他们干脆地断绝来往了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302528 (CK) & #5595117 (verdastelo9604) +He made his way to the minister. 他設法當上了部長。 CC-BY 2.0 (France) Attribution: tatoeba.org #301296 (CK) & #802017 (Martha) +He majors in English literature. 他主修英國文學。 CC-BY 2.0 (France) Attribution: tatoeba.org #294075 (CK) & #832984 (Martha) +He makes a living as a salesman. 他當推銷員為生。 CC-BY 2.0 (France) Attribution: tatoeba.org #290392 (CK) & #881696 (Martha) +He managed to get there in time. 他設法及時到達那裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #301503 (CK) & #875397 (Martha) +He may be able to come tomorrow. 他也許明天能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #288704 (CK) & #881219 (Martha) +He may become a baseball player. 他可能成為一個棒球選手。 CC-BY 2.0 (France) Attribution: tatoeba.org #304273 (CK) & #848237 (Martha) +He mistook me for an Englishman. 他誤以為我是一個英國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #539600 (CK) & #848968 (Martha) +He never goes out late at night. 他從不在深夜出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #295847 (CK) & #881090 (Martha) +He often stays up late at night. 他經常在晚上熬夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #293312 (CK) & #887827 (Martha) +He paid 1,000 yen for this book. 他花了1000日元買這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #289963 (CK) & #881721 (Martha) +He placed the book on the shelf. 他把书放在了书架上。 CC-BY 2.0 (France) Attribution: tatoeba.org #376350 (saeb) & #1862607 (sadhen) +He played baseball after school. 他放学后打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #303647 (CK) & #828648 (fucongcong) +He played baseball after school. 他放學後打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #303647 (CK) & #833197 (Martha) +He prefers football to baseball. 他喜歡足球勝過棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #304263 (CK) & #833060 (Martha) +He pretended to be a stupid man. 他假裝是個愚蠢的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #295581 (CK) & #883293 (Martha) +He put his hands in his pockets. 他把手插進口袋裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #292724 (CK) & #887869 (Martha) +He quickly went out of the room. 他很快地走出了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #290312 (CK) & #887713 (Martha) +He remained single all his life. 他一生獨身。 CC-BY 2.0 (France) Attribution: tatoeba.org #293771 (CK) & #846335 (Martha) +He replied that he did not know. 他回答说他不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #259405 (CK) & #4270703 (notabene) +He should have done it that way. 他该那样做完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288678 (CK) & #5780610 (verdastelo9604) +He sipped the hot coffee slowly. 他慢慢地啜飲熱咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #302303 (CK) & #846345 (Martha) +He snored loudly while he slept. 他睡着的时候,打呼声很响。 CC-BY 2.0 (France) Attribution: tatoeba.org #750673 (sctld) & #333394 (fucongcong) +He solved the difficult problem. 他解決了難題。 CC-BY 2.0 (France) Attribution: tatoeba.org #302149 (CK) & #6070906 (verdastelo9604) +He suspects me of telling a lie. 他懷疑我說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #297265 (CK) & #1225691 (tsayng) +He thought that he was a genius. 他認為他是個天才。 CC-BY 2.0 (France) Attribution: tatoeba.org #298548 (CK) & #887886 (Martha) +He threatened to make it public. 他威胁要公开。 CC-BY 2.0 (France) Attribution: tatoeba.org #291496 (CK) & #816461 (fucongcong) +He threw a stone at the big dog. 他朝着大狗扔了块石头。 CC-BY 2.0 (France) Attribution: tatoeba.org #291116 (CK) & #1397325 (mtdot) +He told me an interesting story. 他告訴了我一個有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #297479 (CK) & #849290 (Martha) +He told me to be kind to others. 他叫我对别人好一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #301071 (CK) & #336072 (fucongcong) +He told me to speak more slowly. 他告訴我要說慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #297546 (CK) & #881708 (Martha) +He told us an interesting story. 他告訴了我們一個有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #297339 (CK) & #846385 (Martha) +He told us an interesting story. 他给我们讲了一个有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #297339 (CK) & #1700161 (sadhen) +He took a walk before breakfast. 他在早餐之前散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #301590 (CK) & #848598 (Martha) +He walked in the park yesterday. 他昨天在公園裡散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #289687 (CK) & #848760 (Martha) +He was born in the 19th century. 他生于19世纪。 CC-BY 2.0 (France) Attribution: tatoeba.org #288401 (CK) & #346075 (fucongcong) +He was ill, so he couldn't come. 他病了,所以他不能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #303101 (CK) & #881705 (Martha) +He was killed in a car accident. 他死於一場車禍。 CC-BY 2.0 (France) Attribution: tatoeba.org #298503 (CK) & #875318 (Martha) +He was late because of the snow. 他因為下雪所以遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #300606 (CK) & #877598 (Martha) +He was leaning against the wall. 他靠著牆。 CC-BY 2.0 (France) Attribution: tatoeba.org #303544 (CK) & #848544 (Martha) +He was severe with his children. 他对自己的孩子很严格。 CC-BY 2.0 (France) Attribution: tatoeba.org #297156 (CK) & #343706 (fucongcong) +He was standing behind the door. 他站在門後。 CC-BY 2.0 (France) Attribution: tatoeba.org #291903 (CK) & #848584 (Martha) +He went to New York by airplane. 他搭飛機到紐約了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292326 (CK) & #883285 (Martha) +He went to New York on business. 他去紐約出差了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299510 (CK) & #885536 (Martha) +He went to stay with his cousin. 他去和他的表弟待在一起了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289250 (CK) & #336444 (fucongcong) +He who laughs last, laughs best. 最後笑的人,才是笑得最得意的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #868943 (ColinG) & #806223 (Martha) +He will be very busy next month. 下个月他会很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1430141 (CK) & #5091211 (mirrorvan) +He will travel abroad next year. 明年他要去国外旅游。 CC-BY 2.0 (France) Attribution: tatoeba.org #304587 (CK) & #415641 (fucongcong) +He wishes to erase bad memories. 他希望抹去不好的记忆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2119 (CK) & #503220 (fucongcong) +He works in a big city hospital. 他在一間很大的市立醫院工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #301212 (CK) & #882987 (Martha) +He wouldn't listen to my advice. 他不聽我的勸告。 CC-BY 2.0 (France) Attribution: tatoeba.org #297941 (CK) & #848619 (Martha) +He wouldn't look at my proposal. 他對我的提議不屑一顧。 CC-BY 2.0 (France) Attribution: tatoeba.org #297960 (CK) & #848828 (Martha) +He wouldn't look at my proposal. 他不會考慮我的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #297960 (CK) & #848832 (Martha) +He's an excellent brain surgeon. 他是一個優秀的腦外科醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #304339 (CK) & #833258 (Martha) +He's an excellent tennis player. 他是个很棒的网球选手。 CC-BY 2.0 (France) Attribution: tatoeba.org #432847 (aliene) & #346800 (fucongcong) +He's busy with his homework now. 他現在正忙著做他的家庭作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #296554 (CK) & #889383 (Martha) +He's gone to Nagoya on business. 他因公出差到名古屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #40892 (CK) & #4953629 (umidake) +He's gone to Nagoya on business. 他去名古屋出差。 CC-BY 2.0 (France) Attribution: tatoeba.org #40892 (CK) & #4953630 (umidake) +He's leaving for China tomorrow. 他明天出发去中国。 CC-BY 2.0 (France) Attribution: tatoeba.org #599127 (baisong) & #363883 (fucongcong) +He's not very strict about this. 他在这方面不是很严格。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496201 (weihaiping) & #1325224 (vicch) +He's three years older than her. 他比她大三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396208 (CK) & #1891664 (sadhen) +He's used to speaking in public. 他習慣在公眾場合說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #300168 (CK) & #846184 (Martha) +Her goal is to become a teacher. 她的目的是成为教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #1009331 (AOCinJAPAN) & #336098 (fucongcong) +Her mother made her a new dress. 她的媽媽給她做一件新衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #308983 (CK) & #887858 (Martha) +Her oldest daughter got married. 她的大女兒結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477050 (weihaiping) & #833124 (Martha) +Here are some interesting links. 這裡有些有趣的連結。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364087 (CK) & #5364126 (egg0073) +Here is your dog. Where is mine? 这是你的狗。我的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #61769 (CM) & #5845594 (verdastelo9604) +Here's something very important. 這裡有些非常重要的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364089 (CK) & #5364127 (egg0073) +His horse jumped over the fence. 他的馬跳過了柵欄。 CC-BY 2.0 (France) Attribution: tatoeba.org #287303 (CK) & #848632 (Martha) +His modesty is worth respecting. 他的謙遜值得尊敬。 CC-BY 2.0 (France) Attribution: tatoeba.org #286010 (CM) & #6309814 (verdastelo9604) +His mother didn't want to do it. 他的母親不想做。 CC-BY 2.0 (France) Attribution: tatoeba.org #770170 (marloncori) & #770204 (Martha) +His mother was a school teacher. 他的母親是一名學校老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #320918 (CK) & #848812 (Martha) +His parents took him for a walk. 他的父母帶他去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #287803 (CK) & #880243 (Martha) +Hope to see you again next year. 希望明年再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #322505 (CK) & #769683 (Martha) +How about another cup of coffee? 要不要再來一杯咖啡? CC-BY 2.0 (France) Attribution: tatoeba.org #62229 (CK) & #846454 (Martha) +How about another piece of cake? 要不要再來一塊蛋糕? CC-BY 2.0 (France) Attribution: tatoeba.org #62654 (CK) & #846362 (Martha) +How about playing chess tonight? 今晚下棋怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #243213 (CK) & #832982 (Martha) +How about taking a walk with us? 跟我們一起散步怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #247325 (CK) & #882164 (Martha) +How can I get in touch with you? 我怎么联系你? CC-BY 2.0 (France) Attribution: tatoeba.org #410911 (CK) & #408244 (fucongcong) +How can Tom not understand that? 湯姆怎麼能不懂? CC-BY 2.0 (France) Attribution: tatoeba.org #5155189 (CK) & #6119438 (verdastelo9604) +How do you feel about the issue? 你對這個問題有甚麼感受? CC-BY 2.0 (France) Attribution: tatoeba.org #59469 (CK) & #6101334 (verdastelo9604) +How do you spell your last name? 你的姓怎麼拼? CC-BY 2.0 (France) Attribution: tatoeba.org #914379 (CK) & #885531 (Martha) +How do you write your last name? 你的姓氏怎么写? CC-BY 2.0 (France) Attribution: tatoeba.org #914377 (CK) & #5794104 (verdastelo9604) +How long can I borrow this book? 这本书我能借多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1139053 (soj4l) & #333402 (fucongcong) +How long did it take to do that? 你做那事用了多久? CC-BY 2.0 (France) Attribution: tatoeba.org #5849086 (CK) & #6623194 (verdastelo9604) +How long do you plan on staying? 你准备待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #6337785 (CK) & #333370 (fucongcong) +How long have you been in Japan? 你去了日本多久? CC-BY 2.0 (France) Attribution: tatoeba.org #16464 (CK) & #768234 (Martha) +How many books are on the shelf? 櫃子上有幾本書? CC-BY 2.0 (France) Attribution: tatoeba.org #6048687 (CK) & #6049588 (magicalrpetz47) +How many boys are in this class? 这个班有多少男生? CC-BY 2.0 (France) Attribution: tatoeba.org #2082877 (CK) & #332709 (fucongcong) +How much is the tour per person? 一個人的旅費多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #60893 (CK) & #883282 (Martha) +How soon will the meeting begin? 会议什么时候开始? CC-BY 2.0 (France) Attribution: tatoeba.org #37546 (CK) & #1438406 (asosan) +How's your project coming along? 你的项目进展得怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #34058 (CK) & #8792027 (slo_oth) +Humans only live about 70 years. 一个人只能活七十岁左右。 CC-BY 2.0 (France) Attribution: tatoeba.org #1990616 (CM) & #8739474 (crescat) +I agree with you to some extent. 我在一定程度上同意你的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #67189 (CK) & #926568 (Martha) +I agreed with him on that point. 我在那一點上同意他。 CC-BY 2.0 (France) Attribution: tatoeba.org #254590 (CK) & #918114 (Martha) +I almost didn't visit Australia. 我差点没去澳大利亚 CC-BY 2.0 (France) Attribution: tatoeba.org #7186711 (CK) & #8746386 (cxpadonis) +I am a Hyogo University student. 我是個兵庫大學的學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #473807 (blay_paul) & #910211 (Martha) +I am accustomed to working hard. 我习惯辛勤努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #256078 (CK) & #1067293 (cranewang) +I am busy cooking at the moment. 我此刻正忙著做飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #257461 (CK) & #919957 (Martha) +I am familiar with this subject. 我熟悉這個主題。 CC-BY 2.0 (France) Attribution: tatoeba.org #253620 (CK) & #918546 (Martha) +I am fixing the washing machine. 我在修洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1682367 (Amastan) & #9096097 (xjjAstrus) +I am happiest when I am reading. 當我閱讀的時候,我最快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #259748 (CK) & #917902 (Martha) +I am leaving for Tokyo tomorrow. 我明天要離開去東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #323451 (CN) & #848860 (Martha) +I am not always free on Sundays. 我星期日並不總是有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #259845 (CK) & #850296 (Martha) +I am not frightened of anything. 我不害怕任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #256392 (CK) & #848638 (Martha) +I am thinking about that matter. 我在想那個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254711 (CK) & #918053 (Martha) +I am willing to take your offer. 我願意接受你的報價。 CC-BY 2.0 (France) Attribution: tatoeba.org #70535 (CK) & #926805 (Martha) +I asked Tom what he was reading. 我问了汤姆在读什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4759315 (CK) & #4759962 (ryanwoo) +I believe he is coming tomorrow. 我相信他明天會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #304128 (CK) & #941122 (Martha) +I bet ten dollars on that horse. 我在那匹馬下十美元的賭注。 CC-BY 2.0 (France) Attribution: tatoeba.org #252961 (CK) & #882176 (Martha) +I borrowed money from my father. 我向我父親借錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #261561 (CK) & #848905 (Martha) +I bought a camera the other day. 我前幾天買了一台照相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #273096 (CK) & #883133 (Martha) +I can barely stand his behavior. 我可以勉強地容忍他的行為。 CC-BY 2.0 (France) Attribution: tatoeba.org #403606 (CK) & #846324 (Martha) +I can only give you ten minutes. 我只能给你十分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #5870598 (peterius) & #1313913 (vicch) +I can only see it getting worse. 我只看见它变得更糟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5729532 (CM) & #5949097 (verdastelo9604) +I can recommend this restaurant. 我推荐这个餐厅。 CC-BY 2.0 (France) Attribution: tatoeba.org #60334 (CK) & #8692928 (crescat) +I can't believe you bought this. 我不信你買了這個東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301936 (CK) & #6624647 (verdastelo9604) +I can't breathe through my nose. 我的鼻子没办法呼吸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318196 (CK) & #343677 (fucongcong) +I can't understand his feelings. 我不明白他的感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #402981 (CK) & #833790 (Martha) +I canceled my hotel reservation. 我取消了我旅館的預訂。 CC-BY 2.0 (France) Attribution: tatoeba.org #255599 (CK) & #920112 (Martha) +I caught him stealing the money. 我抓到他偷錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #283552 (CK) & #848977 (Martha) +I changed my address last month. 上個月我換了我的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #259043 (CK) & #848216 (Martha) +I climbed in through the window. 我从窗口爬进来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2923169 (Hybrid) & #8511433 (gumblex) +I couldn't remember their names. 我不記得他們的名字了。 CC-BY 2.0 (France) Attribution: tatoeba.org #400272 (CK) & #834417 (Martha) +I couldn't understand his ideas. 我無法理解他的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #403609 (CK) & #833159 (Martha) +I didn't even know Tom had left. 我甚至不知道湯姆離開了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2291153 (CK) & #6084398 (verdastelo9604) +I didn't feel like buying a car. 我不想買車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258408 (CK) & #919719 (Martha) +I didn't go to school yesterday. 昨天你没有去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #1174791 (CK) & #1790071 (sadhen) +I didn't go, but stayed at home. 我沒去,但我留在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257409 (CK) & #917897 (Martha) +I didn't know that he was there. 我不知道他在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #394206 (CK) & #917928 (Martha) +I didn't like beer at that time. 那时候我不喜欢啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #252167 (CK) & #336274 (fucongcong) +I didn't mean to keep it secret. 我不是有意要保密的。 CC-BY 2.0 (France) Attribution: tatoeba.org #254844 (CK) & #4760001 (ryanwoo) +I didn't recognize him at first. 起初我沒認出他來。 CC-BY 2.0 (France) Attribution: tatoeba.org #244048 (CK) & #848424 (Martha) +I didn't study at all yesterday. 我昨天都沒讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #257788 (CK) & #848325 (Martha) +I didn't want to mislead anyone. 我不想誤導任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4071879 (CK) & #6923192 (verdastelo9604) +I don't care if it's a bit cold. 稍微冷点儿不要紧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075746 (CK) & #1438336 (asosan) +I don't feel like working today. 我今天不想上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #242859 (CK) & #848805 (Martha) +I don't go to school on Sundays. 我周日不去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #451754 (FeuDRenais) & #444784 (fucongcong) +I don't have a computer at home. 我家没有电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #708138 (Nevado) & #710294 (fucongcong) +I don't have the slightest idea. 我沒有絲毫的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #22089 (CK) & #792385 (Martha) +I don't know anything about him. 我不知道任何有關他的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #465971 (CK) & #846153 (Martha) +I don't know if I have the time. 我不知道我有沒有時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #1292 (Ramses) & #17 (Martha) +I don't know if I still have it. 我不知道我还有没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #1459 (CK) & #335038 (fucongcong) +I don't know if Tom can help us. 我不知道湯姆能不能幚我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #6389252 (SilasNordgren) & #6333814 (verdastelo9604) +I don't know what Tom's plan is. 我不知道湯姆的計劃是甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #6249307 (CK) & #6583884 (verdastelo9604) +I don't know. What do you think? 我不知道。你怎麼想? CC-BY 2.0 (France) Attribution: tatoeba.org #869530 (CM) & #6874551 (verdastelo9604) +I don't like artificial flowers. 我不喜歡假花。 CC-BY 2.0 (France) Attribution: tatoeba.org #259202 (CK) & #834588 (Martha) +I don't like the way she speaks. 我不喜欢她说话的态度。 CC-BY 2.0 (France) Attribution: tatoeba.org #261318 (CK) & #1777929 (sunnywqing) +I don't often do that by myself. 我不經常自己去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6257291 (CK) & #6585438 (verdastelo9604) +I don't think that he will come. 我不認為他會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #304543 (CK) & #881855 (Martha) +I don't understand what he said. 我不明白他说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487707 (weihaiping) & #791467 (fucongcong) +I don't want any bananas at all. 我一個香蕉也不要。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492557 (CK) & #8825035 (xjjAstrus) +I don't want to have this fight. 我不想打这架。 CC-BY 2.0 (France) Attribution: tatoeba.org #5729499 (CM) & #6103084 (verdastelo9604) +I don't want to take the chance. 我不想冒這個險。 CC-BY 2.0 (France) Attribution: tatoeba.org #2014654 (CK) & #2637090 (cienias) +I enjoyed watching TV yesterday. 昨天我很開心地看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #63321 (CK) & #834650 (Martha) +I feel a whole lot better today. 我今天感觉好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5211697 (CK) & #334279 (fucongcong) +I feel hopeful about the future. 我對未來感到有希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #258626 (CK) & #919706 (Martha) +I feel like going to the movies. 我想去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #256163 (CK) & #881683 (Martha) +I felt that the plan was unwise. 我覺得這計畫不是很聰明。 CC-BY 2.0 (France) Attribution: tatoeba.org #254298 (CK) & #2511469 (tsayng) +I filled up the vase with water. 我倒水進去花瓶裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2109209 (Roedgroed) & #1227147 (tsayng) +I forgot to telephone him today. 我今天忘了打電話給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #387433 (CK) & #846374 (Martha) +I gave Tom a going-away present. 我送给汤姆一份临别礼物 CC-BY 2.0 (France) Attribution: tatoeba.org #2541571 (CK) & #5426366 (Janevy) +I gave her just what she needed. 我給她的正是她所需要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #261011 (CK) & #889179 (Martha) +I get up at 6:30 on school days. 他在上學的日子裡6:30起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #6257186 (CK) & #6585422 (verdastelo9604) +I got up very late this morning. 今天早上我起得很晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #257532 (CK) & #880987 (Martha) +I guess that she is over thirty. 我猜她超過三十歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310153 (CK) & #881898 (Martha) +I guess that would be all right. 我猜那應該可以的。 CC-BY 2.0 (France) Attribution: tatoeba.org #40581 (CK) & #801923 (Martha) +I guess that would be all right. 我想那應該沒關係的。 CC-BY 2.0 (France) Attribution: tatoeba.org #40581 (CK) & #801924 (Martha) +I guess that's how Tom found me. 我猜那就是汤姆找到我的方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #5731097 (CM) & #5983670 (verdastelo9604) +I had a chance to travel abroad. 我有個到國外旅遊的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #22186 (CK) & #801916 (Martha) +I had a telephone call from her. 我有一通來自她的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #308163 (CK) & #796056 (Martha) +I had a telephone call from her. 她打了一通電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #308163 (CK) & #796057 (Martha) +I had my watch stolen yesterday. 我的手錶昨天被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257781 (CK) & #801995 (Martha) +I had no idea Tom was not happy. 我不知道汤姆不开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952074 (CK) & #9316472 (slo_oth) +I have already done my homework. 我已經做了我的家庭作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #20527 (CK) & #846565 (Martha) +I have already finished the job. 我已經完成了這項工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #254012 (CK) & #846349 (Martha) +I have been here for many years. 我在這裡已經很多年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256448 (CK) & #875377 (Martha) +I have known her for five years. 我已經認識她五年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261113 (CK) & #882980 (Martha) +I have more experience than Tom. 我比汤姆更有经验。 CC-BY 2.0 (France) Attribution: tatoeba.org #4102976 (CK) & #5663451 (verdastelo9604) +I have nothing more to do today. 我今天沒有更多的事要做的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257588 (CK) & #878425 (Martha) +I haven't had much sleep lately. 我最近没怎么睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359832 (CK) & #8798300 (crescat) +I haven't quite finished eating. 我還沒有完全吃完。 CC-BY 2.0 (France) Attribution: tatoeba.org #51961 (CK) & #835373 (Martha) +I hear you, but I don't see you. 我听得见你,但我看不见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #488205 (saasmath) & #426875 (fucongcong) +I heard her singing in her room. 我聽到她在她的房間裡唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #261049 (CK) & #881007 (Martha) +I heard him play the piano once. 我聽過一次他彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #259992 (CK) & #883033 (Martha) +I heard someone calling my name. 我聽見有人叫我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #276158 (CK) & #846348 (Martha) +I heard the front doorbell ring. 我聽到前門的門鈴響了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257278 (CK) & #848552 (Martha) +I heard the song sung in French. 我听过这首歌的法语版。 CC-BY 2.0 (France) Attribution: tatoeba.org #254253 (CM) & #334620 (fucongcong) +I helped my father wash his car. 我幫我父親洗他的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #261523 (CK) & #889573 (Martha) +I hung the calendar on the wall. 我把日曆掛在牆上。 CC-BY 2.0 (France) Attribution: tatoeba.org #8704886 (chanchan) & #2806369 (cienias) +I introduced Mary to my parents. 我把玛丽介绍给我的父母了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255720 (CK) & #437414 (fucongcong) +I just ate sushi and drank beer. 我剛才吃了壽司喝了啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #833290 (Zifre) & #859062 (Martha) +I just need you to come with me. 我只要你跟我来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2372846 (CK) & #5663529 (verdastelo9604) +I just wanted to check my email. 我只想查一下我的电子邮件。 CC-BY 2.0 (France) Attribution: tatoeba.org #1488 (CK) & #334711 (fucongcong) +I knew that something was wrong. 我知道有些事不對。 CC-BY 2.0 (France) Attribution: tatoeba.org #4134977 (CK) & #6119474 (verdastelo9604) +I know how to solve the problem. 我知道怎么解决这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2043730 (CM) & #5668916 (hzy980512) +I know that can't really happen. 我知道那不會真的發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376112 (CK) & #6472017 (verdastelo9604) +I know that you think I'm crazy. 我知道你覺得我瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7519735 (CK) & #8215675 (verdastelo9604) +I know this is important to you. 我知道这对您来说很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #6257108 (CK) & #4878908 (musclegirlxyp) +I looked around, but saw nobody. 我環顧四周,卻沒看見任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #257262 (CK) & #819021 (Martha) +I love my grandmother very much. 我非常愛我的祖母。 CC-BY 2.0 (France) Attribution: tatoeba.org #259156 (CK) & #846592 (Martha) +I made my way through the crowd. 我穿過了人群向前走。 CC-BY 2.0 (France) Attribution: tatoeba.org #258878 (CK) & #801951 (Martha) +I must hand in the report today. 我今天必須交報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #243008 (CK) & #887787 (Martha) +I paid ten dollars for this cap. 我付了十美元買這頂帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #57135 (CK) & #881262 (Martha) +I passed by her house yesterday. 我昨天經過她家。 CC-BY 2.0 (France) Attribution: tatoeba.org #257801 (CK) & #852178 (Martha) +I plan to catch the 10:30 train. 我打算搭十點三十分的火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2771165 (josephdlorimer) & #765696 (Martha) +I played tennis with my brother. 我和我的兄弟打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #257147 (CK) & #858794 (Martha) +I prefer red wine to white wine. 我喜歡紅葡萄酒勝過白葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2348739 (CK) & #795851 (Martha) +I promise I'll do that tomorrow. 我保證明天就做 CC-BY 2.0 (France) Attribution: tatoeba.org #6048685 (CK) & #6049587 (magicalrpetz47) +I promise it won't happen again. 我保證它不會再發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361670 (CK) & #6151305 (verdastelo9604) +I really enjoyed myself tonight. 今晚我玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #242806 (CK) & #835439 (Martha) +I received her letter yesterday. 昨天我收到了她的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257802 (CK) & #834679 (Martha) +I remember seeing her somewhere. 我記得在哪兒見過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #38237 (CK) & #835770 (Martha) +I remember seeing you last year. 我記得去年看過你。 CC-BY 2.0 (France) Attribution: tatoeba.org #244569 (CK) & #862894 (Martha) +I saw a cottage in the distance. 我看见远处有一间小屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #25831 (CK) & #847825 (fucongcong) +I saw him swim across the river. 我看見他游過了河。 CC-BY 2.0 (France) Attribution: tatoeba.org #260019 (CK) & #882170 (Martha) +I stayed at his place yesterday. 我昨天住在他家。 CC-BY 2.0 (France) Attribution: tatoeba.org #244534 (CK) & #858225 (Martha) +I think Mary is very attractive. 我认为玛丽很有吸引力。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664857 (CK) & #5983683 (verdastelo9604) +I think Tom has a crush on Mary. 我觉得汤姆爱上玛丽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408241 (CK) & #8605874 (slo_oth) +I think Tom should go on a diet. 我觉得汤姆需要减肥了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330585 (CK) & #8715847 (crescat) +I think you should see a doctor. 我覺得你應該去看醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #28054 (CK) & #881208 (Martha) +I think you've done this before. 我想你以前做过这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2458613 (CK) & #7774827 (jiangche) +I thought I had all the answers. 我認為我有所有的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961228 (CK) & #6325088 (verdastelo9604) +I thought my head would explode. 我觉得我的头要炸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4398136 (CK) & #5630411 (verdastelo9604) +I thought we had agreed on this. 我認為我們己經同意了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541547 (CK) & #6091709 (verdastelo9604) +I thought your parents liked me. 我認為你的父母喜歡我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961855 (CK) & #6111975 (verdastelo9604) +I wake him at six every morning. 我每天早上6点叫醒他。 CC-BY 2.0 (France) Attribution: tatoeba.org #322386 (CK) & #333105 (fucongcong) +I walked in the woods by myself. 我自己走進了樹林裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #256066 (CK) & #881534 (Martha) +I want to marry a girl like her. 我想和一个像她那样的女孩结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #309055 (CK) & #334198 (fucongcong) +I want to see your older sister. 我想見你姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1526457 (pauldhunt) & #1525706 (egg0073) +I want you to tell me the truth. 我想你把真相告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2429 (CK) & #392673 (fucongcong) +I want you to tell me the truth. 我想要你把真相告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2429 (CK) & #1776812 (sadhen) +I was angry because he was late. 因為他遲到了,所以我很生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #260121 (CK) & #885405 (Martha) +I was brought up in the country. 我在鄉下被撫養長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #259607 (CK) & #881247 (Martha) +I was kicked out of high school. 我被高中退學了。 CC-BY 2.0 (France) Attribution: tatoeba.org #327632 (CK) & #881004 (Martha) +I was the happiest man on earth. 我曾是世界上最幸福的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #253676 (CK) & #345870 (fucongcong) +I wasn't quite sure what to say. 我不太確定要說什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447032 (CK) & #4732066 (egg0073) +I will buy a new car next month. 我下个月买辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #262131 (CK) & #5865499 (verdastelo9604) +I will come, weather permitting. 如果天气允许的话,我就去。 CC-BY 2.0 (France) Attribution: tatoeba.org #278838 (CK) & #2028484 (ydcok) +I will go with you if necessary. 如果必要的話, 我會和你一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #318266 (CK) & #793504 (Martha) +I will lend you this dictionary. 我會借給你這本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #1795986 (ifethereal) & #835327 (Martha) +I wish I could buy a motorcycle. 但願我能買一輛摩托車。 CC-BY 2.0 (France) Attribution: tatoeba.org #65134 (CK) & #893322 (Martha) +I wish they would stop fighting. 我希望他們會停止戰鬥。 CC-BY 2.0 (France) Attribution: tatoeba.org #304930 (CK) & #862680 (Martha) +I won't let him come here again. 我不會再讓他來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #392142 (CK) & #891739 (Martha) +I won't make that mistake again. 我不會再犯那錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361811 (CK) & #6146527 (verdastelo9604) +I wonder what I should do today. 我在想我今天该干什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #243030 (CK) & #335326 (fucongcong) +I wonder what this phrase means. 我想知道这句话的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #60565 (fucongcong) & #334097 (fucongcong) +I'd like to check out right now. 我想現在結帳離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #241643 (CK) & #801386 (Martha) +I'd like to know the exact time. 我想知道確切的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #271598 (CK) & #801388 (Martha) +I'd like to send these to Japan. 我想將這些寄送到日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #60034 (CK) & #801390 (Martha) +I'd rather walk than take a bus. 我寧願走路勝過搭公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #35264 (CK) & #891742 (Martha) +I'll clean up the kitchen later. 我等一下將清理廚房。 CC-BY 2.0 (France) Attribution: tatoeba.org #240131 (CK) & #858820 (Martha) +I'll follow you wherever you go. 無論你去哪裡我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #255217 (CK) & #850409 (Martha) +I'll get in touch with you soon. 我會很快跟你聯絡。 CC-BY 2.0 (France) Attribution: tatoeba.org #18762 (CK) & #894426 (Martha) +I'll get there as soon as I can. 我会尽可能早地到那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #953799 (CK) & #1413680 (sadhen) +I'll give you anything but this. 除了這個之外我會給你任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #54908 (CK) & #793886 (Martha) +I'll never allow you to do that. 我絶不會讓你去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5937820 (CK) & #6120874 (verdastelo9604) +I'll never forget your kindness. 我永遠不會忘記你的親切。 CC-BY 2.0 (France) Attribution: tatoeba.org #252833 (CK) & #345856 (ZPVIP) +I'll never forget your kindness. 我永遠不會忘記你的好意。 CC-BY 2.0 (France) Attribution: tatoeba.org #252833 (CK) & #850362 (Martha) +I'll not be at home next Sunday. 我下周日不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #257561 (CK) & #333554 (fucongcong) +I'll send a letter to my mother. 我会给我的母亲寄封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #3012368 (CK) & #5091340 (mirrorvan) +I'll show you how to catch fish. 我会向你展示怎样捕鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #19355 (CK) & #1438389 (asosan) +I'm a member of the tennis club. 我是网球俱乐部的会员。 CC-BY 2.0 (France) Attribution: tatoeba.org #255084 (Eldad) & #332450 (fucongcong) +I'm a professional photographer. 我是專業攝影師。 CC-BY 2.0 (France) Attribution: tatoeba.org #2628724 (CK) & #2629254 (egg0073) +I'm asking what your opinion is. 我在問你的選擇是甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541413 (CK) & #6206032 (verdastelo9604) +I'm glad that you guys are here. 我很高兴你们都在。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462514 (CK) & #8463574 (gumblex) +I'm going on vacation next week. 我下週要去度假。 CC-BY 2.0 (France) Attribution: tatoeba.org #1957987 (CK) & #876199 (Martha) +I'm going to attend the meeting. 我將出席這個會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #254261 (CK) & #860831 (Martha) +I'm going to check out at eight. 我會在八點鐘的時候登出。 CC-BY 2.0 (France) Attribution: tatoeba.org #72315 (CK) & #894139 (Martha) +I'm going to tell you the truth. 我要告诉你真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541368 (CK) & #5983600 (verdastelo9604) +I'm leaving for Canada tomorrow. 我明天要離開去加拿大。 CC-BY 2.0 (France) Attribution: tatoeba.org #261916 (CK) & #834723 (Martha) +I'm looking for a part-time job. 我正在找一份兼職的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #35527 (CK) & #861478 (Martha) +I'm looking for a room for rent. 我在找一間出租的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #259305 (CK) & #894425 (Martha) +I'm looking for my contact lens. 我在找我的隱形眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #54811 (CK) & #851542 (Martha) +I'm not feeling that hungry yet. 我感觉还不是那么饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4764536 (Stalwartlover) & #4764565 (ryanwoo) +I'm satisfied with his progress. 我對他的進步感到很滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #286877 (CK) & #918554 (Martha) +I'm short of cash at the moment. 此刻我缺少現金。 CC-BY 2.0 (France) Attribution: tatoeba.org #241821 (CK) & #801376 (Martha) +I'm sorry for the late response. 我很抱歉回复晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1039687 (arashi_29) & #4468894 (MirendaBABY) +I'm sorry to have disturbed you. 對不起打擾你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #53056 (CK) & #850363 (Martha) +I'm sorry, I forgot my homework. 很抱歉我忘了寫作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #7816230 (sharris123) & #3706775 (egg0073) +I'm staying at the Hilton Hotel. 我留在希尔顿宾馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5450809 (CK) & #5556245 (verdastelo9604) +I'm sure you'll never regret it. 我確定你永不後悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #5681867 (CK) & #6923213 (verdastelo9604) +I'm thinking of going to Europe. 我正在考慮去歐洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #255860 (CK) & #858719 (Martha) +I'm tired of him bawling me out. 我厭煩了他對我說教。 CC-BY 2.0 (France) Attribution: tatoeba.org #403326 (CK) & #890959 (Martha) +I'm too excited to eat anything. 我興奮得吃不下任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #321755 (CK) & #856370 (Martha) +I've already told you the truth. 我已經告訴你真相了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5451977 (CK) & #5452169 (egg0073) +I've been busy repairing things. 我一直在忙着修东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2046838 (CK) & #8584898 (tianblr) +I've been careful my whole life. 我一生都谨慎行事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2047683 (CK) & #5903469 (verdastelo9604) +I've been looking for my tripod. 我一直在找我的三腳架。 CC-BY 2.0 (France) Attribution: tatoeba.org #6116855 (nickyeow) & #6100204 (xjjAstrus) +I've been requested to help you. 有人请我帮你。 CC-BY 2.0 (France) Attribution: tatoeba.org #953895 (CK) & #5949249 (verdastelo9604) +I've enjoyed reading this novel. 我喜歡讀這本小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794615 (CK) & #848423 (Martha) +I've finished reading that book. 我讀完了那本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #418867 (CK) & #834888 (Martha) +I've had enough of your excuses. 你给我的理由够多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4545442 (CK) & #5670730 (verdastelo9604) +I've never been so proud of you. 我从没这么以你为豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360012 (CK) & #5780629 (verdastelo9604) +I've never seen that guy before. 我從沒看過那個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5451981 (CK) & #5452168 (egg0073) +I've seen a lot of him recently. 我最近常看到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1415959 (CK) & #1330011 (vicch) +If I were you, I wouldn't do it. 如果我是你,我就不做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #30621 (CK) & #6635897 (verdastelo9604) +If he doesn't come, we won't go. 如果他不來了,我們不會去。 CC-BY 2.0 (France) Attribution: tatoeba.org #284276 (CK) & #891754 (Martha) +If you get sleepy, just tell me. 困了的话就说哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #4525579 (CK) & #5100235 (mirrorvan) +If you make a mess, clean it up. 如果你弄乱了,你来打扫。 CC-BY 2.0 (France) Attribution: tatoeba.org #700461 (darinmex) & #805610 (fucongcong) +In Hungary they speak Hungarian. 在匈牙利說匈牙利文。 CC-BY 2.0 (France) Attribution: tatoeba.org #1657265 (CK) & #3742616 (egg0073) +In March, many flowers come out. 許多花在三月份綻放。 CC-BY 2.0 (France) Attribution: tatoeba.org #72709 (CK) & #844506 (Martha) +In life there are ups and downs. 生活中有高低起伏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2349 (Eldad) & #771994 (Martha) +In my room, there are no clocks. 我的房间里没有时钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1494456 (CS) & #8703965 (crescat) +Is someone knocking on the door? 有人敲门吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4356690 (CK) & #5942074 (verdastelo9604) +Is the post office still closed? 邮局还关着门吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4496607 (CK) & #5983566 (verdastelo9604) +Is there anything else you want? 还有什么想要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2541278 (CK) & #8902614 (crescat) +Is there someone that can drive? 有人会开车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1476853 (weihaiping) & #817279 (fucongcong) +It became dark before I knew it. 我不知道天色變暗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24564 (CK) & #801418 (Martha) +It is already past five o'clock. 已經過了五點鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #31693 (CK) & #860747 (Martha) +It is high time you were in bed. 你早该睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #69739 (CM) & #5092045 (mirrorvan) +It is said the house is haunted. 据说这房子是个鬼屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #791079 (CM) & #8854622 (crescat) +It is ten minutes before eleven. 還有十分鐘就十一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #73363 (CK) & #852152 (Martha) +It is this window that he broke. 他砸坏的是这扇窗。 CC-BY 2.0 (France) Attribution: tatoeba.org #283479 (CK) & #431479 (fucongcong) +It may be that he likes his job. 他可能喜欢他的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #274987 (CM) & #804784 (fucongcong) +It rains a lot in June in Japan. 在日本,6月的时候会下很多雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #281199 (CK) & #8775799 (crescat) +It seems that I've lost my keys. 我好像丢了我的钥匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #7727927 (CK) & #349683 (fucongcong) +It snowed from Monday to Friday. 雪从周一下到周五。 CC-BY 2.0 (France) Attribution: tatoeba.org #272600 (CK) & #347045 (fucongcong) +It soon began to rain very hard. 很快就會開始大雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32469 (CK) & #798056 (Martha) +It's a matter of life and death. 这是一个生和死的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1920134 (Spamster) & #4265166 (notabene) +It's about time to go to school. 差不多该去学校了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31577 (CK) & #8765165 (crescat) +It's been an amazing experience. 这是奇妙的体验。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529563 (CK) & #6047428 (verdastelo9604) +It's been raining since morning. 雨從早上一直下到現在。 CC-BY 2.0 (France) Attribution: tatoeba.org #277736 (CK) & #834836 (Martha) +It's going to rain this evening. 今天晚上會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #243259 (CK) & #859055 (Martha) +It's likely that she'll succeed. 她很有可能会有所成就。 CC-BY 2.0 (France) Attribution: tatoeba.org #903407 (CK) & #7767678 (jiangche) +It's likely to rain all weekend. 可能整個週末都下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #6025182 (CK) & #6105233 (verdastelo9604) +It's no use telling me anything. 對我說什麼都是沒用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #250058 (CM) & #8387384 (wangchou) +It's time to get some work done. 到了做點事的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497676 (CK) & #6109321 (verdastelo9604) +It's warm for this time of year. 對一年的這個時候來說,天氣很溫暖。 CC-BY 2.0 (France) Attribution: tatoeba.org #242060 (CK) & #894411 (Martha) +John is two years older than me. John比我大两岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1408616 (CK) & #343932 (fucongcong) +Justice will prevail in the end. 正义终将胜利。 CC-BY 2.0 (France) Attribution: tatoeba.org #243905 (CM) & #5907524 (verdastelo9604) +Last summer I traveled to Italy. 去年夏天我去意大利旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #19435 (CK) & #861153 (Martha) +Later he wrote to the president. 他后来写信给总统。 CC-BY 2.0 (France) Attribution: tatoeba.org #803047 (Source_VOA) & #1394976 (mtdot) +Learning French isn't difficult. 学法语不难。 CC-BY 2.0 (France) Attribution: tatoeba.org #8415698 (CK) & #8463626 (gumblex) +Leave a space between the lines. 行與行之間要留一個空間。 CC-BY 2.0 (France) Attribution: tatoeba.org #241117 (CK) & #797025 (Martha) +Leave your umbrella in the hall. 把你的雨傘放在走廊裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #63762 (CK) & #9035057 (xjjAstrus) +Leaves begin to fall in October. 樹葉在十月開始掉落下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #323614 (CK) & #801342 (Martha) +Lend me your dictionary, please. 请把你的字典借给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #70603 (CK) & #843558 (fucongcong) +Let me know if I need to change. 让我知道我是否需要改变。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230706 (alec) & #334156 (fucongcong) +Let me take your blood pressure. 讓我量量你的血壓。 CC-BY 2.0 (France) Attribution: tatoeba.org #238765 (CK) & #858343 (Martha) +Let's have a few drinks tonight. 讓我們今晚喝幾杯。 CC-BY 2.0 (France) Attribution: tatoeba.org #435631 (CK) & #858285 (Martha) +Let's leave the decision to Tom. 讓我們留給他作決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #238567 (CK) & #864354 (Martha) +Let's talk over a cup of coffee. 让我们边喝咖啡边谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #62197 (CK) & #2040517 (sadhen) +Life cannot exist without water. 水是生命的源泉。 CC-BY 2.0 (France) Attribution: tatoeba.org #466972 (Zifre) & #2444296 (fenfang557) +London was bombed several times. 倫敦被轟炸過許多次。 CC-BY 2.0 (France) Attribution: tatoeba.org #29267 (CK) & #5363932 (egg0073) +Long hair is out of fashion now. 长发现在过时了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278138 (CK) & #5900383 (verdastelo9604) +Lots of famous people come here. 許多名人來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #40991 (CK) & #859357 (Martha) +Many friends came to see me off. 許多朋友來為我送行。 CC-BY 2.0 (France) Attribution: tatoeba.org #402907 (CK) & #890995 (Martha) +Mary grabbed her purse and left. Mary霸占了她的包包并且离开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4051691 (CK) & #4845025 (pig8322) +Mathematics is difficult for me. 數學對我來說很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #271013 (CK) & #834881 (Martha) +May I come and see you tomorrow? 我明天可以來看你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323088 (CK) & #892532 (Martha) +May I see your driver's license? 我可以看看你的駕駛執照嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #405789 (CK) & #856375 (Martha) +May I share this table with you? 我可以跟你共用這張桌子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274140 (CK) & #894285 (Martha) +Maybe he will be a good teacher. 也許他會是一個很好的老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #40569 (CK) & #891028 (Martha) +Maybe you'd better come with us. 也許你最好和我們一起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #61429 (CK) & #861361 (Martha) +Millions were affected that day. 那天有數百萬人受影響。 CC-BY 2.0 (France) Attribution: tatoeba.org #5729015 (CM) & #6057848 (verdastelo9604) +Mother bakes cookies on Sundays. 妈妈周日烤曲奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #320834 (jakov) & #442151 (fucongcong) +Movie making is an exciting job. 電影製作是一個令人興奮的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #26433 (CK) & #797016 (Martha) +My attitude towards him changed. 我对他的态度变了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285120 (CK) & #333218 (fucongcong) +My aunt brought me some flowers. 我阿姨給我帶來了一些花。 CC-BY 2.0 (France) Attribution: tatoeba.org #64922 (CK) & #851545 (Martha) +My aunt made a new skirt for me. 我阿姨做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #860118 (piksea) & #801965 (Martha) +My aunt made a new skirt for me. 我舅母做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #860118 (piksea) & #801966 (Martha) +My aunt made a new skirt for me. 我嬸嬸做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #860118 (piksea) & #801967 (Martha) +My aunt made a new skirt for me. 我姑姑做了一條新裙子給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #860118 (piksea) & #801968 (Martha) +My brother is a college student. 我哥哥是個大學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #250722 (CK) & #864287 (Martha) +My car cost more than yours did. 我的车子的开销比你的要多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898315 (CK) & #4845072 (pig8322) +My dog follows me wherever I go. 無論我去哪裡,我的狗都跟著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #250764 (CK) & #894393 (Martha) +My dream is to become a teacher. 我的夢想是成為一名教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #251938 (CK) & #891704 (Martha) +My father didn't eat much fruit. 我父親沒有吃很多的水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149828 (FeuDRenais) & #804509 (Martha) +My father drives a very old car. 我的父親開一輛舊車。 CC-BY 2.0 (France) Attribution: tatoeba.org #251724 (CK) & #892579 (Martha) +My father has never been abroad. 我父親從來沒有出過國。 CC-BY 2.0 (France) Attribution: tatoeba.org #319075 (CK) & #850316 (Martha) +My father is very angry with me. 我父親對我非常生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #319220 (CK) & #891721 (Martha) +My father likes pizza very much. 我父親非常喜歡披薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #251649 (CK) & #862685 (Martha) +My father repaired my old watch. 我父親修理了我的舊手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #318873 (CK) & #779058 (Martha) +My father sometimes goes abroad. 我父親偶爾出國。 CC-BY 2.0 (France) Attribution: tatoeba.org #251692 (CK) & #834673 (Martha) +My friends invited me to dinner. 我的朋友邀請我去吃晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #324383 (CK) & #850116 (Martha) +My friends invited me to supper. 我朋友邀我共赴晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #599162 (CK) & #1236334 (tsayng) +My grandmother lives by herself. 我祖母獨自生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #65595 (CK) & #834818 (Martha) +My hobby is collecting old toys. 我的嗜好是收集舊玩具。 CC-BY 2.0 (France) Attribution: tatoeba.org #497116 (CK) & #850694 (Martha) +My hobby is making model planes. 我的嗜好是做模型飛機。 CC-BY 2.0 (France) Attribution: tatoeba.org #251150 (CK) & #864292 (Martha) +My house is close to a bus stop. 我的房子靠近一個公車站牌。 CC-BY 2.0 (France) Attribution: tatoeba.org #250534 (CK) & #842424 (Martha) +My mother hates writing letters. 我媽媽討厭寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #320796 (CK) & #836108 (Martha) +My mother is reading a magazine. 我媽媽正在讀一本雜誌。 CC-BY 2.0 (France) Attribution: tatoeba.org #320720 (CK) & #860947 (Martha) +My mother made a sweater for me. 我媽媽為我做了一件毛衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #484057 (CK) & #860835 (Martha) +My mother made me a white dress. 我媽媽為我做了一件白色的洋裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #320759 (CK) & #894045 (Martha) +My office is on the fifth floor. 我的辦公室在五樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #251002 (CK) & #894059 (Martha) +My problem is I don't trust you. 我的问题是我不信任你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663270 (CK) & #5574813 (verdastelo9604) +My room is upstairs on the left. 我的房間在樓上的左邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #251791 (CK) & #788842 (Martha) +My room looks out on the street. 從我的房間望出去是街道。 CC-BY 2.0 (France) Attribution: tatoeba.org #251786 (CK) & #788830 (Martha) +New Year's Day is close at hand. 元旦就在眼前。 CC-BY 2.0 (France) Attribution: tatoeba.org #271613 (CM) & #778030 (Martha) +New York is on the Hudson River. 紐約位在哈得遜河。 CC-BY 2.0 (France) Attribution: tatoeba.org #35908 (CK) & #798158 (Martha) +No one had anything left to say. 沒有人有話可說。 CC-BY 2.0 (France) Attribution: tatoeba.org #477361 (CK) & #891735 (Martha) +No security system is foolproof. 沒有防傻的安全系統。 CC-BY 2.0 (France) Attribution: tatoeba.org #945663 (darinmex) & #6111909 (verdastelo9604) +None of my friends drink coffee. 我的朋友都不喝咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #252024 (CK) & #862713 (Martha) +Nothing's as important as peace. 没有什么和和平一样重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230692 (alec) & #334140 (fucongcong) +Of course she can speak English. 她當然會講英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #388652 (CK) & #850319 (Martha) +On Mondays, he's always at home. 他星期一總是在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1474283 (Eldad) & #881706 (Martha) +One more bottle of wine, please. 麻煩再來一瓶葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #503831 (CK) & #862684 (Martha) +Only a few people understood me. 只有一些人了解我。 CC-BY 2.0 (France) Attribution: tatoeba.org #33041 (CK) & #862878 (Martha) +Only adults may watch that film. 只有成人可以看那种电影。 CC-BY 2.0 (France) Attribution: tatoeba.org #49532 (CK) & #1749951 (sadhen) +Our native language is Japanese. 我們的母語是日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #460266 (jeanne) & #811493 (Martha) +Pardon me, but that's my racket. 抱歉,这是我的球拍。 CC-BY 2.0 (France) Attribution: tatoeba.org #9331168 (CK) & #7772614 (jiangche) +Pardon me, do you speak English? 對不起。你會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #456591 (lukaszpp) & #811910 (Martha) +People live only about 70 years. 一个人只能活七十岁左右。 CC-BY 2.0 (France) Attribution: tatoeba.org #1990618 (CK) & #8739474 (crescat) +People should get more involved. 人们需要更多的交流。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846725 (CK) & #4846812 (pig8322) +Please answer all the questions. 請回答所有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #273706 (CK) & #5710173 (xjjAstrus) +Please buy a tube of toothpaste. 請買條牙膏吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #682251 (Source_VOA) & #884631 (Tajfun) +Please buy a tube of toothpaste. 請買一支牙膏。 CC-BY 2.0 (France) Attribution: tatoeba.org #682251 (Source_VOA) & #9049747 (xjjAstrus) +Please call the fire department. 请叫消防员。 CC-BY 2.0 (France) Attribution: tatoeba.org #268171 (CK) & #791435 (fucongcong) +Please come as soon as possible. 请尽快过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #38871 (CK) & #784036 (fucongcong) +Please continue with your story. 请继续讲你的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1892798 (CK) & #2004697 (sadhen) +Please don't take pictures here. 请别在这里拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #1191068 (CK) & #333345 (fucongcong) +Please excuse me for being rude. 請原諒我的魯莽。 CC-BY 2.0 (France) Attribution: tatoeba.org #265005 (CK) & #859409 (Martha) +Please fill out this form first. 請先填寫這張表格。 CC-BY 2.0 (France) Attribution: tatoeba.org #32820 (CK) & #860760 (Martha) +Please give me a glass of water. 请你给我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #250147 (saeb) & #334646 (fucongcong) +Please give me a glass of water. 請給我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #250147 (saeb) & #890631 (Martha) +Please give me something to eat. 請給我點東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #25075 (CK) & #864260 (Martha) +Please have a look at this book. 请看这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #954240 (CK) & #5581710 (verdastelo9604) +Please help me with my homework. 請幫我做我的家庭作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #38475 (CK) & #862724 (Martha) +Please knock before you come in. 进来之前请敲门。 CC-BY 2.0 (France) Attribution: tatoeba.org #38460 (CK) & #504885 (fucongcong) +Please let me take your picture. 請讓我為你拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #38836 (CK) & #856395 (Martha) +Please phone me before you come. 請你來之前打電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #279329 (CK) & #850589 (Martha) +Please say hello to your family. 带我向你家人问好。 CC-BY 2.0 (France) Attribution: tatoeba.org #38901 (Swift) & #4759993 (ryanwoo) +Please send us more information. 請給我們更多訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #269168 (CK) & #839558 (Martha) +Please serve him his meal first. 請先為他上菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #465970 (CK) & #850118 (Martha) +Please show me your injured arm. 請讓我看看你受傷的手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #62610 (CK) & #862850 (Martha) +Please show me your stamp album. 請讓我看看你的集郵冊。 CC-BY 2.0 (France) Attribution: tatoeba.org #70494 (CK) & #786403 (Martha) +Please shut the door behind you. 請隨手關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #240162 (CK) & #859258 (Martha) +Please stay as long as you wish. 你想待多久就待多久。 CC-BY 2.0 (France) Attribution: tatoeba.org #38542 (CK) & #893214 (Martha) +Please tell me what I should do. 請告訴我應該做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #411289 (CK) & #892569 (Martha) +Please tell me where to go next. 請告訴我下一步去哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #264163 (CK) & #891760 (Martha) +Prepare yourself for the future. 为将来做准备吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #422379 (phiz) & #8765162 (crescat) +Printing ink is in short supply. 油墨快没了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27159 (CK) & #332885 (fucongcong) +Put the book where you found it. 把書放在你找到的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #43896 (CK) & #894377 (Martha) +Radio's been replaced by the TV. 电视代替了收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #2438435 (FeuDRenais) & #2437271 (CLARET) +Run like your life depends on it 拼命地跑 CC-BY 2.0 (France) Attribution: tatoeba.org #8645643 (hamsolo474) & #5114847 (xjjAstrus) +Running is good for your health. 跑步對你的健康有益。 CC-BY 2.0 (France) Attribution: tatoeba.org #419112 (CK) & #852173 (Martha) +Say hello to your father for me. 代我向你父親問好。 CC-BY 2.0 (France) Attribution: tatoeba.org #64088 (CK) & #893023 (Martha) +See you tomorrow at the library. 明天图书馆见。 CC-BY 2.0 (France) Attribution: tatoeba.org #323425 (CK) & #794249 (fucongcong) +See you tomorrow in the library. 明天图书馆见。 CC-BY 2.0 (France) Attribution: tatoeba.org #507168 (darinmex) & #794249 (fucongcong) +Sewage often pollutes the ocean. 废水经常污染海洋。 CC-BY 2.0 (France) Attribution: tatoeba.org #681757 (Source_VOA) & #844135 (fucongcong) +Shakespeare is too hard to read. 莎士比亞的作品太難讀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #53861 (CK) & #881108 (Martha) +She accused me of telling a lie. 她指責我說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #312626 (CK) & #894145 (Martha) +She and I are in the same class. 她和我同班。 CC-BY 2.0 (France) Attribution: tatoeba.org #308620 (CK) & #1328123 (vicch) +She asked us to leave her alone. 她要求我們別吵她。 CC-BY 2.0 (France) Attribution: tatoeba.org #314467 (CK) & #891749 (Martha) +She becomes drowsy after dinner. 晚飯後她變得昏昏欲睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4196326 (e78xx_xxx) & #836268 (Martha) +She bought two pounds of butter. 她買了兩磅的奶油。 CC-BY 2.0 (France) Attribution: tatoeba.org #311984 (CK) & #861375 (Martha) +She broke the window on purpose. 她故意把窗戶弄壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313527 (CK) & #2635806 (cienias) +She can swim further than I can. 她能遊得比我遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #314409 (CK) & #890604 (Martha) +She cleaned her room in a hurry. 她急忙地清掃了她的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #313183 (CK) & #894062 (Martha) +She didn't need to do that work. 她不需要做那個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #497124 (CK) & #894040 (Martha) +She didn't want to get involved. 她不想涉入其中。 CC-BY 2.0 (France) Attribution: tatoeba.org #308735 (CK) & #864387 (Martha) +She doesn't live there any more. 她不再住在那裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312320 (CK) & #864281 (Martha) +She eats nothing but vegetables. 她只吃蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #304279 (CK) & #839506 (Martha) +She feels at ease in their home. 她在他们家里感觉很放松。 CC-BY 2.0 (France) Attribution: tatoeba.org #316473 (CM) & #8914615 (fresky) +She finished reading the letter. 她看完信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314896 (CK) & #836327 (Martha) +She gave the door a gentle push. 她輕輕地推了門。 CC-BY 2.0 (France) Attribution: tatoeba.org #311666 (CK) & #805088 (Martha) +She gets up early every morning. 她每天早上早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #317082 (CK) & #860565 (Martha) +She got to the station at seven. 她七點鐘到車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #314772 (CK) & #894241 (Martha) +She greeted him waving her hand. 她揮著手向他打招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #314879 (CK) & #802084 (Martha) +She greeted me with a big smile. 她面帶大大的笑容向我招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #311901 (CK) & #802087 (Martha) +She had a basket full of apples. 她有一整籃的蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #312422 (CK) & #894068 (Martha) +She has a son and two daughters. 她有一个儿子和两个女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #308787 (CK) & #333921 (fucongcong) +She has a very open personality. 她是个很坦率的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1869440 (JunjouLover) & #2431717 (fenfang557) +She has already left the office. 她已經離開了辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #312327 (CK) & #864277 (Martha) +She has been dead for ten years. 她已經死了十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308309 (CK) & #891607 (Martha) +She introduced me to her father. 她把我介紹給她父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #3260218 (CM) & #6064665 (verdastelo9604) +She is always trying new things. 她总是尝试新事物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663273 (liwan1208) & #1661555 (sadhen) +She is good at speaking English. 她擅長說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312644 (CK) & #860752 (Martha) +She is good at speaking English. 她擅長說英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #312644 (CK) & #3748347 (egg0073) +She is looking for her car keys. 她在找她的車鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #314684 (CK) & #894234 (Martha) +She is now eighty-one years old. 她現在八十一歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388584 (CK) & #892486 (Martha) +She is two years older than you. 她比你大兩歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #313372 (CK) & #894374 (Martha) +She knows your mother very well. 她對你的母親很熟悉。 CC-BY 2.0 (France) Attribution: tatoeba.org #313365 (CK) & #858907 (Martha) +She left her son a lot of money. 她留了很多钱给她儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #315578 (CK) & #791534 (fucongcong) +She looks a lot like her mother. 她非常像她的母亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #464657 (CK) & #465002 (fucongcong) +She made a point of visiting me. 她特地來拜訪我。 CC-BY 2.0 (France) Attribution: tatoeba.org #316652 (CK) & #910217 (Martha) +She made the same mistake again. 她又犯了同樣的錯誤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316015 (CK) & #795861 (Martha) +She might know that we are here. 她或许知道我们在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #314062 (CK) & #1428134 (sadhen) +She must have done it yesterday. 她昨天一定已經做過了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311470 (CK) & #861058 (Martha) +She must have studied very hard. 她一定很用功讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #312580 (CK) & #862889 (Martha) +She planted roses in the garden. 她在花園裡種了玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #315894 (CK) & #858813 (Martha) +She played a waltz on the piano. 她在鋼琴上彈了一首華爾滋舞曲。 CC-BY 2.0 (France) Attribution: tatoeba.org #312025 (CK) & #894408 (Martha) +She plays tennis in the morning. 她早上打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #315830 (CK) & #862844 (Martha) +She pretended that she was sick. 她假裝生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316679 (CK) & #855660 (Martha) +She put clean sheets on the bed. 她把乾淨的床單鋪在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #312146 (CK) & #891767 (Martha) +She really wants to lose weight. 她真的想減肥。 CC-BY 2.0 (France) Attribution: tatoeba.org #388596 (CK) & #850307 (Martha) +She refused to accept the money. 她拒絕接受這筆錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #311185 (CK) & #851468 (Martha) +She sang a Japanese song for us. 她為我們唱了一首日文歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #314083 (CK) & #894036 (Martha) +She set out on a trip last week. 她上週去旅行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313804 (CM) & #917916 (Martha) +She showed the visitor her baby. 她给客人看了她的宝宝。 CC-BY 2.0 (France) Attribution: tatoeba.org #313165 (CK) & #332891 (fucongcong) +She shut herself up in her room. 她把自己关在房里。 CC-BY 2.0 (France) Attribution: tatoeba.org #314724 (CK) & #512107 (fucongcong) +She spent all afternoon cooking. 她花了整個下午作飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #388635 (CK) & #836363 (Martha) +She stayed in the house all day. 她整天待在房子裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #310110 (CK) & #894236 (Martha) +She stooped to pick up a pebble. 她撿起了一塊鵝卵石。 CC-BY 2.0 (France) Attribution: tatoeba.org #315226 (kebukebu) & #761266 (Martha) +She takes private piano lessons. 她上私人鋼琴課。 CC-BY 2.0 (France) Attribution: tatoeba.org #312032 (CK) & #844463 (Martha) +She teaches reading and writing. 她教閱讀和寫作。 CC-BY 2.0 (France) Attribution: tatoeba.org #316035 (CK) & #844508 (Martha) +She tends to be late for school. 她往往會上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #309948 (CK) & #890509 (Martha) +She thought that I was a doctor. 她以为我是大夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #492633 (CK) & #782174 (fucongcong) +She told me she knew my brother. 她告訴我她認識我的哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #309971 (CK) & #902989 (Martha) +She told us the road was closed. 她告訴我們道路被封閉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314468 (CK) & #895057 (Martha) +She took a taxi to the hospital. 她搭計程車去醫院了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316665 (CK) & #900623 (Martha) +She tore the letter into pieces. 她把信成碎片。 CC-BY 2.0 (France) Attribution: tatoeba.org #314888 (CK) & #860742 (Martha) +She translated it word for word. 她逐字地翻譯它。 CC-BY 2.0 (France) Attribution: tatoeba.org #311472 (CK) & #850306 (Martha) +She traveled all over the world. 她周遊世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #315297 (CK) & #856394 (Martha) +She usually goes to bed at nine. 她经常九点睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #316793 (CK) & #609970 (sarah) +She was a genius in mathematics. 她是个数学天才。 CC-BY 2.0 (France) Attribution: tatoeba.org #315283 (CK) & #787328 (fucongcong) +She was amazed to hear the news. 她听到那个消息后惊呆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #315767 (CK) & #335318 (fucongcong) +She was busy doing her homework. 她忙著做她的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #314946 (CK) & #856382 (Martha) +She was not a very good pianist. 她不是一個很好的鋼琴家。 CC-BY 2.0 (France) Attribution: tatoeba.org #67709 (CK) & #900691 (Martha) +She was very happy with my gift. 她對於我送的禮物感到很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #388629 (CK) & #900733 (Martha) +She will be seventeen next year. 她明年將滿十七歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #317379 (CK) & #862732 (Martha) +She'll love her husband forever. 她會永遠愛她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #541144 (CK) & #839485 (Martha) +She's a complete stranger to me. 她对我来说是一个完全陌生的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230675 (alec) & #334120 (fucongcong) +She's a very interesting person. 她是一個非常有趣的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #311765 (CK) & #845969 (Martha) +She's absent because she's sick. 她不在是因为病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396199 (CK) & #1891665 (sadhen) +She's asking for the impossible. 她在无理取闹。 CC-BY 2.0 (France) Attribution: tatoeba.org #2095 (Swift) & #503189 (fucongcong) +She's been working all day long. 她已經工作了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #309897 (CK) & #864283 (Martha) +She's good at handling children. 她對孩子很有一套。 CC-BY 2.0 (France) Attribution: tatoeba.org #313997 (CK) & #840751 (Martha) +She's good at handling children. 她善於處理兒童。 CC-BY 2.0 (France) Attribution: tatoeba.org #313997 (CK) & #840753 (Martha) +Six divided by two equals three. 六除以二得三。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753740 (garborg) & #713154 (egg0073) +Software is constantly evolving. 软件正在不断进化。 CC-BY 2.0 (France) Attribution: tatoeba.org #6774794 (Eccles17) & #8696302 (crescat) +Somebody has stolen my suitcase. 有人偷了我的行李。 CC-BY 2.0 (France) Attribution: tatoeba.org #276152 (CK) & #817281 (fucongcong) +Someone is knocking on the door. 不知是谁在敲门。 CC-BY 2.0 (France) Attribution: tatoeba.org #1065448 (CK) & #1438471 (asosan) +Something is starting to happen. 有什么要开始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6437989 (CK) & #8863056 (crescat) +Sometimes I see him at the club. 我偶尔会在俱乐部碰到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #852327 (Mouseneb) & #462084 (fucongcong) +Sports are good for your health. 运动有益健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #459127 (FeuDRenais) & #3289570 (sadhen) +Swimming makes your legs strong. 游泳使腿部强健。 CC-BY 2.0 (France) Attribution: tatoeba.org #270882 (CK) & #332679 (fucongcong) +Take your time. There's no rush. 慢慢來,不急。 CC-BY 2.0 (France) Attribution: tatoeba.org #1655641 (Spamster) & #6097980 (xjjAstrus) +Tell me what you did to Shounan. 告诉我你对湘南做了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #939301 (U2FS) & #332699 (fucongcong) +Ten prisoners broke out of jail. 十名囚犯逃獄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73416 (CK) & #798283 (Martha) +Thank you for coming to meet me. 謝謝你來接我。 CC-BY 2.0 (France) Attribution: tatoeba.org #266805 (CK) & #894991 (Martha) +Thank you for coming to meet me. 謝謝你來跟我見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #266805 (CK) & #894992 (Martha) +Thanks for telling me the truth. 感谢告诉我真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #3201302 (CK) & #5989210 (verdastelo9604) +That child resembles his father. 那孩子和他父亲很像。 CC-BY 2.0 (France) Attribution: tatoeba.org #47444 (CK) & #1706434 (sadhen) +That's a little hard to believe. 那有点难以置信。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016992 (CK) & #5617264 (verdastelo9604) +That's something to be proud of. 那是值得自豪的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2888044 (Hybrid) & #5983593 (verdastelo9604) +The Italians often drink coffee. 意大利人常常喝咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #719222 (CM) & #846303 (Martha) +The bank was held up a week ago. 這家銀行一週前被搶劫。 CC-BY 2.0 (France) Attribution: tatoeba.org #68446 (virgil) & #779073 (Martha) +The bicycle by the door is mine. 在門口的自行車是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #39080 (CK) & #900650 (Martha) +The bottle is filled with water. 這個瓶子裝滿了水。 CC-BY 2.0 (France) Attribution: tatoeba.org #49871 (CK) & #866056 (Martha) +The bride looked very beautiful. 新娘看起來非常漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #23732 (CK) & #839504 (Martha) +The bus stop is near our school. 巴士站離我們的學校近。 CC-BY 2.0 (France) Attribution: tatoeba.org #35233 (CK) & #6119278 (verdastelo9604) +The buses run every ten minutes. 公共汽車每10分鐘一班。 CC-BY 2.0 (France) Attribution: tatoeba.org #35331 (CK) & #869884 (Martha) +The capital of Poland is Warsaw. 波蘭的首都是華沙。 CC-BY 2.0 (France) Attribution: tatoeba.org #919840 (CK) & #919887 (Martha) +The car he's driving is not his. 這輛他正在開的車不是他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283384 (CK) & #900731 (Martha) +The cat is sleeping on the sofa. 貓正在沙發上睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #281993 (CK) & #908332 (Martha) +The children slid down the bank. 孩子們滑下岸邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #245772 (CK) & #769703 (Martha) +The city has a large population. 这个城市人口众多。 CC-BY 2.0 (France) Attribution: tatoeba.org #45043 (CK) & #1430232 (sadhen) +The dog attacked the little boy. 這隻狗攻擊了這個小男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #239116 (CK) & #754727 (fucongcong) +The dog growled at a little boy. 這隻狗對著一個小男孩咆哮。 CC-BY 2.0 (France) Attribution: tatoeba.org #48241 (CK) & #802065 (Martha) +The dog was sleeping on the mat. 狗在地毯上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #48267 (CK) & #829722 (fucongcong) +The early bird catches the worm. 早起的鸟儿有虫吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #2348 (al_ex_an_der) & #411636 (fucongcong) +The gang was planning a robbery. 這夥人計劃搶劫。 CC-BY 2.0 (France) Attribution: tatoeba.org #321223 (CK) & #866077 (Martha) +The girl was gazing at the doll. 女孩凝视着洋娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #46439 (CK) & #1416159 (sadhen) +The grapefruit tastes very sour. 柚子很酸。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259323 (_undertoad) & #8824200 (xjjAstrus) +The largest bedroom faces south. 最大的卧室朝南。 CC-BY 2.0 (France) Attribution: tatoeba.org #680923 (Source_VOA) & #1454453 (sadhen) +The library is on the 4th floor. 圖書館在四樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #270708 (CK) & #903056 (Martha) +The new medicine saved his life. 這個新藥救了他的命。 CC-BY 2.0 (France) Attribution: tatoeba.org #269463 (CK) & #868491 (Martha) +The old man walked with a stick. 這個老人拄著一根拐杖走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #326449 (CK) & #900352 (Martha) +The police accused him of theft. 警察起诉他盗窃。 CC-BY 2.0 (France) Attribution: tatoeba.org #238360 (CK) & #2031291 (ydcok) +The police arrested the suspect. 警方逮捕了嫌疑人。 CC-BY 2.0 (France) Attribution: tatoeba.org #238373 (CK) & #842395 (Martha) +The present time is a good time. 现在正是好时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163167 (Source_VOA) & #2581482 (fenfang557) +The price of rice has come down. 米价下跌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #320200 (CK) & #333506 (fucongcong) +The prize won't be given to her. 奖项是不会授给她的。 CC-BY 2.0 (France) Attribution: tatoeba.org #46251 (CK) & #7768183 (jiangche) +The problem is, he has no money. 问题是他没钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2554169 (DiscoNostalgia) & #5576801 (verdastelo9604) +The project was a great success. 該計劃是一個大成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #809211 (CM) & #810071 (Martha) +The reservation is already made. 预订好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #794086 (FeuDRenais) & #794090 (fucongcong) +The road is too narrow for cars. 這條路對汽車來說太窄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44680 (CK) & #895139 (Martha) +The road is too narrow for cars. 這條路太窄汽車無法通行。 CC-BY 2.0 (France) Attribution: tatoeba.org #44680 (CK) & #895140 (Martha) +The rope broke under the strain. 繩子被拉斷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #240989 (CK) & #866182 (Martha) +The rumor turned out to be true. 這個傳聞後來被證明是真的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #405710 (CK) & #896517 (Martha) +The school needed a new teacher. 學校需要一個新的老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #48955 (wondersz1) & #793509 (Martha) +The sun gives us light and heat. 太陽提供我們光和熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #275126 (CK) & #4265916 (egg0073) +The sun is larger than the moon. 太陽比月亮大。 CC-BY 2.0 (France) Attribution: tatoeba.org #275124 (CK) & #905775 (Martha) +The teacher let the boy go home. 老師讓這個男孩回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #273008 (CK) & #895167 (Martha) +The teacher told us to be quiet. 老師告訴我們要安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #272956 (CK) & #895569 (Martha) +The thunder scared the children. 雷聲嚇到孩子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246088 (CK) & #838508 (Martha) +The tie doesn't go with my suit. 领带和我的西装不配。 CC-BY 2.0 (France) Attribution: tatoeba.org #60725 (CK) & #819748 (fucongcong) +The tigers escaped from the zoo. 老虎從動物園中逃出來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211441 (alec) & #1205946 (cienias) +The train leaves in ten minutes. 火車十分鐘後離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #326135 (CK) & #874736 (Martha) +The train was late this morning. 今天早上火車來遲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #62597 (CK) & #870308 (Martha) +The tsunami alert was cancelled. 海啸的警报解除了。 CC-BY 2.0 (France) Attribution: tatoeba.org #828794 (Scott) & #829687 (fucongcong) +The two of us don't belong here. 我们俩不属于这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #22611 (CK) & #4621045 (Yashanti) +The value of the yen has soared. 日元的價值大幅上升。 CC-BY 2.0 (France) Attribution: tatoeba.org #25965 (CK) & #873391 (Martha) +The war began three years later. 三年後戰爭開始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72638 (CK) & #872488 (Martha) +The war lasted nearly ten years. 這場戰爭持續了將近十年。 CC-BY 2.0 (France) Attribution: tatoeba.org #273301 (CK) & #874224 (Martha) +The world is running out of oil. 世界上的石油快用完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #271159 (CK) & #902934 (Martha) +The young girl burst into tears. 這個年輕的女孩淚流滿面。 CC-BY 2.0 (France) Attribution: tatoeba.org #46468 (CK) & #804978 (Martha) +There are many books in my room. 我房間裡有很多書。 CC-BY 2.0 (France) Attribution: tatoeba.org #251756 (CK) & #900233 (Martha) +There are many shrines in Kyoto. 京都有許多神社。 CC-BY 2.0 (France) Attribution: tatoeba.org #19319 (CK) & #875092 (Martha) +There are some boys in the park. 公園裡有一些男孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #240426 (CK) & #896755 (Martha) +There are too many people there. 那裡太多人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2682236 (iainmb93) & #2635828 (cienias) +There are too many things to do! 要做的事太多了! CC-BY 2.0 (France) Attribution: tatoeba.org #1674 (CK) & #390533 (fucongcong) +There is a bridge over the pond. 池塘上有座桥。 CC-BY 2.0 (France) Attribution: tatoeba.org #277299 (CK) & #8800731 (crescat) +There is a bus every 20 minutes. 每20分钟有一班车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103155 (omfgitsasalmon) & #464759 (fucongcong) +There is a church near my house. 我家附近有一座教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #29194 (CK) & #907220 (Martha) +There is a post office close by. 附近有一間郵局。 CC-BY 2.0 (France) Attribution: tatoeba.org #52089 (CK) & #900694 (Martha) +There is a school near my house. 我家附近有一所學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #250498 (CK) & #900645 (Martha) +There is an orange on the table. 桌上有一只橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #39619 (CK) & #334500 (fucongcong) +There is no cause for complaint. 没有理由抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #318672 (CK) & #797118 (Martha) +There is no film in this camera. 這個相機裡沒有胶卷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2940012 (Hakaku) & #6132214 (verdastelo9604) +There was a big fire last night. 昨晚有一場大火。 CC-BY 2.0 (France) Attribution: tatoeba.org #244631 (CK) & #895576 (Martha) +There was a big fire last night. 昨晚發生了一場很大的火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #244631 (CK) & #895577 (Martha) +There was no water in the river. 河裡沒有水了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273178 (CK) & #801427 (Martha) +There was no water in the river. 這條河的水乾了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273178 (CK) & #801430 (Martha) +There wasn't a cloud in the sky. 天上没有一片云。 CC-BY 2.0 (France) Attribution: tatoeba.org #18309 (CK) & #426400 (fucongcong) +There wasn't anyone in the room. 房間裡沒有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #44238 (CK) & #801456 (Martha) +There's a soccer match tomorrow. 明天有一場足球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #541988 (CK) & #836337 (Martha) +There's a telephone in the hall. 在大廳裡有一支電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #33670 (CK) & #868281 (Martha) +There's a telephone in the hall. 走廊裡有一部電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #33670 (CK) & #9035058 (xjjAstrus) +There's no chance of rain today. 今天不可能下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712985 (CK) & #5819698 (verdastelo9604) +There's no need to get so angry. 沒有必要這麼生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #41525 (CK) & #798072 (Martha) +There's nothing to be afraid of. 没什么好怕的。 CC-BY 2.0 (France) Attribution: tatoeba.org #19177 (CK) & #335252 (fucongcong) +There's only a little milk left. 只剩下一點點牛奶了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19469 (CK) & #874391 (Martha) +There's something I have to say. 有些事我必須說。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064887 (CK) & #6103047 (verdastelo9604) +These boxes are made of plastic. 這些箱子是由塑料製成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #55116 (CK) & #872404 (Martha) +These cameras are made in Japan. 這些照相機是在日本製造的。 CC-BY 2.0 (France) Attribution: tatoeba.org #55300 (CK) & #868407 (Martha) +These days it snows quite a lot. 这些天下了好多雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1542270 (SHamp) & #846710 (fucongcong) +These fireworks are spectacular! 这些焰火真壮观! CC-BY 2.0 (France) Attribution: tatoeba.org #52018 (CK) & #335170 (fucongcong) +These flowers you see are roses. 你看到的這些花是玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #813676 (Zaphod) & #816952 (Martha) +These peaches aren't very sweet. 這些桃子不是很甜。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132871 (CK) & #8824211 (xjjAstrus) +They all went to the restaurant. 他們都去了這家餐廳。 CC-BY 2.0 (France) Attribution: tatoeba.org #306297 (CK) & #868396 (Martha) +They are breaking down the wall. 他們正在拆這面牆。 CC-BY 2.0 (France) Attribution: tatoeba.org #305391 (CK) & #875056 (Martha) +They are discussing the problem. 他們正在討論這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #43765 (CK) & #839604 (Martha) +They are jealous of our success. 他们嫉妒我们的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #306659 (CK) & #334609 (fucongcong) +They are jealous of our success. 她们嫉妒我们的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #306659 (CK) & #782852 (fucongcong) +They are leaving Japan tomorrow. 明天他們將離開日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #307600 (CK) & #844630 (Martha) +They are talking in the kitchen. 他們正在廚房裡說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #307089 (CK) & #866058 (Martha) +They armed themselves with guns. 他們用槍武裝自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #306843 (CK) & #842421 (Martha) +They cleared the street of snow. 他們清理了街上的積雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #306308 (CK) & #778732 (Martha) +They climbed Mt. Fuji last week. 上個月他們爬了富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #307001 (CK) & #870068 (Martha) +They didn't come here, did they? 他們沒來這裡,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #305614 (CK) & #871160 (Martha) +They don't seem to be Americans. 他們似乎不是美國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #534191 (CK) & #865552 (Martha) +They forgave him for his crimes. 他们原谅了他的罪行。 CC-BY 2.0 (France) Attribution: tatoeba.org #307366 (CK) & #792786 (fucongcong) +They got married six months ago. 他們六個月前結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305441 (CK) & #873221 (Martha) +They grow flowers in the garden. 他們在花園裡種花。 CC-BY 2.0 (France) Attribution: tatoeba.org #307192 (CK) & #868442 (Martha) +They grow oranges in California. 他们在加利福尼亚种橙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #63502 (CK) & #333301 (fucongcong) +They had a lovely time together. 他們在一起很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #305952 (CK) & #796066 (Martha) +They had to work all year round. 他們一整年都必須工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #306166 (CK) & #903012 (Martha) +They have been here for an hour. 他們已經在這裡一個小時了。 CC-BY 2.0 (France) Attribution: tatoeba.org #304931 (CK) & #907529 (Martha) +They made him do the work again. 他們要他再做一次這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #293071 (CK) & #907497 (Martha) +They made him sign the contract. 他們讓他簽約了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307345 (CK) & #874528 (Martha) +They moved here three years ago. 他們三年前搬到了這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #305432 (CK) & #872408 (Martha) +They tied the thief to the tree. 他们把小偷绑到了树上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1361942 (CK) & #1361968 (sadhen) +They usually sleep in this room. 他們通常在這個房間裡睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #441755 (Plodder) & #874292 (Martha) +They waited in line for the bus. 他們排隊等公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #307683 (CK) & #900261 (Martha) +They wash their hands with soap. 他们用肥皂洗手。 CC-BY 2.0 (France) Attribution: tatoeba.org #463236 (lukaszpp) & #471390 (fucongcong) +They went to America last month. 他們上個月去美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #306999 (CK) & #866617 (Martha) +They went to the station by car. 他們開車去車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #423353 (CK) & #727917 (Martha) +They went to the station by car. 他們坐車去車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #423353 (CK) & #907245 (Martha) +They were afraid of the big dog. 他們怕這隻大狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #305701 (CK) & #895901 (Martha) +They were rescued by helicopter. 他们被直升机解救。 CC-BY 2.0 (France) Attribution: tatoeba.org #306016 (CK) & #528053 (biglion) +They're not afraid of hard work. 他們不怕艱苦的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #306162 (CK) & #868477 (Martha) +This book has a lot of pictures. 這本書有很多圖片。 CC-BY 2.0 (France) Attribution: tatoeba.org #56925 (CK) & #900621 (Martha) +This book is really interesting. 這本書真的很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #57011 (CK) & #842323 (Martha) +This camera was made in Germany. 这个照相机是德国制造的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61220 (CK) & #335495 (fucongcong) +This data isn't accurate at all. 這個數據一點也不準確。 CC-BY 2.0 (France) Attribution: tatoeba.org #387412 (CK) & #869906 (Martha) +This hall can hold 5,000 people. 这个大厅可以容纳5000个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1362074 (CK) & #8806642 (crescat) +This has nothing to do with you. 這與你無關。 CC-BY 2.0 (France) Attribution: tatoeba.org #55753 (CK) & #895187 (Martha) +This has nothing to do with you. 跟你没半毛钱关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #55753 (CK) & #5091948 (mirrorvan) +This hotel does not serve lunch. 這家旅館不提供午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #60496 (CK) & #872125 (Martha) +This is a picture of an airport. 這是一張機場的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #55759 (CK) & #907254 (Martha) +This is a very beautiful flower. 這是一朵非常美麗的花。 CC-BY 2.0 (France) Attribution: tatoeba.org #55872 (CK) & #874287 (Martha) +This is a very interesting book. 這是一本非常有趣的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #55885 (CK) & #872172 (Martha) +This is just between you and me. 这只是我们之间的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #62012 (CK) & #813522 (fucongcong) +This is the worst hotel in town. 這是城裡最糟糕的旅館。 CC-BY 2.0 (France) Attribution: tatoeba.org #55503 (CK) & #896490 (Martha) +This is where Tom wants to live. 这就是汤姆想住的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #5839981 (CK) & #5983606 (verdastelo9604) +This isn't the type that I like. 这不是我喜欢的类型。 CC-BY 2.0 (France) Attribution: tatoeba.org #995287 (NickC) & #333015 (fucongcong) +This jacket is a little too big. 這件夾克有點太大了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58431 (CK) & #907509 (Martha) +This letter is addressed to you. 這封信是寄給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #55973 (CK) & #874296 (Martha) +This meal is adequate for three. 这饭足够三个人吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #72682 (CM) & #1397137 (mtdot) +This message doesn't make sense. 這個消息沒有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #60449 (CK) & #836438 (Martha) +This school was founded in 1650. 这所学校建于1650年。 CC-BY 2.0 (France) Attribution: tatoeba.org #374105 (Gianpon) & #799263 (fucongcong) +This school was founded in 1970. 这所学校是1970年建成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #48943 (CK) & #334981 (fucongcong) +This song was written by Foster. 這首歌曲是由福斯特所寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60112 (CK) & #865371 (Martha) +This stone is too heavy to lift. 這塊石頭太重了無法抬起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #58199 (CK) & #903480 (Martha) +This swallow's wings are broken. 这只燕子的翅膀受伤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742421 (RobOwenKing) & #8744936 (slo_oth) +This system has obvious defects. 這個系統有些明顯的缺陷。 CC-BY 2.0 (France) Attribution: tatoeba.org #61050 (Zifre) & #1261466 (tsayng) +To be always honest is not easy. 要一直誠實是不容易的。 CC-BY 2.0 (France) Attribution: tatoeba.org #66069 (CK) & #798240 (Martha) +Today's even busier than normal. 今天比平时还忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #8716818 (krrk) & #2442043 (fenfang557) +Today, the weather is very nice. 今天天气很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #942478 (spockofvulcan) & #333127 (fucongcong) +Tom and I are in the same class. 湯姆和我在同一個班裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955569 (CK) & #6624696 (verdastelo9604) +Tom and Mary spoke on the phone. 湯姆和瑪麗在電話裡交流。 CC-BY 2.0 (France) Attribution: tatoeba.org #3183467 (CK) & #6628360 (verdastelo9604) +Tom arrived here before sunrise. 汤姆天亮前就到这了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7519676 (CK) & #8514589 (gumblex) +Tom asked us to leave him alone. 汤姆要我们留他独自一人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3417554 (CK) & #5698055 (verdastelo9604) +Tom certainly is a good teacher. 湯姆確實是位好老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095438 (CK) & #6293092 (verdastelo9604) +Tom continued his investigation. 湯姆繼續他的調查。 CC-BY 2.0 (France) Attribution: tatoeba.org #5731010 (CM) & #6635833 (verdastelo9604) +Tom currently resides in Boston. 汤姆现在住在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501785 (CK) & #4815126 (McMeao) +Tom didn't wear jeans yesterday. 湯姆昨天沒穿牛仔褲。 CC-BY 2.0 (France) Attribution: tatoeba.org #5937859 (CK) & #6105108 (verdastelo9604) +Tom doesn't have a lot of money. 汤姆没有很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848529 (CK) & #6089955 (verdastelo9604) +Tom doesn't like doing homework. 汤姆不喜欢做作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026044 (CK) & #1397330 (mtdot) +Tom doesn't want to let Mary go. Tom 不想让Mary走 CC-BY 2.0 (France) Attribution: tatoeba.org #1094254 (CK) & #5975066 (zhangxr91) +Tom doesn't write to me anymore. 汤姆不再给我写信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4198371 (CK) & #6028024 (verdastelo9604) +Tom finally did something right. 汤姆最终做了点正确的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4890865 (CK) & #5983646 (verdastelo9604) +Tom followed Mary into the room. 汤姆跟着玛丽进入了房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1874246 (CK) & #4970089 (wzhd) +Tom gave Mary half of the apple. 汤姆给玛丽半个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642375 (CK) & #5903467 (verdastelo9604) +Tom gave Mary the cold shoulder. 汤姆给玛丽冷的肩膀。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094017 (CK) & #5691295 (verdastelo9604) +Tom had never lied to me before. 湯姆以前從不向我說謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3431102 (CK) & #6325106 (verdastelo9604) +Tom had never seen Mary so busy. 汤姆从没见过玛丽这么忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642371 (CK) & #5663578 (verdastelo9604) +Tom has a veterinary background. Tom有獸醫背景。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493586 (CK) & #4504477 (egg0073) +Tom has no friends to play with. 湯姆沒有朋友可以一起玩耍。 CC-BY 2.0 (France) Attribution: tatoeba.org #37192 (CK) & #903529 (Martha) +Tom has no plans to go anywhere. 湯姆沒有去哪裡的打算。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093631 (CK) & #6077456 (verdastelo9604) +Tom has started studying karate. 汤姆已经开始学习空手道了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574336 (CK) & #8574638 (slo_oth) +Tom hid himself under the table. Tom躲在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #475750 (darinmex) & #332772 (fucongcong) +Tom is crying outside right now. 湯姆現在正在外面哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #6349878 (CK) & #6903844 (verdastelo9604) +Tom is going to be proud of you. 湯姆要以你為傲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3449410 (CK) & #6080216 (verdastelo9604) +Tom is hiding a terrible secret. 汤姆隐藏着一个可怕的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498879 (Spamster) & #2052524 (sadhen) +Tom is lucky he didn't get shot. 湯姆沒被射中真走運。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820856 (CK) & #6476313 (verdastelo9604) +Tom is now studying in his room. 湯姆現在在他的房間裡學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013497 (CK) & #6635899 (verdastelo9604) +Tom is our starting quarterback. 汤姆是我们的首发四分卫。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574332 (CK) & #8574631 (slo_oth) +Tom is the tallest in his class. 湯姆是班上最高的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37039 (CK) & #895827 (Martha) +Tom is used to getting up early. 汤姆习惯早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024781 (CK) & #5091257 (mirrorvan) +Tom is very confident, isn't he? 湯姆很有信心,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3417279 (CK) & #6086874 (verdastelo9604) +Tom knew that Mary wouldn't cry. 湯姆瑪麗不會哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #6357629 (CK) & #6624712 (verdastelo9604) +Tom knows that I don't like him. 汤姆知道我不喜欢他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3950960 (CK) & #5863311 (verdastelo9604) +Tom looked at Mary suspiciously. 汤姆怀疑地看着玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028338 (CK) & #3289565 (sadhen) +Tom needs to update his website. 汤姆需要更新他的网站。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024398 (CK) & #5556063 (verdastelo9604) +Tom put his wallet on the table. 汤姆把钱包放在了桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867977 (CK) & #8933591 (crescat) +Tom seems to be completely lost. 湯姆看來完全輸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728809 (CM) & #6047482 (verdastelo9604) +Tom sent me an interesting text. 汤姆给我发了一条有趣的短信。 CC-BY 2.0 (France) Attribution: tatoeba.org #2176243 (Mouseneb) & #1839152 (sadhen) +Tom showed interest in the plan. 湯姆對這個計劃有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #37261 (CK) & #874220 (Martha) +Tom still isn't sure what to do. 湯姆還是不確定要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3424415 (CK) & #6109324 (verdastelo9604) +Tom told me I shouldn't do that. 湯姆告訴我我不該去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6262773 (CK) & #6624656 (verdastelo9604) +Tom wants to tell you something. 汤姆想告诉你一些事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733739 (CK) & #3783083 (Debbie_Linder) +Tom was just as excited as Mary. 汤姆就和玛丽一样兴奋。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851932 (CK) & #6938113 (Cheng) +Tom was sick in bed last Sunday. 湯姆上週日臥病在床。 CC-BY 2.0 (France) Attribution: tatoeba.org #37292 (CK) & #895161 (Martha) +Tom watched Mary draw a picture. 汤姆看玛丽画一幅画。 CC-BY 2.0 (France) Attribution: tatoeba.org #3308285 (CK) & #5978317 (verdastelo9604) +Tom's comment was inappropriate. 湯姆的評論不合適。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664702 (CK) & #6535850 (verdastelo9604) +Tom's eyesight is deteriorating. Tom的视力正在恶化。 CC-BY 2.0 (France) Attribution: tatoeba.org #3265987 (patgfisher) & #4845089 (pig8322) +Tom's good, but not good enough. 汤姆好,但不够好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541175 (CK) & #5983671 (verdastelo9604) +Tom, Mary and John are all here. 湯姆、瑪麗和約翰都在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3490293 (CK) & #6630016 (verdastelo9604) +Travel agencies' profits soared. 旅行社的利润猛涨。 CC-BY 2.0 (France) Attribution: tatoeba.org #325572 (CM) & #334732 (fucongcong) +Turn the knob and open the door. 轉動門把,把門打開。 CC-BY 2.0 (France) Attribution: tatoeba.org #35749 (CK) & #798237 (Martha) +Wait till the light turns green. 等到指示燈變成綠色。 CC-BY 2.0 (France) Attribution: tatoeba.org #268841 (CK) & #796979 (Martha) +War may break out at any moment. 戰爭隨時可能爆發。 CC-BY 2.0 (France) Attribution: tatoeba.org #65987 (CK) & #801351 (Martha) +Was this letter written by Mary? 这封信是玛丽写的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #58661 (CK) & #334883 (fucongcong) +Watch him and do the same thing. 看著他並且跟他做同樣的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #466160 (CK) & #900679 (Martha) +We are anxious about her safety. 我们为她的安全担忧。 CC-BY 2.0 (France) Attribution: tatoeba.org #249295 (CK) & #1394781 (mtdot) +We are leaving Japan next month. 我們下個月將離開日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #249470 (CK) & #873212 (Martha) +We ate sandwiches for breakfast. 我們早餐吃了三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #249073 (CK) & #836233 (Martha) +We can hear the ocean from here. 我們從這裡可以聽到海的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #62094 (CK) & #900647 (Martha) +We can't get close to the enemy. 我们无法接近敌人。 CC-BY 2.0 (France) Attribution: tatoeba.org #426607 (blay_paul) & #501203 (fucongcong) +We can't stay in here very long. 我們不能在這裡待很長時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185267 (CK) & #6628384 (verdastelo9604) +We caught some large fish there. 我們在那裡抓了一些大魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #248047 (CK) & #874509 (Martha) +We climbed Mt. Fuji last summer. 去年夏天我們爬了富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #22960 (CK) & #872204 (Martha) +We discussed the plan yesterday. 昨天我們討論了這個計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #29086 (CK) & #842297 (Martha) +We divided the money between us. 我們平分這筆錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #48645 (CK) & #866159 (Martha) +We don't get many visitors here. 我们这里没有很多访客。 CC-BY 2.0 (France) Attribution: tatoeba.org #2125122 (Hybrid) & #5630456 (verdastelo9604) +We don't want anything from you. 我们不想从你身上要任何东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642274 (CK) & #7781931 (jiangche) +We enjoyed swimming in the lake. 我们尽情在湖里游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #248645 (CK) & #333121 (fucongcong) +We gave blood to help the child. 我們捐血來幫助這個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #248107 (CK) & #805698 (Martha) +We give a 10% discount for cash. 如用現金付款,我們給予九折優惠。 CC-BY 2.0 (France) Attribution: tatoeba.org #239535 (CK) & #895842 (Martha) +We go fishing from time to time. 我们时不时地去钓鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #504591 (eastasiastudent) & #462086 (fucongcong) +We had an early lunch at school. 我們在學校有一個早午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #248524 (CK) & #796049 (Martha) +We had an earthquake last night. 昨晚我們這裡發生了地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #244635 (CK) & #873194 (Martha) +We have many rainy days in June. 六月下了很多天的雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #72447 (CK) & #903424 (Martha) +We have no reason to be ashamed. 我们没理由害臊。 CC-BY 2.0 (France) Attribution: tatoeba.org #7767783 (sharris123) & #7767664 (jiangche) +We have plenty of time to spare. 我們還剩下很多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #324775 (CK) & #896503 (Martha) +We hope you will enjoy the show. 我們希望你喜歡這個表演。 CC-BY 2.0 (France) Attribution: tatoeba.org #56271 (CK) & #759640 (Martha) +We know that all men are mortal. 我們知道人皆難免一死。 CC-BY 2.0 (France) Attribution: tatoeba.org #269999 (CK) & #885373 (Martha) +We know that this is impossible. 我們知道這是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5548395 (CK) & #6073891 (verdastelo9604) +We managed to get there on time. 我們總算準時到那裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #262815 (CK) & #895132 (Martha) +We often talk about the weather. 我们经常讨论天气。 CC-BY 2.0 (France) Attribution: tatoeba.org #2402172 (CK) & #4972684 (wzhd) +We picked flowers in the garden. 我們在花園裡摘花。 CC-BY 2.0 (France) Attribution: tatoeba.org #263160 (CK) & #874469 (Martha) +We play football every Saturday. 我們每個星期六踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #249379 (CK) & #839089 (Martha) +We played basketball in the gym. 我們在體育館打籃球。 CC-BY 2.0 (France) Attribution: tatoeba.org #249034 (CK) & #872422 (Martha) +We saw many ships in the harbor. 我們在港口裡看到了許多船。 CC-BY 2.0 (France) Attribution: tatoeba.org #263018 (CK) & #902930 (Martha) +We use a lot of water every day. 我們每天用很多的水。 CC-BY 2.0 (France) Attribution: tatoeba.org #249025 (kebukebu) & #761289 (Martha) +We visited the museum last week. 我們上週參觀了博物館。 CC-BY 2.0 (France) Attribution: tatoeba.org #272754 (CK) & #874700 (Martha) +We went halfway up the mountain. 我們爬到了半山腰。 CC-BY 2.0 (France) Attribution: tatoeba.org #248760 (CK) & #871081 (Martha) +We went to the mountains to ski. 我們去山上滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #262742 (CK) & #903470 (Martha) +We will go on a picnic tomorrow. 我們明天要去野餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #263295 (CK) & #903365 (Martha) +We worked on a farm last summer. 我們去年夏天在一個農場上工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #248748 (CK) & #907480 (Martha) +We'll be late if we don't hurry. 再不快点就迟到了噢。 CC-BY 2.0 (France) Attribution: tatoeba.org #6646072 (CK) & #5100259 (mirrorvan) +We'll take part in the marathon. 我们将参加马拉松。 CC-BY 2.0 (France) Attribution: tatoeba.org #7791957 (CK) & #2085112 (sadhen) +We'll wait and see what happens. 我們要等等看會發生甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3312211 (CK) & #6197300 (verdastelo9604) +We've got to have determination. 我們要下決心了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5726614 (CM) & #6216624 (verdastelo9604) +We've had a most delightful day. 我們過了最愉快的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #5726611 (CM) & #6077500 (verdastelo9604) +Were you at school at that time? 那時你在學校嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #47023 (CK) & #907485 (Martha) +Were you on time for work today? 你今天準時上班了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242410 (CK) & #902938 (Martha) +What are you learning at school? 你在学校学些什么呀? CC-BY 2.0 (France) Attribution: tatoeba.org #242084 (Eldad) & #8591221 (easononizuka) +What are you punishing them for? 您为什么惩罚他们? CC-BY 2.0 (France) Attribution: tatoeba.org #36489 (CK) & #337876 (fucongcong) +What are you punishing them for? 你為什麼懲罰他們? CC-BY 2.0 (France) Attribution: tatoeba.org #36489 (CK) & #1426337 (tsayng) +What are your plans for tonight? 你今晚有什么打算? CC-BY 2.0 (France) Attribution: tatoeba.org #848510 (Vulgaris) & #848562 (kooler) +What did you do to make Tom cry? 你做了甚麼事把湯姆惹哭了? CC-BY 2.0 (France) Attribution: tatoeba.org #4016540 (CK) & #6635846 (verdastelo9604) +What did you do with my glasses? 你把我的眼鏡怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #33556 (CK) & #907488 (Martha) +What did you do with my glasses? 你用我的眼鏡做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #33556 (CK) & #907489 (Martha) +What did you do with my luggage? 你把我的行李放到哪裡去了? CC-BY 2.0 (France) Attribution: tatoeba.org #401802 (CK) & #895638 (Martha) +What did you do with your shoes? 你把你的鞋怎么了? CC-BY 2.0 (France) Attribution: tatoeba.org #2642260 (CK) & #5640746 (verdastelo9604) +What do you base your theory on? 你的理論是以什麼為基礎? CC-BY 2.0 (France) Attribution: tatoeba.org #16189 (Zifre) & #775745 (Martha) +What do you do before breakfast? 早餐前你做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #69090 (CK) & #875093 (Martha) +What do you need this money for? 你需要這些錢做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #495643 (CK) & #903429 (Martha) +What else do you want me to say? 你想让我再说什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2014778 (CK) & #5574504 (verdastelo9604) +What fruit do you like the best? 你最喜欢什么水果? CC-BY 2.0 (France) Attribution: tatoeba.org #37537 (CK) & #336927 (fucongcong) +What fruit do you like the best? 你們最喜歡什麼水果? CC-BY 2.0 (France) Attribution: tatoeba.org #37537 (CK) & #1647813 (egg0073) +What fruit do you like the best? 您最喜歡什麼水果? CC-BY 2.0 (France) Attribution: tatoeba.org #37537 (CK) & #1647814 (egg0073) +What happened to you last night? 昨晚你發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #71654 (CK) & #865580 (Martha) +What is the population of India? 印度的人口有多少? CC-BY 2.0 (France) Attribution: tatoeba.org #65727 (CK) & #866059 (Martha) +What kind of shampoo do you use? 你用哪種洗髮水? CC-BY 2.0 (France) Attribution: tatoeba.org #4671700 (ghostbane) & #9049761 (xjjAstrus) +What shall we eat for breakfast? 我們早飯吃什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #7156216 (Kiwi) & #7015508 (xjjAstrus) +What time are you going on duty? 你幾點值班? CC-BY 2.0 (France) Attribution: tatoeba.org #16251 (CK) & #775767 (Martha) +What time do you usually get up? 你通常什麼時候起床? CC-BY 2.0 (France) Attribution: tatoeba.org #16774 (CK) & #818093 (Martha) +What time does your plane leave? 你的飛機什麼時候起飛? CC-BY 2.0 (France) Attribution: tatoeba.org #503849 (CK) & #872495 (Martha) +What to do next is the question. 問題是下一步要做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #264181 (Eldad) & #798048 (Martha) +What would you like for dessert? 你要什麼甜點? CC-BY 2.0 (France) Attribution: tatoeba.org #39470 (CK) & #865582 (Martha) +What's the meaning of this word? 這個字的意思是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #7784984 (CK) & #904913 (Martha) +What's the meaning of this word? 這個字是什麼意思? CC-BY 2.0 (France) Attribution: tatoeba.org #7784984 (CK) & #904914 (Martha) +What's the purpose of your trip? 你旅行的目的是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #325558 (CK) & #868282 (Martha) +What've you been doing recently? 最近在干些什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2642250 (CK) & #4878999 (musclegirlxyp) +When did Tom ask you to do that? 湯姆是甚麼時候讓你去做的? CC-BY 2.0 (France) Attribution: tatoeba.org #6126630 (CK) & #6938368 (verdastelo9604) +When did you begin playing golf? 你什麼時候開始打高爾夫球? CC-BY 2.0 (France) Attribution: tatoeba.org #70206 (CK) & #874460 (Martha) +When did you start working here? 从什么时候开始您就这里工作着的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3636345 (CK) & #5096808 (mirrorvan) +Where are you going on vacation? 你要去哪裡度假? CC-BY 2.0 (France) Attribution: tatoeba.org #19805 (CK) & #873230 (Martha) +Where did you get your hair cut? 你在哪裡剪頭髮? CC-BY 2.0 (France) Attribution: tatoeba.org #38152 (CK) & #894963 (Martha) +Where do you attend high school? 你在哪裡唸高中? CC-BY 2.0 (France) Attribution: tatoeba.org #16484 (xtofu80) & #775795 (Martha) +Where will you have lunch today? 你今天將在哪裡吃午餐? CC-BY 2.0 (France) Attribution: tatoeba.org #242480 (CK) & #875090 (Martha) +Where would you like to go next? 你下一步想去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #264346 (CK) & #896496 (Martha) +Which group do you want to join? 你想加入哪一組? CC-BY 2.0 (France) Attribution: tatoeba.org #69853 (CK) & #900703 (Martha) +Which of these rackets is yours? 這些球拍中哪一支是你的? CC-BY 2.0 (France) Attribution: tatoeba.org #55275 (CK) & #873218 (Martha) +Who is the girl in this picture? 這張照片裡的女孩是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #58788 (CC) & #894954 (Martha) +Who picked you for this mission? 谁选你来做这个任务? CC-BY 2.0 (France) Attribution: tatoeba.org #3731241 (CM) & #5845553 (verdastelo9604) +Who's in charge of this section? 谁负责这个部门? CC-BY 2.0 (France) Attribution: tatoeba.org #57384 (Dejo) & #811005 (fucongcong) +Who's the man playing the piano? 那個正在彈鋼琴的男人是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #7785052 (CK) & #895871 (Martha) +Who's to blame for the accident? 誰該為這次事故負責? CC-BY 2.0 (France) Attribution: tatoeba.org #7783852 (CK) & #909856 (Martha) +Why did you paint the bench red? 为什么你把长凳漆成红色了? CC-BY 2.0 (France) Attribution: tatoeba.org #38729 (CK) & #336616 (fucongcong) +Why didn't you follow my advice? 你為什麼不聽我的忠告? CC-BY 2.0 (France) Attribution: tatoeba.org #38780 (CK) & #874473 (Martha) +Why do you even care about this? 你怎麼還關心這個? CC-BY 2.0 (France) Attribution: tatoeba.org #5255812 (CK) & #6159154 (verdastelo9604) +Why do you want to study abroad? 为什么你想到外国读书? CC-BY 2.0 (France) Attribution: tatoeba.org #16456 (kebukebu) & #471351 (fucongcong) +Why do you want to study abroad? 为什么您想到外国读书? CC-BY 2.0 (France) Attribution: tatoeba.org #16456 (kebukebu) & #471352 (fucongcong) +Wild animals live in the forest. 野生動物住在森林裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #324123 (CK) & #779016 (Martha) +Will you excuse us for a moment? 你会暂时原谅我们吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2427952 (Hybrid) & #5574812 (verdastelo9604) +Will you explain the rule to me? 你能帮我说明一下规则吗? CC-BY 2.0 (France) Attribution: tatoeba.org #49725 (Zifre) & #785846 (fucongcong) +Will you help me move this desk? 你能幫我搬這張桌子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59840 (CK) & #903375 (Martha) +Will you please show me the way? 請你告訴我路怎麼走好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #280429 (CK) & #895164 (Martha) +Will you please show me the way? 請您給我指一指路好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #280429 (CK) & #900205 (Martha) +Won't you come over to my place? 你不會來我家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #65597 (CK) & #903041 (Martha) +Won't you have some tea with me? 你不和我一起喝点茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #54519 (CK) & #336634 (fucongcong) +Would you like me to explain it? 你要我解釋一下嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #272521 (CK) & #907893 (Martha) +Would you like me to explain it? 我為你解釋一下好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #272521 (CK) & #907895 (Martha) +Would you like something to eat? 您想吃点什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1830481 (CK) & #7773212 (jiangche) +Would you like tea or something? 你需要茶或者别的什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1987792 (CK) & #8878029 (crescat) +Would you like to dance with me? 你愿意和我跳舞吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1654 (CK) & #336871 (fucongcong) +Would you like to eat something? 你想吃點東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #450089 (CK) & #870306 (Martha) +Would you like to eat something? 您想吃点什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #450089 (CK) & #7773212 (jiangche) +Would you mind closing the door? 你介意關上門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38987 (bmorsello) & #6149908 (verdastelo9604) +Would you pass the salt, please? 請你把鹽遞過來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25744 (CK) & #874472 (Martha) +Yesterday I did not play tennis. 我昨天沒有打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #1769376 (wwkudu) & #846342 (Martha) +You are a good cook, aren't you? 你很會做菜,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #325763 (CK) & #3149022 (cienias) +You are always as busy as a bee. 你總是跟蜜蜂一樣地忙碌。 CC-BY 2.0 (France) Attribution: tatoeba.org #16760 (CK) & #845472 (Martha) +You are very early this morning. 你今天早上非常早。 CC-BY 2.0 (France) Attribution: tatoeba.org #62603 (CK) & #874983 (Martha) +You ask me to do the impossible. 你让我做不可能做到的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #4723 (CK) & #1778284 (sadhen) +You can buy it at any bookstore. 你可以在任何一家書店買到它。 CC-BY 2.0 (France) Attribution: tatoeba.org #541465 (CK) & #896758 (Martha) +You can do whatever you want to. 你可以做任何你想做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #17949 (CK) & #896375 (Martha) +You can go or stay, as you wish. 你走或留,随你高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #17250 (CK) & #334754 (fucongcong) +You can't do two things at once. 你不能一心两用。 CC-BY 2.0 (France) Attribution: tatoeba.org #280318 (CK) & #803801 (fucongcong) +You didn't need to buy the book. 你沒有必要買這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #606324 (CK) & #793510 (Martha) +You don't have to kick yourself. 你不要自甘堕落。 CC-BY 2.0 (France) Attribution: tatoeba.org #264822 (CM) & #1235651 (sunnywqing) +You don't know how worried I am. 你不知道我有多担心啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #16096 (CK) & #1992635 (sadhen) +You don't like gambling, do you? 你不喜歡賭博,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69078 (CK) & #810592 (Martha) +You don't need to speak so loud. 你不必這麼大聲說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #503765 (CK) & #900234 (Martha) +You had better not stay up late. 你最好不要熬夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #277356 (CK) & #908030 (Martha) +You have lovely eyes, don't you? 你有一雙可愛的眼睛,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16879 (CK) & #803885 (Martha) +You just saved me a lot of time. 你省了我好多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3241674 (CK) & #6114430 (verdastelo9604) +You know quite a lot about Sumo. 你對相撲知道得很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #15931 (CK) & #6148364 (verdastelo9604) +You may make use of his library. 你可以利用他的图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #15811 (CK) & #1839175 (sadhen) +You must answer these questions. 你必須回答這些問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #55199 (CK) & #842250 (Martha) +You must not be late for school. 你上學不可以遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #21583 (CK) & #896491 (Martha) +You must return the book to him. 这本书你该还给他。 CC-BY 2.0 (France) Attribution: tatoeba.org #16571 (Swift) & #817376 (fucongcong) +You ought to ask him for advice. 你应该向他征求意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #15832 (CK) & #1768155 (sadhen) +You really are rude, aren't you? 你真的很粗魯,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410602 (CK) & #874968 (Martha) +You really are tall, aren't you? 你真的很高,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410603 (CK) & #873487 (Martha) +You said you had important news. 你說你有重要新聞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642237 (CK) & #6070900 (verdastelo9604) +You should be able to manage it. 你应该能解决。 CC-BY 2.0 (France) Attribution: tatoeba.org #3343070 (CK) & #5911753 (verdastelo9604) +You should come home before six. 你應該六點前回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #72410 (CK) & #874502 (Martha) +You should come home before six. 六点之前要回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #72410 (CK) & #8591279 (easononizuka) +You should do your homework now. 你應該現在做功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #242127 (CK) & #870376 (Martha) +You should keep your mouth shut. 你應該閉上你的嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #239718 (CK) & #873354 (Martha) +You should run for city council. 你应该去竞选城市委员会。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834911 (CK) & #4844821 (pig8322) +You should talk directly to Tom. 你应该直接跟汤姆说。 CC-BY 2.0 (France) Attribution: tatoeba.org #3181801 (CK) & #3779020 (e78xx_xxx) +You should've stayed in the car. 你該留在車裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678508 (CK) & #6065916 (verdastelo9604) +You should've told me yesterday. 你昨天就该告诉我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495759 (CK) & #5091266 (mirrorvan) +You underestimate your charisma. 你低估了你的魅力。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502717 (CK) & #8794699 (slo_oth) +You'd better consult the doctor. 您最好请教一下医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #16317 (CK) & #469289 (fucongcong) +You'd better consult the doctor. 你最好请教一下医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #16317 (CK) & #469291 (fucongcong) +You'd better not go there again. 你最好不要再去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #7805446 (CK) & #900725 (Martha) +You're Tom's friend, aren't you? 你是湯姆的朋友,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #503750 (CK) & #845479 (Martha) +You're really brave, aren't you? 你很勇敢,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #837420 (Mouseneb) & #836435 (Martha) +You're the best man for the job. 你是做這份工作最好的人選。 CC-BY 2.0 (France) Attribution: tatoeba.org #17693 (CK) & #895721 (Martha) +You're the best man for the job. 你是最適合做這份工作的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #17693 (CK) & #895726 (Martha) +You're the only one I can trust. 你是我唯一能信任的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541137 (CK) & #6903838 (verdastelo9604) +You've lost weight, haven't you? 你减肥了,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #3681417 (CK) & #5663469 (verdastelo9604) +Your CV has really impressed me. 你的履歷給我留下深刻的印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #802887 (eastasiastudent) & #801990 (egg0073) +Your English has improved a lot. 你的英語進步了很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #17311 (CK) & #872221 (Martha) +Your bicycle is similar to mine. 你的腳踏車和我的很相似。 CC-BY 2.0 (France) Attribution: tatoeba.org #17101 (CK) & #871075 (Martha) +Your chair is identical to mine. 你的椅子和我的很像。 CC-BY 2.0 (France) Attribution: tatoeba.org #17420 (CK) & #1225645 (tsayng) +Your opinion is similar to mine. 你的意見跟我的相似。 CC-BY 2.0 (France) Attribution: tatoeba.org #17319 (CK) & #868488 (Martha) +Your problem is similar to mine. 你的问题类似于我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16930 (CK) & #784489 (fucongcong) +Your problem is similar to mine. 你的問題和我的相似。 CC-BY 2.0 (France) Attribution: tatoeba.org #16930 (CK) & #872441 (Martha) +Your shirt button is coming off. 你衬衣的纽扣快掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17385 (Zifre) & #1312506 (vicch) +Your team is stronger than ours. 你們的隊伍比我們的強。 CC-BY 2.0 (France) Attribution: tatoeba.org #17665 (CK) & #870063 (Martha) +"Can somebody help me?" "I will." "誰可以來幫我一下?" "我幫你。" CC-BY 2.0 (France) Attribution: tatoeba.org #2466 (Zifre) & #776929 (Martha) +"How old are you?" "I'm sixteen." 「你幾歲?」「我十六歲。」 CC-BY 2.0 (France) Attribution: tatoeba.org #418642 (CK) & #1233907 (tsayng) +"I think so, too," she chimed in. “我也那样觉得。”她附和道。 CC-BY 2.0 (France) Attribution: tatoeba.org #73655 (CM) & #8765223 (crescat) +A baby is sleeping in the cradle. 一個嬰兒在搖籃裡睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #272359 (CK) & #9046287 (xjjAstrus) +A plane is flying above the city. 一架飛機在這個城市上空飛行。 CC-BY 2.0 (France) Attribution: tatoeba.org #277864 (CK) & #797017 (Martha) +A ring and some cash are missing. 少了一个戒指和一点现金。 CC-BY 2.0 (France) Attribution: tatoeba.org #246272 (CK) & #469483 (fucongcong) +A tiger has escaped from the zoo. 一隻老虎逃出了動物園。 CC-BY 2.0 (France) Attribution: tatoeba.org #280257 (CK) & #6900935 (xjjAstrus) +AI means Artificial Intelligence. AI是人工智能的略称。 CC-BY 2.0 (France) Attribution: tatoeba.org #427666 (witbrock) & #4104741 (maple) +After two days our food gave out. 过两天我们的食物就发完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72792 (CM) & #5845593 (verdastelo9604) +All I want now is a little sleep. 我现在只想睡点觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2015109 (CK) & #5942079 (verdastelo9604) +All of his family work on a farm. 他全家都在农场工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #285726 (CM) & #4265050 (notabene) +All of the students were present. 所有學生都出席了。 CC-BY 2.0 (France) Attribution: tatoeba.org #21340 (CK) & #845498 (Martha) +An honest man never steals money. 誠實的人從不偷錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #271666 (CK) & #6028124 (verdastelo9604) +Another Scotch and water, please. 麻煩再來一杯威士忌和加水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270891 (CK) & #832964 (Martha) +Are there many trees in the park? 公園裡有很多樹嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #240423 (CK) & #866184 (Martha) +Are you allergic to any medicine? 你對任何藥物過敏嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #324225 (CK) & #844455 (Martha) +Are you and Tom leaving together? tom和你一起離開嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7834180 (sharris123) & #3718254 (egg0073) +Are you and Tom working together? 你跟湯姆一起工作嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3738398 (CK) & #6149012 (verdastelo9604) +Are you busy on Sunday afternoon? 你週日下午忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #281819 (CK) & #844503 (Martha) +Are you going to school tomorrow? 你明天要去上學嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68900 (CK) & #840576 (Martha) +Are you guys free this afternoon? 你们今天下午有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5758512 (daifons) & #8938615 (crescat) +Are you saying that I killed Tom? 你是说是我杀了汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4717677 (xorgy) & #8753040 (crescat) +As for me, I have nothing to say. 以我之见,我无话可说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1185355 (bart) & #1395086 (mtdot) +Ask at the police box over there. 問那邊的警察崗哨。 CC-BY 2.0 (France) Attribution: tatoeba.org #240629 (CM) & #798348 (Martha) +Be careful on your way back home. 回家的路上注意安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #579194 (FeuDRenais) & #3783098 (Debbie_Linder) +Because he's sick, he can't come. 因為他生病了,所以他不能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #404646 (CK) & #836154 (Martha) +By the way, are you free tonight? 顺便问一句,你今晚有空吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38047 (CK) & #343858 (fucongcong) +By the way, what is your address? 对了,你的地址是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #38059 (CM) & #390439 (fucongcong) +Call me if you discover anything. 如果你發現什麼,請打給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #7835087 (basilhan) & #1225636 (tsayng) +Can I borrow some money from you? 我可以向你借一些錢? CC-BY 2.0 (France) Attribution: tatoeba.org #64582 (CK) & #874384 (Martha) +Can I get you something to drink? 我可以帶喝的東西給你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25189 (CK) & #777700 (Martha) +Can I go swimming this afternoon? 我今天下午可以去游泳嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242554 (CK) & #845494 (Martha) +Can someone answer the telephone? 有人可以接電話嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #276371 (CK) & #833240 (Martha) +Can we roller-skate in this park? 我們可以在這個公園裡玩四輪溜冰嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59332 (CK) & #844565 (Martha) +Can you pass me the salt, please? 請你把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25735 (CK) & #866063 (Martha) +Can you please close that window? 請您把那扇窗戶關起來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2658408 (WestofEden) & #868261 (Martha) +Can you take Tom to the hospital? 您能带汤姆上医院吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2592617 (WestofEden) & #7773199 (jiangche) +Comb your hair before you go out. 在你出門之前,把你的頭髮梳一梳。 CC-BY 2.0 (France) Attribution: tatoeba.org #21859 (CK) & #873286 (Martha) +Could I see you a minute, please? 讓我看你一會兒好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33054 (CK) & #874335 (Martha) +Could you exchange rooms with me? 可以跟我交換房間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #788258 (hrin) & #780275 (Martha) +Could you say that one more time? 你能再說一次嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6048665 (CK) & #6049591 (magicalrpetz47) +Could you spare me a few minutes? 你能为我腾出几分钟时间吗? CC-BY 2.0 (France) Attribution: tatoeba.org #72988 (CK) & #332810 (fucongcong) +Dad's in an impatient mood today. 爸爸今天很不耐烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #242967 (CK) & #332864 (fucongcong) +Did anybody ask you to come here? 有人叫你來這嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6048663 (CK) & #6049590 (magicalrpetz47) +Did the police ever question you? 警察盘问你了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3142930 (CK) & #5630449 (verdastelo9604) +Did you enjoy yourself yesterday? 你昨天玩得開心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69380 (CK) & #833200 (Martha) +Did you find your contact lenses? 你找到你的隱形眼鏡了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1477107 (weihaiping) & #842439 (Martha) +Did you go to the art exhibition? 你去看藝術展覽了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #318171 (CK) & #872417 (Martha) +Didn't you write a letter to him? 你沒寫信給他嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15834 (CK) & #874504 (Martha) +Do you ever study in the library? 你曾經在圖書館讀書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #270685 (CK) & #875099 (Martha) +Do you have a better explanation? 你有更好的理由嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2642217 (CK) & #6826152 (verdastelo9604) +Do you have a table on the patio? 你院子裡有桌子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #502617 (CK) & #874491 (Martha) +Do you know how to open this box? 你知道如何打開這個箱子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #57517 (CK) & #872376 (Martha) +Do you know how to speak English? 你知道怎麼說英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69648 (CK) & #811839 (Martha) +Do you know what color she likes? 你知道她喜歡什麼顏色嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #311849 (CK) & #881907 (Martha) +Do you know where they come from? 你知道他们来自哪里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3731181 (CM) & #5640721 (verdastelo9604) +Do you mind if I open the window? 你介意我开窗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #274196 (CK) & #333945 (fucongcong) +Do you play a musical instrument? 你演奏樂器嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #21260 (CK) & #842247 (Martha) +Do you really believe that story? 你真的相信那故事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2712951 (CK) & #6057851 (verdastelo9604) +Do you really want Tom to suffer? 你真想讓湯姆受苦嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2015118 (CK) & #6635834 (verdastelo9604) +Do you still buy lottery tickets? 你還買彩票嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5588110 (CK) & #6635886 (verdastelo9604) +Do you study at a private school? 你在私立学校读书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2845999 (englishchinese) & #2052511 (sadhen) +Do you think animals have a soul? 你认为动物有灵魂吗? CC-BY 2.0 (France) Attribution: tatoeba.org #705418 (papabear) & #1323691 (vicch) +Do you want any of these flowers? 你要這些花中的任何一朵嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60079 (CK) & #881093 (Martha) +Do you want to hear what I think? 你想聽聽我是怎麼想的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3819887 (CK) & #6624600 (verdastelo9604) +Does Tom need to stay home today? 湯姆今天需要留在家裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #465960 (CK) & #882178 (Martha) +Does anyone else have any advice? 有人還有什麼建議嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2997153 (CK) & #3322736 (cienias) +Does he write letters in English? 他用英文寫信嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #495859 (CK) & #811850 (Martha) +Don't ever touch my things again. 不要再碰我的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4717615 (xorgy) & #8784007 (slo_oth) +Don't forget to put out the fire. 不要忘了熄火。 CC-BY 2.0 (France) Attribution: tatoeba.org #23860 (CK) & #888520 (Martha) +Don't forget to put the fire out. 不要忘了熄火。 CC-BY 2.0 (France) Attribution: tatoeba.org #9315351 (CK) & #888520 (Martha) +Don't get involved with that guy. 別和這個人打交道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2306766 (FeuDRenais) & #2301839 (cienias) +Don't interrupt our conversation. 不要打斷我們的談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #321366 (CK) & #825145 (Martha) +Don't judge a man by his clothes. 不要以穿著來判斷一個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #270184 (CK) & #889125 (Martha) +Don't throw rocks into the river. 不要往河裡扔石頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #525757 (CK) & #844474 (Martha) +Don't try to do this by yourself. 别想靠你自己做这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2584036 (CK) & #5911669 (verdastelo9604) +Don't you remember what you said? 自己说过的话都不记得了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3642463 (CK) & #5102410 (mirrorvan) +Earthquakes frequently hit Japan. 地震頻繁地襲擊日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #281600 (CK) & #824630 (Martha) +English is studied in China, too. 英語在中國也被學習了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26248 (CS) & #811895 (Martha) +English is studied in China, too. 在中國的人也研讀英語了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26248 (CS) & #811896 (Martha) +Even Tom doesn't do that anymore. 甚至湯姆都不再做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733438 (CK) & #6105230 (verdastelo9604) +Even a child can understand that. 即使是一個小孩子都能理解。 CC-BY 2.0 (France) Attribution: tatoeba.org #245801 (CK) & #842428 (Martha) +Even children can read this book. 即使是小孩也能讀這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #418392 (CK) & #836311 (Martha) +Even chocolate contains vitamins. 連巧克力中也含有維他命。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735941 (CK) & #4061618 (egg0073) +Every one of her songs was a hit. 她的每首歌都长期备受欢迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #791734 (FeuDRenais) & #792885 (fucongcong) +Every one of his songs was a hit. 他的每首歌都长期备受欢迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #791733 (FeuDRenais) & #792883 (fucongcong) +Everybody plays the game of love. 大家都玩爱情游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #276572 (CK) & #334037 (fucongcong) +Everyone comes to Tom for advice. 每個人都請教湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #6124939 (CK) & #6640401 (verdastelo9604) +Everyone is equal before the law. 法律面前人人平等。 CC-BY 2.0 (France) Attribution: tatoeba.org #5044989 (Zurich899) & #482701 (biglion) +Excess of politeness is annoying. 禮貌過度是煩人的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733936 (CK) & #6089960 (verdastelo9604) +Exercise is good for your health. 做运动有利于健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #26555 (CK) & #333295 (fucongcong) +Exercise is good for your health. 体育有益健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #26555 (CK) & #4265152 (notabene) +For that reason, he lost his job. 因為那個原因,他失去了工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #482118 (CK) & #887821 (Martha) +Give me a glass of water, please. 请你给我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #61457 (CK) & #334646 (fucongcong) +Give me a glass of water, please. 請給我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #61457 (CK) & #890631 (Martha) +Go and buy three bottles of coke. 去買三瓶可樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #62179 (CK) & #798243 (Martha) +Go away before they see you here. 在他们看见你之前离开这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1452803 (Spamster) & #2499983 (fenfang557) +Has he finished his homework yet? 他完成他的功課了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #293095 (CH) & #844583 (Martha) +Have you ever eaten a banana pie? 你吃过香蕉派吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1834 (CK) & #1772667 (sadhen) +Have you ever had food poisoning? 您曾經食物中毒過嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #268765 (CK) & #838537 (Martha) +Have you ever tried scuba diving? 你曾試過用水肺潛水嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #52292 (CK) & #840652 (Martha) +Have you finished your lunch yet? 你吃完你的午飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69736 (CK) & #836139 (Martha) +Have you handed in your homework? 你交功課了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31327 (CK) & #838635 (Martha) +Have you heard from him recently? 你最近有他的消息嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243876 (CK) & #839557 (Martha) +Have you taken your medicine yet? 您已经吃过药了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16380 (CK) & #476603 (fucongcong) +He advertised his house for sale. 他登廣告出售他的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #294431 (CK) & #836270 (Martha) +He always gets bullied at school. 他在學校老是被人欺負。 CC-BY 2.0 (France) Attribution: tatoeba.org #934026 (miry) & #922365 (Martha) +He always quarrels with his wife. 他總是與他的妻子吵架。 CC-BY 2.0 (France) Attribution: tatoeba.org #289121 (CK) & #840758 (Martha) +He asked if I liked Chinese food. 他問我是否喜歡中國菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #297683 (CK) & #875356 (Martha) +He asked me to speak more slowly. 他要求我講慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #30485 (CK) & #884197 (Martha) +He asked me where my uncle lived. 他問我我的叔叔住在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #288158 (CK) & #882995 (Martha) +He barely passed the examination. 他勉強地通過了考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #289591 (CK) & #834311 (Martha) +He believes that he can prove it. 他相信他能证明它。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162143 (FeuDRenais) & #2161698 (sadhen) +He bought a small house in Kyoto. 他在京都買了一個小房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #295277 (CK) & #877660 (Martha) +He built a new house for himself. 他給自己蓋了一棟新房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #298607 (CK) & #885528 (Martha) +He called me up almost every day. 他幾乎每天打電話給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #303902 (CK) & #879188 (Martha) +He came all the way from Chicago. 他從芝加哥遠道而來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292445 (CK) & #883280 (Martha) +He came home late in the evening. 他晚上很晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #304493 (CK) & #881543 (Martha) +He came to Japan seven years ago. 他七年前來日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #288649 (CK) & #890474 (Martha) +He cannot have done such a thing. 他不可能做那種事。 CC-BY 2.0 (France) Attribution: tatoeba.org #283160 (CK) & #8387410 (wangchou) +He collected bits of information. 他收集了一些訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #288993 (CK) & #795824 (Martha) +He convinced me of his innocence. 他让我相信他是无辜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #298532 (CK) & #5715190 (verdastelo9604) +He didn't go and I didn't either. 他沒有去,我也沒去。 CC-BY 2.0 (France) Attribution: tatoeba.org #496086 (CK) & #881133 (Martha) +He didn't respond to my question. 他沒有回答我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #297880 (CK) & #840674 (Martha) +He doesn't know how to play golf. 他不知道如何打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #289976 (CK) & #882513 (Martha) +He doesn't know much about Japan. 他不是很了解日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #302216 (CK) & #842444 (Martha) +He doesn't like traveling by air. 他不喜歡搭飛機旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #303020 (CK) & #836326 (Martha) +He explained his plans in detail. 他詳細地解釋了他的計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #298613 (CK) & #840535 (Martha) +He fell asleep with the radio on. 他睡著了但收音機還開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #288068 (CK) & #879119 (Martha) +He found the box under the table. 他在桌子底下發現了這個盒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #291810 (CK) & #887740 (Martha) +He gave his life for his country. 他把他的一生獻給了他的國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #296421 (CK) & #805588 (Martha) +He gave me a lecture on drinking. 他因我喝酒而訓斥我。 CC-BY 2.0 (France) Attribution: tatoeba.org #293853 (CK) & #805229 (Martha) +He gave me his stamp of approval. 他給了我正式批准。 CC-BY 2.0 (France) Attribution: tatoeba.org #275021 (CK) & #805196 (Martha) +He had a large family to support. 他要養活一個大家庭。 CC-BY 2.0 (France) Attribution: tatoeba.org #284908 (CK) & #880282 (Martha) +He had a shower before breakfast. 他在早餐前洗了个澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #301589 (CK) & #819807 (fucongcong) +He had every reason for doing so. 他有充分的理由這樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #283056 (CK) & #805053 (Martha) +He had his car stolen last night. 昨晚他的車被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296948 (CK) & #881226 (Martha) +He has a brother and two sisters. 他有一个兄弟和两个姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #284774 (CK) & #405123 (fucongcong) +He has a good command of English. 他有很好的英語能力。 CC-BY 2.0 (France) Attribution: tatoeba.org #293942 (CK) & #881589 (Martha) +He has a large family to support. 他要撫養一大家人。 CC-BY 2.0 (France) Attribution: tatoeba.org #284936 (CK) & #887719 (Martha) +He has a large family to support. 他有一大家子要養。 CC-BY 2.0 (France) Attribution: tatoeba.org #284936 (CK) & #887722 (Martha) +He has a lot of books on history. 他有很多历史书籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #304790 (CK) & #332663 (fucongcong) +He has all but finished the work. 他幾乎已經完成這個工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292755 (CK) & #876707 (Martha) +He has been dead for three years. 他去世三年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283705 (CK) & #889544 (Martha) +He has been to Europe many times. 他去過歐洲很多次了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294364 (CK) & #879194 (Martha) +He has no house in which to live. 他没有房子住。 CC-BY 2.0 (France) Attribution: tatoeba.org #284839 (CM) & #334564 (fucongcong) +He hasn't answered my letter yet. 他还没回我的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #292878 (CK) & #337881 (fucongcong) +He hasn't written the letter yet. 他還沒寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #292862 (CK) & #846424 (Martha) +He introduced his daughter to me. 他把他的女兒介紹給我認識。 CC-BY 2.0 (France) Attribution: tatoeba.org #304034 (CK) & #846066 (Martha) +He is a student at a high school. 他是一名高中學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #296400 (CK) & #832968 (Martha) +He is beginning to lose his hair. 他开始掉头发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302448 (CK) & #791594 (fucongcong) +He is independent of his parents. 他獨立於他的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #300071 (CK) & #769695 (Martha) +He is not a doctor but a teacher. 他不是医生,他是教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #293618 (CK) & #343353 (fucongcong) +He is not a singer, but an actor. 他不是歌手,但是个演员。 CC-BY 2.0 (France) Attribution: tatoeba.org #294495 (CM) & #334209 (fucongcong) +He is not a teacher but a doctor. 他不是老師,而是醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #295349 (CK) & #6107696 (xjjAstrus) +He is old enough to travel alone. 他够大了,可以独自旅行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288075 (CK) & #347037 (fucongcong) +He is still sitting on the bench. 他還坐在長椅上。 CC-BY 2.0 (France) Attribution: tatoeba.org #292840 (CK) & #885516 (Martha) +He is the chief of my department. 他是我部門的主管。 CC-BY 2.0 (France) Attribution: tatoeba.org #283724 (CK) & #882509 (Martha) +He is the father of two children. 他是兩個孩子的父親。 CC-BY 2.0 (France) Attribution: tatoeba.org #288491 (CK) & #887802 (Martha) +He is used to speaking in public. 他習慣在公眾場合說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #300169 (CK) & #846184 (Martha) +He is very stingy with his money. 他非常吝啬。 CC-BY 2.0 (France) Attribution: tatoeba.org #292056 (CK) & #887899 (Martha) +He kicked the ball into the goal. 他把球踢進了球門。 CC-BY 2.0 (France) Attribution: tatoeba.org #292705 (CK) & #879139 (Martha) +He left high school at seventeen. 他十七歲的時候離開了高中。 CC-BY 2.0 (France) Attribution: tatoeba.org #299329 (CK) & #846212 (Martha) +He left his glasses at our place. 他把眼镜落在我们这里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3085145 (patgfisher) & #5670764 (verdastelo9604) +He likes French more than German. 他喜歡法語勝過德語。 CC-BY 2.0 (France) Attribution: tatoeba.org #502654 (CK) & #834531 (Martha) +He lived in the center of London. 他住在倫敦市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #293387 (CK) & #882519 (Martha) +He lived to be seventy years old. 他活到了70歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #298924 (CK) & #887752 (Martha) +He lives by himself in the woods. 他獨自住在森林裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #288206 (CK) & #876725 (Martha) +He lives in a village near Osaka. 他住在大阪附近一座鎮上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2002408 (jackchak) & #884656 (Tajfun) +He lives in the suburbs of Tokyo. 他住在東京郊區。 CC-BY 2.0 (France) Attribution: tatoeba.org #301928 (CK) & #881296 (Martha) +He looks a bit tired, doesn't he? 他看起來有點累,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #299602 (CK) & #875283 (Martha) +He loses his temper quite easily. 他很容易發脾氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #290238 (CK) & #846278 (Martha) +He loved to laugh and enjoy life. 他爱笑以及享受生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #803056 (Source_VOA) & #5819687 (verdastelo9604) +He loves her. She loves him, too. 他愛她。她也愛他。 CC-BY 2.0 (France) Attribution: tatoeba.org #302877 (CK) & #803866 (Martha) +He makes good use of his talents. 他善用他的天赋。 CC-BY 2.0 (France) Attribution: tatoeba.org #298722 (CK) & #333169 (fucongcong) +He narrowly escaped being killed. 他險些被殺害。 CC-BY 2.0 (France) Attribution: tatoeba.org #295005 (CK) & #834401 (Martha) +He never speaks unless spoken to. 除非有人跟他說話,他從來不說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #288309 (CK) & #849287 (Martha) +He often drives his father's car. 他經常駕駛他的父親的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #290105 (CK) & #848615 (Martha) +He often goes abroad on business. 他經常出國洽商。 CC-BY 2.0 (France) Attribution: tatoeba.org #299511 (CK) & #848225 (Martha) +He often laughs at his own jokes. 他常常因他自己的笑話而笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #293287 (CK) & #876703 (Martha) +He often quotes from Shakespeare. 他經常引用莎士比亞。 CC-BY 2.0 (France) Attribution: tatoeba.org #290087 (CK) & #771328 (Martha) +He owes his success to good luck. 他將他的成功歸於好運。 CC-BY 2.0 (France) Attribution: tatoeba.org #283900 (CK) & #882571 (Martha) +He played the piano and she sang. 他彈鋼琴,她唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #283270 (CK) & #881214 (Martha) +He predicted there would be rain. 他预测会下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #293864 (CK) & #8936352 (crescat) +He pressed the button and waited. 他按下按鈕然後等待著。 CC-BY 2.0 (France) Attribution: tatoeba.org #292741 (CK) & #846030 (Martha) +He pretended not to be listening. 他裝作沒在聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #303507 (CK) & #848973 (Martha) +He pretended not to be listening. 他假装听不见。 CC-BY 2.0 (France) Attribution: tatoeba.org #303507 (CK) & #2456504 (fenfang557) +He read the letter over and over. 他把信读了一遍又一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #290982 (CK) & #1394897 (mtdot) +He resigned and fled the country. 他辞职后逃离了这个国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #803061 (Source_VOA) & #2394582 (fenfang557) +He risked losing all his fortune. 他冒着失去所有财产的危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #300762 (CM) & #2393431 (fenfang557) +He said that it was nine o'clock. 他说九点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288667 (CK) & #812214 (fucongcong) +He said, "I want to be a doctor." 他說:「我想成為醫生。」 CC-BY 2.0 (France) Attribution: tatoeba.org #288327 (CK) & #5797490 (egg0073) +He scraped the mud off his boots. 他刮下靴子上的泥巴。 CC-BY 2.0 (France) Attribution: tatoeba.org #292580 (CK) & #876730 (Martha) +He sent the letter back unopened. 他把那封信原封不動寄回去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290983 (CK) & #848442 (Martha) +He should have been more careful. 他本應該更小心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #293143 (CK) & #846548 (Martha) +He should have bought a used car. 他應該買一輛二手車的。 CC-BY 2.0 (France) Attribution: tatoeba.org #301531 (CK) & #882169 (Martha) +He skis in Hokkaido every winter. 他每年冬天在北海道滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #303928 (CK) & #848668 (Martha) +He sold his business and retired. 他賣掉了他的事業並且退休。 CC-BY 2.0 (France) Attribution: tatoeba.org #299506 (CK) & #848721 (Martha) +He sometimes goes to work by car. 他有時開車去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #291999 (CK) & #881265 (Martha) +He sometimes makes dinner for us. 他有時煮晚飯給我們吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #298404 (CK) & #848755 (Martha) +He somewhat resembles his father. 他有点像他的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #997842 (NickC) & #335113 (fucongcong) +He stayed there a couple of days. 他在那裡待了幾天。 CC-BY 2.0 (France) Attribution: tatoeba.org #73005 (CK) & #887739 (Martha) +He stepped on my foot on purpose. 他故意踩我的腳。 CC-BY 2.0 (France) Attribution: tatoeba.org #293416 (CK) & #875306 (Martha) +He stopped for a quick cigarette. 他停下来抽根烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #995259 (NickC) & #335115 (fucongcong) +He stopped reading the newspaper. 他停止了读报。 CC-BY 2.0 (France) Attribution: tatoeba.org #299947 (CK) & #6094877 (verdastelo9604) +He talks as if he were a teacher. 他说话就像一位老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #292971 (eastasiastudent) & #718456 (ZeroAurora) +He teaches English to his friend. 他對他的朋友教英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #1884864 (dgibbons) & #848996 (Martha) +He tends to be late for meetings. 他開會往往會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #294610 (CK) & #880393 (Martha) +He told me he would go to Venice. 他告诉过我他会去威尼斯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2450 (CK) & #1778255 (sadhen) +He told me that he was busy then. 他告诉我他那时很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #287948 (CM) & #5581657 (verdastelo9604) +He told me the story of his life. 他给我讲述了他的一生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2063 (Swift) & #332594 (fucongcong) +He told me to do it, so I did it. 他让我做,我就做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #291470 (CK) & #785828 (fucongcong) +He told the students to be quiet. 他告訴了學生要安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #300493 (CK) & #876739 (Martha) +He took me to the park yesterday. 昨天他帶我去公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #296904 (CK) & #882518 (Martha) +He took the wrong bus by mistake. 他搭错了车。 CC-BY 2.0 (France) Attribution: tatoeba.org #294967 (CK) & #335227 (fucongcong) +He used to be an imaginative boy. 他曾經是一個富有想像力的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #300820 (CK) & #786103 (Martha) +He usually goes to school by bus. 他經常搭公車上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #288247 (CK) & #876717 (Martha) +He usually goes to work at 8 a.m. 通常,他早上8点去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #289189 (CK) & #336968 (fucongcong) +He usually went to bed at eleven. 他通常在十一點上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #291573 (CK) & #879153 (Martha) +He waited for me until I arrived. 他等我直到我來。 CC-BY 2.0 (France) Attribution: tatoeba.org #246968 (CK) & #875286 (Martha) +He wants something cold to drink. 他想喝些冷飲。 CC-BY 2.0 (France) Attribution: tatoeba.org #294238 (CK) & #849016 (Martha) +He wants to get a new dictionary. 他想得到一本新的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #299896 (CK) & #881690 (Martha) +He was able to solve the problem. 他能解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #291333 (CK) & #879124 (Martha) +He was accused of stealing money. 他被指控偷錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #289471 (CK) & #848634 (Martha) +He was killed by a single bullet. 他被一顆子彈打死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293819 (CK) & #881579 (Martha) +He was late for school yesterday. 他昨天上学迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296872 (CK) & #333768 (fucongcong) +He was laughed at by his friends. 他被他的朋友嘲笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #304375 (CK) & #885407 (Martha) +He was laughed at by his friends. 他被他的朋友們取笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #304375 (CK) & #4953628 (umidake) +He weighs a lot more than before. 他比以前重得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #289007 (CK) & #782318 (fucongcong) +He went out in spite of the rain. 尽管下着雨,他还是出去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26774 (CK) & #375288 (fucongcong) +He went to Paris to study French. 他到巴黎學習法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #292624 (CK) & #881259 (Martha) +He will arrive in Paris tomorrow. 他明天將抵達巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #304090 (CK) & #848528 (Martha) +He will make a good team captain. 他會成為一個好隊長。 CC-BY 2.0 (France) Attribution: tatoeba.org #288939 (CK) & #880318 (Martha) +He wiped the sweat from his face. 他擦去了脸上的汗水。 CC-BY 2.0 (France) Attribution: tatoeba.org #387581 (Mouseneb) & #366890 (fucongcong) +He worked in a big city hospital. 他在一間很大的市立醫院工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477086 (weihaiping) & #882987 (Martha) +He works every day except Sunday. 除了星期天他每天工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #302274 (CK) & #846427 (Martha) +He works hard all the year round. 他一年到頭努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #288455 (CK) & #888497 (Martha) +He would not listen to my advice. 他不肯聽我的勸告。 CC-BY 2.0 (France) Attribution: tatoeba.org #297946 (CK) & #887811 (Martha) +He wrote it down in his notebook. 他把这记在他的笔记本上。 CC-BY 2.0 (France) Attribution: tatoeba.org #255353 (CK) & #333745 (fucongcong) +He'll come on foot or by bicycle. 他走路或者骑车过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #301818 (CK) & #791438 (fucongcong) +He'll do whatever you ask him to. 他會做任何你要求他做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #295614 (CK) & #875287 (Martha) +He's always been living in Tokyo. 他一直住在東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #290295 (CK) & #779473 (Martha) +He's eligible for the presidency. 他有資格當選總統。 CC-BY 2.0 (France) Attribution: tatoeba.org #288237 (CK) & #833175 (Martha) +He's in charge of the department. 他負責這個部門。 CC-BY 2.0 (France) Attribution: tatoeba.org #319467 (CK) & #846381 (Martha) +He's not at all afraid of snakes. 他一點也不怕蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #292669 (CK) & #889637 (Martha) +He's very good at playing guitar. 他很擅長彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #467855 (CK) & #846086 (Martha) +Help yourself to a piece of cake. 你自己拿蛋糕吃吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642210 (CK) & #332593 (fucongcong) +Help yourself to a piece of cake. 你们自己吃蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642210 (CK) & #333305 (fucongcong) +Her father passed away last week. 她的父親上週去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308975 (CK) & #846555 (Martha) +Her husband is an excellent cook. 她丈夫是個優秀的廚師。 CC-BY 2.0 (France) Attribution: tatoeba.org #309701 (CK) & #848699 (Martha) +Her look says that she loves you. 她的樣子在說她愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #308274 (CK) & #881860 (Martha) +Her mother passed away last year. 她的母親去年去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #308979 (CK) & #849019 (Martha) +Her mother will continue to work. 她母亲将继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #309746 (CK) & #334275 (fucongcong) +Her red dress made her stand out. 她的紅色禮服使她引人注目。 CC-BY 2.0 (France) Attribution: tatoeba.org #388828 (CK) & #875347 (Martha) +Hey, can you turn the lights off? 喂,你能把灯关掉吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3575406 (CK) & #9012244 (jacintoo) +His father passed away last year. 他的父親去年過世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #785443 (hrin) & #781509 (Martha) +His mother is an English teacher. 他的母親是一位英語教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #285296 (CK) & #848369 (Martha) +His office is very close to mine. 他的辦公室跟我的非常近。 CC-BY 2.0 (France) Attribution: tatoeba.org #285753 (CK) & #880289 (Martha) +His shirt was stained with sauce. 他的衬衫被酱汁弄脏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285342 (CK) & #787380 (fucongcong) +His son was expelled from school. 他的兒子被學校開除了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45581 (CK) & #848596 (Martha) +His speech inspired all the boys. 他的演說激勵了所有的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #287905 (CK) & #846026 (Martha) +His wife gave birth to twin boys. 他的妻子生下了一對雙胞胎男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #286368 (CK) & #875388 (Martha) +His wife opened the door for him. 他的妻子為他開門了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286372 (CK) & #889565 (Martha) +History is not his major subject. 历史不是他的主修课。 CC-BY 2.0 (France) Attribution: tatoeba.org #245514 (CK) & #5863262 (verdastelo9604) +How about a drink after the game? 比賽結束後喝一杯怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #263508 (CK) & #876711 (Martha) +How about having dinner together? 一起吃晚餐怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #54517 (CK) & #776928 (Martha) +How about tomorrow night at nine? 明天晚上九点怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #4708936 (CK) & #8865168 (crescat) +How are we going to pay for that? 我们怎么付钱? CC-BY 2.0 (France) Attribution: tatoeba.org #3185879 (CK) & #5967317 (verdastelo9604) +How are you feeling this morning? 你今天早上感覺如何? CC-BY 2.0 (France) Attribution: tatoeba.org #242170 (CK) & #848650 (Martha) +How come you didn't say anything? 你怎麼什麼話也沒說? CC-BY 2.0 (France) Attribution: tatoeba.org #36409 (CK) & #848438 (Martha) +How come you didn't say anything? 你為什麼都不說話? CC-BY 2.0 (France) Attribution: tatoeba.org #36409 (CK) & #848439 (Martha) +How did you get out of your room? 你怎么从你的房间里出来? CC-BY 2.0 (France) Attribution: tatoeba.org #3731173 (CM) & #5983592 (verdastelo9604) +How long is your spring vacation? 你春假放多久? CC-BY 2.0 (France) Attribution: tatoeba.org #266964 (CK) & #846117 (Martha) +How many languages can you speak? 你會說多少種語言? CC-BY 2.0 (France) Attribution: tatoeba.org #25006 (CK) & #848608 (Martha) +How many people are in this room? 在這個房間裡有多少人? CC-BY 2.0 (France) Attribution: tatoeba.org #24510 (CK) & #876926 (Martha) +How many years did Tom work here? 汤姆在这里工作了几年? CC-BY 2.0 (France) Attribution: tatoeba.org #2280788 (CK) & #5845630 (verdastelo9604) +How much does this umbrella cost? 這把傘多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #3258554 (CK) & #4830644 (umidake) +How will the weather be tomorrow? 明天天氣怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #6110485 (Sethlang) & #6092461 (xjjAstrus) +Hurry up, or you'll miss the bus. 快點,否則你會錯過公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #19670 (CK) & #887902 (Martha) +I advise you to give up drinking. 我勸你戒酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #266119 (CK) & #888111 (Martha) +I almost never watch TV nowadays. 现在我几乎不看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #6663537 (CK) & #7785257 (china_njlsc) +I already talked to this student. 我已经和这个学生谈过话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #408051 (Dorenda) & #8731987 (crescat) +I always get along well with him. 我跟他總是相處得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #249639 (CK) & #926700 (Martha) +I am a Japanese high school girl. 我是一個日本的高中女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #259809 (CK) & #885399 (Martha) +I am a member of the tennis club. 我是网球俱乐部的会员。 CC-BY 2.0 (France) Attribution: tatoeba.org #255101 (CK) & #332450 (fucongcong) +I am almost 180 centimeters tall. 我差不多180公分高。 CC-BY 2.0 (France) Attribution: tatoeba.org #255601 (CK) & #846102 (Martha) +I am constantly forgetting names. 我經常忘記別人的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #253143 (CK) & #917984 (Martha) +I am expecting a letter from her. 我期待她的來信。 CC-BY 2.0 (France) Attribution: tatoeba.org #308154 (CK) & #887872 (Martha) +I am interested in Asian history. 我对亚洲的历史很感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #71857 (CK) & #390458 (fucongcong) +I arrived at the station on time. 我準時到達了車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #264029 (CK) & #884177 (Martha) +I asked each boy three questions. 我問了每個男孩三個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254755 (CK) & #849023 (Martha) +I asked her a difficult question. 我問了她一個難題。 CC-BY 2.0 (France) Attribution: tatoeba.org #261215 (CK) & #846356 (Martha) +I asked him to go there tomorrow. 我要求他明天去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #260494 (CK) & #881059 (Martha) +I attempted to solve the problem. 我試圖解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254707 (CK) & #848995 (Martha) +I attended the meeting yesterday. 昨天我出席了會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #257756 (CK) & #834366 (Martha) +I bought a camera for 30 dollars. 我花30美元買了一台照相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #252143 (CK) & #881239 (Martha) +I bought this book the other day. 我前幾天買了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #321887 (CK) & #887746 (Martha) +I bought this watch at the store. 我在這家店買了這支手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #253626 (CK) & #917930 (Martha) +I brought you a little something. 我给你带了点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4724 (fcbond) & #343792 (fucongcong) +I bumped into him at the station. 我在車站碰到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #256263 (CK) & #881741 (Martha) +I can recommend this book to you. 我可以向你推薦這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #253742 (CK) & #919731 (Martha) +I can't believe that you love me. 我不能相信你愛我。 CC-BY 2.0 (France) Attribution: tatoeba.org #953373 (CK) & #6119441 (verdastelo9604) +I can't believe you're giving up. 我不能相信你在放弃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950924 (CK) & #5920774 (verdastelo9604) +I can't do anything but obey him. 我除了聽從他之外什麼也不能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #403376 (CK) & #875384 (Martha) +I can't figure out what he means. 我不懂他的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #38379 (CK) & #875343 (Martha) +I can't help admiring his talent. 我不禁欣賞他的才華。 CC-BY 2.0 (France) Attribution: tatoeba.org #252338 (CK) & #941159 (Martha) +I can't imagine life without you. 我無法想像沒有你的生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #252796 (CK) & #941151 (Martha) +I can't remember how to go there. 我不記得怎麼去那裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38365 (CK) & #887749 (Martha) +I can't stand this pain any more. 我不能再忍受這種痛苦了。 CC-BY 2.0 (France) Attribution: tatoeba.org #57813 (CK) & #881905 (Martha) +I can't wait to go on a vacation. 我等不及要去度假。 CC-BY 2.0 (France) Attribution: tatoeba.org #2131 (CK) & #503237 (fucongcong) +I carried the box on my shoulder. 我把盒子扛在肩上。 CC-BY 2.0 (France) Attribution: tatoeba.org #259924 (CK) & #472862 (fucongcong) +I caught him stealing the camera. 我抓到他偷相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #260081 (CK) & #848991 (Martha) +I could answer all the questions. 我可以回答所有问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #254024 (CK) & #796693 (fucongcong) +I could answer all the questions. 我能回答所有的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254024 (CK) & #848750 (Martha) +I didn't get everything I wanted. 我沒有得到我所有想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6255749 (CK) & #6065379 (verdastelo9604) +I didn't go to school last month. 我上個月沒上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #259047 (CK) & #887712 (Martha) +I didn't have to study yesterday. 我昨天不必讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #257808 (CK) & #848735 (Martha) +I didn't know where it came from. 我不知道它是从哪里来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1383 (brauliobezerra) & #58 (fucongcong) +I didn't need to paint the fence. 我不需要粉刷圍牆。 CC-BY 2.0 (France) Attribution: tatoeba.org #34044 (CK) & #926584 (Martha) +I didn't sleep a wink last night. 我昨晚一夜沒闔眼。 CC-BY 2.0 (France) Attribution: tatoeba.org #257829 (CK) & #881687 (Martha) +I didn't sleep a wink last night. 我昨晚沒睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257829 (CK) & #881688 (Martha) +I do not allow sleeping in class. 我不允许有人在课上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #266235 (CM) & #2109201 (sadhen) +I do not want any bananas at all. 我一點也不要香蕉。 CC-BY 2.0 (France) Attribution: tatoeba.org #879860 (CM) & #881280 (Martha) +I do not want any bananas at all. 我一個香蕉也不要。 CC-BY 2.0 (France) Attribution: tatoeba.org #879860 (CM) & #8825035 (xjjAstrus) +I don't blame you for doing that. 我不怪你那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #18020 (CK) & #887748 (Martha) +I don't eat as much as I used to. 我比以前吃得少了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5193772 (CK) & #8463707 (gumblex) +I don't expect anything from you. 我不指望从你身上得到什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2357 (CK) & #1776624 (sadhen) +I don't have any other questions. 我没有别的问题了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728409 (paper1n0) & #2770007 (cranewang) +I don't have the address with me. 我身上沒帶這個地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #266463 (CK) & #889368 (Martha) +I don't know and neither does he. 我不知道,他也不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #392157 (CK) & #889654 (Martha) +I don't know what day he'll come. 我不知道他星期幾會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #392158 (CK) & #876709 (Martha) +I don't know where Tom was going. 我不知道汤姆往哪去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2318378 (CK) & #5911767 (verdastelo9604) +I don't know where he comes from. 我不知道他從哪裡來。 CC-BY 2.0 (France) Attribution: tatoeba.org #283220 (CK) & #875374 (Martha) +I don't like the taste of onions. 我不喜歡洋蔥的味道。 CC-BY 2.0 (France) Attribution: tatoeba.org #256950 (CK) & #890473 (Martha) +I don't like to swim in the pool. 我不喜歡在泳池裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #255503 (CK) & #846105 (Martha) +I don't mind waiting for a while. 我不介意等一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #53409 (CK) & #884200 (Martha) +I don't mind walking in the rain. 我不介意在雨中漫步。 CC-BY 2.0 (France) Attribution: tatoeba.org #256140 (CK) & #887800 (Martha) +I don't need you or anybody else. 我不需要你或别的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2322781 (CK) & #5780611 (verdastelo9604) +I don't think I'll ever meet him. 我不認為我會再跟他見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #403377 (CK) & #879152 (Martha) +I don't think anyone can do this. 我认为没人能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619674 (CK) & #5845551 (verdastelo9604) +I don't think that he is sincere. 我不觉得他很诚实。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543196 (Bah_Dure) & #8780273 (crescat) +I don't think that he is sincere. 我不相信他是真心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543196 (Bah_Dure) & #9007568 (jacintoo) +I don't think that she will come. 我不認為她會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #317354 (CK) & #881540 (Martha) +I don't think you need to change. 我不認為你該改變。 CC-BY 2.0 (France) Attribution: tatoeba.org #5806852 (CK) & #6135003 (verdastelo9604) +I don't understand German at all. 我一點也不懂德語。 CC-BY 2.0 (France) Attribution: tatoeba.org #38957 (CK) & #849005 (Martha) +I don't understand German at all. 我完全不懂德语。 CC-BY 2.0 (France) Attribution: tatoeba.org #38957 (CK) & #2032287 (ydcok) +I don't understand much about it. 这里面我有很多不懂的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42920 (CK) & #7772492 (jiangche) +I don't understand this sentence. 我不明白這句話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2300046 (sysko) & #2300044 (egg0073) +I don't want to take such a risk. 我不想承担这样一个风险。 CC-BY 2.0 (France) Attribution: tatoeba.org #3492690 (_undertoad) & #4799111 (CLARET) +I expect her back by six o'clock. 我希望她六點前回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #310204 (CK) & #881755 (Martha) +I explained the reason in detail. 我詳細地解釋了原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #253413 (CK) & #848353 (Martha) +I feel we're going to get better. 我感覺我們將要變得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5688109 (CK) & #6047524 (verdastelo9604) +I felt a drop of rain on my head. 我感觉有滴雨落在头上。 CC-BY 2.0 (France) Attribution: tatoeba.org #259700 (CK) & #4760133 (ryanwoo) +I find politics very interesting. 我對政治很感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #5932957 (peterius) & #5809513 (xjjAstrus) +I forgot the date of the meeting. 我忘了會議的日期。 CC-BY 2.0 (France) Attribution: tatoeba.org #256569 (CK) & #876708 (Martha) +I found it easy to speak English. 我發覺說英語很簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #26177 (CK) & #790647 (Martha) +I found this in your desk drawer. 我在你的桌子抽屉里找到了这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330550 (CK) & #5595238 (verdastelo9604) +I go to the country every summer. 我每年夏天都去鄉下。 CC-BY 2.0 (France) Attribution: tatoeba.org #253129 (CK) & #876724 (Martha) +I got up while it was still dark. 我起来的时候天还是黑的呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #321712 (CK) & #333411 (fucongcong) +I had a strange dream last night. 我昨晚做了一個奇怪的夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #257805 (CK) & #889320 (Martha) +I had to work overtime yesterday. 我昨天必須加班。 CC-BY 2.0 (France) Attribution: tatoeba.org #257775 (CK) & #848217 (Martha) +I have a friend living in London. 我有一個住在倫敦的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #249864 (CK) & #882161 (Martha) +I have a reservation for tonight. 我有今晚的預訂。 CC-BY 2.0 (France) Attribution: tatoeba.org #243328 (CK) & #848320 (Martha) +I have just finished my homework. 我剛剛完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #40141 (CK) & #848430 (Martha) +I have mixed feelings about this. 我對這件事百感交集。 CC-BY 2.0 (France) Attribution: tatoeba.org #56039 (CK) & #848966 (Martha) +I have never fed my dog a banana. 我從沒給我的狗喂過香蕉。 CC-BY 2.0 (France) Attribution: tatoeba.org #898531 (CK) & #6120902 (verdastelo9604) +I have no intention of resigning. 我無意辭職。 CC-BY 2.0 (France) Attribution: tatoeba.org #258351 (CK) & #848623 (Martha) +I have no objection to your plan. 我不反對你的計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #252826 (CK) & #875333 (Martha) +I have no place to sleep tonight. 我今晚沒地方睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #243314 (CK) & #882538 (Martha) +I have nothing to complain about. 我沒有什麼可抱怨的。 CC-BY 2.0 (France) Attribution: tatoeba.org #249999 (CK) & #846309 (Martha) +I have recently given up smoking. 我最近戒烟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257658 (CK) & #478788 (biglion) +I have some pictures to show you. 我有一些照片給你看。 CC-BY 2.0 (France) Attribution: tatoeba.org #252768 (CK) & #881255 (Martha) +I have ten pens more than you do. 我比你多10支钢笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318553 (CK) & #1430238 (sadhen) +I haven't finished breakfast yet. 我還沒吃完早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810400 (CK) & #846028 (Martha) +I haven't finished my supper yet. 我還沒吃完晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810409 (CK) & #881567 (Martha) +I haven't watched that video yet. 我还没看过那段视频。 CC-BY 2.0 (France) Attribution: tatoeba.org #8340565 (CK) & #8514549 (gumblex) +I haven't yet finished my supper. 我還沒吃完晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810408 (CK) & #881567 (Martha) +I haven't yet watched that video. 我还没看过那段视频。 CC-BY 2.0 (France) Attribution: tatoeba.org #8340564 (CK) & #8514549 (gumblex) +I helped my father with the work. 我幫我父親做這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #261519 (CK) & #882067 (Martha) +I hope he hasn't had an accident. 我希望他沒發生意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #285156 (CK) & #889609 (Martha) +I hope the economy picks up soon. 我希望经济很快复苏起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #237937 (CK) & #7769295 (jiangche) +I intend to go to the barbershop. 我打算去理髮店。 CC-BY 2.0 (France) Attribution: tatoeba.org #258702 (CK) & #885539 (Martha) +I just got your letter yesterday. 我昨天剛收到你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #715851 (eastasiastudent) & #715852 (egg0073) +I know it's difficult to believe. 我知道,要相信这件事很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376045 (CK) & #7771860 (jiangche) +I know that it's hard to believe. 我知道,要相信这件事很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #3927261 (Lindoula) & #7771860 (jiangche) +I know that you know that I know. 我知道你知道我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #764169 (darinmex) & #765609 (Martha) +I like having breakfast with you. 我喜欢和你一起吃早饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1426786 (etoile) & #8584878 (tianblr) +I like having breakfast with you. 我喜欢和你一起吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1426786 (etoile) & #8584881 (tianblr) +I like summer better than winter. 我喜歡夏天勝於冬天。 CC-BY 2.0 (France) Attribution: tatoeba.org #259655 (CK) & #846029 (Martha) +I like taking walks in the woods. 我喜歡在樹林裡散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #534132 (CK) & #889655 (Martha) +I like winter better than summer. 我喜歡冬天勝過夏天。 CC-BY 2.0 (France) Attribution: tatoeba.org #256464 (CK) & #846585 (Martha) +I live on the outskirts of Tokyo. 我住在東京郊區。 CC-BY 2.0 (France) Attribution: tatoeba.org #259667 (CK) & #889312 (Martha) +I love you more than anyone else. 我爱你胜过其他任何一个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #40332 (CK) & #846511 (kooler) +I love you more than you love me. 我愛你多於你愛我。 CC-BY 2.0 (France) Attribution: tatoeba.org #17829 (lazycat) & #803848 (Martha) +I made some mistakes on the test. 我在考试时犯了些错。 CC-BY 2.0 (France) Attribution: tatoeba.org #554229 (CK) & #5556238 (verdastelo9604) +I make a point of being punctual. 我重視準時。 CC-BY 2.0 (France) Attribution: tatoeba.org #258120 (CK) & #795314 (Martha) +I must return home within a week. 我得要在一週內回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #256050 (CK) & #5544846 (egg0073) +I need a good pair of sunglasses. 我需要一副好的太陽眼鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #279485 (CK) & #887737 (Martha) +I need it as quickly as possible. 我尽快需要。 CC-BY 2.0 (France) Attribution: tatoeba.org #430022 (witbrock) & #333429 (fucongcong) +I no longer wish to be your wife. 我不想做你老婆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8424535 (CK) & #8511421 (gumblex) +I often go swimming in the river. 我常常在河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #255880 (CK) & #875338 (Martha) +I often play soccer after school. 我常常在放學後踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #261706 (CK) & #846056 (Martha) +I often play tennis after school. 我常常在放學後打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #255894 (CK) & #846339 (Martha) +I ordered some books from London. 我從倫敦訂購了一些書。 CC-BY 2.0 (France) Attribution: tatoeba.org #261742 (CK) & #864259 (Martha) +I paid five dollars for the book. 我花了五元買這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #261741 (CK) & #881008 (Martha) +I plan to go to France next year. 我想明年去法国。 CC-BY 2.0 (France) Attribution: tatoeba.org #663914 (bluepie88) & #8592710 (easononizuka) +I really think we should do this. 我真的认为我们该做这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2390888 (CK) & #5992379 (verdastelo9604) +I received your letter yesterday. 我昨天收到了你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #17073 (CK) & #835445 (Martha) +I refuse to answer your question. 我拒绝回答你的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #6010958 (szilviez) & #1762969 (sadhen) +I remember meeting her somewhere. 我記得我在某個地方見過她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308732 (CK) & #834735 (Martha) +I saw your brother the other day. 前幾天我看到了你哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #259087 (CK) & #879193 (Martha) +I screwed up the very first note. 我搞砸了第一個音符。 CC-BY 2.0 (France) Attribution: tatoeba.org #815014 (nickyeow) & #816901 (Martha) +I share a bedroom with my sister. 我跟我姐姐共用同一間臥房。 CC-BY 2.0 (France) Attribution: tatoeba.org #258772 (CK) & #883291 (Martha) +I sometimes play tennis with her. 有時我會跟她打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #258160 (CK) & #861121 (Martha) +I speak French every day at work. 我每天工作时都讲法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2424283 (CK) & #7771863 (jiangche) +I spent my vacation at the beach. 我在海邊度假。 CC-BY 2.0 (France) Attribution: tatoeba.org #256583 (CK) & #889554 (Martha) +I stayed with my uncle last week. 我上週跟我叔叔住在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #259051 (CK) & #876746 (Martha) +I think I can run as fast as Tom. 我认为我能跑得跟汤姆一样快。 CC-BY 2.0 (France) Attribution: tatoeba.org #4012437 (CK) & #5965706 (verdastelo9604) +I think I'll take a bath tonight. 我想我今晚會洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257634 (CK) & #881521 (Martha) +I think it's a really good thing. 我認為它真是好事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6089113 (CK) & #6089356 (verdastelo9604) +I think jogging is good exercise. 我認為慢跑是很好的運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #52866 (CK) & #859721 (Martha) +I think that she knows the truth. 我覺得她知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #321935 (CK) & #883500 (Martha) +I think the train will come soon. 我想火車很快就會來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #326198 (CK) & #881116 (Martha) +I think this coat should fit you. 我认为这外套应该适合你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408203 (CK) & #5931766 (verdastelo9604) +I think you know that's not true. 我认为你知道那不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408597 (CK) & #5613707 (verdastelo9604) +I think you should get more rest. 我觉得你应该多休息一会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #39300 (CK) & #8761480 (crescat) +I think you should make the deal. 我看你该做这交易。 CC-BY 2.0 (France) Attribution: tatoeba.org #2458500 (CK) & #5576798 (verdastelo9604) +I think you're a really nice guy. 我認為你真的是一個好人。 CC-BY 2.0 (France) Attribution: tatoeba.org #68938 (CK) & #887707 (Martha) +I told the policeman what I knew. 我告訴了警察我所知道的。 CC-BY 2.0 (France) Attribution: tatoeba.org #257162 (CK) & #877611 (Martha) +I treated her as my own daughter. 我把她當成是我自己的女兒一樣對待。 CC-BY 2.0 (France) Attribution: tatoeba.org #261362 (CK) & #880321 (Martha) +I trust that I can see you again. 我相信我能再見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #32687 (CM) & #6216630 (verdastelo9604) +I understand everything you said. 我理解你所说的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #6017540 (szilviez) & #2052723 (sadhen) +I understood Tom's point of view. 我理解汤姆的观点。 CC-BY 2.0 (France) Attribution: tatoeba.org #5673087 (CK) & #8511434 (gumblex) +I understood everything Tom said. 我明白湯姆所說的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851862 (CK) & #6903863 (verdastelo9604) +I usually have a light breakfast. 我早餐通常吃得很清淡。 CC-BY 2.0 (France) Attribution: tatoeba.org #261506 (CK) & #849812 (Martha) +I usually stay indoors on Sunday. 星期天我通常待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #281863 (CK) & #858070 (Martha) +I visited my grandmother's house. 我拜訪了我祖母的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #321596 (CK) & #834665 (Martha) +I wake him up at 6 every morning. 我每天早上6点叫醒他。 CC-BY 2.0 (France) Attribution: tatoeba.org #931513 (FeuDRenais) & #333105 (fucongcong) +I walked three-fourths of a mile. 我走了四分之三英里。 CC-BY 2.0 (France) Attribution: tatoeba.org #72571 (CK) & #859223 (Martha) +I want more detailed information. 我要更多詳細的訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #30431 (CK) & #834590 (Martha) +I want to be the one who decides. 我想成为决策的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5194202 (CK) & #5574448 (verdastelo9604) +I want to breathe some fresh air. 我想呼吸一下新鮮空氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #419075 (CK) & #889138 (Martha) +I want to go to America some day. 有一天我要去美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #66378 (CH) & #881199 (Martha) +I want to go to the movies today. 我今天想去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #2055398 (Dejo) & #3701781 (egg0073) +I want to meet your older sister. 我想認識你姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1526456 (pauldhunt) & #1525713 (egg0073) +I want to study abroad next year. 我明年想出国留学。 CC-BY 2.0 (France) Attribution: tatoeba.org #325107 (CK) & #336179 (fucongcong) +I want you guys to do me a favor. 我想要大家伙帮我个忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2145013 (MethodGT) & #5091648 (mirrorvan) +I wanted to become a philosopher. 我想成为哲学家。 CC-BY 2.0 (France) Attribution: tatoeba.org #574111 (Scott) & #5617169 (verdastelo9604) +I was absent from work yesterday. 我昨天沒去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #257776 (CK) & #860757 (Martha) +I was born on October 10th, 1972. 我在一九七二年十月十日出生。 CC-BY 2.0 (France) Attribution: tatoeba.org #852909 (piksea) & #738370 (Martha) +I was born on October 10th, 1972. 我出生於1972年10月10日。 CC-BY 2.0 (France) Attribution: tatoeba.org #852909 (piksea) & #876721 (Martha) +I was going to work here all day. 我要在這裡工作一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #6255075 (CK) & #6624664 (verdastelo9604) +I was just trying to protect you. 我只是試著保護你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2670839 (meerkat) & #6080232 (verdastelo9604) +I was vaccinated against the flu. 我接种了流感疫苗。 CC-BY 2.0 (France) Attribution: tatoeba.org #325461 (CK) & #785831 (fucongcong) +I washed the dishes after supper. 晚饭后我洗了碗碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #252380 (CK) & #366857 (fucongcong) +I washed the dishes after supper. 晚饭后我洗了餐具。 CC-BY 2.0 (France) Attribution: tatoeba.org #252380 (CK) & #6075182 (mendel) +I wasn't aware that Tom was sick. 我還不知道湯姆生了病。 CC-BY 2.0 (France) Attribution: tatoeba.org #5640490 (CK) & #6111961 (verdastelo9604) +I watch my weight very carefully. 我非常注意我的體重。 CC-BY 2.0 (France) Attribution: tatoeba.org #275257 (CK) & #851428 (Martha) +I went there because I wanted to. 我去了那裡,因為我想去。 CC-BY 2.0 (France) Attribution: tatoeba.org #257411 (CK) & #875380 (Martha) +I went to sleep about 10 o'clock. 我在10點左右去睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #252404 (CK) & #879135 (Martha) +I went to the hospital yesterday. 我昨天去了醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #244671 (CK) & #850406 (Martha) +I went to the park last Saturday. 上個星期六我去了公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #259058 (CK) & #882510 (Martha) +I will ask him about it tomorrow. 我明天會問他。 CC-BY 2.0 (France) Attribution: tatoeba.org #323114 (CK) & #881082 (Martha) +I will go there even if it rains. 即使下雨我也會去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #40760 (CK) & #846259 (Martha) +I will not go to school tomorrow. 我明天不會去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #261934 (CK) & #875336 (Martha) +I wish he would write more often. 我希望他来信更勤些。 CC-BY 2.0 (France) Attribution: tatoeba.org #283305 (CK) & #336646 (fucongcong) +I wish you could have been there. 要是你能在那裡就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #237672 (CK) & #894427 (Martha) +I wish you had told me the truth. 我希望你告訴我真相了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16088 (CK) & #775730 (Martha) +I won't know until I talk to Tom. 我不跟湯姆說就不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541041 (CK) & #6073909 (verdastelo9604) +I wonder if they'll get divorced. 我不知道他們是否會離婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #401969 (CK) & #858329 (Martha) +I wonder why I shouldn't do that. 我纳闷我为什么不该那样做 CC-BY 2.0 (France) Attribution: tatoeba.org #6348680 (CK) & #8750761 (cxpadonis) +I wondered if her story was true. 我想知道她的故事是否是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #309884 (CK) & #894252 (Martha) +I wouldn't do that if I were you. 如果我是你,我就不做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #30835 (CK) & #6635897 (verdastelo9604) +I wrote down the address for you. 我給你寫下了地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #2541024 (CK) & #6216622 (verdastelo9604) +I'd like a room with a good view. 我喜欢视野好的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #277908 (CK) & #6005568 (verdastelo9604) +I'd like some more bread, please. 我想再要些麵包,謝謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #31300 (CK) & #855674 (Martha) +I'd like three pounds of chicken. 我要三磅的雞肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #278225 (CK) & #859717 (Martha) +I'd like to go to France one day. 我想有一天能去法国。 CC-BY 2.0 (France) Attribution: tatoeba.org #785630 (ingenius000) & #785924 (fucongcong) +I'd like to reserve a hotel room. 我想要订房。 CC-BY 2.0 (France) Attribution: tatoeba.org #599205 (Dejo) & #794165 (fucongcong) +I'd like to speak with Tom alone. 我想和汤姆单独谈一谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936356 (CK) & #8877845 (crescat) +I'd rather be a bird than a fish. 我寧願是一隻鳥勝過一條魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2474 (fcbond) & #881857 (Martha) +I'll be at home all day tomorrow. 明天我一整天都在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712944 (CK) & #5100101 (mirrorvan) +I'll carry this suitcase for you. 我會幫你提這個手提箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #61007 (CK) & #851474 (Martha) +I'll drop you off at the station. 我載你到車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #26100 (CK) & #891648 (Martha) +I'll stay here till you get back. 我會待在這裡直到你回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #17891 (CK) & #894291 (Martha) +I'm a junior high school student. 我是個國中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #252301 (CK) & #881031 (Martha) +I'm always busy with my homework. 我總是忙於功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #253141 (CK) & #850313 (Martha) +I'm getting off at the next stop. 我將在下一站下車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258191 (CK) & #801397 (Martha) +I'm getting too old for this job. 对于这份工作来说,我的年龄太老了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3439644 (CK) & #4600743 (Seek) +I'm glad that I was able to help. 能够出一份力太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6927820 (CK) & #5097642 (mirrorvan) +I'm going to help you rescue Tom. 我要幫你營救湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540952 (CK) & #6114412 (verdastelo9604) +I'm here, so do you want to chat? 我在这,你想聊天吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1503847 (Eldad) & #5722744 (chloe77) +I'm just a regular office worker. 我只是一個普通的上班族。 CC-BY 2.0 (France) Attribution: tatoeba.org #477344 (CK) & #852157 (Martha) +I'm just worried about my weight. 我只是担心我的体重。 CC-BY 2.0 (France) Attribution: tatoeba.org #275258 (CK) & #1446950 (asosan) +I'm looking for a small suitcase. 我正在找一個小手提箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #267519 (CK) & #819246 (Martha) +I'm never coming back here again. 我不会再回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540927 (CK) & #5595201 (verdastelo9604) +I'm not as optimistic as you are. 我不像你那么乐观。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586015 (CK) & #8589652 (tianblr) +I'm not as optimistic as you are. 我没有你那么乐观。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586015 (CK) & #8589653 (tianblr) +I'm not picky. I'll eat anything. 我不挑剔,我什么都吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #8634754 (Eccles17) & #8634858 (slo_oth) +I'm not sure what I was thinking. 我不确定当时我正在想什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2020552 (Spamster) & #3770534 (Debbie_Linder) +I'm old enough to live by myself. 我年紀夠大了可以自己一個人住。 CC-BY 2.0 (France) Attribution: tatoeba.org #252477 (CK) & #894370 (Martha) +I'm old enough to support myself. 我年紀夠大可以養活我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #255775 (CK) & #875367 (Martha) +I'm quite satisfied with my life. 我对我的人生很满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #5951668 (mailohilohi) & #5951861 (yhlyhl) +I'm reading a book about animals. 我正在讀一本關於動物的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873053 (CK) & #880398 (Martha) +I'm really looking forward to it. 我很期待哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540896 (CK) & #3610746 (slo_oth) +I'm sick and tired of hamburgers. 我對漢堡感到厭煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31546 (CK) & #850351 (Martha) +I'm sick and tired of hamburgers. 我吃膩了漢堡。 CC-BY 2.0 (France) Attribution: tatoeba.org #31546 (CK) & #850352 (Martha) +I'm sick and tired of hamburgers. 漢堡我都吃膩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31546 (CK) & #8362586 (xjjAstrus) +I'm sorry to bother you so often. 一直打扰你不好意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1439702 (CK) & #8715873 (crescat) +I'm the only one who can do that. 我是唯一能做到那个的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736259 (CK) & #8696301 (crescat) +I'm the tallest one in the class. 我在班里是最高的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1229089 (CK) & #2028017 (ydcok) +I'm three years younger than you. 我比你小三歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #252889 (CK) & #864345 (Martha) +I'm tired of watching television. 我厌倦了看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #255127 (CK) & #346128 (fucongcong) +I'm tired of watching television. 我看電視看到厭煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255127 (CK) & #835393 (Martha) +I'm too sleepy to do my homework. 我太累了,做不了功课。 CC-BY 2.0 (France) Attribution: tatoeba.org #252980 (CK) & #795451 (fucongcong) +I'm very interested in languages. 我对语言很感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #8783629 (CK) & #8769189 (TROYE717) +I'm very worried about my weight. 我很擔心我的體重。 CC-BY 2.0 (France) Attribution: tatoeba.org #616806 (CK) & #795270 (Martha) +I've been here many times before. 我以前來過很多次了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359138 (CK) & #6624714 (verdastelo9604) +I've changed my website's layout. 我改了一下我网站的版面设计。 CC-BY 2.0 (France) Attribution: tatoeba.org #2032 (CK) & #503054 (fucongcong) +I've changed my website's layout. 我改了一下我的网站的布局。 CC-BY 2.0 (France) Attribution: tatoeba.org #2032 (CK) & #1772669 (sadhen) +I've finished writing the letter. 我已經寫完信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266001 (CK) & #835647 (Martha) +I've got to shave before leaving. 離開前我必須刮鬍子。 CC-BY 2.0 (France) Attribution: tatoeba.org #266768 (CK) & #859199 (Martha) +I've just arrived at the airport. 我剛剛抵達了機場。 CC-BY 2.0 (France) Attribution: tatoeba.org #241553 (CK) & #861076 (Martha) +I've just started playing tennis. 我剛開始打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #252190 (CK) & #835750 (Martha) +I've never gone fishing at night. 我从没在晚上钓鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2006436 (CK) & #5942066 (verdastelo9604) +I've not seen him in a long time. 我很久没见过他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #750648 (sctld) & #334582 (fucongcong) +I've not seen him in a long time. 我好久不见他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #750648 (sctld) & #1395093 (mtdot) +If it rains tomorrow, I won't go. 如果明天下雨,我就不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #323378 (CK) & #894851 (Martha) +If we don't hurry, we'll be late. 再不快点就迟到了噢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5516203 (genericdave) & #5100259 (mirrorvan) +If you don't go, I won't, either. 如果你不去,那我也不會去。 CC-BY 2.0 (France) Attribution: tatoeba.org #17864 (CK) & #890979 (Martha) +If you sing, we'll sing with you. 如果你唱,我們就跟著唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #5849445 (CK) & #6093335 (verdastelo9604) +In case of fire, push the button. 萬一發生火災,按下按鈕。 CC-BY 2.0 (France) Attribution: tatoeba.org #266799 (CK) & #797094 (Martha) +Is it always a sin to tell a lie? 说谎总是一种罪吗? CC-BY 2.0 (France) Attribution: tatoeba.org #65621 (CK) & #813497 (fucongcong) +Is it cheaper to call after 9:00? 九點以後打電話比較便宜嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #72279 (CK) & #892554 (Martha) +Is it safe to skate on this lake? 在這個湖上滑冰安全嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4622705 (CK) & #4645581 (flysun) +Is there a post office near here? 這附近有郵局嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59625 (CK) & #891132 (Martha) +Is there a supermarket near here? 這附近有超市嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #57201 (CK) & #861308 (Martha) +Is this the right bus for Boston? 這輛是去波士頓正確的巴士嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33452 (CK) & #894213 (Martha) +Is this your first time in Japan? 這是你第一次到日本嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #281271 (CK) & #891019 (Martha) +Is this your first time in Korea? 你是第一次来韩国吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3000733 (alester237) & #7704622 (leafjensen) +It doesn't matter what you think. 你怎么想无关紧要。 CC-BY 2.0 (France) Attribution: tatoeba.org #3044009 (CK) & #3044012 (sadhen) +It has been cold since yesterday. 從昨天開始變冷了​​。 CC-BY 2.0 (France) Attribution: tatoeba.org #244372 (CK) & #851540 (Martha) +It has been raining since Sunday. 從週日開始一直在下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #281825 (CK) & #860931 (Martha) +It is becoming warmer day by day. 一天天热起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #281101 (CK) & #792853 (fucongcong) +It is dangerous to drive so fast. 車開得這麼快很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #41267 (CK) & #894015 (Martha) +It is expensive to live in Japan. 生活在日本很昂貴。 CC-BY 2.0 (France) Attribution: tatoeba.org #281261 (CK) & #894069 (Martha) +It is likely to be fine tomorrow. 明天天氣可能很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #323306 (CK) & #891733 (Martha) +It is not easy to master English. 要精通英語不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #26216 (CK) & #894041 (Martha) +It is rude to stare at strangers. 盯著陌生人看是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #52485 (Swift) & #801347 (Martha) +It is ten degrees below zero now. 現在是零下十度。 CC-BY 2.0 (France) Attribution: tatoeba.org #241851 (CK) & #797031 (Martha) +It looks like it's going to snow. 看起來快下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #624097 (kebukebu) & #761259 (Martha) +It must be around here somewhere. 我想應該在這附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #2656898 (FeuDRenais) & #2638743 (cienias) +It rained hard yesterday morning. 昨天上午下大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244453 (CK) & #835391 (Martha) +It seems obvious that he is sick. 似乎很明顯他病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #414634 (CK) & #891030 (Martha) +It seems we are in the same boat. 看起来我们是在一条船上。 CC-BY 2.0 (France) Attribution: tatoeba.org #64525 (CK) & #7768276 (jiangche) +It would be nice to have a party. 开个聚会很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140093 (CK) & #5581717 (verdastelo9604) +It'll cost at least five dollars. 它至少要花五美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #42317 (CK) & #611540 (sarah) +It's actually not that difficult. 實際上沒有那麼難。 CC-BY 2.0 (France) Attribution: tatoeba.org #1975727 (CK) & #6120764 (verdastelo9604) +It's cool this morning, isn't it? 今天上午很涼爽,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #242228 (CK) & #855656 (Martha) +It's impolite to stare at people. 盯著人看是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270148 (CK) & #859114 (Martha) +It's likely to snow this evening. 今天晚上可能會下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #243381 (CK) & #850305 (Martha) +It's not something anyone can do. 这不是任何人都能做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1458 (CK) & #335039 (fucongcong) +It's too dark to play tennis now. 現在太暗了不能打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #67707 (CK) & #891769 (Martha) +It's very hot here in the summer. 这里夏天非常炎热。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712933 (CK) & #1415759 (sadhen) +It's very kind of you to help me. 你幫我真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #64406 (CK) & #6086780 (verdastelo9604) +Just put those packages anywhere. 只要把那些包包放在任何地方都行。 CC-BY 2.0 (France) Attribution: tatoeba.org #37665 (CK) & #834669 (Martha) +Keep children away from the pond. 让孩子远离池塘。 CC-BY 2.0 (France) Attribution: tatoeba.org #246017 (CK) & #782657 (fucongcong) +Last night there was a full moon. 昨晚是满月。 CC-BY 2.0 (France) Attribution: tatoeba.org #713173 (CM) & #713172 (Yashanti) +Let me know if you need any help. 你需要帮助就让我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #5588318 (CK) & #5684083 (verdastelo9604) +Let me know where you're staying. 讓我知道你住在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #266727 (CK) & #893527 (Martha) +Let me show you around our house. 讓我帶你四處看看我們的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #24156 (CK) & #892570 (Martha) +Let them take care of themselves. 讓他們照顧自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #305123 (Dejo) & #798265 (Martha) +Let us know whether you can come. 讓我們知道你是否能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #71603 (CK) & #891136 (Martha) +Let's drink coffee while we talk. 让我们边喝咖啡边谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574851 (n1ls) & #2040517 (sadhen) +Let's eat while the food is warm. 讓我們趁熱吃吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #25478 (CK) & #894013 (Martha) +Let's not talk about it any more. 讓我們不要再談論它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31581 (CK) & #894027 (Martha) +Let's play baseball after school. 讓我們放學後打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321006 (CK) & #835540 (Martha) +Let's play tennis this afternoon. 讓我們今天下午打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #242533 (CK) & #834718 (Martha) +Let's take turns rowing the boat. 讓我們輪流划船。 CC-BY 2.0 (France) Attribution: tatoeba.org #240301 (CK) & #850117 (Martha) +Life is like a box of chocolates. 生活就像一盒巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260336 (Hybrid) & #3031839 (sadhen) +Look at that picture on the desk. 看看桌上的那張相片。 CC-BY 2.0 (France) Attribution: tatoeba.org #20583 (CK) & #894056 (Martha) +Look at what's happening outside. 看外面正在发生什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5906524 (jan_Keto) & #5906570 (verdastelo9604) +Make sure you get plenty of rest. 你務必要好好地休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #266519 (CK) & #890622 (Martha) +Malaria is carried by mosquitoes. 瘧疾是由蚊子傳染的。 CC-BY 2.0 (France) Attribution: tatoeba.org #32358 (CK) & #835724 (Martha) +Many boys and girls were present. 许多男生和女生都出席了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41028 (CK) & #784478 (fucongcong) +Many people were waiting in line. 許多人在排隊等候。 CC-BY 2.0 (France) Attribution: tatoeba.org #41019 (CK) & #851526 (Martha) +Mary bought a skirt and a blouse. 玛丽买了一件衬衫和一条连衣裙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3557814 (CK) & #3636663 (suitchic) +Mary set the basket on the table. 瑪麗把籃子放在桌子上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32000 (CK) & #894032 (Martha) +Maybe I'll go, and maybe I won't. 也許我會去,也許我不會。 CC-BY 2.0 (France) Attribution: tatoeba.org #241083 (CK) & #891047 (Martha) +More than twenty boys went there. 超過二十個男孩去了那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #280867 (CK) & #864306 (Martha) +My boss made me work last Sunday. 上週日我的老闆要我工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #259059 (CK) & #891728 (Martha) +My brother and I shared the room. 我哥哥和我共用這間房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #44204 (CK) & #894363 (Martha) +My brother takes care of our dog. 我弟弟照顧我們的狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #251510 (CK) & #894150 (Martha) +My brother took me to the museum. 我哥哥帶我去博物館。 CC-BY 2.0 (France) Attribution: tatoeba.org #237893 (CK) & #890984 (Martha) +My brother wants to study abroad. 我哥哥要出國唸書。 CC-BY 2.0 (France) Attribution: tatoeba.org #250705 (CK) & #859050 (Martha) +My dad keeps a journal every day. 我爸爸每天都记日记。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266470 (yifen238) & #345920 (fucongcong) +My daughter is in her late teens. 我的女兒快二十歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251957 (CK) & #893372 (Martha) +My ear was bleeding this morning. 今天早上我耳朵流血了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1632053 (Amastan) & #8689147 (jacintoo) +My father is a bit old-fashioned. 我爸爸有点守旧。 CC-BY 2.0 (France) Attribution: tatoeba.org #319278 (CK) & #336256 (fucongcong) +My father is a skilled fisherman. 我爸爸是个钓鱼高手。 CC-BY 2.0 (France) Attribution: tatoeba.org #998995 (ellasevia) & #336219 (fucongcong) +My father is free this afternoon. 我父親今天下午有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #242562 (CK) & #856379 (Martha) +My father is sweeping the garage. 我父親正在清掃車庫。 CC-BY 2.0 (France) Attribution: tatoeba.org #318976 (CK) & #850376 (Martha) +My father likes traveling by air. 我父親喜歡搭飛機旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #251674 (CK) & #856380 (Martha) +My father takes a walk every day. 我父親每天散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #251737 (CK) & #893034 (Martha) +My grandfather lived a long life. 我的祖父很長壽。 CC-BY 2.0 (France) Attribution: tatoeba.org #251350 (CK) & #851487 (Martha) +My grandmother has a green thumb. 我祖母是個園藝巧手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1176493 (paula_guisard) & #1233782 (tsayng) +My hobby is collecting old coins. 我的嗜好是收集古錢幣。 CC-BY 2.0 (France) Attribution: tatoeba.org #321510 (CK) & #857973 (Martha) +My house is a long way from here. 我家离这儿很远。 CC-BY 2.0 (France) Attribution: tatoeba.org #250526 (CK) & #407259 (fucongcong) +My husband earns $100,000 a year. 我丈夫一年收入10萬美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #318711 (CK) & #857859 (Martha) +My joints ache when it gets cold. 當天氣變冷的時候,我的關節疼痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #20353 (CK) & #891051 (Martha) +My mom gets out of bed before me. 我媽媽比我早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770631 (garborg) & #4265783 (egg0073) +My mother almost never complains. 我媽媽幾乎從不抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #251861 (CK) & #835696 (Martha) +My mother is busy in the kitchen. 我的母親在廚房裡正忙著。 CC-BY 2.0 (France) Attribution: tatoeba.org #320819 (CK) & #890518 (Martha) +My mother is in the hospital now. 我媽媽現在在醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #320717 (CK) & #894346 (Martha) +My mother was up late last night. 我母亲昨天很晚还醒着。 CC-BY 2.0 (France) Attribution: tatoeba.org #320684 (CK) & #782279 (fucongcong) +My plan is to study in Australia. 我的計劃是去澳洲唸書。 CC-BY 2.0 (France) Attribution: tatoeba.org #250747 (CK) & #892519 (Martha) +My sister is playing with a doll. 我妹妹正在玩洋娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #322337 (CK) & #891763 (Martha) +Never forget to put out the fire. 永遠不要忘記關火。 CC-BY 2.0 (France) Attribution: tatoeba.org #23862 (CK) & #798280 (Martha) +No one comes to visit me anymore. 已经没人来拜访我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1937711 (CK) & #7768190 (jiangche) +Not a single person arrived late. 沒有一個人遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #276686 (CK) & #849819 (Martha) +Nothing is as important as peace. 没有什么和和平一样重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #320180 (CM) & #334140 (fucongcong) +Nothing ventured, nothing gained. 没有挑战就没有收获。 CC-BY 2.0 (France) Attribution: tatoeba.org #537811 (blay_paul) & #8715858 (crescat) +Now tell us what we want to know. 现在告诉我们我们想知道的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729413 (CM) & #5574656 (verdastelo9604) +On hearing the news, she fainted. 听到消息,她晕倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #456543 (lukaszpp) & #4282858 (notabene) +One is new, and the other is old. 一个是新的,另一个是旧的。 CC-BY 2.0 (France) Attribution: tatoeba.org #27855 (CK) & #334784 (fucongcong) +One of the girls was left behind. 這些女孩當中其中一個被留下來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #267826 (CK) & #892566 (Martha) +One of your buttons has come off. 你的一個按鈕脫落了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33430 (CK) & #894124 (Martha) +Opinion is divided on this point. 在這一點上意見不一。 CC-BY 2.0 (France) Attribution: tatoeba.org #57721 (CM) & #781170 (Martha) +Our baseball team is very strong. 我們的棒球隊很強。 CC-BY 2.0 (France) Attribution: tatoeba.org #247689 (CK) & #850115 (Martha) +Our cow doesn't give us any milk. 我們的乳牛沒有給我們任何牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #65570 (CK) & #894296 (Martha) +Our refrigerator is out of order. 我們的冰箱壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #65505 (CK) & #9096090 (xjjAstrus) +Our train leaves at eight-thirty. 我們的火車在八點半出發。 CC-BY 2.0 (France) Attribution: tatoeba.org #247703 (CK) & #838629 (Martha) +Peace talks will begin next week. 和平會談將在下週開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #326510 (CK) & #801409 (Martha) +People still think Tom is a liar. 人们仍然认为汤姆说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #5640525 (CK) & #5694952 (verdastelo9604) +Perhaps I'll be able to help you. 我可能能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4011572 (CK) & #6103092 (verdastelo9604) +Please call a taxi for this lady. 请为这位女士叫辆出租车。 CC-BY 2.0 (France) Attribution: tatoeba.org #974197 (Skaty) & #867742 (kooler) +Please call me at my hotel later. 等一下請打電話到我住的旅館。 CC-BY 2.0 (France) Attribution: tatoeba.org #71688 (CK) & #892530 (Martha) +Please close the door behind you. 請隨手關門。 CC-BY 2.0 (France) Attribution: tatoeba.org #70688 (CK) & #859258 (Martha) +Please drive the car more slowly. 請開車開慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #505949 (blay_paul) & #917956 (Martha) +Please forgive me for being late. 請原諒我遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #277402 (CK) & #864377 (Martha) +Please help yourself to the cake. 你自己拿蛋糕吃吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #25788 (CK) & #332593 (fucongcong) +Please help yourself to the cake. 你们自己吃蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #25788 (CK) & #333305 (fucongcong) +Please let me know what you want. 請讓我知道你要什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #16272 (CK) & #894329 (Martha) +Please move the desk to the left. 请把桌子向左移。 CC-BY 2.0 (France) Attribution: tatoeba.org #48838 (CK) & #2370640 (vicch) +Please pardon me for coming late. 抱歉那么晚来。 CC-BY 2.0 (France) Attribution: tatoeba.org #277364 (CK) & #390502 (fucongcong) +Please put the book on the shelf. 請把書放在架子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #43901 (CK) & #891130 (Martha) +Please sit on the sofa and relax. 請坐在沙發上放輕鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #503494 (CK) & #891139 (Martha) +Please stay here till I get back. 請待在這裡直到我回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #246681 (CK) & #894225 (Martha) +Put the book on the bottom shelf. 把這本書放在架子的底部。 CC-BY 2.0 (France) Attribution: tatoeba.org #43935 (CK) & #891753 (Martha) +Quite a few Americans like sushi. 不少的美國人喜歡壽司。 CC-BY 2.0 (France) Attribution: tatoeba.org #63608 (CK) & #859119 (Martha) +Quite a few people have two cars. 不少人有兩輛汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #490375 (CK) & #891049 (Martha) +Remember to admire her new dress. 記得稱讚她的新洋裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #309454 (CM) & #3158497 (cienias) +School begins at half past eight. 学校8点半开始上课。 CC-BY 2.0 (France) Attribution: tatoeba.org #266224 (CK) & #332951 (fucongcong) +School begins at half past eight. 學校八點半開始上課。 CC-BY 2.0 (France) Attribution: tatoeba.org #266224 (CK) & #862696 (Martha) +School begins on April the tenth. 學校在四月十日開學。 CC-BY 2.0 (France) Attribution: tatoeba.org #21519 (CK) & #798198 (Martha) +Send me a letter when you arrive. 當你到達時寄封信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #406732 (blay_paul) & #876194 (Martha) +She always cared about my health. 她總是關心我的健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #310435 (CK) & #918669 (Martha) +She always speaks in a low voice. 她總是低聲地說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #310468 (CK) & #891741 (Martha) +She and I are brother and sister. 我和她是兄妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #1989050 (Eldad) & #5595164 (verdastelo9604) +She and I are brother and sister. 她和我是姐弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1989050 (Eldad) & #5595168 (verdastelo9604) +She and I have nothing in common. 我和她沒有共同之處。 CC-BY 2.0 (France) Attribution: tatoeba.org #1264961 (yifen238) & #875353 (Martha) +She appears to have many friends. 她看起來好像有很多朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #308703 (CK) & #861451 (Martha) +She asked him to open the window. 她要求他打開窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #316319 (CK) & #894011 (Martha) +She asked him to open the window. 她請他打開窗口。 CC-BY 2.0 (France) Attribution: tatoeba.org #316319 (CK) & #894012 (Martha) +She aspired to become an actress. 她立志成為一名演員。 CC-BY 2.0 (France) Attribution: tatoeba.org #404961 (CK) & #860669 (Martha) +She became a true friend of mine. 她成為我的一位真正的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #394652 (CK) & #892490 (Martha) +She began to like him right away. 她立刻開始喜歡他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388399 (CK) & #893030 (Martha) +She believes that he is innocent. 她相信他是無辜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #316446 (CK) & #859406 (Martha) +She can do both at the same time. 她可以同时做这两件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1551845 (Spamster) & #5595159 (verdastelo9604) +She can play the piano very well. 她可以把鋼琴彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #311781 (CK) & #894357 (Martha) +She can speak English, of course. 她會講英語,當然。 CC-BY 2.0 (France) Attribution: tatoeba.org #388653 (CK) & #861493 (Martha) +She cooked us a delicious dinner. 她為我們煮了一頓美味的晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #314070 (CK) & #852188 (Martha) +She cooked us a delicious dinner. 她为我们煮了一顿美味的晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #314070 (CK) & #1361957 (sadhen) +She cooked vegetable soup for us. 她為我們煮了蔬菜湯。 CC-BY 2.0 (France) Attribution: tatoeba.org #314085 (CK) & #850375 (Martha) +She cooks chicken the way I like. 她用我喜歡的方式烹調雞肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #314328 (CK) & #893020 (Martha) +She couldn't answer the question. 她無法回答這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #314788 (CK) & #845454 (Martha) +She cried as she read the letter. 她一邊讀這封信一邊哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #388697 (CK) & #891738 (Martha) +She described him as a detective. 她把他形容为侦探。 CC-BY 2.0 (France) Attribution: tatoeba.org #316516 (CK) & #8589134 (easononizuka) +She didn't try to hide the truth. 她没有试图掩盖真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #3533880 (adamtrousers) & #5983618 (verdastelo9604) +She dived into the swimming pool. 她跳入了游泳池。 CC-BY 2.0 (France) Attribution: tatoeba.org #312089 (CK) & #858943 (Martha) +She doesn't care how she dresses. 她不在乎她的穿著。 CC-BY 2.0 (France) Attribution: tatoeba.org #388419 (CK) & #852138 (Martha) +She doesn't like the way I speak. 她不喜欢我说话的方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #314395 (CK) & #332617 (fucongcong) +She doesn't smile for me anymore. 她已经不向我微笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #707397 (papabear) & #4264967 (notabene) +She employed him as a programmer. 她僱用他作程式設計師。 CC-BY 2.0 (France) Attribution: tatoeba.org #388368 (CK) & #861448 (Martha) +She felt herself being lifted up. 她覺得自己好像被舉起來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #501263 (CK) & #858322 (Martha) +She found employment as a typist. 她找到打字員的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #311513 (CK) & #5496242 (egg0073) +She gave birth to a healthy baby. 她生下了一個健康的嬰兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #313450 (CK) & #893986 (Martha) +She gave me a book for Christmas. 她給了我一本的書作為聖誕禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #310775 (CK) & #894680 (Martha) +She gave the blouse a quick wash. 她很快地把襯衫洗一洗。 CC-BY 2.0 (France) Attribution: tatoeba.org #311140 (CK) & #805100 (Martha) +She goes to a girls' high school. 她上女子高中。 CC-BY 2.0 (France) Attribution: tatoeba.org #314983 (CK) & #892487 (Martha) +She goes to aerobics once a week. 她每星期去作一次健美操。 CC-BY 2.0 (France) Attribution: tatoeba.org #314917 (CK) & #804838 (Martha) +She grew up to be a veterinarian. 她長大後成為了一名獸醫。 CC-BY 2.0 (France) Attribution: tatoeba.org #315310 (CK) & #802070 (Martha) +She had a vague feeling of guilt. 她隱約地有一種的內疚感。 CC-BY 2.0 (France) Attribution: tatoeba.org #308728 (CK) & #796055 (Martha) +She had the boys paint the house. 她要男孩們粉刷房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #315041 (CK) & #893346 (Martha) +She had the decency to apologize. 她大方地道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #265402 (CK) & #852002 (Martha) +She happened to know his address. 她恰巧知道他的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #311570 (CK) & #1490469 (sadhen) +She has broken the toaster again. 她再次弄壞了烤麵包機。 CC-BY 2.0 (France) Attribution: tatoeba.org #312224 (CK) & #850364 (Martha) +She has kept a diary for 3 years. 她已經寫了三年的日記。 CC-BY 2.0 (France) Attribution: tatoeba.org #310173 (CS) & #778026 (Martha) +She has to look after her mother. 她必須照顧她的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #316532 (CK) & #893046 (Martha) +She helped me to clear snow away. 她幫我清除積雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #315440 (CK) & #893343 (Martha) +She hung the picture upside down. 她把画挂反了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311171 (CK) & #405752 (fucongcong) +She introduced me to her brother. 她把我介紹給她的弟弟認識。 CC-BY 2.0 (France) Attribution: tatoeba.org #314415 (CK) & #850357 (Martha) +She is busy preparing supper now. 她現在正忙著準備晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #313652 (CK) & #850310 (Martha) +She is fond of singing old songs. 她喜歡唱老歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #315389 (CK) & #894274 (Martha) +She is getting better day by day. 她一天一天地好轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #316066 (CK) & #804983 (Martha) +She is getting married this fall. 她今年秋天要結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #310830 (CK) & #857996 (Martha) +She is going to France next week. 她下週要去法國。 CC-BY 2.0 (France) Attribution: tatoeba.org #317375 (CK) & #890605 (Martha) +She is good at playing the piano. 她擅長彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #312037 (CK) & #894217 (Martha) +She is not as young as she looks. 她没她看上去那么年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #312973 (Dejo) & #829294 (fucongcong) +She is old enough to know better. 她年紀夠大該懂事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312356 (CK) & #894410 (Martha) +She is practicing the violin now. 她現在正在練習拉小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #313679 (CK) & #861202 (Martha) +She is the one who feeds our dog. 她是喂我們的狗的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #898575 (CK) & #6086822 (verdastelo9604) +She knows how to play the guitar. 她知道如何彈吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #310712 (CK) & #891329 (Martha) +She likes cooking for her family. 她喜欢为她的家人做饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #386733 (Mouseneb) & #334082 (fucongcong) +She likes to cook for her family. 她喜欢为她的家人做饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #312868 (CK) & #334082 (fucongcong) +She lived there about five years. 她住在那裡大約5年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311073 (CK) & #859112 (Martha) +She lived up to our expectations. 她没有辜负我们的期望。 CC-BY 2.0 (France) Attribution: tatoeba.org #314475 (CK) & #332813 (fucongcong) +She may be proud of her daughter. 她可以为她的女儿感到骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697736 (shanghainese) & #1695396 (Venki) +She ordered the book from London. 她从伦敦订了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #309919 (CK) & #791684 (fucongcong) +She ought to have arrived by now. 她現在應該已經到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309964 (CK) & #893995 (Martha) +She picked flowers in the garden. 她在花園裡摘花。 CC-BY 2.0 (France) Attribution: tatoeba.org #315899 (CK) & #864293 (Martha) +She promised not to go out alone. 她答應不單獨外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #312077 (CK) & #892512 (Martha) +She refused my offer to help her. 她拒絕讓我幫助她。 CC-BY 2.0 (France) Attribution: tatoeba.org #312711 (CK) & #894031 (Martha) +She remained single all her life. 她终生未婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #312585 (CK) & #860736 (Martha) +She said that she had been happy. 她說她以前很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #313585 (CK) & #893499 (Martha) +She says she will call you later. 她說她晚一點會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #313542 (CK) & #893341 (Martha) +She spent the weekend by herself. 她獨自度過了週末。 CC-BY 2.0 (France) Attribution: tatoeba.org #311296 (CK) & #852182 (Martha) +She spoke through an interpreter. 她透過傳譯員發言。 CC-BY 2.0 (France) Attribution: tatoeba.org #310003 (CK) & #846009 (Martha) +She still hasn't heard this news. 她还没听到这个消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230744 (alec) & #334281 (fucongcong) +She stood in front of the mirror. 她站在镜子前。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442254 (CK) & #7768235 (jiangche) +She stopped to smoke a cigarette. 她停下来抽了根烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #572456 (kebukebu) & #795771 (fucongcong) +She told me an interesting story. 她给我讲了一个有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #314267 (CK) & #332583 (fucongcong) +She used to work for our company. 她以前在我們公司工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #310664 (CK) & #900683 (Martha) +She waited for you for two hours. 她等了你兩個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #310269 (CK) & #900648 (Martha) +She was accused of telling a lie. 她被指责说了谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #310536 (CK) & #345855 (fucongcong) +She was aching from head to foot. 她浑身酸痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #275268 (CM) & #8738025 (slo_oth) +She was afraid to cross the road. 她怕過馬路。 CC-BY 2.0 (France) Attribution: tatoeba.org #503483 (CK) & #902990 (Martha) +She was busy with household work. 她忙於家務。 CC-BY 2.0 (France) Attribution: tatoeba.org #388637 (CK) & #845995 (Martha) +She was scared to cross the road. 她怕過馬路。 CC-BY 2.0 (France) Attribution: tatoeba.org #313235 (CK) & #902990 (Martha) +She was very proud of her father. 她為她的父親感到非常驕傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #316820 (CK) & #905840 (Martha) +She was very proud of her father. 她非常地以她父親為榮。 CC-BY 2.0 (France) Attribution: tatoeba.org #316820 (CK) & #905841 (Martha) +She was wearing dark brown shoes. 她穿著深褐色的鞋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #316135 (CK) & #861079 (Martha) +She went down to the fifth floor. 她下五樓去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310187 (CK) & #900262 (Martha) +She went to Italy to study music. 她去了意大利學習音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #312750 (CK) & #895627 (Martha) +She went to the hospital by taxi. 她搭計程車去醫院了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1058266 (CK) & #900623 (Martha) +She went upstairs to her bedroom. 她上樓到她的臥室。 CC-BY 2.0 (France) Attribution: tatoeba.org #310135 (CK) & #859130 (Martha) +She worked side by side with men. 她和男人一起工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #315756 (CK) & #907251 (Martha) +She wrapped herself in a blanket. 她用一條毯子把自己裹起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #317169 (CK) & #860989 (Martha) +She's about the same age as I am. 她大約跟我同年紀。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173723 (CK) & #840746 (Martha) +She's asking how that's possible. 她问这怎么可能。 CC-BY 2.0 (France) Attribution: tatoeba.org #1387 (CK) & #501363 (fucongcong) +Shouldn't Tom be doing this, too? Tom也需要做这件事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4846724 (CK) & #4846811 (pig8322) +Shouldn't someone be helping Tom? 难道不该有人帮汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8023748 (CK) & #8550957 (slo_oth) +Smoke is rising from the chimney. 煙從煙囪上升。 CC-BY 2.0 (France) Attribution: tatoeba.org #25880 (CK) & #797052 (Martha) +Some people pursue only pleasure. 有些人只追求快乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #22297 (CK) & #336696 (fucongcong) +Somehow I thought you'd say that. 我就知道你会这么说。 CC-BY 2.0 (France) Attribution: tatoeba.org #644600 (darinmex) & #812326 (fucongcong) +Someone stole my laptop computer. 有人把我的筆記本電腦偷掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #9069536 (antonb) & #9057863 (xjjAstrus) +Something has happened to my car. 我的车出了点事。 CC-BY 2.0 (France) Attribution: tatoeba.org #251054 (Zifre) & #461680 (fucongcong) +Something is better than nothing. 聊胜于无。 CC-BY 2.0 (France) Attribution: tatoeba.org #460046 (saasmath) & #1323641 (vicch) +Something is happening in Boston. 在波士顿正发生着什么事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5355704 (CK) & #5983657 (verdastelo9604) +Something is wrong with my watch. 我的手錶壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251036 (CK) & #858744 (Martha) +Something is wrong with my watch. 我的錶出了毛病。 CC-BY 2.0 (France) Attribution: tatoeba.org #251036 (CK) & #858746 (Martha) +Something's wrong with my camera. 我的相機壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250288 (CK) & #842325 (Martha) +Something's wrong with my camera. 我的相機有毛病。 CC-BY 2.0 (France) Attribution: tatoeba.org #250288 (CK) & #842326 (Martha) +Speaking English is a lot of fun. 說英語很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #26194 (CK) & #839571 (Martha) +Spring is just around the corner. 春天就要来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266950 (CK) & #343938 (fucongcong) +Spring is just around the corner. 春天快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #266950 (CK) & #797026 (Martha) +Stars began to appear in the sky. 星星開始在天空中出現。 CC-BY 2.0 (France) Attribution: tatoeba.org #271521 (CK) & #801340 (Martha) +Stick with it and you'll succeed. 堅持下來,你就能成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #271305 (CK) & #6535844 (verdastelo9604) +Suddenly, everything fell silent. 突然间,鸦雀无声。 CC-BY 2.0 (France) Attribution: tatoeba.org #8246481 (francaisr0wlet) & #7976851 (olia1204) +Swimming is good for your health. 游泳對你的健康很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #270880 (CK) & #858024 (Martha) +Switzerland is a neutral country. 瑞士是一个中立的国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #52442 (CK) & #427562 (fucongcong) +Take as many cookies as you want. 想吃多少饼干就吃多少。 CC-BY 2.0 (France) Attribution: tatoeba.org #33461 (CK) & #333226 (fucongcong) +Take as many peaches as you like. 你想拿多少桃子就拿多少。 CC-BY 2.0 (France) Attribution: tatoeba.org #240665 (CK) & #889584 (Martha) +Take your time. There's no hurry. 慢慢来,没那么急。 CC-BY 2.0 (France) Attribution: tatoeba.org #56369 (CK) & #334399 (fucongcong) +Talking during a concert is rude. 在音樂會中說話是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #503826 (CK) & #874522 (Martha) +Taxi fares will go up next month. 計程車費將在下個月漲價。 CC-BY 2.0 (France) Attribution: tatoeba.org #325028 (CK) & #900240 (Martha) +Tell me how to solve the problem. 告訴我如何解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #43632 (CK) & #905299 (Martha) +Tell me where to put these books. 告訴我這些書要放在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #55073 (CK) & #905796 (Martha) +Ten teams competed for the prize. 十支隊伍競逐獎項。 CC-BY 2.0 (France) Attribution: tatoeba.org #73468 (CK) & #797098 (Martha) +Thanks for adding me as a friend. 谢谢你把我加为好友。 CC-BY 2.0 (France) Attribution: tatoeba.org #647604 (darinmex) & #812349 (fucongcong) +That job is pretty much finished. 那個工作幾乎被完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #47648 (CK) & #873281 (Martha) +That patient may die at any time. 病人随时会死。 CC-BY 2.0 (France) Attribution: tatoeba.org #48884 (CK) & #332829 (fucongcong) +That red dress looks good on her. 她穿那件紅色的衣服很好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #394946 (CK) & #895865 (Martha) +That was the best day of my life. 那是我生命中最美的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #1783 (CK) & #502725 (fucongcong) +That's a hard question to answer. 那是一個很難回答的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #42208 (CK) & #872112 (Martha) +That's a nice car you're driving. 你開的那輛車很不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #36218 (CK) & #874346 (Martha) +That's a nice tie you're wearing. 你打了一條不錯的領帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #273946 (CK) & #869898 (Martha) +That's the other reason I'm here. 那是我在这里的另外一个理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #3591763 (CK) & #4844844 (sadhen) +That's the village I was born in. 这就是我出生的村庄。 CC-BY 2.0 (France) Attribution: tatoeba.org #4284635 (seltsameseeds) & #4270728 (notabene) +The United States borders Canada. 美国与加拿大相邻。 CC-BY 2.0 (France) Attribution: tatoeba.org #67546 (CK) & #334257 (fucongcong) +The air conditioner doesn't work. 空調故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #65398 (CK) & #836365 (Martha) +The airplane made a safe landing. 這架飛機安全著陸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318103 (CK) & #865590 (Martha) +The audience was deeply affected. 观众深受感动。 CC-BY 2.0 (France) Attribution: tatoeba.org #277938 (CK) & #336430 (fucongcong) +The bill amounted to 100 dollars. 帐单金额高达100美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #21102 (Swift) & #796650 (fucongcong) +The birds were flying in a group. 鸟儿成群飞着。 CC-BY 2.0 (France) Attribution: tatoeba.org #278195 (mamat) & #336449 (fucongcong) +The boat passed under the bridge. 船從橋下通過。 CC-BY 2.0 (France) Attribution: tatoeba.org #273443 (CK) & #870037 (Martha) +The boy entered by the back door. 那個男生從後門進來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268055 (CK) & #5963259 (xjjAstrus) +The clock is above the fireplace. 時鐘在壁爐的上方。 CC-BY 2.0 (France) Attribution: tatoeba.org #276804 (CK) & #871208 (Martha) +The doctor examined the patients. 醫生檢查了病人。 CC-BY 2.0 (France) Attribution: tatoeba.org #27999 (CK) & #845457 (Martha) +The dog walked across the street. 這隻狗穿過街道。 CC-BY 2.0 (France) Attribution: tatoeba.org #239100 (CK) & #874518 (Martha) +The flood caused a lot of damage. 洪水造成了很大的損害。 CC-BY 2.0 (France) Attribution: tatoeba.org #240922 (CK) & #907508 (Martha) +The fuel tank in the car is full. 汽車油箱是滿的。 CC-BY 2.0 (France) Attribution: tatoeba.org #681039 (Source_VOA) & #900000 (kanaorange) +The girl greeted me with a smile. 這個女孩面帶微笑向我打招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #267879 (CK) & #802089 (Martha) +The history class starts at nine. 历史课九点开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #326120 (Eldad) & #5905025 (verdastelo9604) +The lake is deepest at this spot. 这里是湖最深的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #48128 (CK) & #813578 (fucongcong) +The lecture lasted for two hours. 這場演講持續了兩個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #241149 (CK) & #873223 (Martha) +The man kept talking for an hour. 這個男人連續說了一個小時的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #45339 (CK) & #903589 (Martha) +The medicine made me very sleepy. 這個藥讓我很想睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #43542 (CK) & #873287 (Martha) +The movie received mixed reviews. 影片得到的评价褒贬不一。 CC-BY 2.0 (France) Attribution: tatoeba.org #49564 (CK) & #1397113 (mtdot) +The news confirmed my suspicions. 这一消息证实了我的怀疑。 CC-BY 2.0 (France) Attribution: tatoeba.org #45241 (CK) & #332710 (fucongcong) +The pain has started to ease now. 痛开始减轻了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278318 (sacredceltic) & #6094840 (verdastelo9604) +The park is filled with children. 公園裡都是孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #240446 (CK) & #865563 (Martha) +The party was put off for a week. 派对延期了一周。 CC-BY 2.0 (France) Attribution: tatoeba.org #35635 (fucongcong) & #333211 (fucongcong) +The plane flew over the mountain. 這架飛機飛越了這座山。 CC-BY 2.0 (France) Attribution: tatoeba.org #318070 (CK) & #873199 (Martha) +The plane made a perfect landing. 這架飛機完美的著陸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44355 (CK) & #871168 (Martha) +The police accused him of murder. 警方指控他謀殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #238152 (CK) & #864451 (Martha) +The police didn't find any clues. 警方沒有發現任何線索。 CC-BY 2.0 (France) Attribution: tatoeba.org #238258 (CK) & #872405 (Martha) +The rain prevented me from going. 雨大得让我不能走。 CC-BY 2.0 (France) Attribution: tatoeba.org #26735 (jakov) & #5965717 (verdastelo9604) +The red dress looked good on her. 她穿這套紅色的洋裝很好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #394944 (CK) & #903031 (Martha) +The river flows under the bridge. 河從橋下流過。 CC-BY 2.0 (France) Attribution: tatoeba.org #682256 (Source_VOA) & #6109358 (verdastelo9604) +The rumor turned out to be false. 谣言[最后]证明是假的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34312 (mailohilohi) & #336500 (fucongcong) +The rumor was without foundation. 謠言是毫無根據的。 CC-BY 2.0 (France) Attribution: tatoeba.org #49592 (Eldad) & #781231 (Martha) +The school is on top of the hill. 學校在山丘頂上。 CC-BY 2.0 (France) Attribution: tatoeba.org #5720756 (Joseph) & #6132410 (verdastelo9604) +The shooting started around noon. 拍攝是在中午十二時左右開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #238485 (CK) & #836338 (Martha) +The shooting started around noon. 槍擊是在中午十二時左右開始的。 CC-BY 2.0 (France) Attribution: tatoeba.org #238485 (CK) & #836339 (Martha) +The sky became darker and darker. 天空变得越来越暗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18288 (CK) & #1456457 (ekgermana) +The smell of food made me hungry. 食物的味道讓我餓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268660 (CK) & #895583 (Martha) +The storm caused a lot of damage. 暴風雨造成了很大的損害。 CC-BY 2.0 (France) Attribution: tatoeba.org #325297 (CK) & #903315 (Martha) +The street is paved with asphalt. 這條街鋪上了柏油。 CC-BY 2.0 (France) Attribution: tatoeba.org #44985 (CK) & #872208 (Martha) +The sun always rises in the east. 太陽總是從東方升起。 CC-BY 2.0 (France) Attribution: tatoeba.org #275138 (CK) & #895825 (Martha) +The swimmers were numb with cold. 游泳選手們凍僵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26417 (CK) & #868389 (Martha) +The table is covered with powder. 桌上布满了粉末。 CC-BY 2.0 (France) Attribution: tatoeba.org #7785176 (sharris123) & #466065 (fucongcong) +The tablecloth is in the cabinet. 桌布在櫥櫃裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #39640 (CK) & #868452 (Martha) +The teacher got quite well again. 老師再次恢復健康了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272903 (CK) & #802483 (Martha) +The telephone rang several times. 電話響了好幾次。 CC-BY 2.0 (France) Attribution: tatoeba.org #279251 (CK) & #844603 (Martha) +The threat to Richmond was ended. 对里士满的威胁结束了。 CC-BY 2.0 (France) Attribution: tatoeba.org #807168 (Source_VOA) & #5911710 (verdastelo9604) +The whole family was sick in bed. 全家都病倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #495621 (CK) & #791569 (fucongcong) +The young should respect the old. 年轻人应该尊敬老人。 CC-BY 2.0 (France) Attribution: tatoeba.org #265761 (CK) & #332999 (fucongcong) +There are 50 members in the club. 這個俱樂部有50位成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #62886 (CK) & #907218 (Martha) +There are many fish in this lake. 這個湖裡有很多魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #467691 (CK) & #907518 (Martha) +There are many fish in this lake. 这湖里有许多鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #467691 (CK) & #2029376 (ydcok) +There are no chairs in this room. 這個房間裡沒有椅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #703240 (papabear) & #780263 (Martha) +There are some books on the desk. 书桌上有几本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #20557 (CK) & #333397 (fucongcong) +There are strawberries in my bag. 我的袋子裡有草莓。 CC-BY 2.0 (France) Attribution: tatoeba.org #8932614 (iiujik) & #8824162 (xjjAstrus) +There is a computer on the table. 桌子上有一臺電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #6559102 (ren) & #6056490 (xjjAstrus) +There is a path through the wood. 有一個穿過樹林的小路。 CC-BY 2.0 (France) Attribution: tatoeba.org #269494 (CK) & #900254 (Martha) +There is enough light to read by. 有足夠的光線讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #319892 (CK) & #919853 (Martha) +There is no hope of his recovery. 他沒有希望痊癒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283478 (CK) & #900724 (Martha) +There is no school during August. 8月份没课。 CC-BY 2.0 (France) Attribution: tatoeba.org #72325 (CK) & #333141 (fucongcong) +There is no time for explanation. 没时间解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1641809 (Amastan) & #4625756 (Yashanti) +There is the train at 10 o'clock. 十點鐘有一班火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #43427 (CK) & #902973 (Martha) +There isn't a drop of water left. 沒有剩下一滴水。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492805 (CK) & #8572028 (verdastelo9604) +There was a light rain yesterday. 昨天下小雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244433 (CK) & #873207 (Martha) +There's a big fly on the ceiling. 有一隻大蒼蠅在天花板上。 CC-BY 2.0 (France) Attribution: tatoeba.org #278783 (CK) & #798193 (Martha) +There's no need for you to study. 你沒有讀書的必要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1242859 (alec) & #1241270 (tsayng) +There's no need to speak so loud. 沒有必要說話這麼大聲。 CC-BY 2.0 (France) Attribution: tatoeba.org #41483 (Swift) & #798073 (Martha) +There's no point in trying again. 再试也无济于事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8466345 (moarplease) & #333210 (fucongcong) +There's not a drop of water left. 沒有剩下一滴水。 CC-BY 2.0 (France) Attribution: tatoeba.org #7492804 (CK) & #8572028 (verdastelo9604) +These people hate all foreigners. 这些人讨厌所有的外国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #61691 (CM) & #7768042 (jiangche) +They appointed him as a director. 他们任命他为经理。 CC-BY 2.0 (France) Attribution: tatoeba.org #307433 (CK) & #816432 (fucongcong) +They are having a party tomorrow. 明天他們將舉行派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #307596 (CK) & #868429 (Martha) +They are proud of their daughter. 他們以他們的女兒為榮。 CC-BY 2.0 (France) Attribution: tatoeba.org #307587 (CK) & #873306 (Martha) +They are talking with each other. 他们在互相交谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #306500 (CK) & #510866 (fucongcong) +They broke into the jewelry shop. 他們闖進了珠寶店。 CC-BY 2.0 (France) Attribution: tatoeba.org #305853 (CK) & #874695 (Martha) +They called off their engagement. 他們解除了婚約。 CC-BY 2.0 (France) Attribution: tatoeba.org #306581 (CK) & #845998 (Martha) +They gave us very little trouble. 他們幾乎不給我們添麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #306023 (CK) & #805020 (Martha) +They got to the hotel after dark. 天暗後他們到了酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #281162 (CK) & #802119 (Martha) +They have been married two years. 他們已經結婚兩年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306441 (CK) & #872154 (Martha) +They kept me waiting for an hour. 他們讓我等了一個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #306710 (CK) & #903322 (Martha) +They looked as if they would cry. 他們看起來好像要哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306353 (CK) & #903634 (Martha) +They made the novel into a drama. 他們把這本小說變成戲劇。 CC-BY 2.0 (France) Attribution: tatoeba.org #305793 (CK) & #795996 (Martha) +They mistook him for his brother. 他们错把他当成他的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #307424 (CM) & #8589133 (easononizuka) +They stepped a few paces forward. 他們前進了幾步。 CC-BY 2.0 (France) Attribution: tatoeba.org #816074 (afeinberg) & #816733 (Martha) +They went in opposite directions. 他們往相反的方向去。 CC-BY 2.0 (France) Attribution: tatoeba.org #681651 (Source_VOA) & #781114 (Martha) +They were buried in a mass grave. 他们被埋在一座大坟墓里 CC-BY 2.0 (France) Attribution: tatoeba.org #7120423 (CM) & #8748608 (cxpadonis) +They were listening to the radio. 他們在聽收音機。 CC-BY 2.0 (France) Attribution: tatoeba.org #306111 (CK) & #872468 (Martha) +They were not listening to music. 他們沒在聽音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #306213 (CK) & #874478 (Martha) +They were scolded by the teacher. 他们被老师训斥了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307004 (CK) & #4972636 (wzhd) +They will get married next month. 他們將在下個月結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #307646 (CK) & #872433 (Martha) +They'll let us know what happens. 他们会让我们知道发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3131488 (CK) & #5739306 (verdastelo9604) +Things are totally different now. 現在全都不一樣了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493905 (CK) & #6114422 (verdastelo9604) +This T-shirt is too small for me. 這件T卹太小了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61377 (CK) & #900680 (Martha) +This blue sweater is very pretty. 這件藍色毛衣很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #58220 (CK) & #866054 (Martha) +This book belongs to the library. 這本書是圖書館的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56908 (CK) & #873307 (Martha) +This book is hard for me to read. 这本书对我来说很难读。 CC-BY 2.0 (France) Attribution: tatoeba.org #56946 (CK) & #465937 (fucongcong) +This book is worth reading again. 这本书值得再看一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #57003 (mamat) & #487630 (fucongcong) +This book is worth reading twice. 這本書值得讀兩遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #56871 (Zifre) & #772169 (Martha) +This book was printed in England. 这本书在英国印刷。 CC-BY 2.0 (France) Attribution: tatoeba.org #56992 (CK) & #813500 (fucongcong) +This coffee is too strong for me. 這個咖啡對我來說太濃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61135 (CK) & #905864 (Martha) +This desk takes up too much room. 這張桌子太佔空間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #59848 (CK) & #895604 (Martha) +This dog was born two months ago. 這隻狗是兩個月前出生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59432 (CK) & #896488 (Martha) +This extension cord is too short. 這條延長線太短了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962671 (JSakuragi) & #3763511 (cienias) +This food does not agree with me. 这食物不适合我。 CC-BY 2.0 (France) Attribution: tatoeba.org #58378 (CM) & #336073 (fucongcong) +This is a new experience for Tom. 这对于汤姆是新体验。 CC-BY 2.0 (France) Attribution: tatoeba.org #2784454 (sharptoothed) & #5865506 (verdastelo9604) +This is a very important meeting. 這是個很重要的會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #55874 (CK) & #3742504 (egg0073) +This is an exception to the rule. 这是一个例外。 CC-BY 2.0 (France) Attribution: tatoeba.org #55912 (CK) & #332705 (fucongcong) +This is going to be a great trip. 這會是個絕好的旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #4012276 (CK) & #6065918 (verdastelo9604) +This is the house where he lived. 這是他住的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #394316 (CK) & #895705 (Martha) +This is the house where he lives. 這是他住的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #394315 (CK) & #895705 (Martha) +This is the only camera I've got. 這是我唯一的相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #55662 (CK) & #905982 (Martha) +This is the very book you wanted. 這是你非常想要的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #40157 (CM) & #884760 (Martha) +This letter is wrongly addressed. 这封信寄错地方了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58660 (CK) & #333232 (fucongcong) +This month was kind of difficult. 这个月我过得有点艰难。 CC-BY 2.0 (France) Attribution: tatoeba.org #1556870 (brymck) & #8730053 (crescat) +This movie is worth seeing again. 這部電影值得再看一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #68572 (CK) & #874430 (Martha) +This problem is worth discussing. 這個問題是值得討論的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56680 (CK) & #842300 (Martha) +This sentence doesn't make sense. 这句话没意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #57220 (CK) & #802875 (fucongcong) +This suit seems really expensive. 这西装好像真的很贵。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728301 (paper1n0) & #829621 (fucongcong) +This tie doesn't go with my suit. 這條領帶跟我的西裝不配。 CC-BY 2.0 (France) Attribution: tatoeba.org #60729 (CK) & #903025 (Martha) +This zipper doesn't zip smoothly. 這拉鍊卡卡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61047 (CK) & #1261456 (tsayng) +Three months later, Tom was dead. 三個月后,湯姆死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5640545 (CK) & #6135023 (verdastelo9604) +To tell the truth, I felt lonely. 說實話,我感到孤獨。 CC-BY 2.0 (France) Attribution: tatoeba.org #271667 (CK) & #798412 (Martha) +To what extent can he be trusted? 可以相信他到什麼程度? CC-BY 2.0 (France) Attribution: tatoeba.org #37472 (CK) & #3982114 (tsayng) +Today, I am feeling a lot better. 我今天感觉好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1186026 (CK) & #334279 (fucongcong) +Tom and I were business partners. Tom跟我是商業夥伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2642178 (CK) & #5496270 (egg0073) +Tom and Mary's home is cluttered. 汤姆和玛丽的家很乱。 CC-BY 2.0 (France) Attribution: tatoeba.org #7804727 (Hybrid) & #8792024 (slo_oth) +Tom ate half the cake by himself. 湯姆獨自吃了半個蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921183 (CK) & #6903871 (verdastelo9604) +Tom bought some flowers for Mary. 湯姆給瑪麗帶了些花。 CC-BY 2.0 (France) Attribution: tatoeba.org #1872502 (CK) & #6109311 (verdastelo9604) +Tom broke into Mary's hotel room. 湯姆闖進了瑪麗的酒店房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #5698435 (CK) & #6148363 (verdastelo9604) +Tom comes home every day at 2:30. 汤姆每天2:30回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #5486528 (CK) & #5631887 (verdastelo9604) +Tom couldn't hold back his anger. 汤姆没法压抑自己的怒火了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026573 (CK) & #8686691 (crescat) +Tom deleted his Facebook account. Tom刪除了他的Facebook帳號。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956412 (CK) & #5414873 (egg0073) +Tom didn't accept Mary's apology. 汤姆不接受玛丽的道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029345 (CK) & #5595126 (verdastelo9604) +Tom didn't deny that he did that. 汤姆没有否认他做的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #6048802 (CK) & #7704625 (leafjensen) +Tom didn't give me back my money. 湯姆沒有還我錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794434 (CK) & #4794617 (umidake) +Tom didn't give me back my money. 湯姆沒有把錢還給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794434 (CK) & #4794619 (umidake) +Tom didn't return my phone calls. 湯姆沒有回我的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #6262045 (CK) & #6583891 (verdastelo9604) +Tom didn't tell me much about it. 汤姆没跟我说太多关于它的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823379 (CK) & #5945160 (verdastelo9604) +Tom didn't try to hide the truth. 湯姆並沒有試著要隱瞞實情。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794426 (CK) & #4794644 (umidake) +Tom doesn't know how to have fun. 汤姆不知道怎样玩得开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094463 (CK) & #1360026 (sadhen) +Tom doesn't like to wear a watch. 汤姆不喜欢戴手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026005 (CK) & #1235633 (sunnywqing) +Tom enjoyed himself at the party. 汤姆在晚会玩的很开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025839 (CK) & #4760160 (ryanwoo) +Tom fed his leftovers to his dog. 湯姆把他的廚餘餵給他的狗吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #237380 (CK) & #905810 (Martha) +Tom found a skeleton in the cave. 汤姆在洞穴里找到了一具骨架。 CC-BY 2.0 (France) Attribution: tatoeba.org #8560547 (CK) & #8560799 (slo_oth) +Tom gets up at six every morning. 湯姆每天早上六點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #37007 (CK) & #908331 (Martha) +Tom had a heart attack last year. 汤姆去年得了心脏病。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093882 (CK) & #5945146 (verdastelo9604) +Tom has come up with a good plan. 湯姆想到了個好計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #6261643 (CK) & #6877968 (verdastelo9604) +Tom has decided to become a monk. 汤姆(Tom)决定出家为僧。 CC-BY 2.0 (France) Attribution: tatoeba.org #8183913 (CK) & #8500224 (black333) +Tom has forgotten how to do that. 汤姆忘了怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5849246 (CK) & #5865503 (verdastelo9604) +Tom has gone back home to Boston. 湯姆回波士頓的家去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5485594 (CK) & #6128456 (verdastelo9604) +Tom hoped that Mary wouldn't die. 汤姆希望玛丽别死。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540813 (CK) & #5663523 (verdastelo9604) +Tom interrupted our conversation. 湯姆打斷了我們的談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #3424108 (CK) & #6206034 (verdastelo9604) +Tom is a very good tennis player. 湯姆是一個非常好的網球選手。 CC-BY 2.0 (France) Attribution: tatoeba.org #37239 (CK) & #895631 (Martha) +Tom is fluent in three languages. 汤姆掌握了三种语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #5844771 (Hybrid) & #5844854 (Shelley123) +Tom is interested in mathematics. 湯姆是對數學感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #37083 (CK) & #844502 (Martha) +Tom is living with his uncle now. 湯姆現在跟他叔叔住在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #37143 (CK) & #907330 (Martha) +Tom is the only boy in our class. 湯姆是我們班裡唯一的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016687 (CK) & #6468689 (verdastelo9604) +Tom is the tallest in his family. 湯姆是他家裡最高的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37176 (CK) & #907482 (Martha) +Tom is unlikely to do that again. 湯姆不太可能再那麼做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6126550 (CK) & #6936208 (verdastelo9604) +Tom is very courageous, isn't he? 汤姆非常勇敢,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #3417265 (CK) & #5842641 (verdastelo9604) +Tom just got back from Australia. 汤姆刚从澳大利亚回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3431058 (CK) & #6094906 (verdastelo9604) +Tom left his umbrella on the bus. 汤姆把伞落在了巴士上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024597 (CK) & #2581643 (fenfang557) +Tom left his umbrella on the bus. 汤姆把他的雨伞忘在了公交车上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024597 (CK) & #3043978 (sadhen) +Tom likes tea better than coffee. 湯姆喜歡茶勝過咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #37295 (CK) & #865564 (Martha) +Tom lived in Japan for ten years. 湯姆住在日本十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #37332 (CK) & #907538 (Martha) +Tom may be able to come tomorrow. 汤姆可能能在明天来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3472454 (CK) & #5983584 (verdastelo9604) +Tom often fails to keep his word. 汤姆经常不守约。 CC-BY 2.0 (France) Attribution: tatoeba.org #36997 (CK) & #8878027 (crescat) +Tom passed away October 20, 2013. 汤姆逝世于2013年10月20日。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223140 (CK) & #6307291 (gumblex) +Tom pulled Mary out of the water. Tom 把Mary拉出水 CC-BY 2.0 (France) Attribution: tatoeba.org #5729747 (CM) & #5973394 (zhangxr91) +Tom saw everything that happened. 汤姆见证了所有发生的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #3130328 (CK) & #8631004 (ZeroAurora) +Tom should've finished it by now. 汤姆现在应该已经完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3484021 (CK) & #5091666 (mirrorvan) +Tom slipped out of the classroom. 湯姆溜出了教室。 CC-BY 2.0 (France) Attribution: tatoeba.org #37163 (CK) & #871164 (Martha) +Tom still doesn't know the truth. 汤姆还是不知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #3831121 (CK) & #5687008 (verdastelo9604) +Tom thanked everyone for waiting. 汤姆感谢每个人的等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #5213813 (CK) & #6094867 (verdastelo9604) +Tom told Mary that she was right. 汤姆告诉玛丽她是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027898 (CK) & #5555774 (verdastelo9604) +Tom wants to tell you about Mary. 汤姆想跟你说玛丽的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033600 (CK) & #5780565 (verdastelo9604) +Tom was questioned by the police. 汤姆被警察盘问。 CC-BY 2.0 (France) Attribution: tatoeba.org #3142580 (CK) & #5576807 (verdastelo9604) +Tom was the last one off the bus. 湯姆是最後下巴士車的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166087 (CK) & #6149010 (verdastelo9604) +Tom was waiting inside his cabin. 汤姆在他的小屋里等着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3902422 (Amastan) & #5631905 (verdastelo9604) +Tom will be there for a few days. 汤姆会在几天后后到达那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757564 (CK) & #4764660 (ryanwoo) +Tom won't be able to do that job. 汤姆做不了那项工作 CC-BY 2.0 (France) Attribution: tatoeba.org #8416673 (CK) & #8748571 (cxpadonis) +Tom wondered why Mary was crying. 汤姆奇怪为什么玛丽哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3825505 (CK) & #5617251 (verdastelo9604) +Tom works in a windowless office. 汤姆在没有窗户的办公室里工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #6066556 (Hybrid) & #6091706 (verdastelo9604) +Tom's parents were both teachers. 湯姆的父母都是教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023835 (CK) & #6109335 (verdastelo9604) +Tom's the only guy in this class. 汤姆是这个班级里唯一的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2610617 (FeuDRenais) & #2609501 (fenfang557) +Tom's uncle keeps a lot of sheep. 湯姆的叔叔養了很多羊。 CC-BY 2.0 (France) Attribution: tatoeba.org #37362 (CK) & #797068 (Martha) +Tom, what do you want for supper? 湯姆,你晚飯想吃甚麽? CC-BY 2.0 (France) Attribution: tatoeba.org #1053226 (CK) & #8571915 (verdastelo9604) +Tomorrow's going to be a big day. 明天是个大日子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3315231 (CK) & #4473127 (yuiyu) +Traffic is a major urban problem. 交通是都市的一個主要問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #240309 (CM) & #786118 (Martha) +Traffic lights work all the time. 紅綠燈一直在運作。 CC-BY 2.0 (France) Attribution: tatoeba.org #268859 (CK) & #798395 (Martha) +Two for the lunch buffet, please. 兩人份自助午餐,謝謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #29720 (CK) & #874356 (Martha) +UN stands for the United Nations. UN代表聯合國。 CC-BY 2.0 (France) Attribution: tatoeba.org #72165 (CK) & #797128 (Martha) +Uncle Tom is my mother's brother. 湯姆叔叔是我媽媽的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #37426 (CK) & #872452 (Martha) +War must be avoided at all costs. 戰爭必須不惜一切代價地去避免。 CC-BY 2.0 (France) Attribution: tatoeba.org #273300 (CK) & #801354 (Martha) +We accept all major credit cards. 我們接受所有主要的信用卡。 CC-BY 2.0 (France) Attribution: tatoeba.org #265847 (CK) & #874223 (Martha) +We agreed to share the housework. 我們同意分擔家務。 CC-BY 2.0 (France) Attribution: tatoeba.org #262649 (CK) & #865370 (Martha) +We are to be married next Sunday. 我们将于下周日结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #263065 (CK) & #332852 (fucongcong) +We arrived at the office on time. 我們準時到達了辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #64909 (CK) & #907339 (Martha) +We can't afford to make mistakes. 我們承擔不了犯錯的後果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950665 (CK) & #6077487 (verdastelo9604) +We can't force people to do that. 我們不能強迫人去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5553851 (CK) & #6534047 (verdastelo9604) +We didn't know which bus to take. 我們不知道要搭哪一班公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #248228 (CK) & #905945 (Martha) +We enjoyed swimming in the river. 我們喜歡在河裡游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #248972 (CK) & #872474 (Martha) +We felt the house shake a little. 我們感覺到房子搖動了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #24286 (CK) & #908368 (Martha) +We go out together every weekend. 我們每個週末都一起出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #321383 (CK) & #804952 (Martha) +We got behind the car and pushed. 我們到車子後面推車。 CC-BY 2.0 (France) Attribution: tatoeba.org #248838 (CK) & #895453 (Martha) +We grow vegetables in our garden. 我們在我們的花園裡種蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #249095 (CK) & #869909 (Martha) +We had a good time playing cards. 我們打牌玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #248242 (CK) & #895130 (Martha) +We had a good time playing chess. 我們下棋玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #248193 (CK) & #905774 (Martha) +We have a party tomorrow evening. 明天晚上我們有一個派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #247849 (CK) & #872381 (Martha) +We have almost finished our work. 我們幾乎完成了我們的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #245421 (CK) & #872378 (Martha) +We have breakfast in the kitchen. 我們在廚房裡吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #65607 (CK) & #868395 (Martha) +We have little chance of winning. 我們獲勝的機會很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #267371 (CK) & #871203 (Martha) +We have no choice but to risk it. 我们别无选择只能冒着危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953646 (CK) & #4844984 (pig8322) +We have to find out where Tom is. 我们必须查明汤姆在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #5517112 (CK) & #5983597 (verdastelo9604) +We have to leave in five minutes. 我们必须在五分钟之内离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #4141413 (Hybrid) & #4148212 (sissima) +We haven't known each other long. 我們彼此認識沒有很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #22817 (CK) & #874290 (Martha) +We live in a three-bedroom house. 我們住在一棟有三間臥室的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #22892 (CK) & #871213 (Martha) +We made every effort to help him. 我們盡了一切努力來幫助他。 CC-BY 2.0 (France) Attribution: tatoeba.org #249277 (CK) & #833797 (Martha) +We must cancel our trip to Japan. 我們必須取消我們去日本的旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #281801 (CK) & #903352 (Martha) +We probably should've left early. 我們可能應該早點走。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500581 (CK) & #6673095 (verdastelo9604) +We saw a funny movie last Sunday. 我們上星期天看了一場很有趣的電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #272741 (CK) & #903598 (Martha) +We should have been more careful. 我們應該更小心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #262876 (CK) & #872210 (Martha) +We should inform them about that. 我们应该把那件事情告知他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1121268 (Scotland) & #8727945 (crescat) +We should stop seeing each other. 我们不该再对视了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5558685 (CK) & #5842646 (verdastelo9604) +We talked about yesterday's test. 我們談到了昨天的測驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #247938 (CK) & #845971 (Martha) +We talked over the plan with him. 我們和他談了這個計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #23200 (CK) & #900708 (Martha) +We tried to compromise with them. 我們試著和他們妥協。 CC-BY 2.0 (France) Attribution: tatoeba.org #400281 (CK) & #871086 (Martha) +We want to clear up this problem. 我们像澄清这个问题 CC-BY 2.0 (France) Attribution: tatoeba.org #249607 (CK) & #5973398 (zhangxr91) +We watched the soccer game on TV. 我們看了電視上的足球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #248208 (CK) & #903624 (Martha) +We went for a walk in the forest. 我们去了林中散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #248912 (CK) & #332688 (fucongcong) +We went to the movies last night. 我們昨晚去看電影了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248754 (CK) & #895843 (Martha) +We were attacked from both sides. 我們被兩面夾擊了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7785202 (sharris123) & #5951355 (xjjAstrus) +We will play soccer after school. 我們放學後會去踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321000 (CK) & #865424 (Martha) +We'd like another bottle of wine. 我們想再來一瓶葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #29222 (CK) & #871209 (Martha) +We'll go on a picnic next Sunday. 我們下週六將去野餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #248702 (CK) & #895603 (Martha) +We'll know the truth before long. 我們不久將知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #7791902 (CK) & #903005 (Martha) +We're going to have a test today. 我們今天將有一個考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #263030 (CK) & #908345 (Martha) +We're waiting for the right time. 我們在等對的時機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1804009 (Spamster) & #5386545 (egg0073) +We've got to get you out of here. 我們必須把你带走。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310176 (CK) & #6318534 (verdastelo9604) +We've had this discussion before. 我們以前討論過。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953967 (CK) & #6103185 (verdastelo9604) +Well, let's get the ball rolling. 那麼, 讓我們開始進行吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #54209 (CK) & #796945 (Martha) +Were your mother and father home? 你父母親在家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70952 (CK) & #865579 (Martha) +What are you going to do tonight? 你今晚要做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #69405 (CK) & #895607 (Martha) +What did you do over the weekend? 你整個週末做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #401799 (CK) & #905866 (Martha) +What did you do with that camera? 你用那台相機做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #68716 (CK) & #896632 (Martha) +What did you do with those books? 你用那些書做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #67824 (CK) & #895278 (Martha) +What did you do with your camera? 你用你的照相机做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #70139 (CK) & #819824 (fucongcong) +What did you major in at college? 你大學時主修什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #69122 (CK) & #905307 (Martha) +What is it that Tom wants to eat? 汤姆想吃的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3738612 (CK) & #6028214 (verdastelo9604) +What is the matter with your car? 你的車子怎麼了? CC-BY 2.0 (France) Attribution: tatoeba.org #265531 (CK) & #905951 (Martha) +What language is spoken in Egypt? 在埃及说什么语言? CC-BY 2.0 (France) Attribution: tatoeba.org #729046 (Shazback) & #462060 (fucongcong) +What made you come here so early? 什麼原因讓你這麼早來這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #38687 (CK) & #902019 (Martha) +What season do you like the best? 您最喜欢哪个季节? CC-BY 2.0 (France) Attribution: tatoeba.org #37531 (CK) & #481190 (fucongcong) +What were you doing at that time? 當時你在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #69992 (CK) & #902928 (Martha) +What were you doing in the attic? 你在阁楼上做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3737657 (CK) & #5863304 (verdastelo9604) +What were you doing this morning? 今天早上你在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1553315 (CK) & #1661550 (sadhen) +What you said doesn't make sense. 你說的沒有道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #7422433 (CK) & #903482 (Martha) +What's the forecast for tomorrow? 明天的天气预报怎么说? CC-BY 2.0 (France) Attribution: tatoeba.org #71846 (CK) & #844559 (kooler) +What's the purpose of your visit? 您此行的目的是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #54380 (CK) & #870064 (Martha) +What's the purpose of your visit? 你此行的目的是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #54380 (CK) & #900618 (Martha) +When did she promise to meet him? 她答应几时见他? CC-BY 2.0 (France) Attribution: tatoeba.org #316257 (CK) & #332995 (fucongcong) +When did you change your address? 你什麼時候更改了你的地址? CC-BY 2.0 (France) Attribution: tatoeba.org #66006 (CK) & #874225 (Martha) +When did your baby start talking? 你的寶寶,什麼時候開始說話的? CC-BY 2.0 (France) Attribution: tatoeba.org #3181830 (CK) & #8387399 (wangchou) +When was this university founded? 这所大学是什么时候建的? CC-BY 2.0 (France) Attribution: tatoeba.org #57984 (CK) & #346882 (fucongcong) +Where are you going to eat lunch? 你要去哪裡吃午飯? CC-BY 2.0 (France) Attribution: tatoeba.org #277598 (CK) & #895131 (Martha) +Where do I have to change trains? 我要在哪裡換火車? CC-BY 2.0 (France) Attribution: tatoeba.org #38164 (CK) & #907321 (Martha) +Where do you want to go tomorrow? 你明天想去那里? CC-BY 2.0 (France) Attribution: tatoeba.org #3921780 (CK) & #5617262 (verdastelo9604) +Where does your grandfather live? 你爺爺住在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #736623 (Darkmaster) & #917799 (Martha) +Where in Austria did you grow up? 你在奧地利的什麼地方長大? CC-BY 2.0 (France) Attribution: tatoeba.org #65135 (CK) & #894973 (Martha) +Where were you yesterday morning? 你昨天上午在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #4014275 (CK) & #6471017 (xjjAstrus) +Where would you like to go first? 你想先去哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #32801 (CK) & #903615 (Martha) +Whether he comes or not, I'll go. 不論他來或不來,我都會去。 CC-BY 2.0 (France) Attribution: tatoeba.org #284278 (CK) & #905988 (Martha) +Which countries have you visited? 你去过哪些国家? CC-BY 2.0 (France) Attribution: tatoeba.org #682337 (Source_VOA) & #1428132 (sadhen) +Which fruit do you like the best? 你最喜爱的水果是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #7775091 (sharris123) & #2186199 (sadhen) +Which team do you think will win? 你覺得哪支球隊會贏? CC-BY 2.0 (France) Attribution: tatoeba.org #2885086 (CK) & #6760113 (xjjAstrus) +Who are the two women over there? 那边的两位女士是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #3780431 (phikhanguyen) & #3783463 (Debbie_Linder) +Who does this suitcase belong to? 這個手提箱是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #55525 (CK) & #866150 (Martha) +Who is the woman dressed in pink? 那個穿粉紅色衣服的女人是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #68628 (CK) & #900712 (Martha) +Who's the man playing the violin? 那個正在拉小提琴的男人是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #7785049 (CK) & #895882 (Martha) +Whose house is across from yours? 你家對面的房子是誰的? CC-BY 2.0 (France) Attribution: tatoeba.org #387420 (CK) & #874393 (Martha) +Why did you use up all the money? 为什么你花了所有钱? CC-BY 2.0 (France) Attribution: tatoeba.org #16460 (Eldad) & #471312 (fucongcong) +Why didn't you read the magazine? 你为什么不读这杂志呢? CC-BY 2.0 (France) Attribution: tatoeba.org #882551 (CK) & #1415807 (sadhen) +Why don't we have lunch together? 為什麼我們不一起吃午飯呢? CC-BY 2.0 (France) Attribution: tatoeba.org #66318 (CK) & #875048 (Martha) +Why don't you sit down and relax? 你為什麼不坐下來放鬆一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #243626 (CK) & #903511 (Martha) +Why should I care what you think? 為什麼我應該在乎你怎麼想? CC-BY 2.0 (France) Attribution: tatoeba.org #4394476 (CK) & #4394670 (elena_chang) +Will he be able to come tomorrow? 他明天能来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68116 (CK) & #334610 (fucongcong) +Will you go to the party tonight? 你今晚會去派對嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243320 (CK) & #903019 (Martha) +Will you lend me your dictionary? 把你的字典借給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17095 (CK) & #865398 (Martha) +Will you mail this letter for me? 你可以幫我寄這封信嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58634 (CK) & #907514 (Martha) +Will you show me what you bought? 你愿意给我看看你买了什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #71328 (autuno) & #746050 (fucongcong) +Winter is just around the corner. 冬季快來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #279637 (CK) & #797042 (Martha) +Would three o'clock be all right? 三點鐘可以嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244982 (CK) & #869902 (Martha) +Would you like anything to drink? 你要喝點什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #431583 (Edouard) & #2638680 (cienias) +Would you like me to take a look? 你能让我看看吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3738099 (CK) & #5558621 (verdastelo9604) +Would you like to drink anything? 你想喝點什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25196 (CK) & #840434 (Martha) +Would you mind shutting the door? 請你把門關上好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38988 (CK) & #868424 (Martha) +Would you please shut the window? 能不能请你把窗关了? CC-BY 2.0 (France) Attribution: tatoeba.org #274199 (CK) & #414483 (fucongcong) +Would you please take my picture? 請你幫我照相好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #321504 (CK) & #874532 (Martha) +Would you please tell me the way? 請你告訴我路怎麼走好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #38461 (CK) & #895164 (Martha) +Would you please turn off the TV? 请把电视机关掉好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2984247 (CK) & #9007589 (jacintoo) +Would you please turn the TV off? 请把电视机关掉好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2540735 (CK) & #9007589 (jacintoo) +You can call me anytime you like. 你喜欢什么时候打给我就什么时候打。 CC-BY 2.0 (France) Attribution: tatoeba.org #539547 (tomkun01) & #783013 (fucongcong) +You can dig dirt from the ground. 你可以在地上挖土。 CC-BY 2.0 (France) Attribution: tatoeba.org #681107 (Source_VOA) & #5556193 (verdastelo9604) +You can say whatever you want to. 你可以說你想說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #239654 (CK) & #907534 (Martha) +You can stay as long as you like. 你想要待多久就待多久。 CC-BY 2.0 (France) Attribution: tatoeba.org #240658 (CK) & #346747 (fucongcong) +You can't do anything about that. 你什么也做不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2904408 (CK) & #5701336 (verdastelo9604) +You can't speak English, can you? 你不会说英语,是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16296 (CK) & #2165940 (sadhen) +You couldn't handle the pressure. 你不能处理压力。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664522 (CK) & #5992382 (verdastelo9604) +You didn't need to come so early. 你不必這麼早來。 CC-BY 2.0 (France) Attribution: tatoeba.org #502587 (CK) & #903003 (Martha) +You don't have to answer quickly. 你不必快速作答。 CC-BY 2.0 (France) Attribution: tatoeba.org #52136 (CK) & #2007043 (sadhen) +You forgot to turn off the light. 他忘了關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #1823855 (Amastan) & #884175 (Martha) +You have good reason to be angry. 你有充分的理由生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #17776 (CK) & #900699 (Martha) +You look very happy this morning. 你今天上午看起來很高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #242183 (CK) & #871207 (Martha) +You may choose any book you like. 你可以選擇任何你喜歡的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #70676 (CK) & #793888 (Martha) +You must get up a little earlier. 你该早一点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #16395 (CK) & #471380 (fucongcong) +You must not go out after dinner. 晚飯後你不可以外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #324645 (CK) & #895909 (Martha) +You must not jump to conclusions. 你不可以妄下結論。 CC-BY 2.0 (France) Attribution: tatoeba.org #52191 (CK) & #870049 (Martha) +You must not yield to temptation. 你不應該屈服在誘惑之下。 CC-BY 2.0 (France) Attribution: tatoeba.org #324512 (CK) & #1228964 (tsayng) +You ought to get to work on time. 你應該準時上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #16063 (Zifre) & #775725 (Martha) +You people can't help yourselves. 你们这些人帮不了自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #5726049 (CM) & #5949246 (verdastelo9604) +You really are lucky, aren't you? 你真的很幸運,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #410601 (CK) & #868394 (Martha) +You remember it better than I do. 你比我记得好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1121215 (Scotland) & #5763048 (verdastelo9604) +You should always tell the truth. 你應該永遠說實話。 CC-BY 2.0 (France) Attribution: tatoeba.org #70195 (CK) & #871201 (Martha) +You should come back immediately. 你应该马上回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #8249379 (francaisr0wlet) & #7771918 (jiangche) +You should drink a lot of liquid. 你應該喝大量的液體。 CC-BY 2.0 (France) Attribution: tatoeba.org #270935 (CK) & #896374 (Martha) +You should drive at a safe speed. 你應該以安全速度駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #28484 (CK) & #895732 (Martha) +You should prepare for the worst. 你应该作最坏的准备。 CC-BY 2.0 (France) Attribution: tatoeba.org #719281 (eastasiastudent) & #719278 (Yashanti) +You should rewrite this sentence. 你應該重寫這句話。 CC-BY 2.0 (France) Attribution: tatoeba.org #57218 (CK) & #844450 (Martha) +You should take the number 5 bus. 您应该乘5路车。 CC-BY 2.0 (France) Attribution: tatoeba.org #72483 (autuno) & #746042 (fucongcong) +You should try to be more polite. 你應該試著更有禮貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #17646 (CK) & #902943 (Martha) +You shouldn't eat too much candy. 你不應該吃太多糖果。 CC-BY 2.0 (France) Attribution: tatoeba.org #67735 (CK) & #872392 (Martha) +You shouldn't have paid the bill. 你本來不應該付賬的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17901 (CK) & #871212 (Martha) +You'd better consult your doctor. 你最好請教你的醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #28044 (CK) & #842332 (Martha) +You'll find this map very useful. 你會發現這張地圖非常有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #57908 (CK) & #865417 (Martha) +You're barking up the wrong tree. 你白費力氣了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64791 (CK) & #781083 (Martha) +You're in better shape than I am. 你的體型比我的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1295 (CK) & #900252 (Martha) +You're not even paying attention. 你根本沒有注意。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185880 (CK) & #6673088 (verdastelo9604) +You're old enough to know better. 你年龄足够大了,该了解更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #30371 (CK) & #336589 (fucongcong) +Your bicycle is better than mine. 你的腳踏車比我的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #70611 (CK) & #874973 (Martha) +Your parents loved you very much. 你的父母很愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3282168 (Mwiggins) & #6135004 (verdastelo9604) +Your plan seems better than mine. 你的計劃似乎比我的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #17258 (CK) & #872124 (Martha) +Your second button is coming off. 你的第二顆鈕扣快掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16937 (CK) & #872160 (Martha) +Your suggestion seems reasonable. 你的建議似乎是合理的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70454 (CK) & #833241 (Martha) +"Are you tired?" "No, not at all." “你累嗎?” “不,一點兒也不。” CC-BY 2.0 (France) Attribution: tatoeba.org #73539 (CK) & #730702 (Martha) +"Is he right?" "I don't think so." "他是對的嗎?" "我不這麼認為。" CC-BY 2.0 (France) Attribution: tatoeba.org #73561 (CM) & #790612 (Martha) +"Is she coming, too?" "I hope so." “她也会来吗?” “我希望是这样。” CC-BY 2.0 (France) Attribution: tatoeba.org #317551 (CK) & #4876370 (ryanwoo) +A DNA test showed he was innocent. DNA检测表明,他是无辜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1921132 (danepo) & #7771686 (jiangche) +A ball is floating down the river. 一個球正順流而下。 CC-BY 2.0 (France) Attribution: tatoeba.org #33685 (CK) & #801307 (Martha) +A brilliant future lay before him. 大好的前途摆在他面前。 CC-BY 2.0 (France) Attribution: tatoeba.org #284932 (CK) & #333125 (fucongcong) +A doctor was called in right away. 醫生立刻被請來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #52210 (CK) & #801492 (Martha) +A fire broke out during the night. 在夜間發生了火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #323994 (CK) & #798279 (Martha) +A stranger spoke to me on the bus. 在公车上,一个陌生人和我说了话。 CC-BY 2.0 (France) Attribution: tatoeba.org #435798 (CK) & #332987 (fucongcong) +A thousand dollars is a large sum. 1000美元是个大数目。 CC-BY 2.0 (France) Attribution: tatoeba.org #73499 (CK) & #846538 (kooler) +After supper, I washed the dishes. 晚饭后我洗了碗碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #4140575 (AlanF_US) & #366857 (fucongcong) +After supper, I washed the dishes. 晚饭后我洗了餐具。 CC-BY 2.0 (France) Attribution: tatoeba.org #4140575 (AlanF_US) & #6075182 (mendel) +All of a sudden, it became cloudy. 忽然天氣轉為多雲。 CC-BY 2.0 (France) Attribution: tatoeba.org #280646 (CK) & #797110 (Martha) +All of a sudden, it began raining. 突然開始下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #280689 (CK) & #797087 (Martha) +All of my software is open source. 我的软件全都是开源的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6011113 (mailohilohi) & #8686686 (crescat) +All sorts of people live in Tokyo. 各式各樣的人住在東京。 CC-BY 2.0 (France) Attribution: tatoeba.org #279740 (CK) & #868252 (Martha) +All the apple trees were cut down. 所有苹果树都被砍倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #29622 (adjusting) & #333114 (fucongcong) +All the boys in class worked hard. 課堂上所有的男生都很用功。 CC-BY 2.0 (France) Attribution: tatoeba.org #62918 (CK) & #874288 (Martha) +Although it is snowing, I must go. 虽然正在下雪,但是我也非去不可。 CC-BY 2.0 (France) Attribution: tatoeba.org #272543 (CM) & #1235522 (sunnywqing) +Apples were served as the dessert. 蘋果被當作甜點。 CC-BY 2.0 (France) Attribution: tatoeba.org #39479 (CK) & #3460001 (egg0073) +Apples were served as the dessert. 蘋果被用來當作甜點。 CC-BY 2.0 (France) Attribution: tatoeba.org #39479 (CK) & #3460341 (egg0073) +Arabic is read from right to left. 阿拉伯语要从右往左读。 CC-BY 2.0 (France) Attribution: tatoeba.org #4292049 (Youmu970) & #4859711 (musclegirlxyp) +Are Tom and Mary working together? 汤姆和玛丽一起工作吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6529844 (CK) & #8940743 (crescat) +Are you being paid for doing this? 是有人花钱让你做这事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2641981 (CK) & #5715194 (verdastelo9604) +Are you feeling under the weather? 你感觉不舒服吗? CC-BY 2.0 (France) Attribution: tatoeba.org #18364 (CK) & #5092007 (mirrorvan) +Are you going to buy a dictionary? 你要去買詞典嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #619659 (ulyssemc1) & #8572027 (verdastelo9604) +Are you sure that's what you want? 你確定那是你想要的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3403336 (CK) & #6131484 (verdastelo9604) +As long as you're here, I'll stay. 只要你在這兒,我就會留下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #18039 (CK) & #874493 (Martha) +As soon as he saw me, he ran away. 他一看見我,就跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298116 (CK) & #6534799 (verdastelo9604) +Auckland is a city in New Zealand. 奥克兰是一座新西兰的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #427943 (witbrock) & #4265147 (notabene) +Being a teacher is very hard work. 做教師很辛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #5485099 (CK) & #6325112 (verdastelo9604) +Bring me a sheet of paper, please. 请带一张纸给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #38837 (CK) & #2002965 (sunnywqing) +Bush followed Reagan as president. 布什继里根之后当上了总统。 CC-BY 2.0 (France) Attribution: tatoeba.org #34345 (U2FS) & #332569 (fucongcong) +Can I have the menu again, please? 麻煩讓我再看看菜單好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31489 (CK) & #870062 (Martha) +Can I make a reservation for golf? 我能预定一下打高尔夫球吗? CC-BY 2.0 (France) Attribution: tatoeba.org #56358 (CK) & #336883 (fucongcong) +Can we take care of this tomorrow? 这个我们明天能解决吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8445993 (Luiaard) & #8463672 (gumblex) +Can you explain why you were late? 你能解釋一下你為什麼遲到嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #277417 (CK) & #865372 (Martha) +Can you give me your phone number? 你能給我你的電話號碼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2226899 (FeuDRenais) & #5689566 (xjjAstrus) +Can you help me wash these dishes? 你能幫我洗這些碗盤嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #246458 (CK) & #4071847 (egg0073) +Can you tell silver and tin apart? 你能分辨銀和錫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #387418 (CM) & #875254 (Martha) +Can you think of something better? 你能想到更好的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #30518 (CK) & #844499 (Martha) +Can't you do something to help me? 你不能做些事來幫助我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #24933 (CK) & #865492 (Martha) +Change trains at the next station. 在下一站換火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #264246 (CK) & #836356 (Martha) +Children can't swim in this river. 小孩儿不能在这条河里游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #245911 (CK) & #1397018 (mtdot) +Close your eyes, and count to ten. 閉上你的眼睛,然後數到十。 CC-BY 2.0 (France) Attribution: tatoeba.org #323785 (CK) & #871040 (Martha) +Come and see me at eleven o'clock. 十一點鐘來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #73355 (CK) & #871219 (Martha) +Come and see me at eleven o'clock. 您十一点时来看我吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #73355 (CK) & #7767639 (jiangche) +Come and see me whenever you like. 你隨時都可以來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #66197 (CK) & #868467 (Martha) +Compare your translation with his. 比較你和他的翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #70351 (CK) & #834234 (Martha) +Complaining won't change anything. 抱怨不會改變任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #320051 (CK) & #826219 (Martha) +Could I get one more beer, please? 再給我一瓶啤酒好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34842 (CK) & #872374 (Martha) +Could I have a pillow and blanket? 給我一個枕頭和毛毯好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #322497 (CK) & #872163 (Martha) +Could I have a subway map, please? 給我一張地下鐵的路線圖好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #503017 (CK) & #872421 (Martha) +Could you call me tonight, please? 今晚你能打電話給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243197 (CK) & #836360 (Martha) +Could you check the tire pressure? 你能檢查一下這個輪胎的氣壓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #41119 (CK) & #838516 (Martha) +Could you please pass me the salt? 請你把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64751 (CK) & #866063 (Martha) +Could you put this coat somewhere? 您能把這件大衣放在某個地方? CC-BY 2.0 (France) Attribution: tatoeba.org #61142 (CK) & #840529 (Martha) +Could you recommend another hotel? 你能推薦另一家旅館嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274628 (CK) & #833165 (Martha) +Could you send it to this address? 你能把它送到這個地址嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60298 (CK) & #874970 (Martha) +Could you translate this sentence? 你能翻译这个句子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2375608 (CS) & #4456368 (plutowu) +Cut the chit-chat and get to work. 別閒聊了,開始工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #65050 (CK) & #798401 (Martha) +Did Tom help his mother yesterday? 湯姆昨天幫他媽媽的忙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #37133 (CK) & #844471 (Martha) +Did you actually see the accident? 你真的看到了這起事故嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16024 (CK) & #844593 (Martha) +Did you drive her home last night? 昨晚你把她送回家了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69377 (CK) & #795756 (fucongcong) +Did you enjoy the party yesterday? 昨天的派對你玩得開心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244431 (CK) & #842287 (Martha) +Did you feed the dog this morning? 你今天早上喂过狗了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #242245 (xtofu80) & #333766 (fucongcong) +Did you find anything interesting? 你找到有趣的東西了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3636379 (CK) & #6103251 (verdastelo9604) +Did you find the book interesting? 你覺得這本書有趣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #43905 (CK) & #842314 (Martha) +Did you see the eclipse yesterday? 你看了昨天的月蝕了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3552394 (CK) & #6961326 (xjjAstrus) +Did you visit the Tower of London? 你參觀倫敦塔了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29249 (CK) & #874489 (Martha) +Do I have to stay in the hospital? 我必須留在醫院嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #281918 (CK) & #871096 (Martha) +Do you guys want something to eat? 你們想要吃些什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3396708 (CK) & #5402094 (egg0073) +Do you have a lot of money on you? 你身上有很多钱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7843011 (sharris123) & #463850 (fucongcong) +Do you have a non-smoking section? 你們有非吸煙區嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #18813 (CK) & #838513 (Martha) +Do you have any plans for tonight? 今晚有什么计划吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1096512 (CK) & #5094727 (musclegirlxyp) +Do you have this in a bigger size? 你有比這個再大一點的尺寸嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #434592 (lukaszpp) & #874207 (Martha) +Do you have your driver's license? 你有駕駛執照嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323496 (CK) & #836324 (Martha) +Do you know how to use a computer? 您会使用计算机吗? CC-BY 2.0 (France) Attribution: tatoeba.org #513513 (CK) & #7781512 (jiangche) +Do you know when they will arrive? 你知道他们什么时候到吗? CC-BY 2.0 (France) Attribution: tatoeba.org #304926 (CK) & #1438397 (asosan) +Do you like any of these pictures? 你喜歡這些照片裡的任何一張嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55255 (CK) & #875309 (Martha) +Do you like any of these pictures? 你喜歡這些畫裡的任何一幅嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55255 (CK) & #875313 (Martha) +Do you not understand basic logic? 你不懂基本逻辑吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6066858 (CK) & #6563555 (gumblex) +Do you often have fish for dinner? 你常常晚餐吃魚嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #39685 (CK) & #881234 (Martha) +Do you still have my phone number? 你還有我的電話號碼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3821865 (CK) & #6120802 (verdastelo9604) +Do you subscribe to any magazines? 你有訂閱任何雜誌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25104 (AMIKEMA) & #840518 (Martha) +Do you think that my work is easy? 你觉得我的工作简单吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5116037 (CarpeLanam) & #8723592 (crescat) +Do you understand what I'm saying? 你明白我的意思嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #404098 (CK) & #836430 (Martha) +Do you want me to call the police? 你想要我叫警察吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1992153 (Spamster) & #8831925 (crescat) +Do you want to eat garbanzo beans? 你想吃鹰嘴豆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8743422 (Solana) & #8744756 (slo_oth) +Do you want to eat something else? 你想吃點別的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3871284 (CK) & #6624640 (verdastelo9604) +Do you want to have sushi tonight? 你今晚想吃壽司嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #243298 (CK) & #882512 (Martha) +Don't be afraid to make a mistake. 別害怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #700663 (papabear) & #5364038 (egg0073) +Don't believe everything you hear. 不要相信你聽到的每件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #320074 (CK) & #833100 (Martha) +Don't blame Tom for what Mary did. 别为玛丽犯的错责备汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1096246 (CK) & #1394851 (mtdot) +Don't do anything like that again. 不要再做那樣的事情了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72105 (CK) & #836405 (Martha) +Don't let appearances deceive you. 不要被外貌蒙蔽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728143 (paper1n0) & #4517819 (yuiyu) +Don't sign the contract in pencil. 别用铅笔签合同。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821554 (CK) & #5663461 (verdastelo9604) +Don't you want to know the reason? 你不想知道原因吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3041621 (alec) & #3035561 (vicch) +Eat your soup before it gets cold. 趁汤没凉之前喝下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1071653 (CK) & #1438545 (asosan) +Edison invented the electric lamp. 愛迪生發明了電燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #65327 (CK) & #833238 (Martha) +Einstein loved playing the violin. 愛因斯坦喜歡拉小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #71912 (CK) & #833788 (Martha) +Elephants live in Asia and Africa. 大象生活在亞洲和非洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #268252 (CK) & #846015 (Martha) +English is not difficult to learn. 英語並不難學。 CC-BY 2.0 (France) Attribution: tatoeba.org #26286 (CK) & #811883 (Martha) +Every door in the house is locked. 這房子裡的每一扇門都被鎖上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24159 (CK) & #876350 (Martha) +Everybody in the village knew him. 村子裡的每個人都認識他。 CC-BY 2.0 (France) Attribution: tatoeba.org #274600 (CK) & #842404 (Martha) +Everybody is equal before the law. 法律面前人人平等。 CC-BY 2.0 (France) Attribution: tatoeba.org #51719 (Eldad) & #482701 (biglion) +Everybody knows that he is honest. 大家都知道他是誠實的。 CC-BY 2.0 (France) Attribution: tatoeba.org #276450 (CK) & #840520 (Martha) +Everybody wants to sit beside her. 大家都想坐在她旁边。 CC-BY 2.0 (France) Attribution: tatoeba.org #32165 (CK) & #405261 (fucongcong) +Everyone deserves a second chance. 每個人都值得被給予第二次機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #2198 (Dejo) & #806222 (Martha) +Everyone hoped that she would win. 每個人都希望她會獲勝。 CC-BY 2.0 (France) Attribution: tatoeba.org #32086 (CK) & #842493 (Martha) +Everyone was surprised to see Tom. 每個人看到Tom都很驚訝。 CC-BY 2.0 (France) Attribution: tatoeba.org #3534212 (CK) & #5496245 (egg0073) +Everyone who knew him admired him. 每一個認識他的人都愛慕他。 CC-BY 2.0 (France) Attribution: tatoeba.org #465995 (CK) & #842255 (Martha) +Everything went according to plan. 一切按計劃進行。 CC-BY 2.0 (France) Attribution: tatoeba.org #51658 (CK) & #834506 (Martha) +For what purpose did he come here? 他来这里的目的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #24842 (CK) & #334579 (fucongcong) +France is to the south of England. 法國在英國的南邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #34176 (CK) & #883443 (Martha) +From what school did you graduate? 您是从哪个学校毕业的? CC-BY 2.0 (France) Attribution: tatoeba.org #1834893 (Aharlekyn) & #805541 (fucongcong) +Happy is the man who is contented. 知足常乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #240781 (Dejo) & #332947 (fucongcong) +Have you answered that letter yet? 你回信了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31137 (CK) & #845447 (Martha) +Have you ever broken your glasses? 你摔坏过你的眼镜吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1717382 (Amastan) & #5574606 (verdastelo9604) +Have you ever eaten Japanese food? 你吃過日本料理嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #326508 (CK) & #838643 (Martha) +Have you heard about the accident? 你聽說過這場意外嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #263714 (CK) & #836417 (Martha) +Have you seen my glasses anywhere? 你曾在哪裡看到過我的眼鏡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #250621 (CK) & #836349 (Martha) +He asked her where her mother was. 他問她她的母親在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #302642 (CK) & #880308 (Martha) +He backed his car into the garage. 他倒車入車庫。 CC-BY 2.0 (France) Attribution: tatoeba.org #299045 (CK) & #887775 (Martha) +He bored us with his long stories. 他長長的故事讓我們覺得厭煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #287163 (CK) & #889378 (Martha) +He borrowed money from his friend. 他向他的朋友借錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #304369 (CK) & #842317 (Martha) +He brought back several souvenirs. 他帶回了一些紀念品。 CC-BY 2.0 (France) Attribution: tatoeba.org #289496 (CK) & #834411 (Martha) +He bumped his head against a post. 他的頭撞到了一根柱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #301561 (CK) & #889315 (Martha) +He came at three in the afternoon. 他在下午三點鐘的時候來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296193 (CK) & #885396 (Martha) +He came from a tiny mountain town. 他來自一個小山城。 CC-BY 2.0 (France) Attribution: tatoeba.org #296996 (CK) & #876929 (Martha) +He congratulated me on my success. 他為我的成功恭賀我。 CC-BY 2.0 (France) Attribution: tatoeba.org #297924 (CK) & #836294 (Martha) +He consented to help the old lady. 他同意幫助這位老太太。 CC-BY 2.0 (France) Attribution: tatoeba.org #291386 (CK) & #889114 (Martha) +He could no longer stand the pain. 他再也無法忍受這種痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #278301 (CK) & #883435 (Martha) +He could not answer that question. 他無法回答這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #290956 (CK) & #838534 (Martha) +He decided not to go to the party. 他決定不要去派對了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292347 (CK) & #785068 (Martha) +He did not eat anything yesterday. 他昨天沒有吃任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #296897 (CK) & #836398 (Martha) +He did not speak unless spoken to. 除非有人跟他說話,他不說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #304845 (CK) & #882536 (Martha) +He didn't give me anything to eat. 他沒有給我任何東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #297652 (CK) & #881168 (Martha) +He dipped his spoon into the soup. 他把他的湯匙浸入湯裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #290324 (CK) & #881587 (Martha) +He doesn't care much for baseball. 他不太关注棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #304264 (CK) & #334854 (fucongcong) +He doesn't seem to be an American. 他似乎不是美國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #67487 (CK) & #882172 (Martha) +He drank very little of the water. 他喝很少的水。 CC-BY 2.0 (France) Attribution: tatoeba.org #291072 (CK) & #875390 (Martha) +He dropped his books on the floor. 他的書掉在地板上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299629 (CK) & #881257 (Martha) +He earned his living as a teacher. 他以教書為生。 CC-BY 2.0 (France) Attribution: tatoeba.org #295355 (CK) & #883043 (Martha) +He earned his living as a teacher. 他以當老師為生。 CC-BY 2.0 (France) Attribution: tatoeba.org #295355 (CK) & #883044 (Martha) +He earns three times more than me. 他赚的比我多三倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396474 (CK) & #2030801 (sadhen) +He finally decided to get married. 他最终决定结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #291775 (pierrephi) & #336022 (fucongcong) +He gave me a smile of recognition. 他給了我一個認可的微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #297747 (CK) & #805224 (Martha) +He gave me authority to fire them. 他授權給我解僱了他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #307713 (CK) & #805193 (Martha) +He gave me food and money as well. 他给了我食物和钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #299774 (CM) & #375363 (fucongcong) +He gave me whatever help I needed. 他給了我任何我需要的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #282869 (CK) & #805179 (Martha) +He gave the same answer as before. 他給了跟以前一樣的回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #300709 (CK) & #805078 (Martha) +He got his wife to mend his shirt. 他让他的妻子补好衬衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #294144 (CM) & #2394591 (fenfang557) +He got hurt in the game yesterday. 他昨天在這場比賽中受了傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #296886 (CK) & #802801 (Martha) +He had kept the secret to himself. 他保守著這個秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #302960 (CK) & #889795 (Martha) +He has a good knowledge of French. 她很懂法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #292621 (CK) & #881205 (Martha) +He has a great deal of experience. 他有豐富的經驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #291612 (CK) & #881010 (Martha) +He has ambition, so he works hard. 他有抱負,所以他很努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #476491 (CK) & #875308 (Martha) +He has been sick since last night. 他從昨晚開始就生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296933 (CK) & #884169 (Martha) +He has been teaching for 20 years. 他已經教了20年。 CC-BY 2.0 (France) Attribution: tatoeba.org #302159 (CK) & #875393 (Martha) +He has been to France three times. 他訪問過法國三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #718850 (cagey_cat) & #718458 (egg0073) +He has been to London three times. 他去過倫敦三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #296982 (CK) & #881282 (Martha) +He has never been late for school. 他從來沒有上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #293783 (CK) & #880301 (Martha) +He has visited France three times. 他訪問過法國三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #292601 (CK) & #718458 (egg0073) +He hid his friend from the police. 他把他的朋友藏了起來不讓警察知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #304398 (CK) & #881100 (Martha) +He introduced me to a pretty girl. 他把我介紹給了一個漂亮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #303738 (CK) & #887761 (Martha) +He is capable of teaching Spanish. 他有能力教授西班牙文。 CC-BY 2.0 (France) Attribution: tatoeba.org #290331 (CK) & #4247391 (egg0073) +He is determined to go to England. 他决心去英国。 CC-BY 2.0 (France) Attribution: tatoeba.org #288966 (CK) & #352052 (fucongcong) +He is difficult to get along with. 他這個人很難相處。 CC-BY 2.0 (France) Attribution: tatoeba.org #284501 (CK) & #882520 (Martha) +He is learning how to drive a car. 他正在学怎么开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #386693 (Mouseneb) & #333901 (fucongcong) +He is living abroad at the moment. 他现在住在国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #719759 (eastasiastudent) & #719761 (Yashanti) +He is married to an American lady. 他和一个美国女人结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288843 (CK) & #784479 (fucongcong) +He is old enough to understand it. 他已經到了能瞭解它的年紀。 CC-BY 2.0 (France) Attribution: tatoeba.org #293092 (CK) & #884868 (Martha) +He is old enough to understand it. 他年紀夠大可以瞭解它。 CC-BY 2.0 (France) Attribution: tatoeba.org #293092 (CK) & #884871 (Martha) +He is studying in the library now. 他現在在圖書館讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #296560 (CK) & #888403 (Martha) +He is to come to my house tonight. 他今晚会来我家。 CC-BY 2.0 (France) Attribution: tatoeba.org #296631 (CM) & #336975 (fucongcong) +He is unsatisfied with the result. 他对结果不满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #290744 (CK) & #816449 (fucongcong) +He is very good at playing violin. 他非常擅長拉小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #289321 (CK) & #887778 (Martha) +He joined the Army during the war. 他在戰時参軍。 CC-BY 2.0 (France) Attribution: tatoeba.org #804204 (Source_VOA) & #6071009 (verdastelo9604) +He knows better than to marry her. 他聰明到不會娶她。 CC-BY 2.0 (France) Attribution: tatoeba.org #302623 (CK) & #801986 (Martha) +He knows better than to marry her. 他不會傻到去娶她。 CC-BY 2.0 (France) Attribution: tatoeba.org #302623 (CK) & #801987 (Martha) +He likes mathematics, but I don't. 他喜欢数学,但我不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #300227 (CK) & #478846 (biglion) +He likes taking a walk by himself. 他喜欢独自散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #292561 (CK) & #462007 (fucongcong) +He likes taking a walk by himself. 他喜歡獨自一人散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #292561 (CK) & #4061599 (egg0073) +He lives in that house over there. 他住在那邊的那間房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #288708 (CK) & #883288 (Martha) +He made a speech in plain English. 他用淺顯的英語演講。 CC-BY 2.0 (France) Attribution: tatoeba.org #304129 (CK) & #909453 (Martha) +He made his way through the crowd. 他設法穿過了人群。 CC-BY 2.0 (France) Attribution: tatoeba.org #300138 (CK) & #802019 (Martha) +He made no mention of her request. 他沒有提到她的請求。 CC-BY 2.0 (France) Attribution: tatoeba.org #302847 (CK) & #801948 (Martha) +He managed to make both ends meet. 他設法使收支平衡。 CC-BY 2.0 (France) Attribution: tatoeba.org #291975 (CK) & #794079 (Martha) +He may be jogging around the park. 他可能在公園周圍慢跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #296239 (CK) & #793903 (Martha) +He may have missed the last train. 他可能錯過了最後一班火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #299306 (CK) & #875280 (Martha) +He may have taken the wrong train. 他可能搭錯火車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #301807 (CK) & #885522 (Martha) +He mistook me for my twin brother. 他把我誤認為我的雙胞胎兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #539598 (CK) & #882505 (Martha) +He must finish his homework today. 他今天必須完成他的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #299380 (CK) & #848426 (Martha) +He poured cold water over himself. 他往他自己身上潑了一盆冷水。 CC-BY 2.0 (France) Attribution: tatoeba.org #304785 (CK) & #846378 (Martha) +He pretended that he was a lawyer. 他假裝是一位律師。 CC-BY 2.0 (France) Attribution: tatoeba.org #491716 (CK) & #881902 (Martha) +He read a book written in English. 他讀了一本用英文寫的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #293965 (CK) & #876719 (Martha) +He refused to shake hands with me. 他拒绝跟我握手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1182499 (soj4l) & #343233 (fucongcong) +He relies on his wife financially. 他经济上依靠他的太太。 CC-BY 2.0 (France) Attribution: tatoeba.org #295715 (CK) & #336076 (fucongcong) +He returned from abroad yesterday. 他昨天從國外回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #296898 (CK) & #834236 (Martha) +He runs a supermarket in the town. 他在這個鎮上經營一家超級市場。 CC-BY 2.0 (France) Attribution: tatoeba.org #301600 (CK) & #909457 (Martha) +He said that he wanted some money. 他說他要一些錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #388291 (CK) & #881111 (Martha) +He seldom gives his wife presents. 他很少給他的妻子禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #296782 (CK) & #848235 (Martha) +He showed me his photograph album. 他給我看了他的影集。 CC-BY 2.0 (France) Attribution: tatoeba.org #297474 (CK) & #6111980 (verdastelo9604) +He speaks both English and French. 他會講英語和法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #294007 (CK) & #848575 (Martha) +He started going bald quite young. 他很年輕就開始禿頭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292107 (CK) & #848969 (Martha) +He teaches English to his friends. 他對他的朋友教英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #304407 (CK) & #848996 (Martha) +He threw a piece of meat to a dog. 他丢了块肉给一条狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #293775 (CK) & #332957 (fucongcong) +He threw a piece of meat to a dog. 他朝狗扔了一块肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #293775 (CK) & #4621040 (Yashanti) +He took part in the Olympic Games. 他参加了奥运会。 CC-BY 2.0 (France) Attribution: tatoeba.org #289443 (CK) & #335411 (fucongcong) +He turned to his friends for help. 他尋求他的朋友的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #304376 (CK) & #842306 (Martha) +He visited many countries in Asia. 他訪問過許多亞洲國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #288701 (CK) & #848534 (Martha) +He was afraid of being laughed at. 他怕被嘲笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #299653 (CK) & #888051 (Martha) +He was scared you would shoot him. 他害怕你會開槍打他。 CC-BY 2.0 (France) Attribution: tatoeba.org #295628 (CK) & #881896 (Martha) +He was the first person to arrive. 他是第一個到達的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #283663 (CK) & #889567 (Martha) +He was tired, but he kept working. 他累了,但是他繼續工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388560 (CK) & #887781 (Martha) +He was very friendly to everybody. 他對每個人都非常友善。 CC-BY 2.0 (France) Attribution: tatoeba.org #301393 (CK) & #848726 (Martha) +He was willing to work for others. 他願意為別人工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #300095 (CK) & #883035 (Martha) +He will come back sooner or later. 他迟早会回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #301492 (CK) & #333225 (fucongcong) +He will have to go to the station. 他该去火车站了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294089 (CM) & #782319 (fucongcong) +He will regret it sooner or later. 他遲早會後悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #301488 (CK) & #883438 (Martha) +He won't go on to graduate school. 他不會繼續去上研究所。 CC-BY 2.0 (France) Attribution: tatoeba.org #301261 (CK) & #887881 (Martha) +He works from nine to five-thirty. 他從早上九點工作到下午五點半。 CC-BY 2.0 (France) Attribution: tatoeba.org #288666 (CK) & #877658 (Martha) +He'll be here around four o'clock. 他会在四点左右到达这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #288573 (CK) & #5617163 (verdastelo9604) +He's a little taller than you are. 他比你高一點點。 CC-BY 2.0 (France) Attribution: tatoeba.org #295649 (CK) & #888065 (Martha) +He's a sucker for beautiful women. 他非常喜歡漂亮的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #775996 (FeuDRenais) & #777021 (Martha) +He's afraid that he might be late. 他担心他可能会迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #301506 (CK) & #1361972 (sadhen) +He's always running short of cash. 他總是缺錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #289113 (CK) & #848684 (Martha) +He's always running short of cash. 他的現金總是不夠用。 CC-BY 2.0 (France) Attribution: tatoeba.org #289113 (CK) & #848689 (Martha) +He's bound to notice your mistake. 他必定會覺察到你的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #288748 (CK) & #848965 (Martha) +He's going to have a heart attack. 他的心臟病要發作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68067 (CK) & #881206 (Martha) +He's had many unhappy experiences. 他有许多不愉快的经历。 CC-BY 2.0 (France) Attribution: tatoeba.org #970595 (CK) & #1438466 (asosan) +He's often mistaken for a student. 他常常被誤認為是個學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #543711 (CK) & #848331 (Martha) +He's very fond of science fiction. 他非常喜欢科幻小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #288674 (CK) & #4770712 (ryanwoo) +Her mother always accompanies her. 她母亲一直陪着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308691 (CM) & #476632 (fucongcong) +Here is a photograph of my family. 這裡有一張我全家的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #61757 (CK) & #889254 (Martha) +Hey, what are you guys looking at? 嘿,你们这些家伙看什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3575500 (CK) & #5640727 (verdastelo9604) +His behavior is worthy of respect. 他的行为值得尊重。 CC-BY 2.0 (France) Attribution: tatoeba.org #286814 (CM) & #1395067 (mtdot) +His brother goes to school by bus. 他哥哥搭公車去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #285913 (CK) & #882567 (Martha) +His brother is always watching TV. 他的弟弟總是在看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #287177 (CK) & #848354 (Martha) +His house is somewhere about here. 他家在这儿某处。 CC-BY 2.0 (France) Attribution: tatoeba.org #285658 (CM) & #2040319 (sadhen) +His house was struck by lightning. 他的房子遭到雷擊。 CC-BY 2.0 (France) Attribution: tatoeba.org #285662 (CK) & #848648 (Martha) +His office is on the eighth floor. 他的辦公室在八樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #286528 (CK) & #876935 (Martha) +His speech captured our attention. 他的演講吸引了我們的注意。 CC-BY 2.0 (France) Attribution: tatoeba.org #285601 (CM) & #918013 (Martha) +His speech impressed us very much. 他的话深深触动了我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #285608 (CK) & #7774786 (jiangche) +How about eating out this evening? 今天晚上出去吃怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #243407 (CK) & #846261 (Martha) +How about something cold to drink? 喝點冷飲怎樣? CC-BY 2.0 (France) Attribution: tatoeba.org #25012 (CK) & #848330 (Martha) +How do you spell your family name? 你的姓怎麼拼? CC-BY 2.0 (France) Attribution: tatoeba.org #70371 (CK) & #885531 (Martha) +How long are you planning to stay? 你准备待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #2514993 (Dejo) & #333370 (fucongcong) +How long have you lived in Boston? 你在波士顿住了多久? CC-BY 2.0 (France) Attribution: tatoeba.org #3738270 (CK) & #5624890 (verdastelo9604) +How long have you worked with Tom? 你跟湯姆工作了多長時間? CC-BY 2.0 (France) Attribution: tatoeba.org #5937419 (CK) & #6135012 (verdastelo9604) +How long will the train stop here? 火车要在这里停多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1230443 (falcons84) & #1753088 (sadhen) +How long will you be staying here? 您將在這裡待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #66137 (CK) & #881086 (Martha) +How many days are there in a week? 一周有几天? CC-BY 2.0 (France) Attribution: tatoeba.org #535810 (autuno) & #7771958 (jiangche) +How many hours a day do you sleep? 你每天睡几个小时? CC-BY 2.0 (France) Attribution: tatoeba.org #2991688 (CK) & #5091234 (mirrorvan) +How many times have you seen this? 你看这看了多少次? CC-BY 2.0 (France) Attribution: tatoeba.org #2912549 (CK) & #5574440 (verdastelo9604) +How much is your monthly gas bill? 你每個月的瓦斯費多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #322354 (CK) & #881744 (Martha) +How often have you been to Europe? 你曾多常去過歐洲? CC-BY 2.0 (France) Attribution: tatoeba.org #24663 (CK) & #888522 (Martha) +How tall is your youngest brother? 你最小的弟弟身高多高? CC-BY 2.0 (France) Attribution: tatoeba.org #70828 (CK) & #846111 (Martha) +I admit that I was a little drunk. 我承認當時是有點醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #4104522 (Hybrid) & #4104906 (andymakespasta) +I am determined to be a scientist. 我決心要成為一名科學家。 CC-BY 2.0 (France) Attribution: tatoeba.org #23981 (CK) & #926776 (Martha) +I am glad that you have succeeded. 我很高兴你们成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17801 (CK) & #405042 (fucongcong) +I am looking forward to Christmas. 我期待聖誕節的到來。 CC-BY 2.0 (France) Attribution: tatoeba.org #253411 (CK) & #848436 (Martha) +I am not going anywhere on Sunday. 我週日哪裡也不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #259852 (CK) & #880290 (Martha) +I am ready to do anything for you. 我甘心为你做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #17375 (CK) & #794001 (fucongcong) +I am unable to finish my homework. 我無法完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #1819532 (wyodoodoyw) & #884202 (Martha) +I applied for a summer internship. 我應徵了一個暑期實習。 CC-BY 2.0 (France) Attribution: tatoeba.org #718376 (eastasiastudent) & #718377 (egg0073) +I asked the doctor some questions. 我問了醫生一些問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #256016 (CK) & #846100 (Martha) +I believe in exercising regularly. 我相信規律的運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #20215 (CK) & #834418 (Martha) +I believe you'll get over it soon. 我相信你很快就能复原。 CC-BY 2.0 (France) Attribution: tatoeba.org #52111 (Eldad) & #336892 (fucongcong) +I bought it at a department store. 我在百貨公司買了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #254796 (CK) & #881260 (Martha) +I broke the lock opening the door. 我开门的时候弄坏了锁。 CC-BY 2.0 (France) Attribution: tatoeba.org #387983 (Mouseneb) & #332912 (fucongcong) +I came to warn you not to do that. 我来警告你别那样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2300275 (CK) & #5925227 (verdastelo9604) +I can hope for a miracle, can't I? 我能期待奇迹,不能吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2301259 (CK) & #5574520 (verdastelo9604) +I can solve the problem by myself. 我可以自己解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254712 (CK) & #889560 (Martha) +I can't believe Tom just did that. 我不敢相信汤姆那么做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950874 (CK) & #5571960 (verdastelo9604) +I can't blame Tom for not waiting. 我不能怪湯姆不等著。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951351 (CK) & #6070993 (verdastelo9604) +I can't find my umbrella anywhere. 我任何地方都找不到我的傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #245011 (CK) & #849007 (Martha) +I can't put up with his arrogance. 我不能忍受他的傲慢。 CC-BY 2.0 (France) Attribution: tatoeba.org #403608 (CK) & #882511 (Martha) +I changed trains at Tokyo Station. 我在東京站換火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #259672 (CK) & #848594 (Martha) +I confessed to stealing the money. 我承認偷了錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #254103 (CK) & #848536 (Martha) +I could hardly keep from laughing. 我忍不住要大笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #321869 (CK) & #846341 (Martha) +I couldn't agree with his opinion. 我不同意他的看法。 CC-BY 2.0 (France) Attribution: tatoeba.org #395038 (CK) & #848317 (Martha) +I couldn't make him understand it. 我無法讓他明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #260312 (CK) & #918039 (Martha) +I couldn't make myself understood. 我無法讓別人了解我的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #258038 (CK) & #832994 (Martha) +I cut myself shaving this morning. 我今天早上刮鬍子的時候把自己弄傷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253423 (CK) & #848467 (Martha) +I did nothing during the holidays. 在假期中我無所事事。 CC-BY 2.0 (France) Attribution: tatoeba.org #19831 (CK) & #848573 (Martha) +I did nothing out of the ordinary. 我沒做不尋常的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #65106 (CK) & #917788 (Martha) +I did nothing out of the ordinary. 我沒做什麼與眾不同的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #65106 (CK) & #917789 (Martha) +I didn't go to school last Monday. 上周一我没去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1042300 (yessoos) & #1397396 (mtdot) +I didn't think this was your seat. 我不認為這是你的座位。 CC-BY 2.0 (France) Attribution: tatoeba.org #70497 (CK) & #881077 (Martha) +I don't believe such things exist. 我不相信這樣的事情存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #41437 (CK) & #879200 (Martha) +I don't believe that ghosts exist. 我不相信鬼魂存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #324437 (CK) & #848842 (Martha) +I don't blame you for hitting him. 我不怪你撞到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260888 (CK) & #887688 (Martha) +I don't feel like eating anything. 我不想吃任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #256401 (CK) & #846268 (Martha) +I don't have a desk in my bedroom. 我的臥室裡沒有桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734707 (CK) & #6058573 (verdastelo9604) +I don't know much about computers. 我對電腦知道的不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #253845 (CK) & #846327 (Martha) +I don't know what I should do now. 我不知道现在应该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #6829910 (CK) & #1314245 (vicch) +I don't know what to open it with. 我不知道用什么能打开它。 CC-BY 2.0 (France) Attribution: tatoeba.org #41885 (CK) & #2393780 (fenfang557) +I don't know when she got married. 我不知道她是什么时候结婚的。 CC-BY 2.0 (France) Attribution: tatoeba.org #260999 (CK) & #334408 (fucongcong) +I don't know where you want to go. 我不知道你要去哪。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574953 (n1ls) & #4504264 (egg0073) +I don't know which button to push. 我不知道要按哪個按鈕。 CC-BY 2.0 (France) Attribution: tatoeba.org #37579 (CK) & #876930 (Martha) +I don't like either tea or coffee. 我不喜歡茶也不喜歡咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257399 (CK) & #890461 (Martha) +I don't like to go out after dark. 我天黑后不喜欢出门。 CC-BY 2.0 (France) Attribution: tatoeba.org #28455 (CK) & #333762 (fucongcong) +I don't think she cares very much. 我不认为她很在意。 CC-BY 2.0 (France) Attribution: tatoeba.org #310301 (CK) & #2007047 (sadhen) +I don't think that it's necessary. 我想没这个必要。 CC-BY 2.0 (France) Attribution: tatoeba.org #7212929 (CK) & #7768256 (jiangche) +I don't think this is a good idea. 我觉得这主意不行。 CC-BY 2.0 (France) Attribution: tatoeba.org #55956 (CK) & #8463547 (gumblex) +I don't want Tom to do that alone. 我不想讓湯姆自己做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6247155 (CK) & #6332422 (verdastelo9604) +I don't want to do anything risky. 我不想做任何冒險的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #327283 (CK) & #889169 (Martha) +I don't want to have an operation. 我不想接受手術。 CC-BY 2.0 (France) Attribution: tatoeba.org #266018 (CK) & #881557 (Martha) +I don't want to hurt his feelings. 我並不想傷害他的感情。 CC-BY 2.0 (France) Attribution: tatoeba.org #285803 (CK) & #881061 (Martha) +I don't want to talk about myself. 我不想談我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #3010249 (CK) & #6325115 (verdastelo9604) +I donate blood every three months. 我每三个月献一次血。 CC-BY 2.0 (France) Attribution: tatoeba.org #8446071 (Luiaard) & #8692453 (slo_oth) +I expected him to offer some help. 我期待他提供一些幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #263331 (CK) & #888049 (Martha) +I feel comfortable in his company. 我在他的公司裡覺得很舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #284387 (CK) & #846357 (Martha) +I feel very sorry for your sister. 我對你姐姐感到非常抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #64469 (CK) & #881248 (Martha) +I feel very sorry for your sister. 我對你姐姐感到非常遺憾。 CC-BY 2.0 (France) Attribution: tatoeba.org #64469 (CK) & #881249 (Martha) +I felt an impulse to cry out loud. 我突然好想大叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #275778 (CK) & #1228939 (tsayng) +I felt hungry after the long walk. 長途步行後我覺得餓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278094 (CK) & #879168 (Martha) +I felt that my honor was at stake. 我覺得我的名譽受到了威脅。 CC-BY 2.0 (France) Attribution: tatoeba.org #258327 (bmorsello) & #884181 (Martha) +I finally persuaded him to buy it. 我終於說服了他買它。 CC-BY 2.0 (France) Attribution: tatoeba.org #255176 (CK) & #881573 (Martha) +I found a good Mexican restaurant. 我发现一家很好的墨西哥餐厅。 CC-BY 2.0 (France) Attribution: tatoeba.org #65192 (CK) & #726709 (CLARET) +I found her letter in the mailbox. 我在信箱中發現了她的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #308153 (CK) & #881864 (Martha) +I found the bed quite comfortable. 我覺得這張床相當地舒適。 CC-BY 2.0 (France) Attribution: tatoeba.org #33968 (CK) & #848971 (Martha) +I found the book very interesting. 我覺得這本書非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #43908 (CK) & #849289 (Martha) +I found the work very interesting. 我覺得這個工作非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #254359 (CK) & #848603 (Martha) +I gave them one thousand yen each. 我給了他們每個人一千日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #252453 (CK) & #879163 (Martha) +I got five hours sleep last night. 我昨晚睡了五小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #2329603 (CK) & #5574811 (verdastelo9604) +I got sick from drinking too much. 因為喝酒喝太多,所以我生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #433733 (CK) & #876359 (Martha) +I got there in time for the train. 我准时赶上了火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #20265 (CK) & #7771929 (jiangche) +I got to the station this morning. 我今天上午到了車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #257538 (CK) & #802117 (Martha) +I graduated from Kyoto University. 我畢業於京都大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #256909 (CK) & #835634 (Martha) +I guess it depends on the weather. 我想這取決於天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #278891 (CK) & #801927 (Martha) +I guess it depends on the weather. 我想這要看天氣情況而定。 CC-BY 2.0 (France) Attribution: tatoeba.org #278891 (CK) & #801928 (Martha) +I had a feeling this might happen. 我早就有感覺到這可能會發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #277676 (CK) & #801900 (Martha) +I had a feeling this might happen. 我早有一種感覺這可能會發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #277676 (CK) & #801901 (Martha) +I had a little fever this morning. 今天上午我有一點兒發燒。 CC-BY 2.0 (France) Attribution: tatoeba.org #242214 (CK) & #795998 (Martha) +I had a pleasant dream last night. 我昨晚作了一個好夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #244782 (CK) & #796064 (Martha) +I had a terrible dream last night. 昨晚我作了一個可怕的夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #244757 (CK) & #796051 (Martha) +I had nothing in common with them. 我同他们没有过共同之处。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756228 (cairnhead) & #4757240 (ryanwoo) +I have a cough and a little fever. 我咳嗽,还有点发烧。 CC-BY 2.0 (France) Attribution: tatoeba.org #135968 (dkulp) & #389812 (fucongcong) +I have already changed my clothes. 我已經換了我的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #255787 (CK) & #846104 (Martha) +I have already finished this book. 我已經讀完了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #255739 (CK) & #846442 (Martha) +I have already read today's paper. 我已經看過了今天的報紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #242596 (CK) & #846489 (Martha) +I have an urgent message from Tom. 我收到汤姆的一条紧急消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359004 (CK) & #5091613 (mirrorvan) +I have eight brothers and sisters. 我有八個兄弟姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #249771 (CK) & #846181 (Martha) +I have heard nothing from him yet. 我沒有他的任何消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #65900 (CK) & #876364 (Martha) +I have just come back from school. 我刚从学校回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #21630 (CK) & #795767 (fucongcong) +I have just washed all the dishes. 我剛洗了所有的碗盤。 CC-BY 2.0 (France) Attribution: tatoeba.org #255021 (CK) & #881545 (Martha) +I have no intention of asking him. 我不想問他。 CC-BY 2.0 (France) Attribution: tatoeba.org #410103 (CK) & #881591 (Martha) +I have not finished breakfast yet. 我還沒吃完早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #255655 (CC) & #846028 (Martha) +I have not yet finished my supper. 我還沒吃完晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #255665 (CK) & #881567 (Martha) +I have nothing in common with her. 我和她沒有共同之處。 CC-BY 2.0 (France) Attribution: tatoeba.org #308619 (CK) & #875353 (Martha) +I have to repair the refrigerator. 我要修冰箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1744951 (Amastan) & #9096094 (xjjAstrus) +I have two daughters and two sons. 我有兩個女兒和兩個兒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #249963 (CK) & #875289 (Martha) +I haven't eaten anything for days. 我好多天没吃东西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1309297 (Eldad) & #1417555 (sadhen) +I heard our dog barking all night. 我聽到我們的狗叫了一整夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #324045 (CK) & #889607 (Martha) +I helped my brother move his desk. 我幫我弟弟搬了他的書桌。 CC-BY 2.0 (France) Attribution: tatoeba.org #259571 (CK) & #877623 (Martha) +I helped my mother in the kitchen. 我在廚房裡幫媽媽。 CC-BY 2.0 (France) Attribution: tatoeba.org #275399 (CK) & #881556 (Martha) +I hope I can see you at Christmas. 我期望能在圣诞节见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #386767 (Mouseneb) & #334988 (fucongcong) +I hope Tom has learned his lesson. 我希望汤姆已经吸取教训了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8559965 (CK) & #8560803 (slo_oth) +I just said something very stupid. 我刚说了很蠢的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2372885 (CK) & #5574751 (verdastelo9604) +I just wanted somebody to help me. 我只是想有个人来帮助我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2374078 (CK) & #7704621 (leafjensen) +I know the man sitting over there. 我認識坐在那裡的那個男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #257366 (CK) & #875285 (Martha) +I know why Tom is studying French. 我知道為甚麼湯姆學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #6345514 (CK) & #6630092 (verdastelo9604) +I like oranges better than apples. 我喜歡橘子勝過蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #255925 (CK) & #849017 (Martha) +I like red wine better than white. 我喜歡紅葡萄酒勝過白葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #259918 (CK) & #795851 (Martha) +I like to take a walk after meals. 我喜欢饭后散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728098 (paper1n0) & #4625758 (Yashanti) +I listen to the radio every night. 我每晚都听收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #261866 (CK) & #335408 (fucongcong) +I listened to some CDs last night. 我昨晚了聽一些唱片光碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #257821 (CK) & #885404 (Martha) +I look forward to your next visit. 我期待著您的再次光臨。 CC-BY 2.0 (France) Attribution: tatoeba.org #32656 (CK) & #889148 (Martha) +I made up my mind to study harder. 我决定更努力地学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #255810 (CK) & #5780550 (verdastelo9604) +I managed to catch the last train. 我設法趕上了最後一班火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #255184 (CK) & #875294 (Martha) +I met her on a certain winter day. 冬天的某日,遇到了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1370479 (CK) & #8388758 (wangchou) +I met him while I was coming home. 當我回家時,我遇見了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #823796 (CK) & #824435 (Martha) +I never thought that would happen. 我从来没想到会发生那种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2388217 (CK) & #4311079 (sadhen) +I object to her going there alone. 我不同意她一个人去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #261007 (CK) & #333922 (fucongcong) +I objected to his paying the bill. 我反對他付帳單。 CC-BY 2.0 (France) Attribution: tatoeba.org #252317 (CK) & #892448 (Martha) +I planted a peach tree in my yard. 我在我的院子里种了棵桃树。 CC-BY 2.0 (France) Attribution: tatoeba.org #2772380 (CK) & #5983603 (verdastelo9604) +I played with the baby on my knee. 我在膝蓋上跟嬰兒玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #472109 (CK) & #775899 (Martha) +I prefer being poor to being rich. 我更愿意贫穷而不是富裕。 CC-BY 2.0 (France) Attribution: tatoeba.org #18524 (Zifre) & #1366060 (sadhen) +I prefer working to doing nothing. 我寧願工作也不願閒著。 CC-BY 2.0 (France) Attribution: tatoeba.org #256388 (CK) & #795263 (Martha) +I read about him in the newspaper. 我在報紙上讀到有關他的消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #258826 (CK) & #883311 (Martha) +I saw a beautiful waterfall there. 我看见那儿有个很美的瀑布。 CC-BY 2.0 (France) Attribution: tatoeba.org #1499021 (weihaiping) & #335279 (fucongcong) +I saw a cat running after the dog. 我见一只猫追着狗跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #259874 (CK) & #5942068 (verdastelo9604) +I saw a dog swim across the river. 我見過狗游泳渡河。 CC-BY 2.0 (France) Attribution: tatoeba.org #257238 (CK) & #1239331 (tsayng) +I saw my reflection in the window. 我在窗户上看見了我的映像。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396117 (CK) & #6333822 (verdastelo9604) +I sometimes still think about her. 有時候,我還是會想起她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230458 (alec) & #1227124 (tsayng) +I spent twelve hours on the train. 我在火车上待了12小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #2085 (CK) & #503110 (fucongcong) +I spilled my coffee on the carpet. 我把咖啡倒翻在地毯上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #253447 (CK) & #796687 (fucongcong) +I spoke with him about the matter. 我跟他談過這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254322 (CK) & #876747 (Martha) +I stayed home because of the rain. 因為下雨,所以我待在家裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #26744 (CK) & #881207 (Martha) +I study about two hours every day. 我每天讀書大約兩個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #28929 (CK) & #875332 (Martha) +I suppose I felt a little jealous. 我想我感到有點嫉妒。 CC-BY 2.0 (France) Attribution: tatoeba.org #52002 (CK) & #803709 (Martha) +I think he is something of a poet. 我觉得他有几分像个诗人。 CC-BY 2.0 (France) Attribution: tatoeba.org #291743 (CM) & #335116 (fucongcong) +I think my French isn't very good. 我认为我的法语不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451406 (CK) & #5595197 (verdastelo9604) +I think we should lower the price. 我觉得我们得调低价格。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887774 (CK) & #8753042 (crescat) +I think you're sitting in my seat. 我想你坐到我的座位了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50899 (CK) & #876705 (Martha) +I thought I could be of some help. 我認為我能幫點忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961217 (CK) & #6128444 (verdastelo9604) +I thought Tom and Mary were crazy. 我本以为汤姆和玛丽疯了呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961447 (CK) & #7772589 (jiangche) +I thought Tom would never shut up. 我認為湯姆不會住口。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938801 (CK) & #6075488 (verdastelo9604) +I thought that you were listening. 我以为你在听。 CC-BY 2.0 (France) Attribution: tatoeba.org #7172047 (CK) & #8500229 (black333) +I thought the questions were easy. 我認為這些問題很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #254451 (CK) & #860729 (Martha) +I tried to hit Tom, but he ducked. 我要去打汤姆,但是他避开了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540656 (CK) & #9012195 (jacintoo) +I used to have a friend named Tom. 我曾有个朋友叫汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1970185 (CK) & #5611545 (verdastelo9604) +I usually go to school by bicycle. 我通常騎自行車去上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #255506 (CK) & #883299 (Martha) +I usually got to bed about eleven. 我通常約十一點鐘上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #254893 (CK) & #888068 (Martha) +I usually have breakfast at seven. 我通常七點吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #261496 (CK) & #850378 (Martha) +I visited my friend Tom yesterday. 我昨天拜訪了我的朋友湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #253385 (CK) & #858722 (Martha) +I want a massage. I need to relax. 我想要按摩。我需要放松。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091 (Swift) & #503183 (fucongcong) +I want to eat something delicious. 我想吃點好吃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4569160 (CK) & #4061626 (egg0073) +I want to eat something delicious. 我想吃点好吃的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4569160 (CK) & #5097672 (mirrorvan) +I want to travel around the world. 我要環遊世界。 CC-BY 2.0 (France) Attribution: tatoeba.org #271162 (CK) & #875324 (Martha) +I was able to answer the question. 我能回答這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254449 (CK) & #880319 (Martha) +I was in school yesterday morning. 昨天上午我在學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #7835084 (basilhan) & #6471024 (xjjAstrus) +I was in the garden all afternoon. 我整个下午都在花园里。 CC-BY 2.0 (France) Attribution: tatoeba.org #5909995 (CK) & #5978323 (verdastelo9604) +I was shocked by yesterday's news. 昨天的消息讓我感到震驚。 CC-BY 2.0 (France) Attribution: tatoeba.org #244586 (CK) & #860840 (Martha) +I was ten minutes late for school. 我上學遲到了十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #256662 (CK) & #881225 (Martha) +I was the one who had to tell Tom. 该由我告诉汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3201878 (CK) & #5576812 (verdastelo9604) +I was tired, but I couldn't sleep. 我累了,但是我睡不著。 CC-BY 2.0 (France) Attribution: tatoeba.org #261398 (CK) & #885406 (Martha) +I was unable to complete the task. 我無法完成這個任務。 CC-BY 2.0 (France) Attribution: tatoeba.org #254379 (CK) & #887763 (Martha) +I was very impressed by his story. 我被他的故事感染了。 CC-BY 2.0 (France) Attribution: tatoeba.org #395704 (CK) & #2052199 (sadhen) +I was very impressed by his story. 他的故事給我留下了很深的印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #395704 (CK) & #2715531 (cienias) +I wasn't yet married at that time. 那個時候我還沒有結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #7802080 (CK) & #6017340 (xjjAstrus) +I waste a lot of time daydreaming. 我浪費了很多時間作白日夢。 CC-BY 2.0 (France) Attribution: tatoeba.org #257004 (CK) & #880247 (Martha) +I watch television in the evening. 我在晚上看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #262102 (CK) & #6077431 (verdastelo9604) +I watched a great movie yesterday. 我昨天看了部很棒的電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962670 (JSakuragi) & #3763512 (cienias) +I went for a walk after breakfast. 早餐後我去散步了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277785 (CK) & #876732 (Martha) +I will be free tomorrow afternoon. 我明天下午有空。 CC-BY 2.0 (France) Attribution: tatoeba.org #261923 (CK) & #860833 (Martha) +I will finish my homework by nine. 我會在九點前完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #252633 (CK) & #881091 (Martha) +I will follow you wherever you go. 無論你去哪裡我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #70666 (CK) & #850409 (Martha) +I will give you whatever you want. 我會給你任何你想要的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #70335 (CK) & #863966 (Martha) +I will live in Sasayama next year. 我明年會住在筱山。 CC-BY 2.0 (France) Attribution: tatoeba.org #262166 (CK) & #889127 (Martha) +I will never forget your kindness. 我永遠不會忘記你的親切。 CC-BY 2.0 (France) Attribution: tatoeba.org #70526 (CK) & #345856 (ZPVIP) +I will never forget your kindness. 我永遠不會忘記你的好意。 CC-BY 2.0 (France) Attribution: tatoeba.org #70526 (CK) & #850362 (Martha) +I will pay you the money tomorrow. 我明天會付錢給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323405 (CK) & #889604 (Martha) +I will play tennis this afternoon. 我今天下午會去打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #257575 (CK) & #852221 (Martha) +I wonder if I hurt Tom's feelings. 我不知道我是不是伤害了汤姆的感情。 CC-BY 2.0 (France) Attribution: tatoeba.org #3288322 (CK) & #5933801 (verdastelo9604) +I would rather not go there alone. 我寧可不要單獨去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #255702 (CK) & #893353 (Martha) +I wouldn't sell that at any price. 任何價格我都不會賣。 CC-BY 2.0 (France) Attribution: tatoeba.org #36588 (CK) & #894336 (Martha) +I'd like a glass of water, please. 請給我一杯水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270845 (CK) & #890631 (Martha) +I'd like a glass of water, please. 我要一杯水,謝謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #270845 (CK) & #890633 (Martha) +I'd like a room facing the garden. 我想要一間面對花園的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #278481 (CK) & #894038 (Martha) +I'd like my coffee after the meal. 我想吃完飯再喝咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #62188 (CK) & #892488 (Martha) +I'd like seats on the first floor. 我想要一樓的座位。 CC-BY 2.0 (France) Attribution: tatoeba.org #73193 (CK) & #894004 (Martha) +I'd like to change my reservation. 我想更改我的預訂。 CC-BY 2.0 (France) Attribution: tatoeba.org #324749 (CK) & #855686 (Martha) +I'd like to change yen to dollars. 我想把日元換成美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #60231 (CK) & #891165 (Martha) +I'd like to have cake for dessert. 我想吃蛋糕當點心。 CC-BY 2.0 (France) Attribution: tatoeba.org #39476 (CK) & #894368 (Martha) +I'd like to make an overseas call. 我想打個國際電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #241423 (CK) & #893035 (Martha) +I'd like to pay the check, please. 我想付帳,謝謝。 CC-BY 2.0 (France) Attribution: tatoeba.org #246299 (CK) & #891618 (Martha) +I'd like to reserve a single room. 我想預訂一間單人房。 CC-BY 2.0 (France) Attribution: tatoeba.org #52465 (CK) & #894047 (Martha) +I'd like to work at the cafeteria. 我想在餐廳工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #63578 (CK) & #801394 (Martha) +I'd like you to have a blood test. 我希望你做血液檢查。 CC-BY 2.0 (France) Attribution: tatoeba.org #238772 (CK) & #778733 (Martha) +I'd like you to tell me the truth. 我想要你把真相告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6221987 (CK) & #1776812 (sadhen) +I'll bring my sister to the party. 我會帶我妹妹去派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #322352 (CK) & #894084 (Martha) +I'll call you up tomorrow morning. 明天早上我會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323205 (CK) & #857967 (Martha) +I'll have to find a part-time job. 我得找一份兼職工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #67296 (CK) & #893355 (Martha) +I'll see you again this afternoon. 今天下午我會再見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #242555 (CK) & #859221 (Martha) +I'll teach you how to drive a car. 我会教你怎么开车。 CC-BY 2.0 (France) Attribution: tatoeba.org #17468 (CK) & #332775 (fucongcong) +I'll wait here till he comes back. 我会等在这儿直到他回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #283517 (CK) & #336443 (fucongcong) +I'll wait here till he comes back. 我会在这里等着到他回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283517 (CK) & #8815389 (crescat) +I'll write or phone you next week. 下周我会给你写信或打电话的。 CC-BY 2.0 (France) Attribution: tatoeba.org #997800 (CK) & #7773206 (jiangche) +I'm a member of the swimming club. 我是游泳俱樂部的會員。 CC-BY 2.0 (France) Attribution: tatoeba.org #258913 (CK) & #893038 (Martha) +I'm a member of the swimming club. 我是游泳社的成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #258913 (CK) & #893040 (Martha) +I'm afraid she may have the mumps. 我怕她可能得了腮腺炎。 CC-BY 2.0 (France) Attribution: tatoeba.org #65001 (CK) & #891065 (Martha) +I'm awfully sorry that I was late. 非常抱歉,我遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277392 (CK) & #894121 (Martha) +I'm busy looking for an apartment. 我正忙著找公寓。 CC-BY 2.0 (France) Attribution: tatoeba.org #261575 (CK) & #889559 (Martha) +I'm going to take the 10:30 train. 我要搭10:30的火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #73418 (CK) & #893209 (Martha) +I'm leaving for Chicago next week. 我下週將離開去芝加哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #262138 (CK) & #863968 (Martha) +I'm looking for some regular work. 我在找一些固定工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #278459 (CK) & #802005 (Martha) +I'm looking forward to seeing him. 我期待再次見到他。 CC-BY 2.0 (France) Attribution: tatoeba.org #284454 (CK) & #802006 (Martha) +I'm looking forward to seeing you. 我期待著見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63892 (CK) & #851433 (Martha) +I'm looking forward to your visit. 我期待著您的光臨。 CC-BY 2.0 (France) Attribution: tatoeba.org #252665 (CK) & #909849 (Martha) +I'm not always at home on Sundays. 我星期天並不總是在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #259848 (CK) & #890628 (Martha) +I'm not as strong as I used to be. 我不跟以前一樣強壯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952793 (CK) & #6119459 (verdastelo9604) +I'm repairing the washing machine. 我在修洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873038 (CK) & #9096097 (xjjAstrus) +I'm so sorry I hurt your feelings. 我很抱歉伤害了你的感情。 CC-BY 2.0 (France) Attribution: tatoeba.org #8377075 (Amastan) & #8631836 (ZeroAurora) +I'm sorry to put you through that. 很抱歉让你遭这罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2444408 (fenfang557) & #2444409 (fenfang557) +I'm sorry. I got the wrong number. 對不起,我拿錯了號碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3665455 (_undertoad) & #6086846 (verdastelo9604) +I'm studying economics in college. 我正在大学里读经济。 CC-BY 2.0 (France) Attribution: tatoeba.org #5927379 (CK) & #334302 (fucongcong) +I'm suffering from a bad headache. 我頭痛得厲害。 CC-BY 2.0 (France) Attribution: tatoeba.org #255474 (CK) & #795792 (Martha) +I'm sure Tom wanted to come along. 我确定汤姆想来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540459 (CK) & #5574629 (verdastelo9604) +I'm taking care of my grandfather. 我照顧我的爺爺。 CC-BY 2.0 (France) Attribution: tatoeba.org #4646530 (zpaden) & #850391 (Martha) +I'm too tired to walk any further. 我累得再也走不動了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317811 (CK) & #894009 (Martha) +I've already finished my homework. 我已經完成了我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #255732 (CK) & #835446 (Martha) +I've always trusted your judgment. 我一直都相信你的判断。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728581 (CM) & #7704620 (leafjensen) +I've been there a couple of times. 我去過那裡幾次。 CC-BY 2.0 (France) Attribution: tatoeba.org #73011 (CK) & #894007 (Martha) +I've got everything that you want. 我已經得到了一切你想要的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #321784 (CK) & #861001 (Martha) +I've had just about enough of her. 我真的受夠了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #273687 (CS) & #851502 (Martha) +I've just been to the post office. 我剛剛去了郵局。 CC-BY 2.0 (France) Attribution: tatoeba.org #324558 (CK) & #890967 (Martha) +I've lived here since I was a boy. 我还是一个小男孩的时候就住在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #7715138 (CK) & #609967 (sarah) +I've never been this happy before. 我从未这么高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #1290713 (CK) & #5611523 (verdastelo9604) +I've never seen him wearing jeans. 我從來沒有看過他穿牛仔褲。 CC-BY 2.0 (France) Attribution: tatoeba.org #388711 (CK) & #852184 (Martha) +I've never told anyone about this. 我没跟任何人说过这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3190983 (Hybrid) & #5613641 (verdastelo9604) +I've not heard that she will come. 我沒聽說她會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388754 (CK) & #894389 (Martha) +Iceland used to belong to Denmark. 冰島以前屬於丹麥。 CC-BY 2.0 (France) Attribution: tatoeba.org #72065 (CK) & #851490 (Martha) +If you need anything, let me know. 如果你需要任何東西,讓我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #504123 (CK) & #893172 (Martha) +If you're tired, just let me know. 困了的话就说哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #5145693 (CK) & #5100235 (mirrorvan) +In that case, I'll change my mind. 这样的话,我会改变主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #42955 (CK) & #8511547 (gumblex) +Is there anything else you'd like? 还有什么想要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #997857 (CK) & #8902614 (crescat) +Is there anything you want to eat? 有什么想吃的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4404074 (space_badger) & #5097673 (mirrorvan) +Is there enough food for everyone? 有足夠的食物給大家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #512338 (CK) & #858324 (Martha) +Is this the right train for Tokyo? 這是開往東京正確的火車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279806 (CK) & #891146 (Martha) +Is this your first visit to Japan? 這是你第一次到日本嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267007 (CK) & #891019 (Martha) +Is your school far from your home? 你的學校離你家很遠嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #21530 (CK) & #894402 (Martha) +It is a lot of fun to drive a car. 開車很好玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #265585 (CK) & #1252405 (cienias) +It is dangerous to drink too much. 酒喝太多很危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #67686 (CK) & #333839 (fucongcong) +It is difficult to play the piano. 彈鋼琴很困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #34898 (CK) & #894387 (Martha) +It is easy to answer the question. 这个问题很容易回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #46919 (CK) & #528067 (biglion) +It is getting dark. Let's go home. 天漸漸黑了。我們回家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #28450 (CK) & #891064 (Martha) +It is hard for me to believe this. 我觉得这难以置信。 CC-BY 2.0 (France) Attribution: tatoeba.org #673823 (Shady_arc) & #791377 (fucongcong) +It is not always cold in Hokkaido. 北海道並不總是寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #321262 (CK) & #893513 (Martha) +It is warmer today than yesterday. 今天比昨天暖和。 CC-BY 2.0 (France) Attribution: tatoeba.org #242854 (CK) & #346459 (fucongcong) +It looks like your dog is thirsty. 你的狗看起来口渴了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1459374 (CK) & #1787994 (sadhen) +It makes no difference who I meet. 我遇見誰都無所謂。 CC-BY 2.0 (France) Attribution: tatoeba.org #276496 (CK) & #892576 (Martha) +It seems that he knows everything. 他似乎什麼都知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #290359 (CK) & #850367 (Martha) +It was very nice seeing you again. 非常高興再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71080 (CK) & #894356 (Martha) +It will clear up in the afternoon. 今天下午天氣將轉晴。 CC-BY 2.0 (France) Attribution: tatoeba.org #240069 (CK) & #894247 (Martha) +It would appear that you're wrong. 你似乎错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256273 (FeuDRenais) & #2255112 (Venki) +It'll be finished in a day or two. 一兩天內就能結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #5497846 (CK) & #6145397 (verdastelo9604) +It's a whole new ball game for me. 這對我來說是個全新的球類遊戲。 CC-BY 2.0 (France) Attribution: tatoeba.org #42383 (CM) & #6047390 (verdastelo9604) +It's as smooth as a baby's bottom. 它像婴儿的屁股一样光滑。 CC-BY 2.0 (France) Attribution: tatoeba.org #327779 (CM) & #8765053 (crescat) +It's great! You'll laugh for sure. 太棒了!你一定會笑的。 CC-BY 2.0 (France) Attribution: tatoeba.org #435764 (CK) & #861071 (Martha) +John is two years older than I am. John比我大两岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1408618 (CK) & #343932 (fucongcong) +Kyoto is visited by many tourists. 很多游客赴京都旅游。 CC-BY 2.0 (France) Attribution: tatoeba.org #19302 (CK) & #8969830 (WilsonWong) +Let me help you with your luggage. 讓我幫您提行李。 CC-BY 2.0 (France) Attribution: tatoeba.org #772352 (Martha) & #344719 (Martha) +Let me introduce my mother to you. 讓我向你介紹我的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #71029 (CK) & #890484 (Martha) +Let's get to work on that problem. 我们研究这个问题吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663182 (CK) & #5983651 (verdastelo9604) +Let's leave as soon as he arrives. 他一到,咱們就走了吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #284010 (CK) & #718410 (egg0073) +Let's see if Tom knows what to do. 让我們看看湯姆知不知道該做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5179243 (CK) & #6103069 (verdastelo9604) +Let's visit some temples tomorrow. 讓我們明天參觀一些寺廟。 CC-BY 2.0 (France) Attribution: tatoeba.org #323235 (CK) & #834702 (Martha) +Let's wait until it stops raining. 我们等雨停吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3129170 (WestofEden) & #481184 (fucongcong) +Look at me with your books closed. 把你的書閤起來看著我。 CC-BY 2.0 (France) Attribution: tatoeba.org #322114 (CM) & #875077 (Martha) +Luckily, we found an escape route. 幸運的是,我們找到了逃生通道。 CC-BY 2.0 (France) Attribution: tatoeba.org #781482 (ingenius000) & #6568297 (verdastelo9604) +Man is the only animal that talks. 人类是唯一彼此交谈的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #270323 (CM) & #4844730 (sadhen) +Many kinds of birds live in Japan. 許多種鳥類住在日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #24542 (CK) & #891045 (Martha) +Mary doesn't usually wear jewelry. 玛丽通常不戴首饰。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132346 (CK) & #5715140 (verdastelo9604) +Mary is going to help us tomorrow. 瑪麗明天會幫我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #31871 (CK) & #893505 (Martha) +Mary is going to help us tomorrow. 玛丽明天会来帮我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #31871 (CK) & #1358629 (sadhen) +Mary put some flowers in the vase. 玛丽把一些花放进了花瓶。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144902 (Hybrid) & #4148154 (sissima) +May I ask you some more questions? 我可以問你一些問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31265 (CK) & #890676 (Martha) +May I ask you to close the window? 帮我关下窗可以吗? CC-BY 2.0 (France) Attribution: tatoeba.org #274202 (CM) & #8511417 (gumblex) +May I have something hot to drink? 我可以喝一點熱的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25045 (CK) & #894353 (Martha) +May I pay with a travelers' check? 我可以用旅行支票支付嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #325584 (CK) & #893368 (Martha) +Maybe you could draw me a picture. 你可以给我画张画。 CC-BY 2.0 (France) Attribution: tatoeba.org #3308300 (CK) & #5576815 (verdastelo9604) +Might I ask your name and address? 我能问一下您的姓名和住址吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63922 (CK) & #334622 (fucongcong) +Monkeys can learn a lot of tricks. 猴子能學會很多把戲。 CC-BY 2.0 (France) Attribution: tatoeba.org #25871 (CK) & #797092 (Martha) +Move the chair nearer to the desk. 把椅子挪一挪靠近桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #66452 (CK) & #798059 (Martha) +My best friend dances really well. 我最好的朋友舞跳得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #971469 (FeuDRenais) & #774260 (Martha) +My blood pressure is 155 over 105. 我的血壓為155比105。 CC-BY 2.0 (France) Attribution: tatoeba.org #238764 (CK) & #891737 (Martha) +My boss is keeping me pretty busy. 我的老板总让我很忙活。 CC-BY 2.0 (France) Attribution: tatoeba.org #2046861 (CK) & #5569458 (verdastelo9604) +My brother is good at mathematics. 我哥哥擅長數學。 CC-BY 2.0 (France) Attribution: tatoeba.org #250721 (CK) & #852134 (Martha) +My camera is different from yours. 我的相機跟你的不同。 CC-BY 2.0 (France) Attribution: tatoeba.org #250290 (CK) & #861126 (Martha) +My camera was stolen on the train. 我的照相机在火车上被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846107 (englishchinese) & #476640 (fucongcong) +My father bought me a new bicycle. 父親買了一輛新自行車給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6437116 (CK) & #839483 (Martha) +My father does not eat much fruit. 我父親沒有吃很多的水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #318959 (CK) & #804509 (Martha) +My father is retiring next spring. 我爸爸明年春天就要退休了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251743 (CK) & #345720 (fucongcong) +My father often washes the dishes. 我爸爸常常洗碗。 CC-BY 2.0 (France) Attribution: tatoeba.org #319064 (CK) & #861116 (Martha) +My father will come home at seven. 我爸爸會在七點鐘回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #318953 (CK) & #894361 (Martha) +My grandfather is in his nineties. 我祖父九十多歲了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273859 (CK) & #849820 (Martha) +My grandfather lived to be ninety. 我的祖父活到了九十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #251335 (CK) & #850120 (Martha) +My mother is writing a letter now. 我母親現在正在寫一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #320716 (CK) & #891757 (Martha) +My plans failed one after another. 我的計劃一個接一個的失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #9050019 (CK) & #894391 (Martha) +My sister usually walks to school. 我妹妹通常走路去學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #250975 (CK) & #858294 (Martha) +My watch gains five minutes a day. 我的手表每天走快五分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #251038 (CK) & #5856732 (verdastelo9604) +Nagoya is between Tokyo and Osaka. 名古屋在東京和大阪之間。 CC-BY 2.0 (France) Attribution: tatoeba.org #322913 (CK) & #859392 (Martha) +Neither Tom nor Mary will do that. 湯姆和瑪麗都不會做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6357248 (CK) & #6624731 (verdastelo9604) +Only six people came to the party. 只有六個人參加了派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #519109 (blay_paul) & #767122 (Martha) +Our house is conveniently located. 我們的房子位於交通便利的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #23568 (CK) & #839588 (Martha) +Our library is on the third floor. 我們的圖書館在三樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #262600 (CK) & #894042 (Martha) +Our school begins at eight-thirty. 我們學校在八點半開始上課。 CC-BY 2.0 (France) Attribution: tatoeba.org #247473 (CK) & #838620 (Martha) +Paper was invented by the Chinese. 紙是由中國人發明的。 CC-BY 2.0 (France) Attribution: tatoeba.org #263350 (CK) & #801453 (Martha) +People grow more cynical with age. 人會隨著年齡的增長而更加地玩世不恭。 CC-BY 2.0 (France) Attribution: tatoeba.org #790736 (FeuDRenais) & #790758 (Martha) +People like you shouldn't be here. 你這樣的人不該在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5725964 (CM) & #6065427 (verdastelo9604) +People of all ages like this song. 这首歌老少皆宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #282227 (CK) & #347074 (fucongcong) +Phoenix is the capital of Arizona. 鳳凰城是亞利桑那州的首府。 CC-BY 2.0 (France) Attribution: tatoeba.org #34395 (CK) & #862707 (Martha) +Pick up the pencil from the floor. 從地上撿起這支鉛筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #49467 (CK) & #798218 (Martha) +Playing cards is very interesting. 打牌很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1444022 (qana) & #414243 (fucongcong) +Please be careful not to get hurt. 请小心不要受伤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4764616 (Stalwartlover) & #4764649 (ryanwoo) +Please come over if you have time. 如果你有時間的話,請過來一趟。 CC-BY 2.0 (France) Attribution: tatoeba.org #263916 (CK) & #891316 (Martha) +Please don't look at me like that. 請不要那樣看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #41515 (CK) & #893364 (Martha) +Please feel free to ask questions. 歡迎隨時提問。 CC-BY 2.0 (France) Attribution: tatoeba.org #38505 (CK) & #851544 (Martha) +Please give me something to drink. 請給我些飲料喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #25184 (CK) & #860562 (Martha) +Please help me fill out this form. 請幫我填這張表格。 CC-BY 2.0 (France) Attribution: tatoeba.org #59061 (CK) & #894064 (Martha) +Please help yourself to the fruit. 請隨意吃水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #23935 (CK) & #864338 (Martha) +Please keep an eye on my suitcase. 請留神看著我的手提箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #250336 (CK) & #890947 (Martha) +Please speak a little more slowly. 請講慢一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #31290 (CK) & #860550 (Martha) +Please take good care of yourself. 請好好照顧你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #38469 (CK) & #860547 (Martha) +Please tell me about your problem. 請告訴我你的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #38897 (CK) & #861372 (Martha) +Please wait a little while longer. 請稍等一會兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #419663 (CK) & #861421 (Martha) +Please wait for me at the station. 請在車站等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #26092 (CK) & #891035 (Martha) +Please wake me up at six tomorrow. 請在明天六點叫我起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #965568 (FeuDRenais) & #5420416 (egg0073) +Put away your books and notebooks. 把你的書和筆記本收起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #322051 (CK) & #860755 (Martha) +Read Lesson 10 from the beginning. 從第十課的開頭讀起。 CC-BY 2.0 (France) Attribution: tatoeba.org #73450 (CK) & #797053 (Martha) +She always buys expensive clothes. 她總是買昂貴的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #310423 (CK) & #845968 (Martha) +She answered my letter right away. 她立刻回信給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #388577 (CK) & #850699 (Martha) +She asked him to mail that letter. 她請他寄那封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #316261 (CK) & #894240 (Martha) +She came to Tokyo when she was 18. 她18岁的时候来到东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #431141 (witbrock) & #1397135 (mtdot) +She carried the box under her arm. 她把箱子挾在手臂下。 CC-BY 2.0 (France) Attribution: tatoeba.org #311390 (CK) & #894046 (Martha) +She couldn't look him in the face. 她无法看着他的脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #316372 (CK) & #1314400 (vicch) +She cried when she heard the news. 當她聽到這個消息的時候,她哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388686 (CK) & #894338 (Martha) +She decorated her room with roses. 她用玫瑰花装饰了她的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #314726 (CK) & #784578 (fucongcong) +She didn't appear to recognize me. 她好像没认出我。 CC-BY 2.0 (France) Attribution: tatoeba.org #314105 (CK) & #8924824 (crescat) +She didn't feel like eating lunch. 她不想吃午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #388657 (CK) & #860960 (Martha) +She didn't like her husband drunk. 她不喜欢让自己丈夫喝醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #316745 (CK) & #5611465 (verdastelo9604) +She doesn't know how to play golf. 她不知道怎麼打高爾夫球。 CC-BY 2.0 (France) Attribution: tatoeba.org #310861 (CK) & #894034 (Martha) +She doesn't want to talk about it. 她不想提了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891 (CK) & #502857 (fucongcong) +She dusts the furniture every day. 她每天擦拭家具的灰塵。 CC-BY 2.0 (France) Attribution: tatoeba.org #317095 (CK) & #851999 (Martha) +She finds it a little distasteful. 她发现这有点令她不快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1114682 (CM) & #1394984 (mtdot) +She fumbled with a piece of paper. 她摸索著一張紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #67447 (CK) & #819017 (Martha) +She gave me access to her records. 她允許了我對她的訪問紀錄。 CC-BY 2.0 (France) Attribution: tatoeba.org #312428 (CK) & #805213 (Martha) +She gave me some practical advice. 她給了我一些實用的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #314217 (CK) & #805188 (Martha) +She got a new CD player yesterday. 她昨天得到了一個新的CD播放機。 CC-BY 2.0 (France) Attribution: tatoeba.org #313827 (CK) & #804599 (Martha) +She has been sick for three weeks. 她已經病了三個星期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #503087 (CK) & #893524 (Martha) +She has many friends in Hong Kong. 她在香港有很多朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #313615 (CK) & #891723 (Martha) +She hung the calendar on the wall. 她把日曆掛在牆上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311091 (CK) & #894001 (Martha) +She insisted that it was my fault. 她坚持认为那是我的错。 CC-BY 2.0 (France) Attribution: tatoeba.org #314323 (fucongcong) & #333503 (fucongcong) +She intended to become an actress. 她打算成為一名演員。 CC-BY 2.0 (France) Attribution: tatoeba.org #404959 (CK) & #851527 (Martha) +She is a clerk in the supermarket. 她在超市做秘书。 CC-BY 2.0 (France) Attribution: tatoeba.org #310949 (CK) & #333668 (fucongcong) +She is a native speaker of French. 她的母語是法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312122 (CK) & #892515 (Martha) +She is as beautiful as Snow White. 她像白雪公主一樣漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #316170 (CK) & #884232 (Martha) +She is as beautiful as her mother. 她跟她媽媽一樣漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #316942 (CK) & #890680 (Martha) +She is ashamed of what she's done. 她为自己所做的事感到羞耻。 CC-BY 2.0 (France) Attribution: tatoeba.org #314621 (CK) & #805098 (fucongcong) +She is eager to live in Australia. 她渴望住在澳洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #310890 (CK) & #1397315 (mtdot) +She is more pretty than beautiful. 說她美不如說她可愛。 CC-BY 2.0 (France) Attribution: tatoeba.org #310024 (CM) & #1225692 (tsayng) +She kept him waiting half an hour. 她讓他等了半小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #316480 (CK) & #894094 (Martha) +She left the hospital an hour ago. 她一小时前离开了医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #310090 (CK) & #344206 (fucongcong) +She made cookies for the children. 她给孩子们做了曲奇。 CC-BY 2.0 (France) Attribution: tatoeba.org #313947 (CK) & #335830 (fucongcong) +She made cookies for the children. 她為孩子們做了餅乾。 CC-BY 2.0 (France) Attribution: tatoeba.org #313947 (CK) & #876543 (Martha) +She made me wait for half an hour. 她让我等了半小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #388055 (CK) & #782982 (fucongcong) +She may be a nurse. I am not sure. 她可能是护士。我不太肯定。 CC-BY 2.0 (France) Attribution: tatoeba.org #313055 (CK) & #408467 (fucongcong) +She must have taken the wrong bus. 她一定是搭錯了公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #311980 (CK) & #894093 (Martha) +She must still be in her twenties. 她一定還只是二十幾歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #32709 (CK) & #894048 (Martha) +She played the guitar and he sang. 她彈吉他,他唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #308009 (CK) & #894090 (Martha) +She practiced the piano every day. 她每天練習彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #317092 (CK) & #851470 (Martha) +She put the magazine on the table. 她把雜誌放在桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #39637 (CK) & #891755 (Martha) +She should have been more careful. 她本來應該更小心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #312354 (CK) & #850355 (Martha) +She studied Japanese after dinner. 晚飯後她讀日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #317318 (CK) & #844608 (Martha) +She taught me how to write a poem. 她教我如何写诗。 CC-BY 2.0 (France) Attribution: tatoeba.org #314210 (CK) & #863296 (kooler) +She taught music for thirty years. 她教了三十年的音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #310155 (CK) & #861491 (Martha) +She told him she wanted a divorce. 她告诉他说,她想要离婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #803123 (Source_VOA) & #7771877 (jiangche) +She used to play tennis on Sunday. 她以前在週日打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #281843 (CK) & #900223 (Martha) +She visited her husband in prison. 她探望了她在監獄裡的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #313374 (CK) & #862875 (Martha) +She walked around looking for him. 她走來走去地找他。 CC-BY 2.0 (France) Attribution: tatoeba.org #388398 (CK) & #855669 (Martha) +She wants to work at the hospital. 她想在医院工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1648480 (dimitris) & #7772582 (jiangche) +She was not in the mood for lunch. 她不想吃午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #388656 (CK) & #860960 (Martha) +She was visibly afraid to be here. 顯然她害怕待在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #718049 (papabear) & #718385 (egg0073) +She went shopping with her mother. 她和她母親去購物。 CC-BY 2.0 (France) Attribution: tatoeba.org #310639 (CK) & #862729 (Martha) +She went to the movies by herself. 她獨自去看了電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #316032 (CK) & #903604 (Martha) +She will care for you from now on. 从现在开始,由她来照顾你。 CC-BY 2.0 (France) Attribution: tatoeba.org #241604 (CM) & #1735616 (sadhen) +Shine your shoes before going out. 出門前把你的鞋子擦亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #21987 (CK) & #851469 (Martha) +Shouldn't somebody be helping Tom? 难道不该有人帮汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8023747 (CK) & #8550957 (slo_oth) +Smoking is harmful to your health. 吸烟有害健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #25891 (CK) & #333670 (fucongcong) +Some boys came into the classroom. 有些男孩走進了教室。 CC-BY 2.0 (France) Attribution: tatoeba.org #24522 (CK) & #860842 (Martha) +Somebody has stolen my hair dryer. 有人偷了我的吹風機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1184699 (CK) & #2595823 (egg0073) +Someone must've stolen your watch. 一定是有人偷了你的手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #276139 (CK) & #850130 (Martha) +Someone tapped me on the shoulder. 有人拍了拍我的肩膀。 CC-BY 2.0 (France) Attribution: tatoeba.org #276154 (CK) & #859396 (Martha) +Sorry, I've got my hands full now. 對不起,現在我手上都是東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51490 (CK) & #801401 (Martha) +Swimming makes your legs stronger. 游泳使腿部强健。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753796 (garborg) & #332679 (fucongcong) +Take a deep breath and then relax. 深呼吸,然後放鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #269508 (CK) & #798267 (Martha) +Taking off is easier than landing. 起飛比降落容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #325392 (CK) & #798304 (Martha) +Teachers must understand children. 教師必須了解孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #19055 (Ignoto) & #919864 (Martha) +Tell Tom I need to borrow his car. 告訴湯姆我需要借他的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #3201840 (CK) & #6197295 (verdastelo9604) +Tell her that I am cooking dinner. 告诉她我在做晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1741529 (Amastan) & #5967320 (verdastelo9604) +Tell him to mind his own business. 告訴他別多管閒事。 CC-BY 2.0 (France) Attribution: tatoeba.org #274700 (CK) & #895581 (Martha) +Tell me your story. I am all ears. 告訴我你的故事。 我會注意聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #70319 (CM) & #772075 (Martha) +Thank you very much for your gift. 非常谢谢你的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479241 (weihaiping) & #405044 (fucongcong) +That bicycle is too small for you. 那輛腳踏車對你來說太小了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46958 (CK) & #895807 (Martha) +That couldn't have gone any worse. 再糟糕不过了 CC-BY 2.0 (France) Attribution: tatoeba.org #8581992 (CK) & #8750768 (cxpadonis) +That fox must have killed the hen. 那隻狐狸殺了一隻母雞。 CC-BY 2.0 (France) Attribution: tatoeba.org #68404 (CK) & #902935 (Martha) +That hotel was very near the lake. 這家旅館非常靠近湖。 CC-BY 2.0 (France) Attribution: tatoeba.org #492859 (CK) & #900728 (Martha) +That is the office where he works. 那是他工作的辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #71806 (CK) & #907219 (Martha) +That isn't wine. It's grape juice. 這不是葡萄酒,是葡萄汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #4904143 (Shangri_La93) & #8824099 (xjjAstrus) +That medicine isn't going to help. 那药不会管用。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726138 (CM) & #5701331 (verdastelo9604) +That river flows into the Pacific. 这条河汇入太平洋。 CC-BY 2.0 (France) Attribution: tatoeba.org #2267887 (_undertoad) & #4463430 (MirendaBABY) +That white building is a hospital. 那棟白色的建築物是一家醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #67860 (CK) & #873301 (Martha) +That's the reason he became angry. 那就是他生气的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396375 (CK) & #1873019 (sadhen) +The baby seemed to be fast asleep. 那個嬰兒似乎在熟睡中。 CC-BY 2.0 (France) Attribution: tatoeba.org #894479 (CK) & #8388809 (wangchou) +The boy didn't change his opinion. 這個男孩沒有改變他的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #492729 (CK) & #871171 (Martha) +The boy got in through the window. 這個男孩從窗戶進去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46320 (CK) & #804539 (Martha) +The bride seems to be very pretty. 新娘好像非常漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1438716 (tim1452) & #512812 (fucongcong) +The bus stop is across the street. 公車站牌就在街對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #35231 (CK) & #903473 (Martha) +The capital of Brazil is Brasilia. 巴西的首都是巴西利亚。 CC-BY 2.0 (France) Attribution: tatoeba.org #34222 (CK) & #1394928 (mtdot) +The cause of the fire was unknown. 火災的原因不明。 CC-BY 2.0 (France) Attribution: tatoeba.org #757941 (CK) & #757729 (Martha) +The child followed me to the park. 這孩子跟著我去公園。 CC-BY 2.0 (France) Attribution: tatoeba.org #47392 (CK) & #896379 (Martha) +The committee meets twice a month. 委员会一个月召开两次。 CC-BY 2.0 (France) Attribution: tatoeba.org #28251 (CK) & #1501760 (fenfang557) +The company cancelled the meeting. 公司取消了会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #680468 (Source_VOA) & #5595120 (verdastelo9604) +The drug problem is international. 毒品是国际性的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #322288 (CM) & #819828 (fucongcong) +The firemen soon put out the fire. 消防隊員很快就把火撲滅了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268157 (CK) & #908024 (Martha) +The hunters aimed at the elephant. 猎人们用枪瞄准了大象。 CC-BY 2.0 (France) Attribution: tatoeba.org #325815 (CK) & #8765864 (crescat) +The lake is deepest at this point. 这是湖的最深处。 CC-BY 2.0 (France) Attribution: tatoeba.org #59356 (CK) & #333071 (fucongcong) +The mechanic assembled the engine. 這名技師組裝了這台引擎。 CC-BY 2.0 (France) Attribution: tatoeba.org #266333 (CK) & #834655 (Martha) +The meeting will be held tomorrow. 會議將於明天舉行。 CC-BY 2.0 (France) Attribution: tatoeba.org #22479 (CK) & #874217 (Martha) +The men are wearing short sleeves. 男人們穿著短袖上衣。 CC-BY 2.0 (France) Attribution: tatoeba.org #276933 (CK) & #864424 (Martha) +The moonlight is really beautiful. 月光真美。 CC-BY 2.0 (France) Attribution: tatoeba.org #2681534 (iainmb93) & #2680872 (tsayng) +The mountain is covered with snow. 这座山被雪覆盖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #47709 (CK) & #397116 (fucongcong) +The paint was coming off the wall. 油漆從牆上脫落。 CC-BY 2.0 (France) Attribution: tatoeba.org #320235 (CK) & #895593 (Martha) +The parking lot is free of charge. 停车场是免费的。 CC-BY 2.0 (France) Attribution: tatoeba.org #45093 (CK) & #332814 (fucongcong) +The pharmacy is near the hospital. 藥局在醫院附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #462858 (lukaszpp) & #1225668 (tsayng) +The police will put you in prison. 警方將把你關在監獄裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #919859 (CK) & #919865 (Martha) +The river's water level has risen. 河的水位上升了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1578575 (CM) & #8839878 (crescat) +The roof was damaged by the storm. 屋頂被暴風雨損壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25570 (CK) & #907248 (Martha) +The situation has become hopeless. 情況變得沒有希望了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664471 (CK) & #6128465 (verdastelo9604) +The sky is clear almost every day. 天空幾乎每天是晴朗的。 CC-BY 2.0 (France) Attribution: tatoeba.org #18286 (CK) & #900250 (Martha) +The sky was filled with airplanes. 天上滿是飛機。 CC-BY 2.0 (France) Attribution: tatoeba.org #2259383 (_undertoad) & #6131312 (verdastelo9604) +The soldiers are ready for battle. 士兵們準備好要戰鬥了。 CC-BY 2.0 (France) Attribution: tatoeba.org #320109 (CK) & #869862 (Martha) +The suspect is a caucasian female. 嫌疑人是一位白人女性。 CC-BY 2.0 (France) Attribution: tatoeba.org #1779777 (Spamster) & #8842856 (crescat) +The taxi picked up two passengers. 這輛計程車載了兩名乘客。 CC-BY 2.0 (France) Attribution: tatoeba.org #40947 (CK) & #872419 (Martha) +The teacher told us a funny story. 老師跟我們說了一個有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #45795 (CK) & #903048 (Martha) +The thief got away with the money. 小偷帶著錢逃跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #36821 (CK) & #804572 (Martha) +The ticket is good for three days. 這張票的有效期是三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #1409674 (CK) & #905793 (Martha) +The ticket is good for three days. 这张票三日有效。 CC-BY 2.0 (France) Attribution: tatoeba.org #1409674 (CK) & #8496249 (gumblex) +The toilet doesn't flush properly. 厕所冲水不正常。 CC-BY 2.0 (France) Attribution: tatoeba.org #38948 (CK) & #332804 (fucongcong) +The train was crowded with people. 火车挤满了人。 CC-BY 2.0 (France) Attribution: tatoeba.org #236910 (CK) & #819751 (fucongcong) +The wind is blowing from the east. 風從東方吹來。 CC-BY 2.0 (France) Attribution: tatoeba.org #319709 (CK) & #895737 (Martha) +There are many endangered species. 有許多瀕危物种。 CC-BY 2.0 (France) Attribution: tatoeba.org #1488123 (arnxy20) & #6309825 (verdastelo9604) +There are many people in the park. 公园里有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #240421 (CK) & #332847 (fucongcong) +There are some cookies in the jar. 罐子裡有一些餅乾。 CC-BY 2.0 (France) Attribution: tatoeba.org #32097 (CK) & #895191 (Martha) +There are twelve months in a year. 一年有十二個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #372062 (saeb) & #778507 (Martha) +There is a basket under the table. 桌子底下有一個籃子。 CC-BY 2.0 (France) Attribution: tatoeba.org #63769 (CK) & #907537 (Martha) +There is a fence around the house. 這棟房子的周圍有籬笆。 CC-BY 2.0 (France) Attribution: tatoeba.org #503767 (CK) & #907215 (Martha) +There is a television in the room. 房里有个电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #44247 (CK) & #804887 (fucongcong) +There is little water in the pond. 這個池塘裡的水很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #45114 (CK) & #907528 (Martha) +There is not a drop of water left. 沒有剩下一滴水。 CC-BY 2.0 (France) Attribution: tatoeba.org #270783 (CM) & #8572028 (verdastelo9604) +There isn't any milk in the glass. 這個玻璃杯裡沒有任何的牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #61445 (CK) & #907533 (Martha) +There was a heavy rain last night. 昨晚下大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #244848 (CK) & #896636 (Martha) +There was a lot of snow last year. 去年下了很多雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #418879 (CK) & #336618 (fucongcong) +There was a sudden change of plan. 計劃突然改變。 CC-BY 2.0 (France) Attribution: tatoeba.org #280700 (CK) & #801474 (Martha) +There was no money for rebuilding. 沒有重建的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #804351 (Source_VOA) & #6483515 (verdastelo9604) +There was no one there besides me. 那儿除了我,一个人都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #50966 (CK) & #333793 (fucongcong) +There was scarcely any money left. 几乎没剩下钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #64596 (CK) & #5819686 (verdastelo9604) +There wasn't anybody in the house. 沒有人在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #24161 (CK) & #869920 (Martha) +There were some boats on the lake. 湖上有一些船。 CC-BY 2.0 (France) Attribution: tatoeba.org #239975 (CK) & #907878 (Martha) +There's a hotel across the street. 對街有一家旅館。 CC-BY 2.0 (France) Attribution: tatoeba.org #44989 (CK) & #797023 (Martha) +There's nothing I can do about it. 我对此无能为力。 CC-BY 2.0 (France) Attribution: tatoeba.org #249722 (CK) & #512076 (fucongcong) +There's something weird happening. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3132836 (CK) & #8720496 (crescat) +These flowers have a unique smell. 這些花有一種獨特的氣味。 CC-BY 2.0 (France) Attribution: tatoeba.org #388322 (CK) & #869908 (Martha) +These machines aren't working now. 这些机器目前不运转。 CC-BY 2.0 (France) Attribution: tatoeba.org #55243 (CK) & #343841 (fucongcong) +These toys are suitable for girls. 這些玩具適合女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #59882 (CK) & #870134 (Martha) +They came all the way from Brazil. 他們從巴西遠道而來。 CC-BY 2.0 (France) Attribution: tatoeba.org #305990 (CK) & #900207 (Martha) +They came all the way from Brazil. 他们从巴西远道而来。 CC-BY 2.0 (France) Attribution: tatoeba.org #305990 (CK) & #1358680 (sadhen) +They didn't know what to do first. 他們不知道先做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #306030 (CK) & #895863 (Martha) +They drive on the left in England. 在英國開車要靠左行駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #66617 (CK) & #896505 (Martha) +They eat dinner at twelve o'clock. 他們在12點吃晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #305402 (CK) & #868495 (Martha) +They have no idea what's going on. 他們不知道正在發生甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5407422 (CK) & #6630029 (verdastelo9604) +They made him captain of the team. 他們要他作隊長。 CC-BY 2.0 (France) Attribution: tatoeba.org #307390 (CK) & #900698 (Martha) +They make good use of their rooms. 他們好好地利用他們的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #306797 (CK) & #795308 (Martha) +They married when they were young. 他們在還很年輕的時候就結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306818 (CK) & #793915 (Martha) +They only sell women's shoes here. 这里只卖女鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #2967093 (_undertoad) & #349665 (fucongcong) +They reported seeing the incident. 他们报告目击了事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #305622 (CK) & #5574372 (verdastelo9604) +They should arrive by ten o'clock. 他們應該十點前到。 CC-BY 2.0 (France) Attribution: tatoeba.org #305399 (CK) & #874389 (Martha) +They speak English in New Zealand. 他們在紐西蘭講英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #35965 (CK) & #866053 (Martha) +They stole apples from my orchard. 他們從我的果園偷了蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #306693 (CK) & #874291 (Martha) +They wanted to know where Tom was. 他們想知道湯姆在哪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2016703 (CK) & #8679974 (shou) +They were all dressed in uniforms. 他們全部穿制服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306076 (kebukebu) & #761262 (Martha) +Things are getting out of control. 事情要失控了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3114000 (CK) & #6309824 (verdastelo9604) +This desk is better than that one. 這張書桌比那張好。 CC-BY 2.0 (France) Attribution: tatoeba.org #59863 (CK) & #905298 (Martha) +This homework is difficult for me. 這個家庭作業對我來說很困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #58554 (CK) & #874295 (Martha) +This is all that I know about him. 这就是我关于他知道的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #247002 (CM) & #4265002 (notabene) +This is secret between you and me. 这是我们之间的秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #55992 (CK) & #616201 (sarah) +This is the cheapest shop in town. 這是鎮上最便宜的商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #706920 (papabear) & #907323 (Martha) +This old book is worth 50,000 yen. 這本舊書值5萬日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #59372 (CK) & #896518 (Martha) +This sofa takes up too much space. 這張沙發占了太多空間。 CC-BY 2.0 (France) Attribution: tatoeba.org #7779367 (sharris123) & #4267179 (egg0073) +This theory is very controversial. 这个理论很有争议。 CC-BY 2.0 (France) Attribution: tatoeba.org #5568135 (Hybrid) & #5568458 (Lunar) +This train leaves at nine o'clock. 這班火車九點鐘發車。 CC-BY 2.0 (France) Attribution: tatoeba.org #59778 (CK) & #864417 (Martha) +This train stops at every station. 這班火車每站都停。 CC-BY 2.0 (France) Attribution: tatoeba.org #56480 (CK) & #866620 (Martha) +This work is not necessarily easy. 这项工作未必容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #59114 (CK) & #407299 (fucongcong) +Those shoes won't do for climbing. 那种鞋子用来登山是不行的。 CC-BY 2.0 (France) Attribution: tatoeba.org #48608 (CM) & #351238 (fucongcong) +To live without air is impossible. 沒有空氣生活是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #18225 (CK) & #797033 (Martha) +To put it briefly, I do not agree. 简而言之,我不同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #20956 (Eldad) & #332692 (fucongcong) +Tom and Mary have a lot in common. 汤姆和玛丽有很多共同点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095970 (CK) & #1783893 (sadhen) +Tom asked me if I liked chocolate. 汤姆问我是否喜欢巧克力。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955992 (CK) & #5650476 (verdastelo9604) +Tom avoids Mary whenever possible. 湯姆盡量避開瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3410908 (CK) & #6621223 (verdastelo9604) +Tom can do so much better than me. 湯姆可以比我做得好很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223315 (CK) & #6318531 (verdastelo9604) +Tom certainly is good at baseball. 汤姆打棒球打的非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095426 (CK) & #4104747 (maple) +Tom comes here every now and then. 汤姆常来这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956311 (CK) & #5650475 (verdastelo9604) +Tom didn't have dinner last night. 湯姆昨晚沒吃晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #37130 (CK) & #872393 (Martha) +Tom didn't seem to be intimidated. 汤姆似乎没有被吓到。 CC-BY 2.0 (France) Attribution: tatoeba.org #7543326 (CK) & #8621499 (slo_oth) +Tom didn't want to talk to anyone. 汤姆不想跟任何人说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #3181879 (CK) & #5845588 (verdastelo9604) +Tom didn't want to work in Boston. 汤姆不想在波士顿工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540402 (CK) & #7768334 (jiangche) +Tom didn't waste any time, did he? 湯姆不浪費一點時間,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #4826297 (CK) & #6119457 (verdastelo9604) +Tom doesn't even try to help Mary. 汤姆甚至没打算帮玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029199 (CK) & #5595123 (verdastelo9604) +Tom doesn't have a lot of freedom. 汤姆没有很多自由。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094508 (CK) & #9007575 (jacintoo) +Tom doesn't have a microwave oven. 汤姆没有微波炉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026169 (CK) & #1358526 (sadhen) +Tom doesn't know where Mary lives. 汤姆不知道玛丽住在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029091 (CK) & #4456373 (plutowu) +Tom doesn't seem to be a Canadian. 湯姆看來不是加拿大人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025964 (CK) & #6447554 (verdastelo9604) +Tom doesn't usually eat breakfast. 汤姆一般不吃早饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664422 (CK) & #5555341 (verdastelo9604) +Tom doesn't want to talk about it. 汤姆不想谈这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025904 (CK) & #7771906 (jiangche) +Tom doubts whether Mary is honest. 湯姆懷疑瑪麗是否誠實。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028983 (CK) & #6624724 (verdastelo9604) +Tom felt his heart beating faster. 湯姆感覺他心跳加快。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171565 (CK) & #6624611 (verdastelo9604) +Tom frequently talks in his sleep. 汤姆经常说梦话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1652083 (Spamster) & #5091601 (mirrorvan) +Tom goes for a walk every morning. Tom每天早上去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #4771505 (garborg) & #4504252 (egg0073) +Tom got a late start this morning. 汤姆今早出发晚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093991 (CK) & #5574597 (verdastelo9604) +Tom has accumulated a lot of junk. 湯姆屯了很多垃圾。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025447 (CK) & #9170399 (xjjAstrus) +Tom has been really busy recently. 汤姆最近相当忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446950 (CK) & #5095205 (mirrorvan) +Tom has recently become forgetful. Tom最近变得健忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824596 (CK) & #4844981 (pig8322) +Tom has traveled around the world. 汤姆环游了世界。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093594 (CK) & #5819699 (verdastelo9604) +Tom hasn't finished his lunch yet. 湯姆還沒吃完他的晚飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #3402495 (CK) & #6103180 (verdastelo9604) +Tom hung the calendar on the wall. 湯姆把日曆挂在墙上。 CC-BY 2.0 (France) Attribution: tatoeba.org #6258955 (CK) & #6333820 (verdastelo9604) +Tom is a distant relative of mine. 湯姆是我的遠亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549962 (sharptoothed) & #6293110 (verdastelo9604) +Tom is a lot younger than Mary is. 汤姆比玛丽年轻许多。 CC-BY 2.0 (France) Attribution: tatoeba.org #5916224 (CK) & #5926183 (verdastelo9604) +Tom is a native speaker of French. 汤姆是法语母语者。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025161 (CK) & #5780562 (verdastelo9604) +Tom is always playing video games. 湯姆總是在玩電視遊樂器。 CC-BY 2.0 (France) Attribution: tatoeba.org #37315 (CK) & #871199 (Martha) +Tom is always watching television. 湯姆總是在看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #37314 (CK) & #844574 (Martha) +Tom is anxious to know the result. 汤姆急着想知道结果。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446973 (CK) & #5095204 (mirrorvan) +Tom is living somewhere in Boston. 湯姆住在波士頓某地。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023629 (CK) & #6624632 (verdastelo9604) +Tom is old enough to go to school. 汤姆年纪足够去上学了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447040 (CK) & #5095198 (mirrorvan) +Tom is reading a book in his room. 汤姆正在自己房间里看书。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447008 (CK) & #5095201 (mirrorvan) +Tom is teaching me to how to sail. 汤姆正在教我怎么开帆船。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447023 (CK) & #5095199 (mirrorvan) +Tom is the only guy in this class. 汤姆是这个班级里唯一的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #7493759 (CK) & #2609501 (fenfang557) +Tom is waiting for Mary to return. 汤姆正在等着玛丽回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446978 (CK) & #5095203 (mirrorvan) +Tom is waiting in the living room. 汤姆正在客厅里等着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447006 (CK) & #5095202 (mirrorvan) +Tom isn't as innocent as he seems. 汤姆不像他看上去的那样无辜。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921556 (CK) & #7768223 (jiangche) +Tom kept me waiting all afternoon. Tom让我等了一下午 CC-BY 2.0 (France) Attribution: tatoeba.org #3175053 (CK) & #5975074 (zhangxr91) +Tom knew what Mary intended to do. 湯姆知道瑪麗想做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5681964 (CK) & #6728907 (verdastelo9604) +Tom knows how to behave in public. 汤姆知道在公众场合怎么样自处。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446921 (CK) & #5095209 (mirrorvan) +Tom likes to make paper airplanes. 汤姆喜欢折纸飞机。 CC-BY 2.0 (France) Attribution: tatoeba.org #2484538 (CK) & #2485281 (fenfang557) +Tom looked around, but saw no one. Tom看了看周圍,但沒看到任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2091212 (CK) & #5363874 (egg0073) +Tom pretended to not hear a thing. 汤姆假装没听见。 CC-BY 2.0 (France) Attribution: tatoeba.org #1040570 (CK) & #1438434 (asosan) +Tom realized it was time to leave. 汤姆意识到该走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3476689 (CK) & #5613640 (verdastelo9604) +Tom says he feels a little better. 汤姆说他感觉好点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641839 (CK) & #5925243 (verdastelo9604) +Tom studies philosophy at college. 汤姆在大学里学的是哲学。 CC-BY 2.0 (France) Attribution: tatoeba.org #4284629 (seltsameseeds) & #4270102 (notabene) +Tom told Mary to ask John to help. 湯姆告訴瑪麗去找約翰求助。 CC-BY 2.0 (France) Attribution: tatoeba.org #5788855 (CK) & #6111897 (verdastelo9604) +Tom told me that I should do that. 湯姆告訴我我應該去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6126351 (CK) & #6472030 (verdastelo9604) +Tom tried to control his emotions. 汤姆试着控制他的情绪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2741472 (CK) & #5576804 (verdastelo9604) +Tom usually doesn't make mistakes. 汤姆通常不犯错。 CC-BY 2.0 (France) Attribution: tatoeba.org #4900661 (CK) & #5684088 (verdastelo9604) +Tom wanted to be a better teacher. 汤姆想做个更好的教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #5515505 (CK) & #5911700 (verdastelo9604) +Tom was puzzled by what Mary said. 汤姆被玛丽说的话给难倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3447021 (CK) & #5095200 (mirrorvan) +Tom was the only boy in the class. 汤姆是班里唯一的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #6854461 (CK) & #8883977 (crescat) +Tom was the only guy in the class. 汤姆是这个班级里唯一的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #2609486 (WestofEden) & #2609501 (fenfang557) +Tom was too afraid to do anything. Tom 太胆小了以至于做不了任何事 CC-BY 2.0 (France) Attribution: tatoeba.org #4497613 (CK) & #5973400 (zhangxr91) +Tom was with a bunch of strangers. 汤姆和一堆陌生人在一起 CC-BY 2.0 (France) Attribution: tatoeba.org #8051797 (CK) & #8748585 (cxpadonis) +Tom will paint the fence tomorrow. Tom明天將漆柵欄。 CC-BY 2.0 (France) Attribution: tatoeba.org #44085 (CK) & #864421 (Martha) +Tom will try and stop me for sure. 汤姆一定会试着阻挡我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3448752 (CK) & #5685935 (verdastelo9604) +Tom's hope was to win first prize. 湯姆希望贏得第一名。 CC-BY 2.0 (France) Attribution: tatoeba.org #37347 (CK) & #902960 (Martha) +Tom's intentions were quite clear. 湯姆的目的很明顯。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664380 (CK) & #6728902 (verdastelo9604) +Tom, have you already eaten lunch? 汤姆,你已经吃过午餐了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6333087 (CK) & #8739358 (crescat) +Traffic downtown is all backed up. 市中心的交通都堵塞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41100 (CK) & #801311 (Martha) +Try to make the most of your time. 尽量试着用好你的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #264011 (CK) & #333335 (fucongcong) +Volcanic ash disrupted air travel. 火山灰阻礙航運。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103245 (supplementfacts) & #1250637 (tsayng) +Wake me up early tomorrow morning. 明天早上早點叫醒我。 CC-BY 2.0 (France) Attribution: tatoeba.org #323301 (CK) & #872153 (Martha) +Watch out for thieves around here. 在這附近當心小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #61925 (CK) & #798282 (Martha) +Watching TV is a passive activity. 看電視是一種被動的活動。 CC-BY 2.0 (France) Attribution: tatoeba.org #39161 (CK) & #797044 (Martha) +Water poured from the broken pipe. 水從破裂的水管傾瀉而出。 CC-BY 2.0 (France) Attribution: tatoeba.org #270742 (CK) & #797056 (Martha) +We are against working on Sundays. 我们反对星期日工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #281851 (CK) & #678958 (Martha) +We are supposed to know the rules. 我们应该了解相应的规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #248066 (CK) & #2456042 (fenfang557) +We can see Mt. Fuji clearly today. 今天我們可以清楚地看到富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #242966 (CK) & #896510 (Martha) +We can see more and more swallows. 我們能看到越來越多的燕子。 CC-BY 2.0 (France) Attribution: tatoeba.org #264364 (CK) & #6101480 (verdastelo9604) +We celebrate Christmas every year. 我們每年都慶祝聖誕節。 CC-BY 2.0 (France) Attribution: tatoeba.org #263282 (CK) & #839453 (Martha) +We climbed the mountain last year. 我們去年爬上了這座山。 CC-BY 2.0 (France) Attribution: tatoeba.org #263042 (CK) & #865486 (Martha) +We enjoyed listening to the music. 我們喜歡聽音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #248463 (CK) & #872211 (Martha) +We enjoyed ourselves at the party. 我們在派對上玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #262829 (CK) & #868481 (Martha) +We enjoyed singing songs together. 我們喜歡一起唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #248425 (CK) & #838566 (Martha) +We found that everyone was asleep. 我們發現每個人都睡著了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32160 (CK) & #805561 (Martha) +We gazed at the beautiful scenery. 我們望著這美麗的風景。 CC-BY 2.0 (France) Attribution: tatoeba.org #322006 (CK) & #805023 (Martha) +We got all the materials together. 我們把所有的材料放在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #23214 (CK) & #804582 (Martha) +We had a heavy frost this morning. 今天早上下厚霜了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242216 (CK) & #796073 (Martha) +We had a heavy frost this morning. 今天早上天氣嚴寒。 CC-BY 2.0 (France) Attribution: tatoeba.org #242216 (CK) & #796076 (Martha) +We have a 20% share of the market. 我们的市场占有率为20%。 CC-BY 2.0 (France) Attribution: tatoeba.org #262591 (CK) & #333837 (fucongcong) +We have lots of catching up to do. 我们要紧追。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573991 (CK) & #5574473 (verdastelo9604) +We have no reason to feel ashamed. 我们没理由害臊。 CC-BY 2.0 (France) Attribution: tatoeba.org #7584600 (stanyas) & #7767664 (jiangche) +We have our own problems to solve. 我们有自己的问题要解决。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573993 (CK) & #5574477 (verdastelo9604) +We have so many things left to do. 我们有许多未完成的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573995 (CK) & #5574480 (verdastelo9604) +We have to come to some agreement. 我们要达成一些协定。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573997 (CK) & #5574485 (verdastelo9604) +We have to look after our parents. 我們要照顧我們的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #1449108 (niceguydave) & #6065391 (verdastelo9604) +We heard a voice from the bedroom. 我们听到卧室里有声音。 CC-BY 2.0 (France) Attribution: tatoeba.org #7793717 (sharris123) & #835593 (fucongcong) +We left home early in the morning. 我們早上很早就離開家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249076 (CK) & #907532 (Martha) +We left the final decision to him. 我們讓他做最後的決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #22966 (CK) & #905854 (Martha) +We lived together for three years. 我们在一起生活了三年。 CC-BY 2.0 (France) Attribution: tatoeba.org #8917965 (porfiriy) & #3380551 (go_oo) +We must finish our homework first. 我們必須先完成我們的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #32774 (CK) & #869919 (Martha) +We must try to break the deadlock. 我们必须设法打破这个僵局。 CC-BY 2.0 (France) Attribution: tatoeba.org #28808 (CK) & #332477 (fucongcong) +We really appreciate their effort. 我们真的感激他们的努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #5725884 (CM) & #5983663 (verdastelo9604) +We should study English every day. 我们应该每天都学英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3388819 (jorro) & #5574537 (verdastelo9604) +We spent the weekend with friends. 我們和朋友一起度過週末。 CC-BY 2.0 (France) Attribution: tatoeba.org #681021 (Source_VOA) & #899972 (kanaorange) +We still have plenty of time left. 我們還剩下很多時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #32606 (CK) & #896503 (Martha) +We'll be here for three more days. 我們還要在這里待三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #3424224 (CK) & #6931232 (verdastelo9604) +We're going to do that right away. 我們馬上就去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5588322 (CK) & #6105212 (verdastelo9604) +We're having a party this evening. 我們今天晚上將舉行派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #243222 (CK) & #872110 (Martha) +We've been going out three months. 我們外出了三個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310095 (CK) & #6146509 (verdastelo9604) +What I want isn't tea, but coffee. 我要的不是茶,而是咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1615236 (CK) & #1783780 (sadhen) +What about having fish for dinner? 晚餐吃魚怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #39684 (CK) & #757561 (Martha) +What are you going to do tomorrow? 你明天要做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #68902 (CK) & #895573 (Martha) +What did you do yesterday evening? 你昨天晚上做了什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #401798 (CK) & #873190 (Martha) +What do you suppose this could be? 你认为这是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4017045 (CK) & #5670738 (verdastelo9604) +What do you think I've been doing? 你觉得我之前在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1460 (CK) & #335037 (fucongcong) +What do you think about this plan? 你覺得這個計劃怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #59546 (CK) & #903319 (Martha) +What do you think of this sweater? 你觉得这件毛衣怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #60947 (CK) & #332853 (fucongcong) +What do you usually do on Sundays? 你週日通常做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #15869 (Swift) & #775638 (Martha) +What do you usually eat for lunch? 你一般中午饭吃什么? CC-BY 2.0 (France) Attribution: tatoeba.org #4049115 (CK) & #5574717 (verdastelo9604) +What have you been doing recently? 最近在干些什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3271573 (CM) & #4878999 (musclegirlxyp) +What kind of sandwich do you want? 你要什麼樣的三明治? CC-BY 2.0 (France) Attribution: tatoeba.org #24863 (CK) & #895274 (Martha) +What movies are playing this week? 这周放什么电影? CC-BY 2.0 (France) Attribution: tatoeba.org #242086 (CK) & #333221 (fucongcong) +What nonsense are you talking now? 你胡说什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3732018 (CM) & #5819692 (verdastelo9604) +What time did your friend go home? 你朋友幾點鐘回家? CC-BY 2.0 (France) Attribution: tatoeba.org #70343 (CK) & #907257 (Martha) +What time do you leave for school? 你幾點鐘去學校? CC-BY 2.0 (France) Attribution: tatoeba.org #69576 (CK) & #903630 (Martha) +What time is the next performance? 下一場表演在幾點鐘? CC-BY 2.0 (France) Attribution: tatoeba.org #264285 (CK) & #870181 (Martha) +What time will you have breakfast? 你什麼時候吃早餐? CC-BY 2.0 (France) Attribution: tatoeba.org #277797 (CK) & #872472 (Martha) +What was it we were talking about? 我们那个时候讨论的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2599422 (CK) & #2620125 (fenfang557) +What were Tom and Mary doing here? 湯姆和瑪麗在這裡做了甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2641780 (CK) & #6147597 (verdastelo9604) +What's the meaning of this phrase? 這個片語是什麼意思? CC-BY 2.0 (France) Attribution: tatoeba.org #7784959 (CK) & #895589 (Martha) +What's the title of your new book? 你新書的書名是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #5490606 (Mar1L) & #5452170 (egg0073) +What's your schedule for tomorrow? 你明天的行程安排是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #323249 (CK) & #845449 (Martha) +When are you going to get married? 你什麼時候要結婚? CC-BY 2.0 (France) Attribution: tatoeba.org #418623 (CK) & #818195 (Martha) +When to start is the main problem. 什么时候开始是主要问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #65999 (CK) & #5978321 (verdastelo9604) +When water freezes it becomes ice. 水結凍後,變成冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #681016 (Source_VOA) & #899965 (kanaorange) +When will you come back to school? 你何時會回學校? CC-BY 2.0 (France) Attribution: tatoeba.org #70186 (CK) & #895860 (Martha) +Where did you get that much money? 你从哪里得到这么多钱的? CC-BY 2.0 (France) Attribution: tatoeba.org #2954184 (CK) & #8631094 (ZeroAurora) +Where's the nearest shopping mall? 最近的大卖场在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #27271 (CK) & #493504 (biglion) +Where's the nearest train station? 最近的火车站在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #481057 (CK) & #481169 (fucongcong) +Where's the nearest travel agency? 最近的旅行社在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #27253 (CK) & #838582 (Martha) +Which do you prefer, dogs or cats? 狗和猫你更喜欢哪一个? CC-BY 2.0 (France) Attribution: tatoeba.org #4525583 (CK) & #4887666 (musclegirlxyp) +Which is larger, Japan or England? 日本和英格兰哪个大? CC-BY 2.0 (France) Attribution: tatoeba.org #1396380 (CK) & #1862606 (sadhen) +Which one do you think is correct? 你認為哪一個是正確的? CC-BY 2.0 (France) Attribution: tatoeba.org #37932 (CK) & #905977 (Martha) +Which season do you like the best? 您最喜欢哪个季节? CC-BY 2.0 (France) Attribution: tatoeba.org #69826 (CK) & #481190 (fucongcong) +Who do you think broke the window? 你認為是誰打破了窗戶? CC-BY 2.0 (France) Attribution: tatoeba.org #276359 (CK) & #905798 (Martha) +Who does the cooking in your home? 你家里谁做饭? CC-BY 2.0 (France) Attribution: tatoeba.org #3737852 (CK) & #5613716 (verdastelo9604) +Who is that boy running toward us? 那个朝我们跑过来的男孩是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #247415 (CM) & #811026 (fucongcong) +Who's the boy swimming over there? 在那邊游泳的男孩是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #487931 (CK) & #866624 (Martha) +Who's the woman in the brown coat? 那个穿棕色大衣的女人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #7824132 (CK) & #333078 (fucongcong) +Why are we wasting time with this? 为什么我们在这上面浪费时间? CC-BY 2.0 (France) Attribution: tatoeba.org #3281689 (CK) & #4760145 (ryanwoo) +Why couldn't you sleep last night? 为什么你昨晚睡不着? CC-BY 2.0 (France) Attribution: tatoeba.org #36381 (aandrusiak) & #333168 (fucongcong) +Why did you not tell me the truth? 为什么你不告诉我真相? CC-BY 2.0 (France) Attribution: tatoeba.org #5085469 (Airvian) & #5085514 (Jubilee11) +Why do you want to become a nurse? 你为什么想成为护士呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1200081 (CK) & #2031268 (ydcok) +Why don't you give it another try? 你為什麼不再試一次? CC-BY 2.0 (France) Attribution: tatoeba.org #31501 (CK) & #896506 (Martha) +Why don't you go home early today? 你今天為什麼不早點回家呢? CC-BY 2.0 (France) Attribution: tatoeba.org #242916 (CK) & #905994 (Martha) +Why don't you stay a little while? 你為什麼不留下來一會兒? CC-BY 2.0 (France) Attribution: tatoeba.org #31317 (CK) & #907510 (Martha) +Will you drive me to the hospital? 你可以載我去醫院嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #318386 (CK) & #903036 (Martha) +Will you play tennis after school? 你放學後會去打網球嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #320995 (CK) & #872399 (Martha) +Will you please lend me a stapler? 請你借給我一支訂書機好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33416 (CK) & #905302 (Martha) +Will you show me your photo album? 你能讓我看看你的相簿嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #67293 (CK) & #895567 (Martha) +Will you tell me why you like her? 你能告诉我你为什么喜欢她吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38624 (Zifre) & #389444 (fucongcong) +Would you lend me your dictionary? 你可以借我你的字典嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776001 (CK) & #777014 (Martha) +Would you like another cup of tea? 你想再要杯茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64206 (CK) & #405218 (fucongcong) +Would you like me to see you home? 你愿意让我送你回家吗? CC-BY 2.0 (France) Attribution: tatoeba.org #236920 (CM) & #796813 (fucongcong) +Would you like some scrambled egg? 你想要來些炒蛋嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #632848 (Bilberry) & #796003 (Martha) +Would you like something to drink? 你想要什么喝的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1504 (CK) & #334493 (fucongcong) +Would you like to leave a message? 你要留言嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25056 (CK) & #903372 (Martha) +Would you mind closing the window? 你介意我關窗戶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274239 (CK) & #865378 (Martha) +Would you mind if I used your car? 如果用了你的車,你會介意嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70589 (CK) & #905809 (Martha) +Would you mind my moving your car? 你介意我移動你的車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70587 (CK) & #900682 (Martha) +Would you mind opening the window? 你介意打開窗戶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #19165 (CK) & #874468 (Martha) +Would you please come again later? 請您稍後再來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #71690 (CK) & #874530 (Martha) +You are from Hokkaido, aren't you? 你來自北海道,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68943 (CK) & #871178 (Martha) +You can swim much better than him. 你游泳游得比他好得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #69010 (CK) & #907505 (Martha) +You certainly play the piano well. 你一定鋼琴彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #237590 (CK) & #864458 (Martha) +You don't have to buy me anything. 你不必为我买什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4850098 (Hybrid) & #5911625 (verdastelo9604) +You don't have to work on Sundays. 你週日不必工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #281847 (CK) & #907499 (Martha) +You don't need to work on Sundays. 星期天的時候,你不用工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230468 (alec) & #1225684 (tsayng) +You have to study Japanese harder. 你必須更努力學習日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #69722 (CK) & #872126 (Martha) +You live in Boston now, don't you? 你住在波士頓,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3148243 (CK) & #6084401 (verdastelo9604) +You may choose whichever you want. 你可以選擇任何你想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37981 (CK) & #793884 (Martha) +You may choose whichever you want. 你可以选择任何你想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37981 (CK) & #1361976 (sadhen) +You may depend on him to help you. 你或许可以依靠他来帮助你。 CC-BY 2.0 (France) Attribution: tatoeba.org #68769 (CK) & #2394808 (fenfang557) +You ought not to make fun of them. 你别嘲弄他们。 CC-BY 2.0 (France) Attribution: tatoeba.org #317722 (CM) & #1786003 (sadhen) +You seem like a very smart person. 你看起来像一个聪明人。 CC-BY 2.0 (France) Attribution: tatoeba.org #4758228 (cairnhead) & #4764657 (ryanwoo) +You should have been more careful. 你應該要更小心的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16375 (CK) & #865410 (Martha) +You should have refused his offer. 你應該拒絕他的提議的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16829 (CK) & #871223 (Martha) +You should have stayed in the car. 你該留在車裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2961175 (meerkat) & #6065916 (verdastelo9604) +You should have warned him sooner. 你應該要更快警告他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #826521 (CK) & #827549 (Martha) +You should know that's impossible. 你应该知道这是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834913 (CK) & #4844785 (pig8322) +You should think before you speak. 你在说话前应该先思考。 CC-BY 2.0 (France) Attribution: tatoeba.org #241002 (CK) & #530712 (biglion) +You should've introduced yourself. 你本來應該介紹自己的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678520 (CK) & #842464 (Martha) +You will be sorry for it some day. 有一天这会让你遗憾的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70213 (CM) & #7769164 (jiangche) +You're the one with all the money. 你是有所有錢的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166047 (CK) & #6150031 (verdastelo9604) +You're very talkative, aren't you? 你很健谈,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5937297 (CK) & #8605839 (slo_oth) +You've done what you needed to do. 你已经尽力了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755509 (CK) & #4757622 (ryanwoo) +You've gained weight, haven't you? 你的體重增加了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1137293 (soj4l) & #873305 (Martha) +You've got a great sense of humor. 你有很好的幽默感。 CC-BY 2.0 (France) Attribution: tatoeba.org #69716 (CK) & #907882 (Martha) +You've put on weight, haven't you? 你的體重增加了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #275255 (CK) & #873305 (Martha) +Your driver's license has expired. 你的駕駛執照已經過期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16883 (CK) & #845994 (Martha) +Your friend's very late, isn't he? 你的朋友來得很晚,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3417104 (CK) & #6098072 (verdastelo9604) +Your friendship means a lot to me. 你的友誼對我來說意義重大。 CC-BY 2.0 (France) Attribution: tatoeba.org #503856 (CK) & #907876 (Martha) +"I saw her five days ago," he said. 他说:“我五天前见过她。” CC-BY 2.0 (France) Attribution: tatoeba.org #73996 (CK) & #392681 (fucongcong) +"Thanks, guys." "Don't mention it." “谢谢你们。” “不用谢。” CC-BY 2.0 (France) Attribution: tatoeba.org #2282416 (FeuDRenais) & #2279557 (cranewang) +A boy is walking across the street. 一个男孩正沿着街走。 CC-BY 2.0 (France) Attribution: tatoeba.org #27630 (CK) & #408478 (fucongcong) +A cat came out from under the desk. 一隻貓從桌底下出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #387384 (CK) & #4641835 (egg0073) +A group of young men were fighting. 一群年輕人在打架。 CC-BY 2.0 (France) Attribution: tatoeba.org #265803 (CK) & #864462 (Martha) +A lot of soldiers were killed here. 許多士兵在這裡陣亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #61876 (CK) & #865375 (Martha) +A man is responsible for his deeds. 一个人要为他的行为负责。 CC-BY 2.0 (France) Attribution: tatoeba.org #270082 (CM) & #332831 (fucongcong) +Air is to us what water is to fish. 空气对人来说就是水对鱼的意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #19358 (CK) & #787347 (fucongcong) +All of them agreed to the proposal. 他們所有的人都同意這項建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #306054 (CK) & #874351 (Martha) +Almost nobody thinks we're sisters. 几乎没有人认为我们是姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #7821194 (CK) & #1785961 (sadhen) +America is a country of immigrants. 美國是一個移民國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #67541 (CK) & #844610 (Martha) +Are you through with your homework? 你把功課做完了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #266712 (CK) & #842341 (Martha) +Asia is much larger than Australia. 亚洲比澳洲大很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #71856 (CK) & #844580 (kooler) +At first, I thought they were sick. 一开始,我以为他病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #328706 (fcbond) & #794134 (fucongcong) +Attack is the best form of defense. 進攻是最好的防禦。 CC-BY 2.0 (France) Attribution: tatoeba.org #240888 (CK) & #797083 (Martha) +Be quiet, or the baby will wake up. 安靜,否則嬰兒會醒來。 CC-BY 2.0 (France) Attribution: tatoeba.org #272056 (CM) & #846256 (Martha) +Bern is the capital of Switzerland. 伯恩是瑞士首都。 CC-BY 2.0 (France) Attribution: tatoeba.org #33861 (CK) & #836236 (Martha) +Both Tom and Mary can speak French. 汤姆和玛丽两个人都会说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2951559 (CK) & #5091203 (mirrorvan) +Both of my sisters are not married. 我的兩個姊妹並非都結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250948 (CK) & #872142 (Martha) +Can I borrow your pencil for a bit? 我能用一下你的铅笔吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4755318 (garborg) & #333383 (fucongcong) +Can you be ready to leave tomorrow? 明天你能準備好離開嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323125 (CK) & #865577 (Martha) +Can you move this desk by yourself? 你能自己搬這張桌子嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27659 (CK) & #864450 (Martha) +Can you translate this song for me? 你能为我翻译这首歌吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1779236 (Amastan) & #2241821 (sadhen) +Carrots contain a lot of vitamin A. 胡蘿蔔中含有大量的維生素A。 CC-BY 2.0 (France) Attribution: tatoeba.org #270365 (CK) & #797070 (Martha) +Cherry blossoms are very beautiful. 櫻花非常漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #244910 (CK) & #834359 (Martha) +Children love playing on the beach. 孩子們喜歡在沙灘上玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #245778 (CK) & #839554 (Martha) +Children should obey their parents. 孩子應該服從他們的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #327616 (CK) & #834440 (Martha) +Choose the color you like the best. 選你最喜歡的顏色。 CC-BY 2.0 (France) Attribution: tatoeba.org #17851 (dawnbreaksopen) & #871111 (Martha) +Clean the window with a damp cloth. 用濕布清潔窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #35850 (Dejo) & #798040 (Martha) +Come to my house whenever you like. 只要你喜歡,你隨時可以來我家。 CC-BY 2.0 (France) Attribution: tatoeba.org #66198 (CK) & #874686 (Martha) +Compared to Tokyo, London is small. 和东京比,伦敦很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #684729 (notrwanda) & #784409 (fucongcong) +Compared to yours, my car is small. 和你的车比起来,我的车很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #336063 (killer4o) & #332575 (fucongcong) +Could I have another glass of beer? 我可以再喝一杯啤酒嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34840 (CK) & #868431 (Martha) +Could you call me back a bit later? 你可以稍後回電給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1388674 (CK) & #4816285 (umidake) +Could you come and see me tomorrow? 你明天可以來看我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323090 (CK) & #870300 (Martha) +Could you introduce me to a lawyer? 你能幫我介紹一名律師嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7799652 (sharris123) & #6292461 (xjjAstrus) +Could you please sign the register? 請您在登記冊上簽名好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #266726 (CK) & #836290 (Martha) +Could you put it in plain language? 您可以简单点儿说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #30458 (CK) & #1990266 (sunnywqing) +Could you tell me how to get there? 请问我该怎么去那里? CC-BY 2.0 (France) Attribution: tatoeba.org #50888 (CK) & #8924817 (crescat) +Did Tom give any other suggestions? 汤姆提出其他建议了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3153882 (CK) & #5574817 (verdastelo9604) +Did anyone call me while I was out? 我出去的时候有人打我电话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #252063 (CK) & #333978 (fucongcong) +Did you bring an umbrella with you? 你有帶雨傘嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #245021 (CK) & #865584 (Martha) +Did you bring your family with you? 你帶著家人一起來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54497 (CK) & #780042 (Martha) +Did you call your friend in Canada? 你打電話給你在加拿大的朋友了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70141 (CK) & #873493 (Martha) +Did you enjoy your winter holidays? 你寒假過得愉快嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279654 (CK) & #838552 (Martha) +Did you get the package I sent you? 你收到我寄給你的包裹了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64261 (CK) & #874280 (Martha) +Did you go anywhere for the summer? 你夏天去了任何地方嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #24390 (CK) & #871228 (Martha) +Did you have a good time yesterday? 你昨天玩得開心嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244507 (CK) & #833200 (Martha) +Did you make this doll by yourself? 这个娃娃是你自己做的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #58313 (CK) & #512876 (fucongcong) +Dinner will be ready by six-thirty. 晚餐將在六點半前開飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #72407 (CK) & #868473 (Martha) +Do people in your country eat rice? 在您國家的人是吃米飯的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7794448 (sharris123) & #766759 (Martha) +Do we have anything I can snack on? 我們有任何我可以當零食吃的東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25275 (CK) & #871210 (Martha) +Do you have a lot of time to relax? 你有很多休閒時間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4008720 (JSakuragi) & #3988961 (tsayng) +Do you have any Japanese magazines? 你有任何日本雜誌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #281393 (CK) & #838628 (Martha) +Do you have any plans for Saturday? 你週六有什麼計劃? CC-BY 2.0 (France) Attribution: tatoeba.org #279525 (CK) & #870106 (Martha) +Do you have any plans for tomorrow? 明天你有什么安排没有? CC-BY 2.0 (France) Attribution: tatoeba.org #1064227 (CK) & #4885106 (musclegirlxyp) +Do you have something to say to me? 你有事想对我说吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2883973 (CK) & #408991 (fucongcong) +Do you have these shoes in my size? 你們這款鞋子有我的尺寸嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59594 (CK) & #872424 (Martha) +Do you know the boy in the picture? 你认识画里面的男孩吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1288659 (CK) & #1766313 (sadhen) +Do you know where your father went? 你知道你父親去哪裡了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70969 (CK) & #883475 (Martha) +Do you need help carrying anything? 你需要幫忙拿東西嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #635878 (kebukebu) & #761283 (Martha) +Do you remember where we first met? 你还记得我们第一次见面是在哪里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3390677 (CK) & #8589251 (easononizuka) +Do you still want to give me a hug? 你還想給我一個擁抱嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2016824 (CK) & #6075666 (verdastelo9604) +Do you want to eat noodles or rice? 你要吃麵條還是吃米飯? CC-BY 2.0 (France) Attribution: tatoeba.org #1477322 (eastasiastudent) & #8362583 (xjjAstrus) +Doing that is a waste of your time. 做那事是浪费你的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733134 (CK) & #5863271 (verdastelo9604) +Don't forget to turn the light off. 不要忘了關燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #279155 (CK) & #883446 (Martha) +Don't let anyone press this button. 別讓任何人按這個按鈕。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664354 (CK) & #6147595 (verdastelo9604) +Don't let him play with your phone. 別讓他玩你的手機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1741845 (Amastan) & #5414483 (egg0073) +Don't make noise when you eat soup. 當你喝湯的時候不要發出聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #495876 (CK) & #875281 (Martha) +Don't put your elbows on the table. 不要把你的手肘放在桌子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #39635 (CK) & #875262 (Martha) +Drunk driving is a serious problem. 酒驾是个严重的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075520 (CK) & #1438605 (asosan) +Dutch is closely related to German. 荷蘭語與德語關係密切。 CC-BY 2.0 (France) Attribution: tatoeba.org #64824 (CK) & #811856 (Martha) +Edison invented many useful things. 愛迪生發明了許多有用的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #65328 (CK) & #833132 (Martha) +Everything comes to those who wait. 成功屬於耐心等待的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #23931 (mailohilohi) & #806757 (Martha) +Generally, Japanese people are shy. 一般而言,日本人很害羞。 CC-BY 2.0 (France) Attribution: tatoeba.org #27316 (CK) & #834350 (Martha) +Germany was once allied with Italy. 德国曾是意大利的同盟国。 CC-BY 2.0 (France) Attribution: tatoeba.org #38963 (CK) & #472966 (fucongcong) +Give the book to whomever wants it. 这本书谁想要就给谁吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #43881 (CS) & #333436 (fucongcong) +Give this book to whoever wants it. 把這本書給想要的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #56852 (CK) & #887741 (Martha) +Good morning. It's time to wake up. 早安。是該醒來的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64917 (CK) & #876931 (Martha) +Have you already rung the doorbell? 你已經按門鈴了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5194974 (CK) & #6923208 (verdastelo9604) +Have you been busy since yesterday? 你从昨天开始就忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69397 (CK) & #5903480 (verdastelo9604) +Have you eaten your dinner already? 你吃過晚飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #31140 (CK) & #842427 (Martha) +Have you finished reading the book? 你讀完這本書了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #43897 (CK) & #839443 (Martha) +Have you found your contact lenses? 你找到你的隱形眼鏡了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54814 (CK) & #842439 (Martha) +He admonished them for being noisy. 他告誡他們不要吵鬧。 CC-BY 2.0 (France) Attribution: tatoeba.org #302571 (CM) & #778490 (Martha) +He always wanted to study Japanese. 他一直想學日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #302247 (CK) & #845433 (Martha) +He arrived at the station at seven. 他7点到了火车站。 CC-BY 2.0 (France) Attribution: tatoeba.org #288644 (CK) & #512858 (fucongcong) +He arrived in time for the meeting. 他及時趕到了會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #290617 (CK) & #887861 (Martha) +He asked me if I liked mathematics. 他問我喜不喜歡數學。 CC-BY 2.0 (France) Attribution: tatoeba.org #297665 (CK) & #4265781 (egg0073) +He bought his daughter a new dress. 他買了新衣服給他的女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #304024 (CK) & #887783 (Martha) +He broke up the chair for firewood. 他摔斷了椅子當柴火。 CC-BY 2.0 (France) Attribution: tatoeba.org #293585 (CK) & #885538 (Martha) +He carried a rifle on his shoulder. 他把步槍背在他的肩上。 CC-BY 2.0 (France) Attribution: tatoeba.org #295994 (CK) & #881233 (Martha) +He caught a boy stealing his watch. 他抓到了一個男孩正在偷他的錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #299617 (CK) & #890479 (Martha) +He denies having broken the window. 他否認打破了窗口。 CC-BY 2.0 (France) Attribution: tatoeba.org #300879 (CK) & #846011 (Martha) +He did not accept their invitation. 他沒有接受他們的邀請。 CC-BY 2.0 (France) Attribution: tatoeba.org #302562 (CK) & #844631 (Martha) +He did not appear until about noon. 直到快要中午前他都沒出現。 CC-BY 2.0 (France) Attribution: tatoeba.org #301550 (CK) & #875296 (Martha) +He did the reverse of what I asked. 他做的和我要求的相反。 CC-BY 2.0 (France) Attribution: tatoeba.org #297317 (CK) & #8605871 (slo_oth) +He didn't come to the last meeting. 他最後一場會議沒來。 CC-BY 2.0 (France) Attribution: tatoeba.org #289928 (CK) & #889122 (Martha) +He erased his speech from the tape. 他把他的那段话从磁带里删除了。 CC-BY 2.0 (France) Attribution: tatoeba.org #291807 (CK) & #335087 (fucongcong) +He failed to pass his driving test. 他沒有通過他的駕駛考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #293901 (CK) & #887681 (Martha) +He got a good grade in mathematics. 他數學得了一個好成績。 CC-BY 2.0 (France) Attribution: tatoeba.org #300236 (CK) & #804618 (Martha) +He graduated from Tokyo University. 他畢業於東京大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #301931 (CK) & #832988 (Martha) +He grasped the rope with two hands. 他用兩隻手抓住了繩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #304705 (CK) & #802081 (Martha) +He had a book on physics published. 他有一本關於物理學的書被出版了。 CC-BY 2.0 (France) Attribution: tatoeba.org #303488 (CK) & #801917 (Martha) +He had plenty of fight left in him. 他的胸中还有足够的斗志。 CC-BY 2.0 (France) Attribution: tatoeba.org #284710 (CM) & #1394865 (mtdot) +He has at least one thousand books. 他至少有一千本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #299607 (CK) & #883496 (Martha) +He has been sick since last Sunday. 他從上週日開始就生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289930 (CK) & #889636 (Martha) +He has been studying for two hours. 他学了两个小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #302157 (CK) & #784523 (fucongcong) +He has decided to become a teacher. 他已經決定要成為一名教師。 CC-BY 2.0 (France) Attribution: tatoeba.org #295358 (CK) & #875392 (Martha) +He has dozens of books about Japan. 他有幾十本關於日本的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #294353 (CK) & #875342 (Martha) +He has great confidence in himself. 他对自己很有自信。 CC-BY 2.0 (France) Attribution: tatoeba.org #292247 (CK) & #345737 (fucongcong) +He has made the same mistake twice. 他犯了兩次相同的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #288497 (CK) & #678942 (Martha) +He has more than five dictionaries. 他有五本以上的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #298912 (CK) & #802020 (Martha) +He has no sense of right and wrong. 他是非不分。 CC-BY 2.0 (France) Attribution: tatoeba.org #300378 (CM) & #332927 (fucongcong) +He has plenty of money in the bank. 他在银行里有大量钱财。 CC-BY 2.0 (France) Attribution: tatoeba.org #295550 (CK) & #1416288 (sadhen) +He has recovered from his bad cold. 他从重感冒中恢复了过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #292531 (CK) & #862709 (kooler) +He has to take two science classes. 他必須上兩堂理化課。 CC-BY 2.0 (France) Attribution: tatoeba.org #304618 (CK) & #875330 (Martha) +He hasn't actually been to America. 他還沒有真正去過美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #298975 (CK) & #848673 (Martha) +He hid himself behind a large rock. 他藏到一个大石头后面了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288235 (CK) & #8686695 (crescat) +He hurt his left foot when he fell. 當他跌倒時,他傷了他的左腳。 CC-BY 2.0 (France) Attribution: tatoeba.org #301898 (CK) & #834592 (Martha) +He is a reporter for Time magazine. 他是时代杂志的记者。 CC-BY 2.0 (France) Attribution: tatoeba.org #291598 (CK) & #336642 (fucongcong) +He is able to speak five languages. 他會說五種語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #288582 (CK) & #781564 (Martha) +He is afraid to fly in an airplane. 他怕坐飞机。 CC-BY 2.0 (France) Attribution: tatoeba.org #303270 (CK) & #512931 (fucongcong) +He is likely to be late for school. 他上学很可能会迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #294808 (CK) & #334677 (fucongcong) +He is not interested in art at all. 他對藝術一點也不感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #295759 (CK) & #917894 (Martha) +He is not very good at mathematics. 他不是很擅長數學。 CC-BY 2.0 (France) Attribution: tatoeba.org #288817 (CK) & #881856 (Martha) +He is responsible for the accident. 他為這個事故負責。 CC-BY 2.0 (France) Attribution: tatoeba.org #47157 (CK) & #848437 (Martha) +He is sometimes absent from school. 他偶爾逃學。 CC-BY 2.0 (France) Attribution: tatoeba.org #298399 (CK) & #785162 (Martha) +He is the father of three children. 他是三个孩子的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #288547 (CK) & #782119 (fucongcong) +He left his luggage at the station. 他把他的行李留在車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #294090 (CK) & #889364 (Martha) +He likes taking care of the garden. 他喜歡照顧花園。 CC-BY 2.0 (France) Attribution: tatoeba.org #301708 (CK) & #887704 (Martha) +He lived in Matsue for seven years. 他住在松江七年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #299640 (CK) & #876736 (Martha) +He lives across the street from us. 他住在我們街對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #297333 (CK) & #877517 (Martha) +He lives somewhere around the park. 他住在公园周围的某个地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #292006 (Zifre) & #334975 (fucongcong) +He looked young beside his brother. 他在他弟弟旁边显得很年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #301714 (Dejo) & #792852 (fucongcong) +He made a few grammatical mistakes. 他犯了一些文法錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #288466 (CK) & #848739 (Martha) +He made a journey around the world. 他環遊世界旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #300272 (CK) & #910326 (Martha) +He managed to get home before dark. 他設法在天黑前回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #294271 (CK) & #879130 (Martha) +He must have taken the wrong train. 他一定是搭錯火車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294964 (CK) & #876695 (Martha) +He never looks down on poor people. 他從未看不起窮人。 CC-BY 2.0 (France) Attribution: tatoeba.org #295841 (CK) & #881525 (Martha) +He passed the entrance examination. 他通過了入學考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #302284 (CK) & #834331 (Martha) +He ran faster than his brother did. 他跑得比他哥哥快。 CC-BY 2.0 (France) Attribution: tatoeba.org #295688 (CK) & #884210 (Martha) +He rescued the child from the fire. 他從火場中救了這個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #290866 (CK) & #874159 (Martha) +He said, "Let's take a short rest." 他說:「我們休息一下。」 CC-BY 2.0 (France) Attribution: tatoeba.org #299594 (CK) & #3472409 (egg0073) +He sat there with his legs crossed. 他翹著二郎腿坐在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #301011 (CK) & #881298 (Martha) +He seldom, if ever, goes to church. 他很少,如果有的話,去教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #292790 (CK) & #885520 (Martha) +He sent me some American magazines. 他送給我一些美國雜誌。 CC-BY 2.0 (France) Attribution: tatoeba.org #297472 (CK) & #846443 (Martha) +He set fire to the school building. 他放火燒了校舍。 CC-BY 2.0 (France) Attribution: tatoeba.org #296327 (CK) & #881217 (Martha) +He spends lots of money on clothes. 他在衣服上花了很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #755150 (sctld) & #6447548 (verdastelo9604) +He still hasn't answered my letter. 他还没回我的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #452964 (Benjameno) & #337881 (fucongcong) +He stuck his pencil behind his ear. 他把他的鉛筆放在他的耳朵後面。 CC-BY 2.0 (France) Attribution: tatoeba.org #298442 (CK) & #876728 (Martha) +He studies contemporary literature. 他学习现代文学。 CC-BY 2.0 (France) Attribution: tatoeba.org #296086 (CK) & #512869 (fucongcong) +He studies much harder than before. 他比以前学得更努力了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293529 (CK) & #401000 (fucongcong) +He suggested that we go for a swim. 他提议大家一起去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #293925 (CK) & #8798305 (crescat) +He talks as if he knows everything. 他說起話來好像他什麼都知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #294263 (CK) & #881114 (Martha) +He took a photograph of the family. 他拍了張全家福的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #294451 (CK) & #881713 (Martha) +He used to meditate in the morning. 他過去時常在早上的時候冥想。 CC-BY 2.0 (France) Attribution: tatoeba.org #288242 (CK) & #876744 (Martha) +He visited her house the other day. 他前幾天拜訪了她家。 CC-BY 2.0 (France) Attribution: tatoeba.org #273091 (CK) & #885412 (Martha) +He walks in the park every morning. 他每天早上在公園裡散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #303876 (CK) & #875279 (Martha) +He wanted to get his shirts washed. 他想要把他的襯衫洗乾淨。 CC-BY 2.0 (France) Attribution: tatoeba.org #288264 (CK) & #882064 (Martha) +He was caught cheating in the exam. 他在考試中作弊時被抓到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298235 (CK) & #880286 (Martha) +He was elected captain of the team. 他被選為團隊的隊長。 CC-BY 2.0 (France) Attribution: tatoeba.org #291708 (CK) & #884695 (Martha) +He was forced to sign the document. 他被迫在文件上簽字。 CC-BY 2.0 (France) Attribution: tatoeba.org #299435 (CK) & #889181 (Martha) +He was in time for the appointment. 他及時赴約了。 CC-BY 2.0 (France) Attribution: tatoeba.org #304301 (CK) & #884209 (Martha) +He was named after his grandfather. 他以他祖父的名字被命名。 CC-BY 2.0 (France) Attribution: tatoeba.org #287620 (CK) & #848592 (Martha) +He was very good at playing tennis. 他网球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291859 (CK) & #335090 (fucongcong) +He was very good at playing tennis. 他打网球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #291859 (CK) & #335091 (fucongcong) +He wasn't able to attend the party. 他無法參加這個派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #292350 (CK) & #875355 (Martha) +He went away without saying a word. 他沒說一句話就離開了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293669 (CK) & #881530 (Martha) +He will not be able to do the work. 他没能力做这个工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #290813 (CK) & #791357 (fucongcong) +He works for an advertising agency. 他為一家廣告公司工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #296320 (CK) & #848588 (Martha) +He would not agree to our proposal. 他不同意我們的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #291948 (CK) & #781213 (Martha) +He wrote down the telephone number. 他寫下這個電話號碼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #502660 (CK) & #848626 (Martha) +He's about the same age as you are. 他跟您年纪差不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173782 (CK) & #7780773 (jiangche) +He's not always at home on Sundays. 他星期日並不總是在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #302264 (CK) & #881561 (Martha) +He's not good at remembering names. 他不善于记人名。 CC-BY 2.0 (France) Attribution: tatoeba.org #1258675 (CK) & #5845629 (verdastelo9604) +He's the chairman of the committee. 他是委員會主席。 CC-BY 2.0 (France) Attribution: tatoeba.org #293567 (CK) & #780034 (Martha) +He's three inches taller than I am. 他比我高三英寸。 CC-BY 2.0 (France) Attribution: tatoeba.org #287533 (CK) & #875323 (Martha) +He's three years older than she is. 他比她大三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396207 (CK) & #1891664 (sadhen) +He's very good at playing baseball. 他垒球打得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #304268 (CK) & #336003 (fucongcong) +Help yourself to anything you like. 喜歡什麼就隨便吃吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #24967 (CK) & #846313 (Martha) +Help yourself to more potato chips. 隨意多吃點洋芋片吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #30500 (CK) & #846323 (Martha) +Help yourself to whatever you like. 你想吃什麼就吃什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #64502 (CK) & #848923 (Martha) +Help yourself to whatever you like. 隨你喜歡隨便吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #64502 (CK) & #848925 (Martha) +Her father died when she was three. 她父亲在她三岁时死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1038972 (CK) & #5900382 (verdastelo9604) +Her father is an excellent pianist. 她的父親是一位優秀的鋼琴家。 CC-BY 2.0 (France) Attribution: tatoeba.org #309703 (CK) & #848823 (Martha) +Here's the map you are looking for. 你正在找的地圖在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #61844 (CK) & #882972 (Martha) +His advice is always very sensible. 他的忠告总是很明智。 CC-BY 2.0 (France) Attribution: tatoeba.org #287149 (CK) & #332936 (fucongcong) +His explanation really isn't clear. 他的說明並不清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2681736 (FeuDRenais) & #2680854 (tsayng) +His father eats there twice a week. 他爸爸一週在那裡吃兩次。 CC-BY 2.0 (France) Attribution: tatoeba.org #287428 (CK) & #890477 (Martha) +His hobby is collecting old stamps. 他的兴趣爱好是收集旧邮票。 CC-BY 2.0 (France) Attribution: tatoeba.org #286647 (CK) & #333208 (fucongcong) +His mother looks young for her age. 他媽媽看起來比實際年齡年輕。 CC-BY 2.0 (France) Attribution: tatoeba.org #285297 (CK) & #877664 (Martha) +His parents expect too much of him. 他父母对他期望过高。 CC-BY 2.0 (France) Attribution: tatoeba.org #287797 (CK) & #332815 (fucongcong) +His pictures were hung on the wall. 他的画被悬挂在墙上。 CC-BY 2.0 (France) Attribution: tatoeba.org #285776 (CK) & #1501746 (fenfang557) +His voice is pleasant to listen to. 他的声音很悦耳。 CC-BY 2.0 (France) Attribution: tatoeba.org #1223870 (sacredceltic) & #1454448 (sadhen) +His voice is pleasant to listen to. 他的声音听着很舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1223870 (sacredceltic) & #1454450 (sadhen) +His wife is quite a talented woman. 他老婆很有才。 CC-BY 2.0 (France) Attribution: tatoeba.org #285632 (CK) & #1694979 (sadhen) +Hokkaido is to the north of Honshu. 北海道在日本本州的北部。 CC-BY 2.0 (France) Attribution: tatoeba.org #321287 (CK) & #887907 (Martha) +Hokkaido is to the north of Sendai. 北海道在仙台的北方。 CC-BY 2.0 (France) Attribution: tatoeba.org #321284 (CK) & #798086 (Martha) +Hollywood isn't what it used to be. 好萊塢不是以前的樣子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35052 (CK) & #883466 (Martha) +How about going out to eat tonight? 今晚出去吃怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1540880 (SHamp) & #336080 (fucongcong) +How are your parents getting along? 你的父母是如何相處的? CC-BY 2.0 (France) Attribution: tatoeba.org #54285 (CK) & #848972 (Martha) +How dare you speak to me like that! 你怎么敢这样跟我说话! CC-BY 2.0 (France) Attribution: tatoeba.org #66279 (CM) & #335422 (fucongcong) +How did you get to know each other? 你们怎么互相认识的? CC-BY 2.0 (France) Attribution: tatoeba.org #4013933 (CK) & #5911759 (verdastelo9604) +I agree with Tom a hundred percent. 我百分之百同意Tom。 CC-BY 2.0 (France) Attribution: tatoeba.org #5452155 (CK) & #5452166 (egg0073) +I agree with some of your opinions. 我同意你一部分的意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #17322 (CK) & #1397354 (mtdot) +I always catch colds in the winter. 我在冬季總是感冒。 CC-BY 2.0 (France) Attribution: tatoeba.org #473598 (CK) & #881062 (Martha) +I am convinced that he is innocent. 我相信他是無辜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283570 (CK) & #881095 (Martha) +I am doubtful whether he will come. 我怀疑他是否会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #284296 (CK) & #334297 (fucongcong) +I am going to play tennis tomorrow. 我明天會去打網球。 CC-BY 2.0 (France) Attribution: tatoeba.org #261921 (CK) & #881532 (Martha) +I am looking forward to seeing you. 我期待見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17481 (CK) & #875290 (Martha) +I am lost. Can you help me, please? 我迷路了,能不能请您帮我一下? CC-BY 2.0 (France) Attribution: tatoeba.org #436399 (lukaszpp) & #462002 (fucongcong) +I am married and have two children. 我结婚了,而且有两个孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1758 (brauliobezerra) & #334650 (fucongcong) +I am positive that he has finished. 我確信他已經完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283837 (CK) & #889197 (Martha) +I am repairing the washing machine. 我在修洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1661137 (Amastan) & #9096097 (xjjAstrus) +I am staying for another few weeks. 我還要再待幾個星期。 CC-BY 2.0 (France) Attribution: tatoeba.org #255784 (CK) & #881201 (Martha) +I am sure that he is an honest man. 我确定他是个老实人。 CC-BY 2.0 (France) Attribution: tatoeba.org #260113 (CK) & #1235637 (sunnywqing) +I am waiting for the store to open. 我正等著這家店開門。 CC-BY 2.0 (France) Attribution: tatoeba.org #259597 (CK) & #785172 (Martha) +I am willing to attend the meeting. 我願意參加這場會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #254259 (CK) & #917962 (Martha) +I am writing a draft of the speech. 我在寫演講的草稿。 CC-BY 2.0 (France) Attribution: tatoeba.org #254018 (CM) & #6633873 (verdastelo9604) +I asked a policeman for directions. 我向一個警察問路。 CC-BY 2.0 (France) Attribution: tatoeba.org #257163 (CK) & #848463 (Martha) +I asked him if he knew her address. 我问他是否知道她的住址。 CC-BY 2.0 (France) Attribution: tatoeba.org #73711 (CK) & #1468430 (sadhen) +I bought a new computer last month. 上个月我买了一台新电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #259048 (CK) & #510764 (fucongcong) +I bought two tickets for a concert. 我买了两张音乐会的票。 CC-BY 2.0 (France) Attribution: tatoeba.org #253824 (CK) & #791439 (fucongcong) +I can not bear this noise any more. 我无法再忍受那噪音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58024 (CM) & #335537 (fucongcong) +I can seldom find time for reading. 我很少能抽出时间看书。 CC-BY 2.0 (France) Attribution: tatoeba.org #249960 (CK) & #528036 (biglion) +I can walk to school in 10 minutes. 我走路10分钟能到学校 。 CC-BY 2.0 (France) Attribution: tatoeba.org #1616 (CK) & #334145 (fucongcong) +I can't decide if I'm happy or sad. 我无法确定我是高兴还是难过。 CC-BY 2.0 (France) Attribution: tatoeba.org #646702 (darinmex) & #812344 (fucongcong) +I can't help feeling sorry for him. 我不禁為他感到難過。 CC-BY 2.0 (France) Attribution: tatoeba.org #260912 (CK) & #785242 (Martha) +I can't study with you watching me. 你盯著我看使我無法讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #71468 (CK) & #941164 (Martha) +I couldn't get him to stop smoking. 我無法讓他停止吸煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #284603 (CK) & #880293 (Martha) +I couldn't understand him at first. 起初我聽不懂他說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #257676 (CK) & #848577 (Martha) +I did not expect it to be that big. 我没想到它有那么大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1532242 (Spamster) & #5780557 (verdastelo9604) +I didn't know that he was Japanese. 我不知道他是日本人。 CC-BY 2.0 (France) Attribution: tatoeba.org #260133 (CK) & #390549 (fucongcong) +I didn't know who Tom was at first. 我一开始不知道汤姆是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2314964 (CK) & #5663582 (verdastelo9604) +I didn't notice the light turn red. 我沒有注意到燈變紅色了。 CC-BY 2.0 (France) Attribution: tatoeba.org #268847 (CK) & #880246 (Martha) +I didn't think Tom would be scared. 我没想到汤姆会害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #6246353 (CK) & #8696336 (crescat) +I don't have the time or the money. 我沒有時間,也沒有錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #473580 (CK) & #6068645 (xjjAstrus) +I don't know her, nor do I want to. 我不认识她,也不想认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #396559 (blay_paul) & #786015 (fucongcong) +I don't know when he'll come again. 我不知道他什麼時候會再來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #242397 (CK) & #888400 (Martha) +I don't know whether she will come. 我不知道她是否會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #308537 (CK) & #883501 (Martha) +I don't know why they are fighting. 我不知道他們為什麼在打架。 CC-BY 2.0 (France) Attribution: tatoeba.org #400205 (CK) & #881198 (Martha) +I don't like living in the country. 我不喜歡住在鄉下。 CC-BY 2.0 (France) Attribution: tatoeba.org #259610 (CK) & #889603 (Martha) +I don't like novels without heroes. 我不喜欢没有英雄的小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #697823 (papabear) & #512879 (fucongcong) +I don't like studying in this heat. 我不喜歡在這麼熱的氣溫下唸書。 CC-BY 2.0 (France) Attribution: tatoeba.org #58540 (CK) & #842469 (Martha) +I don't like the food at that deli. 我不喜欢那家熟食店里的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #5141750 (AlanF_US) & #5701323 (verdastelo9604) +I don't like the taste of tomatoes. 我不喜歡蕃茄的味道。 CC-BY 2.0 (France) Attribution: tatoeba.org #255274 (CK) & #881745 (Martha) +I don't mind if it's a little cold. 稍微冷一点没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075745 (CK) & #1438331 (asosan) +I don't mind if it's hot and spicy. 辣点儿没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076327 (CK) & #1438343 (asosan) +I don't mind if the weather is hot. 天气热点儿没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076328 (CK) & #1438364 (asosan) +I don't plan to stay for very long. 我沒有打算停留太久。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848329 (CK) & #6633881 (verdastelo9604) +I don't remember where I bought it. 我记不起来我在哪里买的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41881 (adjusting) & #819822 (fucongcong) +I don't think Tom understands that. 我不認為湯姆明白。 CC-BY 2.0 (France) Attribution: tatoeba.org #6048744 (CK) & #6120929 (verdastelo9604) +I don't think she can speak French. 我認為她不會講法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312127 (CK) & #876348 (Martha) +I don't want to go to church today. 今天我不想去教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #4774598 (Germic) & #5114729 (xjjAstrus) +I don't want to hear your theories. 我不想听你的理论。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033633 (CK) & #5978327 (verdastelo9604) +I feel better today than yesterday. 我今天感覺比昨天好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242678 (CK) & #848807 (Martha) +I feel like eating something sweet. 我想吃點甜的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #25178 (CK) & #848334 (Martha) +I feel like getting some fresh air. 我想要呼吸一些新鮮空氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #269327 (CK) & #880396 (Martha) +I fell asleep while reading a book. 我看书的时候睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1409550 (CK) & #1446791 (asosan) +I felt something moving on my back. 我感到背上有东西动。 CC-BY 2.0 (France) Attribution: tatoeba.org #256354 (CK) & #6089773 (verdastelo9604) +I found the key underneath the mat. 我在擦鞋墊下面發現了這把鑰匙。 CC-BY 2.0 (France) Attribution: tatoeba.org #255674 (CK) & #805038 (Martha) +I found your letter in the mailbox. 我在信箱中發現了你的信件。 CC-BY 2.0 (France) Attribution: tatoeba.org #71515 (CK) & #805032 (Martha) +I gave them clothing and some food. 我給了他們衣服和一些食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #260836 (CK) & #805089 (Martha) +I get scared just walking past him. 只是從他旁邊走過去我就覺得害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #285636 (CK) & #805017 (Martha) +I had a slight headache last night. 我昨晚有輕微的頭痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #324569 (CK) & #881074 (Martha) +I had my bicycle stolen last night. 昨晚我的自行车被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257848 (CK) & #334530 (fucongcong) +I had my brother repair my bicycle. 我讓我的哥哥修理我的腳踏車。 CC-BY 2.0 (France) Attribution: tatoeba.org #257149 (CK) & #876738 (Martha) +I had my brother repair my bicycle. 我让我哥修理我的自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #257149 (CK) & #1366176 (sadhen) +I had to take shelter under a tree. 我不得不在树下躲雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #323586 (CK) & #343941 (fucongcong) +I have a high opinion of this book. 我對這本書評價很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #253747 (CK) & #6119419 (verdastelo9604) +I have a lot of friends to help me. 我有很多朋友帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #262436 (CK) & #333352 (fucongcong) +I have been a teacher for 15 years. 我當老師已經15年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19069 (CK) & #889580 (Martha) +I have no regrets about what I did. 我對我做過的事不後悔。 CC-BY 2.0 (France) Attribution: tatoeba.org #258219 (CK) & #777691 (Martha) +I have one brother and two sisters. 我有一个兄弟和两个姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #543688 (saasmath) & #846771 (fucongcong) +I have to get my computer repaired. 我必須把我的電腦拿去給人家修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #253849 (CK) & #883430 (Martha) +I haven't done very much this year. 我今年沒做多少事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5694022 (CK) & #6325067 (verdastelo9604) +I haven't finished my homework yet. 我還沒有完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #32599 (CK) & #846387 (Martha) +I haven't finished my homework yet. 我还没做完作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #32599 (CK) & #7768219 (jiangche) +I haven't seen him for a long time. 我很久没见过他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19847 (CK) & #334582 (fucongcong) +I haven't yet finished my homework. 我还没做完作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #3378503 (hoffmania) & #7768219 (jiangche) +I hear that she's a famous actress. 我聽說她是個有名的演員。 CC-BY 2.0 (France) Attribution: tatoeba.org #388308 (CK) & #876737 (Martha) +I heard that Tom attempted suicide. 我聽說湯姆試圖自殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952218 (CK) & #6101263 (verdastelo9604) +I helped my mother wash the dishes. 我幫媽媽洗碗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261675 (CK) & #881231 (Martha) +I hope Tom's predictions are wrong. 我希望汤姆的预测是错的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5641523 (CK) & #5684082 (verdastelo9604) +I hope that you will get well soon. 我希望您快就会好起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #17787 (CK) & #335512 (fucongcong) +I hope that your brother is better. 我希望你弟弟好点了。 CC-BY 2.0 (France) Attribution: tatoeba.org #582144 (qdii) & #811277 (fucongcong) +I intend to study abroad next year. 我打算明年出國留學。 CC-BY 2.0 (France) Attribution: tatoeba.org #262169 (CK) & #881261 (Martha) +I invited my neighbor to breakfast. 我請我的鄰居來吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #453895 (saasmath) & #6678455 (verdastelo9604) +I know everything that you've done. 我知道你做的所有事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2375873 (CK) & #6103053 (verdastelo9604) +I know how to make beef stroganoff. 我知道怎麼做俄式炒牛肉片。 CC-BY 2.0 (France) Attribution: tatoeba.org #34857 (CK) & #881693 (Martha) +I know that money isn't everything. 我知道金钱不是万能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #253262 (CK) & #476794 (biglion) +I know that money isn't everything. 我知道金钱不代表一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #253262 (CK) & #799207 (fucongcong) +I know the boy standing over there. 我知道站在那裡的那個男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #255697 (CK) & #881522 (Martha) +I know those tall girls quite well. 我跟那些高個子的女孩很熟稔。 CC-BY 2.0 (France) Attribution: tatoeba.org #252962 (CK) & #876712 (Martha) +I listen to the radio after dinner. 晚饭后我听收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #262096 (CK) & #784389 (fucongcong) +I live in an apartment in the city. 我住在城市中的一間公寓裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #6157017 (CM) & #6157018 (User76378) +I look forward to hearing from you. 我期待收到你的來信。 CC-BY 2.0 (France) Attribution: tatoeba.org #64000 (CK) & #880312 (Martha) +I look forward to seeing you again. 我期待著再次見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #32704 (CK) & #889365 (Martha) +I lost my ticket. What should I do? 我丢了我的票。我該怎麼辦? CC-BY 2.0 (France) Attribution: tatoeba.org #272491 (CK) & #6068360 (verdastelo9604) +I need a bag. Will you lend me one? 我需要个包。你能借我一个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #21227 (CK) & #4267419 (notabene) +I need to ask you a silly question. 我必须问你一个蠢问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1417 (CK) & #501415 (fucongcong) +I opened the box and looked inside. 我打開盒子看看裡面。 CC-BY 2.0 (France) Attribution: tatoeba.org #259923 (CK) & #875381 (Martha) +I ordered those books from Germany. 我從德國訂購了那些書。 CC-BY 2.0 (France) Attribution: tatoeba.org #254784 (CK) & #864303 (Martha) +I owe it you that I am still alive. 多亏了你,我还活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #246756 (CM) & #1750364 (sadhen) +I prefer hardwood floors to carpet. 我喜歡硬木地板勝過地毯。 CC-BY 2.0 (France) Attribution: tatoeba.org #253306 (CK) & #910231 (Martha) +I recognized your voice right away. 我立刻認出了你的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #52263 (CK) & #864313 (Martha) +I remember last summer's adventure. 我记得去年夏天的历险。 CC-BY 2.0 (France) Attribution: tatoeba.org #256877 (CM) & #829683 (fucongcong) +I returned the book to the library. 我把書還給圖書館。 CC-BY 2.0 (France) Attribution: tatoeba.org #418871 (CK) & #771080 (Martha) +I saw a dirty dog enter the garden. 我看见一条脏狗进了花园。 CC-BY 2.0 (France) Attribution: tatoeba.org #435256 (aliene) & #426382 (fucongcong) +I saw a helicopter flying overhead. 我看见一架直升飞机在头顶飞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406061 (CK) & #4845009 (pig8322) +I saw something strange in the sky. 我看见天上有奇怪的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #18308 (CK) & #426401 (fucongcong) +I shouldn't have told you anything. 我本不该告诉您什么的。 CC-BY 2.0 (France) Attribution: tatoeba.org #646984 (CK) & #818938 (fucongcong) +I slipped and fell down the stairs. 我滑了一跤並從樓梯上摔下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #256707 (CK) & #889133 (Martha) +I spent no more than three dollars. 我只花了三美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #254954 (CK) & #834728 (Martha) +I studied English when I was there. 當我在那裡的時候,我學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #252165 (CK) & #881747 (Martha) +I studied for a while this morning. 我今天早上讀了一會兒書。 CC-BY 2.0 (France) Attribution: tatoeba.org #253393 (CK) & #883010 (Martha) +I suggest that we go out on Friday. 我建议我们星期五出去玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #2222 (CK) & #1772678 (sadhen) +I swear I'll never do such a thing. 我发誓我不会做这种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810502 (CM) & #5617156 (verdastelo9604) +I take the train to work every day. 我每天搭火車上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #4487322 (CK) & #759563 (Martha) +I think I should get right to work. 我認為我該馬上去工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2407830 (CK) & #6135021 (verdastelo9604) +I think Tom is a bit too impatient. 我觉得汤姆有些过于性急了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3184367 (CK) & #8703974 (crescat) +I think this book is worth reading. 我覺得這本書值得一讀。 CC-BY 2.0 (France) Attribution: tatoeba.org #56882 (CK) & #887801 (Martha) +I think we should change the topic. 我認為我們該換個題目。 CC-BY 2.0 (France) Attribution: tatoeba.org #3774813 (Hybrid) & #6084405 (verdastelo9604) +I think we should reduce the price. 我觉得我们得调低价格。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887777 (CK) & #8753042 (crescat) +I think what you're doing is wrong. 我觉得你正在做的是错的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7136874 (CK) & #8795145 (crescat) +I think your basic theory is wrong. 我認為你的基本理論是錯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17278 (CK) & #772369 (Martha) +I thought Tom was going to hurt me. 你認為湯姆要傷害我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961502 (CK) & #6111985 (verdastelo9604) +I thought his opinion was relevant. 我認為他的意見很中肯。 CC-BY 2.0 (France) Attribution: tatoeba.org #403305 (CK) & #849826 (Martha) +I thought it best to remain silent. 我想最好還是保持沉默。 CC-BY 2.0 (France) Attribution: tatoeba.org #323679 (CK) & #889183 (Martha) +I thought she was going to kill me. 我認為她要殺我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2134975 (CM) & #6583893 (verdastelo9604) +I tried to listen to him carefully. 我試著仔細地聽他說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #260600 (CK) & #883292 (Martha) +I usually take a bath after dinner. 我通常在晚飯後洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #254906 (CK) & #879128 (Martha) +I waited for my friend for an hour. 我等我的一个朋友等了一小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211546 (alec) & #334031 (fucongcong) +I want something cold to drink now. 我想現在喝冷的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #321814 (CK) & #889359 (Martha) +I want to be a computer programmer. 我想做一个程序员。 CC-BY 2.0 (France) Attribution: tatoeba.org #5901287 (peterius) & #1766408 (sadhen) +I want to go wherever you're going. 我想去你要去的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #71626 (CK) & #875326 (Martha) +I want to know how long it'll take. 我想知道这需要用多久时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230702 (alec) & #334162 (fucongcong) +I want you to stay a little longer. 我想让你再呆一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #3594659 (CK) & #5640726 (verdastelo9604) +I was able to find out his address. 我能找到他的地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #260663 (CK) & #1423365 (sadhen) +I was brought up by my grandmother. 我被我的祖母撫養長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #259157 (CK) & #876696 (Martha) +I was calm until I saw the syringe. 看到针管儿之前我一直都很淡定。 CC-BY 2.0 (France) Attribution: tatoeba.org #2610594 (FeuDRenais) & #2609549 (fenfang557) +I was embarrassed by what she said. 她說的話讓我覺得很尷尬。 CC-BY 2.0 (France) Attribution: tatoeba.org #309263 (CK) & #889631 (Martha) +I was just going to write a letter. 我正要去写一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #259467 (CK) & #791355 (fucongcong) +I was late for school this morning. 我今天早上上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #257540 (CK) & #879198 (Martha) +I was talking about something else. 我在說別的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540225 (CK) & #6146639 (verdastelo9604) +I was unable to finish my homework. 我無法完成我的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #258555 (CK) & #884202 (Martha) +I went to bed at twelve last night. 我昨晚十二点去睡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #244740 (CK) & #8914904 (crescat) +I went to see the movies yesterday. 我昨天去看了電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #257754 (CK) & #919867 (Martha) +I will get the work done in a week. 我会一周内完成这个工作的。 CC-BY 2.0 (France) Attribution: tatoeba.org #73141 (CK) & #8938659 (crescat) +I will give you the money tomorrow. 我明天會給你錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #18575 (CK) & #889610 (Martha) +I will not allow you to use my pen. 我不允许你用我的钢笔。 CC-BY 2.0 (France) Attribution: tatoeba.org #1139905 (soj4l) & #461536 (fucongcong) +I wish I could have spoken Spanish. 要是我會說西班牙語就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51805 (CK) & #894251 (Martha) +I wish Tom were my younger brother. 我希望湯姆是我的弟弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #37403 (CK) & #893049 (Martha) +I wish Tom were my younger brother. 但願湯姆是我的弟弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #37403 (CK) & #893050 (Martha) +I wish he had attended the meeting. 要是他有參加這場會議就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283463 (CK) & #894307 (Martha) +I wish that I could stop hiccuping. 我希望我能停止打嗝。 CC-BY 2.0 (France) Attribution: tatoeba.org #8277624 (CK) & #8739647 (slo_oth) +I wish that she would stop smoking. 我希望她戒煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #308084 (CK) & #894120 (Martha) +I wonder which way is the shortest. 我想知道哪一條路是最短的。 CC-BY 2.0 (France) Attribution: tatoeba.org #37953 (CK) & #894242 (Martha) +I wonder why karaoke is so popular. 我不知道為什麼卡拉OK如此受歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #38772 (CK) & #894332 (Martha) +I would like to tell you something. 我想告訴你一些事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #71165 (CK) & #893033 (Martha) +I wrote down that telephone number. 我寫下了那個電話號碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #502661 (CK) & #850122 (Martha) +I'd like to meet your older sister. 我想見你姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #997875 (CK) & #1525706 (egg0073) +I'd like to meet your older sister. 我想認識你姐姐。 CC-BY 2.0 (France) Attribution: tatoeba.org #997875 (CK) & #1525713 (egg0073) +I'd like you to have an ultrasound. 我想讓你接受超聲檢查。 CC-BY 2.0 (France) Attribution: tatoeba.org #277979 (CM) & #6119443 (verdastelo9604) +I'd rather not go out this evening. 我今天晚上寧可不要出門。 CC-BY 2.0 (France) Attribution: tatoeba.org #243240 (CK) & #894249 (Martha) +I'll always remember your kindness. 我會永遠記得你的好意。 CC-BY 2.0 (France) Attribution: tatoeba.org #388568 (CK) & #834748 (Martha) +I'll be seeing Mary this afternoon. 我今天下午會看到瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #257580 (CK) & #889800 (Martha) +I'll do whatever you want me to do. 无论你要我做什么,我都会去做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71423 (CK) & #478858 (biglion) +I'll finish it as quickly as I can. 我会尽快完成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #39530 (CK) & #473020 (fucongcong) +I'll never forget what you told me. 我將永遠不會忘記你告訴過我的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #246714 (CK) & #894358 (Martha) +I'll see you whenever it suits you. 只要你方便,我什麼時候都可以跟你見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #66202 (CK) & #894392 (Martha) +I'm accustomed to getting up early. 我習慣早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #277831 (CK) & #860933 (Martha) +I'm clearly missing something here. 我确实在这里丢了东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664334 (CK) & #5574453 (verdastelo9604) +I'm fairly confident I can do that. 我相当有自信我能做到这一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #6866193 (CK) & #8792042 (slo_oth) +I'm glad that the thief was caught. 抓到小偷真是太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8518264 (CK) & #8910881 (crescat) +I'm glad to make your acquaintance. 我很高興能夠認識您。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873029 (CK) & #804958 (Martha) +I'm glad we hired you for this job. 我很高兴我们录用了你来担任这份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952776 (CK) & #5091087 (mirrorvan) +I'm just a plain old office worker. 我只是一個普通的老式上班族。 CC-BY 2.0 (France) Attribution: tatoeba.org #477342 (CK) & #894218 (Martha) +I'm not really sure what Tom meant. 我不清楚湯姆是甚麼意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #6344655 (CK) & #6472015 (verdastelo9604) +I'm not used to speaking in public. 我不習慣在公眾場合說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #258891 (CK) & #891062 (Martha) +I'm not very particular about food. 我對食物不是很講究。 CC-BY 2.0 (France) Attribution: tatoeba.org #258748 (CK) & #851510 (Martha) +I'm sorry, but I really have to go. 我很抱歉,但我必須走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619438 (CK) & #6146539 (verdastelo9604) +I'm very sorry I came home so late. 我很抱歉那么晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #20433 (CK) & #334785 (fucongcong) +I've already put Tom to work on it. 我已经让汤姆去做它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728383 (CM) & #5571059 (verdastelo9604) +I've been to Australia three times. 我去過澳洲三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #253218 (CK) & #850113 (Martha) +I've finished watering the flowers. 我已經澆完花了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23760 (CK) & #834866 (Martha) +I've just been to my uncle's house. 我剛剛去了我叔叔家。 CC-BY 2.0 (France) Attribution: tatoeba.org #40174 (CK) & #892480 (Martha) +If the car breaks down, we'll walk. 如果車子壞了,我們就走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #30769 (CK) & #894354 (Martha) +If you want to, you can use my car. 如果你愿意,你可以用我的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #995293 (NickC) & #993761 (leoyzy) +Imports exceeded exports last year. 去年的進口商品額超過了出口商品額。 CC-BY 2.0 (France) Attribution: tatoeba.org #244709 (CK) & #834824 (Martha) +Is it next Monday that Tom returns? 汤姆是在下个星期一回来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5212527 (CK) & #5574232 (verdastelo9604) +Is it true Tom can't read or write? 汤姆真的不会读也不会写吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4198354 (CK) & #7772141 (jiangche) +Is there a service charge for that? 要收服務費嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #42901 (CK) & #894097 (Martha) +Is there any coffee in the kitchen? 廚房裡有咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #275406 (CK) & #891150 (Martha) +Is there anything I can do for you? 我能为您做些什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25107 (CK) & #487658 (fucongcong) +Is there someone who could help me? 有誰可以幫我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #276345 (CK) & #891164 (Martha) +It happened in the blink of an eye. 它發生在一眨眼之間。 CC-BY 2.0 (France) Attribution: tatoeba.org #3131524 (CK) & #6535836 (verdastelo9604) +It is difficult to give up smoking. 戒煙很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #18817 (CK) & #891762 (Martha) +It is difficult to give up smoking. 戒烟难。 CC-BY 2.0 (France) Attribution: tatoeba.org #18817 (CK) & #5894455 (verdastelo9604) +It is easy to answer this question. 回答這個問題很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #58805 (CK) & #893996 (Martha) +It is important to help each other. 重要的是要互相幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #267191 (CK) & #798117 (Martha) +It isn't as difficult as you think. 那个没你想象的那么难。 CC-BY 2.0 (France) Attribution: tatoeba.org #6687570 (CK) & #8696247 (crescat) +It isn't polite to stare at people. 盯著人看是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #269926 (CK) & #859114 (Martha) +It looks as if it is going to rain. 天看起来要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #34653 (CK) & #336690 (fucongcong) +It snowed for ten consecutive days. 雪持续下了十天。 CC-BY 2.0 (France) Attribution: tatoeba.org #272527 (CK) & #429162 (fucongcong) +It was very cold yesterday morning. 昨天早上很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #244455 (CK) & #860577 (Martha) +It wasn't a very interesting novel. 這不是一個很有趣的小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #67654 (CK) & #852007 (Martha) +It worried me that she looked pale. 她虚弱的样子让我捏了一把汗。 CC-BY 2.0 (France) Attribution: tatoeba.org #308389 (CK) & #1394890 (mtdot) +It would be crazy to do that again. 再来一次就真是发疯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5398452 (CK) & #5698020 (verdastelo9604) +It's a pity that you can't join us. 你不能和我們一起來真可惜。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712842 (CK) & #8727965 (shou) +It's a pity that you couldn't come. 很遺憾你不能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #18028 (CK) & #894431 (Martha) +It's an hour's walk to the station. 步行到車站要一小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #25981 (CK) & #798120 (Martha) +It's been raining since last night. 從昨晚起一直下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #26886 (CK) & #850127 (Martha) +It's cold there even in the summer. 那裡連夏天也冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #424846 (CK) & #4061617 (egg0073) +It's illegal to park your car here. 把車停在這裡是違法的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61753 (CK) & #890608 (Martha) +It's never too late to make amends. 彌補永遠不會太晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #23645 (CK) & #806741 (Martha) +It's not as difficult as you think. 那个没你想象的那么难。 CC-BY 2.0 (France) Attribution: tatoeba.org #7197003 (CK) & #8696247 (crescat) +It's not polite to point at others. 用手指別人是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #274758 (CK) & #894350 (Martha) +It's obvious why his stomach hurts. 他為什麼會胃痛的原因很明顯。 CC-BY 2.0 (France) Attribution: tatoeba.org #283251 (CK) & #863971 (Martha) +It's possible that Tom lied to you. 汤姆有可能对你撒谎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141241 (CK) & #8746513 (crescat) +It's really hot here in the summer. 这里夏天非常热。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477257 (weihaiping) & #1397140 (mtdot) +It's rude to talk during a concert. 在音樂會中講話是不禮貌的。 CC-BY 2.0 (France) Attribution: tatoeba.org #503827 (CK) & #894413 (Martha) +It's the only thing I can think of. 这是我唯一能想到的事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #241013 (CK) & #845122 (fucongcong) +It's too dark to play baseball now. 現在太暗無法打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #67705 (CK) & #894089 (Martha) +JST stands for Japan Standard Time. JST代表日本標準時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #72208 (CK) & #855682 (Martha) +Just at that time, the bus stopped. 就在那时,巴士停住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1257030 (CK) & #2052499 (sadhen) +Just give me your name and address. 只要給我你的姓名和住址。 CC-BY 2.0 (France) Attribution: tatoeba.org #63926 (CK) & #778739 (Martha) +Kyoto and Boston are sister cities. 京都和波士顿是姐妹城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #2698592 (WestofEden) & #5842613 (verdastelo9604) +Learning English requires patience. 學英語需要耐性。 CC-BY 2.0 (France) Attribution: tatoeba.org #26231 (CK) & #884685 (Tajfun) +Let me have a look at those photos. 让我看看那些照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #46872 (CK) & #332803 (fucongcong) +Let me know when you need me again. 再需要我就告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2909085 (patgfisher) & #5694525 (verdastelo9604) +Let's discuss the matter right now. 让我们马上讨论这个问题吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #241640 (SPENSER) & #335620 (fucongcong) +Let's eat now. I'm dying of hunger. 咱们吃吧!我饿死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1344022 (Chrikaru) & #2116863 (sadhen) +Let's find out who sent this to us. 讓我們查查誰送給我們這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #3392687 (CK) & #6103256 (verdastelo9604) +Let's get together again next year. 讓我們明年再相聚。 CC-BY 2.0 (France) Attribution: tatoeba.org #325139 (CK) & #851508 (Martha) +Let's meet in front of the theater. 讓我們在戲院前面碰面。 CC-BY 2.0 (France) Attribution: tatoeba.org #238478 (CK) & #891138 (Martha) +Let's not discuss the matter today. 今天讓我們不要討論這件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #242707 (CK) & #860978 (Martha) +Let's play basketball after school. 讓我們放學後打籃球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321008 (CK) & #835673 (Martha) +Let's play tennis in the afternoon. 今天下午讓我們打網球吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #240051 (CK) & #857993 (Martha) +Let's split the reward fifty-fifty. 讓我們平分這個報酬吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #320973 (CK) & #835767 (Martha) +Let's stop at the next gas station. 我们在下个加油站停一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #264207 (CK) & #333010 (fucongcong) +Let's take the children to the zoo. 讓我們帶孩子們去動物園。 CC-BY 2.0 (France) Attribution: tatoeba.org #245796 (CK) & #894123 (Martha) +Let's wait here till he comes back. 讓我們在這裡等他直到他回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #283302 (CK) & #893538 (Martha) +Long skirts are out of fashion now. 現在長裙過時了。 CC-BY 2.0 (France) Attribution: tatoeba.org #29317 (CK) & #893517 (Martha) +Long skirts are out of fashion now. 現在長裙不流行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #29317 (CK) & #893519 (Martha) +Lots of Italians went to Australia. 許多義大利人去了澳大利亞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2328997 (CM) & #6119440 (verdastelo9604) +Many of the workers died of hunger. 许多工人死于饥饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #326348 (CK) & #333171 (fucongcong) +Many people were killed in the war. 很多人在戰爭中被殺。 CC-BY 2.0 (France) Attribution: tatoeba.org #45738 (CK) & #894351 (Martha) +Many small companies went bankrupt. 许多小公司倒闭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #274871 (CK) & #335884 (fucongcong) +Mary was wearing a navy blue skirt. 玛丽穿着深蓝色的裙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #8523273 (CK) & #8789329 (crescat) +Mathematics is my favorite subject. 數學是我最喜歡的科目。 CC-BY 2.0 (France) Attribution: tatoeba.org #271018 (CK) & #834682 (Martha) +May I have a glass of milk, please? 请问能给我一杯牛奶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #880551 (CK) & #5911681 (verdastelo9604) +Miyazaki is not what it used to be. 宮崎不是它往日的樣子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19751 (papabear) & #786122 (Martha) +Monday is Tom's thirtieth birthday. 星期一是Tom的三十歲生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493880 (CK) & #4504502 (egg0073) +My aunt sent me a birthday present. 我阿姨送了我一個生日禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #64932 (CK) & #894424 (Martha) +My brother goes to college in Kobe. 我弟弟在神戶上大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #237883 (CK) & #894385 (Martha) +My brother is a first-year student. 我弟弟是個一年級的學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #251514 (CK) & #860533 (Martha) +My camera doesn't need to be fixed. 我的照相機不需要修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #250294 (CK) & #781166 (Martha) +My family goes skiing every winter. 我的家人每年冬天去滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #65501 (CK) & #851546 (Martha) +My father began jogging last month. 我父親上個月開始慢跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #251705 (CK) & #858240 (Martha) +My father goes to church on Sunday. 我爸爸週日上教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #251720 (CK) & #890481 (Martha) +My father got home late last night. 我父親昨晚很晚才回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #319150 (CK) & #894348 (Martha) +My father is suffering from a cold. 我父親感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251728 (CK) & #891061 (Martha) +My father objected to our marriage. 我的父親反對我們的婚姻。 CC-BY 2.0 (France) Attribution: tatoeba.org #319176 (CK) & #862740 (Martha) +My father retired at the age of 65. 我的父亲65岁的时候退休了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318950 (CK) & #1733425 (sadhen) +My father's hobby is growing roses. 我父親的嗜好是種玫瑰花。 CC-BY 2.0 (France) Attribution: tatoeba.org #318909 (CK) & #861445 (Martha) +My grandfather died five years ago. 我祖父五年前去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273855 (CK) & #862803 (Martha) +My grandmother can't see very well. 我的祖母無法看得很清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #273895 (CK) & #851511 (Martha) +My grandmother made me a new dress. 我的祖母做了一套新衣服給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #273911 (CK) & #891126 (Martha) +My heart was filled with happiness. 我心里充满着快乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #2118 (Zifre) & #503219 (fucongcong) +My hobby is collecting old bottles. 我的嗜好是收集舊瓶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #251142 (CK) & #858237 (Martha) +My house is just across the street. 我的房子就在對街。 CC-BY 2.0 (France) Attribution: tatoeba.org #250530 (CK) & #891655 (Martha) +My internet connection was cut off. 我的網路連線被切斷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #326868 (CK) & #858728 (Martha) +My mother doesn't like watching TV. 我母親不喜歡看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #251829 (CK) & #859338 (Martha) +My mother made me a Christmas cake. 母親做了一個聖誕蛋糕給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #320637 (CK) & #801971 (Martha) +My mother teaches flower arranging. 我母親教插花藝術。 CC-BY 2.0 (France) Attribution: tatoeba.org #320811 (CK) & #836107 (Martha) +My mother washes clothes every day. 我媽媽每天洗衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #484053 (CK) & #858804 (Martha) +My name doesn't appear on the list. 我的名字沒有出現在名單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #251970 (CK) & #894039 (Martha) +My opinion is different from yours. 我的看法跟你的不同。 CC-BY 2.0 (France) Attribution: tatoeba.org #250435 (CK) & #852191 (Martha) +My sister and I went to the castle. 我和妹妹去了城堡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4099434 (CK) & #4099643 (maple) +My sister became a college student. 我妹妹成為了一個大學生。 CC-BY 2.0 (France) Attribution: tatoeba.org #250972 (CK) & #856386 (Martha) +My sister got married in her teens. 我妹妹在她十幾歲時就結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #251896 (CK) & #894676 (Martha) +My sister is older than my brother. 我姐姐比我哥哥大。 CC-BY 2.0 (France) Attribution: tatoeba.org #438773 (Clavain) & #707704 (fucongcong) +My sister made me a beautiful doll. 我妹妹做了一個漂亮的娃娃給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #245554 (CK) & #801972 (Martha) +My sister made me a beautiful doll. 我姊姊做了一個漂亮的娃娃給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #245554 (CK) & #801973 (Martha) +My sister resembles my grandmother. 我的姐姐就像我的祖母。 CC-BY 2.0 (France) Attribution: tatoeba.org #251894 (CK) & #835340 (Martha) +My son is engaged to his secretary. 我的兒子和他的秘書訂婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251375 (CK) & #893025 (Martha) +My wallet and passport are missing. 我的錢包和護照不見了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244274 (CK) & #860703 (Martha) +My wife has just cleared the table. 我太太剛剛清理了桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #244128 (CK) & #890514 (Martha) +Nearly all Japanese have dark hair. 几乎所有的日本人头发都是黑色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #33337 (CK) & #1777920 (sunnywqing) +Never be afraid of making mistakes. 不要害怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #32279 (CK) & #859342 (Martha) +None of the telephones are working. 所有的電話都不通。 CC-BY 2.0 (France) Attribution: tatoeba.org #279299 (CK) & #859233 (Martha) +Not all Germans like to drink beer. 不是所有的德国人都喜欢喝啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4836686 (AliBeadle) & #4844736 (pig8322) +Nothing is achieved without effort. 没有什么是不劳而获的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1607 (Zifre) & #334159 (fucongcong) +Nothing seems to grow in this soil. 這個土壤似乎長不出任何東西來。 CC-BY 2.0 (France) Attribution: tatoeba.org #57684 (CK) & #891120 (Martha) +Nowadays many people travel by car. 現在很多人開車去旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #243821 (CK) & #864333 (Martha) +Nowadays nobody believes in ghosts. 現在沒有人相信有鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #243823 (CK) & #836150 (Martha) +One of my pleasures is watching TV. 我的一個樂趣是看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #250612 (CK) & #797062 (Martha) +Our country's climate is temperate. 我國是溫帶氣候。 CC-BY 2.0 (France) Attribution: tatoeba.org #23454 (Swift) & #785181 (Martha) +Our friendship was put to the test. 我们的友谊受到了考验。 CC-BY 2.0 (France) Attribution: tatoeba.org #8557706 (Rawrren) & #8558455 (slo_oth) +Our school's principal is very old. 我校校长很老了。 CC-BY 2.0 (France) Attribution: tatoeba.org #426384 (FeuDRenais) & #1468435 (sadhen) +Our teacher comes to school by car. 我們老師開車來學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #247610 (CK) & #894033 (Martha) +Our teacher made us clean the room. 我們老師要我們打掃這間房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #272853 (CK) & #894082 (Martha) +Playing cards is a popular pastime. 打牌是一種流行的消遣方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #36918 (CK) & #861087 (Martha) +Please accept my sincere apologies. 請接受我誠摯的歉意。 CC-BY 2.0 (France) Attribution: tatoeba.org #251236 (CK) & #836298 (Martha) +Please answer this question for me. 請回答我這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #249684 (CK) & #855675 (Martha) +Please ask at the information desk. 請向服務台詢問。 CC-BY 2.0 (France) Attribution: tatoeba.org #266195 (CK) & #850610 (Martha) +Please be ready in fifteen minutes. 请在15分钟内准备好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2891806 (CK) & #4104699 (maple) +Please bring us two cups of coffee. 請給我們來兩杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #62222 (CK) & #894349 (Martha) +Please enjoy yourself at the dance. 請盡情地跳舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #40314 (CK) & #864311 (Martha) +Please fill this bottle with water. 請把這個瓶子裝滿水。 CC-BY 2.0 (France) Attribution: tatoeba.org #60474 (CK) & #861266 (Martha) +Please fill this bucket with water. 請把這個桶子裝滿水。 CC-BY 2.0 (France) Attribution: tatoeba.org #60711 (CK) & #863969 (Martha) +Please help yourself to some fruit. 請你隨便吃點水果。 CC-BY 2.0 (France) Attribution: tatoeba.org #23933 (CK) & #850112 (Martha) +Please let me off at the next stop. 请在下一站让我下车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1655683 (gleki) & #4468899 (MirendaBABY) +Please remember to mail the letter. 請記得把信寄出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #38819 (CK) & #858816 (Martha) +Please return the book by tomorrow. 請明天前還書。 CC-BY 2.0 (France) Attribution: tatoeba.org #68895 (CK) & #861041 (Martha) +Please shuffle the cards carefully. 请仔细洗牌。 CC-BY 2.0 (France) Attribution: tatoeba.org #36910 (CK) & #465004 (fucongcong) +Please speak as slowly as possible. 请尽量慢点说。 CC-BY 2.0 (France) Attribution: tatoeba.org #266875 (CK) & #8697576 (morningstar) +Please take a look at this picture. 請看看這張照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #58778 (CK) & #892892 (Martha) +Please turn up the AC a little bit. 请你把冷气调高点。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753832 (garborg) & #333014 (fucongcong) +Prices depend on supply and demand. 價格取決於供給和需求。 CC-BY 2.0 (France) Attribution: tatoeba.org #24422 (CK) & #861159 (Martha) +Prices have been climbing steadily. 價格一直在穩定地攀升。 CC-BY 2.0 (France) Attribution: tatoeba.org #319901 (CK) & #840742 (Martha) +Prices have reached a 13-year high. 价格已经达到了十三年以来的最高点。 CC-BY 2.0 (France) Attribution: tatoeba.org #1141302 (Source_VOA) & #8553170 (slo_oth) +Put the chair in front of the desk. 把椅子放在桌子前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #681033 (Source_VOA) & #899982 (kanaorange) +Riding a horse is really thrilling. 騎馬真的很令人興奮。 CC-BY 2.0 (France) Attribution: tatoeba.org #282372 (CK) & #801301 (Martha) +Safety is the most important thing. 安全是最重要的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #795023 (CK) & #797074 (Martha) +Save it on the external hard drive. 把它保存在外接式硬碟。 CC-BY 2.0 (France) Attribution: tatoeba.org #21846 (CK) & #798183 (Martha) +Send us a telegram when you arrive. 當你到的時候發一份電報給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #280085 (CK) & #894278 (Martha) +She accused me of making a mistake. 她指責我犯了錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #314303 (CK) & #894229 (Martha) +She backed her car into the garage. 她倒車進車庫。 CC-BY 2.0 (France) Attribution: tatoeba.org #314821 (CK) & #894043 (Martha) +She banged the table with her fist. 她用拳頭拍了桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #313459 (CK) & #894283 (Martha) +She borrowed a saw from the farmer. 她向農夫借了一把鋸子。 CC-BY 2.0 (France) Attribution: tatoeba.org #311384 (CK) & #893520 (Martha) +She came to Tokyo at the age of 18. 她18岁的时候来到东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #431139 (witbrock) & #1397135 (mtdot) +She can sing and dance beautifully. 她會唱歌而且舞跳得很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #315057 (CK) & #862699 (Martha) +She can't play the piano very well. 她無法把鋼琴彈得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #310306 (CK) & #890955 (Martha) +She complained about my low salary. 她抱怨我的工資低。 CC-BY 2.0 (France) Attribution: tatoeba.org #388593 (CK) & #861426 (Martha) +She considered his offer carefully. 她仔细考虑了他的提议。 CC-BY 2.0 (France) Attribution: tatoeba.org #1293059 (CK) & #8899482 (crescat) +She decided to resign from her job. 她決定辭去她的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #521663 (CK) & #891650 (Martha) +She didn't like living in the city. 她不喜歡住在城市裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #315842 (CK) & #891060 (Martha) +She didn't like the horse at first. 起初她不喜歡馬。 CC-BY 2.0 (France) Attribution: tatoeba.org #313787 (CK) & #894364 (Martha) +She didn't want to speak to anyone. 她不想跟任何人說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #311579 (CK) & #894355 (Martha) +She doesn't like to sing sad songs. 她不喜欢唱悲伤的歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442043 (CK) & #5829627 (verdastelo9604) +She doesn't seem to be an American. 她似乎不是美國人。 CC-BY 2.0 (France) Attribution: tatoeba.org #534188 (CK) & #893535 (Martha) +She doesn't speak Japanese at home. 她在家不說日語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312842 (CK) & #864315 (Martha) +She elbowed her way onto the train. 她擠上了火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #317496 (CK) & #894075 (Martha) +She enjoyed herself at the concert. 她在音樂會上玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #312766 (CK) & #857826 (Martha) +She extended her stay by five days. 她延長停留五天。 CC-BY 2.0 (France) Attribution: tatoeba.org #315655 (CK) & #891010 (Martha) +She extended her stay by five days. 她多停留了五天。 CC-BY 2.0 (France) Attribution: tatoeba.org #315655 (CK) & #891014 (Martha) +She eyed the stranger suspiciously. 她盯著可疑的陌生人看。 CC-BY 2.0 (France) Attribution: tatoeba.org #311204 (CK) & #838632 (Martha) +She felt insecure about her future. 她對她的未來感到沒有安全感。 CC-BY 2.0 (France) Attribution: tatoeba.org #314688 (CK) & #858063 (Martha) +She folded her handkerchief neatly. 她整齊地把她的手帕折好。 CC-BY 2.0 (France) Attribution: tatoeba.org #312004 (CK) & #840618 (Martha) +She found her purse under the desk. 她在桌子底下找到了她的錢包。 CC-BY 2.0 (France) Attribution: tatoeba.org #313112 (CK) & #893044 (Martha) +She found her purse under the desk. 她發現她的錢包在桌子底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #313112 (CK) & #893045 (Martha) +She gave it her personal attention. 她親自過問了此事。 CC-BY 2.0 (France) Attribution: tatoeba.org #311103 (CK) & #805542 (Martha) +She gave me a smile of recognition. 她給了我一個認可的微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #249547 (CK) & #805222 (Martha) +She gave me whatever help I needed. 她給了我任何我需要的幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #314385 (CK) & #805181 (Martha) +She glanced shyly at the young man. 她羞怯地看了一眼那個年輕人。 CC-BY 2.0 (France) Attribution: tatoeba.org #311282 (CK) & #804946 (Martha) +She graduated from Kobe University. 她畢業於神戶大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #315176 (CK) & #842329 (Martha) +She has the large house to herself. 她給自己一間大房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #311321 (CK) & #894372 (Martha) +She hung a curtain over the window. 她把窗簾掛在窗戶上。 CC-BY 2.0 (France) Attribution: tatoeba.org #315533 (CK) & #891034 (Martha) +She identified him as the murderer. 她確認他是殺人兇手。 CC-BY 2.0 (France) Attribution: tatoeba.org #316503 (CK) & #852161 (Martha) +She is busy preparing for the trip. 她正忙著準備這次旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #317417 (CK) & #894416 (Martha) +She is capable of teaching English. 她可以教英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #309944 (CK) & #8877861 (crescat) +She is going to Sendai this spring. 她今年春天要去仙台。 CC-BY 2.0 (France) Attribution: tatoeba.org #310831 (CK) & #894155 (Martha) +She is leaving for America tonight. 她今晚離開去美國。 CC-BY 2.0 (France) Attribution: tatoeba.org #313739 (CK) & #857833 (Martha) +She is very thoughtful and patient. 她非常周到和耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #311777 (CK) & #333172 (fucongcong) +She is wearing a white dress today. 她今天穿著白色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #313730 (CK) & #894303 (Martha) +She kept me waiting for 30 minutes. 她让我等了半小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #388053 (CK) & #782982 (fucongcong) +She kept me waiting for 30 minutes. 她让我等了30分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #388053 (CK) & #782989 (fucongcong) +She left her umbrella in the train. 她把她的雨傘留在火車上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #315939 (CK) & #894360 (Martha) +She makes herself up every morning. 她每天早上自己起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #317079 (CK) & #795276 (Martha) +She managed to keep up appearances. 她設法保住面子。 CC-BY 2.0 (France) Attribution: tatoeba.org #311887 (CK) & #794084 (Martha) +She may have missed the 7:00 train. 她可能錯過了七點的火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #310210 (CK) & #894388 (Martha) +She may realize later what I meant. 她可能以後會明白我的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #388946 (CK) & #890998 (Martha) +She patted her son on the shoulder. 她拍拍她兒子的肩膀。 CC-BY 2.0 (France) Attribution: tatoeba.org #315586 (CK) & #890992 (Martha) +She poured brandy into the glasses. 她把白蘭地倒進玻璃杯裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #312131 (CK) & #851473 (Martha) +She refused to do what they wanted. 她拒絕做他們想要的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #316465 (CK) & #891744 (Martha) +She resented being called a coward. 她對被稱為懦夫很反感。 CC-BY 2.0 (France) Attribution: tatoeba.org #312732 (CK) & #861428 (Martha) +She rushed home with the good news. 她急忙帶著好消息跑回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #312393 (CK) & #894384 (Martha) +She scolded her son for being lazy. 她罵她的兒子懶惰。 CC-BY 2.0 (France) Attribution: tatoeba.org #274376 (CK) & #893349 (Martha) +She seems to have known the secret. 她好像已經知道這個秘密了。 CC-BY 2.0 (France) Attribution: tatoeba.org #311398 (CK) & #894380 (Martha) +She speaks both English and French. 她會講英語和法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312684 (CK) & #863972 (Martha) +She spread the butter on the bread. 她把奶油塗在麵包上。 CC-BY 2.0 (France) Attribution: tatoeba.org #312011 (CK) & #894414 (Martha) +She studied English in the morning. 她上午學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #313541 (CK) & #860974 (Martha) +She testified that she saw the man. 她作證說她看見了這名男子。 CC-BY 2.0 (France) Attribution: tatoeba.org #388438 (CK) & #907319 (Martha) +She usually sleeps for eight hours. 她通常睡八個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #316792 (CK) & #862710 (Martha) +She was frequently late for school. 她經常上學遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #312404 (CK) & #850304 (Martha) +She was pleased with the new dress. 那条新裙子让她很满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #1699613 (CK) & #333751 (fucongcong) +She was reading a gardening manual. 她正在讀一本園藝手冊。 CC-BY 2.0 (France) Attribution: tatoeba.org #312709 (CK) & #861292 (Martha) +She was very surprised at the news. 她对那个消息非常惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #315766 (CK) & #426324 (fucongcong) +She wasn't able to open the bottle. 她無法打開這個瓶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #312085 (CK) & #903022 (Martha) +She went to Italy to learn Italian. 她到意大利學習意大利語。 CC-BY 2.0 (France) Attribution: tatoeba.org #310368 (CK) & #896633 (Martha) +She went to the hospital yesterday. 她昨天去了醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #313808 (CK) & #850382 (Martha) +She will accompany me on the piano. 她會彈鋼琴為我伴奏。 CC-BY 2.0 (France) Attribution: tatoeba.org #308125 (CK) & #902958 (Martha) +She will have to cook for everyone. 她將必須為大家做飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #312294 (CK) & #905874 (Martha) +She worked from morning till night. 她從早上工作到夜晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #315829 (CK) & #850129 (Martha) +She's about the same height as you. 她大概跟你一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #310259 (CK) & #895608 (Martha) +She's good at getting around rules. 她擅於逃避規則。 CC-BY 2.0 (France) Attribution: tatoeba.org #313145 (CK) & #856400 (Martha) +She's got a good eye for paintings. 她對繪畫有很好的鑑賞力。 CC-BY 2.0 (France) Attribution: tatoeba.org #312965 (CS) & #876224 (Martha) +She's not prettier than her mother. 她没有比她妈妈更漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #437985 (aliene) & #435367 (fucongcong) +Smoking is prohibited on the train. 在火車上禁止吸煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #794651 (CK) & #798326 (Martha) +Soccer is more popular than tennis. 足球比網球更受歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #54116 (CK) & #855688 (Martha) +Some people questioned his honesty. 有些人質疑他的誠實。 CC-BY 2.0 (France) Attribution: tatoeba.org #286994 (CK) & #838605 (Martha) +Some things are better left undone. 有些事不做更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2069338 (halfb1t) & #6152992 (verdastelo9604) +Somebody must care for the patient. 一定要有人照顧病人。 CC-BY 2.0 (France) Attribution: tatoeba.org #40461 (CK) & #850394 (Martha) +Someone has brought us some grapes. 有人帶了一些葡萄給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #276132 (CK) & #859287 (Martha) +Someone is obviously telling a lie. 顯然有人在撒謊。 CC-BY 2.0 (France) Attribution: tatoeba.org #322994 (CK) & #855685 (Martha) +Something is wrong with the brakes. 剎車出了問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #34106 (CK) & #850314 (Martha) +Something may have happened to him. 他可能發生了什麼事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #25175 (CK) & #858752 (Martha) +Stockholm is the capital of Sweden. 斯德哥爾摩是瑞典的首都。 CC-BY 2.0 (France) Attribution: tatoeba.org #2448018 (CM) & #2656408 (egg0073) +Studying abroad is very common now. 現在出國留學是很常見的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #241937 (CK) & #801304 (Martha) +Such a thing can't happen in Japan. 這樣的事情不可能在日本發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #54794 (CK) & #801331 (Martha) +Summer vacation begins next Monday. 暑假從下星期一開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #24304 (CK) & #838599 (Martha) +Switzerland is a beautiful country. 瑞士是一個美麗的國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #52441 (CK) & #836162 (Martha) +Switzerland is a beautiful country. 瑞士是一个美丽的国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #52441 (CK) & #2109215 (sadhen) +Take the first street to the right. 第一條街右轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #244033 (CK) & #903053 (Martha) +Take the oranges out of the fridge. 把橙子从冰箱里拿出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #444019 (CM) & #839788 (fucongcong) +Take this medicine every six hours. 每六個小時吃一次這個藥。 CC-BY 2.0 (France) Attribution: tatoeba.org #72414 (CK) & #868419 (Martha) +Teaching English is his profession. 教英语是他的职业。 CC-BY 2.0 (France) Attribution: tatoeba.org #26219 (CK) & #334079 (fucongcong) +Tell Tom I'll be there in a minute. 告诉Tom我将在一分钟内到达这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2882931 (CK) & #4844970 (pig8322) +Tell me how you solved the problem. 告訴我你如何解決了這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #38328 (CK) & #895883 (Martha) +Tell me what you have in your hand. 告诉我你手里有什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #265903 (CK) & #426881 (fucongcong) +Texting while driving is dangerous. 開車時打字是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5072406 (CK) & #6119502 (verdastelo9604) +Thank you for telling me the truth. 謝謝你告訴我真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #2977961 (Hybrid) & #6081685 (xjjAstrus) +Thank you for the pleasant evening. 謝謝你讓我度過一個愉快的晚上。 CC-BY 2.0 (France) Attribution: tatoeba.org #21292 (CK) & #873205 (Martha) +Thank you for the wonderful dinner. 為這美好的晚餐謝謝你。 CC-BY 2.0 (France) Attribution: tatoeba.org #65186 (CK) & #872477 (Martha) +Thank you in advance for your help. 我先谢谢你的帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #54482 (kebukebu) & #396374 (fucongcong) +Thank you very much for everything. 非常感謝你所做的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #65805 (CK) & #872168 (Martha) +That actually makes a lot of sense. 那个相当能说得通。 CC-BY 2.0 (France) Attribution: tatoeba.org #5093486 (mailohilohi) & #5095193 (mirrorvan) +That gentleman usually wears a hat. 那位紳士經常戴著一頂帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #318806 (CK) & #871094 (Martha) +That hat cost around fifty dollars. 那頂帽子花費了大約五十美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #43984 (CK) & #873302 (Martha) +That just doesn't make sense to me. 那只是對我來說沒有意義。 CC-BY 2.0 (France) Attribution: tatoeba.org #321420 (CK) & #907255 (Martha) +That mountain is covered with snow. 這座山被雪所覆蓋。 CC-BY 2.0 (France) Attribution: tatoeba.org #68359 (CK) & #870067 (Martha) +That nurse is very kind and polite. 那个护士人很好,又有礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #68475 (CK) & #463855 (fucongcong) +That red sweater looks good on you. 你穿那件紅色的毛衣好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #68038 (CK) & #896494 (Martha) +That river is dangerous to swim in. 在這條河裡游泳很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #68018 (CK) & #894052 (Martha) +That student runs fast, doesn't he? 那个学生跑得很快,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #45914 (CK) & #332865 (fucongcong) +That tie goes well with your shirt. 那條領帶很適合你的襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #50066 (CK) & #895869 (Martha) +That white dress looks good on you. 你穿那件白色的衣服很好看。 CC-BY 2.0 (France) Attribution: tatoeba.org #50318 (CK) & #895788 (Martha) +That woman is much older than I am. 那女人比我老很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #497133 (CK) & #6103046 (verdastelo9604) +That's the man who lives next door. 那是住在隔壁的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #67028 (CK) & #896512 (Martha) +The Smiths live in my neighborhood. 史密斯夫婦住在我家附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #51593 (CK) & #866307 (Martha) +The animals died one after another. 動物一個接一個的死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #9007449 (CK) & #796980 (Martha) +The baby fell asleep in the cradle. 宝宝在摇篮里入睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45825 (CK) & #336584 (fucongcong) +The baby is playing with some toys. 這個小嬰兒正在玩一些玩具。 CC-BY 2.0 (France) Attribution: tatoeba.org #45871 (CK) & #895714 (Martha) +The baby is sleeping in the cradle. 嬰兒正在搖籃裡睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #272415 (CK) & #900701 (Martha) +The baby tore up a ten-dollar bill. 這個小嬰孩撕掉了一張十美元的鈔票。 CC-BY 2.0 (France) Attribution: tatoeba.org #272303 (CK) & #896486 (Martha) +The balloon was caught in the tree. 這顆氣球被樹絆住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319795 (CK) & #908329 (Martha) +The bicycle under the tree is mine. 那輛在樹下的自行車是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #323587 (CK) & #895133 (Martha) +The board is about two meters long. 這塊木板大約兩公尺長。 CC-BY 2.0 (France) Attribution: tatoeba.org #44421 (CK) & #908333 (Martha) +The boy came running into the room. 小男孩跑進了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #268027 (CK) & #895888 (Martha) +The boy doesn't know how to behave. 這個男孩不懂禮貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #46355 (CK) & #894962 (Martha) +The boy enjoyed painting a picture. 這個男孩喜歡繪畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #268001 (CK) & #868458 (Martha) +The boy has an apple in his pocket. 这男孩的口袋里有个苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #46385 (CK) & #335404 (fucongcong) +The boy lay listening to the radio. 男孩躺着听收音机。 CC-BY 2.0 (France) Attribution: tatoeba.org #267996 (CK) & #334636 (fucongcong) +The building is seven stories high. 這棟建築物有七層樓高。 CC-BY 2.0 (France) Attribution: tatoeba.org #48315 (CK) & #874359 (Martha) +The camera will cost at least $500. 這台相機至少要花費500美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #50563 (CK) & #895804 (Martha) +The ceremony began with his speech. 仪式以他的讲话开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #20057 (CK) & #1394872 (mtdot) +The clock gains five minutes a day. 那个钟每天都快了五分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #46992 (nickyeow) & #8591277 (easononizuka) +The company abandoned that project. 公司放弃了那个项目。 CC-BY 2.0 (France) Attribution: tatoeba.org #22393 (CK) & #336462 (fucongcong) +The couple is walking hand in hand. 這對夫妻手牽手走路。 CC-BY 2.0 (France) Attribution: tatoeba.org #280933 (CK) & #895136 (Martha) +The doctor cured him of his cancer. 醫生治好了他的癌症。 CC-BY 2.0 (France) Attribution: tatoeba.org #27928 (CK) & #900646 (Martha) +The dog growled at the strange man. 狗對著這個陌生男子咆哮。 CC-BY 2.0 (France) Attribution: tatoeba.org #65930 (CK) & #802015 (Martha) +The door is locked at nine o'clock. 這個門在九點鐘的時候是鎖著的。。 CC-BY 2.0 (France) Attribution: tatoeba.org #39039 (rmgao) & #895890 (Martha) +The door is locked at nine o'clock. 九點鐘鎖門。 CC-BY 2.0 (France) Attribution: tatoeba.org #39039 (rmgao) & #895894 (Martha) +The dress is made of a thin fabric. 這件衣服是由薄織物製成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #682177 (Source_VOA) & #881159 (Martha) +The enemy launched an attack on us. 敌人对我们发起了攻击。 CC-BY 2.0 (France) Attribution: tatoeba.org #278676 (CK) & #335861 (fucongcong) +The first attack missed the target. 第一次攻击错过了目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #244025 (CK) & #335859 (fucongcong) +The food tasted slightly of garlic. 這個食物嚐起來有一點大蒜味。 CC-BY 2.0 (France) Attribution: tatoeba.org #46144 (CM) & #848191 (Martha) +The forest is teeming with monkeys. 这个森林里猴子成群。 CC-BY 2.0 (France) Attribution: tatoeba.org #25875 (pigeonenglish) & #782286 (fucongcong) +The game will probably be canceled. 這場比賽可能將被取消。 CC-BY 2.0 (France) Attribution: tatoeba.org #525700 (CK) & #871172 (Martha) +The garden was filled with flowers. 花園裡充滿了花朵。 CC-BY 2.0 (France) Attribution: tatoeba.org #44964 (CK) & #870292 (Martha) +The goods were transported by ship. 這批貨物是由船隻運送的。 CC-BY 2.0 (France) Attribution: tatoeba.org #267448 (CM) & #1238385 (tsayng) +The hunter shot and killed the fox. 猎人射死了狐狸。 CC-BY 2.0 (France) Attribution: tatoeba.org #995292 (NickC) & #993759 (leoyzy) +The library is on the second floor. 圖書館在二樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #270698 (CK) & #895594 (Martha) +The man sold his soul to the devil. 这男人把他的灵魂卖给魔鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #45341 (CK) & #5967631 (verdastelo9604) +The man was held in police custody. 這個男人被警察拘留了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45325 (CK) & #895602 (Martha) +The medicine didn't do me any good. 這藥對我沒有任何好處。 CC-BY 2.0 (France) Attribution: tatoeba.org #43547 (CK) & #900255 (Martha) +The mountain has a beautiful shape. 這座山有一個美麗的外形。 CC-BY 2.0 (France) Attribution: tatoeba.org #47727 (CK) & #872411 (Martha) +The mountain was covered with snow. 這座山被雪覆蓋著。 CC-BY 2.0 (France) Attribution: tatoeba.org #245078 (CK) & #872435 (Martha) +The old man gave the child shelter. 這位老人收容了這個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #326435 (CK) & #805094 (Martha) +The old man lived there by himself. 這個老人獨自住在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #326434 (CK) & #907535 (Martha) +The oranges in this bag are rotten. 這個袋子裡的柳橙都爛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #57999 (CK) & #904919 (Martha) +The patient is steadily recovering. 這個病人正在穩定地康復中。 CC-BY 2.0 (France) Attribution: tatoeba.org #21055 (CK) & #844522 (Martha) +The patient is steadily recovering. 该病人正逐步康复。 CC-BY 2.0 (France) Attribution: tatoeba.org #21055 (CK) & #844530 (kooler) +The picture is hanging on the wall. 那幅图挂在墙上。 CC-BY 2.0 (France) Attribution: tatoeba.org #770107 (marloncori) & #1323952 (vicch) +The picture is hanging on the wall. 畫掛在牆上。 CC-BY 2.0 (France) Attribution: tatoeba.org #770107 (marloncori) & #4133810 (egg0073) +The plane crash was only last week. 上個星期這架飛機墜毀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318116 (CK) & #895808 (Martha) +The plane takes off in ten minutes. 飛機十分鐘後起飛。 CC-BY 2.0 (France) Attribution: tatoeba.org #318031 (CK) & #900256 (Martha) +The planets revolve around the sun. 行星繞著太陽轉。 CC-BY 2.0 (France) Attribution: tatoeba.org #326589 (CK) & #869956 (Martha) +The police are checking their bags. 警察正在检查他们的包。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498039 (nevergetup) & #389376 (fucongcong) +The police will look into the case. 警察会调查这起案件。 CC-BY 2.0 (France) Attribution: tatoeba.org #238230 (CM) & #2007049 (sadhen) +The policeman arrested the burglar. 警察逮捕了小偷。 CC-BY 2.0 (France) Attribution: tatoeba.org #400567 (CK) & #844637 (Martha) +The policemen arrested the burglar. 警察逮捕了竊賊。 CC-BY 2.0 (France) Attribution: tatoeba.org #400570 (CK) & #839575 (Martha) +The post office is down the street. 郵局在街那頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #324545 (CK) & #894969 (Martha) +The price does not include the box. 這個價格不包含這個箱子。 CC-BY 2.0 (France) Attribution: tatoeba.org #325753 (CK) & #902969 (Martha) +The prince succeeded to the throne. 王子继承了王位。 CC-BY 2.0 (France) Attribution: tatoeba.org #25624 (CK) & #845127 (fucongcong) +The principal wants to talk to you. 校长想跟你谈话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1358628 (CK) & #5555771 (verdastelo9604) +The prisoner was given his freedom. 囚犯重獲自由。 CC-BY 2.0 (France) Attribution: tatoeba.org #266259 (CK) & #870122 (Martha) +The problem is being discussed now. 这问题正在被讨论。 CC-BY 2.0 (France) Attribution: tatoeba.org #43716 (CK) & #333526 (fucongcong) +The program starts at nine o'clock. 這個節目九點開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #282842 (CK) & #870156 (Martha) +The project was a complete failure. 這個計劃徹底的失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48508 (CK) & #870139 (Martha) +The result confirmed my hypothesis. 这一结果证实了我的猜想。 CC-BY 2.0 (France) Attribution: tatoeba.org #48379 (szaby78) & #528035 (biglion) +The rocket was launched into space. 火箭發射進入太空。 CC-BY 2.0 (France) Attribution: tatoeba.org #29383 (CK) & #872401 (Martha) +The school was established in 1650. 这所学校建于1650年。 CC-BY 2.0 (France) Attribution: tatoeba.org #48944 (CK) & #799263 (fucongcong) +The sky is clear and full of stars. 天空晴朗,布满了星辰。 CC-BY 2.0 (France) Attribution: tatoeba.org #1917913 (zahurdias) & #7772493 (jiangche) +The sky was clear when I left home. 当我离开家的时候天空很明朗。 CC-BY 2.0 (France) Attribution: tatoeba.org #402413 (CK) & #609922 (sarah) +The smell of roses filled the room. 玫瑰香水的味道充满了房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #35085 (CK) & #787086 (fucongcong) +The soldiers occupied the building. 士兵们占领了这个建筑。 CC-BY 2.0 (France) Attribution: tatoeba.org #681606 (Source_VOA) & #1360030 (sadhen) +The storm developed into a typhoon. 暴風雨發展成了一個颱風。 CC-BY 2.0 (France) Attribution: tatoeba.org #325313 (CK) & #870386 (Martha) +The street was crowded with people. 街道上擠滿了人。 CC-BY 2.0 (France) Attribution: tatoeba.org #278365 (CK) & #873214 (Martha) +The sun sets earlier in the winter. 在冬天,太阳下山比往常更早。 CC-BY 2.0 (France) Attribution: tatoeba.org #1361944 (CK) & #1361967 (sadhen) +The telephone was invented by Bell. 电话是由贝尔发明的。 CC-BY 2.0 (France) Attribution: tatoeba.org #279302 (CM) & #1659811 (vicch) +The train is 10 minutes late today. 火車今天晚了十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #469189 (CK) & #908344 (Martha) +The train is due to arrive at noon. 火車該在中午到。 CC-BY 2.0 (France) Attribution: tatoeba.org #279215 (CK) & #6091810 (verdastelo9604) +The two men were business partners. 这两个男人是生意上的合作伙伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163180 (Source_VOA) & #2581539 (fenfang557) +The two sides hold talks this week. 双方本周举行会谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163182 (Source_VOA) & #2581551 (fenfang557) +The two young girls smiled happily. 兩個年輕的女孩高興地微笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44634 (CK) & #870310 (Martha) +The weather is usually hot in July. 七月天氣經常很熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #72370 (CK) & #900266 (Martha) +The whole process will take months. 整个过程需要耗费数月。 CC-BY 2.0 (France) Attribution: tatoeba.org #7120443 (CM) & #8744964 (slo_oth) +The wind is blowing from the north. 风从北边来。 CC-BY 2.0 (France) Attribution: tatoeba.org #319712 (CK) & #2456086 (fenfang557) +The world is changing every minute. 世界每一分鐘都在改變。 CC-BY 2.0 (France) Attribution: tatoeba.org #271095 (CK) & #865567 (Martha) +Their baby is able to walk already. 他們的小嬰孩已經會走路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68161 (CK) & #907515 (Martha) +There are 30 students in our class. 我们班有三十名学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #1663409 (liwan1208) & #1659801 (vicch) +There are a lot of eggs in the box. 这个盒子里有很多蛋。 CC-BY 2.0 (France) Attribution: tatoeba.org #44471 (CK) & #784200 (fucongcong) +There are a lot of parks in London. 伦敦有很多公园。 CC-BY 2.0 (France) Attribution: tatoeba.org #29299 (CK) & #335022 (fucongcong) +There are exceptions to every rule. 每條規則都有例外。 CC-BY 2.0 (France) Attribution: tatoeba.org #36670 (CK) & #873308 (Martha) +There are four people in my family. 我家有四個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #250572 (CK) & #904915 (Martha) +There are four seasons in one year. 一年有四季。 CC-BY 2.0 (France) Attribution: tatoeba.org #1010134 (allmarangie) & #6098476 (verdastelo9604) +There are many ships in the harbor. 港口內有許多船。 CC-BY 2.0 (France) Attribution: tatoeba.org #240941 (CK) & #895582 (Martha) +There are many stores in this area. 這個區域有很多商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #57921 (CK) & #900227 (Martha) +There are some boys under the tree. 樹下有一些男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #323590 (CK) & #900219 (Martha) +There is a military base near here. 這附近有一個軍事基地。 CC-BY 2.0 (France) Attribution: tatoeba.org #59631 (CK) & #903626 (Martha) +There is a path through the fields. 有条小路穿过农田。 CC-BY 2.0 (France) Attribution: tatoeba.org #324108 (CK) & #334578 (fucongcong) +There is a television in this room. 这个房间里有个电视机。 CC-BY 2.0 (France) Attribution: tatoeba.org #57350 (CK) & #333126 (fucongcong) +There is an urgent message for you. 你有一個緊急的訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #71071 (CK) & #907546 (Martha) +There is only one book on the desk. 桌子上只有一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #20577 (CK) & #5863312 (verdastelo9604) +There was a car accident yesterday. 昨天發生了一場車禍。 CC-BY 2.0 (France) Attribution: tatoeba.org #63290 (CK) & #874219 (Martha) +There was little water in the well. 這口井裡的水很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #27886 (CK) & #900366 (Martha) +There were few people on the beach. 沙灘上的人非常少。 CC-BY 2.0 (France) Attribution: tatoeba.org #22178 (CK) & #903650 (Martha) +There will be a math test tomorrow. 明天有一個數學測驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #323427 (CK) & #907858 (Martha) +There's been a death in his family. 他的家不幸有人身亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #285661 (CK) & #903503 (Martha) +There's narrow road to the village. 到村莊有條窄路。 CC-BY 2.0 (France) Attribution: tatoeba.org #45550 (CK) & #798069 (Martha) +There's nobody in the building now. 現在建築裡沒人。 CC-BY 2.0 (France) Attribution: tatoeba.org #5849006 (CK) & #6028161 (verdastelo9604) +There's nothing good on television. 電視上沒有什麼好事。 CC-BY 2.0 (France) Attribution: tatoeba.org #39211 (CK) & #839496 (Martha) +There's nothing you can do for Tom. 你無法為湯姆做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171791 (CK) & #6325086 (verdastelo9604) +There's only one window in my room. 我的房間裡只有一个窗戶。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641724 (CK) & #6970487 (verdastelo9604) +There's something strange going on. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287146 (CK) & #8720496 (crescat) +There's too much salt in this soup. 这汤里盐放多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #60998 (CK) & #333664 (fucongcong) +These pictures were painted by him. 這些畫是他畫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #55254 (CK) & #870373 (Martha) +These questions are easy to answer. 這些問題太容易回答了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55198 (CK) & #869889 (Martha) +They all looked for the lost child. 他們都在尋找這個失蹤的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #541293 (CK) & #895793 (Martha) +They all looked for the lost child. 他們都在尋找這個走失的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #541293 (CK) & #895801 (Martha) +They are having a really good time. 他們正玩得非常開心。。 CC-BY 2.0 (France) Attribution: tatoeba.org #305943 (CK) & #903591 (Martha) +They are plotting to kill the king. 他們正密謀要殺害國王。 CC-BY 2.0 (France) Attribution: tatoeba.org #306203 (CK) & #905950 (Martha) +They are trying to keep costs down. 他们正努力降低成本。 CC-BY 2.0 (France) Attribution: tatoeba.org #305615 (CK) & #611542 (sarah) +They arrived here safely yesterday. 他們昨天平安抵達這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #306606 (CM) & #779064 (Martha) +They believe in a life after death. 他們相信來世。 CC-BY 2.0 (France) Attribution: tatoeba.org #307653 (CK) & #900651 (Martha) +They believe in a life after death. 他們相信死後的生命。 CC-BY 2.0 (France) Attribution: tatoeba.org #307653 (CK) & #900652 (Martha) +They come from the south of France. 他们是从法国南部来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #306012 (CK) & #782294 (fucongcong) +They didn't speak French very well. 他們說法語說得不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664305 (CK) & #6325085 (verdastelo9604) +They have elected a new government. 他們選出了新政府。 CC-BY 2.0 (France) Attribution: tatoeba.org #503816 (CK) & #873215 (Martha) +They make frequent trips to Europe. 他們經常去歐洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #305646 (CK) & #870053 (Martha) +They passed by her house yesterday. 他們昨天路過她家。 CC-BY 2.0 (France) Attribution: tatoeba.org #306605 (CK) & #866057 (Martha) +They rescued the boy from drowning. 他們救了這個落水的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #305544 (CK) & #871224 (Martha) +They rescued the boy from drowning. 他們救了這個男孩,使他免於淹死。 CC-BY 2.0 (France) Attribution: tatoeba.org #305544 (CK) & #871226 (Martha) +They say that he will never return. 他们说他再也不会回来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #293118 (CK) & #336647 (fucongcong) +They say that old house is haunted. 據說老房子鬧鬼。 CC-BY 2.0 (France) Attribution: tatoeba.org #68413 (CK) & #895874 (Martha) +They were all hoarse from shouting. 他們全都叫到沙啞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32100 (CK) & #868400 (Martha) +They will arrive a week from today. 他們將於下個星期的今天抵達。 CC-BY 2.0 (France) Attribution: tatoeba.org #307650 (CK) & #895024 (Martha) +They're 30 minutes behind schedule. 他們的進度較預期慢30分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #278456 (CK) & #840802 (Martha) +This bomb can kill a lot of people. 这个炸弹可以炸死很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #387556 (Mouseneb) & #333893 (fucongcong) +This book is popular with students. 這本書受到學生的歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #56978 (CK) & #868085 (Martha) +This book isn't interesting at all. 這本書一點也不有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #56905 (CK) & #874221 (Martha) +This car is very economical on gas. 这辆车很省油。 CC-BY 2.0 (France) Attribution: tatoeba.org #58738 (U2FS) & #791419 (fucongcong) +This desk is designed for children. 這張書桌是專門為兒童設計的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59853 (CK) & #874488 (Martha) +This dress cost me over 40,000 yen. 這件衣服花了我40000日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #60783 (CK) & #907221 (Martha) +This flower is beautiful, isn't it? 這朵花很美,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60050 (CK) & #868441 (Martha) +This is a good newspaper, isn't it? 这是份好报纸,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #387703 (Mouseneb) & #343452 (fucongcong) +This is a very informative article. 这是篇信息量很大的文章。 CC-BY 2.0 (France) Attribution: tatoeba.org #4500252 (CK) & #7768282 (jiangche) +This is all the money I have on me. 這是我身上所有的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #3091253 (CK) & #6628351 (verdastelo9604) +This is going to be very expensive. 这要花很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733636 (CK) & #5640717 (verdastelo9604) +This is the cheapest store in town. 這是鎮上最便宜的商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #57866 (CK) & #907323 (Martha) +This is the tallest tower in Japan. 這是日本最高的塔。 CC-BY 2.0 (France) Attribution: tatoeba.org #55476 (CK) & #902944 (Martha) +This is the town where he was born. 这是他出生的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #55450 (Zifre) & #782373 (fucongcong) +This lake is deepest at this point. 这里是湖最深的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #59354 (CK) & #813578 (fucongcong) +This milk won't keep till tomorrow. 這牛奶放到明天會壞的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59699 (CK) & #873228 (Martha) +This plant is indigenous to Canada. 这种植物原产于加拿大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2458747 (Hybrid) & #8800302 (slo_oth) +This river is dangerous to swim in. 在這條河裡游泳很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #58112 (CK) & #894052 (Martha) +This song is very popular in Japan. 這首歌曲在日本很受歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #60101 (CK) & #900363 (Martha) +This store has a variety of spices. 這家商店有各種香料。 CC-BY 2.0 (France) Attribution: tatoeba.org #57745 (CK) & #895629 (Martha) +This table takes up too much space. 這張桌子太佔空間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #60857 (CK) & #895604 (Martha) +This ticket is good for three days. 這張票的有效期是三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #58176 (CK) & #905793 (Martha) +This ticket is good for three days. 这张票三日有效。 CC-BY 2.0 (France) Attribution: tatoeba.org #58176 (CK) & #8496249 (gumblex) +This vending machine isn't working. 這台自動販賣機故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58870 (CK) & #840431 (Martha) +Those pictures were painted by him. 那些圖畫是他畫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #42007 (CK) & #886584 (Martha) +Though he is rich, he is not happy. 虽然他很有钱,但他不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #295505 (CM) & #334255 (fucongcong) +Thousands of people died of hunger. 數千人死於飢餓。 CC-BY 2.0 (France) Attribution: tatoeba.org #24500 (CK) & #869952 (Martha) +To err is human, to forgive divine. 人皆有錯,唯聖者能恕。 CC-BY 2.0 (France) Attribution: tatoeba.org #20868 (Eldad) & #806234 (Martha) +Today is the hottest day this year. 今天是今年最熱的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #242842 (CK) & #801542 (Martha) +Tokyo is the largest city in Japan. 東京是日本最大的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #279794 (CK) & #904917 (Martha) +Tom and Mary are in the same class. 汤姆和玛丽在同一个班级。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029904 (CK) & #2110980 (sadhen) +Tom and Mary both know who you are. 湯姆和瑪麗都知道你是誰。 CC-BY 2.0 (France) Attribution: tatoeba.org #6525191 (CK) & #6633882 (verdastelo9604) +Tom and Mary can both speak French. 汤姆和玛丽两个人都会说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #5230114 (CK) & #5091203 (mirrorvan) +Tom and Mary were tired of waiting. 湯姆和瑪麗等煩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641687 (CK) & #6633867 (verdastelo9604) +Tom came to Boston three years ago. 汤姆三年前去了波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540005 (CK) & #2163106 (sadhen) +Tom can't go home until after 2:30. 汤姆在2:30之后才能回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951716 (CK) & #5650537 (verdastelo9604) +Tom can't sleep without a light on. Tom 没办法在没有亮灯的时候入睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4844634 (Hybrid) & #4844646 (pig8322) +Tom canceled his hotel reservation. 汤姆取消了他的酒店预订。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026722 (CK) & #5576770 (verdastelo9604) +Tom couldn't decide where to begin. 湯姆不能決定從哪裡開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026608 (CK) & #6119428 (verdastelo9604) +Tom denied having stolen the money. Tom否认偷了钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #37309 (CK) & #332630 (fucongcong) +Tom didn't want to disappoint Mary. 汤姆不想让玛丽失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029241 (CK) & #5983573 (verdastelo9604) +Tom doesn't know what he should do. 湯姆不知所措。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094442 (CK) & #4104423 (andymakespasta) +Tom doesn't want anything to drink. 汤姆什么都不想喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025926 (CK) & #8789773 (crescat) +Tom doesn't want to live in Boston. 湯姆不想住在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025911 (CK) & #6148389 (verdastelo9604) +Tom doesn't want to talk to anyone. 汤姆不想跟任何人说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223056 (CK) & #5845588 (verdastelo9604) +Tom has already hired a new lawyer. 湯姆已經雇了新律師。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956873 (CK) & #6673106 (verdastelo9604) +Tom has just remodeled his kitchen. 汤姆刚改建了他的厨房。 CC-BY 2.0 (France) Attribution: tatoeba.org #8560377 (CK) & #8560545 (slo_oth) +Tom has known Mary since childhood. 汤姆从小就认识玛丽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093659 (CK) & #1235248 (sunnywqing) +Tom has loved Mary for a long time. 汤姆爱玛丽很久了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028730 (CK) & #5640770 (verdastelo9604) +Tom has no one to turn to for help. 汤姆没有能求助的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025328 (CK) & #5900169 (verdastelo9604) +Tom hasn't said a word all morning. 汤姆整整一个上午一句话也没说。 CC-BY 2.0 (France) Attribution: tatoeba.org #1040599 (CK) & #8553166 (slo_oth) +Tom hasn't talked to Mary in years. 汤姆多年没有和玛丽说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093558 (CK) & #1428137 (sadhen) +Tom helped Mary move the furniture. 汤姆帮玛丽移动家具。 CC-BY 2.0 (France) Attribution: tatoeba.org #1623891 (CK) & #1783781 (sadhen) +Tom is divorced and has a daughter. Tom離婚了,他有個女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493580 (CK) & #4504472 (egg0073) +Tom is probably pretty rich by now. 汤姆现在可能很有钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #3737049 (CK) & #5624891 (verdastelo9604) +Tom just never should've done that. 汤姆就不该做那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2719340 (CK) & #5552168 (verdastelo9604) +Tom lives three miles east of here. 湯姆在這以東三哩的地方住。 CC-BY 2.0 (France) Attribution: tatoeba.org #5849306 (CK) & #6111970 (verdastelo9604) +Tom lost his balance and fell down. 汤姆失去了平衡摔落下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2734334 (CK) & #8709504 (crescat) +Tom made some mistakes on the test. 湯姆在考試中犯了一些錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #423934 (CK) & #908341 (Martha) +Tom might've missed the last train. 汤姆可能错过了最后一班列车。 CC-BY 2.0 (France) Attribution: tatoeba.org #6222871 (CK) & #6020849 (verdastelo9604) +Tom probably wanted to go swimming. 湯姆可能想去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957730 (CK) & #6065358 (verdastelo9604) +Tom said he'd never been to Boston. 汤姆说他从来没去过波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #3472910 (CK) & #9007588 (jacintoo) +Tom said he'll ask Mary to do that. 湯姆說他會讓瑪麗去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6270961 (CK) & #6624692 (verdastelo9604) +Tom says he didn't know what to do. 汤姆说他不知道要做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5478189 (CK) & #5660520 (verdastelo9604) +Tom says he hopes Mary can do that. 汤姆说他希望玛丽能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #6224728 (CK) & #9007590 (jacintoo) +Tom says that he's willing to help. 汤姆说他愿意帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664252 (CK) & #8584891 (tianblr) +Tom shouldn't have been here today. Tom今天不該在這。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493579 (CK) & #4504471 (egg0073) +Tom slept through the entire movie. 湯姆在整場電影放映時都在睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #3511314 (Hybrid) & #6109316 (verdastelo9604) +Tom studied French for three years. 汤姆学了三年法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4807056 (CK) & #4815192 (McMeao) +Tom teaches me French twice a week. 汤姆每周两次教我法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451373 (CK) & #5670777 (verdastelo9604) +Tom told Mary she couldn't do that. 湯姆告訴瑪麗她不能做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6270825 (CK) & #6633864 (verdastelo9604) +Tom took the hammer away from Mary. 汤姆从玛丽那里拿走了锤子。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822827 (CK) & #5694479 (verdastelo9604) +Tom turned on the car's fog lights. 湯姆打開了車的霧燈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2229585 (CK) & #6535845 (verdastelo9604) +Tom used to eat a lot of junk food. 汤姆以前经常吃很多垃圾食品。 CC-BY 2.0 (France) Attribution: tatoeba.org #1830450 (CK) & #8931400 (crescat) +Tom wants me to stay away from him. Tom要我離他遠一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #4008923 (JSakuragi) & #3748345 (egg0073) +Tom was too scared to say anything. 汤姆吓得说不出话。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017193 (CK) & #4789607 (400S) +Tom wasn't too happy in those days. 湯姆這些天裡不太高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #3727815 (CM) & #6111928 (verdastelo9604) +Tom went to Boston three years ago. 汤姆三年前去了波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023908 (CK) & #2163106 (sadhen) +Tom's bicycle was stolen yesterday. 湯姆的自行車昨天被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6089106 (CK) & #6089349 (verdastelo9604) +Tom's funeral will be this weekend. 湯姆的葬禮訂在這週末。 CC-BY 2.0 (France) Attribution: tatoeba.org #681044 (Source_VOA) & #900007 (kanaorange) +Tom's office is on the third floor. 汤姆的办公室在三楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529386 (CK) & #5694466 (verdastelo9604) +Tom, I want you to handle this one. 汤姆,我想要你来操作这一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2016968 (CK) & #5091722 (mirrorvan) +Tomorrow, he will land on the moon. 明天,他将登上月球。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481 (brauliobezerra) & #334910 (fucongcong) +Tomorrow, he will land on the moon. 明天他会在月球降落。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481 (brauliobezerra) & #8592711 (easononizuka) +Traffic was blocked by a landslide. 交通被山崩所阻斷。 CC-BY 2.0 (France) Attribution: tatoeba.org #63772 (CK) & #801447 (Martha) +Two glasses of apple juice, please. 请给我两杯苹果汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2833972 (CS) & #8795138 (crescat) +Wait for a moment outside the room. 在房間外面等待片刻。 CC-BY 2.0 (France) Attribution: tatoeba.org #319524 (CK) & #797134 (Martha) +Waiter, please bring me some water. 服務生,請給我一些水。 CC-BY 2.0 (France) Attribution: tatoeba.org #19541 (Dejo) & #868402 (Martha) +Was he still here when you arrived? 當你到達的時候他還在這裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #71338 (CK) & #905348 (Martha) +Water boils at 100 degrees Celsius. 水在攝氏100度沸騰。 CC-BY 2.0 (France) Attribution: tatoeba.org #270789 (CK) & #868077 (Martha) +Water boils at one hundred degrees. 水在攝氏100度沸騰。 CC-BY 2.0 (France) Attribution: tatoeba.org #2687794 (CM) & #868077 (Martha) +Water evaporates when it is heated. 當水被加熱時,水汽蒸發。 CC-BY 2.0 (France) Attribution: tatoeba.org #270934 (CK) & #797104 (Martha) +We are going downtown to eat pizza. 我們要去市中心吃比薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #34787 (CK) & #900705 (Martha) +We are in the era of atomic energy. 我們身在原子能時代。 CC-BY 2.0 (France) Attribution: tatoeba.org #22976 (CK) & #780364 (Martha) +We are in the era of atomic energy. 我們身處核能時代。 CC-BY 2.0 (France) Attribution: tatoeba.org #22976 (CK) & #884711 (Tajfun) +We are traveling on a tight budget. 我們很節省地旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #324689 (CK) & #895647 (Martha) +We are traveling on a tight budget. 我們用少的預算旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #324689 (CK) & #895652 (Martha) +We easily figured out the password. 我们毫不费力地想出了密码。 CC-BY 2.0 (France) Attribution: tatoeba.org #47935 (CK) & #336670 (fucongcong) +We elected her captain of our team. 我们选她为我们队的队长。 CC-BY 2.0 (France) Attribution: tatoeba.org #249308 (CH) & #333818 (fucongcong) +We enjoyed ourselves at the picnic. 我們在野餐玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #262836 (CK) & #868401 (Martha) +We get the materials from Malaysia. 我們從馬來西亞得到材料。 CC-BY 2.0 (France) Attribution: tatoeba.org #262995 (CK) & #805010 (Martha) +We had a heavy rainfall last night. 昨晚雨勢很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #512177 (blay_paul) & #796072 (Martha) +We had a history quiz this morning. 我們今天早上有歷史小考。 CC-BY 2.0 (France) Attribution: tatoeba.org #242232 (CK) & #907259 (Martha) +We had a lot of visitors yesterday. 我們昨天有許多訪客。 CC-BY 2.0 (France) Attribution: tatoeba.org #4063921 (CK) & #6101283 (verdastelo9604) +We had a very good time last night. 我们昨晚过得非常开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #30157 (CK) & #8762954 (crescat) +We happened to get on the same bus. 我们恰巧上了同一辆公交车。 CC-BY 2.0 (France) Attribution: tatoeba.org #262972 (CK) & #1361991 (sadhen) +We have a door between our offices. 我們的辦公室之間有扇門。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712823 (CK) & #6293103 (verdastelo9604) +We have four French classes a week. 我們一週有四堂法語課。 CC-BY 2.0 (France) Attribution: tatoeba.org #266410 (CK) & #900267 (Martha) +We have to continue to do our jobs. 我们要继续我们的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #5573999 (CK) & #5574488 (verdastelo9604) +We have to find out what Tom wants. 我们要明白汤姆想要什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5513634 (CK) & #5611630 (verdastelo9604) +We headed for the mountain cottage. 我们向山间小屋走去。 CC-BY 2.0 (France) Attribution: tatoeba.org #22904 (CK) & #847822 (fucongcong) +We know it was you that killed Tom. 我們知道昰你殺了湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641586 (CK) & #6114417 (verdastelo9604) +We often played chess after school. 我們常常在放學後下棋。 CC-BY 2.0 (France) Attribution: tatoeba.org #321393 (CK) & #874218 (Martha) +We reached the top of the mountain. 我們到達了山頂。 CC-BY 2.0 (France) Attribution: tatoeba.org #263049 (CK) & #908323 (Martha) +We saw the children enter the room. 我們看到了孩子們進入這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #247760 (CK) & #894965 (Martha) +We talked until two in the morning. 我們聊到凌晨兩點。 CC-BY 2.0 (France) Attribution: tatoeba.org #322013 (CK) & #900685 (Martha) +We were on the train for ten hours. 我們在火車上十個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #680994 (Source_VOA) & #918002 (Martha) +We were surprised to hear the news. 我們聽到這個消息很驚訝。 CC-BY 2.0 (France) Attribution: tatoeba.org #248137 (CK) & #903341 (Martha) +We're fed up with your complaining. 我們受夠了你的抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #247943 (CK) & #772093 (Martha) +We're getting a new car next month. 下个月我们会有辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #792242 (CK) & #804870 (fucongcong) +We're going to climb that mountain. 我們將要去爬那座山。 CC-BY 2.0 (France) Attribution: tatoeba.org #6874188 (CK) & #777713 (Martha) +We're having a party next Saturday. 我們下個星期六將舉行派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #325069 (CK) & #872146 (Martha) +We're not the ones getting married. 我们不是结了婚的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3310898 (CK) & #5865501 (verdastelo9604) +Were you in Boston for a long time? 你在波士顿待了很久吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6250928 (CK) & #8821391 (crescat) +What do the initials NTT stand for? NTT這個縮寫是什麼意思? CC-BY 2.0 (France) Attribution: tatoeba.org #280184 (CK) & #903597 (Martha) +What do you think of Japanese food? 你覺得日本料理怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #281805 (CK) & #907872 (Martha) +What do you think of Tom's cooking? 你覺得Tom的廚藝如何? CC-BY 2.0 (France) Attribution: tatoeba.org #4664235 (CK) & #5548484 (egg0073) +What happened here was unavoidable. 这里发生的不可避免。 CC-BY 2.0 (France) Attribution: tatoeba.org #3131621 (CK) & #5617219 (verdastelo9604) +What have you been doing this week? 你這個星期一直在做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #242085 (CK) & #900735 (Martha) +What is the title of your new book? 你新書的書名是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #5451924 (CM) & #5452170 (egg0073) +What language is spoken in America? 在美國的人說什麼語言? CC-BY 2.0 (France) Attribution: tatoeba.org #24644 (Zifre) & #894435 (Martha) +What newspaper do you subscribe to? 你訂閱了什麼報紙? CC-BY 2.0 (France) Attribution: tatoeba.org #1292939 (CK) & #793958 (Martha) +What subjects do you like the best? 你最喜歡什麼科目? CC-BY 2.0 (France) Attribution: tatoeba.org #320419 (CK) & #907897 (Martha) +What time do you wake up every day? 你每天幾點起床? CC-BY 2.0 (France) Attribution: tatoeba.org #1230476 (alec) & #1225632 (tsayng) +What vegetables do you like to eat? 你喜歡吃什麼菜? CC-BY 2.0 (France) Attribution: tatoeba.org #7767757 (sharris123) & #6120167 (xjjAstrus) +What we need is a little more time. 我们就需要再多一点时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #3971178 (Eldad) & #5631900 (verdastelo9604) +What will you have for lunch today? 你今天午餐吃什么? CC-BY 2.0 (France) Attribution: tatoeba.org #882552 (CK) & #1415806 (sadhen) +What would you think if I did that? 如果我那么做你会怎么想? CC-BY 2.0 (France) Attribution: tatoeba.org #3820130 (CK) & #5670860 (verdastelo9604) +What you said about Tom isn't true. 你说的关于汤姆的话不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3168306 (CK) & #5794108 (verdastelo9604) +What're your plans for the weekend? 你週末有什麼計劃? CC-BY 2.0 (France) Attribution: tatoeba.org #387446 (CK) & #836230 (Martha) +What's the last thing you remember? 你能记起来的最后一件事是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #1912001 (Spamster) & #2453044 (fenfang557) +What's the weight of your suitcase? 你的行李多重? CC-BY 2.0 (France) Attribution: tatoeba.org #17381 (Zifre) & #335842 (fucongcong) +What's your favorite radio station? 你最喜歡的電台是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #906855 (CK) & #6109310 (verdastelo9604) +What's your favorite type of pizza? 你最喜歡的比薩類型是甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #4905554 (Hybrid) & #6120936 (verdastelo9604) +When I came home, Tom was studying. 當我回家的時候,湯姆正在讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #246686 (CK) & #902953 (Martha) +When I got home, I was very hungry. 我回到家的时候,感觉非常饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #24210 (CK) & #334548 (fucongcong) +When and where is breakfast served? 早饭在何时何地用? CC-BY 2.0 (France) Attribution: tatoeba.org #277793 (CK) & #811032 (fucongcong) +When are you going to quit smoking? 你何時要戒煙? CC-BY 2.0 (France) Attribution: tatoeba.org #70202 (CK) & #907522 (Martha) +When will it be convenient for you? 什麼時候對你來說是方便的? CC-BY 2.0 (France) Attribution: tatoeba.org #71151 (CK) & #907253 (Martha) +When will the rainy season be over? 雨季何時會結束? CC-BY 2.0 (France) Attribution: tatoeba.org #282492 (CK) & #900649 (Martha) +When will the world come to an end? 世界末日是什么时候? CC-BY 2.0 (France) Attribution: tatoeba.org #271149 (Eldad) & #333243 (fucongcong) +Where in Australia did you grow up? 你在澳洲的哪裡長大? CC-BY 2.0 (France) Attribution: tatoeba.org #65150 (CK) & #900263 (Martha) +Where is the bus stop for downtown? 到市區的公車站牌在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #41099 (CK) & #900711 (Martha) +Where is the nearest telephone box? 最近的電話亭在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #27252 (CK) & #838546 (Martha) +Where will you go for the vacation? 你要去哪裡度假? CC-BY 2.0 (France) Attribution: tatoeba.org #69501 (CM) & #873230 (Martha) +Where's the nearest subway station? 最近的地鐵站在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #243724 (CK) & #836272 (Martha) +Wherever you go, I will follow you. 無論你去哪裡我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #63278 (CK) & #850409 (Martha) +Which do you prefer, rice or bread? 你比較喜歡哪一個,米飯還是麵包? CC-BY 2.0 (France) Attribution: tatoeba.org #54340 (CK) & #902925 (Martha) +Which do you prefer, tea or coffee? 你比較喜歡哪一個,茶還是咖啡? CC-BY 2.0 (France) Attribution: tatoeba.org #64219 (CK) & #907880 (Martha) +While I was reading, I fell asleep. 當我讀書的時候,我睡著了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261752 (CK) & #903621 (Martha) +Who painted this beautiful picture? 誰畫了這幅美麗的圖畫? CC-BY 2.0 (France) Attribution: tatoeba.org #276214 (CK) & #836395 (Martha) +Who was in charge of today's party? 誰負責今天的派對? CC-BY 2.0 (France) Attribution: tatoeba.org #242495 (CK) & #903467 (Martha) +Who's your most interesting friend? 你最有趣的朋友是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #530671 (CK) & #839099 (Martha) +Why are you burning these pictures? 为什么你要烧这些图片呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1776726 (Amastan) & #1776728 (sadhen) +Why did you come here this morning? 今天早上你為什麼來這裡? CC-BY 2.0 (France) Attribution: tatoeba.org #69873 (CK) & #900199 (Martha) +Why did you stay at home yesterday? 你昨天為甚麼在家? CC-BY 2.0 (France) Attribution: tatoeba.org #3738876 (CK) & #6058632 (verdastelo9604) +Why didn't you turn up on Saturday? 你為何週六沒來? CC-BY 2.0 (France) Attribution: tatoeba.org #5145594 (JimmyUK) & #5112263 (xjjAstrus) +Why don't you come dancing with me? 为什么你不来跟我跳舞? CC-BY 2.0 (France) Attribution: tatoeba.org #40316 (CK) & #796806 (fucongcong) +Will he be able to catch the train? 他能趕上火車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #304800 (CK) & #886134 (Martha) +Will you be at home this afternoon? 你今天下午会在家吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2259918 (_undertoad) & #8589264 (easononizuka) +Will you have another slice of pie? 你要再來一塊餡餅嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #35506 (CK) & #900258 (Martha) +Will you take part in the ceremony? 你會參加這個儀式嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #46935 (CK) & #896674 (Martha) +Winter is over and spring has come. 冬天結束了春天已經來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #279609 (CM) & #775398 (Martha) +Women tend to live longer than men. 女人往往比男人活得更長。 CC-BY 2.0 (France) Attribution: tatoeba.org #267318 (CK) & #895159 (Martha) +Work harder if you plan to succeed. 如果你計劃要成功,就要更加努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #522185 (CK) & #907250 (Martha) +Would you like a little more salad? 请问您要多来点儿沙拉吗? CC-BY 2.0 (France) Attribution: tatoeba.org #869540 (papabear) & #1990224 (sunnywqing) +Would you like to have some coffee? 你要喝點咖啡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62189 (CK) & #903029 (Martha) +Would you mind lending me your car? 你介意把你的車借給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #17080 (CK) & #903027 (Martha) +Would you mind lending me your pen? 你介意把你的筆借給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33773 (CK) & #905800 (Martha) +Would you mind lending me your pen? 你介意借我你的筆嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #33773 (CK) & #905801 (Martha) +Would you mind my opening the door? 你介意我開門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #39004 (CK) & #903474 (Martha) +Would you pass me the salt, please? 請你把鹽遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25737 (CK) & #874216 (Martha) +Would you please close that window? 請您把那扇窗戶關起來好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #397190 (CK) & #868261 (Martha) +Would you please wait for a minute? 請你等一下好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #267901 (CK) & #895568 (Martha) +Write it down before you forget it. 在你忘記之前把它寫下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #321160 (CK) & #896509 (Martha) +Write your name in capital letters. 写下你名字的大写字母。 CC-BY 2.0 (France) Attribution: tatoeba.org #275957 (CK) & #332654 (fucongcong) +Yesterday I met Mary on the street. 昨天我在街上遇見了瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #244638 (CK) & #902927 (Martha) +You and I have something in common. 你和我有一些共同点。 CC-BY 2.0 (France) Attribution: tatoeba.org #249558 (CK) & #2241826 (sadhen) +You are a good painter, aren't you? 你是個很棒的畫家,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69534 (CK) & #900251 (Martha) +You are responsible for the result. 你要对结果负责。 CC-BY 2.0 (France) Attribution: tatoeba.org #16602 (mamat) & #2004698 (sadhen) +You are too sensitive to criticism. 你對批評太敏感了。 CC-BY 2.0 (France) Attribution: tatoeba.org #9902 (CK) & #871154 (Martha) +You can keep this one for yourself. 你可以把這個保留給自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #55978 (CK) & #903645 (Martha) +You can pick out any book you like. 你可以選擇任何你喜歡的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #36839 (CK) & #793888 (Martha) +You can trust him to keep his word. 你可以相信他会信守诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #15844 (CK) & #1839176 (sadhen) +You can use this computer any time. 你可以隨時使用這台電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #66211 (CK) & #905848 (Martha) +You can't use this washing machine. 您不能使用這台洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #58107 (CK) & #874352 (Martha) +You can't use this washing machine. 你不能用這臺洗衣機。 CC-BY 2.0 (France) Attribution: tatoeba.org #58107 (CK) & #9096099 (xjjAstrus) +You chose this job yourself, right? 你自己选择了这份工作,是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4844661 (CK) & #4844665 (pig8322) +You didn't eat much lunch, did you? 你午饭吃的不多,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1847750 (CK) & #4177488 (maple) +You don't have to do it right away. 你没必要马上去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1480996 (weihaiping) & #1361958 (sadhen) +You don't understand the procedure. 你不明白程序。 CC-BY 2.0 (France) Attribution: tatoeba.org #2283689 (CK) & #5983598 (verdastelo9604) +You had better go to the dentist's. 你最好去看牙醫。 CC-BY 2.0 (France) Attribution: tatoeba.org #263616 (CK) & #905347 (Martha) +You had better go to the infirmary. 你最好去一下医务室。 CC-BY 2.0 (France) Attribution: tatoeba.org #8720 (Zifre) & #333586 (fucongcong) +You have the same racket as I have. 你的球拍跟我的一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #4918 (CK) & #775584 (Martha) +You have to learn standard English. 你必须得学标准英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #9588 (CK) & #1780764 (sadhen) +You must keep quiet for a few days. 你该安静几天。 CC-BY 2.0 (France) Attribution: tatoeba.org #16824 (Eldad) & #782870 (fucongcong) +You must take his age into account. 你该考虑他的年纪。 CC-BY 2.0 (France) Attribution: tatoeba.org #15806 (Swift) & #813501 (fucongcong) +You refused to do that, didn't you? 你拒絕去做那件事,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #6250724 (CK) & #6624737 (verdastelo9604) +You should go and brush your teeth. 你該去洗牙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7842268 (sharris123) & #6142067 (xjjAstrus) +You shouldn't talk to Tom that way. 你不該那樣跟湯姆講話。 CC-BY 2.0 (France) Attribution: tatoeba.org #6013529 (CK) & #6673096 (verdastelo9604) +You talk as if you knew everything. 你说得你好像什么都知道似的。 CC-BY 2.0 (France) Attribution: tatoeba.org #32332 (CK) & #8756398 (crescat) +You were supposed to tell Tom that. 你该告诉汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3860373 (CK) & #5715141 (verdastelo9604) +You'd better wait for the next bus. 你最好等下一班公車。 CC-BY 2.0 (France) Attribution: tatoeba.org #264225 (CK) & #905349 (Martha) +You're a month behind in your rent. 你的租金遲交了一個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #70406 (CK) & #908342 (Martha) +You're the only person I can trust. 你是我唯一可以信任的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #954839 (CK) & #2581496 (fenfang557) +You've got a big hole in your sock. 你的袜子上有个大洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #606880 (baisong) & #476650 (fucongcong) +You've got something in your teeth. 牙齿卡了点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5482200 (CK) & #8589339 (easononizuka) +Your parents didn't come, did they? 你的父母沒來,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16860 (CK) & #872493 (Martha) +"Where's your book?" "On the table." 「你的書在哪?」「在桌上。」 CC-BY 2.0 (France) Attribution: tatoeba.org #1242869 (alec) & #1233902 (tsayng) +"Whose chair is this?" "It is mine." “这是谁的椅子?”“它是我的。” CC-BY 2.0 (France) Attribution: tatoeba.org #73897 (CK) & #1737869 (sadhen) +A Japanese wouldn't do such a thing. 日本人不會做這種事。 CC-BY 2.0 (France) Attribution: tatoeba.org #281712 (CK) & #798257 (Martha) +A bridge was built across the river. 人們修了一座橋過河。 CC-BY 2.0 (France) Attribution: tatoeba.org #273181 (CK) & #801486 (Martha) +A dog can run faster than a man can. 狗跑得比人快。 CC-BY 2.0 (France) Attribution: tatoeba.org #239209 (CK) & #8743952 (crescat) +A famous architect built this house. 一个有名的建筑师造了这个房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #324465 (CK) & #333563 (fucongcong) +A famous architect built this house. 一个有名的建筑师造了这栋房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #324465 (CK) & #335932 (fucongcong) +A friend in need is a friend indeed. 患難見真情。 CC-BY 2.0 (France) Attribution: tatoeba.org #32841 (Zifre) & #806165 (Martha) +A friend in need is a friend indeed. 在你有需要的時候,會幫你的朋友才是真正的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #32841 (Zifre) & #806172 (Martha) +A friend of mine is studying abroad. 我有一位朋友在國外留學。 CC-BY 2.0 (France) Attribution: tatoeba.org #252011 (CK) & #793222 (Martha) +A hundred years is called a century. 一百年被叫做一个世纪。 CC-BY 2.0 (France) Attribution: tatoeba.org #318299 (CK) & #1695405 (Venki) +A map helps us to know where we are. 地图帮助我们知道所在的位置。 CC-BY 2.0 (France) Attribution: tatoeba.org #277231 (CM) & #346480 (fucongcong) +A parrot can mimic a person's voice. 鸚鵡會模仿人的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #65170 (Dejo) & #796974 (Martha) +Absence makes the heart grow fonder. 小別勝新婚,久别情更深。 CC-BY 2.0 (France) Attribution: tatoeba.org #22559 (Dejo) & #806239 (Martha) +Accuracy is important in arithmetic. 准确性在计算中很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #245171 (CM) & #2819990 (CLARET) +After supper, she cleared the table. 晚飯後她清理了桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #317319 (CK) & #842435 (Martha) +All good things must come to an end. 天下无不散之筵席。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360035 (sadhen) & #1360036 (sadhen) +All participants must be registered. 所有的參加者都得註冊。 CC-BY 2.0 (France) Attribution: tatoeba.org #5137600 (CK) & #5422710 (egg0073) +All you can do is trust one another. 你们除了信任对方,没什么要做的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1467 (wakaran) & #335711 (fucongcong) +All you need to do is just sit here. 你要做的只是坐在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1013348 (CK) & #1358691 (sadhen) +Anybody would be better than nobody. 不管是谁总比没人好。 CC-BY 2.0 (France) Attribution: tatoeba.org #36597 (CK) & #333892 (fucongcong) +Are you going to attend the meeting? 你要參加會議嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #22524 (CK) & #874470 (Martha) +Are you reading an interesting book? 你在讀有趣的的書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68894 (CK) & #6157023 (rayshih715) +Are you saying my life is in danger? 你在说我有生命危险吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2103 (CK) & #503203 (fucongcong) +Arrangements have already been made. 已经安排好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529380 (CK) & #5624858 (verdastelo9604) +As soon as she comes, we will begin. 她一到,我们就开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #308526 (CK) & #332808 (fucongcong) +At last, we reached our destination. 我们终于达到了我们的目标。 CC-BY 2.0 (France) Attribution: tatoeba.org #39901 (CK) & #808213 (fucongcong) +At least tell me where you're going. 至少告诉我们你要去哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #3202319 (CK) & #5576813 (verdastelo9604) +Beauty's in the eye of the beholder. 美驻留在看的那个人的眼里。 CC-BY 2.0 (France) Attribution: tatoeba.org #606865 (baisong) & #503258 (fucongcong) +CDs have taken the place of records. CD已经取代了胶木唱片。 CC-BY 2.0 (France) Attribution: tatoeba.org #72240 (Zifre) & #858144 (kooler) +Can you distinguish silver from tin? 你能分辨銀和錫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #18461 (francaisr0wlet) & #875254 (Martha) +Can you drive a manual transmission? 你會開手排車嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #601741 (CK) & #780047 (Martha) +Can you imagine walking on the moon? 你可以想象在月球上行走吗? CC-BY 2.0 (France) Attribution: tatoeba.org #238818 (CK) & #332556 (fucongcong) +Can you wake me up at 7:00 tomorrow? 你明天早上七點可不可以叫我起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #323079 (CK) & #718382 (egg0073) +Could you please pass me the pepper? 請你把胡椒遞給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #518551 (CK) & #872380 (Martha) +Could you please pass me the pepper? 能把胡椒遞給我嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #518551 (CK) & #8426629 (xjjAstrus) +Could you say that in plain English? 你會說簡單的英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #28191 (CK) & #811829 (Martha) +Cows are eating grass in the meadow. 牛吃牧草。 CC-BY 2.0 (France) Attribution: tatoeba.org #19510 (CK) & #471043 (fucongcong) +Cows are eating grass in the meadow. 牛在牧地上吃草。 CC-BY 2.0 (France) Attribution: tatoeba.org #19510 (CK) & #2511454 (tsayng) +Did you have a good time last night? 你昨天晚上過得好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2265743 (_undertoad) & #6073858 (verdastelo9604) +Didn't you hear her speaking French? 你沒聽到她說法語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #20107 (CK) & #811834 (Martha) +Do I have to take off my shoes here? 在這裡我必須脫鞋嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #61905 (kebukebu) & #761291 (Martha) +Do you have a lot of money with you? 你身上有很多钱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4692307 (dannylow) & #463850 (fucongcong) +Do you know how to drive this thing? 你知道怎么驾驶这玩意儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5392597 (CK) & #5393357 (soldier) +Do you mind if I turn off the light? 您介不介意我把灯关了? CC-BY 2.0 (France) Attribution: tatoeba.org #71895 (CK) & #352066 (fucongcong) +Do you really think I look like Tom? 你真的觉得我长得像汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3184373 (CK) & #8848652 (crescat) +Do you think Tom is already retired? 你認為湯姆退休了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6337892 (CK) & #8571919 (verdastelo9604) +Do you think Tom is retired already? 你認為湯姆退休了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6337893 (CK) & #8571919 (verdastelo9604) +Don't ask questions. Just follow me. 别问问题。跟着我就行。 CC-BY 2.0 (France) Attribution: tatoeba.org #3500590 (Hybrid) & #5842705 (verdastelo9604) +Don't be too sensitive to criticism. 不要对批评太敏感了。 CC-BY 2.0 (France) Attribution: tatoeba.org #317780 (CK) & #335125 (fucongcong) +Don't disturb me while I'm studying. 我学习的时候不要打扰我。 CC-BY 2.0 (France) Attribution: tatoeba.org #251805 (CK) & #510769 (fucongcong) +Don't disturb me while I'm studying. 当我学习的时候不要打扰我。 CC-BY 2.0 (France) Attribution: tatoeba.org #251805 (CK) & #604947 (CLARET) +Don't leave your work half finished. 别留着一半工作没干。 CC-BY 2.0 (France) Attribution: tatoeba.org #245455 (CK) & #5907644 (verdastelo9604) +Don't let children play in the road. 别让孩子们在马路中间嬉戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #966053 (LittleBoy) & #8514561 (gumblex) +Don't let this information leak out. 不要让这些信息泄露出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1963532 (jjbraam) & #4353694 (e78xx_xxx) +Don't put the cart before the horse. 不要把馬車放在馬的前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #282376 (CK) & #897280 (Martha) +Don't put the cart before the horse. 不要把本末倒置。 CC-BY 2.0 (France) Attribution: tatoeba.org #282376 (CK) & #897281 (Martha) +Eating fish is good for your health. 吃鱼有益于你的健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #19341 (CK) & #1878291 (sadhen) +English is a hard language to learn. 英語是一種難學的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #460250 (jeanne) & #811863 (Martha) +English is a means of communication. 英語是一種溝通的手段。 CC-BY 2.0 (France) Attribution: tatoeba.org #26247 (CK) & #811870 (Martha) +English is spoken in many countries. 許多國家的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26292 (CK) & #811893 (Martha) +English is taught in most countries. 英語在大部份的國家被教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #26293 (CK) & #811900 (Martha) +English is taught in most countries. 大部份的國家都教英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26293 (CK) & #811901 (Martha) +Every time it rains, the roof leaks. 每次下雨屋頂就漏水。 CC-BY 2.0 (France) Attribution: tatoeba.org #26858 (CK) & #780369 (Martha) +Everyone in the town knows about it. 鎮上的每個人都知道它。 CC-BY 2.0 (France) Attribution: tatoeba.org #434019 (CK) & #881538 (Martha) +Everyone wanted a piece of the cake. 每个人都想分一点蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #5392589 (CK) & #5611637 (verdastelo9604) +Everyone wants what they can't have. 每个人都想要得到无法拥有的东西 CC-BY 2.0 (France) Attribution: tatoeba.org #4211842 (Hybrid) & #5411837 (Janevy) +Everyone was invited, except for me. 除了我每個人都被邀請了。 CC-BY 2.0 (France) Attribution: tatoeba.org #542928 (FeuDRenais) & #842321 (Martha) +Excuse me, but where is the library? 對不起,但圖書館在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #51441 (CK) & #881212 (Martha) +Excuse me, how much is this sweater? 请问下,这件毛衣要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #3380544 (passionstrings) & #8936377 (crescat) +Few people live to be 100 years old. 很少人活到100岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #318297 (CK) & #389421 (fucongcong) +Fish and red wine don't go together. 鱼和红酒不相配。 CC-BY 2.0 (France) Attribution: tatoeba.org #19361 (CK) & #333973 (fucongcong) +Fresh fruit is good for your health. 新鲜的水果对你的健康有益。 CC-BY 2.0 (France) Attribution: tatoeba.org #387571 (Mouseneb) & #435361 (fucongcong) +Go upstairs and bring down my trunk. 上樓把我的旅行箱拿下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #72895 (CK) & #798239 (Martha) +God helps those who help themselves. 自助者天助。 CC-BY 2.0 (France) Attribution: tatoeba.org #269654 (CM) & #332573 (fucongcong) +Graham Greene is my favorite author. 格雷厄姆格林是我最喜歡的作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #62784 (CK) & #917968 (Martha) +Grandmother sent us a box of apples. 奶奶送了我們一箱蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #273910 (CK) & #798191 (Martha) +Have you bought a raffle ticket yet? 你买彩票了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #640834 (darinmex) & #812267 (fucongcong) +Have you ever heard of such a thing? 你听说过这样的事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #54782 (jakov) & #7773141 (jiangche) +Have you ever seen such a nice film? 你看过这么好看的电影吗? CC-BY 2.0 (France) Attribution: tatoeba.org #581887 (qdii) & #1366190 (sadhen) +Have you finished reading that book? 你读完那本书了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3141076 (CK) & #813582 (fucongcong) +Have you traveled anywhere recently? 你最近去哪裡旅遊了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4502675 (CK) & #6028203 (verdastelo9604) +He always mistakes me for my sister. 他老是把我和我姐姐搞错。 CC-BY 2.0 (France) Attribution: tatoeba.org #289144 (CK) & #343842 (fucongcong) +He answered my question with a "no." 他用一個"不"回答了我的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #404107 (CK) & #883495 (Martha) +He appears to be strong and healthy. 他看起来健康强壮。 CC-BY 2.0 (France) Attribution: tatoeba.org #294990 (CK) & #1438528 (asosan) +He became an orphan when he was ten. 十岁时他就成了孤儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #434852 (lukaszpp) & #4760129 (ryanwoo) +He came out from behind the curtain. 他从窗帘后出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289512 (CK) & #8777598 (crescat) +He couldn't understand the sentence. 他無法理解這句話。 CC-BY 2.0 (France) Attribution: tatoeba.org #284687 (CK) & #801993 (Martha) +He described the incident in detail. 他詳細地描述了事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #683958 (papabear) & #6073893 (verdastelo9604) +He doesn't have a job. He's retired. 他没有工作,他退休了。 CC-BY 2.0 (France) Attribution: tatoeba.org #466562 (FeuDRenais) & #469523 (fucongcong) +He earned as much money as possible. 他能赚多少就赚多少。 CC-BY 2.0 (France) Attribution: tatoeba.org #291825 (CK) & #335084 (fucongcong) +He gave me a nice Christmas present. 他给了我一个很棒的圣诞礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #297492 (CK) & #343671 (fucongcong) +He got down the book from the shelf. 他從架上拿下書。 CC-BY 2.0 (France) Attribution: tatoeba.org #303812 (CM) & #6047497 (verdastelo9604) +He has a brother who lives in Tokyo. 他有个住在东京的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #284881 (Vortarulo) & #7771888 (jiangche) +He has been to Hawaii several times. 他去过夏威夷几次。 CC-BY 2.0 (France) Attribution: tatoeba.org #2084321 (Eldad) & #5555689 (verdastelo9604) +He has gone to Italy to study music. 他已經去義大利學習音樂了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294199 (CK) & #788723 (Martha) +He has little confidence in himself. 他對自己沒有多少信心。 CC-BY 2.0 (France) Attribution: tatoeba.org #292765 (CK) & #6147574 (verdastelo9604) +He is a member of the baseball club. 他是這棒球俱樂部的成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #304275 (CM) & #6332421 (verdastelo9604) +He is afraid of getting lung cancer. 他怕得到肺癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #302430 (CK) & #876934 (Martha) +He is good at dealing with children. 他擅長應付小孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #297146 (CK) & #804630 (Martha) +He is the man you met the other day. 他是前几天和你见过面的那个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #300664 (CK) & #8727924 (crescat) +He isn't my brother. He's my cousin. 他不是我的兄弟。他是我的表弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #297821 (CK) & #875274 (Martha) +He looked around, but he saw no one. 他看向四周,但沒看到任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #288716 (CK) & #4732056 (egg0073) +He lost his eyesight in an accident. 他在一次意外中失去了他的視力。 CC-BY 2.0 (France) Attribution: tatoeba.org #476191 (CK) & #887909 (Martha) +He made friends with her in America. 他與她在美國成為朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #288831 (CK) & #819264 (Martha) +He made good use of the opportunity. 他好好地利用了這個機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #290660 (CK) & #819236 (Martha) +He made many excuses for being late. 他為遲到找了很多的藉口。 CC-BY 2.0 (France) Attribution: tatoeba.org #301496 (CK) & #801974 (Martha) +He made the best of the opportunity. 他善用了這個機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #290663 (CK) & #796027 (Martha) +He made the most of his opportunity. 他盡力地利用了這個機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #302497 (CK) & #796007 (Martha) +He said that it would probably rain. 他說很可能會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #394116 (CK) & #889157 (Martha) +He said, "I want to be a scientist." 他說:“我想成為科學家。” CC-BY 2.0 (France) Attribution: tatoeba.org #298028 (kebukebu) & #761359 (Martha) +He spent the morning reading a book. 他花了一上午的時間看書。 CC-BY 2.0 (France) Attribution: tatoeba.org #918535 (shanghainese) & #918537 (Martha) +He spent the morning reading a book. 他整個上午都在看書。 CC-BY 2.0 (France) Attribution: tatoeba.org #918535 (shanghainese) & #918538 (Martha) +He swam until he could swim no more. 他游到不能游为止。 CC-BY 2.0 (France) Attribution: tatoeba.org #623258 (darinmex) & #815306 (fucongcong) +He took a taxi to get there in time. 他打出租车以及时赶到。 CC-BY 2.0 (France) Attribution: tatoeba.org #301504 (CK) & #5571046 (verdastelo9604) +He was absent from school yesterday. 他昨天没来上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #296900 (CK) & #346832 (fucongcong) +He was arrested for drunken driving. 他因酒後駕駛而被捕。 CC-BY 2.0 (France) Attribution: tatoeba.org #270973 (CK) & #846306 (Martha) +He was sitting between Mary and Tom. 他坐在瑪麗和湯姆之間。 CC-BY 2.0 (France) Attribution: tatoeba.org #293011 (CK) & #880244 (Martha) +He went there instead of his father. 他代替他的父親去。 CC-BY 2.0 (France) Attribution: tatoeba.org #303307 (CK) & #918775 (Martha) +He worked too hard, and became sick. 他工作得太多,病倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302018 (CK) & #334796 (fucongcong) +He's been sick in bed for four days. 他已卧病在床四天了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1315826 (CK) & #1394969 (mtdot) +Her argument was not based on facts. 她的观点没有基于事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #879812 (CK) & #1415813 (sadhen) +Here is a basket full of vegetables. 這裡有個裝滿蔬菜的籃子。 CC-BY 2.0 (France) Attribution: tatoeba.org #61720 (CK) & #797072 (Martha) +His house isn't far from this store. 他家离这间商店不远。 CC-BY 2.0 (France) Attribution: tatoeba.org #285674 (CK) & #1395036 (mtdot) +Hot and humid weather makes us lazy. 炎熱潮濕的天氣使我們變得懶散。 CC-BY 2.0 (France) Attribution: tatoeba.org #268552 (CK) & #798245 (Martha) +How can I get to the police station? 我怎么去警察局? CC-BY 2.0 (France) Attribution: tatoeba.org #37549 (CK) & #787048 (fucongcong) +How do I get my dog to eat dog food? 怎么样才能让我的狗吃狗粮? CC-BY 2.0 (France) Attribution: tatoeba.org #898555 (CK) & #7773201 (jiangche) +How do you know that belongs to Tom? 你怎麼知道那是湯姆的? CC-BY 2.0 (France) Attribution: tatoeba.org #5641743 (CK) & #6826151 (verdastelo9604) +How long have you been working here? 从什么时候开始您就这里工作着的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #61870 (CK) & #5096808 (mirrorvan) +How long have you two been together? 你们两个在一起多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #953335 (CK) & #5780590 (verdastelo9604) +How much does the wooden chair cost? 那张木椅要多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #436197 (lukaszpp) & #787375 (fucongcong) +Hurry, and you will catch the train. 快一点,你就能赶上火车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19640 (CK) & #476215 (fucongcong) +I always eat before going to school. 我总是在上学前先吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #5850750 (CK) & #8938673 (crescat) +I am a student at Oxford University. 我是牛津大学的学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #29028 (CK) & #334867 (fucongcong) +I am going to watch TV this evening. 今天晚上我打算看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #257613 (CK) & #1790051 (sadhen) +I am interested in Japanese history. 我對日本歷史有興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #259814 (CK) & #907304 (Martha) +I am learning two foreign languages. 我学两种外语。 CC-BY 2.0 (France) Attribution: tatoeba.org #256624 (CK) & #400992 (fucongcong) +I arrived in Kobe around two thirty. 我在两点半左右到达神户。 CC-BY 2.0 (France) Attribution: tatoeba.org #252529 (CK) & #5919574 (verdastelo9604) +I asked twenty friends to the party. 我請了二十位朋友參加派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #252519 (CK) & #926585 (Martha) +I ate bread and butter this morning. 今天早上,我吃了面包夹黄油。 CC-BY 2.0 (France) Attribution: tatoeba.org #257535 (CM) & #334795 (fucongcong) +I borrowed Tom's phone this morning. 我今天早上跟Tom借手機。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076009 (CK) & #1076008 (egg0073) +I brought up two kids all on my own. 我一個人把兩個小孩扶養長大。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269577 (FeuDRenais) & #2256347 (cienias) +I can hardly see without my glasses. 沒有了我的眼鏡我幾乎看不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #256746 (CK) & #876714 (Martha) +I can hear you, but I can't see you. 我听得见你,但我看不见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17015 (CK) & #426875 (fucongcong) +I can neither confirm nor deny that. 我即不能确认也不能否定。 CC-BY 2.0 (France) Attribution: tatoeba.org #2700655 (Hybrid) & #5933767 (verdastelo9604) +I can understand what she is saying. 我能了解她在說什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #388760 (CK) & #888593 (Martha) +I can understand you to some extent. 在某種程度上我能了解你。 CC-BY 2.0 (France) Attribution: tatoeba.org #252795 (CK) & #919881 (Martha) +I can't recall the last time we met. 我想不起來我們上次見面的情况了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954755 (CK) & #6728910 (verdastelo9604) +I can't remember which is my racket. 我不記得哪個是我的球拍。 CC-BY 2.0 (France) Attribution: tatoeba.org #38001 (CK) & #918102 (Martha) +I can't stand that noise any longer. 我不能再忍受那噪音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31678 (CK) & #5819723 (verdastelo9604) +I can't stand this noise any longer. 我無法再忍受這個噪音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58022 (CK) & #919954 (Martha) +I caught the man stealing the money. 我抓到了這個男人正在偷錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #254542 (CK) & #917775 (Martha) +I could hear dogs barking all night. 我整夜都能听到狗叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #8456700 (CK) & #8463640 (gumblex) +I could not afford to buy a bicycle. 我买不起自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #321426 (CK) & #408812 (fucongcong) +I couldn't answer all the questions. 我无法回答所有问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #254025 (CK) & #401117 (fucongcong) +I couldn't think of anything to say. 我想不到要說什麼話。 CC-BY 2.0 (France) Attribution: tatoeba.org #256396 (CK) & #941103 (Martha) +I cry every time I watch this movie. 我每次看这部电影都会哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1780325 (Bah_Dure) & #4952851 (murr) +I did not participate in the dialog. 我没有参与对话。 CC-BY 2.0 (France) Attribution: tatoeba.org #616187 (luwenzhuo) & #462046 (fucongcong) +I didn't really feel like going out. 我不是很想出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #516415 (CK) & #875271 (Martha) +I don't care a bit about the future. 我不在乎将来。 CC-BY 2.0 (France) Attribution: tatoeba.org #261875 (CK) & #363873 (fucongcong) +I don't care if you trust me or not. 我不關心你是否信任我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539906 (CK) & #6146642 (verdastelo9604) +I don't have any friends to help me. 我没朋友帮我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6162635 (CK) & #332934 (fucongcong) +I don't know any of the five ladies. 这五个女人我一个都不认识。 CC-BY 2.0 (France) Attribution: tatoeba.org #252596 (CK) & #1314411 (vicch) +I don't know how to handle children. 我不知道如何對待孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #245861 (CK) & #881064 (Martha) +I don't know if he can come tonight. 我不知道他今晚會不會來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1804117 (nairbv) & #864235 (Martha) +I don't know why you don't like Tom. 我不知道你不喜欢汤姆的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #5608947 (adamtrousers) & #5550189 (verdastelo9604) +I don't like early morning meetings. 我不喜歡在清晨開的會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #2898125 (migl) & #770330 (Martha) +I don't like the way you talk to me. 我不喜歡你和我說話的口氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #7211461 (CK) & #5288506 (xjjAstrus) +I don't remember mailing the letter. 我不記得寄過信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #543952 (CK) & #848993 (Martha) +I don't see why I had to come along. 我不明白为什么我得跟着去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539904 (CK) & #8792028 (slo_oth) +I don't understand its significance. 我没有领会这个意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #7784068 (sharris123) & #1884719 (Venki) +I don't want to be friends with you. 我不想跟你交朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #3062190 (Hybrid) & #5900408 (verdastelo9604) +I don't want to hear about it again. 我不想再聽到這事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2018776 (CK) & #6845600 (verdastelo9604) +I don't wash my hair in the morning. 我早上不洗头。 CC-BY 2.0 (France) Attribution: tatoeba.org #1428056 (CK) & #343926 (fucongcong) +I feel like everybody's watching me. 我感觉大家都在关注我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5082237 (zvzuibqx) & #5026442 (murr) +I found this at the risk of my life. 我冒著生命危險找到了這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #322959 (CM) & #6169155 (verdastelo9604) +I gather that they'll agree with us. 我猜想他們會同意我們的。 CC-BY 2.0 (France) Attribution: tatoeba.org #306728 (CK) & #818949 (Martha) +I get along with my younger brother. 我與我的弟弟相處融洽。 CC-BY 2.0 (France) Attribution: tatoeba.org #530804 (CK) & #881908 (Martha) +I get two hour's exercise every day. 我每天做兩個小時的練習。 CC-BY 2.0 (France) Attribution: tatoeba.org #261820 (CK) & #805000 (Martha) +I get two hour's exercise every day. 我每天做兩個小時的運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #261820 (CK) & #805004 (Martha) +I got acquainted with her in France. 我在法國認識了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #255525 (CK) & #804587 (Martha) +I got acquainted with him in France. 我在法國認識了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #260190 (CK) & #804591 (Martha) +I got the roller skates for nothing. 我免費得到溜冰鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #254217 (CK) & #802312 (Martha) +I got up at six-thirty this morning. 我今天早上六點半起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #62604 (CK) & #875277 (Martha) +I got warm from jogging for an hour. 我慢跑了一个小时,身上变暖和了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73168 (CM) & #6089741 (verdastelo9604) +I guess I haven't made myself clear. 我想我沒有把話說清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #35183 (CK) & #801934 (Martha) +I had no trouble finding his office. 我毫不费劲就找到他的公司。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075509 (CK) & #1438611 (asosan) +I have a large collection of stamps. 我收集很多郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #259027 (CK) & #876741 (Martha) +I have been in Japan for two months. 我在日本已經兩個月了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259805 (CK) & #919688 (Martha) +I have decided to carry on the work. 我决定继续工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #321613 (CK) & #349681 (fucongcong) +I have just been to the post office. 我剛剛去了郵局。 CC-BY 2.0 (France) Attribution: tatoeba.org #255032 (CK) & #890967 (Martha) +I have not seen him for a long time. 我很久没见过他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #260369 (CK) & #334582 (fucongcong) +I have nothing to do with the crime. 这个犯罪和我一点关系都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #254616 (CK) & #334900 (fucongcong) +I have the same trouble as you have. 我有跟你同樣的麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #252721 (CK) & #897268 (Martha) +I haven't seen her since last month. 我從上個月開始就沒有看到她了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259044 (CK) & #881272 (Martha) +I heard the children's happy voices. 我聽到孩子們開心的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #534121 (CK) & #848449 (Martha) +I know you don't want to talk to me. 我知道你不想跟我说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887524 (CK) & #1990196 (sunnywqing) +I let my sister use my new computer. 我让我妹妹用我的新电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #261775 (CK) & #390519 (fucongcong) +I like to go fishing with my father. 我喜欢和父亲一起去钓鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #261534 (CK) & #1672011 (sadhen) +I looked for him in the supermarket. 我在超級市場裡找他。 CC-BY 2.0 (France) Attribution: tatoeba.org #253948 (CK) & #848695 (Martha) +I looked, but I didn't see anything. 我看過了, 但是沒看到什麼東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1059112 (Brian255) & #761315 (Martha) +I lost my key somewhere around here. 我的钥匙就是在这附近丢失的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1286910 (CK) & #4757718 (ryanwoo) +I made efforts to improve my grades. 我努力的改善我的成績。 CC-BY 2.0 (France) Attribution: tatoeba.org #258963 (CK) & #836143 (Martha) +I made several mistakes in the exam. 在這次考試中我犯了幾個錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #258070 (CK) & #796046 (Martha) +I made sure no one was following me. 我確定沒人跟踪我。 CC-BY 2.0 (France) Attribution: tatoeba.org #3395527 (CK) & #6131489 (verdastelo9604) +I managed to make him understand it. 我設法讓他明白了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284617 (CK) & #794076 (Martha) +I noticed she was wearing a new hat. 我注意到她当时戴了顶新帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #261052 (CK) & #1235480 (sunnywqing) +I really liked the gift you gave me. 我真喜歡你給我的禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732993 (CK) & #6086883 (verdastelo9604) +I refuse to be treated like a child. 我拒绝被像一个孩子般对待。 CC-BY 2.0 (France) Attribution: tatoeba.org #621716 (xiuqin) & #427621 (fucongcong) +I saw an old woman cross the street. 我看见一个老太太穿过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #252218 (CK) & #795407 (fucongcong) +I should tell Tom what I have to do. 我應該告訴湯姆我該做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #6245096 (CK) & #6482307 (verdastelo9604) +I spent last Sunday reading a novel. 我上週日花時間看了一本小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #534174 (CK) & #887706 (Martha) +I think I know who stole your watch. 我認為我知道是誰偷了你的手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619084 (CK) & #6119498 (verdastelo9604) +I think I've found something better. 我認為我找到了更好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287206 (CK) & #6931236 (verdastelo9604) +I think that fact is very important. 我認為事實非常重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #512220 (CK) & #876718 (Martha) +I thought Tom would enjoy the party. 我以为汤姆会喜欢这个聚会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938828 (CK) & #5091213 (mirrorvan) +I thought that you wanted to see me. 我以为你想见我呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1324288 (Scott) & #1990220 (sunnywqing) +I thought you had to get up by 7:30. 我以为你要7点半起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #72339 (CK) & #363969 (fucongcong) +I told you never to come here again. 我告诉过你不要再来这里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539876 (CK) & #8832695 (crescat) +I tried to stop that from happening. 我试着阻止它发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #5860528 (CK) & #5862098 (verdastelo9604) +I want it to be different this time. 我想让这次变得不一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #5194196 (CK) & #5698037 (verdastelo9604) +I want my dinner brought to my room. 我想要我的晚餐送到房间里来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2018807 (CK) & #5091668 (mirrorvan) +I was puzzled about what to do next. 我对以后做什么很迷茫。 CC-BY 2.0 (France) Attribution: tatoeba.org #258182 (CK) & #444811 (fucongcong) +I was still an amateur at that time. 我那時還是個外行。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848518 (CK) & #6325054 (verdastelo9604) +I was surprised by his perseverance. 我对他的坚持感到很惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #403319 (CK) & #796704 (fucongcong) +I was writing a letter when he came. 當他進來的時候, 我正在寫信。 CC-BY 2.0 (France) Attribution: tatoeba.org #282976 (CM) & #780068 (Martha) +I wash my hands before eating lunch. 我在吃午饭前洗手。 CC-BY 2.0 (France) Attribution: tatoeba.org #726457 (CM) & #784193 (fucongcong) +I went to three funerals last month. 上个月我参加了三场葬礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #8559910 (CK) & #8560806 (slo_oth) +I will never force you to marry him. 我永遠不會逼你跟他結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #71325 (CK) & #790751 (Martha) +I wish I could live near your house. 我希望住在你家附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #17291 (CK) & #333534 (fucongcong) +I work every day except for Sundays. 除了星期天我每一天都工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #484989 (FeuDRenais) & #850360 (Martha) +I work every day except for Sundays. 我除了星期天外每天都上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #484989 (FeuDRenais) & #860535 (Martha) +I would like to brush up my English. 我想复习英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #256208 (CM) & #1416056 (sadhen) +I would like to purchase some boots. 我想买些靴子。 CC-BY 2.0 (France) Attribution: tatoeba.org #34403 (CK) & #336688 (fucongcong) +I'd like to cash a travelers' check. 我想兌換旅行支票。 CC-BY 2.0 (France) Attribution: tatoeba.org #36927 (CK) & #801384 (Martha) +I'd like to invite you to the party. 我想请你参加派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #68815 (CK) & #347060 (fucongcong) +I'd like you to come back next week. 我想讓你下周回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #2018837 (CK) & #6080276 (verdastelo9604) +I'm busy getting ready for tomorrow. 我正忙著為明天作準備。 CC-BY 2.0 (France) Attribution: tatoeba.org #328727 (CK) & #864360 (Martha) +I'm getting more and more gray hair. 我的白髮越來越多。 CC-BY 2.0 (France) Attribution: tatoeba.org #282604 (CK) & #801396 (Martha) +I'm getting off at the next station. 我下一站下车。 CC-BY 2.0 (France) Attribution: tatoeba.org #258188 (CK) & #375320 (fucongcong) +I'm getting off at the next station. 我會在下一站下車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258188 (CK) & #893531 (Martha) +I'm going to see Tom in the morning. 我早上去見湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539769 (CK) & #6534798 (verdastelo9604) +I'm not as stupid as you think I am. 我不像你想的那么傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1108792 (CK) & #1317035 (vicch) +I'm not asking you. I'm begging you. 我不是要求你,我是恳请你。 CC-BY 2.0 (France) Attribution: tatoeba.org #4022716 (Hybrid) & #5684102 (verdastelo9604) +I'm not going to do anything to you. 我不會對你做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6346292 (CK) & #6534042 (verdastelo9604) +I'm sorry that you are leaving here. 我很遺憾你要離開這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #403289 (CK) & #894945 (Martha) +I'm sorry, could you say that again? 抱歉,你能再说一遍吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2539730 (CK) & #5617208 (verdastelo9604) +I'm sure you'll be back before long. 我确定你不久就回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3396601 (CK) & #5780627 (verdastelo9604) +I'm telling you this confidentially. 这个我只和你说哦。 CC-BY 2.0 (France) Attribution: tatoeba.org #2267236 (_undertoad) & #8759488 (crescat) +I'm trying to save room for dessert. 我尽量留着胃吃甜点。 CC-BY 2.0 (France) Attribution: tatoeba.org #39471 (CK) & #333303 (fucongcong) +I've been feeling a little restless. 我有點不安。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359091 (CK) & #6147596 (verdastelo9604) +I've been here for a very long time. 我在這裡很長時間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733120 (CK) & #6065909 (verdastelo9604) +I've decided to go a little further. 我准备再前进一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #4915367 (CK) & #5576835 (verdastelo9604) +I've had a lot of work to do lately. 我最近有很多事情要做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728323 (paper1n0) & #4649774 (Yashanti) +I've had to do everything by myself. 我必须靠自己做所有事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359849 (CK) & #5911630 (verdastelo9604) +I've just finished eating breakfast. 我剛吃完了早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891192 (CK) & #835676 (Martha) +I've never been to my uncle's house. 我没去过我叔叔的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #253226 (CK) & #5845599 (verdastelo9604) +I've promised Tom that I'd be there. 我答应汤姆我会到那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135178 (CK) & #5632416 (verdastelo9604) +If I were healthy, I would be happy. 如果我很健康,我會很快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #810106 (TomSFox) & #810675 (Martha) +If Tom doesn't surrender, shoot him. 如果湯姆不投降,就開槍 CC-BY 2.0 (France) Attribution: tatoeba.org #3724823 (CM) & #7432368 (zzztat) +If Tom is really alive, where is he? 如果汤姆真的活着,他在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #3730423 (CM) & #5691240 (verdastelo9604) +If you can sing, that's good enough. 如果你会唱歌就好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498837 (weihaiping) & #407287 (fucongcong) +In Switzerland, spring comes in May. 在瑞士,春天在五月来临。 CC-BY 2.0 (France) Attribution: tatoeba.org #52450 (CK) & #8800714 (crescat) +In the morning, I write in the park. 我每天早上在公園寫作。 CC-BY 2.0 (France) Attribution: tatoeba.org #456001 (lukaszpp) & #1447670 (egg0073) +Is eating with chopsticks difficult? 用筷子吃飯難嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #509619 (blay_paul) & #6199296 (verdastelo9604) +Is it true you're trying to do that? 你真的要试着那样做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4764626 (Stalwartlover) & #4764646 (ryanwoo) +Is this the key you are looking for? 这是你找的钥匙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #55981 (CK) & #5686998 (verdastelo9604) +It became quiet again in the forest. 森林裡又再變得安靜下來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #269486 (CK) & #801338 (Martha) +It is a pity that you can't join us. 你不能和我們一起來真可惜。 CC-BY 2.0 (France) Attribution: tatoeba.org #17783 (Zifre) & #8727965 (shou) +It is difficult to satisfy everyone. 众口难调。 CC-BY 2.0 (France) Attribution: tatoeba.org #32119 (CK) & #343373 (fucongcong) +It is necessary for you to go there. 你有必要到那里去。 CC-BY 2.0 (France) Attribution: tatoeba.org #70004 (CK) & #528044 (biglion) +It is no use crying over spilt milk. 為濺出的牛奶哭也沒用。 CC-BY 2.0 (France) Attribution: tatoeba.org #23651 (Zifre) & #765989 (Martha) +It is strange that he should say so. 他这么说很奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #283164 (CM) & #333220 (fucongcong) +It looks like it'll rain today, too. 今天也好像會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #2761791 (Trailsend) & #2757155 (cienias) +It seems that no one knew the truth. 貌似没有人知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #40360 (Swift) & #9007581 (jacintoo) +It was impossible to find an answer. 不可能找得到答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #280062 (jakov) & #801452 (Martha) +It would be great if you could sing. 如果你唱歌的話一定很棒。 CC-BY 2.0 (France) Attribution: tatoeba.org #701753 (Eldad) & #752115 (Martha) +It's bad manners to point at people. 用手指点别人不礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712808 (CK) & #5091092 (mirrorvan) +It's no good trying to persuade her. 試圖勸她是沒有用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #394819 (CK) & #893989 (Martha) +It's not something I'm very good at. 这不是我所擅长的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #42405 (CK) & #2007034 (sadhen) +It's okay to take it easy sometimes. 有時可以放輕鬆一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #40524 (CK) & #798262 (Martha) +It's too bad that you couldn't come. 你不能來真是太糟糕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #408988 (CK) & #894328 (Martha) +It's very easy to learn how to swim. 学游泳非常简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #5165577 (pripensi) & #414034 (fucongcong) +Japan is an extremely noisy country. 日本是一個非常嘈雜的國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #281595 (CK) & #797037 (Martha) +Kabul is the capital of Afghanistan. 喀布尔是阿富汗的首都。 CC-BY 2.0 (France) Attribution: tatoeba.org #1800027 (Bah_Dure) & #8936653 (crescat) +Karaoke is good for reducing stress. 卡拉OK對減輕壓力有益。 CC-BY 2.0 (France) Attribution: tatoeba.org #63538 (CK) & #779079 (Martha) +Korean food is generally very spicy. 韓國菜一般都很辣。 CC-BY 2.0 (France) Attribution: tatoeba.org #20812 (keaupuni) & #801315 (Martha) +Kyoto is famous for its old temples. 京都以古廟有名。 CC-BY 2.0 (France) Attribution: tatoeba.org #19296 (CK) & #797142 (Martha) +Learning how to swim is very simple. 学游泳非常简单。 CC-BY 2.0 (France) Attribution: tatoeba.org #7773746 (sharris123) & #414034 (fucongcong) +Lend me some money, if you have any. 你有钱的话,借我一些。 CC-BY 2.0 (France) Attribution: tatoeba.org #18559 (CK) & #2004696 (sadhen) +Let me have a look at your notebook. 請給我看一下你的筆記本電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #9069623 (antonb) & #9057855 (xjjAstrus) +Let's discuss the problem with them. 让我们和他们讨论这个问题吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #43749 (CK) & #335621 (fucongcong) +Let's skip out before Tom gets back. 咱在汤姆回来之前开溜吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3022494 (sharptoothed) & #5670766 (verdastelo9604) +Let's wait here until he comes back. 讓我們在這裡等他直到他回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1265281 (yifen238) & #893538 (Martha) +Looks like today will be a long day. 看来今天会是漫长的一天啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3748433 (nagoyablue) & #5097569 (mirrorvan) +Many people only speak one language. 許多人只說一種語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #1568729 (Sharaf78) & #6146516 (verdastelo9604) +Mary prefers to dye her hair blonde. 玛丽更想把头发染成金色。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495198 (Spamster) & #5581723 (verdastelo9604) +Mary said she would do her homework. 瑪麗說她會做她的功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #31918 (CK) & #891614 (Martha) +Modern ships only need a small crew. 現代船隻只需要一小組的船員。 CC-BY 2.0 (France) Attribution: tatoeba.org #243793 (CM) & #796976 (Martha) +Mutual understanding promotes peace. 相互理解能促进和平。 CC-BY 2.0 (France) Attribution: tatoeba.org #274110 (CM) & #5576762 (verdastelo9604) +My apartment is on the fourth floor. 我的公寓在四樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #251775 (CK) & #788805 (Martha) +My boss assigned the hard job to me. 我老板把艰巨的任务指派给了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #268319 (CM) & #334615 (fucongcong) +My brother died of cancer last year. 我弟弟去年死於癌症。 CC-BY 2.0 (France) Attribution: tatoeba.org #237870 (CK) & #891976 (Martha) +My brother goes to college in Tokyo. 我兄弟在東京上大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #250727 (CK) & #804832 (Martha) +My brother is a high school student. 我哥哥是個高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #251522 (CK) & #894029 (Martha) +My brother lives in a small village. 我的兄弟住在一個小村莊裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #250687 (CK) & #794078 (Martha) +My father allowed me to go swimming. 爸爸准许我去游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #319159 (CK) & #2393759 (fenfang557) +My father made me a delicious lunch. 我父親為我做了一頓美味的午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #402340 (CK) & #890600 (Martha) +My father neither drinks nor smokes. 我爸爸既不喝酒也不抽烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #319268 (fucongcong) & #334236 (fucongcong) +My father neither smokes nor drinks. 我的父親不抽菸也不喝酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #251642 (CK) & #3344456 (cienias) +My income has decreased ten percent. 我的收入減少了百分之十。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753755 (garborg) & #4743930 (egg0073) +My plans failed one after the other. 我的計劃一個接一個的失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #541987 (CM) & #894391 (Martha) +My sister is cooking in the kitchen. 我妹妹正在厨房做饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #245594 (CK) & #401032 (fucongcong) +My sleep was disturbed by the sound. 那声音搅了我的美梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #49443 (CK) & #1394853 (mtdot) +My uncle had me act as a translator. 我叔叔讓我擔任翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2150791 (FeuDRenais) & #801959 (Martha) +No one can keep me from going there. 没人能阻止我去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #276515 (CK) & #426892 (fucongcong) +No one thinks Tom will win the race. 沒人認為湯姆賽跑會贏。 CC-BY 2.0 (France) Attribution: tatoeba.org #3634825 (CK) & #6132349 (verdastelo9604) +Not being tall isn't a disadvantage. 长不高不是坏事。 CC-BY 2.0 (France) Attribution: tatoeba.org #282439 (CM) & #5640776 (verdastelo9604) +Not everyone who lives here is rich. 並不是每個住在這裡的人都是富有的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61748 (CK) & #801314 (Martha) +Old people often talk to themselves. 老人時常自言自語。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753773 (garborg) & #4504515 (egg0073) +One after another, the animals died. 動物一個接一個的死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #264363 (CK) & #796980 (Martha) +Open your mouth and close your eyes. 张开嘴巴闭上眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #240557 (CK) & #1438441 (asosan) +Opinions vary from person to person. 观点因人而异。 CC-BY 2.0 (France) Attribution: tatoeba.org #269908 (CM) & #1695461 (sadhen) +Please don't tell your parents this. 请不要告诉你父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #4809300 (CK) & #4815178 (McMeao) +Please send this by registered mail. 請用掛號寄這個。 CC-BY 2.0 (France) Attribution: tatoeba.org #1397605 (CK) & #5422711 (egg0073) +Please take more care in the future. 请你将来注意点。 CC-BY 2.0 (France) Attribution: tatoeba.org #267493 (CM) & #336245 (fucongcong) +Please take more care in the future. 以后请注意点。 CC-BY 2.0 (France) Attribution: tatoeba.org #267493 (CM) & #791584 (fucongcong) +Please translate the sentence below. 请把下面的句子翻译一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #9093306 (sundown) & #6213576 (xiaofeng502190) +Pour melted butter over the popcorn. 將融化了的奶油倒入爆米花中。 CC-BY 2.0 (France) Attribution: tatoeba.org #33403 (CK) & #796956 (Martha) +Put the eggs into the boiling water. 把蛋放入沸水中。 CC-BY 2.0 (France) Attribution: tatoeba.org #265321 (CK) & #333858 (fucongcong) +Rome has a lot of ancient buildings. 罗马有很多古建筑。 CC-BY 2.0 (France) Attribution: tatoeba.org #29422 (CK) & #345980 (fucongcong) +Sales fell off in the third quarter. 在第三季時銷售跌了下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #282524 (SUZIE) & #801322 (Martha) +Sammy Davis was an excellent singer. 山米戴維斯是一個優秀的歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #54048 (CK) & #801488 (Martha) +Shakespeare is the name of a writer. 莎士比亞是一位作家的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #53879 (CK) & #797085 (Martha) +She applied her mind to her new job. 她专注在她的新工作上。 CC-BY 2.0 (France) Attribution: tatoeba.org #315141 (CK) & #678033 (Martha) +She can swim as fast as her brother. 她能和她哥哥游得一樣快。 CC-BY 2.0 (France) Attribution: tatoeba.org #310620 (CK) & #7745187 (xjjAstrus) +She carried that habit to her grave. 她到死都改不了那個習慣。 CC-BY 2.0 (France) Attribution: tatoeba.org #311294 (CK) & #779054 (Martha) +She doesn't have a driver's license. 她没有驾照。 CC-BY 2.0 (France) Attribution: tatoeba.org #582934 (CK) & #1438573 (asosan) +She dreamed that she was a princess. 她梦见她是一个公主。 CC-BY 2.0 (France) Attribution: tatoeba.org #312728 (CK) & #866761 (kooler) +She gave us some useful information. 她給了我們一些有用的訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #314086 (CK) & #805021 (Martha) +She gets up late on Sunday mornings. 她每週日早上很晚起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #316093 (CK) & #804988 (Martha) +She had already gone when I arrived. 當我到的時候,她已經走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246935 (CK) & #796050 (Martha) +She had two accidents within a year. 她一年裡遇到了兩次事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #1864723 (gleydin) & #6146644 (verdastelo9604) +She has a daughter who is a pianist. 她有一个钢琴家女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #308714 (CK) & #1783824 (sadhen) +She has a husband and two daughters. 她有丈夫和兩個女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #307957 (CK) & #780076 (Martha) +She has traveled all over the globe. 她周遊世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #315774 (mamat) & #856394 (Martha) +She helped him overcome his sadness. 她幫助他平撫了他的悲傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #388342 (CK) & #861317 (Martha) +She invited Tom and me to the party. 她邀請我和湯姆去派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #311823 (CK) & #904791 (kanaorange) +She laughed at the sight of his hat. 看到他的帽子,她笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316442 (CK) & #785971 (fucongcong) +She looked more beautiful than ever. 她似乎比以往任何时候都漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #313684 (CK) & #334053 (fucongcong) +She looked well when I last saw her. 上次我见到她的时候,她看上去挺好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #58060 (CK) & #784567 (fucongcong) +She made a lot of spelling mistakes. 她犯了很多拼寫錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #311532 (CK) & #910308 (Martha) +She made the same mistake as before. 她犯了和以前同樣的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #312499 (CK) & #795859 (Martha) +She saw a young man at the entrance. 她在入口看到一個年輕男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #316096 (CK) & #5382956 (egg0073) +She should have arrived home by now. 她现在应该已经到家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313660 (CK) & #1397046 (mtdot) +She takes piano lessons once a week. 她每周上一次钢琴课。 CC-BY 2.0 (France) Attribution: tatoeba.org #310092 (CK) & #334862 (fucongcong) +She was obliged to give up the plan. 她不得不放弃这个计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #312382 (CK) & #2456076 (fenfang557) +She was surprised that he showed up. 她很驚訝他出現了。 CC-BY 2.0 (France) Attribution: tatoeba.org #463460 (CK) & #908339 (Martha) +She was tired, but she kept working. 她累了,但她繼續工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #388557 (CK) & #905770 (Martha) +She'll be getting married next year. 她明年將要結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #317381 (CK) & #860999 (Martha) +She's almost the same height as you. 她差不多和你一样高。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498844 (weihaiping) & #407293 (fucongcong) +Sitting down all day is bad for you. 整天坐著對你不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4232520 (Hybrid) & #6216631 (verdastelo9604) +Some people are difficult to please. 有些人很難取悅。 CC-BY 2.0 (France) Attribution: tatoeba.org #36513 (CK) & #1426350 (tsayng) +Some people criticized our decision. 一些人批评了我们的决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846784 (CK) & #4846810 (pig8322) +Someone is standing behind the wall. 有人站在墙后。 CC-BY 2.0 (France) Attribution: tatoeba.org #276176 (CK) & #787589 (fucongcong) +Sorry, can I borrow it for a minute? 不好意思,可以借過一下嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7843616 (sharris123) & #1205880 (cienias) +Sorry, that was none of my business. 對不起, 那不關我的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #328930 (fcbond) & #778545 (Martha) +Sorry, we don't accept credit cards. 對不起,我們不接受信用卡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4039444 (CK) & #6585419 (verdastelo9604) +Stick another stamp on the envelope. 把另一張郵票貼在信封上。 CC-BY 2.0 (France) Attribution: tatoeba.org #319644 (CK) & #798197 (Martha) +Take things a little more seriously. 對事情比較正經嚴肅。 CC-BY 2.0 (France) Attribution: tatoeba.org #31235 (CK) & #797046 (Martha) +Tell Tom that I don't need his help. 告诉汤姆我不需要他的帮助! CC-BY 2.0 (France) Attribution: tatoeba.org #4620860 (CK) & #3783432 (Debbie_Linder) +Thank you for drawing a bird for me. 謝謝你為我畫鳥。 CC-BY 2.0 (France) Attribution: tatoeba.org #1716550 (Amastan) & #6044366 (verdastelo9604) +Thank you for inviting me to dinner. 谢谢你邀请我吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #324609 (CK) & #1541584 (CLARET) +That discovery was quite accidental. 那个发现纯属偶然。 CC-BY 2.0 (France) Attribution: tatoeba.org #44439 (CK) & #332427 (fucongcong) +That program is now being broadcast. 那個節目現在正在播出。 CC-BY 2.0 (France) Attribution: tatoeba.org #387432 (CK) & #874373 (Martha) +That requires careful consideration. 這需要慎重考慮。 CC-BY 2.0 (France) Attribution: tatoeba.org #42306 (CM) & #780400 (Martha) +That's the chair that I really like. 那是我真的很喜歡的椅子。 CC-BY 2.0 (France) Attribution: tatoeba.org #410748 (CK) & #895698 (Martha) +The French Revolution began in 1789. 法国大革命1789年开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #4764633 (Stalwartlover) & #4764644 (ryanwoo) +The accident happened near his home. 事故發生在他家附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #1451591 (CK) & #6309828 (verdastelo9604) +The address on this parcel is wrong. 這個包裹上的地址是錯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #61132 (CK) & #908337 (Martha) +The baby has finally stopped crying. 婴儿终于不哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6026915 (CK) & #8589148 (easononizuka) +The bad weather affected his health. 恶劣的天气对他的健康带来了影响。 CC-BY 2.0 (France) Attribution: tatoeba.org #680097 (Source_VOA) & #8933583 (crescat) +The boat was tied with a short line. 船被用短繩繫著。 CC-BY 2.0 (France) Attribution: tatoeba.org #49922 (CK) & #6109332 (verdastelo9604) +The boy actually was going to do it. 這個男孩實際上是要去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #770161 (marloncori) & #770211 (Martha) +The broccoli today isn't very fresh. 今天的西藍花不是很新鮮。 CC-BY 2.0 (France) Attribution: tatoeba.org #6956701 (znc) & #6952647 (xjjAstrus) +The bus doesn't always come on time. 巴士不总是能准点到达。 CC-BY 2.0 (France) Attribution: tatoeba.org #35323 (CK) & #1397021 (mtdot) +The calculator on the table is mine. 桌上的计算器是我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #39596 (CK) & #464855 (fucongcong) +The child has a case of chicken pox. 这孩子有水痘的症状。 CC-BY 2.0 (France) Attribution: tatoeba.org #47466 (CK) & #885823 (kooler) +The children were well looked after. 孩子们被照顾得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #47550 (CM) & #5911665 (verdastelo9604) +The dictionary comes in two volumes. 那本词典分为两卷。 CC-BY 2.0 (France) Attribution: tatoeba.org #46941 (CK) & #8798294 (crescat) +The doctor will be here in a minute. 醫生馬上就來。 CC-BY 2.0 (France) Attribution: tatoeba.org #954343 (CK) & #6131495 (verdastelo9604) +The doctors are looking at an x-ray. 医生在观察X光片。 CC-BY 2.0 (France) Attribution: tatoeba.org #682506 (Source_VOA) & #816547 (fucongcong) +The exam was divided into two parts. 考試分為兩個部分。 CC-BY 2.0 (France) Attribution: tatoeba.org #47306 (CK) & #6105234 (verdastelo9604) +The experiment confirmed his theory. 实验证明了他的理论。 CC-BY 2.0 (France) Attribution: tatoeba.org #46905 (CK) & #487444 (fucongcong) +The fire reduced the house to ashes. 房子被大火烧成了灰烬。 CC-BY 2.0 (France) Attribution: tatoeba.org #49229 (Zifre) & #346751 (fucongcong) +The fox and the bear lived together. 這隻狐狸和這隻熊一起生活了。 CC-BY 2.0 (France) Attribution: tatoeba.org #816073 (afeinberg) & #816735 (Martha) +The horse stopped and wouldn't move. 這匹馬停下來不動了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44515 (CK) & #870312 (Martha) +The light changed from red to green. 燈由紅變綠。 CC-BY 2.0 (France) Attribution: tatoeba.org #272443 (CK) & #900686 (Martha) +The matter has not been settled yet. 问题还没有解决。 CC-BY 2.0 (France) Attribution: tatoeba.org #68437 (CK) & #5863257 (verdastelo9604) +The news of his death spread around. 他去世的消息傳遍各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #400145 (CK) & #905816 (Martha) +The old man was almost hit by a car. 老人幾乎被車撞上。 CC-BY 2.0 (France) Attribution: tatoeba.org #388651 (CK) & #6585441 (verdastelo9604) +The police will put you behind bars. 警察會把你關在牢裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #919861 (CK) & #919866 (Martha) +The policeman grabbed the boy's arm. 警察抓住了那个男孩的手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256267 (FeuDRenais) & #2255113 (Venki) +The rich sometimes despise the poor. 富人有时会看不起穷人。 CC-BY 2.0 (France) Attribution: tatoeba.org #18516 (CK) & #1998069 (sadhen) +The situation hasn't changed at all. 情况丝毫没有改变。 CC-BY 2.0 (France) Attribution: tatoeba.org #263795 (CK) & #8914614 (fresky) +The surrounding area was very quiet. 周圍的地區非常安靜。 CC-BY 2.0 (France) Attribution: tatoeba.org #433992 (CK) & #872182 (Martha) +The teacher made us repeat the word. 老師要我們重複這個字。 CC-BY 2.0 (France) Attribution: tatoeba.org #272949 (CK) & #795809 (Martha) +The vending machines are over there. 自动售货机在那边。 CC-BY 2.0 (France) Attribution: tatoeba.org #264537 (CK) & #1067317 (cranewang) +The volcano has become active again. 這座火山又開始活動了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23846 (CK) & #893359 (Martha) +The waves crashed against the rocks. 浪拍在岩石上。 CC-BY 2.0 (France) Attribution: tatoeba.org #5293080 (Hybrid) & #6094897 (verdastelo9604) +The x-ray showed two broken fingers. X光片显示两根手指断了。 CC-BY 2.0 (France) Attribution: tatoeba.org #682504 (Source_VOA) & #816542 (fucongcong) +Their plan sounds interesting to me. 他们的计划对我来说很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #305179 (CK) & #817245 (fucongcong) +There are many birds in this forest. 这个森林里有很多小鸟。 CC-BY 2.0 (France) Attribution: tatoeba.org #58341 (CK) & #8715017 (crescat) +There are many earthquakes in Japan. 日本有许多地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #281577 (CK) & #797556 (fucongcong) +There are some apples in the basket. 籃子裡有一些蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #63765 (CK) & #905772 (Martha) +There is a long wait between trains. 在火车的间隔中有漫长的等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #326181 (CK) & #8689151 (jacintoo) +There is no connection between them. 两者没有关联。 CC-BY 2.0 (France) Attribution: tatoeba.org #325630 (CK) & #336261 (fucongcong) +There isn't any film in this camera. 這個相機裡沒有胶卷。 CC-BY 2.0 (France) Attribution: tatoeba.org #986470 (CK) & #6132214 (verdastelo9604) +There used to be a store right here. 这里以前有个商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #28358 (CK) & #5983642 (verdastelo9604) +There used to be an old temple here. 这里曾是座旧庙。 CC-BY 2.0 (France) Attribution: tatoeba.org #28367 (CK) & #6080266 (verdastelo9604) +There was a large crowd in the park. 公园里有一大群人。 CC-BY 2.0 (France) Attribution: tatoeba.org #240427 (CK) & #2000396 (sadhen) +There was a lot of snow last winter. 去年冬天下了好多雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #19429 (CK) & #336682 (fucongcong) +There was hardly anyone in the room. 房間裡幾乎沒有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #319489 (CM) & #801451 (Martha) +There was no furniture in that room. 那個房間裡沒有家具。 CC-BY 2.0 (France) Attribution: tatoeba.org #503779 (CK) & #896515 (Martha) +There were few children in the room. 房间里没几个小孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #319497 (Dejo) & #1417543 (sadhen) +There's something I want you to see. 我有东西想给你看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #3239861 (Hybrid) & #8936287 (crescat) +There's something strange happening. 正有什么奇怪的事情发生着。 CC-BY 2.0 (France) Attribution: tatoeba.org #5937139 (CK) & #8720496 (crescat) +These patients have trouble walking. 这些患者走路有困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #59910 (CK) & #5715116 (verdastelo9604) +These two words are easily confused. 这两个词容易混淆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5397251 (Hybrid) & #5869911 (verdastelo9604) +They got thoroughly wet in the rain. 他們在雨中被淋得全身都濕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306176 (CK) & #802142 (Martha) +They made their way toward the town. 他們往小鎮方向去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307165 (CK) & #795820 (Martha) +They talked over the plan for hours. 他们谈计划谈了几个小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #305737 (CK) & #816480 (fucongcong) +They worked jointly on this project. 他们一起为这个项目工作过。 CC-BY 2.0 (France) Attribution: tatoeba.org #305620 (CK) & #812223 (fucongcong) +This bridge was built two years ago. 這座橋是在兩年前建造的。 CC-BY 2.0 (France) Attribution: tatoeba.org #59650 (CK) & #905346 (Martha) +This door is locked from the inside. 這門從裡面被反鎖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164095 (emmettricks) & #754653 (Martha) +This law is applicable to all cases. 此法適用於所有情況。 CC-BY 2.0 (France) Attribution: tatoeba.org #57142 (CK) & #780051 (Martha) +This might not be a genuine diamond. 這可能不是真的鑽石。 CC-BY 2.0 (France) Attribution: tatoeba.org #788247 (hrin) & #781552 (Martha) +This pencil is better than that one. 這支鉛筆比那隻好。 CC-BY 2.0 (France) Attribution: tatoeba.org #770025 (marloncori) & #4262698 (egg0073) +This ticket is valid for three days. 這張票的有效期是三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #530682 (papabear) & #905793 (Martha) +This ticket is valid for three days. 这张票三日有效。 CC-BY 2.0 (France) Attribution: tatoeba.org #530682 (papabear) & #8496249 (gumblex) +This word is difficult to pronounce. 這個字很難發音。 CC-BY 2.0 (France) Attribution: tatoeba.org #57961 (CK) & #868393 (Martha) +Thousands of people lost their jobs. 数千人失业。 CC-BY 2.0 (France) Attribution: tatoeba.org #807277 (Source_VOA) & #1501742 (fenfang557) +To tell the truth, I don't like him. 老实说,我不喜欢他。 CC-BY 2.0 (France) Attribution: tatoeba.org #265157 (CK) & #332879 (fucongcong) +Tom asked Mary where her mother was. 湯姆問瑪麗她媽在哪。 CC-BY 2.0 (France) Attribution: tatoeba.org #4715880 (CK) & #6105294 (verdastelo9604) +Tom attached the string to the kite. 湯姆把繩子加在了這個風箏上。 CC-BY 2.0 (France) Attribution: tatoeba.org #37064 (CK) & #908374 (Martha) +Tom comes home almost every weekend. 湯姆幾乎每個週末都回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #4715886 (CK) & #6091820 (verdastelo9604) +Tom covered his face with his hands. 汤姆用他的手捂住了他的脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #5937158 (CK) & #9316585 (slo_oth) +Tom doesn't have a driver's license. 湯姆沒有駕駛證。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026170 (CK) & #6065881 (verdastelo9604) +Tom doesn't pay attention in school. 汤姆在学校里不专心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3924665 (Hybrid) & #6089723 (verdastelo9604) +Tom doesn't share Mary's enthusiasm. 汤姆没有感受到玛丽的热情。 CC-BY 2.0 (France) Attribution: tatoeba.org #2400163 (CK) & #4799110 (CLARET) +Tom doesn't usually dress like that. 湯姆平時不那樣穿衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #3408925 (CK) & #6105229 (verdastelo9604) +Tom doesn't want to talk to anybody. 汤姆不想跟任何人说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2018859 (CK) & #5845588 (verdastelo9604) +Tom filled out the application form. 湯姆填寫了申請表。 CC-BY 2.0 (France) Attribution: tatoeba.org #37253 (CK) & #868413 (Martha) +Tom gave us something to talk about. 汤姆给了我们可以谈论的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664115 (CK) & #5694464 (verdastelo9604) +Tom has always been very nice to me. 汤姆对我一直很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499557 (CK) & #5574777 (verdastelo9604) +Tom has just finished eating dinner. Tom刚吃完晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3557812 (CK) & #3636670 (suitchic) +Tom is a fluent speaker of Japanese. 湯姆日語說得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #37048 (CK) & #907504 (Martha) +Tom is buying some flowers for Mary. 汤姆在给玛丽买花。 CC-BY 2.0 (France) Attribution: tatoeba.org #1872481 (CK) & #5926178 (verdastelo9604) +Tom is going to tell Mary he's busy. 汤姆会和玛丽说他很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #6436297 (CK) & #8696305 (crescat) +Tom is in the hospital waiting room. 汤姆在医院的等候室。 CC-BY 2.0 (France) Attribution: tatoeba.org #3446995 (CK) & #5630434 (verdastelo9604) +Tom is interested in mountaineering. 湯姆對登山感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #37053 (CK) & #836149 (Martha) +Tom isn't interested in Mary at all. 汤姆对玛丽一点也不感兴趣 CC-BY 2.0 (France) Attribution: tatoeba.org #7734007 (CK) & #8748581 (cxpadonis) +Tom knew Mary wouldn't let him down. 汤姆知道玛丽不会让他失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093351 (CK) & #5900395 (verdastelo9604) +Tom knows a lot of stuff about Mary. 汤姆知道玛丽的很多事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093339 (CK) & #5091232 (mirrorvan) +Tom laid the newspaper on the table. 汤姆把报纸放在桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3448774 (CK) & #5640730 (verdastelo9604) +Tom needs to see you in ten minutes. 湯姆需要在十分鍾內見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3415213 (CK) & #6091816 (verdastelo9604) +Tom often doesn't keep his promises. 汤姆经常不守约。 CC-BY 2.0 (France) Attribution: tatoeba.org #2806569 (CK) & #8878027 (crescat) +Tom often goes cross-country skiing. Tom经常滑雪穿过城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846790 (CK) & #4846805 (pig8322) +Tom passed away on October 20, 2013. 汤姆逝世于2013年10月20日。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223141 (CK) & #6307291 (gumblex) +Tom put a lot of honey on his toast. 汤姆往他的面包片上放了许多蜂蜜。 CC-BY 2.0 (France) Attribution: tatoeba.org #5471934 (CK) & #8631001 (ZeroAurora) +Tom put a lot of honey on his toast. 汤姆往他的吐司上放了许多蜂蜜。 CC-BY 2.0 (France) Attribution: tatoeba.org #5471934 (CK) & #8631002 (ZeroAurora) +Tom quietly closed the bedroom door. 湯姆靜靜地關上了臥室的門。 CC-BY 2.0 (France) Attribution: tatoeba.org #2835611 (CK) & #6128460 (verdastelo9604) +Tom realized he had lost his wallet. 湯姆意識到他丢了錢包。 CC-BY 2.0 (France) Attribution: tatoeba.org #8185622 (CK) & #6111942 (verdastelo9604) +Tom refused to answer any questions. 湯姆拒絕回答任何問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529344 (CK) & #6057847 (verdastelo9604) +Tom said he keeps a gun in his home. 湯姆說他的家裡有把槍。 CC-BY 2.0 (France) Attribution: tatoeba.org #6253251 (CK) & #6534792 (verdastelo9604) +Tom said he'd be willing to do this. 汤姆说他乐意做这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5212517 (CK) & #5574497 (verdastelo9604) +Tom said he's glad he could do that. 湯姆說他很高興他能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6253140 (CK) & #6624671 (verdastelo9604) +Tom told Mary he had a lot of money. 湯姆告訴瑪麗他有很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #3956143 (CK) & #6152997 (verdastelo9604) +Tom told me that he was coming back. 湯姆告訴我他正在回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #7123687 (CK) & #6535848 (verdastelo9604) +Tom told me that he'd be right back. 汤姆告诉我他会马上回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #7214347 (CK) & #8514620 (gumblex) +Tom was like a member of our family. 湯姆像是我們家庭的一員。 CC-BY 2.0 (France) Attribution: tatoeba.org #2986000 (CK) & #6120809 (verdastelo9604) +Tom was never very good at swimming. 湯姆從來不擅長游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958573 (CK) & #8215676 (verdastelo9604) +Tom will likely never do that again. 湯姆不太會再去做那事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6125969 (CK) & #6624665 (verdastelo9604) +Tom won't let me buy any more stuff. 湯姆不會讓我再買甚麼東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3150542 (CK) & #6623164 (verdastelo9604) +Tom works at a fast-food restaurant. 汤姆在一家快餐店工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #8569543 (CK) & #8574676 (slo_oth) +Tom wrote that song three years ago. 汤姆三年前创作了那首歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #4664083 (CK) & #8971717 (WilsonWong) +Tom wrote the report all by himself. 湯姆寫報告全是靠的自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #5512949 (CK) & #6114429 (verdastelo9604) +Tom's French is already rather good. 汤姆的发育已经很好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732656 (CK) & #5663464 (verdastelo9604) +Tom's eyes were glued to the screen. Tom的眼睛被荧幕吸引住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4837198 (Hybrid) & #4844724 (pig8322) +Tom, I want to have a chat with you. Tom,我想和你談談。 CC-BY 2.0 (France) Attribution: tatoeba.org #5902347 (peterius) & #3701747 (egg0073) +Translate the passage word for word. 逐字地翻譯這個段落。 CC-BY 2.0 (France) Attribution: tatoeba.org #49606 (CK) & #797099 (Martha) +Turn right at the next intersection. 请在下一个十字路口右转。 CC-BY 2.0 (France) Attribution: tatoeba.org #658059 (CK) & #4147433 (sissima) +Two detectives followed the suspect. 两个侦探跟着嫌疑人。 CC-BY 2.0 (France) Attribution: tatoeba.org #280887 (CK) & #334839 (fucongcong) +Watch out! There's a big hole there. 小心!在那裡有一個大洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #20373 (CK) & #796972 (Martha) +Water becomes solid when it freezes. 水结冰后成为固体。 CC-BY 2.0 (France) Attribution: tatoeba.org #270829 (CK) & #334102 (fucongcong) +We are going to climb that mountain. 我們將要去爬那座山。 CC-BY 2.0 (France) Attribution: tatoeba.org #68370 (CK) & #777713 (Martha) +We can't keep this a secret forever. 我們不能永遠把它當秘密守住。 CC-BY 2.0 (France) Attribution: tatoeba.org #1952034 (CK) & #6077469 (verdastelo9604) +We didn't have much rain last month. 上個月我們這兒沒有下很多雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #272687 (CK) & #834598 (Martha) +We found out that he was her father. 我们发现他是她的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #471123 (CK) & #472837 (fucongcong) +We found the beds quite comfortable. 我們發現這些床很舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #25669 (CK) & #805566 (Martha) +We found the footprints in the sand. 我們發現了沙灘上的腳印。 CC-BY 2.0 (France) Attribution: tatoeba.org #22972 (Dejo) & #805584 (Martha) +We hacked a path through the forest. 我們開出了一條穿過森林的小路。 CC-BY 2.0 (France) Attribution: tatoeba.org #269484 (CK) & #801921 (Martha) +We had a heated discussion about it. 我們激烈的討論了這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #248169 (CK) & #796077 (Martha) +We had a short vacation in February. 2月我们有个短期休假。 CC-BY 2.0 (France) Attribution: tatoeba.org #247811 (CK) & #332811 (fucongcong) +We have five English lessons a week. 我們一週有五堂英語課。 CC-BY 2.0 (France) Attribution: tatoeba.org #262665 (CK) & #8388731 (wangchou) +We have issues we have to deal with. 我們有我們必須解決的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #5607351 (CK) & #6105252 (verdastelo9604) +We made the most of the opportunity. 我們盡力地利用了這個機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #248077 (CK) & #796001 (Martha) +We make milk into cheese and butter. 我們把牛奶製成乳酪和奶油。 CC-BY 2.0 (France) Attribution: tatoeba.org #19457 (CK) & #795286 (Martha) +We managed to swim across the river. 我們成功地游過了河。 CC-BY 2.0 (France) Attribution: tatoeba.org #262877 (CK) & #794075 (Martha) +We often associate black with death. 我们常把黑色跟死亡联系起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #23228 (CK) & #335314 (fucongcong) +We saw the ground covered with snow. 我们看见地面被雪覆盖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277260 (CK) & #2518664 (fenfang557) +We should abolish the death penalty. 我们应该废除死刑。 CC-BY 2.0 (France) Attribution: tatoeba.org #266987 (CK) & #2077797 (sadhen) +We should always try to help others. 我們應該盡力幫助他人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2624338 (CK) & #6877965 (verdastelo9604) +We talked about a variety of topics. 我們談了各種話題。 CC-BY 2.0 (France) Attribution: tatoeba.org #326579 (CK) & #895566 (Martha) +We used to go skating every weekend. 过去我们每个周末都去溜冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #249380 (CK) & #333149 (fucongcong) +We went all out to get the job done. 我们全力以赴来完成工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #245458 (CK) & #1395013 (mtdot) +We went out for a walk after dinner. 我们在吃过晚餐后出去散步了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249454 (CK) & #8947255 (crescat) +We were crowded into the small room. 我们挤进了那间小房间里。 CC-BY 2.0 (France) Attribution: tatoeba.org #28809 (CK) & #8591268 (easononizuka) +We were on the same train by chance. 我们偶然间乘了同一列列车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1009001 (CK) & #5780594 (verdastelo9604) +We'll leave as soon as you're ready. 你一准备好,我们就走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2780197 (CK) & #7771875 (jiangche) +We're both here for the same reason. 我們來這裡是為了同一個原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712792 (CK) & #6134989 (verdastelo9604) +We've never had this problem before. 我們從前從沒有過這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493575 (CK) & #4504464 (egg0073) +What I want is some peace and quiet. 我所想要的是一点平和和安静。 CC-BY 2.0 (France) Attribution: tatoeba.org #2018878 (CK) & #5091758 (mirrorvan) +What do you usually do after dinner? 你通常晚飯後做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #66048 (CK) & #769682 (Martha) +What is your opinion on this matter? 关于那个你有什么看法? CC-BY 2.0 (France) Attribution: tatoeba.org #2057580 (anilomed) & #5095011 (mirrorvan) +What on earth are you talking about? 你到底在談什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #16783 (Fanki) & #775844 (Martha) +What time do you wake up on Sundays? 你星期天幾點起床? CC-BY 2.0 (France) Attribution: tatoeba.org #7782298 (sharris123) & #6056560 (xjjAstrus) +What time will you leave the office? 你几点离开办公室? CC-BY 2.0 (France) Attribution: tatoeba.org #8590677 (easononizuka) & #1313503 (vicch) +What was the cause of the explosion? 爆炸的原因是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #44484 (CK) & #335413 (fucongcong) +When did you begin studying English? 您什么时候开始学英语的? CC-BY 2.0 (France) Attribution: tatoeba.org #16759 (CK) & #512839 (fucongcong) +When did you begin studying English? 你们什么时候开始学英语的? CC-BY 2.0 (France) Attribution: tatoeba.org #16759 (CK) & #512840 (fucongcong) +When did you begin studying English? 你什么时候开始学英语的? CC-BY 2.0 (France) Attribution: tatoeba.org #16759 (CK) & #512845 (fucongcong) +Where is the nearest police station? 最近的警察局在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #243721 (CK) & #7773134 (jiangche) +Where is the nearest subway station? 最近的地鐵站在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #62110 (CK) & #836272 (Martha) +Where there's a will, there's a way. 有志者事竟成。 CC-BY 2.0 (France) Attribution: tatoeba.org #1775 (CM) & #334632 (fucongcong) +Where's the nearest telephone booth? 最近的電話亭在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #540700 (CK) & #838546 (Martha) +Which shoes are you going to put on? 你将穿哪双鞋? CC-BY 2.0 (France) Attribution: tatoeba.org #37524 (CK) & #1753147 (sadhen) +While reading a book, I fell asleep. 我看书的时候睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #322106 (CM) & #1446791 (asosan) +Who is that woman in the brown coat? 那个穿棕色大衣的女人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #387551 (Mouseneb) & #333078 (fucongcong) +Who is the girl standing over there? 站在那儿的女孩是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #240627 (CK) & #811021 (fucongcong) +Who will you vote for for president? 你選誰當總統? CC-BY 2.0 (France) Attribution: tatoeba.org #1042587 (GPHemsley) & #6064656 (verdastelo9604) +Who's the girl in a yellow raincoat? 穿黃色雨衣的女孩是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #25601 (CK) & #6633914 (verdastelo9604) +Why didn't Tom need to go to Boston? 为什么汤姆不需要去波士顿 CC-BY 2.0 (France) Attribution: tatoeba.org #6244726 (CK) & #8748605 (cxpadonis) +Why didn't you bring your hat today? 为什么你今天没有把帽子带来? CC-BY 2.0 (France) Attribution: tatoeba.org #2678428 (WestofEden) & #4456367 (plutowu) +Why do you need to read such a book? 为什么你要读这样一本书? CC-BY 2.0 (France) Attribution: tatoeba.org #36441 (CK) & #7772148 (jiangche) +Why exactly did you need to do that? 你到底为什么要这么做? CC-BY 2.0 (France) Attribution: tatoeba.org #7736517 (CK) & #8748544 (cxpadonis) +Will you lend your dictionary to me? 把你的字典借給我好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70606 (CK) & #865398 (Martha) +Will you live in Sasayama next year? 你明年會住在筱山嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #68862 (CK) & #907478 (Martha) +Will you please turn down the radio? 請你把收音機關小聲一點好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #29756 (CK) & #896504 (Martha) +Wipe the pan dry with a paper towel. 用纸巾把那口锅擦干。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574335 (CK) & #8574653 (slo_oth) +Wipe the pan dry with a paper towel. 用纸巾把平底锅擦干。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574335 (CK) & #8574659 (slo_oth) +Would you carry my luggage upstairs? 你可以把我的行李拿到樓上嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #23672 (CK) & #872382 (Martha) +Would you like to have another beer? 再来一杯啤酒怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1406828 (CK) & #5097655 (mirrorvan) +Would you please lend me some money? 你能借我些钱吗? CC-BY 2.0 (France) Attribution: tatoeba.org #51464 (CK) & #1360005 (sadhen) +Would you please show me that skirt? 请你给我看一下这条裙子好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #52318 (CK) & #334039 (fucongcong) +You can have this watch for nothing. 你可以免費擁有這支手錶。 CC-BY 2.0 (France) Attribution: tatoeba.org #58906 (CK) & #840549 (Martha) +You could've answered that question. 你本可以回答那问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641393 (CK) & #5595211 (verdastelo9604) +You don't have to answer right away. 你不用马上回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007062 (CK) & #5663590 (verdastelo9604) +You don't have to do it immediately. 你没必要马上去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1480994 (weihaiping) & #1361958 (sadhen) +You don't like love stories, do you? 你不喜歡愛情故事,是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #818082 (Cindrogriza) & #818094 (Martha) +You have such beautiful, hazel eyes. 你有如此美麗的淡褐色眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #458571 (lukaszpp) & #860957 (Martha) +You have three minutes to surrender. 限你三分鐘內投降 CC-BY 2.0 (France) Attribution: tatoeba.org #3726312 (CM) & #7432364 (zzztat) +You look just like your big brother. 你和你哥哥长得一模一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #16743 (Swift) & #8850438 (morningstar) +You ought to be ashamed of yourself. 你應該為你自己感到羞恥。 CC-BY 2.0 (France) Attribution: tatoeba.org #69098 (CK) & #907260 (Martha) +You ought to have come here earlier. 你應該早點來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #30419 (CK) & #898959 (kanaorange) +You ought to have come to our party. 你應該到我們的派對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16092 (Swift) & #775731 (Martha) +You seem to be waiting for somebody. 你看來在等人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712787 (CK) & #6145391 (verdastelo9604) +You should have accepted his advice. 你本应该接受他的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #15809 (CM) & #1783774 (sadhen) +You should pay your rent in advance. 你应该提前付租金。 CC-BY 2.0 (France) Attribution: tatoeba.org #9581 (CK) & #1780763 (sadhen) +You should've come and talked to me. 你應該來跟我說。 CC-BY 2.0 (France) Attribution: tatoeba.org #3722720 (CM) & #6568272 (verdastelo9604) +You'd better not have driven my car. 你最好不要開了我的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #541644 (CK) & #900700 (Martha) +You'll need a special tool to do it. 你会需要一个特殊的工具来做这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #41900 (CK) & #1314166 (vicch) +You're the only one who can help us. 你是唯一一个能帮助我们的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3240530 (CK) & #8608700 (slo_oth) +Your brother got married, didn't he? 你哥哥結婚了,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #64546 (CK) & #802493 (Martha) +Your composition has a few mistakes. 你的作文有一些錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #17145 (CK) & #874513 (Martha) +"Do you speak German?" "No, I don't." "你說德語嗎?" "不,我不說。" CC-BY 2.0 (France) Attribution: tatoeba.org #475466 (blay_paul) & #811500 (Martha) +"Does he like music?" "Yes, he does." "他喜歡音樂嗎?" "是的, 他喜歡。" CC-BY 2.0 (France) Attribution: tatoeba.org #73567 (CK) & #790626 (Martha) +"Tom isn't here." "Then where is he?" “汤姆不在那儿。”“那么他在哪儿?” CC-BY 2.0 (France) Attribution: tatoeba.org #1858691 (CK) & #2017465 (sadhen) +"What should I do?" I said to myself. “我该做什么呢?”我自言自语道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1337754 (CK) & #333673 (fucongcong) +A fool and his money are soon parted. 笨蛋難聚財。 CC-BY 2.0 (France) Attribution: tatoeba.org #18360 (CK) & #806653 (Martha) +A gentleman wouldn't do such a thing. 一个绅士是不会做这种事的。 CC-BY 2.0 (France) Attribution: tatoeba.org #269707 (CK) & #346067 (fucongcong) +A wise man profits from his mistakes. 聰明人會從自己的錯誤中受益。 CC-BY 2.0 (France) Attribution: tatoeba.org #239384 (CK) & #871183 (Martha) +Acid rain isn't a natural phenomenon. 酸雨不是自然现象。 CC-BY 2.0 (France) Attribution: tatoeba.org #7493025 (CK) & #334644 (fucongcong) +All essays must be handed in on time. 所有文章都必须在规定时间内交上来。 CC-BY 2.0 (France) Attribution: tatoeba.org #51773 (CM) & #3783103 (Debbie_Linder) +All the students clapped their hands. 所有的學生都拍手。 CC-BY 2.0 (France) Attribution: tatoeba.org #45927 (CK) & #738511 (Martha) +All their secrets have been revealed. 他們所有的秘密都已經被揭曉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305290 (CK) & #794051 (Martha) +Almost all the students like English. 幾乎所有的學生喜歡英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #21406 (CK) & #811575 (Martha) +Although he is rich, he is not happy. 虽然他很有钱,但他不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #684930 (Eldad) & #334255 (fucongcong) +Any student can answer that question. 任何學生都可以回答這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #36592 (CK) & #839101 (Martha) +Are we allowed to take pictures here? 这里允许拍照吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61886 (CK) & #332926 (fucongcong) +Are you a senior high school student? 你是個高中生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16152 (CK) & #775737 (Martha) +Are you brushing your teeth properly? 你正確地刷牙嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #40194 (CK) & #836442 (Martha) +Are you sure Tom is in Australia now? 你确定汤姆现在在澳洲吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7194548 (CK) & #8800824 (crescat) +Are you sure you know how to do this? 你真的知道这个怎么做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4012676 (CK) & #8842849 (crescat) +Beauty is in the eye of the beholder. 情人眼裡出西施。 CC-BY 2.0 (France) Attribution: tatoeba.org #393871 (blay_paul) & #1225680 (tsayng) +Both Tom and Mary can't speak French. 汤姆和玛丽都不说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #5560346 (CK) & #5911774 (verdastelo9604) +Brush your teeth before going to bed. 上床睡觉前要刷牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #268911 (CK) & #1361949 (sadhen) +Butter and cheese are made from milk. 奶油和乳酪是由牛奶做成的。 CC-BY 2.0 (France) Attribution: tatoeba.org #35198 (CK) & #881103 (Martha) +By the way, have you seen him lately? 顺便说一句,你最近见过他吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38054 (BraveSentry) & #334597 (fucongcong) +Can you come to the meeting tomorrow? 你明天可以來參加會議嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #323396 (CK) & #872108 (Martha) +Children should drink milk every day. 孩子们应该每天喝牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #245992 (CK) & #332690 (fucongcong) +Chocolate has more iron than spinach. 巧克力的鐵質含量比菠菜還要多。 CC-BY 2.0 (France) Attribution: tatoeba.org #7767759 (sharris123) & #3668672 (cienias) +Chocolate has more iron than spinach. 巧克力含有比菠菜更多的鐵質。 CC-BY 2.0 (France) Attribution: tatoeba.org #7767759 (sharris123) & #3668674 (cienias) +Coffee will be served after the meal. 咖啡將會在餐後供應。 CC-BY 2.0 (France) Attribution: tatoeba.org #268687 (CK) & #801414 (Martha) +Compared with yours, my car is small. 和你的车比起来,我的车很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #17084 (papabear) & #332575 (fucongcong) +Could you come to tomorrow's meeting? 你能来参加明天的会议吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1307454 (CK) & #5842695 (verdastelo9604) +Could you please autograph this book? 請你在這本書上簽名好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #515648 (CK) & #840623 (Martha) +Could you tell me the Wi-Fi password? 能不能請你告訴我Wi-Fi的密碼呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4844635 (pig8322) & #4795923 (umidake) +Did I say something I shouldn't have? 我說了什麼我不應該說的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4829849 (Hybrid) & #4830639 (umidake) +Did Tom tell you it was an emergency? 你告诉汤姆那是紧急情况了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3202529 (CK) & #6447549 (verdastelo9604) +Did the police find any fingerprints? 警察找到指纹了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4497576 (CK) & #5983666 (verdastelo9604) +Did you do your homework by yourself? 你自己做回家作業的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15999 (CK) & #775724 (Martha) +Did you make that mistake on purpose? 你故意犯那個錯的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69702 (CK) & #779026 (Martha) +Did you see the rainbow this morning? 你见到今天早上的彩虹了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3738029 (CK) & #8926999 (crescat) +Did you tell Tom about your problems? 你告訴湯姆你的問題了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3821354 (CK) & #6197308 (verdastelo9604) +Did your uncle let you drive his car? 你叔叔让你开他的车了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #65083 (CK) & #332902 (fucongcong) +Do this work by tomorrow if possible. 如果可能的话,在明天前做好这个工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #39569 (CK) & #473027 (fucongcong) +Do you feel any pain in your stomach? 你的胃會痛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #28160 (CK) & #866141 (Martha) +Do you go to church on Christmas Day? 你在圣誕節去教堂嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5705360 (CK) & #6162282 (verdastelo9604) +Do you know if she can speak English? 你知道她会说英语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #461200 (CK) & #461635 (fucongcong) +Do you know the meaning of this word? 您知道这个词的意思吗? CC-BY 2.0 (France) Attribution: tatoeba.org #57970 (CK) & #346132 (fucongcong) +Do you think Tom will let us do that? 你認為湯姆會讓我們做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #6074404 (CK) & #6086824 (verdastelo9604) +Do you think we'll have good weather? 你认为我们会遇到好天气吗? CC-BY 2.0 (France) Attribution: tatoeba.org #30057 (CK) & #7768424 (jiangche) +Don't forget to take out the garbage. 别忘了把垃圾拿出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3667566 (Hybrid) & #5091101 (mirrorvan) +Don't look a gift horse in the mouth. 不要對人家送的禮物挑三揀四,嫌東嫌西的。 CC-BY 2.0 (France) Attribution: tatoeba.org #404824 (MUIRIEL) & #806205 (Martha) +Don't look a gift horse in the mouth. 獲人贈馬,休看馬口。 CC-BY 2.0 (France) Attribution: tatoeba.org #404824 (MUIRIEL) & #806209 (Martha) +Don't pry into the affairs of others. 不要探听别人的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #274704 (CK) & #332959 (fucongcong) +Don't put anything on top of the box. 不要放任何東西在箱子上面。 CC-BY 2.0 (France) Attribution: tatoeba.org #44472 (CK) & #4816290 (umidake) +Don't put anything on top of the box. 盒子上面不要放任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #44472 (CK) & #4816291 (umidake) +Eating raw eggs could be bad for you. 吃生蛋可能是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770634 (garborg) & #4265770 (egg0073) +English is an international language. 英語是國際語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #26277 (CK) & #811873 (Martha) +Everybody says I look like my father. 每個人都說我看起來像我爸爸。 CC-BY 2.0 (France) Attribution: tatoeba.org #276545 (CK) & #907536 (Martha) +Everyone knew Tom was good at French. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7538081 (CK) & #8777542 (crescat) +Everyone knows that I don't like Tom. 每個人都知道我不喜歡湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #4999696 (CK) & #6332416 (verdastelo9604) +Excuse me, but may I open the window? 不好意思,请问我可以开窗吗? CC-BY 2.0 (France) Attribution: tatoeba.org #264990 (CK) & #1867043 (yuzazaza) +Father is out, but Mother is at home. 爸爸出去了,但妈妈在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #319272 (CM) & #334240 (fucongcong) +Father takes the 7:00 subway to work. 爸爸乘早上7点的地铁去上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #319091 (CM) & #332875 (fucongcong) +Flying is the quickest way to travel. 搭飛機是最快的旅行方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #318001 (CK) & #798082 (Martha) +Generally, men run faster than women. 一般來說, 男人比女人跑得快。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159478 (tinytina) & #769627 (Martha) +Get me some towels from the bathroom. 给我从浴室拿几条毛巾来。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574337 (CK) & #8574646 (slo_oth) +God created the heaven and the earth. 上帝創造了天地。 CC-BY 2.0 (France) Attribution: tatoeba.org #269661 (CK) & #798251 (Martha) +God knows we did everything we could. 上帝知道我们做了我们所能做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #451772 (FeuDRenais) & #444706 (fucongcong) +Have you ever seen Tom when he's mad? 你有看见过汤姆生气的时候吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4724246 (CK) & #5097868 (mirrorvan) +Have you finished reading that novel? 你读完那本小说了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #477311 (FeuDRenais) & #476580 (fucongcong) +He arrived at school exactly on time. 他刚好准时到校。 CC-BY 2.0 (France) Attribution: tatoeba.org #995282 (NickC) & #335121 (fucongcong) +He came to Tokyo at the age of three. 他三岁就到东京了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288536 (CK) & #333779 (fucongcong) +He can play both tennis and baseball. 他既会打网球,又会打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #291870 (CK) & #335095 (fucongcong) +He compared his car to the new model. 他拿他的車和新款車作比較。 CC-BY 2.0 (France) Attribution: tatoeba.org #298765 (CK) & #779534 (Martha) +He crossed the river in a small boat. 他乘小船過河。 CC-BY 2.0 (France) Attribution: tatoeba.org #299539 (CK) & #786132 (Martha) +He dried his wet clothes by the fire. 他在火旁烘干他的湿衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #302297 (CK) & #1417549 (sadhen) +He felt in his pocket for his wallet. 他在口袋里摸着找他的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #292731 (CK) & #336951 (fucongcong) +He founded the school five years ago. 他在五年前創立了這所學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #288611 (Eldad) & #819019 (Martha) +He goes to school to study every day. 他每天去学校学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #261856 (CK) & #332839 (fucongcong) +He got away disguised as a policeman. 他偽裝成警察逃跑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295730 (CK) & #804569 (Martha) +He got injured in a traffic accident. 他在一場交通意外中受了傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #296227 (CK) & #802532 (Martha) +He had no idea why his wife left him. 他不知道为什么他的妻子要离开他。 CC-BY 2.0 (France) Attribution: tatoeba.org #292264 (CK) & #1360023 (sadhen) +He has been ill in bed for four days. 他已卧病在床四天了。 CC-BY 2.0 (France) Attribution: tatoeba.org #288282 (CM) & #1394969 (mtdot) +He invented an excuse for being late. 他为他的迟到制造了一个借口。 CC-BY 2.0 (France) Attribution: tatoeba.org #301515 (CK) & #437302 (fucongcong) +He is familiar with Japanese culture. 他熟悉日本文化。 CC-BY 2.0 (France) Attribution: tatoeba.org #302230 (CK) & #781672 (Martha) +He is making preparations for a trip. 他正在籌備一次旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #304698 (CK) & #795257 (Martha) +He is now either in Rome or in Paris. 他不是在羅馬,就是在巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #296530 (CK) & #887660 (Martha) +He knows a lot about foreign affairs. 他知道很多外國事務。 CC-BY 2.0 (France) Attribution: tatoeba.org #294678 (CK) & #805661 (Martha) +He left his daughter a great fortune. 他留给他女儿一大笔财产。 CC-BY 2.0 (France) Attribution: tatoeba.org #304025 (CK) & #333797 (fucongcong) +He listened with his ear to the door. 他把耳朵貼在門上聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #291898 (CK) & #6091761 (verdastelo9604) +He lived abroad for much of his life. 他大半生都住在国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #300159 (CK) & #332722 (fucongcong) +He lost his eyesight in the accident. 他在意外中失明了。 CC-BY 2.0 (France) Attribution: tatoeba.org #470170 (CK) & #881844 (Martha) +He meets his girlfriend on Saturdays. 他每週六和他的女朋友見面。 CC-BY 2.0 (France) Attribution: tatoeba.org #512216 (CK) & #848421 (Martha) +He passed his property on to his son. 他把他的财产传给了他儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #296846 (CM) & #847881 (fucongcong) +He put a hand gently on her shoulder. 他把他的手溫柔地放在她的肩上。 CC-BY 2.0 (France) Attribution: tatoeba.org #302775 (CK) & #766401 (Martha) +He reluctantly agreed to my proposal. 他勉強同意了我的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #303762 (CK) & #848546 (Martha) +He reluctantly agreed to my proposal. 他不情愿地同意了我的提案。 CC-BY 2.0 (France) Attribution: tatoeba.org #303762 (CK) & #8642570 (crescat) +He selected a Christmas gift for her. 他給她選了件聖誕禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #302746 (CK) & #6535842 (verdastelo9604) +He told his son an interesting story. 他給他兒子講了一個有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #300946 (CK) & #7745190 (xjjAstrus) +He took a quick look at the magazine. 他迅速瞥了一眼杂志。 CC-BY 2.0 (France) Attribution: tatoeba.org #290807 (CK) & #343734 (fucongcong) +He tried to unify the various groups. 他試著統一不同的團體。 CC-BY 2.0 (France) Attribution: tatoeba.org #304511 (CK) & #881739 (Martha) +He was snoring loudly while he slept. 他睡着的时候,打呼声很响。 CC-BY 2.0 (France) Attribution: tatoeba.org #296379 (CK) & #333394 (fucongcong) +He was standing at the street corner. 他站在街角。 CC-BY 2.0 (France) Attribution: tatoeba.org #301685 (mamat) & #333711 (fucongcong) +He was suffering from a bad headache. 他正遭受严重头痛的困扰。 CC-BY 2.0 (France) Attribution: tatoeba.org #292528 (CK) & #862694 (kooler) +He went to America to study medicine. 他去美国学医了。 CC-BY 2.0 (France) Attribution: tatoeba.org #532666 (wma) & #333341 (fucongcong) +He will be my deputy while I am away. 我不在的时候,他将是我的代理人。 CC-BY 2.0 (France) Attribution: tatoeba.org #247059 (CM) & #1998037 (sadhen) +He's already too far away to hear us. 他已經離得太遠聽不到我們了。 CC-BY 2.0 (France) Attribution: tatoeba.org #826744 (FeuDRenais) & #827538 (Martha) +Here is the book you are looking for. 你正在找的書在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #61768 (CK) & #779060 (Martha) +His office is near the train station. 他的辦公室離車站很近。 CC-BY 2.0 (France) Attribution: tatoeba.org #1299110 (rahim) & #1296641 (tsayng) +His way of thinking is very childish. 他的思維方式很幼稚。 CC-BY 2.0 (France) Attribution: tatoeba.org #286217 (CK) & #6333801 (verdastelo9604) +How can you afford a place like this? 我們怎麼付得起這種地方的錢? CC-BY 2.0 (France) Attribution: tatoeba.org #3011214 (CK) & #6073910 (verdastelo9604) +How long do you plan on staying here? 你打算在这儿待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1531004 (erikspen) & #408842 (fucongcong) +How many books do you read per month? 你一個月讀幾本書? CC-BY 2.0 (France) Attribution: tatoeba.org #1257647 (Triwizard) & #4262606 (egg0073) +How much does a kilo of bananas cost? 一公斤香蕉多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #7819413 (sharris123) & #789340 (Martha) +Hurry up, or you will miss the train. 快点,不然你就要错过火车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19649 (CK) & #336859 (fucongcong) +I always cry when I see this picture. 当我看到这张图片的时候总是哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3783394 (popball) & #3783398 (Debbie_Linder) +I always think of him when I'm alone. 我孤单的时候总会想起他。 CC-BY 2.0 (France) Attribution: tatoeba.org #34664 (CK) & #5574566 (verdastelo9604) +I am familiar with the author's name. 我對這位作者的名字很熟悉。 CC-BY 2.0 (France) Attribution: tatoeba.org #254356 (CK) & #918551 (Martha) +I am familiar with this neighborhood. 我對這附近很熟悉。 CC-BY 2.0 (France) Attribution: tatoeba.org #253726 (CK) & #918557 (Martha) +I am getting off at the next station. 我在下一站下车。 CC-BY 2.0 (France) Attribution: tatoeba.org #258187 (autuno) & #334085 (fucongcong) +I am getting off at the next station. 我下一站下车。 CC-BY 2.0 (France) Attribution: tatoeba.org #258187 (autuno) & #375320 (fucongcong) +I am very concerned about his health. 我很关心他的健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #260590 (CK) & #5819693 (verdastelo9604) +I arrived at the village before dark. 我天黑之前到达了村庄。 CC-BY 2.0 (France) Attribution: tatoeba.org #336059 (killer4o) & #336106 (fucongcong) +I bought it for about twelve dollars. 我用12美元买的。 CC-BY 2.0 (France) Attribution: tatoeba.org #254854 (CK) & #411707 (fucongcong) +I can hardly understand what he says. 我幾乎無法了解他說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #260610 (CK) & #918549 (Martha) +I couldn't stop myself from laughing. 我不能忍著不笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2167978 (morgyn) & #6058655 (verdastelo9604) +I didn't get the point of his speech. 我没有抓到他演讲的重点。 CC-BY 2.0 (France) Attribution: tatoeba.org #336062 (killer4o) & #336109 (fucongcong) +I don't agree with you on this point. 这一点我不赞成你。 CC-BY 2.0 (France) Attribution: tatoeba.org #253699 (CK) & #1438522 (asosan) +I don't care as long as you're happy. 只要你开心就行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1392528 (CK) & #4764632 (ryanwoo) +I don't do that as well as I used to. 我不如以前做得好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6248541 (CK) & #8571933 (verdastelo9604) +I don't go in for that sort of thing. 我讨厌那种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #41648 (CK) & #782355 (fucongcong) +I don't know anything about his past. 我不知道任何有關他過去的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #402983 (CK) & #889311 (Martha) +I don't know if I have time to do it. 我不知道我是否有时间做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230776 (alec) & #334403 (fucongcong) +I don't know what I'd do without you. 我不知道如果沒了你我還能做什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2318312 (CK) & #8727944 (shou) +I don't know what to believe anymore. 我再也不知道該信甚麼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2318326 (CK) & #6447550 (verdastelo9604) +I don't like being treated like this. 我不喜欢以这种方式被对待。 CC-BY 2.0 (France) Attribution: tatoeba.org #253832 (CK) & #397114 (fucongcong) +I don't really like the stores there. 我不是很喜歡那裡的商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #31122 (CK) & #875360 (Martha) +I don't think Tom trusts many people. 我不認為湯姆相信許多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323200 (CK) & #6101444 (verdastelo9604) +I don't think this is Tom's umbrella. 我認為這不是湯姆的傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323170 (CK) & #6673091 (verdastelo9604) +I don't think we can wait any longer. 我认为我们不能再等了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323225 (CK) & #5983582 (verdastelo9604) +I don't want the present Tom gave me. 我不想要汤姆给我的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #6244215 (CK) & #8632058 (ZeroAurora) +I don't want to live my life in fear. 我不想在恐惧中生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #2019137 (CK) & #2037323 (sadhen) +I enjoyed driving on the new highway. 我很喜歡在新的高速公路上開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #258804 (CK) & #885524 (Martha) +I got acquainted with him last night. 我昨晚認識了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #257852 (CK) & #804595 (Martha) +I guess they really weren't so happy. 我猜他們真的不太高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044863 (CK) & #6585425 (verdastelo9604) +I had lost a camera the previous day. 我前一天丢了一台相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #550776 (CK) & #1394986 (mtdot) +I have never read such a scary novel. 我从没读过那么恐怖的小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #387498 (Mouseneb) & #343762 (fucongcong) +I have no more time to talk with you. 我没时间再跟你说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17584 (CK) & #7774533 (jiangche) +I have no particular reason to do so. 我没有特别的理由去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #29074 (CK) & #5698035 (verdastelo9604) +I have nothing to do with that crime. 这个犯罪和我一点关系都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #254615 (CK) & #334900 (fucongcong) +I have nothing to do with the affair. 我跟這件事無關。 CC-BY 2.0 (France) Attribution: tatoeba.org #29001 (CK) & #727572 (Martha) +I just thought I should double check. 我只覺得我應該再檢查一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #2373996 (CK) & #8571926 (verdastelo9604) +I kept the $20 I found in the street. 我留着在街上发现的20美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #681287 (Source_VOA) & #795458 (fucongcong) +I know him by name, but not by sight. 我知道他的名字,但不知道他长什么样。 CC-BY 2.0 (France) Attribution: tatoeba.org #68092 (CK) & #333817 (fucongcong) +I know him by sight, but not by name. 我知道他的样子,但不知道他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #260571 (CK) & #352070 (fucongcong) +I know that this is important to you. 我知道这对您来说很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887497 (CK) & #4878908 (musclegirlxyp) +I know this hasn't been easy for you. 我知道這對於你不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #3921630 (CK) & #6624726 (verdastelo9604) +I know your older brother quite well. 我跟你哥哥很熟。 CC-BY 2.0 (France) Attribution: tatoeba.org #411241 (CK) & #881240 (Martha) +I like dogs and my sister likes cats. 我喜欢狗,我妹妹喜欢猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #765973 (Angela) & #787613 (fucongcong) +I managed to repair my car by myself. 我自己搞定,修好了我的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2693984 (WestofEden) & #816474 (fucongcong) +I need a Japanese-English dictionary. 我需要一本日英字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #262307 (CK) & #835664 (Martha) +I ordered several books from England. 我从英国订了好几本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #253073 (CK) & #334788 (fucongcong) +I paid two thousand yen for the book. 我用两千日元买了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #254649 (CK) & #332889 (fucongcong) +I ran into Mary at a party last week. 上星期在一次派對中我遇到了瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #272745 (CK) & #804534 (Martha) +I really appreciate what you've done. 我真的很感激你所做的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #37809 (CK) & #852215 (Martha) +I remember having seen her somewhere. 我记得好像在哪里见过她。 CC-BY 2.0 (France) Attribution: tatoeba.org #427675 (witbrock) & #4104743 (maple) +I remember the way you used to dance. 我记得你以前跳舞的方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #4083734 (CK) & #5780584 (verdastelo9604) +I saw Tom almost every day last week. 我上周幾乎天天見到湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406112 (CK) & #6073904 (verdastelo9604) +I started learning Chinese last week. 我上周开始学中文了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1883 (Swift) & #502851 (fucongcong) +I still can't believe you're married. 我仍然無法相信你結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2406591 (CK) & #5496247 (egg0073) +I still haven't finished my homework. 我还没完成作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #5909763 (CK) & #835614 (fucongcong) +I succeeded in getting what I wanted. 我赢得了我想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #33459 (CK) & #2620166 (fenfang557) +I succeeded in getting what I wanted. 我成功地得到了我想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #33459 (CK) & #2620167 (fenfang557) +I swear I will never do such a thing. 我发誓我不会做这种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #272626 (CC) & #5617156 (verdastelo9604) +I think I'm coming down with a fever. 我覺得我有點要發燒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736976 (paper1n0) & #3149086 (cienias) +I think Tom probably likes you a lot. 我認為湯姆可能很喜歡你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2949901 (CK) & #6938373 (verdastelo9604) +I think it's time for you to grow up. 我觉得你是时候该懂事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3329958 (CK) & #3839482 (sadhen) +I think that Tom has a crush on Mary. 我觉得汤姆爱上玛丽了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7168299 (CK) & #8605874 (slo_oth) +I think that Tom should go on a diet. 我觉得汤姆需要减肥了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7169931 (CK) & #8715847 (crescat) +I thought Tom would sleep until noon. 我认为汤姆会睡到中午。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938792 (CK) & #5983577 (verdastelo9604) +I tried to convince Tom to come home. 我试着说服汤姆回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135265 (CK) & #5091609 (mirrorvan) +I understand your position perfectly. 我十分理解你的立場。 CC-BY 2.0 (France) Attribution: tatoeba.org #16863 (CK) & #834946 (Martha) +I used to eat pizza, but now I don't. 我以前吃披萨,但现在不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2978127 (CK) & #4540770 (McMeao) +I used to play tennis in high school. 我高中时曾打网球 CC-BY 2.0 (France) Attribution: tatoeba.org #241266 (CK) & #5975069 (zhangxr91) +I want a new shirt. What do you want? 我要一件新衬衫。你想要什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2361766 (CK) & #4621013 (Yashanti) +I want to just focus on the positive. 我只想注意积极方面。 CC-BY 2.0 (France) Attribution: tatoeba.org #5193450 (CK) & #5631888 (verdastelo9604) +I was given a nice watch by my uncle. 我叔叔给了我一块漂亮的手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #253224 (CK) & #333700 (fucongcong) +I was very confused by his questions. 我對他的問題感到很困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #286565 (AlanF_US) & #875124 (Martha) +I was very confused by his questions. 我對他的問題感到非常困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #286565 (AlanF_US) & #881565 (Martha) +I wasn't aware that Tom was sleeping. 我不知道湯姆在睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499548 (CK) & #6119315 (verdastelo9604) +I will be happy to attend your party. 我很快樂能參加你的派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #70870 (CK) & #780240 (Martha) +I will stand by you whatever happens. 不论发生什么事,我都会在你身边。 CC-BY 2.0 (France) Attribution: tatoeba.org #24635 (CK) & #3770487 (Debbie_Linder) +I wish more people felt the same way. 我希望更多人以相同的方式来感受。 CC-BY 2.0 (France) Attribution: tatoeba.org #5168369 (CK) & #5945145 (verdastelo9604) +I won't be getting married this year. 我今年不結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140126 (CK) & #6109320 (verdastelo9604) +I wonder if anything happened to him. 我怀疑有什么事在他身上发生了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286866 (CK) & #5091337 (mirrorvan) +I wonder if what I wrote was correct. 我在想我寫的對不對。 CC-BY 2.0 (France) Attribution: tatoeba.org #251203 (kebukebu) & #760843 (Martha) +I wonder what happened to his sister. 我想知道他姊姊發生了什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #403315 (CK) & #893533 (Martha) +I would like to have a cup of coffee. 我想要一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #454413 (saasmath) & #746063 (fucongcong) +I would like to have a cup of coffee. 我想喝一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #454413 (saasmath) & #819812 (fucongcong) +I would like to have some more water. 请再给我一些水。 CC-BY 2.0 (France) Attribution: tatoeba.org #763171 (Eldad) & #8698961 (crescat) +I'd love to find out why she said so. 我很想找出她为什么这么说的原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #792264 (CM) & #804881 (fucongcong) +I'll be taking a vacation next month. 我下個月要休假。 CC-BY 2.0 (France) Attribution: tatoeba.org #325040 (CK) & #894014 (Martha) +I'll give you anything that you want. 我會給你任何你想要的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #17351 (CK) & #863966 (Martha) +I'll never be able to live this down. 我以後不能在這鎮上生活了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825770 (CK) & #8215683 (verdastelo9604) +I'll take your suitcase to your room. 我會把你的手提箱拿到你的房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #52366 (CK) & #804924 (Martha) +I'm afraid you have the wrong number. 我恐怕您打错电话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64713 (CK) & #390880 (fucongcong) +I'm always forgetting people's names. 我總是忘記別人的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #253144 (CK) & #917940 (Martha) +I'm glad you could come to the party. 我很高兴你能来参加派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #30046 (CK) & #336483 (fucongcong) +I'm looking for a warm, woolen skirt. 我想找一件溫暖的羊毛裙。 CC-BY 2.0 (France) Attribution: tatoeba.org #25479 (Dejo) & #898731 (kanaorange) +I'm much better today than yesterday. 我今天覺得比昨天好多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257751 (CK) & #919721 (Martha) +I'm not a junior high school student. 我不是個初中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #259439 (CK) & #891746 (Martha) +I'm not accustomed to such treatment. 我不習慣這樣的待遇。 CC-BY 2.0 (France) Attribution: tatoeba.org #253540 (CK) & #795267 (Martha) +I'm not responsible for what Tom did. 我不必對湯姆所做的事負責任。 CC-BY 2.0 (France) Attribution: tatoeba.org #255276 (CK) & #801365 (Martha) +I'm proud of the work I've done here. 我為我在這裡完成的工作自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396191 (CK) & #2638720 (cienias) +I'm really surprised you got a prize. 我很惊讶你得了奖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2350237 (Mouseneb) & #835579 (fucongcong) +I'm sorry I didn't make myself clear. 對不起,我沒講清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #246432 (CK) & #801383 (Martha) +I'm sorry, I dialed the wrong number. 對不起,我撥錯了號碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #51481 (CK) & #798410 (Martha) +I'm sorry, but I can't hear you well. 對不起,但我聽不太清楚你說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #56377 (CK) & #793963 (Martha) +I'm the one who wants to be with you. 我才是那个想和你在一起的人! CC-BY 2.0 (France) Attribution: tatoeba.org #71231 (Dejo) & #5554511 (Alieen) +I'm trying to think of a better plan. 我试着考虑更好的计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #2540043 (CK) & #5687004 (verdastelo9604) +I'm used to staying up late at night. 我习惯晚睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #261995 (CK) & #1446942 (asosan) +I'm very interested in these stories. 我对这些故事很感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873003 (CK) & #1417547 (sadhen) +I've always wanted to climb Mt. Fuji. 我一直想登富士山。 CC-BY 2.0 (France) Attribution: tatoeba.org #953872 (CK) & #1438430 (asosan) +I've been busy writing a short story. 我一直忙于写一部短篇小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #7714851 (CK) & #333038 (fucongcong) +I've got something you've got to see. 我有个东西您该看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #5567593 (adamtrousers) & #4952846 (murr) +I've rented a room not far from here. 我租了一間離這裡不遠的屋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851163 (CK) & #6309831 (verdastelo9604) +If that were true, what would you do? 如果这是真的,您要怎么办? CC-BY 2.0 (France) Attribution: tatoeba.org #1446104 (CK) & #4878739 (musclegirlxyp) +If you need a pen, I'll lend you one. 如果你需要笔的话,我借你一支。 CC-BY 2.0 (France) Attribution: tatoeba.org #33821 (CK) & #332539 (fucongcong) +If you're wrong, then I'm wrong, too. 如果你錯了,那麼我也錯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #502732 (CK) & #891267 (Martha) +Imagine that you have a time machine. 想象一下,假如你有一台时光机。 CC-BY 2.0 (France) Attribution: tatoeba.org #41130 (Swift) & #4267375 (notabene) +Is Tom a common name in your country? 在你们国家,汤姆是个常见的名字吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4704206 (CK) & #7774610 (jiangche) +Is bungee jumping frightening or fun? 高空彈跳是恐怖還是好玩? CC-BY 2.0 (France) Attribution: tatoeba.org #681027 (Source_VOA) & #899976 (kanaorange) +Is our appointment today or tomorrow? 我們約的是今天還是明天? CC-BY 2.0 (France) Attribution: tatoeba.org #6678486 (basilhan) & #6579291 (xjjAstrus) +Is there anybody who can drive a car? 有人会开车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #276340 (CM) & #817279 (fucongcong) +It happened at a quarter past eleven. 它發生在十一點一刻。 CC-BY 2.0 (France) Attribution: tatoeba.org #42838 (CK) & #798362 (Martha) +It is absolutely impossible to do so. 絕對不可能這樣做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #51163 (CK) & #798105 (Martha) +It is bad manners to point at people. 用手指点别人不礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #270172 (CK) & #5091092 (mirrorvan) +It is essentially a question of time. 它本質上是一個時間的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #42098 (CK) & #797079 (Martha) +It is not difficult to speak English. 說英語不難。 CC-BY 2.0 (France) Attribution: tatoeba.org #26176 (CK) & #790637 (Martha) +It was dark when I reached the hotel. 我到旅馆的时候,天已经黑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33380 (CK) & #1695592 (sadhen) +It wasn't as expensive as I expected. 它沒有我想像的那麼貴。 CC-BY 2.0 (France) Attribution: tatoeba.org #327620 (CK) & #798378 (Martha) +It will cost you more to go by plane. 搭飛機將花你比較多的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #318000 (CK) & #811925 (Martha) +It won't take long to finish the job. 完成这个工作不会花太长时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #47585 (CK) & #787083 (fucongcong) +It's a pity they're getting divorced. 很遗憾他们离婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #652521 (darinmex) & #812381 (fucongcong) +It's dangerous to swim in this river. 在這條河裡游泳很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #58155 (CK) & #894052 (Martha) +It's easy for monkeys to climb trees. 猴子爬树容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #1329468 (CK) & #5845634 (verdastelo9604) +It's impossible to get there by noon. 中午到達那裡是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #271622 (CK) & #891134 (Martha) +It's rare to find big yards in Japan. 能在日本找到这样的大的院子实属罕见。 CC-BY 2.0 (France) Attribution: tatoeba.org #281227 (CK) & #1235644 (sunnywqing) +Japan produces a lot of good cameras. 日本生产很多好相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #281554 (CK) & #5696844 (verdastelo9604) +Lake Towada is famous for its beauty. 十和田湖以它的美麗聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #266534 (CK) & #797100 (Martha) +Laura Ingalls grew up on the prairie. 勞拉英戈爾斯是在草原上長大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29397 (CK) & #802073 (Martha) +Learning foreign languages is boring. 學外文很無聊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1392609 (CM) & #4061636 (egg0073) +Let's continue the game after supper. 讓我們在晚飯后繼續這個遊戲。 CC-BY 2.0 (France) Attribution: tatoeba.org #324646 (CK) & #6111866 (verdastelo9604) +Let's go as soon as it stops raining. 只要雨一停我们就走。 CC-BY 2.0 (France) Attribution: tatoeba.org #26833 (CK) & #5091636 (mirrorvan) +Man is the only animal that can talk. 人类是唯一能够彼此交谈的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #270324 (CM) & #4844733 (sadhen) +Many people work in industrial towns. 许多人在工业城市工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #274906 (CM) & #332869 (fucongcong) +Mary asked her son to behave himself. 瑪麗要求她的兒子守規矩。 CC-BY 2.0 (France) Attribution: tatoeba.org #31906 (CK) & #891148 (Martha) +Mary didn't recognize her ex-husband. 玛丽没有认出她的前夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #7646913 (CK) & #8463738 (gumblex) +Mary paid five dollars for her lunch. 玛丽用5美元买了午饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #616188 (luwenzhuo) & #366859 (fucongcong) +Mathematics is basic to all sciences. 數學是所有科學的基礎。 CC-BY 2.0 (France) Attribution: tatoeba.org #271009 (CK) & #798107 (Martha) +May I see your boarding pass, please? 請讓我看看您的登機證好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #279695 (CK) & #894238 (Martha) +May I see your driver's license, sir? 先生,我可以看看你的駕駛執照嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26573 (CK) & #893990 (Martha) +May I trouble you to shut the window? 可以麻烦你把窗关了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #56381 (CM) & #8593084 (easononizuka) +Mt. Fuji is Japan's tallest mountain. 富士山是日本最高的山。 CC-BY 2.0 (France) Attribution: tatoeba.org #388011 (Mouseneb) & #342840 (fucongcong) +My aunt grows tomatoes in her garden. 我阿姨在她的花園種蕃茄。 CC-BY 2.0 (France) Attribution: tatoeba.org #250270 (CK) & #802014 (Martha) +My brother bought an electric guitar. 我的兄弟買了電子吉他。 CC-BY 2.0 (France) Attribution: tatoeba.org #237852 (CK) & #1639567 (cienias) +My brother won't be at home tomorrow. 我的兄弟明天不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #5796958 (Herobane) & #5845650 (verdastelo9604) +My father goes jogging every morning. 我父親每天早上去慢跑。 CC-BY 2.0 (France) Attribution: tatoeba.org #319357 (CK) & #804845 (Martha) +My father goes jogging every morning. 我父親每天早上都跑步。 CC-BY 2.0 (France) Attribution: tatoeba.org #319357 (CK) & #5964270 (xjjAstrus) +My father helped me with my homework. 我爸爸幫我做作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #64097 (CK) & #724312 (egg0073) +My father is shaving in the bathroom. 我爸爸正在浴室裡刮鬍子。 CC-BY 2.0 (France) Attribution: tatoeba.org #438210 (CK) & #894024 (Martha) +My father is too busy to take a walk. 我父親太忙而無法去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #318960 (CK) & #804507 (Martha) +My father takes a bath before supper. 我的父親在晚飯前洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #319384 (CK) & #891016 (Martha) +My father takes a walk every morning. 我父親每天早上去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #319360 (CK) & #894850 (Martha) +My grandfather died when I was a boy. 當我是個小男孩的時候,我的祖父就過世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251331 (CK) & #893506 (Martha) +My mother made me take some medicine. 我媽媽讓我吃點藥。 CC-BY 2.0 (France) Attribution: tatoeba.org #320765 (CK) & #801956 (Martha) +My sister sometimes makes our dinner. 我的妹妹有時為我們做晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #245555 (CK) & #864271 (Martha) +My uncle lived abroad for many years. 我叔叔住在國外很多年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250254 (kebukebu) & #884193 (Martha) +Never look a gift horse in the mouth. 獲人贈馬,休看馬口。 CC-BY 2.0 (France) Attribution: tatoeba.org #706901 (papabear) & #806209 (Martha) +New stamps will be issued next month. 新郵票將於下個月發行。 CC-BY 2.0 (France) Attribution: tatoeba.org #269204 (CK) & #801408 (Martha) +No words can express her deep sorrow. 她的悲伤无法言喻。 CC-BY 2.0 (France) Attribution: tatoeba.org #591667 (saeb) & #332973 (fucongcong) +No words can relieve her deep sorrow. 沒有什麼話語能減輕她深深的悲傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #36654 (saeb) & #6084395 (verdastelo9604) +None of my classmates live near here. 我没有一个同学住在这儿附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #250651 (CK) & #333715 (fucongcong) +Not every country belongs to the U.N. 不是所有国家都加入了联合国。 CC-BY 2.0 (France) Attribution: tatoeba.org #1682839 (gleki) & #1891588 (Venki) +Nothing remained in the refrigerator. 冰箱里什么都没剩下。 CC-BY 2.0 (France) Attribution: tatoeba.org #326081 (CK) & #8635477 (slo_oth) +Other than Sundays, I work every day. 除了星期天我每一天都工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846001 (englishchinese) & #850360 (Martha) +Other than Sundays, I work every day. 我除了星期天外每天都上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846001 (englishchinese) & #860535 (Martha) +Our friendship will last a long time. 我們的友情會長久留存。 CC-BY 2.0 (France) Attribution: tatoeba.org #456565 (lukaszpp) & #6114391 (verdastelo9604) +Our school is very close to the park. 我们学校离公园非常近。 CC-BY 2.0 (France) Attribution: tatoeba.org #23439 (CK) & #408485 (fucongcong) +Our school library is small, but new. 我们学校的图书馆很小,但是是新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #247468 (CK) & #819761 (fucongcong) +Please come again in three days time. 请在三天内回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #504248 (blay_paul) & #784525 (fucongcong) +Please come back as soon as possible. 请尽快回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #39527 (CK) & #5865543 (verdastelo9604) +Please conduct yourself with dignity. 请自重。 CC-BY 2.0 (France) Attribution: tatoeba.org #8645629 (hamsolo474) & #1762970 (sadhen) +Please move your bicycle out of here. 請將您的自行車移出這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #506225 (CK) & #894352 (Martha) +Please show me your driver's license. 請讓我看看您的駕駛執照。 CC-BY 2.0 (France) Attribution: tatoeba.org #405788 (CK) & #859059 (Martha) +Put some salt into the boiling water. 放點鹽到滾水裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #319874 (CK) & #797047 (Martha) +Rain prevented us from taking a walk. 雨讓我們沒有辦法去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #26747 (Zifre) & #798263 (Martha) +Salmon lay their eggs in fresh water. 三文魚在淡水中產卵。 CC-BY 2.0 (France) Attribution: tatoeba.org #54145 (CS) & #5248192 (xjjAstrus) +School starts in September in Europe. 歐洲的學校在九月開學。 CC-BY 2.0 (France) Attribution: tatoeba.org #30030 (CK) & #798291 (Martha) +She appears to have a lot of friends. 她看起來好像有很多朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #308808 (CK) & #861451 (Martha) +She declared that she was not guilty. 她声称自己没罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #314757 (CK) & #787382 (fucongcong) +She died on a cold night in December. 她在一个寒冷的十二月晚上死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310069 (CK) & #9012180 (jacintoo) +She drew out the money from the bank. 她从银行取了钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #313330 (CM) & #3630135 (suitchic) +She forgave the boy for his rudeness. 她原谅了男孩的粗鲁。 CC-BY 2.0 (France) Attribution: tatoeba.org #315040 (CK) & #332828 (fucongcong) +She glanced briefly at the newspaper. 她很快地瞟了一眼報紙。 CC-BY 2.0 (France) Attribution: tatoeba.org #315164 (CK) & #804942 (Martha) +She got through her work before five. 她在五點鐘前做完了她的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #310191 (CK) & #802126 (Martha) +She got very angry with her children. 她对她的孩子非常生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #761904 (Zifre) & #472823 (fucongcong) +She had just come home when I called. 我打电话的时候,她刚回到家。 CC-BY 2.0 (France) Attribution: tatoeba.org #246953 (CK) & #333836 (fucongcong) +She invited us to her birthday party. 她邀请我们去她的生日派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #315752 (CK) & #333181 (fucongcong) +She kept me waiting for half an hour. 她让我等了半小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #388054 (CK) & #782982 (fucongcong) +She married again in her mid-forties. 她在四十多歲的時候再次結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #310178 (CK) & #794059 (Martha) +She picked up one of the glass vases. 她拿了其中一个玻璃花瓶。 CC-BY 2.0 (France) Attribution: tatoeba.org #310685 (CK) & #333406 (fucongcong) +She put the dirty dishes in the sink. 她把脏盘子放进水池里。 CC-BY 2.0 (France) Attribution: tatoeba.org #312724 (CK) & #866752 (kooler) +She returned the book to the library. 她把書還給了圖書館。 CC-BY 2.0 (France) Attribution: tatoeba.org #461914 (CK) & #894681 (Martha) +She says he will not give up smoking. 她說他不會戒煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2999329 (CM) & #6150042 (verdastelo9604) +She spoke scarcely a word of English. 她几乎不说英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #312186 (CK) & #336956 (fucongcong) +She substituted margarine for butter. 她用人造黄油代替了黄油。 CC-BY 2.0 (France) Attribution: tatoeba.org #309926 (CK) & #8751019 (crescat) +She took the entrance exam yesterday. 她昨天參加了入學考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #388905 (CK) & #861044 (Martha) +She used margarine instead of butter. 她用人造黄油代替了黄油。 CC-BY 2.0 (France) Attribution: tatoeba.org #1578558 (CM) & #8751019 (crescat) +She wanted to wash the dirty clothes. 她想洗脏衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #312725 (CK) & #866754 (kooler) +She was beautiful when she was young. 她年轻时很美丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1067130 (CK) & #1067197 (cranewang) +She was in a hurry to see her father. 她急于见她的父亲。 CC-BY 2.0 (France) Attribution: tatoeba.org #316799 (CK) & #609971 (sarah) +She was obliged to marry the old man. 她不得不和这个老男人结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #311440 (CK) & #2456075 (fenfang557) +She was only frightened, not injured. 她只是被嚇到了並沒有受傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #405227 (CK) & #861030 (Martha) +She was satisfied with the new dress. 那条新裙子让她很满意。 CC-BY 2.0 (France) Attribution: tatoeba.org #269089 (human600) & #333751 (fucongcong) +She whispered something into his ear. 她在他耳邊低聲說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #316287 (CK) & #850586 (Martha) +She's collecting material for a book. 她为一本书收集材料。 CC-BY 2.0 (France) Attribution: tatoeba.org #575318 (FeuDRenais) & #333927 (fucongcong) +She's not as beautiful as her sister. 她不如她姊姊漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #313927 (CK) & #900264 (Martha) +She's still dependent on her parents. 她现在依然依靠父母生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #312240 (CK) & #1501745 (fenfang557) +She's still dependent on her parents. 她是啃老族。 CC-BY 2.0 (France) Attribution: tatoeba.org #312240 (CK) & #2392988 (fenfang557) +So what will you do in the afternoon? 您下午做啥呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2256281 (FeuDRenais) & #2254408 (KerenDeng) +Soldiers must carry out their orders. 軍人必須履行他們的命令。 CC-BY 2.0 (France) Attribution: tatoeba.org #320124 (CK) & #798281 (Martha) +Someone stole my wallet on the train. 有人在火车上偷了我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #4297007 (AlanF_US) & #5630412 (verdastelo9604) +Something might have happened to her. 她可能出什么事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #34622 (CK) & #332431 (fucongcong) +Stock prices plunged to a record low. 股票價格跌至歷史新低。 CC-BY 2.0 (France) Attribution: tatoeba.org #21212 (CK) & #798079 (Martha) +Sumo is a traditional Japanese sport. 相扑是日本传统的体育活动。 CC-BY 2.0 (France) Attribution: tatoeba.org #1008915 (AOCinJAPAN) & #2394859 (fenfang557) +Take the elevator to the fifth floor. 搭乘電梯到五樓。 CC-BY 2.0 (France) Attribution: tatoeba.org #72530 (CK) & #798060 (Martha) +Tell her that I am watching the news. 跟她說我正在看新聞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1741551 (Amastan) & #5401612 (egg0073) +Thank you very much for your present. 非常谢谢你的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #274354 (CK) & #405044 (fucongcong) +That boy denies stealing the bicycle. 那个男孩否认偷了自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211552 (alec) & #333998 (fucongcong) +That cloud looks like a rabbit to me. 那朵云对我来说像一只兔子。 CC-BY 2.0 (France) Attribution: tatoeba.org #644595 (darinmex) & #812324 (fucongcong) +That scandal cost him his reputation. 丑闻让他付出了失去声誉的代价。 CC-BY 2.0 (France) Attribution: tatoeba.org #50306 (CK) & #427625 (fucongcong) +That's the reason I bought this book. 那是我買這本書的原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #3150640 (CK) & #6064620 (verdastelo9604) +The Mona Lisa has an enigmatic smile. 蒙娜丽莎有着神秘的微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2327236 (Hybrid) & #8795179 (slo_oth) +The big tree was struck by lightning. 這棵大樹遭到雷擊。 CC-BY 2.0 (France) Attribution: tatoeba.org #275540 (CK) & #891585 (Martha) +The bookcase is level with the table. 书架和桌子齐平。 CC-BY 2.0 (France) Attribution: tatoeba.org #2761588 (sharptoothed) & #5663517 (verdastelo9604) +The cancer has spread to her stomach. 癌細胞已經擴散到她的胃。 CC-BY 2.0 (France) Attribution: tatoeba.org #20800 (CK) & #902949 (Martha) +The criminal has not been caught yet. 那個犯人還沒被抓到。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269580 (FeuDRenais) & #2256345 (cienias) +The dictionary is of great use to me. 这本字典对我很实用。 CC-BY 2.0 (France) Attribution: tatoeba.org #46943 (mamat) & #1323974 (vicch) +The game will probably be called off. 這場比賽將可能被取消。 CC-BY 2.0 (France) Attribution: tatoeba.org #525702 (CK) & #903033 (Martha) +The girl doesn't like to play soccer. 那个女孩不喜欢踢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #462728 (lukaszpp) & #784044 (fucongcong) +The huge explosion killed six people. 大爆炸致死六人。 CC-BY 2.0 (France) Attribution: tatoeba.org #804388 (Source_VOA) & #4844767 (sadhen) +The length of this ship is 30 meters. 这艘船的长度是30米。 CC-BY 2.0 (France) Attribution: tatoeba.org #58097 (CK) & #336916 (fucongcong) +The little boy is afraid of the dark. 這小男孩怕黑。 CC-BY 2.0 (France) Attribution: tatoeba.org #47504 (CK) & #6071002 (verdastelo9604) +The meeting ended earlier than usual. 會議比往常早結束。 CC-BY 2.0 (France) Attribution: tatoeba.org #22503 (CK) & #865555 (Martha) +The nurse will tell you how to do it. 护士会告诉你怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #20988 (CK) & #332607 (fucongcong) +The old man passed away this morning. 老男人今天早上去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #326444 (CK) & #6103074 (verdastelo9604) +The people here are used to the cold. 这里的人习惯了寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230774 (alec) & #334406 (fucongcong) +The petals are floating on the water. 花瓣浮在水面上。 CC-BY 2.0 (France) Attribution: tatoeba.org #23743 (kebukebu) & #760833 (Martha) +The railroad is parallel to the road. 铁路与公路平行。 CC-BY 2.0 (France) Attribution: tatoeba.org #278766 (CK) & #5670798 (verdastelo9604) +The red hat goes well with her dress. 这顶红帽子很衬她的裙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #506826 (darinmex) & #334073 (fucongcong) +The room originally had no furniture. 本来这间房间里没有家具。 CC-BY 2.0 (France) Attribution: tatoeba.org #1795957 (ifethereal) & #1325324 (vicch) +The roses in the garden are blooming. 在花園裡的玫瑰正盛開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #460376 (CK) & #895630 (Martha) +The school will provide tents for us. 学校会提供帐篷给我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #21626 (CK) & #8591227 (easononizuka) +The shell of an egg is easily broken. 蛋壳容易破碎。 CC-BY 2.0 (France) Attribution: tatoeba.org #325215 (CM) & #791486 (fucongcong) +The situation went from bad to worse. 情況越來越糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #268503 (CM) & #779059 (Martha) +The students of this school are kind. 这个学校的学生很友好。 CC-BY 2.0 (France) Attribution: tatoeba.org #59934 (CK) & #334983 (fucongcong) +The sun was shining, yet it was cold. 虽然有阳光照射,但还是很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163174 (Source_VOA) & #2581511 (fenfang557) +The temperature has suddenly dropped. 气温突然下降了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20352 (CK) & #787596 (fucongcong) +The world doesn't revolve around you. 世界不是围着你转的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2101 (CK) & #503197 (fucongcong) +Their losses reached one million yen. 他們的損失到達了一百萬日圓。 CC-BY 2.0 (France) Attribution: tatoeba.org #305251 (CK) & #794022 (Martha) +There are fifty members in this club. 这个俱乐部里有50个会员。 CC-BY 2.0 (France) Attribution: tatoeba.org #61181 (CK) & #1426462 (sadhen) +There are many shantytowns in Mexico. 在墨西哥有很多貧民窟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1419979 (Chrikaru) & #4953631 (umidake) +There is a cottage beyond the bridge. 桥对面有一间小屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #18990 (CK) & #847809 (fucongcong) +There is a village over the mountain. 在山巔上有一個村莊。 CC-BY 2.0 (France) Attribution: tatoeba.org #245058 (CK) & #918372 (Martha) +There is something wrong with my car. 我的車子有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #251078 (CK) & #905844 (Martha) +There is something wrong with my car. 我的車子故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251078 (CK) & #905847 (Martha) +There must be some way to solve this. 一定有解決的辦法。 CC-BY 2.0 (France) Attribution: tatoeba.org #54974 (CM) & #6146507 (verdastelo9604) +There was an earthquake this morning. 今天早上發生了地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #242258 (CK) & #873485 (Martha) +There was no money left in my wallet. 我钱包里没钱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244276 (CK) & #335396 (fucongcong) +There was nothing left in the fridge. 冰箱里什么都没剩下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2074273 (_undertoad) & #8635477 (slo_oth) +There's a pub just around the corner. 在轉角有一家酒吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #21670 (CK) & #797024 (Martha) +There's an old movie theater in town. 城裡有一家古老的電影院。 CC-BY 2.0 (France) Attribution: tatoeba.org #21777 (CK) & #801332 (Martha) +There's an outside chance of winning. 贏的機會微乎其微。 CC-BY 2.0 (France) Attribution: tatoeba.org #267368 (CK) & #797091 (Martha) +There's bamboo growing in the garden. 花園裡有竹子在生長。 CC-BY 2.0 (France) Attribution: tatoeba.org #522621 (blay_paul) & #801334 (Martha) +There's no possibility of his coming. 他不可能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #284303 (CK) & #890596 (Martha) +There's only one store on the island. 在這個島上只有一家商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #44904 (CK) & #798148 (Martha) +There's something I want to tell you. 有件事情我要对你说。 CC-BY 2.0 (France) Attribution: tatoeba.org #2019188 (CK) & #1759719 (sadhen) +These flowers grow in warm countries. 這些花生長在溫暖的國家。 CC-BY 2.0 (France) Attribution: tatoeba.org #56294 (CK) & #801323 (Martha) +These shoes are too tight. They hurt. 这些鞋子太紧了,伤脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #18119 (CK) & #1783815 (sadhen) +They all searched for the lost child. 他們都在尋找這個走失的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #541292 (CK) & #895801 (Martha) +They always fight over little things. 他们总是为了小事吵架。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742932 (AlanF_US) & #8744878 (slo_oth) +They built a bridge across the river. 他們建了一座橫跨河流的橋。 CC-BY 2.0 (France) Attribution: tatoeba.org #307014 (CK) & #903520 (Martha) +They congratulated us on our victory. 他們祝賀我們的勝利。 CC-BY 2.0 (France) Attribution: tatoeba.org #306733 (CK) & #779069 (Martha) +They don't always obey their parents. 他們並不總是服從他們的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #305514 (CK) & #793887 (Martha) +They don't always obey their parents. 他们并不总是服从父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #305514 (CK) & #1361977 (sadhen) +They don't know each other very well. 他們不太認識對方。 CC-BY 2.0 (France) Attribution: tatoeba.org #546803 (darinmex) & #8962857 (egg0073) +They guarantee this clock for a year. 他們保證這個時鐘可用一年。 CC-BY 2.0 (France) Attribution: tatoeba.org #58948 (CK) & #801932 (Martha) +They have announced their engagement. 他們已經宣布訂婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72812 (CK) & #840671 (Martha) +They have been married for ten years. 他們已經結婚十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283575 (CK) & #905894 (Martha) +They helped each other with homework. 他們互相幫忙做功課。 CC-BY 2.0 (France) Attribution: tatoeba.org #421437 (KeEichi) & #917918 (Martha) +They knocked down a part of the wall. 他們拆掉了一部分牆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794244 (sharris123) & #884584 (Tajfun) +They made their way across the river. 他們渡河前進。 CC-BY 2.0 (France) Attribution: tatoeba.org #307019 (CK) & #795857 (Martha) +They sued the government for damages. 他們狀告政府賠償損失。 CC-BY 2.0 (France) Attribution: tatoeba.org #306550 (CK) & #781079 (Martha) +This beach is a paradise for surfers. 这个海滩是冲浪者的天堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #60622 (CK) & #335513 (fucongcong) +This book is beautifully illustrated. 这本书有精美的插图。 CC-BY 2.0 (France) Attribution: tatoeba.org #57083 (CK) & #332587 (fucongcong) +This bus will take you to the museum. 這輛公車會載你去博物館。 CC-BY 2.0 (France) Attribution: tatoeba.org #60688 (CK) & #785088 (Martha) +This clock loses three minutes a day. 这个钟每天慢三分钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #58932 (CK) & #792845 (fucongcong) +This factory manufactures CD players. 这家工厂生产CD机。 CC-BY 2.0 (France) Attribution: tatoeba.org #387374 (Mouseneb) & #336026 (fucongcong) +This is a good place to pitch a tent. 这是搭帐篷的好地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898116 (CK) & #5650538 (verdastelo9604) +This is the biggest car in the world. 这是世界上最大的车。 CC-BY 2.0 (France) Attribution: tatoeba.org #55558 (jakov) & #611538 (sarah) +This is the office in which he works. 這是他工作的辦公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #508258 (FeuDRenais) & #908013 (Martha) +This is the time he normally arrives. 他这个时候该到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58954 (CK) & #332953 (fucongcong) +This is what Tom would want me to do. 這是湯姆會想讓我們做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848401 (CK) & #6109346 (verdastelo9604) +This park reminds me of my childhood. 来到这个公园会让我想起自己的童年。 CC-BY 2.0 (France) Attribution: tatoeba.org #59318 (CM) & #8738753 (crescat) +This work must be finished by Monday. 這項工作必須在週一​​前完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #503825 (CK) & #900196 (Martha) +Those trains run every three minutes. 這些火車每三分鐘發車。 CC-BY 2.0 (France) Attribution: tatoeba.org #44832 (CK) & #796942 (Martha) +Today is one of my friends' birthday. 今天是我一个朋友的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #1995587 (marcelostockle) & #6119322 (verdastelo9604) +Tom admitted that he had killed Mary. 汤姆承认他杀死了玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029992 (CK) & #2615104 (fenfang557) +Tom and I know each other quite well. 湯姆和我互相很了解。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955644 (CK) & #6128478 (verdastelo9604) +Tom and I were born in the same city. 湯姆和我生在同一個城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #6252423 (CK) & #6535838 (verdastelo9604) +Tom and Mary stayed at a fancy hotel. 汤姆和玛丽入住了一家高档酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #5999505 (Hybrid) & #8709512 (crescat) +Tom and Mary stayed in a fancy hotel. 汤姆和玛丽入住了一家高档酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #5999506 (Hybrid) & #8709512 (crescat) +Tom asked Mary who her boyfriend was. 汤姆问玛丽她的男朋友是谁。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619594 (CK) & #5983586 (verdastelo9604) +Tom can swim almost as fast as I can. 汤姆几乎能游得跟我一样快。 CC-BY 2.0 (France) Attribution: tatoeba.org #3422110 (CK) & #5624908 (verdastelo9604) +Tom certainly is an eloquent speaker. 汤姆的确是个很会讲话的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095436 (CK) & #7771889 (jiangche) +Tom didn't even notice Mary had gone. 湯姆甚至沒注意到瑪麗走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539375 (CK) & #6111933 (verdastelo9604) +Tom didn't have a fever this morning. 湯姆今天早上沒有發燒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4135004 (CK) & #6057855 (verdastelo9604) +Tom didn't know Mary had a boyfriend. 湯姆不知道瑪麗有男朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826048 (CK) & #6938366 (verdastelo9604) +Tom doesn't believe he could do that. 湯姆不相信他能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #6252083 (CK) & #6628369 (verdastelo9604) +Tom doesn't like to discuss his work. 汤姆不喜欢谈论他的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #6008666 (szilviez) & #4262116 (notabene) +Tom doubled his investment in a year. 汤姆一年内增加了一倍的投资。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094237 (CK) & #5091314 (mirrorvan) +Tom fell into a vat of sulfuric acid. Tom 摔倒进一桶硫酸中 CC-BY 2.0 (France) Attribution: tatoeba.org #5973391 (Hybrid) & #5973392 (zhangxr91) +Tom glanced at the clock on the wall. 湯姆瞥了墻上的表一眼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3061066 (CK) & #6111988 (verdastelo9604) +Tom got into trouble because of Mary. 湯姆因為瑪麗陷入了麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #4480268 (Hybrid) & #6147594 (verdastelo9604) +Tom grows strawberries in his garden. 汤姆在他的院子里种着草莓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025622 (CK) & #8742173 (crescat) +Tom has a good head on his shoulders. 汤姆脑子好使。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025488 (CK) & #5072415 (musclegirlxyp) +Tom has a good head on his shoulders. 汤姆脑瓜灵。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025488 (CK) & #5072416 (musclegirlxyp) +Tom has apparently done that already. 很明顯,湯姆已經做完了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223352 (CK) & #6623204 (verdastelo9604) +Tom has been spending time with Mary. 汤姆在玛丽身上花时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #5668907 (CK) & #5739301 (verdastelo9604) +Tom hid his money under his mattress. 湯姆把錢藏在床墊底下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025226 (CK) & #9046310 (xjjAstrus) +Tom is coming to our school tomorrow. 湯姆明天會來我們的學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #37002 (CK) & #907516 (Martha) +Tom is three years younger than Mary. 汤姆比玛丽小三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028477 (CK) & #8777594 (crescat) +Tom is used to cooking on a campfire. 湯姆習慣用營火做菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024784 (CK) & #1261406 (tsayng) +Tom is waiting for Mary to come back. 汤姆正在等着玛丽回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #8035241 (CK) & #5095203 (mirrorvan) +Tom is waiting for everyone to leave. 汤姆等着每个人都离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #4726215 (CK) & #5670728 (verdastelo9604) +Tom isn't used to walking barefooted. 汤姆不习惯光着脚漫步。 CC-BY 2.0 (France) Attribution: tatoeba.org #2485919 (CK) & #1746031 (sadhen) +Tom isn't used to walking barefooted. 汤姆不习惯赤脚漫步。 CC-BY 2.0 (France) Attribution: tatoeba.org #2485919 (CK) & #1746034 (sadhen) +Tom knew when Mary would be arriving. 汤姆知道玛丽什么时候来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733923 (CK) & #5905029 (verdastelo9604) +Tom left a note for Mary on her desk. 湯姆給瑪麗在她桌上留了便條。 CC-BY 2.0 (France) Attribution: tatoeba.org #6611069 (CK) & #6624673 (verdastelo9604) +Tom lived in a small fishing village. 汤姆住在一个小渔村。 CC-BY 2.0 (France) Attribution: tatoeba.org #2006581 (CK) & #8777599 (crescat) +Tom looked pretty healthy last night. 汤姆昨晚看来很健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728204 (CM) & #5611628 (verdastelo9604) +Tom practiced in front of the mirror. 湯姆在鏡前練習。 CC-BY 2.0 (France) Attribution: tatoeba.org #5870027 (Hybrid) & #6293077 (verdastelo9604) +Tom pushed his way through the crowd. 汤姆从人群中拥出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #3479895 (CK) & #5581796 (verdastelo9604) +Tom put his hand over the microphone. 汤姆把手放在麦克风上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3155846 (CK) & #5663499 (verdastelo9604) +Tom puts gas in his car twice a week. 湯姆每週幫車子加兩次油。 CC-BY 2.0 (France) Attribution: tatoeba.org #681057 (Source_VOA) & #900035 (kanaorange) +Tom said he was ill, which was a lie. 汤姆说他病了,这是说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #37026 (CM) & #5739303 (verdastelo9604) +Tom says he doesn't know how to swim. 汤姆说他不知道怎么游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #5726657 (CM) & #6028215 (verdastelo9604) +Tom says he's not feeling any better. Tom说他感觉不舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877541 (CK) & #4845058 (pig8322) +Tom seems to be much happier than me. 汤姆看来比我高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780478 (CK) & #5780501 (verdastelo9604) +Tom told me Mary is leaving tomorrow. 汤姆和我说明天玛丽会离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #6646378 (CK) & #8696340 (crescat) +Tom told me he had a right to see it. 汤姆告诉我他有权看它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728288 (CM) & #5900397 (verdastelo9604) +Tom wants children, but Mary doesn't. 汤姆想要孩子,但玛丽不想。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539336 (CK) & #5931755 (verdastelo9604) +Tom wants to learn to sing in French. 汤姆想学唱法语歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5780474 (CK) & #5780497 (verdastelo9604) +Tom was excited to go to the concert. 汤姆为去音乐会而激动。 CC-BY 2.0 (France) Attribution: tatoeba.org #5139661 (Hybrid) & #5685892 (verdastelo9604) +Tom was unsatisfied with the results. 汤姆对结果不满。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757569 (CK) & #4757613 (ryanwoo) +Tom was wearing an old pair of shoes. 汤姆穿着一双旧鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #5469756 (CK) & #5763023 (verdastelo9604) +Tom went out for a walk with his dog. 湯姆帶他的狗出去走。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733995 (CK) & #6086847 (verdastelo9604) +Tom went to Boston to buy a painting. 湯姆去波士頓買一幅畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #3150545 (CK) & #6534782 (verdastelo9604) +Try to avoid making any more trouble. 盡量避免製造任何更多的麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #54876 (CK) & #798062 (Martha) +We are glad to have you in our class. 我们很高兴你加入了我们班。 CC-BY 2.0 (France) Attribution: tatoeba.org #68824 (CS) & #616212 (sarah) +We bought a comfortable new armchair. 我們買了張舒適的扶手椅。 CC-BY 2.0 (France) Attribution: tatoeba.org #2121206 (AlanF_US) & #4732062 (egg0073) +We don't need to attend that meeting. 我們不必參加那場會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #495640 (CK) & #905985 (Martha) +We got the meeting over with quickly. 我們很快的結束了這個會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #22426 (CK) & #802240 (Martha) +We had a conversation about baseball. 我們交談了有關棒球的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #263303 (CK) & #801911 (Martha) +We had lunch at a little coffee shop. 我們在一家小咖啡店吃午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #715731 (CM) & #6145387 (verdastelo9604) +We hardly have time to eat breakfast. 我们几乎没空吃早饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #277801 (CK) & #8496255 (gumblex) +We have absolutely nothing in common. 我们完全没有共同点。 CC-BY 2.0 (France) Attribution: tatoeba.org #248989 (CK) & #8715008 (crescat) +We have an elevator in our new house. 我們的新家有一臺電梯。 CC-BY 2.0 (France) Attribution: tatoeba.org #6028828 (grinleysspa) & #6020619 (xjjAstrus) +We have to pick a name for the child. 我們要給孩子起個名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #1324346 (Scott) & #6132408 (verdastelo9604) +We know the identity of Tom's killer. 我㥃知道了湯姆的殺手的身份。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953682 (CK) & #6086815 (verdastelo9604) +We sat talking about the remote past. 我们坐着谈很久以前的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #262648 (CK) & #5949254 (verdastelo9604) +We saw him walking across the street. 我們看見他正在過馬路。。 CC-BY 2.0 (France) Attribution: tatoeba.org #284022 (CK) & #895143 (Martha) +We speak the same language, don't we? 我們說的是同樣的語言,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #36514 (CK) & #1426351 (tsayng) +We spent the entire day on the beach. 我們一整天在沙灘上。 CC-BY 2.0 (France) Attribution: tatoeba.org #262668 (CK) & #884218 (Martha) +We were able to catch the last train. 我们能赶上最后一班火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #248731 (CK) & #334793 (fucongcong) +We were just about to enter the room. 我们正要进房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #249338 (CK) & #333238 (fucongcong) +We weren't at home yesterday evening. 昨天晚上我們不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #7825932 (sharris123) & #6471026 (xjjAstrus) +We'll ask Tom and see what he thinks. 我們要問問湯姆,看看他怎麼想。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539319 (CK) & #6149909 (verdastelo9604) +We're having difficulty locating Tom. 我们难以找到汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953912 (CK) & #5865534 (verdastelo9604) +What are the origins of the Olympics? 奥林匹克的起源是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #64813 (CK) & #334994 (fucongcong) +What do you think I was doing before? 你觉得我之前在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #997903 (NickC) & #335037 (fucongcong) +What do you think of Japan's economy? 您怎樣看日本的經濟呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1211457 (alec) & #1205886 (cienias) +What is the fare from Osaka to Akita? 从大阪到秋田的车费是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #275677 (Zifre) & #336186 (fucongcong) +What kind of woman do you think I am? 你认为我是哪种女人? CC-BY 2.0 (France) Attribution: tatoeba.org #1140038 (CK) & #2002946 (sadhen) +What languages are spoken in America? 在美国人们说哪些语言? CC-BY 2.0 (France) Attribution: tatoeba.org #1396379 (CK) & #1873010 (sadhen) +What time does the first train leave? 第一班火车什么时候出发? CC-BY 2.0 (France) Attribution: tatoeba.org #245548 (CK) & #471022 (fucongcong) +What will tomorrow's weather be like? 明天天氣怎麼樣? CC-BY 2.0 (France) Attribution: tatoeba.org #6110486 (Sethlang) & #6092461 (xjjAstrus) +What're you going to do this weekend? 你這個週末要做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #266440 (CK) & #900697 (Martha) +When I came home, I felt very hungry. 我回到家的时候,感觉非常饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #24240 (CK) & #334548 (fucongcong) +When did you get back from your trip? 你什么时候旅游回来的啊? CC-BY 2.0 (France) Attribution: tatoeba.org #65955 (CK) & #336583 (fucongcong) +Where is the longest tunnel in Japan? 日本最长的隧道在哪里? CC-BY 2.0 (France) Attribution: tatoeba.org #281174 (CK) & #811035 (fucongcong) +Wherever she goes, she is well liked. 無論她去哪裡,她都是惹人喜愛的。 CC-BY 2.0 (France) Attribution: tatoeba.org #311729 (CK) & #834822 (Martha) +Which goes faster, a ship or a train? 船和火车哪个跑得快? CC-BY 2.0 (France) Attribution: tatoeba.org #20244 (Dejo) & #336936 (fucongcong) +While napping, I had a strange dream. 我睡午觉的时候做了个怪梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #277624 (CM) & #8591300 (easononizuka) +Who's in charge of the sales section? 谁负责销售部门? CC-BY 2.0 (France) Attribution: tatoeba.org #276294 (CK) & #811030 (fucongcong) +Who's that woman standing over there? 站在那儿的女人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #1495744 (CK) & #811015 (fucongcong) +Whose idea was it to call the police? 想报警的是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #4013696 (CK) & #6903769 (verdastelo9604) +Why did they turn down your proposal? 他們為什麼否決了你的建議呢? CC-BY 2.0 (France) Attribution: tatoeba.org #38627 (CK) & #907217 (Martha) +Why do you think Tom doesn't like it? 你為甚麼認為湯姆不喜歡它? CC-BY 2.0 (France) Attribution: tatoeba.org #3123523 (CK) & #6923184 (verdastelo9604) +Why doesn't he tell me jokes anymore? 為甚麼他不再跟我講笑話了? CC-BY 2.0 (France) Attribution: tatoeba.org #1814006 (Amastan) & #6132398 (verdastelo9604) +Wires are used to convey electricity. 電線被用來運送電力。 CC-BY 2.0 (France) Attribution: tatoeba.org #269865 (CK) & #772100 (Martha) +Would you let me know when Tom comes? 你能让我知道汤姆什么时候来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1023728 (CK) & #1397132 (mtdot) +Would you like another glass of wine? 你想再来杯酒吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319466 (CK) & #332636 (fucongcong) +Would you like to eat lunch together? 要一起吃午餐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1341101 (CK) & #8775792 (crescat) +Would you mind saying that once more? 請你再說一次好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433598 (CK) & #900695 (Martha) +Would you mind saying that once more? 你可以再說一次嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433598 (CK) & #900696 (Martha) +Would you please autograph this book? 請您在這本書上簽名好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #515646 (CK) & #866622 (Martha) +Would you please look over my report? 你可以仔細檢查一下我的報告嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776354 (CK) & #776968 (Martha) +Yesterday was the last day of school. 昨天是最后一天上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #682513 (Source_VOA) & #816558 (fucongcong) +Yesterday's weather wasn't very good. 昨天天氣不是很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5920126 (Sethlang) & #5919367 (xjjAstrus) +Yesterday, the weather was very nice. 昨天天气非常好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1793868 (EHsasi) & #1793871 (sadhen) +You aren't afraid of ghosts, are you? 你不怕鬼,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #237628 (CK) & #6635835 (verdastelo9604) +You can have a ride on my motorcycle. 你可以骑上我的摩托车去遛一圈。 CC-BY 2.0 (France) Attribution: tatoeba.org #250376 (CK) & #332532 (fucongcong) +You did not come to school yesterday. 你昨天没来学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #16115 (Swift) & #5983630 (verdastelo9604) +You don't have to wait until the end. 你没必要待到最后。 CC-BY 2.0 (France) Attribution: tatoeba.org #476101 (Mouseneb) & #470904 (fucongcong) +You have too many books on the shelf. 你書架上的書太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #45473 (CK) & #6535837 (verdastelo9604) +You know I have no choice, don't you? 你知道我沒法選擇,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #4054952 (CK) & #6065747 (verdastelo9604) +You may as well tell me all about it. 你不妨告訴我一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #16842 (Dejo) & #775861 (Martha) +You must pay attention to his advice. 你一定要注意他的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #15808 (CK) & #1783771 (sadhen) +You ought to know better at your age. 在你這個年紀你應該要更懂事。 CC-BY 2.0 (France) Attribution: tatoeba.org #16576 (CM) & #775814 (Martha) +You should be good to your neighbors. 你应该对邻居好点。 CC-BY 2.0 (France) Attribution: tatoeba.org #325952 (CK) & #5574138 (verdastelo9604) +You should have attended the meeting. 你應該參加這個會議的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16240 (CK) & #874731 (Martha) +You should have shown him the device. 你应该给他看看这装置。 CC-BY 2.0 (France) Attribution: tatoeba.org #3271339 (CM) & #5983678 (verdastelo9604) +You won't be able to catch the train. 你將無法趕上火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #8983628 (CK) & #775810 (Martha) +You worry about your weight too much. 你太担心您的体重了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1801779 (Spamster) & #2437249 (CLARET) +You worry too much about your weight. 你太担心您的体重了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2438452 (FeuDRenais) & #2437249 (CLARET) +You'd better not have eaten the cake. 你最好不要吃了蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #541621 (CK) & #903476 (Martha) +You'd better not smoke while on duty. 當你值勤時最好不要抽煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #8985606 (CK) & #775754 (Martha) +You'd better tell us what's going on. 你最好告诉我们发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #5380211 (CK) & #5911727 (verdastelo9604) +You're a friend of Tom's, aren't you? 你是湯姆的一個朋友,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #503749 (CK) & #895162 (Martha) +You're lucky to have such a good job. 你很幸運能有這麼好的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493572 (CK) & #4504463 (egg0073) +You're the man I've been looking for. 你就是我一直要找的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712762 (CK) & #796779 (fucongcong) +You're the new secretary, aren't you? 您是新来的秘书吧,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69189 (CK) & #4265187 (notabene) +You're the only one that can help us. 你是唯一一个能帮助我们的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #8382901 (CK) & #8608700 (slo_oth) +Your mother is in critical condition. 你母親現在情況危殆。 CC-BY 2.0 (France) Attribution: tatoeba.org #17403 (CK) & #874511 (Martha) +Your opinion is very important to us. 您的意見對我們很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #1757259 (CK) & #1757253 (egg0073) +"How old are you?" "I'm 16 years old." 「你幾歲?」「我十六歲。」 CC-BY 2.0 (France) Attribution: tatoeba.org #758863 (CK) & #1233907 (tsayng) +"The phone is ringing." "I'll get it." “电话响了。”“我去接。” CC-BY 2.0 (France) Attribution: tatoeba.org #1516 (brauliobezerra) & #334474 (fucongcong) +"The phone is ringing." "I'll get it." “电话响了。”“我来接。” CC-BY 2.0 (France) Attribution: tatoeba.org #1516 (brauliobezerra) & #345808 (fucongcong) +"What time is it?" "It is ten-thirty." "几点了?""10点半了。" CC-BY 2.0 (France) Attribution: tatoeba.org #73747 (CK) & #415635 (fucongcong) +A fire broke out after the earthquake. 地震之後發生了火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #45133 (CK) & #798277 (Martha) +A panel of experts discussed the plan. 一個專家小組討論這個計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #273161 (CK) & #797065 (Martha) +A plastic dish will melt on the stove. 塑料盘子在烤箱里会化的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34217 (CK) & #444641 (fucongcong) +A wise man would not say such a thing. 一个聪明人不会说这种话。 CC-BY 2.0 (France) Attribution: tatoeba.org #239374 (CK) & #405726 (fucongcong) +AI stands for artificial intelligence. AI 代表人工智能。 CC-BY 2.0 (France) Attribution: tatoeba.org #72264 (CK) & #916623 (Martha) +Acid rain is not a natural phenomenon. 酸雨不是自然现象。 CC-BY 2.0 (France) Attribution: tatoeba.org #245182 (CM) & #334644 (fucongcong) +Actually, I'm not suggesting anything. 實際上,我沒有建議甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3127853 (CK) & #6111955 (verdastelo9604) +All Americans have to pay their taxes. 所有美国人都需要缴税。 CC-BY 2.0 (France) Attribution: tatoeba.org #682135 (Source_VOA) & #3779051 (e78xx_xxx) +Are there reserved seats on the train? 火車上有預訂的座位嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #324754 (CK) & #865581 (Martha) +Are you absolutely certain about this? 你絶對確定這事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3024505 (CK) & #6084408 (verdastelo9604) +Are you certain this is what you want? 你确定这就是你想要的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4012060 (CK) & #5942083 (verdastelo9604) +Are you doing what you think is right? 你在做你覺得對的事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16834 (Dejo) & #1225673 (tsayng) +Are you taking any medicine regularly? 你經常服用任何藥物嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #25023 (CK) & #844510 (Martha) +Aren't there any qualified applicants? 没有合格的申请人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4529290 (CK) & #8709405 (slo_oth) +Armenian is an Indo-European language. 亚美尼亚语是一门印欧语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #1781610 (Amastan) & #7076960 (la_kanro) +Ask him if he will attend the meeting. 问他会不会来参加会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #22577 (CK) & #343427 (fucongcong) +Be at the station at 11 o'clock sharp. 十一点准时到车站。 CC-BY 2.0 (France) Attribution: tatoeba.org #708069 (Eldad) & #4972587 (wzhd) +Boston is a great place to raise kids. 波士頓是養小孩的好地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #5380203 (CK) & #6111930 (verdastelo9604) +Can you tell us a bit more about that? 能再告诉我一点吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3202683 (CK) & #5576814 (verdastelo9604) +Come on. I want to show you something. 来吧。我想让你看点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2025814 (CK) & #5091346 (mirrorvan) +Could you please repeat it once again? 請您再說一遍好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #433597 (CK) & #868438 (Martha) +Could you tell me what my choices are? 你能告訴我我的選項是甚麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3202680 (CK) & #6150029 (verdastelo9604) +Did you hear about the fire yesterday? 你聽說了昨天的火災嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16116 (Swift) & #775736 (Martha) +Do you have a book written in English? 你有一本用英文寫的書嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #26363 (al_ex_an_der) & #811837 (Martha) +Do you have a fever and a sore throat? 你發燒和喉嚨痛嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #8589323 (easononizuka) & #786423 (Martha) +Do you have anything to remove stains? 你有除锈的东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3045855 (sharptoothed) & #5663568 (verdastelo9604) +Do you know how the accident happened? 你知道這個意外是如何發生的嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #263670 (CK) & #870065 (Martha) +Do you know what time it is in Boston? 请问现在波士顿是几点钟? CC-BY 2.0 (France) Attribution: tatoeba.org #2882529 (CK) & #8697580 (morningstar) +Do you know which book sells well now? 你知道现在哪本书卖得好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #36576 (SPENSER) & #335625 (fucongcong) +Do you know whose handwriting this is? 你知道这是谁的字吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2871677 (CK) & #4887572 (musclegirlxyp) +Do you usually have tea for breakfast? 你經常早餐喝茶嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69781 (CK) & #884178 (Martha) +Do you want to be an actor in a movie? 你想成為一名電影演員嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #680078 (Source_VOA) & #886133 (Martha) +Do you want to go on a picnic with me? 你想跟我去野餐吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1037195 (GPHemsley) & #5911602 (verdastelo9604) +Do you want to know why I lied to Tom? 你想知道为什么我对Tom说话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2025827 (CK) & #4844994 (pig8322) +Does anyone here know where Tom lives? 這裡有人知道湯姆住在哪裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3822984 (CK) & #6028089 (verdastelo9604) +Don't distract me while I am studying. 我学习的时候不要打扰我。 CC-BY 2.0 (France) Attribution: tatoeba.org #320429 (CK) & #510769 (fucongcong) +Don't distract me while I am studying. 当我学习的时候不要打扰我。 CC-BY 2.0 (France) Attribution: tatoeba.org #320429 (CK) & #604947 (CLARET) +Don't get off the train till it stops. 列车停下前别下车。 CC-BY 2.0 (France) Attribution: tatoeba.org #279173 (CM) & #5595104 (verdastelo9604) +Don't talk to others during the class. 上課中不要跟別人講話。 CC-BY 2.0 (France) Attribution: tatoeba.org #263657 (CK) & #881681 (Martha) +Don't underestimate your own strength. 不要低估自己的实力。 CC-BY 2.0 (France) Attribution: tatoeba.org #2396022 (CK) & #2581653 (fenfang557) +During the exam, Tom cheated off Mary. 在考试的时候,汤姆作弊抄了玛丽的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #1096244 (CK) & #5091515 (mirrorvan) +English is studied all over the world. 世界各地都讀英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26257 (CK) & #797030 (Martha) +Even expert drivers can make mistakes. 再怎麼經驗老到的司機都會出錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #266735 (CK) & #483961 (moonoops) +Even with all his money, he's unhappy. 儘管他有那麼多錢,他並不快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #414516 (CK) & #888290 (Martha) +Everybody knew Tom was good at French. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7538080 (CK) & #8777542 (crescat) +Everyone has strengths and weaknesses. 每个人都有他的长处和短处。 CC-BY 2.0 (France) Attribution: tatoeba.org #1453 (kebukebu) & #335044 (fucongcong) +Everyone knows Tom speaks good French. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8779656 (shekitten) & #8777542 (crescat) +Everyone should bring their own lunch. 每個人都應該帶自己的午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211521 (alec) & #1205874 (cienias) +Everything depends upon your decision. 所有事都取決於你的決定。 CC-BY 2.0 (France) Attribution: tatoeba.org #51677 (CK) & #6065389 (verdastelo9604) +Excuse me, where is the train station? 抱歉,火車站在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #7789270 (sharris123) & #6559038 (xjjAstrus) +For the teacher, teaching her was fun. 對教師來說,教她很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #387601 (CK) & #883480 (Martha) +Four is an unlucky number in Japanese. 4在日本是一个不幸的数字。 CC-BY 2.0 (France) Attribution: tatoeba.org #72905 (CK) & #791500 (fucongcong) +Halley's Comet will come back in 2061. 哈雷彗星將在2061回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #34987 (CK) & #875268 (Martha) +Have you ever had any serious illness? 你曾经得过重病吗? CC-BY 2.0 (France) Attribution: tatoeba.org #23634 (CK) & #334600 (fucongcong) +He asked her seven times to marry him. 他求她跟他结婚七次。 CC-BY 2.0 (France) Attribution: tatoeba.org #875574 (CM) & #5907517 (verdastelo9604) +He betrayed her secret to his friends. 他把她的秘密告诉了他的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #302828 (CK) & #334876 (fucongcong) +He can't seem to understand that poem. 他似乎无法理解那首诗。 CC-BY 2.0 (France) Attribution: tatoeba.org #291947 (CK) & #1454458 (sadhen) +He entered my room without permission. 他未經允許進了我房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #301429 (CK) & #4504516 (egg0073) +He gave his children a good education. 他給了他的孩子們良好的教育。 CC-BY 2.0 (France) Attribution: tatoeba.org #297126 (CK) & #805585 (Martha) +He gets a haircut three times a month. 他一个月剪三次头发。 CC-BY 2.0 (France) Attribution: tatoeba.org #295904 (CK) & #8685525 (crescat) +He has access to the American Embassy. 他有权出入美国大使馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #288864 (CM) & #2027942 (ydcok) +He has been secretly in love with her. 他一直暗恋着她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493273 (weihaiping) & #1490518 (sadhen) +He is a person who never cuts corners. 他是个绝对不会偷工减料的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #294911 (CK) & #8789328 (crescat) +He is confronted by many difficulties. 他面臨著許多困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #301110 (xtofu80) & #885382 (Martha) +He lost his eyesight in that accident. 他在那次意外中失去了他的視力。 CC-BY 2.0 (France) Attribution: tatoeba.org #476193 (CK) & #889615 (Martha) +He made himself heard across the room. 他讓對面的房間都能聽到他的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #303415 (CK) & #802530 (Martha) +He made the most of his opportunities. 他盡力地利用了他的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #298664 (CK) & #796009 (Martha) +He preferred working to doing nothing. 他更愿意工作而不是无所事事。 CC-BY 2.0 (France) Attribution: tatoeba.org #294297 (CK) & #2065309 (sadhen) +He said nothing, which made her angry. 他什么也没说,这让她很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #294303 (CK) & #336249 (fucongcong) +He towers above the rest of the class. 他在班上出類拔萃。 CC-BY 2.0 (France) Attribution: tatoeba.org #289752 (CM) & #874191 (Martha) +He tried to concentrate on the letter. 他试图把注意力集中在信上。 CC-BY 2.0 (France) Attribution: tatoeba.org #402506 (CK) & #609885 (sarah) +He turned a deaf ear to their request. 他对他们的请求置若罔闻。 CC-BY 2.0 (France) Attribution: tatoeba.org #302566 (CM) & #8835117 (crescat) +He turned over the matter in his mind. 他在心里反复思量这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #299833 (CM) & #863328 (kooler) +He was mad because he was not invited. 他因为没有被邀请而气得快疯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1875952 (Spamster) & #2082992 (sadhen) +He's opposed to racial discrimination. 他反对种族歧视。 CC-BY 2.0 (France) Attribution: tatoeba.org #600855 (baisong) & #464747 (fucongcong) +Helen Keller was blind, deaf and dumb. 海倫凱勒眼盲,耳聾,又啞。 CC-BY 2.0 (France) Attribution: tatoeba.org #33855 (CK) & #881903 (Martha) +Here's where they usually have dinner. 这儿是他们通常吃晚饭的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #707092 (papabear) & #463915 (fucongcong) +His brother is a famous soccer player. 他弟弟是个有名的足球选手。 CC-BY 2.0 (France) Attribution: tatoeba.org #285286 (CK) & #332970 (fucongcong) +His company didn't survive the crisis. 他的公司沒有從危機中倖存。 CC-BY 2.0 (France) Attribution: tatoeba.org #1530354 (erikspen) & #5496290 (egg0073) +His job is driving a sight-seeing bus. 他的工作是驾驶观光巴士。 CC-BY 2.0 (France) Attribution: tatoeba.org #286420 (CK) & #5967303 (verdastelo9604) +His life after retirement was unhappy. 他退休後的生活不快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #287173 (CK) & #786124 (Martha) +His pronunciation is far from perfect. 他的发音远非完美。 CC-BY 2.0 (France) Attribution: tatoeba.org #287309 (CK) & #7772058 (jiangche) +His speech was short and to the point. 他的演讲简短且切中要害。 CC-BY 2.0 (France) Attribution: tatoeba.org #285365 (CK) & #2083002 (sadhen) +Honesty is not always the best policy. 誠實不總是最好的策略。 CC-BY 2.0 (France) Attribution: tatoeba.org #271686 (CK) & #798223 (Martha) +Hopefully, we'll enjoy our China trip. 希望我們會喜歡我們的中國之旅。 CC-BY 2.0 (France) Attribution: tatoeba.org #322030 (CK) & #848765 (Martha) +How are you? Did you have a good trip? 你怎么样?旅游愉快吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1716 (CK) & #501697 (fucongcong) +How did you arrive at this conclusion? 你们怎么得出这个结论的? CC-BY 2.0 (France) Attribution: tatoeba.org #37563 (CK) & #1314146 (vicch) +How do you say "I love you" in French? “我爱你”用法语怎么讲? CC-BY 2.0 (France) Attribution: tatoeba.org #2417967 (CK) & #8715888 (crescat) +How many boys are there in this class? 这个班有多少男生? CC-BY 2.0 (France) Attribution: tatoeba.org #61193 (saeb) & #332709 (fucongcong) +I agree with your opinion about taxes. 我同意你對於稅的意見。 CC-BY 2.0 (France) Attribution: tatoeba.org #259004 (CK) & #887890 (Martha) +I am very interested in these stories. 我对这些故事很感兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #253809 (CK) & #1417547 (sadhen) +I borrowed this comic from his sister. 我向他的妹妹借了這個漫畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #395669 (CK) & #926597 (Martha) +I bought a few eggs and a little milk. 我买了几个鸡蛋和一点牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #262176 (CK) & #347058 (fucongcong) +I bought her a nice Christmas present. 我給她買了一個不錯的聖誕禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #261202 (CK) & #917787 (Martha) +I can't bear to deal with her anymore. 我再也忍受不了她了! CC-BY 2.0 (France) Attribution: tatoeba.org #1663262 (liwan1208) & #1662224 (vicch) +I can't forget what happened that day. 我无法忘记那天发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #7735787 (CK) & #8631834 (ZeroAurora) +I can't stand that kind of politician. 我不能忍受那種政治家。 CC-BY 2.0 (France) Attribution: tatoeba.org #421988 (CK) & #883034 (Martha) +I can't understand how Tom could know. 我不懂汤姆怎么知道的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955089 (CK) & #5617201 (verdastelo9604) +I can't work for this company anymore. 我没法再在这家公司里面工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7798476 (sharris123) & #7774761 (jiangche) +I cannot agree with you on the matter. 在这件事上,我无法赞同你。 CC-BY 2.0 (France) Attribution: tatoeba.org #70709 (CM) & #366885 (fucongcong) +I could tell Tom the truth, I suppose. 我覺得我能告訴湯姆真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #2308183 (CK) & #8570947 (verdastelo9604) +I didn't recognize anyone in the room. 房子里面的人我一个也不认得。 CC-BY 2.0 (France) Attribution: tatoeba.org #6246935 (CK) & #8591278 (easononizuka) +I do not know when she will come back. 我不知道她什么时候会回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #63593 (CK) & #1416157 (sadhen) +I don't care as long as you are happy. 只要你开心就行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17867 (CK) & #4764632 (ryanwoo) +I don't have time to meet up with you. 我没时间跟您碰头。 CC-BY 2.0 (France) Attribution: tatoeba.org #7791053 (sharris123) & #461669 (fucongcong) +I don't know how to express my thanks. 我不知道如何表達我的謝意。 CC-BY 2.0 (France) Attribution: tatoeba.org #21049 (CK) & #772372 (Martha) +I don't know if I can go to the party. 我不知道我是否可以去派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #7790170 (sharris123) & #466213 (fucongcong) +I don't know the meaning of this word. 我不知道这个词的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #7772838 (sharris123) & #510777 (fucongcong) +I don't know what you're referring to. 我不知道你指的是什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361270 (CK) & #5650519 (verdastelo9604) +I don't know whether it's good or not. 我不知道它是好是坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #7516785 (CK) & #5558555 (verdastelo9604) +I don't like learning irregular verbs. 我不喜欢学习不规则动词。 CC-BY 2.0 (France) Attribution: tatoeba.org #1802 (Swift) & #502742 (fucongcong) +I don't like the way you laugh at her. 我不喜欢你嘲笑她的方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #252706 (CK) & #333671 (fucongcong) +I don't like to go out when it's dark. 我天黑后不喜欢出门。 CC-BY 2.0 (France) Attribution: tatoeba.org #338633 (nickyeow) & #333762 (fucongcong) +I don't quite understand what he says. 我不太明白他说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #286016 (CK) & #332655 (fucongcong) +I don't really use Facebook that much. 我並沒有花那麼多時間在Facebook上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3059093 (Hybrid) & #5414879 (egg0073) +I don't remember what Tom looked like. 我不記得湯姆長甚麼樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #2315318 (CK) & #6146525 (verdastelo9604) +I don't think I really have a problem. 我不認為我真的有問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #2663045 (CK) & #6119420 (verdastelo9604) +I don't want to buy a newspaper today. 我今天不想买报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #2025848 (CK) & #3289597 (sadhen) +I don't want to hear any more excuses. 我不想再听到其他借口了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31389 (CK) & #792811 (fucongcong) +I don't worry so much about my resume. 我對自己的履歷不那麼在意。 CC-BY 2.0 (France) Attribution: tatoeba.org #541016 (CK) & #8679963 (shou) +I doubt if he'll come to school today. 我懷疑他今天是否會來上學。 CC-BY 2.0 (France) Attribution: tatoeba.org #296618 (CK) & #778758 (Martha) +I finished writing the letter by noon. 我中午前寫完這封信了。 CC-BY 2.0 (France) Attribution: tatoeba.org #259449 (CK) & #781128 (Martha) +I found it difficult to read the book. 我发现读这本书很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #254657 (CK) & #334828 (fucongcong) +I got injured in the traffic accident. 我在這場交通意外中受了傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #254337 (CK) & #802533 (Martha) +I got this vacuum cleaner for nothing. 我免費得到了這個吸塵器。 CC-BY 2.0 (France) Attribution: tatoeba.org #253706 (CK) & #802144 (Martha) +I hate being alone on Valentine's Day. 我讨厌在情人节一人独处。 CC-BY 2.0 (France) Attribution: tatoeba.org #2208682 (CK) & #3289583 (sadhen) +I have a dim memory of my grandmother. 我对祖母的记忆很模糊。 CC-BY 2.0 (France) Attribution: tatoeba.org #259159 (CK) & #2665544 (fenfang557) +I have no idea what I'm going to wear. 我不知道穿甚麼好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5356553 (Hybrid) & #6216629 (verdastelo9604) +I have nothing to do with this matter. 我跟這件事無關。 CC-BY 2.0 (France) Attribution: tatoeba.org #59009 (CK) & #727572 (Martha) +I have numerous books on my bookshelf. 我有大量的书在我的书架上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697745 (shanghainese) & #1695387 (Venki) +I have to change into my work clothes. 我得换工服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887374 (CK) & #8888275 (crescat) +I have to get up quite early tomorrow. 我明天得早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #668541 (Eldad) & #6218476 (yuiyu) +I have two brothers and three sisters. 我有两个兄弟和三个姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #781323 (Shishir) & #784564 (fucongcong) +I haven't done that since high school. 高中毕业之后我就没那样做过了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359469 (CK) & #5091194 (mirrorvan) +I haven't seen you around here before. 我以前在这里没见过你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360289 (CK) & #5863293 (verdastelo9604) +I hope I make a good first impression. 我希望我能留下個好的第一印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #3436751 (CK) & #6560622 (verdastelo9604) +I hope that you give this book a read. 我希望你讀讀這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260084 (FeuDRenais) & #2256380 (cienias) +I just talked to the person in charge. 我刚跟主管人谈过。 CC-BY 2.0 (France) Attribution: tatoeba.org #2373988 (CK) & #5856749 (verdastelo9604) +I know him, but I don't know his name. 我認識他但是我不知道他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #770091 (marloncori) & #770347 (Martha) +I know that some people value my work. 我知道有些人看重我的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #809657 (willhite2) & #810055 (Martha) +I know what it's like to lose someone. 我知道这看起来像是失去了某人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376301 (CK) & #4845102 (pig8322) +I like May the best of all the months. 所有月份中我最喜歡五月。 CC-BY 2.0 (France) Attribution: tatoeba.org #254023 (CK) & #917803 (Martha) +I like dogs, but my sister likes cats. 我喜歡狗,但我姊喜歡貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #257237 (mamat) & #1239330 (tsayng) +I like spring the best of the seasons. 春天是我最喜歡的季節。 CC-BY 2.0 (France) Attribution: tatoeba.org #256805 (CM) & #781108 (Martha) +I like the way she laughs at my jokes. 我喜欢她因我的笑话而欢笑的样子。 CC-BY 2.0 (France) Attribution: tatoeba.org #258035 (CK) & #2241819 (sadhen) +I listened to some records last night. 我昨晚聽了一些唱片。 CC-BY 2.0 (France) Attribution: tatoeba.org #257826 (CK) & #881717 (Martha) +I love the sound of children laughing. 我喜歡孩子們笑的聲音。 CC-BY 2.0 (France) Attribution: tatoeba.org #682051 (Source_VOA) & #900048 (kanaorange) +I need an assistant who speaks French. 我需要一個會說法語的助理。 CC-BY 2.0 (France) Attribution: tatoeba.org #4809265 (CK) & #4809348 (umidake) +I need some medicine to kill the pain. 我需要用药来镇痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #57811 (CK) & #333898 (fucongcong) +I never thought it would come to this. 我从没想过它会变成这样。 CC-BY 2.0 (France) Attribution: tatoeba.org #3727212 (CM) & #5842624 (verdastelo9604) +I once wanted to be an astrophysicist. 我曾經想過當個太空物理學家。 CC-BY 2.0 (France) Attribution: tatoeba.org #1316 (papabear) & #36 (Martha) +I really want to know what's going on. 我真想知道发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4113277 (CK) & #5630422 (verdastelo9604) +I should've chosen a shorter username. 我该用短一点的用户名的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2721268 (CK) & #8936275 (crescat) +I stayed up till very late last night. 我昨晚睡得很晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #257824 (CK) & #1446867 (asosan) +I study French after dinner every day. 我每天吃过晚饭后都会学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451321 (CK) & #2581631 (fenfang557) +I suggest we move to a safer location. 我建議我們去個更安全的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #3127851 (CK) & #6198189 (verdastelo9604) +I think I may have made a big mistake. 我認為我可能已經犯了大錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #3122896 (CK) & #6624691 (verdastelo9604) +I think I've found something of yours. 我認為我找到一些你的東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287263 (CK) & #6091809 (verdastelo9604) +I think Tom might not want to do that. 我认为汤姆可能不想那样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6123509 (CK) & #6307278 (gumblex) +I think his opinion is very important. 我認為他的意見非常重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #403304 (CK) & #889621 (Martha) +I think we should talk about this now. 我认为我们现在就该谈谈这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2408477 (CK) & #5613648 (verdastelo9604) +I think you should eat a ham sandwich. 我认为你该吃火腿三明治。 CC-BY 2.0 (France) Attribution: tatoeba.org #1140144 (CK) & #6047444 (verdastelo9604) +I told them to send me another ticket. 我請他們再寄給我一張票。 CC-BY 2.0 (France) Attribution: tatoeba.org #1313 (Zifre) & #34 (Martha) +I took my temperature every six hours. 我每六小时量一次体温。 CC-BY 2.0 (France) Attribution: tatoeba.org #326483 (CK) & #399889 (fucongcong) +I understand how to solve the problem. 我明白怎么解决问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #476211 (morganlmallory) & #476184 (fucongcong) +I understand how to solve the problem. 我知道怎么解决这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #476211 (morganlmallory) & #5668916 (hzy980512) +I want to go to school and study hard. 我想上学并努力学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #2724550 (Hybrid) & #5925235 (verdastelo9604) +I want to have this letter registered. 我想要用掛號寄這封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #58640 (CK) & #5422708 (egg0073) +I was about to leave when you came in. 你来的时候我刚好要走。 CC-BY 2.0 (France) Attribution: tatoeba.org #257460 (CK) & #8463544 (gumblex) +I was deeply impressed by the scenery. 我被这景色深深迷住了。 CC-BY 2.0 (France) Attribution: tatoeba.org #48577 (CK) & #5551144 (verdastelo9604) +I was in the bath when the phone rang. 在我洗澡的时候,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #482279 (adjusting) & #8777525 (crescat) +I was the last one to turn in my test. 我是最后交的考试卷。 CC-BY 2.0 (France) Attribution: tatoeba.org #6956859 (znc) & #6583580 (mao) +I was very surprised to hear the news. 我听到这个消息很惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #254178 (CK) & #333214 (fucongcong) +I was waiting for something to happen. 我在等事情發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #4481565 (fekundulo) & #6047451 (verdastelo9604) +I was watching TV when the phone rang. 电话响的时候,我在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #3185996 (Joseph) & #464949 (fucongcong) +I wish you had told me the truth then. 但願你那時候就告訴我真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #16807 (CC) & #775851 (Martha) +I wonder if you are as busy as we are. 我担心你會跟我們一樣忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2561672 (CK) & #6903775 (verdastelo9604) +I'd like a nonstop flight to New York. 我想要一个直飞纽约的航班。 CC-BY 2.0 (France) Attribution: tatoeba.org #35884 (CS) & #812246 (fucongcong) +I'd like to finish the work on my own. 我想自己把工作做完。 CC-BY 2.0 (France) Attribution: tatoeba.org #1076555 (Brian255) & #884655 (Tajfun) +I'd like to reserve a room in a hotel. 我想要订房。 CC-BY 2.0 (France) Attribution: tatoeba.org #578780 (langulo) & #794165 (fucongcong) +I'd like to speak with you in private. 我想跟你私下说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539242 (CK) & #5819691 (verdastelo9604) +I'd like to talk about your situation. 我想談談你的情況。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936331 (CK) & #6148374 (verdastelo9604) +I'll be very happy if I can serve you. 能为你服务我会感到非常高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #70939 (CM) & #333897 (fucongcong) +I'll give you a ring tomorrow morning. 明天早上我會打電話給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323441 (CM) & #857967 (Martha) +I'll go with you as far as the bridge. 我会跟着你走到桥那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #18971 (CK) & #5883319 (verdastelo9604) +I'll stay with Tom until you get back. 你回来之前我会跟汤姆在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017087 (CK) & #5632419 (verdastelo9604) +I'm almost finished reading this book. 我就要读完这本书了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2998914 (CK) & #5845658 (verdastelo9604) +I'm amazed at your fluency in English. 你流利的英语让我很吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #17315 (dawnbreaksopen) & #2208990 (sadhen) +I'm developing an Android application. 我正在开发一个安卓应用。 CC-BY 2.0 (France) Attribution: tatoeba.org #992448 (sysko) & #1776771 (sadhen) +I'm fed up with eating in restaurants. 我受夠了在餐館吃飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #321711 (CK) & #801421 (Martha) +I'm getting farsighted as I get older. 當我年長時,我漸漸變得有遠見。 CC-BY 2.0 (France) Attribution: tatoeba.org #326392 (CK) & #801395 (Martha) +I'm going to drop in on her next week. 下禮拜我要去拜訪她一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #325102 (CK) & #1221392 (tsayng) +I'm just playing the devil's advocate. 我在给魔鬼当辩护士。 CC-BY 2.0 (France) Attribution: tatoeba.org #2050654 (CK) & #5663585 (verdastelo9604) +I'm reading a novel by Sidney Sheldon. 我在讀一本西德尼謝爾頓寫的小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #253882 (CK) & #890687 (Martha) +I'm sorry for the delay in responding. 我很抱歉這麼遲才回復。 CC-BY 2.0 (France) Attribution: tatoeba.org #320367 (CK) & #801381 (Martha) +I'm sorry, I forgot to do my homework. 对不起,我忘了作业这回事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #509618 (blay_paul) & #5100272 (mirrorvan) +I'm sorry, I left my homework at home. 抱歉,我把作业落在家里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3642454 (CK) & #8685550 (crescat) +I'm sorry, but it's just not possible. 我很抱歉, 但它就是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #28666 (CK) & #778506 (Martha) +I'm sorry. I have another appointment. 很抱歉,我还有另一个约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #51484 (CK) & #333682 (fucongcong) +I'm still waiting for Tom to get here. 我还在等湯姆來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3512565 (CK) & #6923183 (verdastelo9604) +I'm tired of living this kind of life. 我厌倦了这种生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #480224 (minshirui) & #408254 (fucongcong) +I've discovered something interesting. 我發現了一些有趣的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359439 (CK) & #5364041 (egg0073) +I've got something I want to show you. 我有东西想给你看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #3222634 (Hybrid) & #8936287 (crescat) +I've heard that name somewhere before. 我在别处听过那个名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952916 (CK) & #5694511 (verdastelo9604) +If Tom can't tell me, then no one can. 如果湯姆不能告訴我,就沒人能了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3202640 (CK) & #6111781 (verdastelo9604) +If you do your best, you will succeed. 如果你盡力而為, 你就會成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #244087 (CK) & #779067 (Martha) +If you don't behave, Santa won't come. 你一旦不做个乖孩子,圣诞老人就不会来噢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4525582 (CK) & #5100254 (mirrorvan) +In case of emergency, call the police. 在緊急情況下,打電話報警。 CC-BY 2.0 (France) Attribution: tatoeba.org #18804 (CK) & #797093 (Martha) +Is there any chance that he'll resign? 他有可能辭職嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #400137 (CK) & #891708 (Martha) +It is difficult to speak Chinese well. 很難把中文說得好。 CC-BY 2.0 (France) Attribution: tatoeba.org #277508 (CM) & #798110 (Martha) +It is stupid of you to believe in him. 你相信他真是太愚蠢了。 CC-BY 2.0 (France) Attribution: tatoeba.org #307851 (CM) & #466211 (fucongcong) +It is two miles from here to the park. 從這裡到公園距離兩英里。 CC-BY 2.0 (France) Attribution: tatoeba.org #62086 (CK) & #873405 (Martha) +It is very hot in the summer in Japan. 日本的夏天很热。 CC-BY 2.0 (France) Attribution: tatoeba.org #1588669 (CM) & #2030729 (ydcok) +It looks like Tom has a crush on Mary. 看来汤姆热恋着玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539138 (CK) & #5907501 (verdastelo9604) +It seems less crowded during the week. 平日似乎比較不擁擠。 CC-BY 2.0 (France) Attribution: tatoeba.org #320165 (CK) & #796960 (Martha) +It's against the law to carry weapons. 攜帶武器是違法的。 CC-BY 2.0 (France) Attribution: tatoeba.org #319450 (CK) & #798119 (Martha) +It's because of you that we were late. 因为你我们才迟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #954073 (CK) & #5613617 (verdastelo9604) +It's been raining since early morning. 從清晨開始一直下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #274095 (CK) & #801483 (Martha) +It's been ten years since we last met. 我們離上次見面有十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6036 (Zifre) & #6150036 (verdastelo9604) +It's getting cloudy. It may rain soon. 雲愈來愈多,可能快下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #62967 (CK) & #797108 (Martha) +It's no use your begging him for help. 你求他帮忙没有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #71323 (CM) & #5832172 (verdastelo9604) +It's ten minutes' walk to the station. 步行到車站要花十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #25982 (CK) & #891026 (Martha) +Kyoto depends on the tourist industry. 京都依賴旅遊業。 CC-BY 2.0 (France) Attribution: tatoeba.org #19300 (ludoviko) & #798173 (Martha) +Let's just enjoy this peace and quiet. 让我们享受这平静和安宁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2007268 (CK) & #5574854 (verdastelo9604) +Let's not waste time arguing about it. 我们别再浪费时间争论了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3281705 (CK) & #5762992 (verdastelo9604) +Life today is fast-moving and complex. 今日的生活是迅息萬變和複雜的。 CC-BY 2.0 (France) Attribution: tatoeba.org #242609 (CK) & #781094 (Martha) +Lincoln was elected President in 1860. 林肯在1860年當選為美國總統。 CC-BY 2.0 (France) Attribution: tatoeba.org #29654 (CK) & #861067 (Martha) +Look at the large building over there. 看那边那幢高楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #240631 (CK) & #346806 (fucongcong) +Man is the only animal that can speak. 人是唯一会说话的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #270275 (CK) & #375372 (fucongcong) +Marriage is the main cause of divorce. 婚姻是造成離婚的主因。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962717 (JSakuragi) & #3718950 (egg0073) +Mathematics is an easy subject for me. 數學對我來說是一個容易的科目。 CC-BY 2.0 (France) Attribution: tatoeba.org #271012 (Zifre) & #797136 (Martha) +My baby began crying, asking for milk. 我的宝宝开始哭了,他想要吃奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #272305 (CM) & #481201 (fucongcong) +My father caught three fish yesterday. 昨天我爸爸抓到了3条鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #318979 (CK) & #336643 (fucongcong) +My father got married in his twenties. 我父親在他二十多歲時結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251623 (CK) & #802501 (Martha) +My father has been dead for ten years. 我爸爸去世有10年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251607 (CK) & #333287 (fucongcong) +My father has been to Australia twice. 我父親曾經去過澳洲兩次。 CC-BY 2.0 (France) Attribution: tatoeba.org #318969 (CK) & #804517 (Martha) +My mother gets up early every morning. 我媽媽每天早上早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #251859 (CK) & #804991 (Martha) +My mother grows flowers in her garden. 我的母親在她的花園裡種花。 CC-BY 2.0 (France) Attribution: tatoeba.org #251851 (CK) & #802021 (Martha) +My older sister plays the guitar well. 我姐姐吉他弹得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #245570 (CK) & #4265136 (notabene) +My premonition turned out to be right. 我的预感被证明是正确的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1311911 (CK) & #1501740 (fenfang557) +My uncle made me serve as interpreter. 我叔叔讓我擔任翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #266653 (CK) & #801959 (Martha) +My uncle made me serve as interpreter. 我舅舅讓我擔任翻譯。 CC-BY 2.0 (France) Attribution: tatoeba.org #266653 (CK) & #801960 (Martha) +My vision is getting worse these days. 这些天我的视力正在变差。 CC-BY 2.0 (France) Attribution: tatoeba.org #243855 (CK) & #333217 (fucongcong) +My wife is afraid to drive my new car. 我的妻子害怕开我的新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #4099433 (CK) & #4099646 (maple) +Next time it will be my turn to drive. 下次该轮到我开车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1723926 (belgavox) & #8877852 (crescat) +No matter what happens, I am prepared. 不管發生什麼事,我都準備好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40756 (CK) & #801360 (Martha) +One hundred years is called a century. 一百年被叫做一个世纪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697713 (shanghainese) & #1695405 (Venki) +One hundred years is called a century. 一百年称为一个世纪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697713 (shanghainese) & #1695420 (Venki) +Only four horses competed in the race. 只有四匹馬參加了比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #49721 (CK) & #801324 (Martha) +Only one person survived the accident. 只有一人倖免於難。 CC-BY 2.0 (France) Attribution: tatoeba.org #47182 (Archibald) & #796958 (Martha) +People who break the law are punished. 觸犯法律的人受到懲罰。 CC-BY 2.0 (France) Attribution: tatoeba.org #321023 (CM) & #775468 (Martha) +Perhaps it will rain in the afternoon. 也許下午會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #40585 (CK) & #801444 (Martha) +Perhaps we could get a drink sometime. 要不我们找时间喝一顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013267 (CK) & #5576826 (verdastelo9604) +Please find a solution to the problem. 请找到问题的解决方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #632066 (Scott) & #791430 (fucongcong) +Please give me something hot to drink. 請給我一些熱的東西喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #25044 (CK) & #894055 (Martha) +Please give me your permanent address. 請給我你的永久地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #16859 (CK) & #859134 (Martha) +Please make three copies of each page. 请把每一页复印三份。 CC-BY 2.0 (France) Attribution: tatoeba.org #73208 (CK) & #5613674 (verdastelo9604) +Queen Elizabeth I passed away in 1603. 女王伊麗莎白一世於1603年去世。 CC-BY 2.0 (France) Attribution: tatoeba.org #65257 (CK) & #801420 (Martha) +Recently I moved to another apartment. 最近我搬到另一棟公寓。 CC-BY 2.0 (France) Attribution: tatoeba.org #243755 (CK) & #801398 (Martha) +Sentences begin with a capital letter. 句子以一個大寫字母開頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #320027 (CK) & #859722 (Martha) +She always takes care of her children. 她毫無間斷地照顧自己的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #310428 (CK) & #1243806 (tsayng) +She called up her mother on the phone. 她给她妈妈打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #310029 (CK) & #5581665 (verdastelo9604) +She came here as soon as she heard it. 她一來這裡就聽到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388052 (CK) & #834949 (Martha) +She complained that my salary was low. 她抱怨我的薪水很低。 CC-BY 2.0 (France) Attribution: tatoeba.org #388594 (CK) & #890989 (Martha) +She cut up the cloth to make bandages. 她裁布做绷带。 CC-BY 2.0 (France) Attribution: tatoeba.org #316967 (CK) & #5617168 (verdastelo9604) +She did nothing but cry all the while. 她一直哭哭啼啼。 CC-BY 2.0 (France) Attribution: tatoeba.org #48864 (CM) & #907929 (Martha) +She gave the children two apples each. 她給孩子們每人兩個蘋果。 CC-BY 2.0 (France) Attribution: tatoeba.org #312298 (CK) & #805084 (Martha) +She gets up the earliest in my family. 她是我家最早起床的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #314300 (CK) & #5405457 (egg0073) +She has a strong objection to my plan. 她強烈反對我的計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #314313 (CK) & #5405500 (egg0073) +She has very nice-looking handwriting. 她的筆跡很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #395536 (CK) & #819410 (Martha) +She is always losing her handkerchief. 她老是弄丢她的手帕。 CC-BY 2.0 (France) Attribution: tatoeba.org #719762 (eastasiastudent) & #719764 (egg0073) +She is collecting material for a book. 她为一本书收集材料。 CC-BY 2.0 (France) Attribution: tatoeba.org #317035 (CK) & #333927 (fucongcong) +She is looking for her missing wallet. 她正在找她不見了的皮夾。 CC-BY 2.0 (France) Attribution: tatoeba.org #311862 (CK) & #778493 (Martha) +She put her CDs in a row on the shelf. 她把她的CD在書架上排成一排。 CC-BY 2.0 (France) Attribution: tatoeba.org #310226 (CM) & #897290 (Martha) +She took care of the poor little bird. 她照顾可怜的小鸟。 CC-BY 2.0 (France) Attribution: tatoeba.org #311093 (CK) & #5613613 (verdastelo9604) +She took the book back to the library. 她把书带回了图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #270692 (CK) & #1793796 (sadhen) +She was brought up by her grandmother. 她是由她的祖母带大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #310591 (furagwa) & #397106 (fucongcong) +She went either to London or to Paris. 她不是去了伦敦就是巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #312445 (CK) & #863913 (kooler) +She'll almost certainly pass the test. 她幾乎確定會通過測驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #388307 (CK) & #850603 (Martha) +She's busy now and can't speak to you. 她现在忙,不能跟你说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345497 (CK) & #1397358 (mtdot) +She's busy now and can't speak to you. 她現在忙,沒有辦法跟您說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345497 (CK) & #1923113 (egg0073) +She's busy now and can't speak to you. 她現在忙,沒有辦法跟你們說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345497 (CK) & #1923114 (egg0073) +Since he has ambitions, he works hard. 因為他有野心,他很努力地工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #476492 (CK) & #908343 (Martha) +Smoking is not permitted on the train. 不允許在火車上吸煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #794654 (CK) & #798337 (Martha) +Some of them seem to be too difficult. 其中一些似乎太难了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277458 (CK) & #1423331 (sadhen) +Someone has taken my shoes by mistake. 有人穿错了我的鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #276153 (CK) & #335223 (fucongcong) +Someone has taken my shoes by mistake. 有人拿错了我的鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #276153 (CK) & #427646 (fucongcong) +Someone has walked off with my pencil. 有人偷走了我的鉛筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #276179 (CK) & #900259 (Martha) +Something is wrong with my typewriter. 我的打字機好像有什麼問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #250346 (CK) & #5856918 (xjjAstrus) +Sometimes adults behave like children. 有时候成人表现得像儿童。 CC-BY 2.0 (France) Attribution: tatoeba.org #1637161 (Spamster) & #5581726 (verdastelo9604) +Sooner or later his luck will run out. 遲早他的運氣會用完。 CC-BY 2.0 (France) Attribution: tatoeba.org #1622613 (jsk) & #765548 (Martha) +Sooner or later, we'll know the truth. 我們遲早會知道真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #541992 (CK) & #896514 (Martha) +Sorry, but I can't hear you very well. 對不起,但我聽不清你說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2698827 (WestofEden) & #6333816 (verdastelo9604) +Spanish is spoken in twenty countries. 有二十個國家說西班牙語。 CC-BY 2.0 (France) Attribution: tatoeba.org #462474 (lukaszpp) & #6624697 (verdastelo9604) +Speak clearly and make yourself heard. 講清楚並大聲地讓別人聽到你說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #461955 (blay_paul) & #798249 (Martha) +Talking in the library is not allowed. 不准在圖書館裡談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #270676 (brauliobezerra) & #798325 (Martha) +Tangerines contain a lot of vitamin C. 柳丁含有大量的維生素 C。 CC-BY 2.0 (France) Attribution: tatoeba.org #1717722 (sysko) & #891131 (Martha) +Tennis is very popular among students. 网球在学生中非常流行。 CC-BY 2.0 (France) Attribution: tatoeba.org #39406 (Eldad) & #415644 (fucongcong) +That's my younger sister's photograph. 那是我妹妹的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #469178 (CK) & #838542 (Martha) +That's the man whose kids are so nice. 那个男人,就是他的孩子很友好的那个. CC-BY 2.0 (France) Attribution: tatoeba.org #408339 (Liface) & #333458 (fucongcong) +The accident almost cost him his life. 事故差点让他丢了性命。 CC-BY 2.0 (France) Attribution: tatoeba.org #47201 (kebukebu) & #347426 (fucongcong) +The admission is ten dollars a person. 入場費一個人10美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #27665 (CK) & #900211 (Martha) +The admission is ten dollars a person. 入會費一個人十美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #27665 (CK) & #900212 (Martha) +The baby seemed to be in a deep sleep. 那個嬰兒似乎在熟睡中。 CC-BY 2.0 (France) Attribution: tatoeba.org #1205590 (CK) & #8388809 (wangchou) +The boat is going against the current. 船逆流航行。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264382 (sharptoothed) & #5992378 (verdastelo9604) +The bodyguard was wearing an earpiece. 保镖戴着耳机。 CC-BY 2.0 (France) Attribution: tatoeba.org #8533488 (Amastan) & #8780272 (crescat) +The boy went to bed with his socks on. 男孩穿着袜子就上床睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #46361 (CK) & #1314484 (vicch) +The buildings shook in the earthquake. 建筑物在地震中摇晃。 CC-BY 2.0 (France) Attribution: tatoeba.org #277194 (CK) & #332668 (fucongcong) +The carpenter brought his tools along. 木匠带著他的工具。 CC-BY 2.0 (France) Attribution: tatoeba.org #3071552 (sharptoothed) & #6093383 (verdastelo9604) +The ceremony will take place tomorrow. 明天举行典礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #48757 (CK) & #528020 (biglion) +The child missed his mother very much. 這孩子非常想念他的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #245985 (CK) & #872131 (Martha) +The children were playing in the dirt. 孩子们在尘土里游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #245773 (CK) & #1397372 (mtdot) +The curtains make this room beautiful. 窗帘是房间变漂亮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63838 (CK) & #1372490 (sadhen) +The eight o'clock bus was early today. 8点那班车今天早到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63128 (CK) & #334210 (fucongcong) +The elevator seems to be out of order. 电梯好像故障了。 CC-BY 2.0 (France) Attribution: tatoeba.org #50620 (Tximist) & #791432 (fucongcong) +The fastest way to travel is by plane. 旅行最快的方式是乘飞机。 CC-BY 2.0 (France) Attribution: tatoeba.org #387371 (Mouseneb) & #333363 (fucongcong) +The importance of music is underrated. 音乐的重要性被低估了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25424 (CK) & #8792025 (slo_oth) +The incident was etched in his memory. 这件事他铭记于心。 CC-BY 2.0 (France) Attribution: tatoeba.org #46675 (CM) & #332564 (fucongcong) +The island is a paradise for children. 这个岛是孩子们的天堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #44738 (CM) & #2218911 (sadhen) +The life span of a butterfly is short. 蝴蝶的寿命短。 CC-BY 2.0 (France) Attribution: tatoeba.org #1874077 (CK) & #5863256 (verdastelo9604) +The man you saw yesterday is my uncle. 你昨天看到的那个男人是我叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #387552 (Mouseneb) & #333456 (fucongcong) +The men's room is on the second floor. 男厕所在二楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2615578 (CK) & #8715880 (crescat) +The number of cars is on the increase. 汽车的数量在增长。 CC-BY 2.0 (France) Attribution: tatoeba.org #265515 (CM) & #799254 (fucongcong) +The path zigzagged up the steep slope. 這條小路沿著陡峭的斜坡蜿蜒而上。 CC-BY 2.0 (France) Attribution: tatoeba.org #327880 (CK) & #876188 (Martha) +The path zigzagged up the steep slope. 蜿蜒的小路爬上了陡坡。 CC-BY 2.0 (France) Attribution: tatoeba.org #327880 (CK) & #876341 (Martha) +The radio didn't mention the incident. 電台沒有提到這個事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #7803013 (sharris123) & #766812 (Martha) +The ship was flying the American flag. 這艘船掛著美國國旗。 CC-BY 2.0 (France) Attribution: tatoeba.org #45708 (CM) & #772057 (Martha) +The shopping center is one mile ahead. 這個購物中心在前面一英里遠的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #506147 (CK) & #907545 (Martha) +The situation is worse than I thought. 情況比我想的還壞。 CC-BY 2.0 (France) Attribution: tatoeba.org #2460471 (Objectivesea) & #6197294 (verdastelo9604) +The soldiers were guarding the bridge. 士兵們守衛著這座橋。 CC-BY 2.0 (France) Attribution: tatoeba.org #320133 (CK) & #866155 (Martha) +The town was defended by a large army. 城市由一支大军守卫。 CC-BY 2.0 (France) Attribution: tatoeba.org #21773 (CK) & #334380 (fucongcong) +The typhoon caused the river to flood. 颱風造成了河水氾濫。 CC-BY 2.0 (France) Attribution: tatoeba.org #275431 (CK) & #905876 (Martha) +The whole country was covered in snow. 整个国家被大雪覆盖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211543 (alec) & #334033 (fucongcong) +There are a lot of people in the park. 公园里有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1109697 (Leedihuzur) & #332847 (fucongcong) +There are many sights to see in Kyoto. 在京都,有很多的景点值得一看。 CC-BY 2.0 (France) Attribution: tatoeba.org #19326 (CK) & #784011 (fucongcong) +There is a kite flying above the tree. 有一只风筝在树上。 CC-BY 2.0 (France) Attribution: tatoeba.org #276071 (CM) & #8709414 (slo_oth) +There is little chance of his winning. 他贏的機會極小。 CC-BY 2.0 (France) Attribution: tatoeba.org #283864 (CK) & #900253 (Martha) +There was a big earthquake last night. 昨晚有一場大地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #244785 (CK) & #907540 (Martha) +There was a big gold star on the door. 在門上有一個大大的金色星星。 CC-BY 2.0 (France) Attribution: tatoeba.org #39082 (CM) & #781491 (Martha) +There were many people at the concert. 音乐会上有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #54845 (CK) & #334653 (fucongcong) +There were many people at the concert. 演唱會上有許多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #54845 (CK) & #896635 (Martha) +There were several rooms still vacant. 还有几间空房。 CC-BY 2.0 (France) Attribution: tatoeba.org #32625 (CM) & #5900388 (verdastelo9604) +There weren't any roses in the garden. 花園裡沒有任何玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #44966 (CK) & #798301 (Martha) +There's enough time for a quick snack. 有足夠的時間很快地吃一下點心。 CC-BY 2.0 (France) Attribution: tatoeba.org #19708 (Swift) & #797132 (Martha) +There's no membership fee for joining. 參加不用會員費。 CC-BY 2.0 (France) Attribution: tatoeba.org #245037 (CK) & #797123 (Martha) +There's no telling what he'll do next. 没有人知道他接下来会干什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #700464 (darinmex) & #805611 (fucongcong) +There's no use crying over spilt milk. 為打翻的牛奶而哭泣是沒用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #51897 (blay_paul) & #806253 (Martha) +There's nothing I wouldn't do for Tom. 没有我不会给汤姆做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287253 (CK) & #5670756 (verdastelo9604) +They made their way through the crowd. 他們從人群中擠過去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306412 (CK) & #795854 (Martha) +They made up and became friends again. 他們和解了,並再次成為了朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #307148 (CK) & #795812 (Martha) +They say that she was born in Germany. 他们说她是在德国出生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #311674 (saeb) & #333190 (fucongcong) +This bus will take you to the airport. 这辆公交车能载你去机场。 CC-BY 2.0 (France) Attribution: tatoeba.org #60690 (CK) & #8463560 (gumblex) +This is really difficult to deal with. 這件事真難處理。 CC-BY 2.0 (France) Attribution: tatoeba.org #7830335 (sharris123) & #6395810 (xjjAstrus) +This is the best restaurant I know of. 这是我知道的最好的餐馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #789175 (Eldad) & #792854 (fucongcong) +This is the lady who wants to see you. 這位就是誰想見你的夫人。 CC-BY 2.0 (France) Attribution: tatoeba.org #826042 (odiernod) & #827578 (Martha) +This is the worst book I've ever read. 这是我读过的书里面写的最差的一本了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55714 (CK) & #1430235 (sadhen) +This little girl let the birds escape. 這個小女孩讓小鳥脫逃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1264962 (yifen238) & #761974 (Martha) +This medicine will decrease your pain. 这种药会减轻你的疼痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #56562 (CK) & #8709410 (slo_oth) +This novel is difficult to understand. 这部小说很难读懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #58469 (CK) & #478839 (biglion) +This place gives me a really bad vibe. 这地方给我一个很差的印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #592488 (darinmex) & #819693 (fucongcong) +This rule does not apply in all cases. 这条规则不是任何情况下都奏效的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60347 (Dejo) & #1424167 (sadhen) +To my astonishment, my money was gone. 令我惊讶的是,我的钱没了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18878 (Eldad) & #5691264 (verdastelo9604) +To my surprise, the door was unlocked. 令我驚訝的是,門沒上鎖。 CC-BY 2.0 (France) Attribution: tatoeba.org #18906 (Swift) & #886534 (Martha) +Tom admitted to spilling the red wine. Tom承认了他摔了红酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #680087 (Source_VOA) & #4845136 (pig8322) +Tom and Mary couldn't help me do that. 湯姆和瑪麗不能幫我去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6123130 (CK) & #6624607 (verdastelo9604) +Tom and Mary own a small organic farm. 汤姆和玛丽拥有一个小型的有机农场。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085372 (Hybrid) & #5085446 (Jubilee11) +Tom and Mary were both born in Boston. 湯姆和瑪麗都生在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641142 (CK) & #6094831 (verdastelo9604) +Tom asked Mary to buy a gift for John. 汤姆叫玛丽买一份礼物给约翰。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955941 (CK) & #3289567 (sadhen) +Tom can't tell Mary his real feelings. 汤姆不能把他的真实感受告诉玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029476 (CK) & #1397143 (mtdot) +Tom didn't actually see what happened. 湯姆沒有真正看見發生了甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956456 (CK) & #6095964 (verdastelo9604) +Tom didn't know what he'd say to Mary. 湯姆不知道他要對瑪麗說甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822807 (CK) & #6923197 (verdastelo9604) +Tom doesn't know how to tie his shoes. 汤姆不知道怎么系自己的鞋带。 CC-BY 2.0 (France) Attribution: tatoeba.org #2411688 (CK) & #3338939 (sadhen) +Tom has many friends living in Boston. 湯姆有很多朋友住在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025355 (CK) & #4805775 (umidake) +Tom has plenty of friends to help him. 汤姆有很多朋友去帮助他 CC-BY 2.0 (France) Attribution: tatoeba.org #6249417 (CK) & #8743611 (cxpadonis) +Tom is accustomed to getting up early. 汤姆习惯早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #3426261 (CK) & #5091257 (mirrorvan) +Tom is probably still studying French. 汤姆可能还在学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3428469 (CK) & #5576818 (verdastelo9604) +Tom is three years older than Mary is. 汤姆比玛丽大三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028481 (CK) & #1311377 (vicch) +Tom made his servants eat in the dark. 汤姆让他的仆人们在黑暗下进餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024486 (CK) & #4844827 (sadhen) +Tom never did what we asked him to do. 我们叫汤姆做什么,他从来不做。 CC-BY 2.0 (France) Attribution: tatoeba.org #4495770 (CK) & #5091055 (mirrorvan) +Tom paid me back the money he owed me. 汤姆把欠我的钱还给我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586582 (CK) & #8589654 (tianblr) +Tom passed away on October 20th, 2013. 汤姆逝世于2013年10月20日。 CC-BY 2.0 (France) Attribution: tatoeba.org #6223724 (CK) & #6307291 (gumblex) +Tom should've discussed that with you. 汤姆应该跟你讨论过那事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4620255 (CK) & #4620831 (Yashanti) +Tom spoke about the problem with Mary. 汤姆跟玛丽说了这问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1104743 (jackloring) & #5945139 (verdastelo9604) +Tom started running towards the house. 湯姆開始向房子跑去。 CC-BY 2.0 (France) Attribution: tatoeba.org #3498722 (CK) & #6145399 (verdastelo9604) +Tom stopped me from entering the bank. 汤姆阻止我进银行。 CC-BY 2.0 (France) Attribution: tatoeba.org #4062889 (CK) & #5993951 (verdastelo9604) +Tom was the only one who was punished. 湯姆是唯一受罰的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821321 (CK) & #6624601 (verdastelo9604) +Tom waved at Mary from the helicopter. 湯姆在直升機上向瑪麗揮手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2641072 (CK) & #8215740 (verdastelo9604) +Tom will probably never be late again. 湯姆可能再也不遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712740 (CK) & #6064615 (verdastelo9604) +Tom wished he could understand French. 汤姆希望他能懂法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4015806 (CK) & #5842637 (verdastelo9604) +Tom's cooking was actually not so bad. 湯姆的廚藝其實不那麼糟糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1975754 (CK) & #8679972 (shou) +Two people can enter with this ticket. 兩個人可以用這張票入場。 CC-BY 2.0 (France) Attribution: tatoeba.org #418486 (CK) & #907244 (Martha) +Wait until the light changes to green. 等到燈變為綠色。 CC-BY 2.0 (France) Attribution: tatoeba.org #268843 (CK) & #798046 (Martha) +Walk faster, or you'll miss the train. 走快一點,不然你會錯過火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #30404 (CM) & #898944 (kanaorange) +Water freezes at 0 degrees Centigrade. 水在攝氏0度時結成冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #270776 (CK) & #875046 (Martha) +Water freezes at zero degrees Celsius. 水在攝氏零度時結冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #681014 (Source_VOA) & #899962 (kanaorange) +We enjoyed watching the baseball game. 我們喜歡看棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #248163 (CK) & #872386 (Martha) +We got involved in a traffic accident. 我們被捲入了一場交通事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #22995 (CK) & #802508 (Martha) +We had a slight difference of opinion. 我們的看法有一點不同。 CC-BY 2.0 (France) Attribution: tatoeba.org #23489 (CK) & #796060 (Martha) +We had an unpleasant experience there. 我們在那裡有一個不愉快的經歷。 CC-BY 2.0 (France) Attribution: tatoeba.org #262527 (CK) & #796043 (Martha) +We have ample time to catch our train. 我们有充裕的时间赶上火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #326164 (Dejo) & #1416280 (sadhen) +We have to do a great deal of reading. 我们要读很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #23150 (CK) & #5571079 (verdastelo9604) +We lost sight of the man in the crowd. 在人群中,我们失去了那个男人的踪影。 CC-BY 2.0 (France) Attribution: tatoeba.org #28786 (CK) & #336930 (fucongcong) +We managed to get some foreign stamps. 我們設法得到一些外國的郵票。 CC-BY 2.0 (France) Attribution: tatoeba.org #248469 (CK) & #795229 (Martha) +We must keep up the family traditions. 我们必须保持家庭传统。 CC-BY 2.0 (France) Attribution: tatoeba.org #248482 (CK) & #332777 (fucongcong) +We sent out the invitations yesterday. 我们昨天发出了邀请。 CC-BY 2.0 (France) Attribution: tatoeba.org #507768 (FeuDRenais) & #334861 (fucongcong) +We took strong measures to prevent it. 我们采取了强有力的预防措施。 CC-BY 2.0 (France) Attribution: tatoeba.org #248182 (CK) & #332769 (fucongcong) +We took strong measures to prevent it. 我们使用了强大的措施来预防。 CC-BY 2.0 (France) Attribution: tatoeba.org #248182 (CK) & #334902 (fucongcong) +We waited in the park for a long time. 我们在公园等了好久。 CC-BY 2.0 (France) Attribution: tatoeba.org #263155 (Dejo) & #4265095 (notabene) +We were in danger of losing our lives. 我们曾有失去生命的危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #248954 (CK) & #5926171 (verdastelo9604) +We're having an office party tomorrow. 我們明天有個辦公室派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493569 (CK) & #4504450 (egg0073) +What are we having for dinner tonight? 今天晚饭吃什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4704217 (CK) & #5100130 (mirrorvan) +What do you call this bird in English? 这鸟你们用英语怎么称呼? CC-BY 2.0 (France) Attribution: tatoeba.org #26374 (CK) & #334619 (fucongcong) +What do you say to dining out tonight? 我们今晚出去吃饭,你说怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #243406 (CM) & #334149 (fucongcong) +What do you think Tom's waist size is? 你认为汤姆的腰围是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1140810 (CK) & #2027919 (sadhen) +What happened? The car's slowing down. 發生了什麼事?車子慢下來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38791 (CM) & #876222 (Martha) +What is the theme of his latest novel? 他最后一本小说的主题是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #285210 (Eldad) & #846795 (fucongcong) +What should they do in this situation? 在这种情况下,他们该做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #60417 (CK) & #336869 (fucongcong) +What time did you get up this morning? 你今天几点起的床? CC-BY 2.0 (France) Attribution: tatoeba.org #69415 (mamat) & #7771967 (jiangche) +What time will you get to the station? 你几点会到车站? CC-BY 2.0 (France) Attribution: tatoeba.org #16252 (CK) & #2007057 (sadhen) +What were you and Tom doing yesterday? 你和汤姆昨天做了什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3402517 (CK) & #5993950 (verdastelo9604) +What would you like to eat for dinner? 你想吃什麼作晚餐? CC-BY 2.0 (France) Attribution: tatoeba.org #5325375 (csmjj) & #1223790 (tsayng) +What'll you be doing over the weekend? 你整個週末會做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #419081 (CK) & #907247 (Martha) +What's it like being Tom's girlfriend? 做汤姆的女朋友怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #1886699 (CK) & #5670785 (verdastelo9604) +What's the problem with your computer? 你的电脑有什么问题? CC-BY 2.0 (France) Attribution: tatoeba.org #2663022 (CK) & #5842674 (verdastelo9604) +What's the tallest mountain in Europe? 请问在欧洲最高的山是哪儿呢? CC-BY 2.0 (France) Attribution: tatoeba.org #7735667 (CK) & #8690332 (crescat) +What's your favorite home-cooked food? 你最喜歡的家常菜是什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #906777 (CK) & #5548487 (egg0073) +What's your favorite item of clothing? 你最喜欢哪类的衣服? CC-BY 2.0 (France) Attribution: tatoeba.org #906790 (CK) & #2002962 (sunnywqing) +Where can I go to get a map of Europe? 去哪里可以买到欧洲的地图? CC-BY 2.0 (France) Attribution: tatoeba.org #1450196 (CK) & #3783091 (Debbie_Linder) +Where did you have your picture taken? 你从哪里照的相? CC-BY 2.0 (France) Attribution: tatoeba.org #38166 (CK) & #5715135 (verdastelo9604) +Where do the airport buses leave from? 机场大巴从哪里出发? CC-BY 2.0 (France) Attribution: tatoeba.org #65393 (brauliobezerra) & #746043 (fucongcong) +Which do you prefer, spring or autumn? 春天和秋天,你更喜欢哪个? CC-BY 2.0 (France) Attribution: tatoeba.org #266914 (CK) & #335123 (fucongcong) +Who are your most interesting friends? 你最有趣的朋友是誰? CC-BY 2.0 (France) Attribution: tatoeba.org #1477131 (weihaiping) & #839099 (Martha) +Who is that woman holding the flowers? 那个拿着花的女人是谁? CC-BY 2.0 (France) Attribution: tatoeba.org #289634 (CK) & #811040 (fucongcong) +Why did you leave the class yesterday? 您昨天为什么离开教室? CC-BY 2.0 (France) Attribution: tatoeba.org #531766 (FeuDRenais) & #471334 (fucongcong) +Why do you let Tom treat you that way? 你為甚麼讓湯姆那麼對待你? CC-BY 2.0 (France) Attribution: tatoeba.org #5825336 (CK) & #6318546 (verdastelo9604) +World War II lasted from 1939 to 1945. 第二次世界大战从1939年持续到1945年。 CC-BY 2.0 (France) Attribution: tatoeba.org #7941105 (CK) & #8688144 (slo_oth) +Would you leave the door open, please? 請你讓門開著好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #775998 (CK) & #777017 (Martha) +Would you like some of those pictures? 你想要那些照片中的一些嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #55256 (CM) & #780045 (Martha) +Would you like some sugar in your tea? 红茶里要加糖吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1105358 (CM) & #8891565 (crescat) +Would you like to know how I did that? 你想知道我怎么做到的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3123386 (CK) & #5865535 (verdastelo9604) +Yesterday was my seventeenth birthday. 昨天是我17岁生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #244516 (CK) & #333242 (fucongcong) +You are not authorized to enter there. 你无权进入那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162140 (FeuDRenais) & #2161712 (sadhen) +You can buy stamps at any post office. 你在任何一家邮局都能买到邮票。 CC-BY 2.0 (France) Attribution: tatoeba.org #272462 (CK) & #1438378 (asosan) +You can see a lot of stars in the sky. 你能看到天空中的繁星。 CC-BY 2.0 (France) Attribution: tatoeba.org #18331 (CK) & #1878288 (sadhen) +You can stay here till the snow stops. 你可以在這裡等到雪停。 CC-BY 2.0 (France) Attribution: tatoeba.org #272537 (CK) & #5382894 (egg0073) +You can't blame Tom for getting angry. 你不能怪汤姆生气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951350 (CK) & #8692460 (slo_oth) +You didn't tell me you worked for Tom. 你沒告訴我你為湯姆工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #3202558 (CK) & #6151306 (verdastelo9604) +You do your part and I'll do the rest. 你做你的部份, 其他的我來做。 CC-BY 2.0 (France) Attribution: tatoeba.org #16190 (Swift) & #775750 (Martha) +You don't have to take an examination. 你不需要考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #69289 (CK) & #5581609 (verdastelo9604) +You look just like your older brother. 你看起来很像你的哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396428 (CK) & #2030813 (sadhen) +You look just like your older brother. 你和你哥哥长得一模一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396428 (CK) & #8850438 (morningstar) +You might want to discuss it with Tom. 你或许想和汤姆讨论一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2025958 (CK) & #3289560 (sadhen) +You must always keep your hands clean. 你应该一直让手保持干净。 CC-BY 2.0 (France) Attribution: tatoeba.org #16847 (CK) & #476539 (fucongcong) +You must always keep your hands clean. 您应该一直让手保持干净。 CC-BY 2.0 (France) Attribution: tatoeba.org #16847 (CK) & #476540 (fucongcong) +You only started this job an hour ago. 你仅仅是一个小时前才开始这份工作的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16840 (Dejo) & #2002975 (sunnywqing) +You remind me of a boy I used to know. 你让我想起我过去认识的一个男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #69330 (CK) & #1314486 (vicch) +You should follow the doctor's advice. 你應該遵照醫生的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #16315 (CK) & #874735 (Martha) +You should have completed it long ago. 你们很久前就应该完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16363 (CK) & #471411 (fucongcong) +You wouldn't believe me if I told you. 我告诉你,你也不会信。 CC-BY 2.0 (France) Attribution: tatoeba.org #2539039 (CK) & #5663581 (verdastelo9604) +You'll soon get used to Japanese food. 你很快就会习惯吃日本料理了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6482237 (CK) & #333351 (fucongcong) +You're the master of your own destiny. 你才是自己命运的主人。 CC-BY 2.0 (France) Attribution: tatoeba.org #8983794 (CK) & #1992648 (sadhen) +Zimbabwe was once a colony of Britain. 津巴布韋曾經是英國的殖民地。 CC-BY 2.0 (France) Attribution: tatoeba.org #52458 (CM) & #801434 (Martha) +"How old are you?" "Sixteen years old". 「你幾歲?」「我十六歲。」 CC-BY 2.0 (France) Attribution: tatoeba.org #2113928 (kerbear407) & #1233907 (tsayng) +"I feel like playing cards." "So do I." “我想打牌。”“我也是。” CC-BY 2.0 (France) Attribution: tatoeba.org #1527 (CK) & #334460 (fucongcong) +A day without laughter is a day wasted. 没有笑声的一天肯定是最为虚度的一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #3133314 (patgfisher) & #6075302 (mendel) +A little learning is a dangerous thing. 一知半解很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #267717 (Zifre) & #806552 (Martha) +A man suddenly appeared in the doorway. 一个男的突然出现在门口。 CC-BY 2.0 (France) Attribution: tatoeba.org #280708 (CK) & #3780486 (e78xx_xxx) +A wounded whale washed up on the beach. 一条受伤的鲸鱼在海滩边搁浅了。 CC-BY 2.0 (France) Attribution: tatoeba.org #682496 (Source_VOA) & #816502 (fucongcong) +Advertisements urge us to buy luxuries. 廣告慫恿我們買奢侈品。 CC-BY 2.0 (France) Attribution: tatoeba.org #273148 (jakov) & #919907 (Martha) +All I really want to do is talk to Tom. 我真正想做的就是跟湯姆說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #2026338 (CK) & #6077461 (verdastelo9604) +All the flowers in the garden withered. 所有花園裡的花朵都枯萎了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278491 (CK) & #798292 (Martha) +All you need to do is trust each other. 除了相信对方以外,你们没什么要做的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4073265 (AlanF_US) & #334922 (fucongcong) +An eye for an eye, a tooth for a tooth. 以眼還眼,以牙還牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #6136 (CM) & #806252 (Martha) +An eye for an eye, a tooth for a tooth. 以眼还眼以牙还牙 CC-BY 2.0 (France) Attribution: tatoeba.org #6136 (CM) & #4528911 (Sorieny) +An old man broke into our conversation. 一位老人打斷了我們的談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #27619 (Zifre) & #918088 (Martha) +Are you still living with your parents? 你依然和父母住一起吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3177274 (Hybrid) & #5091274 (mirrorvan) +Are you sure that you want to go there? 你确定你要去那儿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #953131 (CK) & #8517167 (gumblex) +As far as I know, he did nothing wrong. 据我所知,他没做错任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #251475 (CS) & #796653 (fucongcong) +As far as I know, she is still missing. 据我所知,她仍然失踪。 CC-BY 2.0 (France) Attribution: tatoeba.org #251477 (CK) & #8591215 (easononizuka) +Boys, as a rule, are taller than girls. 一般来说,男生会比女生高一些。 CC-BY 2.0 (France) Attribution: tatoeba.org #27356 (CK) & #8860210 (crescat) +Can I use your dictionary for a minute? 我能用一下你的字典吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1477146 (weihaiping) & #333296 (fucongcong) +Can you please give me something to do? 请问你能给我点事做吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3101536 (CK) & #5965719 (verdastelo9604) +Can you put up with the way he behaves? 你能容忍他做事的方式么? CC-BY 2.0 (France) Attribution: tatoeba.org #466082 (Zifre) & #1397129 (mtdot) +Class doesn't begin until eight-thirty. 八點半開始上課。 CC-BY 2.0 (France) Attribution: tatoeba.org #1525 (CK) & #910833 (Martha) +Coal and natural gas are natural fuels. 煤和天然氣是天然燃料。 CC-BY 2.0 (France) Attribution: tatoeba.org #681036 (Source_VOA) & #899994 (kanaorange) +Could you wrap this separately, please? 請你分開包裝好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #320322 (CK) & #838641 (Martha) +Despite his riches, he's not contented. 尽管他很富有,他还是不满足。 CC-BY 2.0 (France) Attribution: tatoeba.org #318750 (CK) & #786018 (fucongcong) +Do Japanese people eat sushi every day? 日本人每天都会吃寿司吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3255262 (celeriac) & #8865163 (crescat) +Do you have any free time this weekend? 這個週末你有時間嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7796495 (sharris123) & #6120180 (xjjAstrus) +Do you know how to eat with chopsticks? 你會用筷子吃飯嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3122651 (chajadan) & #9135868 (xjjAstrus) +Do you think he did the job on his own? 你认为他是自己独立完成这份工的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #282889 (CK) & #616199 (sarah) +Does Tom speak French better than Mary? 湯姆說法語比瑪麗好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #5851136 (CK) & #6114433 (verdastelo9604) +Don't forget to lock up when you leave. 当你出门时,别忘了锁门。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318032 (Eldad) & #7781933 (jiangche) +Don't forget to take a camera with you. 别忘了带个相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #63555 (CK) & #349672 (fucongcong) +Don't forget to take the first-aid kit. 别忘了带上急救箱。 CC-BY 2.0 (France) Attribution: tatoeba.org #2649680 (sharptoothed) & #5640745 (verdastelo9604) +Don't show your face around here again. 你不要再出現在這裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #541986 (CK) & #889626 (Martha) +Don't touch this with your dirty hands. 别用你的脏手碰这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #3783130 (Hybrid) & #3783444 (Debbie_Linder) +Don't you know what happened yesterday? 你不知道昨天發生什麼事嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244565 (CK) & #822624 (egg0073) +Eating too much is bad for your health. 吃得太多对健康不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #536360 (darinmex) & #512929 (fucongcong) +Everyone in the class climbed the hill. 班上每個人都爬上了這個山坡。 CC-BY 2.0 (France) Attribution: tatoeba.org #62926 (CK) & #798322 (Martha) +Everyone's tired of hearing that story. 每个人都听腻了那个故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3507515 (CK) & #5845653 (verdastelo9604) +Evidently, it's going to rain tomorrow. 明天肯定会下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #38330 (CK) & #792846 (fucongcong) +Excuse me, do you know what time it is? 不好意思,请问您知道现在几点了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3789181 (CK) & #5100269 (mirrorvan) +Give him an inch and he'll take a yard. 得寸进尺。 CC-BY 2.0 (France) Attribution: tatoeba.org #1818 (CK) & #454088 (fucongcong) +Go at once, otherwise you will be late. 立刻走,否則你會遲到。 CC-BY 2.0 (France) Attribution: tatoeba.org #52085 (CM) & #919852 (Martha) +Have you checked our supplies recently? 你最近检查我们的补给了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2216171 (CK) & #5763001 (verdastelo9604) +Have you ever seen Tom when he's angry? 你有看见过汤姆生气的时候吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4724245 (CK) & #5097868 (mirrorvan) +He attributed his success to good luck. 他把他的成功归功于好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #288178 (CK) & #1438323 (asosan) +He attributes his success to good luck. 他将他的成功归功于好运。 CC-BY 2.0 (France) Attribution: tatoeba.org #298794 (CK) & #1438327 (asosan) +He couldn't hold his temper any longer. 他再也忍不住气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #614436 (kebukebu) & #336439 (fucongcong) +He did all he could to protect his son. 他做了一切能做的去保護他的兒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1209488 (CK) & #6325082 (verdastelo9604) +He doesn't realise that he's tone deaf. 他不知道他自己五音不全。 CC-BY 2.0 (France) Attribution: tatoeba.org #326798 (BE) & #779463 (Martha) +He finally became the president of IBM. 他最终成了IBM的总裁。 CC-BY 2.0 (France) Attribution: tatoeba.org #291766 (CK) & #335110 (fucongcong) +He finally became the president of IBM. 他終於成了IBM的總經理。 CC-BY 2.0 (France) Attribution: tatoeba.org #291766 (CK) & #1205889 (cienias) +He forgot that he bought her a present. 他忘记给她买过一个礼物了。 CC-BY 2.0 (France) Attribution: tatoeba.org #530863 (contour) & #819746 (fucongcong) +He got injured in the traffic accident. 他在這場交通意外中受了傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #290778 (CK) & #802537 (Martha) +He got wet from the waist to the knees. 他從腰部到膝蓋都濕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #296450 (CM) & #786143 (Martha) +He had his head in the clouds in class. 他在課堂上心不在焉。 CC-BY 2.0 (France) Attribution: tatoeba.org #299285 (Zifre) & #860981 (Martha) +He had hoped to succeed, but he didn't. 他本希望可以成功,但是他没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #526363 (CK) & #610399 (CLARET) +He has a remarkable aptitude for music. 他有非凡的音樂天份。 CC-BY 2.0 (France) Attribution: tatoeba.org #294198 (CK) & #788722 (Martha) +He is a waiter in a seaside restaurant. 他是一家海滨餐厅的服务员。 CC-BY 2.0 (France) Attribution: tatoeba.org #294691 (CM) & #5958725 (verdastelo9604) +He is getting along with his employees. 他和他的員工相處。 CC-BY 2.0 (France) Attribution: tatoeba.org #295429 (CK) & #804990 (Martha) +He is making great progress in English. 他的英語有很大的進步。 CC-BY 2.0 (France) Attribution: tatoeba.org #293028 (CK) & #795261 (Martha) +He is older than she is by three years. 他比她大三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #302857 (Zifre) & #1891664 (sadhen) +He kissed his daughter on the forehead. 他親了親他女兒的額頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #304027 (CK) & #877560 (Martha) +He knows how to captivate his audience. 他知道如何去吸引他的聽眾。 CC-BY 2.0 (France) Attribution: tatoeba.org #289948 (CK) & #796036 (Martha) +He likes neither baseball nor football. 他既不喜欢棒球,又不喜欢足球。 CC-BY 2.0 (France) Attribution: tatoeba.org #304262 (CM) & #399780 (fucongcong) +He likes to watch baseball games on TV. 他喜歡看電視上的棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #388836 (CK) & #881537 (Martha) +He likes watching baseball games on TV. 他喜歡看電視上的棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #388835 (CK) & #881537 (Martha) +He made remarkable progress in English. 他的英語有了顯著的進步。 CC-BY 2.0 (France) Attribution: tatoeba.org #285565 (CK) & #884187 (Martha) +He makes the most of his opportunities. 他充分利用他的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #290661 (CM) & #795283 (Martha) +He occasionally reads detective novels. 他偶尔会阅读一些侦探小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #482308 (adjusting) & #2567442 (fenfang557) +He often goes with her to watch movies. 他常和她一起去看电影。 CC-BY 2.0 (France) Attribution: tatoeba.org #995241 (NickC) & #993776 (leoyzy) +He placed the ladder against the fence. 他把梯子倚著柵欄放。 CC-BY 2.0 (France) Attribution: tatoeba.org #303517 (CK) & #882506 (Martha) +He promised me he would be here at six. 他答應我六點鐘的時候他會在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #288629 (CM) & #848180 (Martha) +He put his hand gently on her shoulder. 他把他的手溫柔地放在她的肩上。 CC-BY 2.0 (France) Attribution: tatoeba.org #838692 (Scott) & #766401 (Martha) +He regrets his having wasted his money. 他后悔自己的挥金如土。 CC-BY 2.0 (France) Attribution: tatoeba.org #298674 (CK) & #1397037 (mtdot) +He still hasn't responded to my letter. 他还没回我的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #707122 (papabear) & #337881 (fucongcong) +He told his wife not to buy on impulse. 他叫自己的妻子不要衝動購物。 CC-BY 2.0 (France) Attribution: tatoeba.org #296787 (CK) & #3149362 (cienias) +He wanted to reduce the tax on imports. 他想要减少进口品的税。 CC-BY 2.0 (France) Attribution: tatoeba.org #803266 (Source_VOA) & #8690265 (crescat) +He was appointed ambassador to Britain. 他被任命為駐英國大使。 CC-BY 2.0 (France) Attribution: tatoeba.org #301566 (CK) & #781679 (Martha) +He was hit by a car and died instantly. 他被車撞了之後便過世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #678806 (CK) & #1304158 (tsayng) +He was made a fool of by his neighbors. 他被他的邻居们愚弄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295430 (CM) & #1416251 (sadhen) +He was terribly poor when he was young. 他年轻的时候穷困潦倒。 CC-BY 2.0 (France) Attribution: tatoeba.org #299118 (CK) & #333532 (fucongcong) +He will be a good husband to my sister. 他会是我妹妹的好丈夫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #432787 (aliene) & #335936 (fucongcong) +He's a professor of biology at Harvard. 他是哈佛大学的生物学教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #292356 (CK) & #332645 (fucongcong) +He's very smart, and he's handsome too. 他很聪明,而且他很帅。 CC-BY 2.0 (France) Attribution: tatoeba.org #432741 (aliene) & #346771 (fucongcong) +Her father devoted his life to science. 她父亲把一生都贡献给科学事业了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309704 (CK) & #343777 (fucongcong) +Her house is at the foot of a mountain. 她家在一座山的山脚下。 CC-BY 2.0 (France) Attribution: tatoeba.org #309102 (CM) & #799197 (fucongcong) +His daughter has become a pretty woman. 他的女兒已經成為了一個漂亮的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #582953 (fliegster) & #794048 (Martha) +His death was a great loss to our firm. 他的死对我们公司是一个巨大的损失。 CC-BY 2.0 (France) Attribution: tatoeba.org #286480 (CM) & #847761 (fucongcong) +His doctor advised him to quit smoking. 他的医生建议他戒烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477155 (weihaiping) & #332499 (fucongcong) +His greatest fault is talking too much. 他最大的缺点就是话太多。 CC-BY 2.0 (France) Attribution: tatoeba.org #286352 (CM) & #1358669 (sadhen) +His memory never ceases to astonish me. 他的记忆力总让我吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137403 (CM) & #3043964 (sadhen) +His opinions aren't worth listening to. 他的意見不值得聽。 CC-BY 2.0 (France) Attribution: tatoeba.org #435986 (CK) & #848852 (Martha) +His sudden appearance surprised us all. 他的突然出现,让我们都感到惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #284074 (CK) & #479026 (biglion) +How about going to see a movie tonight? 今晚看电影怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #243260 (CK) & #5585189 (verdastelo9604) +How did you spend your winter vacation? 你的寒假怎么过的? CC-BY 2.0 (France) Attribution: tatoeba.org #279653 (CK) & #8686670 (crescat) +How long are you going to be in Boston? 你要在波士顿留多久? CC-BY 2.0 (France) Attribution: tatoeba.org #3024383 (CK) & #5574381 (verdastelo9604) +How many pieces of baggage do you have? 请问您有多少件行李? CC-BY 2.0 (France) Attribution: tatoeba.org #64741 (CM) & #8777616 (crescat) +How many years did Tom spend in Boston? 汤姆在波士顿呆了几年? CC-BY 2.0 (France) Attribution: tatoeba.org #4815371 (CK) & #5845649 (verdastelo9604) +How much money did you spend in Boston? 你在波士顿花了多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #6912325 (CK) & #8688146 (slo_oth) +How much time do you spend on Facebook? 你花多少時間在Facebook上? CC-BY 2.0 (France) Attribution: tatoeba.org #909526 (CK) & #5414838 (egg0073) +How much will it cost you to go by air? 坐飛機將花你多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #317999 (U2FS) & #811924 (Martha) +I advertised my house in the newspaper. 我在报纸上刊登了我的房子的广告。 CC-BY 2.0 (France) Attribution: tatoeba.org #258828 (CK) & #3043962 (sadhen) +I am Finnish, but I speak also Swedish. 我是芬兰人,但我也说瑞典语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1128696 (CM) & #5569481 (verdastelo9604) +I am fully convinced of your innocence. 我完全相信你是清白的。 CC-BY 2.0 (France) Attribution: tatoeba.org #257121 (CK) & #818970 (Martha) +I am grateful to you for your kindness. 谢谢您的好意。 CC-BY 2.0 (France) Attribution: tatoeba.org #54402 (CK) & #8780278 (crescat) +I asked the boy to throw the ball back. 我請這個男孩把球扔回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #254499 (CK) & #919892 (Martha) +I buy donuts every Sunday after church. 我每个星期日礼拜完都买甜甜圈。 CC-BY 2.0 (France) Attribution: tatoeba.org #3217434 (celeriac) & #5574713 (verdastelo9604) +I can't believe Tom is getting married. 我不能相信汤姆要结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950866 (CK) & #5780617 (verdastelo9604) +I can't change what happened yesterday. 我没法改变昨天发生的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951395 (CK) & #7774801 (jiangche) +I can't deal with this problem anymore. 我不能再管这问题了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951457 (CK) & #5640759 (verdastelo9604) +I can't tolerate this noise any longer. 我不能再忍受這個噪音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58021 (CK) & #920110 (Martha) +I couldn't answer all of the questions. 我不能回答所有的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #526393 (CK) & #881558 (Martha) +I couldn't get the point of his speech. 我不能抓到他演讲的重点。 CC-BY 2.0 (France) Attribution: tatoeba.org #260788 (CK) & #4621004 (Yashanti) +I didn't want to listen to Tom singing. 我不想聽湯姆唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #6074306 (CK) & #6903794 (verdastelo9604) +I don't have a car, but my sister does. 我没有车,但我姐妹有。 CC-BY 2.0 (France) Attribution: tatoeba.org #258402 (CK) & #7777098 (jiangche) +I don't have a good feeling about this. 我觉得这没什么好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636135 (CK) & #5611624 (verdastelo9604) +I don't know anything about their plan. 我對他們的計劃一無所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #400216 (CK) & #881901 (Martha) +I don't know what I'm going to do next. 我不知道下一步做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3562530 (CK) & #3636658 (suitchic) +I don't know what I'm going to do next. 我不知道接下来我要做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3562530 (CK) & #7772000 (jiangche) +I don't remember much about that woman. 我对那位女士印象不深。 CC-BY 2.0 (France) Attribution: tatoeba.org #6546401 (OsoHombre) & #8975244 (WilsonWong) +I don't take any responsibility at all. 我完全不负任何责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742958 (shekitten) & #8744873 (slo_oth) +I don't think I can help you very much. 我不認為我能幫你很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619089 (CK) & #6169149 (verdastelo9604) +I don't think Tom will like this place. 我不认为汤姆喜欢这个地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323216 (CK) & #2394506 (fenfang557) +I don't think that this is a good idea. 我觉得这主意不行。 CC-BY 2.0 (France) Attribution: tatoeba.org #7231425 (CK) & #8463547 (gumblex) +I don't understand what you are saying. 我不了解你在說什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #409433 (CK) & #883405 (Martha) +I don't want to cause any more trouble. 我不想再惹事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2026369 (CK) & #6028216 (verdastelo9604) +I don't want to talk about the weather. 我不想談論天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #680045 (Source_VOA) & #886540 (Martha) +I finished reading the book last night. 我昨晚看完了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #257823 (CK) & #883433 (Martha) +I found a beautiful shell on the shore. 我在海滩上发现了一个漂亮的贝壳。 CC-BY 2.0 (France) Attribution: tatoeba.org #256744 (CK) & #1358441 (sadhen) +I got a farewell present from everyone. 每個人都送了我一份歡送禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #32185 (CK) & #804623 (Martha) +I got scolded severely by that teacher. 我被那位老師嚴厲斥責了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252948 (CK) & #802313 (Martha) +I graduated from high school last year. 去年我從高中畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #256882 (CK) & #802094 (Martha) +I guess I'm never going to get married. 我想我会一辈子单身。 CC-BY 2.0 (France) Attribution: tatoeba.org #56111 (CK) & #1718780 (yuzazaza) +I have a certain amount of money on me. 我有些钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #3822672 (CK) & #5663459 (verdastelo9604) +I have a lot of problems at the moment. 目前我问题很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #257453 (CM) & #784577 (fucongcong) +I have been warned against going there. 我已經被警告過不要去那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #50948 (CK) & #889137 (Martha) +I have two children away at university. 我有两个出去上大学的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #249950 (CK) & #1397019 (mtdot) +I hope that Tom has learned his lesson. 我希望汤姆已经吸取教训了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8559964 (CK) & #8560803 (slo_oth) +I interpreted her silence as a refusal. 我認為她的沉默就是表示拒絕。 CC-BY 2.0 (France) Attribution: tatoeba.org #261297 (CK) & #889599 (Martha) +I like grapes, but I can't eat so many. 我虽然喜欢吃葡萄,但是我吃不了那么多。 CC-BY 2.0 (France) Attribution: tatoeba.org #34322 (CK) & #8936297 (crescat) +I like red wine better than white wine. 我喜歡紅葡萄酒勝過白葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #3662952 (CK) & #795851 (Martha) +I listened, but I didn't hear anything. 我听了,但什么也没听到。 CC-BY 2.0 (France) Attribution: tatoeba.org #619682 (CK) & #333390 (fucongcong) +I promised him that I would come today. 我答应他我今天会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #257601 (CK) & #5663602 (verdastelo9604) +I ran into my aunt by chance in Europe. 我在欧洲偶遇了姑母。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318688 (CK) & #8865172 (crescat) +I really don't understand this problem. 我真的不懂这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #477179 (FeuDRenais) & #476188 (fucongcong) +I received a letter three months later. 我在三個月後收到了一封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #252548 (CK) & #6057867 (verdastelo9604) +I remember you. We met three years ago. 我記得你。三年前我們見過面。 CC-BY 2.0 (France) Attribution: tatoeba.org #68806 (CK) & #869892 (Martha) +I said to myself, "That's a good idea." 我对自己说,“那是个好主意。” CC-BY 2.0 (France) Attribution: tatoeba.org #73864 (CK) & #2082974 (sadhen) +I saw Tom having an argument with Mary. 我见汤姆跟玛丽争论。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553113 (CK) & #5967633 (verdastelo9604) +I should've gone to Australia with Tom. 我本该和汤姆一起去澳大利亚。 CC-BY 2.0 (France) Attribution: tatoeba.org #7191428 (CK) & #8631029 (ZeroAurora) +I think I mistakenly deleted that file. 我觉得我是误删了这个文件。 CC-BY 2.0 (France) Attribution: tatoeba.org #1891287 (CK) & #4282937 (notabene) +I think I'll be able to deal with that. 我认为我能做好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2619395 (AlanF_US) & #5967316 (verdastelo9604) +I think someone's knocking on the door. 我想有人在敲门。 CC-BY 2.0 (France) Attribution: tatoeba.org #8262148 (francaisr0wlet) & #1490508 (sadhen) +I think this medicine will do you good. 我想这药会对您有好处的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56600 (CK) & #782216 (fucongcong) +I think you should take the test again. 我的意见是,你该再次参加测试。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755380 (garborg) & #1501755 (fenfang557) +I thought that Tom and Mary were crazy. 我本以为汤姆和玛丽疯了呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #7172446 (CK) & #7772589 (jiangche) +I took the elevator to the third floor. 我乘电梯上三楼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1153966 (belgavox) & #5624945 (verdastelo9604) +I truly do not understand the question. 我真的不懂这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #476206 (morganlmallory) & #476188 (fucongcong) +I usually take a shower in the evening. 我通常在晚上洗澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2190 (CK) & #332837 (fucongcong) +I want to become a teacher of Japanese. 我想成为日语老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #259825 (CK) & #8696248 (crescat) +I want to spend the whole day with you. 我想跟你度過一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #3966071 (Hybrid) & #6094838 (verdastelo9604) +I was awfully confused by his question. 我對他的問題感到非常困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #403309 (CK) & #881565 (Martha) +I was hoping Tom would come here today. 我希望湯姆有一天會來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3330090 (CK) & #6132400 (verdastelo9604) +I went swimming in the river yesterday. 我昨天去河里游泳了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257787 (CK) & #335679 (fucongcong) +I will ask him about it tomorrow, then. 那我明天会问他的。 CC-BY 2.0 (France) Attribution: tatoeba.org #39345 (CK) & #473006 (fucongcong) +I will finish it by tomorrow afternoon. 明天下午之前我会把它完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #254853 (CK) & #332425 (fucongcong) +I wish I could stop thinking about Tom. 希望我可以不再想Tom。 CC-BY 2.0 (France) Attribution: tatoeba.org #3101546 (CK) & #4504326 (egg0073) +I wish I hadn't said that at the party. 我希望我在聚會上沒說過那話。 CC-BY 2.0 (France) Attribution: tatoeba.org #5613789 (CK) & #6169160 (verdastelo9604) +I wish that Tom would agree to do that. 我希望湯姆能同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #6342073 (CK) & #6482305 (verdastelo9604) +I would like to speak English fluently. 我想把英語說得很流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #325468 (CK) & #894417 (Martha) +I would like to speak English fluently. 我想講一口流利的英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #325468 (CK) & #894419 (Martha) +I'd buy a new house if I had the money. 如果我有錢,我會買一個新房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7808959 (CK) & #6015376 (xjjAstrus) +I'd like to be alone if you don't mind. 如果你不介意的话,我想一个人呆着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936534 (CK) & #9007586 (jacintoo) +I'd like to have another cup of coffee. 我想再要一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #62216 (CK) & #6206033 (verdastelo9604) +I'd like to see him tomorrow afternoon. 我想明天下午見他。 CC-BY 2.0 (France) Attribution: tatoeba.org #323152 (CK) & #6070043 (verdastelo9604) +I'd like to send this package to Japan. 我想把這個包裹寄到日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #60035 (CK) & #5401615 (egg0073) +I'd like to visit your country someday. 我想某一天拜访你的国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #66374 (CK) & #334857 (fucongcong) +I'll be back by seven or eight o'clock. 我会在七八点回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #72367 (CK) & #8936387 (crescat) +I'll be in my office from ten tomorrow. 我明天十点起会在办公室里。 CC-BY 2.0 (France) Attribution: tatoeba.org #323286 (Eldad) & #1394800 (mtdot) +I'll stop by your place on my way home. 我回家路上会在你那里停下。 CC-BY 2.0 (France) Attribution: tatoeba.org #3618794 (CK) & #5911624 (verdastelo9604) +I'm afraid there isn't any coffee left. 恐怕已經沒有咖啡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #62238 (CK) & #5414486 (egg0073) +I'm afraid you'll have to go in person. 我恐怕您必须亲自去。 CC-BY 2.0 (France) Attribution: tatoeba.org #237737 (CM) & #782339 (fucongcong) +I'm counting how many people there are. 我正在算有多少人在那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #394680 (CK) & #894044 (Martha) +I'm currently a teacher at this school. 我现在在这所学校任教。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149796 (FeuDRenais) & #1766187 (sadhen) +I'm going to get rid of all this stuff. 我要摆脱这一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733661 (CK) & #5555907 (verdastelo9604) +I'm having my house painted next month. 我下個月刷我的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #6244527 (CK) & #6568331 (verdastelo9604) +I'm looking for books on Roman history. 我在找关于古罗马历史的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #29420 (ludoviko) & #332933 (fucongcong) +I'm not accustomed to getting up early. 我不習慣早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #259494 (CK) & #801362 (Martha) +I'm not letting Tom do this by himself. 我不会让汤姆独自去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538919 (CK) & #5617207 (verdastelo9604) +I'm not particularly thirsty right now. 我现在不特别渴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538918 (CK) & #5903468 (verdastelo9604) +I'm not used to walking long distances. 我不習慣走很長的路。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211519 (alec) & #1205882 (cienias) +I'm on my way to the meeting right now. 我在前往会议的路上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729359 (CM) & #5650435 (verdastelo9604) +I'm really concerned about your future. 我真的很關心你的未來。 CC-BY 2.0 (France) Attribution: tatoeba.org #261765 (CK) & #796002 (Martha) +I'm sorry I didn't reply to you sooner. 抱歉,我沒有早點回覆你。 CC-BY 2.0 (France) Attribution: tatoeba.org #30406 (Dejo) & #898946 (kanaorange) +I'm thinking of going abroad next year. 我在考虑明年去国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #262163 (CK) & #335032 (fucongcong) +I'm very happy to hear about the party. 我听到聚会的事很高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #35663 (CK) & #5983672 (verdastelo9604) +I've been reading this for a few hours. 我一直讀這個讀了幾個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #7793756 (CK) & #886573 (Martha) +I've had enough, so my stomach is full. 我吃飽了,所以我的胃都滿了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40987 (CK) & #851494 (Martha) +I, too, have been to Boston many times. 我也去过波士顿很多次。 CC-BY 2.0 (France) Attribution: tatoeba.org #3024208 (CK) & #5780556 (verdastelo9604) +If time permits, I'll visit the museum. 如果時間允許,我會去參觀博物館。 CC-BY 2.0 (France) Attribution: tatoeba.org #30772 (CK) & #798413 (Martha) +If we don't keep walking we'll be late. 再不走就迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2476333 (FeuDRenais) & #2456619 (fenfang557) +If we don't keep walking we'll be late. 如果我们不继续赶路,我们会迟到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2476333 (FeuDRenais) & #2482650 (fenfang557) +If you want to, call me this afternoon. 如果你想的话,今天下午给我打电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1440821 (CK) & #4705815 (Yashanti) +Interest rates and inflation were high. 利率和通货膨胀很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #807356 (Source_VOA) & #5663599 (verdastelo9604) +Is it difficult eating with chopsticks? 用筷子吃饭难吗? CC-BY 2.0 (France) Attribution: tatoeba.org #755188 (sctld) & #5911762 (verdastelo9604) +Is it really that hard to speak French? 说法语真有那么难吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2451293 (CK) & #5845597 (verdastelo9604) +Is there a discount if you pay in cash? 用現金付的話會有折扣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2269584 (FeuDRenais) & #2256337 (cienias) +Is there any chance that he'll recover? 他有任何復原的機會嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #400138 (CK) & #893998 (Martha) +Is there anything else you can tell me? 你還能告訴我甚麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3203754 (CK) & #6325093 (verdastelo9604) +Is there anything else you want to say? 你還有甚麽想說的? CC-BY 2.0 (France) Attribution: tatoeba.org #4013422 (CK) & #8570957 (verdastelo9604) +It is impossible to live without water. 生活沒有水是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270769 (CK) & #798080 (Martha) +It looks like today will be a long day. 看来今天会是漫长的一天啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #2837951 (CK) & #5097569 (mirrorvan) +It turned out that the rumor was false. 谣言[最后]证明是假的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2155922 (FeuDRenais) & #336500 (fucongcong) +It was lucky for you that you found it. 你很幸運找到了它。 CC-BY 2.0 (France) Attribution: tatoeba.org #43130 (CM) & #895595 (Martha) +It was one of the best nights I've had. 这是我度过的最好的夜晚之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #1655354 (Spamster) & #5574441 (verdastelo9604) +It's a pity you didn't come last night. 您昨晚沒來真是太可惜了! CC-BY 2.0 (France) Attribution: tatoeba.org #2267433 (_undertoad) & #3704923 (egg0073) +It's important to follow a strict diet. 重要的是要遵循嚴格的飲食控制。 CC-BY 2.0 (France) Attribution: tatoeba.org #268754 (CK) & #798101 (Martha) +It's impossible to predict earthquakes. 預測地震是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #681777 (Source_VOA) & #4265828 (egg0073) +It's my belief that knowledge is power. 我相信,知识就是力量。 CC-BY 2.0 (France) Attribution: tatoeba.org #277047 (CK) & #1423325 (sadhen) +It's possible that you don't know this. 你有可能不知道这事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2684531 (FeuDRenais) & #5983632 (verdastelo9604) +It's rare to meet nice people like you. 很少能见到像你那么好的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #618396 (TRANG) & #796818 (fucongcong) +It's very important to get enough rest. 充足的休息十分重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #266520 (CK) & #528018 (biglion) +Japan is not rich in natural resources. 日本並不擁有豐富的自然資源。 CC-BY 2.0 (France) Attribution: tatoeba.org #281245 (CK) & #798314 (Martha) +Japan relies on Arab countries for oil. 日本靠阿拉伯国家提供石油。 CC-BY 2.0 (France) Attribution: tatoeba.org #281480 (Eldad) & #333498 (fucongcong) +Japanese office workers work very hard. 日本上班族工作得非常辛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #281352 (CK) & #798399 (Martha) +Jealousy was the motive for the murder. 嫉妒是謀殺的動機。 CC-BY 2.0 (France) Attribution: tatoeba.org #265007 (Dejo) & #801436 (Martha) +Karuizawa is famous as a summer resort. 輕井澤是著名的避暑勝地。 CC-BY 2.0 (France) Attribution: tatoeba.org #238417 (CK) & #797041 (Martha) +Lake Biwa is the largest lake in Japan. 琵琶湖是日本最大的湖。 CC-BY 2.0 (France) Attribution: tatoeba.org #318135 (CK) & #8955167 (crescat) +Let's go out and have some fun tonight. 我们今晚一起出去找乐子吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819195 (CK) & #5983599 (verdastelo9604) +Lie down and make yourself comfortable. 躺下來讓自己舒服一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #25668 (CK) & #798256 (Martha) +Like a good wine, he improves with age. 就像上好的红酒一样,他随着年龄的增长变得越来越好。 CC-BY 2.0 (France) Attribution: tatoeba.org #66728 (CK) & #8692925 (crescat) +Mary carries pepper spray in her purse. 玛丽的包里有胡椒喷剂。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953196 (CK) & #5663511 (verdastelo9604) +Mary went on a voyage around the world. 玛丽去环游世界了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31913 (mamat) & #472805 (fucongcong) +May I be excused from tomorrow's class? 明天的课我能不来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #71848 (CK) & #844562 (kooler) +Maybe I should just tell Tom the truth. 可能我就該告訴湯姆真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #3203750 (CK) & #6119496 (verdastelo9604) +Mom is preparing a meal in the kitchen. 媽媽正在廚房裡做飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #890440 (jakov) & #890446 (Martha) +My brother and I are in the same class. 我的兄弟和我在一个班级。 CC-BY 2.0 (France) Attribution: tatoeba.org #5160954 (Barra) & #5845656 (verdastelo9604) +My mom doesn't speak English very well. 我妈妈英语说得不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1462 (CK) & #335027 (fucongcong) +My mother gets up early in the morning. 我妈妈早上早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #251849 (CK) & #397541 (fucongcong) +My mother told us an interesting story. 我的媽媽給我們講了個有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #297340 (CM) & #6093366 (verdastelo9604) +No, thank you. I'm just looking around. 不,謝謝你。我只是四處看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #66817 (CK) & #894298 (Martha) +Nobody knows why he turns down my help. 沒有人知道他為何拒絕我幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #36358 (CM) & #4071841 (egg0073) +Now it's time for the weather forecast. 现在是天气预报的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1602098 (jathonjet) & #8720534 (crescat) +On the whole, the event was successful. 整體而言,這個事件是成功的。 CC-BY 2.0 (France) Attribution: tatoeba.org #65120 (CK) & #801469 (Martha) +One man's meat is another man's poison. 對某人有利的對另外的人未必有利。 CC-BY 2.0 (France) Attribution: tatoeba.org #67212 (CK) & #806623 (Martha) +One man's meat is another man's poison. 甲之蜜糖,乙之砒霜。 CC-BY 2.0 (France) Attribution: tatoeba.org #67212 (CK) & #5092091 (mirrorvan) +One of the children left the door open. 其中一個孩子讓門開著。 CC-BY 2.0 (France) Attribution: tatoeba.org #245714 (CK) & #894233 (Martha) +Onions cook more quickly than potatoes. 洋蔥比馬鈴薯快熟。 CC-BY 2.0 (France) Attribution: tatoeba.org #40512 (CK) & #797045 (Martha) +Ouch! My finger got caught in the door. 好痛!被门夹到手指了! CC-BY 2.0 (France) Attribution: tatoeba.org #1419108 (CK) & #8775844 (crescat) +Our teacher gives us a lot of homework. 我们的老师给作业给得很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #266692 (adjusting) & #8902602 (crescat) +Picasso's paintings seem strange to me. 畢加索的畫對我來說似乎很奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #34828 (CK) & #798078 (Martha) +Please don't tell this to your parents. 请不要告诉你父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #684744 (notrwanda) & #4815178 (McMeao) +Please remain seated for a few minutes. 请坐一会。 CC-BY 2.0 (France) Attribution: tatoeba.org #53407 (CK) & #8685595 (crescat) +Rabbits have long ears and short tails. 兔子长着长长的耳朵和短短的尾巴。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396365 (CK) & #1862599 (sadhen) +Salt helps to preserve food from decay. 鹽可以幫助保存食物避免腐爛。 CC-BY 2.0 (France) Attribution: tatoeba.org #25752 (CK) & #798097 (Martha) +Scotland can be very warm in September. 蘇格蘭在9月可以變的很溫暖。 CC-BY 2.0 (France) Attribution: tatoeba.org #51994 (CK) & #801318 (Martha) +She always looked happy, but never was. 她總是看起來很快樂,但實際上從來不快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #388575 (CK) & #893983 (Martha) +She enjoyed herself a lot at the party. 她在聚會上玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #311936 (CK) & #779014 (Martha) +She freshened herself up before supper. 她在晚飯前把自己梳洗打扮了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #317310 (CK) & #818968 (Martha) +She gave birth to a daughter yesterday. 她昨天生了一個女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #310733 (CK) & #805682 (Martha) +She gave up her plans against her will. 她違背己願放棄了她的計畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #314633 (CK) & #6091719 (verdastelo9604) +She got all dolled up for her big date. 为了她的重要约会,她精心打扮了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #608960 (darinmex) & #817341 (fucongcong) +She had an appointment with the doctor. 她跟醫生預約看診了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312534 (CK) & #796045 (Martha) +She is far better today than yesterday. 她今天比昨天要好很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #313819 (CK) & #1223824 (tsayng) +She pressed her nose against the glass. 她把鼻子贴在玻璃上。 CC-BY 2.0 (France) Attribution: tatoeba.org #1742338 (belgavox) & #8463527 (gumblex) +She said to herself, "I am very happy." 她对自己说:“我很幸福”。 CC-BY 2.0 (France) Attribution: tatoeba.org #73665 (CK) & #1839139 (sadhen) +She stirred her coffee with a teaspoon. 她用茶匙搅她的咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3052905 (Dejo) & #5574872 (verdastelo9604) +She walked slowly so she wouldn't slip. 她慢慢地走,這樣她就不會滑倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #508784 (CK) & #905344 (Martha) +She wants to know who sent the flowers. 她想知道是谁送的花。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396235 (CK) & #1891663 (sadhen) +She was asked to write her name in ink. 她被要求用墨水写下她的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #310522 (CK) & #5613684 (verdastelo9604) +She'll cry even when no one is looking. 没人盯着她的时候,她甚至会哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256438 (FeuDRenais) & #2254415 (KerenDeng) +She's busy now and can't talk with you. 她现在忙,不能跟你说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345498 (CK) & #1397358 (mtdot) +She's busy now and can't talk with you. 她現在忙,沒有辦法跟您說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345498 (CK) & #1923113 (egg0073) +She's busy now and can't talk with you. 她現在忙,沒有辦法跟你們說話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345498 (CK) & #1923114 (egg0073) +She's determined to become a secretary. 她下决心要成为秘书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1538862 (SHamp) & #844139 (fucongcong) +Smiles do not always indicate pleasure. 微笑並不一定表示高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #318127 (CK) & #798241 (Martha) +Some people eat sushi with their hands. 一些人用手吃寿司。 CC-BY 2.0 (France) Attribution: tatoeba.org #954279 (CK) & #1324002 (vicch) +Sometimes I have to read boring novels. 有时候,我不得不读一些无聊的小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #275362 (CM) & #787538 (fucongcong) +Speaking foreign languages is not easy. 講外語是不容易的。 CC-BY 2.0 (France) Attribution: tatoeba.org #21893 (Swift) & #798222 (Martha) +Suddenly, it started to rain very hard. 突然就下起了大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #280687 (CK) & #798067 (Martha) +Tell me how to use the washing machine. 告訴我洗衣機怎麼用。 CC-BY 2.0 (France) Attribution: tatoeba.org #273360 (CK) & #9096100 (xjjAstrus) +Thank you for agreeing to meet with us. 谢谢你答应来见我。 CC-BY 2.0 (France) Attribution: tatoeba.org #5951801 (mailohilohi) & #5951841 (yhlyhl) +That company is managed by a foreigner. 這家公司由一個外國人經營。 CC-BY 2.0 (France) Attribution: tatoeba.org #523073 (CK) & #908321 (Martha) +That responsibility is a burden to him. 那个责任对他是个负担。 CC-BY 2.0 (France) Attribution: tatoeba.org #45877 (CM) & #336466 (fucongcong) +The French lost the battle of Waterloo. 法國人在滑鐵盧之役吃了敗仗。 CC-BY 2.0 (France) Attribution: tatoeba.org #7829895 (sharris123) & #3322586 (cienias) +The accident took place at that corner. 事故發生在轉角。 CC-BY 2.0 (France) Attribution: tatoeba.org #47119 (Dejo) & #4732054 (egg0073) +The apple tree has a beautiful blossom. 苹果树上挂着美丽的花朵。 CC-BY 2.0 (France) Attribution: tatoeba.org #29623 (CK) & #2694358 (sadhen) +The city was full of starving soldiers. 城市裡充滿了飢餓的士兵。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728075 (paper1n0) & #4681030 (egg0073) +The committee consists of four members. 委员会由四个成员组成。 CC-BY 2.0 (France) Attribution: tatoeba.org #49661 (CM) & #784049 (fucongcong) +The days are getting longer and longer. 白天漸漸地越來越長。 CC-BY 2.0 (France) Attribution: tatoeba.org #40296 (CK) & #793200 (Martha) +The days are getting longer and longer. 白天越來越長了。 CC-BY 2.0 (France) Attribution: tatoeba.org #40296 (CK) & #819448 (Martha) +The days are getting longer and longer. 白天变得越来越长。 CC-BY 2.0 (France) Attribution: tatoeba.org #40296 (CK) & #1330014 (vicch) +The main question is how does Tom feel. 主要的问题是汤姆的感受如何。 CC-BY 2.0 (France) Attribution: tatoeba.org #8569540 (CK) & #8574680 (slo_oth) +The man and his wife helped each other. 这男人和他妻子互相帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #45429 (CK) & #332863 (fucongcong) +The man sitting next to me spoke to me. 坐在我旁边的男人跟我说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #252099 (CK) & #334075 (fucongcong) +The man you saw yesterday was my uncle. 你昨天看到的那个男人是我叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #408338 (Liface) & #333456 (fucongcong) +The missing cat has not been found yet. 失踪的猫还没被找到。 CC-BY 2.0 (France) Attribution: tatoeba.org #65938 (CK) & #829551 (fucongcong) +The moon is the earth's only satellite. 月球是地球唯一的卫星。 CC-BY 2.0 (France) Attribution: tatoeba.org #238831 (Eldad) & #332640 (fucongcong) +The only thing I have now are memories. 我现在仅有的东西就是我的记忆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #647600 (darinmex) & #812348 (fucongcong) +The phone rang when I was having lunch. 當我正在吃午餐時, 電話響了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277610 (CM) & #778526 (Martha) +The picture looks better at a distance. 这幅画远看更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #22072 (CK) & #336677 (fucongcong) +The police are looking into the matter. 警方正在调查。 CC-BY 2.0 (France) Attribution: tatoeba.org #238171 (CK) & #465886 (fucongcong) +The policeman aimed his gun at the man. 警察瞄准了那个男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #238118 (CK) & #461520 (fucongcong) +The policeman didn't tow your car away. 警察沒有拖走你的車。 CC-BY 2.0 (France) Attribution: tatoeba.org #1573750 (trieuho) & #6624651 (verdastelo9604) +The policeman grabbed the robber's arm. 警察抓著小偷的胳膊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1236479 (CK) & #793971 (Martha) +The president is difficult to approach. 总统很难接近。 CC-BY 2.0 (France) Attribution: tatoeba.org #68284 (CK) & #1541586 (CLARET) +The reporter criticized the politician. 記者批評了政治家。 CC-BY 2.0 (France) Attribution: tatoeba.org #20196 (CK) & #870299 (Martha) +The room has a seating capacity of 200. 这个房间能容纳200人。 CC-BY 2.0 (France) Attribution: tatoeba.org #319528 (CM) & #8589270 (easononizuka) +The sale prices are written in red ink. 售價用紅墨水寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #816346 (CK) & #816684 (Martha) +The taxi I took was very old and small. 我打的这辆出租车很老,也很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #246567 (CK) & #7768192 (jiangche) +The teacher made him stay after school. 老師要他放學後留在學校。 CC-BY 2.0 (France) Attribution: tatoeba.org #273062 (CK) & #819020 (Martha) +The telephone rang a few minutes later. 几分钟后,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1413787 (CK) & #332639 (fucongcong) +The thief got in without being noticed. 小偷在沒有被發現的情況下進去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278637 (CK) & #802514 (Martha) +The train is very crowded this evening. 列车在晚上很挤。 CC-BY 2.0 (France) Attribution: tatoeba.org #243255 (CK) & #5907506 (verdastelo9604) +The two nations have strong trade ties. 这两个国家有强大的贸易关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163181 (Source_VOA) & #2581548 (fenfang557) +The weather has been unusual this year. 今年的天氣一直異常。 CC-BY 2.0 (France) Attribution: tatoeba.org #243171 (CK) & #907544 (Martha) +The whole audience erupted in laughter. 哄堂大笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #277933 (CM) & #1395034 (mtdot) +The whole class is present once a week. 全班同学每周出席一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #242682 (human600) & #333705 (fucongcong) +Their goods are of the highest quality. 他们的货品有着最高的品质。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163183 (Source_VOA) & #2581556 (fenfang557) +There are a few shops next to my house. 我家旁边有几家商店。 CC-BY 2.0 (France) Attribution: tatoeba.org #662701 (bluepie88) & #408838 (fucongcong) +There are plenty of fish in this river. 这条河里有很多鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #45777 (Dejo) & #8761458 (crescat) +There is a beautiful park near my home. 我家附近有个漂亮的公园。 CC-BY 2.0 (France) Attribution: tatoeba.org #250500 (CK) & #333150 (fucongcong) +There is a photo of Tom on Mary's desk. 在瑪麗的桌上有張湯姆的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #3698147 (speedwell) & #6624682 (verdastelo9604) +There is not much traffic on this road. 这条路上的车辆不多。 CC-BY 2.0 (France) Attribution: tatoeba.org #57631 (papabear) & #787284 (fucongcong) +There was a castle here many years ago. 许多年前这里有一座城堡。 CC-BY 2.0 (France) Attribution: tatoeba.org #272129 (CK) & #808265 (fucongcong) +There was nothing the doctors could do. 醫生甚麼也做不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5827271 (Hybrid) & #6624728 (verdastelo9604) +There were a lot of people in the park. 公园里有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #240420 (CK) & #332847 (fucongcong) +There's nothing good on television now. 現在電視上沒有甚麼好看的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287284 (CK) & #6534807 (verdastelo9604) +These are cakes that she baked herself. 這些是她自己烤的蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #391890 (CK) & #895279 (Martha) +These products are of the same quality. 这些产品质量同等。 CC-BY 2.0 (France) Attribution: tatoeba.org #55147 (CK) & #796862 (fucongcong) +They announced that a storm was coming. 他們宣布了暴風雨即將來臨。 CC-BY 2.0 (France) Attribution: tatoeba.org #325255 (CK) & #874711 (Martha) +They arrived late because of the storm. 因为风暴,他们晚到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1412116 (CK) & #1415803 (sadhen) +They decided to get married next month. 他們決定在下個月結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #503818 (CK) & #896378 (Martha) +This coffee is too hot for me to drink. 这咖啡热得我没办法喝。 CC-BY 2.0 (France) Attribution: tatoeba.org #407685 (CK) & #441485 (fucongcong) +This is the best pizza I've ever eaten. 這是我吃過的最好的比薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3344263 (Hybrid) & #6120819 (verdastelo9604) +This is the dictionary I use every day. 这是我每天都用的字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #55644 (Swift) & #401039 (fucongcong) +This place has a mysterious atmosphere. 这个地方有一种神秘的气氛。 CC-BY 2.0 (France) Attribution: tatoeba.org #2105 (CK) & #1778272 (sadhen) +This room has two closets for clothing. 這房間有兩個衣櫥。 CC-BY 2.0 (France) Attribution: tatoeba.org #464200 (lukaszpp) & #1227104 (tsayng) +This sentence is grammatically correct. 这个句子在语法上是正确的。 CC-BY 2.0 (France) Attribution: tatoeba.org #57228 (CK) & #4262249 (notabene) +This sofa can seat three people easily. 这张沙发起码可以坐三个人。 CC-BY 2.0 (France) Attribution: tatoeba.org #60928 (CM) & #787292 (fucongcong) +This stuff is worth its weight in gold! 這個東西很有價值。 CC-BY 2.0 (France) Attribution: tatoeba.org #916497 (Zifre) & #916503 (Martha) +To tell the truth, I completely forgot. 說實話,我完全忘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #265142 (CK) & #798411 (Martha) +Tom and Mary have a daughter and a son. Tom和Mary有個女兒和兒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493567 (CK) & #4504442 (egg0073) +Tom asked Mary where she'd put the key. 湯姆問瑪麗她把鑰匙放在哪裡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095845 (CK) & #6923201 (verdastelo9604) +Tom begged me to let him go home early. 汤姆求我让他早点回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3426255 (CK) & #5574714 (verdastelo9604) +Tom certainly is an interesting person. 汤姆这人确实很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095435 (CK) & #1238193 (sunnywqing) +Tom definitely looks younger than Mary. 汤姆看起来的确比玛丽年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094910 (CK) & #1235588 (sunnywqing) +Tom doesn't drive as carefully as I do. 汤姆不像我这样开车小心。 CC-BY 2.0 (France) Attribution: tatoeba.org #3681360 (CK) & #5983628 (verdastelo9604) +Tom doesn't enjoy tennis and never has. 汤姆不喜欢网球,从来不。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026194 (CK) & #5551143 (verdastelo9604) +Tom doesn't know what he should do now. 汤姆不知道他现在应该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #6829617 (CK) & #8553157 (slo_oth) +Tom encouraged his son to study French. 汤姆鼓励他儿子学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3171590 (CK) & #5794150 (verdastelo9604) +Tom hasn't taken a bath in a long time. 汤姆很长时间没洗澡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586751 (CK) & #8589661 (tianblr) +Tom hung his jacket in the hall closet. 汤姆把他的夹克挂在大厅衣柜里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093523 (CK) & #5624956 (verdastelo9604) +Tom is afraid to go out alone at night. 汤姆害怕晚上一个人出门儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025110 (CK) & #1235642 (sunnywqing) +Tom is going to a concert this evening. 汤姆今晚会去演唱会。 CC-BY 2.0 (France) Attribution: tatoeba.org #7958968 (CK) & #8854603 (crescat) +Tom is no longer a member of this club. 汤姆不再是俱乐部的成员了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755522 (CK) & #4764665 (ryanwoo) +Tom isn't very good at speaking French. 湯姆說法語不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3428465 (CK) & #6134990 (verdastelo9604) +Tom joined our company three years ago. 汤姆三年前进了我们公司。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017289 (CK) & #5856795 (verdastelo9604) +Tom knows how to play mahjong, I think. 汤姆知道怎么玩麻将,我觉得。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734210 (CK) & #5574894 (verdastelo9604) +Tom never did that when he was younger. 汤姆年轻时从不那么干。 CC-BY 2.0 (France) Attribution: tatoeba.org #6246988 (CK) & #8975256 (WilsonWong) +Tom prepared his speech very carefully. 湯姆很認真地準備他的演講。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729905 (CM) & #6103243 (verdastelo9604) +Tom said he wanted to eat Chinese food. 湯姆說他想吃中國菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164254 (CK) & #6332425 (verdastelo9604) +Tom said that he'd leave the door open. 汤姆说他打算让门开着。 CC-BY 2.0 (France) Attribution: tatoeba.org #7204887 (CK) & #8975262 (WilsonWong) +Tom says that he's a creature of habit. 汤姆说他是习惯的产物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024209 (CK) & #5869916 (verdastelo9604) +Tom was a bit puzzled by Mary's answer. 汤姆被玛丽的回答困惑了一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538828 (CK) & #5611574 (verdastelo9604) +Tom wasn't going to do anything to you. 汤姆不打算给你做任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729122 (CM) & #5650451 (verdastelo9604) +Tom won't likely be grumpy again today. 汤姆今天脾气不太可能会那么坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6246363 (CK) & #8743672 (slo_oth) +Ultraviolet rays can cause skin cancer. 紫外線可導致皮膚癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #263366 (CK) & #796940 (Martha) +Unfortunately, there was no one around. 很不幸,没有人在身边。 CC-BY 2.0 (France) Attribution: tatoeba.org #71938 (CM) & #335544 (fucongcong) +Water freezes at 32 degrees Fahrenheit. 水在華氏32度結成冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #270784 (CK) & #798360 (Martha) +We arrived at a small town in Hokkaido. 我们到达了北海道的一个小镇。 CC-BY 2.0 (France) Attribution: tatoeba.org #249375 (CK) & #1395005 (mtdot) +We failed due to a lack of preparation. 我們因缺乏準備而失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22915 (eastasiastudent) & #778488 (Martha) +We guarantee our products for one year. 我們保證我們的產品一年。 CC-BY 2.0 (France) Attribution: tatoeba.org #320483 (CK) & #802016 (Martha) +We have a lot of rain in June and July. 六七月份雨很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #6029625 (CK) & #7781468 (jiangche) +We must respect other people's privacy. 我們必須尊重別人的私隱。 CC-BY 2.0 (France) Attribution: tatoeba.org #825980 (jellorage) & #827593 (Martha) +We will only consent on that condition. 我们只会在那样的条件下同意。 CC-BY 2.0 (France) Attribution: tatoeba.org #46178 (CK) & #336875 (fucongcong) +We won't get paid extra for doing this. 我们做这事没有额外报酬。 CC-BY 2.0 (France) Attribution: tatoeba.org #4889971 (CK) & #5856738 (verdastelo9604) +We would like you to come to our party. 我们希望你来我们的聚会。 CC-BY 2.0 (France) Attribution: tatoeba.org #262693 (CK) & #5591016 (verdastelo9604) +We'll probably be the first ones there. 我們可能是最先到那裡的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2953867 (CK) & #6216623 (verdastelo9604) +What he said would happen has happened. 他說會發生的事情已經發生了。 CC-BY 2.0 (France) Attribution: tatoeba.org #466718 (CK) & #903515 (Martha) +What is the tallest mountain in Europe? 请问在欧洲最高的山是哪儿呢? CC-BY 2.0 (France) Attribution: tatoeba.org #556619 (Pun_intended) & #8690332 (crescat) +What prevented you from coming earlier? 什麼阻止你早點來了? CC-BY 2.0 (France) Attribution: tatoeba.org #16455 (CK) & #775788 (Martha) +What prevented you from coming earlier? 為什麼你不能早點來? CC-BY 2.0 (France) Attribution: tatoeba.org #16455 (CK) & #775789 (Martha) +What subjects are you taking at school? 你在學校裡讀哪些科目? CC-BY 2.0 (France) Attribution: tatoeba.org #16234 (Zifre) & #775762 (Martha) +What's your favorite way to cook beans? 你最喜歡用什麼方法煮豆子? CC-BY 2.0 (France) Attribution: tatoeba.org #906931 (CK) & #5548486 (egg0073) +What's your favorite way to cook trout? 你最喜欢怎么烧鲑鱼? CC-BY 2.0 (France) Attribution: tatoeba.org #906933 (CK) & #2215475 (sadhen) +When I heard the news, I wanted to cry. 当我听到这个消息时,我想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #352274 (human600) & #462049 (fucongcong) +When did you graduate from high school? 你什麼時候中學畢業? CC-BY 2.0 (France) Attribution: tatoeba.org #66018 (CK) & #903008 (Martha) +When he feels fine, he goes for a walk. 当他感到舒服时,他去散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #20284 (CK) & #5574445 (verdastelo9604) +When the phone rang, I was watching TV. 电话响的时候,我在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819956 (sharris123) & #464949 (fucongcong) +Where did you get your camera repaired? 你在哪儿修的照相机? CC-BY 2.0 (France) Attribution: tatoeba.org #38202 (CK) & #787236 (fucongcong) +Which do you like better, dogs or cats? 狗和猫你更喜欢哪一个? CC-BY 2.0 (France) Attribution: tatoeba.org #6912232 (CK) & #4887666 (musclegirlxyp) +Which do you like better, this or that? 你更喜欢哪个,这个还是那个? CC-BY 2.0 (France) Attribution: tatoeba.org #70063 (CM) & #332849 (fucongcong) +Who did you hang out with last weekend? 你上週末跟誰閒逛了? CC-BY 2.0 (France) Attribution: tatoeba.org #4529240 (CK) & #6132357 (verdastelo9604) +Who told you that Tom and I are dating? 谁告诉你我和汤姆在交往的? CC-BY 2.0 (France) Attribution: tatoeba.org #4144816 (CK) & #4147294 (sissima) +Will you show me your passport, please? 能否请您给我看一下您的护照? CC-BY 2.0 (France) Attribution: tatoeba.org #35272 (autuno) & #462033 (fucongcong) +Without your advice, I would've failed. 沒有你們的意見,我就失敗了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678700 (CK) & #900706 (Martha) +Would you please give me some more tea? 你能再给我点茶吗? CC-BY 2.0 (France) Attribution: tatoeba.org #51452 (CK) & #332841 (fucongcong) +You can go to the ballpark on this bus. 坐這個公車可以到球場。 CC-BY 2.0 (France) Attribution: tatoeba.org #60691 (CK) & #8387433 (wangchou) +You can't allow Tom to do that anymore. 你不能再允許湯姆那麼做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6224062 (CK) & #6624618 (verdastelo9604) +You didn't need to bring your umbrella. 你不必帶你的傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #1352397 (etala) & #6057845 (verdastelo9604) +You don't have to stay in the hospital. 你不必要呆在医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #281917 (CK) & #1314453 (vicch) +You don't need to carry lunch with you. 你不需要隨身帶著午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #320463 (CK) & #793516 (Martha) +You have something stuck in your teeth. 牙齿卡了点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #8219705 (Hybrid) & #8589339 (easononizuka) +You haven't even asked me what I think. 你甚沒問過我怎麼想。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819895 (CK) & #6333804 (verdastelo9604) +You made the same mistake as last time. 你犯了跟上次相同的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #15944 (CK) & #775671 (Martha) +You may choose whichever book you like. 你可以選擇任何你喜歡的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #37926 (CK) & #793888 (Martha) +You must come back before it gets dark. 你必须在天黑前回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #69698 (CK) & #333233 (fucongcong) +You need to put more water in the vase. 你需要往花瓶里加更多的水。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144903 (Hybrid) & #4148149 (sissima) +You seem to ask Tom a lot of questions. 你看來問了湯姆很多問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #2980461 (CK) & #6105200 (verdastelo9604) +You should apologize for your rudeness. 您该为您的粗鲁道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #63225 (CK) & #784519 (fucongcong) +You should begin with easier questions. 你應該先從最簡單的問題開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #632492 (CK) & #796040 (Martha) +You were considerate not to disturb us. 你考虑周到,没有打扰我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #247391 (CK) & #332563 (fucongcong) +You won't be happy no matter what I do. 无论我做什么,你都不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044906 (CK) & #5613700 (verdastelo9604) +You work as hard as he did at your age. 你跟他在你這個年紀時一樣努力工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #15848 (Zifre) & #775636 (Martha) +You'd better stay here a little longer. 你最好在這裡待久一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #8985597 (CK) & #775783 (Martha) +You'd better take an umbrella with you. 你最好隨身帶把傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #4434905 (AlanF_US) & #775732 (Martha) +You're not supposed to be in this area. 你不应该待在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2835585 (CK) & #3770515 (Debbie_Linder) +You're not trying to trick me, are you? 你没打算耍我,对吧? CC-BY 2.0 (France) Attribution: tatoeba.org #3492765 (Hybrid) & #5581799 (verdastelo9604) +You're probably smarter than you think. 你可能比你想的更聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734214 (CK) & #5983581 (verdastelo9604) +You're too suspicious about everything. 你对什么都太怀疑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16253 (CK) & #469406 (fucongcong) +You're welcome to do anything you like. 您可以做任何您想做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #8980322 (CK) & #4265087 (notabene) +Your watch is more expensive than mine. 你的手表比我的贵。 CC-BY 2.0 (France) Attribution: tatoeba.org #17106 (papabear) & #481172 (fucongcong) +A computer is an absolute necessity now. 電腦現在是一個絕對必要的東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #54558 (CK) & #801309 (Martha) +A drunken man was sleeping on the bench. 一個醉了的男人在長椅上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #270974 (CK) & #677623 (Martha) +A few minutes later, the telephone rang. 几分钟后,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7780178 (CK) & #332639 (fucongcong) +A little knowledge is a dangerous thing. 只有一點點的知識是危險的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #271877 (CK) & #797043 (Martha) +A lot of people swim here in the summer. 许多人夏天在这里游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #5592862 (CK) & #5900377 (verdastelo9604) +A rabbit has long ears and a short tail. 兔子有长耳朵和短尾巴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2117 (Zifre) & #503217 (fucongcong) +A rabbit has long ears and a short tail. 兔子长着长长的耳朵和短短的尾巴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2117 (Zifre) & #1862599 (sadhen) +A stewardess was rescued from the wreck. 一名空姐從飛機殘骸中被救出來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51965 (CK) & #801462 (Martha) +A string of disasters struck the region. 一連串的災難襲擊這個地區。 CC-BY 2.0 (France) Attribution: tatoeba.org #244189 (CK) & #797066 (Martha) +A wooden building can easily catch fire. 木质房屋很容易着火。 CC-BY 2.0 (France) Attribution: tatoeba.org #323646 (CM) & #2029284 (ydcok) +Absolutely nothing is permanent in life. 生活中绝对没有什么是持久的。 CC-BY 2.0 (France) Attribution: tatoeba.org #741534 (darinmex) & #799269 (fucongcong) +All the furniture was covered with dust. 所有的家具都佈滿了灰塵。 CC-BY 2.0 (France) Attribution: tatoeba.org #24106 (mamat) & #801467 (Martha) +Are you aware of how much she loves you? 你知道她有多麼愛你嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15784 (Swift) & #803871 (Martha) +Are you interested in foreign languages? 你们对外语感兴趣吗? CC-BY 2.0 (France) Attribution: tatoeba.org #21918 (CK) & #332725 (fucongcong) +Are you really going to London to study? 你要去伦敦读书是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #387495 (Mouseneb) & #335020 (fucongcong) +As he spoke, pictures came into my mind. 他说的时候,我脑中浮现出了画面。 CC-BY 2.0 (France) Attribution: tatoeba.org #287833 (CM) & #5655385 (verdastelo9604) +Australia is smaller than South America. 澳洲比南美洲小。 CC-BY 2.0 (France) Attribution: tatoeba.org #65144 (CK) & #333155 (fucongcong) +Can you tell me a little about yourself? 你能稍微告诉我关于自己的事情吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4233747 (CK) & #5091776 (mirrorvan) +Can you translate English into Japanese? 你可以把英文翻譯成日語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69644 (CK) & #811823 (Martha) +China is twenty times as large as Japan. 中国是日本的20倍大。 CC-BY 2.0 (France) Attribution: tatoeba.org #277494 (CM) & #843457 (fucongcong) +Compare your answers with the teacher's. 把你的答案和老师的比较一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #16944 (CK) & #1878271 (sadhen) +Could you please lend me thirty dollars? 請問你能借給我三十美圓嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2951602 (CK) & #6197301 (verdastelo9604) +Could you please not smoke in this room? 请问你能不在房间里吸烟吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1268812 (jared1981) & #5903471 (verdastelo9604) +Could you tell me where I can get a bus? 你能告诉我能在哪里上公交车吗? CC-BY 2.0 (France) Attribution: tatoeba.org #35318 (CK) & #1366052 (sadhen) +Cover your head when you are in the sun. 當你在陽光下的時候,遮住你的頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #34648 (CK) & #881728 (Martha) +Did you buy her something for Christmas? 你聖誕節買東西給她了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #414579 (CK) & #874690 (Martha) +Do you have any friends who are doctors? 你有朋友是醫生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7802106 (CK) & #6056462 (xjjAstrus) +Do you have any idea where Tom could be? 你知道湯姆能在哪裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4017046 (CK) & #6148392 (verdastelo9604) +Do you know where Tom is waiting for us? 你知道汤姆在哪里等我们吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3168460 (CK) & #5650471 (verdastelo9604) +Do you plan to eat all of that yourself? 你打算自己一人把它全部吃了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4922932 (CK) & #5096428 (mirrorvan) +Do you really think that Tom won't come? 你真的认为汤姆不会去吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1197017 (CK) & #2394597 (fenfang557) +Does it matter to you how much it costs? 它花多少钱对你很重要吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2582132 (CK) & #5933804 (verdastelo9604) +Doesn't Tom go to Australia every month? 汤姆不是每个月都去澳大利亚吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7194948 (CK) & #8589255 (easononizuka) +Don't enter the room without permission. 未經允許請勿進入這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #525744 (CK) & #844650 (Martha) +Don't forget Tom is allergic to peanuts. 不要忘记汤姆对花生过敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #7515506 (CK) & #8739642 (slo_oth) +Don't laugh at him for making a mistake. 不要笑他犯了错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #20849 (Zifre) & #336508 (fucongcong) +Don't laugh at him for making a mistake. 不要因为他犯了一个错误就嘲笑他。 CC-BY 2.0 (France) Attribution: tatoeba.org #20849 (Zifre) & #392684 (fucongcong) +Each year Hamamatsu has a kite festival. 每年濱松有風箏節。 CC-BY 2.0 (France) Attribution: tatoeba.org #322461 (CK) & #881046 (Martha) +English has spread all over the country. 英語已經普及全國。 CC-BY 2.0 (France) Attribution: tatoeba.org #26253 (CK) & #811860 (Martha) +Express yourself as clearly as possible. 盡可能明確地表達你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #817970 (Cindrogriza) & #818161 (Martha) +Father is going to undergo an operation. 父亲将会接受手术。 CC-BY 2.0 (France) Attribution: tatoeba.org #319267 (CM) & #334235 (fucongcong) +Foreigners are interesting, aren't they? 外国人真有意思,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1422481 (CK) & #1990188 (sunnywqing) +Fortunately, no passengers were injured. 万幸,没乘客受伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #1203981 (CK) & #2624589 (fenfang557) +Gravity brings everything down to Earth. 重力将一切带下地球表面。 CC-BY 2.0 (France) Attribution: tatoeba.org #681099 (Source_VOA) & #3338908 (sadhen) +Have you ever been stuck in an elevator? 你有沒有被困在電梯裡過? CC-BY 2.0 (France) Attribution: tatoeba.org #953289 (CK) & #9135844 (xjjAstrus) +Have you finished reading that book yet? 你讀完那本書了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16409 (Zifre) & #775785 (Martha) +He enjoys watching baseball games on TV. 他喜歡看電視上的棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #388837 (CK) & #881537 (Martha) +He fell in love with her at first sight. 他對她一見鍾情。 CC-BY 2.0 (France) Attribution: tatoeba.org #293837 (CK) & #793209 (Martha) +He fought against racial discrimination. 他反對種族歧視。 CC-BY 2.0 (France) Attribution: tatoeba.org #300140 (kebukebu) & #761264 (Martha) +He got a broken jaw and lost some teeth. 他磕碎了下巴,掉了几颗牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #294880 (CK) & #812212 (fucongcong) +He graduated from Cambridge with honors. 他以优异的成绩毕业于剑桥大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #289799 (CK) & #334577 (fucongcong) +He has a strong sense of responsibility. 他有強烈的責任感。 CC-BY 2.0 (France) Attribution: tatoeba.org #300585 (CK) & #883456 (Martha) +He has made a fortune through hard work. 他通过努力挣了大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #301843 (CM) & #5613681 (verdastelo9604) +He has over a million dollars in assets. 他有超过一百万美元的资产。 CC-BY 2.0 (France) Attribution: tatoeba.org #2975026 (fabiobasso) & #8739618 (slo_oth) +He is going to leave tomorrow afternoon. 他將在明天下午離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #304086 (CK) & #804817 (Martha) +He is not as intelligent as his brother. 他沒有他弟弟聰明。 CC-BY 2.0 (France) Attribution: tatoeba.org #808757 (willhite2) & #810081 (Martha) +He is not as smart as his older brother. 他不像他的兄长那样聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #468045 (CK) & #469239 (fucongcong) +He made mistakes on purpose to annoy me. 他为了惹恼我故意犯错。 CC-BY 2.0 (France) Attribution: tatoeba.org #298134 (CK) & #1397133 (mtdot) +He objected to his wife working outside. 他反对妻子在外工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #296771 (CK) & #2080585 (sadhen) +He promised to come, but he didn't come. 他保证过会来却没有来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1300795 (CK) & #1328210 (vicch) +He retired to his own room after supper. 他在吃过晚餐后回到了自己的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #304487 (CM) & #8815170 (crescat) +He spent the night at his uncle's place. 他在他舅舅那裏過夜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1501426 (weihaiping) & #1485423 (cienias) +He thought that it was like a bird cage. 他认为这像个鸟笼。 CC-BY 2.0 (France) Attribution: tatoeba.org #42221 (CK) & #5640782 (verdastelo9604) +He was admitted without taking the exam. 他承認沒有參加考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #388907 (CK) & #887731 (Martha) +He was an intelligent and practical man. 他是聪明能干的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164795 (cntrational) & #5686999 (verdastelo9604) +He was completely engrossed in the book. 他完全沉浸在書裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #302105 (Dejo) & #811927 (Martha) +He was happy at the news of her success. 听到她成功的消息,他很高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #309487 (CM) & #332579 (fucongcong) +He wrote this book at the age of twenty. 他在20岁的时候写了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #288476 (CK) & #816430 (fucongcong) +He's always worrying about his daughter. 他一直很担心他的女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #289220 (CK) & #332983 (fucongcong) +Her father made her tell him everything. 她的父親要她告訴他一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #308973 (CK) & #819022 (Martha) +Her only pleasure is listening to music. 她唯一的樂趣就是聽音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #309832 (CK) & #754658 (Martha) +Her toy was broken by her little sister. 她的玩具是被她妹妹弄壞的。 CC-BY 2.0 (France) Attribution: tatoeba.org #777617 (eastasiastudent) & #777616 (egg0073) +His second son married and settled down. 他的第二個兒子結婚並定居下來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #287280 (CK) & #794055 (Martha) +How could it be done without my knowing? 怎么可能在我不知道的情况下做完呢? CC-BY 2.0 (France) Attribution: tatoeba.org #7127425 (CM) & #8743637 (cxpadonis) +How long are you going to stay in Japan? 你會在日本多久? CC-BY 2.0 (France) Attribution: tatoeba.org #66134 (CK) & #881292 (Martha) +How long are you going to stay in Japan? 你會待在日本多久? CC-BY 2.0 (France) Attribution: tatoeba.org #66134 (CK) & #881547 (Martha) +How many prefectures are there in Japan? 日本有多少個縣? CC-BY 2.0 (France) Attribution: tatoeba.org #542890 (blay_paul) & #769616 (Martha) +How much do you want in terms of salary? 您想要多少工资? CC-BY 2.0 (France) Attribution: tatoeba.org #7770404 (sharris123) & #805538 (fucongcong) +How much longer will you stay in Boston? 你在波士顿再待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #4500726 (CK) & #5865540 (verdastelo9604) +I always dreamed of being a billionaire. 我總是梦想著成為億萬富翁。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851583 (CK) & #6114446 (verdastelo9604) +I am happy to have so many good friends. 我很高興有這麼多好朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #30050 (CK) & #2637067 (cienias) +I am thinking of going abroad next year. 我在考虑明年去国外。 CC-BY 2.0 (France) Attribution: tatoeba.org #262160 (CK) & #335032 (fucongcong) +I anticipate that there will be trouble. 我預料會有麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #243440 (CK) & #941094 (Martha) +I barely escaped being hit by the truck. 我差點被卡車撞上。 CC-BY 2.0 (France) Attribution: tatoeba.org #31304 (CK) & #6871858 (verdastelo9604) +I bought a newspaper written in English. 我买了份英文写的报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #256199 (CK) & #441466 (fucongcong) +I bought this book at Maruzen Bookstore. 我在书商Maruzen那里买了这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #253745 (CK) & #337875 (fucongcong) +I can read German, but I can't speak it. 我能看德语,但是不能说。 CC-BY 2.0 (France) Attribution: tatoeba.org #255146 (CK) & #2442272 (ydcok) +I can read German, but I can't speak it. 我能看懂德语,但不会说。 CC-BY 2.0 (France) Attribution: tatoeba.org #255146 (CK) & #4887735 (musclegirlxyp) +I can't bring myself to do such a thing. 我不能让自己做这样的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #254866 (CK) & #332681 (fucongcong) +I can't put up with the heat any longer. 我受不了这大热天了。 CC-BY 2.0 (France) Attribution: tatoeba.org #54914 (CK) & #8671325 (crescat) +I can't see anything without my glasses. 我没带眼镜就什么都看不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #4731172 (hajenso) & #4731435 (woodmouth) +I can't tell you how much I'll miss Tom. 我不会告诉你我有多想念汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955022 (CK) & #3773416 (Debbie_Linder) +I cannot distinguish a frog from a toad. 我无法区分青蛙和蟾蜍。 CC-BY 2.0 (France) Attribution: tatoeba.org #664980 (nickyeow) & #490102 (fucongcong) +I could barely get out of bed yesterday. 我昨天幾乎下不了床。 CC-BY 2.0 (France) Attribution: tatoeba.org #2308060 (CK) & #6633868 (verdastelo9604) +I could hear her sobbing in her bedroom. 我能聽見她在她的臥室裡抽泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #308488 (CK) & #6114383 (verdastelo9604) +I could not convince him of his mistake. 我没能让他相信他的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #28943 (CM) & #5574442 (verdastelo9604) +I could not keep the tears from my eyes. 我没法忍住我的眼泪。 CC-BY 2.0 (France) Attribution: tatoeba.org #241527 (CK) & #785843 (fucongcong) +I could smell the alcohol on his breath. 我能闻到他呼吸中的酒精味。 CC-BY 2.0 (France) Attribution: tatoeba.org #3500606 (Hybrid) & #5611605 (verdastelo9604) +I couldn't remember ever having met her. 我不记得曾经见过她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308854 (sacredceltic) & #1541581 (CLARET) +I didn't do anything during my vacation. 在假期中我什麼都沒有做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5165053 (shibeilei) & #5114740 (xjjAstrus) +I didn't know you were going to be here. 我不知道你要來這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #5614396 (CK) & #6101483 (verdastelo9604) +I didn't think that Tom would be scared. 我没想到汤姆会害怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #7144048 (CK) & #8696336 (crescat) +I do not know whether it is good or not. 我不知道它是好是坏。 CC-BY 2.0 (France) Attribution: tatoeba.org #43074 (CK) & #5558555 (verdastelo9604) +I don't feel like eating anything today. 我今天不想吃东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #242787 (CK) & #5967296 (verdastelo9604) +I don't know if I'll have time to do it. 我不知道我是否有时间做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2459 (CK) & #334403 (fucongcong) +I don't know if she wants to go with me. 我不知道她想不想和我一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #308313 (CK) & #2029298 (ydcok) +I don't know whether I have time or not. 我不知道我有沒有時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #2357185 (anndiana) & #17 (Martha) +I don't know whether I have time or not. 我不知道有没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #2357185 (anndiana) & #4859571 (musclegirlxyp) +I don't make deals with people like you. 我不跟你这样的人做生意。 CC-BY 2.0 (France) Attribution: tatoeba.org #2361349 (CK) & #5780612 (verdastelo9604) +I enjoyed talking with him at the party. 聚会上我和他谈得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #260185 (CK) & #1438463 (asosan) +I enjoyed talking with him at the party. 在派对中我和他聊得很开心。 CC-BY 2.0 (France) Attribution: tatoeba.org #260185 (CK) & #2393699 (fenfang557) +I envy the friendship Tom and Mary have. 我羨慕Tom 和Mary 之間的友誼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1970214 (CK) & #5359475 (egg0073) +I erased the blackboard for the teacher. 我为老师擦黑板。 CC-BY 2.0 (France) Attribution: tatoeba.org #2325182 (CK) & #3338935 (sadhen) +I feel like my head is going to explode. 我感覚我的頭要炸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3299713 (Hybrid) & #6150884 (verdastelo9604) +I found the comic book very interesting. 我發現這本漫畫書非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #49861 (CK) & #805582 (Martha) +I found the field trip very educational. 我發現實地考察很有教育意義。 CC-BY 2.0 (France) Attribution: tatoeba.org #46891 (CK) & #805576 (Martha) +I get depressed by the slightest things. 我為小事情覺得沮喪。 CC-BY 2.0 (France) Attribution: tatoeba.org #40070 (CK) & #805015 (Martha) +I got the information from him directly. 我直接從他那裡得到訊息。 CC-BY 2.0 (France) Attribution: tatoeba.org #260004 (CK) & #802310 (Martha) +I grow tomatoes and onions in my garden. 我在花园种了番茄和洋葱。 CC-BY 2.0 (France) Attribution: tatoeba.org #8545228 (CK) & #8865174 (crescat) +I had a really bad nightmare last night. 昨晚我做了一个可怕的噩梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #2966872 (meerkat) & #4970087 (wzhd) +I had no choice but to accept the offer. 除了接受报价,我别无选择。 CC-BY 2.0 (France) Attribution: tatoeba.org #46065 (CK) & #804835 (fucongcong) +I had some trouble in finding his house. 我很難找到他的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #285713 (Iolanda) & #780346 (Martha) +I have a very sore arm where you hit me. 你打在我手臂上的地方超级痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #17547 (CK) & #2032321 (ydcok) +I have put on two kilograms this summer. 这个夏天我胖了两公斤。 CC-BY 2.0 (France) Attribution: tatoeba.org #253557 (Zifre) & #8832014 (crescat) +I hope that Mary passes the examination. 我希望瑪麗通過考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #388728 (CK) & #881229 (Martha) +I know you're learning French at school. 我知道你在學校學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #7240476 (CK) & #6103233 (verdastelo9604) +I looked after him for a period of time. 我看了他一段时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1538985 (SHamp) & #463893 (fucongcong) +I need a pencil. Can I use one of yours? 我需要一支铅笔,我能用你的其中一支吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25775 (CK) & #810975 (fucongcong) +I really want to speak English fluently. 我很想流利地说英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #997862 (NickC) & #993675 (leoyzy) +I still prefer to write letters by hand. 我更喜欢用手写信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1798891 (Amastan) & #5617192 (verdastelo9604) +I swear that I'll never do such a thing. 我发誓我不会做这种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810503 (CM) & #5617156 (verdastelo9604) +I thank you from the bottom of my heart. 我打心底里感激你。 CC-BY 2.0 (France) Attribution: tatoeba.org #268952 (CK) & #4759994 (ryanwoo) +I thank you very much for your kindness. 我十分感谢你的好意。 CC-BY 2.0 (France) Attribution: tatoeba.org #436983 (lukaszpp) & #5556067 (verdastelo9604) +I think Tom will likely like this movie. 我認為湯姆很可能會喜歡這部電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #6524527 (CK) & #6845580 (verdastelo9604) +I think it's time for me to buy a house. 我想我該是時候買間房子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #903811 (CK) & #2638679 (cienias) +I think that Tom is a bit too impatient. 我觉得汤姆有些过于性急了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7168398 (CK) & #8703974 (crescat) +I think that what you're doing is wrong. 我觉得你正在做的是错的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7136875 (CK) & #8795145 (crescat) +I think you should open an account here. 我认为你应该在这里开个账户。 CC-BY 2.0 (France) Attribution: tatoeba.org #1866993 (CK) & #5551197 (verdastelo9604) +I thought Tom had a soccer game tonight. 我以为汤姆今晚有足球比赛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961464 (CK) & #5091639 (mirrorvan) +I used to play alone when I was a child. 我小时候常常独自玩耍。 CC-BY 2.0 (France) Attribution: tatoeba.org #245849 (CM) & #332850 (Martha) +I waited for her for a really long time. 我真的等了她很長一段時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #826490 (odiernod) & #827553 (Martha) +I walk my dog in the park every morning. 我每天早上到公园里遛狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #322376 (CK) & #334688 (fucongcong) +I want to buy a few pairs of sunglasses. 我想買幾副墨鏡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4769400 (garborg) & #4189388 (egg0073) +I want you to not go to Boston with Tom. 我要你別和湯姆去波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2026592 (CK) & #3383343 (hanchingame) +I was at home most of the day yesterday. 我昨天大部分时间在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2611896 (CK) & #5624924 (verdastelo9604) +I was terribly confused by his question. 我對他的問題感到非常困惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #403308 (CK) & #881565 (Martha) +I was terribly confused by his question. 我對他的問題感到非常迷惑。 CC-BY 2.0 (France) Attribution: tatoeba.org #403308 (CK) & #889180 (Martha) +I was told that I don't need to do that. 有人告訴我我不用做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6243203 (CK) & #6472023 (verdastelo9604) +I weighed myself on the bathroom scales. 我用浴室的体重计量了体重。 CC-BY 2.0 (France) Attribution: tatoeba.org #324956 (CK) & #8730060 (crescat) +I will do the shopping for her birthday. 我要去给她生日买点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #309566 (Dejo) & #343796 (fucongcong) +I will get you a bike for your birthday. 你生日的时候,我送你一辆自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1499325 (CM) & #334048 (fucongcong) +I wish I could go to the party with you. 我希望我能和你一起参加派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #17612 (CK) & #1433798 (sadhen) +I wish that I could speak French better. 我希望我能说法语说得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735631 (CK) & #5581804 (verdastelo9604) +I worked three years as Tom's assistant. 我给汤姆当了三年助手。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538744 (CK) & #5640749 (verdastelo9604) +I would rather stay at home than go out. 比起出门,我更喜欢待在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #21862 (CK) & #333435 (fucongcong) +I'd like to introduce you to my parents. 我想介紹你給我父母認識。 CC-BY 2.0 (France) Attribution: tatoeba.org #2481175 (FeuDRenais) & #2480489 (tsayng) +I'd like to live in the suburbs of Kobe. 我喜歡住在科比的郊區。 CC-BY 2.0 (France) Attribution: tatoeba.org #258851 (CK) & #781130 (Martha) +I'll come and see you one of these days. 这些天我会抽一天来看你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #18780 (CK) & #805037 (fucongcong) +I'm at work now, so I'll call you later. 我现在在上班,所以晚点打给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #241826 (CK) & #333223 (fucongcong) +I'm fairly confident that I can do that. 我相当有自信我能做到这一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #6866194 (CK) & #8792042 (slo_oth) +I'm looking forward to hearing from you. 我期待收到您的來信。 CC-BY 2.0 (France) Attribution: tatoeba.org #17944 (CK) & #894168 (Martha) +I'm looking forward to seeing you again. 我期待再見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #257051 (CK) & #894005 (Martha) +I'm not ashamed of my father being poor. 我父亲很穷并不让我觉得丢脸。 CC-BY 2.0 (France) Attribution: tatoeba.org #261524 (CM) & #435383 (fucongcong) +I'm prepared to accept the consequences. 我准备好了承担后果。 CC-BY 2.0 (France) Attribution: tatoeba.org #2287006 (CK) & #4759969 (ryanwoo) +I'm sorry to cause you all this trouble. 我很抱歉给你惹来所有的这些麻烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #54723 (CK) & #390448 (fucongcong) +I'm studying at the University of Hyogo. 我在兵库县立大学学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #452961 (Benjameno) & #1706454 (sadhen) +I'm tired of working a nine-to-five job. 我厭倦了做朝九晚五的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #261504 (CK) & #798415 (Martha) +I'm very sorry that I came home so late. 我很抱歉那么晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #7186135 (CK) & #334785 (fucongcong) +I've already finished reading this book. 我已經讀完了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1276906 (CK) & #846442 (Martha) +I've always wanted to learn how to swim. 我一直想学习如何游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #953875 (CK) & #1446882 (asosan) +I've been going out with her for months. 我和她交往幾個月了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25008 (CK) & #1229016 (tsayng) +I've been told Tom is going to be fired. 有人告訴過我湯姆要被開除。 CC-BY 2.0 (France) Attribution: tatoeba.org #3203877 (CK) & #6633898 (verdastelo9604) +I've just returned from the post office. 我刚从邮局回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4807711 (CK) & #4815188 (McMeao) +If I had the money, I'd buy a new house. 如果我有錢,我會買一個新房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #7808957 (CK) & #6015376 (xjjAstrus) +If I won the lottery, I'd buy a new car. 如果我中了彩票,我会买辆新车。 CC-BY 2.0 (France) Attribution: tatoeba.org #4099431 (CK) & #4099650 (maple) +If it's not too expensive, I'll do that. 如果不是太贵的话,我会买的 CC-BY 2.0 (France) Attribution: tatoeba.org #6343577 (CK) & #8743666 (cxpadonis) +If you want a pencil, I'll lend you one. 如果你需要铅笔,我借你一支。 CC-BY 2.0 (France) Attribution: tatoeba.org #30923 (CK) & #808253 (fucongcong) +Is it true that Tom can't read or write? 汤姆真的不会读也不会写吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3678148 (CK) & #7772141 (jiangche) +Is there anything that I should not eat? 有什么东西是我不该吃的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25080 (CK) & #392700 (fucongcong) +Is there anything that needs to be done? 有甚麼事要做嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2640897 (CK) & #6903849 (verdastelo9604) +It has been raining since last Thursday. 從上週四開始一直下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #272744 (CK) & #804533 (Martha) +It is easy for a monkey to climb a tree. 对猴子来说,爬树很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #25873 (CK) & #345849 (fucongcong) +It is hard to maintain one's reputation. 維持一個人的聲譽是很難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #322923 (CK) & #798116 (Martha) +It is imperative for you to act at once. 你必须马上行动。 CC-BY 2.0 (France) Attribution: tatoeba.org #17650 (Swift) & #819699 (fucongcong) +It is imperative for you to act at once. 您必须马上行动。 CC-BY 2.0 (France) Attribution: tatoeba.org #17650 (Swift) & #819700 (fucongcong) +It is rude of him not to give me a call. 他不打电话给我真是无礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #279323 (CK) & #5551104 (verdastelo9604) +It's about a ten-minute drive from here. 從這裡大約10分鐘車程。 CC-BY 2.0 (France) Attribution: tatoeba.org #62082 (CK) & #891242 (Martha) +It's difficult to understand his theory. 他的理论很难懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396340 (CK) & #846766 (fucongcong) +Japanese history is my favorite subject. 日本歷史是我最喜歡的科目。 CC-BY 2.0 (France) Attribution: tatoeba.org #281687 (CK) & #797035 (Martha) +Keep away from the electrical equipment. 遠離電器設備。 CC-BY 2.0 (France) Attribution: tatoeba.org #279133 (CK) & #797069 (Martha) +Keep your mouth shut and your eyes open. 闭嘴看着。 CC-BY 2.0 (France) Attribution: tatoeba.org #240550 (al_ex_an_der) & #1438440 (asosan) +Last year, he spent three months at sea. 去年他在海上度過了三個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #244684 (CM) & #918375 (Martha) +Let's talk about what you did in Boston. 让我们谈谈你在波士顿做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3182031 (CK) & #5856798 (verdastelo9604) +Mary helped her mother with the cooking. 瑪麗幫她母親做飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #477323 (CK) & #892580 (Martha) +Mary is an exceptionally beautiful girl. 瑪麗是一個非常漂亮的姑娘。 CC-BY 2.0 (France) Attribution: tatoeba.org #936548 (shanghainese) & #785190 (Martha) +Mary is the prettiest girl in her class. 玛丽是班里面长得最漂亮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #31995 (CK) & #4757669 (ryanwoo) +May I ask you for your name and address? 我能问一下您的姓名和住址吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1337750 (CK) & #334622 (fucongcong) +Maybe you should study harder next time. 你下回可能该更努力学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #4502376 (CK) & #5650408 (verdastelo9604) +Money isn't the only thing that matters. 不只是钱关系重大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1069590 (CK) & #1424156 (sadhen) +Mother Teresa was given the Nobel prize. 特蕾莎修女被授予諾貝爾獎。 CC-BY 2.0 (France) Attribution: tatoeba.org #32862 (CK) & #891326 (Martha) +My father has five brothers and sisters. 我父親有五個兄弟姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #318828 (CK) & #894386 (Martha) +My father put a fence around the garden. 我父亲在花园边上装了篱笆。 CC-BY 2.0 (France) Attribution: tatoeba.org #319303 (CK) & #5845595 (verdastelo9604) +My grandfather lived to be 90 years old. 我的祖父活到九十歲。 CC-BY 2.0 (France) Attribution: tatoeba.org #7782965 (sharris123) & #759061 (Martha) +My knowledge of Japanese is rather poor. 我對日文不大了解。 CC-BY 2.0 (France) Attribution: tatoeba.org #1020022 (CM) & #1020023 (egg0073) +My sister washes her hair every morning. 我妹妹每天早上洗頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #251920 (CK) & #891128 (Martha) +No fewer than 50 passengers were killed. 不下50个乘客死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72550 (Zifre) & #375375 (fucongcong) +No matter where you go, I'll follow you. 無論你去哪裡我都會跟著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #40804 (CK) & #850409 (Martha) +No one lived on the island at that time. 那个时候,没有人在这个岛上生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #279912 (CM) & #2007051 (sadhen) +No student is allowed to enter the room. 學生不准進入這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #66645 (Swift) & #772380 (Martha) +Not everything can be bought with money. 不是所有的東西都可以用金錢買到。 CC-BY 2.0 (France) Attribution: tatoeba.org #666064 (bluepie88) & #874204 (Martha) +Now is a great time to buy one of those. 现在是买它的最好时机。 CC-BY 2.0 (France) Attribution: tatoeba.org #5001446 (CK) & #7771962 (jiangche) +Our child likes dogs, but I prefer cats. 我们的孩子喜欢狗,但我更喜欢猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #1266415 (yifen238) & #332805 (fucongcong) +Our house was robbed while we were away. 我们走开的时候,房子被盗窃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18171 (Zifre) & #333311 (fucongcong) +Our school is in the center of the town. 我们学校在市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #247488 (CK) & #333499 (fucongcong) +Please wait until the end of this month. 本月结束之前请等待。 CC-BY 2.0 (France) Attribution: tatoeba.org #242011 (CK) & #2029468 (ydcok) +Please wrap it like a Christmas present. 請把它包裝得像一個聖誕禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #387464 (CK) & #892527 (Martha) +Riding double on a bicycle is dangerous. 腳踏車雙載是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #418444 (CK) & #891141 (Martha) +Scary movies will frighten the children. 恐怖片會嚇到小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #681025 (Source_VOA) & #899974 (kanaorange) +Science begins when you ask why and how. 為何如何?你疑問的當下就是科學的開端。 CC-BY 2.0 (France) Attribution: tatoeba.org #36495 (CM) & #1426343 (tsayng) +Seeing the fresh lobster made me hungry. 看见新鲜龙虾,我有了食欲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1153957 (belgavox) & #332603 (fucongcong) +She asked me if anything was the matter. 她问我是不是发生了什么事。 CC-BY 2.0 (France) Attribution: tatoeba.org #312780 (CK) & #782827 (fucongcong) +She does not have many friends in Kyoto. 她在京都沒有很多朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #310303 (CK) & #881730 (Martha) +She gave up everything for her children. 為了孩子們她放棄了一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #313975 (CK) & #805047 (Martha) +She had my mother take care of the baby. 她让我母亲照顾孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1440602 (CM) & #4760159 (ryanwoo) +She is interested in learning new ideas. 她有興趣學習新的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #315151 (CK) & #793882 (Martha) +She is making progress with her English. 她的英語正在進步中。 CC-BY 2.0 (France) Attribution: tatoeba.org #312677 (CK) & #795251 (Martha) +She is now staying at her uncle's house. 她现在正待在她叔叔家。 CC-BY 2.0 (France) Attribution: tatoeba.org #313653 (CK) & #332905 (fucongcong) +She passed away peacefully in her sleep. 她在睡眠中安详地去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314913 (CK) & #334598 (fucongcong) +She pretended not to hear him yesterday. 昨天她裝作沒有聽見他。 CC-BY 2.0 (France) Attribution: tatoeba.org #401697 (CK) & #781168 (Martha) +She respects her homeroom teacher a lot. 她很尊重她的導師。 CC-BY 2.0 (France) Attribution: tatoeba.org #508714 (CK) & #892571 (Martha) +She seems to be in love with my brother. 她似乎喜歡上了我哥哥。 CC-BY 2.0 (France) Attribution: tatoeba.org #314311 (CM) & #5405489 (egg0073) +She used to go to the movies on Sundays. 她從前會在星期天去看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #316091 (CK) & #5382955 (egg0073) +She was envious of her cousin's success. 她羨慕她表哥的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #310508 (CM) & #875134 (Martha) +She was too short to see over the fence. 她太矮了,看不到围墙外面。 CC-BY 2.0 (France) Attribution: tatoeba.org #316147 (CK) & #816471 (fucongcong) +She's good at bargaining the price down. 她很善于砍价。 CC-BY 2.0 (France) Attribution: tatoeba.org #315765 (CK) & #1990231 (sunnywqing) +She's leaving the country in six months. 她半年后就要出国了。 CC-BY 2.0 (France) Attribution: tatoeba.org #885804 (Trailsend) & #332421 (fucongcong) +Short skirts are already out of fashion. 短裙已經過時了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388668 (CK) & #907889 (Martha) +Short skirts are already out of fashion. 短裙已經不流行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388668 (CK) & #907891 (Martha) +Shouting at your computer will not help. 對你的電腦吼一點幫助也沒有。 CC-BY 2.0 (France) Attribution: tatoeba.org #682023 (Source_VOA) & #4071833 (egg0073) +Since I was sick, I didn't go to school. 由于我生病了,我便没去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1457056 (CK) & #7768322 (jiangche) +Some of the essays are very interesting. 這些文章中有一些非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #50622 (CK) & #896523 (Martha) +Somebody had drowned her in the bathtub. 有人把她淹死在浴缸裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #24545 (CK) & #805059 (Martha) +Someday I'll buy a cotton candy machine. 有一天我买了一台棉花糖机。 CC-BY 2.0 (France) Attribution: tatoeba.org #7003194 (CK) & #502853 (fucongcong) +Speech is silver, but silence is golden. 雄辯如銀,沉默如金。 CC-BY 2.0 (France) Attribution: tatoeba.org #2328 (Zifre) & #806224 (Martha) +Strange to say, he didn't know the news. 说来奇怪,他不知道这个消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #20636 (al_ex_an_der) & #336624 (fucongcong) +Sydney is the largest city in Australia. 雪梨是澳洲最大的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #53449 (CK) & #798317 (Martha) +Sydney is the largest city in Australia. 悉尼是澳大利亞最大的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #53449 (CK) & #5115080 (xjjAstrus) +That man died of lung cancer a week ago. 那个男人在一周前死于肺癌。 CC-BY 2.0 (France) Attribution: tatoeba.org #67968 (CK) & #8688132 (slo_oth) +That man grabbed the young girl's wrist. 那個男人抓住了這個年輕女孩的手腕。 CC-BY 2.0 (France) Attribution: tatoeba.org #388017 (CK) & #900218 (Martha) +That person doesn't want to do anything. 那人甚麼也不想做。 CC-BY 2.0 (France) Attribution: tatoeba.org #1579397 (fanty) & #6131485 (verdastelo9604) +The President spoke to the nation on TV. 总统在电视上对国民讲话。 CC-BY 2.0 (France) Attribution: tatoeba.org #275890 (CK) & #791425 (fucongcong) +The accident's only survivor was a baby. 这场灾难的唯一幸存者是一个婴儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4814813 (rains_and_shadows) & #4815093 (McMeao) +The batteries in my calculator are dead. 我計算機的電池沒電了。 CC-BY 2.0 (France) Attribution: tatoeba.org #684005 (bluepie88) & #777663 (Martha) +The boat was piloted safely into harbor. 船被安全地领入港口。 CC-BY 2.0 (France) Attribution: tatoeba.org #2820849 (sharptoothed) & #6047432 (verdastelo9604) +The boy grew up to be a great statesman. 这个孩子长大后成为了一个伟大的政治家。 CC-BY 2.0 (France) Attribution: tatoeba.org #47465 (CM) & #8936503 (crescat) +The building is one hundred meters high. 該建築高一百公尺。 CC-BY 2.0 (France) Attribution: tatoeba.org #810703 (slomox) & #810708 (Martha) +The cab driver wasn't seriously injured. 出租车司机没有受重伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #4902762 (CK) & #5660531 (verdastelo9604) +The cargo ship arrived four hours early. 货船早到了四小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #846819 (avandivai) & #805147 (fucongcong) +The children are having fun in the park. 孩子們在公園裏玩耍。 CC-BY 2.0 (France) Attribution: tatoeba.org #7776814 (sharris123) & #5847807 (xjjAstrus) +The church is at the foot of a mountain. 教堂位于山脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #388008 (Mouseneb) & #332986 (fucongcong) +The family is watching a movie together. 这一家人一起看电影。 CC-BY 2.0 (France) Attribution: tatoeba.org #682372 (Source_VOA) & #1416277 (sadhen) +The girl playing the piano is my sister. 弹钢琴的女孩是我妹妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #34903 (CK) & #811291 (fucongcong) +The information is very important to us. 这些信息对我们非常重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #46186 (CM) & #528043 (biglion) +The living room adjoins the dining room. 客廳緊鄰著餐廳。 CC-BY 2.0 (France) Attribution: tatoeba.org #19405 (CK) & #919610 (Martha) +The meaning of this sentence is obscure. 这句句子意思模糊。 CC-BY 2.0 (France) Attribution: tatoeba.org #44123 (CM) & #802879 (fucongcong) +The meeting will take place next Sunday. 会议将在下周日召开。 CC-BY 2.0 (France) Attribution: tatoeba.org #22431 (CK) & #1394839 (mtdot) +The novel ends with the heroine's death. 小说以女主角的死告终。 CC-BY 2.0 (France) Attribution: tatoeba.org #46529 (CK) & #813482 (fucongcong) +The offer is too good to be turned down. 此提議好得令人難以拒絕。 CC-BY 2.0 (France) Attribution: tatoeba.org #814968 (U2FS) & #815037 (Martha) +The police officer arrested the burglar. 警官逮捕了竊賊。 CC-BY 2.0 (France) Attribution: tatoeba.org #400568 (CK) & #870316 (Martha) +The policeman took the thief by the arm. 警察抓著小偷的胳膊。 CC-BY 2.0 (France) Attribution: tatoeba.org #238138 (CK) & #793971 (Martha) +The prisoner was brought before a judge. 這個囚犯被帶到法官面前。 CC-BY 2.0 (France) Attribution: tatoeba.org #317887 (CK) & #781195 (Martha) +The rain is beating against the windows. 雨点打着窗户。 CC-BY 2.0 (France) Attribution: tatoeba.org #26819 (CK) & #793879 (fucongcong) +The registration period is already over. 報名時間已經過了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7825175 (sharris123) & #5551547 (xjjAstrus) +The situation is improving, so cheer up! 情況正在改善,所以振作起來! CC-BY 2.0 (France) Attribution: tatoeba.org #263782 (CK) & #819250 (Martha) +The situation is worse than I'd thought. 情況比我想的還壞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1556964 (brymck) & #6197294 (verdastelo9604) +The sky cleared up soon after the storm. 风暴之后不久,天空就晴朗起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #325288 (CK) & #1878418 (sadhen) +The students are all at their desks now. 学生们现在都坐在桌前。 CC-BY 2.0 (France) Attribution: tatoeba.org #271821 (CK) & #5581649 (verdastelo9604) +The teacher asked me which book I liked. 老師問我我喜歡哪本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #272894 (Eldad) & #875036 (Martha) +The teacher made me repeat the sentence. 老師讓我重複了這句話。 CC-BY 2.0 (France) Attribution: tatoeba.org #272969 (CK) & #801961 (Martha) +The victim died at a hospital in Boston. 受害者在醫院裡死去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5360753 (CK) & #6150883 (verdastelo9604) +There are a lot of books in the library. 圖書館裡有很多書。 CC-BY 2.0 (France) Attribution: tatoeba.org #270688 (CK) & #1260555 (egg0073) +There are a lot of hot springs in Japan. 日本有很多温泉。 CC-BY 2.0 (France) Attribution: tatoeba.org #281280 (CK) & #795782 (fucongcong) +There are more important things in life. 人生里有更重要的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #569216 (CK) & #8865106 (crescat) +There are only three girls in the class. 這個班只有三個女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #61192 (CK) & #483983 (moonoops) +There are seven continents on the earth. 地球上有七大洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #271117 (CM) & #2109213 (sadhen) +There are several ways to measure speed. 测速的方法有很多。 CC-BY 2.0 (France) Attribution: tatoeba.org #274525 (CK) & #1413682 (sadhen) +There is a bank in front of the station. 车站前有个银行。 CC-BY 2.0 (France) Attribution: tatoeba.org #25970 (CK) & #336972 (fucongcong) +There wasn't any furniture in that room. 那個房間裡沒有任何傢俱。 CC-BY 2.0 (France) Attribution: tatoeba.org #503778 (CK) & #907501 (Martha) +There were only six people at the party. 只有六個人參加了派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103231 (supplementfacts) & #767122 (Martha) +There's no use crying over spilled milk. 為打翻的牛奶而哭泣是沒用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6102762 (mailohilohi) & #806253 (Martha) +There's something we need to talk about. 我们有些事要谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2063272 (CK) & #5845637 (verdastelo9604) +They live on the other side of the road. 他們住在路對面。 CC-BY 2.0 (France) Attribution: tatoeba.org #307254 (CK) & #6103122 (verdastelo9604) +They won't allow us to enter the garden. 他们不会允许我们进花园的。 CC-BY 2.0 (France) Attribution: tatoeba.org #306651 (CK) & #785985 (fucongcong) +They're young, but they have experience. 他們還年輕,但他們有經驗。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493566 (CK) & #4504447 (egg0073) +This hotel doesn't have a swimming pool. 這個酒店沒有游泳池。 CC-BY 2.0 (France) Attribution: tatoeba.org #7772288 (sharris123) & #5997682 (xjjAstrus) +This is only one of the things we found. 这只是我们发现的东西之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574439 (CK) & #8574608 (slo_oth) +This is the best restaurant that I know. 这是我所知道的最好的餐厅。 CC-BY 2.0 (France) Attribution: tatoeba.org #61646 (CK) & #2393398 (fenfang557) +This is the church where we got married. 這裡是我們結婚的教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #61638 (CK) & #1205896 (cienias) +This is the cutest puppy I've ever seen. 這是我見過最可愛的小狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #1423277 (CK) & #1423386 (cienias) +This is where Tom usually parks his car. 汤姆通常把他的车停在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #4099432 (CK) & #4099648 (maple) +This medicine will give you some relief. 这药会让你舒服些。 CC-BY 2.0 (France) Attribution: tatoeba.org #56564 (CM) & #8686694 (crescat) +This medicine will make you feel better. 这药会让你好受点。 CC-BY 2.0 (France) Attribution: tatoeba.org #56571 (CK) & #334625 (fucongcong) +This radio is no bigger than a matchbox. 这收音机不比火柴盒大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954449 (al_ex_an_der) & #5856745 (verdastelo9604) +This smells great! What are you cooking? 聞起來好香喔。你在煮什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #899834 (szaby78) & #904798 (kanaorange) +Though wounded, they continued to fight. 尽管受了伤,他们还是继续战斗。 CC-BY 2.0 (France) Attribution: tatoeba.org #62609 (CM) & #335837 (fucongcong) +To make matters worse, it began snowing. 更糟糕的是開始下雪了。 CC-BY 2.0 (France) Attribution: tatoeba.org #53987 (CK) & #785153 (Martha) +To my knowledge, she hasn't married yet. 據我所知,她還沒結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #477224 (FeuDRenais) & #6064693 (verdastelo9604) +Tom and Mary ended 30 years of marriage. 汤姆和玛丽结束了三十年的婚姻。 CC-BY 2.0 (France) Attribution: tatoeba.org #7852000 (sharris123) & #2499970 (fenfang557) +Tom apologized to Mary for his rudeness. 汤姆为他的粗鲁向玛丽道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955877 (CK) & #5993952 (verdastelo9604) +Tom came to see if Mary needed any help. 汤姆过来看看玛丽有没有什么需要帮忙的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095682 (CK) & #1235516 (sunnywqing) +Tom carried the chairs to the next room. 汤姆把椅子拿到了下个房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755831 (CK) & #4757244 (ryanwoo) +Tom couldn't conceal his disappointment. 汤姆不能掩饰他的失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #4715014 (adamtrousers) & #5993946 (verdastelo9604) +Tom didn't give me what I asked him for. 汤姆没给我我跟他要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3946878 (CK) & #5569382 (verdastelo9604) +Tom doesn't even know how to fry an egg. 汤姆甚至连怎么煎鸡蛋都不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586745 (CK) & #8589659 (tianblr) +Tom doesn't like any kind of spicy food. 汤姆不喜欢任何辣的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094419 (CK) & #1416283 (sadhen) +Tom doesn't look like his father at all. 汤姆和他的父亲长得一点也不像。 CC-BY 2.0 (France) Attribution: tatoeba.org #4144722 (Hybrid) & #4148202 (sissima) +Tom doesn't think that will do any good. 汤姆认为那没有好处。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094316 (CK) & #5907631 (verdastelo9604) +Tom doesn't think this is a coincidence. 汤姆不认为这是一个巧合。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094311 (CK) & #1750393 (sadhen) +Tom explained it to Mary very carefully. 汤姆仔细地给玛丽解释。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094158 (CK) & #5978350 (verdastelo9604) +Tom fell asleep sitting up in the chair. 汤姆坐在椅子上睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726708 (CM) & #5640722 (verdastelo9604) +Tom had a lot of problems at the school. 汤姆在学校遇到了很多问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093872 (CK) & #5091311 (mirrorvan) +Tom has lived in Boston for over a year. 汤姆住在波士顿已经一年多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755404 (garborg) & #4638682 (yuiyu) +Tom is a good friend of yours, isn't he? 湯姆是你的好朋友,不是麼? CC-BY 2.0 (France) Attribution: tatoeba.org #2640859 (CK) & #6585415 (verdastelo9604) +Tom is busy now and can't talk with you. 湯姆現在忙,不能跟你講話。 CC-BY 2.0 (France) Attribution: tatoeba.org #3182025 (CK) & #6138325 (verdastelo9604) +Tom is in the other room drinking vodka. Tom在別的房間喝伏特加。 CC-BY 2.0 (France) Attribution: tatoeba.org #1868199 (CK) & #5418706 (egg0073) +Tom is married to a Canadian named Mary. 汤姆和一个叫玛丽的加拿大人结婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8272174 (CK) & #8696227 (crescat) +Tom is three years younger than Mary is. 汤姆比玛丽小三岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028478 (CK) & #8777594 (crescat) +Tom knows that I used to live in Boston. 湯姆知道我在波士頓住過。 CC-BY 2.0 (France) Attribution: tatoeba.org #3431125 (CK) & #6293081 (verdastelo9604) +Tom lost his only son in a car accident. 汤姆在一场车祸中失去了他的独子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2609398 (CS) & #8798311 (crescat) +Tom might be able to attend the meeting. 汤姆可能能参加会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #3733891 (CK) & #5856784 (verdastelo9604) +Tom often takes pictures with his phone. 汤姆经常用手机拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #3308329 (CK) & #5611591 (verdastelo9604) +Tom remained a bachelor until his death. 汤姆终身未娶。 CC-BY 2.0 (France) Attribution: tatoeba.org #3265986 (patgfisher) & #8935930 (crescat) +Tom said he read a book about this ship. Tom说他在这次的航行中读了一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1963154 (CK) & #4845066 (pig8322) +Tom said he'd think about my suggestion. 汤姆说他会考虑我的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538636 (CK) & #5983580 (verdastelo9604) +Tom said that he'd never been to Boston. 汤姆说他从来没去过波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #6650745 (CK) & #9007588 (jacintoo) +Tom says he doesn't feel like going out. 汤姆说他不想出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #6647819 (CK) & #8550254 (slooth) +Tom smiled at Mary, and she smiled back. 汤姆对玛丽笑了笑,她也笑着回应了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085475 (Airvian) & #5085510 (Jubilee11) +Tom stayed in Australia for three years. 汤姆在澳大利亚呆了三年。 CC-BY 2.0 (France) Attribution: tatoeba.org #7152832 (CK) & #8914622 (fresky) +Tom told me to take good care of myself. 汤姆告诉我要照顾好我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #3203835 (CK) & #5926182 (verdastelo9604) +Tom translated the document into French. 汤姆把文档译成法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451272 (CK) & #7068974 (la_kanro) +Tom wants to know what we're doing here. 湯𡡡想知道我們在這裡做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538623 (CK) & #6073887 (verdastelo9604) +Tom wants to pay back the money he owes. 汤姆想去还欠的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757999 (CK) & #4764658 (ryanwoo) +Tom went over and sat down next to Mary. 汤姆来了,坐到了玛丽的边上。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132355 (CK) & #7772125 (jiangche) +Tom wrote a letter to Mary this morning. Tom今天早上寫了封信給Mary。 CC-BY 2.0 (France) Attribution: tatoeba.org #4503004 (CK) & #4504418 (egg0073) +Visitors to Switzerland admire the Alps. 遊客到瑞士欣賞阿爾卑斯山。 CC-BY 2.0 (France) Attribution: tatoeba.org #52435 (CK) & #798063 (Martha) +We are not short of oil in this country. 我们国家不缺石油。 CC-BY 2.0 (France) Attribution: tatoeba.org #23470 (CK) & #332861 (fucongcong) +We can't deny the fact that he's honest. 我们无法否认,他确实是很诚实的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #909491 (CK) & #8500211 (black333) +We can't see the other side of the moon. 我們看不到月亮的另一邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873392 (CK) & #875040 (Martha) +We don't expect Tom to live much longer. 我们不指望汤姆能活得更久。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538606 (CK) & #5983643 (verdastelo9604) +We furnished the refugees with blankets. 我們提供了難民們毛毯。 CC-BY 2.0 (France) Attribution: tatoeba.org #22691 (CK) & #818965 (Martha) +We had three tries and failed each time. 我们试了三次,都失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #248758 (CK) & #5983607 (verdastelo9604) +We have to try to communicate with them. 我们要设法跟他们交流。 CC-BY 2.0 (France) Attribution: tatoeba.org #5725328 (CM) & #5983609 (verdastelo9604) +We loaded a lot of luggage into the car. 我們往車裡装了很多行李。 CC-BY 2.0 (France) Attribution: tatoeba.org #248836 (CK) & #6325107 (verdastelo9604) +We lost our cat and Tom found it for us. 我們弄丟了車,Tom幫我們找了回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893781 (CK) & #5418964 (egg0073) +We met in a coffee shop near the campus. 我們在校園附近的咖啡廳碰面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893779 (CK) & #5418959 (egg0073) +We won't go out unless it stops raining. 除非雨停了,我们才会出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #26839 (CK) & #332695 (fucongcong) +We'll change trains at the next station. 我們會在下一站換火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #264244 (CK) & #902947 (Martha) +We're going to have to change our plans. 我們快要到必須改變我們計畫的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3821474 (CK) & #6101456 (verdastelo9604) +We're going to stay in Boston all month. 我們整個月都要待在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #6242851 (CK) & #6325116 (verdastelo9604) +We've been asked to not do this anymore. 我们被要求不再这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #3396682 (CK) & #5818099 (verdastelo9604) +Weather permitting, I'll start tomorrow. 天气允许,我明天就开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #278935 (CK) & #1416261 (sadhen) +Well, the night is quite long, isn't it? 夜晚很长,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1559 (CK) & #334431 (fucongcong) +What do you call this insect in English? 这种昆虫在英语中叫什么? CC-BY 2.0 (France) Attribution: tatoeba.org #26378 (CK) & #1790171 (sadhen) +What do you plan to major in at college? 你计划去大学后主修什么吗? CC-BY 2.0 (France) Attribution: tatoeba.org #537052 (CK) & #3781016 (Debbie_Linder) +What do you want to be when you grow up? 你长大后想成为什么? CC-BY 2.0 (France) Attribution: tatoeba.org #15915 (CK) & #1839195 (sadhen) +What kind of movie do you want to watch? 你想看哪种类型的电影? CC-BY 2.0 (France) Attribution: tatoeba.org #961906 (Eevee) & #3376516 (go_oo) +What time did you get to bed last night? 你昨天甚麼時候睡覺? CC-BY 2.0 (France) Attribution: tatoeba.org #2882841 (CK) & #6058585 (verdastelo9604) +What would you like to be in the future? 你以后想当什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #267505 (Eldad) & #2241825 (sadhen) +What would you like to do in the future? 以后打算干什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2420457 (CK) & #4759995 (ryanwoo) +What you are saying does not make sense. 你说的没有意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #17199 (Zifre) & #476669 (fucongcong) +What's the minimum wage in your country? 你的国家的最低工资是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #1534782 (CK) & #8863035 (crescat) +What's the spelling of your family name? 你的姓怎麼拼? CC-BY 2.0 (France) Attribution: tatoeba.org #914376 (CK) & #885531 (Martha) +What's your favorite season of the year? 一年之中,你最喜欢哪个季节? CC-BY 2.0 (France) Attribution: tatoeba.org #906871 (CK) & #2027913 (sadhen) +When I was your age, Pluto was a planet. 當我在你這個年紀時,冥王星是行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #2182 (Zifre) & #4272250 (egg0073) +When have you ever done anything for me? 你什么时候给我做事? CC-BY 2.0 (France) Attribution: tatoeba.org #5323459 (mailohilohi) & #5630359 (verdastelo9604) +When the cat's away, the mice will play. 山上无老虎,猴子称大王。 CC-BY 2.0 (France) Attribution: tatoeba.org #390040 (Scott) & #5092084 (mirrorvan) +Where is the tourist information office? 遊客諮詢處在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #20924 (CK) & #868480 (Martha) +Which of the composers do you like best? 你最喜欢哪位作曲家? CC-BY 2.0 (France) Attribution: tatoeba.org #244310 (CM) & #5655341 (verdastelo9604) +Why do people not always tell the truth? 为什么人们不总是讲真话? CC-BY 2.0 (France) Attribution: tatoeba.org #954662 (CK) & #5907635 (verdastelo9604) +Why do you think I'm thinking about you? 你为什么会认为我在想你? CC-BY 2.0 (France) Attribution: tatoeba.org #1331419 (marcelostockle) & #7767635 (jiangche) +Why don't you want to tell us the truth? 為甚麼你不想告訴我們真相? CC-BY 2.0 (France) Attribution: tatoeba.org #1579325 (fanty) & #6151304 (verdastelo9604) +Will you listen to me for a few minutes? 您愿意听我说几分钟话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6088 (Zifre) & #363876 (fucongcong) +Will you tell me how to get to Shinjuku? 请问你可以告诉我如何可以到达新宿吗? CC-BY 2.0 (France) Attribution: tatoeba.org #269301 (CK) & #4600737 (Seek) +Without the sun, there would be no life. 沒有太陽就沒有生命。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736791 (paper1n0) & #884637 (Tajfun) +Would you please wait for a few minutes? 能不能请你等几分钟? CC-BY 2.0 (France) Attribution: tatoeba.org #267691 (CK) & #335405 (fucongcong) +Would you please wait for a few minutes? 请您等几分钟好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #267691 (CK) & #609963 (sarah) +Yesterday I spent the whole day working. 昨天我一整天都在工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1294828 (CK) & #1423381 (sadhen) +You can buy it for a thousand yen or so. 你能以大约1000日元买下它。 CC-BY 2.0 (France) Attribution: tatoeba.org #73498 (CK) & #846533 (kooler) +You must be at the station by 5 o'clock. 五點以前你必須在車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #16820 (lilygilder) & #775852 (Martha) +You need to pay extra for the batteries. 电池要额外付钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #480055 (FeuDRenais) & #464768 (fucongcong) +You should be ashamed of your ignorance. 你應該為你的無知感到羞恥。 CC-BY 2.0 (France) Attribution: tatoeba.org #16035 (CM) & #875063 (Martha) +You should follow your teacher's advice. 您應遵循你老師的建議。 CC-BY 2.0 (France) Attribution: tatoeba.org #15947 (CK) & #872156 (Martha) +You should give up smoking and drinking. 你该戒烟戒酒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16516 (CK) & #332874 (fucongcong) +You should have told me a long time ago. 很久以前你就應該告訴我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16636 (Swift) & #775817 (Martha) +You shouldn't keep them waiting so long. 你不该让他们等那么久。 CC-BY 2.0 (France) Attribution: tatoeba.org #69909 (CK) & #373474 (fucongcong) +You will not be able to catch the train. 你將無法趕上火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #16566 (CK) & #775810 (Martha) +You'd better get away from here at once. 你最好立刻離開這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #8975746 (CK) & #775834 (Martha) +You'd better have your hair cut at once. 你最好立刻剪頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #16638 (CK) & #775818 (Martha) +You'd better wait until the police come. 你最好等到警察前来。 CC-BY 2.0 (France) Attribution: tatoeba.org #7805440 (CK) & #1101758 (cranewang) +You'll be punished if you break the law. 如果你違反了法律, 你將受到懲罰。 CC-BY 2.0 (France) Attribution: tatoeba.org #321024 (CK) & #775469 (Martha) +You're not going in the right direction. 你要南辕北辙了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085374 (Hybrid) & #5085444 (Jubilee11) +You've got to learn to hold your tongue. 你應該學著閉上你的嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #16167 (CK) & #775740 (Martha) +You've never had a girlfriend, have you? 你从没有女朋友,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #2640807 (CK) & #5918302 (verdastelo9604) +Your assistance is indispensable for us. 您的帮助对我们来说是必不可少的。 CC-BY 2.0 (France) Attribution: tatoeba.org #70808 (CK) & #747881 (fucongcong) +Your behavior leaves much to be desired. 你的行为离要求的太远了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17159 (CK) & #336908 (fucongcong) +Your name has been crossed off the list. 你的名字已经从名单删除了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846787 (CK) & #4846808 (pig8322) +"Are the drinks free?" "Only for ladies." “酒水免费吗?”“仅女士而已。” CC-BY 2.0 (France) Attribution: tatoeba.org #73763 (Zifre) & #334614 (fucongcong) +"He used to love me," she answered sadly. 他以前愛我,她傷心地回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #28332 (CK) & #803904 (Martha) +"Would you like some tea?" "Yes, please." “来杯茶吗?”“嗯,好的。” CC-BY 2.0 (France) Attribution: tatoeba.org #2493192 (shadyray601) & #2487291 (fenfang557) +A boat suddenly appeared out of the mist. 一艘船突然从雾中出现。 CC-BY 2.0 (France) Attribution: tatoeba.org #322862 (Dejo) & #431497 (fucongcong) +A soccer team consists of eleven players. 一个足球队由十一个球员组成。 CC-BY 2.0 (France) Attribution: tatoeba.org #54124 (CK) & #1881095 (sadhen) +A swarm of hornets attacked the children. 一窩黃蜂襲擊了孩子們。 CC-BY 2.0 (France) Attribution: tatoeba.org #543753 (CK) & #872149 (Martha) +Can I borrow your digital camera tonight? 我今晚能借你的数码相机吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1169630 (cruzedu73) & #5698045 (verdastelo9604) +Can I talk to you privately for a minute? 我能跟你私下谈一分钟吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4014386 (CK) & #5978359 (verdastelo9604) +Can you tell me where the flea market is? 你能告訴我跳蚤市場在哪裡嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3738469 (CK) & #6134986 (verdastelo9604) +Come what may, I won't change my opinion. 無論如何,我不會改變我的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #1223803 (tsayng) & #1223801 (tsayng) +Could you bring my breakfast to room 305? 你可以把我的早餐送到305房间吗? CC-BY 2.0 (France) Attribution: tatoeba.org #72759 (CK) & #528023 (biglion) +Could you keep this luggage until 3 p.m.? 你可以保管這個行李直到下午三點嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #60037 (CM) & #5401617 (egg0073) +Could you teach me how to play the piano? 您能教我弹钢琴吗? CC-BY 2.0 (France) Attribution: tatoeba.org #435660 (kazuya00) & #785827 (fucongcong) +Did you eat at home before you came here? 你來之前在家裡吃飯了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2772570 (CK) & #6624740 (verdastelo9604) +Did you plan to eat all of that yourself? 你打算自己一人把它全部吃了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4922501 (catapri) & #5096428 (mirrorvan) +Diplomats are allowed various privileges. 外交官有多种特权。 CC-BY 2.0 (France) Attribution: tatoeba.org #21965 (Swift) & #5591008 (verdastelo9604) +Do I have to answer all of the questions? 我需要回答所有問題嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1458915 (CK) & #5728711 (xjjAstrus) +Do I have to bring my son to your office? 我必須帶我的兒子到你的辦公室嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #274451 (CK) & #881294 (Martha) +Do you have any friends that are doctors? 你有朋友是醫生嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7800712 (sharris123) & #6056462 (xjjAstrus) +Do you know anyone who's not on Facebook? 你有認識沒有用Facebook的人嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #475758 (darinmex) & #5414888 (egg0073) +Do you know anything about Tom's parents? 你知道任何关于汤姆父母的事吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1552463 (CK) & #2052551 (sadhen) +Do you know which road leads to my house? 你知道哪一條路到我家嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #681954 (Source_VOA) & #778494 (Martha) +Do you really think that I look like Tom? 你真的觉得我长得像汤姆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #8353537 (CK) & #8848652 (crescat) +Do you think he is good for the position? 你认为他适合这个职位吗? CC-BY 2.0 (France) Attribution: tatoeba.org #291159 (Zifre) & #334067 (fucongcong) +Do you want to go to the station with me? 要不一起到车站去? CC-BY 2.0 (France) Attribution: tatoeba.org #4564116 (CK) & #5097675 (mirrorvan) +Doing that is simply out of the question. 根本不可能做那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #8574475 (CK) & #8574624 (slo_oth) +Even a broken clock is right twice a day. 凡人皆有得意时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1205816 (CS) & #333200 (fucongcong) +Everybody is immune to smallpox nowadays. 現今每個人都對天花免疫了。 CC-BY 2.0 (France) Attribution: tatoeba.org #241685 (CK) & #793345 (Martha) +Everyone knew Tom was the one who did it. 大家都知道是汤姆做的 CC-BY 2.0 (France) Attribution: tatoeba.org #5392592 (CK) & #5393369 (soldier) +Everyone knew that Tom's French was good. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8810805 (shekitten) & #8777542 (crescat) +Everyone knows that Tom's French is good. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8810803 (shekitten) & #8777542 (crescat) +Fish and red wine don't go well together. 魚和紅酒不合。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230480 (alec) & #1223812 (tsayng) +Fools rush in where angels fear to tread. 天使畏懼處, 愚人敢闖入。 CC-BY 2.0 (France) Attribution: tatoeba.org #237710 (CK) & #772090 (Martha) +Fools rush in where angels fear to tread. 初生之犢不畏虎。 CC-BY 2.0 (France) Attribution: tatoeba.org #237710 (CK) & #772091 (Martha) +Frankly speaking, I don't agree with you. 实话说,我不赞成你。 CC-BY 2.0 (France) Attribution: tatoeba.org #325404 (CK) & #1438523 (asosan) +Give me a chance to make you proud of me. 给我机会来让你为我感到自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #643268 (darinmex) & #812302 (fucongcong) +Hardly anyone thinks that we are sisters. 几乎没有人认为我们是姐妹。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103146 (supplementfacts) & #1785961 (sadhen) +Have you ever seen the man in this photo? 你见过这张照片上的男人吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1885972 (CK) & #8839899 (crescat) +Have you finished writing the letter yet? 你信寫完了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69742 (CK) & #887698 (Martha) +He accused me of having stolen his watch. 他指控我偷了他的手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #298388 (CK) & #8761456 (crescat) +He applied himself to the study of music. 他潛心研究音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #294196 (CK) & #788716 (Martha) +He bent over backward to please his wife. 他竭尽全力地讨好他老婆。 CC-BY 2.0 (France) Attribution: tatoeba.org #296803 (CK) & #2516527 (fenfang557) +He did everything he could for his child. 他為自己的孩子能做的都做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211454 (alec) & #1205893 (cienias) +He doesn't have any friends to play with. 他没有任何朋友玩。 CC-BY 2.0 (France) Attribution: tatoeba.org #467688 (CK) & #1450508 (asosan) +He froze with fear when he saw the snake. 他看見蛇就嚇得不動了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2253277 (_undertoad) & #6109329 (verdastelo9604) +He gave correct answers to the questions. 他對這個問題給了正確的答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #298952 (CK) & #805693 (Martha) +He is giving his whole attention to that. 他全神贯注。 CC-BY 2.0 (France) Attribution: tatoeba.org #402498 (CM) & #609886 (sarah) +He left the house without saying goodbye. 他沒說再見就離開了房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #387438 (CK) & #881527 (Martha) +He makes friends with everybody he meets. 他跟所有他遇見的人交朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #294597 (CK) & #795280 (Martha) +He often sits by me and listens to music. 他经常坐在我旁边听音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #293284 (CK) & #1433797 (sadhen) +He plays golf two or three times a month. 他一个月玩两到三次高尔夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #295902 (CK) & #4844982 (pig8322) +He rushed into the room with his coat on. 他穿着衣服冲进房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #289809 (CK) & #336257 (fucongcong) +He was kind enough to lend me some money. 他够大方,借了我一点钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #300036 (CK) & #1397324 (mtdot) +He went to Italy in order to study music. 為了研讀音樂他去了義大利。 CC-BY 2.0 (France) Attribution: tatoeba.org #294207 (CK) & #788734 (Martha) +He wrote a book about a jungle adventure. 他写了一本关于丛林冒险的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476792 (weihaiping) & #1328149 (vicch) +Her grandmother lived to be 88 years old. 她的祖母活到了88岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495364 (weihaiping) & #472811 (fucongcong) +His behavior never ceases to surprise me. 他的所作所为总是让我惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #286281 (CK) & #8727832 (crescat) +His comment was concise and to the point. 他的评论简洁且击中要害。 CC-BY 2.0 (France) Attribution: tatoeba.org #287381 (CM) & #1783896 (sadhen) +His father dedicated his life to science. 他的父親把一生奉獻給了科學。 CC-BY 2.0 (France) Attribution: tatoeba.org #1463394 (Eldad) & #6147563 (verdastelo9604) +His office is past the bank on your left. 经过银行,左边就是他的办公室了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286530 (CM) & #487705 (fucongcong) +How do I change my cell phone's ringtone? 我要怎麼換我的手機鈴聲呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4008871 (JSakuragi) & #3763650 (cienias) +How many friends do you have on Facebook? 你在Facebook上有多少朋友? CC-BY 2.0 (France) Attribution: tatoeba.org #1820790 (Amastan) & #5414905 (egg0073) +I agree with what you say to some extent. 在某种程度上,我认同你所说的。 CC-BY 2.0 (France) Attribution: tatoeba.org #67182 (CK) & #3839477 (sadhen) +I always get nervous just before a match. 比赛前我一直都很紧张。 CC-BY 2.0 (France) Attribution: tatoeba.org #263519 (CK) & #2029470 (ydcok) +I always keep a dictionary close at hand. 我总是在离手不远的地方放一本字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #253139 (CK) & #333096 (fucongcong) +I always rely on him in times of trouble. 我在困難時總是依賴他。 CC-BY 2.0 (France) Attribution: tatoeba.org #412768 (blay_paul) & #6095969 (verdastelo9604) +I always take a bath before going to bed. 我睡觉前总要洗个澡。 CC-BY 2.0 (France) Attribution: tatoeba.org #254902 (CK) & #333718 (fucongcong) +I am going to my room, where I can study. 我要回房间了,在那儿我可以学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #261656 (CK) & #332540 (fucongcong) +I am looking for a present for my mother. 我正在为我的妈妈寻找礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #320583 (CK) & #1235602 (sunnywqing) +I arrived at Narita Airport this morning. 我今天早上抵達了成田機場。 CC-BY 2.0 (France) Attribution: tatoeba.org #257547 (CK) & #887820 (Martha) +I asked Tom why he wasn't here yesterday. 我问汤姆为什么他昨天没在这里 CC-BY 2.0 (France) Attribution: tatoeba.org #5392596 (CK) & #5393359 (soldier) +I asked him many questions about ecology. 我問了他許多關於生態環境的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #258992 (CK) & #926842 (Martha) +I can speak Chinese, but I can't read it. 我會說中文,但是我不會讀中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #259443 (CK) & #1476139 (egg0073) +I can't distinguish him from his brother. 我分不清他和他的弟弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #284825 (CK) & #926843 (Martha) +I can't locate the source of the problem. 我无法找到问题的根源。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954614 (CK) & #2017436 (sadhen) +I cannot bring myself to do such a thing. 我不能让自己做这样的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #41604 (CK) & #332681 (fucongcong) +I competed with him for the championship. 我和他競爭冠軍。 CC-BY 2.0 (France) Attribution: tatoeba.org #260237 (CK) & #842489 (Martha) +I consider you one of my closest friends. 我把你视为我最要好的朋友之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #643259 (darinmex) & #812295 (fucongcong) +I demand an explanation for this mistake. 我要求說明這個錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #58679 (CK) & #917898 (Martha) +I didn't go to school because I was sick. 由于我生病了,我便没去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1457053 (CK) & #7768322 (jiangche) +I didn't have time to watch TV yesterday. 我昨天沒時間看電視。 CC-BY 2.0 (France) Attribution: tatoeba.org #244485 (CK) & #6169158 (verdastelo9604) +I didn't participate in the conversation. 我沒有參與這個談話。 CC-BY 2.0 (France) Attribution: tatoeba.org #816083 (afeinberg) & #816885 (Martha) +I didn't tell Tom what needed to be done. 我沒告訴湯姆要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #6240311 (CK) & #6535849 (verdastelo9604) +I don't feel like studying English today. 我今天不想学习英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #242778 (CK) & #1430245 (sadhen) +I don't feel very well. I should go home. 我感覺不太好,我該回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2362084 (CK) & #6119245 (verdastelo9604) +I don't have anyone who'd travel with me. 我没有一个愿意跟我一起旅行的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1475 (CM) & #334914 (fucongcong) +I don't have the strength to keep trying. 我没力气继续尝试了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2125 (CK) & #503227 (fucongcong) +I don't have time to play games with you. 我没时间跟你玩游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2568656 (Hybrid) & #5780578 (verdastelo9604) +I don't know what this symbol stands for. 我不知道這個符號代表什麼意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #59741 (CK) & #780069 (Martha) +I don't really want to live in Australia. 我不怎么想住在澳大利亚。 CC-BY 2.0 (France) Attribution: tatoeba.org #7184496 (CK) & #8514621 (gumblex) +I don't think I like this game very much. 我觉得我不太喜欢这游戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323114 (CK) & #5842625 (verdastelo9604) +I don't think she takes after her mother. 我不觉得她像她妈妈。 CC-BY 2.0 (France) Attribution: tatoeba.org #316950 (CK) & #333833 (fucongcong) +I don't think that we should go with Tom. 我认为我们不应该跟汤姆一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619234 (CK) & #5663481 (verdastelo9604) +I don't want to spoil the ending for you. 我不想把結局提前透露給你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1515899 (CK) & #6073883 (verdastelo9604) +I feel like this isn't going to end well. 感觉这不会有个好结局。 CC-BY 2.0 (France) Attribution: tatoeba.org #5009132 (CK) & #8686669 (crescat) +I finished the work in less than an hour. 我用不到一小时就完成了这个工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #47613 (CK) & #401075 (fucongcong) +I had difficulty in solving this problem. 我在解決這個問題上有困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #56652 (CK) & #805068 (Martha) +I had difficulty in solving this problem. 我很難解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #56652 (CK) & #805070 (Martha) +I had difficulty working out the problem. 我在解決這個問題上有困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #259767 (CK) & #805068 (Martha) +I had difficulty working out the problem. 我很難解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #259767 (CK) & #805070 (Martha) +I had my teeth examined at the dentist's. 我在牙医那儿检查了牙齿。 CC-BY 2.0 (France) Attribution: tatoeba.org #258089 (CK) & #390840 (fucongcong) +I have a lot of friends living in Boston. 我有很多朋友住在波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1495735 (CK) & #5574491 (verdastelo9604) +I haven't eaten anything since yesterday. 我從昨天起沒有吃任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #244374 (CK) & #848621 (Martha) +I haven't finished reading this book yet. 我還沒讀完這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #6224349 (CK) & #6623176 (verdastelo9604) +I know New York like the back of my hand. 我对纽约了如指掌。 CC-BY 2.0 (France) Attribution: tatoeba.org #4042189 (patgfisher) & #333437 (fucongcong) +I know someone who might be able to help. 我知道有個人可能能幫忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3564751 (CK) & #6119460 (verdastelo9604) +I know that you still want to be with me. 我知道你还是想跟着我。 CC-BY 2.0 (France) Attribution: tatoeba.org #2573654 (Amastan) & #5856777 (verdastelo9604) +I know the real reason you don't want go. 我知道你不想去的真实原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376150 (CK) & #7774606 (jiangche) +I made a bet that she would win the game. 我賭她贏這比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #261048 (CK) & #6073908 (verdastelo9604) +I majored in chemistry at the university. 我在大學主修化學。 CC-BY 2.0 (France) Attribution: tatoeba.org #259324 (CK) & #795794 (Martha) +I majored in philosophy at my university. 我在大學主修哲學。 CC-BY 2.0 (France) Attribution: tatoeba.org #252296 (CK) & #795322 (Martha) +I needed to speak to you about something. 我需要跟你說點事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3723828 (CM) & #6101371 (verdastelo9604) +I often look up words in that dictionary. 我经常用那本词典找单词。 CC-BY 2.0 (France) Attribution: tatoeba.org #1194172 (CK) & #8756336 (crescat) +I ran across an old friend near the bank. 我在银行附近碰见老朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #18436 (Zifre) & #678949 (Martha) +I spent the whole day reading that novel. 我一整天都在看这本小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #783594 (CK) & #784366 (fucongcong) +I still don't understand what's going on. 我還是不明白出了什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6126116 (CK) & #8215744 (verdastelo9604) +I think you're going to want to sit down. 我觉得你想坐下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2026905 (CK) & #7771955 (jiangche) +I thought that Tom would enjoy the party. 我以为汤姆会喜欢这个聚会。 CC-BY 2.0 (France) Attribution: tatoeba.org #7173212 (CK) & #5091213 (mirrorvan) +I took off my hat and entered the church. 我摘下帽子进了教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #261718 (CK) & #5556101 (verdastelo9604) +I used to smoke a lot, but now I've quit. 我以前常抽菸,但現在我戒掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230492 (alec) & #1221327 (tsayng) +I want to eat something that isn't sweet. 我想吃点不甜的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #3777905 (CK) & #5100261 (mirrorvan) +I want you to stay here until I get back. 我想你待在这里直到我回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #247108 (CK) & #784114 (fucongcong) +I warned him, but he ignored the warning. 我警告過他,但他不理會警告。 CC-BY 2.0 (France) Attribution: tatoeba.org #814889 (CK) & #816805 (Martha) +I was a high school student at that time. 我当时是高中生。 CC-BY 2.0 (France) Attribution: tatoeba.org #279939 (CK) & #346769 (fucongcong) +I was just about to come looking for you. 我剛才正要找你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1857625 (donkirkby) & #713156 (egg0073) +I was tired today so I went to bed early. 我今天累,所以我睡得早。 CC-BY 2.0 (France) Attribution: tatoeba.org #242960 (CK) & #5655339 (verdastelo9604) +I was unable to go to his birthday party. 我那时没法去他的生日派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318852 (CK) & #1789987 (sadhen) +I was very nervous as the plane took off. 飛機起飛的時候我很緊張。 CC-BY 2.0 (France) Attribution: tatoeba.org #317993 (CK) & #811919 (Martha) +I watched the game from beginning to end. 那场比赛,我从头看到尾。 CC-BY 2.0 (France) Attribution: tatoeba.org #252172 (CK) & #2448772 (fenfang557) +I will badly miss you if you leave Japan. 如果你离开日本,我会非常想你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71334 (CK) & #397145 (fucongcong) +I will give you a bike for your birthday. 你生日的时候,我送你一辆自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #386695 (Mouseneb) & #334048 (fucongcong) +I worked as a piano tuner for many years. 我做钢琴调音师很多年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5860526 (CK) & #5862089 (verdastelo9604) +I'd like to ask you a few more questions. 我想問再你幾個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #1936554 (CK) & #6091800 (verdastelo9604) +I'd really like to go to Boston with you. 我不想跟你去波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #5700985 (CK) & #6877966 (verdastelo9604) +I'll be leaving for Australia next month. 我下個月將去澳洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #9062219 (CK) & #917883 (Martha) +I'll go to the library with you tomorrow. 我明天要跟你去圖書館。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728707 (paper1n0) & #1959136 (egg0073) +I'll wait for you in front of the school. 我在學校前面等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820944 (CK) & #4506252 (egg0073) +I'm sorry, but I can't answer right away. 我很抱歉,但我無法立即回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #52229 (CK) & #798409 (Martha) +I'm sure that this is a fresh water fish. 我肯定这是淡水鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #1039719 (tatomeimei) & #462149 (fucongcong) +I'm very tired, but I can't get to sleep. 我很累,但我还是没办法入睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476899 (weihaiping) & #1323697 (vicch) +I've already considered that possibility. 我已经考虑过那种可能性了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2358876 (CK) & #8584895 (tianblr) +I've put all of my energy into this plan. 我在这项计划上投入了所有精力。 CC-BY 2.0 (France) Attribution: tatoeba.org #2256426 (FeuDRenais) & #2255109 (Venki) +If he's fluent in English, I'll hire him. 如果他說得一口流利的英文,我就請他為我工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #480328 (CK) & #1225670 (tsayng) +If it rains tomorrow, we'll stay at home. 如果明天下雨,我们就呆在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #386763 (Mouseneb) & #343912 (fucongcong) +If you hurry, you will catch up with him. 如果你快一点,还能赶上他。 CC-BY 2.0 (France) Attribution: tatoeba.org #30901 (CK) & #332825 (fucongcong) +In addition to English, he speaks German. 除了英文,他還說德文。 CC-BY 2.0 (France) Attribution: tatoeba.org #26336 (CK) & #1740818 (egg0073) +In doing anything, you must do your best. 做任何事,你必须要做到最好。 CC-BY 2.0 (France) Attribution: tatoeba.org #36292 (shanghainese) & #336877 (fucongcong) +Is it true or did Tom make that story up? 這是事實還是Tom編的故事? CC-BY 2.0 (France) Attribution: tatoeba.org #2771447 (sharptoothed) & #5350416 (egg0073) +Is there anything else you want me to do? 你还有什么事情需要我去做的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #25218 (CK) & #478853 (biglion) +It is an hour's drive from here to there. 从这里到那里驾车一小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #62128 (CK) & #5911615 (verdastelo9604) +It is difficult to speak three languages. 說三種語言是很困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #72729 (CK) & #798115 (Martha) +It is difficult to understand his theory. 他的理论很难懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #287776 (Zifre) & #846766 (fucongcong) +It is difficult to understand this novel. 这部小说很难读懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #58468 (CK) & #478839 (biglion) +It is evident that he has made a mistake. 很明顯的是他犯了錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #283628 (CM) & #775900 (Martha) +It is your business to take care of them. 照顾他们是你自己的事儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #305137 (CM) & #1990211 (sunnywqing) +It isn't necessary to answer that letter. 沒有必要回那封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #495676 (CK) & #891987 (Martha) +It took me three hours to do my homework. 我花了3小时做作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #258549 (CK) & #335680 (fucongcong) +It was Marie Curie who discovered radium. 鐳是居里夫人所發現的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29800 (CK) & #801455 (Martha) +It was in Beijing that I studied Chinese. 我是在北京學的中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #844672 (eastasiastudent) & #859024 (Martha) +It wasn't me who told you not to do that. 不是我告訴你不要去做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6343039 (CK) & #6624718 (verdastelo9604) +It's almost time for the cherry blossoms. 幾乎是櫻花綻放的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244919 (CK) & #797129 (Martha) +It's almost time for the train to arrive. 現在差不多是火車要到的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #7681621 (potatoindespair) & #759178 (Martha) +It's more polite to say thin than skinny. 说苗条比说瘦更有礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #652410 (darinmex) & #812360 (fucongcong) +It's not a suitable topic for discussion. 它不是一個適合討論的主題。 CC-BY 2.0 (France) Attribution: tatoeba.org #42207 (CK) & #798228 (Martha) +It's unlikely that he did anything wrong. 他看來沒有做錯甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #954102 (CK) & #6147581 (verdastelo9604) +Japan depends on other countries for oil. 日本的石油依靠进口。 CC-BY 2.0 (France) Attribution: tatoeba.org #281565 (CK) & #343364 (fucongcong) +Lansing is the state capital of Michigan. 蘭辛是密西根州的首府。 CC-BY 2.0 (France) Attribution: tatoeba.org #29725 (CK) & #797086 (Martha) +Learning a foreign language is difficult. 學習外語是困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #21904 (CK) & #797048 (Martha) +Let's draw lots to decide who goes first. 来抽签决定谁先走吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #63035 (CM) & #1397392 (mtdot) +Let's take advantage of the long weekend. 来好好利用大周末吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #278050 (CK) & #1397017 (mtdot) +Life would be impossible without the sun. 沒有太陽就沒有生命。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736790 (paper1n0) & #884637 (Tajfun) +Lightning is usually followed by thunder. 閃電常常伴隨著雷鳴。 CC-BY 2.0 (France) Attribution: tatoeba.org #27162 (CK) & #798210 (Martha) +Many workers were laid off at that plant. 那个工厂开除了很多工人。 CC-BY 2.0 (France) Attribution: tatoeba.org #48010 (CM) & #8798306 (crescat) +Mary wanted to marry a man with ambition. 以前,玛丽想和一位有雄心壮志的男人结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #1096131 (CK) & #7768248 (jiangche) +Mary won't listen to her friend's advice. 瑪麗不會聽她朋友的忠告。 CC-BY 2.0 (France) Attribution: tatoeba.org #31870 (CK) & #894067 (Martha) +Mother was busy getting ready for dinner. 母親正忙著準備晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #320871 (CK) & #801448 (Martha) +My friend invited me to go out to dinner. 我的朋友邀請我去吃晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163534 (emmettricks) & #738545 (Martha) +My mother opened the door very carefully. 我妈妈小心翼翼地打开门。 CC-BY 2.0 (France) Attribution: tatoeba.org #4872152 (zvzuibqx) & #4859714 (musclegirlxyp) +My mother was disappointed by my failure. 我的母亲对我的失败感到失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #251841 (CK) & #8777538 (crescat) +My parents won't let me go out with boys. 我父母不让我和男生约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496254 (weihaiping) & #464776 (fucongcong) +My room is three times as large as yours. 我的房間是你的三倍大。 CC-BY 2.0 (France) Attribution: tatoeba.org #251782 (sacredceltic) & #788824 (Martha) +Not all of the passengers escaped injury. 並非所有的乘客都免於受傷。 CC-BY 2.0 (France) Attribution: tatoeba.org #268406 (CK) & #775441 (Martha) +Nothing is more valuable than friendship. 沒有比友情更有價值的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #660412 (CK) & #6091678 (verdastelo9604) +One is Japanese and the other is Italian. 一个是日本人,另一个是意大利人。 CC-BY 2.0 (France) Attribution: tatoeba.org #73108 (CK) & #1416064 (sadhen) +Only 3 out of the 98 passengers survived. 98名乘客只有3人生还。 CC-BY 2.0 (France) Attribution: tatoeba.org #72299 (CK) & #1397381 (mtdot) +Only a fool would do something like that. 傻瓜才会那么干。 CC-BY 2.0 (France) Attribution: tatoeba.org #8938632 (CK) & #8975245 (WilsonWong) +Osaka is the center of commerce in Japan. 大坂是日本的商业中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #275690 (CM) & #817264 (fucongcong) +Our eyes take time to adjust to the dark. 我们的眼睛需要时间来适应黑暗。 CC-BY 2.0 (France) Attribution: tatoeba.org #482338 (adjusting) & #334396 (fucongcong) +Please come back home as soon as you can. 请尽快回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #2986618 (CK) & #5739304 (verdastelo9604) +Please divide the pizza into three parts. 請把披薩分成三份。 CC-BY 2.0 (France) Attribution: tatoeba.org #1548133 (CM) & #1544233 (tsayng) +Please pick me up at the airport at five. 請於五點鐘到機場接我。 CC-BY 2.0 (France) Attribution: tatoeba.org #18215 (kebukebu) & #761276 (Martha) +Putting ideas into practice is difficult. 把想法付諸實踐是困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #328740 (fcbond) & #797036 (Martha) +School finishes before noon on Saturdays. 學校在星期六中午之前放學。 CC-BY 2.0 (France) Attribution: tatoeba.org #279537 (CK) & #798175 (Martha) +She always clears the table after a meal. 她经常在饭后收拾桌子。 CC-BY 2.0 (France) Attribution: tatoeba.org #310453 (CK) & #611537 (sarah) +She cared for her father until his death. 她照顾她的父亲直到他去世。 CC-BY 2.0 (France) Attribution: tatoeba.org #316807 (CK) & #1235355 (sunnywqing) +She finished her work an hour in advance. 她提前一小时完成了工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #310091 (CM) & #785821 (fucongcong) +She got her daughter a personal computer. 她給她的女兒買了一台個人電腦。 CC-BY 2.0 (France) Attribution: tatoeba.org #317131 (CK) & #804553 (Martha) +She got married when she was twenty-five. 她二十五歲時結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310132 (CK) & #802499 (Martha) +She graduated from high school last year. 去年她從高中畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #313213 (CK) & #802093 (Martha) +She has been absent since last Wednesday. 从上周三起,她一直缺席。 CC-BY 2.0 (France) Attribution: tatoeba.org #310843 (CK) & #2017445 (sadhen) +She is always at the bottom of the class. 她总是在班上拿倒数第一。 CC-BY 2.0 (France) Attribution: tatoeba.org #310387 (darinmex) & #8686673 (crescat) +She made a series of medical discoveries. 她提出了一連串的醫學發現。 CC-BY 2.0 (France) Attribution: tatoeba.org #317502 (CK) & #909455 (Martha) +She spends her leisure time making dolls. 她利用空闲时间做布娃娃。 CC-BY 2.0 (France) Attribution: tatoeba.org #317325 (Shiawase) & #2004692 (sadhen) +She squeezed the juice from many oranges. 她用了許多柳橙來榨汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #388705 (CK) & #894017 (Martha) +She squeezed the juice from many oranges. 她榨了許多柳橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #388705 (CK) & #894019 (Martha) +She was killed in an automobile accident. 她死於一場汽車車禍。 CC-BY 2.0 (France) Attribution: tatoeba.org #314586 (CK) & #1589651 (tsayng) +She's a frequent visitor to this country. 她经常来这个国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #312396 (CK) & #8893583 (crescat) +Soccer is the most popular of all sports. 足球是所有体育运动中最受欢迎的。 CC-BY 2.0 (France) Attribution: tatoeba.org #54117 (CM) & #1708615 (sadhen) +Some furniture is put together with glue. 一些家具是用膠水黏在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #24107 (CS) & #798051 (Martha) +Sorry it took me so long to write to you. 對不起, 我過了這麼長的時間才回你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #878504 (sakina) & #883136 (Martha) +Spring is the best season to visit Kyoto. 春天是访问京都最好的季节。 CC-BY 2.0 (France) Attribution: tatoeba.org #266956 (CK) & #782267 (fucongcong) +Thank you for baking this delicious cake. 谢谢你烤的美味蛋糕。 CC-BY 2.0 (France) Attribution: tatoeba.org #1716451 (Amastan) & #1990260 (sunnywqing) +That architect builds very modern houses. 那个建筑师创建了非常现代的房屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #68436 (CK) & #335873 (fucongcong) +That house is the place where I was born. 那房子是我出生的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #968735 (shanghainese) & #344417 (fucongcong) +That shop sells newspapers and magazines. 那家店卖报纸和杂志。 CC-BY 2.0 (France) Attribution: tatoeba.org #387709 (Mouseneb) & #349668 (fucongcong) +That's mine. I don't know where yours is. 那个是我的。我不知道你的在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #9030300 (CK) & #1235585 (sunnywqing) +The Swiss consume a large amount of beer. 瑞士人消耗不少啤酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #1250599 (tsayng) & #1250601 (tsayng) +The TV remote control is under the couch. 电视遥控器在沙发下面。 CC-BY 2.0 (France) Attribution: tatoeba.org #496550 (Swift) & #8744085 (crescat) +The air conditioner has got out of order. 空调坏了。 CC-BY 2.0 (France) Attribution: tatoeba.org #63051 (CK) & #7773214 (jiangche) +The apple doesn't fall far from the tree. 蘋果掉落的地方不會離樹幹很遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #1285500 (enteka) & #816706 (Martha) +The ball is that boy's prized possession. 这个球是那个男孩的宝贝。 CC-BY 2.0 (France) Attribution: tatoeba.org #606874 (baisong) & #392260 (fucongcong) +The bird was covered with white feathers. 鸟儿身上铺满了白色的羽毛。 CC-BY 2.0 (France) Attribution: tatoeba.org #45009 (CM) & #334657 (fucongcong) +The boss has a good opinion of your work. 老板对你的工作有很高的评价。 CC-BY 2.0 (France) Attribution: tatoeba.org #33433 (CK) & #346460 (fucongcong) +The boy denied having stolen the bicycle. 那个男孩否认偷了自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #268014 (CK) & #333998 (fucongcong) +The boy is playing with his toy soldiers. 男孩在玩玩具兵。 CC-BY 2.0 (France) Attribution: tatoeba.org #1907681 (Spamster) & #6148997 (verdastelo9604) +The children go to school in the morning. 孩子们早上去学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #462648 (lukaszpp) & #466158 (fucongcong) +The cough syrup has a licorice flavoring. 咳嗽糖浆有股甘草的味道。 CC-BY 2.0 (France) Attribution: tatoeba.org #694075 (darinmex) & #808206 (fucongcong) +The day after tomorrow is Tom's birthday. 後天是湯姆的生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #71870 (CK) & #907863 (Martha) +The earthworm wriggled when I touched it. 我碰蚯蚓的时候,它扭动起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #644636 (darinmex) & #812333 (fucongcong) +The family eats breakfast on the balcony. 一家人在陽臺上吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126350 (CK) & #9037057 (xjjAstrus) +The fish in this restaurant is delicious. 這家餐廳的魚很好吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #7794254 (sharris123) & #5868157 (xjjAstrus) +The girl was always following her mother. 那女孩不管到哪兒都跟著母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #46481 (CK) & #5471492 (xjjAstrus) +The house I'm living in isn't very large. 我住的房子不是太大。 CC-BY 2.0 (France) Attribution: tatoeba.org #1053958 (Brian255) & #785037 (Martha) +The library is in the center of the city. 图书馆位于城市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #698333 (CK) & #4264881 (notabene) +The library is in the middle of the city. 图书馆位于市中央。 CC-BY 2.0 (France) Attribution: tatoeba.org #270703 (Eldad) & #1506818 (fenfang557) +The library is in the middle of the city. 图书馆位于城市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #270703 (Eldad) & #4264881 (notabene) +The little cabin was bathed in moonlight. 小木屋沐浴在月光之中。 CC-BY 2.0 (France) Attribution: tatoeba.org #267546 (CM) & #2680869 (tsayng) +The man behind them is playing the piano. 在他們身後的男人正在彈鋼琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #46044 (CK) & #778509 (Martha) +The man tried to install his own antenna. 这男人试着安装他自己的天线。 CC-BY 2.0 (France) Attribution: tatoeba.org #45368 (CM) & #5965724 (verdastelo9604) +The movie theater was filled with people. 這家電影院擠滿了人。 CC-BY 2.0 (France) Attribution: tatoeba.org #521649 (CK) & #895273 (Martha) +The museum is open from Monday to Friday. 博物馆周一到周五开门。 CC-BY 2.0 (France) Attribution: tatoeba.org #44494 (CK) & #363885 (fucongcong) +The next concert will take place in June. 下一场音乐会将在六月份举办。 CC-BY 2.0 (France) Attribution: tatoeba.org #497478 (FeuDRenais) & #4270141 (notabene) +The police officers arrested the burglar. 警察拘捕了這個竊賊。 CC-BY 2.0 (France) Attribution: tatoeba.org #400569 (CK) & #872129 (Martha) +The quickest means of travel is by plane. 旅行最快的方式是乘飞机。 CC-BY 2.0 (France) Attribution: tatoeba.org #243682 (CM) & #333363 (fucongcong) +The room was illuminated with red lights. 這個房間被紅色的燈照亮了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44195 (CK) & #875043 (Martha) +The shop is open from Monday to Saturday. 这家店从星期一到星期六都营业。 CC-BY 2.0 (France) Attribution: tatoeba.org #44882 (CK) & #1417541 (sadhen) +The storm didn't abate for several hours. 风暴几个小时没有减弱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #325306 (CM) & #2080582 (sadhen) +The strike affected the nation's economy. 罢工妨碍了国家经济。 CC-BY 2.0 (France) Attribution: tatoeba.org #51884 (CK) & #819787 (fucongcong) +The strike affected the nation's economy. 罢工影响了国家经济。 CC-BY 2.0 (France) Attribution: tatoeba.org #51884 (CK) & #819790 (fucongcong) +The students learned many poems by heart. 学生们用心学习了很多首诗。 CC-BY 2.0 (France) Attribution: tatoeba.org #21423 (CK) & #2394370 (fenfang557) +The teacher can't have said such a thing. 老师不可能说过这样的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1397760 (CK) & #332990 (fucongcong) +The teacher said that the earth is round. 老師說地球是圓的。 CC-BY 2.0 (France) Attribution: tatoeba.org #273036 (Eldad) & #917813 (Martha) +The tiger cub looked like a large kitten. 小老虎看起來像隻大貓。 CC-BY 2.0 (France) Attribution: tatoeba.org #36937 (CK) & #772054 (Martha) +The truth can be more painful than a lie. 真相可能比谎言更令人痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1365899 (CM) & #2007055 (sadhen) +The world is full of incompetent doctors. 社会上满是不称职的医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #402465 (Grayster) & #609897 (sarah) +There are many beautiful parks in London. 伦敦有很多漂亮的公园。 CC-BY 2.0 (France) Attribution: tatoeba.org #508778 (kebukebu) & #335023 (fucongcong) +There are only three women in this class. 這個班只有三個女生。 CC-BY 2.0 (France) Attribution: tatoeba.org #7840534 (sharris123) & #483983 (moonoops) +There are so many people at this concert. 這場演唱會的人真多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230485 (alec) & #1223788 (tsayng) +There are two zeros in the number "2010." 2010这个数字里有两个零。 CC-BY 2.0 (France) Attribution: tatoeba.org #682519 (Source_VOA) & #816563 (fucongcong) +There aren't many books on these shelves. 这些书架上没有很多书。 CC-BY 2.0 (France) Attribution: tatoeba.org #9145859 (CK) & #336957 (fucongcong) +There is always something happening here. 這裡總有一些事情在發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #808800 (cherylting) & #810075 (Martha) +There is no knowing what he will do next. 没有人知道他接下来会干什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #283789 (CM) & #805611 (fucongcong) +There's a book about dancing on the desk. 桌子上有一本关于舞蹈的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396377 (CK) & #1873013 (sadhen) +There's no money left in my bank account. 我的银行账户里没留下钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4499503 (CK) & #5780600 (verdastelo9604) +These flowers are beautiful, aren't they? 這些花很美,不是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #388320 (CK) & #871216 (Martha) +These pictures are really very beautiful. 这些照片真美。 CC-BY 2.0 (France) Attribution: tatoeba.org #494172 (minshirui) & #334385 (fucongcong) +They became friends in elementary school. 他們在小學時就是朋友了。 CC-BY 2.0 (France) Attribution: tatoeba.org #681020 (Source_VOA) & #899971 (kanaorange) +They blamed Tom for causing the accident. 他们指责汤姆造成了事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017388 (CK) & #5794109 (verdastelo9604) +They got married and settled near Boston. 他們結了婚並定居在波士頓附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #306439 (CK) & #802502 (Martha) +They left there the day before yesterday. 前天,他们离开了那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #27766 (CK) & #333771 (fucongcong) +They made straight for their destination. 他們直奔目的地。 CC-BY 2.0 (France) Attribution: tatoeba.org #307613 (CK) & #796030 (Martha) +They must have arrived home by this time. 他們在這個時候一定已經到家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306563 (CS) & #848201 (Martha) +They say that Venice is a beautiful city. 他們說威尼斯是個漂亮的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #33916 (CK) & #6095967 (verdastelo9604) +This city is cold and lonely without you. 没有你这个城市孤单又冷清。 CC-BY 2.0 (France) Attribution: tatoeba.org #386841 (CK) & #1990185 (sunnywqing) +This city is cold and lonely without you. 没有你,这座城市寒冷又孤寂。 CC-BY 2.0 (France) Attribution: tatoeba.org #386841 (CK) & #7772063 (jiangche) +This dictionary has about 40,000 entries. 这本字典包含了约4万个词条。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498989 (weihaiping) & #335274 (fucongcong) +This is a good book for children to read. 这是本对儿童好的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #55701 (CK) & #5830178 (verdastelo9604) +This is a post office and that is a bank. 这是邮局,那是银行。 CC-BY 2.0 (France) Attribution: tatoeba.org #56142 (CK) & #334637 (fucongcong) +This is my first time to visit Australia. 这是我第一次来澳大利亚 CC-BY 2.0 (France) Attribution: tatoeba.org #7155920 (CK) & #8743665 (cxpadonis) +This is the house where she used to live. 这是她曾经住过的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #387559 (CK) & #1329976 (vicch) +This is the worst movie I have ever seen. 这是我看过的最差劲的电影了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55721 (CK) & #336952 (fucongcong) +This medicine does not have side effects. 这药没有副作用。 CC-BY 2.0 (France) Attribution: tatoeba.org #845617 (iampo0kie) & #845133 (fucongcong) +This tunnel is twice as long as that one. 這條隧道是那條的兩倍長。 CC-BY 2.0 (France) Attribution: tatoeba.org #60768 (CK) & #1239333 (tsayng) +Today is Saturday and tomorrow is Sunday. 今天是周六,明天是周日。 CC-BY 2.0 (France) Attribution: tatoeba.org #1529643 (erikspen) & #8866912 (crescat) +Tom and Mary are both wearing brown hats. 汤姆和玛丽都戴着褐色的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029932 (CK) & #1749265 (sadhen) +Tom blew out all the candles on the cake. 汤姆吹灭了蛋糕上的所有蜡烛。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538488 (CK) & #5581762 (verdastelo9604) +Tom bought a pair of black leather shoes. 汤姆买了一双黑色皮鞋。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753635 (CK) & #4757587 (ryanwoo) +Tom broke some bones in his arm and hand. 湯姆的手臂和手斷了些骨頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #680396 (Source_VOA) & #778727 (Martha) +Tom criticized Mary in front of everyone. 汤姆在所有人面前批评了玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095016 (CK) & #2027917 (sadhen) +Tom cut himself with his knife yesterday. 汤姆昨天用刀切到自己了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755838 (CK) & #4764664 (ryanwoo) +Tom didn't have enough time to eat lunch. 湯姆沒時間吃午飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640755 (CK) & #6065395 (verdastelo9604) +Tom didn't let me answer Mary's question. 湯姆沒有讓我回答瑪莉的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #4961240 (CK) & #4962202 (umidake) +Tom does everything he can to save money. 湯姆盡全力省錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094574 (CK) & #6583886 (verdastelo9604) +Tom doesn't even have a driver's license. 湯姆甚至沒有駕駛證。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023887 (CK) & #6105189 (verdastelo9604) +Tom doesn't know if Mary is happy or not. 汤姆不知道玛丽是高兴呢,还是不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2234602 (FeuDRenais) & #2233810 (sadhen) +Tom doesn't need to wear glasses anymore. 汤姆不需要再戴眼镜了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025984 (CK) & #5983616 (verdastelo9604) +Tom had no idea Mary was a serial killer. 汤姆不知道玛丽是个连环杀手。 CC-BY 2.0 (France) Attribution: tatoeba.org #8186073 (CK) & #8638443 (slo_oth) +Tom has a lot of experience in computers. 汤姆对电脑有很多经验。 CC-BY 2.0 (France) Attribution: tatoeba.org #680884 (Source_VOA) & #5911678 (verdastelo9604) +Tom has a tattoo of a skull on his chest. 湯姆在胸上有個頭骨文身。 CC-BY 2.0 (France) Attribution: tatoeba.org #4501225 (CK) & #6119479 (verdastelo9604) +Tom has admitted he was there that night. 汤姆承认他那晚是在那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #6244354 (CK) & #6307288 (gumblex) +Tom has been sick in bed for three weeks. 汤姆已经因病卧床三周了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4133495 (CK) & #8969813 (WilsonWong) +Tom has lost interest in studying French. 湯姆已經失去學習法語的興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025360 (CK) & #4805785 (umidake) +Tom hasn't missed any of Mary's concerts. 汤姆没有错过一场玛丽的音乐会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093569 (CK) & #5698031 (verdastelo9604) +Tom hasn't talked to Mary about that yet. 汤姆还没跟玛丽谈那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663520 (CK) & #5685898 (verdastelo9604) +Tom is acting as if nothing has happened. 汤姆像什么也没发生一样行动。 CC-BY 2.0 (France) Attribution: tatoeba.org #5844480 (CK) & #5983571 (verdastelo9604) +Tom is still sitting in the waiting room. 汤姆还在等候室里坐着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3223149 (CK) & #5863305 (verdastelo9604) +Tom picked up the jar and read the label. 汤姆拿起罐子读标签。 CC-BY 2.0 (France) Attribution: tatoeba.org #3498545 (CK) & #5900409 (verdastelo9604) +Tom poured himself another glass of wine. 汤姆又给自己倒了一杯酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957684 (CK) & #5617216 (verdastelo9604) +Tom pretty much forgot about the meeting. 汤姆差不多忘了开会的事儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269596 (FeuDRenais) & #2254380 (KerenDeng) +Tom realized that he had lost his wallet. 湯姆意識到他丢了錢包。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024291 (CK) & #6111942 (verdastelo9604) +Tom refused to help Mary do her homework. 湯姆拒絶幫瑪麗做她的作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #1849049 (CK) & #6119491 (verdastelo9604) +Tom said that he keeps a gun in his home. 湯姆說他的家裡有把槍。 CC-BY 2.0 (France) Attribution: tatoeba.org #7182476 (CK) & #6534792 (verdastelo9604) +Tom sat at his desk, pretending to study. 湯姆坐在桌前,装作在學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958020 (CK) & #6635874 (verdastelo9604) +Tom started dating Mary three months ago. 汤姆三个月前开始和玛丽约会。 CC-BY 2.0 (France) Attribution: tatoeba.org #4017295 (CK) & #5842619 (verdastelo9604) +Tom stayed at this hotel for three weeks. 汤姆在这宾馆待了三周。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640724 (CK) & #5780563 (verdastelo9604) +Tom took out his key and opened the door. 汤姆掏出钥匙开了门。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761952 (CK) & #4764580 (ryanwoo) +Tom understands what it takes to survive. 汤姆明白生存的代价。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092603 (CK) & #1394913 (mtdot) +Tom wants to know more about Mary's past. 汤姆想要知道更多关于玛丽的过去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092457 (CK) & #8765261 (crescat) +Tom was caught driving without a license. Tom被抓到無照駕駛。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092427 (CK) & #5496310 (egg0073) +Tom was the only boy in the entire class. 汤姆是班里唯一的男生。 CC-BY 2.0 (France) Attribution: tatoeba.org #6854119 (Hybrid) & #8883977 (crescat) +Tom wouldn't let anyone else in the room. 汤姆不让任何人进房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757139 (CK) & #4757248 (ryanwoo) +Tom wrote down something in his notebook. 湯姆在他的筆記本上寫了東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287341 (CK) & #6111948 (verdastelo9604) +Tom's girlfriend threatened to leave him. 汤姆的女朋友威胁要离开他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3543674 (Hybrid) & #3664232 (yss123231) +True friendship is based on mutual trust. 真正的友谊建立在彼此信任的基础上。 CC-BY 2.0 (France) Attribution: tatoeba.org #7772943 (sharris123) & #2490074 (fenfang557) +Water turns into steam when it is boiled. 水沸腾后变为蒸汽。 CC-BY 2.0 (France) Attribution: tatoeba.org #270835 (CM) & #333212 (fucongcong) +We are encouraged to use our imagination. 我們被鼓勵使用想像力。 CC-BY 2.0 (France) Attribution: tatoeba.org #249003 (CK) & #8388770 (wangchou) +We can't go outside because it's raining. 因为下雨,我们不能出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360700 (xrchz) & #481162 (fucongcong) +We got up at dawn to avoid a traffic jam. 我们黎明时起床以避开交通堵塞。 CC-BY 2.0 (France) Attribution: tatoeba.org #263080 (Dejo) & #5670800 (verdastelo9604) +We graduate from high school at eighteen. 我們在十八歲的時候從高中畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #247797 (CK) & #802106 (Martha) +We have more customers than we can count. 我們的顧客比我們可以計數的更多。 CC-BY 2.0 (France) Attribution: tatoeba.org #249591 (CK) & #781433 (Martha) +We have one of your friends here with us. 你的一个朋友在我们这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640704 (CK) & #5965710 (verdastelo9604) +We have your size, but not in that color. 我们有你的尺寸,但是没有那个颜色。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753829 (garborg) & #332857 (fucongcong) +We must sleep at least eight hours a day. 我们每天至少该睡八小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #22781 (CK) & #813625 (fucongcong) +We need to find Tom as quickly as we can. 我們要盡快找到湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825344 (CK) & #6333815 (verdastelo9604) +We talked and talked until the day broke. 我們一直聊天直到天明。 CC-BY 2.0 (France) Attribution: tatoeba.org #248666 (CM) & #772097 (Martha) +We watched a baseball game on television. 我們看了電視上的棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #262814 (CK) & #896383 (Martha) +We were very sorry we couldn't help them. 我們很遺憾無法幫助他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #4091852 (andymakespasta) & #4071836 (egg0073) +We're expecting a good harvest this year. 我們期望今年豐收。 CC-BY 2.0 (France) Attribution: tatoeba.org #243138 (CK) & #900677 (Martha) +What do you like to do in your free time? 您空闲时间喜欢做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464542 (lukaszpp) & #469466 (fucongcong) +What do you like to do in your free time? 你空闲时间喜欢做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #464542 (lukaszpp) & #469467 (fucongcong) +What do you usually do in your free time? 你在閒暇的時候一般做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #3737842 (CK) & #6120165 (xjjAstrus) +What do you usually do with your friends? 你一般和朋友一起做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #7242669 (CK) & #6120166 (xjjAstrus) +What does that gentleman do for a living? 那位先生靠什么生活? CC-BY 2.0 (France) Attribution: tatoeba.org #569325 (kebukebu) & #7768241 (jiangche) +What happened to Tom could happen to you. 湯姆身上發生的事也可能發生到你身上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3129178 (Hybrid) & #6216625 (verdastelo9604) +What is that big building in front of us? 我们面前的这幢高楼是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #247684 (CK) & #333567 (fucongcong) +What time will the train get to Yokohama? 火车什么时候到横滨? CC-BY 2.0 (France) Attribution: tatoeba.org #1481671 (weihaiping) & #335130 (fucongcong) +What's the average height of the players? 选手们的平均身高是多少? CC-BY 2.0 (France) Attribution: tatoeba.org #7826836 (CK) & #2394625 (fenfang557) +When I opened the door, I broke the lock. 我开门的时候弄坏了锁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1264860 (xellugis) & #332912 (fucongcong) +When the cat is away, the mice will play. 貓兒不在,老鼠玩的輕鬆自在。 CC-BY 2.0 (France) Attribution: tatoeba.org #20065 (CK) & #806167 (Martha) +When the cat is away, the mice will play. 上司不在,部下就輕鬆自在。 CC-BY 2.0 (France) Attribution: tatoeba.org #20065 (CK) & #806169 (Martha) +When the cat is away, the mice will play. 山上无老虎,猴子称大王。 CC-BY 2.0 (France) Attribution: tatoeba.org #20065 (CK) & #5092084 (mirrorvan) +When the phone rang, he ran to answer it. 電話響起時,他跑去接起。 CC-BY 2.0 (France) Attribution: tatoeba.org #881606 (CM) & #5797493 (egg0073) +When you're hungry, anything tastes good. 當你餓的時候,任何東西都好吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #402333 (CK) & #907527 (Martha) +Where is nearest American Express office? 最近的美國運通辦公室在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #27273 (CK) & #869912 (Martha) +Which do you like better, spring or fall? 春天和秋天,你更喜欢哪个? CC-BY 2.0 (France) Attribution: tatoeba.org #4569189 (CK) & #335123 (fucongcong) +Who do you usually go to the movies with? 你一般和誰去看電影? CC-BY 2.0 (France) Attribution: tatoeba.org #7236789 (CM) & #6120152 (xjjAstrus) +Who will provide capital for the venture? 谁来为风险投资提供资金? CC-BY 2.0 (France) Attribution: tatoeba.org #47257 (CM) & #332673 (fucongcong) +Why didn't you call me yesterday evening? 怎么你昨晚没有给我打电话? CC-BY 2.0 (France) Attribution: tatoeba.org #1506901 (fenfang557) & #1313885 (vicch) +Will you have time to have lunch with me? 你有时间跟我吃午饭吗? CC-BY 2.0 (France) Attribution: tatoeba.org #64166 (CK) & #794140 (fucongcong) +Would you care for another cup of coffee? 再来一杯咖啡怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #62213 (CK) & #8720563 (crescat) +Would you care for another glass of beer? 再来一杯啤酒怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #31445 (CK) & #5097655 (mirrorvan) +Would you like some cream in your coffee? 你要在咖啡上加些奶油嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62265 (CK) & #1233788 (tsayng) +Would you please explain the rules to me? 請你為我解釋規則好嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #632436 (CK) & #793974 (Martha) +Would you please look after the children? 你可以照顧一下孩子們嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776350 (CK) & #776969 (Martha) +You can't build buildings on swampy land. 你不能在沼澤地上建造建築物。 CC-BY 2.0 (France) Attribution: tatoeba.org #499444 (CK) & #896381 (Martha) +You could count to ten when you were two. 在你兩歲時, 你可以數到十。 CC-BY 2.0 (France) Attribution: tatoeba.org #15874 (Swift) & #775646 (Martha) +You didn't tell me Mary was so beautiful. 你没告诉我玛丽这么漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #3204050 (CK) & #5780581 (verdastelo9604) +You don't go to school on Sunday, do you? 你週日不上學, 對嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #15885 (Swift) & #775659 (Martha) +You don't have to go to school on Sunday. 你没必要周日去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #15868 (CK) & #1839181 (sadhen) +You had better be careful not to overeat. 你最好小心不要吃過量。 CC-BY 2.0 (France) Attribution: tatoeba.org #15985 (Swift) & #775720 (Martha) +You must be tired after such a long trip. 在這麼長程的旅途後你一定很累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16795 (iamgrim) & #775846 (Martha) +You must go outside if you want to smoke. 如果您想抽烟的话,您必须出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #681536 (Source_VOA) & #784569 (fucongcong) +You never told me you could speak French. 你從沒告訴過我你會說法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #3204044 (CK) & #6628366 (verdastelo9604) +You should have helped him with his work. 你應該幫他工作的。 CC-BY 2.0 (France) Attribution: tatoeba.org #15815 (Zifre) & #775608 (Martha) +You should take care of your sick mother. 你應該照顧你生病的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #9587 (Zifre) & #775593 (Martha) +You're stepping into dangerous territory. 你進入了危險區。 CC-BY 2.0 (France) Attribution: tatoeba.org #16222 (kebukebu) & #760740 (Martha) +You're taller than most of Tom's friends. 你比汤姆的大部分朋友都高。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955017 (CK) & #5794107 (verdastelo9604) +You're the only one who can protect them. 你是唯一能保护他们的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712660 (CK) & #5556173 (verdastelo9604) +You've got something stuck in your teeth. 牙齿卡了点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #8069422 (CK) & #8589339 (easononizuka) +"Do you think he will come?" "I hope not." "你認為他會來嗎?" "我希望不會。" CC-BY 2.0 (France) Attribution: tatoeba.org #73557 (CK) & #790600 (Martha) +"Shall I take a message?" "No, thank you." “需要我为您留个口信儿吗?”“不用了,谢谢。” CC-BY 2.0 (France) Attribution: tatoeba.org #73597 (CK) & #2456055 (fenfang557) +A brass band is marching along the street. 一个管弦乐团沿着路前进 CC-BY 2.0 (France) Attribution: tatoeba.org #270718 (CM) & #5973397 (zhangxr91) +A change of air will do you a lot of good. 改變環境將對你有很多好處。 CC-BY 2.0 (France) Attribution: tatoeba.org #279048 (CK) & #830430 (Martha) +A fire broke out the day before yesterday. 前天發生了火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #49226 (CK) & #786093 (Martha) +Admission to the museum is thirty dollars. 博物館入場費是三十美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #57446 (CK) & #798065 (Martha) +Africa was once called the Dark Continent. 非洲曾經被稱為黑暗大陸。 CC-BY 2.0 (France) Attribution: tatoeba.org #67751 (CK) & #801435 (Martha) +Although old, he is still very much alive. 虽然上了年纪,他依旧充满活力。 CC-BY 2.0 (France) Attribution: tatoeba.org #326409 (CM) & #1450535 (asosan) +An eight-year-old car is almost worthless. 一輛車齡八年的車子幾乎是毫無價值的。 CC-BY 2.0 (France) Attribution: tatoeba.org #72305 (CK) & #801998 (Martha) +Answer the following questions in English. 用英語回答下列問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #394876 (Dorenda) & #811584 (Martha) +Are you familiar with the rules of soccer? 你對足球規則熟悉嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #70051 (CK) & #6044385 (verdastelo9604) +Are you going to eat all of that yourself? 你打算自己一人把它全部吃了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4922933 (CK) & #5096428 (mirrorvan) +Are you sure that Tom is in Australia now? 你确定汤姆现在在澳洲吗? CC-BY 2.0 (France) Attribution: tatoeba.org #7194549 (CK) & #8800824 (crescat) +Aren't you supposed to be at school today? 你今天不是应该在学校的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #242802 (CK) & #2092361 (yuzazaza) +As soon as the door opened, they ran away. 门一开,他们就逃走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39113 (CM) & #472982 (fucongcong) +Believe it or not, she has three children. 她有三个孩子,信不信由你。 CC-BY 2.0 (France) Attribution: tatoeba.org #32854 (CK) & #429140 (fucongcong) +Bread is made from flour, water and yeast. 面包是用面粉、水和发酵粉做的。 CC-BY 2.0 (France) Attribution: tatoeba.org #34925 (CK) & #375314 (fucongcong) +Can you put some suntan lotion on my back? 你能在我的背上涂些防晒霜吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5193113 (Hybrid) & #5637356 (verdastelo9604) +Children don't like to go out in the dark. 孩子們不喜歡摸黑外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #245936 (CK) & #6131479 (verdastelo9604) +Children really like playing on the beach. 孩子们非常喜欢在海滩上玩耍。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164967 (emmettricks) & #844153 (fucongcong) +Compared to our house, yours is a mansion. 跟我们的房子比,你的就是个豪宅。 CC-BY 2.0 (France) Attribution: tatoeba.org #1196580 (CK) & #5993958 (verdastelo9604) +Could you put my name on the waiting list? 你能把我的名字加到等候批准的申请人名单上吗? CC-BY 2.0 (France) Attribution: tatoeba.org #63152 (CM) & #336656 (fucongcong) +Countless stars were twinkling in the sky. 无数星星在天上闪烁。 CC-BY 2.0 (France) Attribution: tatoeba.org #18312 (Eldad) & #5767608 (verdastelo9604) +Did you hear about what's happened to Tom? 你有没有听说汤姆出了什么事? CC-BY 2.0 (France) Attribution: tatoeba.org #3043459 (CK) & #7774831 (jiangche) +Do you have any idea what's been going on? 你知道現在正在發生甚麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4013983 (CK) & #6119411 (verdastelo9604) +Do you have any idea when the bank closes? 你知道银行什么时候关门吗? CC-BY 2.0 (France) Attribution: tatoeba.org #18459 (J_S) & #1766410 (yuzazaza) +Do you know how to recover a deleted file? 你知道怎么恢复已删除的文件吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5722394 (marcj794) & #5722730 (chloe77) +Do you know whether she can speak English? 你知道她是否會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #308188 (CK) & #811840 (Martha) +Do you think that he is equal to the task? 你认为他能够胜任这个任务吗? CC-BY 2.0 (France) Attribution: tatoeba.org #284585 (CM) & #1430244 (sadhen) +Don't ask Tom any questions about his job. 别问汤姆他的工作的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663490 (CK) & #5685884 (verdastelo9604) +Don't you have any feelings for me at all? 你对我完全没有感觉吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5485234 (Hybrid) & #5555220 (verdastelo9604) +Eating lunch with you would make me happy. 跟你一起吃午飯會讓我高興。 CC-BY 2.0 (France) Attribution: tatoeba.org #2044940 (CK) & #6150898 (verdastelo9604) +Europe has a smaller population than Asia. 欧洲的人口比亚洲少。 CC-BY 2.0 (France) Attribution: tatoeba.org #30014 (CK) & #390530 (fucongcong) +Everyone knew Tom could speak French well. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7514251 (CK) & #8777542 (crescat) +Everyone wants to meet you. You're famous! 大家都想见到你,你太有名了! CC-BY 2.0 (France) Attribution: tatoeba.org #1468 (CK) & #334921 (fucongcong) +Farmers always complain about the weather. 农民总是抱怨天气。 CC-BY 2.0 (France) Attribution: tatoeba.org #282331 (CK) & #7774819 (jiangche) +French has many more vowels than Japanese. 法语的元音比日语的多得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #34161 (CK) & #349644 (fucongcong) +Give us two knives and four forks, please. 请给我们两把刀和四把叉。 CC-BY 2.0 (France) Attribution: tatoeba.org #262535 (CK) & #407225 (fucongcong) +Have you ever thought of becoming a nurse? 你曾經想過當個護士嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #20981 (kebukebu) & #760741 (Martha) +Have you finished doing your homework yet? 你做完回家作業了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16399 (CK) & #775784 (Martha) +He amassed a large fortune before he died. 他死前累積了龐大的財富。 CC-BY 2.0 (France) Attribution: tatoeba.org #297221 (CK) & #2638764 (cienias) +He became more obstinate as he grew older. 他年紀越大變得越頑固。 CC-BY 2.0 (France) Attribution: tatoeba.org #296818 (CK) & #834982 (Martha) +He graduated from high school this spring. 今年春天他從高中畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289915 (CK) & #802091 (Martha) +He has a good reading knowledge of French. 他能很好地读懂法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #292604 (CK) & #8703927 (crescat) +He has spent ten years in jail for murder. 他因為謀殺案在牢裡待了十年。 CC-BY 2.0 (France) Attribution: tatoeba.org #1334559 (CM) & #5505597 (egg0073) +He helped me to get over the difficulties. 他帮助我克服了困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #297249 (CS) & #819792 (fucongcong) +He is getting along with his neighborhood. 他與他的鄰居相處。 CC-BY 2.0 (France) Attribution: tatoeba.org #295433 (CK) & #804987 (Martha) +He is getting along with his neighborhood. 他和他的邻居相处。 CC-BY 2.0 (France) Attribution: tatoeba.org #295433 (CK) & #1360029 (sadhen) +He knows almost nothing about that animal. 他幾乎對那個動物一無所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #291194 (CK) & #788738 (Martha) +He makes three times more money than I do. 他赚的钱比我多三倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396493 (CK) & #2030799 (sadhen) +He stretched out his arm to take the book. 他伸长了手臂为了能拿到书。 CC-BY 2.0 (France) Attribution: tatoeba.org #303790 (CM) & #444596 (fucongcong) +He went fishing instead of playing tennis. 他去钓鱼了,而没去打网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #291873 (CK) & #335096 (fucongcong) +He's the boy we spoke about the other day. 他是前幾天我們談到的那個男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1316319 (CK) & #881072 (Martha) +Her daughter has become a beautiful woman. 她的女兒已經變成一個漂亮的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #489167 (adjusting) & #1444214 (egg0073) +His hobby is painting pictures of flowers. 他的爱好是画有花的图。 CC-BY 2.0 (France) Attribution: tatoeba.org #286645 (CK) & #718401 (Yashanti) +How did you know that was my favorite one? 你怎麼知道那是我最喜歡的? CC-BY 2.0 (France) Attribution: tatoeba.org #5849169 (CK) & #6114423 (verdastelo9604) +How many Chinese characters can you write? 你會寫多少漢字? CC-BY 2.0 (France) Attribution: tatoeba.org #7772319 (sharris123) & #6057136 (xjjAstrus) +I appreciate your help in clarifying this. 我感谢你帮助澄清。 CC-BY 2.0 (France) Attribution: tatoeba.org #59458 (CK) & #5655333 (verdastelo9604) +I believed that he would keep his promise. 我相信他会信守诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #260153 (CK) & #332658 (fucongcong) +I can cook you something if you're hungry. 要是你饿了,我能给你做饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3287384 (CK) & #5630441 (verdastelo9604) +I can verify that that's the truth myself. 我自己能够证实那是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5896421 (peterius) & #1790109 (sadhen) +I can't adjust myself to the climate here. 我不能讓自己適應這裡的氣候。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264264 (sharptoothed) & #6091818 (verdastelo9604) +I can't even remember what Tom looks like. 我甚至不能记起来汤姆长什么样。 CC-BY 2.0 (France) Attribution: tatoeba.org #1951567 (CK) & #5091702 (mirrorvan) +I can't finish the job in so short a time. 我無法在這麼短的時間內完成這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #41309 (kebukebu) & #761281 (Martha) +I can't go with you because I'm very busy. 我不能和你们一起去,因为我很忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #242978 (CK) & #784372 (fucongcong) +I can't put up with that noise any longer. 我无法再忍受那噪音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #35736 (CK) & #335537 (fucongcong) +I cannot give you a definite answer today. 我今天无法给您一个最终的答复。 CC-BY 2.0 (France) Attribution: tatoeba.org #63118 (CM) & #335535 (fucongcong) +I caught sight of a parade on my way home. 在回家的路上,我看到一场阅兵式。 CC-BY 2.0 (France) Attribution: tatoeba.org #20441 (CK) & #1416156 (sadhen) +I cheered myself up by listening to music. 我藉由聽音樂來鼓舞我自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #25400 (CK) & #919661 (Martha) +I consider myself fairly fluent in French. 我认为自己的法语相当流利。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824547 (CK) & #5091745 (mirrorvan) +I could swim well even when I was a child. 我很小的时候就游得很好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #487919 (CK) & #6307283 (gumblex) +I didn't call on him because I had a cold. 我没有拜访他,因为我感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261591 (CM) & #332550 (fucongcong) +I didn't know you didn't know how to swim. 我不知道你不會游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #3448765 (CK) & #6931235 (verdastelo9604) +I do not for a moment think you are wrong. 我从没认为你错了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17897 (CK) & #5574205 (verdastelo9604) +I don't feel like eating out this evening. 今晚我没心情出去吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #243366 (CK) & #8709799 (crescat) +I don't know if you feel the same as I do. 我不知道你是否和我有一样的感觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #4404634 (CK) & #7768119 (jiangche) +I don't think my life is very interesting. 我不認為我的人生很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323149 (CK) & #2511545 (tsayng) +I don't want everyone to think I'm stupid. 我不想讓任何人認為我傻。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033769 (CK) & #6107082 (verdastelo9604) +I found something interesting in the town. 我發現了鎮上一些有趣的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #327851 (CK) & #805044 (Martha) +I found the new magazine very interesting. 我發現這本新雜誌非常有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #252176 (CK) & #805029 (Martha) +I got acquainted with the chief executive. 我認識了這位行政長官。 CC-BY 2.0 (France) Attribution: tatoeba.org #254455 (CK) & #804580 (Martha) +I have a friend whose father is a teacher. 我有一個朋友, 他的父親是老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #250003 (CK) & #766941 (Martha) +I have already finished reading this book. 我已經讀完了這本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1276904 (CK) & #846442 (Martha) +I have problems, just like everybody else. 我有问题,就像其他人一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #5851952 (CK) & #5933788 (verdastelo9604) +I heard Tom muttering something in French. 我听到汤姆在用法语嘀咕些什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #8517668 (CK) & #8739624 (slo_oth) +I hope everything will be fine in the end. 我希望最后一切都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211540 (alec) & #333980 (fucongcong) +I keep the master copy under lock and key. 我妥善保管原版拷貝。 CC-BY 2.0 (France) Attribution: tatoeba.org #934178 (CM) & #934179 (egg0073) +I love her so much that I can't leave her. 我如此地愛她所以我無法離開她。 CC-BY 2.0 (France) Attribution: tatoeba.org #436785 (lukaszpp) & #926818 (Martha) +I need to complete it as soon as possible. 我需要尽快完成。 CC-BY 2.0 (France) Attribution: tatoeba.org #3178644 (CK) & #5574771 (verdastelo9604) +I picked up a pretty shell at the seaside. 我在海边捡了个漂亮贝壳。 CC-BY 2.0 (France) Attribution: tatoeba.org #500169 (blay_paul) & #5911660 (verdastelo9604) +I returned the knife which I had borrowed. 我把我借来的刀还了。 CC-BY 2.0 (France) Attribution: tatoeba.org #258418 (CK) & #793873 (fucongcong) +I saw the film in San Francisco last year. 我去年在舊金山看這部電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #49541 (CM) & #769690 (Martha) +I stayed home all day long reading novels. 我全天在家讀小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #258643 (CK) & #6065369 (verdastelo9604) +I still don't understand what's happening. 我還是不明白出了什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #7513750 (CK) & #8215744 (verdastelo9604) +I take full responsibility for the action. 我會為這次行動負起全責。 CC-BY 2.0 (France) Attribution: tatoeba.org #246463 (CK) & #1250589 (tsayng) +I think this machine is in need of repair. 我认为这机器需要修理。 CC-BY 2.0 (France) Attribution: tatoeba.org #59824 (CM) & #5715117 (verdastelo9604) +I think we shouldn't allow Tom to do that. 我認為我們不應該允許湯姆去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6089188 (CK) & #6938386 (verdastelo9604) +I thought that Tom would sleep until noon. 我认为汤姆会睡到中午。 CC-BY 2.0 (France) Attribution: tatoeba.org #7173286 (CK) & #5983577 (verdastelo9604) +I want the same jacket as you are wearing. 我也想要和你身上那件同样的外套。 CC-BY 2.0 (France) Attribution: tatoeba.org #252687 (CK) & #332732 (fucongcong) +I want to leave this difficult job to her. 我想让她干这项艰难的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #427033 (FeuDRenais) & #426891 (fucongcong) +I want to show you something in my office. 我想给你看看我办公室里的一些东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2590916 (CK) & #7774814 (jiangche) +I was watching TV when the telephone rang. 电话响的时候,我在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #39172 (CK) & #464949 (fucongcong) +I wrote the wrong address on the envelope. 我在信封上写错了地址。 CC-BY 2.0 (France) Attribution: tatoeba.org #682501 (Source_VOA) & #816527 (fucongcong) +I'll be absent from home in the afternoon. 下午我不在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #240077 (CK) & #423411 (fucongcong) +I'll still have a scar from that accident. 我还留着那起事故的伤疤。 CC-BY 2.0 (France) Attribution: tatoeba.org #1890930 (CK) & #5624938 (verdastelo9604) +I'm having lunch with my sister right now. 現在正和妹妹吃午飯中。 CC-BY 2.0 (France) Attribution: tatoeba.org #453501 (FeuDRenais) & #8388705 (wangchou) +I'm not at all satisfied with this result. 我對這個結果一點兒也不滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #7221959 (CK) & #779517 (Martha) +I'm not satisfied with my English ability. 我不滿意我的英語能力。 CC-BY 2.0 (France) Attribution: tatoeba.org #258260 (CK) & #801367 (Martha) +I've been spending too much time with Tom. 我在湯姆身上花的時間太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359243 (CK) & #6728903 (verdastelo9604) +If I'd known the truth, I'd have told you. 如果我知道真相,我就告诉你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #544122 (CK) & #5907522 (verdastelo9604) +If I've misjudged you, I'm terribly sorry. 如果我对你产生误解,我实在抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3730179 (CM) & #5630429 (verdastelo9604) +If you don't hurry, you'll miss the train. 如果你不抓紧的话,你就会赶不上火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #19703 (CK) & #2065370 (sadhen) +If you have something to say, just say it. 如果你想说,就说。 CC-BY 2.0 (France) Attribution: tatoeba.org #4717633 (xorgy) & #5900403 (verdastelo9604) +If you hurry you can still make the train. 如果你抓紧,你还能赶上火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #1541026 (SHamp) & #1323972 (vicch) +In comparison with Tokyo, London is small. 和东京比,伦敦很小。 CC-BY 2.0 (France) Attribution: tatoeba.org #279731 (Zifre) & #784409 (fucongcong) +In the summer I wear short-sleeved shirts. 夏天我穿短袖衬衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #456003 (lukaszpp) & #471419 (fucongcong) +Is there any possibility of his resigning? 他有可能辭職嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #283836 (CK) & #894339 (Martha) +Is there central heating in this building? 这栋楼里面有中央暖气系统吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1088103 (Scott) & #4764531 (ryanwoo) +It is definite that he will go to America. 他肯定要去美国。 CC-BY 2.0 (France) Attribution: tatoeba.org #282898 (CM) & #817291 (fucongcong) +It sounds like they're not going to leave. 听着好像他们不打算走。 CC-BY 2.0 (France) Attribution: tatoeba.org #551197 (FeuDRenais) & #5595119 (verdastelo9604) +It started raining as soon as we got home. 我們才一到家就下起雨來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422700 (CK) & #1422711 (cienias) +It takes me ten minutes to walk to school. 我走路10分钟能到学校 。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230689 (alec) & #334145 (fucongcong) +It was foolish of you to accept his offer. 你真笨去接受他的提議。 CC-BY 2.0 (France) Attribution: tatoeba.org #17751 (kebukebu) & #760729 (Martha) +It's a pleasure to have you with us again. 真高兴你又跟我们在一起了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3725574 (CM) & #5818094 (verdastelo9604) +It's said that she's a well-known actress. 據說她是個知名的女演員。 CC-BY 2.0 (France) Attribution: tatoeba.org #388309 (CK) & #894395 (Martha) +Let me know the result as soon as you can. 尽早让我知道结果。 CC-BY 2.0 (France) Attribution: tatoeba.org #39531 (CK) & #473021 (fucongcong) +Let's go and see as many things as we can. 我们走,尽可能多看点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #39507 (Swift) & #336708 (fucongcong) +Let's wait for a while and see how you do. 讓我們等一會兒看看你怎麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #53387 (CM) & #872104 (Martha) +Look out for cars when you cross the road. 當你過馬路的時候要當心汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #280497 (CK) & #874487 (Martha) +Many English words are derived from Latin. 許多英文單字源自於拉丁文。 CC-BY 2.0 (France) Attribution: tatoeba.org #26344 (kebukebu) & #761263 (Martha) +Many children die of starvation in Africa. 在非洲有许多孩子死于饥饿。 CC-BY 2.0 (France) Attribution: tatoeba.org #67760 (CM) & #334868 (fucongcong) +Mary doesn't wear as much makeup as Alice. 玛丽没有化爱丽丝那样浓的妆。 CC-BY 2.0 (France) Attribution: tatoeba.org #5472121 (CK) & #5670723 (verdastelo9604) +Mary is the youngest of the three sisters. 玛丽是三姐妹中的老幺。 CC-BY 2.0 (France) Attribution: tatoeba.org #2592645 (WestofEden) & #2500023 (fenfang557) +Mastering a foreign language is difficult. 掌握一门外语很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663466 (CK) & #8463554 (gumblex) +Mistakes like these are easily overlooked. 这种错误很容易被人忽视。 CC-BY 2.0 (France) Attribution: tatoeba.org #60429 (CK) & #845118 (fucongcong) +Mt. Fuji is the highest mountain in Japan. 富士山是日本最高的山。 CC-BY 2.0 (France) Attribution: tatoeba.org #318783 (CM) & #342840 (fucongcong) +My camera can shoot high-definition video. 我的录像机可以拍高清视频。 CC-BY 2.0 (France) Attribution: tatoeba.org #652401 (darinmex) & #812356 (fucongcong) +My father is going for a walk in the park. 我父親要去公園裡走。 CC-BY 2.0 (France) Attribution: tatoeba.org #461165 (jeanne) & #6109278 (verdastelo9604) +My father will retire at the age of sixty. 我父亲六十岁就要退休了。 CC-BY 2.0 (France) Attribution: tatoeba.org #318949 (CK) & #782786 (fucongcong) +My guess is that it will be fine tomorrow. 我猜明天会是好天气。 CC-BY 2.0 (France) Attribution: tatoeba.org #71845 (CM) & #844554 (kooler) +My parents objected to my studying abroad. 我父母反對我出國留學。 CC-BY 2.0 (France) Attribution: tatoeba.org #325711 (CK) & #6128441 (verdastelo9604) +My parents taught me to respect my elders. 我的父母教育我应该尊敬老人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1299100 (rahim) & #1298847 (sunnywqing) +No one knows what'll happen in the future. 沒有人知道未來會發生什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1423286 (CK) & #1423385 (cienias) +One must be responsible for one's conduct. 人要为自己的行为负责。 CC-BY 2.0 (France) Attribution: tatoeba.org #264703 (CK) & #5819709 (verdastelo9604) +Only a few TV programs are worth watching. 只有为数不多的几个电视节目值得关注。 CC-BY 2.0 (France) Attribution: tatoeba.org #239305 (CK) & #332634 (fucongcong) +Only six people were present at the party. 只有六個人參加了派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #35692 (CN) & #767122 (Martha) +Our children like dogs, but I prefer cats. 我们的孩子喜欢狗,但我更喜欢猫。 CC-BY 2.0 (France) Attribution: tatoeba.org #247536 (CK) & #332805 (fucongcong) +Our problems are nothing compared to hers. 我们的问题和她的比起来不算什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #247687 (CK) & #799275 (fucongcong) +Over-sleeping is no excuse for being late. 睡过头不是迟到的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #268938 (CM) & #333509 (fucongcong) +People in the United States speak English. 在美國的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #882579 (Zifre) & #811889 (Martha) +People rely too much on phones these days. 現代人太仰賴手機。 CC-BY 2.0 (France) Attribution: tatoeba.org #7681627 (potatoindespair) & #6142343 (User76378) +Please fill the teapot with boiling water. 請用開水把茶壺灌滿。 CC-BY 2.0 (France) Attribution: tatoeba.org #33401 (CK) & #9135898 (xjjAstrus) +Poor health prohibited him from traveling. 因为健康状况不佳,他没去成旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #238919 (CK) & #2029467 (ydcok) +President Lincoln accepted the invitation. 林肯总统接受了邀请。 CC-BY 2.0 (France) Attribution: tatoeba.org #805438 (Source_VOA) & #5993937 (verdastelo9604) +Several minutes later, the telephone rang. 几分钟后,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3274174 (Eldad) & #332639 (fucongcong) +She bought six yards of cloth for a dress. 她買了六碼的布做衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #311838 (CM) & #876226 (Martha) +She got first prize in the eating contest. 她在吃东西比赛里得了一等奖。 CC-BY 2.0 (France) Attribution: tatoeba.org #315693 (CM) & #5698032 (verdastelo9604) +She got married against her father's will. 她違背了她父親的意願結了婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #316800 (CK) & #802510 (Martha) +She has many friends in the United States. 她有很多美国朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1355918 (AMIKEMA) & #1424225 (sadhen) +She insisted that I should see the doctor. 她坚持让我去看医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #314184 (CK) & #1314030 (vicch) +She knows a lot about the latest fashions. 她很了解最新的時尚趨勢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442226 (CK) & #5372278 (egg0073) +She managed to finish the work on her own. 她想方设法以一己之力完成了工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #315241 (CK) & #1394846 (mtdot) +She read an amusing story to the children. 她给孩子们读了个有趣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #313953 (CK) & #5978344 (verdastelo9604) +She resembles her mother in every respect. 她在各方面都像她的母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #312775 (CM) & #881843 (Martha) +She stayed in that area for a short while. 她在那地方待了片刻。 CC-BY 2.0 (France) Attribution: tatoeba.org #634344 (blay_paul) & #5983686 (verdastelo9604) +She was able to answer whatever was asked. 不管问了什么,她都能回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #316889 (CM) & #334250 (fucongcong) +She was elected chairman of the committee. 她當選為委員會主席。 CC-BY 2.0 (France) Attribution: tatoeba.org #311151 (CK) & #775427 (Martha) +She will be a famous artist in the future. 她将来会是一个有名的艺术家。 CC-BY 2.0 (France) Attribution: tatoeba.org #315002 (Dejo) & #334259 (fucongcong) +She'll give her photo to whoever wants it. 她会把她的照片给想要的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #578247 (FeuDRenais) & #334072 (fucongcong) +Since I had a cold, I didn't go visit him. 我没有拜访他,因为我感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1174799 (CK) & #332550 (fucongcong) +Some of my friends can speak English well. 我的一些朋友英语说得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #252015 (CK) & #392696 (fucongcong) +Some people like sports, and others don't. 有些人喜欢运动,有些人不喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #51646 (CK) & #333128 (fucongcong) +Someone told me that this boy cannot hear. 有人告诉我这个男孩耳聋。 CC-BY 2.0 (France) Attribution: tatoeba.org #1138299 (CM) & #1416059 (sadhen) +Speaking English is very difficult for me. 說英語對我來說很困難。 CC-BY 2.0 (France) Attribution: tatoeba.org #26172 (CK) & #790628 (Martha) +Strictly speaking, the earth is not round. 嚴格來說,地球不是圓的。 CC-BY 2.0 (France) Attribution: tatoeba.org #239507 (CK) & #798199 (Martha) +Switch on the light. I can't see anything. 把灯打开。我什么都看不见了。 CC-BY 2.0 (France) Attribution: tatoeba.org #279232 (CK) & #794237 (fucongcong) +Taiwanese food is milder than Indian food. 台灣菜比印度菜口味淡。 CC-BY 2.0 (France) Attribution: tatoeba.org #275467 (CK) & #797034 (Martha) +Ten minutes later, our car ran out of gas. 我们的车再过十分钟就没油了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162230 (FeuDRenais) & #2143982 (ydcok) +Thank you for the present you gave my son. 谢谢你送给我儿子礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #251373 (CK) & #1867004 (yuzazaza) +Thank you in advance for your cooperation. 提前感謝你們的合作。 CC-BY 2.0 (France) Attribution: tatoeba.org #54483 (CK) & #6477574 (xjjAstrus) +That accident was due to his carelessness. 那事故是他的粗心导致的。 CC-BY 2.0 (France) Attribution: tatoeba.org #485791 (minshirui) & #5911750 (verdastelo9604) +That store sells newspapers and magazines. 那家店卖报纸和杂志。 CC-BY 2.0 (France) Attribution: tatoeba.org #67916 (CK) & #349668 (fucongcong) +That was one of the best times of my life. 那是我一生中最美好的时光之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757649 (garborg) & #4517850 (yuiyu) +That's enough money to cover the expenses. 那些錢足夠支付費用。 CC-BY 2.0 (France) Attribution: tatoeba.org #317904 (CK) & #895773 (Martha) +That's exactly what I've been telling Tom. 那就是我告诉汤姆的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3204298 (CK) & #5900387 (verdastelo9604) +That's the stupidest thing I've ever said. 那是我说过的最愚蠢的话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1335 (wakaran) & #335708 (fucongcong) +The Rhine runs between France and Germany. 萊茵河流經法國和德國國界。 CC-BY 2.0 (France) Attribution: tatoeba.org #29820 (Eldad) & #751683 (Martha) +The apple does not fall far from the tree. 蘋果掉落的地方不會離樹幹很遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #611122 (kebukebu) & #816706 (Martha) +The bus is running about ten minutes late. 公交車晚點了十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #5811978 (jblinguaphile) & #5809511 (xjjAstrus) +The cat was scared by an unfamiliar noise. 猫被陌生的噪音惊吓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #44552 (CM) & #5926186 (verdastelo9604) +The children haven't studied division yet. 孩子們還沒上過除法。 CC-BY 2.0 (France) Attribution: tatoeba.org #2549906 (sharptoothed) & #2807857 (cienias) +The end does not always justify the means. 為了正當目的並非總是可以不擇手段. CC-BY 2.0 (France) Attribution: tatoeba.org #323820 (CK) & #793969 (Martha) +The girl wore a yellow ribbon in her hair. 那女孩的头发上绑了一根黄丝带。 CC-BY 2.0 (France) Attribution: tatoeba.org #46633 (CK) & #334126 (fucongcong) +The lights in the bathroom aren't working. 洗手间的灯坏掉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #324957 (CK) & #8831906 (crescat) +The magician had the children's attention. 魔术师吸引了孩子们的注意。 CC-BY 2.0 (France) Attribution: tatoeba.org #20645 (CK) & #334604 (fucongcong) +The murmur of the brook lulls me to sleep. 溪流潺潺,催我入眠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2230009 (FeuDRenais) & #2221100 (sadhen) +The new Harry Potter movie is pretty lame. 哈利波特的新片十分差。 CC-BY 2.0 (France) Attribution: tatoeba.org #652489 (darinmex) & #812369 (fucongcong) +The only thing I want to do is go fishing. 我唯一想做的是去釣魚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2006522 (CK) & #4193788 (egg0073) +The police were able to find the criminal. 警方能夠找到罪犯。 CC-BY 2.0 (France) Attribution: tatoeba.org #238333 (CK) & #769704 (Martha) +The quality of these products is the same. 这些产品的品质是一样的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7798510 (sharris123) & #2188412 (sadhen) +The river's on the other side of the hill. 河在山丘的另一端。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268495 (_undertoad) & #6109322 (verdastelo9604) +The rivers were flooded by the heavy rain. 大雨使河水泛滥。 CC-BY 2.0 (France) Attribution: tatoeba.org #23907 (CK) & #336953 (fucongcong) +The situation is getting worse by the day. 情况一天比一天差。 CC-BY 2.0 (France) Attribution: tatoeba.org #7550889 (karloelkebekio) & #332723 (fucongcong) +The teacher cannot have said such a thing. 老师不可能说过这样的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #272786 (CM) & #332990 (fucongcong) +The top of Mt. Fuji was covered with snow. 富士山顶盖满了雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #318770 (CK) & #349929 (fucongcong) +The train arrived ten minutes behind time. 列車晚到了十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #326231 (CK) & #6128500 (verdastelo9604) +Their apples aren't as good as our apples. 他們的蘋果沒有我們的好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3353706 (alester237) & #5542970 (egg0073) +There are a lot of new buildings here now. 这里现在有了许多新建筑。 CC-BY 2.0 (France) Attribution: tatoeba.org #241838 (CK) & #5624986 (verdastelo9604) +There are many different people in Europe. 在欧洲有许多不同的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #703082 (papabear) & #5763027 (verdastelo9604) +There are many ways to improve one's life. 有很多的方法可以改善人的一生。 CC-BY 2.0 (France) Attribution: tatoeba.org #790734 (FeuDRenais) & #790759 (Martha) +There are some strange animals in the zoo. 动物园里有很多奇怪的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #44694 (CK) & #2482672 (fenfang557) +There is a book about dancing on the desk. 桌子上有一本关于舞蹈的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #691415 (Zifre) & #1873013 (sadhen) +There was a steady increase in population. 人口穩定地增加。 CC-BY 2.0 (France) Attribution: tatoeba.org #270347 (CK) & #801473 (Martha) +There was nothing I could do at that time. 当时我什么都不能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462546 (CK) & #8463675 (gumblex) +There were a lot of people at the concert. 音乐会上有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #50371 (CK) & #334653 (fucongcong) +There's nothing to prevent you from going. 没什么能阻止你出发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7120523 (CM) & #8975257 (WilsonWong) +There's something strange about Tom today. 今天汤姆有点奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2812110 (xylian) & #8795176 (crescat) +There's something that I want to tell you. 有件事情我要对你说。 CC-BY 2.0 (France) Attribution: tatoeba.org #7806117 (CK) & #1759719 (sadhen) +These tools are used for building a house. 这些工具是用来造房子的。 CC-BY 2.0 (France) Attribution: tatoeba.org #55119 (CK) & #335874 (fucongcong) +They fought for the sake of their country. 他们为祖国而战斗。 CC-BY 2.0 (France) Attribution: tatoeba.org #306548 (CM) & #1366198 (sadhen) +They furnished the library with new books. 他們在圖書館裝備了新的書籍。 CC-BY 2.0 (France) Attribution: tatoeba.org #270691 (CK) & #818964 (Martha) +They give good service at that restaurant. 那家餐館提供良好的服務。 CC-BY 2.0 (France) Attribution: tatoeba.org #68592 (CK) & #804980 (Martha) +They seem to have had a good time in Rome. 他們看來在羅馬過了些好日子。 CC-BY 2.0 (France) Attribution: tatoeba.org #306122 (CK) & #6325056 (verdastelo9604) +They were busy working for social reforms. 他们忙于社会改革。 CC-BY 2.0 (France) Attribution: tatoeba.org #802462 (Source_VOA) & #5613691 (verdastelo9604) +They've decided to get married next month. 他們已經決定下個月結婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #503817 (CK) & #900692 (Martha) +This book is easy enough for them to read. 这本书他们读起来够简单了。 CC-BY 2.0 (France) Attribution: tatoeba.org #57017 (CK) & #336668 (fucongcong) +This book of his isn't interesting at all. 他的这本书一点意思也没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #285335 (CM) & #5794148 (verdastelo9604) +This cake tastes like it has cheese in it. 这块蛋糕尝起来有奶酪的味道。 CC-BY 2.0 (France) Attribution: tatoeba.org #61171 (CK) & #1324874 (vicch) +This city is 1,600 meters above sea level. 这座城市海拔1600米。 CC-BY 2.0 (France) Attribution: tatoeba.org #57689 (CK) & #819758 (fucongcong) +This document was actually written by Tom. 這文件其實是湯姆寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1975742 (CK) & #6482306 (verdastelo9604) +This is a matter of the utmost importance. 这件事至关重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #55708 (sundown) & #332559 (fucongcong) +This is the best book that I've ever read. 這是我讀過的最好的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #55671 (CK) & #6103106 (verdastelo9604) +This is the room where the body was found. 这就是发现尸体的房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #56225 (CK) & #1501723 (fenfang557) +This little baby tore up a 10 dollar bill. 這個小嬰孩撕掉了一張十美元的鈔票。 CC-BY 2.0 (France) Attribution: tatoeba.org #1479230 (weihaiping) & #896486 (Martha) +This movie is frightening to the children. 這部電影對小孩來說很可怕。 CC-BY 2.0 (France) Attribution: tatoeba.org #681028 (Source_VOA) & #899977 (kanaorange) +Three people were killed in the explosion. 这场爆炸中有三人丧生。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462543 (CK) & #8463615 (gumblex) +To tell the truth, I don't agree with you. 实话说,我不赞成你。 CC-BY 2.0 (France) Attribution: tatoeba.org #265135 (CM) & #1438523 (asosan) +Tom and I weren't the ones who complained. 汤姆和我不是抱怨的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6663943 (CK) & #8655642 (slo_oth) +Tom and Mary have three cats and two dogs. Tom和Mary有三隻貓和兩隻狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493565 (CK) & #4504448 (egg0073) +Tom and Mary switched places on the bench. 汤姆和玛丽在长凳上交换了位置。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538348 (CK) & #5842612 (verdastelo9604) +Tom came up with an answer to our problem. 汤姆给我们的问题想出了个答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956215 (CK) & #5983659 (verdastelo9604) +Tom can't have done what you think he did. 汤姆还不能做完你认为他能的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016446 (CK) & #5780517 (verdastelo9604) +Tom complained that Mary never helped him. 汤姆埋怨玛丽从来不帮他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095236 (CK) & #4759992 (ryanwoo) +Tom couldn't tell Mary everything he knew. 汤姆不能告诉玛丽他知道的所有事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029395 (CK) & #5819725 (verdastelo9604) +Tom didn't have time to finish his report. 湯姆沒時間完成報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026380 (CK) & #6107685 (xjjAstrus) +Tom didn't show up at the party yesterday. 湯姆昨天沒有出現在派對上。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794431 (CK) & #4794627 (umidake) +Tom doesn't know who he can trust anymore. 湯姆不知道他還能再信任誰。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094425 (CK) & #6318561 (verdastelo9604) +Tom has to speak French every day at work. 汤姆每天都要在工作时说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #5465170 (CK) & #5558537 (verdastelo9604) +Tom helped Mary buy everything she needed. 湯姆幫瑪麗買了她所有需要買的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #3150583 (CK) & #6044379 (verdastelo9604) +Tom hurried so he wouldn't miss the train. 汤姆加紧步伐以不错过火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #3405223 (CK) & #5624942 (verdastelo9604) +Tom is able to come to our party tomorrow. 汤姆明天能来我们的聚会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025119 (CK) & #5581711 (verdastelo9604) +Tom is going out this afternoon with Mary. 今天下午汤姆和玛丽会一起出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028576 (CK) & #1416146 (sadhen) +Tom is standing in the corner of the room. 汤姆正站在房间的角落。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877493 (CK) & #8775853 (crescat) +Tom knows exactly how I like my hair done. 汤姆很清楚我喜欢什么样的发型。 CC-BY 2.0 (France) Attribution: tatoeba.org #2454765 (fenfang557) & #2454761 (fenfang557) +Tom planted three apple trees in his yard. 汤姆在他的院子里种了三棵苹果树。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024346 (CK) & #4970104 (wzhd) +Tom put a stack of letters on Mary's desk. 汤姆把一叠信放在玛丽桌上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3086922 (CK) & #5640737 (verdastelo9604) +Tom said he's considered quitting his job. 汤姆说他考虑辞职。 CC-BY 2.0 (France) Attribution: tatoeba.org #7513574 (CK) & #8753746 (slo_oth) +Tom says he can communicate with the dead. Tom说他可以通灵。 CC-BY 2.0 (France) Attribution: tatoeba.org #5951769 (mailohilohi) & #5951859 (yhlyhl) +Tom says he hopes Mary is able to do that. 汤姆说他希望玛丽能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #6224729 (CK) & #9007590 (jacintoo) +Tom seems to really enjoy being in Boston. 湯姆看來真喜歡待在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092947 (CK) & #6169143 (verdastelo9604) +Tom told me that Mary is leaving tomorrow. 汤姆和我说明天玛丽会离开。 CC-BY 2.0 (France) Attribution: tatoeba.org #6646379 (CK) & #8696340 (crescat) +Tom told me that he had lost his textbook. 汤姆告诉我他丢了课本。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761958 (CK) & #4764573 (ryanwoo) +Tom took out his wallet and paid the bill. 湯姆拿出錢包付了賬。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867841 (CK) & #6065723 (verdastelo9604) +Tom wanted Mary to say that she loved him. 汤姆想让玛丽说爱他。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619189 (CK) & #3780473 (e78xx_xxx) +Tom was a teacher for nearly thirty years. 汤姆当教师约三十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4011811 (CK) & #5698050 (verdastelo9604) +Tom was hit by a truck and died instantly. 湯姆被卡車撞到而且當場死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #4804472 (CK) & #4805737 (umidake) +UFO stands for unidentified flying object. UFO代表不明飛行物體。 CC-BY 2.0 (France) Attribution: tatoeba.org #72170 (CK) & #797097 (Martha) +We agreed to start early the next morning. 我们同意了第二天一早开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #22640 (CK) & #333084 (fucongcong) +We are all longing for peace in the world. 谁都希望世界和平。 CC-BY 2.0 (France) Attribution: tatoeba.org #276550 (CK) & #2029473 (ydcok) +We don't want any freeloaders around here. 我們不希望有人在這裡吃霸王餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #529638 (darinmex) & #1227134 (tsayng) +We have barely enough bread for breakfast. 我们早饭的面包刚够吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #277821 (CK) & #5624974 (verdastelo9604) +We have two examinations during this term. 这个学期我们有两次考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #241988 (CM) & #1416248 (sadhen) +We just have enough time to eat breakfast. 我们刚好有时间吃早饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230777 (alec) & #334402 (fucongcong) +We'll deal with this problem in Chapter 3. 我们在第三章讨论这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2700032 (CK) & #1329989 (vicch) +Wealth does not always bring us happiness. 財富並不總是為我們帶來快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #318760 (CK) & #798220 (Martha) +Were you fat when you were in high school? 你在高中的时候胖吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3309029 (CK) & #8656910 (crescat) +Were you playing tennis yesterday morning? 你昨天早上在打网球吗? CC-BY 2.0 (France) Attribution: tatoeba.org #244452 (Dejo) & #333382 (fucongcong) +Were you playing tennis yesterday morning? 你昨天上午打网球了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #244452 (Dejo) & #7772587 (jiangche) +What do you think should be done about it? 你觉得对此该做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #48368 (CK) & #333850 (fucongcong) +What do you usually do in your spare time? 你在閒暇的時候一般做什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #6863289 (CK) & #6120165 (xjjAstrus) +What is the ultimate purpose of education? 教育的最终目的是什么? CC-BY 2.0 (France) Attribution: tatoeba.org #19127 (CK) & #487499 (fucongcong) +What we had to do was really quite simple. 我們要做的很簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820821 (CK) & #6472020 (verdastelo9604) +What'll actually happen is anyone's guess. 誰也說不準實際上將會發生什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #7818719 (CK) & #801416 (Martha) +What's your favorite way to cook potatoes? 你最喜歡用什麼方式煮馬鈴薯? CC-BY 2.0 (France) Attribution: tatoeba.org #906932 (CK) & #5548485 (egg0073) +Where are you planning to spend the night? 你打算去哪儿过夜? CC-BY 2.0 (France) Attribution: tatoeba.org #1698632 (CK) & #2058571 (sadhen) +Whether you like it or not doesn't matter. 你喜不喜欢没关系。 CC-BY 2.0 (France) Attribution: tatoeba.org #71571 (Swift) & #336470 (fucongcong) +Which one of the two brothers did you see? 你见到的是两兄弟中的哪一个? CC-BY 2.0 (France) Attribution: tatoeba.org #5618209 (adamtrousers) & #1746064 (sadhen) +While you're young, you should read a lot. 當你年輕的時候, 你應該多讀點兒書。 CC-BY 2.0 (France) Attribution: tatoeba.org #265688 (kebukebu) & #760845 (Martha) +Why do you want to know what I'm thinking? 為什麼你想知道我在想什麼? CC-BY 2.0 (France) Attribution: tatoeba.org #1390993 (donkirkby) & #767144 (Martha) +Will I be the only one going to the party? 会不会只有我一个人去聚会? CC-BY 2.0 (France) Attribution: tatoeba.org #4754501 (DostKaplan) & #4757577 (ryanwoo) +You can't achieve anything without effort. 没有什么是不劳而获的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873382 (CK) & #334159 (fucongcong) +You have a really good sense of direction. 你的方向感很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1242861 (alec) & #1241264 (tsayng) +You have made the very same mistake again. 你又犯了相同的錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #16421 (qdii) & #775786 (Martha) +You have to turn in the reports on Monday. 星期一你必須繳交報告。 CC-BY 2.0 (France) Attribution: tatoeba.org #16174 (Swift) & #775741 (Martha) +You must be careful not to make him angry. 你要小心別惹他生氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #15795 (Swift) & #775604 (Martha) +You need a car if you live in the suburbs. 要住在郊区的话,汽车是必需的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770605 (garborg) & #4267343 (notabene) +You seem to be a little under the weather. 你看上去不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #239434 (CK) & #8727908 (crescat) +You should learn to control your emotions. 你應該學會控制自己的情緒。 CC-BY 2.0 (France) Attribution: tatoeba.org #5165036 (shibeilei) & #5115765 (xjjAstrus) +You should make an effort to stop smoking. 你應該努力去戒煙。 CC-BY 2.0 (France) Attribution: tatoeba.org #16202 (Zifre) & #775752 (Martha) +You shouldn't tell him anything about her. 你不應該告訴他任何關於她的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #467357 (Zifre) & #884220 (Martha) +You'd better do as the doctor advised you. 你最好照着医生的建议做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7810479 (CK) & #336870 (fucongcong) +You'll get used to living here in no time. 你很快就会习惯住在这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #606867 (baisong) & #517602 (fucongcong) +You'll learn how to do it sooner or later. 你遲早會學會怎麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #15901 (Swift) & #775664 (Martha) +You're never satisfied with anything I do. 你對我做的任何事都不滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #5613522 (Hybrid) & #6624661 (verdastelo9604) +"Pass me the salt, please." "Here you are." “请把盐递给我。”“拿着。” CC-BY 2.0 (France) Attribution: tatoeba.org #1673 (CK) & #501560 (fucongcong) +A Persian cat was sleeping under the table. 波斯猫在桌子下面睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #33876 (Eldad) & #7773122 (jiangche) +A face with too much make up looks strange. 化妆太浓的话脸会看着很奇怪。 CC-BY 2.0 (France) Attribution: tatoeba.org #61459 (CM) & #8690317 (crescat) +A huge monster is coming down the mountain. 从山上走来一只巨大的怪物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697733 (shanghainese) & #1695398 (Venki) +A true gentleman never betrays his friends. 一个真正的绅士不会出卖他的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #520132 (kebukebu) & #333581 (fucongcong) +A woman visited us while you were sleeping. 您睡觉的时候,一个女人来看过我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #71375 (CK) & #813488 (fucongcong) +A woman visited us while you were sleeping. 你睡觉的时候,一个女人来看过我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #71375 (CK) & #813489 (fucongcong) +Africa is a continent, but Greenland isn't. 非洲是一個大陸, 而格陵蘭不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #2896596 (migl) & #766465 (Martha) +America was discovered by Columbus in 1492. 美國在1492年被哥倫布發現。 CC-BY 2.0 (France) Attribution: tatoeba.org #67551 (CK) & #801450 (Martha) +An electric current can generate magnetism. 電流可以產生磁性。 CC-BY 2.0 (France) Attribution: tatoeba.org #279237 (CK) & #796023 (Martha) +And everyone has the ability to contribute. 每个人都有能力作贡献。 CC-BY 2.0 (France) Attribution: tatoeba.org #704151 (jakov) & #811351 (fucongcong) +Animals cannot exist without air and water. 動物離不開空氣和水。 CC-BY 2.0 (France) Attribution: tatoeba.org #280240 (jakov) & #798248 (Martha) +Anything that can be misunderstood will be. 任何事都可以被誤解。 CC-BY 2.0 (France) Attribution: tatoeba.org #1746 (Swift) & #780059 (Martha) +Approximately thirty young people attended. 约有三十个年轻人到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663392 (CK) & #5692353 (verdastelo9604) +Are you a student of a private high school? 你在私立高中读书吗? CC-BY 2.0 (France) Attribution: tatoeba.org #70288 (CK) & #2052515 (sadhen) +Are you going to be in Boston this weekend? 你這週末在波士頓過嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4011976 (CK) & #6633884 (verdastelo9604) +Are you going to visit any other countries? 你会去访问其他国家吗? CC-BY 2.0 (France) Attribution: tatoeba.org #33609 (CK) & #334595 (fucongcong) +Are you sure you don't want to sleep on it? 你確定你不想睡在它上面嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #3549708 (CK) & #6044380 (verdastelo9604) +As soon as he saw a policeman, he ran away. 他一看见警察就逃走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295735 (CM) & #408826 (fucongcong) +Astronomy deals with the stars and planets. 天文學涉及恆星和行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #278983 (CK) & #798253 (Martha) +Both Tom and his wife grew up in Australia. 汤姆和他的妻子都在澳大利亚长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #7167764 (CK) & #8589625 (tianblr) +By the way, I've got to tell you something. 我得順便給你講件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5179701 (Objectivesea) & #8726141 (shou) +California and Nevada border on each other. 加利福尼亞州和內華達州相互接界。 CC-BY 2.0 (France) Attribution: tatoeba.org #63511 (CK) & #798247 (Martha) +Can you imagine walking around on the moon? 你可以想象在月球上行走吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4753803 (garborg) & #332556 (fucongcong) +Can you please tell me your name once more? 请问你能再告诉我一遍你的名字吗? CC-BY 2.0 (France) Attribution: tatoeba.org #889678 (Scott) & #5918301 (verdastelo9604) +Clint Eastwood was elected mayor of Carmel. 克林伊斯威特當選為卡梅爾市市長。 CC-BY 2.0 (France) Attribution: tatoeba.org #62788 (CK) & #801497 (Martha) +Could you please repeat what you just said? 您可以再重复一遍刚才说的话吗? CC-BY 2.0 (France) Attribution: tatoeba.org #433596 (CK) & #5668922 (hzy980512) +Dentists take x-rays to examine your teeth. 牙医用X光检查你的牙齿。 CC-BY 2.0 (France) Attribution: tatoeba.org #682505 (Source_VOA) & #816546 (fucongcong) +Did you forget to lock the door last night? 你昨天晚上忘了鎖門嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4245988 (CK) & #6101323 (verdastelo9604) +Do you believe in eternal life after death? 你相信死后永生吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4755420 (cairnhead) & #4764666 (ryanwoo) +Do you really believe that's what happened? 你真的相信那发生了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3133065 (CK) & #5574711 (verdastelo9604) +Do you think we should send for the doctor? 你認為我們應該派人去請醫生來嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #27900 (mcq) & #769672 (Martha) +Does he go to school on foot or by bicycle? 他走路去学校还是骑车去学校? CC-BY 2.0 (France) Attribution: tatoeba.org #303608 (CM) & #408497 (fucongcong) +Don't forget to put a stamp on your letter. 别忘了在你的信上贴张邮票。 CC-BY 2.0 (France) Attribution: tatoeba.org #265971 (CK) & #332537 (fucongcong) +English is not easy, but it is interesting. 英语不容易,但很有意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #458053 (Capuchin) & #334667 (fucongcong) +English is not easy, but it is interesting. 英语不简单,但是很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #458053 (Capuchin) & #510749 (fucongcong) +English is useful in diplomacy and tourism. 英語在外交和旅遊業方面很有用。 CC-BY 2.0 (France) Attribution: tatoeba.org #26284 (CK) & #798318 (Martha) +Entering the house, I tripped over the mat. 进家门后,我被垫子绊倒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24250 (CK) & #336692 (fucongcong) +Everybody knew Tom could speak French well. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451240 (CK) & #8777542 (crescat) +Everyone knows Bell invented the telephone. 任何人都知道贝尔发明了电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #7513472 (CK) & #8631842 (ZeroAurora) +Everyone knows that Tom speaks good French. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8779657 (shekitten) & #8777542 (crescat) +Everything is going horribly wrong for Tom. 對湯姆來說一切都開始錯得離譜。 CC-BY 2.0 (France) Attribution: tatoeba.org #3303683 (Hybrid) & #6318554 (verdastelo9604) +Except for one person, everybody went home. 除了一人,大家都回家了。 CC-BY 2.0 (France) Attribution: tatoeba.org #525709 (CK) & #880292 (Martha) +Few students could understand what he said. 很少有學生能了解他說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #283596 (CK) & #875344 (Martha) +Few students could understand what he said. 幾乎沒有學生能懂他所說的話。 CC-BY 2.0 (France) Attribution: tatoeba.org #283596 (CK) & #875345 (Martha) +Graham Greene is a favorite author of mine. 格雷厄姆葛林是我最喜歡的作家之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #387461 (CK) & #876366 (Martha) +Have you ever seen such a beautiful sunset? 你看過這麼美的夕陽嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #54628 (kebukebu) & #761287 (Martha) +He built an observatory to study the stars. 為了觀測星象,他建了一座瞭望台。 CC-BY 2.0 (France) Attribution: tatoeba.org #803220 (Source_VOA) & #1238439 (tsayng) +He can speak French, and obviously English. 他能说法语,很明显还有英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #292640 (CK) & #5581658 (verdastelo9604) +He could not forsake his friend in trouble. 他不会抛下落难的朋友不管。 CC-BY 2.0 (France) Attribution: tatoeba.org #296653 (CM) & #493511 (biglion) +He gave us not only clothes but some money. 他不仅给了我们衣服,还有一点钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #297367 (CM) & #334409 (fucongcong) +He got accustomed to the new way of living. 他适应了新的生活方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #299912 (CK) & #611536 (sarah) +He has made little progress in his English. 他的英语有了小小的进步。 CC-BY 2.0 (France) Attribution: tatoeba.org #293943 (CM) & #1777923 (sunnywqing) +He has three times as many books as I have. 他有我的三倍的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #297860 (CK) & #5933790 (verdastelo9604) +He helped an old lady get up from her seat. 他幫忙一位老太太從位子上站起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #299212 (CK) & #3149141 (cienias) +He is absorbed in the study of linguistics. 他沉迷于语言学的研究。 CC-BY 2.0 (France) Attribution: tatoeba.org #296105 (CM) & #8679688 (crescat) +He is concerned about his father's illness. 他担心他父亲的身体。 CC-BY 2.0 (France) Attribution: tatoeba.org #303363 (CK) & #343946 (fucongcong) +He is one of the greatest artists in Japan. 他是日本最伟大的艺术家之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #302223 (CK) & #332835 (fucongcong) +He is richer than anyone else in this town. 他比镇里的其他人都有钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #289937 (CK) & #5931767 (verdastelo9604) +He looks old, but he hasn't reached 30 yet. 他看上去老,但他还不到30岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #569484 (Eldad) & #819797 (fucongcong) +He often sits for many hours reading books. 他常常坐着看书一连好几个小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1315834 (CK) & #1316016 (sadhen) +He parked his car in front of the building. 他把车停在大楼前。 CC-BY 2.0 (France) Attribution: tatoeba.org #299044 (CK) & #333907 (fucongcong) +He was just on the verge of going to sleep. 他快要睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292808 (CK) & #8621495 (slo_oth) +His decision to retire surprised all of us. 他要退休的決定讓我們都感到吃驚。 CC-BY 2.0 (France) Attribution: tatoeba.org #283375 (CM) & #6568289 (verdastelo9604) +His influence extends all over the country. 他的影響遍及全國。 CC-BY 2.0 (France) Attribution: tatoeba.org #286902 (CK) & #6065350 (verdastelo9604) +His store is always crowded with customers. 他的店總是擠滿了顧客。 CC-BY 2.0 (France) Attribution: tatoeba.org #287208 (CK) & #892452 (Martha) +His teeth are yellow from smoking too much. 他的牙齿被烟熏黄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286515 (CM) & #431002 (fucongcong) +How could I be a robot? Robots can't dream. 我怎么可能是机器人呢?机器人不会做梦。 CC-BY 2.0 (France) Attribution: tatoeba.org #387372 (Mouseneb) & #335041 (fucongcong) +How many students are there in your school? 你们学校有多少学生? CC-BY 2.0 (France) Attribution: tatoeba.org #70777 (CK) & #1502337 (fenfang557) +How much sugar should I put in your coffee? 我应该往你的咖啡里放多少糖呢? CC-BY 2.0 (France) Attribution: tatoeba.org #6434104 (CK) & #9316628 (slo_oth) +I almost always play baseball after school. 我幾乎總是在放學後打棒球。 CC-BY 2.0 (France) Attribution: tatoeba.org #321963 (CK) & #918547 (Martha) +I can't tell you how to pronounce the word. 我不知道怎么告诉你这个词的发音。 CC-BY 2.0 (France) Attribution: tatoeba.org #254336 (CK) & #817322 (fucongcong) +I consider fruit to be the healthiest food. 我將水果視為最健康的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #751299 (eastasiastudent) & #751298 (egg0073) +I didn't understand a single word Tom said. 我不明白湯姆說了什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3022600 (sharptoothed) & #8215738 (verdastelo9604) +I don't believe Tom's version of the story. 我不相信汤姆的说法。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462987 (Ergulis) & #8463573 (gumblex) +I don't have time for a vacation this year. 我今年没时间去度假。 CC-BY 2.0 (France) Attribution: tatoeba.org #4104405 (andymakespasta) & #1324907 (vicch) +I don't know for certain when he will come. 我不知道他来这里的确切时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #259945 (CK) & #2453161 (fenfang557) +I don't know when he came back from France. 我不知道他是什么时候从法国回来的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2750155 (russell359) & #408818 (fucongcong) +I don't like to leave things up in the air. 我不喜歡讓事情懸而未決。 CC-BY 2.0 (France) Attribution: tatoeba.org #277538 (CK) & #891600 (Martha) +I don't like to mix business with pleasure. 我不喜欢把生意和快乐混在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #257902 (CK) & #1785906 (sadhen) +I don't love her, not even if she loves me. 即使她愛我,我也不愛她。 CC-BY 2.0 (France) Attribution: tatoeba.org #261348 (CK) & #803860 (Martha) +I don't procrastinate as much as I used to. 我不像我以前那么拖延了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497483 (CK) & #8792021 (slo_oth) +I don't want something bad to happen to us. 我可不想要坏事发生在我们身上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538283 (CK) & #8635723 (ZeroAurora) +I don't want something like this to happen. 我不想这种事发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #432771 (aliene) & #335050 (fucongcong) +I don't want to be involved in that matter. 我不想被牵扯到这件事里。 CC-BY 2.0 (France) Attribution: tatoeba.org #254694 (CK) & #787633 (fucongcong) +I don't want to go to Tom's birthday party. 我不想去汤姆的聚会。 CC-BY 2.0 (France) Attribution: tatoeba.org #2028612 (CK) & #5663587 (verdastelo9604) +I had no choice but to stay in bed all day. 我不得不一整天都待在床上。 CC-BY 2.0 (France) Attribution: tatoeba.org #437965 (aliene) & #408257 (fucongcong) +I have a few friends who speak French well. 我有一些法语说得好的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538281 (CK) & #5091195 (mirrorvan) +I have a special relationship with my aunt. 我和我阿姨有種特別的情誼。 CC-BY 2.0 (France) Attribution: tatoeba.org #682055 (Source_VOA) & #1227082 (tsayng) +I have been abroad several times this year. 我今年去了好几次外国。 CC-BY 2.0 (France) Attribution: tatoeba.org #257605 (CK) & #8835196 (crescat) +I have been reading the book all afternoon. 我整个下午都在读这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #257322 (CK) & #5624982 (verdastelo9604) +I have no idea of what's going on in there. 我不清楚這裡發生了什麼事? CC-BY 2.0 (France) Attribution: tatoeba.org #1877163 (Spamster) & #5350410 (egg0073) +I have to take my medicine every six hours. 我每六小时要服一次药。 CC-BY 2.0 (France) Attribution: tatoeba.org #497663 (blay_paul) & #792850 (fucongcong) +I haven't been getting enough sleep lately. 我最近一直睡眠不足。 CC-BY 2.0 (France) Attribution: tatoeba.org #243743 (CK) & #889606 (Martha) +I invited him to the party and he accepted. 我邀请他去派对,他接受了。 CC-BY 2.0 (France) Attribution: tatoeba.org #247021 (CK) & #794135 (fucongcong) +I just didn't want to go to work yesterday. 昨天我只是不想去工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736968 (paper1n0) & #765129 (Martha) +I just want to know what actually happened. 我只想知道实际上发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3732382 (CK) & #5640718 (verdastelo9604) +I knocked on the door, but nobody answered. 我敲门,但是没有人回应。 CC-BY 2.0 (France) Attribution: tatoeba.org #39028 (CK) & #1541583 (CLARET) +I like to listen to music, especially jazz. 我喜歡聽音樂,特別是爵士音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #8056676 (jameslin011) & #6014612 (xjjAstrus) +I need your passport and three photographs. 我需要你的护照和三张照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230770 (alec) & #334389 (fucongcong) +I noticed that she was wearing new glasses. 我注意到她戴着新眼镜。 CC-BY 2.0 (France) Attribution: tatoeba.org #261051 (CK) & #5613609 (verdastelo9604) +I overslept because my alarm didn't go off. 因为闹铃没有响,所以我继续睡下去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #323801 (CK) & #1325206 (vicch) +I recognize that what he says is the truth. 我承认他说的是事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #453498 (FeuDRenais) & #1323979 (vicch) +I refuse to be treated like a slave by you. 我拒绝被你像奴隶一样对待。 CC-BY 2.0 (France) Attribution: tatoeba.org #17451 (CK) & #796773 (fucongcong) +I should've gone to bed earlier last night. 我昨晚应该早点睡觉的。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678610 (CK) & #8589260 (easononizuka) +I spent the whole day in reading the novel. 我一整天都在看这本小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #252489 (CK) & #784366 (fucongcong) +I suggest you turn around and go back home. 我建議你轉身回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3127894 (CK) & #6325138 (verdastelo9604) +I think it's unlikely Tom will get elected. 我觉得汤姆不太可能会当选。 CC-BY 2.0 (France) Attribution: tatoeba.org #8180388 (CK) & #8792039 (slo_oth) +I think that Tom might not want to do that. 我认为汤姆可能不想那样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7169467 (CK) & #6307278 (gumblex) +I think that you ought to apologize to her. 我認為你應該跟她道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #11374 (Swift) & #775598 (Martha) +I think we shouldn't let Tom do that again. 我認為我們不該讓湯姆再那麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6089112 (CK) & #6089353 (verdastelo9604) +I thought pizza was what you wanted to eat. 我認為你想吃的是比薩。 CC-BY 2.0 (France) Attribution: tatoeba.org #6083892 (CK) & #6460647 (verdastelo9604) +I thought you said you didn't see anything. 我記得你說你甚麼也沒看見。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961680 (CK) & #6585420 (verdastelo9604) +I tried to change her mind, but I couldn't. 我試著改變她的心意,但我沒有辦法。 CC-BY 2.0 (France) Attribution: tatoeba.org #309216 (CK) & #883436 (Martha) +I want everyone to help me clean the house. 我希望所有人都来帮我打扫房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2028632 (CK) & #2694360 (sadhen) +I want to ask you some questions about Tom. 我想问你一些关于汤姆的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2028635 (CK) & #5550123 (verdastelo9604) +I want to stay in a hotel near the airport. 我想住在機場附近的旅館裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1242858 (alec) & #1241329 (tsayng) +I was kept waiting for nearly half an hour. 我等了接近半小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #72743 (CK) & #5993956 (verdastelo9604) +I went to the station to see my friend off. 我去车站为我朋友送行。 CC-BY 2.0 (France) Attribution: tatoeba.org #324430 (CK) & #616209 (sarah) +I wonder how many Canadians live in Boston. 我在想有多少加拿大人住在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364084 (CK) & #5364103 (egg0073) +I wonder what the weather will be tomorrow. 不知道明天天气会怎么样呢? CC-BY 2.0 (France) Attribution: tatoeba.org #323139 (CK) & #8591241 (easononizuka) +I would like to go to the concert with you. 我想和你一起去音乐会。 CC-BY 2.0 (France) Attribution: tatoeba.org #17620 (Zifre) & #1878275 (sadhen) +I'd be unhappy, but I wouldn't kill myself. 我会不高兴,但我不会自杀。 CC-BY 2.0 (France) Attribution: tatoeba.org #1359 (Zifre) & #54 (fucongcong) +I'll let you know when I've figured it out. 我搞明白了会告诉你。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538235 (CK) & #5907622 (verdastelo9604) +I'll never forget going to Hawaii with her. 我永远不会忘记那次跟她一起去夏威夷。 CC-BY 2.0 (France) Attribution: tatoeba.org #261093 (CK) & #787206 (fucongcong) +I'm afraid I differ with you on this point. 恐怕就这点上,我和你持不同意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #71236 (CK) & #334267 (fucongcong) +I'm afraid I wouldn't be very good company. 我恐怕不是个很好的伙伴。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538232 (CK) & #5780602 (verdastelo9604) +I'm afraid she won't accept my explanation. 我怕她不會接受我的解釋。 CC-BY 2.0 (France) Attribution: tatoeba.org #314318 (kebukebu) & #5405536 (egg0073) +I'm just writing a letter to my girlfriend. 我只是在写一封信给我的女友。 CC-BY 2.0 (France) Attribution: tatoeba.org #4208417 (patgfisher) & #4208526 (Ethan_lin) +I'm not saying that what she did was right. 我不是說她做的是對的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2859963 (CM) & #6093361 (verdastelo9604) +I'm sorry my pronunciation isn't very good. 不好意思我发音不太好。 CC-BY 2.0 (France) Attribution: tatoeba.org #3049857 (CK) & #4885137 (musclegirlxyp) +I've heard the French version of this song. 我听过这首歌的法语版。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318696 (CK) & #334620 (fucongcong) +If he is innocent, then his wife is guilty. 如果他是清白的,那他妻子就有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496243 (weihaiping) & #1394858 (mtdot) +If he studied hard, he would pass the test. 如果他努力学习,他会通过考试的。 CC-BY 2.0 (France) Attribution: tatoeba.org #27544 (CK) & #472909 (fucongcong) +If she was displeased, she never showed it. 如果她不高興, 她從來不表現出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #316738 (CM) & #780222 (Martha) +If you don't know the way, ask a policeman. 要是不知道路的话去问警察吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #280370 (CM) & #8698600 (crescat) +If you don't want to go, you don't need to. 如果你不想去, 就不必去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71450 (CK) & #793517 (Martha) +It is more blessed to give than to receive. 赠与比接受更让人觉得幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #266181 (CM) & #787202 (fucongcong) +It is not easy to learn a foreign language. 学会一门外语不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #21899 (CK) & #1325012 (vicch) +It looks like Tom has bought a new bicycle. 看來湯姆借了輛自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #5915186 (CK) & #6077497 (verdastelo9604) +It took us half an hour to set up the tent. 搭帳篷花了我們半小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #39126 (CK) & #779063 (Martha) +It's really different from what I expected. 這真的跟我所預期的不同。 CC-BY 2.0 (France) Attribution: tatoeba.org #64841 (CK) & #801372 (Martha) +It's very big of you to admit you're wrong. 你能承认你错了是很伟大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #601999 (darinmex) & #818839 (fucongcong) +It's very hard getting a taxi in this city. 在这个城市,很难打到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1209574 (CK) & #1416167 (sadhen) +Japan depends on foreign countries for oil. 日本依賴外國的石油。 CC-BY 2.0 (France) Attribution: tatoeba.org #281564 (CK) & #798170 (Martha) +Japan depends on imports for raw materials. 日本依賴進口原料。 CC-BY 2.0 (France) Attribution: tatoeba.org #281526 (CK) & #798172 (Martha) +Let me help you. Your bag looks very heavy. 让我来帮你吧。你的包看起来很重。 CC-BY 2.0 (France) Attribution: tatoeba.org #266049 (CK) & #1808460 (sadhen) +Let's divide this money between you and me. 这钱你和我分了吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #59617 (CK) & #813546 (fucongcong) +Let's go for a walk after it stops raining. 等雨停了,我们去散步吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #7021202 (shekitten) & #7773130 (jiangche) +Let's proceed with the items on the agenda. 讓我們繼續進行議程上的項目。 CC-BY 2.0 (France) Attribution: tatoeba.org #20015 (CK) & #769670 (Martha) +Make another appointment at the front desk. 在服務台另外預約。 CC-BY 2.0 (France) Attribution: tatoeba.org #264335 (CK) & #798352 (Martha) +Many of the immigrants changed their names. 许多移民改了名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496388 (CK) & #5685912 (verdastelo9604) +Many students like to study in the morning. 许多学生喜欢在早上学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #1712930 (Amastan) & #1783903 (sadhen) +Many workers were trapped in the coal mine. 有很多工人被困在煤矿里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #681477 (Source_VOA) & #8892991 (crescat) +Marriage is the main cause of all divorces. 结婚是所有离婚的主要原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #664042 (bluepie88) & #796732 (fucongcong) +My brother is holding a camera in his hand. 我弟弟手里拿着一个摄像机。 CC-BY 2.0 (France) Attribution: tatoeba.org #250719 (CK) & #332791 (fucongcong) +My ex-husband no longer lives in this city. 我前男友不再住在這個城市了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251802 (CK) & #778484 (Martha) +My grandfather's photograph is on the wall. 我祖父的照片在墙上挂着。 CC-BY 2.0 (France) Attribution: tatoeba.org #2841161 (Dejo) & #5983610 (verdastelo9604) +My mother gets up earlier than anyone else. 妈妈起得比谁都早。 CC-BY 2.0 (France) Attribution: tatoeba.org #908918 (CK) & #8723671 (crescat) +My neighbor renovated her house completely. 我的鄰居把她的屋子翻新了一遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #454517 (FeuDRenais) & #6147580 (verdastelo9604) +My older sister often drinks tea with milk. 我的姐姐经常就着牛奶喝茶。 CC-BY 2.0 (France) Attribution: tatoeba.org #32222 (Scott) & #6047440 (verdastelo9604) +My sister takes piano lessons twice a week. 我妹妹每周上两次钢琴课。 CC-BY 2.0 (France) Attribution: tatoeba.org #251914 (CK) & #333113 (fucongcong) +My uncle comes to see me from time to time. 我叔叔偶爾來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #250249 (kebukebu) & #761261 (Martha) +My uncles come to see me from time to time. 我的叔叔們(舅舅們)有時會來探望我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1152413 (belgavox) & #3701783 (egg0073) +No matter what you say, the answer is "no." 不管你說什麼, 答案就是"不。" CC-BY 2.0 (France) Attribution: tatoeba.org #549981 (CK) & #760719 (Martha) +Not a day passes without traffic accidents. 交通事故没有一天是不在发生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #240338 (CK) & #334392 (fucongcong) +Once he had written the letter, he sent it. 信一写好,他就把它寄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #631785 (U2FS) & #792894 (fucongcong) +One can't help many, but many can help one. 一个人帮不了许多个,但许多人能帮助一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #27648 (CK) & #5715129 (verdastelo9604) +One who has everything can lose everything. 拥有一切的人可能会失去一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #1538983 (SHamp) & #796651 (fucongcong) +Only Takeuchi didn't accept the invitation. 只有竹內沒有接受邀請。 CC-BY 2.0 (France) Attribution: tatoeba.org #328816 (fcbond) & #798258 (Martha) +Our teacher has a wonderful sense of humor. 我们的老师非常有幽默感。 CC-BY 2.0 (France) Attribution: tatoeba.org #247592 (CK) & #1416246 (sadhen) +Please be careful when crossing the street. 过马路时请小心。 CC-BY 2.0 (France) Attribution: tatoeba.org #2592705 (WestofEden) & #5670773 (verdastelo9604) +Please let me know as soon as it's decided. 决定好的话请第一时间告诉我。 CC-BY 2.0 (France) Attribution: tatoeba.org #238542 (CK) & #8652822 (crescat) +Put on your shoes. Let's go out for dinner. 穿上你的鞋,我们出去吃晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #18091 (Zifre) & #334041 (fucongcong) +She achieved great success in her business. 她在她的事業上取得了巨大成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #314759 (CM) & #6109305 (verdastelo9604) +She hasn't phoned since she went to London. 自她去了倫敦後,就沒再打電話了。 CC-BY 2.0 (France) Attribution: tatoeba.org #29261 (CK) & #5363931 (egg0073) +She liked tennis and became a tennis coach. 她喜欢网球并成为了一个网球教练。 CC-BY 2.0 (France) Attribution: tatoeba.org #311643 (CK) & #334188 (fucongcong) +She made out the application for admission. 她提出了入學申請。 CC-BY 2.0 (France) Attribution: tatoeba.org #316100 (CK) & #801940 (Martha) +She successfully got him to tell the truth. 她成功地从他口中得知了真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #388366 (CK) & #8765258 (crescat) +She thinks of everything in terms of money. 她對任何事都用錢的角度來看。 CC-BY 2.0 (France) Attribution: tatoeba.org #312784 (CK) & #2757170 (cienias) +She was advised by him to go to the police. 他勸她去報警。 CC-BY 2.0 (France) Attribution: tatoeba.org #887534 (CK) & #889389 (Martha) +She was always quarreling with her parents. 她总和她父母吵架。 CC-BY 2.0 (France) Attribution: tatoeba.org #310456 (CK) & #5581668 (verdastelo9604) +She was ashamed of her children's behavior. 她为自己孩子的行为感到羞耻。 CC-BY 2.0 (France) Attribution: tatoeba.org #313986 (CK) & #805102 (fucongcong) +She was more beautiful than all the others. 她比其他人都漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #1561528 (CM) & #5911661 (verdastelo9604) +She was so curious that she opened the box. 她太过好奇,以至于打开了盒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #313564 (CM) & #794133 (fucongcong) +She went into her room to change her dress. 她进了她的房间换裙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #316869 (CK) & #336903 (fucongcong) +Something must be wrong with the machinery. 這個機器一定有什麼地方不對勁。 CC-BY 2.0 (France) Attribution: tatoeba.org #38216 (Zifre) & #772168 (Martha) +Subtract three from eight and you get five. 八减去三就能得到五。 CC-BY 2.0 (France) Attribution: tatoeba.org #72333 (CK) & #8727890 (crescat) +That's an interesting piece of information. 这是条有趣的信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #323528 (CK) & #7774607 (jiangche) +That's exactly what I wanted to see happen. 这刚好是我想看到它发生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4699989 (CK) & #4844977 (pig8322) +The Rhine flows between France and Germany. 萊茵河流經法國和德國國界。 CC-BY 2.0 (France) Attribution: tatoeba.org #452260 (enwilson) & #751683 (Martha) +The bike parked over there is my brother's. 那邊停著的那輛自行車是我哥哥的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1401800 (nickyeow) & #785045 (Martha) +The blue lines on the map represent rivers. 地图上的蓝线代表河流。 CC-BY 2.0 (France) Attribution: tatoeba.org #277229 (CM) & #835557 (fucongcong) +The city was soon occupied by the soldiers. 很快,城市就被士兵占领了。 CC-BY 2.0 (France) Attribution: tatoeba.org #47355 (CM) & #334298 (fucongcong) +The doctor advised him to do more exercise. 醫生建議他多做運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #27943 (CK) & #780065 (Martha) +The earth is similar to an orange in shape. 地球的外形和橙子相似。 CC-BY 2.0 (France) Attribution: tatoeba.org #277103 (CM) & #334742 (fucongcong) +The firm went under due to lack of capital. 公司由于缺乏资本倒闭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #22382 (CK) & #793951 (fucongcong) +The girl brought me a red and a white rose. 女孩给我了一枝红玫瑰和一枝白玫瑰。 CC-BY 2.0 (France) Attribution: tatoeba.org #267871 (CK) & #5925242 (verdastelo9604) +The kidnappers showed no sign of giving up. 這些綁匪沒有放棄的跡象。 CC-BY 2.0 (France) Attribution: tatoeba.org #324509 (CM) & #1228961 (tsayng) +The people here are accustomed to the cold. 这里的人习惯了寒冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #279921 (CK) & #334406 (fucongcong) +The phone rang while I was taking a shower. 我在洗澡的时候,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246481 (CK) & #333781 (fucongcong) +The prosecutor asked me a leading question. 检察官问了我一个引导性的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #239088 (CK) & #796649 (fucongcong) +The same thing is happening here in Boston. 同樣的事在這-波士頓發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364086 (CK) & #5364125 (egg0073) +The school is five kilometers from my home. 學校離我家有五公里遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #681030 (Source_VOA) & #899980 (kanaorange) +The streets in Tokyo are full on Saturdays. 週六,東京街上人滿為患。 CC-BY 2.0 (France) Attribution: tatoeba.org #681040 (Source_VOA) & #900003 (kanaorange) +The telephone was invented in 1876 by Bell. 電話於1876年由貝爾所發明。 CC-BY 2.0 (France) Attribution: tatoeba.org #816063 (afeinberg) & #816891 (Martha) +The top of the mountain is covered in snow. 山顶被雪覆盖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #388009 (Mouseneb) & #336005 (fucongcong) +Theory and practice should go hand in hand. 理论得联系实际。 CC-BY 2.0 (France) Attribution: tatoeba.org #325358 (CM) & #2254376 (KerenDeng) +There are lots of trees in the countryside. 乡间有很多树。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753808 (garborg) & #332921 (fucongcong) +There are more clouds today than yesterday. 今天的雲比昨天的多。 CC-BY 2.0 (France) Attribution: tatoeba.org #579741 (CK) & #795856 (Martha) +There are no people who don't desire peace. 沒人不渴望和平。 CC-BY 2.0 (France) Attribution: tatoeba.org #1439910 (CM) & #6623195 (verdastelo9604) +There is no point in pretending to be sick. 装病是没用的。 CC-BY 2.0 (France) Attribution: tatoeba.org #25316 (CK) & #2099253 (yuzazaza) +There was nothing left in the refrigerator. 冰箱里什么都没剩下。 CC-BY 2.0 (France) Attribution: tatoeba.org #2074274 (_undertoad) & #8635477 (slo_oth) +These flowers bloom earlier than others do. 這些花比別的花早開花。 CC-BY 2.0 (France) Attribution: tatoeba.org #60055 (CK) & #796935 (Martha) +They always wake up early, even on Sundays. 他們總是早起,即使是在周日。 CC-BY 2.0 (France) Attribution: tatoeba.org #1070698 (qweruiop) & #6064717 (verdastelo9604) +They are arriving here soon from Hong Kong. 他们就快从香港抵达了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306542 (CK) & #333313 (fucongcong) +They grow strawberries in their greenhouse. 他們在他們的溫室裡種植草莓。 CC-BY 2.0 (France) Attribution: tatoeba.org #306209 (CK) & #802027 (Martha) +They said the situation was only temporary. 他们说情况只是暂时的。 CC-BY 2.0 (France) Attribution: tatoeba.org #802472 (Source_VOA) & #5911616 (verdastelo9604) +They welcomed me warmly, so I felt at home. 他们这么热情的欢迎我,让我感觉家人一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #305030 (CK) & #1235489 (sunnywqing) +They were carelessly unaware of the danger. 他们粗心大意,还没意识到危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #305521 (CK) & #332505 (fucongcong) +They were only interested in selling books. 他们只对卖书有兴趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #802479 (Source_VOA) & #802867 (fucongcong) +This book is too difficult for you to read. 这本书对你来说读起来太难了。 CC-BY 2.0 (France) Attribution: tatoeba.org #56877 (CK) & #332565 (fucongcong) +This chair is really comfortable to sit on. 这个椅子坐着真舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #4872182 (zvzuibqx) & #4859536 (musclegirlxyp) +This novel is too difficult for me to read. 這本小說對我來說太難讀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58472 (CK) & #6332423 (verdastelo9604) +This novel is very difficult to understand. 这部小说很难读懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #718392 (eastasiastudent) & #478839 (biglion) +This shirt doesn't go with that tie at all. 這件襯衫跟那條領帶不搭。 CC-BY 2.0 (France) Attribution: tatoeba.org #61037 (CK) & #1261425 (tsayng) +This store is currently selling vegetables. 这家店在卖蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #2160733 (FeuDRenais) & #2144020 (ydcok) +This summer I went on vacation in Scotland. 这个夏天,我去苏格兰度假了。 CC-BY 2.0 (France) Attribution: tatoeba.org #708390 (CM) & #710307 (fucongcong) +Tom advised me not to buy a secondhand car. 汤姆建议我不要买二手车。 CC-BY 2.0 (France) Attribution: tatoeba.org #8566834 (CK) & #8567054 (slo_oth) +Tom and Mary have a very good relationship. 汤姆和玛丽关系很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #5366318 (CK) & #5581886 (verdastelo9604) +Tom and Mary went camping in the mountains. 湯姆和瑪麗去山裡露營。 CC-BY 2.0 (France) Attribution: tatoeba.org #5529143 (Hybrid) & #8032168 (verdastelo9604) +Tom and his wife both grew up in Australia. 汤姆和他的妻子都在澳大利亚长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #7167763 (CK) & #8589625 (tianblr) +Tom comes here three or four times a month. 汤姆一个月来这里三四次。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755832 (CK) & #4757243 (ryanwoo) +Tom didn't know what Mary thought about it. 汤姆不知道玛丽对它怎么想。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823372 (CK) & #5780623 (verdastelo9604) +Tom didn't say where he was planning to go. 湯姆沒說他打算去哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026295 (CK) & #6119422 (verdastelo9604) +Tom doesn't eat meat and neither does Mary. 湯姆不吃肉,瑪麗也是。 CC-BY 2.0 (France) Attribution: tatoeba.org #1830406 (CK) & #6169151 (verdastelo9604) +Tom doesn't have to go to Boston next week. Tom下星期不用去波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364088 (CK) & #5364101 (egg0073) +Tom doesn't mind helping Mary occasionally. 汤姆不介意偶尔给予玛丽帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029050 (CK) & #2567467 (fenfang557) +Tom doesn't remember where he put his keys. 汤姆不记得他把钥匙放在哪里了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640535 (CK) & #5715193 (verdastelo9604) +Tom has just returned from the post office. 湯姆剛從郵局回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025369 (CK) & #4805794 (umidake) +Tom is by far the tallest boy in our class. 汤姆远比我们班其他男孩高。 CC-BY 2.0 (France) Attribution: tatoeba.org #5913712 (CK) & #8632079 (ZeroAurora) +Tom is too tired to help you do that today. 湯姆今天太累,不能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #6342764 (CK) & #6624642 (verdastelo9604) +Tom is writing a letter to his best friend. 汤姆正给他的好友写信。 CC-BY 2.0 (France) Attribution: tatoeba.org #4752917 (aldar) & #4757596 (ryanwoo) +Tom is writing a letter to his best friend. 汤姆在给他最好的朋友写信。 CC-BY 2.0 (France) Attribution: tatoeba.org #4752917 (aldar) & #7774355 (jiangche) +Tom isn't accustomed to walking barefooted. 汤姆不习惯光着脚漫步。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024729 (CK) & #1746031 (sadhen) +Tom isn't accustomed to walking barefooted. 汤姆不习惯赤脚漫步。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024729 (CK) & #1746034 (sadhen) +Tom isn't here yet, but we expect him soon. 湯姆還不在這裡,但我們期待他很快就來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024696 (CK) & #6624716 (verdastelo9604) +Tom learned to ride a bike when he was ten. 汤姆在10岁的时候就学骑了自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #5085369 (Hybrid) & #5085451 (Jubilee11) +Tom looked around and realized he was lost. 汤姆环顾四周,发现自己迷路了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6433919 (CK) & #8795144 (crescat) +Tom looked at his reflection in the mirror. 汤姆看他在镜中的映像。 CC-BY 2.0 (France) Attribution: tatoeba.org #3066870 (CK) & #5715142 (verdastelo9604) +Tom only wears a suit on special occasions. 湯姆只在特殊場合穿西裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #682056 (Source_VOA) & #900055 (kanaorange) +Tom paid me back the money that he owed me. 汤姆把欠我的钱还给我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586583 (CK) & #8589654 (tianblr) +Tom promised that he'd come, but he didn't. 湯姆答應他會來,但他沒來。 CC-BY 2.0 (France) Attribution: tatoeba.org #6241290 (CK) & #6624738 (verdastelo9604) +Tom said he thought he should study French. 湯姆說他認為他該學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #6433901 (CK) & #6628380 (verdastelo9604) +Tom sits at his computer eight hours a day. Tom每天在電腦前工作八小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #1867896 (CK) & #2697980 (egg0073) +Tom used to swim a lot when he was younger. 汤姆年轻的时候经常游泳 CC-BY 2.0 (France) Attribution: tatoeba.org #7540122 (CK) & #8748580 (cxpadonis) +Tom wanted to know if Mary had a boyfriend. 汤姆想知道玛丽是否有男朋友? CC-BY 2.0 (France) Attribution: tatoeba.org #3539484 (Hybrid) & #3662942 (yss123231) +Tom was there physically, but not mentally. 汤姆人在心不在。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757570 (CK) & #4757571 (ryanwoo) +Tom wasn't as handsome as Mary said he was. 汤姆并不是玛丽说得那样英俊。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757567 (CK) & #4757616 (ryanwoo) +Tom will come back from Boston next Monday. 汤姆会在下周一从波士顿回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757563 (CK) & #4764661 (ryanwoo) +Tom wondered where Mary had learned French. 汤姆想知道玛丽在哪里学会了法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #3824579 (CK) & #4972585 (wzhd) +Tom's parents weren't particularly pleased. 汤姆的父母不是特别高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #7951084 (Hybrid) & #8589257 (easononizuka) +We are looking for a nice house to live in. 我们在找一个漂亮的屋子住。 CC-BY 2.0 (France) Attribution: tatoeba.org #248855 (CK) & #845109 (fucongcong) +We can't know what the future has in store. 人不知道未來可能發生什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736697 (paper1n0) & #779516 (Martha) +We cannot overestimate the value of health. 我们不能高估健康的价值。 CC-BY 2.0 (France) Attribution: tatoeba.org #238978 (CM) & #791404 (fucongcong) +We got an interesting piece of information. 我們得到了一份有趣的情報。 CC-BY 2.0 (France) Attribution: tatoeba.org #23041 (CK) & #804574 (Martha) +We have a warrant to search your apartment. 我们有权搜查你的公寓。 CC-BY 2.0 (France) Attribution: tatoeba.org #3728635 (CM) & #5631908 (verdastelo9604) +We have no classes on Wednesday afternoons. 我们周三下午没课。 CC-BY 2.0 (France) Attribution: tatoeba.org #270946 (CK) & #334927 (fucongcong) +We have to sing at an old folks home today. 我们今天得去养老院唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715092 (CK) & #5715125 (verdastelo9604) +We shouldn't expect too much help from Tom. 我們不該期望從Tom那得到太多幫助。 CC-BY 2.0 (France) Attribution: tatoeba.org #5414438 (CK) & #5419378 (egg0073) +We stayed with them all through the summer. 我们整个夏天都和他们待在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #247743 (CK) & #333073 (fucongcong) +We still have many other things to discuss. 我们还有许多别的事情要讨论。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715088 (CK) & #5715121 (verdastelo9604) +We were just about to leave when it rained. 我們正要離開的時候下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246542 (CK) & #778736 (Martha) +We won't go out if it doesn't stop raining. 雨不停,我们不会出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755164 (garborg) & #332439 (fucongcong) +We'll be in Boston for another three weeks. 我們還會在波士頓待三個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #5364090 (CK) & #5364129 (egg0073) +What would the world be like without women? 没有女人的话,世界会是什么样? CC-BY 2.0 (France) Attribution: tatoeba.org #757365 (sctld) & #7771861 (jiangche) +What you said left a deep impression on me. 你说的话给我留下了很深刻的印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #801954 (eastasiastudent) & #801953 (sadhen) +What'll you be doing at this time tomorrow? 你明天这个时候会是在做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #7852299 (CK) & #334624 (fucongcong) +When I opened the door, I found him asleep. 当我打开门的时候,我发现他睡着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38999 (Swift) & #787306 (fucongcong) +When it stops raining, let's go for a walk. 等雨停了,我们去散步吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #6433818 (CK) & #7773130 (jiangche) +When the lights went out, Tom lit a candle. 灯灭了,汤姆点起了蜡烛。 CC-BY 2.0 (France) Attribution: tatoeba.org #2973343 (meerkat) & #7771850 (jiangche) +Which do you like better, spring or autumn? 春天和秋天,你更喜欢哪个? CC-BY 2.0 (France) Attribution: tatoeba.org #266912 (CK) & #335123 (fucongcong) +Who can say what will happen in the future? 谁能说将来会发生什么呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #894948 (pauldhunt) & #437275 (fucongcong) +Who's your favorite character in this book? 你最喜歡這本書中的哪個角色? CC-BY 2.0 (France) Attribution: tatoeba.org #908682 (CK) & #5909457 (xjjAstrus) +With a firm goal in mind, you will do well. 有了坚定的目标,你会做得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #53469 (CM) & #332844 (fucongcong) +You can probably guess what happens though. 但你很可能猜得到会发生什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1447 (Zifre) & #335049 (fucongcong) +You cannot achieve anything without effort. 没有什么是不劳而获的。 CC-BY 2.0 (France) Attribution: tatoeba.org #279483 (CM) & #334159 (fucongcong) +You don't need to worry about such a thing. 你不必擔心這樣的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #16534 (CK) & #775800 (Martha) +You gain nothing by speaking ill of others. 通过诋毁别人,你得不到什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #269932 (CM) & #1358598 (sadhen) +You had better not start until they arrive. 你最好不要在他們來之前開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #17631 (kebukebu) & #760733 (Martha) +You have to get this work finished by noon. 你必須在中午以前完成這個工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #15958 (CK) & #775676 (Martha) +You ought to have come to see me yesterday. 你昨天應該來看我的。 CC-BY 2.0 (France) Attribution: tatoeba.org #16112 (Swift) & #775734 (Martha) +You should bring your passport to the bank. 你应该带护照去银行。 CC-BY 2.0 (France) Attribution: tatoeba.org #950246 (spockofvulcan) & #5907512 (verdastelo9604) +You should have a doctor take a look at it. 你应该让个医生看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736588 (CK) & #5856734 (verdastelo9604) +You should return home before it gets dark. 你應該在天黑之前回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #16325 (qcomplex5) & #775779 (Martha) +You should seriously consider working here. 你应该认真考虑在这里工作的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3360497 (CK) & #5794137 (verdastelo9604) +You shouldn't have eaten so much ice cream. 你不應該吃這麼多冰淇淋。 CC-BY 2.0 (France) Attribution: tatoeba.org #16798 (iamgrim) & #775850 (Martha) +You told Tom you could do that, didn't you? 你告诉汤姆你可以做到,是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6237520 (CK) & #8748530 (cxpadonis) +You'll soon get used to speaking in public. 你很快就会习惯在大庭广众说话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #70025 (CK) & #335504 (fucongcong) +Your plan requires a large amount of money. 你的计划需要一大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #70740 (CK) & #2017462 (sadhen) +A beautiful lake lay just beyond the forest. 森林外有一个美丽的湖泊。 CC-BY 2.0 (France) Attribution: tatoeba.org #269472 (CM) & #8935967 (crescat) +A bird in the hand is worth two in the bush. 一鳥在手勝過二鳥在林。 CC-BY 2.0 (France) Attribution: tatoeba.org #423079 (FeuDRenais) & #771150 (Martha) +A blast of cold air swept through the house. 冷空氣疾風席捲整棟房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #716347 (CM) & #793595 (Martha) +A fox is not caught twice in the same snare. 一只狐狸不会两次掉入同一个陷阱里。 CC-BY 2.0 (France) Attribution: tatoeba.org #24561 (CM) & #335132 (fucongcong) +A fox is not caught twice in the same snare. 狡兔三窟。 CC-BY 2.0 (France) Attribution: tatoeba.org #24561 (CM) & #706635 (fucongcong) +A hundred people were hurt in a train wreck. 一百多个人在一个火车事故中受了伤。 CC-BY 2.0 (France) Attribution: tatoeba.org #682499 (Source_VOA) & #816524 (fucongcong) +All of us went to the theater to see a play. 我們所有的人都去劇院看戲。 CC-BY 2.0 (France) Attribution: tatoeba.org #263325 (CK) & #830483 (Martha) +All that I know is that he gave up the plan. 我所知道的是他放棄了這個計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #251426 (CK) & #830487 (Martha) +An uncle of mine gave me some useful advice. 我的一个叔叔给我了一些有用的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #266629 (CM) & #332963 (fucongcong) +Are there any famous musicians on the stage? 舞台上有著名音乐家吗? CC-BY 2.0 (France) Attribution: tatoeba.org #319458 (CK) & #333013 (fucongcong) +Are you picking me up at 7 tomorrow morning? 你明早7点来接我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #621733 (xiuqin) & #333384 (fucongcong) +Are you sure you haven't forgotten anything? 你確定你沒有忘記什麼嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #24799 (CK) & #874496 (Martha) +At first, he could not speak English at all. 起初,他不會說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #243980 (CM) & #811697 (Martha) +Beginners should learn spoken English first. 初學者應先學習口說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #267053 (CK) & #811800 (Martha) +Carelessness can lead to a serious accident. 粗心大意可能導致嚴重的事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #318649 (Dejo) & #798125 (Martha) +Cherry trees are now in bloom in Washington. 华盛顿的樱花现在开放。 CC-BY 2.0 (France) Attribution: tatoeba.org #29138 (CK) & #1397029 (mtdot) +Christmas is definitely my favorite holiday. 圣诞节绝对是我最喜欢的节日。 CC-BY 2.0 (France) Attribution: tatoeba.org #5705318 (CK) & #8591239 (easononizuka) +Computers save us a lot of time and trouble. 电脑为我们节省了很多时间,解决了很多问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #54575 (Mouseneb) & #343804 (fucongcong) +Did Tom ever tell you how he first met Mary? 湯姆告訴你他是怎樣第一次遇見瑪麗的了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4014597 (CK) & #6091822 (verdastelo9604) +Did you watch the soccer game on television? 你在电视上看足球赛了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #69883 (CK) & #5670804 (verdastelo9604) +Do you have this jacket in different colors? 你有不同顏色的外套嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #61045 (CK) & #1261449 (tsayng) +Do you really want me to go there right now? 你真想让我马上到那里去吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1898407 (CK) & #5715192 (verdastelo9604) +Don't forget smoking is bad for your health. 不要忘记吸烟对你的健康有害。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230690 (alec) & #334141 (fucongcong) +Don't talk about it in my mother's presence. 我妈在的时候别讨论这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #64250 (CM) & #1417552 (sadhen) +Don't worry about it. It's not your problem. 不要在意,不是你的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1051709 (CK) & #8742174 (crescat) +Everybody knew she could speak English well. 大家都知道她的英语说得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #308184 (CK) & #333282 (fucongcong) +Father always has the tailor make his suits. 父親總是讓這位裁縫師為他做西裝。 CC-BY 2.0 (France) Attribution: tatoeba.org #318962 (CM) & #804512 (Martha) +Freedom is the center of American democracy. 美國民主的中心思想是自由。 CC-BY 2.0 (France) Attribution: tatoeba.org #681013 (Source_VOA) & #899958 (kanaorange) +Furniture made of good materials sells well. 用优质材料做的家具卖得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #52105 (CM) & #345949 (fucongcong) +Had I known about it, I would have told you. 如果我知道的话,我早就已经告诉你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30820 (CK) & #411572 (fucongcong) +Have you had your eyesight checked recently? 你最近检查视力了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4663317 (CK) & #5911637 (verdastelo9604) +Having lived in Tokyo, I know the city well. 因为住过东京,我对这个城市非常了解。 CC-BY 2.0 (France) Attribution: tatoeba.org #279744 (CM) & #336436 (fucongcong) +He asked her to marry him, and she accepted. 他向她求婚,而她同意了。 CC-BY 2.0 (France) Attribution: tatoeba.org #302695 (CK) & #7767667 (jiangche) +He did not think he needed their protection. 他认为他不需要他们的保护。 CC-BY 2.0 (France) Attribution: tatoeba.org #803241 (Source_VOA) & #5862118 (verdastelo9604) +He is fond of watching baseball games on TV. 他喜歡看電視上的棒球比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #291883 (CM) & #881537 (Martha) +He is going to be a doctor when he grows up. 他长大了会成为一名医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #301196 (CK) & #332649 (fucongcong) +He kept his promise and helped his brothers. 他履行了他的承诺,并且帮助了他的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #434956 (lukaszpp) & #784384 (fucongcong) +He realized his dream of becoming an artist. 他實現了當兿術家的梦想。 CC-BY 2.0 (France) Attribution: tatoeba.org #295765 (CM) & #6159155 (verdastelo9604) +He showed me the manuscript of his new play. 他给我看了他最新剧的底稿。 CC-BY 2.0 (France) Attribution: tatoeba.org #302502 (CK) & #2393391 (fenfang557) +He sleeps during the day and works at night. 他白天睡觉,晚上工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211531 (alec) & #333994 (fucongcong) +He was a very good skier when he was little. 他年輕時很會滑雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2269583 (FeuDRenais) & #2256342 (cienias) +He was scared when the monkey jumped at him. 猴子跳到他身上的时候,他受到了惊吓。 CC-BY 2.0 (France) Attribution: tatoeba.org #25870 (CK) & #389416 (fucongcong) +He worked last night without taking a break. 他昨晚都在工作,彻夜未眠。 CC-BY 2.0 (France) Attribution: tatoeba.org #388563 (CK) & #8589135 (easononizuka) +He's a professor at the National University. 他是国立大学的一名教授。 CC-BY 2.0 (France) Attribution: tatoeba.org #2258573 (_undertoad) & #4473128 (yuiyu) +Help yourself to anything you'd like to eat. 想吃什么就吃什么吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #24979 (CK) & #8756357 (crescat) +Her birthday party will be tomorrow evening. 她的生日宴會將在明天晚上。 CC-BY 2.0 (France) Attribution: tatoeba.org #508918 (CK) & #881266 (Martha) +Her success made her the target of jealousy. 她的成功让她成为嫉妒心的靶子。 CC-BY 2.0 (France) Attribution: tatoeba.org #309492 (CM) & #5698048 (verdastelo9604) +How come Mary is going on a picnic with him? 为什么玛丽和他去野餐? CC-BY 2.0 (France) Attribution: tatoeba.org #24653 (papabear) & #463940 (fucongcong) +How could so many people go along with this? 怎么会有这么多的人同意呢? CC-BY 2.0 (France) Attribution: tatoeba.org #7127517 (CM) & #8748557 (cxpadonis) +How far is it from the airport to the hotel? 從機場到旅館多遠? CC-BY 2.0 (France) Attribution: tatoeba.org #18223 (J_S) & #830489 (Martha) +How long does it take to get to the station? 去火车站要多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1585 (CK) & #334181 (fucongcong) +How much does a kilogram of pineapples cost? 菠蘿一公斤多少錢? CC-BY 2.0 (France) Attribution: tatoeba.org #1626145 (CM) & #8825038 (xjjAstrus) +Hundreds of buffaloes moved toward the lake. 數以百計的水牛走向湖邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #24452 (CK) & #797061 (Martha) +I am alarmed by your irresponsible attitude. 我对你不负责任的态度感到惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #287589 (Barbiche0) & #846786 (fucongcong) +I am thinking of closing my savings account. 我想关闭我的储蓄账户。 CC-BY 2.0 (France) Attribution: tatoeba.org #788246 (hrin) & #787547 (fucongcong) +I applied for membership in the association. 我申請成為協會會員。 CC-BY 2.0 (France) Attribution: tatoeba.org #49184 (CK) & #4739246 (egg0073) +I can't find anything wrong with his theory. 我在他的理論中找不到任何問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #755198 (sctld) & #5688986 (xjjAstrus) +I couldn't understand anything that he said. 我不了解他所說的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #417378 (CK) & #881251 (Martha) +I don't understand why Tom brought you here. 我不知道為甚麼湯姆把你帶到這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323275 (CK) & #6624741 (verdastelo9604) +I don't want to participate in the ceremony. 我不想参加典礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #254447 (CK) & #400984 (fucongcong) +I don't want to work under these conditions. 我不想在这些条件下工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #2439040 (CK) & #5897899 (verdastelo9604) +I entered the room and shook hands with him. 我走進了房間與他握手。 CC-BY 2.0 (France) Attribution: tatoeba.org #261568 (CK) & #919639 (Martha) +I feel as if I've woken up from a nightmare. 我覺得我好像從惡夢中驚醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #28527 (kebukebu) & #760862 (Martha) +I gave careful consideration to the problem. 我仔細地考慮了這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #254714 (CK) & #805624 (Martha) +I heard you were injured trying to help Tom. 我听说你在试图帮助汤姆的时候受伤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3162144 (CK) & #5068235 (FeAst) +I hurried in order to catch the first train. 我匆匆忙忙,为的是能赶上第一班火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #256110 (CK) & #333916 (fucongcong) +I majored in American literature at college. 我在大學主修美國文學。 CC-BY 2.0 (France) Attribution: tatoeba.org #259321 (CK) & #795796 (Martha) +I met Tom for the first time three days ago. 我三天前第一次见汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3110497 (CK) & #5983585 (verdastelo9604) +I need to find out when we need to be there. 我需要知道我们什么时候需要到那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387601 (CK) & #5869912 (verdastelo9604) +I need your advice on what I should do next. 我需要你指導我接下來該做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2387830 (CK) & #6325111 (verdastelo9604) +I never make a speech without being nervous. 我没有一次演讲的时候是不紧张的。 CC-BY 2.0 (France) Attribution: tatoeba.org #256283 (Dejo) & #334782 (fucongcong) +I never should've let Tom eat so much candy. 我不論甚麼時候都不該讓湯姆吃那麼多糖。 CC-BY 2.0 (France) Attribution: tatoeba.org #2388192 (CK) & #6105203 (verdastelo9604) +I rode a horse for the first time yesterday. 昨天我第一次骑了马。 CC-BY 2.0 (France) Attribution: tatoeba.org #2404164 (CK) & #8792046 (slo_oth) +I should have known better than to call him. 早知道我不應該打電話給他。 CC-BY 2.0 (France) Attribution: tatoeba.org #285149 (CK) & #772108 (Martha) +I stopped smoking for the sake of my health. 為了健康,我不再抽菸。 CC-BY 2.0 (France) Attribution: tatoeba.org #257224 (CM) & #1239324 (tsayng) +I suggest that you don't trust Tom too much. 我建議你別太相信湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497471 (CK) & #6938384 (verdastelo9604) +I think you should leave as soon as you can. 我觉得你应该赶紧走。 CC-BY 2.0 (France) Attribution: tatoeba.org #4703119 (CK) & #8936382 (crescat) +I think you're a lot stronger than you know. 我认为你比你想象的更强。 CC-BY 2.0 (France) Attribution: tatoeba.org #3823201 (CK) & #6089932 (verdastelo9604) +I think you've mistaken me for someone else. 我想你將我認成別人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #694024 (darinmex) & #1233801 (tsayng) +I thought Tom would want to know about that. 我本以为汤姆愿意了解这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961550 (CK) & #7771998 (jiangche) +I thought we were going to do this together. 我認為我們要一起做。 CC-BY 2.0 (France) Attribution: tatoeba.org #2538122 (CK) & #6111880 (verdastelo9604) +I took a taxi from the station to the hotel. 我從車站搭了一班到旅館的計程車。 CC-BY 2.0 (France) Attribution: tatoeba.org #256252 (CK) & #1221048 (tsayng) +I used to go out with friends every weekend. 我曾经每周末都和朋友外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #5189114 (CK) & #5631893 (verdastelo9604) +I was about to leave when the doorbell rang. 门铃响的时候,我正准备出门。 CC-BY 2.0 (France) Attribution: tatoeba.org #40135 (Swift) & #334798 (fucongcong) +I was having a bath when the telephone rang. 在我洗澡的时候,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246987 (CM) & #8777525 (crescat) +I was taking a bath when the telephone rang. 在我洗澡的时候,电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #29112 (CK) & #8777525 (crescat) +I will give you a bicycle for your birthday. 你生日的时候,我送你一辆自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #16998 (CK) & #334048 (fucongcong) +I wonder why they left my name off the list. 我奇怪他们为什么在表里把我的名字落下了。 CC-BY 2.0 (France) Attribution: tatoeba.org #38699 (CK) & #5883321 (verdastelo9604) +I work for three hours every Sunday morning. 我每个周末早上工作三小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #758867 (CK) & #3783109 (Debbie_Linder) +I'd like to get married to someone like you. 我想跟你这样的人结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2095456 (CK) & #5829630 (verdastelo9604) +I'll be staying here for another three days. 我会在这儿再待上三天。 CC-BY 2.0 (France) Attribution: tatoeba.org #255791 (CK) & #792820 (fucongcong) +I'll call for you at eight tomorrow morning. 我明早八点来接你。 CC-BY 2.0 (France) Attribution: tatoeba.org #323185 (CM) & #332657 (fucongcong) +I'm afraid that there isn't any coffee left. 恐怕已經沒有咖啡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7897848 (CK) & #5414486 (egg0073) +I'm amazed at his rapid progress in English. 我被他英语的快速进步惊呆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285555 (CK) & #335319 (fucongcong) +I'm fairly certain Tom lives on Park Street. 我很确定汤姆住在公园街。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619883 (CK) & #5550156 (verdastelo9604) +I'm going to stay here for a couple of days. 我將要在這裡待幾天。 CC-BY 2.0 (France) Attribution: tatoeba.org #6872957 (CK) & #793600 (Martha) +I'm looking forward to seeing you next week. 我期盼著下週見到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #325049 (CK) & #6057843 (verdastelo9604) +I'm sorry that I didn't reply to you sooner. 抱歉,我沒有早點回覆你。 CC-BY 2.0 (France) Attribution: tatoeba.org #7185942 (CK) & #898946 (kanaorange) +I'm sure I can find something for you to do. 我確定我能找點給你做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3636077 (CK) & #6091691 (verdastelo9604) +I've been waiting for you since two o'clock. 我從兩點開始一直等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #72878 (CK) & #6146521 (verdastelo9604) +I've never heard Tom speaking French before. 我以前從沒聽過湯姆講法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663304 (CK) & #6120945 (verdastelo9604) +If it's fine tomorrow, we'll go on a picnic. 如果明天天气好,我们就去野餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #9089194 (CK) & #847683 (fucongcong) +If you don't leave, I'll sic my dogs on you. 如果你不离开,我就放狗出来咬你。 CC-BY 2.0 (France) Attribution: tatoeba.org #8456129 (CK) & #8743696 (slo_oth) +If you sang, they'd kick you out of the bar. 如果你唱歌了,他们就会把你踢出酒吧 CC-BY 2.0 (France) Attribution: tatoeba.org #7127281 (CM) & #8746396 (cxpadonis) +If you won a million yen, what would you do? 如果你中了一百万日元的奖,你会怎么做? CC-BY 2.0 (France) Attribution: tatoeba.org #73481 (CM) & #530711 (biglion) +Imagination affects every part of our lives. 想像力影响着我们生活的各个方面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230700 (alec) & #334165 (fucongcong) +In addition to English, he can speak French. 除了英语,他还会说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #26318 (CK) & #336626 (fucongcong) +In order to do that, you have to take risks. 要这么做,你需要冒险。 CC-BY 2.0 (France) Attribution: tatoeba.org #1366 (Zifre) & #501339 (fucongcong) +In those days, a cup of coffee cost 200 yen. 那时候一杯咖啡要200日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #7837560 (basilhan) & #472296 (fucongcong) +It has been raining heavily for three hours. 下了三小時大雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #27006 (CK) & #6482326 (verdastelo9604) +It is dangerous to jump onto a moving train. 跳上一列正在开的火车是很危险的。 CC-BY 2.0 (France) Attribution: tatoeba.org #280200 (CM) & #333528 (fucongcong) +It is not necessary for you to quit the job. 你没必要辞掉工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #71579 (CK) & #530700 (biglion) +It isn't as easy to do that as people think. 这并不像一般人觉得的那么容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #7198658 (CK) & #8686667 (crescat) +It isn't easy to distinguish good from evil. 区分善恶不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #7197061 (CK) & #333665 (fucongcong) +It seems to me that she is a little selfish. 我觉得她有点自私。 CC-BY 2.0 (France) Attribution: tatoeba.org #249993 (CM) & #8709233 (crescat) +It was her little sister that broke her toy. 她的玩具是被她妹妹弄壞的。 CC-BY 2.0 (France) Attribution: tatoeba.org #777618 (eastasiastudent) & #777616 (egg0073) +It was sensible of you to follow her advice. 你聽從她的忠告是明智的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71312 (CM) & #785149 (Martha) +It was so cold yesterday that I stayed home. 昨天太冷了,我只好待在家里。 CC-BY 2.0 (France) Attribution: tatoeba.org #244488 (CK) & #1423380 (sadhen) +It's getting to be time for me to head back. 差不多该回去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4632204 (mactrey) & #8924837 (crescat) +It's impossible for me to explain it to you. 要我解释给你听是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1597 (brauliobezerra) & #334169 (fucongcong) +It's not as easy to do that as people think. 这并不像一般人觉得的那么容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #6845272 (CK) & #8686667 (crescat) +It's not easy to distinguish good from evil. 区分善恶不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #7197062 (CK) & #333665 (fucongcong) +It's on this point that our opinions differ. 是在这点上我们的意见有分歧。 CC-BY 2.0 (France) Attribution: tatoeba.org #8864967 (CK) & #333944 (fucongcong) +It's really dark here. I can't see anything. 這裡真的很暗,我什麼都看不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #4555773 (weihaiping) & #4504318 (egg0073) +It's taking a little longer than I expected. 我花了比預期更多的時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #5481131 (Hybrid) & #6583890 (verdastelo9604) +It's very easy to miss this kind of mistake. 这种错误很容易被人忽视。 CC-BY 2.0 (France) Attribution: tatoeba.org #2156120 (FeuDRenais) & #845118 (fucongcong) +Japan is located in the Northern Hemisphere. 日本位於北半球。 CC-BY 2.0 (France) Attribution: tatoeba.org #281608 (CM) & #798334 (Martha) +Kissing a smoker is like licking an ashtray. 亲吻一个抽烟的人就像在舔烟灰缸。 CC-BY 2.0 (France) Attribution: tatoeba.org #3667098 (_undertoad) & #5091384 (mirrorvan) +Life without love is just totally pointless. 没有爱情的生活毫无意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #1609 (CK) & #334157 (fucongcong) +Lips that touch liquor shall not touch mine. 碰過酒的嘴唇就別想碰我的唇。 CC-BY 2.0 (France) Attribution: tatoeba.org #810543 (BraveSentry) & #810613 (Martha) +Luckily he had enough money to pay the bill. 幸运的是他有足够的钱来付账。 CC-BY 2.0 (France) Attribution: tatoeba.org #26533 (CK) & #1394793 (mtdot) +Many of the user reviews on Amazon are fake. 亚马逊网站上的许多用户评论都是虚假的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2311309 (FeuDRenais) & #2307174 (Gustav249) +Maternal love is greater than anything else. 母爱比任何别的东西都伟大。 CC-BY 2.0 (France) Attribution: tatoeba.org #320590 (CK) & #5698047 (verdastelo9604) +My cell phone has a built-in digital camera. 我的手機有內建的數位相機。 CC-BY 2.0 (France) Attribution: tatoeba.org #4008874 (JSakuragi) & #3763617 (cienias) +My father graduated from Harvard University. 我爸爸是哈佛大学毕业的。 CC-BY 2.0 (France) Attribution: tatoeba.org #319040 (CK) & #333403 (fucongcong) +My father often goes to America on business. 我爸爸经常去美国出差。 CC-BY 2.0 (France) Attribution: tatoeba.org #319274 (CK) & #334243 (fucongcong) +My hobby is taking pictures of wild flowers. 我的业余爱好是拍野花的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #251151 (CK) & #334391 (fucongcong) +My parents have just arrived at the station. 我的父母剛剛到達車站。 CC-BY 2.0 (France) Attribution: tatoeba.org #325699 (CK) & #809766 (Martha) +My parents' generation went through the war. 我父母那一代经历过战争。 CC-BY 2.0 (France) Attribution: tatoeba.org #252074 (CM) & #1360197 (sadhen) +My sister married her high school classmate. 我的姐姐嫁給了她的高中同學。 CC-BY 2.0 (France) Attribution: tatoeba.org #250964 (CK) & #794027 (Martha) +My uncle has a flower shop near the station. 我叔叔在車站附近有一家花店。 CC-BY 2.0 (France) Attribution: tatoeba.org #65070 (CK) & #789982 (Martha) +My wife asked me to throw this old hat away. 老婆喊我把这些旧帽子扔掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #432849 (aliene) & #3780472 (e78xx_xxx) +Neither Tom nor Mary has been losing weight. 汤姆和玛丽减肥都没减下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #7541098 (CK) & #8975247 (WilsonWong) +Nobody knows what will happen in the future. 人不知道未來可能發生什麼事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736696 (paper1n0) & #779516 (Martha) +Nobody knows when the earthquake will occur. 没有人知道地震何时会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #65985 (CK) & #404458 (fucongcong) +Not knowing what to say, he remained silent. 因為不知道該說什麼, 他保持沉默。 CC-BY 2.0 (France) Attribution: tatoeba.org #24699 (CK) & #781208 (Martha) +Our school is further away than the station. 去我们学校比去火车站要远。 CC-BY 2.0 (France) Attribution: tatoeba.org #1282781 (CK) & #8777548 (crescat) +People have been buying me drinks all night. 人們整晚都在給我買飲料。 CC-BY 2.0 (France) Attribution: tatoeba.org #3150647 (CK) & #6111964 (verdastelo9604) +Probably you are allergic to pollen or dust. 你可能对花粉或灰尘过敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #456645 (lukaszpp) & #5967315 (verdastelo9604) +Quit smoking if you don't want to die early. 如果你想活得久一点就戒烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755347 (garborg) & #333559 (fucongcong) +Reading a book can be compared to a journey. 阅读一本书可以比作一次旅行。 CC-BY 2.0 (France) Attribution: tatoeba.org #1550197 (serach) & #1313759 (vicch) +Real friendship is more valuable than money. 真正的友谊比金钱更有价值。 CC-BY 2.0 (France) Attribution: tatoeba.org #322233 (CK) & #482695 (biglion) +Rome is famous for its ancient architecture. 羅馬以其古代建築而聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #29411 (CK) & #797139 (Martha) +Scotland is famous for its woollen textiles. 蘇格蘭以其羊毛紡織品而著名。 CC-BY 2.0 (France) Attribution: tatoeba.org #51990 (BE) & #797115 (Martha) +She acknowledged that my statement was true. 她承認我的聲明是真實的。 CC-BY 2.0 (France) Attribution: tatoeba.org #314321 (CK) & #5405564 (egg0073) +She always studies while listening to music. 她總是邊聽音樂邊唸書。 CC-BY 2.0 (France) Attribution: tatoeba.org #388576 (CK) & #894308 (Martha) +She discovered that she had run out of salt. 她发现她已经断盐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #312723 (CK) & #866748 (kooler) +She doesn't have as much patience as you do. 她没像你那样有耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442242 (CK) & #1695526 (sadhen) +She doesn't like people who aren't punctual. 她不喜欢不守时的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #314531 (CK) & #1807070 (sadhen) +She may be late, in which case we will wait. 她可能迟到,然后我们就要等。 CC-BY 2.0 (France) Attribution: tatoeba.org #315791 (mamat) & #6020846 (verdastelo9604) +She prepares wholesome meals for her family. 她为她的家人准备健康餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #312866 (CK) & #8794698 (slo_oth) +She succeeded in drawing the truth from him. 她成功地从他口中得知了真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #310550 (CK) & #8765258 (crescat) +She thought that he was wasting electricity. 她認為他是在浪費電。 CC-BY 2.0 (France) Attribution: tatoeba.org #388354 (CK) & #900681 (Martha) +She told him that she believed in astrology. 她告诉了他自己相信占星术。 CC-BY 2.0 (France) Attribution: tatoeba.org #887451 (CK) & #5091735 (mirrorvan) +She warned him not to go out at night alone. 她警告他晚上不要一个人出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #887519 (CK) & #1438527 (asosan) +She was always quarreling with her brothers. 她一直和她的兄弟争吵。 CC-BY 2.0 (France) Attribution: tatoeba.org #310411 (CK) & #332633 (fucongcong) +She was holding a small parasol in her hand. 她手里握着一把小阳伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #1180732 (treskro3) & #835553 (fucongcong) +She's been absent from school for five days. 她已经五天不上学了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396368 (CK) & #1873014 (sadhen) +Shortly after the accident, the police came. 事故發生後不久,警察來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #263712 (CK) & #797014 (Martha) +Social customs vary from country to country. 国家不同,习俗各异。 CC-BY 2.0 (France) Attribution: tatoeba.org #265341 (CK) & #334128 (fucongcong) +Switzerland is famous for its scenic beauty. 瑞士以它的風景優美而聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #52438 (CK) & #797112 (Martha) +That company deals mainly in imported goods. 這公司主要做進口貨物的生意。 CC-BY 2.0 (France) Attribution: tatoeba.org #49070 (CK) & #6098455 (verdastelo9604) +That music is worth listening to many times. 这音乐值得听许多次。 CC-BY 2.0 (France) Attribution: tatoeba.org #49426 (CK) & #332867 (fucongcong) +The chances are he's already heard the news. 他有可能已經得知這消息。 CC-BY 2.0 (France) Attribution: tatoeba.org #65020 (CM) & #1250592 (tsayng) +The date of manufacture is shown on the lid. 生产日期在盖子上。 CC-BY 2.0 (France) Attribution: tatoeba.org #271939 (Zifre) & #4621020 (Yashanti) +The enemy dropped many bombs on the factory. 敵人在工廠投下了很多炸彈。 CC-BY 2.0 (France) Attribution: tatoeba.org #278681 (CK) & #775902 (Martha) +The engineer told us how to use the machine. 工程师告诉我们如何使用机器。 CC-BY 2.0 (France) Attribution: tatoeba.org #48755 (CK) & #336609 (fucongcong) +The explanation is by no means satisfactory. 這個解釋不是很令人滿意。 CC-BY 2.0 (France) Attribution: tatoeba.org #45811 (CK) & #779068 (Martha) +The first item he bought was an alarm clock. 他买的第一项东西是一个闹钟。 CC-BY 2.0 (France) Attribution: tatoeba.org #284097 (CK) & #2052492 (sadhen) +The fish he caught yesterday is still alive. 他昨天抓住的鱼一直还活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #283671 (CK) & #464934 (fucongcong) +The garden was surrounded by a wooden fence. 花园被木栅栏围了起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #44961 (CK) & #333146 (fucongcong) +The orange left a strange taste in my mouth. 橙子在我嘴里留下了一种奇怪的味道。 CC-BY 2.0 (France) Attribution: tatoeba.org #50604 (CM) & #334504 (fucongcong) +The population of the city is about 100,000. 这座城市的人口约有100 000。 CC-BY 2.0 (France) Attribution: tatoeba.org #47358 (CM) & #5585183 (verdastelo9604) +The prisoner was behind bars for two months. 那個囚犯在牢裡待了兩個月。 CC-BY 2.0 (France) Attribution: tatoeba.org #44163 (CK) & #5505596 (egg0073) +The weather was not only cold, but also wet. 天气又冷又湿。 CC-BY 2.0 (France) Attribution: tatoeba.org #278883 (CM) & #333431 (fucongcong) +There are fifty states in the United States. 美国有50个州。 CC-BY 2.0 (France) Attribution: tatoeba.org #67503 (CK) & #334866 (fucongcong) +There are five patients in the waiting room. 等候室里有五位患者。 CC-BY 2.0 (France) Attribution: tatoeba.org #1421626 (CK) & #8776014 (crescat) +There are no hats in that store that fit me. 那個店裡沒有合我尺寸的帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2681957 (FeuDRenais) & #2661328 (cienias) +There is a library in every city in America. 美国的每个城市都有一个图书馆。 CC-BY 2.0 (France) Attribution: tatoeba.org #853126 (piksea) & #344209 (fucongcong) +There seemed to be no answer to the problem. 这个问题似乎没有答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #807516 (Source_VOA) & #2048829 (sadhen) +There was a cottage on the side of the hill. 山坡上有一个茅屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #48731 (CM) & #847789 (fucongcong) +There was a cottage on the side of the hill. 山坡上有一间小屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #48731 (CM) & #847791 (fucongcong) +There was a cottage on the side of the hill. 山坡上有一间村屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #48731 (CM) & #847793 (fucongcong) +There was nothing that the doctors could do. 醫生甚麼也做不了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4904730 (Hybrid) & #6624728 (verdastelo9604) +They accused me of having broken my promise. 他们指责我没有信守诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #307626 (CK) & #334835 (fucongcong) +They fell into the conversation immediately. 他们很快就聊起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305676 (CM) & #4760176 (ryanwoo) +They say that golf is very popular in Japan. 他们说高尔夫在日本很流行。 CC-BY 2.0 (France) Attribution: tatoeba.org #1369582 (Triwizard) & #6047446 (verdastelo9604) +This is a good book, but that one is better. 這是本好書,但那本更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #55815 (CK) & #6633865 (verdastelo9604) +This plane flies between Osaka and Hakodate. 這架飛機往返於大阪和函館之間。 CC-BY 2.0 (France) Attribution: tatoeba.org #57454 (CK) & #903487 (Martha) +This product claims to help you lose weight. 这个产品称它能帮助你减肥。 CC-BY 2.0 (France) Attribution: tatoeba.org #680515 (Source_VOA) & #1358536 (sadhen) +Tom and Mary have been here for three hours. 湯姆和瑪麗已經在這裡待了三個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640458 (CK) & #6131476 (verdastelo9604) +Tom and Mary have three sons and a daughter. Tom和Mary有三個兒子和一個女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493563 (CK) & #4504449 (egg0073) +Tom can swim faster than anyone else I know. 汤姆是我认识的人当中游泳最快的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755829 (CK) & #4757246 (ryanwoo) +Tom didn't know what Mary was talking about. 湯姆不知道瑪麗在說甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #3826997 (CK) & #6086869 (verdastelo9604) +Tom didn't like spinach when he was a child. 汤姆小时候不喜欢菠菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #8554382 (CK) & #8554435 (slo_oth) +Tom didn't understand what the teacher said. 汤姆没明白老师说了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026276 (CK) & #5091156 (mirrorvan) +Tom doesn't like being treated like a child. 汤姆不喜欢被当作小孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026052 (CK) & #5911572 (verdastelo9604) +Tom eats asparagus, but his brother doesn't. 湯姆吃蘆筍,但是他弟弟不吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025857 (CK) & #8359227 (xjjAstrus) +Tom made a list of places he wants to visit. 汤姆把他想去的地方列成了一张清单。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024496 (CK) & #1395051 (mtdot) +Tom said he wanted to try riding a unicycle. 湯姆說他想試試騎獨輪車。 CC-BY 2.0 (France) Attribution: tatoeba.org #6069130 (CK) & #6091738 (verdastelo9604) +Tom said that he wanted to eat Chinese food. 湯姆說他想吃中國菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #6652167 (CK) & #6332425 (verdastelo9604) +Tom sells T-shirts at a 30 percent discount. 汤姆以七折销售T恤。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024178 (CK) & #8631090 (ZeroAurora) +Tom told me that his father had passed away. 汤姆告诉我他父亲去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761954 (CK) & #4764577 (ryanwoo) +Tom usually only eats oatmeal for breakfast. 汤姆通常早饭只吃燕麦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024047 (CK) & #5670793 (verdastelo9604) +Tom was embarrassed to have to ask for help. 汤姆很不好意思去求帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #6858690 (Hybrid) & #6858749 (SherryChen) +Tom wasn't smiling when he entered the room. 汤姆进房间时没有微笑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1040508 (CK) & #5780572 (verdastelo9604) +Tom wrote his name in the sand with a stick. 汤姆用棍子在沙上写了他的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #4849980 (Hybrid) & #5933782 (verdastelo9604) +Tom, what would you like to have for dinner? 湯姆,你晚飯想吃甚麽? CC-BY 2.0 (France) Attribution: tatoeba.org #37432 (CK) & #8571915 (verdastelo9604) +Translating this sentence will be very easy. 翻译这个句子会很容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #961861 (CK) & #7068979 (la_kanro) +Water the flowers before you have breakfast. 吃早餐之前先澆花。 CC-BY 2.0 (France) Attribution: tatoeba.org #277745 (CK) & #1485255 (cienias) +We all consider your idea to be impractical. 我们都认为你的想法是行不通的。 CC-BY 2.0 (France) Attribution: tatoeba.org #704448 (kebukebu) & #476677 (fucongcong) +We don't have class on Wednesday afternoons. 我们周三下午没课。 CC-BY 2.0 (France) Attribution: tatoeba.org #575346 (FeuDRenais) & #334927 (fucongcong) +We had a lecture on environmental pollution. 我们有一节关于环境污染的讲座。 CC-BY 2.0 (France) Attribution: tatoeba.org #244575 (CM) & #5983621 (verdastelo9604) +We have no chance against those top players. 我们没机会赢那些一流选手。 CC-BY 2.0 (France) Attribution: tatoeba.org #54694 (CM) & #332444 (fucongcong) +We haven't yet been told what we need to do. 還沒人告訴我們要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #5838284 (CK) & #6058610 (verdastelo9604) +We receive many telephone calls from abroad. 我們接到許多來自國外的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #719275 (CM) & #875133 (Martha) +We want to spend our honeymoon in Australia. 我们想在澳大利亚过蜜月。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586696 (CK) & #8589658 (tianblr) +We're going to discuss the problem tomorrow. 我們明天討論這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #249413 (CK) & #6482313 (verdastelo9604) +We've got to start thinking about recycling. 我們必須開始考慮回收。 CC-BY 2.0 (France) Attribution: tatoeba.org #5725251 (CM) & #6109291 (verdastelo9604) +What do you think of those Japanese writers? 你觉得那些日本作家怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #67010 (CM) & #786004 (fucongcong) +What is the total amount of money you spent? 你一共花了多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #1454461 (CK) & #1454462 (sadhen) +What number bus do I take to get to Waikiki? 我乘几路车去怀基基? CC-BY 2.0 (France) Attribution: tatoeba.org #29236 (CK) & #794181 (fucongcong) +What time does the train arrive at Yokohama? 火车什么时候到横滨? CC-BY 2.0 (France) Attribution: tatoeba.org #995283 (NickC) & #335130 (fucongcong) +Where is the accent on the word 'Australia?' “Australia”这个词的重音要放在哪? CC-BY 2.0 (France) Attribution: tatoeba.org #1962024 (HououinKyouma) & #8789759 (crescat) +Which is better, red thread or white thread? 哪个更好,红线呢还是白线? CC-BY 2.0 (France) Attribution: tatoeba.org #520066 (CK) & #863294 (kooler) +Who can tell what will happen in the future? 谁能说将来会发生什么呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #267496 (CM) & #437275 (fucongcong) +Will the fine weather keep up till tomorrow? 好天气能持续到明天吗? CC-BY 2.0 (France) Attribution: tatoeba.org #57766 (CM) & #6047434 (verdastelo9604) +Will you lend me your CD player for an hour? 你能借我你的CD播放機一小時嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #71019 (CM) & #810013 (Martha) +Would you please look after my dog tomorrow? 你明天可以幫我照顧一下我的狗嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #776347 (CK) & #776974 (Martha) +Would you please write with a ballpoint pen? 你能用圆珠笔写吗? CC-BY 2.0 (France) Attribution: tatoeba.org #779483 (CK) & #5611475 (verdastelo9604) +Yesterday's board meeting was a big success. 昨天的董事會會議非常成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #410472 (CK) & #895624 (Martha) +Yesterday's board meeting was a big success. 昨天的董事會會議是一個大成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #410472 (CK) & #895625 (Martha) +You can't understand this sentence, can you? 你不懂这句句子,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #57238 (CK) & #802870 (fucongcong) +You haven't washed your hands yet, have you? 你还没洗手,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16423 (CK) & #471359 (fucongcong) +You made the mistake on purpose, didn't you? 你故意犯這個錯, 是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16837 (Dejo) & #775860 (Martha) +You may not remember me, but I remember you. 你可能不記得我了,但我記得你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3346025 (Hybrid) & #6624743 (verdastelo9604) +You needn't have taken an umbrella with you. 你其实没必要带伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #69370 (CM) & #332719 (fucongcong) +You smoke far too much. You should cut back. 你吸太多煙了。你應該少抽一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #16511 (CM) & #775798 (Martha) +You'll be able to drive a car in a few days. 幾天之後你就可以開車了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16825 (Swift) & #775858 (Martha) +"Did you watch TV last week?" "No, I didn't." “上周你看电视了吗?”“没有,我没看。” CC-BY 2.0 (France) Attribution: tatoeba.org #73972 (CK) & #7779223 (jiangche) +"Is he going to swim tomorrow?" "Yes, he is." "他明天會去游泳嗎?" "是的, 他會。" CC-BY 2.0 (France) Attribution: tatoeba.org #73559 (CK) & #790606 (Martha) +"Is he going to swim tomorrow?" "Yes, he is." “他明天去游泳吗?” “没错” CC-BY 2.0 (France) Attribution: tatoeba.org #73559 (CK) & #2032239 (ydcok) +A great responsibility lies on his shoulders. 他身肩重任。 CC-BY 2.0 (France) Attribution: tatoeba.org #286007 (CK) & #1233797 (tsayng) +After several delays, the plane finally left. 經過數次延遲之後,飛機終於離開了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24488 (CK) & #796964 (Martha) +After she had lunch, she got ready to go out. 吃過午飯後,她準備好要出門了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277604 (CK) & #830469 (Martha) +After the hurricane, their house was a wreck. 暴风雨过后,他们的房子成了废墟。 CC-BY 2.0 (France) Attribution: tatoeba.org #682498 (Source_VOA) & #816508 (fucongcong) +Agriculture consumes a great amount of water. 农业需要消耗的大量水。 CC-BY 2.0 (France) Attribution: tatoeba.org #282303 (CM) & #5640777 (verdastelo9604) +Alcohol consumption is increasing every year. 酒的消费每年都在上升。 CC-BY 2.0 (France) Attribution: tatoeba.org #67312 (CK) & #401013 (fucongcong) +All of the cookies are in the shape of stars. 所有餅乾都是星星的形狀。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159948 (tinytina) & #777993 (Martha) +All the signs are that she is getting better. 所有迹象表明她好起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #51671 (CK) & #332666 (fucongcong) +Are you planning to take part in the meeting? 你们准备参加会议吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16610 (Eldad) & #819749 (fucongcong) +Are you sure you want to do this by yourself? 你确定要自己做这个吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2031311 (CK) & #5613701 (verdastelo9604) +As long as you keep quiet, you can stay here. 只要你保持安靜, 你可以留在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #788263 (hrin) & #779494 (Martha) +Because of the snow, I couldn't see anything. 因为下雪了,我什么也没能看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #2976746 (CK) & #4147255 (sissima) +Both French and English are spoken in Canada. 在加拿大的人說法語和英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #63651 (CK) & #811807 (Martha) +Broccoli is one of the healthiest vegetables. 西藍花是最健康的蔬菜之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #682307 (Source_VOA) & #6940197 (xjjAstrus) +Broccoli is one of the healthiest vegetables. 西蘭花是最健康的蔬菜之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #682307 (Source_VOA) & #8359267 (xjjAstrus) +Burn this letter after you finish reading it. 看完这封信请把它烧掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #968302 (darinmex) & #8878028 (crescat) +Could you help me translate this into French? 你能帮我把这译成法语吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2457439 (CK) & #5574523 (verdastelo9604) +Do you know of any good restaurant near here? 你知道这儿附近有什么好餐馆吗? CC-BY 2.0 (France) Attribution: tatoeba.org #61364 (CK) & #390531 (fucongcong) +Do you take part in any community activities? 你参加社团活动吗? CC-BY 2.0 (France) Attribution: tatoeba.org #70301 (CK) & #332432 (fucongcong) +Doctors have discovered some startling facts. 医生发现了一些令人吃惊的事实。 CC-BY 2.0 (France) Attribution: tatoeba.org #28092 (SPENSER) & #335627 (fucongcong) +Don't forget that Tom is allergic to peanuts. 不要忘记汤姆对花生过敏。 CC-BY 2.0 (France) Attribution: tatoeba.org #7511957 (CK) & #8739642 (slo_oth) +Eating habits differ from country to country. 各國有不同的飲食習慣。 CC-BY 2.0 (France) Attribution: tatoeba.org #268755 (Eldad) & #798141 (Martha) +English and German are two related languages. 英語和德語是兩種相關的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #460229 (jeanne) & #811858 (Martha) +English has become an international language. 英语成为了一门国际语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #26275 (CK) & #336710 (fucongcong) +Everyone admires the pictures painted by him. 每個人都很欣賞他所畫的圖畫。 CC-BY 2.0 (France) Attribution: tatoeba.org #32166 (CK) & #873439 (Martha) +Everyone knows of his affection for that dog. 每个人都知道他对那狗的感情。 CC-BY 2.0 (France) Attribution: tatoeba.org #2264196 (sharptoothed) & #5856776 (verdastelo9604) +Excuse me for opening your letter by mistake. 對不起, 我錯開了你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #32553 (CK) & #793197 (Martha) +Father bought me the latest model motorcycle. 父親給我買了最新型的摩托車。 CC-BY 2.0 (France) Attribution: tatoeba.org #318968 (CM) & #804516 (Martha) +Few things give us as much pleasure as music. 很少有東西像音樂一樣帶給我們這麼多的快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #25408 (CK) & #779024 (Martha) +Florence is the most beautiful city in Italy. 佛罗伦萨是意大利最美丽的城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #2435 (CK) & #1776667 (sadhen) +Food should be chewed before being swallowed. 食物在吞咽前要经过咀嚼。 CC-BY 2.0 (France) Attribution: tatoeba.org #268668 (Dejo) & #5617154 (verdastelo9604) +He has not written to us since last February. 他從去年二月開始就沒寫信給我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #295261 (CK) & #875125 (Martha) +He is as smart as any other boy in the class. 他和班上其他男生一样聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #289737 (CK) & #333119 (fucongcong) +He looked for every possible means of escape. 他寻找一切可能的逃生途径。 CC-BY 2.0 (France) Attribution: tatoeba.org #301981 (CK) & #332513 (fucongcong) +He received quite a few letters this morning. 今天早上他收到好多信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1316331 (CK) & #343416 (fucongcong) +He studied hard in order to get into college. 他努力学习,为的是能够考上大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #301243 (Mouseneb) & #346818 (fucongcong) +He was moved to tears when he heard the news. 当他听到那个新闻的时候,他感动得哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1749408 (Spamster) & #1749944 (sadhen) +He was playing the piano and she was singing. 他彈鋼琴,她唱歌。 CC-BY 2.0 (France) Attribution: tatoeba.org #1050399 (tatomeimei) & #881214 (Martha) +He wrote a book about the American Civil War. 他写了本关于美国南北战争的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #302140 (Eldad) & #803841 (fucongcong) +He's the manager of the marketing department. 他是营销部的负责人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1442251 (Eldad) & #333101 (fucongcong) +Hemingway enjoyed big game hunting in Africa. 海明威喜歡在非洲的大狩獵。 CC-BY 2.0 (France) Attribution: tatoeba.org #33903 (CK) & #801319 (Martha) +His little brother is a famous soccer player. 他弟弟是个有名的足球选手。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753835 (garborg) & #332970 (fucongcong) +How large is the population of New York City? 纽约市的人口有多少? CC-BY 2.0 (France) Attribution: tatoeba.org #35880 (CK) & #332960 (fucongcong) +How long do you plan to stay in this country? 你打算在这个国家待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #59253 (Eldad) & #333990 (fucongcong) +How long does it take to walk to the station? 走着去火车站要多久? CC-BY 2.0 (France) Attribution: tatoeba.org #25979 (CK) & #334074 (fucongcong) +I admitted that I didn't know how to do that. 我承認我不知道怎麼做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6237513 (CK) & #6624623 (verdastelo9604) +I am going to stay here for a couple of days. 我將要在這裡待幾天。 CC-BY 2.0 (France) Attribution: tatoeba.org #259777 (CK) & #793600 (Martha) +I am staying at the hotel for the time being. 目前我待在酒店。 CC-BY 2.0 (France) Attribution: tatoeba.org #259691 (CK) & #334690 (fucongcong) +I am waiting for you to finish your homework. 我等你把作業做完。 CC-BY 2.0 (France) Attribution: tatoeba.org #6007736 (szilviez) & #6000436 (xjjAstrus) +I bought a VCR at that store for a low price. 我在上商店花低价买了录像机。 CC-BY 2.0 (France) Attribution: tatoeba.org #395048 (CM) & #5576765 (verdastelo9604) +I can't focus on two things at the same time. 我不能同時注意两件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301964 (CK) & #6903875 (verdastelo9604) +I caught him by the arm before he could fall. 在他倒下前我抓住了他的手臂。 CC-BY 2.0 (France) Attribution: tatoeba.org #284050 (CK) & #779042 (Martha) +I could hear birds singing outside my window. 我能听见鸟在窗外歌唱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4496987 (CK) & #5794143 (verdastelo9604) +I couldn't enter because the door was closed. 我因為門關著進不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2092160 (MethodGT) & #6093381 (verdastelo9604) +I couldn't put up with her arrogant behavior. 我无法忍受她傲慢的态度。 CC-BY 2.0 (France) Attribution: tatoeba.org #309091 (CM) & #466257 (fucongcong) +I do not know whether to accept or to refuse. 我不知道是否該同意或拒絕。 CC-BY 2.0 (France) Attribution: tatoeba.org #895060 (pauldhunt) & #750435 (Martha) +I don't feel like taking a walk this morning. 我今天早上不想散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #62600 (CK) & #333767 (fucongcong) +I don't know if he would have done it for me. 我不知道他是否已经为我做好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2397 (CK) & #1776645 (sadhen) +I don't know if that's what Tom wants or not. 我不知道那是不是汤姆想要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2318242 (CK) & #5780619 (verdastelo9604) +I don't know your reasons for not liking Tom. 我不知道你不喜欢汤姆的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #5608957 (adamtrousers) & #5550189 (verdastelo9604) +I don't like to use liquid laundry detergent. 我不喜歡用洗衣液。 CC-BY 2.0 (France) Attribution: tatoeba.org #9136073 (LanguageExpert) & #9135901 (xjjAstrus) +I don't really like him, in fact, I hate him. 我不太喜欢他,其实我讨厌他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137286 (soj4l) & #343729 (fucongcong) +I don't remember anything about the incident. 我不记得事故的情况。 CC-BY 2.0 (France) Attribution: tatoeba.org #3067511 (CK) & #5993940 (verdastelo9604) +I don't think any more students want to come. 我觉得不会有更多学生想来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #21335 (CK) & #8886664 (crescat) +I don't think that she looks like her mother. 我不觉得她像她妈妈。 CC-BY 2.0 (France) Attribution: tatoeba.org #575305 (FeuDRenais) & #333833 (fucongcong) +I don't understand what you're trying to say. 我不明白您想说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #380258 (kellenparker) & #476665 (fucongcong) +I get a kick out of her cheerful personality. 她開朗的個性使我覺得快樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #309223 (CM) & #772128 (Martha) +I have to give back the book before Saturday. 我必须在礼拜六之前把书还回去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2405 (CK) & #1776640 (sadhen) +I have too many things on my mind these days. 这几天我脑袋里的事情太多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1487 (kebukebu) & #334712 (fucongcong) +I just had dinner with some of Tom's friends. 我刚跟汤姆的一些朋友吃了晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726887 (CM) & #5558455 (verdastelo9604) +I know that you're learning French at school. 我知道你在學校學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #7240045 (CK) & #6103233 (verdastelo9604) +I need to find somewhere to practice dancing. 我需要找個地方練舞。 CC-BY 2.0 (France) Attribution: tatoeba.org #6008601 (szilviez) & #5972291 (xjjAstrus) +I remember returning the book to the library. 我记得我把书还到图书馆了。 CC-BY 2.0 (France) Attribution: tatoeba.org #43885 (CK) & #8589633 (tianblr) +I should have gone to bed earlier last night. 我昨晚应该早点睡觉的。 CC-BY 2.0 (France) Attribution: tatoeba.org #244880 (CK) & #8589260 (easononizuka) +I take a walk every day except when it rains. 除了雨天我每天都散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #256141 (CK) & #4759979 (ryanwoo) +I think it's better for us to adopt his plan. 我认为采用他的计划对我们比较好。 CC-BY 2.0 (France) Attribution: tatoeba.org #395698 (CM) & #784516 (fucongcong) +I think we've found what we were looking for. 我認為我們找到我們正在找的東西了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735686 (CK) & #6077493 (verdastelo9604) +I thought that Tom had a soccer game tonight. 我以为汤姆今晚有足球比赛。 CC-BY 2.0 (France) Attribution: tatoeba.org #7172526 (CK) & #5091639 (mirrorvan) +I want to emphasize this point in particular. 我想特别强调这一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #33531 (CK) & #2368479 (vicch) +I wanted to thank you for what you did today. 我想为你今天所做的事感谢你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3596415 (CK) & #6093372 (verdastelo9604) +I was able to succeed because of your advice. 我因為有你的建議纔能成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159755 (CK) & #6114389 (verdastelo9604) +I will give you a call as soon as I get home. 我一回到家就打电话给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #24211 (CK) & #401127 (fucongcong) +I will make it clear that I won't come again. 我要明確表示我不會再來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31351 (Dejo) & #6070056 (verdastelo9604) +I wish I could buy you everything you wanted. 我希望我能买下你想要的所有东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #5168319 (CK) & #6047422 (verdastelo9604) +I wonder if a third world war will break out. 不知道第三次世界大战会不会爆发。 CC-BY 2.0 (France) Attribution: tatoeba.org #276022 (CK) & #8735008 (crescat) +I wonder if you have something to write with. 我懷疑你是否有東西可寫。 CC-BY 2.0 (France) Attribution: tatoeba.org #16273 (CK) & #775776 (Martha) +I wonder whether or not Tom can speak French. 我不知道湯姆會不會說法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #6524410 (CK) & #6931244 (verdastelo9604) +I'll always love you, no matter what happens. 不論發生了什麼事,我會永遠愛你。 CC-BY 2.0 (France) Attribution: tatoeba.org #20106 (CK) & #803887 (Martha) +I'll deal with this problem as soon as I can. 我会尽快处理这问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712610 (CK) & #5794106 (verdastelo9604) +I'll drop by the post office on the way home. 我会在回家的路上顺便去邮局。 CC-BY 2.0 (France) Attribution: tatoeba.org #763157 (CK) & #5624961 (verdastelo9604) +I'm not sure, but I think I know where to go. 我不确定,但我认为我知道要去哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537978 (CK) & #5663524 (verdastelo9604) +I've always fed my dogs in the early evening. 每个傍晚我都会喂我的狗狗们。 CC-BY 2.0 (France) Attribution: tatoeba.org #898581 (CK) & #2394598 (fenfang557) +I've decided to tell Tom about what happened. 我决定告诉汤姆发生了什么事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #6656935 (CK) & #8940475 (crescat) +I've got to stop eating such sweet ice cream. 我必须停止吃那么甜的冰激凌。 CC-BY 2.0 (France) Attribution: tatoeba.org #253829 (CK) & #335825 (fucongcong) +If it rains tomorrow, I'll just stay at home. 如果明天下雨,我就待在家。 CC-BY 2.0 (France) Attribution: tatoeba.org #386758 (Mouseneb) & #333425 (fucongcong) +If it rains tonight, I'm not going to go out. 如果今晚下雨, 我就不出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #7836286 (CK) & #763921 (Martha) +If you hear hoofbeats, don't look for zebras. 不要听风就是雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #409495 (Scott) & #799242 (fucongcong) +If you see a mistake, then please correct it. 如果你发现错误,那就请你纠正它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1535 (Zifre) & #334452 (fucongcong) +In Esperanto there are only 16 grammar rules. 世界語只有16個語法規則。 CC-BY 2.0 (France) Attribution: tatoeba.org #752181 (Dejo) & #907492 (Martha) +Ireland and England are separated by the sea. 爱尔兰和英格兰被海分割。 CC-BY 2.0 (France) Attribution: tatoeba.org #71924 (CM) & #333966 (fucongcong) +Is the water in the Black Sea actually black? 黑海里的水事实上是黑的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4833334 (derpapottamus) & #4844810 (pig8322) +It cost me 50 dollars to have my watch fixed. 我花了五十美元修好了手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #264073 (CK) & #8734946 (crescat) +It has been three months since he left Japan. 自從他離開日本已經有三個月了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284082 (CK) & #6624658 (verdastelo9604) +It is cruel of him to say such things to her. 他跟她说这样的话真是太残忍了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284110 (CM) & #333713 (fucongcong) +It is less humid today than it was yesterday. 今天沒有昨天潮溼。 CC-BY 2.0 (France) Attribution: tatoeba.org #242848 (CK) & #801551 (Martha) +It is less muggy today than it was yesterday. 今天不比昨天悶熱。 CC-BY 2.0 (France) Attribution: tatoeba.org #242851 (CK) & #801557 (Martha) +It is not easy to distinguish good from evil. 区分善恶不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #273650 (CM) & #333665 (fucongcong) +It looks like the dog wants something to eat. 那隻狗看起來好像想吃東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #884602 (Tajfun) & #884601 (Tajfun) +It wouldn't be wise to ignore Tom completely. 完全忽视汤姆不会是明智的。 CC-BY 2.0 (France) Attribution: tatoeba.org #8569678 (Ergulis) & #8574699 (slo_oth) +It's not a bug, it's an undocumented feature. 这不是一个漏洞,而是一个没有写进文档的特性。 CC-BY 2.0 (France) Attribution: tatoeba.org #426498 (jerom) & #480651 (biglion) +It's rude to make fun of your boss in public. 在公開場合開你老闆的玩笑是無禮的。 CC-BY 2.0 (France) Attribution: tatoeba.org #268338 (CM) & #871107 (Martha) +Keep an eye on the child for me for a moment. 帮我看会儿孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #53395 (CM) & #782781 (fucongcong) +Let me give you a lift as far as the station. 讓我送你到車站吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #25986 (CK) & #6146497 (verdastelo9604) +Life doesn't always go the way we want it to. 生活并不总是如我们所愿。 CC-BY 2.0 (France) Attribution: tatoeba.org #270584 (CM) & #8584897 (tianblr) +More often than not, she had to go in person. 很多時候她要親自去。 CC-BY 2.0 (France) Attribution: tatoeba.org #30373 (CM) & #780071 (Martha) +Much of what they wrote about never happened. 他們寫的很多都沒發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #802630 (Source_VOA) & #6070890 (verdastelo9604) +My brother seems to enjoy himself at college. 我弟弟似乎在大学过得很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #35993 (CK) & #335401 (fucongcong) +My city is fifty kilometres from the capital. 我的城市离首都五十千米。 CC-BY 2.0 (France) Attribution: tatoeba.org #1499298 (CM) & #5931763 (verdastelo9604) +My father always speaks in a very loud voice. 我父親總是說話很大聲。 CC-BY 2.0 (France) Attribution: tatoeba.org #318964 (CK) & #804514 (Martha) +My grandfather usually eats breakfast at six. 我的祖父通常在六點鐘吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #321446 (CK) & #894942 (Martha) +My mother bought two bottles of orange juice. 我母亲买了两瓶橙汁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2110 (CK) & #503210 (fucongcong) +No intelligent person drinks and then drives. 沒有聰明人喝了酒再開車。 CC-BY 2.0 (France) Attribution: tatoeba.org #277058 (CK) & #6103211 (verdastelo9604) +None of the teachers could solve the problem. 所有的老师都无法解决这个问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #37486 (CK) & #493468 (biglion) +None of the teachers could solve the problem. 这道题目没有一位老师会做。 CC-BY 2.0 (France) Attribution: tatoeba.org #37486 (CK) & #493469 (biglion) +One good friend is better than ten relatives. 一个好友胜过十个亲戚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3731399 (CM) & #5883320 (verdastelo9604) +Our eyes take time to adjust to the darkness. 我们的眼睛需要时间来适应黑暗。 CC-BY 2.0 (France) Attribution: tatoeba.org #23337 (CK) & #334396 (fucongcong) +Our friend finished the race in second place. 我们的朋友完成了比赛,得了第二名。 CC-BY 2.0 (France) Attribution: tatoeba.org #408091 (Dorenda) & #718398 (Yashanti) +Our music teacher advised me to visit Vienna. 我們的音樂老師建議我去維也納看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #25423 (CK) & #6148370 (verdastelo9604) +People who will lie for you, will lie to you. 会为你说谎的人,就会对你说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #2360 (CK) & #343951 (fucongcong) +Pilots communicate with the airport by radio. 飛行員用無線電與機場溝通。 CC-BY 2.0 (France) Attribution: tatoeba.org #35510 (Eldad) & #798201 (Martha) +Please remind me to mail the report tomorrow. 请提醒我明天把报告寄了。 CC-BY 2.0 (France) Attribution: tatoeba.org #323044 (CK) & #819820 (fucongcong) +Please translate this sentence into Japanese. 請把這句話翻譯成日文。 CC-BY 2.0 (France) Attribution: tatoeba.org #38544 (CK) & #850525 (Martha) +Refugees poured in from all over the country. 难民从整个国家涌来。 CC-BY 2.0 (France) Attribution: tatoeba.org #280806 (CM) & #787357 (fucongcong) +She asked me whether I liked the plan or not. 她问我喜不喜欢这个计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #48565 (CK) & #1748522 (sadhen) +She did not visit me on Sunday but on Monday. 她沒有在星期天來找我,而是星期一。 CC-BY 2.0 (France) Attribution: tatoeba.org #316089 (CM) & #5382954 (egg0073) +She got over the shock of her father's death. 她從她父親過世的震驚中恢復了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316802 (CK) & #907263 (Martha) +She has to take a remedial course in English. 她需要上英语补习班。 CC-BY 2.0 (France) Attribution: tatoeba.org #1395568 (CK) & #5571978 (verdastelo9604) +She is going to wash the bike this afternoon. 她下午会洗自行车。 CC-BY 2.0 (France) Attribution: tatoeba.org #313725 (CK) & #787620 (fucongcong) +She rested her head on her mother's shoulder. 她把头垂在她母亲的肩上。 CC-BY 2.0 (France) Attribution: tatoeba.org #316932 (CK) & #5883328 (verdastelo9604) +She's not a regular employee of this company. 她不是這間公司正式的職員。 CC-BY 2.0 (France) Attribution: tatoeba.org #1859018 (CK) & #742942 (egg0073) +Some abstract art is difficult to understand. 一些抽象藝術是很難理解的。 CC-BY 2.0 (France) Attribution: tatoeba.org #277567 (CK) & #798166 (Martha) +Some diseases are caused by a defective gene. 一些疾病的产生原因是基因缺陷。 CC-BY 2.0 (France) Attribution: tatoeba.org #681062 (Source_VOA) & #3630130 (suitchic) +Some of them are healthy, but others are not. 他们中的一些人身体健康,但是其他人不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #305263 (CM) & #835655 (fucongcong) +Take off your hat when you enter a classroom. 进教室时请脱下帽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #19033 (Ignoto) & #2032307 (ydcok) +Take off your hat when you enter a classroom. 进教室的时候请把帽子摘了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19033 (Ignoto) & #2032308 (ydcok) +The Colombian government demanded more money. 哥伦比亚政府要了更多的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #804358 (Source_VOA) & #805145 (fucongcong) +The cat arched its back and stretched itself. 猫弓起背,伸了个懒腰。 CC-BY 2.0 (France) Attribution: tatoeba.org #281997 (darinmex) & #818812 (fucongcong) +The charge for a front row seat is 5 dollars. 第一排的座位5美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #273645 (CM) & #332848 (fucongcong) +The fire broke out after the staff went home. 在全体职员回家后,火事爆发了。 CC-BY 2.0 (France) Attribution: tatoeba.org #23808 (CK) & #336597 (fucongcong) +The flowers in the garden need to be watered. 花园里的花需要浇水。 CC-BY 2.0 (France) Attribution: tatoeba.org #7809930 (sharris123) & #1325211 (vicch) +The information you gave me is of little use. 你給我的資料沒有多大的用處。 CC-BY 2.0 (France) Attribution: tatoeba.org #17723 (kebukebu) & #760730 (Martha) +The landlord says he wants to raise the rent. 地主说他要提高租金。 CC-BY 2.0 (France) Attribution: tatoeba.org #275579 (CK) & #5571076 (verdastelo9604) +The old church by the lake is very beautiful. 河边的老教堂很漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #239970 (CK) & #335380 (fucongcong) +The old cottage has a certain charm about it. 旧村屋有它自己一定的魅力。 CC-BY 2.0 (France) Attribution: tatoeba.org #48155 (orcrist) & #847801 (fucongcong) +The old man walked across the road carefully. 老人小心翼翼地过了马路。 CC-BY 2.0 (France) Attribution: tatoeba.org #43349 (CK) & #7774354 (jiangche) +The police seem to know exactly where we are. 警察看來很清楚我們在哪裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #2892110 (CK) & #6077416 (verdastelo9604) +The rope wasn't strong enough to support him. 绳子不够牢固,撑不住他。 CC-BY 2.0 (France) Attribution: tatoeba.org #49699 (CK) & #813587 (fucongcong) +The scenery was beautiful beyond description. 這風景美得無法形容。 CC-BY 2.0 (France) Attribution: tatoeba.org #48051 (Zifre) & #795259 (Martha) +The speaker's comments were highly offensive. 发言人的评论极有攻击性。 CC-BY 2.0 (France) Attribution: tatoeba.org #681610 (Source_VOA) & #5611472 (verdastelo9604) +The teacher gathered his students around him. 老師把他的學生們聚集在他周圍。 CC-BY 2.0 (France) Attribution: tatoeba.org #273018 (CK) & #818958 (Martha) +Their trip was postponed because of the rain. 他们的旅行因为下雨延期了。 CC-BY 2.0 (France) Attribution: tatoeba.org #305320 (nickyeow) & #475530 (fucongcong) +There are more girls than boys at our school. 在我們學校裡女孩比男孩多。 CC-BY 2.0 (France) Attribution: tatoeba.org #2975888 (KiwiCreme) & #6119448 (verdastelo9604) +There is a small garden in front of my house. 我家前面有个小庭院。 CC-BY 2.0 (France) Attribution: tatoeba.org #23574 (CK) & #2032257 (ydcok) +There is insufficient light to take pictures. 拍照片光线不够亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #265297 (edelyn90) & #784471 (fucongcong) +There used to be a lot of frogs in this pond. 以前在這個池塘裡有許多青蛙。 CC-BY 2.0 (France) Attribution: tatoeba.org #57893 (CK) & #830336 (Martha) +There was a cold wind blowing from the north. 有一阵从北边吹来的冷风。 CC-BY 2.0 (France) Attribution: tatoeba.org #321256 (CK) & #791376 (fucongcong) +There's a possibility you'll have to do that. 你有可能不得不那么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7221805 (CK) & #8969850 (WilsonWong) +There's no space in the room for another bed. 這間房間沒有空間再放一張床了。 CC-BY 2.0 (France) Attribution: tatoeba.org #682053 (Source_VOA) & #900052 (kanaorange) +They have English lessons three times a week. 他们一周上3节英语课。 CC-BY 2.0 (France) Attribution: tatoeba.org #306833 (CK) & #411594 (fucongcong) +They say that he has been dead for two years. 他们说他死了两年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284174 (CK) & #465836 (fucongcong) +This case might not get resolved for a while. 這個案件可能不會在短時間內就解決。 CC-BY 2.0 (France) Attribution: tatoeba.org #803918 (FeuDRenais) & #803501 (egg0073) +This place has a mysterious atmosphere to it. 这个地方的气氛很神秘。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103169 (omfgitsasalmon) & #343409 (fucongcong) +This school supplies students with textbooks. 这所学校为学生提供教科书。 CC-BY 2.0 (France) Attribution: tatoeba.org #59932 (Eldad) & #334982 (fucongcong) +This song makes me think of when I was young. 这首歌使我想起了我年轻的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #1067636 (ArizonaJim) & #336044 (fucongcong) +Time is the most precious thing in the world. 时间是世界上最宝贵的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2676772 (hunzerf) & #464922 (fucongcong) +To distinguish right from wrong is difficult. 要分清是非是困難的。 CC-BY 2.0 (France) Attribution: tatoeba.org #273651 (CK) & #775426 (Martha) +Tom and I see each other every day at school. 汤姆和我每天都在学校见面。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955656 (CK) & #5663570 (verdastelo9604) +Tom closed his eyes and began to count sheep. 汤姆闭上了眼睛开始数羊。 CC-BY 2.0 (France) Attribution: tatoeba.org #3629912 (Hybrid) & #8888044 (crescat) +Tom didn't have enough money to pay the rent. 汤姆没有足够的钱付租金。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013555 (CK) & #5611670 (verdastelo9604) +Tom didn't need to finish that work by today. 汤姆不必今天就完成那工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026318 (CK) & #5911766 (verdastelo9604) +Tom didn't understand what Mary really meant. 汤姆不知道玛丽真实的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094628 (CK) & #6047463 (verdastelo9604) +Tom happened to meet Mary at the supermarket. 汤姆在超市偶遇玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028776 (CK) & #1372497 (sadhen) +Tom has been learning French for a few years. 汤姆学了几年法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663205 (CK) & #5650407 (verdastelo9604) +Tom has been struck by lightning three times. 湯姆被閃電擊中過三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #681359 (Source_VOA) & #778516 (Martha) +Tom has lost his interest in studying French. 汤姆已经对学法语不感兴趣了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4779012 (garborg) & #4760029 (ryanwoo) +Tom has never been willing to help us before. 湯姆以前從不這樣願意幚我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3161972 (CK) & #6068361 (verdastelo9604) +Tom has spent the past three years in prison. 湯姆在監獄裡待了三年。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619357 (CK) & #6065377 (verdastelo9604) +Tom is spending more and more time in Boston. 汤姆在波士顿待得越来越久。 CC-BY 2.0 (France) Attribution: tatoeba.org #8426911 (CK) & #8851600 (crescat) +Tom is studying to become a marine biologist. 汤姆正在学习以成为海洋生物学家。 CC-BY 2.0 (France) Attribution: tatoeba.org #3419949 (CK) & #5617228 (verdastelo9604) +Tom isn't nearly as smart as he thinks he is. 汤姆并不像他自认为的那么聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #6855728 (CK) & #6857071 (lokria) +Tom made a list of places he wanted to visit. 汤姆列了他想去的地方的名单。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132601 (CK) & #5630420 (verdastelo9604) +Tom refused to even listen to my suggestions. 汤姆甚至拒绝听我的建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #3531389 (CK) & #5611615 (verdastelo9604) +Tom remained standing as the others sat down. 别人都坐下了,汤姆还站着。 CC-BY 2.0 (France) Attribution: tatoeba.org #3223164 (CK) & #5993935 (verdastelo9604) +Tom said he's going to tell us what he knows. 湯姆說他要把他知道的告訴我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #3204545 (CK) & #6560619 (verdastelo9604) +Tom says that he doesn't feel like going out. 汤姆说他不想出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024217 (CK) & #8550254 (slooth) +Tom seems to speak French better than before. 汤姆讲法语看来比以前好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712602 (CK) & #5911706 (verdastelo9604) +Tom took the concert ticket Mary offered him. 汤姆拿了玛丽给他的音乐会票。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958360 (CK) & #5556108 (verdastelo9604) +Tom tricked Mary into doing his work for him. 汤姆哄玛丽做他的作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027869 (CK) & #5576773 (verdastelo9604) +Tom visits Mary every time he goes to Boston. 湯姆每次去波士頓都去看瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3223227 (CK) & #6624669 (verdastelo9604) +Tom wants to spend more time with his family. 汤姆想多把时间花在他的家庭上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3737341 (CK) & #5630425 (verdastelo9604) +Tom will never willingly go there by himself. 汤姆绝不会愿意独自去那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #2790014 (CK) & #5845578 (verdastelo9604) +Tom worked hard to get the work done on time. 汤姆努力工作按时完成工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757144 (CK) & #4757229 (ryanwoo) +Tom's Japanese is improving little by little. 湯姆的日語一點一點地漸漸進步中。 CC-BY 2.0 (France) Attribution: tatoeba.org #37349 (CK) & #903526 (Martha) +Turn off the television. I can't concentrate. 把電視關掉。我無法專心。 CC-BY 2.0 (France) Attribution: tatoeba.org #20406 (CK) & #895599 (Martha) +Two hundred people died of cholera last year. 去年有两百人因霍乱死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #72980 (CM) & #8888076 (crescat) +Unfortunately the telephone was out of order. 不幸的是電話壞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26622 (CK) & #801468 (Martha) +Visiting a foreign country must be expensive. 到外國一定很貴。 CC-BY 2.0 (France) Attribution: tatoeba.org #21935 (CK) & #797022 (Martha) +Watch out for cars when you cross the street. 當你過馬路的時候要當心汽車。 CC-BY 2.0 (France) Attribution: tatoeba.org #280495 (CM) & #874487 (Martha) +We had a heart-to-heart talk with each other. 我们促膝谈心。 CC-BY 2.0 (France) Attribution: tatoeba.org #247921 (CK) & #5624985 (verdastelo9604) +We have to fix the date for our trip quickly. 我们必须快点定下旅游日期。 CC-BY 2.0 (France) Attribution: tatoeba.org #249006 (CM) & #5670801 (verdastelo9604) +We have to put off the game till next Sunday. 我们不得不把游戏搁到下周日了。 CC-BY 2.0 (France) Attribution: tatoeba.org #263545 (CK) & #816459 (fucongcong) +We met in 2008. A year later, we got married. 我們在2008年相遇。一年後,我們結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893780 (CK) & #5418962 (egg0073) +We must learn to live in harmony with nature. 我们必须学会与自然和谐共处。 CC-BY 2.0 (France) Attribution: tatoeba.org #248821 (CK) & #5613678 (verdastelo9604) +We were astonished to hear what had happened. 我们听到所发生的事,感到很惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #25174 (CK) & #336506 (fucongcong) +Weather permitting, we will leave in an hour. 如果天气允许的话,我们1小时后出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #278807 (CM) & #333848 (fucongcong) +What do I have to do now that I'm registered? 我注册了,现在该干什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #416557 (CK) & #794259 (fucongcong) +What do you say to taking a walk in the park? 去公园散步你觉得怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #240457 (CM) & #405266 (fucongcong) +What is the difference between this and that? “这”和“那”有什么区别? CC-BY 2.0 (France) Attribution: tatoeba.org #56059 (CK) & #609851 (CLARET) +What time does the train for New York depart? 去纽约的火车几点出发? CC-BY 2.0 (France) Attribution: tatoeba.org #35883 (Eldad) & #812252 (fucongcong) +What's your favorite small town in Australia? 你最喜欢的澳大利亚的小镇是哪里呀? CC-BY 2.0 (France) Attribution: tatoeba.org #7822947 (CK) & #8673596 (crescat) +When I first met Tom, I didn't like him much. 我第一次見到湯姆時,我不太喜歡他。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663193 (CK) & #6624710 (verdastelo9604) +When you hurt others, you also hurt yourself. 你若是傷害別人,你也會傷害到自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753763 (garborg) & #4736250 (egg0073) +Where did all that self-confidence come from? 哪来那么大的自信啊? CC-BY 2.0 (France) Attribution: tatoeba.org #5136441 (JimmyUK) & #5102417 (mirrorvan) +Why did you buy such an expensive dictionary? 为什么你买了一本那么贵的词典? CC-BY 2.0 (France) Attribution: tatoeba.org #432882 (aliene) & #426339 (fucongcong) +Why do you think that I'm thinking about you? 你为什么会认为我在想你? CC-BY 2.0 (France) Attribution: tatoeba.org #2243424 (jdmcowan) & #7767635 (jiangche) +Would you like to have a drink before dinner? 晚饭前您想喝一杯吗? CC-BY 2.0 (France) Attribution: tatoeba.org #268714 (CK) & #791662 (fucongcong) +Would you please have a look at these papers? 請你看看這些文件。 CC-BY 2.0 (France) Attribution: tatoeba.org #827511 (Swift) & #827518 (Martha) +Write your name and address on this envelope. 把你的姓名和地址寫在這個信封上。 CC-BY 2.0 (France) Attribution: tatoeba.org #57290 (CK) & #779043 (Martha) +You can see the roof of the house from there. 你能從那裡看到房子的頂。 CC-BY 2.0 (France) Attribution: tatoeba.org #51044 (CK) & #6091748 (verdastelo9604) +You didn't come to school yesterday, did you? 你昨天沒來學校, 是嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16114 (Swift) & #775735 (Martha) +You know as well as I do that Tom hates Mary. 你我都知道湯姆恨瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #3444432 (CK) & #6624636 (verdastelo9604) +You may have been the last person to see Tom. 你可能是最後一個見湯姆的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3724998 (CM) & #6070863 (verdastelo9604) +You must put an end to this foolish behavior. 你该结束这种愚蠢的行为了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16668 (Zifre) & #335719 (fucongcong) +You said you were in trouble. How can I help? 你说你有困难。我能帮忙吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1994413 (CK) & #6089785 (verdastelo9604) +You should do the honorable thing and resign. 你應該光榮地辭職。 CC-BY 2.0 (France) Attribution: tatoeba.org #16177 (Swift) & #775743 (Martha) +You should make better use of your free time. 你要更好地利用闲暇时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #69544 (CK) & #333838 (fucongcong) +You should make good use of this opportunity. 你要好好把握這個時機。 CC-BY 2.0 (France) Attribution: tatoeba.org #4101313 (e78xx_xxx) & #759608 (Martha) +You should put safety before everything else. 你應該把安全放在其他一切之上。 CC-BY 2.0 (France) Attribution: tatoeba.org #24783 (CK) & #6109283 (verdastelo9604) +You will soon get used to speaking in public. 你很快就會習慣在公開場合講話了。 CC-BY 2.0 (France) Attribution: tatoeba.org #15966 (Swift) & #775680 (Martha) +You'd better keep your money for a rainy day. 你最好未雨绸缪。 CC-BY 2.0 (France) Attribution: tatoeba.org #4811890 (CK) & #4815116 (McMeao) +You'd better take an umbrella with you today. 你今天最好隨身帶把傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #7805436 (CK) & #801569 (Martha) +Your voice reminds me of my late grandmother. 我的声音让我想起了我已故的祖母。 CC-BY 2.0 (France) Attribution: tatoeba.org #70499 (CM) & #439079 (fucongcong) +"I never thought Tom would win." "Me neither." “我没想到汤姆会赢。” “我也是。” CC-BY 2.0 (France) Attribution: tatoeba.org #4645009 (corbinjurgens) & #8698612 (crescat) +"Where were you?" "I was at a friend's house." “你在哪里?” “我在一个朋友家。” CC-BY 2.0 (France) Attribution: tatoeba.org #4144871 (Hybrid) & #4147281 (sissima) +A great number of citizens went into the army. 許多老百姓加入了軍隊。 CC-BY 2.0 (France) Attribution: tatoeba.org #274842 (CM) & #678011 (Martha) +A large pillar obstructs the view of the lake. 巨大的柱子遮住了视线,让人看不到湖。 CC-BY 2.0 (France) Attribution: tatoeba.org #275531 (CM) & #333067 (fucongcong) +A lot of houses were washed away by the flood. 许多房屋被洪水冲走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #41043 (CK) & #334208 (fucongcong) +A true gentleman would not betray his friends. 一个真正的绅士不会出卖他的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #322228 (CS) & #333581 (fucongcong) +According to the radio, it will snow tomorrow. 据广播里讲,明天会下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #29789 (CK) & #528056 (biglion) +Any emotion, if it is sincere, is involuntary. 任何情绪,只要它是真诚的,就说明它是发自内心的自然流露。 CC-BY 2.0 (France) Attribution: tatoeba.org #667888 (CK) & #2426075 (huangfen) +Are you saying Tom's hiding something from us? 你说Tom对我们隐藏了一些事情? CC-BY 2.0 (France) Attribution: tatoeba.org #4838381 (Hybrid) & #4844658 (pig8322) +As soon as she opened the door, a cat ran out. 她一開門,一隻貓就跑了出來。 CC-BY 2.0 (France) Attribution: tatoeba.org #388843 (CK) & #865476 (Martha) +Asia is roughly four times the size of Europe. 亚洲的大小约四倍于欧洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #71855 (CM) & #844579 (kooler) +By the way, my English is absolutely hopeless. 順道一提,我的英語是絕對沒有希望了。 CC-BY 2.0 (France) Attribution: tatoeba.org #327156 (CM) & #811814 (Martha) +Can you tell me where the nearest bus stop is? 你能把最近的公车站指给我看吗? CC-BY 2.0 (France) Attribution: tatoeba.org #27269 (CK) & #406697 (fucongcong) +Car exhaust causes serious pollution in towns. 汽车尾气在城镇里造成了严重的污染。 CC-BY 2.0 (France) Attribution: tatoeba.org #265533 (CS) & #5715189 (verdastelo9604) +Could you put this report into Italian for me? 你可以為我把這份報告翻譯成意大利文嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #57164 (CM) & #811828 (Martha) +Dear Santa, I want a girlfriend for Christmas. 圣诞老人,我想要一个女朋友当圣诞礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1344017 (Chrikaru) & #8759511 (crescat) +Dinosaurs became extinct a very long time ago. 恐龍在很久以前滅絶了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1073457 (CK) & #6585431 (verdastelo9604) +Doctors refused to perform a second operation. 医生们拒绝做第二次手术。 CC-BY 2.0 (France) Attribution: tatoeba.org #28090 (CK) & #1467060 (sadhen) +Does the letter need to be written in English? 這封信需要用英文寫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #528086 (fanty) & #811852 (Martha) +English is too difficult for me to understand. 英語對我來說太難理解了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26301 (CK) & #811902 (Martha) +Everybody in the building felt the earthquake. 在建筑物里的所有人都感觉到了地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #953258 (CK) & #8654630 (crescat) +Everybody showed sympathy toward the prisoner. 每个人都对囚犯表示同情。 CC-BY 2.0 (France) Attribution: tatoeba.org #40373 (CK) & #2058559 (sadhen) +Everybody wished he had been elected governor. 每個人都希望他當選州長。 CC-BY 2.0 (France) Attribution: tatoeba.org #22095 (CK) & #881076 (Martha) +Excuse me, I have to get off at the next stop. 对不起,我要在下一站下。 CC-BY 2.0 (France) Attribution: tatoeba.org #51487 (CK) & #462014 (fucongcong) +Going out in this rain is out of the question. 在雨中走出去是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60268 (CK) & #788744 (Martha) +Having a slight headache, I went to bed early. 因為我有點頭疼,所以我早早上床睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #267770 (CM) & #1227107 (tsayng) +He commanded me to leave the room immediately. 他命令我立刻离开这个房间。 CC-BY 2.0 (France) Attribution: tatoeba.org #297490 (CM) & #2042142 (Gustav249) +He couldn't wait to try out his new surfboard. 他迫不及待地想试一下他的新冲浪板。 CC-BY 2.0 (France) Attribution: tatoeba.org #1905665 (Dejo) & #1990184 (sunnywqing) +He hasn't yet turned in the report this month. 他這個月還沒有提交報告書。 CC-BY 2.0 (France) Attribution: tatoeba.org #296541 (CK) & #8387437 (wangchou) +He is not as intelligent as his older brother. 他不像他的兄长那样聪明。 CC-BY 2.0 (France) Attribution: tatoeba.org #468047 (CK) & #469239 (fucongcong) +He is the manager of the marketing department. 他是营销部的负责人。 CC-BY 2.0 (France) Attribution: tatoeba.org #293906 (CK) & #333101 (fucongcong) +He looks old, but he is still in his twenties. 他看上去老,但他还不到30岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #292585 (CK) & #819797 (fucongcong) +He picked up a mirror and examined his tongue. 他拿了面镜子细看自己的舌头。 CC-BY 2.0 (France) Attribution: tatoeba.org #295382 (CM) & #346121 (fucongcong) +He really loves beer and gets drunk every day. 他喜歡喝爱啤酒,而且每天都喝醉。 CC-BY 2.0 (France) Attribution: tatoeba.org #1173238 (eastasiastudent) & #1173237 (egg0073) +He regrets not having worked harder at school. 他后悔在校时没用功读书。 CC-BY 2.0 (France) Attribution: tatoeba.org #294797 (bluepie88) & #332453 (fucongcong) +He taught us that Columbus discovered America. 他教導我們說, 哥倫布發現了美洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #289993 (CM) & #786402 (Martha) +He was invited to be the chairman of the club. 他受邀做俱乐部的主席。 CC-BY 2.0 (France) Attribution: tatoeba.org #289768 (CK) & #332946 (fucongcong) +He was kind enough to take me to the hospital. 他好心地把我送到医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #289164 (Dejo) & #334052 (fucongcong) +He went to London, where he stayed for a week. 他去了伦敦,并在那儿待了一周。 CC-BY 2.0 (France) Attribution: tatoeba.org #293383 (CM) & #782115 (fucongcong) +His absence gave birth to all sorts of rumors. 他的缺席导致了各种谣言的产生。 CC-BY 2.0 (France) Attribution: tatoeba.org #285969 (CM) & #6101301 (verdastelo9604) +His response was contrary to our expectations. 他的回应出乎我们的意料。 CC-BY 2.0 (France) Attribution: tatoeba.org #287486 (Zifre) & #1423364 (sadhen) +Honesty is the primary reason for his success. 誠實是他成功的主要原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159357 (emmettricks) & #765532 (Martha) +How long did it take you to write this report? 你写这份报告花了多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #3738754 (CK) & #4970092 (wzhd) +Hurry up, and you will be in time for the bus. 快点,你就能准时搭上公交车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #19681 (CK) & #792824 (fucongcong) +I advise you never to live beyond your income. 我建议你永远不要入不敷出。 CC-BY 2.0 (France) Attribution: tatoeba.org #238531 (CM) & #334848 (fucongcong) +I always have to wear a tie because of my job. 因為我這份工作的緣故,我總是要打領帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #267443 (CK) & #1238379 (tsayng) +I always have to wear a tie because of my job. 因為這份工作的關係,我總是要打領帶。 CC-BY 2.0 (France) Attribution: tatoeba.org #267443 (CK) & #3148935 (cienias) +I always thought that Tom was a bit different. 我以前总认为汤姆是有一些与众不同的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2291850 (CK) & #2694359 (sadhen) +I am looking forward to hearing from you soon. 我期待很快就能收到你的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #18776 (CK) & #332980 (fucongcong) +I believe the actions that he took were right. 我相信我们采取的行动是对的。 CC-BY 2.0 (France) Attribution: tatoeba.org #395664 (CM) & #5949251 (verdastelo9604) +I bought the book for myself, not for my wife. 我給我自己買了書,不是給我妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1599659 (Zaghawa) & #6105202 (verdastelo9604) +I can speak Chinese, but I can't read Chinese. 我會說中文,但是我不會讀中文。 CC-BY 2.0 (France) Attribution: tatoeba.org #1476745 (weihaiping) & #1476139 (egg0073) +I can talk about anything with my best friend. 我能跟我最好的朋友說任何事。 CC-BY 2.0 (France) Attribution: tatoeba.org #269788 (CK) & #6059528 (verdastelo9604) +I can't guarantee that that's going to happen. 我不能确保这一切会发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #6858726 (CK) & #6858748 (SherryChen) +I can't let you give me your last ten dollars. 我不能讓你給我你最後十美圓。 CC-BY 2.0 (France) Attribution: tatoeba.org #1954593 (CK) & #6047492 (verdastelo9604) +I certainly wouldn't want to be seen with Tom. 我当然不想被人看见跟汤姆在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #2307976 (CK) & #5581754 (verdastelo9604) +I didn't expect to hear back from Tom so soon. 我沒想到這麼快就收到湯姆的回信。 CC-BY 2.0 (France) Attribution: tatoeba.org #6235752 (CK) & #6624708 (verdastelo9604) +I don't believe the child came to Tokyo alone. 我不相信孩子能独自到东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #59094 (CK) & #336938 (fucongcong) +I don't expect that they will support my view. 我不期望,他们能够支持我的观点。 CC-BY 2.0 (France) Attribution: tatoeba.org #307556 (CM) & #2110712 (Gustav249) +I don't know if today is Tuesday or Wednesday. 我不知道今天是星期二還是星期三。 CC-BY 2.0 (France) Attribution: tatoeba.org #5574922 (n1ls) & #4189395 (egg0073) +I don't know what I should be doing right now. 我不知道,我现在应该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #7784646 (sharris123) & #1591465 (leoyzy) +I don't mind being criticized when I am wrong. 要是我说错话被人议论,我是不管的。 CC-BY 2.0 (France) Attribution: tatoeba.org #255666 (qdii) & #6563557 (gumblex) +I don't think Tom understands what's going on. 我不認為湯姆知道正在發生甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2323202 (CK) & #6568336 (verdastelo9604) +I don't think we'd have any chance of winning. 我认为我们没有机会赢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663183 (CK) & #5694465 (verdastelo9604) +I don't want there to be any misunderstanding. 我不想有任何误会。 CC-BY 2.0 (France) Attribution: tatoeba.org #36652 (CK) & #336691 (fucongcong) +I feed my cat every morning and every evening. 每天早晚,我给我的猫喂食。 CC-BY 2.0 (France) Attribution: tatoeba.org #2241 (CK) & #389820 (fucongcong) +I go to the library two or three times a week. 我一週去圖書館兩、三次。 CC-BY 2.0 (France) Attribution: tatoeba.org #256049 (CK) & #5544844 (egg0073) +I had my composition corrected by the teacher. 我把我的作文拿給老師訂正。 CC-BY 2.0 (France) Attribution: tatoeba.org #250920 (CK) & #876175 (Martha) +I have neither seen nor heard of such a thing. 我没见过也没听过这样的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #49828 (CK) & #332897 (fucongcong) +I help my mother with the housework every day. 我每天都帮我妈做家务。 CC-BY 2.0 (France) Attribution: tatoeba.org #662581 (bluepie88) & #1235645 (sunnywqing) +I know that you are learning French at school. 我知道你在學校學法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #2451195 (CK) & #6103233 (verdastelo9604) +I liked Tom's first book more than the second. 相比第二本,我更喜欢汤姆的第一本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #5111870 (CarpeLanam) & #5637360 (verdastelo9604) +I met him by chance on the train this morning. 今天早上我在火车上偶遇他。 CC-BY 2.0 (France) Attribution: tatoeba.org #242253 (Swift) & #1420611 (sadhen) +I met him just as he was coming out of school. 正當他從學校回來的時候,我遇見了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #255017 (CK) & #809775 (Martha) +I missed the opening ceremony of the Olympics. 我错过了奥运会的开幕式。 CC-BY 2.0 (France) Attribution: tatoeba.org #7790183 (sharris123) & #1738287 (sadhen) +I remember my mother teaching me the alphabet. 我记得我母亲教我认字。 CC-BY 2.0 (France) Attribution: tatoeba.org #252365 (CM) & #813480 (fucongcong) +I think we should concentrate on other things. 我想我们应集中于另外的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #5018416 (jayrod84) & #8500204 (black333) +I vowed that I would never speak to her again. 我發誓再也不跟她說話了。 CC-BY 2.0 (France) Attribution: tatoeba.org #348574 (zhouj1955) & #348478 (Martha) +I want you to help us find out who killed Tom. 我想讓你幫我們查出來誰殺了湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2031553 (CK) & #6119435 (verdastelo9604) +I went to the hospital to have my eyes tested. 我到醫院去檢查了眼睛。 CC-BY 2.0 (France) Attribution: tatoeba.org #257234 (CK) & #1239329 (tsayng) +I will write letters to you as often as I can. 我会尽可能多给你写信的。 CC-BY 2.0 (France) Attribution: tatoeba.org #255064 (CK) & #8939100 (crescat) +I wish that we could spend more time together. 我希望我们有更多时间呆在一起。 CC-BY 2.0 (France) Attribution: tatoeba.org #909537 (CK) & #4468895 (MirendaBABY) +I would like to retract my previous statement. 我想撤回我之前的陈述。 CC-BY 2.0 (France) Attribution: tatoeba.org #1981 (CK) & #1778278 (sadhen) +I'd like to put some things in the hotel safe. 我想在酒店的保险柜里存点东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #67143 (CK) & #8792097 (crescat) +I'm considering studying in America next year. 我在考虑明年去美国学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #325108 (CK) & #2081701 (sadhen) +I'm looking forward to seeing you next Sunday. 我期待下周日能见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #264313 (CK) & #816443 (fucongcong) +I'm not one hundred percent convinced of that. 我不是百分之百确定。 CC-BY 2.0 (France) Attribution: tatoeba.org #1307980 (Eldad) & #5558519 (verdastelo9604) +I'm really looking forward to summer vacation. 我真的非常期待暑假。 CC-BY 2.0 (France) Attribution: tatoeba.org #4792239 (CK) & #4794541 (umidake) +I'm sending you a birthday present by airmail. 我寄給你一個航空郵件生日禮物。 CC-BY 2.0 (France) Attribution: tatoeba.org #582332 (darinmex) & #6105265 (verdastelo9604) +I'm stuck here in Boston because of the storm. 我因為風暴困在波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537878 (CK) & #6535846 (verdastelo9604) +If anything should happen, please let me know. 如果发生了什么,请让我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #30610 (CK) & #5883327 (verdastelo9604) +If it happened to Tom, it could happen to you. 如果那發生在Tom身上,也可能會發生在你身上。 CC-BY 2.0 (France) Attribution: tatoeba.org #3995544 (Hybrid) & #5496249 (egg0073) +If you don't want to do it, you don't have to. 如果你不想的话也没问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2031561 (CK) & #8777619 (crescat) +Imagination affects every aspect of our lives. 想像力影响着我们生活的各个方面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1601 (CK) & #334165 (fucongcong) +In Japan, the new school year begins in April. 日本的新學年在四月開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #1423299 (CK) & #1423383 (cienias) +In the United States, school buses are yellow. 在美国,校车是黄色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #682511 (Source_VOA) & #816555 (fucongcong) +It is difficult for me to answer the question. 这个问题对我来讲很难回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #46918 (CK) & #528069 (biglion) +It is important for old people to stay strong. 老人保持强健很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #326406 (CK) & #791346 (fucongcong) +It is like looking for a needle in a haystack. 这好比大海捞针。 CC-BY 2.0 (France) Attribution: tatoeba.org #42533 (CK) & #5091981 (mirrorvan) +It was not long before we met again by chance. 没多久,我们又碰巧遇到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #32455 (CM) & #336858 (fucongcong) +It's been ten years since I came to this town. 我來這個鎮有十年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #59948 (CK) & #6134975 (verdastelo9604) +It's next to impossible to finish it in a day. 在一天之内完成它几乎是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #41927 (CM) & #332542 (fucongcong) +It's time you went to bed. Turn off the radio. 你该上床了。把收音机关了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8865023 (CK) & #336718 (fucongcong) +J.F. Kennedy was buried in Arlington Cemetery. 约翰甘迺迪被安葬在阿靈頓公墓。 CC-BY 2.0 (France) Attribution: tatoeba.org #72213 (CK) & #801501 (Martha) +Jazz fusion is a combination of rock and jazz. 融合爵士是搖滾樂與爵士樂的融合。 CC-BY 2.0 (France) Attribution: tatoeba.org #681047 (Source_VOA) & #900017 (kanaorange) +Just pull the door shut. It'll lock by itself. 只要推门就好了。它自己会锁上的。 CC-BY 2.0 (France) Attribution: tatoeba.org #646044 (darinmex) & #812338 (fucongcong) +Life begins when we realize who we really are. 当我们明白真正的自己时,生活开始了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2056 (CK) & #503077 (fucongcong) +Many Asians have English as a common language. 許多亞洲人以英語作為共用的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #823813 (Swift) & #824416 (Martha) +Mt. Fuji as seen from Suruga Bay is beautiful. 從駿河灣看, 富士山很美麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #266968 (CM) & #780381 (Martha) +My brother loves taking pictures of mountains. 我弟弟很喜欢拍山的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #250712 (CK) & #334390 (fucongcong) +My friend asked me if I was feeling all right. 我朋友问我是不是觉得还好。 CC-BY 2.0 (France) Attribution: tatoeba.org #631120 (ulyssemc1) & #835587 (fucongcong) +My mother looked at me with tears in her eyes. 我妈妈眼含着泪看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #852892 (piksea) & #5739305 (verdastelo9604) +My mother made us cheese sandwiches for lunch. 媽媽為我們做了乳酪三明治當午餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #9250905 (CK) & #798186 (Martha) +My son is going to leave for France next week. 我儿子下周要去法国了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251390 (CK) & #787593 (fucongcong) +Neither of those two students passed the test. 兩個學生都沒通過考試。 CC-BY 2.0 (France) Attribution: tatoeba.org #48895 (enzubii) & #884632 (Tajfun) +No matter what I do, she says I can do better. 不管我做什么,她都说我能做得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422476 (CK) & #334917 (fucongcong) +No matter what I do, she says I can do better. 不论我做什么,她都说我能做得更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422476 (CK) & #5550276 (verdastelo9604) +Only then did he realize he had been deceived. 直到那时,他才意识到他已经上当受骗。 CC-BY 2.0 (France) Attribution: tatoeba.org #264548 (CM) & #332498 (fucongcong) +Put this jacket on, and you'll be much warmer. 穿上外套吧!你會暖一些。 CC-BY 2.0 (France) Attribution: tatoeba.org #61039 (CK) & #1261430 (tsayng) +Remember to mail this letter tomorrow morning. 明天早上記得去寄這封信。 CC-BY 2.0 (France) Attribution: tatoeba.org #323172 (CK) & #894334 (Martha) +Respect for law is fundamental to our society. 尊重法律是我們社會的基礎。 CC-BY 2.0 (France) Attribution: tatoeba.org #321020 (CM) & #775464 (Martha) +Russia is facing great financial difficulties. 俄罗斯面临着严重的财政困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #29368 (shanghainese) & #405750 (fucongcong) +School was closed for the day due to the snow. 学校因大雪停课一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #272573 (CK) & #333198 (fucongcong) +She has been absent from school for five days. 她已经五天不上学了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310194 (Eldad) & #1873014 (sadhen) +She is proud that her son has become a doctor. 她为自己的儿子成为医生而自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #315561 (CK) & #5978348 (verdastelo9604) +She loved me in the same way that I loved her. 她愛我就像我愛她一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #477588 (CM) & #803870 (Martha) +She made elaborate preparations for the party. 她精心籌備了這個派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #311932 (CK) & #834704 (Martha) +She spends a lot of time practicing the piano. 她花很多时间练钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #312035 (CK) & #336428 (fucongcong) +She will give her picture to whoever wants it. 她会把她的照片给想要的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #310037 (CK) & #334072 (fucongcong) +She wrote to her parents at least once a week. 他给父母写信至少一周一次。 CC-BY 2.0 (France) Attribution: tatoeba.org #317428 (CK) & #5640775 (verdastelo9604) +Slight inattention can cause a great disaster. 失之毫厘,谬之千里。 CC-BY 2.0 (France) Attribution: tatoeba.org #18856 (CK) & #332991 (fucongcong) +Some say that China was like a Russian colony. 有人說中國像是俄國的殖民地。 CC-BY 2.0 (France) Attribution: tatoeba.org #1502926 (nonong) & #6111889 (verdastelo9604) +Thanks to a cold summer, beer has sold poorly. 多虧了冷夏,啤酒賣的不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #326061 (CM) & #8387395 (wangchou) +That boy over there is probably Tom's brother. 那边的那个男孩可能是汤姆的兄弟。 CC-BY 2.0 (France) Attribution: tatoeba.org #8555646 (CK) & #8555674 (slo_oth) +That can't be Mary. She's in the hospital now. 那不可能是玛丽,她现在在医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #1358424 (CK) & #334613 (fucongcong) +That was the first time I'd seen Tom so angry. 那是我第一次见到汤姆如此生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #4809297 (CK) & #4815183 (McMeao) +The Second World War lasted from 1939 to 1945. 第二次世界大战从1939年持续到1945年。 CC-BY 2.0 (France) Attribution: tatoeba.org #7941106 (CK) & #8688144 (slo_oth) +The accident happened on Sunday at about 3:00. 此事故发生在周日3点左右。 CC-BY 2.0 (France) Attribution: tatoeba.org #263737 (CK) & #1235425 (sunnywqing) +The air is thin at the top of a high mountain. 山頂上空氣稀薄。 CC-BY 2.0 (France) Attribution: tatoeba.org #241217 (CK) & #6120787 (verdastelo9604) +The barometer is falling. It is going to rain. 气压计下降了 - 要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20356 (CK) & #787584 (fucongcong) +The black telephone costs more than the white. 黑的电话比白的花钱多。 CC-BY 2.0 (France) Attribution: tatoeba.org #462580 (lukaszpp) & #5900386 (verdastelo9604) +The dog followed its master, wagging its tail. 狗搖著尾巴跟著主人。 CC-BY 2.0 (France) Attribution: tatoeba.org #682879 (Chelsea) & #6070964 (verdastelo9604) +The family is eating breakfast on the balcony. 一家人在陽臺上吃早飯。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126351 (CK) & #9037057 (xjjAstrus) +The living room furniture was modern in style. 卧室的家具是现代风格。 CC-BY 2.0 (France) Attribution: tatoeba.org #2268377 (_undertoad) & #5581744 (verdastelo9604) +The meeting has been postponed until tomorrow. 会议已经被延迟到明天了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3455731 (CK) & #8795333 (slo_oth) +The more books you read, the more you'll know. 你看的书越多,你知道的越多。 CC-BY 2.0 (France) Attribution: tatoeba.org #69903 (CK) & #336486 (fucongcong) +The participants were for the most part women. 参与者大部分是女性。 CC-BY 2.0 (France) Attribution: tatoeba.org #245041 (CM) & #5555129 (verdastelo9604) +The party has been put off until next Tuesday. 聚会已经推迟到了下周二。 CC-BY 2.0 (France) Attribution: tatoeba.org #50040 (CK) & #2058564 (sadhen) +The potato was so hot that it burned my mouth. 土豆太热,以至于烫到了我的嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #792562 (ryanthewired) & #795737 (fucongcong) +The red flag indicated the presence of danger. 红旗代表存在危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #272427 (CM) & #810980 (fucongcong) +The revolution has brought about many changes. 这场革命已经带来了很多改变。 CC-BY 2.0 (France) Attribution: tatoeba.org #21659 (CK) & #478782 (biglion) +The rich are not always happier than the poor. 有钱人未必比穷人幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #18538 (Zifre) & #8591290 (easononizuka) +The runner jumped over the hole in the ground. 那个赛跑运动员跃过了地面上的洞。 CC-BY 2.0 (France) Attribution: tatoeba.org #681672 (Source_VOA) & #8739383 (crescat) +The store can supply us with anything we need. 这家商店可以提供所有我们需要的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #44859 (U2FS) & #8143519 (murr) +The storm had a serious effect on the economy. 这场暴风雪已经对经济造成了很严重的影响。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163173 (Source_VOA) & #2581508 (fenfang557) +The young man put out his hand and I shook it. 年轻人伸出他的手,接着我和他握了手。 CC-BY 2.0 (France) Attribution: tatoeba.org #49688 (CK) & #336880 (fucongcong) +Their traditional life style no longer exists. 他们传统的生活方式不再存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #305270 (CM) & #1426458 (sadhen) +There has been a good apple harvest this year. 今年蘋果的收成不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #243141 (CK) & #5544840 (egg0073) +There is a big supermarket in my neighborhood. 在我的邻近区域有一个大超市。 CC-BY 2.0 (France) Attribution: tatoeba.org #65569 (CK) & #2615139 (fenfang557) +There is no scientific basis for these claims. 這些主張沒有科學的根據。 CC-BY 2.0 (France) Attribution: tatoeba.org #55192 (CM) & #881727 (Martha) +There were so many things I wanted to ask Tom. 我有很多事想问汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819378 (CK) & #5931789 (verdastelo9604) +They arrived in Osaka at the beginning of May. 他们五月初到了大阪。 CC-BY 2.0 (France) Attribution: tatoeba.org #305437 (CK) & #512426 (fucongcong) +They both cried after hearing the tragic news. 聽到這件悲劇,他倆盡皆哭泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #682218 (Source_VOA) & #4104424 (andymakespasta) +They would capture as many people as possible. 他們會盡可能地抓更多的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #802598 (Source_VOA) & #873442 (Martha) +This car was so cheap that he could afford it. 這車便宜得讓他能買得起。 CC-BY 2.0 (France) Attribution: tatoeba.org #1460151 (MrShoval) & #6146504 (verdastelo9604) +This dictionary isn't the most recent version. 這本字典不是最新版的。 CC-BY 2.0 (France) Attribution: tatoeba.org #682314 (Source_VOA) & #6332408 (verdastelo9604) +This is the house I lived in when I was young. 这是我年轻时候住的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1133585 (CK) & #334790 (fucongcong) +This is the man who's suspected by the police. 这是被警察认为有嫌疑的男子。 CC-BY 2.0 (France) Attribution: tatoeba.org #56247 (CM) & #5558530 (verdastelo9604) +This is the nicest present I've ever received. 这是我得到过的最好的礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #1397668 (CK) & #1314480 (vicch) +This is the place where the battle took place. 这是战斗发生的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #62157 (CK) & #335509 (fucongcong) +This plan will be very expensive to carry out. 这计划执行起来花销会很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #59524 (CM) & #5581600 (verdastelo9604) +Thousands of people wanted to know the answer. 成千上万的人想要知道答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #24493 (CK) & #334787 (fucongcong) +To my surprise, he easily came up with a plan. 令我吃惊的是,他很容易就想出了一个方案。 CC-BY 2.0 (France) Attribution: tatoeba.org #18914 (Zifre) & #2027921 (sadhen) +Tom bent down and picked up a handful of sand. 汤姆弯下腰,捧起了一把沙子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2925546 (CK) & #8739649 (slo_oth) +Tom cleared his throat and continued to speak. 汤姆咳嗽了一下然后接着讲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2481219 (sharptoothed) & #8682680 (crescat) +Tom couldn't think of a good place to hide it. 湯姆想不到個好地方藏它。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026551 (CK) & #6135007 (verdastelo9604) +Tom didn't tell me he didn't know how to swim. 汤姆没有告诉我他不会游泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663168 (CK) & #4972607 (wzhd) +Tom doesn't have any friends who like camping. 汤姆没有喜欢露营的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #4632187 (mactrey) & #8935895 (crescat) +Tom doesn't know whether Mary is happy or not. 汤姆不知道玛丽是高兴呢,还是不高兴。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029087 (CK) & #2233810 (sadhen) +Tom had no idea that Mary was a serial killer. 汤姆不知道玛丽是个连环杀手。 CC-BY 2.0 (France) Attribution: tatoeba.org #1042558 (CK) & #8638443 (slo_oth) +Tom had no intention of giving Mary any money. 汤姆不想给玛丽一分钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093828 (CK) & #7768232 (jiangche) +Tom has admitted that he was there that night. 汤姆承认他那晚是在那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #7183932 (CK) & #6307288 (gumblex) +Tom has something very important to tell Mary. 湯姆有很重要的事要告訴瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #5825841 (CK) & #6198950 (verdastelo9604) +Tom is waiting for you in the conference room. 汤姆在会议室等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3734689 (CK) & #5670741 (verdastelo9604) +Tom knows I want to leave as soon as possible. 湯姆知道我想盡早離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640272 (CK) & #6080289 (verdastelo9604) +Tom made up his mind to become a newspaperman. 汤姆决定做报业人士。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024477 (CK) & #5617172 (verdastelo9604) +Tom probably knows how to get to Mary's house. 湯姆大概知道要怎麼去瑪莉家吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745786 (CK) & #2771055 (cienias) +Tom said he's glad Mary has finally graduated. 湯姆說他很高興瑪麗畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6262068 (CK) & #6624704 (verdastelo9604) +Tom should've already discussed that with you. 汤姆应该已经跟你讨论过那事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4620256 (CK) & #4620841 (Yashanti) +Tom studied hard so he could get into college. 汤姆努力学习以进入大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024128 (CK) & #5613694 (verdastelo9604) +Tom thinks I'm missing this great opportunity. 汤姆认为我失去了这绝佳机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #3730225 (CM) & #5900399 (verdastelo9604) +Tom told me that he didn't want to go with us. 湯姆告訴我他不想跟我們走。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663153 (CK) & #6216632 (verdastelo9604) +Tom told me that he'd like to become a doctor. 汤姆告诉我他想当医生。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761955 (CK) & #4764575 (ryanwoo) +Tom waited for Mary in front of the warehouse. 湯姆在倉庫前等瑪麗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2988562 (CK) & #6630019 (verdastelo9604) +Tom wondered why there was a dog in his house. 汤姆奇怪为什么他的房子里有只狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537839 (CK) & #5670776 (verdastelo9604) +Tom wrung out the towel and hung it up to dry. 汤姆拧干毛巾挂起来晾干。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757137 (CK) & #4757251 (ryanwoo) +UK is the abbreviation for the United Kingdom. UK是英国的缩写。 CC-BY 2.0 (France) Attribution: tatoeba.org #1067763 (CM) & #2615108 (fenfang557) +We haven't finished eating the watermelon yet. 我們還沒吃完這個西瓜。 CC-BY 2.0 (France) Attribution: tatoeba.org #1299123 (rahim) & #1275232 (egg0073) +We were very sorry that we couldn't help them. 我們很遺憾無法幫助他們。 CC-BY 2.0 (France) Attribution: tatoeba.org #7186117 (CK) & #4071836 (egg0073) +We will go on a picnic if it is fine tomorrow. 如果明天天气好,那么我们就去野餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #323066 (CK) & #2395010 (fenfang557) +What Tom said doesn't apply in this situation. 汤姆所言不符时局。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757136 (CK) & #4757252 (ryanwoo) +What makes you think I won't be able to do it? 你怎么认为我做不了? CC-BY 2.0 (France) Attribution: tatoeba.org #3738707 (CK) & #5611682 (verdastelo9604) +What subject do you think he is interested in? 你觉得他会对什么主题感兴趣? CC-BY 2.0 (France) Attribution: tatoeba.org #15852 (Zifre) & #334778 (fucongcong) +What's so fun about taking pictures of trains? 拍火车的照片什么的,有什么好玩的呀? CC-BY 2.0 (France) Attribution: tatoeba.org #4923387 (CK) & #8759502 (crescat) +When I was young, I used to climb trees a lot. 我年輕時經常爬樹。 CC-BY 2.0 (France) Attribution: tatoeba.org #5189093 (CK) & #6877971 (verdastelo9604) +When Tom found out about that, he was furious. 当汤姆发现这件事时,他很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #8566801 (CK) & #8567055 (slo_oth) +When she was thirteen, she ran away from home. 她十三岁的时候离家出走了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73328 (CK) & #4972530 (wzhd) +When she was three years old, her father died. 她父亲在她三岁时死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1038971 (CK) & #5900382 (verdastelo9604) +Where did you get the money to buy that dress? 你從哪兒弄來的錢去買那件衣服? CC-BY 2.0 (France) Attribution: tatoeba.org #821418 (darinmex) & #823034 (Martha) +Where is the United Airlines check-in counter? 聯合航空公司辦理登機手續的櫃檯在哪裡? CC-BY 2.0 (France) Attribution: tatoeba.org #30114 (CK) & #903043 (Martha) +Why didn't you tell Tom that you were married? 你为什么不告诉汤姆你已经结婚了? CC-BY 2.0 (France) Attribution: tatoeba.org #3204604 (CK) & #5630443 (verdastelo9604) +Will you pick me up at seven tomorrow morning? 你明早7点来接我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #323035 (CK) & #333384 (fucongcong) +Will you put down that paper and listen to me? 你能放下文件聽我說嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #269442 (CK) & #6105114 (verdastelo9604) +You need a large vocabulary to read that book. 你讀那本書需要大量詞彙。 CC-BY 2.0 (France) Attribution: tatoeba.org #43868 (CK) & #6131458 (verdastelo9604) +You need to have friends who can help you out. 你需要可以幫助你的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #16188 (Swift) & #775744 (Martha) +You should pay more attention to his warnings. 你應該多注意他的警告。 CC-BY 2.0 (France) Attribution: tatoeba.org #15818 (Swift) & #775628 (Martha) +You should read many books when you are young. 當你年輕的時候, 你應該多讀點兒書。 CC-BY 2.0 (France) Attribution: tatoeba.org #639885 (Zifre) & #760845 (Martha) +You should read many books when you are young. 应该趁年轻多读点书。 CC-BY 2.0 (France) Attribution: tatoeba.org #639885 (Zifre) & #812234 (fucongcong) +You should've introduced yourself to the girl. 你應該向那個女孩自我介紹的。 CC-BY 2.0 (France) Attribution: tatoeba.org #9145967 (CK) & #775812 (Martha) +You'd better wear a sweater under your jacket. 您最好在外衣里穿一件套衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #268350 (CK) & #795456 (fucongcong) +You're too old to be doing this kind of thing. 你老得做不了这种事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3408746 (CK) & #6089745 (verdastelo9604) +"A rolling stone gathers no moss" is a proverb. “滚石不生苔”是一句谚语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1503 (CK) & #334494 (fucongcong) +A cafeteria is a self-service style restaurant. 自助餐廳是一種自助式的餐廳。 CC-BY 2.0 (France) Attribution: tatoeba.org #63577 (CK) & #797058 (Martha) +A devastating earthquake hit the state capital. 一場毀滅性的地震襲擊了這個州的首府。 CC-BY 2.0 (France) Attribution: tatoeba.org #282356 (CK) & #796944 (Martha) +A fire broke out in my neighborhood last night. 昨晚我领居家着火了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244732 (CK) & #332903 (fucongcong) +A friend of mine came to see me during the day. 我的一個朋友在白天的時候來看我。 CC-BY 2.0 (France) Attribution: tatoeba.org #277580 (CK) & #830461 (Martha) +A good cook doesn't throw out yesterday's soup. 一個好的廚師不會丟掉昨天的湯。 CC-BY 2.0 (France) Attribution: tatoeba.org #325784 (CK) & #862656 (Martha) +A permanent job is better than a temporary one. 正式工比临时工要好。 CC-BY 2.0 (France) Attribution: tatoeba.org #8269241 (CK) & #8715879 (crescat) +A truck was standing in the middle of the road. 路中间有一辆卡车。 CC-BY 2.0 (France) Attribution: tatoeba.org #36949 (CM) & #487597 (fucongcong) +A tsunami is coming, so please be on the alert. 海啸来了,密切注意啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #792696 (CK) & #793985 (fucongcong) +After the revolution, France became a republic. 革命之後,法國成為了一個共和國。 CC-BY 2.0 (France) Attribution: tatoeba.org #21657 (Zifre) & #796978 (Martha) +All of my friends got asked to dance except me. 除了我,其他人都被邀请去跳舞了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3560957 (Hybrid) & #3780469 (e78xx_xxx) +All our teachers were young and loved teaching. 我們所有的老師都很年輕並且喜愛教學。 CC-BY 2.0 (France) Attribution: tatoeba.org #51704 (J_S) & #919851 (Martha) +All you have to do is to take care of yourself. 你要做的只是照顾好你自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #15920 (CK) & #1839197 (sadhen) +An angle of 90 degrees is called a right angle. 90度的角叫直角。 CC-BY 2.0 (France) Attribution: tatoeba.org #72301 (CM) & #6111959 (verdastelo9604) +Are you sure you don't want me to say anything? 你确定要我什么都不说? CC-BY 2.0 (France) Attribution: tatoeba.org #4017192 (CK) & #4789606 (400S) +As far as I'm concerned, things are going well. 据我所知,事情很顺利。 CC-BY 2.0 (France) Attribution: tatoeba.org #250066 (CK) & #1314422 (vicch) +At what age did you have your first girlfriend? 你几岁交了第一个女朋友? CC-BY 2.0 (France) Attribution: tatoeba.org #1042724 (GPHemsley) & #795764 (fucongcong) +Between you and me, I think our boss is stupid. 我觉得我们老板很蠢,这我就只跟你说。 CC-BY 2.0 (France) Attribution: tatoeba.org #62027 (CM) & #813560 (fucongcong) +Can you explain the exact meaning of this word? 你能否說出這個詞的精確意思? CC-BY 2.0 (France) Attribution: tatoeba.org #2169272 (FeuDRenais) & #2166017 (sadhen) +Children of six and above should attend school. 六岁及以上的小孩应该上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #72444 (Eldad) & #3289558 (sadhen) +Cities are exciting places, but also stressful. 城市是令人興奮的地方,但也會讓人產生壓力。 CC-BY 2.0 (France) Attribution: tatoeba.org #765145 (eastasiastudent) & #765143 (egg0073) +Customs include food, celebrations and dancing. 风俗习惯包括食物,庆祝和舞蹈。 CC-BY 2.0 (France) Attribution: tatoeba.org #680621 (Source_VOA) & #4625754 (Yashanti) +Did you enjoy yourself at the party last night? 你在昨晚的聚會上盡興了嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #244814 (CK) & #6325078 (verdastelo9604) +Did you go anywhere during the summer vacation? 这个暑假你有去哪儿玩吗? CC-BY 2.0 (France) Attribution: tatoeba.org #24307 (CK) & #8776019 (crescat) +Did you have to get up very early this morning? 你今天必須起得很早嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #62602 (CK) & #6093375 (verdastelo9604) +Do you ever dream about flying through the sky? 你曾經夢想在天空飛翔嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #16198 (CK) & #870070 (Martha) +Do you know if Tom has spoken to Mary recently? 你是否知道最近湯姆跟瑪麗有沒有說過話? CC-BY 2.0 (France) Attribution: tatoeba.org #2537825 (CK) & #6148380 (verdastelo9604) +Do you know whether or not it'll rain tomorrow? 您是否知道,明天会不会下雨? CC-BY 2.0 (France) Attribution: tatoeba.org #7800172 (CK) & #4263848 (notabene) +Do you think the weather will be fine tomorrow? 你觉得明天天气会变好吗? CC-BY 2.0 (France) Attribution: tatoeba.org #402529 (CK) & #609882 (sarah) +Does this letter have to be written in English? 這封信必須用英文寫嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #400431 (CK) & #811853 (Martha) +Don't ask her any questions about her marriage. 不要問她任何有關婚姻的問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #1063994 (CM) & #1238436 (tsayng) +Even if I knew the answer, I wouldn't tell you. 即使我知道答案,我也不会告诉你。 CC-BY 2.0 (France) Attribution: tatoeba.org #8569638 (maaster) & #8574696 (slo_oth) +Even if I were rich, I wouldn't give him money. 就算我富有,我也不会给他钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4759776 (CM) & #4764602 (ryanwoo) +Every time I read the Bible, I am deeply moved. 每次我读圣经都会被深深地感动。 CC-BY 2.0 (France) Attribution: tatoeba.org #271923 (Dejo) & #782156 (fucongcong) +Everyone knew that Tom could speak French well. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7510366 (CK) & #8777542 (crescat) +Friends are like flowers in the garden of life. 朋友就像生命之园里的花朵。 CC-BY 2.0 (France) Attribution: tatoeba.org #795786 (awynands) & #796654 (fucongcong) +Had I arrived earlier, I could have seen Kelly. 如果我早點到,就能遇到凱莉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30409 (CM) & #898948 (kanaorange) +Have you still not finished paying for my bike? 你还没有为我的自行车付完款吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1663406 (liwan1208) & #1659809 (vicch) +He amazed everyone by passing his driving test. 他通過駕駛考試的事讓每一個人都覺得驚訝。 CC-BY 2.0 (France) Attribution: tatoeba.org #26574 (CK) & #899515 (Martha) +He became a member of this club five years ago. 他在五年前成為了這個俱樂部的成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #288610 (CK) & #6091716 (verdastelo9604) +He brought me coffee, when I had asked for tea. 我要的是茶,而他却给了我一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #240987 (CK) & #335004 (fucongcong) +He couldn't stand the bitterness of the coffee. 他受不了咖啡的苦味。 CC-BY 2.0 (France) Attribution: tatoeba.org #2258295 (_undertoad) & #4760018 (ryanwoo) +He got into this school in September last year. 他去年九月进了这所学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #296921 (CK) & #504876 (fucongcong) +He is always a little irritable in the morning. 他早上总是有点脾气暴躁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1790821 (newkome) & #843504 (fucongcong) +He lied to me. That is why I am angry with him. 他对我说了谎,这就是为什么我生他的气了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297565 (trotter) & #335098 (fucongcong) +He proposed a reform in the educational system. 他提议对教育系统进行改革。 CC-BY 2.0 (France) Attribution: tatoeba.org #295342 (CM) & #8655644 (slo_oth) +He rescued the dog at the risk of his own life. 他冒着生命危险救了那条狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #304062 (CK) & #441493 (fucongcong) +He said that he gets up at 6 o'clock every day. 他说他每天早上六点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #303871 (CK) & #2195568 (sadhen) +He should have the right to decide for himself. 他应该有权利去自己做决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #1737436 (Spamster) & #3781010 (Debbie_Linder) +He spent his sixtieth birthday in the hospital. 他在医院里过了他的十六岁生日。 CC-BY 2.0 (France) Attribution: tatoeba.org #803282 (Source_VOA) & #6098440 (verdastelo9604) +He was unsure how he would get there, and when. 他不确定他怎么到哪里,以及什么时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #1070351 (witbrock) & #5617173 (verdastelo9604) +He went to the United States to study medicine. 他去美国学医了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1354943 (AMIKEMA) & #333341 (fucongcong) +How about eating out this evening for a change? 你说今晚改变一下,去外面吃晚饭怎么样? CC-BY 2.0 (France) Attribution: tatoeba.org #243369 (CK) & #466119 (fucongcong) +How do you get your children to eat vegetables? 你怎样让你的孩子们吃蔬菜? CC-BY 2.0 (France) Attribution: tatoeba.org #953327 (CK) & #5925226 (verdastelo9604) +How long can it be kept going with 100 dollars? 用100美元可以支持多久? CC-BY 2.0 (France) Attribution: tatoeba.org #7807367 (sharris123) & #462071 (fucongcong) +How many books do you think you've read so far? 到目前为止,你认为你阅读过多少书籍? CC-BY 2.0 (France) Attribution: tatoeba.org #1505971 (weihaiping) & #1505473 (fenfang557) +I am not used to drinking coffee without sugar. 我不习惯喝无糖咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257650 (adjusting) & #799299 (fucongcong) +I as well as you was late for school yesterday. 我跟你一样昨天上学迟到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #17598 (CK) & #5663607 (verdastelo9604) +I couldn't have done it without you. Thank you. 没有你我无法做到,谢谢。 CC-BY 2.0 (France) Attribution: tatoeba.org #1606 (CK) & #334160 (fucongcong) +I didn't tell anyone what time I'd be arriving. 我沒跟別人說過我什麼時候會到。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841834 (CK) & #2511559 (tsayng) +I don't know anything about their relationship. 我對他們的關係一無所知。 CC-BY 2.0 (France) Attribution: tatoeba.org #400207 (CK) & #875335 (Martha) +I don't see any reason why I have to apologize. 我没发现任何我该道歉的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #265399 (CK) & #333847 (fucongcong) +I don't think Tom is going to be too much help. 我认为汤姆帮不上大忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #3619471 (CK) & #5670746 (verdastelo9604) +I found a taxi, but there was no driver inside. 我找到了一輛出租車,但裏面卻沒有司機。 CC-BY 2.0 (France) Attribution: tatoeba.org #6008599 (szilviez) & #5972287 (xjjAstrus) +I got up early enough to catch the first train. 我起了个大早为了赶第一班火车。 CC-BY 2.0 (France) Attribution: tatoeba.org #256109 (CK) & #437259 (fucongcong) +I had no idea there'd be this many people here. 我没想到这里有这么多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640236 (CK) & #5581771 (verdastelo9604) +I have to go shopping. I'll be back in an hour. 我该去买东西了,我一小时后回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1650 (CK) & #501524 (fucongcong) +I haven't had time to look for what you wanted. 我没时间找你想要的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359846 (CK) & #5650523 (verdastelo9604) +I just wish we could leave this horrible place. 我只是希望我们能离开这个可怕的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #40902 (CK) & #336673 (fucongcong) +I know that I know it, but I can't remember it. 我知道我知道它,但我想不起來了。 CC-BY 2.0 (France) Attribution: tatoeba.org #809257 (CM) & #810063 (Martha) +I like children. That's why I became a teacher. 我喜欢孩子。这就是为什么我成为了教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #257963 (CK) & #784557 (fucongcong) +I like swimming, but I don't like to swim here. 我喜欢游泳,但我不想在这里游。 CC-BY 2.0 (France) Attribution: tatoeba.org #258906 (CK) & #4789637 (400S) +I live near the sea so I often go to the beach. 我住在海边所以经常去海滩。 CC-BY 2.0 (France) Attribution: tatoeba.org #3567588 (CK) & #3636657 (suitchic) +I ran as fast as possible to catch up with him. 我盡力追趕他。 CC-BY 2.0 (France) Attribution: tatoeba.org #247010 (CK) & #6146652 (verdastelo9604) +I recognized some of the tunes that Tom played. 我认出了些汤姆演奏的调子。 CC-BY 2.0 (France) Attribution: tatoeba.org #5411383 (CK) & #5701321 (verdastelo9604) +I stayed home all day instead of going to work. 我没有去工作,在家里待了一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #257903 (CK) & #8727948 (crescat) +I suspect they water down the beer in that pub. 我怀疑那家酒馆的啤酒兑水了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68645 (CM) & #7773128 (jiangche) +I took it for granted that you were on my side. 我理所當然認為你會站在我這邊。 CC-BY 2.0 (France) Attribution: tatoeba.org #15884 (Swift) & #775656 (Martha) +I would like to sit in the non-smoking section. 我想坐在无烟区。 CC-BY 2.0 (France) Attribution: tatoeba.org #18812 (CK) & #333040 (fucongcong) +I'm glad that I didn't buy something like this. 我很高兴没有买这样的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #485885 (minshirui) & #465842 (fucongcong) +I'm really looking forward to seeing Tom again. 我真想再見見湯姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #2575339 (CK) & #6114443 (verdastelo9604) +I'm sure Tom won't have any trouble finding us. 我确定汤姆找到我们没有任何问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663126 (CK) & #5630403 (verdastelo9604) +I'm under so much pressure, I just want to cry. 我壓力好大,我真想哭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230477 (alec) & #1223822 (tsayng) +I've never known anyone as hypocritical as you. 我从来没有见过谁像你这么虚伪的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4638708 (CK) & #4640129 (olive_wang) +If I had taken that plane, I would be dead now. 要是我坐了那架飞机的话,我现在早就死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67852 (CK) & #4760012 (ryanwoo) +If he knew her phone number, he could call her. 如果他知道她的电话,他会打给她。 CC-BY 2.0 (France) Attribution: tatoeba.org #30675 (CK) & #611543 (sarah) +If it rains tomorrow, I won't go to the picnic. 如果明天下雨的话,我就不去野餐了。 CC-BY 2.0 (France) Attribution: tatoeba.org #386764 (Mouseneb) & #345934 (fucongcong) +If she had married you, she would be happy now. 如果她和你结婚了,她现在会很幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #68307 (CK) & #335501 (fucongcong) +If you eat that much, you'll get a stomachache. 那么吃的话,肚子会吃坏的噢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4629312 (CK) & #5096703 (mirrorvan) +In a way you're right, but I still have doubts. 在某种程度上你是对的,但我还是有疑问。 CC-BY 2.0 (France) Attribution: tatoeba.org #9145847 (CK) & #332729 (fucongcong) +India gained independence from Britain in 1947. 印度於1947年脫離英國獲得獨立。 CC-BY 2.0 (France) Attribution: tatoeba.org #65728 (CK) & #798321 (Martha) +Is there anything you want that you don't have? 有什么你想要但是没有的东西吗? CC-BY 2.0 (France) Attribution: tatoeba.org #16867 (CK) & #476533 (fucongcong) +Is this ladder strong enough to bear my weight? 这个梯子是否足够坚固以承受我的重量? CC-BY 2.0 (France) Attribution: tatoeba.org #60707 (CM) & #335611 (fucongcong) +It cost him 50 dollars to rent a car in Hawaii. 他花了50美元在夏威夷租了一辆汽车。 CC-BY 2.0 (France) Attribution: tatoeba.org #292450 (CK) & #1426449 (sadhen) +It has always been a pleasure to work with you. 跟你共事总是很愉快。 CC-BY 2.0 (France) Attribution: tatoeba.org #64346 (CM) & #5780605 (verdastelo9604) +It is a pity that you cannot come to the party. 很遗憾您不能来派对。 CC-BY 2.0 (France) Attribution: tatoeba.org #71530 (CK) & #791636 (fucongcong) +It was a bag that I lost in the room yesterday. 它是我昨天遺失在房裡的包。 CC-BY 2.0 (France) Attribution: tatoeba.org #246783 (CK) & #6065385 (verdastelo9604) +It was very kind of you to lend me an umbrella. 你借给我伞真好。 CC-BY 2.0 (France) Attribution: tatoeba.org #245025 (CK) & #5911594 (verdastelo9604) +It's dangerous to fool around with electricity. 隨便亂弄電是危險的。 CC-BY 2.0 (France) Attribution: tatoeba.org #279148 (CK) & #798135 (Martha) +Like it or not, we have to attend that meeting. 不管喜不喜歡,我們都得參加那個會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898343 (CK) & #5344344 (egg0073) +Married people sometimes wish they were single. 已婚的人有時候希望他們是單身,。 CC-BY 2.0 (France) Attribution: tatoeba.org #238687 (CK) & #894369 (Martha) +May I be the first to offer my congratulations. 或许我是第一个给你祝贺的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3727372 (CM) & #5663468 (verdastelo9604) +Moderate exercise is necessary for good health. 適度運動對身體健康是必要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #542831 (CK) & #891044 (Martha) +More and more people are moving to urban areas. 越來越多的人遷往鄉村。 CC-BY 2.0 (France) Attribution: tatoeba.org #32789 (CM) & #6325051 (verdastelo9604) +My sister can play the piano better than I can. 我妹妹鋼琴可以彈得比我好。 CC-BY 2.0 (France) Attribution: tatoeba.org #322314 (CK) & #874160 (Martha) +News of the recent blast is all over the radio. 收音機廣播充斥著有關最近爆炸的新聞。 CC-BY 2.0 (France) Attribution: tatoeba.org #681561 (Source_VOA) & #793591 (Martha) +One million people lost their lives in the war. 100万人在战争中失去了生命。 CC-BY 2.0 (France) Attribution: tatoeba.org #1544 (CK) & #334445 (fucongcong) +Our country must develop its natural resources. 我們國家必須開發自然資源。 CC-BY 2.0 (France) Attribution: tatoeba.org #23554 (bmorsello) & #6135011 (verdastelo9604) +Please give me some advice on what I should do. 请给我提提建议,我该做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #7797081 (sharris123) & #4262238 (notabene) +Please turn off the light before you go to bed. 上床睡觉之前请关灯。 CC-BY 2.0 (France) Attribution: tatoeba.org #268915 (CK) & #1416273 (sadhen) +Politicians never tell us their inner thoughts. 政治家从来不告诉我们他们的别有用心。 CC-BY 2.0 (France) Attribution: tatoeba.org #271385 (CM) & #334051 (fucongcong) +Prices are double what they were ten years ago. 价钱是10年前的2倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #319918 (CK) & #343893 (fucongcong) +Prices are double what they were two years ago. 價格是兩年前的兩倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #319919 (Zifre) & #882539 (Martha) +Scientists haven't found a cure for cancer yet. 科学家们还没有找到癌症的治疗方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #682514 (Source_VOA) & #816564 (fucongcong) +She devoted her life to working among the poor. 她一生致力于为穷人工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #316714 (CM) & #5911748 (verdastelo9604) +She is always finding fault with her neighbors. 她总是找她邻居的茬。 CC-BY 2.0 (France) Attribution: tatoeba.org #317466 (CM) & #8517163 (gumblex) +She said that she gets up at six every morning. 她说她每天早上六点起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #317075 (CK) & #1695530 (sadhen) +She spent a good deal of money on her vacation. 她休假期间花了一大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #313173 (CK) & #333577 (fucongcong) +She succeeded in getting him to tell the truth. 她成功地从他口中得知了真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #388363 (CK) & #8765258 (crescat) +She will be the first Japanese woman astronaut. 她將會成為日本第一個女性太空人。 CC-BY 2.0 (France) Attribution: tatoeba.org #316086 (CK) & #5382952 (egg0073) +She's not a full-time employee of this company. 她不是這間公司正式的職員。 CC-BY 2.0 (France) Attribution: tatoeba.org #1859020 (CK) & #742942 (egg0073) +Sometimes things that happen do not make sense. 有时候,发生的事情并不是合情合理的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1589553 (mary_s) & #1589550 (sadhen) +The accident happened the day before yesterday. 事故发生在前天。 CC-BY 2.0 (France) Attribution: tatoeba.org #47124 (CK) & #336943 (fucongcong) +The area of the factory is 1,000 square meters. 工厂的面积是1000平方米。 CC-BY 2.0 (France) Attribution: tatoeba.org #240742 (CM) & #787057 (fucongcong) +The armed forces occupied the entire territory. 军队占领了整片领土。 CC-BY 2.0 (France) Attribution: tatoeba.org #237812 (CK) & #1397112 (mtdot) +The baby was sound asleep in her mother's arms. 孩子在母亲的怀中熟睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #272336 (CK) & #609965 (sarah) +The company's going to go bankrupt really soon. 公司很快就要倒闭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149848 (FeuDRenais) & #335883 (fucongcong) +The dress that Mary is wearing looks expensive. 玛丽穿的衣服看起来价格不菲。 CC-BY 2.0 (France) Attribution: tatoeba.org #8955755 (CK) & #8969798 (WilsonWong) +The explosion that followed killed many people. 很多人在随后的爆炸中死去。 CC-BY 2.0 (France) Attribution: tatoeba.org #274528 (CM) & #8800710 (crescat) +The girl was afraid to jump down from the roof. 小女孩害怕从屋顶上跳下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #46653 (CK) & #804846 (fucongcong) +The house I bought is pretty far from downtown. 我買的房子離市中心比較遠。 CC-BY 2.0 (France) Attribution: tatoeba.org #2165609 (faraway9911) & #785028 (Martha) +The leaves will turn red in two or three weeks. 再过两三周,树叶就会变红吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #73013 (CM) & #8759509 (crescat) +The man is loading the moving truck on his own. 這個男人獨自把東西搬上搬家卡車上。 CC-BY 2.0 (France) Attribution: tatoeba.org #276938 (CK) & #781165 (Martha) +The man reading a paper over there is my uncle. 在那儿看报纸的男人是我叔叔。 CC-BY 2.0 (France) Attribution: tatoeba.org #32070 (CK) & #336724 (fucongcong) +The older we become, the worse our memory gets. 我们越老,记忆力就越差。 CC-BY 2.0 (France) Attribution: tatoeba.org #282186 (CK) & #8589132 (easononizuka) +The policeman arrested him for drunken driving. 警察因酒後駕駛逮捕了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #48464 (CK) & #895592 (Martha) +The policeman captured the man who was running. 警察抓了正在跑的那個男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #238237 (CK) & #856392 (Martha) +The precise time of their arrival is not known. 他們到逹的確切時間還不知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #305023 (CM) & #6149019 (verdastelo9604) +The recent advances in medicine are remarkable. 医学的最新进展颇为显著。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396442 (CK) & #2030806 (sadhen) +The space race was an exciting time in history. 太空跑步是历史上激动人心的时刻。 CC-BY 2.0 (France) Attribution: tatoeba.org #601965 (darinmex) & #818822 (fucongcong) +The teacher assembled the students in the hall. 老師在禮堂把學生們集合起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #48683 (CK) & #897263 (Martha) +The traffic accident deprived him of his sight. 這場交通意外讓他失明了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290779 (CM) & #918568 (Martha) +There is no denying that she is very efficient. 无可否认她非常有能力。 CC-BY 2.0 (France) Attribution: tatoeba.org #308467 (CM) & #333786 (fucongcong) +There must be some misunderstanding between us. 我们之间肯定有误会。 CC-BY 2.0 (France) Attribution: tatoeba.org #249538 (CM) & #1328039 (vicch) +There was nothing that I could do at that time. 当时我什么都不能做。 CC-BY 2.0 (France) Attribution: tatoeba.org #8462548 (CK) & #8463675 (gumblex) +There's nothing better than taking a nice walk. 没有什么比散步更好的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #885653 (Trailsend) & #795765 (fucongcong) +They buried him in the graveyard by the church. 他們把他埋葬在教堂旁的墓園。 CC-BY 2.0 (France) Attribution: tatoeba.org #307408 (CS) & #918020 (Martha) +They're required to work eight hours every day. 他们每天必须工作8小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230683 (alec) & #334152 (fucongcong) +This carpet is superior to that one in quality. 这地毯在质量上比那个好得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #61254 (CK) & #5691281 (verdastelo9604) +Those records are not accessible to the public. 這些記錄不對公眾開放。 CC-BY 2.0 (France) Attribution: tatoeba.org #48765 (CM) & #779008 (Martha) +Thousands of foreigners visit Japan every year. 每年有成千上万的外国人访问日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #24494 (CK) & #332823 (fucongcong) +Tom added both his and Mary's name to the list. 汤姆将他自己和玛丽的名字添加到了名单上。 CC-BY 2.0 (France) Attribution: tatoeba.org #4145045 (CK) & #4147274 (sissima) +Tom and I aren't friends. We're just coworkers. 湯姆跟我不是朋友,我們只是同事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4955245 (CK) & #4962215 (umidake) +Tom asked for Mary's permission to leave early. 汤姆请玛丽允许他早走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029751 (CK) & #5091463 (mirrorvan) +Tom begged his father to buy him a new bicycle. 湯姆求他父親給他買新自行車。 CC-BY 2.0 (France) Attribution: tatoeba.org #2956118 (CK) & #6673097 (verdastelo9604) +Tom came over to my house for dinner yesterday. 汤姆昨天来我家吃晚饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753640 (CK) & #4757579 (ryanwoo) +Tom checked the TV schedule to see what was on. 汤姆检查电视时间表,看看在上映什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095298 (CK) & #5624951 (verdastelo9604) +Tom could've figured that out without any help. 汤姆能不依靠任何帮助解决那事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640209 (CK) & #5903482 (verdastelo9604) +Tom did better this time than he did last time. 汤姆这次做得比上次好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755840 (CK) & #4757242 (ryanwoo) +Tom didn't let his children go to Mary's party. 湯姆沒有讓他的孩子們去瑪莉的派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #4794432 (CK) & #4794624 (umidake) +Tom folded the paper before handing it to Mary. 在传给玛丽之前,汤姆把纸条折了起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094074 (CK) & #1787979 (sadhen) +Tom has no friends who are willing to help him. 汤姆没有愿意帮助他的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #6225520 (CK) & #8739629 (slo_oth) +Tom hasn't yet told us what he wants us to buy. 汤姆还没对我们说他希望我们买什么呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #5148879 (CK) & #7767646 (jiangche) +Tom is trying to figure out how to do that now. 汤姆现在正在想办法去做那件事 CC-BY 2.0 (France) Attribution: tatoeba.org #6658448 (CK) & #8743608 (cxpadonis) +Tom is used to getting up early in the morning. 汤姆习惯早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #4784162 (CK) & #5091257 (mirrorvan) +Tom isn't doing what he's supposed to be doing. 湯姆沒有做他該做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #6237143 (CK) & #6624653 (verdastelo9604) +Tom knows you better than he knows anyone else. 湯姆對你的瞭解比對其他人都清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #3023487 (CK) & #6101437 (verdastelo9604) +Tom might be here by 2:30, but then, maybe not. tom 两点半可能会到,不过,也可能不会 CC-BY 2.0 (France) Attribution: tatoeba.org #3736726 (CK) & #5975071 (zhangxr91) +Tom probably wouldn't do something that stupid. 湯姆可能不會做蠢事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5936501 (CK) & #6105232 (verdastelo9604) +Tom said he wasn't sure what Mary wanted to do. 汤姆说他不确定玛丽想做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016257 (CK) & #5925240 (verdastelo9604) +Tom said that he's considered quitting his job. 汤姆说他考虑辞职。 CC-BY 2.0 (France) Attribution: tatoeba.org #7509703 (CK) & #8753746 (slo_oth) +Tom sketched a picture of an elephant for Mary. 汤姆给玛丽画了大象的素描。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103056 (CK) & #5691237 (verdastelo9604) +Tom tried to convince Mary to knit him a scarf. 湯姆想說服瑪麗給他織一條圍巾。 CC-BY 2.0 (France) Attribution: tatoeba.org #3157436 (CK) & #8679923 (shou) +Tom turned right when he should've turned left. 汤姆本该往左转却往右转了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761951 (CK) & #4764582 (ryanwoo) +Tom wanted to follow in his father's footsteps. 汤姆想追随他父亲的脚步。 CC-BY 2.0 (France) Attribution: tatoeba.org #6527080 (CK) & #8795228 (slo_oth) +Tom was the one that told us about the problem. 湯姆是告訴我們問題的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166084 (CK) & #6071010 (verdastelo9604) +Tom whispered something to Mary and she smiled. 汤姆小声对玛丽说了什么,玛丽笑了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757565 (CK) & #4757618 (ryanwoo) +Tom worked very hard and earned a lot of money. 汤姆努力工作挣了好多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757143 (CK) & #4757230 (ryanwoo) +Ukrainian girls are the prettiest in the world. 乌克兰姑娘是全世界最漂亮的姑娘。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770607 (garborg) & #4267342 (notabene) +Under no circumstances must you leave the room. 在任何情況下你都不能離開這個房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #66648 (CM) & #917882 (Martha) +We are having a serious talk about your future. 我们在严肃地谈论你的未来。 CC-BY 2.0 (France) Attribution: tatoeba.org #529404 (CM) & #1397126 (mtdot) +We have two dogs, three cats, and six chickens. 我们养了两只狗、三只猫和六只鸡。 CC-BY 2.0 (France) Attribution: tatoeba.org #247823 (CK) & #8591225 (easononizuka) +We need to talk about that as soon as possible. 我們需要盡早談論那件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #3182125 (CK) & #6148401 (verdastelo9604) +We often watch TV while we're eating breakfast. 我们常在吃早饭时看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #3736767 (CK) & #5663550 (verdastelo9604) +We promised to stand by him in case of trouble. 我們承諾萬一他有麻煩的時候支持他。 CC-BY 2.0 (France) Attribution: tatoeba.org #243458 (CM) & #781133 (Martha) +We were just talking about you when you called. 當你打電話來時, 我們正在談論你。 CC-BY 2.0 (France) Attribution: tatoeba.org #17778 (kebukebu) & #760727 (Martha) +We'll have lived here for two years next April. 到明年四月我们住在这儿就满两年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #264205 (CK) & #333953 (fucongcong) +What souvenir do you think she would like most? 你觉得她最想要什么纪念品? CC-BY 2.0 (France) Attribution: tatoeba.org #317537 (CM) & #332733 (fucongcong) +What time was it when you entered the building? 你进这幢楼的时候是几点? CC-BY 2.0 (France) Attribution: tatoeba.org #561128 (kebukebu) & #8517159 (gumblex) +What would you do if you had a million dollars? 你有100万美元的话,你会做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #30630 (CK) & #333562 (fucongcong) +What's your favorite game to play with friends? 你最喜歡和朋友玩什麼遊戲? CC-BY 2.0 (France) Attribution: tatoeba.org #681053 (Source_VOA) & #900030 (kanaorange) +When you pose a question, you expect an answer. 當你提出一個問題,你期望得到答案。 CC-BY 2.0 (France) Attribution: tatoeba.org #809215 (CM) & #810070 (Martha) +Whenever I hear that song, I remember my youth. 每次听到这首歌,都会让我回忆起自己年轻的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #388360 (CK) & #8742128 (crescat) +Would you like to go to the zoo this afternoon? 今天下午你想去動物園嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #69413 (CK) & #768261 (Martha) +You don't need to be afraid of making mistakes. 你们不需要害怕犯错。 CC-BY 2.0 (France) Attribution: tatoeba.org #1397771 (CK) & #8878022 (crescat) +You had better take an umbrella with you today. 你今天最好隨身帶把傘。 CC-BY 2.0 (France) Attribution: tatoeba.org #242856 (meriaasha4) & #801569 (Martha) +You like to talk about architecture, don't you? 你喜欢讨论建筑,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5195563 (Objectivesea) & #2085158 (sadhen) +You ought to ask for your teacher's permission. 你應該請求你的老師允許。 CC-BY 2.0 (France) Attribution: tatoeba.org #15948 (Swift) & #775674 (Martha) +You should keep your valuables in a safe place. 你该把你的值钱物品保存在一个安全的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #20153 (CK) & #476629 (fucongcong) +You should set a good example to your children. 你应该给你的孩子们树立好的榜样。 CC-BY 2.0 (France) Attribution: tatoeba.org #245621 (CK) & #1314179 (vicch) +You should've rejected such an unfair proposal. 你本该拒绝一个那么不公平的提议。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396371 (CK) & #503226 (fucongcong) +You'll get used to this in three or four weeks. 你在三或四周内会习惯这个。 CC-BY 2.0 (France) Attribution: tatoeba.org #5189076 (CK) & #5983614 (verdastelo9604) +You'll have to play it by ear at the interview. 在面試的時候你必須見機行事。 CC-BY 2.0 (France) Attribution: tatoeba.org #323515 (CM) & #834603 (Martha) +Young children are often fascinated by science. 小孩常常对科学很有热情。 CC-BY 2.0 (France) Attribution: tatoeba.org #681989 (Source_VOA) & #993751 (leoyzy) +A bicycle will rust if you leave it in the rain. 如果你把自行車留在雨中,它會生鏽的。 CC-BY 2.0 (France) Attribution: tatoeba.org #26727 (CK) & #830394 (Martha) +A cooking course should be mandatory in schools. 烹饪课程应该作为学校的必修课。 CC-BY 2.0 (France) Attribution: tatoeba.org #325772 (CK) & #863286 (kooler) +About how long will it take to get there by bus? 搭公車到那裡大約要花多久的時間? CC-BY 2.0 (France) Attribution: tatoeba.org #519039 (CK) & #872151 (Martha) +After the accident, Tom decided to stop skating. 事故过后,汤姆觉得停止滑冰了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4764592 (Stalwartlover) & #4764651 (ryanwoo) +An old man was resting in the shade of the tree. 一個老人在樹蔭下休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #413018 (CK) & #869943 (Martha) +Apart from some fruit, he hasn't eaten anything. 除了水果,他什么都没吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #1424743 (grahambond) & #1424412 (sadhen) +Are there any English magazines in this library? 這間圖書館有任何英語雜誌嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #58305 (CK) & #811586 (Martha) +Are you closer to your mother or to your father? 你和爸爸更亲还是妈妈更亲? CC-BY 2.0 (France) Attribution: tatoeba.org #953100 (CK) & #8727862 (crescat) +Are you planning on eating that all by yourself? 你打算自己一人把它全部吃了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6015810 (karel36) & #5096428 (mirrorvan) +As long as you are here, we might as well begin. 既然你在這裡, 那我們就開始吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #17705 (Zifre) & #772370 (Martha) +Between you and me, what is your opinion of her? 你就只告诉我一个人,你对她的意见如何? CC-BY 2.0 (France) Attribution: tatoeba.org #62016 (Zifre) & #813550 (fucongcong) +Breakfast is the most important meal of the day. 早饭是一天中最重要的一顿饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #1056703 (cris) & #7781701 (jiangche) +By the way, did you hear that Mary quit her job? 话说,你听说玛丽辞职了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #38042 (CK) & #8709237 (crescat) +Can you tell me how to get to the train station? 你可以告訴我如何到火車站嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2656988 (Joseph) & #4805729 (umidake) +Can you tell me how to get to the train station? 你可以告訴我要怎麼去火車站嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #2656988 (Joseph) & #4805731 (umidake) +Could you please speak a little bit more slowly? 能否請你說慢一點? CC-BY 2.0 (France) Attribution: tatoeba.org #31566 (CK) & #793964 (Martha) +Could you please tell me again why you are late? 你能再向我解释一遍你为什么迟到了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #953171 (CK) & #1397061 (mtdot) +Did you have any difficulty in finding my house? 你找我的房子有困難嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #250567 (CK) & #6064592 (verdastelo9604) +Do you know if my father is still in the office? 你知道我父親是否還在辦公室嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #816223 (papabear) & #816692 (Martha) +Do you play any instrument other than the piano? 除了钢琴以外,还会玩什么乐器吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4486536 (CK) & #5096745 (mirrorvan) +Do you think you could make a little less noise? 你觉得你能少发点噪音吗? CC-BY 2.0 (France) Attribution: tatoeba.org #31258 (CK) & #845160 (fucongcong) +English is a language spoken all over the world. 英語是一種全世界通用的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #26255 (brauliobezerra) & #811868 (Martha) +Even with all his wealth and fame, he's unhappy. 尽管有金钱和名誉,他还是不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #413025 (CK) & #5762994 (verdastelo9604) +Every time I went to his place, he was studying. 每次我去他住處,他都在讀書。 CC-BY 2.0 (France) Attribution: tatoeba.org #814852 (CK) & #816809 (Martha) +Everybody knew that Tom could speak French well. 每个人都知道汤姆的法语很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663088 (CK) & #8777542 (crescat) +Everyone but Tom knew he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7509612 (CK) & #9012194 (jacintoo) +Everyone knows that Bell invented the telephone. 任何人都知道贝尔发明了电话。 CC-BY 2.0 (France) Attribution: tatoeba.org #276414 (CK) & #8631842 (ZeroAurora) +Give a thief enough rope and he'll hang himself. 多行不义必自毙。 CC-BY 2.0 (France) Attribution: tatoeba.org #267380 (CM) & #8763190 (slo_oth) +Hard work and dedication will bring you success. 努力工作和敬业精神使你成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #27585 (CK) & #5611433 (verdastelo9604) +He came to my house on the pretext of seeing me. 他打着见我的幌子来了我家。 CC-BY 2.0 (France) Attribution: tatoeba.org #297581 (CM) & #1394977 (mtdot) +He hasn't come yet. He must have missed the bus. 他还没来。他肯定错过公交车了。 CC-BY 2.0 (France) Attribution: tatoeba.org #292884 (CK) & #332553 (fucongcong) +He is on goods terms with all of his classmates. 他和他所有的同学相处融洽。 CC-BY 2.0 (France) Attribution: tatoeba.org #995285 (NickC) & #334043 (fucongcong) +He is very influential in the world of medicine. 他在医学界有很大的影响力。 CC-BY 2.0 (France) Attribution: tatoeba.org #1229515 (penguooo) & #408847 (fucongcong) +He makes it a rule to take a walk every morning. 他给自己定下每天早上散步的规矩。 CC-BY 2.0 (France) Attribution: tatoeba.org #303879 (CK) & #1394902 (mtdot) +He said he was tired, so he would go home early. 他说他累了,所以他想早点回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #317795 (CK) & #336939 (fucongcong) +He stressed the convenient aspects of city life. 他强调都市生活的便利方面。 CC-BY 2.0 (France) Attribution: tatoeba.org #301837 (CM) & #336255 (fucongcong) +He was the strongest candidate for the position. 他是那个职位最有希望的候选人。 CC-BY 2.0 (France) Attribution: tatoeba.org #291051 (CK) & #2411006 (fenfang557) +He wishes he had gone to the theater last night. 昨晚他希望他去了剧场。 CC-BY 2.0 (France) Attribution: tatoeba.org #296935 (CK) & #343355 (fucongcong) +His mother sat up all night waiting for her son. 他的妈妈坐了一整夜,等她的儿子。 CC-BY 2.0 (France) Attribution: tatoeba.org #320914 (CM) & #602937 (CLARET) +How long did it take you to translate this book? 你用了多少时间来翻译这本书? CC-BY 2.0 (France) Attribution: tatoeba.org #2826505 (CK) & #786042 (fucongcong) +How long do you plan on staying in this country? 你打算在这个国家待多久? CC-BY 2.0 (France) Attribution: tatoeba.org #1211535 (alec) & #333990 (fucongcong) +How long would it take to swim across the river? 游过这条河要多久? CC-BY 2.0 (France) Attribution: tatoeba.org #45745 (CK) & #5663604 (verdastelo9604) +I can't go with you today because I'm very busy. 今天我太忙了,没法和你一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2805059 (CK) & #8851389 (crescat) +I could swear there's something inside this box. 我能发誓这箱子里有东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #3729440 (CM) & #5911622 (verdastelo9604) +I did that, even though I didn't really need to. 尽管我并不是真的需要这样做,我还是做了 CC-BY 2.0 (France) Attribution: tatoeba.org #6759924 (CK) & #8746395 (cxpadonis) +I didn't expect to see you at a place like this. 我都没想过会在这里碰见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #3550166 (CK) & #3662924 (yss123231) +I didn't pay attention to what they were saying. 他们说了什么,我并不注意。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770613 (garborg) & #4267320 (notabene) +I don't believe you. You're always telling lies. 我不相信你。你总是说谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #33502 (CK) & #1416089 (sadhen) +I don't even know if Tom went to college or not. 我甚至不知道汤姆有没有上过大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887216 (CK) & #5780624 (verdastelo9604) +I don't mind if you go to bed before I get home. 我不介意你在我回到家之前先去睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #272662 (CK) & #8777610 (crescat) +I don't think he'll be able to do it by himself. 我不觉得他自己一个人会做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #298890 (CK) & #8591294 (easononizuka) +I don't think it's going to be easy to find Tom. 我认为,要找到汤姆可不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #7232662 (CK) & #7771675 (jiangche) +I find it hard to get up early on cold mornings. 我覺得在寒冷的早晨很難早起。 CC-BY 2.0 (France) Attribution: tatoeba.org #21166 (CK) & #793202 (Martha) +I found it best to say nothing about the matter. 我觉得什么都不说是最好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #50457 (CK) & #8800801 (crescat) +I have a friend whose father is a famous writer. 我有個朋友的父親是知名的作家。 CC-BY 2.0 (France) Attribution: tatoeba.org #7766817 (sharris123) & #1255495 (cienias) +I hope everything will turn out well in the end. 我希望最后一切都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242213 (CK) & #333980 (fucongcong) +I know an English teacher who comes from Canada. 我认识一个加拿大来的英语教师。 CC-BY 2.0 (France) Attribution: tatoeba.org #253333 (CK) & #5613680 (verdastelo9604) +I often slept on that bench when I was homeless. 当我无家可归的时候,我常在那张长椅上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #7105624 (shekitten) & #7771956 (jiangche) +I often use SSH to access my computers remotely. 我经常使用SSH来远程连接到我的电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #367132 (sysko) & #368550 (fucongcong) +I passed the city hall on my way to the station. 我去車站的路上路過了市政廳。 CC-BY 2.0 (France) Attribution: tatoeba.org #26022 (CK) & #889410 (Martha) +I think it's unlikely that Tom will get elected. 我觉得汤姆不太可能会当选。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027510 (CK) & #8792039 (slo_oth) +I think that it's unlikely Tom will get elected. 我觉得汤姆不太可能会当选。 CC-BY 2.0 (France) Attribution: tatoeba.org #8180387 (CK) & #8792039 (slo_oth) +I want to get a haircut before I go on the trip. 我想在出發旅行前剪個頭髮。 CC-BY 2.0 (France) Attribution: tatoeba.org #325550 (CK) & #2638673 (cienias) +I wonder what the weather will be like tomorrow. 不知道明天天气会怎么样呢? CC-BY 2.0 (France) Attribution: tatoeba.org #323448 (CK) & #8591241 (easononizuka) +I wonder where Tom is planning to go to college. 我想知道汤姆计划去哪里上大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #8559966 (CK) & #8560802 (slo_oth) +I wonder why I feel so lonely when it gets cold. 我很疑惑为什么天气变冷的时候我会觉得很孤单。 CC-BY 2.0 (France) Attribution: tatoeba.org #2193096 (CM) & #2394562 (fenfang557) +I'd like to leave this town and never come back. 我希望離開這個村子並且再也不要回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #5933564 (CK) & #763867 (Martha) +I'm afraid that I differ with you on this point. 恐怕就这点上,我和你持不同意见。 CC-BY 2.0 (France) Attribution: tatoeba.org #7217460 (CK) & #334267 (fucongcong) +I'm really sorry about what happened last night. 我对昨天晚上发生的事情感到非常的抱歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3044005 (CK) & #3044018 (sadhen) +I'm sorry I don't agree with you on that matter. 很抱歉那个问题我不赞成你。 CC-BY 2.0 (France) Attribution: tatoeba.org #245214 (CM) & #1438513 (asosan) +I'm very ashamed of myself about what I've done. 我對自己的作為很內疚。 CC-BY 2.0 (France) Attribution: tatoeba.org #258247 (CM) & #8679909 (shou) +I've been looking for a new job for a long time. 我找工作已经很久了。 CC-BY 2.0 (France) Attribution: tatoeba.org #923708 (CK) & #7768188 (jiangche) +I've been looking for a new job for a long time. 我已经找了很久的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #923708 (CK) & #7768189 (jiangche) +If I had one million yen now, I would buy a car. 如果我现在有100万日元,我会买辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #30847 (CK) & #332727 (fucongcong) +If her temperature goes up, send for the doctor. 如果她的體溫上升, 派人去請醫生來。 CC-BY 2.0 (France) Attribution: tatoeba.org #30636 (mcq) & #769676 (Martha) +If it's raining tomorrow, we'll go there by car. 如果明天下雨,我们就坐车去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728287 (CK) & #4620827 (Yashanti) +If you eat that much, you'll have a stomachache. 那么吃的话,肚子会吃坏的噢。 CC-BY 2.0 (France) Attribution: tatoeba.org #4629245 (CK) & #5096703 (mirrorvan) +If you had a million dollars, what would you do? 你有100万美元的话,你会做什么? CC-BY 2.0 (France) Attribution: tatoeba.org #2030169 (CK) & #333562 (fucongcong) +It goes without saying that health is important. 不用说,健康是重要的。 CC-BY 2.0 (France) Attribution: tatoeba.org #238929 (CM) & #1423390 (sadhen) +It is an advantage to be able to use a computer. 會用電腦是一個好處。 CC-BY 2.0 (France) Attribution: tatoeba.org #54585 (CM) & #6401602 (RickShaw) +It is necessary for you to go there immediately. 你必需马上去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #70040 (CK) & #336678 (fucongcong) +It is not good for a scientist to get emotional. 對一個科學家來說,多愁善感是不好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #23987 (CK) & #919698 (Martha) +It is not good for a scientist to get emotional. 對一個科學家來說,情緒化是不好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #23987 (CK) & #919699 (Martha) +It is said that treasure is buried in this area. 据说这个区域埋着财宝。 CC-BY 2.0 (France) Attribution: tatoeba.org #59605 (CM) & #336188 (fucongcong) +It may sound strange, but what she said is true. 聽起來或許有點怪,但她說的是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #20620 (CK) & #1296651 (tsayng) +It would be helpful if you could do that for me. 您那样做的话,可就帮到我了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4740204 (CK) & #5096803 (mirrorvan) +It would be ridiculous to spend all their money. 花光他們所有的錢會很荒謬。 CC-BY 2.0 (France) Attribution: tatoeba.org #264578 (CM) & #779066 (Martha) +It's OK to eat the rest of the cake if you want. 你愿意的话,可以把剩下的蛋糕也吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #954089 (CK) & #7771892 (jiangche) +Japan imports various raw materials from abroad. 日本從國外進口各種原料。 CC-BY 2.0 (France) Attribution: tatoeba.org #281511 (CK) & #797051 (Martha) +Mass production reduced the price of many goods. 大量生產降低許多商品的價格。 CC-BY 2.0 (France) Attribution: tatoeba.org #276002 (CM) & #781080 (Martha) +Mastering a foreign language calls for patience. 精通一種外語需要耐心。 CC-BY 2.0 (France) Attribution: tatoeba.org #21915 (CK) & #798045 (Martha) +Monopoly is a popular game for families to play. 大富翁是一個家庭玩的熱門遊戲。 CC-BY 2.0 (France) Attribution: tatoeba.org #681052 (Source_VOA) & #900026 (kanaorange) +My daughter graduated from the university today. 我女兒今天大學畢業。 CC-BY 2.0 (France) Attribution: tatoeba.org #682270 (Source_VOA) & #778529 (Martha) +My father insisted on our waiting for the train. 我的父親堅持要我們等火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #319096 (CK) & #793972 (Martha) +My teeth aren't as white as I'd like them to be. 我的牙齿没有我希望的那样白。 CC-BY 2.0 (France) Attribution: tatoeba.org #4663118 (CK) & #5685903 (verdastelo9604) +Paris is one of the largest cities in the world. 巴黎是世界上最大的城市之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #35025 (Zifre) & #471400 (fucongcong) +Patience is sometimes the most effective weapon. 耐心有时候是最有效的武器。 CC-BY 2.0 (France) Attribution: tatoeba.org #281976 (CK) & #335870 (fucongcong) +Perhaps Tom is too old to do this kind of thing. 也許Tom年紀太大,不適合做這件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1160879 (CK) & #5363946 (egg0073) +Seen from the moon, the earth looks like a ball. 从月球上看的话,地球看起来像个皮球。 CC-BY 2.0 (France) Attribution: tatoeba.org #238777 (CM) & #8673676 (crescat) +She furnished the room with beautiful furniture. 她用漂亮的家具佈置了房間。 CC-BY 2.0 (France) Attribution: tatoeba.org #316832 (CK) & #818967 (Martha) +She hurt her foot when she fell off her bicycle. 她在从自行车上摔下来时伤到了脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #314575 (CK) & #8888276 (crescat) +She suggested to me that I call off the meeting. 她建议我取消会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #314198 (CK) & #3780479 (e78xx_xxx) +She was ashamed of herself for her carelessness. 她为自己的粗心感到羞耻。 CC-BY 2.0 (France) Attribution: tatoeba.org #314720 (CK) & #805095 (fucongcong) +She will be glad if you go to see her in person. 如果你單獨去看她, 她會很高興的。 CC-BY 2.0 (France) Attribution: tatoeba.org #71397 (CM) & #781677 (Martha) +Sir, can we quickly inspect your luggage please? 先生,我們可以檢查一下您的行李嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #1230605 (alec) & #1205926 (cienias) +Sir, that CD is available only by special order. 先生,那盘CD需要预定才有。 CC-BY 2.0 (France) Attribution: tatoeba.org #640835 (darinmex) & #812271 (fucongcong) +Some people like summer, and others like winter. 有人喜歡夏天, 有人喜歡冬天。 CC-BY 2.0 (France) Attribution: tatoeba.org #24364 (CK) & #6128523 (verdastelo9604) +Tell me about some of the places you've visited. 给我说说你去过的一些地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818789 (CK) & #5581808 (verdastelo9604) +That Japanese word has no equivalent in English. 那个日文词汇没有对应的英文。 CC-BY 2.0 (France) Attribution: tatoeba.org #44570 (CN) & #3380491 (vicch) +The bill passed by a small majority of 10 votes. 法案以10票微弱多数通过。 CC-BY 2.0 (France) Attribution: tatoeba.org #20026 (CK) & #6101390 (verdastelo9604) +The bus will take you to the center of the city. 巴士会把你们带到市中心。 CC-BY 2.0 (France) Attribution: tatoeba.org #50021 (CK) & #784517 (fucongcong) +The circumstances did not allow me to go abroad. 情况不允许我出国。 CC-BY 2.0 (France) Attribution: tatoeba.org #22200 (Swift) & #8709399 (slo_oth) +The coral reef is the region's prime attraction. 珊瑚礁是这个地区的主要景点。 CC-BY 2.0 (France) Attribution: tatoeba.org #954341 (CK) & #1397043 (mtdot) +The court acquitted him of the charge of murder. 法庭对他的谋杀罪名作出了无罪判决。 CC-BY 2.0 (France) Attribution: tatoeba.org #321038 (CM) & #8829225 (crescat) +The doctor told her that she should take a rest. 医生告诉她要静养。 CC-BY 2.0 (France) Attribution: tatoeba.org #27919 (CK) & #334278 (fucongcong) +The explorers discovered a skeleton in the cave. 探险家们在洞穴里发现了骸骨。 CC-BY 2.0 (France) Attribution: tatoeba.org #276708 (CK) & #4760083 (ryanwoo) +The horse stopped and refused to go any further. 馬停了下來,而且拒絕移動。 CC-BY 2.0 (France) Attribution: tatoeba.org #4763507 (garborg) & #3742623 (egg0073) +The minimum wage in Okinawa is 642 yen per hour. 冲绳的最低时薪是每小时642日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #828804 (Scott) & #829686 (fucongcong) +The money you give them will be put to good use. 你给他们的钱会用到好处。 CC-BY 2.0 (France) Attribution: tatoeba.org #17893 (CK) & #5558508 (verdastelo9604) +The motel can accommodate as many as 400 guests. 汽车旅馆可以接待多达400名客人。 CC-BY 2.0 (France) Attribution: tatoeba.org #49843 (CM) & #799253 (fucongcong) +The mother occasionally reread her son's letter. 这位母亲偶尔会重温她的儿子的信件。 CC-BY 2.0 (France) Attribution: tatoeba.org #1532036 (LittleBoy) & #2567495 (fenfang557) +The problem is that solar energy costs too much. 問題是, 太陽能太貴了。 CC-BY 2.0 (France) Attribution: tatoeba.org #323865 (CK) & #757458 (Martha) +The teacher has a great influence on his pupils. 这个教授对他的学生有很大的影响力。 CC-BY 2.0 (France) Attribution: tatoeba.org #45788 (CK) & #373434 (fucongcong) +The things he says are entirely inconsequential. 他说的话根本毫无意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #995249 (NickC) & #335127 (fucongcong) +The train for Birmingham leaves from platform 3. 去伯明翰的火车从3号站台出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #35165 (CK) & #787616 (fucongcong) +The train was delayed because of heavy snowfall. 火车因大雪被耽搁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #20247 (CK) & #333030 (fucongcong) +The twins are indistinguishable from each other. 这双胞胎没法区分。 CC-BY 2.0 (France) Attribution: tatoeba.org #45621 (CM) & #5558535 (verdastelo9604) +The weather was not only cold, it was also damp. 天气又冷又湿。 CC-BY 2.0 (France) Attribution: tatoeba.org #637881 (masya) & #333431 (fucongcong) +The weatherman says there is a storm on the way. 气象学家说会有暴风雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #278896 (CM) & #799255 (fucongcong) +There is a man at the door who wants to see you. 门口有个男人想见你。 CC-BY 2.0 (France) Attribution: tatoeba.org #71088 (CK) & #2002972 (sunnywqing) +There was widespread panic after the earthquake. 地震後人們普遍覺得恐慌。 CC-BY 2.0 (France) Attribution: tatoeba.org #45132 (CK) & #801437 (Martha) +These three pretty girls are all nieces of mine. 这三个漂亮的女孩都是我的侄女。 CC-BY 2.0 (France) Attribution: tatoeba.org #61394 (CM) & #678181 (Martha) +This dam supplies us with water and electricity. 这个水坝给我们提供水和电。 CC-BY 2.0 (France) Attribution: tatoeba.org #60907 (CM) & #8789786 (crescat) +This dictionary contains about 40,000 headwords. 这本字典包含了约4万个词条。 CC-BY 2.0 (France) Attribution: tatoeba.org #58834 (CK) & #335274 (fucongcong) +This guitar is so expensive that I can't buy it. 这吉他太贵了,我没法买下。 CC-BY 2.0 (France) Attribution: tatoeba.org #667132 (Zifre) & #1397328 (mtdot) +This is a problem you have to solve by yourself. 这是一个你必须自己解决的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #55997 (CK) & #1426531 (sadhen) +This river is dangerous for children to swim in. 孩子在这条河里游泳太危险了。 CC-BY 2.0 (France) Attribution: tatoeba.org #58124 (CK) & #332821 (fucongcong) +This towel is so soft and fluffy. It feels good! 这条毛巾蓬松又柔软,特别舒服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1164640 (Chrikaru) & #8926998 (crescat) +Tom and I have known each other for a long time. 湯姆和我相識很久了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2955629 (CK) & #6093369 (verdastelo9604) +Tom began to learn French about three years ago. 汤姆大约三年前开始学法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095792 (CK) & #4817331 (CLARET) +Tom doesn't have any idea why his wife left him. 湯姆根本不明白為甚麼他的妻子離開了他。 CC-BY 2.0 (France) Attribution: tatoeba.org #6225676 (CK) & #6633883 (verdastelo9604) +Tom doesn't like women who wear too much makeup. 汤姆不喜欢妆化太浓的女人。 CC-BY 2.0 (France) Attribution: tatoeba.org #8770857 (CK) & #8792072 (slo_oth) +Tom has been on the wanted list for three years. 汤姆已经上通缉令三年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3727429 (CM) & #5663466 (verdastelo9604) +Tom is looking for someone to take Mary's place. Tom正在找其他人代替Mary。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028559 (CK) & #4844967 (pig8322) +Tom is single and has a three-year-old daughter. Tom單身,他有個三歲的女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493560 (CK) & #4504452 (egg0073) +Tom is very good at doing things with his hands. 汤姆善于动手做事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877500 (CK) & #5585224 (verdastelo9604) +Tom isn't the only one here who's a good singer. 汤姆不是这里唯一的好歌手。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715093 (CK) & #5715126 (verdastelo9604) +Tom learned how to do that from his grandfather. 汤姆从他祖父那里学会了怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5715089 (CK) & #5715122 (verdastelo9604) +Tom never should've tried doing that by himself. 汤姆从来不应该尝试自己一个人做那些。 CC-BY 2.0 (France) Attribution: tatoeba.org #6340869 (CK) & #7795218 (xinqian94) +Tom opened the blinds and looked out the window. 汤姆打开百叶窗,向窗外望去。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537673 (CK) & #8555765 (slo_oth) +Tom said he wasn't ready, but Mary said she was. 汤姆说他没准备好,但玛丽说她准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537669 (CK) & #5574524 (verdastelo9604) +Tom seems to be a fairly successful businessman. 汤姆看来是个很成功的商人。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958095 (CK) & #5694504 (verdastelo9604) +Tom still drinks, but not as much as he used to. 汤姆还是喝,但不像以前那么多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3735309 (CK) & #5762999 (verdastelo9604) +Tom suggested that I change the lock on my door. 汤姆建议我换我的门锁。 CC-BY 2.0 (France) Attribution: tatoeba.org #3144519 (CK) & #5576808 (verdastelo9604) +Tom told Mary something she didn't want to hear. 湯姆告訴了瑪麗她不想知道的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1884441 (CK) & #6877967 (verdastelo9604) +Tom was a little overweight when he was a child. 湯姆在小时候有點超重。 CC-BY 2.0 (France) Attribution: tatoeba.org #6882677 (CK) & #6959858 (verdastelo9604) +Two months have passed since he left for France. 自从他离开去法国,已经有两个月了。 CC-BY 2.0 (France) Attribution: tatoeba.org #283277 (kylecito) & #336650 (fucongcong) +We postponed our departure because of the storm. 我們因為風暴推遲了起程。 CC-BY 2.0 (France) Attribution: tatoeba.org #1398749 (CK) & #6111731 (verdastelo9604) +We used to go to the movies on Saturday evening. 我们曾经总在星期六傍晚去看电影。 CC-BY 2.0 (France) Attribution: tatoeba.org #263166 (CK) & #5911761 (verdastelo9604) +We want to be on the first bus tomorrow morning. 我们想乘明天早上第一班公交车。 CC-BY 2.0 (France) Attribution: tatoeba.org #2032040 (CK) & #5989211 (verdastelo9604) +When I was a child, I used to swim in that pond. 当我还是个孩子的时候,我在这个泳池里游过泳。 CC-BY 2.0 (France) Attribution: tatoeba.org #404101 (CK) & #4845038 (pig8322) +When he retired, his son took over the business. 他退休的时候,他儿子接手了他的生意。 CC-BY 2.0 (France) Attribution: tatoeba.org #1211562 (alec) & #334035 (fucongcong) +Where do you suppose you'll spend your vacation? 你认为你会到哪儿度假? CC-BY 2.0 (France) Attribution: tatoeba.org #19795 (CK) & #336854 (fucongcong) +While you are reading to me, I can do my sewing. 你读给我听的时候,我就可以做缝纫了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71304 (CM) & #333120 (fucongcong) +Who will take care of the dog while we are away? 當我們離開的時候,誰來照顧狗? CC-BY 2.0 (France) Attribution: tatoeba.org #809961 (TomSFox) & #810018 (Martha) +You can't drink seawater because it's too salty. 你不能喝海水,因为它太咸了。 CC-BY 2.0 (France) Attribution: tatoeba.org #671241 (CK) & #334680 (fucongcong) +You don't have to tell Tom if you don't want to. 如果你不想,那你便没有这个必要去告诉汤姆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3204812 (CK) & #3770527 (Debbie_Linder) +You have a choice of black tea, coffee, or milk. 你可以选择红茶,咖啡或牛奶。 CC-BY 2.0 (France) Attribution: tatoeba.org #240959 (Barbiche0) & #335006 (fucongcong) +You look like you've just lost your best friend. 你看上去就像是刚刚失去了自己最好的朋友似的。 CC-BY 2.0 (France) Attribution: tatoeba.org #954768 (CK) & #7782550 (jiangche) +You nearly poked me in the eye with your pencil. 你的鉛筆差點戳到我的眼睛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16396 (CK) & #775780 (Martha) +You should set a good example for your children. 你应该给你的孩子们树立好榜样。 CC-BY 2.0 (France) Attribution: tatoeba.org #734201 (darinmex) & #5900381 (verdastelo9604) +You used to be able to see the church from here. 你以前可以從這裡看到教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #63677 (CK) & #781684 (Martha) +You will soon get accustomed to your new school. 你很快就会适应你的新学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #16650 (Zifre) & #476574 (fucongcong) +You'd be surprised what you can learn in a week. 你会很惊讶你在一周内能学到的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #1474 (CM) & #334915 (fucongcong) +You'll soon get accustomed to this cold weather. 你很快就會習慣這種冷天氣。 CC-BY 2.0 (France) Attribution: tatoeba.org #16700 (papabear) & #775831 (Martha) +You're not old enough to get a driver's license. 你还没到可以拿驾驶执照的年龄。 CC-BY 2.0 (France) Attribution: tatoeba.org #16424 (CK) & #4463268 (yuiyu) +"Did he write a letter yesterday?" "Yes, he did." "他昨天寫了一封信嗎?" "是的, 他寫了。" CC-BY 2.0 (France) Attribution: tatoeba.org #73566 (CK) & #790625 (Martha) +"I'll do it tomorrow." "You said that yesterday!" “我明天再做。” “这话你昨天就说过了!” CC-BY 2.0 (France) Attribution: tatoeba.org #2077755 (Spamster) & #8671314 (crescat) +"Would you like any more?" "No, I've had enough." "你想再多吃點嗎?" "不,我吃飽了。" CC-BY 2.0 (France) Attribution: tatoeba.org #73785 (CK) & #851498 (Martha) +A barber is a man who shaves and cuts men's hair. 理髮師是為男人刮鬍子和剪頭髮的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #325347 (CK) & #830391 (Martha) +A doctor told me that eating eggs was bad for me. 一位医生告诉过我,吃鸡蛋对我的健康有害。 CC-BY 2.0 (France) Attribution: tatoeba.org #953071 (CK) & #1323967 (vicch) +A friend of mine asked me to send her a postcard. 我的一位朋友要求我寄給她一張明信片。 CC-BY 2.0 (France) Attribution: tatoeba.org #324386 (CK) & #830459 (Martha) +A great number of books are published every year. 每年都有大量新书出版。 CC-BY 2.0 (France) Attribution: tatoeba.org #322480 (CM) & #5942073 (verdastelo9604) +According to the newspaper, he committed suicide. 據報紙上說,他自殺了。 CC-BY 2.0 (France) Attribution: tatoeba.org #394269 (CK) & #864460 (Martha) +After you have read it, give the book back to me. 在你讀完後,把書還給我。 CC-BY 2.0 (France) Attribution: tatoeba.org #280584 (CK) & #830474 (Martha) +All at once she began to shout in a shrill voice. 突然間她開始用尖銳的聲音大喊。 CC-BY 2.0 (France) Attribution: tatoeba.org #280721 (CK) & #830481 (Martha) +Are you planning to be at Tom and Mary's wedding? 你打算参加汤姆和玛丽的婚礼吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4753627 (CK) & #4757589 (ryanwoo) +Aren't you coming to pick me up tomorrow morning? 你明天早上不来接我吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6096341 (CK) & #8605875 (slo_oth) +As far as I know, your letter is under that book. 據我所知,你的信在那本書下面。 CC-BY 2.0 (France) Attribution: tatoeba.org #809904 (TomSFox) & #810020 (Martha) +As soon as I get to London, I'll drop you a line. 我一到伦敦就会给你留言的。 CC-BY 2.0 (France) Attribution: tatoeba.org #29291 (CK) & #335018 (fucongcong) +As soon as she wakes up, we'll turn on the music. 她一醒,我们就放音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #434266 (lukaszpp) & #784104 (fucongcong) +Be it ever so humble, there's no place like home. 金窝银窝不如自己的狗窝。 CC-BY 2.0 (France) Attribution: tatoeba.org #36695 (CK) & #333947 (fucongcong) +Be respectful to your superiors, if you have any. 如果你有上司的话,学会尊敬他(她)。 CC-BY 2.0 (France) Attribution: tatoeba.org #667891 (CK) & #2426077 (huangfen) +Because our kids got married, we are now in-laws. 我們成親家了, 因為我們的孩子們結婚了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174960 (FeuDRenais) & #2174216 (sadhen) +Collect your thoughts before you begin your work. 工作之前先收好思绪。 CC-BY 2.0 (France) Attribution: tatoeba.org #245325 (al_ex_an_der) & #5763042 (verdastelo9604) +Did you check all the items on the shopping list? 你检查购物单上所有的项目了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #282506 (CK) & #5613611 (verdastelo9604) +Do you know whether or not she can speak English? 你知道她是否會講英語嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #461199 (CK) & #811840 (Martha) +Do you play any instruments other than the piano? 除了钢琴以外,还会玩什么乐器吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4486535 (CK) & #5096745 (mirrorvan) +Don't pay any attention to what your father says. 别在意你父亲说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #402486 (CK) & #609890 (sarah) +Even when I was a child, I was able to swim well. 我很小的时候就游得很好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #487921 (CK) & #6307283 (gumblex) +Everybody but Tom knew he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7508896 (CK) & #9012194 (jacintoo) +Everyone inside the building felt the earthquake. 在建筑物里的所有人都感觉到了地震。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543185 (Bah_Dure) & #8654630 (crescat) +Father ran short of money and had to borrow some. 父親缺錢,所以他必須去借點錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #318973 (CM) & #804532 (Martha) +Generally speaking, the climate of Japan is mild. 总体上说,日本的气候温和。 CC-BY 2.0 (France) Attribution: tatoeba.org #21784 (CK) & #426884 (fucongcong) +He and his sisters are currently living in Tokyo. 他和他的姐妹们目前都住在东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477144 (weihaiping) & #332641 (fucongcong) +He cannot afford to buy a car, much less a house. 他买不起一辆汽车,更不要说一套房子了。 CC-BY 2.0 (France) Attribution: tatoeba.org #298499 (CK) & #1361992 (sadhen) +He could not come because of his serious illness. 他因為生重病不能來。 CC-BY 2.0 (France) Attribution: tatoeba.org #299348 (CM) & #6146512 (verdastelo9604) +He doesn't know how to write a letter in English. 他不知道如何用英语写信。 CC-BY 2.0 (France) Attribution: tatoeba.org #294071 (CK) & #1314171 (vicch) +He explained the literal meaning of the sentence. 他解释了句子的字面意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #838878 (Scott) & #7772575 (jiangche) +He failed the exam, but he doesn't care too much. 他考试失败了,但他不太在意。 CC-BY 2.0 (France) Attribution: tatoeba.org #298272 (wondersz1) & #5911659 (verdastelo9604) +He graduated from Harvard University with honors. 他光榮地從哈佛大學畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #304343 (CK) & #802097 (Martha) +He once knew her, but they are no longer friends. 他过去认识她,但他们现在不再是朋友了。 CC-BY 2.0 (France) Attribution: tatoeba.org #289542 (CK) & #333704 (fucongcong) +He returned home for the first time in ten years. 他十年中第一次回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #73396 (CK) & #335890 (fucongcong) +He said he did not know the man, which was a lie. 他說他不認識那個男人,這是一個謊言。 CC-BY 2.0 (France) Attribution: tatoeba.org #291131 (CK) & #830341 (Martha) +He should apologize for being rude to the guests. 他应该为自己对客人的粗鲁无礼而道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #47524 (CK) & #1776503 (sadhen) +He would often come to see us when I was a child. 當我還是個孩子時,他經常來看望我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #246791 (CK) & #830297 (Martha) +Her birthday party will be held tomorrow evening. 她的生日宴會將在明天晚上。 CC-BY 2.0 (France) Attribution: tatoeba.org #508917 (CK) & #881266 (Martha) +His parents are saving for his college education. 他的父母為他的大學教育存錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #287801 (kebukebu) & #760874 (Martha) +His quick temper will get him in trouble one day. 他的急脾气迟早会惹祸上身。 CC-BY 2.0 (France) Attribution: tatoeba.org #298809 (CM) & #1397031 (mtdot) +How come you know so much about Japanese history? 你為什麼知道這麼多的日本歷史? CC-BY 2.0 (France) Attribution: tatoeba.org #6041 (CK) & #772039 (Martha) +How much money do you have hidden under your bed? 你在你的床下面藏了多少钱? CC-BY 2.0 (France) Attribution: tatoeba.org #1579460 (fanty) & #1776816 (sadhen) +I admit this may not be the best way of doing it. 我承认这可能不是最好的方法。 CC-BY 2.0 (France) Attribution: tatoeba.org #21712 (CK) & #336894 (fucongcong) +I can't get at the exact meaning of the sentence. 我抓不到句子的确切含义。 CC-BY 2.0 (France) Attribution: tatoeba.org #44122 (CK) & #343799 (fucongcong) +I don't care what color ink, just bring me a pen. 颜色无所谓,给我一支笔就行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #744538 (darinmex) & #819737 (fucongcong) +I don't have a prejudice against foreign workers. 我对外籍员工没有偏见。 CC-BY 2.0 (France) Attribution: tatoeba.org #21875 (CK) & #332656 (fucongcong) +I don't have the slightest intention of retiring. 我没有一点退休的念头。 CC-BY 2.0 (France) Attribution: tatoeba.org #1126670 (CK) & #1395097 (mtdot) +I don't know anyone who matches that description. 我不认识符合条件的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #7821775 (AlanF_US) & #8635816 (slo_oth) +I don't know what to say to make you feel better. 我不知道该说什么来安慰你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1701 (CK) & #389396 (fucongcong) +I don't know whether Tom will eat with us or not. 我不知道Tom是否和我们一起吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952013 (CK) & #4845015 (pig8322) +I don't think Tom will go to Boston next weekend. 我不認為湯姆下週會去波士頓。 CC-BY 2.0 (France) Attribution: tatoeba.org #5848159 (CK) & #6109361 (verdastelo9604) +I found the secret compartment quite by accident. 我完全是在偶然的情况下发现了密室。 CC-BY 2.0 (France) Attribution: tatoeba.org #623195 (darinmex) & #815299 (fucongcong) +I have to write a letter. Do you have some paper? 我需要写一封信。你有纸吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6117 (CK) & #399902 (fucongcong) +I have to write a letter. Do you have some paper? 我要写一封信。你有纸吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6117 (CK) & #408267 (fucongcong) +I hope to retire from work when I'm 60 years old. 我希望在六十歲時退休。 CC-BY 2.0 (France) Attribution: tatoeba.org #252604 (CK) & #5496268 (egg0073) +I miss you. I need to see you. Could I come over? 我想你。我需要见你。我能来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #953531 (CK) & #1311593 (vicch) +I never thought something like that could happen. 我从来没想到会发生那种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728415 (paper1n0) & #4311079 (sadhen) +I ran as fast as I could, but I missed the train. 我用盡全力跑,但我還是沒趕上火車。 CC-BY 2.0 (France) Attribution: tatoeba.org #1312954 (CK) & #6148197 (verdastelo9604) +I read the book after I had finished my homework. 我做完我的功课后,就读这本书。 CC-BY 2.0 (France) Attribution: tatoeba.org #258554 (CK) & #332598 (fucongcong) +I really like him, but not his circle of friends. 我真的很喜歡他, 可是我不喜歡他周圍的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #317729 (CM) & #780244 (Martha) +I received a letter written in English yesterday. 昨天,我收到一封用英语写的信。 CC-BY 2.0 (France) Attribution: tatoeba.org #257706 (CK) & #334643 (fucongcong) +I talked to him on the telephone yesterday night. 我昨晚跟他通电话了。 CC-BY 2.0 (France) Attribution: tatoeba.org #845614 (iampo0kie) & #845132 (fucongcong) +I thought that Tom would want to know about that. 我本以为汤姆愿意了解这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #7173317 (CK) & #7771998 (jiangche) +I want a boat that'll take me far away from here. 我想要一艘船带我远离这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396362 (CK) & #333906 (fucongcong) +I want to clean the house before my parents come. 我想在我父母来之前收拾干净屋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #1424759 (grahambond) & #1424403 (sadhen) +I want you to understand why you have to do this. 我想让你明白为啥你必须这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #5725228 (CM) & #9007595 (jacintoo) +I will never forget the day when I first met him. 我永远不会忘记那天我第一次与他见面。 CC-BY 2.0 (France) Attribution: tatoeba.org #260213 (CK) & #4760054 (ryanwoo) +I will provide you all the necessary information. 我会把所有有用的信息提供给您的。 CC-BY 2.0 (France) Attribution: tatoeba.org #526662 (CK) & #805039 (fucongcong) +I will provide you all the necessary information. 我会把所有有用的信息给你的。 CC-BY 2.0 (France) Attribution: tatoeba.org #526662 (CK) & #805043 (fucongcong) +I would like to improve my English pronunciation. 我想改善我的英语发音。 CC-BY 2.0 (France) Attribution: tatoeba.org #256219 (CK) & #446163 (fucongcong) +I'm going to stop trying to be friendly with you. 我不跟你要好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1970219 (CK) & #2637077 (cienias) +I'm having some problems compiling this software. 我编译这个程序有些困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #367129 (sysko) & #368546 (fucongcong) +I'm hungry, so I'm going to get something to eat. 我餓了,所以我要吃東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #372009 (saeb) & #6120924 (verdastelo9604) +I've already been working here for several hours. 我已经在这里工作几个小时了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3126198 (patgfisher) & #5903472 (verdastelo9604) +I've looked everywhere, but I can't find my book. 我什麼地方都找過了, 但卻找不到我的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #4736704 (paper1n0) & #765351 (Martha) +If possible, I'd like to travel around the world. 如果可能的话,我想环游世界。 CC-BY 2.0 (France) Attribution: tatoeba.org #385378 (Mouseneb) & #332449 (fucongcong) +If you buy me an ice cream, I'll give you a kiss. 如果你買給我冰淇淋,我就親你一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #1532083 (LittleBoy) & #4830638 (umidake) +In general, consumers prefer quantity to quality. 一般來說,消费者喜歡數量勝於質量。 CC-BY 2.0 (France) Attribution: tatoeba.org #27341 (CK) & #798140 (Martha) +In this case, the adjective goes before the noun. 在这种情况下,形容词放在名词前面。 CC-BY 2.0 (France) Attribution: tatoeba.org #2267280 (_undertoad) & #5556077 (verdastelo9604) +Is it true that you built this house by yourself? 你真是自己造了这栋房子吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1731114 (Amastan) & #7768260 (jiangche) +It appears that she had a nice time at the party. 看來她似乎在派對上玩得很開心。 CC-BY 2.0 (France) Attribution: tatoeba.org #311938 (CK) & #830302 (Martha) +It is not necessary for us to attend the meeting. 我們沒有必要參加會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #23490 (darinmex) & #6535840 (verdastelo9604) +It seems that you aren't having a good time here. 好像你们在这儿玩得不愉快啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #7803524 (CK) & #795738 (fucongcong) +It seems that you're not having a good time here. 好像你们在这儿玩得不愉快啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #7803523 (CK) & #795738 (fucongcong) +It took me half an hour to work out this problem. 我花了一個半小時的時間解決這個問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #253762 (CK) & #887847 (Martha) +It was ten years ago that he first came to Japan. 他第一次來到日本是在十年前。 CC-BY 2.0 (France) Attribution: tatoeba.org #283852 (CK) & #6147589 (verdastelo9604) +It would've been better if you'd stayed with Tom. 如果你和Tom呆在一起,结果会更好 CC-BY 2.0 (France) Attribution: tatoeba.org #3185454 (CK) & #5975073 (zhangxr91) +It's convenient for me to see you at ten tonight. 我今晚10点见你比较方便。 CC-BY 2.0 (France) Attribution: tatoeba.org #243199 (CM) & #334761 (fucongcong) +London, the capital of England, is on the Thames. 英国首都伦敦在泰晤士河畔。 CC-BY 2.0 (France) Attribution: tatoeba.org #26155 (CK) & #334130 (fucongcong) +Man is the only animal that can make use of fire. 人是唯一会使用火的动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #270259 (CM) & #427601 (fucongcong) +My brother is not as tall as I was two years ago. 我弟弟没我两年前高。 CC-BY 2.0 (France) Attribution: tatoeba.org #278570 (CK) & #332982 (fucongcong) +My father often reads the newspaper during meals. 我父亲经常在吃饭时读报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #394111 (CK) & #5911731 (verdastelo9604) +My father will come home at the end of this week. 我爸爸会在这周末回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #319270 (CK) & #334238 (fucongcong) +My first day in the university was rather boring. 我大学里的第一天相当没意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #275586 (Eldad) & #4764533 (ryanwoo) +My train left at 7 and arrived in New York at 10. 我乘的火车7点出发,10点到了纽约。 CC-BY 2.0 (France) Attribution: tatoeba.org #453005 (FeuDRenais) & #444668 (fucongcong) +Neither Tom nor Mary has found anything valuable. 汤姆和玛丽都没有发现什么有价值的东西 CC-BY 2.0 (France) Attribution: tatoeba.org #7540047 (CK) & #8746391 (cxpadonis) +Neptune is the eighth planet of the solar system. 海王星是太阳系第八个行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #22212 (CK) & #845140 (fucongcong) +No matter what happens, I'm not changing my mind. 無論如何,我不會改變我的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230482 (alec) & #1223801 (tsayng) +Other people's expectations affect how we behave. 其他人的期望會影響我們的行為。 CC-BY 2.0 (France) Attribution: tatoeba.org #827844 (Scott) & #828692 (Martha) +Our math teacher drew a circle on the blackboard. 我们的数学老师在黑板上画了一个圆。 CC-BY 2.0 (France) Attribution: tatoeba.org #247580 (Eldad) & #1706518 (sadhen) +Perseverance, as you know, is the key to success. 就像你们知道的那样,毅力是成功的关键。 CC-BY 2.0 (France) Attribution: tatoeba.org #281975 (Zifre) & #334734 (fucongcong) +She followed him home to find out where he lived. 她跟他到家,以知道他住哪。 CC-BY 2.0 (France) Attribution: tatoeba.org #887114 (CK) & #5569526 (verdastelo9604) +She gives me a nasty look every time she sees me. 她每次看見我都給露出厭惡的眼神。 CC-BY 2.0 (France) Attribution: tatoeba.org #314306 (CK) & #5405477 (egg0073) +She lost her father when she was three years old. 她父亲在她三岁时死了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1037123 (GPHemsley) & #5900382 (verdastelo9604) +She told me that she would go to Paris in August. 她跟我说八月份她会去巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #314132 (CK) & #461999 (fucongcong) +She was asked to convince him to paint the house. 她被要求说服他油漆房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #887543 (CK) & #5780560 (verdastelo9604) +She was in trouble because she lost her passport. 她遇到了麻煩,因為她弄丟了她的護照。 CC-BY 2.0 (France) Attribution: tatoeba.org #311979 (CK) & #881137 (Martha) +Some people like volleyball, others enjoy tennis. 有些人喜欢排球,其他人喜欢网球。 CC-BY 2.0 (France) Attribution: tatoeba.org #336060 (killer4o) & #336107 (fucongcong) +Starting tomorrow, it's going to snow for a week. 雪从明天开始下,一直持续一个星期。 CC-BY 2.0 (France) Attribution: tatoeba.org #452958 (Benjameno) & #1706446 (sadhen) +Strawberries sell for a high price in the winter. 草莓在冬天售價高。 CC-BY 2.0 (France) Attribution: tatoeba.org #898998 (CK) & #919952 (Martha) +That's the computer he used to write the article. 那就是那台他用来写文章的电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #395068 (Mouseneb) & #333460 (fucongcong) +The beach is an ideal place for children to play. 海滩是一个供孩子们玩乐的理想场所。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396376 (CK) & #1873022 (sadhen) +The company spends a lot of money on advertising. 那家公司在广告上花了很多钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #49084 (CK) & #335390 (fucongcong) +The explosion may have been caused by a gas leak. 這場爆炸有可能是瓦斯外洩引起的。 CC-BY 2.0 (France) Attribution: tatoeba.org #44483 (CM) & #4816292 (umidake) +The flood water reached the level of the windows. 洪水涌到了窗户的高度。 CC-BY 2.0 (France) Attribution: tatoeba.org #681346 (Source_VOA) & #8800804 (crescat) +The house stood out because of its unusual shape. 那房子因为其少有的形状被突显出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #49339 (CM) & #787385 (fucongcong) +The incident made everyone feel more embarrassed. 這件事弄得大家都比較尷尬。 CC-BY 2.0 (France) Attribution: tatoeba.org #7787216 (sharris123) & #6395809 (xjjAstrus) +The poor young man finally became a great artist. 这个可怜的年轻人最后成为了一个了不起的艺术家。 CC-BY 2.0 (France) Attribution: tatoeba.org #44295 (CM) & #336469 (fucongcong) +The princess begged forgiveness from the emperor. 公主向皇帝请求饶恕。 CC-BY 2.0 (France) Attribution: tatoeba.org #327977 (CK) & #8899483 (crescat) +The problem was that I had nothing to say to him. 问题是 我没什么要跟他说的。 CC-BY 2.0 (France) Attribution: tatoeba.org #323891 (CK) & #481156 (fucongcong) +The strong wind indicates that a storm is coming. 強風暗示著即將到來的暴雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #19182 (Dejo) & #1250583 (tsayng) +The time has come when I must tell you the truth. 現在是我必須告訴你真相的時候了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71027 (qdii) & #864163 (Martha) +The weather was so cold that the lake froze over. 天冷得足以让湖结冰。 CC-BY 2.0 (France) Attribution: tatoeba.org #37810 (CK) & #332785 (fucongcong) +The whole neighborhood was surprised at the news. 整个小区对这个消息很惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #18661 (Zifre) & #336694 (fucongcong) +The youngest daughter is exceptionally beautiful. 么女長得特別漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250667 (FeuDRenais) & #2243483 (cienias) +The youngest daughter was particularly beautiful. 么女長得特別漂亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #2250665 (FeuDRenais) & #2243483 (cienias) +There are a few apples on the tree, aren't there? 树上有些苹果,不是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #29633 (CK) & #333097 (fucongcong) +There are more than 4,000 languages in the world. 全世界有超过4000多种的语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #1490655 (CK) & #1883017 (sadhen) +There are noticeable differences between the two. 两者之间有显著的差别。 CC-BY 2.0 (France) Attribution: tatoeba.org #325629 (CK) & #8725728 (crescat) +There are seven men and four women in my section. 在我的部门里有七男四女。 CC-BY 2.0 (France) Attribution: tatoeba.org #250594 (CM) & #795616 (fucongcong) +There is no reason that I should give up my plan. 沒有理由让我放弃我的计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #246721 (CK) & #6101256 (verdastelo9604) +There seem to be several reasons for his failure. 他的失败看来有几个原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #286547 (CM) & #6047433 (verdastelo9604) +They came up with a plan after a long discussion. 他们终于在漫长的讨论之后得出了一个计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #278034 (CK) & #1394796 (mtdot) +They defended their country against the invaders. 他们抵御入侵者,保卫了国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #294757 (CK) & #5655390 (verdastelo9604) +They will tear down the old building in two days. 他們將在兩天內拆除這棟舊的建築物。 CC-BY 2.0 (France) Attribution: tatoeba.org #305425 (CK) & #874209 (Martha) +This conference is very important. Don't miss it. 這場會議很重要,不要錯過了! CC-BY 2.0 (France) Attribution: tatoeba.org #599167 (Dejo) & #1236341 (tsayng) +This flower is the most beautiful of all flowers. 这朵花是所有花中最漂亮的。 CC-BY 2.0 (France) Attribution: tatoeba.org #60056 (CM) & #343680 (fucongcong) +This piano has probably not been tuned for years. 这台琴应该好多年没调过音了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4550340 (CK) & #8591265 (easononizuka) +Today, many people worry about losing their jobs. 今天,許多人擔心失去工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #682483 (Source_VOA) & #891313 (Martha) +Tom and Mary went to the best restaurant in town. 汤姆和玛丽去了镇上最好的饭店。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819118 (CK) & #5911672 (verdastelo9604) +Tom doesn't pay much attention to how he dresses. Tom没有花费精力去打扮自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025979 (CK) & #4845016 (pig8322) +Tom encouraged Mary to learn how to speak French. 汤姆鼓励玛丽学着说法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028972 (CK) & #1360028 (sadhen) +Tom has been under a great deal of strain lately. 汤姆最近压力特别大。 CC-BY 2.0 (France) Attribution: tatoeba.org #3442165 (CK) & #5576819 (verdastelo9604) +Tom is in the living room, sleeping on the couch. 汤姆在客厅,躺在长沙发上睡觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #2494735 (CK) & #5942091 (verdastelo9604) +Tom is the one that has been waiting the longest. 汤姆是等了最长时间的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3166149 (CK) & #9007583 (jacintoo) +Tom often reads when his children aren't at home. 汤姆经常在孩子们不在家时阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #5409507 (CK) & #5650401 (verdastelo9604) +Tom probably knows why the meeting was postponed. 湯姆大概知道會議延期的原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745792 (CK) & #2771064 (cienias) +Tom said he hasn't decided what needs to be done. 湯姆說他還沒決定要做甚麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #6239921 (CK) & #6318559 (verdastelo9604) +Tom said it was cold in Boston this time of year. 汤姆说一年中这时候波士顿很冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #2640052 (CK) & #5780613 (verdastelo9604) +Tom tried to catch up with Mary, but he couldn't. 汤姆试图去追上玛丽,但是他没成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027865 (CK) & #8749657 (crescat) +Tom wished he hadn't borrowed the book from Mary. 汤姆希望他没有从玛丽那里借书。 CC-BY 2.0 (France) Attribution: tatoeba.org #5909644 (CK) & #5983658 (verdastelo9604) +Tom won't even know what you did until it's over. 汤姆不到最后不会知道你做了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #3726665 (CM) & #5663554 (verdastelo9604) +Tomorrow there's a high probability it will rain. 明天很有可能下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #5399394 (Objectivesea) & #6152995 (verdastelo9604) +Try to have a positive attitude about everything. 试着用积极的态度去面对任何事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #24621 (CK) & #1719651 (yuzazaza) +We bought some vegetables and fish at the market. 我们在市场上买了些蔬菜和鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #248774 (CK) & #609957 (sarah) +We should ban advertising aimed towards children. 我们应该禁止针对儿童的广告。 CC-BY 2.0 (France) Attribution: tatoeba.org #1372113 (Spamster) & #5698044 (verdastelo9604) +We'll get a phone call from him tonight for sure. 今晚我們肯定會接到他的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1422694 (CK) & #1422751 (cienias) +When listening to a lecture, you should be quiet. 听讲座时,你应该保持安静。 CC-BY 2.0 (France) Attribution: tatoeba.org #241173 (CM) & #5819704 (verdastelo9604) +You are allowed to use the hotel's swimming pool. 你有权使用旅馆的游泳池。 CC-BY 2.0 (France) Attribution: tatoeba.org #2896453 (migl) & #1735517 (sadhen) +You are free to do as you please with your money. 你可以隨你高興的用你的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #16166 (CK) & #775739 (Martha) +You can ask the child that is playing over there. 你可以問問在那裡玩的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #815808 (heranje) & #816767 (Martha) +You can get from Washington to New York by train. 你们可以乘火车从华盛顿去纽约。 CC-BY 2.0 (France) Attribution: tatoeba.org #795180 (CN) & #795650 (fucongcong) +You don't get up as early as your sister, do you? 你比你妹妹起得晚,不是么? CC-BY 2.0 (France) Attribution: tatoeba.org #1396425 (CK) & #2030815 (sadhen) +You may take either the big box or the small one. 你可以拿大的盒子或是小的盒子。 CC-BY 2.0 (France) Attribution: tatoeba.org #15917 (CK) & #775667 (Martha) +You ought to tell Tom that you'll likely be late. 你应该告诉汤姆你可能会迟到。 CC-BY 2.0 (France) Attribution: tatoeba.org #6083865 (CK) & #8792060 (slo_oth) +You should practice playing the violin every day. 你應該每天練習拉小提琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #16435 (Eldad) & #775787 (Martha) +You'll be able to see the difference very easily. 您很容易就能看出区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #542710 (FeuDRenais) & #787301 (fucongcong) +You'll be able to see the difference very easily. 你们很容易就能看出区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #542710 (FeuDRenais) & #787303 (fucongcong) +You're still too young to get a driver's license. 你還太年輕無法取得駕駛執照。 CC-BY 2.0 (France) Attribution: tatoeba.org #16303 (CK) & #823026 (Martha) +You're the one who decided to do this job, right? 你是决定做这个工作的那个人,对吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4844662 (CK) & #4844664 (pig8322) +"Why aren't you going?" "Because I don't want to." "你为什么不去?""因为我不想去。" CC-BY 2.0 (France) Attribution: tatoeba.org #1543 (CK) & #334446 (fucongcong) +"Why aren't you going?" "Because I don't want to." “为什么你不来?”“因为我不想。” CC-BY 2.0 (France) Attribution: tatoeba.org #1543 (CK) & #405157 (fucongcong) +"Will he pass the examination?" "I am afraid not." "他會通過考試嗎?" "我怕是不會。" CC-BY 2.0 (France) Attribution: tatoeba.org #73564 (CK) & #790620 (Martha) +A bird in the hand is better than two in the bush. 一鳥在手勝過二鳥在林。 CC-BY 2.0 (France) Attribution: tatoeba.org #464908 (fucongcong) & #771150 (Martha) +A boy of seventeen is often as tall as his father. 十七歲的男孩常常長得和他父親一樣高。 CC-BY 2.0 (France) Attribution: tatoeba.org #73312 (CK) & #830413 (Martha) +A good many people have told me to take a holiday. 很多人都跟我說要我休假。 CC-BY 2.0 (France) Attribution: tatoeba.org #41017 (CK) & #830475 (Martha) +A good neighbour is better than a brother far off. 一個好鄰居勝於一個遙遠的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #327390 (CM) & #809760 (Martha) +A green carpet will not go with this blue curtain. 绿色的毯子和这条蓝色的帘子不配。 CC-BY 2.0 (France) Attribution: tatoeba.org #325916 (CM) & #444598 (fucongcong) +A new branch will be opened in Chicago next month. 新的分店下个月在芝加哥开张。 CC-BY 2.0 (France) Attribution: tatoeba.org #269167 (CK) & #5655353 (verdastelo9604) +A young girl on crutches asked Tom where he lived. 一个拄着拐杖的年轻女孩问汤姆他住在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1910425 (CK) & #8555753 (slo_oth) +Air quality has deteriorated these past few years. 这些年空气质量恶化了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18242 (CK) & #426309 (fucongcong) +Although I was tired, I did what I was able to do. 雖然我很累,但是我已經做了我能做的了。 CC-BY 2.0 (France) Attribution: tatoeba.org #895099 (pauldhunt) & #736324 (Martha) +Although he was exhausted, he had to keep working. 尽管他累极了,他还必须工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #290279 (CM) & #5926163 (verdastelo9604) +Anything you say can be used against you in court. 你所说的一切都将成为呈堂证供。 CC-BY 2.0 (France) Attribution: tatoeba.org #7751949 (CK) & #8496258 (gumblex) +As long as we love each other, we'll be all right. 只要我們彼此相愛,我們會沒事的。 CC-BY 2.0 (France) Attribution: tatoeba.org #28736 (CK) & #803910 (Martha) +As more paper money came into use, the value fell. 当更多的纸币投入使用,价格就下跌了。 CC-BY 2.0 (France) Attribution: tatoeba.org #804362 (Source_VOA) & #805142 (fucongcong) +Can you give me a ride to the office on Wednesday? 周三你可以载我到办公室吗? CC-BY 2.0 (France) Attribution: tatoeba.org #270947 (CK) & #2368463 (vicch) +Can you tell me where the nearest antique shop is? 你能告诉我最近的古玩店在哪里吗? CC-BY 2.0 (France) Attribution: tatoeba.org #27272 (Dejo) & #5670809 (verdastelo9604) +Compared with her sister, she isn't very punctual. 與她的妹妹相比,她不是很準時。 CC-BY 2.0 (France) Attribution: tatoeba.org #245557 (CM) & #881725 (Martha) +Don't leave the lights on when you leave the room. 离开房间时,不要留灯。 CC-BY 2.0 (France) Attribution: tatoeba.org #9251014 (CK) & #7772053 (jiangche) +Dozens of young people attended the demonstration. 几十个年轻人参加了示威游行。 CC-BY 2.0 (France) Attribution: tatoeba.org #24539 (CK) & #335242 (fucongcong) +Even though he has a lot of money, he's not happy. 虽然他很有钱,但他不幸福。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230749 (alec) & #334255 (fucongcong) +Every time he comes here, he orders the same dish. 每次他来这里点一样的菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #894789 (pauldhunt) & #4757626 (ryanwoo) +He drove the car, listening to music on the radio. 他一面開車一面聽收音機的音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #293335 (CM) & #778524 (Martha) +He explained the literal meaning of the sentences. 他解释了句子的字面意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #305848 (CK) & #7772575 (jiangche) +He failed in his attempt to swim across the river. 他试图游过河,但是失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #284371 (CK) & #332698 (fucongcong) +He placed emphasis on the importance of education. 他强调了教育的重要性。 CC-BY 2.0 (France) Attribution: tatoeba.org #295335 (CK) & #1350119 (vicch) +He studies English, but he's also studying German. 他学英语,但他也学德语。 CC-BY 2.0 (France) Attribution: tatoeba.org #397364 (porfiriy) & #336092 (fucongcong) +He told us such a funny story that we all laughed. 他给我们讲了一个有趣的故事,我们都笑了起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #283229 (CM) & #332533 (fucongcong) +He wore a mask so that no one could recognize him. 他戴著面具以至於沒有人認出他。 CC-BY 2.0 (France) Attribution: tatoeba.org #300389 (eastasiastudent) & #785112 (Martha) +His low salary prevents him from buying the house. 他的低薪水让他买不了房。 CC-BY 2.0 (France) Attribution: tatoeba.org #19533 (Eldad) & #5655286 (verdastelo9604) +How long does it take to get to the train station? 去火车站要多久? CC-BY 2.0 (France) Attribution: tatoeba.org #386696 (Mouseneb) & #334181 (fucongcong) +How long does the airport bus take to the airport? 乘机场大巴去机场要多久? CC-BY 2.0 (France) Attribution: tatoeba.org #18201 (Sprachprofi) & #344191 (fucongcong) +I avoid discussing personal subjects with my boss. 我避免跟老板讨论个人话题。 CC-BY 2.0 (France) Attribution: tatoeba.org #4571450 (mailohilohi) & #5684092 (verdastelo9604) +I can't believe Tom is really planning to do this. 我无法相信汤姆真的打算做这事儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950869 (CK) & #2052200 (sadhen) +I can't understand why you are so critical of him. 我不明白为什么你这么批评他。 CC-BY 2.0 (France) Attribution: tatoeba.org #36479 (CK) & #332635 (fucongcong) +I cannot help thinking that my son is still alive. 我不禁想我的儿子一直都在生。 CC-BY 2.0 (France) Attribution: tatoeba.org #274429 (CM) & #787322 (fucongcong) +I didn't know Tom was going to tell us what to do. 我不知道汤姆会告诉我们该怎么做 CC-BY 2.0 (France) Attribution: tatoeba.org #6338255 (CK) & #8746380 (cxpadonis) +I didn't trust Tom and he didn't trust me, either. 我不信任汤姆而且汤姆也不信任我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6552748 (CK) & #6553018 (butterflywinds) +I don't think I've ever made any serious mistakes. 我认为我没犯任何严重的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #4497415 (CK) & #5945144 (verdastelo9604) +I don't think that any more students want to come. 我觉得不会有更多学生想来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7235772 (CK) & #8886664 (crescat) +I don't want to hear any more of your complaining. 我不想再听你抱怨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2122 (CK) & #396369 (fucongcong) +I find that it's typical for him to come too late. 我發現他就是會很晚才來這樣的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #818075 (Cindrogriza) & #818112 (Martha) +I had no idea it would put you to so much trouble. 我一点都不知道这会给你带来那么多问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #54758 (CK) & #334084 (fucongcong) +I hate when other people make me wait a long time. 我讨厌别人让我等很久。 CC-BY 2.0 (France) Attribution: tatoeba.org #476246 (morganlmallory) & #476213 (fucongcong) +I have a friend whose father is a famous novelist. 我有一位父亲是著名小说家的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #250004 (CK) & #5655344 (verdastelo9604) +I have nothing to say with regard to that problem. 对于这个问题我无可奉告。 CC-BY 2.0 (France) Attribution: tatoeba.org #43753 (CM) & #4463248 (yuiyu) +I have to get to sleep! I've got classes tomorrow. 我必须去睡觉了!我明天早上有课。 CC-BY 2.0 (France) Attribution: tatoeba.org #328536 (fcbond) & #8677705 (crescat) +I have to take the book back to the library today. 我今天必須把書還給圖書館。 CC-BY 2.0 (France) Attribution: tatoeba.org #1112535 (futurulus) & #738476 (Martha) +I have two dogs. One is white and the other black. 我有两条狗。一条是白色的,另一条是黑色的。 CC-BY 2.0 (France) Attribution: tatoeba.org #72776 (CK) & #349639 (fucongcong) +I hope he'll be able to come! I'd like to see him. 我希望他能來!我想見他。 CC-BY 2.0 (France) Attribution: tatoeba.org #2471 (Eldad) & #874740 (Martha) +I know it's time to go, but I want to stay longer. 我知道該走了,但我想留久一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #2376077 (CK) & #2638692 (cienias) +I know the boy who is sitting closest to the door. 我认识那个坐得最靠近门的男孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #39070 (CK) & #333419 (fucongcong) +I shot the horse because it had trouble breathing. 我枪杀了那匹马,因为他已呼吸困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #4756043 (garborg) & #4638680 (yuiyu) +I told her not to let go of the rope, but she did. 我叫她不要松开绳子,但是她做了。 CC-BY 2.0 (France) Attribution: tatoeba.org #261165 (CK) & #346063 (fucongcong) +I took it for granted that he would keep his word. 我理所當然地認為他會履行諾言。 CC-BY 2.0 (France) Attribution: tatoeba.org #301959 (CK) & #781440 (Martha) +I took it for granted that he would pass the exam. 我理所当然地觉得,他会通过考试。 CC-BY 2.0 (France) Attribution: tatoeba.org #259967 (CK) & #7774730 (jiangche) +I want to go with a friend to Hokkaido next month. 我想下个月和一个朋友去北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #1265231 (yifen238) & #470988 (fucongcong) +I was watching television when the telephone rang. 电话响的时候,我在看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #279255 (Eldad) & #464949 (fucongcong) +I will wait for you in front of the radio station. 我會在電台前等你。 CC-BY 2.0 (France) Attribution: tatoeba.org #321012 (CK) & #775450 (Martha) +I'm afraid the job I've got for you won't be easy. 我恐怕我給你找的工作不輕鬆。 CC-BY 2.0 (France) Attribution: tatoeba.org #70633 (CM) & #6109328 (verdastelo9604) +I'm not the only one who thinks Tom is overweight. 觉得汤姆肥的人不止我一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537556 (CK) & #8777539 (crescat) +I've already told Tom he can't go to Mary's party. 我已經告訴湯姆他不能去瑪麗的聚會了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3089568 (CK) & #6197289 (verdastelo9604) +I've been coming to work one train earlier lately. 我已經搭了最近比較早一點的火車來上班。 CC-BY 2.0 (France) Attribution: tatoeba.org #243801 (CM) & #793975 (Martha) +If it were not for your help, I could not succeed. 沒有你的幫忙,我無法達成。 CC-BY 2.0 (France) Attribution: tatoeba.org #30867 (CM) & #4071839 (egg0073) +If you can't make it, call us as soon as possible. 如果你做不到,儘快連絡我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #325019 (CK) & #873441 (Martha) +If you really want to know, why don't you ask Tom? 如果你真的想知道的话,为什么不问一下汤姆呢? CC-BY 2.0 (France) Attribution: tatoeba.org #2042961 (CK) & #8589626 (tianblr) +If you're not listening to the radio, turn it off. 要是你不在听广播的话,就关掉它。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755075 (CK) & #4757573 (ryanwoo) +Is it all right to take pictures in this building? 我们可以在大楼里拍照吗? CC-BY 2.0 (France) Attribution: tatoeba.org #59447 (Eldad) & #343315 (fucongcong) +It cost me a thousand yen to get my bicycle fixed. 修理我的腳踏車花了我一千日圓。 CC-BY 2.0 (France) Attribution: tatoeba.org #795416 (nickyeow) & #790277 (Martha) +It is extremely hot and humid in Bali in December. 12月份巴厘岛极其炎热和潮湿。 CC-BY 2.0 (France) Attribution: tatoeba.org #35033 (CK) & #787169 (fucongcong) +It is not necessary for us to attend this lecture. 我們沒有必要出席這個講座。 CC-BY 2.0 (France) Attribution: tatoeba.org #785434 (hrin) & #785299 (Martha) +It is true that she is pretty, but she is selfish. 她确实很漂亮,但她很自私。 CC-BY 2.0 (France) Attribution: tatoeba.org #21690 (Eldad) & #346472 (fucongcong) +It sounds as if he were to blame for the disaster. 听起来好像他是这场灾难的罪魁祸首。 CC-BY 2.0 (France) Attribution: tatoeba.org #42619 (CM) & #866231 (kooler) +It was raining heavily when I got up this morning. 我今天早上起来的时候雨下得很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #62594 (CK) & #335505 (fucongcong) +It's a risk that Tom and I aren't willing to take. 我和汤姆都不愿意冒这个险 CC-BY 2.0 (France) Attribution: tatoeba.org #6662192 (CK) & #8743616 (cxpadonis) +It's getting dark. I wonder if it's going to rain. 天变暗了。我不知道是不是要下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #4287888 (CK) & #5949282 (verdastelo9604) +It's two-hour drive from here to my uncle's house. 从这里坐车,要花两个小时才能到我叔叔家。 CC-BY 2.0 (France) Attribution: tatoeba.org #62083 (CK) & #1313482 (vicch) +Japan is confronted with severe economic problems. 日本正面臨著嚴重的經濟問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #281527 (CM) & #777721 (Martha) +Jupiter is the largest planet in the Solar System. 木星是太陽系中最大的行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #499549 (blay_paul) & #4265892 (egg0073) +Many TV programs have a bad influence on children. 許多電視節目對兒童有不良的影響。 CC-BY 2.0 (France) Attribution: tatoeba.org #274785 (CK) & #887837 (Martha) +Mary placed her baby in a car seat for the flight. 航程中瑪麗把她的寶寶放在嬰兒汽車座椅上。 CC-BY 2.0 (France) Attribution: tatoeba.org #681735 (Source_VOA) & #781425 (Martha) +My business has at last gotten on the right track. 我的生意终于走上了正轨。 CC-BY 2.0 (France) Attribution: tatoeba.org #250999 (U2FS) & #332538 (fucongcong) +My business has at last gotten on the right track. 我的生意終於上了軌道。 CC-BY 2.0 (France) Attribution: tatoeba.org #250999 (U2FS) & #772355 (Martha) +My sister has made remarkable progress in English. 我妹妹的英语有了明显的进步。 CC-BY 2.0 (France) Attribution: tatoeba.org #245596 (CK) & #791512 (fucongcong) +My wife buys vegetables from a supermarket nearby. 我老婆在附近的超市买蔬菜。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162665 (FeuDRenais) & #2143943 (ydcok) +Only one little boy survived the traffic accident. 这次交通事故中只有一个小男孩幸存了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #73117 (CM) & #487963 (biglion) +People are more educated now than they used to be. 现在的人教育程度比以前高得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #239588 (CK) & #332680 (fucongcong) +Professional writers do not have a regular income. 專職作家沒有固定的收入。 CC-BY 2.0 (France) Attribution: tatoeba.org #742941 (eastasiastudent) & #742940 (egg0073) +She always lets her children do what they want to. 她總是讓自己的小孩做自己想做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #310427 (CK) & #1243802 (tsayng) +She came to Tokyo when she was eighteen years old. 她18岁的时候来到东京。 CC-BY 2.0 (France) Attribution: tatoeba.org #464656 (CK) & #1397135 (mtdot) +She helped her father with the work in the garden. 她帮她爸爸干了花园里的活。 CC-BY 2.0 (France) Attribution: tatoeba.org #316803 (CK) & #333539 (fucongcong) +She told me that her mother had bought it for her. 她告诉我她妈妈买给她了。 CC-BY 2.0 (France) Attribution: tatoeba.org #310018 (CK) & #334038 (fucongcong) +She wants to move out and find a place of her own. 她想搬出去,找個屬於自己的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #317583 (CM) & #3149498 (cienias) +She waved at me before she got on board the plane. 她上飞机前,给我招了招手。 CC-BY 2.0 (France) Attribution: tatoeba.org #316595 (CS) & #333427 (fucongcong) +Sleep deprivation increases risk of heart attacks. 睡眠不足增加心臟病發作的危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #327747 (CK) & #797071 (Martha) +That wasn't the main reason Tom needed to do that. 这不是汤姆要做那件事的主要原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #6225936 (CK) & #8719716 (ZeroAurora) +The artist who illustrated this book is very good. 給這本書畫插畫的畫家很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #2267953 (_undertoad) & #6105226 (verdastelo9604) +The assignment took me longer than I had expected. 我用了比我预期更长的时间来完成作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #46686 (CK) & #336492 (fucongcong) +The boy who lives next door often comes home late. 隔壁的男孩常常晚回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #325937 (CK) & #3516407 (egg0073) +The boy who lives next door often comes home late. 住在隔壁的男孩常常很晚回来。 CC-BY 2.0 (France) Attribution: tatoeba.org #325937 (CK) & #3516408 (egg0073) +The legal system in America is the world's finest. 美國的司法制度是世界上最好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #681338 (Source_VOA) & #778744 (Martha) +The longer I stayed in Paris, the more I liked it. 在巴黎待得越久,我就越喜欢巴黎。 CC-BY 2.0 (France) Attribution: tatoeba.org #255430 (CK) & #1423332 (sadhen) +The plane was three hours late due to bad weather. 由于天气不好,飞机迟到了3小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #386685 (Mouseneb) & #346755 (fucongcong) +The problem is who is going to tell him the truth. 問題是誰要告訴他真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #323873 (CK) & #6058609 (verdastelo9604) +The river that flows through London is the Thames. 流经伦敦的河是泰晤士河。 CC-BY 2.0 (France) Attribution: tatoeba.org #29253 (CK) & #1416267 (sadhen) +The talks will deal with the problem of pollution. 这场谈论即将对污染问题展开讨论。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163176 (Source_VOA) & #2581516 (fenfang557) +The volcano erupted suddenly, killing many people. 火山突然喷发,造成了多人死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #49234 (CK) & #8938668 (crescat) +There is no admission fee for children under five. 五岁以下的小孩票价全面。 CC-BY 2.0 (France) Attribution: tatoeba.org #72520 (CK) & #1426516 (sadhen) +There was no one in the room besides Tom and Mary. 除了汤姆和玛丽,房间里没有人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1030029 (CK) & #5624957 (verdastelo9604) +There was nothing on the radio about the accident. 電台沒有提到這個事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #4284624 (seltsameseeds) & #766812 (Martha) +There's a possibility that you'll have to do that. 你有可能不得不那么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7221806 (CK) & #8969850 (WilsonWong) +They called in a doctor because the child was ill. 他們打電話給醫生因為這個孩子生病了。 CC-BY 2.0 (France) Attribution: tatoeba.org #245868 (kebukebu) & #760936 (Martha) +They nominated Calvin Coolidge for vice president. 他们提名卡尔文•柯立芝为副总统。 CC-BY 2.0 (France) Attribution: tatoeba.org #802664 (Source_VOA) & #5640773 (verdastelo9604) +This is the most massive structure I've ever seen. 这是我所见过的最大型的构造了。 CC-BY 2.0 (France) Attribution: tatoeba.org #9001354 (CK) & #333573 (fucongcong) +Tom and Mary are studying together in the library. 湯姆和瑪麗在圖書館一起學習。 CC-BY 2.0 (France) Attribution: tatoeba.org #5815957 (Hybrid) & #6151303 (verdastelo9604) +Tom can't go out because he has a lot of homework. 汤姆因为有很多作业不能外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026773 (CK) & #5965713 (verdastelo9604) +Tom doesn't have a good French-English dictionary. Tom沒有一本好的法英字典。 CC-BY 2.0 (France) Attribution: tatoeba.org #3962708 (JSakuragi) & #3739115 (egg0073) +Tom had a hunch that Mary was seeing someone else. 汤姆预感到玛丽在见别人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093877 (CK) & #1397120 (mtdot) +Tom has made up his mind to go to Boston to study. 湯姆已經下定決心要去波士頓唸書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025356 (CK) & #4805778 (umidake) +Tom is wearing the same clothes he wore yesterday. 汤姆穿着跟昨天穿的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #2639987 (CK) & #5931788 (verdastelo9604) +Tom sat on that park bench for nearly three hours. 汤姆在公园的长椅上坐了将近三个小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #2639974 (CK) & #8795319 (slo_oth) +Tom should have handled the situation differently. 汤姆应该用别的方式处理这状况。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092930 (CK) & #5780591 (verdastelo9604) +Tom told Mary that it would probably snow all day. 汤姆告诉玛丽雪可能会下一整天。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027905 (CK) & #7772590 (jiangche) +Tom told me he'd give me that book if I wanted it. 汤姆说过,如果我想要的话他可以把这本书给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #7218191 (CK) & #8926995 (crescat) +Tom told me that he won't come to school tomorrow. 汤姆告诉我他明天不来上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761957 (CK) & #4764574 (ryanwoo) +Tom wants a computer small enough to easily carry. 汤姆想要个小得易于携带的电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033950 (CK) & #5663586 (verdastelo9604) +Tom was so drunk that he didn't even recognize me. 汤姆醉得连我都认不出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #5603278 (marcj794) & #8553154 (slo_oth) +Tom was the first to arrive and the last to leave. 湯姆最先來,最後走。 CC-BY 2.0 (France) Attribution: tatoeba.org #5384342 (Hybrid) & #6065355 (verdastelo9604) +Tom wouldn't dare show his face around here again. 汤姆不敢再到这里露面。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757140 (CK) & #4757247 (ryanwoo) +Two men are checking on what's wrong with the car. 两个男人在检查汽车出了什么故障。 CC-BY 2.0 (France) Attribution: tatoeba.org #877959 (CK) & #1415828 (sadhen) +We are sorry we are unable to accept your request. 很抱歉,我们不能接受你的要求。 CC-BY 2.0 (France) Attribution: tatoeba.org #54300 (CK) & #334200 (fucongcong) +We should tell children how to protect themselves. 我们应该告诉孩子怎么保护自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #263070 (CK) & #333347 (fucongcong) +We woke up very early in order to see the sunrise. 我们起得很早为了看到日出。 CC-BY 2.0 (France) Attribution: tatoeba.org #901140 (itsthejazzkid) & #463930 (fucongcong) +We've got to do something about this problem soon. 我们要快点处理这问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #4013254 (CK) & #5637368 (verdastelo9604) +What would you do if you had ten thousand dollars? 如果你有一万美元,你想做什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #1426494 (CK) & #1426521 (sadhen) +When I hear that song, I remember my younger days. 每次听到这首歌,都会让我回忆起自己年轻的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #388361 (CK) & #8742128 (crescat) +When was the last time you spent time on Facebook? 你上一次用Facebook是什麼時候? CC-BY 2.0 (France) Attribution: tatoeba.org #1748130 (Amastan) & #5414909 (egg0073) +You are no better at remembering things than I am. 你记事情的能力并不比我好多少。 CC-BY 2.0 (France) Attribution: tatoeba.org #4908 (CK) & #1778305 (sadhen) +You don't seem to be as afraid as Tom seems to be. 你似乎并不像汤姆看起来那样害怕 CC-BY 2.0 (France) Attribution: tatoeba.org #6662995 (CK) & #8750755 (cxpadonis) +You look the way your father did thirty years ago. 你看上去就像是三十年前你父親的樣子。 CC-BY 2.0 (France) Attribution: tatoeba.org #16822 (Swift) & #775857 (Martha) +You should be careful not to become overconfident. 你要注意不要太自信。 CC-BY 2.0 (France) Attribution: tatoeba.org #1409581 (CK) & #8936304 (crescat) +You should know better than to ask a lady her age. 你應該知道不要問小姐的年齡。 CC-BY 2.0 (France) Attribution: tatoeba.org #8861 (CK) & #775590 (Martha) +You should read a lot of books while you're young. 當你年輕的時候, 你應該多讀點兒書。 CC-BY 2.0 (France) Attribution: tatoeba.org #568403 (CK) & #760845 (Martha) +You should read a lot of books while you're young. 应该趁年轻多读点书。 CC-BY 2.0 (France) Attribution: tatoeba.org #568403 (CK) & #812234 (fucongcong) +You shouldn't talk back to your parents like that. 你不應該對你父母那樣頂嘴。 CC-BY 2.0 (France) Attribution: tatoeba.org #16796 (CK) & #775849 (Martha) +You want to be excused from doing that, don't you? 你想通过做那件事而得到原谅是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #6232650 (CK) & #8743655 (cxpadonis) +You'd better go to see your family doctor at once. 你最好立刻去看你的家庭醫生。 CC-BY 2.0 (France) Attribution: tatoeba.org #16655 (CK) & #775822 (Martha) +You'll find it difficult to meet her requirements. 你会发现难以满足她。 CC-BY 2.0 (France) Attribution: tatoeba.org #1481088 (weihaiping) & #332795 (fucongcong) +You're working too hard. Take it easy for a while. 你工作太勤奋了。休息一会吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396422 (CK) & #1862598 (sadhen) +"Have you seen my cell phone?" "It's on the table." "你有看到我的手機嗎?" "它在桌子上。" CC-BY 2.0 (France) Attribution: tatoeba.org #644918 (CK) & #793217 (Martha) +"Where have you been?" "I've been to the barber's." 你去哪儿了?我去了理发店。 CC-BY 2.0 (France) Attribution: tatoeba.org #73840 (CK) & #1446798 (asosan) +Academic fraud is more common than you might think. 学术造假比你想象的普遍。 CC-BY 2.0 (France) Attribution: tatoeba.org #3070175 (CK) & #5630453 (verdastelo9604) +All of us would like to get rid of nuclear weapons. 我們所有的人都想除掉核子武器。 CC-BY 2.0 (France) Attribution: tatoeba.org #262941 (CK) & #830484 (Martha) +All you have to do is say the word, and I'll leave. 你只要说句话,我就走。 CC-BY 2.0 (France) Attribution: tatoeba.org #727146 (CM) & #5794114 (verdastelo9604) +Are you saying you don't want to go to Tom's party? 你的意思是你不想去汤姆的派对? CC-BY 2.0 (France) Attribution: tatoeba.org #2033970 (CK) & #4473144 (yuiyu) +As far as I'm concerned, she's a complete stranger. 她对我来说是一个完全陌生的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230673 (alec) & #334120 (fucongcong) +As far as I'm concerned, this coffee is too strong. 这咖啡对我来说太浓了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1540910 (SHamp) & #463907 (fucongcong) +As soon as he sat down, he picked up the telephone. 他一坐下,就拿起了電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #296694 (CK) & #6075679 (verdastelo9604) +Because his salary is low, he can't buy that house. 因為他的薪水太低,他買不起那棟房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #814922 (CK) & #816803 (Martha) +Can you imagine what the 21st century will be like? 你能想象21世紀會是甚麼樣嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #72947 (CM) & #6623175 (verdastelo9604) +China is about twenty-five times as large as Japan. 中国的版图大概是日本的二十五倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #277499 (CM) & #1790169 (sadhen) +Do not fear the unexpected, but be prepared for it. 不要害怕意外,但要有準備。 CC-BY 2.0 (France) Attribution: tatoeba.org #700114 (U2FS) & #881724 (Martha) +Don't speak unless you have something worth saying. 除非你有什么值得说的话要说,否则就别吭声。 CC-BY 2.0 (France) Attribution: tatoeba.org #239705 (CK) & #2017457 (sadhen) +Driving on a slippery road can lead to a car wreck. 在光滑的路上开车会导致车祸。 CC-BY 2.0 (France) Attribution: tatoeba.org #682500 (Source_VOA) & #816518 (fucongcong) +Elephants are the largest land animals alive today. 大象是如今现存的陆生动物里最大的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2184 (Zifre) & #8835114 (crescat) +Everyone except Tom knew he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7507604 (CK) & #9012194 (jacintoo) +For some reason the microphone didn't work earlier. 剛才我的麥克風沒起作用,不知道為什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #328546 (fcbond) & #18 (fucongcong) +He has no right to interfere in our family affairs. 他无权干涉我们的家庭事务。 CC-BY 2.0 (France) Attribution: tatoeba.org #297389 (CK) & #8635806 (slo_oth) +He looked in all directions, but didn't see anyone. 他看了看四周,但沒看見任何人。 CC-BY 2.0 (France) Attribution: tatoeba.org #777952 (FeuDRenais) & #777949 (Martha) +He postponed leaving for Hokkaido until next month. 他延遲到下個月去北海道。 CC-BY 2.0 (France) Attribution: tatoeba.org #303726 (CK) & #818212 (Martha) +He said he did not enter the room, which was a lie. 他说他没有进房间,那是骗人的。 CC-BY 2.0 (France) Attribution: tatoeba.org #303393 (CK) & #333213 (fucongcong) +He went to Italy for the purpose of studying music. 他去義大利的目的是學習音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #294197 (CK) & #788718 (Martha) +He's getting along well with all of his classmates. 他和他所有的同学相处融洽。 CC-BY 2.0 (France) Attribution: tatoeba.org #726479 (tatomeimei) & #334043 (fucongcong) +Her parents can't help worrying about her injuries. 她的父母不能不担心她的伤势。 CC-BY 2.0 (France) Attribution: tatoeba.org #395032 (CK) & #2394593 (fenfang557) +How long has it been since you saw your girlfriend? 你跟你的女朋友见面以来有多久了? CC-BY 2.0 (France) Attribution: tatoeba.org #3600717 (karloelkebekio) & #5576821 (verdastelo9604) +How many different kinds of pizzas are on the menu? 菜單上有多少種比薩? CC-BY 2.0 (France) Attribution: tatoeba.org #2912071 (CK) & #6149016 (verdastelo9604) +I am surprised that your family has a Japanese car. 我很惊讶,你家居然有辆日本车。 CC-BY 2.0 (France) Attribution: tatoeba.org #64246 (CK) & #7772051 (jiangche) +I couldn't prevent Tom from eating all the cookies. 我阻止不了汤姆把饼干全吃了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2951966 (CK) & #5694522 (verdastelo9604) +I discovered that speaking English was pretty easy. 我發覺說英語很簡單。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149846 (FeuDRenais) & #790647 (Martha) +I don't even want to think about what could happen. 我甚至不想去想會發生什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2033978 (CK) & #5401619 (egg0073) +I don't use taxis unless it's absolutely necessary. 如无必要我也不会打的。 CC-BY 2.0 (France) Attribution: tatoeba.org #272637 (CK) & #8591274 (easononizuka) +I find it difficult to express my meaning in words. 我覺得很難用言語表達我的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #250821 (Zifre) & #772170 (Martha) +I go to the office by bicycle except on rainy days. 除了雨天,我都是骑车去上班的。 CC-BY 2.0 (France) Attribution: tatoeba.org #26717 (CK) & #332827 (fucongcong) +I like rugby, but not as much as I like basketball. 我喜欢橄榄球,但不像我喜欢篮球那么喜欢。 CC-BY 2.0 (France) Attribution: tatoeba.org #6796868 (CK) & #8605833 (slo_oth) +I thought I told you to stay away from my computer. 我说过让你离我的电脑远一点的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1961281 (CK) & #8929171 (crescat) +I understand that you feel uneasy, but don't worry. 我知道你不自在,但别急。 CC-BY 2.0 (France) Attribution: tatoeba.org #1316155 (CK) & #5640766 (verdastelo9604) +I want a boat that will take me far away from here. 我想要一艘船带我远离这里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1526 (Zifre) & #333906 (fucongcong) +I wanted to ask Tom how long he had lived in India. 我想问汤姆他在印度生活了多久。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027488 (CK) & #1361956 (sadhen) +I was wondering if you were going to show up today. 我在想你今天会不会来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1464 (CK) & #334925 (fucongcong) +I wouldn't ask this of you if it weren't important. 如果不是它很重要,我不會問你。 CC-BY 2.0 (France) Attribution: tatoeba.org #813898 (darinmex) & #816943 (Martha) +I'd like to exchange this shirt I bought yesterday. 我想去換我昨天買的這件襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #7558283 (CK) & #768282 (Martha) +I'm disappointed that I wasn't able to go with her. 我很失望我沒能和她一起去。 CC-BY 2.0 (France) Attribution: tatoeba.org #827948 (CK) & #828689 (Martha) +I'm on my way to meet Tom at the station right now. 我现在在去车站见汤姆的路上。 CC-BY 2.0 (France) Attribution: tatoeba.org #4132521 (CK) & #5780585 (verdastelo9604) +I've been told that you're a very competent person. 有人說你是個很有能力的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3699690 (CK) & #6148394 (verdastelo9604) +I've done bad things that I should be punished for. 我做了該受罰的壞事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2359449 (CK) & #6064711 (verdastelo9604) +If there was no sun, all the animals would be dead. 如果没有太阳,那所有生物都会死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1498018 (nevergetup) & #835611 (fucongcong) +If you can't have children, you could always adopt. 如果你不能有孩子,你总能领养。 CC-BY 2.0 (France) Attribution: tatoeba.org #1836 (Eldad) & #502779 (fucongcong) +Is it true that Tom wants to paint his house green? 汤姆想把房子漆成绿色,是真的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2953001 (CK) & #5650480 (verdastelo9604) +It is believed that whales have their own language. 人们相信鲸有他们自己的语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #238449 (CM) & #333343 (fucongcong) +It is impossible to master English in a short time. 不可能短时间内学会英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #26205 (CK) & #7774784 (jiangche) +It isn't anything like as cold as it was yesterday. 今天沒有像昨天那麼冷。 CC-BY 2.0 (France) Attribution: tatoeba.org #242846 (CM) & #801547 (Martha) +It took a long time to take in what she was saying. 花了很久才能听懂她在说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #308270 (CM) & #5091382 (mirrorvan) +It will be snowing when we arrive at Shiga Heights. 我们到达志贺高原时会下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #247255 (CM) & #5551142 (verdastelo9604) +It would take forever for me to explain everything. 要都解释的话,需要一辈子的时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1347 (Zifre) & #501325 (fucongcong) +It's been a long time since we last saw each other. 真是好久不见啊 CC-BY 2.0 (France) Attribution: tatoeba.org #1448397 (CK) & #4517829 (yuiyu) +It's been hot this month, but today's an exception. 这个月一直都很热,但今天是个例外。 CC-BY 2.0 (France) Attribution: tatoeba.org #242024 (CM) & #1235610 (sunnywqing) +It's fun to learn slang words in foreign languages. 学习外语里的俚语很有趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #475757 (darinmex) & #8776003 (crescat) +Life in prison is worse than the life of an animal. 监狱生活比做畜牲还不如。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149 (blay_paul) & #345894 (fucongcong) +Many schools are closed today because of the storm. 今天许多学校因为风暴停课。 CC-BY 2.0 (France) Attribution: tatoeba.org #4662962 (CK) & #5637365 (verdastelo9604) +Many young people in Japan eat bread for breakfast. 許多日本的年輕人吃麵包當作早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #274927 (Shiawase) & #3322676 (cienias) +Mercury is the smallest planet in our solar system. 水星是我們的太陽系中最小的行星。 CC-BY 2.0 (France) Attribution: tatoeba.org #3955439 (Hybrid) & #5419050 (egg0073) +More money for education will spur economic growth. 更多投資在教育的錢將會刺激經濟成長。 CC-BY 2.0 (France) Attribution: tatoeba.org #19132 (Zifre) & #772166 (Martha) +People can easily tell the difference between them. 人們可以很容易地看出其中的差別。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159312 (emmettricks) & #769612 (Martha) +Please wait for me at the entrance of the building. 请在建筑的入口处等我。 CC-BY 2.0 (France) Attribution: tatoeba.org #48320 (CK) & #1426560 (sadhen) +Please write to me about conditions at your school. 请写信告诉我你们学校的情况。 CC-BY 2.0 (France) Attribution: tatoeba.org #50765 (CM) & #332602 (fucongcong) +President Lincoln was what we call a self-made man. 林肯總統就是我們所謂白手起家的男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #29643 (CM) & #2480491 (tsayng) +Research on the causes of cancer is very expensive. 有關癌症成因的研究耗費頗巨。 CC-BY 2.0 (France) Attribution: tatoeba.org #681911 (Source_VOA) & #2511405 (tsayng) +She can sing better than anybody else in her class. 她唱歌唱得比班上任何一個人好。 CC-BY 2.0 (France) Attribution: tatoeba.org #310755 (CK) & #1225643 (tsayng) +She twisted her ankle while she was doing exercise. 她锻炼时扭伤了脚踝。 CC-BY 2.0 (France) Attribution: tatoeba.org #1423583 (CK) & #5555536 (verdastelo9604) +She was at a loss for words to express her feeling. 她已经无法用语言表达她的感觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #314649 (CM) & #2777978 (fenfang557) +She wrote him a long letter, but he didn't read it. 她给他写了一封长信,但是他没有看。 CC-BY 2.0 (France) Attribution: tatoeba.org #887606 (CK) & #5091681 (mirrorvan) +Stop getting yourself worked up over little things. 不要让自己因为一些小事而烦躁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742931 (AlanF_US) & #8744897 (slo_oth) +Stop getting yourself worked up over little things. 不要让自己因为一些小事就方寸大乱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8742931 (AlanF_US) & #8744899 (slo_oth) +Thanks for accepting my friend request on Facebook. 謝謝你接受我Facebook的交友邀請。 CC-BY 2.0 (France) Attribution: tatoeba.org #1983542 (Eldad) & #5414927 (egg0073) +That child may have been kidnapped on his way home. 那个孩子可能在回家的路上被绑架了。 CC-BY 2.0 (France) Attribution: tatoeba.org #47494 (CK) & #335102 (fucongcong) +That was the first time that I'd seen Tom so angry. 那是我第一次见到汤姆如此生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #7185496 (CK) & #4815183 (McMeao) +The Amazon is fed by a large number of tributaries. 亚马逊河有很多支流。 CC-BY 2.0 (France) Attribution: tatoeba.org #67740 (U2FS) & #8739379 (crescat) +The Cold War ended when the Soviet Union collapsed. 冷战以苏联解体结束。 CC-BY 2.0 (France) Attribution: tatoeba.org #326069 (CK) & #6005574 (verdastelo9604) +The United States is abundant in natural resources. 美国的自然资源很丰富。 CC-BY 2.0 (France) Attribution: tatoeba.org #320221 (CM) & #334791 (fucongcong) +The equator divides the globe into two hemispheres. 赤道把地球分为两个半球。 CC-BY 2.0 (France) Attribution: tatoeba.org #272449 (CK) & #746060 (fucongcong) +The job looked quite simple, but it took me a week. 這份工作看起來很簡單,但它花了我一個星期。 CC-BY 2.0 (France) Attribution: tatoeba.org #47614 (CK) & #839155 (Martha) +The people of London are very proud of this bridge. 倫敦人對這座橋感到非常自豪。 CC-BY 2.0 (France) Attribution: tatoeba.org #29282 (CK) & #5363941 (egg0073) +The physician prescribed his patient some medicine. 医生给他的病人开了一些药。 CC-BY 2.0 (France) Attribution: tatoeba.org #27931 (CK) & #8650501 (slo_oth) +The police assembled a lot of evidence against him. 警察收集了很多对他不利的证据。 CC-BY 2.0 (France) Attribution: tatoeba.org #238343 (CK) & #784475 (fucongcong) +The sky today is the bluest that I've ever seen it. 今天的天空是我看過最藍的天空。 CC-BY 2.0 (France) Attribution: tatoeba.org #672237 (kebukebu) & #760822 (Martha) +The teacher granted me permission to go home early. 老師允許我提前回家。 CC-BY 2.0 (France) Attribution: tatoeba.org #273032 (CK) & #6092785 (xjjAstrus) +The things he says are not the least bit important. 他说的话根本毫无意义。 CC-BY 2.0 (France) Attribution: tatoeba.org #995248 (NickC) & #335127 (fucongcong) +The truth is that nothing is totally true or false. 真相是沒有甚麼完全正確或錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #1358806 (Dejo) & #6623190 (verdastelo9604) +The weather forecast says it will be fine tomorrow. 根據氣象預報,明天會是晴天。 CC-BY 2.0 (France) Attribution: tatoeba.org #278900 (CK) & #3322732 (cienias) +There is a castle in the background of the picture. 图片的背景是一座城堡。 CC-BY 2.0 (France) Attribution: tatoeba.org #49018 (CK) & #1426555 (sadhen) +There's a bottle of white wine in the refrigerator. 冰箱里有一瓶白葡萄酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #2712539 (CK) & #6098446 (verdastelo9604) +This company is listed on the Paris stock exchange. 这家公司在巴黎证券交易所上市了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159921 (tinytina) & #805223 (fucongcong) +This guidebook might be of use to you on your trip. 这本导游册子或许会对你的旅行有帮助。 CC-BY 2.0 (France) Attribution: tatoeba.org #325532 (Eldad) & #1502350 (fenfang557) +To the best of my knowledge, the rumor is not true. 据我所知,这个谣言不是真的。 CC-BY 2.0 (France) Attribution: tatoeba.org #471347 (CM) & #867740 (kooler) +Tom can't decide whether to buy a Toyota or a Ford. 汤姆不能决定买丰田还是福特。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026804 (CK) & #5576771 (verdastelo9604) +Tom didn't think that anybody would recognize Mary. 汤姆不认为有人会认出玛丽。 CC-BY 2.0 (France) Attribution: tatoeba.org #6430553 (CK) & #7795215 (xinqian94) +Tom is from Australia and Mary is from New Zealand. 汤姆来自澳大利亚,玛丽来自新西兰。 CC-BY 2.0 (France) Attribution: tatoeba.org #7791594 (CK) & #8739392 (crescat) +Tom knows that I want to leave as soon as possible. 湯姆知道我想盡早離開。 CC-BY 2.0 (France) Attribution: tatoeba.org #7176483 (CK) & #6080289 (verdastelo9604) +Tom left his sunglasses on the dashboard of my car. 汤姆把他的太阳镜留在我的车的仪表板上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6663892 (CK) & #8744628 (slo_oth) +Tom probably knows someone who can teach us French. 湯姆應該知道有誰可以教我們法文。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745788 (CK) & #2771056 (cienias) +Tom says that Mary definitely won't accept the job. 湯姆說瑪麗絕不會接受這工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092983 (CK) & #6148399 (verdastelo9604) +Tom told me that I shouldn't go out alone at night. 汤姆跟我说我不应该晚上一个人出门。 CC-BY 2.0 (France) Attribution: tatoeba.org #5842401 (CK) & #5842416 (59) +Tom told me that he doesn't like carbonated drinks. 汤姆告诉我他不喜欢碳酸饮料。 CC-BY 2.0 (France) Attribution: tatoeba.org #4016130 (CK) & #5694473 (verdastelo9604) +Tom very often takes a nap for an hour after lunch. 汤姆很经常在午饭后小憩一小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024039 (CK) & #8635474 (slo_oth) +Tom was advised by Mary not to go there by himself. 玛丽建议汤姆不要独自去。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027796 (CK) & #5670857 (verdastelo9604) +Up to now, how many books do you think you've read? 到目前为止,你认为你阅读过多少书籍? CC-BY 2.0 (France) Attribution: tatoeba.org #1505968 (weihaiping) & #1505473 (fenfang557) +Visiting all the tourist sights really wore me out. 參觀所有觀光勝地累壞了我。 CC-BY 2.0 (France) Attribution: tatoeba.org #20914 (Zifre) & #1238320 (tsayng) +Water is liquid. When it freezes, it becomes solid. 水是液体。冻起来就成了固体。 CC-BY 2.0 (France) Attribution: tatoeba.org #270794 (CM) & #787295 (fucongcong) +We all wondered why she had dumped such a nice man. 我們都想知道她為什麼甩了這麼好的一個男人。 CC-BY 2.0 (France) Attribution: tatoeba.org #23071 (Shiawase) & #917770 (Martha) +When I entered the room, she was playing the piano. 当我进入那个房间的时候,她正在弹钢琴。 CC-BY 2.0 (France) Attribution: tatoeba.org #483690 (CK) & #8690131 (crescat) +With a little more effort, he would have succeeded. 如果他当时再努力一点,他就成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31240 (CK) & #333334 (fucongcong) +With her help, my French improved little by little. 在她的帮助下,我的法语逐渐进步了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309402 (CM) & #2007035 (sadhen) +You are working too hard. Take it easy for a while. 你工作得太辛苦了。放輕鬆一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #15878 (Swift) & #775650 (Martha) +You can't buy this medicine without a prescription. 那个药的话没有处方是买不到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1008018 (AOCinJAPAN) & #8700794 (crescat) +You have to study hard to catch up with your class. 你必須用功讀書趕上同學。 CC-BY 2.0 (France) Attribution: tatoeba.org #16727 (CM) & #775836 (Martha) +You must look over the contract before you sign it. 你在签字前必须察看这合同。 CC-BY 2.0 (France) Attribution: tatoeba.org #54154 (CK) & #5903476 (verdastelo9604) +You're the one who suggested that we sing together. 你是那個建議我們一起唱歌的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6339724 (CK) & #6581652 (SofiaLee) +You've been late for school more often than before. 你比以前更容易上課遲到了。 CC-BY 2.0 (France) Attribution: tatoeba.org #243869 (CM) & #1270574 (tsayng) +A beautiful woman was seated one row in front of me. 一個美麗的女人坐在我前面一排。 CC-BY 2.0 (France) Attribution: tatoeba.org #318149 (CK) & #830393 (Martha) +A caged cricket eats just as much as a free cricket. 籠子裡的蟋蟀吃得跟野生的蟋蟀一樣多。 CC-BY 2.0 (France) Attribution: tatoeba.org #646789 (kebukebu) & #761298 (Martha) +A couch potato is something that I don't want to be. 我不想成為整天泡在沙發上看電視的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #63791 (CK) & #830437 (Martha) +A drunk driver was responsible for the car accident. 喝醉的驾驶员对车祸有责任。 CC-BY 2.0 (France) Attribution: tatoeba.org #681922 (Source_VOA) & #784511 (fucongcong) +A fire broke out at the inn where they were staying. 火警發生在他們住的旅館。 CC-BY 2.0 (France) Attribution: tatoeba.org #305286 (CK) & #830450 (Martha) +All of a sudden, three dogs appeared in front of us. 突然之間,三隻狗出現在我們面前。 CC-BY 2.0 (France) Attribution: tatoeba.org #19634 (CK) & #830482 (Martha) +All of you are familiar with the truth of the story. 你們所有的人都熟悉這個故事的真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #22140 (CK) & #830485 (Martha) +At last, she gave in to him and told him the secret. 最後,她對他屈服了,並告訴了他這個秘密。 CC-BY 2.0 (France) Attribution: tatoeba.org #404163 (CK) & #865430 (Martha) +At that time, Tom was sitting between Mary and John. 在那个时候,汤姆正坐在玛丽和约翰中间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1030223 (CK) & #8831910 (crescat) +Better be the head of a cat than the tail of a lion. 寧為貓頭不為獅尾。 CC-BY 2.0 (France) Attribution: tatoeba.org #275514 (CM) & #806251 (Martha) +Could you lend me your bicycle for a couple of days? 你能把你的自行车借我两天吗? CC-BY 2.0 (France) Attribution: tatoeba.org #17100 (Dejo) & #784370 (fucongcong) +Did you know that some foxes lived on this mountain? 你知道有些狐狸住在這座山上嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #59183 (CK) & #907302 (Martha) +Do you know which deity this temple is dedicated to? 您知道这座庙宇供奉的是哪个神吗? CC-BY 2.0 (France) Attribution: tatoeba.org #58959 (CM) & #7773205 (jiangche) +Don't translate English into Japanese word for word. 不要逐字逐句的把英文翻譯成日文。 CC-BY 2.0 (France) Attribution: tatoeba.org #26204 (CK) & #811855 (Martha) +Everybody except Tom knew he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7506984 (CK) & #9012194 (jacintoo) +Flies and mosquitoes interfered with his meditation. 蒼蠅和蚊子干擾了他的冥想。 CC-BY 2.0 (France) Attribution: tatoeba.org #35498 (CK) & #889319 (Martha) +Fluency in English is a very marketable skill today. 流利的英語在今天是一種十分搶手的技能。 CC-BY 2.0 (France) Attribution: tatoeba.org #243013 (CM) & #811914 (Martha) +Foreign investors withdrew their money from America. 外国投资者从美国收回他们的钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #804365 (Source_VOA) & #805136 (fucongcong) +He called in to say he could not attend the meeting. 他打電話來說他不會參加會議了。 CC-BY 2.0 (France) Attribution: tatoeba.org #294600 (CK) & #6624667 (verdastelo9604) +He did not answer the phone, so I sent him an email. 他没有接电话,所以我给他发了封邮件。 CC-BY 2.0 (France) Attribution: tatoeba.org #1082984 (FSLian) & #461672 (fucongcong) +He has a wife and two young children to provide for. 他有一个妻子和两个孩子要养活。 CC-BY 2.0 (France) Attribution: tatoeba.org #288086 (CK) & #347040 (fucongcong) +He is not the man that he was when I first knew him. 他已经不是我最初见他那时的那个人了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297287 (CK) & #1397136 (mtdot) +He left the house without so much as saying goodbye. 他甚至没说再见就离开了家。 CC-BY 2.0 (France) Attribution: tatoeba.org #290045 (CK) & #408241 (fucongcong) +He must have said so without giving it much thought. 他一定没有多考虑就说了。 CC-BY 2.0 (France) Attribution: tatoeba.org #290413 (CM) & #5818096 (verdastelo9604) +He never gave up hope that he would reach that goal. 他從沒放棄達成那個目標的希望。 CC-BY 2.0 (France) Attribution: tatoeba.org #803333 (Source_VOA) & #1233784 (tsayng) +He pinched and scraped for many years to save money. 為了存錢他省吃儉用了許多年。 CC-BY 2.0 (France) Attribution: tatoeba.org #295463 (CM) & #793612 (Martha) +Hey, I may have no money, but I still have my pride. 嗨,我可能没钱,但我一直有我的骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #1629 (Zifre) & #501454 (fucongcong) +His brazen act of defiance almost cost him his life. 他怀疑的无耻行为差点要了他的命。 CC-BY 2.0 (France) Attribution: tatoeba.org #602278 (darinmex) & #818883 (fucongcong) +His observations are sharp, but he doesn't say much. 他的觀察是敏銳的,但他沒有說太多。 CC-BY 2.0 (France) Attribution: tatoeba.org #826854 (CK) & #827532 (Martha) +His son's criminal activities caused him great pain. 他儿子的犯罪行为给他带来了很大的痛苦。 CC-BY 2.0 (France) Attribution: tatoeba.org #274417 (CM) & #795778 (fucongcong) +How did Tom talk Mary into babysitting his children? 汤姆是怎么说服玛丽照顾他的小孩的呢? CC-BY 2.0 (France) Attribution: tatoeba.org #5842331 (CK) & #5842420 (59) +How long did you think the picnic was going to last? 你認為野餐要多長時間? CC-BY 2.0 (France) Attribution: tatoeba.org #5834645 (CK) & #6120843 (verdastelo9604) +I can't concentrate on my work because of the noise. 由于噪音,我无法集中精力工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244948 (CK) & #787537 (fucongcong) +I can't take the place of her as an English teacher. 我无法取代她做英语老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #309558 (CM) & #332503 (fucongcong) +I plan to spend the New Year's holiday in Australia. 我打算在澳大利亚过新年。 CC-BY 2.0 (France) Attribution: tatoeba.org #2950902 (CK) & #8697589 (morningstar) +I studied in the morning during the summer vacation. 我在暑假里早晨学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #256467 (CK) & #5926162 (verdastelo9604) +I suspect that they water down the beer in that pub. 我怀疑那家酒馆的啤酒兑水了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7236468 (CK) & #7773128 (jiangche) +I think we should be able to go wherever we want to. 我認為我們應該能去我們想去的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887758 (CK) & #6105307 (verdastelo9604) +I think you should do that before you go home today. 我認為你該在今天回家前做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6064187 (CK) & #6075707 (verdastelo9604) +I thought you'd be full after eating that big steak. 我觉得吃完那块大牛排你就饱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938871 (CK) & #4621032 (Yashanti) +I would like to leave this town and never come back. 我希望離開這個村子並且再也不要回來。 CC-BY 2.0 (France) Attribution: tatoeba.org #473066 (sacredceltic) & #763867 (Martha) +I wrote a letter asking him to return a bit earlier. 我写了封信,叫他早点回。 CC-BY 2.0 (France) Attribution: tatoeba.org #2160744 (FeuDRenais) & #2143998 (ydcok) +I'll provide you with all the necessary information. 我會給你所有必要的信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #1137222 (CK) & #6119432 (verdastelo9604) +I'm really sorry. I seem to have lost your umbrella. 我真的很抱歉,我好像弄丢了你的雨伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #7248518 (CK) & #847686 (fucongcong) +I'm very grateful for everything you've done for me. 非常感谢你所做的一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #995321 (NickC) & #993724 (leoyzy) +I've been wanting to see that movie for a long time. 我想看那电影想好久了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3293513 (patgfisher) & #5650459 (verdastelo9604) +If I were invisible I wouldn't have to dress myself. 若我是隱形的,就不用穿衣服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #862965 (papabear) & #3742609 (egg0073) +If you need a dictionary, I can lend you my old one. 如果你需要字典,我就把我旧的借给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795826 (sharris123) & #1324963 (vicch) +In case of an emergency, get in touch with my agent. 万一有紧急情况,联系我的代理人。 CC-BY 2.0 (France) Attribution: tatoeba.org #18803 (CK) & #336246 (fucongcong) +Is it necessary for me to explain the reason to him? 我有必要向他解释原因吗? CC-BY 2.0 (France) Attribution: tatoeba.org #284590 (CK) & #334843 (fucongcong) +It is not easy to catch a hare with your bare hands. 空手赤拳抓野兔並不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #627421 (kebukebu) & #761273 (Martha) +It's better to chill white wine before you serve it. 在你侍酒前最好先將白葡萄酒冷卻一下。 CC-BY 2.0 (France) Attribution: tatoeba.org #282576 (CK) & #775901 (Martha) +Keep your eyes closed until I tell you to open them. 闭着你的眼睛直到我告诉你睁开为止。 CC-BY 2.0 (France) Attribution: tatoeba.org #22060 (CK) & #1438444 (asosan) +Let's meet at the station at eight tomorrow morning. 明早八点车站见。 CC-BY 2.0 (France) Attribution: tatoeba.org #323184 (CK) & #4972514 (wzhd) +London, where I live, used to be famous for its fog. 我住的地方-倫敦,從前以霧聞名。 CC-BY 2.0 (France) Attribution: tatoeba.org #29277 (CK) & #5363936 (egg0073) +Lots of people in Japan are indifferent to politics. 很多日本人对政治冷淡。 CC-BY 2.0 (France) Attribution: tatoeba.org #281719 (CM) & #5640778 (verdastelo9604) +My driving instructor says I should be more patient. 我的駕駛教練說我應該更有耐心一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #19004 (Zifre) & #4797633 (umidake) +My father has already given up smoking and drinking. 我爸爸已经戒烟戒酒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319105 (CK) & #334661 (fucongcong) +My hands were shaking too much to thread the needle. 我的手抖得太厉害,没法穿针了。 CC-BY 2.0 (France) Attribution: tatoeba.org #644637 (darinmex) & #812334 (fucongcong) +None of them could understand what she was implying. 他們沒有人了解她暗示什麼。 CC-BY 2.0 (France) Attribution: tatoeba.org #305116 (eastasiastudent) & #778714 (Martha) +None of us thought he was to blame for the accident. 我們都不認為他是事故的罪魁禍首。 CC-BY 2.0 (France) Attribution: tatoeba.org #276591 (CK) & #830352 (Martha) +Parents teach their children that it's wrong to lie. 父母教育他们的孩子说谎是不好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #682502 (Source_VOA) & #816531 (fucongcong) +People should understand that the world is changing. 人应该明白世界在变。 CC-BY 2.0 (France) Attribution: tatoeba.org #2327 (Zifre) & #389825 (fucongcong) +Quite by chance, I met my old friend at the airport. 很幸运地,我在机场遇到了我的老朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #32529 (CM) & #334850 (fucongcong) +She couldn't attend that party because she was sick. 她因病不能出席会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #1409026 (CK) & #5595144 (verdastelo9604) +She drew a circle on a piece of paper with a pencil. 她用铅笔在纸上画了一个圈。 CC-BY 2.0 (France) Attribution: tatoeba.org #312721 (CK) & #866736 (kooler) +She studied abroad in order to brush up her English. 她在國外學習以便提升她的英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #312689 (CK) & #778730 (Martha) +She translated the letter from Japanese into French. 她把信从日语译成法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #311293 (CK) & #4264867 (notabene) +She waved her hand until the train was out of sight. 她挥着她的手,直到火车消失在视线之外。 CC-BY 2.0 (France) Attribution: tatoeba.org #309951 (Eldad) & #332506 (fucongcong) +She went over the list to see if her name was there. 她走過去看看她的名字是否在清單上。 CC-BY 2.0 (France) Attribution: tatoeba.org #314741 (CK) & #830382 (Martha) +Since my mother was sick, I stayed home from school. 既然母亲病了,我就待在家里没去上学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1174792 (CK) & #1694976 (sadhen) +Take your hat off when you enter a house of worship. 當你進入禮拜堂時,把你的帽子脫下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #706791 (darinmex) & #896671 (Martha) +That's nonsense. Nobody but a fool would believe it. 那是無稽之談。只有傻瓜才會相信。 CC-BY 2.0 (France) Attribution: tatoeba.org #42660 (orcrist) & #886574 (Martha) +That's the computer on which he writes his articles. 那就是那台他用来写文章的电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #408344 (Liface) & #333460 (fucongcong) +That's the same story as I heard when I was a child. 那跟當我是個孩子時所聽到的是同樣的故事。 CC-BY 2.0 (France) Attribution: tatoeba.org #42409 (CM) & #834594 (Martha) +The Internet is an invaluable source of information. 互联网是一种无法估量的信息资源。 CC-BY 2.0 (France) Attribution: tatoeba.org #65745 (CK) & #335324 (fucongcong) +The bill was passed after a hard fight in the House. 該法案在眾議院爭議後獲得通過。 CC-BY 2.0 (France) Attribution: tatoeba.org #321028 (CM) & #775481 (Martha) +The board unanimously decided to appoint her as CEO. 董事会一致决定任命她为执行总裁。 CC-BY 2.0 (France) Attribution: tatoeba.org #1477102 (weihaiping) & #805191 (fucongcong) +The company invested a lot of money in this project. 該公司在這個企劃中投入了很多錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #809927 (TomSFox) & #810019 (Martha) +The doctor advised my father to cut down on smoking. 医生建议我父亲减少吸烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #319072 (CK) & #6091813 (verdastelo9604) +The ice on the lake is too thin to bear your weight. 湖上的冰太薄了,承受不了你的重量。 CC-BY 2.0 (France) Attribution: tatoeba.org #48127 (CK) & #333758 (fucongcong) +The ship made slow progress against the strong wind. 這艘船逆風而行緩慢前進。 CC-BY 2.0 (France) Attribution: tatoeba.org #45689 (CM) & #845444 (Martha) +The situation is getting worse and worse day by day. 情况一天比一天差。 CC-BY 2.0 (France) Attribution: tatoeba.org #268510 (CM) & #332723 (fucongcong) +The students are talking about language and culture. 学生们在探讨语言和文化。 CC-BY 2.0 (France) Attribution: tatoeba.org #271820 (CK) & #1746196 (sadhen) +The town was destroyed by the flood after the storm. 小镇被暴风雨后的洪水摧毁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277888 (CM) & #336645 (fucongcong) +The wind blew too hard for them to play in the park. 风刮得太猛,他们没法在公园里玩了。 CC-BY 2.0 (France) Attribution: tatoeba.org #319665 (CM) & #333203 (fucongcong) +There's a lot of trash on the far bank of the river. 河對岸有很多的垃圾。 CC-BY 2.0 (France) Attribution: tatoeba.org #273194 (CK) & #830372 (Martha) +They guaranteed regular employment to their workers. 他們對他們的員工保證就業。 CC-BY 2.0 (France) Attribution: tatoeba.org #307689 (CK) & #801938 (Martha) +This has been the driest six months in thirty years. 這是三十年代以來最乾旱的六月。 CC-BY 2.0 (France) Attribution: tatoeba.org #885703 (Trailsend) & #885364 (Martha) +Tom and Mary admired the scenery as they held hands. 汤姆和玛丽手牵着手,一起欣赏风景。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029964 (CK) & #8798309 (crescat) +Tom and his friends played basketball all afternoon. 汤姆和朋友们打了整个下午篮球。 CC-BY 2.0 (France) Attribution: tatoeba.org #3417419 (CK) & #5780548 (verdastelo9604) +Tom could've dealt with the problem in a better way. 汤姆本可以用更好的方式处理问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678199 (CK) & #8792036 (slo_oth) +Tom donates half his salary to his favorite charity. 汤姆捐一半他的薪水给他最喜欢的慈善机构。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094238 (CK) & #8658809 (slo_oth) +Tom has contributed a lot of money to this hospital. 湯姆捐獻了很多錢給這間醫院。 CC-BY 2.0 (France) Attribution: tatoeba.org #4793943 (CK) & #4794532 (umidake) +We must take into account the fact that he is young. 我们必须考虑到他很年轻。 CC-BY 2.0 (France) Attribution: tatoeba.org #283830 (CK) & #332807 (fucongcong) +We take health for granted until illness intervenes. 我們視健康為理所當然, 直到疾病侵襲。 CC-BY 2.0 (France) Attribution: tatoeba.org #318411 (CM) & #769685 (Martha) +What do you think I should wear on my date tomorrow? 你觉得我明天约会穿什么好呢? CC-BY 2.0 (France) Attribution: tatoeba.org #4635828 (CK) & #4640140 (olive_wang) +When I hear this song, I think of you, and miss you. 當我聽到這首歌,我想起了你,並想念著你。 CC-BY 2.0 (France) Attribution: tatoeba.org #409771 (Lachy) & #803771 (Martha) +When he was a child, he would go fishing on Sundays. 他小时候,星期天会去钓鱼。 CC-BY 2.0 (France) Attribution: tatoeba.org #297144 (CM) & #390455 (fucongcong) +When you have finished reading this letter, burn it. 看完这封信请把它烧掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3515257 (AzureFlowers) & #8878028 (crescat) +Why is everyone being so nice to me all of a sudden? 为什么大家突然对我这么好? CC-BY 2.0 (France) Attribution: tatoeba.org #8414605 (Hybrid) & #8582841 (slo_oth) +You gain more than you spend when you go to college. 上大學的時候,你得到的比付出的還多。 CC-BY 2.0 (France) Attribution: tatoeba.org #681049 (Source_VOA) & #900021 (kanaorange) +You should not have lent the money to such a person. 你不應該借錢給這樣的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #36469 (CK) & #830356 (Martha) +A few years ago, our room had little furniture in it. 幾年前,我們的房間裡沒有什麼家具。 CC-BY 2.0 (France) Attribution: tatoeba.org #72994 (CK) & #830447 (Martha) +A foreign language can't be mastered in a year or so. 一個外國語言無法在一年左右就被掌握。 CC-BY 2.0 (France) Attribution: tatoeba.org #6873356 (CK) & #830457 (Martha) +A stay of execution was ordered at the eleventh hour. 缓期执行在最后关头决定了下来。 CC-BY 2.0 (France) Attribution: tatoeba.org #601962 (darinmex) & #818818 (fucongcong) +After she had read the letter, she tore it to pieces. 看了信之後,她把它撕成碎片。 CC-BY 2.0 (France) Attribution: tatoeba.org #314897 (CK) & #830470 (Martha) +After walking for an hour, we stopped to take a rest. 走了一個小時後,我們停下來休息。 CC-BY 2.0 (France) Attribution: tatoeba.org #73150 (CK) & #830471 (Martha) +Artificial leather can't compare with the real thing. 人造皮革是比不上真皮的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270627 (CM) & #8742179 (crescat) +Australia is the world's fifth-largest coal producer. 澳大利亚是世界第五大煤炭产地。 CC-BY 2.0 (France) Attribution: tatoeba.org #4806318 (Hybrid) & #5551026 (verdastelo9604) +Can you wake me up at seven o'clock tomorrow morning? 你明天早上七點可不可以叫我起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761638 (DrWinters) & #718382 (egg0073) +Cutting a cake into equal pieces is rather difficult. 把蛋糕等分切開更難。 CC-BY 2.0 (France) Attribution: tatoeba.org #976009 (CM) & #6105236 (verdastelo9604) +Do you know why spring rolls are called spring rolls? 你知道春卷为什么叫春卷吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3702230 (CK) & #8910888 (crescat) +Don't throw out this magazine. I haven't read it yet. 这本杂志不要扔。我还没看呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #2150193 (FeuDRenais) & #405228 (fucongcong) +English is spoken in many countries around the world. 全世界許多國家的人說英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #26254 (CK) & #811892 (Martha) +Everyone but Tom knew that he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226269 (CK) & #9012194 (jacintoo) +Feel free to get yourself a drink if you are thirsty. 觉得渴了就喝点。 CC-BY 2.0 (France) Attribution: tatoeba.org #240643 (Zifre) & #5911743 (verdastelo9604) +Fresh fruits and vegetables are good for your health. 新鮮水果和蔬菜有益健康。 CC-BY 2.0 (France) Attribution: tatoeba.org #681019 (Source_VOA) & #899970 (kanaorange) +He does nothing but complain from morning till night. 他从早到晚只是在抱怨。 CC-BY 2.0 (France) Attribution: tatoeba.org #301581 (CK) & #462024 (fucongcong) +He's not such a great writer and I think he knows it. 他不是那么出色的作家我想他知道这一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #923986 (cris) & #1446871 (asosan) +How long did it take you to finish reading that book? 你看完這本書要多少時間? CC-BY 2.0 (France) Attribution: tatoeba.org #7768874 (sharris123) & #6321865 (xjjAstrus) +How much of what I've written here do you understand? 你了解多少我寫在這裡的東西? CC-BY 2.0 (France) Attribution: tatoeba.org #776915 (FeuDRenais) & #776935 (Martha) +I am not quite sure if we can meet your requirements. 我不太確定我們是否能夠滿足你的要求。 CC-BY 2.0 (France) Attribution: tatoeba.org #54492 (CK) & #779074 (Martha) +I don't think that it's going to be easy to find Tom. 我认为,要找到汤姆可不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #7232663 (CK) & #7771675 (jiangche) +I don't understand why pepperoni pizza is so popular. 我不懂為何義式辣腸披薩如此受歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #662345 (DancingHorses) & #1238421 (tsayng) +I get the feeling you're trying to tell me something. 我感觉你想告诉我什么事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1051697 (CK) & #2395020 (fenfang557) +I had hardly left home when it began to rain heavily. 當雨開始下得很大的時候, 我幾乎不能出門了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24123 (CK) & #781222 (Martha) +I hear you passed the entrance exam. Congratulations! 我听说你通过了入学考试。恭喜你了! CC-BY 2.0 (France) Attribution: tatoeba.org #281927 (CK) & #346830 (fucongcong) +I must think over the matter before giving my answer. 我在回答之前必须考虑周全。 CC-BY 2.0 (France) Attribution: tatoeba.org #256578 (CM) & #1397109 (mtdot) +I shouldn't have eaten the whole bag of potato chips. 我不该把一整包薯片都吃完的。 CC-BY 2.0 (France) Attribution: tatoeba.org #953599 (CK) & #8753049 (crescat) +I think that it's unlikely that Tom will get elected. 我觉得汤姆不太可能会当选。 CC-BY 2.0 (France) Attribution: tatoeba.org #8180386 (CK) & #8792039 (slo_oth) +I was the second to last person to hear the bad news. 我是倒数第二个得知这个坏消息的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1806435 (emmettricks) & #1856766 (sadhen) +I worked in a post office during the summer vacation. 暑假期间,我在邮局工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #24318 (CK) & #805002 (fucongcong) +I'd like to try this on. Where are the fitting rooms? 我想试试这件。请问哪里是试衣间? CC-BY 2.0 (France) Attribution: tatoeba.org #4208292 (kamikun) & #4208536 (Ethan_lin) +I'll arrange for someone to pick you up at your home. 我会安排一下,叫个人去你家接你。 CC-BY 2.0 (France) Attribution: tatoeba.org #40484 (Masa) & #334326 (fucongcong) +I'm now rich enough to afford to get anything I want. 我现在富得能买我想要的任何东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4529046 (CK) & #5581828 (verdastelo9604) +If you have a question, please raise your right hand. 如果有问题,请举起你的右手。 CC-BY 2.0 (France) Attribution: tatoeba.org #265026 (CK) & #344199 (fucongcong) +If you need my advice, I'd be glad to give it to you. 如果你需要我的建议,我很愿意告诉你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1543629 (CK) & #2581473 (fenfang557) +If you pass this test, you could graduate next month. 如果你通過這個考試,你下個月就可以畢業了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1283954 (Trailsend) & #1278335 (egg0073) +In a crisis, you must get in touch with your teacher. 在危險的時候你必須跟你的老師聯繫。 CC-BY 2.0 (France) Attribution: tatoeba.org #20698 (darinmex) & #909451 (Martha) +It is said that his father died in a foreign country. 据说他爸爸在外国去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #285290 (CM) & #332895 (fucongcong) +It looks like Tom will do what we've asked him to do. 看來湯姆會按我們要求的去做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6229997 (CK) & #6624694 (verdastelo9604) +It makes no difference to me whether he comes or not. 他来不来对我来说没区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #282982 (CK) & #336961 (fucongcong) +It seems to me that she has a tendency to exaggerate. 在我看來,她有一種誇張的傾向。 CC-BY 2.0 (France) Attribution: tatoeba.org #308756 (CK) & #919618 (Martha) +It was so still that you would have heard a pin drop. 安靜到連針掉在地上的聲音你都會聽得到。 CC-BY 2.0 (France) Attribution: tatoeba.org #37784 (CK) & #887842 (Martha) +It's absolutely impossible for me to go on like this. 让我像这样继续下去是绝对不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #54702 (CM) & #1776719 (sadhen) +Let me read the paper when you have finished with it. 报纸看完后借我看下。 CC-BY 2.0 (France) Attribution: tatoeba.org #71438 (CK) & #4760005 (ryanwoo) +Mary is not poor. On the contrary, she is quite rich. 玛丽不穷,相反,她相当富裕。 CC-BY 2.0 (France) Attribution: tatoeba.org #31883 (CK) & #334254 (fucongcong) +More than 40 percent of students go on to university. 40%以上的学生去读大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #632922 (blay_paul) & #1753097 (sadhen) +My father has been in good shape since his operation. 自从手术后,我父亲一直处于良好的状态。 CC-BY 2.0 (France) Attribution: tatoeba.org #319266 (CM) & #334234 (fucongcong) +My father insisted that I should go to see the place. 我爸爸坚持要我去那地方看看。 CC-BY 2.0 (France) Attribution: tatoeba.org #251684 (CK) & #333192 (fucongcong) +My father will often read the newspaper during meals. 我父亲常在吃饭时看报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #319282 (CM) & #5624963 (verdastelo9604) +My uncle's company launched a new product last month. 舅舅的公司上个月推出了一项新产品。 CC-BY 2.0 (France) Attribution: tatoeba.org #269316 (Scott) & #1468437 (sadhen) +No matter how hard the training was, she never cried. 不管训练多么艰苦,她都没有哭过。 CC-BY 2.0 (France) Attribution: tatoeba.org #1426415 (CK) & #3035567 (vicch) +People usually don't like what they don't understand. 人们通常不喜欢他们不理解的事物。 CC-BY 2.0 (France) Attribution: tatoeba.org #4872156 (zvzuibqx) & #4859712 (musclegirlxyp) +Pigs share certain characteristics with human beings. 豬與人類的一些特性相同。 CC-BY 2.0 (France) Attribution: tatoeba.org #34357 (Swift) & #798054 (Martha) +She lost her way and on top of that it began to rain. 她迷路了,紧接着天开始下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #316019 (CM) & #332930 (fucongcong) +She ran very fast to catch up with the other members. 她跑得很快是为了赶上其他成员。 CC-BY 2.0 (France) Attribution: tatoeba.org #315619 (CK) & #787041 (fucongcong) +She speaks English better than any of her classmates. 她的英語說得比班上任何人都好。 CC-BY 2.0 (France) Attribution: tatoeba.org #26173 (CK) & #790632 (Martha) +She was a tall, thin girl with long, soft brown hair. 她是個又高又瘦, 留著一頭又長又軟的褐色頭髮的女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #316148 (CS) & #778025 (Martha) +She will return home next Sunday, that is, the tenth. 她下周日回家,也就是10号。 CC-BY 2.0 (France) Attribution: tatoeba.org #313716 (CK) & #332855 (fucongcong) +She's practicing English so she can get a better job. 她練習英語以找更好的工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #312348 (CK) & #6086863 (verdastelo9604) +Since he didn't know what to say, he remained silent. 自从他不知道该说什么的时候,便一直沉默着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1500496 (CK) & #2410990 (fenfang557) +Since he is old, this task must be difficult for him. 他老了,所以这任务对他来说一定很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #302337 (CM) & #5794102 (verdastelo9604) +The Tigers lost the game, which was a surprise to us. 我們覺得很驚訝老虎隊竟然輸掉了比賽。 CC-BY 2.0 (France) Attribution: tatoeba.org #41232 (CK) & #830308 (Martha) +The bridge will be completed by the end of this year. 大橋將在年底完工。 CC-BY 2.0 (France) Attribution: tatoeba.org #18980 (CK) & #5384174 (xjjAstrus) +The bus stopped suddenly in the middle of the street. 公車突然在路中央停下來。 CC-BY 2.0 (France) Attribution: tatoeba.org #35294 (CK) & #774510 (Martha) +The girl was sobbing in the corner of the schoolroom. 女孩在教室的角落啜泣。 CC-BY 2.0 (France) Attribution: tatoeba.org #267859 (CM) & #5363945 (egg0073) +The last person I told my idea to thought I was nuts. 最后一个听我说我的主意的人认为我疯了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1318 (Zifre) & #501305 (fucongcong) +The police will put you behind bars for twenty years. 警方會把你關在牢裡二十年。 CC-BY 2.0 (France) Attribution: tatoeba.org #238208 (CK) & #919863 (Martha) +The prince fell in love with a woodcutter's daughter. 王子愛上了一個樵夫的女兒。 CC-BY 2.0 (France) Attribution: tatoeba.org #25617 (CK) & #803891 (Martha) +The teacher demonstrated the idea with an experiment. 这位老师用试验论证了这个想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #2163178 (Source_VOA) & #2581535 (fenfang557) +The teacher lined the children up in order of height. 老师按照身高给孩子们排队。 CC-BY 2.0 (France) Attribution: tatoeba.org #272935 (CK) & #1424137 (sadhen) +There are many beautiful castles in northern Germany. 在德國北部有很多美麗的城堡? CC-BY 2.0 (France) Attribution: tatoeba.org #4769424 (garborg) & #4189361 (egg0073) +There's nothing more painful than losing one's child. 沒有比失去孩子更讓人悲傷的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #2668493 (WestofEden) & #6119467 (verdastelo9604) +They say she and her husband can't agree on anything. 他們說她和她的丈夫不可能對任何事達成協議。 CC-BY 2.0 (France) Attribution: tatoeba.org #310872 (Zifre) & #781676 (Martha) +They will hold a meeting at 2 o'clock this afternoon. 他们今天下午2点会举行一个会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #2921282 (vicch) & #2921279 (vicch) +This is where I want to live for the rest of my life. 這裡是我餘生想待的地方 CC-BY 2.0 (France) Attribution: tatoeba.org #6048317 (CK) & #6049585 (magicalrpetz47) +Tom and Mary even always wear the same color clothes. 汤姆和玛丽甚至经常穿同样颜色的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095981 (CK) & #2027920 (sadhen) +Tom bought a camera at a store not too far from here. Tom在离这里不远的一家商店里买了一台相机。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026999 (CK) & #4845057 (pig8322) +Tom came a little earlier today than he usually does. 汤姆今天来得比往常要早一些。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753639 (CK) & #4757580 (ryanwoo) +Tom cut down the tree that was in front of his house. 湯姆砍了他門前的樹。 CC-BY 2.0 (France) Attribution: tatoeba.org #5420271 (CK) & #6673099 (verdastelo9604) +Tom didn't know what he'd done was against the rules. 汤姆不知道他的所作所为违反了规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #7505952 (CK) & #8688126 (slo_oth) +Tom is already here, but Mary hasn't gotten here yet. 汤姆已经在这里了,但玛丽还没到。 CC-BY 2.0 (France) Attribution: tatoeba.org #4986497 (CK) & #5663445 (verdastelo9604) +Tom ran out of matches so he couldn't light the fire. 汤姆用尽了火柴,不能点火了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093101 (CK) & #5983611 (verdastelo9604) +Tom told me that he has no intention of marrying you. Tom告诉我他们有想要娶你的想法。 CC-BY 2.0 (France) Attribution: tatoeba.org #4837175 (Hybrid) & #4844729 (pig8322) +We are looking forward to seeing you and your family. 我们很期待见到您和您的家人。 CC-BY 2.0 (France) Attribution: tatoeba.org #262692 (CK) & #2518666 (fenfang557) +We have to look into the disappearance of the doctor. 我们必须调查医生的失踪案。 CC-BY 2.0 (France) Attribution: tatoeba.org #49638 (CK) & #8902607 (crescat) +We just have to make sure Tom is planning to be here. 我們只是需要確認Tom有要來這。 CC-BY 2.0 (France) Attribution: tatoeba.org #1893788 (CK) & #5418980 (egg0073) +We looked out the window, but we didn't see anything. 我们看了窗外,但什么都没看见。 CC-BY 2.0 (France) Attribution: tatoeba.org #495455 (adjusting) & #426397 (fucongcong) +We should have taken the schedule into consideration. 我们本该考虑一下行程。 CC-BY 2.0 (France) Attribution: tatoeba.org #22780 (CK) & #363978 (fucongcong) +We were granted the privilege of fishing in this bay. 我们得到了在这个海湾内捕鱼的特权。 CC-BY 2.0 (France) Attribution: tatoeba.org #23233 (Swift) & #8842854 (crescat) +What I'm about to say is strictly between you and me. 我要说的只能是你知我知。 CC-BY 2.0 (France) Attribution: tatoeba.org #464584 (lukaszpp) & #465015 (fucongcong) +What I'm about to say is strictly between you and me. 我要告訴你的只能你我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #464584 (lukaszpp) & #779005 (Martha) +What is learned in the cradle is carried to the tomb. 搖籃裡學的帶到墳墓。 CC-BY 2.0 (France) Attribution: tatoeba.org #30103 (CM) & #897272 (Martha) +What is learned in the cradle is carried to the tomb. 幼年時學的東西,一輩子不會忘記。 CC-BY 2.0 (France) Attribution: tatoeba.org #30103 (CM) & #897273 (Martha) +Whether he comes or not, the result will be the same. 他来还是不来,结果是一样的。 CC-BY 2.0 (France) Attribution: tatoeba.org #284277 (CK) & #1416058 (sadhen) +Whichever route you take, you will get there in time. 不管你选哪条路,你都能按时到那里。 CC-BY 2.0 (France) Attribution: tatoeba.org #71534 (CM) & #7774815 (jiangche) +Why have you been late to school every day this week? 為什麼你這個禮拜每天上學都遲到? CC-BY 2.0 (France) Attribution: tatoeba.org #4493559 (CK) & #4504454 (egg0073) +You don't have to go to the party unless you want to. 除非你想去, 否則你不必去這個派對。 CC-BY 2.0 (France) Attribution: tatoeba.org #16158 (Swift) & #775738 (Martha) +You look tired. You ought to rest for an hour or two. 你看起來很累。你應該休息一兩個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #9721 (Swift) & #775596 (Martha) +You should look after the children from time to time. 你應該偶爾照顧孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #16064 (Zifre) & #775726 (Martha) +You're the one who suggested that we travel together. 你是那個建議我們一起旅行的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6339520 (CK) & #6581648 (SofiaLee) +A foreign language cannot be mastered in a year or so. 一個外國語言無法在一年左右就被掌握。 CC-BY 2.0 (France) Attribution: tatoeba.org #21913 (CK) & #830457 (Martha) +After a couple of drinks, the guy was feeling no pain. 喝了幾杯酒後,這個傢伙就感覺不痛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24457 (CK) & #830462 (Martha) +An argument may be logically sound without being true. 不正确的命题听起来可能符合逻辑。 CC-BY 2.0 (France) Attribution: tatoeba.org #663009 (darinmex) & #5715191 (verdastelo9604) +Apparently, there is nothing that cannot happen today. 显然,今天什么事都有可能发生。 CC-BY 2.0 (France) Attribution: tatoeba.org #667889 (CK) & #2426076 (huangfen) +As we went around the corner, the lake came into view. 当我们走到转角处,湖就映入了眼帘。 CC-BY 2.0 (France) Attribution: tatoeba.org #23513 (CK) & #336919 (fucongcong) +Back in high school, I got up at 6 a.m. every morning. 以前讀高中的時候﹐我每天早上六點起床。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360 (Zifre) & #55 (fucongcong) +Besides the piano, can you play any other instruments? 除了钢琴以外,还会玩什么乐器吗? CC-BY 2.0 (France) Attribution: tatoeba.org #5418240 (mailohilohi) & #5096745 (mirrorvan) +Between you and me, I don't like our new team captain. 我就只告诉你,我不喜欢我们的新队长。 CC-BY 2.0 (France) Attribution: tatoeba.org #62030 (CK) & #813562 (fucongcong) +Could you possibly suggest a way to solve the problem? 你能提出解决问题的方法吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2662622 (CK) & #5698025 (verdastelo9604) +Do you have an extra English dictionary by any chance? 您碰巧有一本額外的英文字典嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #34611 (CK) & #811838 (Martha) +Don't throw away this magazine. I haven't read it yet. 这本杂志不要扔。我还没看呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #59198 (CK) & #405228 (fucongcong) +English is a very important language in today's world. 英语是当今世界上一种非常重要的语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #26272 (Zifre) & #346714 (fucongcong) +Everybody but Tom knew that he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226268 (CK) & #9012194 (jacintoo) +Facts are stubborn things, but statistics are pliable. 事实是倔强的,但统计是柔顺的。 CC-BY 2.0 (France) Attribution: tatoeba.org #667905 (CK) & #5581683 (verdastelo9604) +He had his sister help him paint the wall of his room. 他让妹妹帮他涂他房间的墙。 CC-BY 2.0 (France) Attribution: tatoeba.org #297111 (CK) & #5655395 (verdastelo9604) +He is doing very well considering he lacks experience. 考虑到他缺乏经验,他做得[已经]非常好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #295698 (CM) & #335419 (fucongcong) +He quickly made friends with the new boy on the block. 他很快便与小区里新来的男孩交上了朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #290698 (CM) & #332675 (fucongcong) +He took care of the business after his father's death. 在他父亲死后,他接管了公司。 CC-BY 2.0 (France) Attribution: tatoeba.org #843947 (J_S) & #346834 (fucongcong) +How long does it take from here to your house on foot? 从这里步行到你家要多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #62089 (CK) & #1323957 (vicch) +How long does it take to walk to your house from here? 从这里步行到你家要多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #1241620 (CK) & #1323957 (vicch) +I am convinced that things will change for the better. 我深信事情会往更好的方向转变。 CC-BY 2.0 (France) Attribution: tatoeba.org #258947 (CK) & #335248 (fucongcong) +I can't understand why Tom doesn't want to go with us. 我不理解为什么汤姆不想和我们一起走。 CC-BY 2.0 (France) Attribution: tatoeba.org #1955093 (CK) & #8749670 (crescat) +I didn't know who was going to meet me at the airport. 我不知道谁会在机场见我。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887191 (CK) & #5617195 (verdastelo9604) +I just wanted to prove to myself that I could do this. 我只想向自己证明我可以做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #8555606 (CK) & #8555682 (slo_oth) +I think I now have enough money to buy the car I want. 我认为我现在有足够的钱买我想要的那辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #8388470 (CK) & #8605872 (slo_oth) +I took him to the most expensive restaurant on campus. 我把他带到校区里最贵的餐馆去了。 CC-BY 2.0 (France) Attribution: tatoeba.org #425898 (FeuDRenais) & #426408 (fucongcong) +I was caught in a shower and got drenched to the skin. 我遇上了陣雨被淋得全身濕透。 CC-BY 2.0 (France) Attribution: tatoeba.org #324682 (CK) & #786130 (Martha) +I was searched by the customs officers at the airport. 我在機場被海關人員搜查。 CC-BY 2.0 (France) Attribution: tatoeba.org #257406 (CK) & #727982 (Martha) +I wouldn't be too surprised if this song became a hit. 如果这歌成名,我不会太惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #1075739 (CK) & #5696838 (verdastelo9604) +I'll lend you the book as soon as I'm done reading it. 我一把这本书读完了就借给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1612567 (marcelostockle) & #2535886 (fenfang557) +I'll never tell anyone where I've hidden the treasure. 我不會告訴任何人我藏宝的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841830 (CK) & #6094858 (verdastelo9604) +I'm going to run a couple of errands. Wanna tag along? 我要去购物。你要跟着来吗? CC-BY 2.0 (France) Attribution: tatoeba.org #602006 (darinmex) & #818845 (fucongcong) +I'm pretty sure Tom is the only one who can't do that. 我确信汤姆是唯一不会那么做的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6229444 (CK) & #8969810 (WilsonWong) +I'm sure you'll love what we have on the menu tonight. 我肯定你会喜欢我们今晚的菜肴。 CC-BY 2.0 (France) Attribution: tatoeba.org #36567 (CK) & #332978 (fucongcong) +If I lost my key, I wouldn't be able to lock the door. 如果我弄丟了我的鑰匙,我就無法鎖門了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30855 (CK) & #834540 (Martha) +If I were invisible, I wouldn't have to wear anything. 若我是隱形的,就不用穿衣服了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4008960 (JSakuragi) & #3742609 (egg0073) +If I were to tell you all I know, you would be amazed. 要是我告诉你我所知的一切,你会被惊呆的。 CC-BY 2.0 (France) Attribution: tatoeba.org #246916 (Eldad) & #335320 (fucongcong) +If he is innocent, it follows that his wife is guilty. 如果他是清白的,那他妻子就有罪。 CC-BY 2.0 (France) Attribution: tatoeba.org #284210 (CM) & #1394858 (mtdot) +In recent years, science has made remarkable progress. 这几年,科学取得了显著的进步。 CC-BY 2.0 (France) Attribution: tatoeba.org #18643 (Zifre) & #8829230 (crescat) +Is there any chance you'll go to Australia next month? 你有下個月去澳洲的機會嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7156738 (CK) & #8572025 (verdastelo9604) +Is there anything you want to add to what I just said? 我刚才说的内容,你想补充么? CC-BY 2.0 (France) Attribution: tatoeba.org #2034506 (CK) & #5267737 (CLARET) +It is close to eleven. It's about time we went to bed. 快11点了。我们该上床睡觉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #73348 (CK) & #1426506 (sadhen) +It seems that most people only barbeque in the summer. 人們似乎只在夏天烤肉。 CC-BY 2.0 (France) Attribution: tatoeba.org #662350 (DancingHorses) & #1238427 (tsayng) +It's quite difficult to master French in 2 or 3 years. 很难在2、3年内掌握法语。 CC-BY 2.0 (France) Attribution: tatoeba.org #1596 (blay_paul) & #334170 (fucongcong) +Make sure to turn off all the lights before going out. 出去之前确认一下所有的灯都关了。 CC-BY 2.0 (France) Attribution: tatoeba.org #21861 (minshirui) & #845135 (fucongcong) +Mary has a bad back. It's hard for her to lift things. 瑪麗的背不好, 她很難把東西舉起來。 CC-BY 2.0 (France) Attribution: tatoeba.org #681353 (Source_VOA) & #778553 (Martha) +Mary said that she loved me, but I didn't believe her. 玛丽说她爱我,但是我并不相信她所说的话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1030052 (CK) & #3770478 (Debbie_Linder) +Modern technology has made our lives more comfortable. 现代科学技术让我们的生活更加舒适。 CC-BY 2.0 (France) Attribution: tatoeba.org #239559 (CK) & #8690292 (crescat) +More than 40 percent of the students go to university. 40%以上的学生去读大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #72628 (ludoviko) & #1753097 (sadhen) +My father often goes to the United States on business. 我爸爸经常去美国出差。 CC-BY 2.0 (France) Attribution: tatoeba.org #1355898 (AMIKEMA) & #334243 (fucongcong) +My father took out his wallet and gave me ten dollars. 我爸爸拿出他的钱包,并给了我10美元。 CC-BY 2.0 (France) Attribution: tatoeba.org #319144 (CK) & #345905 (fucongcong) +My husband reads the newspaper while eating breakfast. 我丈夫一边吃早餐一边读报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1428004 (CK) & #2367490 (vicch) +Once in a while, we should take a step back and think. 有时候,我们应该后退一步想一想。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159888 (tinytina) & #829720 (fucongcong) +Philosophy is not a thing one can learn in six months. 哲学不是我们用六个月就能学的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #278733 (CK) & #797532 (fucongcong) +Please bring us two cups of tea and one cup of coffee. 请来两杯茶和一杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #530786 (wma) & #335007 (fucongcong) +Please have a seat and wait until your name is called. 请在被叫到名字之前坐在椅子上等候。 CC-BY 2.0 (France) Attribution: tatoeba.org #322950 (CK) & #8780277 (crescat) +Please replace the empty ink cartridge in the printer. 请把打印机里面的空的墨粉鼓换掉。 CC-BY 2.0 (France) Attribution: tatoeba.org #481732 (Benjameno) & #1735612 (sadhen) +Seen from the sky, the river looked like a huge snake. 从天上看下来,这条河像一条巨蛇。 CC-BY 2.0 (France) Attribution: tatoeba.org #18346 (CK) & #336030 (fucongcong) +She covered the mouthpiece of the phone with her hand. 她用手捂住了电话的话筒。 CC-BY 2.0 (France) Attribution: tatoeba.org #315944 (CM) & #8775850 (crescat) +She gave birth to her first child at twenty years old. 她在二十歲的時候生下第一個孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #316060 (CK) & #779076 (Martha) +That was the first time that a man walked on the moon. 那是人类第一次在月球上行走。 CC-BY 2.0 (France) Attribution: tatoeba.org #43103 (CK) & #333857 (fucongcong) +That wasn't the main reason why Tom needed to do that. 这不是汤姆要做那件事的主要原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #6225935 (CK) & #8719716 (ZeroAurora) +The bus is full. You'll have to wait for the next one. 這班公車客滿了。你必須等下一班。 CC-BY 2.0 (France) Attribution: tatoeba.org #681038 (Source_VOA) & #899997 (kanaorange) +The policeman told me that the last bus leaves at ten. 警察告诉我巴士的末班车在十点出发。 CC-BY 2.0 (France) Attribution: tatoeba.org #238390 (CK) & #8936285 (crescat) +The professor spoke too fast for anyone to understand. 那个教授讲得太快了,没有一个人听得懂。 CC-BY 2.0 (France) Attribution: tatoeba.org #48674 (CK) & #8727887 (crescat) +Their contract is to run out at the end of this month. 他们的合同在这个月底到期。 CC-BY 2.0 (France) Attribution: tatoeba.org #305174 (CM) & #332799 (fucongcong) +There are subtle differences between the two pictures. 这两张图片之间有细致的差异。 CC-BY 2.0 (France) Attribution: tatoeba.org #50742 (CK) & #1426551 (sadhen) +They supplied the soldiers with enough food and water. 他们给士兵提供了充足的食物和水。 CC-BY 2.0 (France) Attribution: tatoeba.org #317717 (CM) & #5655405 (verdastelo9604) +This is considered to be a matter of great importance. 这被认为是一件大事。 CC-BY 2.0 (France) Attribution: tatoeba.org #55534 (CM) & #332824 (fucongcong) +Tom and I have decided to go to Australia next summer. 汤姆和我决定下个夏天去澳大利亚 CC-BY 2.0 (France) Attribution: tatoeba.org #7183004 (CK) & #8746388 (cxpadonis) +Tom could have dealt with the problem in a better way. 汤姆本可以用更好的方式处理问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095205 (CK) & #8792036 (slo_oth) +Tom couldn't get to sleep till after three last night. 汤姆昨晚三点多才睡着。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095111 (CK) & #8899488 (crescat) +Tom didn't seem to want to tell me why he'd done that. 汤姆似乎不想告诉我为什么他要那样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7539369 (CK) & #8750748 (cxpadonis) +Tom doesn't know the difference between Iraq and Iran. 汤姆不知道伊拉克和伊朗有什么区别。 CC-BY 2.0 (France) Attribution: tatoeba.org #1506920 (CM) & #2165933 (sadhen) +Tom doesn't like people who smoke in no smoking areas. 汤姆讨厌在禁烟区吸烟的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #1026030 (CK) & #8727838 (crescat) +Tom dragged himself out of bed and put on his clothes. 汤姆从床上爬起来,穿上了衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #8557667 (CK) & #8558470 (slo_oth) +Tom got so absorbed in his work that he forgot to eat. 汤姆太专注于他的工作,以至于忘了吃饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #37127 (CM) & #2000407 (sadhen) +Tom never felt comfortable expressing his own opinion. 汤姆在表达自己的意见的时候总是很慌张。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024393 (CK) & #8746512 (crescat) +Tom poured cold water over himself to wake himself up. 汤姆给自己浇凉水以清醒过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024336 (CK) & #5576768 (verdastelo9604) +Tom probably doesn't know why the picnic was canceled. 湯姆大概不知道為什麼野餐取消了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745794 (CK) & #2771066 (cienias) +Tom said that Mary was probably still studying French. 汤姆说玛丽可能还在学法语 CC-BY 2.0 (France) Attribution: tatoeba.org #6431752 (CK) & #8748533 (cxpadonis) +Tom told Mary he couldn't do what she asked him to do. 汤姆告诉玛丽他不能做她要他做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5153912 (CK) & #5663544 (verdastelo9604) +Tom was able to go to college thanks to a scholarship. 因為一份獎學金,Tom得以上大學。 CC-BY 2.0 (France) Attribution: tatoeba.org #3820945 (CK) & #5350419 (egg0073) +We will have learned English for five years next year. 到明年我们学英语就有5年了。 CC-BY 2.0 (France) Attribution: tatoeba.org #249475 (CM) & #335388 (fucongcong) +Were you able to do everything you wanted to get done? 你是不是有能力做到你想要完成的所有事情呢? CC-BY 2.0 (France) Attribution: tatoeba.org #3541785 (CK) & #3662940 (yss123231) +When I first came back to Boston, I was really lonely. 当我第一次回波士顿时,我真是孤独。 CC-BY 2.0 (France) Attribution: tatoeba.org #3148256 (CK) & #5595228 (verdastelo9604) +Who is in charge of the office while the boss is away? 在主任不在的时候,办公室由谁来负责? CC-BY 2.0 (France) Attribution: tatoeba.org #267069 (CK) & #8806666 (crescat) +Why don't you wait here while I finish what I'm doing? 为什么你不在这里等到我做完为止? CC-BY 2.0 (France) Attribution: tatoeba.org #2212249 (CK) & #2482645 (fenfang557) +With your approval, I would like to offer him the job. 如果您同意, 我想給他這份工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #17846 (Zifre) & #781122 (Martha) +Without the slightest hesitation, he sold his own car. 他毫不犹豫地把自己的车卖了。 CC-BY 2.0 (France) Attribution: tatoeba.org #995254 (NickC) & #335122 (fucongcong) +You continue making the same mistakes time after time. 你每次都继续犯同样的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #16249 (CK) & #469415 (fucongcong) +You look pale. You had better lie down in bed at once. 你看上去很苍白。你最好立刻去床上躺会儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #16225 (Zifre) & #611541 (sarah) +You need to attach your photo to the application form. 你必须把你的照片贴在申请书上。 CC-BY 2.0 (France) Attribution: tatoeba.org #483621 (CK) & #8829221 (crescat) +You should've done it earlier. It can't be helped now. 你本应该早点做的。现在已经没有任何办法了。 CC-BY 2.0 (France) Attribution: tatoeba.org #6678524 (CK) & #2392979 (fenfang557) +You're the one who suggested that we do that together. 你是那個建議我們一起做那件事的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6339424 (CK) & #6581647 (SofiaLee) +"He'd like to have a coffee after work." "I would too." "他想在下班後喝杯咖啡。" "我也想。" CC-BY 2.0 (France) Attribution: tatoeba.org #73565 (CK) & #790624 (Martha) +"How did you get my phone number?" "Tom gave it to me." “你怎么知道我的电话号码的?” “汤姆告诉我的。” CC-BY 2.0 (France) Attribution: tatoeba.org #8780238 (weihaiping) & #8696327 (crescat) +According to TV news, there was a plane crash in India. 根据电视新闻,一架飞机在印度坠毁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #39225 (CK) & #472992 (fucongcong) +According to the weather forecast, it'll snow tomorrow. 天气预报说明天会下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #5401525 (CK) & #4960569 (murr) +After I talked with my teacher, I decided to work hard. 跟我的老師談過後,我決定認真努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #272813 (Scott) & #830466 (Martha) +After reading his books I feel I can construct a house. 讀完他的書後,我覺得我可以構建一棟房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #287554 (CK) & #830467 (Martha) +All horses are animals, but not all animals are horses. 所有的马都是动物,但并非所有的动物都是马。 CC-BY 2.0 (France) Attribution: tatoeba.org #51692 (TRANG) & #7768265 (jiangche) +Are there any direct flights between Boston and Sydney? 请问波士顿和悉尼之间有直飞航班吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3753285 (CK) & #8929167 (crescat) +As far as I know, there is nothing wrong with his plan. 據我所知,他的計畫沒有出差錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #251450 (CK) & #6103136 (verdastelo9604) +Be sure to drop us a line as soon as you get to London. 别忘了一到伦敦就给我们留言啊。 CC-BY 2.0 (France) Attribution: tatoeba.org #29292 (CN) & #335019 (fucongcong) +Being late is always better than not showing up at all. 迟到总比不到好。 CC-BY 2.0 (France) Attribution: tatoeba.org #7156496 (Kiwi) & #836581 (slo_oth) +Blenders are nice for people who really like smoothies. 攪拌機對真的喜歡冰沙的人來說很不錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #823645 (papabear) & #824447 (Martha) +Books are for people who wish they were somewhere else. 書是為了那些希望自己在另一個地方的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #667893 (CK) & #771953 (Martha) +Did you remember that you were supposed to buy candles? 你记得自己该买蜡烛吗? CC-BY 2.0 (France) Attribution: tatoeba.org #3599143 (karloelkebekio) & #5571951 (verdastelo9604) +Do you want to get married first or have a child first? 你想我们先结婚还是先生孩子? CC-BY 2.0 (France) Attribution: tatoeba.org #395839 (aeriph) & #352040 (fucongcong) +Don't be afraid to make mistakes when speaking English. 說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #26175 (megamanenm) & #790633 (Martha) +Don't be afraid to make mistakes when speaking English. 當你說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #26175 (megamanenm) & #811854 (Martha) +Ebola is one of the most virulent viruses known to man. 埃博拉是人类已知的最致命的病毒之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #8558454 (marioo) & #8563313 (slo_oth) +Finishing the report by tomorrow is next to impossible. 在明天前完成报告几乎是不可能的。 CC-BY 2.0 (France) Attribution: tatoeba.org #49701 (CM) & #332447 (fucongcong) +From the look of the sky, it may rain in the afternoon. 從天色看起來,下午可能會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #59597 (CK) & #892497 (Martha) +Germany adopted a social security system in the 1880's. 德国在1880年代采取了一种社会保障制度。 CC-BY 2.0 (France) Attribution: tatoeba.org #38966 (Swift) & #472968 (fucongcong) +He doesn't have any knowledge about American democracy. 他一点都不知道美国的民主。 CC-BY 2.0 (France) Attribution: tatoeba.org #288845 (CK) & #1746050 (sadhen) +He doesn't know the difference between right and wrong. 他好坏不分。 CC-BY 2.0 (France) Attribution: tatoeba.org #300728 (blay_paul) & #1330048 (vicch) +He went on reading the book as if nothing had happened. 他繼續讀書,好像什麼事也沒有發生。 CC-BY 2.0 (France) Attribution: tatoeba.org #294340 (CK) & #876542 (Martha) +His record is a new world record in the 100-meter dash. 他刷新了百米短跑的世界紀錄。 CC-BY 2.0 (France) Attribution: tatoeba.org #285863 (CM) & #727966 (Martha) +I can't believe Tom was able to do this all by himself. 没法相信,汤姆没人帮助自己一个人就做到了这些。 CC-BY 2.0 (France) Attribution: tatoeba.org #4770600 (garborg) & #4267363 (notabene) +I can't survive without air conditioning in the summer. 我夏天没有空调会死。 CC-BY 2.0 (France) Attribution: tatoeba.org #256461 (Shiawase) & #8593087 (easononizuka) +I don't know where my crutches are. Have you seen them? 我不知道把拐杖放哪去了,你有看到嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #4134498 (CK) & #884681 (Tajfun) +I don't want to go there. He doesn't want to go either. 我不想去那儿,他也不想。 CC-BY 2.0 (France) Attribution: tatoeba.org #254092 (CK) & #1438599 (asosan) +I felt so sleepy that I could hardly keep my eyes open. 我感觉困得几乎不能睁开我的眼睛了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67657 (CK) & #334552 (fucongcong) +I found a good place to buy fruit a couple of days ago. 前几天我发现了一个买水果的好地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #2327209 (CK) & #5091214 (mirrorvan) +I know that it is highly unlikely that anyone knows me. 我知道有人认识我的可能性微乎其微。 CC-BY 2.0 (France) Attribution: tatoeba.org #953508 (CK) & #1394886 (mtdot) +I look forward to hearing your thoughts on this matter. 我期待听到你在这件事上的想法 。 CC-BY 2.0 (France) Attribution: tatoeba.org #2106 (CK) & #332647 (fucongcong) +I lost my job and I have no money. I'm at my wit's end. 我失業又沒錢。真不知該何去何從。 CC-BY 2.0 (France) Attribution: tatoeba.org #257917 (CS) & #2511573 (tsayng) +I really look forward to your visit in the near future. 我很期待在不久的將來您的光臨。 CC-BY 2.0 (France) Attribution: tatoeba.org #71473 (CK) & #874486 (Martha) +I studied English for four years with a native speaker. 我跟英语母语者学了四年英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #953622 (CK) & #5780593 (verdastelo9604) +I was quite thirsty and wanted to drink something cool. 我很渴,想喝点冷饮。 CC-BY 2.0 (France) Attribution: tatoeba.org #8557702 (Rawrren) & #8558451 (slo_oth) +I'm afraid I can't help you. You must ask someone else. 我担心可能帮不了你,你需要找其他人帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #245250 (CK) & #1541579 (CLARET) +I'm surprised that you don't know about their marriage. 我很惊讶,你竟然不知道他们结婚。 CC-BY 2.0 (France) Attribution: tatoeba.org #400222 (CK) & #2045902 (sadhen) +If you are not going to the concert, then neither am I. 如果你不去音樂會, 我也不去。 CC-BY 2.0 (France) Attribution: tatoeba.org #71600 (CK) & #785244 (Martha) +Instead of going to Europe, I decided to go to America. 我决定去美国,而不是欧洲。 CC-BY 2.0 (France) Attribution: tatoeba.org #30021 (CK) & #333777 (fucongcong) +Iron the inside of collars first, and then the outside. 先熨烫领子的里面,然后是外面。 CC-BY 2.0 (France) Attribution: tatoeba.org #65250 (CM) & #1394904 (mtdot) +It takes 165 years for Neptune to orbit around the sun. 海王星繞行太陽一周要花一百六十五年。 CC-BY 2.0 (France) Attribution: tatoeba.org #681653 (Source_VOA) & #4272234 (egg0073) +It was not until I reached home that I missed my purse. 那是在我到家以后,我才不见了我的钱包。 CC-BY 2.0 (France) Attribution: tatoeba.org #24206 (CK) & #336495 (fucongcong) +It would be wonderful if you could sing at our wedding. 你能在我们的婚礼上唱歌就太好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818653 (CK) & #5965714 (verdastelo9604) +It's easy to make friends, but hard to get rid of them. 交朋友很容易, 但擺脫他們很難。 CC-BY 2.0 (France) Attribution: tatoeba.org #667921 (CK) & #771962 (Martha) +It's not that easy to learn a new language after fifty. 五十岁以后学一门新的语言不是那么容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #371589 (saeb) & #466245 (fucongcong) +It's up to you to decide whether we'll go there or not. 该由你来决定我们去不去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396342 (CK) & #334463 (fucongcong) +Judging from the look of the sky, it is likely to rain. 看看天的样子,要下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #18150 (mamat) & #5691236 (verdastelo9604) +Kissing a person who smokes is like licking an ashtray. 亲吻一个抽烟的人就像在舔烟灰缸。 CC-BY 2.0 (France) Attribution: tatoeba.org #2874622 (CK) & #5091384 (mirrorvan) +Lake Baikal in Russia is the deepest lake in the world. 在俄羅斯的貝加爾湖是世界上最深的湖泊。 CC-BY 2.0 (France) Attribution: tatoeba.org #681322 (Source_VOA) & #814900 (Martha) +Lake Baikal in Russia is the deepest lake in the world. 俄羅斯的貝加爾湖是世界上最深的湖泊。 CC-BY 2.0 (France) Attribution: tatoeba.org #681322 (Source_VOA) & #3668670 (cienias) +Let's go out and eat dinner together from time to time. 讓我們偶爾出去一起吃晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #825289 (CK) & #827658 (Martha) +Most people brush their teeth at least two times a day. 多数人每天至少刷两次牙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2991998 (CK) & #5845575 (verdastelo9604) +My mother happened to be there when the fire broke out. 着火的时候我妈妈恰好在那。 CC-BY 2.0 (France) Attribution: tatoeba.org #23840 (CK) & #8514598 (gumblex) +My wife's part-time job brings in a little extra money. 我太太兼職的工作賺進了一些額外的錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #24037 (CK) & #886128 (Martha) +Not knowing what to do, I asked the teacher for advice. 因为不知道做什么,所以我向老师寻求建议。 CC-BY 2.0 (France) Attribution: tatoeba.org #38607 (CM) & #609968 (sarah) +One hundred and fifty people entered the marathon race. 150个人参加了马拉松比赛。 CC-BY 2.0 (France) Attribution: tatoeba.org #49862 (CK) & #1426564 (sadhen) +Only one third of the members turned up at the meeting. 仅三分之一的成员出席了会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #49154 (CK) & #332802 (fucongcong) +Prince William is second in line to the English throne. 威廉王子是英国王位第二顺位继承人 CC-BY 2.0 (France) Attribution: tatoeba.org #727118 (darinmex) & #864291 (kooler) +Several cottages have been isolated by the flood water. 好几间小屋被洪水孤立起来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #24660 (CK) & #847808 (fucongcong) +Several thousand people became victims of this disease. 数千人受此疾病所害。 CC-BY 2.0 (France) Attribution: tatoeba.org #1168410 (CK) & #5640769 (verdastelo9604) +She came to Japan for the purpose of studying Japanese. 她為了學習日文來到日本。 CC-BY 2.0 (France) Attribution: tatoeba.org #316085 (CK) & #5382951 (egg0073) +She needed some money to buy something to feed her dog. 她需要一些钱来买点东西喂她的狗。 CC-BY 2.0 (France) Attribution: tatoeba.org #898571 (CK) & #8589136 (easononizuka) +Some people felt that Tom's behavior was inappropriate. 一部分人感觉Tom的行为举止不太合适。 CC-BY 2.0 (France) Attribution: tatoeba.org #1163491 (CK) & #2395017 (fenfang557) +Sorry, but can you show me the way to the next village? 能不能麻烦你告诉我去邻村怎么走? CC-BY 2.0 (France) Attribution: tatoeba.org #19149 (CK) & #332599 (fucongcong) +That wasn't the main reason that Tom needed to do that. 这不是汤姆要做那件事的主要原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #7194661 (CK) & #8719716 (ZeroAurora) +The Japanese military forces seemed too strong to stop. 日本军队看来强大得不可阻挡。 CC-BY 2.0 (France) Attribution: tatoeba.org #804255 (Source_VOA) & #5611477 (verdastelo9604) +The child had no overcoat on although it was very cold. 尽管天气很冷,孩子却没有大衣穿。 CC-BY 2.0 (France) Attribution: tatoeba.org #37822 (CK) & #791417 (fucongcong) +The crane, unlike the dog, has never dreamed of flying. 不像狗, 這隻鶴從來沒有夢想過飛翔。 CC-BY 2.0 (France) Attribution: tatoeba.org #646792 (kebukebu) & #761304 (Martha) +The friend who I thought would pass the exam failed it. 那个我认为会通过考试的朋友失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246796 (CK) & #333765 (fucongcong) +The moment I held the baby in my arms, it began to cry. 我一把孩子抱在手里,他就开始哭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #247083 (CK) & #802849 (fucongcong) +The mother missed her daughter who was away at college. 妈妈想念她在读大学的女儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #320906 (CK) & #3784080 (Debbie_Linder) +The number of people who go abroad has been increasing. 出国的人数一直在增加。 CC-BY 2.0 (France) Attribution: tatoeba.org #21933 (CK) & #1394883 (mtdot) +The opening ceremony of the Olympics has already begun. 奥运会已经开幕了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7795851 (sharris123) & #1738286 (sadhen) +The other day I discovered a book written by my father. 前几天我发现了一本我父亲写的书。 CC-BY 2.0 (France) Attribution: tatoeba.org #273128 (CK) & #8798297 (crescat) +The police are investigating the cause of the accident. 警察调查事故的原因。 CC-BY 2.0 (France) Attribution: tatoeba.org #238234 (CK) & #1670395 (vicch) +The show was very interesting. You should have seen it. 演出真的很有意思,你该去看看的。 CC-BY 2.0 (France) Attribution: tatoeba.org #68685 (CK) & #334892 (fucongcong) +The stars are shining very brightly in the sky tonight. 今晚的夜空星光非常明亮。 CC-BY 2.0 (France) Attribution: tatoeba.org #3054436 (WestofEden) & #781539 (Martha) +The weather report says we'll get three inches of snow. 天气预报说会下三英寸雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537296 (CK) & #5640750 (verdastelo9604) +There is a certain amount of truth in what he's saying. 他說的話有一定的道理。 CC-BY 2.0 (France) Attribution: tatoeba.org #74002 (Swift) & #772373 (Martha) +There is a good chance that gasoline prices will go up. 油价上涨的可能性很高。 CC-BY 2.0 (France) Attribution: tatoeba.org #3818959 (CK) & #5650425 (verdastelo9604) +There must be a way to arrive at a diplomatic solution. 必须有外交解决的途径。 CC-BY 2.0 (France) Attribution: tatoeba.org #521020 (darinmex) & #5865529 (verdastelo9604) +They answered their teacher's question with difficulty. 他们好不容易才回答了他们老师的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #307006 (CK) & #334323 (fucongcong) +They had their houses destroyed by a strong earthquake. 他們的房屋被強烈地震摧毀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #306377 (CK) & #780403 (Martha) +They obtained a yield of 8 percent on their investment. 他們在這次的投資中得到百分之八的收益。 CC-BY 2.0 (France) Attribution: tatoeba.org #307232 (CM) & #1225662 (tsayng) +This is one of the best restaurants I've ever eaten in. 这是我吃过的最好的餐馆之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #8459196 (CK) & #8463633 (gumblex) +This is the most beautiful sight that I have ever seen. 这是我见过最美的景色了。 CC-BY 2.0 (France) Attribution: tatoeba.org #55723 (CK) & #332614 (fucongcong) +Tom needs to study more if he hopes to pass this class. 汤姆如果想通过这门课,就需要加劲学习。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024399 (CK) & #5613696 (verdastelo9604) +Tom seems to hardly ever get his homework done on time. Tom似乎没办法准时完成他的作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024185 (CK) & #4844966 (pig8322) +Tom told me not to open the envelope until my birthday. 汤姆告诉我,到我生日那天我才能打开信封。 CC-BY 2.0 (France) Attribution: tatoeba.org #3205095 (CK) & #8517164 (gumblex) +Tom told me that he'd give me that book if I wanted it. 汤姆说过,如果我想要的话他可以把这本书给我。 CC-BY 2.0 (France) Attribution: tatoeba.org #6787994 (CK) & #8926995 (crescat) +We encountered a lot of difficulties on the expedition. 我们在探险的时候遇到了很多困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #49469 (CK) & #9007539 (jacintoo) +What do you make of his attitude towards us these days? 你做了什麼讓他這些日子用這種態度對待我們? CC-BY 2.0 (France) Attribution: tatoeba.org #18723 (CK) & #830387 (Martha) +When she saw that they had no schools, she started one. 当她发现他们还没有学校,她就办了一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #21633 (Zifre) & #332507 (fucongcong) +When we're children, everything around us looks so big. 我们小时候,所有的一切对我们来说都显得那么大。。。 CC-BY 2.0 (France) Attribution: tatoeba.org #2737574 (CK) & #503056 (fucongcong) +Whether you succeed or not depends on your own efforts. 你成功与否取决于你自身的努力。 CC-BY 2.0 (France) Attribution: tatoeba.org #271293 (CM) & #332945 (fucongcong) +Will you help me give out the programs to those people? 你能帮我给这些人分发节目单吗? CC-BY 2.0 (France) Attribution: tatoeba.org #68165 (CK) & #3845335 (sadhen) +Women eat lighter meals when they're eating with a guy. 當女性跟一個男人吃飯時,女性會吃得比較少。 CC-BY 2.0 (France) Attribution: tatoeba.org #825655 (Spamster) & #827638 (Martha) +Would you like to know how to prevent getting wrinkles? 你想要知道如何避免皺紋嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #954702 (CK) & #4262044 (egg0073) +You had better read a lot of books while you are young. 你最好在年轻的时候多读点书。 CC-BY 2.0 (France) Attribution: tatoeba.org #265741 (CM) & #8835194 (crescat) +You've got to set the alarm clock before you go to bed. 在你上床睡覺之前,你必須把鬧鐘設定好。 CC-BY 2.0 (France) Attribution: tatoeba.org #268922 (CK) & #918009 (Martha) +A capital letter is used at the beginning of a sentence. 一個句子以一個大寫字母開始。 CC-BY 2.0 (France) Attribution: tatoeba.org #320024 (CK) & #830415 (Martha) +A capital letter is used at the beginning of a sentence. 一個大寫字母被使用在一個句子的開頭。 CC-BY 2.0 (France) Attribution: tatoeba.org #320024 (CK) & #830419 (Martha) +A female friend of mine loves to go to gay bars with me. 我的一个女性朋友喜欢跟我一起去同志酒吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #629763 (darinmex) & #1703591 (yuzazaza) +A glass of cold water is very refreshing in hot weather. 一杯冷水在暑热的天气里十分提神。 CC-BY 2.0 (France) Attribution: tatoeba.org #267091 (CK) & #1397306 (mtdot) +A lot of students around the world are studying English. 世界上許多學生正在學習英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #271190 (CK) & #811542 (Martha) +A slip of the tongue is sometimes fatal to a politician. 有时候口误对政治家来说是致命的。 CC-BY 2.0 (France) Attribution: tatoeba.org #264954 (CM) & #335325 (fucongcong) +America likes to claim that it is a "classless" society. 美国是一个自称没有社会阶层的国家。 CC-BY 2.0 (France) Attribution: tatoeba.org #67536 (CM) & #812218 (fucongcong) +Apart from on rainy days, I always ride my bike to work. 除了雨天,我都是骑车去上班的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1360705 (xrchz) & #332827 (fucongcong) +Columbus argued that he could reach India by going west. 哥伦布提出,向西航行可以到达印度。 CC-BY 2.0 (France) Attribution: tatoeba.org #54857 (CM) & #1394848 (mtdot) +Cosmetic surgery is not covered by most insurance plans. 大部份的保險計劃不包含整容手術。 CC-BY 2.0 (France) Attribution: tatoeba.org #546773 (darinmex) & #777730 (Martha) +Dad gave me a book, and my little brother gave me a pen. 爸爸給了我一本書, 弟弟給了我一枝筆。 CC-BY 2.0 (France) Attribution: tatoeba.org #7819907 (sharris123) & #763902 (Martha) +Do you keep in contact with your high school classmates? 你还和你的高中同学保持联系吗? CC-BY 2.0 (France) Attribution: tatoeba.org #241264 (CK) & #1789985 (sadhen) +Do you know how far it is from the station to city hall? 你知道从火车站到市政府有多远? CC-BY 2.0 (France) Attribution: tatoeba.org #26105 (CK) & #333091 (fucongcong) +Don't be afraid to make mistakes when you speak English. 說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #3425650 (ijikure) & #790633 (Martha) +Don't be afraid to make mistakes when you speak English. 當你說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #3425650 (ijikure) & #811854 (Martha) +Due to the worsening weather, the departure was delayed. 由于天气变差,出发延迟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #432796 (aliene) & #335626 (fucongcong) +Everyone except Tom knew that he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226504 (CK) & #9012194 (jacintoo) +He always plans a thing out carefully before he does it. 他每件事做之前都會細心計劃。 CC-BY 2.0 (France) Attribution: tatoeba.org #289163 (CK) & #6107688 (xjjAstrus) +He has just published an interesting series of articles. 他刚发表一系列有趣的文章。 CC-BY 2.0 (France) Attribution: tatoeba.org #2173 (CS) & #503295 (fucongcong) +He hurried to the station so he wouldn't miss the train. 为了不错过火车,他匆匆赶往了车站。 CC-BY 2.0 (France) Attribution: tatoeba.org #304808 (CK) & #8739469 (crescat) +He visited his hometown for the first time in ten years. 他10年中第一次访问他的故乡。 CC-BY 2.0 (France) Attribution: tatoeba.org #288368 (CK) & #819666 (fucongcong) +How much time do you estimate it'll take you to do that? 你估计做那件事需要花费你多少时间呢? CC-BY 2.0 (France) Attribution: tatoeba.org #6229900 (CK) & #8751437 (slo_oth) +I thought that I told you to stay away from my computer. 我说过让你离我的电脑远一点的。 CC-BY 2.0 (France) Attribution: tatoeba.org #7174220 (CK) & #8929171 (crescat) +I told you not to talk about the matter in her presence. 我跟你说过她在的时候不要说这件事。 CC-BY 2.0 (France) Attribution: tatoeba.org #309524 (CK) & #465025 (fucongcong) +I was surprised at his strong resemblance to his father. 他像极了他父亲,这让我震惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #398831 (blay_paul) & #1397359 (mtdot) +I will only buy the car if they repair the brakes first. 除非他们事先修好刹车,我才会买车子。 CC-BY 2.0 (France) Attribution: tatoeba.org #504605 (eastasiastudent) & #461524 (fucongcong) +I'd be grateful to you if you could teach me to do that. 如果你能教我怎麼做,我會很感激。 CC-BY 2.0 (France) Attribution: tatoeba.org #6108349 (CK) & #6318550 (verdastelo9604) +I'd like to exchange this shirt that I bought yesterday. 我想去換我昨天買的這件襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #7558281 (CK) & #768282 (Martha) +I'm a stranger here myself. I'm afraid I can't help you. 我對這裡不熟。恐怕我不能幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #262334 (CK) & #830376 (Martha) +I've always wondered what it'd be like to have siblings. 我总是想有兄弟姐妹会怎么样。 CC-BY 2.0 (France) Attribution: tatoeba.org #1345 (human600) & #501323 (fucongcong) +If you can't come, you should let me know ahead of time. 如果你不能來,你該讓我提前知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2400253 (CK) & #6120898 (verdastelo9604) +Industry as we know it today didn't exist in those days. 我们今天所认识的工业在那个时代不存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #242435 (CK) & #334602 (fucongcong) +It was before dawn that they got the fire under control. 他们在黎明前控制住了火势。 CC-BY 2.0 (France) Attribution: tatoeba.org #304975 (CK) & #1394864 (mtdot) +It's a good thing to read good books when you are young. 年轻的时候多看点好书是件好事。 CC-BY 2.0 (France) Attribution: tatoeba.org #265711 (CK) & #333659 (fucongcong) +It's hard to say what the weather will be like tomorrow. 很难说明天的天气将会怎样。 CC-BY 2.0 (France) Attribution: tatoeba.org #386757 (Mouseneb) & #332955 (fucongcong) +Let me remind you again that March 31st is the due date. 讓我再次提醒你3月31日是到期日。 CC-BY 2.0 (France) Attribution: tatoeba.org #282237 (CK) & #780056 (Martha) +Let me tell you the reasons that I don't agree with you. 让我来告诉你我不赞成你的理由。 CC-BY 2.0 (France) Attribution: tatoeba.org #954141 (CK) & #1438517 (asosan) +Life would be so much better if you didn't care so much. 如果你不计较太多,生活会更容易些。 CC-BY 2.0 (France) Attribution: tatoeba.org #1507006 (fenfang557) & #1532097 (fenfang557) +Mastering a foreign language involves a lot of patience. 学好一门外语需要坚韧不拔的毅力。 CC-BY 2.0 (France) Attribution: tatoeba.org #21916 (Eldad) & #1736070 (yuzazaza) +Much of London was destroyed in the seventeenth century. 倫敦許多部份在十七世紀時被摧毀。 CC-BY 2.0 (France) Attribution: tatoeba.org #29281 (CM) & #5363940 (egg0073) +My brother would often stay up all night reading novels. 我哥哥經常熬夜看小說。 CC-BY 2.0 (France) Attribution: tatoeba.org #278551 (CK) & #889215 (Martha) +My father is very much involved in the stock market now. 我爸爸现在非常专注于股市。 CC-BY 2.0 (France) Attribution: tatoeba.org #251678 (CM) & #333572 (fucongcong) +My memory failed me. I just could not remember his name. 我的記性不好。我簡直不記得他的名字了。 CC-BY 2.0 (France) Attribution: tatoeba.org #250645 (CM) & #780392 (Martha) +My parents have gone to the airport to see my uncle off. 我父母去机场送我叔叔了。 CC-BY 2.0 (France) Attribution: tatoeba.org #325694 (CK) & #336651 (fucongcong) +My plan is to spend the New Year's holiday in Australia. 我打算在澳大利亚过新年。 CC-BY 2.0 (France) Attribution: tatoeba.org #2950903 (CK) & #8697589 (morningstar) +My sister is twenty-one years old and a college student. 我妹妹21岁,是个大学生。 CC-BY 2.0 (France) Attribution: tatoeba.org #322318 (CK) & #332794 (fucongcong) +Please send me a reply as soon as you receive this mail. 收到此邮件后请尽快给我答复。 CC-BY 2.0 (France) Attribution: tatoeba.org #54950 (CK) & #528038 (biglion) +She is wearing the same dress that she had on yesterday. 她穿著跟昨天相同的衣服。 CC-BY 2.0 (France) Attribution: tatoeba.org #244636 (CK) & #778478 (Martha) +Some people do not like to deposit their money in banks. 有些人不喜欢把钱存银行。 CC-BY 2.0 (France) Attribution: tatoeba.org #18439 (CK) & #487652 (fucongcong) +Thank you very much for the wonderful dinner last night. 非常感謝您昨晚美妙的晚餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #244524 (CK) & #834316 (Martha) +The audience was largely made up of very young children. 大部分观众是年幼的儿童。 CC-BY 2.0 (France) Attribution: tatoeba.org #277943 (CM) & #478812 (biglion) +The bathtub was filled with hot water and flower petals. 浴缸裡滿是熱水和花瓣。 CC-BY 2.0 (France) Attribution: tatoeba.org #4010261 (Hybrid) & #6135018 (verdastelo9604) +The captain is responsible for the safety of passengers. 船长要为乘客安全负责。 CC-BY 2.0 (France) Attribution: tatoeba.org #273507 (CK) & #5581655 (verdastelo9604) +The colors of the American flag are red, white and blue. 美国国旗的颜色是红白蓝。 CC-BY 2.0 (France) Attribution: tatoeba.org #462660 (lukaszpp) & #466152 (fucongcong) +The court declared him innocent on the charge of murder. 法庭对他的谋杀罪名作出了无罪判决。 CC-BY 2.0 (France) Attribution: tatoeba.org #387431 (CK) & #8829225 (crescat) +The only sound to be heard was the ticking of the clock. 唯一能听到的声音是钟的滴答声。 CC-BY 2.0 (France) Attribution: tatoeba.org #320095 (CK) & #1873105 (sadhen) +The poor people were at the mercy of the cruel dictator. 可憐的人民任憑殘暴的獨裁者處置。 CC-BY 2.0 (France) Attribution: tatoeba.org #50558 (CK) & #830343 (Martha) +The students were for the most part from the West Coast. 大部分的學生來自西海岸。 CC-BY 2.0 (France) Attribution: tatoeba.org #48897 (CK) & #830331 (Martha) +The tourists were fascinated with the exquisite scenery. 觀光客被獨特的景致所吸引。 CC-BY 2.0 (France) Attribution: tatoeba.org #20915 (Zifre) & #1238324 (tsayng) +There was only one warden on duty when the riot started. 暴動開始時只有一位監獄長值班。 CC-BY 2.0 (France) Attribution: tatoeba.org #321200 (CK) & #830330 (Martha) +There's something I've been meaning to discuss with you. 有件事我一直想跟你商量。 CC-BY 2.0 (France) Attribution: tatoeba.org #6855727 (CK) & #6857070 (lokria) +This is the house where I used to live when I was young. 这是我年轻时候住的房子。 CC-BY 2.0 (France) Attribution: tatoeba.org #45565 (CK) & #334790 (fucongcong) +Time passes quickly when we are doing something we like. 在做喜欢的事情的时候时间过去得很快。 CC-BY 2.0 (France) Attribution: tatoeba.org #240655 (adjusting) & #8741990 (crescat) +To be very honest with you, I don't think I can do that. 和你说句实话,我觉得我做不到。 CC-BY 2.0 (France) Attribution: tatoeba.org #6855729 (CK) & #6857073 (lokria) +Tom had a pain in his chest, so he went to the hospital. 汤姆胸痛,所以去了医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #1025602 (CK) & #8517158 (gumblex) +Tomorrow's weather should be sunny with occasional rain. 明天天气晴转阵雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #323216 (CK) & #2567436 (fenfang557) +We all chipped in to buy our teacher a birthday present. 我们所有人凑份子给老师买生日礼物。 CC-BY 2.0 (France) Attribution: tatoeba.org #623182 (darinmex) & #815297 (fucongcong) +We could stay in Boston for a few more days if you like. 如果你愿意的话,我们可以在波士顿多待几天 CC-BY 2.0 (France) Attribution: tatoeba.org #6229679 (CK) & #8748501 (cxpadonis) +We have to turn in our reports by the end of this month. 这个月底前,我们必须交报告。 CC-BY 2.0 (France) Attribution: tatoeba.org #248395 (CK) & #332952 (fucongcong) +We're all looking forward to seeing you and your family. 我们都期待看到你和你的家人。 CC-BY 2.0 (France) Attribution: tatoeba.org #6874144 (CK) & #332937 (fucongcong) +We're finding it difficult deciding on which one to buy. 我们觉得很难决定买哪一个。 CC-BY 2.0 (France) Attribution: tatoeba.org #879543 (CK) & #1415814 (sadhen) +Which do you like better, rock music or classical music? 你比較喜歡哪一個,搖滾樂還是古典音樂? CC-BY 2.0 (France) Attribution: tatoeba.org #29350 (CK) & #919711 (Martha) +With just a little more effort, he would have succeeded. 如果他再努力一点,就可能已经成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31436 (CK) & #333662 (fucongcong) +You are old enough to know better than to act like that. 你夠大了知道不要那樣做。 CC-BY 2.0 (France) Attribution: tatoeba.org #16536 (CK) & #775805 (Martha) +You should ask your father for his advice and follow it. 你應該問你父親的忠告並遵守它。 CC-BY 2.0 (France) Attribution: tatoeba.org #16739 (CK) & #775838 (Martha) +You'd better take an umbrella with you in case it rains. 以防下雨你最好带把伞。 CC-BY 2.0 (France) Attribution: tatoeba.org #7805435 (CK) & #4760007 (ryanwoo) +You'll never achieve anything if you don't study harder. 如果你不更加努力地學習, 你將永遠不會有所成就。 CC-BY 2.0 (France) Attribution: tatoeba.org #30467 (CK) & #780376 (Martha) +Your mother must have been beautiful when she was young. 你母親年輕的時候一定很美。 CC-BY 2.0 (France) Attribution: tatoeba.org #17404 (papabear) & #886125 (Martha) +"When will you be back?" "It all depends on the weather." “你什么时候回来?”“这都要看天气。” CC-BY 2.0 (France) Attribution: tatoeba.org #1506 (CK) & #334488 (fucongcong) +"When will you be back?" "It all depends on the weather." “你什么时候回来呀?”“看一下天气怎么样再说啦。” CC-BY 2.0 (France) Attribution: tatoeba.org #1506 (CK) & #8591284 (easononizuka) +A burglar broke into my house while I was away on a trip. 一个入室盗窃者趁我去旅游的时候闯入了我家。 CC-BY 2.0 (France) Attribution: tatoeba.org #247128 (CK) & #346802 (fucongcong) +About how much will I have to pay for all the treatments? 所有的医药费我大概要付多少? CC-BY 2.0 (France) Attribution: tatoeba.org #264380 (CM) & #333845 (fucongcong) +According to the weather forecast, it will snow tomorrow. 天气预报说明天会下雪。 CC-BY 2.0 (France) Attribution: tatoeba.org #402048 (blay_paul) & #4960569 (murr) +Actinium was discovered by André-Louis Debierne in 1899. 锕在1899年被他发现。 CC-BY 2.0 (France) Attribution: tatoeba.org #2169937 (CM) & #4353691 (e78xx_xxx) +Action speaks louder than words, but not nearly as often. 行胜于言,但并不是所有情况都是这样。 CC-BY 2.0 (France) Attribution: tatoeba.org #667883 (CK) & #2426072 (huangfen) +Almost everyone in our village is related to one another. 我们村里所有的村民几乎彼此都是亲戚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2174963 (FeuDRenais) & #2174210 (sadhen) +Banks charge higher interest on loans to risky customers. 银行对风险客户收取较高的贷款利息。 CC-BY 2.0 (France) Attribution: tatoeba.org #18430 (Zifre) & #332651 (fucongcong) +Children should keep away from the river. It's dangerous. 儿童应该远离河流。有危险。 CC-BY 2.0 (France) Attribution: tatoeba.org #245915 (CM) & #5613677 (verdastelo9604) +English is spoken by more people than any other language. 說英語的人比說任何其他語言的人多。 CC-BY 2.0 (France) Attribution: tatoeba.org #26252 (CK) & #811888 (Martha) +Every day I waited for her at the bookstore after school. 我每天放学后在书店那里等她。 CC-BY 2.0 (France) Attribution: tatoeba.org #322395 (CM) & #5942081 (verdastelo9604) +Everybody except Tom knew that he didn't need to do that. 除了汤姆以外任何人都知道他没必要这么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226507 (CK) & #9012194 (jacintoo) +Half a million children still face malnutrition in Niger. 尼日尔仍然有50万孩子面临着营养不良。 CC-BY 2.0 (France) Attribution: tatoeba.org #1732 (Zifre) & #501707 (fucongcong) +He is proud of having been educated in the United States. 他对自己在美国读过书这件事感到很骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #287961 (CK) & #8798298 (crescat) +I came to this country for the purpose of studying music. 我來這個國家的目的是學習音樂。 CC-BY 2.0 (France) Attribution: tatoeba.org #25399 (CK) & #789963 (Martha) +I can't look at this painting without thinking of my mom. 我無法看著這幅畫而不想起我母親。 CC-BY 2.0 (France) Attribution: tatoeba.org #8716820 (krrk) & #3742422 (egg0073) +I told Tom that I thought his house needed to be painted. 我告诉汤姆我认为他的房子要刷漆。 CC-BY 2.0 (France) Attribution: tatoeba.org #3205141 (CK) & #5670760 (verdastelo9604) +I took it for granted that she would come to our wedding. 我理所当然地认为她会参加我们的结婚典礼。 CC-BY 2.0 (France) Attribution: tatoeba.org #315984 (CK) & #8789777 (crescat) +I tried very hard to put an end to their heated argument. 我努力地平息他們不斷加溫的爭執。 CC-BY 2.0 (France) Attribution: tatoeba.org #257231 (CM) & #1239328 (tsayng) +I want to move out of this cramped room as soon as I can. 我想尽快从这个不透气的屋子里出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #54677 (CK) & #819722 (fucongcong) +I would like to have a look at your collection of stamps. 我想看看您的邮票收藏。 CC-BY 2.0 (France) Attribution: tatoeba.org #266871 (CK) & #782291 (fucongcong) +I'm not a university student, but I'm brighter than them. 我不是一個大學生, 但我比他們更聰明。 CC-BY 2.0 (France) Attribution: tatoeba.org #328689 (fcbond) & #793528 (Martha) +If you do not have this program, you can download it now. 假如你没有这个程序,你现在就可以去下载。 CC-BY 2.0 (France) Attribution: tatoeba.org #2201 (kebukebu) & #478786 (biglion) +If you would move over, there would be room for everyone. 如果您移過去一點, 每個人就可以有空間了。 CC-BY 2.0 (France) Attribution: tatoeba.org #272104 (CK) & #786045 (Martha) +It is very expensive to keep up with the latest fashions. 跟上最近潮流时尚是件非常花钱的事儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #244073 (CK) & #1235508 (sunnywqing) +Mary isn't really sick. She's only pretending to be sick. 玛丽不是真病。她只是装病。 CC-BY 2.0 (France) Attribution: tatoeba.org #1356721 (CK) & #5663596 (verdastelo9604) +More than 40 percent of the students go on to university. 40%以上的学生去读大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #2348947 (CK) & #1753097 (sadhen) +No other mountain in the world is as tall as Mt. Everest. 世界上任何山峰都达不到珠穆朗瑪峰的高度。 CC-BY 2.0 (France) Attribution: tatoeba.org #388012 (Mouseneb) & #343363 (fucongcong) +She tried to lift the box, but found it impossible to do. 她試著舉起箱子,但發現不可能做到。 CC-BY 2.0 (France) Attribution: tatoeba.org #1327634 (CK) & #6119425 (verdastelo9604) +She would often go to the theater when she was in London. 她在伦敦的时候,曾经常去剧院。 CC-BY 2.0 (France) Attribution: tatoeba.org #312447 (CK) & #863947 (kooler) +Thanks very much for having me to dinner the other night. 谢谢那天晚上请我吃了饭。 CC-BY 2.0 (France) Attribution: tatoeba.org #59895 (CK) & #336725 (fucongcong) +That was the most interesting novel that I had ever read. 这是我所读过的最有趣的小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #67067 (CK) & #7768305 (jiangche) +The company suffered a loss of one billion yen last year. 那家公司去年亏损了10亿日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #49092 (CK) & #8832720 (crescat) +The date of the festival coincides with that of the exam. 节日和考试碰巧在同一天。 CC-BY 2.0 (France) Attribution: tatoeba.org #64481 (CM) & #333834 (fucongcong) +They are leaving in three days, that is to say June 10th. 他們將在三天後離開, 那也就是說在六月十日。 CC-BY 2.0 (France) Attribution: tatoeba.org #305431 (CK) & #780361 (Martha) +They referred to Chaucer as the father of English poetry. 他們視喬叟為英詩之父。 CC-BY 2.0 (France) Attribution: tatoeba.org #305906 (CM) & #1229001 (tsayng) +They were forced to kill and eat several of their horses. 他们被迫杀掉他们的几匹马来吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #802731 (Source_VOA) & #1397116 (mtdot) +This is the last time I'll ask you to do anything for me. 这是我最后一次让你为我做点事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #246628 (CK) & #835590 (fucongcong) +To tell you the truth, this is a little too spicy for me. 说实话,这对我来说有点太辣了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3205137 (CK) & #8556491 (slo_oth) +Tom did a good job predicting who would win the election. 汤姆预测胜选者做得好。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094869 (CK) & #5549559 (verdastelo9604) +Tom doesn't have any friends who are willing to help him. 汤姆没有愿意帮助他的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #6225519 (CK) & #8739629 (slo_oth) +Tom probably doesn't know how to do that as well as Mary. 湯姆可能不知道如何做得像瑪麗做得一样好。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226598 (CK) & #8570959 (verdastelo9604) +Tom used a fire extinguisher to try and put the fire out. 湯姆試著用滅火器把火撲滅。 CC-BY 2.0 (France) Attribution: tatoeba.org #4498691 (CK) & #4794681 (umidake) +Tom was sitting alone at one of the tables near the door. 湯姆獨自坐在門邊一個桌子旁。 CC-BY 2.0 (France) Attribution: tatoeba.org #2958610 (CK) & #6633891 (verdastelo9604) +Tsunamis swept through rice fields and flooded the towns. 海嘯席捲稻田, 淹沒了城鎮。 CC-BY 2.0 (France) Attribution: tatoeba.org #789369 (Martha) & #789357 (Martha) +We are all looking forward to seeing you and your family. 我们都期待看到你和你的家人。 CC-BY 2.0 (France) Attribution: tatoeba.org #28816 (CK) & #332937 (fucongcong) +We are here in the name of Jesus Christ and King Charles. 我們這裡以耶穌基督和查理斯國王之名。 CC-BY 2.0 (France) Attribution: tatoeba.org #247883 (CM) & #844520 (Martha) +We need you to tell us why you were absent all last week. 我们要你告诉我们你为什么整个上周都缺勤。 CC-BY 2.0 (France) Attribution: tatoeba.org #3724399 (CM) & #5911690 (verdastelo9604) +What have you done with my pen? It was here a minute ago. 你把我的鋼筆怎麼了? 一分鐘前它還在這裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #33560 (CK) & #793606 (Martha) +When he shouted, the veins in his neck stood out clearly. 当他咆哮时,他脖子上青筋暴起。 CC-BY 2.0 (France) Attribution: tatoeba.org #283541 (CM) & #5617162 (verdastelo9604) +Will it be necessary for us to buy a book for this class? 我们有必要为上这门课买本教材吗? CC-BY 2.0 (France) Attribution: tatoeba.org #503182 (FeuDRenais) & #8969819 (WilsonWong) +Would it be ethical to sacrifice one person to save many? 为了救许多人牺牲一个人是否道德? CC-BY 2.0 (France) Attribution: tatoeba.org #652444 (darinmex) & #812366 (fucongcong) +You cannot purchase this medicine without a prescription. 那个药的话没有处方是买不到的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5992302 (AlanF_US) & #8700794 (crescat) +You have changed so much that I can hardly recognize you. 你变了那么多,以至于我几乎认不出你了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67727 (CK) & #414048 (fucongcong) +You have no right to interfere in other people's affairs. 你沒有干涉他人事務的權力。 CC-BY 2.0 (France) Attribution: tatoeba.org #69132 (CM) & #1227061 (tsayng) +You never get a second chance to make a first impression. 你永遠沒有第二次機會去打造第一印象。 CC-BY 2.0 (France) Attribution: tatoeba.org #718452 (darinmex) & #771721 (Martha) +You should have done it earlier. It cannot be helped now. 你應該早點做的。現在沒人可以幫你。 CC-BY 2.0 (France) Attribution: tatoeba.org #16552 (CK) & #775809 (Martha) +You should have done it earlier. It cannot be helped now. 你本应该早点做的。现在已经没有任何办法了。 CC-BY 2.0 (France) Attribution: tatoeba.org #16552 (CK) & #2392979 (fenfang557) +You've both been very impressive today. I'm proud of you. 今天你们俩很让人印象深刻。我为你们感到骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #328503 (fcbond) & #335323 (fucongcong) +A little walk will give you a good appetite for breakfast. 散散步將會給你很好的食慾吃早餐。 CC-BY 2.0 (France) Attribution: tatoeba.org #40005 (CK) & #830480 (Martha) +A true scientist would not approach the question this way. 真正的科学家不会这样去思考。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697729 (shanghainese) & #1695399 (Venki) +After climbing Mt. Fuji, I got the inspiration for a poem. 攀登富士山後,我得到了一首詩的靈感。 CC-BY 2.0 (France) Attribution: tatoeba.org #328077 (CK) & #830464 (Martha) +After running up the hill, I was completely out of breath. 跑上山後,我完全喘不過氣來。 CC-BY 2.0 (France) Attribution: tatoeba.org #19851 (CK) & #830468 (Martha) +All you have to do is to write your name and address here. 你只要在这里写下你的姓名和地址就行了。 CC-BY 2.0 (France) Attribution: tatoeba.org #61767 (CK) & #333070 (fucongcong) +Although I enjoy bowling, I haven't gone bowling recently. 虽然我享受打保龄球,但是我最近没有去打保龄球。 CC-BY 2.0 (France) Attribution: tatoeba.org #6337866 (CK) & #8658806 (slo_oth) +Be careful not to drive the wrong way on a one-way street. 小心不要在单行道逆向行驶。 CC-BY 2.0 (France) Attribution: tatoeba.org #682503 (Source_VOA) & #787558 (fucongcong) +Between you and me, I'm going to quit my present job soon. 我只跟你说,我很快就要辞掉我现在的工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #280773 (CM) & #813567 (fucongcong) +Blondes earn 7% more than women with any other hair color. 金髮女郎比其他顏色頭髮的女人多賺7%。 CC-BY 2.0 (France) Attribution: tatoeba.org #825615 (Spamster) & #827644 (Martha) +Both of Tom's parents passed away when he was quite young. 汤姆很小的时候父母就都去世了。 CC-BY 2.0 (France) Attribution: tatoeba.org #8586663 (CK) & #8589657 (tianblr) +Do you really need to ask the question to know the answer? 你真的需要提问题来知道答案吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1489 (brauliobezerra) & #334710 (fucongcong) +Don't be afraid of making mistakes when you speak English. 說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #26179 (CK) & #790633 (Martha) +Don't be afraid of making mistakes when you speak English. 當你說英語的時候不要怕犯錯。 CC-BY 2.0 (France) Attribution: tatoeba.org #26179 (CK) & #811854 (Martha) +Ebola spreads from person to person through bodily fluids. 埃博拉通过体液在人与人之间传播。 CC-BY 2.0 (France) Attribution: tatoeba.org #3571912 (Hybrid) & #5694484 (verdastelo9604) +France is running a welfare state it can no longer afford. 法國是一個福利國家,但它卻不再能夠負擔得起了。 CC-BY 2.0 (France) Attribution: tatoeba.org #814831 (U2FS) & #816813 (Martha) +He is a man of few words, but he always keeps his promise. 他这个人话不多,但总是遵守诺言。 CC-BY 2.0 (France) Attribution: tatoeba.org #296117 (CK) & #390844 (fucongcong) +He owes his success both to working hard and to good luck. 他的成功要归结于他的辛勤工作和好运气。 CC-BY 2.0 (France) Attribution: tatoeba.org #286934 (CM) & #1397150 (mtdot) +He was discovered unconscious on the floor of the kitchen. 他被人发现倒在厨房的地板上,不省人事。 CC-BY 2.0 (France) Attribution: tatoeba.org #383528 (Mouseneb) & #343972 (fucongcong) +How long does it take to go from here to the Hilton Hotel? 從這裡到希爾頓飯店要花多久時間? CC-BY 2.0 (France) Attribution: tatoeba.org #62116 (CK) & #881825 (Martha) +However hard I try, I can't do it any better than she can. 无论我多么努力尝试,我都无法做到比她更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #36750 (CK) & #8658808 (slo_oth) +I don't like being the one who always has to milk the cow. 我不喜欢做那个总是挤牛奶的人 CC-BY 2.0 (France) Attribution: tatoeba.org #6229151 (CK) & #8748506 (cxpadonis) +I got over the difficulty with my characteristic tenacity. 我凭韧性克服了困难。 CC-BY 2.0 (France) Attribution: tatoeba.org #258109 (CM) & #5655348 (verdastelo9604) +I had hoped that my mother would live until I got married. 我曾经希望我妈妈能活到我结婚的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #554191 (CK) & #4621037 (Yashanti) +I had to abstain from smoking while I was in the hospital. 在医院的时候,我不得不戒烟。 CC-BY 2.0 (France) Attribution: tatoeba.org #259867 (CK) & #1878437 (sadhen) +I have so many clothes I don't know what to wear tomorrow. 我有那么多衣服,以至于我不知道明天穿什么了。 CC-BY 2.0 (France) Attribution: tatoeba.org #255251 (CK) & #813622 (fucongcong) +I should be studying English, but I want to watch a movie. 我真的應該學英語, 但是我想看電影。 CC-BY 2.0 (France) Attribution: tatoeba.org #896176 (pauldhunt) & #765240 (Martha) +I think skateboards are usually cheaper than rollerblades. 我觉得一般滑板比轮滑鞋便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #953648 (CK) & #8692944 (crescat) +I'd gladly pay more for something if it's of high quality. 如果它是高品質的東西我會很樂意多付一點錢。 CC-BY 2.0 (France) Attribution: tatoeba.org #827436 (darinmex) & #827521 (Martha) +I'd like to have this meat dish with your best white wine. 我想在吃这肉喝你最好的白酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #57557 (CK) & #5670807 (verdastelo9604) +I'm sorry I wasn't able to see you when you came by today. 我很抱歉今天您来的时候没能见您。 CC-BY 2.0 (France) Attribution: tatoeba.org #242437 (CK) & #784375 (fucongcong) +I've always wanted to be a professional basketball player. 我一直想成为一名职业篮球运动员。 CC-BY 2.0 (France) Attribution: tatoeba.org #953871 (CK) & #8463537 (gumblex) +I've never been to New York, and my sister hasn't, either. 我从没去过纽约,我妹妹也没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #255339 (CK) & #784534 (fucongcong) +If I had the money, I would immediately buy this computer. 我要是有钱,立马就买这台电脑。 CC-BY 2.0 (France) Attribution: tatoeba.org #939350 (sacredceltic) & #7774776 (jiangche) +In the Edo period, moon-viewing parties were very popular. 在江戶時代賞月的宴會非常受歡迎。 CC-BY 2.0 (France) Attribution: tatoeba.org #328937 (fcbond) & #889251 (Martha) +Indigenous Australians have eaten kangaroos for millennia. 澳大利亚土著已经吃了上千年袋鼠。 CC-BY 2.0 (France) Attribution: tatoeba.org #1777856 (CS) & #8800304 (slo_oth) +It is up to you to decide whether we will go there or not. 该由你来决定我们去不去那儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #1524 (Zifre) & #334463 (fucongcong) +It is up to you to decide whether we will go there or not. 我们去不去那儿由你来决定。 CC-BY 2.0 (France) Attribution: tatoeba.org #1524 (Zifre) & #406365 (fucongcong) +It says in the Bible, "Man shall not live on bread alone." 圣经里有一句话,叫做“人不能只靠面包生活”。 CC-BY 2.0 (France) Attribution: tatoeba.org #270019 (CM) & #1706660 (yuzazaza) +It took me a little more time than usually to fall asleep. 我花了比平常多一點的時間入睡。 CC-BY 2.0 (France) Attribution: tatoeba.org #776365 (lde) & #776965 (Martha) +It was difficult for him to hide his pride in his success. 他很难掩饰对自己成功的骄傲。 CC-BY 2.0 (France) Attribution: tatoeba.org #284627 (CM) & #463878 (fucongcong) +It's impossible to do the sights of Tokyo in a day or two. 一两天是没办法逛完东京的。 CC-BY 2.0 (France) Attribution: tatoeba.org #73074 (CK) & #8863031 (crescat) +It's so secret that even I don't know what it's all about. 这太秘密了,连我都不知道它是关于什么的。 CC-BY 2.0 (France) Attribution: tatoeba.org #3164476 (CK) & #8589146 (easononizuka) +Many improvements have been made since this century began. 本世纪初以来,产生了很多进步。 CC-BY 2.0 (France) Attribution: tatoeba.org #242142 (CM) & #8500213 (black333) +My grandfather sometimes talks to himself when he's alone. 我祖父一个人的时候,有时会自言自语。 CC-BY 2.0 (France) Attribution: tatoeba.org #273865 (CK) & #813616 (fucongcong) +Some people like red wine and some people like white wine. 有人喜歡紅酒,有人喜歡白酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #272354 (CK) & #6146513 (verdastelo9604) +Step out of the car and place your hands behind your back. 下车,把手放在背后。 CC-BY 2.0 (France) Attribution: tatoeba.org #601970 (darinmex) & #818824 (fucongcong) +That coat may have cost a lot of money, but it's worth it. 那大衣可能花了很多錢,但它值得。 CC-BY 2.0 (France) Attribution: tatoeba.org #68700 (CK) & #6068362 (verdastelo9604) +That was the part that Tom and I were most confused about. 这是我和汤姆最困惑的部分。 CC-BY 2.0 (France) Attribution: tatoeba.org #6659989 (CK) & #8550953 (slo_oth) +The Eiffel Tower is in the same city as the Louvre Museum. 埃菲尔铁塔和卢浮宫在同一座城市。 CC-BY 2.0 (France) Attribution: tatoeba.org #479194 (CK) & #526553 (fucongcong) +The Oscar ceremonies are Hollywood's biggest extravaganza. 奥斯卡颁奖典礼,是好莱坞最盛大的活动。 CC-BY 2.0 (France) Attribution: tatoeba.org #326805 (CM) & #1501714 (fenfang557) +The bargain sale will run for three days, beginning today. 这场减价活动会持续三天,从今天开始。 CC-BY 2.0 (France) Attribution: tatoeba.org #275933 (CK) & #5624976 (verdastelo9604) +The contract is in the bag, so let's go out and celebrate. 合同已经到手了,那就出去庆祝一下吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #237911 (CM) & #332490 (fucongcong) +The simplest way is often the best way to solve a problem. 解决问题最简便的方法往往是最好的办法。 CC-BY 2.0 (France) Attribution: tatoeba.org #4872167 (zvzuibqx) & #4859654 (musclegirlxyp) +The train will probably arrive at the station before noon. 火车大概会在中午前到站。 CC-BY 2.0 (France) Attribution: tatoeba.org #326247 (CK) & #336637 (fucongcong) +The university was founded by his father twenty years ago. 大学在20年前由他的父亲建立。 CC-BY 2.0 (France) Attribution: tatoeba.org #45503 (CM) & #333206 (fucongcong) +This is the place where the battle of Hastings took place. 這裡是黑斯廷斯戰役發生的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #62156 (CK) & #786113 (Martha) +This place still looks the same as it did a long time ago. 這裡就像在古時候一樣。 CC-BY 2.0 (France) Attribution: tatoeba.org #901144 (itsthejazzkid) & #759766 (Martha) +This was the most interesting book that she had ever read. 這是她讀過最有趣的書。 CC-BY 2.0 (France) Attribution: tatoeba.org #55432 (CK) & #830303 (Martha) +Three months is too short a time to finish the experiment. 要完成实验,三个月太短了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72731 (CM) & #332486 (fucongcong) +Tom didn't know that what he'd done was against the rules. 汤姆不知道他的所作所为违反了规则。 CC-BY 2.0 (France) Attribution: tatoeba.org #6231164 (CK) & #8688126 (slo_oth) +Tom doesn't know whether Mary is telling the truth or not. 汤姆不知道玛丽说的是真话还是假话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029086 (CK) & #8765249 (crescat) +Tom has no intention of asking Mary to the upcoming dance. Tom没有意图去邀请Mary去即将来临的舞会。 CC-BY 2.0 (France) Attribution: tatoeba.org #1028713 (CK) & #4845045 (pig8322) +Tom spent most of the morning straightening up his office. 汤姆花了大半早晨整理他的办公室。 CC-BY 2.0 (France) Attribution: tatoeba.org #1223650 (CK) & #5574741 (verdastelo9604) +Two thirds of the employees of this company are engineers. 这个公司二分之三的雇员是工程师。 CC-BY 2.0 (France) Attribution: tatoeba.org #60001 (CK) & #8914613 (fresky) +Was this wall built to keep people out or to keep them in? 建造这堵墙是为了把人隔在外面还是把他们留在里面? CC-BY 2.0 (France) Attribution: tatoeba.org #623139 (darinmex) & #815254 (fucongcong) +We enjoyed watching the fireworks on a bridge last summer. 去年夏天,我们在桥上看焰火看得很过瘾。 CC-BY 2.0 (France) Attribution: tatoeba.org #244689 (CK) & #335171 (fucongcong) +We should try to avoid imposing our own beliefs on others. 我們應該盡量避免把我們自己的信念強加在別人身上。 CC-BY 2.0 (France) Attribution: tatoeba.org #248829 (CM) & #779015 (Martha) +We were disappointed to hear that Tom couldn't get a visa. 我们很遗憾地听说,汤姆没能拿到签证。 CC-BY 2.0 (France) Attribution: tatoeba.org #1023813 (CK) & #7772585 (jiangche) +What mountain do you think is the second highest in Japan? 你认为日本第二高峰是哪座山? CC-BY 2.0 (France) Attribution: tatoeba.org #281175 (CK) & #1358057 (vicch) +When were you planning on telling Tom about what happened? 你准备啥时候告诉Tom发生了什么 CC-BY 2.0 (France) Attribution: tatoeba.org #3205148 (CK) & #5975072 (zhangxr91) +With the weather getting worse, the departure was put off. 由于天气变差,出发延迟了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278834 (SPENSER) & #335626 (fucongcong) +Would you mind if I shut the window? I have a slight cold. 你不介意我关窗吧?我有点着凉了。 CC-BY 2.0 (France) Attribution: tatoeba.org #274241 (CK) & #1867037 (yuzazaza) +Yesterday, an explosion occurred at the fireworks factory. 昨晚,烟花厂发生了爆炸。 CC-BY 2.0 (France) Attribution: tatoeba.org #1697764 (shanghainese) & #1694988 (sadhen) +You may think those shoes are in fashion, but they aren't. 你可能認為那些鞋子很時髦, 但是他們不是。 CC-BY 2.0 (France) Attribution: tatoeba.org #16529 (CK) & #775799 (Martha) +You will exist but you will never know what it is to live. 你活着,但是却不知道为什么活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #847183 (Source_Benedict_1921) & #1501634 (fenfang557) +"When will you come back?" "It all depends on the weather." “你什么时候回来?”“这都要看天气。” CC-BY 2.0 (France) Attribution: tatoeba.org #386683 (Mouseneb) & #334488 (fucongcong) +"When will you come back?" "It all depends on the weather." “你什么时候回来呀?”“看一下天气怎么样再说啦。” CC-BY 2.0 (France) Attribution: tatoeba.org #386683 (Mouseneb) & #8591284 (easononizuka) +According to my calculation, she should be in India by now. 根據我的估計,她現在應該在印度了。 CC-BY 2.0 (France) Attribution: tatoeba.org #251274 (CK) & #830421 (Martha) +After I cleaned the window, I could see through it clearly. 清潔窗戶後,我能很清楚的從窗戶看出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #274234 (CK) & #830465 (Martha) +All of a sudden, the enemy bombs came down on us like rain. 突然间,敌人的炸弹像雨点一样落向我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #280711 (CK) & #5655376 (verdastelo9604) +All subscriptions must be paid before the end of this year. 所有訂購必須在今年年底前支付款項。 CC-BY 2.0 (France) Attribution: tatoeba.org #324753 (CK) & #830486 (Martha) +Anything you say may be held against you in a court of law. 你所说的一切都将成为呈堂证供。 CC-BY 2.0 (France) Attribution: tatoeba.org #2247166 (CK) & #8496258 (gumblex) +Could you please talk a bit louder? I can't hear very well. 你能大声点讲吗?我听不太清。 CC-BY 2.0 (France) Attribution: tatoeba.org #4814718 (rains_and_shadows) & #5900401 (verdastelo9604) +Demand for occupational therapy has surged in recent years. 这几年对作业疗法的需求在迅速增长。 CC-BY 2.0 (France) Attribution: tatoeba.org #422353 (blay_paul) & #8739478 (crescat) +He amassed a fortune in stock trading during the last boom. 他在上个景气时期炒股攒下了一笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #300717 (CM) & #1395004 (mtdot) +How many times a day do you look at yourself in the mirror? 你一天照几次镜子? CC-BY 2.0 (France) Attribution: tatoeba.org #1889 (Zifre) & #502856 (fucongcong) +How to overcome the high value of the yen is a big problem. 如何克服日元升高是个大问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #25948 (CK) & #332526 (fucongcong) +I am in the habit of taking some exercise before breakfast. 我在吃早餐前有運動的習慣。 CC-BY 2.0 (France) Attribution: tatoeba.org #259482 (CK) & #483957 (moonoops) +I can't believe your parents let you come here by yourself. 我不敢相信你父母让你自己过来。 CC-BY 2.0 (France) Attribution: tatoeba.org #2301951 (CK) & #5670781 (verdastelo9604) +I do not remember seeing the letter, but perhaps I read it. 我不記得我看過這封信, 但或許我讀過它。 CC-BY 2.0 (France) Attribution: tatoeba.org #46748 (CK) & #781179 (Martha) +I felt quite relieved after I had said all I wanted to say. 说了所有我要说的话后,我感觉很轻松。 CC-BY 2.0 (France) Attribution: tatoeba.org #239655 (CM) & #334551 (fucongcong) +I let Tom watch a little TV after he finished his homework. 我让Tom在做完作业后看一点电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #2377427 (CK) & #4845048 (pig8322) +I slept a little during lunch break because I was so tired. 我在午休时间睡了一会儿,因为我太累了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1882 (Swift) & #389796 (fucongcong) +I think I now have enough money to buy the car that I want. 我认为我现在有足够的钱买我想要的那辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #8388468 (CK) & #8605872 (slo_oth) +I think that I now have enough money to buy the car I want. 我认为我现在有足够的钱买我想要的那辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #8388469 (CK) & #8605872 (slo_oth) +I want to go and change into that shirt I bought yesterday. 我想去換我昨天買的這件襯衫。 CC-BY 2.0 (France) Attribution: tatoeba.org #7816804 (sharris123) & #768282 (Martha) +I would rather live by myself than do as he tells me to do. 我寧願自己獨立生活也不要他來指使我。 CC-BY 2.0 (France) Attribution: tatoeba.org #286015 (CK) & #727981 (Martha) +I would really like to know why he did something like that. 我真的很想知道他為什麼做了像那樣的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #818065 (Cindrogriza) & #818144 (Martha) +In the winter, many older people slip on ice and fall down. 在冬天,很多老人在冰上滑倒。 CC-BY 2.0 (France) Attribution: tatoeba.org #279649 (CK) & #5640779 (verdastelo9604) +Is it right for a doctor to decide when someone should die? 由医生来决定某人何时该死是对的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #28080 (CK) & #332670 (fucongcong) +Is there any chance that you'll go to Australia next month? 你有下個月去澳洲的機會嗎? CC-BY 2.0 (France) Attribution: tatoeba.org #7156739 (CK) & #8572025 (verdastelo9604) +It's valid until March thirty-first, nineteen-ninety-seven. 有效期到1997年3月31日为止。 CC-BY 2.0 (France) Attribution: tatoeba.org #324454 (CM) & #332767 (fucongcong) +Leaving something unfinished is the worst thing you can do. 半途而废是你所能做的最糟糕的事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #1193965 (CK) & #1394876 (mtdot) +My father has been engaged in foreign trade for many years. 我父亲经营外贸多年。 CC-BY 2.0 (France) Attribution: tatoeba.org #251714 (CK) & #1366059 (sadhen) +No less than three hundred dollars was needed for the work. 这个工作需要不低于300美金。 CC-BY 2.0 (France) Attribution: tatoeba.org #47689 (darinmex) & #336702 (fucongcong) +No matter how much I think about it, I can't understand it. 无论怎么去想我都搞不清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2078134 (CK) & #4104727 (maple) +No matter how much I think about it, I don't understand it. 无论怎么去想我都搞不清楚。 CC-BY 2.0 (France) Attribution: tatoeba.org #2078136 (CK) & #4104727 (maple) +Reporters do not hesitate to intrude into people's privacy. 记者没有犹豫地去干涉了人们的私生活。 CC-BY 2.0 (France) Attribution: tatoeba.org #20190 (xtofu80) & #614789 (CLARET) +Scientists can easily compute the distance between planets. 科學家們可以很容易地計算出行星之間的距離。 CC-BY 2.0 (France) Attribution: tatoeba.org #23972 (CK) & #780251 (Martha) +Taking the group of children to the library was no problem. 带孩子团体去图书馆一点问题都没有。 CC-BY 2.0 (France) Attribution: tatoeba.org #245836 (CK) & #9012190 (jacintoo) +The ambulances carried the injured to the nearest hospital. 救护车把伤者送往了最近的医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #19590 (CK) & #335409 (fucongcong) +The main problem with Tom is that he has no sense of humor. 汤姆的主要问题是他一点幽默感都没有 CC-BY 2.0 (France) Attribution: tatoeba.org #4844605 (pig8322) & #4831260 (sunflower) +The most logical place to keep your shoes is near the door. 最合逻輯的放鞋處是門口附近。 CC-BY 2.0 (France) Attribution: tatoeba.org #2639725 (CK) & #6105187 (verdastelo9604) +The only useful answers are those that raise new questions. 只有能提出新问题的回答才是有用的回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #1581 (CK) & #334330 (fucongcong) +The other day I went fishing for the first time in my life. 前几天人生第一次去钓鱼了。 CC-BY 2.0 (France) Attribution: tatoeba.org #273118 (CK) & #8682672 (crescat) +The population of Japan is larger than that of New Zealand. 日本的人口比新西兰多。 CC-BY 2.0 (France) Attribution: tatoeba.org #281423 (CK) & #812221 (fucongcong) +The show was wonderful, but the tickets were too expensive. 这场秀棒极了,但是门票太贵了。 CC-BY 2.0 (France) Attribution: tatoeba.org #52917 (Swift) & #333029 (fucongcong) +There are some misprints, but all in all, it's a good book. 雖然有一些印刷錯誤, 但大致上說來, 這是一本好書。 CC-BY 2.0 (France) Attribution: tatoeba.org #240265 (CM) & #785180 (Martha) +They tried very hard to gain an advantage over one another. 他們很努力地超過對方獲得優勢。 CC-BY 2.0 (France) Attribution: tatoeba.org #306490 (CK) & #830313 (Martha) +They wanted a wedding picture in front of the Eiffel Tower. 他們想在艾菲爾鐵塔前面拍張結婚照。 CC-BY 2.0 (France) Attribution: tatoeba.org #681034 (Source_VOA) & #899986 (kanaorange) +Tom almost always uses a credit card when he goes shopping. 汤姆在去购物的时候,几乎每次都会用信用卡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027203 (CK) & #8686701 (crescat) +Tom didn't doubt that there would be a lot of people there. 汤姆确定那里会有很多人。 CC-BY 2.0 (France) Attribution: tatoeba.org #3819995 (CK) & #5911687 (verdastelo9604) +Tom didn't want Mary to know he didn't know how to do that. 汤姆不想玛丽知道他不知道怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #7503407 (CK) & #8589275 (easononizuka) +Tom has been to this park with Mary at least a dozen times. 汤姆跟玛丽来这公园至少十二次。 CC-BY 2.0 (France) Attribution: tatoeba.org #1093682 (CK) & #5926164 (verdastelo9604) +Tom has no idea what to do with all the junk in his garage. 汤姆不知道拿他车库的那些废物怎么办。 CC-BY 2.0 (France) Attribution: tatoeba.org #1884500 (CK) & #7774809 (jiangche) +Tom likes to listen to music while he's doing his homework. Tom很喜欢一边听歌一边做作业。 CC-BY 2.0 (France) Attribution: tatoeba.org #5707242 (CK) & #8591223 (easononizuka) +Tom said he wouldn't be able to do what we asked him to do. 汤姆说他做不成我们要他做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5707166 (CK) & #5911749 (verdastelo9604) +Tom would never have let us go if Mary hadn't gone with us. 如果玛丽不跟着我们,汤姆不会让我们走。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537176 (CK) & #5640751 (verdastelo9604) +Tom wrote Mary a long letter, but he didn't send it to her. 汤姆给玛丽写了封长信,可是没有寄给她。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757138 (CK) & #4757249 (ryanwoo) +We will continue the meeting after some light refreshments. 茶点过后我们接着开会。 CC-BY 2.0 (France) Attribution: tatoeba.org #4763339 (garborg) & #4760079 (ryanwoo) +When I heard that song, it reminded me of when I was a kid. 我聽到那首歌時,它讓我想起了我小的時候。 CC-BY 2.0 (France) Attribution: tatoeba.org #1451721 (CK) & #6150887 (verdastelo9604) +Will you please explain the meaning of this sentence to me? 您能为我解释这句句子的意思吗? CC-BY 2.0 (France) Attribution: tatoeba.org #57235 (CK) & #802873 (fucongcong) +A group of young men are playing handball in the playground. 一群年輕人在操場上打手球。 CC-BY 2.0 (France) Attribution: tatoeba.org #272017 (CK) & #830476 (Martha) +According to the newspaper, there was a big fire last night. 根據報導,昨晚有一場很大的火災。 CC-BY 2.0 (France) Attribution: tatoeba.org #269391 (CK) & #830425 (Martha) +Afraid of hurting his feelings, I didn't tell him the truth. 怕傷害了他的感情,我沒有告訴他真相。 CC-BY 2.0 (France) Attribution: tatoeba.org #285802 (CK) & #830458 (Martha) +Every great writer seems to have been interested in English. 每一個偉大的作家似乎已經對英語感興趣。 CC-BY 2.0 (France) Attribution: tatoeba.org #28292 (CK) & #811908 (Martha) +Everyone in the room checked their watches at the same time. 房间里的所有人都同时看了看自己的手表。 CC-BY 2.0 (France) Attribution: tatoeba.org #1841719 (CK) & #5091179 (mirrorvan) +Father would often read detective stories in his spare time. 父亲常常在空闲时间读侦探小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #319087 (CM) & #332836 (fucongcong) +He asked me questions similar to those asked by many others. 他和许多其他人一样问了我同样的问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #2149905 (FeuDRenais) & #414052 (fucongcong) +He crashed his car because someone tampered with the brakes. 他撞车是因为有人在刹车上做了手脚。 CC-BY 2.0 (France) Attribution: tatoeba.org #640831 (darinmex) & #812258 (fucongcong) +He left for Europe a week ago, that is, on the tenth of May. 他在一周前离开去往欧洲,就是说,是在五月十号。 CC-BY 2.0 (France) Attribution: tatoeba.org #293698 (CK) & #4844841 (sadhen) +He was aware that I was around, but didn't come to greet me. 他注意到我在場,但是沒向我打招呼。 CC-BY 2.0 (France) Attribution: tatoeba.org #2260086 (FeuDRenais) & #2256373 (cienias) +His bag is right here, so he cannot have gone to school yet. 他的包就在这儿,所以他不可能已经去了学校。 CC-BY 2.0 (France) Attribution: tatoeba.org #285799 (CM) & #334765 (fucongcong) +I always enjoy listening to classical music in my free time. 有空的时候,我总喜欢听古典音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #386732 (Mouseneb) & #334071 (fucongcong) +I can usually tell when someone is hiding something from me. 我常常能分辨出来一个人是不是瞒着我什么事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #2770578 (CK) & #8635727 (ZeroAurora) +I had never seen a windmill until I visited the Netherlands. 在我去荷兰之前,我从没见过风车。 CC-BY 2.0 (France) Attribution: tatoeba.org #64825 (CK) & #335000 (fucongcong) +I have three dogs. One is male and the other two are female. 我有三只狗,其中一只是公的,另外两只是母的。 CC-BY 2.0 (France) Attribution: tatoeba.org #454396 (FeuDRenais) & #1671998 (sadhen) +I have two sons. One is in Tokyo and the other is in Nagoya. 我有两个儿子,一个在东京,另一个在名古屋。 CC-BY 2.0 (France) Attribution: tatoeba.org #2717843 (WestofEden) & #332913 (fucongcong) +I make it a rule not to watch television after nine o'clock. 我规定自己在九点之后不看电视。 CC-BY 2.0 (France) Attribution: tatoeba.org #18400 (CK) & #8714987 (crescat) +I noticed a note on my desk, but I do not know who wrote it. 我發現了我辦公桌上有張字條, 但是我不知道是誰寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #788260 (hrin) & #780256 (Martha) +I think that our living together has influenced your habits. 我觉得我和你一起住影响了你生活的方式。 CC-BY 2.0 (France) Attribution: tatoeba.org #599702 (baisong) & #501355 (fucongcong) +I thought he loved you, but as it is, he loved another girl. 我以為他愛你,但事實上,他愛另一個女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #295652 (CK) & #803864 (Martha) +I was just about to leave the house when the telephone rang. 我正要离开家的时候电话响了。 CC-BY 2.0 (France) Attribution: tatoeba.org #279257 (CK) & #336929 (fucongcong) +I wish I could figure out how to delete my Facebook account. 我希望我能知道如何刪除我的Facebook帳號。 CC-BY 2.0 (France) Attribution: tatoeba.org #953727 (CK) & #5414928 (egg0073) +I would have liked to come with you, but I didn't have time. 我想和你一起去,但是我没有时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1876948 (CK) & #1878426 (sadhen) +I would rather stay at home than go out in this hot weather. 在这种暑天里我宁愿呆在家也不出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #58544 (CK) & #2609493 (fenfang557) +If I had worked hard in my youth, I would be successful now. 如果我年輕的時候努力工作, 我現在就成功了。 CC-BY 2.0 (France) Attribution: tatoeba.org #30802 (CK) & #785134 (Martha) +If I were you, I'd want to know what Tom is doing right now. 如果我是你,我不会想去知道Tom现在正在做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #2042754 (CK) & #4845059 (pig8322) +If you stay at a big hotel, you can use their swimming pool. 若你住到的是大的旅館,就能使用他們的游泳池。 CC-BY 2.0 (France) Attribution: tatoeba.org #275492 (CK) & #483964 (moonoops) +It seems as if I'm the only person here capable of doing it. 看来我是这里唯一有能力做这件事的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #8557699 (Rawrren) & #8558459 (slo_oth) +It was heartless of him to say such a thing to the sick man. 他对一个生病的男人说这种事真是没良心。 CC-BY 2.0 (France) Attribution: tatoeba.org #318474 (CK) & #817287 (fucongcong) +It's hard to predict what the weather will be like tomorrow. 很难说明天的天气将会怎样。 CC-BY 2.0 (France) Attribution: tatoeba.org #323138 (CK) & #332955 (fucongcong) +It's wrong to deceive people, but worse to deceive yourself. 欺騙別人是錯的, 但更糟的欺騙自己。 CC-BY 2.0 (France) Attribution: tatoeba.org #465084 (blay_paul) & #771928 (Martha) +Looking at your Facebook friends' photos is a waste of time. 在Facebook上瀏覽朋友的照片是在浪費時間。 CC-BY 2.0 (France) Attribution: tatoeba.org #854193 (piksea) & #5414930 (egg0073) +Many accidents resulted from the icy conditions of the road. 道路结冰导致了很多起事故。 CC-BY 2.0 (France) Attribution: tatoeba.org #280463 (CM) & #332922 (fucongcong) +My younger brother really likes to take photos of mountains. 我弟弟很喜欢拍山的照片。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230769 (alec) & #334390 (fucongcong) +Pizza is the kind of food that fits into today's life style. 比萨是种适合现在的生活方式的食物。 CC-BY 2.0 (France) Attribution: tatoeba.org #34795 (CM) & #5595087 (verdastelo9604) +Some babies learn to swim even before they are one year old. 有些宝宝甚至在一岁之前就学习游泳了。 CC-BY 2.0 (France) Attribution: tatoeba.org #27232 (CK) & #463854 (fucongcong) +The first thing you have to take into consideration is time. 你应该考虑的第一件事是时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #32775 (CK) & #1350309 (vicch) +The number of traffic accidents seems to be on the increase. 交通事故的数量似乎在增长。 CC-BY 2.0 (France) Attribution: tatoeba.org #240343 (CK) & #335400 (fucongcong) +The student handed the examination papers in to the teacher. 該學生把考試卷交給了老師。 CC-BY 2.0 (France) Attribution: tatoeba.org #271848 (CM) & #818181 (Martha) +This book says that elephants live to be over 100 years old. 这本书上写,大象能活过一百岁。 CC-BY 2.0 (France) Attribution: tatoeba.org #268251 (CK) & #7768261 (jiangche) +This is one of the best restaurants that I've ever eaten in. 这是我吃过的最好的餐馆之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #8459194 (CK) & #8463633 (gumblex) +This town is quite different from what it was ten years ago. 這鎮子跟十年前的它差別很大。 CC-BY 2.0 (France) Attribution: tatoeba.org #57837 (CK) & #6093342 (verdastelo9604) +Tom doesn't quite get it. Could you explain it to him again? 汤姆不大明白。你能再跟他解释一遍吗? CC-BY 2.0 (France) Attribution: tatoeba.org #1094363 (CK) & #5617178 (verdastelo9604) +Tom took Mary to the hospital on the back of his motorcycle. 汤姆把玛丽放到他的摩托车背上送到医院。 CC-BY 2.0 (France) Attribution: tatoeba.org #1877562 (CK) & #5574619 (verdastelo9604) +Tom translated a letter from French to English for his boss. 汤姆为他的老板把一封信从法语翻译成了英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4766968 (cairnhead) & #7069045 (la_kanro) +We did not expect him to finish the task in so short a time. 我们没指望过他在那么短的时间里完成工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #252320 (CM) & #813580 (fucongcong) +We don't like our neighbors, and they don't like us, either. 我們不喜歡我們的鄰居,而他們也不喜歡我們。 CC-BY 2.0 (France) Attribution: tatoeba.org #703095 (papabear) & #926813 (Martha) +We take it for granted that he will succeed in his business. 我们认为他的生意理所当然会获得成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #262872 (darinmex) & #812291 (fucongcong) +When I was a child, I spent most of my time indoors reading. 当我是个孩子的时候,我会把大部分时间都用于室内阅读。 CC-BY 2.0 (France) Attribution: tatoeba.org #1540876 (SHamp) & #1506823 (fenfang557) +You can lie to everyone else, but you can't lie to yourself. 你可以向别人撒谎,但你不会向自己撒谎。 CC-BY 2.0 (France) Attribution: tatoeba.org #573571 (darinmex) & #7772533 (jiangche) +You can't fight a good fight with such a defeatist attitude. 抱著失敗主義的態度你無法打一場漂亮的仗。 CC-BY 2.0 (France) Attribution: tatoeba.org #41301 (CM) & #727984 (Martha) +You should try to form the habit of using your dictionaries. 你们该养成使用字典的习惯。 CC-BY 2.0 (France) Attribution: tatoeba.org #16028 (CK) & #792843 (fucongcong) +"Shall I have him call you when he gets back?" "Yes, please." “等他回来,我要让他给你打电话吗?”“是的,谢谢。” CC-BY 2.0 (France) Attribution: tatoeba.org #73732 (CK) & #333207 (fucongcong) +"What's going on in the cave? I'm curious." "I have no idea." “洞里发生了什么?我很好奇。”“我一点也不知道。” CC-BY 2.0 (France) Attribution: tatoeba.org #1508 (CK) & #334484 (fucongcong) +"What's going on in the cave? I'm curious." "I have no idea." "山洞裡發生了什麼事?" 我很好奇。"我不知道。" CC-BY 2.0 (France) Attribution: tatoeba.org #1508 (CK) & #779000 (Martha) +A fire broke out last night and three houses were burnt down. 昨晚發生了一場火災,三棟房屋被燒毀了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244862 (CK) & #892508 (Martha) +A new team was formed in order to take part in the boat race. 为了参加划船比赛,一支新的队伍组成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #33718 (CK) & #336671 (fucongcong) +After a long argument, I finally persuaded her to go camping. 經過長久的爭論,我終於說服了她去露營。 CC-BY 2.0 (France) Attribution: tatoeba.org #278076 (CK) & #830463 (Martha) +An opportunity like this only comes along once in a lifetime. 一辈子只会出现一次像这样的机会。 CC-BY 2.0 (France) Attribution: tatoeba.org #7544767 (CK) & #8792029 (slo_oth) +Cancer can be cured easily if it is found in its first phase. 癌症如果在第一阶段被发现的话是很容易治愈的。 CC-BY 2.0 (France) Attribution: tatoeba.org #63418 (CK) & #346884 (fucongcong) +Even though I enjoy bowling, I haven't gone bowling recently. 虽然我享受打保龄球,但是我最近没有去打保龄球。 CC-BY 2.0 (France) Attribution: tatoeba.org #6337865 (CK) & #8658806 (slo_oth) +He anonymously donated a large sum of money to the Red Cross. 他匿名向红十字捐了大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #302069 (CK) & #5767609 (verdastelo9604) +How long does it take to get from here to your house on foot? 从这里步行到你家要多长时间? CC-BY 2.0 (France) Attribution: tatoeba.org #6691907 (CK) & #1323957 (vicch) +I can't believe that you were the smartest kid in your class. 我不敢相信你是你们班里面最聪明的孩子。 CC-BY 2.0 (France) Attribution: tatoeba.org #953376 (CK) & #1426461 (sadhen) +I do not like tea, so I generally drink coffee for breakfast. 我不喜欢茶,所以我早餐大致上都喝咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #257398 (CK) & #794158 (fucongcong) +I got a phone call from him just as I was about to go to bed. 我正要上床的時候接到了他打來的電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #1423290 (CK) & #1423384 (cienias) +I just remembered that I was supposed to buy a loaf of bread. 我才想起来我之前该买个面包。 CC-BY 2.0 (France) Attribution: tatoeba.org #1887445 (CK) & #8778531 (crescat) +I saw a group of foreigners on my way to school this morning. 今天早上在去学校的路上,我看到了一群外国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #242154 (CK) & #1694986 (sadhen) +I sometimes just don't want to get out of bed in the morning. 我有时早上不想下床。 CC-BY 2.0 (France) Attribution: tatoeba.org #2042769 (CK) & #5640758 (verdastelo9604) +I want this work completed by two o'clock tomorrow afternoon. 明天下午2点以前,我希望这工作完成了。 CC-BY 2.0 (France) Attribution: tatoeba.org #59095 (CK) & #334693 (fucongcong) +I wish I could figure out how to disable comments on my blog. 但愿我能找到在我的博客上屏蔽评论的办法。 CC-BY 2.0 (France) Attribution: tatoeba.org #953728 (CK) & #7771874 (jiangche) +I've had a headache for three days and I can't get rid of it. 我已经头疼三天了,还没摆脱它。 CC-BY 2.0 (France) Attribution: tatoeba.org #3010201 (CK) & #9012152 (jacintoo) +If I had known that you were here, I would have come at once. 如果我早知道你在这儿的话,我马上就来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #71615 (CK) & #334633 (fucongcong) +If he had taken his doctor's advice, he might still be alive. 如果他听了他医生的建议,他可能还活着。 CC-BY 2.0 (France) Attribution: tatoeba.org #283360 (CK) & #794154 (fucongcong) +If her nose were a little shorter, she would be quite pretty. 若她的姿態能再低一點就更完美了。 CC-BY 2.0 (France) Attribution: tatoeba.org #309674 (CK) & #483954 (moonoops) +If you feed your dog properly, you can increase his lifespan. 合理地喂狗可以延长宠物寿命。 CC-BY 2.0 (France) Attribution: tatoeba.org #898553 (CK) & #8969818 (WilsonWong) +It took us a long time to decide what we really wanted to do. 我們花了很長時間決定我們真正想的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #5411740 (CK) & #6150041 (verdastelo9604) +Judging from the look of the sky, it may rain this afternoon. 從天色上判斷,今天下午可能會下雨。 CC-BY 2.0 (France) Attribution: tatoeba.org #18148 (CK) & #871123 (Martha) +Long time, no see. I hear that you've changed your job again. 好久不见。听说你又换工作了? CC-BY 2.0 (France) Attribution: tatoeba.org #424259 (CM) & #8742129 (crescat) +Lots of companies have implemented an eight-hour working day. 很多公司實行8小時工作制。 CC-BY 2.0 (France) Attribution: tatoeba.org #716988 (CM) & #716989 (egg0073) +My fingers are so numb with cold that I can't play the piano. 我的手指冻僵了,以至于无法弹钢琴了。 CC-BY 2.0 (France) Attribution: tatoeba.org #265893 (CK) & #333903 (fucongcong) +My grandfather is fond of taking a walk early in the morning. 我的爷爷喜欢大清早的散步。 CC-BY 2.0 (France) Attribution: tatoeba.org #251347 (CK) & #1235288 (sunnywqing) +Plastics have taken the place of many conventional materials. 塑料代替了许多传统的原料。 CC-BY 2.0 (France) Attribution: tatoeba.org #34218 (CM) & #336863 (fucongcong) +Problems that can be solved with money are not real problems. 錢可以解決的問題都不是問題。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846008 (englishchinese) & #838430 (Martha) +Several dozen young people participated in the demonstration. 几十个年轻人参加了示威游行。 CC-BY 2.0 (France) Attribution: tatoeba.org #537705 (blay_paul) & #335242 (fucongcong) +She has a real knack for getting people to do what she wants. 她真的有本事让别人做她想做的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #640823 (darinmex) & #812249 (fucongcong) +She tossed me grapes and I tried to catch them with my mouth. 她朝我丢葡萄,我试着用嘴接住它们。 CC-BY 2.0 (France) Attribution: tatoeba.org #694076 (darinmex) & #808205 (fucongcong) +She visited the old man in the hospital every day but Sunday. 她每天都去探視在醫院裡的老人,除了星期天。 CC-BY 2.0 (France) Attribution: tatoeba.org #316088 (CK) & #5382953 (egg0073) +Since I had met him once before, I recognized him right away. 由於我以前見過他一次,所以我馬上就認出他了。 CC-BY 2.0 (France) Attribution: tatoeba.org #814863 (CK) & #816807 (Martha) +The best way to lose weight is to eat less and exercise more. 最好的減肥方法就是少吃多運動。 CC-BY 2.0 (France) Attribution: tatoeba.org #4969955 (wzhd) & #4962386 (umidake) +The conference is to be held in Tokyo the day after tomorrow. 会议将在后天于东京举行。 CC-BY 2.0 (France) Attribution: tatoeba.org #22478 (CK) & #8727843 (crescat) +The house burned to the ground before the fire truck arrived. 消防车到达之前,房子就全烧了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4753818 (garborg) & #332896 (fucongcong) +The old church on the hill dates back to the twelfth century. 山上的老教堂的歷史可以追溯到12世紀。 CC-BY 2.0 (France) Attribution: tatoeba.org #19865 (CK) & #830347 (Martha) +The old houses were torn down to make room for a supermarket. 這棟老房子被拆除了,以騰出空間給超級市場。 CC-BY 2.0 (France) Attribution: tatoeba.org #52353 (Swift) & #897269 (Martha) +The skin of a shark is much rougher than that of a tuna fish. 鯊魚皮比金槍魚皮粗糙多了。 CC-BY 2.0 (France) Attribution: tatoeba.org #54018 (CK) & #8377700 (xjjAstrus) +They fine you in Singapore if you throw trash in the streets. 在新加坡的街道上扔垃圾会被罚款。 CC-BY 2.0 (France) Attribution: tatoeba.org #52475 (CM) & #5576760 (verdastelo9604) +This airplane is capable of carrying 40 passengers at a time. 这架飞机一次可以携带40名乘客。 CC-BY 2.0 (France) Attribution: tatoeba.org #57458 (CK) & #332724 (fucongcong) +Tom is still uncertain about whether to go to college or not. 汤姆还不清楚要不要上大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024856 (CK) & #5556055 (verdastelo9604) +Tom went into the kitchen and poured himself a cup of coffee. 汤姆进了厨房,给自己倒了杯咖啡。 CC-BY 2.0 (France) Attribution: tatoeba.org #3075114 (CK) & #5091096 (mirrorvan) +What do you think would happen if the earth stopped spinning? 如果地球停止自传,你认为会发生什么? CC-BY 2.0 (France) Attribution: tatoeba.org #3353685 (alester237) & #9007582 (jacintoo) +While we were discussing the problem, I hit upon a good idea. 在我们讨论问题的过程中,我想到了一个好主意。 CC-BY 2.0 (France) Attribution: tatoeba.org #43608 (CM) & #1395009 (mtdot) +With the T.V. on, how can you keep your mind on your studies? 你开着电视怎么能安心学习呢? CC-BY 2.0 (France) Attribution: tatoeba.org #717326 (eastasiastudent) & #717323 (Yashanti) +You must be careful of the traffic when you cross the street. 横穿马路时你要留心。 CC-BY 2.0 (France) Attribution: tatoeba.org #280490 (CM) & #5624973 (verdastelo9604) +A couple of flights were delayed on account of the earthquake. 一些航班由於地震被延誤了。 CC-BY 2.0 (France) Attribution: tatoeba.org #277199 (CK) & #830440 (Martha) +A little bit of luck sometimes leads to an unexpected success. 一點點的運氣有時會導致意想不到的成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #40065 (CK) & #830479 (Martha) +A trip to America was equivalent to a two-year salary for her. 去美国旅行一次相当于她两年的工资。 CC-BY 2.0 (France) Attribution: tatoeba.org #67526 (CM) & #3380492 (vicch) +After they argued, they didn't speak to each other for a week. 他们争吵后,一周都没有再说话。 CC-BY 2.0 (France) Attribution: tatoeba.org #19994 (Dejo) & #812220 (fucongcong) +After winning the Nobel prize, she remained as modest as ever. 獲得諾貝爾獎後,她仍謙虛如昔。 CC-BY 2.0 (France) Attribution: tatoeba.org #309924 (CK) & #830473 (Martha) +All you have to do is take advantage of this rare opportunity. 你所要做的便是好好把握這千載難逢的機會。 CC-BY 2.0 (France) Attribution: tatoeba.org #31797 (CM) & #1238314 (tsayng) +An aging population will require more spending on health care. 老龄化的人口需要更多医疗保健支出。 CC-BY 2.0 (France) Attribution: tatoeba.org #326476 (CM) & #5691262 (verdastelo9604) +As soon as the bell rang, the teacher came into the classroom. 鐘聲一響起,老師就走進了教室。 CC-BY 2.0 (France) Attribution: tatoeba.org #388846 (CK) & #871180 (Martha) +At the age of six, I was taken to a circus for the first time. 在我六岁的时候,我第一次被带去看马戏。 CC-BY 2.0 (France) Attribution: tatoeba.org #321981 (CK) & #8792129 (crescat) +Between you and me, Tom's idea doesn't appeal to me very much. 汤姆的主意我不太感兴趣,这个我们之间说说就好。 CC-BY 2.0 (France) Attribution: tatoeba.org #62031 (CM) & #813537 (fucongcong) +Children generally have a higher body temperature than adults. 小孩的体温一般比大人的要高。 CC-BY 2.0 (France) Attribution: tatoeba.org #3331682 (patgfisher) & #8955190 (crescat) +Do you know the concert schedule of London Symphony Orchestra? 你知道伦敦交响乐团的演奏会行程吗? CC-BY 2.0 (France) Attribution: tatoeba.org #29284 (CK) & #791577 (fucongcong) +Ever since she fell in the kitchen, she hasn't been all there. 自從她在廚房裡摔倒後,她不曾再到那裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #275400 (CK) & #830327 (Martha) +He told me that whatever might happen, he was prepared for it. 他告诉我不论发生什么,他都准备好了。 CC-BY 2.0 (France) Attribution: tatoeba.org #25130 (CK) & #5576742 (verdastelo9604) +He was disappointed that things didn't turn out as he'd hoped. 事情没能如他所愿让他感到失望。 CC-BY 2.0 (France) Attribution: tatoeba.org #295077 (CK) & #1397110 (mtdot) +I don't know about the past, but now we have faxes and emails. 我不知道以前怎样,但现在我们有传真和电子邮件。 CC-BY 2.0 (France) Attribution: tatoeba.org #327774 (CM) & #5856748 (verdastelo9604) +I doubt that Tom will ever learn how to speak French properly. 我对汤姆要持之以恒地学习法语口语这件事很怀疑。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027559 (CK) & #2444538 (fenfang557) +I have not yet collected sufficient materials to write a book. 我還沒有收集到足夠的材料來寫一本書。 CC-BY 2.0 (France) Attribution: tatoeba.org #1159257 (emmettricks) & #737169 (Martha) +I heard someone in the crowd outside the station call my name. 我聽到車站外的人群中有人在叫我的名字。 CC-BY 2.0 (France) Attribution: tatoeba.org #25969 (CK) & #875037 (Martha) +I should have tried out this electric shaver before buying it. 我本该在买下这个电动剃须刀之前试一下的。 CC-BY 2.0 (France) Attribution: tatoeba.org #57711 (CK) & #819733 (fucongcong) +I think to clearly distinguish opinion from fact is important. 我认为辨别清楚意见和事实很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #326728 (CM) & #2064585 (sadhen) +I think you need to spend a little more time on your homework. 我觉得你应该多花点时间在作业上。 CC-BY 2.0 (France) Attribution: tatoeba.org #909532 (CK) & #2028489 (ydcok) +If someone irritates you, it is best not to react immediately. 如果有人激怒你,你最好不要立刻做出反应。 CC-BY 2.0 (France) Attribution: tatoeba.org #269893 (CK) & #8791826 (slo_oth) +Islam first reached China about the middle of the 7th century. 伊斯蘭教大約在七世纪中傳到中國。 CC-BY 2.0 (France) Attribution: tatoeba.org #898043 (eastasiastudent) & #898042 (egg0073) +It is becoming important for us to know how to use a computer. 知道如何使用电脑对我们来说变得很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #262489 (CM) & #335268 (fucongcong) +Japan is now very different from what it was twenty years ago. 相比二十年前的日本,现在的日本有了翻天覆地的变化。 CC-BY 2.0 (France) Attribution: tatoeba.org #281470 (CK) & #8780279 (crescat) +Japan is now very different from what it was twenty years ago. 现在的日本与二十年前大不相同。 CC-BY 2.0 (France) Attribution: tatoeba.org #281470 (CK) & #8781763 (slo_oth) +Language is the means by which people communicate with others. 语言是人们与他人交流的手段。 CC-BY 2.0 (France) Attribution: tatoeba.org #239788 (Snout) & #1314425 (vicch) +Let me stop you right there. We don't want to hear about that. 讓我在這打斷你。我們不想聽那個話題。 CC-BY 2.0 (France) Attribution: tatoeba.org #1860615 (CK) & #2511455 (tsayng) +My father participated in a cooking contest and came in first. 我爸爸参加了料理竞赛并得了第一名。 CC-BY 2.0 (France) Attribution: tatoeba.org #1480925 (weihaiping) & #334561 (fucongcong) +Needless to say, fundamental human rights should be respected. 無須多言,基本人權應當被尊重。 CC-BY 2.0 (France) Attribution: tatoeba.org #326489 (CM) & #6105262 (verdastelo9604) +She doesn't have any friends or relatives to take care of her. 她没有任何亲戚朋友照顾她。 CC-BY 2.0 (France) Attribution: tatoeba.org #308766 (CK) & #332712 (fucongcong) +Some of the bluest water in the world is found in Crater Lake. 一些世界上最藍的水在火山湖。 CC-BY 2.0 (France) Attribution: tatoeba.org #672243 (kebukebu) & #760819 (Martha) +Suppose you had a thousand dollars, what would you do with it? 假如你有1000美元,你会用它做什么呢? CC-BY 2.0 (France) Attribution: tatoeba.org #73501 (CK) & #846562 (kooler) +The entire sales staff has worked around the clock for a week. 全体销售人员通宵达旦地工作了一周。 CC-BY 2.0 (France) Attribution: tatoeba.org #282815 (CK) & #332763 (fucongcong) +The poet expressed his burning passion for the woman he loved. 詩人對他愛的女人表達了他火熱的激情。 CC-BY 2.0 (France) Attribution: tatoeba.org #263403 (CS) & #803776 (Martha) +There are a lot of things you don't know about my personality. 我的个性还有很多方面是你不了解的。 CC-BY 2.0 (France) Attribution: tatoeba.org #2196 (Zifre) & #811071 (fucongcong) +They helped one another to make the school festival a success. 他们互帮互助,把校庆搞得很成功。 CC-BY 2.0 (France) Attribution: tatoeba.org #21639 (Zifre) & #334077 (fucongcong) +Tom asked Mary some questions, but she refused to answer them. 汤姆问了玛丽一些问题,但是她拒绝回答。 CC-BY 2.0 (France) Attribution: tatoeba.org #3142655 (CK) & #5694502 (verdastelo9604) +Tom doesn't like it when people cuss in front of his children. 汤姆不喜欢人们在他孩子面前讲坏话。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094411 (CK) & #8709420 (slo_oth) +Tom probably doesn't know how to do that as well as Mary does. 湯姆可能不知道如何做得像瑪麗做得一样好。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226597 (CK) & #8570959 (verdastelo9604) +Tom would still be alive if he had been wearing his seat belt. 要是汤姆系上安全带的话,他就不会死的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757141 (CK) & #4757231 (ryanwoo) +We have less than five minutes to evacuate the whole building. 我们有不到五分钟来疏散整栋楼的人。 CC-BY 2.0 (France) Attribution: tatoeba.org #652510 (darinmex) & #812378 (fucongcong) +We probably don't have enough time to finish doing that today. 我们应该不够时间在今天之内完成它。 CC-BY 2.0 (France) Attribution: tatoeba.org #5625131 (CK) & #8591229 (easononizuka) +We're on strike because the company hasn't improved our wages. 我們罷工是因為公司沒有改善我們的工資。 CC-BY 2.0 (France) Attribution: tatoeba.org #809057 (eastasiastudent) & #809054 (egg0073) +We're on strike because the company hasn't improved our wages. 我們之所以罷工是因為公司沒有改善我們的工資。 CC-BY 2.0 (France) Attribution: tatoeba.org #809057 (eastasiastudent) & #810074 (Martha) +What I hate most of all is having to recite texts from memory. 我最讨厌背诵课文了。 CC-BY 2.0 (France) Attribution: tatoeba.org #7829891 (sharris123) & #1750554 (sadhen) +You may injure yourself if you don't follow safety procedures. 如果你不按照安全手续来的话,你可能会受伤的。 CC-BY 2.0 (France) Attribution: tatoeba.org #28478 (Swift) & #334299 (fucongcong) +You might not like this beer at first. It's an acquired taste. 剛開始的時候你可能不會喜歡這個啤酒。這是需要多次品嚐去習慣它的口味。 CC-BY 2.0 (France) Attribution: tatoeba.org #753495 (kebukebu) & #760723 (Martha) +You must get this homework finished by the day after tomorrow. 你必須在後天以前完成回家作業。 CC-BY 2.0 (France) Attribution: tatoeba.org #16684 (CK) & #775829 (Martha) +You shouldn't say that kind of thing when children are around. 孩子们在旁边的时候,你不应该说那种事。 CC-BY 2.0 (France) Attribution: tatoeba.org #1396432 (CK) & #2030808 (sadhen) +You told her that you had finished the work three days before. 你告訴她你已經在三天前完成這個工作了。 CC-BY 2.0 (France) Attribution: tatoeba.org #14530 (Swift) & #775601 (Martha) +As soon as she heard the bell ring, she answered the telephone. 她一聽到鈴響,就接了電話。 CC-BY 2.0 (France) Attribution: tatoeba.org #388849 (CK) & #870152 (Martha) +As time went on, rules were added to the game to make it safer. 随着时间的推移,比赛增加了规则以使之更安全。 CC-BY 2.0 (France) Attribution: tatoeba.org #263867 (CK) & #332589 (fucongcong) +By the year 2020, the population of our city will have doubled. 在2020年以前,我們的城市的人口將增加一倍。 CC-BY 2.0 (France) Attribution: tatoeba.org #20238 (CK) & #905768 (Martha) +Declarations of variables are extremely important in C and C++. 变量的声明在C和C++中极其重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #812116 (papabear) & #1776758 (sadhen) +English is a universal language and is used all over the world. 英語是一種世界性的語言,用於世界各地。 CC-BY 2.0 (France) Attribution: tatoeba.org #26276 (CK) & #811872 (Martha) +English is by far the most widely-spoken language in the world. 英語是目前在世界上使用最廣泛的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #26263 (CK) & #811876 (Martha) +English is just one of over 2,700 languages in the world today. 今天,英語只是世界上超過2,700種語言的其中之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #26273 (CK) & #811881 (Martha) +Environmental pollution is causing abnormal weather conditions. 環境污染正造成異常的天氣情況。 CC-BY 2.0 (France) Attribution: tatoeba.org #21016 (CK) & #797018 (Martha) +For the time being, my sister is an assistant in a supermarket. 目前,我妹妹在一家超市当收银员。 CC-BY 2.0 (France) Attribution: tatoeba.org #280037 (CK) & #333180 (fucongcong) +Go straight down this street and turn right at the third light. 沿着这条路直走,到第三个红绿灯的地方右转。 CC-BY 2.0 (France) Attribution: tatoeba.org #57790 (CK) & #332470 (fucongcong) +He and his wife tried to work out their problems, but couldn't. 他和他的妻子試圖解決他們的問題,但沒有辦法。 CC-BY 2.0 (France) Attribution: tatoeba.org #44273 (CK) & #830368 (Martha) +He still remembers the day his mother found out he was smoking. 他还记得他妈妈发现他正在抽烟的那天。 CC-BY 2.0 (France) Attribution: tatoeba.org #264547 (CK) & #846418 (kooler) +He told me that I looked pale and asked me what the matter was. 他跟我说我很苍白,并问我怎么了。 CC-BY 2.0 (France) Attribution: tatoeba.org #297456 (CK) & #343927 (fucongcong) +I don't recommend eating in that restaurant. The food is awful. 我不推荐在那家餐馆吃饭。食物糟糕透了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68598 (CK) & #787331 (fucongcong) +I have no objection to paying a special fee if it is necessary. 如果必要的话,我不反对付特别费用。 CC-BY 2.0 (France) Attribution: tatoeba.org #318255 (CM) & #427619 (fucongcong) +If Tom doesn't do what he's supposed to do, please let me know. 如果汤姆没有做他应当做的事,请让我知道。 CC-BY 2.0 (France) Attribution: tatoeba.org #2952939 (CK) & #5433153 (liangh) +If he were a little younger, he would be eligible for the post. 如果他年轻一点,他将很适合这个职位。 CC-BY 2.0 (France) Attribution: tatoeba.org #283299 (CM) & #332456 (fucongcong) +It cost me ten thousand yen to have my television set repaired. 把我的電視機修好花了我一萬日元。 CC-BY 2.0 (France) Attribution: tatoeba.org #39152 (CM) & #873382 (Martha) +It makes sense to pay off your credit card balance every month. 每个月还清信用卡负债很重要。 CC-BY 2.0 (France) Attribution: tatoeba.org #62772 (Eldad) & #336625 (fucongcong) +It's hard for me to understand French when it's spoken quickly. 法语说得快,我就难以理解。 CC-BY 2.0 (France) Attribution: tatoeba.org #4955342 (CK) & #5549547 (verdastelo9604) +Keep your eyes wide open before marriage, half shut afterwards. 婚前張開眼,婚後半閉眼。 CC-BY 2.0 (France) Attribution: tatoeba.org #238741 (CM) & #806179 (Martha) +One thousand dollars will cover all the expenses for the party. 1000美元将负担聚会的全部费用。 CC-BY 2.0 (France) Attribution: tatoeba.org #73500 (CK) & #846552 (kooler) +The economy of the island is dependent on the fishing industry. 这个岛的经济依靠的是渔业。 CC-BY 2.0 (France) Attribution: tatoeba.org #44749 (CK) & #415637 (fucongcong) +The police think the burglar entered through a basement window. 警察认为窃贼从地下室窗口进入。 CC-BY 2.0 (France) Attribution: tatoeba.org #3316619 (CK) & #5640734 (verdastelo9604) +The school is located within five minutes' walk of the station. 學校坐落於距離車站步行五分鐘的地方。 CC-BY 2.0 (France) Attribution: tatoeba.org #21534 (CK) & #775430 (Martha) +The senator was censured by the congressional ethics committee. 议员受到了议会道德委员会的谴责。 CC-BY 2.0 (France) Attribution: tatoeba.org #640841 (darinmex) & #812281 (fucongcong) +The third quarter GNP growth was 1% over the preceding quarter. 第三季國民生產總值較上一季成長了1%。 CC-BY 2.0 (France) Attribution: tatoeba.org #276020 (CK) & #830321 (Martha) +The warrior is conscious of both his strength and his weakness. 戰士知道自己的力量和弱點。 CC-BY 2.0 (France) Attribution: tatoeba.org #45742 (CM) & #772060 (Martha) +This year's fashions are completely different from last year's. 今年的时尚潮流完全不同于去年。 CC-BY 2.0 (France) Attribution: tatoeba.org #1450037 (Mouseneb) & #1324897 (vicch) +Today our artificial satellites are revolving around the earth. 今天我们的人造卫星正在环绕地球运转。 CC-BY 2.0 (France) Attribution: tatoeba.org #239549 (Dejo) & #5555134 (verdastelo9604) +Tom didn't know exactly what it was that Mary wanted him to do. 汤姆不知道玛丽到底让他做什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094743 (CK) & #5670791 (verdastelo9604) +We were unable to make contact with them until it was too late. 我们联系上他们已经为时已晚。 CC-BY 2.0 (France) Attribution: tatoeba.org #23498 (CK) & #334721 (fucongcong) +You'll get into trouble if your girlfriend finds out the truth. 如果你女朋友发现真相的话,你会有麻烦的。 CC-BY 2.0 (France) Attribution: tatoeba.org #17402 (CK) & #796764 (fucongcong) +"Why are you going to Japan?" "To attend a conference in Tokyo." “你去日本干嘛?”“去东京参加一个会议。” CC-BY 2.0 (France) Attribution: tatoeba.org #527968 (blay_paul) & #528725 (fucongcong) +"Will you have some more coffee?" "No, thanks. I've had enough." “你想再来点咖啡吗?”“不,谢谢。我够了。” CC-BY 2.0 (France) Attribution: tatoeba.org #73786 (CK) & #333033 (fucongcong) +Children depend on their parents for food, clothing and shelter. 孩子们的衣食住行靠的是他们的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #245939 (CK) & #791503 (fucongcong) +Do you know the difference between a microscope and a telescope? 你知道显微镜和望远镜的差别吗? CC-BY 2.0 (France) Attribution: tatoeba.org #239415 (CK) & #4262117 (notabene) +Everybody is supposed to know the law, but few people really do. 每一个人都应该知法懂法,但是真正能做到的人却很少。 CC-BY 2.0 (France) Attribution: tatoeba.org #276453 (CK) & #2456041 (fenfang557) +Excuse me, let me point out three mistakes in the above article. 不好意思,讓我指出先前文章的三個錯誤。 CC-BY 2.0 (France) Attribution: tatoeba.org #599187 (Dejo) & #1236352 (tsayng) +Have you ever seen Mt. Fuji? It is beautiful beyond description. 你看過富士山嗎? 它美得無法形容。 CC-BY 2.0 (France) Attribution: tatoeba.org #18070 (Zifre) & #779047 (Martha) +He's a very romantic boyfriend who brings me flowers each night. 他是个非常浪漫的男友,每晚都给我带花。 CC-BY 2.0 (France) Attribution: tatoeba.org #292072 (CK) & #5655387 (verdastelo9604) +His lie got him into trouble when his boss discovered the truth. 当他老板发现真相的时候,谎言给他带来了麻烦。 CC-BY 2.0 (France) Attribution: tatoeba.org #1539916 (SHamp) & #461676 (fucongcong) +I can still remember the time when we went on a picnic together. 我还记得我和你一起去野餐的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #953367 (CK) & #8886661 (crescat) +I may be unsociable, but it doesn't mean I don't talk to people. 我或许不善于社交,但这并不意味我不和别人交谈。 CC-BY 2.0 (France) Attribution: tatoeba.org #2225755 (CK) & #1427005 (asosan) +I think that I now have enough money to buy the car that I want. 我认为我现在有足够的钱买我想要的那辆车。 CC-BY 2.0 (France) Attribution: tatoeba.org #8388467 (CK) & #8605872 (slo_oth) +Is it true that your family will travel in Hokkaido? I envy you. 你们家去北海道旅游是真的么?我羡慕你。 CC-BY 2.0 (France) Attribution: tatoeba.org #240198 (CM) & #666398 (CLARET) +It hasn't been easy for Tom to deal with Mary's health problems. 处理玛丽的健康问题对汤姆来说不容易。 CC-BY 2.0 (France) Attribution: tatoeba.org #1096171 (CK) & #5558521 (verdastelo9604) +It is sometimes difficult to make yourself understood in public. 有時很難在公眾場合表達你自己的意思。 CC-BY 2.0 (France) Attribution: tatoeba.org #240470 (CM) & #780242 (Martha) +My father died of a subarachnoid hemorrhage when I was fourteen. 我十四岁的时候,父亲死于蛛网膜下出血。 CC-BY 2.0 (France) Attribution: tatoeba.org #2162240 (FeuDRenais) & #2143983 (ydcok) +No matter how hard I try, I can't do it any better than she can. 无论我多么努力尝试,我都无法做到比她更好。 CC-BY 2.0 (France) Attribution: tatoeba.org #388757 (CK) & #8658808 (slo_oth) +Nobody understood why the elephant suddenly turned on its owner. 没有人明白为什么大象突然攻击了它的主人。 CC-BY 2.0 (France) Attribution: tatoeba.org #792380 (CK) & #804997 (fucongcong) +She employed a private detective to keep a watch on her husband. 她僱了一個私人偵探看守她的丈夫。 CC-BY 2.0 (France) Attribution: tatoeba.org #316782 (CK) & #919658 (Martha) +She was very embarrassed when her child behaved badly in public. 當她的孩子在公共場合行為表現不好的時候,她覺得很尷尬。 CC-BY 2.0 (France) Attribution: tatoeba.org #313937 (CK) & #919665 (Martha) +She wouldn't let up until I agreed to go to the movies with her. 她不愿松开我,直到我同意和她去电影院。 CC-BY 2.0 (France) Attribution: tatoeba.org #623254 (darinmex) & #815305 (fucongcong) +Some scientists believe that the greenhouse effect is imaginary. 有的科學家認為溫室效應是虛構的。 CC-BY 2.0 (France) Attribution: tatoeba.org #727306 (eastasiastudent) & #727307 (egg0073) +The accident seemed to have something to do with the heavy snow. 事故似乎和厚厚的积雪有关。 CC-BY 2.0 (France) Attribution: tatoeba.org #47099 (CK) & #792796 (fucongcong) +The conflict between blacks and whites in the city became worse. 在这个城市,白人和黑人间的争端愈演愈烈。 CC-BY 2.0 (France) Attribution: tatoeba.org #246109 (CK) & #333584 (fucongcong) +The number of people suffering from heart disease has increased. 遭受心脏病困扰的人数增加了。 CC-BY 2.0 (France) Attribution: tatoeba.org #269007 (CM) & #333261 (fucongcong) +The value of the coins depended on the weight of the metal used. 钱币的价值取决于所使用的金属的重量。 CC-BY 2.0 (France) Attribution: tatoeba.org #240958 (CM) & #335005 (fucongcong) +This book is for students whose native language is not Japanese. 這本書是給母語不是日語的學生的。 CC-BY 2.0 (France) Attribution: tatoeba.org #56868 (CK) & #811490 (Martha) +This is by far the best novel that has been published this year. 这显然是今年出版的最好的小说。 CC-BY 2.0 (France) Attribution: tatoeba.org #55712 (CK) & #333342 (fucongcong) +Thousands of candles illuminated the church during the ceremony. 数以千计的蜡烛点亮了仪式中的教堂。 CC-BY 2.0 (France) Attribution: tatoeba.org #1327465 (CM) & #1394841 (mtdot) +Tom didn't want Mary to know that he didn't know how to do that. 汤姆不想玛丽知道他不知道怎么做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6253232 (CK) & #8589275 (easononizuka) +Tom says he isn't sure if he can do that, but he says he'll try. 汤姆说他不确定是否能做到,但是他说会尝试。 CC-BY 2.0 (France) Attribution: tatoeba.org #6229838 (CK) & #8589269 (easononizuka) +Tom told Mary that she should quit pretending to be intoxicated. 汤姆告诉玛丽她应该停止假装醉酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226897 (CK) & #8795196 (slo_oth) +Tom told Mary that she should stop pretending to be intoxicated. 汤姆告诉玛丽她应该停止假装醉酒。 CC-BY 2.0 (France) Attribution: tatoeba.org #6226898 (CK) & #8795196 (slo_oth) +Tom told us this morning that he and Mary were moving to Boston. 汤姆告诉我今天上午他和玛丽要搬到波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761953 (CK) & #4764578 (ryanwoo) +We were faced with an unusual situation because of the accident. 那场事故让我们陷入了不寻常的局势。 CC-BY 2.0 (France) Attribution: tatoeba.org #47159 (CM) & #8736992 (crescat) +We're going to eat a lot tonight so I hope you're not on a diet. 我们今晚会吃很多,所以我希望你没有在节食。 CC-BY 2.0 (France) Attribution: tatoeba.org #2480 (CK) & #405728 (fucongcong) +When Dad finds out what you've done, he's going to hit the roof. 当爸爸发现你做了什么的时候,他会发疯的。 CC-BY 2.0 (France) Attribution: tatoeba.org #602001 (darinmex) & #818840 (fucongcong) +You must've been surprised to meet your teacher in such a place. 在那种地方碰到你的老师,你应该很惊讶吧。 CC-BY 2.0 (France) Attribution: tatoeba.org #6874115 (CK) & #818875 (fucongcong) +You should do that as often as you can while you're still young. 趁你还年轻的时候,你应该尽可能经常地这样做。 CC-BY 2.0 (France) Attribution: tatoeba.org #6228050 (CK) & #8556522 (slo_oth) +"We haven't seen each other since 2009." "Has it been that long?" “我们从2009年起就没见过面。”“有那么久吗?” CC-BY 2.0 (France) Attribution: tatoeba.org #1858677 (CK) & #5640762 (verdastelo9604) +"Will you be at my party tomorrow night?" "I'll try to be there." “你明天会来我的聚会吗?”“我尽量来。” CC-BY 2.0 (France) Attribution: tatoeba.org #1858659 (CK) & #5663593 (verdastelo9604) +A considerable amount of time and effort have been spent already. 已經花費了很多的時間和精力。 CC-BY 2.0 (France) Attribution: tatoeba.org #51898 (CK) & #830433 (Martha) +All you need is ignorance and confidence and the success is sure. 要想成功只需要无知和自信。 CC-BY 2.0 (France) Attribution: tatoeba.org #667886 (CK) & #2426073 (huangfen) +As a matter of fact, I haven't eaten anything since this morning. 事實上,我從今天早上開始沒有吃任何東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #404102 (CK) & #872388 (Martha) +Austria is one of the largest producers of electricity in Europe. 澳大利亚在欧洲是最大的电能生产国之一。 CC-BY 2.0 (France) Attribution: tatoeba.org #4834053 (derpapottamus) & #4844794 (pig8322) +For the time being, I am studying French at this language school. 目前,我正在這所語言學校學習法語。 CC-BY 2.0 (France) Attribution: tatoeba.org #280034 (CK) & #811917 (Martha) +His name was on the tip of my tongue, but I couldn't remember it. 我都快要说出他的名字了,可就是记不起来。 CC-BY 2.0 (France) Attribution: tatoeba.org #287625 (CK) & #1785955 (sadhen) +I have lost my umbrella somewhere in the park. I have to buy one. 我的雨傘遺失在公園裡某個地方。我必須再買一把。 CC-BY 2.0 (France) Attribution: tatoeba.org #257356 (CK) & #793518 (Martha) +I haven't seen you for ages. Do you remember when I saw you last? 好久不见了。记得上次我什么时候看见你的吗? CC-BY 2.0 (France) Attribution: tatoeba.org #270979 (CK) & #1446802 (asosan) +I hope I will have a chance to see you next time I'm in New York. 希望下次我在纽约还可以有机会见到你。 CC-BY 2.0 (France) Attribution: tatoeba.org #246399 (CK) & #1867021 (yuzazaza) +I'd like to make a call to Tokyo, Japan. The number is 3202-5625. 我想要打个电话到日本东京,号码是3202-5625。 CC-BY 2.0 (France) Attribution: tatoeba.org #281448 (CM) & #336649 (fucongcong) +In another two weeks you will be able to get out of the hospital. 再过两周你就可以出院了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31680 (CK) & #8940733 (crescat) +In case the shipment is delayed, we have special delay insurance. 万一船运迟了,我们有特别的迟到保险。 CC-BY 2.0 (France) Attribution: tatoeba.org #23689 (CC) & #812222 (fucongcong) +It is out of the question for you to go to New York this weekend. 這個週末去紐約對你來說是不可能的事。 CC-BY 2.0 (France) Attribution: tatoeba.org #18033 (Eldad) & #785080 (Martha) +Maybe my grandchild will be the first person to set foot on Mars. 可能我的孙子会是登陆火星的第一人。 CC-BY 2.0 (France) Attribution: tatoeba.org #593655 (darinmex) & #819696 (fucongcong) +Money takes a long time to earn, but you can spend it in no time. 錢要花很長的時間來賺, 但你可以一下子就花掉它了。 CC-BY 2.0 (France) Attribution: tatoeba.org #64603 (CM) & #781174 (Martha) +Students generally like a teacher who understands their problems. 通常学生们喜欢理解他们问题的老师。 CC-BY 2.0 (France) Attribution: tatoeba.org #21393 (CK) & #335548 (fucongcong) +The baby caught sight of my ballpoint pen and reached out for it. 這個嬰兒盯著我的原子筆看, 並且伸手要拿它。 CC-BY 2.0 (France) Attribution: tatoeba.org #272308 (CK) & #772105 (Martha) +The leaves of the trees in the garden have turned completely red. 花园里树上的叶子已经完全变红了。 CC-BY 2.0 (France) Attribution: tatoeba.org #278499 (CK) & #1394790 (mtdot) +This will be a good souvenir of my trip around the United States. 这将是我环绕美国旅行中一个很好的纪念品。 CC-BY 2.0 (France) Attribution: tatoeba.org #1586 (CK) & #1778287 (sadhen) +Tom probably knows where we can get something to eat around here. 湯姆應該知道這附近哪裡有東西吃。 CC-BY 2.0 (France) Attribution: tatoeba.org #2745789 (CK) & #2771060 (cienias) +What Tom really wanted was enough money to buy Mary some flowers. 汤姆真正想要的是有足够的钱给玛丽买一些花。 CC-BY 2.0 (France) Attribution: tatoeba.org #1898020 (CK) & #4705813 (Yashanti) +When we are told not to come, we become all the more eager to go. 让我们别来,我们就更想来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #263312 (CK) & #333529 (fucongcong) +Because of the typhoon, my parents ended their trip one day early. 因为台风的关系,我的父母提早一天结束了旅行回到家。 CC-BY 2.0 (France) Attribution: tatoeba.org #997866 (CK) & #8727848 (crescat) +Four hundred million people speak English as their first language. 四億人以英語作為他們的第一語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #72607 (CK) & #811541 (Martha) +He seems not to be aware of the conflict between my father and me. 他似乎不知道我父亲和我之间的纠葛。 CC-BY 2.0 (France) Attribution: tatoeba.org #318880 (Scott) & #791477 (fucongcong) +He was an excellent scientist, and what is more, was a great poet. 他是一位優秀的科學家,更是一位偉大的詩人。 CC-BY 2.0 (France) Attribution: tatoeba.org #304333 (CK) & #830359 (Martha) +I'm glad that they fixed the heating system, but now it's too hot. 我很高興他們修復了暖氣系統,但現在太熱了。 CC-BY 2.0 (France) Attribution: tatoeba.org #721654 (Zifre) & #830355 (Martha) +If the lion is the king of beasts, the eagle is the king of birds. 狮子是兽类之王的话,鹰就是鸟类之王。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728326 (paper1n0) & #4613919 (cranewang) +If you don't have anything nice to say, don't say anything at all. 如果你没好话说,那就什么都别说。 CC-BY 2.0 (France) Attribution: tatoeba.org #603585 (darinmex) & #818907 (fucongcong) +If you had left home a little earlier you would have been in time. 如果你早点出门的话,你就能赶上了。 CC-BY 2.0 (France) Attribution: tatoeba.org #31256 (CK) & #1394783 (mtdot) +It seems that the only time he isn't eating is when he's sleeping. 看来他只有在睡觉时不吃东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #954057 (CK) & #5696839 (verdastelo9604) +Last month our twenty-year-old daughter gave birth to a baby girl. 上个月,我们20岁的女儿生了个女孩。 CC-BY 2.0 (France) Attribution: tatoeba.org #272681 (CK) & #333036 (fucongcong) +My car broke down this morning and won't be repaired until Friday. 我的车今天早上坏了,星期五才能修好。 CC-BY 2.0 (France) Attribution: tatoeba.org #242252 (darinmex) & #6307274 (gumblex) +My father always said that heaven helps those who help themselves. 我父親總是說天助自助者。 CC-BY 2.0 (France) Attribution: tatoeba.org #318965 (CK) & #804515 (Martha) +No matter how often I tell her, she keeps making the same mistake. 不管我跟她说了多少次,她还是继续犯同样的错误。 CC-BY 2.0 (France) Attribution: tatoeba.org #36694 (CK) & #333465 (fucongcong) +The average height of girls in this class is over 155 centimeters. 这个班的女生平均身高超过了155公分。 CC-BY 2.0 (France) Attribution: tatoeba.org #9308978 (CK) & #333943 (fucongcong) +The dolphin and trainer communicated much better than we expected. 海豚和驯养员交流得比我们所期望的好得多。 CC-BY 2.0 (France) Attribution: tatoeba.org #277958 (CM) & #795751 (fucongcong) +The recent shortage of coffee has given rise to a lot of problems. 近来咖啡的短缺造成了许多问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #243778 (CK) & #794034 (fucongcong) +Tom put the large picnic basket on the passenger seat next to him. 汤姆把那个大野餐篮子放在他旁边的乘客座位上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2957787 (CK) & #8550934 (slo_oth) +Tom wanted Mary's phone number, but she refused to give it to him. 汤姆想要玛丽的电话号码但是被拒绝了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4761949 (CK) & #4764583 (ryanwoo) +Tom was admiring my new car at the time the truck crashed into it. 在湯姆欣賞我的新車的同時,一輛卡車撞了過來。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024010 (CK) & #1228954 (tsayng) +Tom was wearing a bulletproof vest, so the bullet didn't kill him. 湯姆穿著一件防彈衣,所以子彈沒把他殺死。 CC-BY 2.0 (France) Attribution: tatoeba.org #1103210 (CK) & #8356142 (xjjAstrus) +You've worked hard for months and have certainly earned a holiday. 你已經辛苦地工作好幾個月了, 當然可以休假。 CC-BY 2.0 (France) Attribution: tatoeba.org #16271 (CK) & #775773 (Martha) +"The good die young" is an old saying which may or may not be true. “好人不长命”是句或真或假的老话。 CC-BY 2.0 (France) Attribution: tatoeba.org #847206 (Source_Benedict_1921) & #5574499 (verdastelo9604) +A bookstore in that location wouldn't make enough money to survive. 那個地點的書店無法賺足夠的錢生存下去。 CC-BY 2.0 (France) Attribution: tatoeba.org #41330 (CK) & #830411 (Martha) +Because of his wealth, he was able to become a member of that club. 由於他的財富,他能夠成為這個俱樂部的成員。 CC-BY 2.0 (France) Attribution: tatoeba.org #476498 (CK) & #874459 (Martha) +Everyone is anxious to know what has become of the former champion. 大家都渴望知道前冠军得主发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #68013 (CM) & #829691 (fucongcong) +First off, I'd like you to come with me to a department store sale. 首先,我要你跟我一起去百貨公司的特價活動。 CC-BY 2.0 (France) Attribution: tatoeba.org #243998 (CK) & #881106 (Martha) +He always left the problem of his children's education to his wife. 他總是把孩子的教育問題留給他的妻子。 CC-BY 2.0 (France) Attribution: tatoeba.org #298737 (CK) & #830390 (Martha) +He announced that he would come at once and investigate the matter. 他宣布他將立刻來調查此事。 CC-BY 2.0 (France) Attribution: tatoeba.org #405048 (CK) & #785188 (Martha) +He devoted the last years of his life to writing his autobiography. 他晚年致力於寫自傳。 CC-BY 2.0 (France) Attribution: tatoeba.org #302485 (CK) & #735103 (Martha) +He was always annoyed in the city by noises of one sort or another. 他在城市里一直受到噪音或者其他的干扰。 CC-BY 2.0 (France) Attribution: tatoeba.org #279450 (CM) & #333001 (fucongcong) +His wife is in the hospital because she was injured in a car crash. 他的妻子在醫院裡因為她在一場車禍中受傷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #286367 (CK) & #780238 (Martha) +I'm not a child, but sometimes you talk to me as if I were a child. 我不是小孩子,但有时你跟我说话就好像我是小孩子一样。 CC-BY 2.0 (France) Attribution: tatoeba.org #257968 (CK) & #4764534 (ryanwoo) +If you heard her speak English, you would take her for an American. 如果你听到她讲的英语,你会以为她是美国人呢。 CC-BY 2.0 (France) Attribution: tatoeba.org #308187 (CK) & #1235649 (sunnywqing) +In this kind of weather, it's best to stay home and not go outside. 这种天气下最好待在家里不要外出。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755066 (CK) & #4757575 (ryanwoo) +It took me more than two hours to translate a few pages of English. 翻译几页英文花了我2个多小时。 CC-BY 2.0 (France) Attribution: tatoeba.org #1617 (CK) & #334142 (fucongcong) +It was through his influence that she became interested in ecology. 她开始对生态学感兴趣,是受到他的影响。 CC-BY 2.0 (France) Attribution: tatoeba.org #308387 (CK) & #333785 (fucongcong) +Please don't forget to put a stamp on the letter before mailing it. 请不要忘记寄信前要在上面贴邮票。 CC-BY 2.0 (France) Attribution: tatoeba.org #45820 (CK) & #786035 (fucongcong) +Switzerland is situated between France, Italy, Austria and Germany. 瑞士位于法国、意大利、奥地利和德国之间。 CC-BY 2.0 (France) Attribution: tatoeba.org #52443 (CM) & #333951 (fucongcong) +The teacher pointed her finger at me and asked me to come with her. 教师用手指指着我,要我跟她走。 CC-BY 2.0 (France) Attribution: tatoeba.org #272990 (CK) & #5581651 (verdastelo9604) +The traveler was delighted at the sight of a light in the distance. 发现了远处的灯光的旅行者欢喜不已。 CC-BY 2.0 (France) Attribution: tatoeba.org #325599 (CM) & #8742169 (crescat) +The value of the painting was estimated at several million dollars. 这幅画被估价数百万元。 CC-BY 2.0 (France) Attribution: tatoeba.org #50621 (CK) & #1311376 (vicch) +There are many more students in the classroom today than yesterday. 今天教室裡的學生比昨天還要多。 CC-BY 2.0 (France) Attribution: tatoeba.org #242852 (CK) & #801563 (Martha) +There was a minute of silence and then everybody started screaming. 有一分钟的沉默,然后每个人都开始尖叫。 CC-BY 2.0 (France) Attribution: tatoeba.org #2335868 (CK) & #5650529 (verdastelo9604) +This is a secret just between you and me, so don't let it slip out. 这只是你和我之间的秘密,所以不要让它流出去。 CC-BY 2.0 (France) Attribution: tatoeba.org #55479 (CK) & #813544 (fucongcong) +This problem is too difficult for primary school children to solve. 这个问题让小学生解决太难了。 CC-BY 2.0 (France) Attribution: tatoeba.org #56676 (CK) & #336874 (fucongcong) +You should apologize to Dad for not coming home in time for supper. 你應該為你沒有及時回家吃晚餐向你父親道歉。 CC-BY 2.0 (France) Attribution: tatoeba.org #16740 (CK) & #775840 (Martha) +You're going to wreck your eyesight if you play games all the time. 要是你老打游戏的话,你的视力会下降的。 CC-BY 2.0 (France) Attribution: tatoeba.org #4757214 (CK) & #4757228 (ryanwoo) +According to the guidebook, this is the best restaurant around here. 根據指南,這是這附近最好的餐館。 CC-BY 2.0 (France) Attribution: tatoeba.org #326921 (CK) & #830424 (Martha) +Do you know how many people in the world starve to death every year? 你知不知道全世界每年有多少人饿死呀? CC-BY 2.0 (France) Attribution: tatoeba.org #1474660 (CK) & #8591299 (easononizuka) +Father makes sure that all the lights are off before he goes to bed. 父親確定所有的燈都關了後才去睡覺。 CC-BY 2.0 (France) Attribution: tatoeba.org #318961 (CM) & #804510 (Martha) +I can't remember the meaning of the word that I looked up yesterday. 我记不起昨天查的那个词的意思了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244637 (CK) & #1394927 (mtdot) +I think that Liszt's "Forgotten Waltz No.3" is a hidden masterpiece. 我觉得李斯特的《被遗忘的圆舞曲第三首》是个被埋没的名曲。 CC-BY 2.0 (France) Attribution: tatoeba.org #2678454 (WestofEden) & #8671376 (crescat) +I've never lived on a farm, but both of my parents grew up on farms. 我从没有住在农场,但我的父母都在农场长大。 CC-BY 2.0 (France) Attribution: tatoeba.org #3097129 (CK) & #5574766 (verdastelo9604) +If two men always have the same opinion, one of them is unnecessary. 如果两个人总是意见相同,那么他们其中一个就没必要了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1872 (Swift) & #502846 (fucongcong) +In some countries, the punishment for treason can be life in prison. 在一些國家,叛國罪的懲罰可以是終身監禁。 CC-BY 2.0 (France) Attribution: tatoeba.org #682228 (Source_VOA) & #873443 (Martha) +In the light of what you told us, I think we should revise our plan. 根据你所说的话,我认为我们应该重新审视我们的计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #16856 (eastasiastudent) & #334050 (fucongcong) +It's difficult for me to understand French when it's spoken quickly. 法语说得快,我就难以理解。 CC-BY 2.0 (France) Attribution: tatoeba.org #4955341 (CK) & #5549547 (verdastelo9604) +My father had already finished breakfast when I got up this morning. 我今早起床时,我爸已经吃过早饭了。 CC-BY 2.0 (France) Attribution: tatoeba.org #242247 (CK) & #2143969 (ydcok) +My father is in the habit of reading the newspaper before breakfast. 我父亲有个习惯,早餐之前读报纸。 CC-BY 2.0 (France) Attribution: tatoeba.org #995322 (NickC) & #993706 (leoyzy) +Our task has been easy so far, but it will be difficult from now on. 我们的任务到目前为止很轻松,但从现在开始将会变得很难。 CC-BY 2.0 (France) Attribution: tatoeba.org #247532 (CK) & #332592 (fucongcong) +The death penalty had been done away with in many states in the USA. 死刑在美国的很多州都被废除了。 CC-BY 2.0 (France) Attribution: tatoeba.org #67568 (CM) & #333229 (fucongcong) +The flash wasn't working, so he couldn't take a picture in the dark. 因为闪光灯坏了,他不能在黑暗中拍照。 CC-BY 2.0 (France) Attribution: tatoeba.org #4146682 (Lepotdeterre) & #4147261 (sissima) +The only difference between a bad cook and a poisoner is the intent. 一個差勁的廚師和下毒者唯一的不同在於他們的意圖。 CC-BY 2.0 (France) Attribution: tatoeba.org #529768 (FeuDRenais) & #727906 (Martha) +The time will soon come when man will be able to travel to the moon. 在不久的将来人类会可以去月球旅游。 CC-BY 2.0 (France) Attribution: tatoeba.org #238810 (CK) & #8709491 (crescat) +Tom asked me to tell you he didn't plan on going to Boston with you. 汤姆让我告诉你他没有计划和你一起去波士顿。 CC-BY 2.0 (France) Attribution: tatoeba.org #2537077 (CK) & #5091672 (mirrorvan) +Tom started as a janitor, but he's now the president of the company. 汤姆最初是看门人,但现在他是公司的总裁了。 CC-BY 2.0 (France) Attribution: tatoeba.org #3669233 (Hybrid) & #8688136 (slo_oth) +Tom told Mary not to waste her time trying to convince John to help. 汤姆对玛丽说,不要浪费时间去说服约翰来帮忙。 CC-BY 2.0 (France) Attribution: tatoeba.org #2701321 (CK) & #8511426 (gumblex) +Tom wants to learn boxing, but his mother thinks it's too dangerous. 汤姆想学拳击,但他妈妈觉得这太危险了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1394960 (Spamster) & #7772622 (jiangche) +"Do you know when they will arrive?" "At eleven-thirty this evening." 你知道他们什么时候到吗? 今晚11点半。 CC-BY 2.0 (France) Attribution: tatoeba.org #468046 (blay_paul) & #1438398 (asosan) +Always do right. This will gratify some people and astonish the rest. 坚持做对的事情。这会满足一部分人同时使另一部分人感到惊讶。 CC-BY 2.0 (France) Attribution: tatoeba.org #667887 (CK) & #2426074 (huangfen) +Everybody talks about the weather, but nobody does anything about it. 每個人都在談論天氣, 但是沒有人為它做任何事情。 CC-BY 2.0 (France) Attribution: tatoeba.org #667904 (CK) & #780377 (Martha) +He and I were inseparable friends during our time together in school. 我和他在學生時代是分不開的朋友。 CC-BY 2.0 (France) Attribution: tatoeba.org #1444018 (qana) & #767107 (Martha) +His intelligence and experience enabled him to deal with the trouble. 他的智慧和經驗使他能處理這個麻煩。 CC-BY 2.0 (France) Attribution: tatoeba.org #277037 (CK) & #830345 (Martha) +I agree on an emotional level, but on the pragmatic level I disagree. 我感情上支持,但是理性上反对。 CC-BY 2.0 (France) Attribution: tatoeba.org #329546 (fcbond) & #8780284 (crescat) +I came to Tokyo three years ago and have been living here ever since. 三年前我来到东京并一直住在这儿。 CC-BY 2.0 (France) Attribution: tatoeba.org #72637 (blay_paul) & #334444 (fucongcong) +I can't think of any other way of getting him to accept our proposal. 我看不出有其他方法能让他接受我们的提议。 CC-BY 2.0 (France) Attribution: tatoeba.org #247578 (CK) & #333337 (fucongcong) +I think it's dangerous to climb a mountain on a day when it's stormy. 我認為在有風暴的時候裡登山很危險。 CC-BY 2.0 (France) Attribution: tatoeba.org #325295 (CM) & #6128488 (verdastelo9604) +If it had not been for your help, I couldn't have completed the work. 如果不是因为有你的帮助,我不可能完成了这个工作。 CC-BY 2.0 (France) Attribution: tatoeba.org #30866 (CK) & #333151 (fucongcong) +In a few minutes we'll be landing at New Tokyo International Airport. 我们将于几分钟内降落在新东京国际机场。 CC-BY 2.0 (France) Attribution: tatoeba.org #32444 (CK) & #1397118 (mtdot) +It's better to teach someone how to fish than to give someone a fish. 授之以鱼,不如授之以渔。 CC-BY 2.0 (France) Attribution: tatoeba.org #7817626 (CK) & #1746134 (sadhen) +It's clear that there's a rather strong disagreement between the two. 很明顯的是這兩者之間有很強烈的分歧。 CC-BY 2.0 (France) Attribution: tatoeba.org #775729 (FeuDRenais) & #777065 (Martha) +It's hard to believe Tom wasn't aware that Mary was in love with him. 真难相信汤姆不知道玛丽爱他。 CC-BY 2.0 (France) Attribution: tatoeba.org #8222810 (CK) & #5624939 (verdastelo9604) +Most Americans do not object to my calling them by their first names. 大多数美国人似乎不反对我直呼其名。 CC-BY 2.0 (France) Attribution: tatoeba.org #275937 (CM) & #795741 (fucongcong) +Nobody's going to shed any tears if that old building gets torn down. 没有人会为这个旧建筑物的拆除而落泪。 CC-BY 2.0 (France) Attribution: tatoeba.org #1260778 (CK) & #1780774 (sadhen) +She has a good command of English though she was brought up in Japan. 雖然她在日本被撫養長大,但是她精通英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #316075 (Zifre) & #811472 (Martha) +She took full advantage of her stay in London to improve her English. 她充分利用她住在伦敦的优势,提高英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #312449 (CK) & #863949 (kooler) +The taller the tree, the more likely it is to be struck by lightning. 树高遭雷击。 CC-BY 2.0 (France) Attribution: tatoeba.org #2169069 (FeuDRenais) & #2166043 (sadhen) +There is nothing worse than doing something in a half-hearted manner. 没有什么比做事缺乏热情更糟。 CC-BY 2.0 (France) Attribution: tatoeba.org #1193960 (CK) & #1394875 (mtdot) +Tom and I sat on a bench in the park and talked while we fed pigeons. 我和汤姆在公园的长椅上坐着,一边聊天一边喂着鸽子。 CC-BY 2.0 (France) Attribution: tatoeba.org #6229497 (CK) & #7012154 (yuiyu) +We've received a lot of applications in answer to our advertisements. 我們已經收到了很多回應我們廣告的申請。 CC-BY 2.0 (France) Attribution: tatoeba.org #28885 (CM) & #874714 (Martha) +Because of heavy snow, the plane from Beijing arrived 20 minutes late. 由於下大雪,從北京来的班機延遲二十分鐘。 CC-BY 2.0 (France) Attribution: tatoeba.org #396198 (CK) & #396199 (Martha) +Can you describe to me the difference between black tea and green tea? 你能告诉我红茶和绿茶的区别吗? CC-BY 2.0 (France) Attribution: tatoeba.org #240968 (Zifre) & #813575 (fucongcong) +Don't worry! Even if I drink, it doesn't have an effect on my driving. 別擔心! 即使我喝酒了, 它對我的駕駛沒有影響。 CC-BY 2.0 (France) Attribution: tatoeba.org #418386 (Scott) & #793346 (Martha) +Had he known what was about to happen, he would have changed his plan. 要是他知道会发生什么,他就会改变计划。 CC-BY 2.0 (France) Attribution: tatoeba.org #25139 (Dejo) & #5624988 (verdastelo9604) +I think you will find it convenient to put a short-cut on the desktop. 我想你迟早会知道在桌面建立一个快捷方式是有多方便。 CC-BY 2.0 (France) Attribution: tatoeba.org #393814 (blay_paul) & #1767755 (yuzazaza) +I want a cellular phone, but I don't have enough money to pay for one. 我想要一支手機, 但是我沒有足夠的錢買一支。 CC-BY 2.0 (France) Attribution: tatoeba.org #237933 (CM) & #777733 (Martha) +I will have finished reading this novel by the time you come tomorrow. 你明天来的时候,我就看完这本小说了。 CC-BY 2.0 (France) Attribution: tatoeba.org #323094 (CK) & #819821 (fucongcong) +I've something interesting to tell you that you might find surprising. 我有点有趣的事要告诉你,你可能会吃惊。 CC-BY 2.0 (France) Attribution: tatoeba.org #1256959 (CK) & #5640767 (verdastelo9604) +It was raining when we left, but by the time we arrived, it was sunny. 我们走的时候下着雨,到的时候有太阳。 CC-BY 2.0 (France) Attribution: tatoeba.org #2394 (FeuDRenais) & #389827 (fucongcong) +It's hard to tell Englishmen from Americans just by the way they look. 只凭长相的话很难区分英国人和美国人。 CC-BY 2.0 (France) Attribution: tatoeba.org #20765 (CK) & #8789285 (crescat) +Preventive measures are much more effective than the actual treatment. 预防措施比真正的治疗更有效。 CC-BY 2.0 (France) Attribution: tatoeba.org #324720 (CM) & #334881 (fucongcong) +Rather than live a hundred years as a rabbit, live one day as a tiger. 寧可當隻老虎活一天,也不願當隻兔子過一百年。 CC-BY 2.0 (France) Attribution: tatoeba.org #866890 (FeuDRenais) & #869895 (Martha) +She recognized the brooch as the one she had lost a few months before. 她认出那枚胸针是她几个月前丢失的。 CC-BY 2.0 (France) Attribution: tatoeba.org #311141 (CK) & #8556523 (slo_oth) +Tom wanted to stay home and relax instead of hiking with his children. 汤姆想待在家休息而不是和他的孩子们出去远足。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092491 (CK) & #2033411 (sadhen) +What's this song? I've heard it before, but I can't remember the name. 这是什么歌?我以前听过,但是我想不起歌名了。 CC-BY 2.0 (France) Attribution: tatoeba.org #889679 (Scott) & #1867082 (yuzazaza) +As is evident from the data, smoking is not decreasing among the young. 数据表明年轻人抽烟的现象没有减少。 CC-BY 2.0 (France) Attribution: tatoeba.org #39652 (CM) & #332928 (fucongcong) +Because it is written in simple English even a child can understand it. 因為這是用簡單的英語寫的,所以甚至連孩子都能理解。 CC-BY 2.0 (France) Attribution: tatoeba.org #30273 (CM) & #811795 (Martha) +Does any other country fan the flames of patriotism as much as America? 有没有一个国家比美国更提倡爱国主义? CC-BY 2.0 (France) Attribution: tatoeba.org #530611 (blay_paul) & #813637 (fucongcong) +I always enjoy listening to classical music when I have some free time. 有空的时候,我总喜欢听古典音乐。 CC-BY 2.0 (France) Attribution: tatoeba.org #66532 (CK) & #334071 (fucongcong) +I was nine years old when I asked my mom if Santa Claus really existed. 我九岁的时候问我妈妈圣诞老人是否真的存在。 CC-BY 2.0 (France) Attribution: tatoeba.org #652440 (darinmex) & #812363 (fucongcong) +If it's at all possible, I'd like you to take part in the next meeting. 如果可能的話, 我希望你參加下一次的會議。 CC-BY 2.0 (France) Attribution: tatoeba.org #36038 (CK) & #759115 (Martha) +If you enjoy the work you do, you have something worth more than money. 如果你喜歡你做的工作,你就有比金錢更有價值的東西。 CC-BY 2.0 (France) Attribution: tatoeba.org #264724 (CK) & #891582 (Martha) +It was not until I had a baby myself that I knew what mother's love is. 直到我自己有了孩子我才明白了什么是母爱。 CC-BY 2.0 (France) Attribution: tatoeba.org #264558 (CK) & #333962 (fucongcong) +Kindness is the language which the deaf can hear and the blind can see. 善良是聾子能聽盲人能看的語言。 CC-BY 2.0 (France) Attribution: tatoeba.org #667922 (CK) & #771967 (Martha) +Mary came home from school in tears because her friends had teased her. 玛丽哭着从学校跑回了家里,因为她的朋友捉弄了她。 CC-BY 2.0 (France) Attribution: tatoeba.org #4945428 (Hybrid) & #5091334 (mirrorvan) +My father was no less affectionate and tender to me than my mother was. 我爸爸对我的爱和照顾不比我妈妈少。 CC-BY 2.0 (France) Attribution: tatoeba.org #251621 (CM) & #332696 (fucongcong) +Now's the time to decide whether you really want to get married or not. 现在是你决定是不是真要结婚的时候。 CC-BY 2.0 (France) Attribution: tatoeba.org #2042884 (CK) & #5624935 (verdastelo9604) +People show up bright on an infrared camera because of their body heat. 人會因為體溫而在紅外線攝影機上顯現。 CC-BY 2.0 (France) Attribution: tatoeba.org #616154 (kebukebu) & #760876 (Martha) +The police have been searching for the stolen goods for almost a month. 警察大概从一个月前就开始找被偷物品了。 CC-BY 2.0 (France) Attribution: tatoeba.org #238093 (CK) & #333392 (fucongcong) +They told me that I would feel a little better if I took this medicine. 他們告訴我吃完這個藥我就會覺得舒服一點。 CC-BY 2.0 (France) Attribution: tatoeba.org #778508 (FeuDRenais) & #778500 (Martha) +Tom couldn't go to college because his family didn't have enough money. 因为家里钱不够所以汤姆没能念大学。 CC-BY 2.0 (France) Attribution: tatoeba.org #4755837 (CK) & #4757620 (ryanwoo) +Tom thought he had a chance to make a lot of money on the stock market. 汤姆觉得他有机会在股市赚一大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092795 (CK) & #8792033 (slo_oth) +When his food supply ran short, he had to look for a new place to live. 他的食物供给不足的的时候,他不得不去找新的地方居住。 CC-BY 2.0 (France) Attribution: tatoeba.org #286791 (CK) & #1990207 (sunnywqing) +While I was reading in bed last night, I fell asleep with the light on. 我昨晚在床上看书的时候点着灯就睡了。 CC-BY 2.0 (France) Attribution: tatoeba.org #244847 (blay_paul) & #1446793 (asosan) +"Where have you been?" "I have been to the station to see a friend off." “你去哪儿了?”“我去了火车站送我的一个朋友。” CC-BY 2.0 (France) Attribution: tatoeba.org #73839 (CK) & #333716 (fucongcong) +After I got married, my Japanese got better and I could understand more. 在我结婚之后,我的日语水平提高了,能理解更多日语了。 CC-BY 2.0 (France) Attribution: tatoeba.org #257203 (CN) & #8839876 (crescat) +By the way, did you find the umbrella you said you'd lost the other day? 对了,前些时间你说伞不见了,现在找到了吗? CC-BY 2.0 (France) Attribution: tatoeba.org #4717665 (xorgy) & #5097683 (mirrorvan) +Her eyes shone with joy when she saw that her mother was not mad at her. 當她看到媽媽沒在生她的氣,她的雙眼因為幸福而閃爍了。 CC-BY 2.0 (France) Attribution: tatoeba.org #320557 (CK) & #2256437 (cienias) +I can place the palms of my hands on the floor without bending my knees. 我不用曲膝就能把我的手掌放到地上。 CC-BY 2.0 (France) Attribution: tatoeba.org #2097 (CK) & #503191 (fucongcong) +I learned to drive a car and got a driver's license when I was eighteen. 我十八歲時,學了開車、考到了駕照。 CC-BY 2.0 (France) Attribution: tatoeba.org #73304 (minshirui) & #8388746 (wangchou) +I learned to drive a car when I was eighteen and got a driver's license. 我十八歲時,學了開車、考到了駕照。 CC-BY 2.0 (France) Attribution: tatoeba.org #496419 (blay_paul) & #8388746 (wangchou) +I was planning on going to the beach today, but then it started to rain. 我本来预备今天去海滩的,但接着天就开始下雨了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1863 (Zifre) & #502840 (fucongcong) +I wonder whether we have enough money to buy Tom the painting he wanted. 我想知道咱们是否有足够的钱给汤姆买他想要的这幅画 CC-BY 2.0 (France) Attribution: tatoeba.org #6338100 (CK) & #8750762 (cxpadonis) +If we knew what we were doing, it wouldn't be called research, would it? 如果我们知道我们在做什么,那么这不能称之为研究,是吗? CC-BY 2.0 (France) Attribution: tatoeba.org #2291 (CK) & #1772683 (sadhen) +If you want to go, then go. If you don't want to, then it's no big deal. 如果你想去,就去好了。如果你不想去,那也没什么大不了的。 CC-BY 2.0 (France) Attribution: tatoeba.org #941358 (FeuDRenais) & #2456037 (fenfang557) +In the U.S., most people can vote when they reach eighteen years of age. 在美国,大多数人能在十八岁后投票选举。 CC-BY 2.0 (France) Attribution: tatoeba.org #67628 (CM) & #5670805 (verdastelo9604) +It is the things that we do not possess which seem to us most desirable. 得不到的东西就最想得到。 CC-BY 2.0 (France) Attribution: tatoeba.org #237003 (CM) & #332950 (fucongcong) +Rather than cutting down on cigarettes, why don't you just give them up? 比起少抽菸,你何不直接把菸戒了? CC-BY 2.0 (France) Attribution: tatoeba.org #1990497 (CK) & #5363928 (egg0073) +Sociopaths rarely display remorse or feelings of guilt for their crimes. 反社会者极少为他们的罪行显露懊悔或有罪恶的感觉。 CC-BY 2.0 (France) Attribution: tatoeba.org #3698200 (patgfisher) & #5574891 (verdastelo9604) +Tom can't account for his whereabouts on the day that Mary was murdered. 汤姆不能说明玛丽遇害那天自己在哪里。 CC-BY 2.0 (France) Attribution: tatoeba.org #1950642 (CK) & #5574708 (verdastelo9604) +Tom never forgets to give his wife flowers on their wedding anniversary. 汤姆从没忘记在婚礼周年纪念日送给他妻子花。 CC-BY 2.0 (France) Attribution: tatoeba.org #2781012 (CK) & #5856791 (verdastelo9604) +Tom was able to make himself understood in French when he visited Paris. 在巴黎,沒有人能夠理解湯姆的法文。 CC-BY 2.0 (France) Attribution: tatoeba.org #1024015 (CK) & #1228959 (tsayng) +We were talking about something at that time, but I don't remember what. 我们那时在谈论事情,但我不记得是什么了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2064978 (CK) & #5663537 (verdastelo9604) +You shouldn't share too much private information on the social networks. 你不应该在社交网络上分享过多私人信息。 CC-BY 2.0 (France) Attribution: tatoeba.org #954814 (CK) & #1454427 (sadhen) +After Tom lost his job, he started to gamble to cope with his depression. 湯姆失業後,為了排遣鬱悶的心情而開始了賭博。 CC-BY 2.0 (France) Attribution: tatoeba.org #7812230 (sharris123) & #2757133 (cienias) +After school, I go to an English school to practice English conversation. 放學後,我到一所英語學校去練習英語會話。 CC-BY 2.0 (France) Attribution: tatoeba.org #320996 (CK) & #811557 (Martha) +Beer is taxed according to its malt content, so low-malt beer is cheaper. 因为啤酒会根据麦芽含量去征税,所以发泡酒会比较便宜。 CC-BY 2.0 (France) Attribution: tatoeba.org #327247 (CM) & #8739388 (crescat) +I think you'll have very little difficulty in getting a driver's license. 我想你要拿到驾照根本不难。 CC-BY 2.0 (France) Attribution: tatoeba.org #16302 (CK) & #469319 (fucongcong) +I thought we had found the perfect hiding place, but the police found us. 我以为我们发现了绝妙的藏身之处,但警察找到了我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #1938916 (CK) & #6563552 (gumblex) +I'd like to know the phone number of the nearest American Express office. 我想知道最近的美國運通辦事處的電話號碼。 CC-BY 2.0 (France) Attribution: tatoeba.org #27275 (CK) & #909450 (Martha) +She visits the dentist on a regular basis, so she seldom gets toothaches. 她定期去看牙医,所以她很少牙痛。 CC-BY 2.0 (France) Attribution: tatoeba.org #510208 (CK) & #835663 (fucongcong) +To make matters worse, he isn't even conscious of annoying his neighbors. 让事情更糟糕的是,他没有注意到他打扰到了邻居。 CC-BY 2.0 (France) Attribution: tatoeba.org #53970 (CK) & #1501645 (fenfang557) +You seem to be prejudiced against ideas that come from foreign countries. 你似乎對來自國外的想法有偏見。 CC-BY 2.0 (France) Attribution: tatoeba.org #16237 (CK) & #775765 (Martha) +If a sick person folds one thousand paper cranes, her wish will come true. 如果一個病人折一千隻紙鶴, 她的願望就會成真。 CC-BY 2.0 (France) Attribution: tatoeba.org #30628 (Zifre) & #772167 (Martha) +It's hard to believe that Tom wasn't aware that Mary was in love with him. 真难相信汤姆不知道玛丽爱他。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553421 (CK) & #5624939 (verdastelo9604) +Please attend the meeting in the second floor conference room at 2:30 p.m. 请在两点半参加在二楼会议室的会议。 CC-BY 2.0 (France) Attribution: tatoeba.org #1021181 (CK) & #8792110 (crescat) +Tom returned to his hometown to visit his parents during the summer break. 汤姆在夏休回乡看望父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #3562558 (Hybrid) & #5617229 (verdastelo9604) +We must take into account the wishes of all the family in planning a trip. 筹划旅行的时候,我们必须考虑到全家人的意愿。 CC-BY 2.0 (France) Attribution: tatoeba.org #325571 (CM) & #7774822 (jiangche) +You're much less likely to get a good position if you don't speak English. 如果你不会说英语,你就很难得到一个好的职位。 CC-BY 2.0 (France) Attribution: tatoeba.org #26240 (CK) & #1719665 (yuzazaza) +After asking for my key at the front desk, I took the elevator to my floor. 我到櫃檯拿了鑰匙,然後就乘電梯去了我房間的樓層。 CC-BY 2.0 (France) Attribution: tatoeba.org #34053 (CK) & #431516 (Martha) +English has now become the common language of several nations in the world. 英语现已成为世界上许多国家的通用语言了。 CC-BY 2.0 (France) Attribution: tatoeba.org #26274 (CK) & #791672 (fucongcong) +I don't mind lending you the money provided you pay it back within a month. 假如能一个月之内还上的话,我可以把钱借给你。 CC-BY 2.0 (France) Attribution: tatoeba.org #73237 (CK) & #8652807 (crescat) +Outside the school, she saw people with no homes living in cardboard boxes. 在校外,她见到没有家的人们住在纸板箱里。 CC-BY 2.0 (France) Attribution: tatoeba.org #21486 (CK) & #5576844 (verdastelo9604) +The Prime Minister's speech was calculated to anger the opposition parties. 總理的發言估計激怒了在野黨。 CC-BY 2.0 (France) Attribution: tatoeba.org #266139 (CK) & #830358 (Martha) +The good thing about this electronic dictionary is that it's easy to carry. 这电子辞典的好处就是便于携带。 CC-BY 2.0 (France) Attribution: tatoeba.org #326992 (CK) & #794251 (fucongcong) +The lady really flipped out when she learned she had won a million dollars. 當這位女士得知她已經贏得了百萬美元, 她真的樂瘋了。 CC-BY 2.0 (France) Attribution: tatoeba.org #68239 (CM) & #780041 (Martha) +We apologize for the delay and regret any inconvenience it may have caused. 我们对这次的延迟表示抱歉,并对可能造成的不便表示遗憾。 CC-BY 2.0 (France) Attribution: tatoeba.org #2938645 (vicch) & #2938644 (vicch) +According to newspaper reports, there was an airplane accident last evening. 根據報載,有一架飛機昨天晚上發生了意外。 CC-BY 2.0 (France) Attribution: tatoeba.org #269460 (CK) & #830423 (Martha) +After he had graduated from the university, he taught English for two years. 從他大學畢業以後, 他教了兩年的英語。 CC-BY 2.0 (France) Attribution: tatoeba.org #301259 (CK) & #777715 (Martha) +If a man had 11 sheep and all but 9 died, how many sheep would he have left? 如果一个人有11只羊,除了9只之外,其他全部死了,那么他还剩下几只羊呢? CC-BY 2.0 (France) Attribution: tatoeba.org #867817 (CK) & #1415834 (sadhen) +If it rains on that day, the game will be postponed until the next fine day. 如果那天下雨,比赛会顺延至下一个晴天。 CC-BY 2.0 (France) Attribution: tatoeba.org #280032 (CM) & #8496252 (gumblex) +It would take me too much time to explain to you why it's not going to work. 给你解释这为什么行不通要花很多时间。 CC-BY 2.0 (France) Attribution: tatoeba.org #1496 (Zifre) & #334703 (fucongcong) +The importation of rare wild animals to this country is strictly prohibited. 该国严禁进口稀有野生动物。 CC-BY 2.0 (France) Attribution: tatoeba.org #20611 (CK) & #2027987 (ydcok) +The statue of Hachiko, the faithful dog, stands in front of Shibuya Station. 忠犬八公的雕像伫立在涩谷站前。 CC-BY 2.0 (France) Attribution: tatoeba.org #277560 (CK) & #1394995 (mtdot) +Tom thought that he had a chance to make a lot of money on the stock market. 汤姆觉得他有机会在股市赚一大笔钱。 CC-BY 2.0 (France) Attribution: tatoeba.org #7174804 (CK) & #8792033 (slo_oth) +A person views things differently according to whether they are rich or poor. 每一個人對事情的看法不同是依據他們是富有還是貧窮。 CC-BY 2.0 (France) Attribution: tatoeba.org #270058 (Shiawase) & #922373 (Martha) +Although the government refuses to admit it, its economic policy is in ruins. 尽管政府拒绝承认,它的经济政策还是失败了。 CC-BY 2.0 (France) Attribution: tatoeba.org #271492 (CM) & #5581646 (verdastelo9604) +Mary tied an apron around her waist and then took the turkey out of the oven. Mary试图把围裙围在腰上,然后把烤鸡从炉子里拿出来。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846652 (Hybrid) & #4846817 (pig8322) +Mary tied an apron around her waist and then took the turkey out of the oven. 玛丽把围裙系在她的腰上,然后把火鸡从烤箱里拿出来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4846652 (Hybrid) & #8790705 (slo_oth) +People look at things differently depending on whether they are rich or poor. 人們看待事情的角度不同取決於他們是富裕或貧窮。 CC-BY 2.0 (France) Attribution: tatoeba.org #922069 (CK) & #922376 (Martha) +The most important thing in the Olympic Games is not winning but taking part. 奥运会最重要的不是获胜,而是参与。 CC-BY 2.0 (France) Attribution: tatoeba.org #64807 (meursault) & #334990 (fucongcong) +The population of London is much greater than that of any other British city. 倫敦的人口遠遠多於其他英國城市的人口。 CC-BY 2.0 (France) Attribution: tatoeba.org #29283 (CK) & #5363942 (egg0073) +They consider it impolite to disagree with someone they don't know very well. 他们认为,去反驳一个不认识的人有些不礼貌。 CC-BY 2.0 (France) Attribution: tatoeba.org #324758 (CK) & #2052135 (Gustav249) +Tom came to the conclusion that no matter what he did, Mary wouldn't like it. 汤姆得出无论他做什么,玛丽都不会喜欢的结论。 CC-BY 2.0 (France) Attribution: tatoeba.org #1095681 (CK) & #5574702 (verdastelo9604) +Eighty percent of all information on computers around the world is in English. 全世界百分之八十電腦上的資訊都是用英語寫的。 CC-BY 2.0 (France) Attribution: tatoeba.org #271127 (CK) & #811537 (Martha) +I thought that we had found the perfect hiding place, but the police found us. 我以为我们发现了绝妙的藏身之处,但警察找到了我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #7173436 (CK) & #6563552 (gumblex) +I've had a scratchy throat since this morning. I wonder if I've caught a cold. 早上起来,嗓子变得很沙哑,我想是不是感冒了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2036561 (CK) & #3779045 (e78xx_xxx) +If it looks like an apple and it tastes like an apple, it's probably an apple. 如果看起来像个苹果而且吃起来也像苹果的话,可能就是苹果。 CC-BY 2.0 (France) Attribution: tatoeba.org #1078801 (CK) & #1438412 (asosan) +The world is just like a book, and every step you take is like turning a page. 世界就像是一本书,走一步等于翻了一页。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728183 (paper1n0) & #4515028 (yuiyu) +Today, I was supposed to study at the library but I woke up around 12 o'clock. 今天,我本打算在图书馆学习但到12点左右才醒。 CC-BY 2.0 (France) Attribution: tatoeba.org #395614 (Scott) & #5574690 (verdastelo9604) +Tom can write almost like a native speaker, but his pronunciation is terrible. Tom写作可以写的像本国人一样,可是他的发音很烂 CC-BY 2.0 (France) Attribution: tatoeba.org #1026828 (CK) & #5973396 (zhangxr91) +Tom did the best he could, but he wasn't able to get a higher grade than Mary. 汤姆尽了全力,但他还是不能获得比玛丽更高的等级。 CC-BY 2.0 (France) Attribution: tatoeba.org #1029349 (CK) & #5670792 (verdastelo9604) +As the train came to a halt, all of the passengers wondered what was happening. 当列车停止时,所有的乘客都想知道发生了什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #326154 (CK) & #1397024 (mtdot) +Charles Lindbergh made the first solo flight across the Atlantic Ocean in 1927. Charles Lindbergh於1927年成功完成了第一次獨自飛越大西洋。 CC-BY 2.0 (France) Attribution: tatoeba.org #40208 (CK) & #866177 (Martha) +His scores are always better than mine, even though he doesn't study very much. 他的分数总比我高,尽管他学习得少一点。 CC-BY 2.0 (France) Attribution: tatoeba.org #591214 (luwenzhuo) & #333649 (fucongcong) +I don't have a lot of work, but it's enough to keep me in the office this week. 其实我工作并不多,但足以让我这周在办公室里忙着了。 CC-BY 2.0 (France) Attribution: tatoeba.org #4728795 (paper1n0) & #716167 (fucongcong) +I returned the books I borrowed from the library, and I borrowed some new ones. 我还了从图书馆借的书,又借了些新的。 CC-BY 2.0 (France) Attribution: tatoeba.org #270683 (CM) & #333104 (fucongcong) +Publication of the article was timed to coincide with the professor's birthday. 文章的发表被预定在教授生日那天。 CC-BY 2.0 (France) Attribution: tatoeba.org #43314 (CK) & #791400 (fucongcong) +She's popular, not because she's beautiful, but because she's kind to everyone. 她受歡迎不是因為她的美麗,而是因為她親切地對待每個人。 CC-BY 2.0 (France) Attribution: tatoeba.org #388293 (CK) & #830367 (Martha) +The telephone operator asked the caller to hold on until a connection was made. 电话运营商提示来电人等候接通。 CC-BY 2.0 (France) Attribution: tatoeba.org #240277 (CM) & #7834250 (olia1204) +Whoever said money can't buy happiness simply didn't know where to go shopping. 那些说钱不能买来幸福的人,只是不知道上哪里去买而已。 CC-BY 2.0 (France) Attribution: tatoeba.org #7714122 (Orava) & #7774422 (jiangche) +At the time there were no native English speakers teaching in any public school. 當時沒有任何以英語為母語的人在公立學校任教。 CC-BY 2.0 (France) Attribution: tatoeba.org #328285 (fcbond) & #811792 (Martha) +Rio de Janeiro is perfectly safe as long as you stay out of the dangerous areas. 如果你远离危险区域,里约热内卢就是完全安全的。 CC-BY 2.0 (France) Attribution: tatoeba.org #5252321 (Hybrid) & #5617310 (verdastelo9604) +She was asked to convince him to get his son or someone else to paint the house. 她被要求去说服他以让他或者他的儿子或者是别的人来粉刷屋子。 CC-BY 2.0 (France) Attribution: tatoeba.org #887541 (CK) & #1397125 (mtdot) +Tom always speaks in such a low voice that I can barely understand what he says. 汤姆总是说话声音太小,我几乎听不懂他在说什么。 CC-BY 2.0 (France) Attribution: tatoeba.org #1027157 (CK) & #7773132 (jiangche) +Even though I studied English for 6 years in school, I'm not good at speaking it. 尽管我在学校学了6年英语,我还是说不好。 CC-BY 2.0 (France) Attribution: tatoeba.org #833359 (Scott) & #5845572 (verdastelo9604) +I didn't know the city, and what's more, I couldn't speak a word of the language. 我不知道这个城市,而且我一点都不懂那里的语言。 CC-BY 2.0 (France) Attribution: tatoeba.org #254574 (CK) & #333895 (fucongcong) +The ages of the two children put together was equivalent to that of their father. 两个孩子的年龄加起来和他们的父亲相当。 CC-BY 2.0 (France) Attribution: tatoeba.org #72833 (CK) & #334751 (fucongcong) +To the man who only has a hammer in the toolkit, every problem looks like a nail. 对工具箱里只有一把榔头的人来说,所有的问题都像钉子。 CC-BY 2.0 (France) Attribution: tatoeba.org #2292 (Zifre) & #811119 (fucongcong) +Tom went swimming in the river, but when he got out, his clothes had been stolen. 汤姆去河里游泳,但当他出来时,他的衣服被偷了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1635552 (Spamster) & #7771950 (jiangche) +Being a good conversationalist does not just mean being a good speaker of English. 作為一個良好的交談者,並不只意味著作一個英語說得好的說話者。 CC-BY 2.0 (France) Attribution: tatoeba.org #22335 (CK) & #811803 (Martha) +Manholes are round because that way they won't accidentally fall through the hole. 人孔是圓的,因為這樣人孔蓋就不會意外地掉進洞裡。 CC-BY 2.0 (France) Attribution: tatoeba.org #595794 (darinmex) & #919906 (Martha) +You should have known better than to take an examination without preparing for it. 你應該知道要為考試作準備。 CC-BY 2.0 (France) Attribution: tatoeba.org #15997 (Swift) & #775723 (Martha) +I've just spoken to your French teacher and he says you're doing well in his class. 我刚跟你的法语老师谈过话,他说你在课堂上表现得很好。 CC-BY 2.0 (France) Attribution: tatoeba.org #4807757 (CK) & #4815187 (McMeao) +We'll need a head hunting agency to find the right man for this executive position. 我們需要人力仲介公司幫我們找到合適的人來擔任這個管理職位。 CC-BY 2.0 (France) Attribution: tatoeba.org #58561 (CK) & #776931 (Martha) +He came back not because he was homesick, but because he was running short of money. 他不是因為想家,而是因為沒錢才回來的。 CC-BY 2.0 (France) Attribution: tatoeba.org #283511 (CK) & #1252430 (cienias) +If you want something to be done right, sometimes you've just got to do it yourself. 如果你想做对一件事,有时候你得亲力亲为。 CC-BY 2.0 (France) Attribution: tatoeba.org #1617661 (Spamster) & #3087001 (sadhen) +The company's competitive edge will be eroded if system engineers continue to leave. 如果系统工程师继续离开,公司的竞争优势将会被削弱。 CC-BY 2.0 (France) Attribution: tatoeba.org #72187 (CM) & #8743567 (slo_oth) +Why don't we stop arguing over these piddling matters and get to the issues at hand? 为什么我们不停止为细枝末节的争吵而进入正题呢? CC-BY 2.0 (France) Attribution: tatoeba.org #246313 (CM) & #5574683 (verdastelo9604) +A growing child who doesn't seem to have much energy perhaps needs medical attention. 一个成长中的孩子如果没有充足的能量,可能需要药物治疗。 CC-BY 2.0 (France) Attribution: tatoeba.org #402438 (CM) & #609909 (sarah) +All things considered, I think you should go back home and take care of your parents. 全盤考慮後,我覺得你應該回家,照顧你的父母。 CC-BY 2.0 (France) Attribution: tatoeba.org #404076 (CK) & #865394 (Martha) +In London, the police are always worried about finding a bomb on the train or subway. 在倫敦,警察總是擔心在列車上發現炸彈。 CC-BY 2.0 (France) Attribution: tatoeba.org #29285 (CM) & #5363943 (egg0073) +Ladies and gentlemen, due to an accident at the airport, our arrival will be delayed. 女士们,先生们,由于机场的意外情况,我们的着陆将被推迟。 CC-BY 2.0 (France) Attribution: tatoeba.org #32256 (CM) & #5558547 (verdastelo9604) +The number of people on Facebook is greater than the population of the United States. Facebook的用戶比美國人口還多。 CC-BY 2.0 (France) Attribution: tatoeba.org #1948397 (linguine) & #5414931 (egg0073) +Democracy is the worst form of government, except all the others that have been tried. 除了那些我们尝试过的政府形态,民主是最差的那种了。 CC-BY 2.0 (France) Attribution: tatoeba.org #1550 (Zifre) & #334439 (fucongcong) +If you could go back and start your life again, from what age would you like to start? 假如能回到过去让人生再来一遍的话,你希望能回到几岁的时候? CC-BY 2.0 (France) Attribution: tatoeba.org #1153258 (CK) & #8751010 (crescat) +At lunchtime today, our usual restaurant was closed because of a funeral in the family. 今天午餐時間,我們常去的飯館關門了,因為他們家在辦喪事。 CC-BY 2.0 (France) Attribution: tatoeba.org #242489 (CM) & #919637 (Martha) +Tom is the head of the company in name only. His son makes all the important decisions. 汤姆名义上市公司的领导。他儿子做所有重大决策。 CC-BY 2.0 (France) Attribution: tatoeba.org #4762948 (DostKaplan) & #4764569 (ryanwoo) +Tom's mother is a nurse at the hospital that's across the street from where Mary lives. 汤姆的妈妈是一名护士,她所在的医院就在玛丽住的那条街的对面。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092144 (CK) & #5091200 (mirrorvan) +Eat a live frog every morning, and nothing worse will happen to you the rest of the day. 每天早上吃一隻活青蛙, 那麼你一天中其他的時間就不會發生什麼更糟糕的事了。 CC-BY 2.0 (France) Attribution: tatoeba.org #667964 (CK) & #771977 (Martha) +I had to change clothes because what I was wearing wasn't appropriate for the situation. 我必须要换衣服,因为我现在穿的衣服不适合这个环境。 CC-BY 2.0 (France) Attribution: tatoeba.org #2331766 (CK) & #4797661 (CLARET) +Computers are certainly playing an important role in our life, whether we like it or not. 无论我们是否喜欢电脑,它在我们的生活中始终起着重要的作用。 CC-BY 2.0 (France) Attribution: tatoeba.org #240703 (CK) & #1551881 (Gustav249) +Which translation of this book do you think is better, the French one or the English one? 你觉得这本书的哪个译本比较好?法语的还是英语的? CC-BY 2.0 (France) Attribution: tatoeba.org #8462500 (CK) & #8463580 (gumblex) +Drinking lots of water is good for you, sure, but one can't drink that much water at once. 虽然喝多点水对身体有好处,但是一次性喝太多水也是不好的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1528238 (marshmallowcat) & #8688059 (crescat) +In theory, there is no difference between theory and practice. But, in practice, there is. 理论上说,理论和实践没有区别。但实践上说,是有的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1854 (TRANG) & #389790 (fucongcong) +One out of 455 women doesn't realize she's pregnant until the twentieth week of pregnancy. 455名婦女中會有一名直到懷孕第二十週前沒有意識到自己懷孕。 CC-BY 2.0 (France) Attribution: tatoeba.org #825631 (Spamster) & #827641 (Martha) +Because of its origins, Canadian English has features of both American and British English. 由於它的起源,加拿大英語具有美國英語和​​英國英語兩者的特色。 CC-BY 2.0 (France) Attribution: tatoeba.org #48763 (CK) & #811796 (Martha) +I like this picture, not just because it is famous, but because it really is a masterpiece. 我喜欢这幅画,不仅是因为它的名气,而是因为它真的是一个杰作。 CC-BY 2.0 (France) Attribution: tatoeba.org #246461 (papabear) & #349653 (fucongcong) +For the other 600 million people, English is either a second language or a foreign language. 對於其他的六億人口而言,英語不是第二語言就是外語。 CC-BY 2.0 (France) Attribution: tatoeba.org #245195 (CK) & #811916 (Martha) +Lonely people tend to be afraid of meeting others, which ensures they will always be lonely. 孤獨的人會孤獨,是因為他畏懼他人。 CC-BY 2.0 (France) Attribution: tatoeba.org #885702 (Trailsend) & #884748 (Tajfun) +That place's food is delicious and their prices are low. However, their location isn't good. 那家馆子物美价廉,美中不足的是他们糟糕的位置。 CC-BY 2.0 (France) Attribution: tatoeba.org #2494082 (CK) & #1397375 (mtdot) +When people meet, first impressions determine more than 50 percent of whatever happens next. 在人际交往中,第一印象决定着将要发生的事情内容的百分之五十以上。 CC-BY 2.0 (France) Attribution: tatoeba.org #269966 (CM) & #3086996 (sadhen) +In Japan, it rains quite a bit during our rainy season which is from mid-June until mid-July. 在日本,在我们的雨季常常下雨,雨季一般在六月中旬至七月中旬。 CC-BY 2.0 (France) Attribution: tatoeba.org #1177436 (CK) & #2030725 (ydcok) +Right now, we have blueberries, blackberries, cherries, strawberries, peaches and nectarines. 現在我們有藍莓、黑莓、櫻桃、草莓、桃子和油桃。 CC-BY 2.0 (France) Attribution: tatoeba.org #4493557 (CK) & #4504461 (egg0073) +Throughout the five years of painful cancer treatments, he managed to keep a stiff upper lip. 这五年痛苦的癌症治疗他终于坚持下来了。 CC-BY 2.0 (France) Attribution: tatoeba.org #72492 (CK) & #6330923 (yuiyu) +When we started out, our band could only find small clubs in small cities that would hire us. 当我们起步时,我们的乐队只能找小城市里的小俱乐部雇我们。 CC-BY 2.0 (France) Attribution: tatoeba.org #954630 (CK) & #5624958 (verdastelo9604) +Abraham Lincoln, the 16th president of the United States, was born in a log cabin in Kentucky. 伯拉罕·林肯,美国第16任总统,生于肯塔基州的一个简陋的小屋里。 CC-BY 2.0 (France) Attribution: tatoeba.org #241323 (CK) & #791342 (fucongcong) +For quantities of 20 or more, we can allow you a special discount of 10% on the prices quoted. 20个以上九折特惠。 CC-BY 2.0 (France) Attribution: tatoeba.org #72967 (CK) & #1397349 (mtdot) +I can't believe you are eating something the doctor has told you repeatedly you shouldn't eat. 真的不敢相信你在吃医生叮嘱不要食用的东西。 CC-BY 2.0 (France) Attribution: tatoeba.org #4779017 (garborg) & #4760026 (ryanwoo) +I think Tom is going to be pretty mad when he finds out that the painting he bought is a fake. 我觉得当汤姆发现他买来的画是赝品的时候,他会很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #1553451 (CK) & #8744617 (slo_oth) +If we were supposed to talk more than listen, we would have been given two mouths and one ear. 如果我們應該少聽多說話, 那麼我們應該得到兩個嘴巴一隻耳朵才是。 CC-BY 2.0 (France) Attribution: tatoeba.org #667974 (CK) & #771986 (Martha) +Optimists see opportunities in disasters while pessimists find disasters in every opportunity. 樂觀者在災禍中看到機會,悲觀者在機會中看到災禍。 CC-BY 2.0 (France) Attribution: tatoeba.org #2846015 (englishchinese) & #838438 (Martha) +Tom tried to return the swimsuit for a larger size, but the clerk told him that wasn't allowed. 汤姆试过还回泳衣来换成更大一号的,但是员工告诉他那是不被允许的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1092620 (CK) & #5091535 (mirrorvan) +During the Depression in the 1930's, many wealthy people lost everything in the stock market crash. 在十九世纪三十年代的大萧条时期,许多富人在股市崩盘中失去了一切。 CC-BY 2.0 (France) Attribution: tatoeba.org #73292 (CM) & #8650531 (slo_oth) +I think that Tom is going to be pretty mad when he finds out that the painting he bought is a fake. 我觉得当汤姆发现他买来的画是赝品的时候,他会很生气。 CC-BY 2.0 (France) Attribution: tatoeba.org #7168612 (CK) & #8744617 (slo_oth) +Some people clung to tree branches for several hours to avoid being washed away by the floodwaters. 为了不被洪水冲走,有的人紧紧地抱着树干长达数个钟头。 CC-BY 2.0 (France) Attribution: tatoeba.org #3671465 (patgfisher) & #3671479 (shirleyleee) +The handyman was supposed to arrive at twelve noon, but got stuck in a traffic jam for a few hours. 這個工人本來應該在中午十二點到達, 但他被交通堵塞困住了幾個小時。 CC-BY 2.0 (France) Attribution: tatoeba.org #704605 (Eldad) & #778901 (Martha) +My parents usually speak to each other in French, even though my mother is a native English speaker. 我父母通常用法语对话,即使我母亲的母语是英语。 CC-BY 2.0 (France) Attribution: tatoeba.org #4806963 (CK) & #4815197 (McMeao) +The large crowd roared in approval as Mark Knopfler played the first few bars of "Money for Nothing". 就像马克·诺弗勒早期演唱的歌曲《金钱无用》一样,绝大多数的人依然高呼赞成“金钱无用论”。 CC-BY 2.0 (France) Attribution: tatoeba.org #4313843 (patgfisher) & #4313888 (cindycute) +If you'd listen a little more carefully to what the teacher says, you'd probably be able to understand. 假如你在老师讲课的时候再集中一点去听讲的话,你应该就能弄明白了。 CC-BY 2.0 (France) Attribution: tatoeba.org #2464831 (CK) & #8765230 (crescat) +Tom's daughter pretended not to know him when he came to pick her up from school in his battered old car. 当汤姆开着他破旧的雷泽车来接女儿放学时,他的女儿假装不认识他。 CC-BY 2.0 (France) Attribution: tatoeba.org #4313860 (patgfisher) & #4313886 (cindycute) +Many conservationists fear the continuing slaughter of whales is pushing these animals towards extinction. 许多自然环境保护主义者担心持续屠杀鲸鱼正推动这些动物走向灭绝。 CC-BY 2.0 (France) Attribution: tatoeba.org #2805224 (patgfisher) & #8794840 (slo_oth) +The Japanese Parliament today officially elected Ryoutarou Hashimoto as the country's 52nd prime minister. 日本國會今天正式選舉了橋本龍太郎作為全國第52屆總理。 CC-BY 2.0 (France) Attribution: tatoeba.org #281385 (BraveSentry) & #875137 (Martha) +Last year in the Philippines, earthquakes and tidal waves resulted in the deaths of more than 6,000 people. 去年在菲律宾,地震和海啸造成了超过6000人的死亡。 CC-BY 2.0 (France) Attribution: tatoeba.org #1493945 (CM) & #5552136 (verdastelo9604) +"Is that Tom calling again?" "Yes. He calls every evening these days. I shouldn't have given him my number." “又是汤姆的电话?” “嗯。最近他每天晚上都会打过来。当时就不该给他我的号码的。” CC-BY 2.0 (France) Attribution: tatoeba.org #3054167 (WestofEden) & #8888272 (crescat) +My mother speaks French better than my father speaks English, so they usually speak to each other in French. 我母亲的法语比我父亲的英语要好,所以他们通常用法语交流。 CC-BY 2.0 (France) Attribution: tatoeba.org #4807040 (CK) & #4815196 (McMeao) +Tom didn't know how to translate the word "computer" because the people he was talking to had never seen one. 汤姆不知如何翻译“计算机”一词,因为同他谈话的人从未见过一台。 CC-BY 2.0 (France) Attribution: tatoeba.org #1094735 (CK) & #7069022 (la_kanro) +Even now, I occasionally think I'd like to see you. Not the you that you are today, but the you I remember from the past. 即使是现在,我偶尔还是想见到你。不是今天的你,而是我记忆中曾经的你。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230933 (CK) & #2567478 (fenfang557) +It's very easy to sound natural in your own native language, and very easy to sound unnatural in your non-native language. 你很容易把母语说得通顺流畅,却很容易把非母语说得不自然。 CC-BY 2.0 (France) Attribution: tatoeba.org #1907470 (CK) & #8511408 (gumblex) +I got fired from the company, but since I have a little money saved up, for the time being, I won't have trouble with living expenses. 虽然我被公司解雇了,但是我还有点存款,所以目前不用担心生计问题。 CC-BY 2.0 (France) Attribution: tatoeba.org #1334053 (CK) & #8929162 (crescat) +If a person has not had a chance to acquire his target language by the time he's an adult, he's unlikely to be able to reach native speaker level in that language. 如果一個人在成人前沒有機會習得目標語言,他對該語言的認識達到母語者程度的機會是相當小的。 CC-BY 2.0 (France) Attribution: tatoeba.org #1230633 (alec) & #1205914 (cienias) diff --git a/TRANSLATE/cmn.txt_dev_tokenized.tsv b/TRANSLATE/cmn.txt_dev_tokenized.tsv new file mode 100644 index 0000000..3f642db --- /dev/null +++ b/TRANSLATE/cmn.txt_dev_tokenized.tsv @@ -0,0 +1,2402 @@ +His mother looks young for her age . 他 媽媽 看 起來 比 實際 年齡 年 輕 . +He was laughed at in public . 他 在 众人 面前 被 嘲笑 . +Something is wrong with my watch . 我 的 手 錶 壞 了 . +Why did you open the box ? 你 為 什麼 打開 這個 盒子 ? +She came to Tokyo when she was 18 . 她 18 岁 的 时候 来到 东京 . +This year is fashions are completely different from last year is . 今年 的 时尚 潮流 完全 不同于 去年 . +Do not try my patience . 別 挑戰 我 的 耐心 . +He looked left and right . 他 左右 看 了 看 . +Give me your opinion , please . 請 給 我 你 的 意見 . +I am very happy . 我 好 高興 . +No one is listening to Tom . 没 人 听 汤姆 说话 . +I am not jealous . 我 不嫉妒 . +Has something good happened ? 發生 了 什麼 好事 嗎 ? +He was an intelligent and practical man . 他 是 聪明能干 的 人 . +You do not have to wait until the end . 你 没 必要 待 到 最后 . +Can I stay here with you ? 我 可以 和 你 一起 待 在 这儿 吗 ? +They reported seeing the incident . 他们 报告 目击 了 事故 . +Did you go to London that day ? 你 那天 去 了 倫敦 嗎 ? +I will be there right away . 我 馬 上 到 那裡 . +Certainly she is correct . 當然 , 她 是 正確 的 . +We are all at risk . 我们 都 处于 危险 之中 . +Tom took this photo . 汤姆 拍 了 这 张 照 . +I always cry when I see this picture . 当 我 看到 这 张 图片 的 时候 总是 哭 . +Wake up ! 醒醒 ! +That red sweater looks good on you . 你 穿 那件 紅色 的 毛衣 好看 . +They talked about love . 他們 談論 了 愛情 . +Will you buy something ? 你 要 买点 东西 吗 ? +I saw her enter the room . 我 看見 她 進 了 房間 . +What is your advice ? 你 有 什么 建议 呢 ? +He has visited France three times . 他 訪 問 過 法國 三次 . +I have one brother and two sisters . 我 有 一个 兄弟 和 两个 姐妹 . +I usually take a bath after dinner . 我 通常 在 晚 飯 後 洗澡 . +Please think it over . 請 考慮 一下 . +Are you thirsty ? 你 渴 吗 ? +I want the same jacket as you are wearing . 我 也 想要 和 你 身上 那 件 同样 的 外套 . +I really want to know what is going on . 我 真 想 知道 发生 了 什么 . +The car got stuck in the mud . 這輛 車陷 在 泥 裡 了 . +I am pretty sure Tom is the only one who can not do that . 我 确信 汤姆 是 唯一 不会 那么 做 的 人 . +You must be tired after such a long trip . 在 這麼 長程 的 旅途 後 你 一定 很 累 了 . +I work every day except Sunday . 我 除了 星期天 外 每天 都 上班 . +I ate Tom is sandwich . 我 吃 了 湯姆 的 三明治 . +Could you cancel my reservation ? 你 能 取消 我 的 預訂 嗎 ? +Can I sleep here ? 我 能 在 這裡 睡覺 嗎 ? +Why did you show me this ? 你 为什么 让 我 看 这个 ? +Our team lost all of its games . 我們 的 隊伍 輸 了 所有 的 比賽 . +Could you sign here ? 你 能 在 这里 签名 吗 ? +You may take either the big box or the small one . 你 可以 拿 大 的 盒子 或是 小 的 盒子 . +I can not breathe through my nose . 我 的 鼻子 没 办法 呼吸 了 . +He found me a taxi . 他 帮 我 打到 一辆 出租车 . +Would you like anything to drink ? 你 要 喝 點 什麼 嗎 ? +He began to cry . 他 开始 哭 了 . +A famous architect built this house . 一个 有名 的 建筑师 造 了 这栋 房子 . +The train passed by us . 列车 从 我们 身边 经过 . +It was time to leave . 是 时候 离开 了 . +I will call you tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +Bread is made from wheat . 麵 包 是 用 小 麥 做成 的 . +I had a good opinion of her . 我 對 她 的 評價 很 好 . +I wish I was young again . 我 希望 我 再 年輕 一次 . +You should know this . 你 該 知道 這個 . +He comes from England . 他 从 英国 来 . +Our child likes dogs , but I prefer cats . 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +I want Tom to let Mary finish . 我 希望 汤姆 让 玛丽 完成 . +Will you go on foot or by bus ? 你 要 用走 的 還 是 搭 公車 ? +We fixed that pretty quickly . 我們 很快 修好 了 . +I heard you . 我 聽 你 的 . +You look pale . You had better lie down in bed at once . 你 看上去 很 苍白 . 你 最好 立刻 去 床上 躺 会儿 . +Tom is the easy @-@ going sort . 汤姆 是 容易 相处 的 类型 . +I could not stand looking at it . 我 不能 忍受 就 這樣 看著 它 . +I can not distinguish him from his brother . 我 分不清 他 和 他 的 弟弟 . +We have five English lessons a week . 我們 一週 有 五堂 英語 課 . +What color is your new car ? 你 的 新車 是 甚麼 顏色 的 ? +Money can not buy happiness . 钱 买不到 幸福 . +Only you answered the question . 只有 你 回答 了 这个 问题 . +There are many slums in Mexico . 在 墨西哥 有 很多 貧民窟 . +I will teach you to play chess . 我 會 教 你 下棋 . +You need to go . 你們 得 走 了 . +Thank you for coming to meet me . 謝謝 你 來 接 我 . +Tom told me to take good care of myself . 汤姆 告诉 我 要 照顾 好 我 自己 . +You have been had . 你们 被 骗 了 . +I have had enough of your excuses . 你 给 我 的 理由 够 多 了 . +How was your exam ? 考得 如何 ? +They make frequent trips to Europe . 他們 經常 去 歐洲 . +You must send for the doctor . 你 必須 派 人 去 請 醫生 來 . +Phoenix is the capital of Arizona . 鳳凰城 是 亞利 桑那州 的 首府 . +This problem is worth discussing . 這個 問題 是 值得 討論 的 . +He dipped his spoon into the soup . 他 把 他 的 湯匙 浸入 湯裡 . +Bring me something to eat . 給 我 東西 吃 . +Please enjoy yourself at the dance . 請 盡 情地 跳舞 . +They must have made a mistake . 他們 一定 是 犯 錯 了 . +He often laughs at his own jokes . 他 常常 因 他 自己 的 笑話 而 笑 . +How much are you paying Tom ? 你 给 汤姆 多少 钱 ? +Tom should hear about this . 汤姆 应该 听说 这个 . +Listen to me , OK ? 聽 我 說 , 好 嗎 ? +I burned the paper . 我 燒 了 紙 . +I do not like the taste of onions . 我 不 喜歡洋蔥 的 味道 . +It is a nice view from here . 从 这儿 看 景色 很美 . +We soon caught up with them . 我們 很快 就 追上 了 他們 . +How horrible ! 真糟糕 ! +She described him as a detective . 她 把 他 形容 为 侦探 . +At this point , he arrived . 在 這 時候 , 他 到 了 . +Are you familiar with the rules of soccer ? 你 對 足球 規則 熟悉 嗎 ? +Do not talk about it in my mother is presence . 我 妈 在 的 时候 别 讨论 这件 事 . +Tom is not feeling very well . 湯姆 感覺 不太好 . +He painted a picture of a dog . 他 畫 了 一幅 狗 的 畫 . +I will show you to the station . 我 會 告訴 你 去 車站 的 路 . +I like this color as well . 我 也 喜歡 這 顏色 . +This dog is a mongrel . 這 隻 狗 是 雜 種 狗 . +He became a pianist . 他 成為 了 一個 鋼 琴家 . +She finally made it . 她 終 於 做到 了 . +Tom seems to be an honest man . 汤姆 似乎 是 个 诚实 的 人 . +How are you feeling ? 你 感觉 如何 ? +I think maybe Tom was right . 我 認為 湯姆 可能 是 對 的 . +Tom applauded . 湯姆 拍 了 手 . +She had the nerve to speak out . 她 竟敢 說 出來 . +He tends to lie . 他 企图 说谎 . +Would you leave the door open , please ? 請 你 讓 門 開著 好 嗎 ? +Children can not swim in this river . 小孩儿 不能 在 这条 河里 游泳 . +He has a big family . 他 有个 大家庭 . +I know it is hard . 我 知道 它 有 困難 . +We should cancel the hike . 我們 應該 取消 這次 遠足 . +There was a light rain yesterday . 昨天 下 小雨 . +He described the incident in detail . 他 詳細 地 描述 了 事故 . +He is eager to go there . 他 渴望 去 那里 . +Make your choice . 做出 您 的 選擇 . +The boy did not change his opinion . 這個 男孩 沒有 改變 他 的 意見 . +You look surprised . 你 看起来 很 吃惊 . +The meeting will take place next Sunday . 会议 将 在 下 周日 召开 . +When Tom found out about that , he was furious . 当 汤姆 发现 这件 事时 , 他 很 生气 . +Under no circumstances must you leave the room . 在 任何 情況 下 你 都 不能 離開 這個 房間 . +I can not believe it ! 我 没法 相信 ! +She is my best friend . 她 是 我 最好 的 朋友 . +How do I get to Chinatown ? 我 該 怎麼 去 唐人街 ? +Waiter , please bring me some water . 服務 生 , 請 給 我 一些 水 . +I do not have a computer at home . 我家 没有 电脑 . +I think Tom is cheating . 我 觉得 汤姆 有 外遇 . +He made friends with her in America . 他 與 她 在 美國 成為 朋友 . +I thought that you wanted to see me . 我 以为 你 想见 我 呢 . +I plan to break up with her . 我 打算 與 她 分手 . +There is an apple on the desk . 桌上 有个 苹果 . +You need to put more water in the vase . 你 需要 往 花瓶 里加 更多 的 水 . +Can you tell wheat from barley ? 你 能 辨别 小麦 和 大麦 吗 ? +Are you doing what you think is right ? 你 在 做 你 覺得 對 的 事 嗎 ? +Let is take a walk in the park . 讓 我們 在 公園 裡 散步 吧 . +You look pale today . 你 今天 看上去 很 苍白 . +He was in America at that time . 他 當時 在 美國 . +I only wanted to forget . 我 只 想 忘记 . +Does it hurt a lot ? 很痛 嗎 ? +London was bombed several times . 倫敦 被 轟炸 過 許 多次 . +You do not need to be afraid of making mistakes . 你们 不 需要 害怕 犯错 . +I do not mind if it is hot . 辣 点儿 没关系 . +However hard I try , I can not do it any better than she can . 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Has he come yet ? 他 已经 来 了 吗 ? +The station is two miles away . 車站 離 這裡 兩 英里 遠 . +I know everyone here . 我 認識 這裡 的 每個 人 . +I have some good news for you . 我 有 好消息 要 告訴 你 . +We lost the game . 我们 比赛 输 了 . +Do you want some more tea ? 您 想 再 来 点 茶 吗 ? +Will you wait a moment ? 麻煩 您 稍 待 一下 . +He loves trains . 他 喜歡 火車 . +This is the window he broke . 他 砸坏 的 是 这 扇 窗 . +A little learning is a dangerous thing . 一知半解 很 危險 . +Put the eggs into the boiling water . 把 蛋 放入 沸水 中 . +Honesty is the primary reason for his success . 誠實 是 他 成功 的 主要 原因 . +May I eat that cake ? 我 可以 吃 那个 蛋糕 吗 ? +I am the captain of this ship . 我 是 這 船 的 船長 . +I have lost my umbrella . 我 丢 了 我 的 伞 . +Wait for me in the car . 在 车里 等 一下 . +He has been dead for three years . 他 去世 三年 了 . +You are a good leader . 你 是 個 好 的 領導人 . +I did not tell the whole truth . 我 沒 把 真相 全 告訴 你 . +I had no idea there 'd be this many people here . 我 没想到 这里 有 这么 多 人 . +That is what Tom wanted . 那 就是 汤姆 想要 的 . +I wish I could figure out how to delete my Facebook account . 我 希望 我 能 知道 如何 刪除 我 的 Facebook 帳號 . +Tom wants to know what we are doing here . 湯 𡡡 想 知道 我們 在 這裡 做 甚麼 . +Do you know the concert schedule of London Symphony Orchestra ? 你 知道 伦敦 交响乐团 的 演奏会 行程 吗 ? +I ripped the envelope open . 我 撕开 了 信封 . +Life in prison is worse than the life of an animal . 监狱 生活 比做 畜牲 还 不如 . +After she had read the letter , she tore it to pieces . 看 了 信 之 後 , 她 把 它 撕成 碎片 . +I do not laugh very often . 我 不常 笑 . +He has been waiting for an hour . 他 已經 等 了 一個 小 時 . +Is that a picture of me ? 那 是 我 的 照片 嗎 ? +Do you remember ? 你 记得 吗 ? +Put your hands up ! 把手 举 起来 ! +You should be more reasonable . 你 应该 更 明智 一点 . +I asked him if he knew her address . 我 问 他 是否 知道 她 的 住址 . +These oranges are very sour . 這些 橘子 很酸 . +He is eating an apple . 他 正 吃著 一個 蘋果 . +He sang a song . 他 唱 了 一首歌 . +I will buy a watch for my son . 我 将 给 儿子 买块 手表 . +Would you pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +There are some apples in the basket . 籃子 裡 有 一些 蘋果 . +She has never been to Hokkaido . 她 從未 去過 北海道 . +The contract was signed . 契約 簽訂 了 . +His way of thinking is very childish . 他 的 思維 方式 很 幼稚 . +He is the oldest son . 他 是 最 年长 的 儿子 . +Tom says he can communicate with the dead . Tom 说 他 可以 通灵 . +I have two daughters and two sons . 我 有 兩個 女兒 和 兩個 兒子 . +I found it difficult to read the book . 我 发现 读 这 本书 很 难 . +Tom looked for his pen . 湯姆 找 他 的 鋼筆 . +I owe him 1,000 dollars . 我 欠 他 1000 美元 . +Would you please tell me the way ? 請 你 告訴 我路 怎麼 走 好 嗎 ? +All that glitters is not gold . 發光 的 未必 都 是 金子 . +I did not think that Tom would be scared . 我 没想到 汤姆 会 害怕 . +The man you saw yesterday is my uncle . 你 昨天 看到 的 那个 男人 是 我 叔叔 . +My father insisted on our waiting for the train . 我 的 父親 堅持 要 我們 等 火車 . +Tom told me that Mary is leaving tomorrow . 汤姆 和 我 说 明天 玛丽 会 离开 . +A growing child who does not seem to have much energy perhaps needs medical attention . 一个 成长 中 的 孩子 如果 没有 充足 的 能量 , 可能 需要 药物 治疗 . +You 'd better not wait here . 你 最好 不要 在 這裡 等 . +We have a party tomorrow evening . 明天 晚上 我們 有 一個 派 對 . +Who wrote these poems ? 这些 诗 的 作者 是 谁 ? +He has little confidence in himself . 他 對 自己 沒有 多少 信心 . +I am just looking around . 我 只是 到 處 看看 . +She hates green peppers . 她 討厭 青椒 . +We have a 20 % share of the market . 我们 的 市场占有率 为 20 % . +When did you get to London ? 你 什麼 時候 到 倫敦 的 ? +You never get my jokes . 你 从来不 明白 我 的 玩笑 . +Will you tell me why you like her ? 你 能 告诉 我 你 为什么 喜欢 她 吗 ? +The store is closed Mondays . 商店 周一 关门 . +Tom is parachute did not open . 湯姆 的 降落 傘 沒有 打開 . +I am here on business . 我 在 這裡 出差 . +Her red dress made her stand out . 她 的 紅色 禮服 使 她 引人注目 . +He read a book written in English . 他 讀 了 一本 用 英文 寫 的 書 . +The world is just like a book , and every step you take is like turning a page . 世界 就 像是 一 本书 , 走 一步 等于 翻 了 一页 . +I think Tom would be pleased . 我 認為 湯姆 會 高興 . +Do you like shopping ? 你 喜歡 購物 嗎 ? +Stop grumbling . 停止 发牢骚 吧 . +The buses run every ten minutes . 公共 汽車 每 10 分鐘 一班 . +Our refrigerator is out of order . 我們 的 冰箱 壞 了 . +I do not plan to stay for very long . 我 沒有 打算 停留 太久 . +I hope I will have a chance to see you next time I am in New York . 希望 下次 我 在 纽约 还 可以 有 机会 见到 你 . +I will act as a guide for you . 我 为 你 充当 导游 . +I saw Tom almost every day last week . 我 上周 幾乎 天天 見 到 湯姆 . +Tom , I want to talk to Mary . 汤姆 , 我 想 跟 玛丽 谈话 . +Tom found a job in Boston . 汤姆 在 波士顿 找 了 份 工作 . +Fresh fruit is good for your health . 新鲜 的 水果 对 你 的 健康 有益 . +You have lovely eyes , do not you ? 你 有 一雙 可愛 的 眼睛 , 不是 嗎 ? +She did not go far . 她 没有 走 远 . +I do not remember any of it . 我 对 这些 都 没有 印象 . +I got up at five that morning . 那天 早上 我 五點 起床 . +Tom is thirty years old . 汤姆 今年 三十岁 . +He is two years older than me . 他 比 我 大 两岁 . +Please put your shoes on . 請 穿 上 你 的 鞋子 . +He likes playing football . 他 喜歡 踢足球 . +Who invited you guys ? 誰 邀請 了 你們 ? +Wipe the pan dry with a paper towel . 用 纸巾 把 平底锅 擦干 . +I have a dream . 我 有 一个 梦想 . +I do not see any bullet holes . 我 没 看见 什么 弹孔 . +My sister married a doctor . 我 妹妹 嫁给 了 一个 医生 . +What should I look for ? 我 应该 寻找 什么 ? +I like singing with Tom . 我 喜欢 跟 汤姆 唱歌 . +He is very sensitive . 他 很 敏感 . +He is unsatisfied with the result . 他 对 结果 不 满意 . +He can read well . 他 能 讀 得 很 好 . +He was brought up by his uncle . 他 被 他 的 叔叔 撫養 長大 . +Tom graduated . 湯姆 畢業 了 . +Playing cards is a popular pastime . 打牌 是 一種 流行 的 消遣 方式 . +I want to buy something to eat . 我 想 買 點 東西 吃 . +I can not understand his feelings . 我 不 明白 他 的 感受 . +They made their way toward the town . 他們 往 小鎮 方向 去 了 . +How high is Mt . Fuji ? 富士山 有 多 高 ? +Do you want to eat out tonight ? 你 今晚 想 出去 吃 嗎 ? +She prefers beer to wine . 她 喜欢 啤酒 胜过 葡萄酒 . +You have to learn standard English . 你 必须 得学 标准 英语 . +May I have something hot to drink ? 我 可以 喝 一點 熱 的 東西 嗎 ? +Get away ! 滾 ! +Get up early in the morning . 早上 要 早起 . +I will never force you to marry him . 我 永遠 不 會 逼 你 跟 他 結婚 . +The date of the festival coincides with that of the exam . 节日 和 考试 碰巧在 同一天 . +Tom asked Mary where she 'd put the key . 湯姆問 瑪麗 她 把 鑰匙 放在 哪裡 了 . +I can not decide if I am happy or sad . 我 无法 确定 我 是 高兴 还是 难过 . +I need to go to the bathroom . 我 要 去 廁所 . +That was not very good . 那 不太好 . +Is Tom around ? 汤姆 在 吗 ? +Even though he has a lot of money , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +" Does he like music ? " " Yes , he does . " " 他 喜歡 音樂 嗎 ? " " 是 的 , 他 喜歡 . " +There are plenty of fish in this river . 这 条 河里 有 很多 鱼 . +It is my turn to drive next . 下次 该轮 到 我 开车 了 . +I can not lend you any money . 我 不能 借 你 任何 錢 . +I can hope for a miracle , can not I ? 我 能 期待 奇迹 , 不能 吗 ? +I think you look like Tom . 我 看 你 长 得 像 汤姆 . +I often go sailing on weekends . 我 經常 在 週末 去 航海 . +You must do it yourself . 你 应该 自己 做 . +She was born last year . 她 去年 出生 . +I do not want to be friends with you . 我 不想 跟 你 交朋友 . +Where in Austria did you grow up ? 你 在 奧 地利 的 什麼 地方 長大 ? +Please kill the lights . 请 关灯 . +Parking is prohibited here . 此处 禁止停车 . +We left home early in the morning . 我們 早上 很 早就 離 開家 了 . +I have a lot of homework to do . 我 有 很多 作业 要 做 . +We were faced with an unusual situation because of the accident . 那场 事故 让 我们 陷入 了 不 寻常 的 局势 . +Tom is not old . 湯姆 不 老 . +The calculator on the table is mine . 桌上 的 计算器 是 我 的 . +Nobody knows why . 沒人 知道 為 什麼 . +Stop that ! 住手 . +He said that he gets up at 6 o 'clock every day . 他 说 他 每天 早上 六点 起床 . +This is what I can do for you . 这 是 我 能 为 您 做 的 . +Smoking is bad for your health . 吸煙 對 你 的 健康 不好 . +My uncle gave me his car . 我 叔叔 給 了 我他 的 車 . +He has a wonderful personality . 他 有 一個 很好 的 性格 . +I noticed that she was wearing new glasses . 我 注意 到 她 戴 着 新 眼镜 . +Where should we go ? 我們 應 該 去 哪裡 ? +Could you put this report into Italian for me ? 你 可以 為 我 把 這份 報告 翻譯 成 意大利文 嗎 ? +He makes his living by singing . 他 以 唱歌 為 生 . +Tom needs the money right away . 湯姆 現在 就 需要 錢 . +Everybody saw it . 每個 人 都 看見 了 . +Money is the root of all evil . 金 錢 是 一切 罪惡之源 . +Onions cook more quickly than potatoes . 洋蔥 比 馬鈴薯 快熟 . +All of the dogs were alive . 所有 狗 都 活着 . +Tom folded the paper before handing it to Mary . 在 传给 玛丽 之前 , 汤姆 把 纸条 折 了 起来 . +Your face is familiar to me . 我 對 你 的 臉 很 熟悉 . +This chair is really comfortable to sit on . 这个 椅子 坐 着 真 舒服 . +They all have come . 他们 全都 来 了 . +Some people pursue only pleasure . 有些 人 只 追求 快乐 . +Tell me which you want . 告訴 我 你 想要 哪個 . +Nothing is more valuable than friendship . 沒有 比 友情 更 有 價值 的 東西 . +Oh , really ? 噢 , 真的 嗎 ? +Are you referring to me ? 你 在 说 我 吗 ? +I have already eaten lunch . 我 已經 吃 過 午餐 了 . +All essays must be handed in on time . 所有 文章 都 必须 在 规定 时间 内 交上来 . +I have to get to the hospital . 我 得去 医院 . +He managed to get home before dark . 他 設法 在 天黑 前 回家 . +How much does this pen cost ? 這 支筆 多少 錢 ? +His quick temper will get him in trouble one day . 他 的 急 脾气 迟早会 惹祸上身 . +Some people clung to tree branches for several hours to avoid being washed away by the floodwaters . 为了 不 被 洪水 冲走 , 有 的 人 紧紧 地 抱 着 树干 长 达 数个 钟头 . +I have a laptop . 我 有一 臺 筆 記 本 電 腦 . +I admire you . 我 欣赏 你 . +I want to take a bath . 我 要 洗澡 . +What else can this do ? 这 还有 什么 能 做 的 ? +Is this the key you are looking for ? 这 是 你 找 的 钥匙 吗 ? +Spring is my favorite season . 春天 是 我 最 喜爱 的 季节 . +He is the father of three children . 他 是 三个 孩子 的 父亲 . +He wrote this book at the age of twenty . 他 在 20 岁 的 时候 写 了 这 本书 . +What do you think of it ? 你 觉得 怎么样 ? +I am sorry , but it is just not possible . 我 很 抱歉 , 但 它 就是 不 可能 的 . +I am a good boy . 我 是 一个 好 男孩 . +Could you introduce me to a lawyer ? 你 能 幫 我 介紹 一名 律師 嗎 ? +The baby caught sight of my ballpoint pen and reached out for it . 這個 嬰兒 盯著 我 的 原子 筆 看 , 並且 伸手 要 拿 它 . +In addition to English , he can speak French . 除了 英语 , 他 还 会 说 法语 . +I will find you your lost ring . 我会 找到 你 丢失 的 戒指 . +I have to repair the refrigerator . 我 要 修 冰箱 . +I am reading a novel by Sidney Sheldon . 我 在 讀 一本 西德尼 謝爾頓 寫 的 小 說 . +We really appreciate their effort . 我们 真的 感激 他们 的 努力 . +Do you drink a lot of milk ? 你 喝 很多 牛奶 吗 ? +Where does he want to go ? 他 想 去 哪裡 ? +You are such an idiot ! 你 真是 個 傻瓜 ! +I am afraid that I differ with you on this point . 恐怕 就 这点 上 , 我 和 你 持 不同 意见 . +I bought this yesterday . 昨天 我 買 了 這個 . +It is my duty to help you . 帮助 你 是 我 的 责任 . +He lied to my face . 他 在 我 面前 撒谎 . +She is practicing English so she can get a better job . 她 練習 英語 以 找 更好 的 工作 . +She can not ride a bicycle yet . 她 還 不 會 騎 腳 踏 車 . +My grandmother can not see very well . 我 的 祖母 無法 看 得 很 清楚 . +He finally decided to get married . 他 最终 决定 结婚 . +What happened to you last night ? 昨晚 你 發生 了 什麼 事 ? +Let is see if Tom knows what to do . 让 我們 看看 湯姆 知不知道 該 做 甚麼 . +I have got wine . 我 有 酒 . +Which do you prefer , rice or bread ? 你 比較 喜歡 哪 一個 , 米 飯 還 是 麵 包 ? +I started learning Chinese last week . 我 上周 开始 学 中文 了 . +I will never do this again . 我 永遠 不 會 再 這樣 做 . +Tom kept me waiting all afternoon . Tom 让 我 等 了 一 下午 +We are getting a new car next month . 下个月 我们 会 有 辆 新车 . +UN stands for the United Nations . UN 代表 聯合國 . +I am going to study harder . 我 決定 更 努力 讀書 . +Tom forgot to buy toothpaste . 湯姆 忘 了 買 牙膏 了 . +What are you laughing at ? 在 笑 什么 呢 ? +This is a good newspaper , is not it ? 这 是 份 好 报纸 , 不是 吗 ? +I felt like I was dead . 我 感觉 好像 死 了 一样 . +He has no reason to be late . 他 迟到 没有 理由 . +You were considerate not to disturb us . 你 考虑周到 , 没有 打扰 我们 . +No , thank you . I am full . 不 , 謝謝 你 . 我 吃 飽 了 . +Since my mother was sick , I stayed home from school . 既然 母亲 病 了 , 我 就 待在家里 没 去 上学 . +Do not ask her any questions about her marriage . 不要 問 她 任何 有關 婚姻 的 問題 . +How long does the airport bus take to the airport ? 乘 机场 大巴 去 机场 要 多久 ? +He must be the principal . 他 一定 是 校長 . +That was an excellent putt . 那 是 一個 很棒 的 推桿 . +Please find me my wallet . 请 帮 我 找 一下 我 的 钱包 . +He will survive . 他 會 倖 存 . +A bicycle will rust if you leave it in the rain . 如果 你 把 自行 車 留在 雨 中 , 它 會 生 鏽 的 . +Tom became a minister . 汤姆 当上 了 部长 . +I do not think that we should go with Tom . 我 认为 我们 不 应该 跟 汤姆 一起 走 . +His observations are sharp , but he does not say much . 他 的 觀察 是 敏銳 的 , 但 他 沒 有 說 太 多 . +The boy made fun of the girl . 這個 男孩 取笑 了 這個 女孩 . +Close your eyes , and count to ten . 閉上 你 的 眼睛 , 然 後 數 到 十 . +Please continue . 请 继续 . +Tom did not tell me the truth . 湯姆 沒有 告訴 我 實話 . +This chair is ugly . 這 把 椅子 很 醜 . +I swear I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +Everyone knows Bell invented the telephone . 任何人 都 知道 贝尔 发明 了 电话 . +Pretend you are me . 假装 你 是 我 . +I wonder if a third world war will break out . 不 知道 第三次 世界大战 会 不会 爆发 . +I am repairing the washing machine . 我 在 修 洗衣 機 . +The Japanese military forces seemed too strong to stop . 日本 军队 看来 强大 得 不可 阻挡 . +What is in this bag ? 這個 袋子 裡 是 什麼 ? +Keep on working . 繼續 工作 ! +Tom told me that his father had passed away . 汤姆 告诉 我 他 父亲 去世 了 . +We are friends . 我們 是 朋友 . +I do not go in for that sort of thing . 我 讨厌 那种 事 . +Who is the secretary ? 谁 是 秘书 ? +That accident was due to his carelessness . 那 事故 是 他 的 粗心 导致 的 . +A brass band is marching along the street . 一个 管弦乐团 沿着 路 前进 +Tom typed in the password . 湯姆 輸入 密碼 . +Does anyone here know where Tom lives ? 這裡 有人 知道 湯姆 住 在 哪裡 嗎 ? +His modesty is worth respecting . 他 的 謙遜 值得尊敬 . +Tom told me that he has no intention of marrying you . Tom 告诉 我 他们 有 想要 娶 你 的 想法 . +Is Tom there ? 汤姆 在 吗 ? +This is where I want to live for the rest of my life . 這裡 是 我餘 生想待 的 地方 +He likes listening to the radio . 他 喜歡 聽 收音 機 . +His plan was discarded . 他 的 计划 被 驳回 了 . +He still loves her . 他 仍然 爱 着 她 . +I got injured in the traffic accident . 我 在 這場 交通 意外 中 受 了 傷 . +The lock is broken . 锁坏 了 . +Dog is man is best friend . 狗 是 人类 最好 的 朋友 . +I will wait for my sister here . 我 會 在 這裡 等 我 姊姊 . +When is your bedtime ? 你 什么 时候 睡觉 ? +I bought a bottle of salad oil . 我 買 了 一瓶 沙拉油 . +You should tell him the truth . 您 该 告诉 他 真相 . +I do not know what Tom got . 我 不 知道 湯姆 拿到 了 甚麼 . +Mary spoke Japanese slowly . 瑪麗日語 說 得 很慢 . +I did not do it alone . 我 没有 独自 做 . +The whole process will take months . 整个 过程 需要 耗费 数月 . +The storm has died down . 暴风雨 平息 下来 了 . +Tom is not very good at speaking French . 湯姆 說 法語 不太好 . +Could you get me some tea ? 你 能 給 我 來 點 茶 嗎 ? +Are you saying that I killed Tom ? 你 是 说 是 我 杀 了 汤姆 吗 ? +I do not have classes today . 我 今天 沒課 . +Do you want to go , too ? 你 也 要 去 嗎 ? +We are doing the best we can . 我们 尽力而为 . +I think you understand me . 我 认为 你 了解 我 . +I bet he does not make it . 我 打赌 他 没 搞定 . +I met a friend . 我 遇见 一个 朋友 . +There was widespread panic after the earthquake . 地震 後 人 們 普遍 覺得 恐慌 . +Tom has a good memory . 湯姆 有 好 的 記憶力 . +He does not need to work . 他 不 需要 工作 . +You may think those shoes are in fashion , but they are not . 你 可能 認為 那些 鞋子 很 時 髦 , 但是 他們 不是 . +Do not be cruel to animals . 不要 虐待 动物 . +Where are you going to take me ? 你們 要 帶 我 去 哪 ? +We went out for a walk after dinner . 我们 在 吃 过 晚餐 后 出去 散步 了 . +He is my younger brother . 他 是 我 弟弟 . +I would like to know the phone number of the nearest American Express office . 我 想 知道 最近 的 美國 運通 辦事處 的 電話 號碼 . +Tom did not give an explanation . 汤姆 没 做 解释 . +These figures do not add up . 这些 数字 总数 不符 . +She prepares wholesome meals for her family . 她 为 她 的 家人 准备 健康 餐 . +He is absorbed in the study of linguistics . 他 沉迷于 语言学 的 研究 . +No one knows why . 沒人 知道 為 什麼 . +" When will you be back ? " " It all depends on the weather . " “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +You do not need to worry about such a thing . 你 不必 擔心 這樣 的 事情 . +There is a doghouse in the yard . 院子 里 的 是 狗 屋 . +I have never been to Europe . 我 从没 去过 欧洲 . +How did you get to know Mary ? 你 怎麼 認識 瑪麗 的 ? +I am too busy to go . 我 太 忙 了 不能 去 . +Which is larger , Japan or England ? 日本 和 英格兰 哪个 大 ? +This is a good place to pitch a tent . 这 是 搭帐篷 的 好 地方 . +I must return home within a week . 我 得 要 在 一週 內 回家 . +What to do next is the question . 問題 是 下 一步 要 做 什麼 . +You are old enough to know better . 你 年龄 足够 大 了 , 该 了解 更多 . +A panel of experts discussed the plan . 一個 專 家小 組討 論 這個 計劃 . +She is my daughter . 她 是 我 女儿 . +I would like to see a doctor . 我 想 看 醫生 . +Do you like my new haircut ? 你 喜欢 我 的 新发型 吗 ? +I made other plans . 我 另 有 计划 . +Tom is Japanese is improving little by little . 湯姆 的 日語 一點 一點 地 漸漸 進步 中 . +Have you still not finished paying for my bike ? 你 还 没有 为 我 的 自行车 付 完款 吗 ? +They have nothing to eat . 他們 沒有 東西 吃 了 . +Back off ! 往 后退 点 . +I am happy to see you here . 我 很 高興 在 這裡 看到 你 . +Which book is yours ? 哪 本 是 您 的 書 ? +As the train came to a halt , all of the passengers wondered what was happening . 当 列车 停止 时 , 所有 的 乘客 都 想 知道 发生 了 什么 . +My mother was disappointed by my failure . 我 的 母亲 对 我 的 失败 感到 失望 . +It is going to rain very soon . 很快 就要 下雨 了 . +Well done ! 干 的 好 ! +He is my new friend . 他 是 我 新交 的 朋友 . +Open the door , please . 請 把 門 打開 . +I cleared the table . 我 清理 了 桌子 . +I do not have a bicycle . 我 沒有 腳踏車 . +She can swim as fast as her brother . 她 能 和 她 哥哥 游得 一樣 快 . +I cut a branch from the tree . 我 從 樹上 砍下 了 一根 樹枝 . +Stop talking and listen to me . 別 說 話 , 聽 我 說 . +Stay sharp . 保持警惕 . +I will pay you back next week . 我 下週 去 還 你 錢 . +She began to like him right away . 她 立刻 開始 喜歡 他 了 . +Keep smiling . 保持 微笑 . +That bridge is very beautiful . 那 座 橋 很漂亮 . +We graduate from high school at eighteen . 我們 在 十八 歲 的 時候 從 高中 畢業 了 . +Tom added both his and Mary is name to the list . 汤姆 将 他 自己 和玛丽 的 名字 添加 到 了 名单 上 . +The man and his wife helped each other . 这 男人 和 他 妻子 互相帮助 . +We saw many ships in the harbor . 我們 在 港口 裡 看到 了 許多 船 . +I am free now . 我 现在 有空 了 . +You have done very well . 你 做 得 很 好 . +Even now , I occasionally think I would like to see you . Not the you that you are today , but the you I remember from the past . 即使 是 现在 , 我 偶尔 还是 想 见到 你 . 不是 今天 的 你 , 而是 我 记忆 中 曾经 的 你 . +Tom is cooking was actually not so bad . 湯姆 的 廚藝 其實 不 那麼 糟糕 . +I did not do anything . 我 什么 事 都 没有 做 . +Here is the change . 这 是 找零 . +Hey guys , please be quiet . 嗨 , 請 保持 安靜 . +We did not know which bus to take . 我們 不 知道 要 搭 哪 一班 公車 . +Fluency in English is a very marketable skill today . 流利 的 英語 在 今天 是 一種 十分 搶手 的 技能 . +Tom is an artist . 湯姆 是 藝術家 . +Imports exceeded exports last year . 去年 的 進口 商品 額 超過 了 出口商品 額 . +This room has air conditioning . 這個 房間 有空 調 . +I was given a nice watch by my uncle . 我 叔叔 给 了 我 一块 漂亮 的 手表 . +Because of the snow , I could not see anything . 因为 下雪 了 , 我 什么 也 没能 看见 . +He had no idea why his wife left him . 他 不 知道 为什么 他 的 妻子 要 离开 他 . +Tom has three older sisters . 汤姆 有 三个 姐姐 . +The curtains make this room beautiful . 窗帘 是 房间 变 漂亮 了 . +Tom is tired . 湯姆 累 了 . +My father objected to our marriage . 我 的 父親 反對 我們 的 婚姻 . +As soon as the bell rang , the teacher came into the classroom . 鐘聲 一響 起 , 老師 就 走進 了 教室 . +Safety is the most important thing . 安全 是 最 重要 的 事情 . +Why should it be different ? 为什么 它 应该 要 变得 不 一样 ? +The first item he bought was an alarm clock . 他 买 的 第一项 东西 是 一个 闹钟 . +Let is take a short break . 讓 我們 休息 一會兒 . +I was very hungry . 我 很 饿 . +This pen does not write well . 这 支笔 不太好 用 . +We have already won this battle . 我們 已經 贏得 了 這場 戰鬥 . +She got over the shock of her father is death . 她 從 她 父親 過世 的 震驚 中 恢 復 了 . +I was ashamed of my behavior . 我 对 自己 的 行为 感到 羞愧 . +Let is wait here till he comes back . 讓 我們 在 這裡 等 他 直到 他 回來 . +Pour melted butter over the popcorn . 將 融化 了 的 奶油 倒入 爆米花 中 . +Tom and Mary will go with me . 湯姆 和 瑪麗會 跟我走 . +That film is really interesting . 那 部 电影 很 有意思 . +The ceremony will take place tomorrow . 明天 举行 典礼 . +I do not worry so much about my resume . 我 對 自己 的 履歷 不 那麼 在意 . +A woman visited us while you were sleeping . 您 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Are you really going to London to study ? 你 要 去 伦敦 读书 是 真的 吗 ? +You must not talk to Tom . 你 绝不能 跟 汤姆 说话 . +There is a big fly on the ceiling . 有一 隻 大 蒼 蠅 在 天花板 上 . +I will sue you . 我 要 控告 你 . +You have to turn in the reports on Monday . 星期一 你 必須 繳交 報告 . +I might have forgotten my keys . 我 可能 把 钥匙 忘 了 . +She finished reading the letter . 她 看 完信 了 . +What is the theme of his latest novel ? 他 最后 一本 小说 的 主题 是 什么 ? +Tell Tom everything is fine . 告訴 湯姆 一切 都 好 . +What is the title of your new book ? 你 新書 的 書名 是 什麼 ? +Were you fat when you were in high school ? 你 在 高中 的 时候 胖 吗 ? +Give Tom a hand . 幫 湯姆 一把 . +How did you arrive at this conclusion ? 你们 怎么 得出 这个 结论 的 ? +He has gone to Hokkaido . 他 去 北海道 了 . +Tom told Mary that it would probably snow all day . 汤姆 告诉 玛丽 雪 可能 会 下 一整天 . +You are quite right . 你 說 得 很 對 . +To be always honest is not easy . 要 一直 誠實是不 容易 的 . +None of the teachers could solve the problem . 这 道 题目 没有 一位 老师 会 做 . +For what purpose did he come here ? 他 来 这里 的 目的 是 什么 ? +I am learning two foreign languages . 我 学 两种 外语 . +What are you two arguing about ? 你們 兩個 在 爭論 甚麼 ? +I have been a teacher for 15 years . 我 當 老師 已經 15 年 了 . +It has nothing to do with me . 这 不关 我 的 事 . +That would be unlikely . 那 不太可能 . +You have to hurry . 您 要 赶快 些 . +I do not want to grow up . 我 不想 长大 . +I did not even consider that . 我 甚至 沒 考慮 過 . +She was coming down the stairs . 她 下樓 . +He tried speaking French to us . 他 試圖 跟 我們 說 法語 . +You need a large vocabulary to read that book . 你 讀 那 本書 需要 大量 詞 彙 . +New Year is Day is close at hand . 元旦 就 在 眼前 . +Can you explain why you were late ? 你 能 解釋 一下 你 為 什麼 遲 到 嗎 ? +She is a complete stranger to me . 她 对 我 来说 是 一个 完全 陌生 的 人 . +She ignored all my warnings . 她 忽視 了 我 所有 的 警告 . +Did you call ? 你 打過 電話 了 嗎 ? +There is a telephone in my room . 我 的 房間 裡 有 一支 電話 . +I play tennis an hour a day . 我 每天 打 一 小时 网球 . +It looks like a duck . 它 看起 來像一 隻 鴨 子 . +Are you sure you want to do this by yourself ? 你 确定 要 自己 做 这个 吗 ? +My father is in good health . 我 父亲 身体 很 健康 . +Were you guys serious ? 你们 是 认真 的 吗 ? +It is almost six . 快要 六點 了 . +He is such a sweetheart . 他 真是 甜心 . +What is wrong with my plan ? 我 的 計畫 有 問題 嗎 ? +Tom cried for a long time . 湯姆 哭 了 很 長 時間 . +This dictionary contains about 40,000 headwords . 这本 字典 包含 了 约 4 万个 词条 . +She gets up the earliest in my family . 她 是 我家 最早 起床 的 人 . +It is no use arguing with him . 跟 他 吵 没用 . +Do you study every day ? 你們 每天 都 讀 書 嗎 ? +Short skirts are already out of fashion . 短裙 已經 不 流行 了 . +How about having dinner together ? 一起 吃 晚餐 怎麼樣 ? +I could not put up with her arrogant behavior . 我 无法忍受 她 傲慢 的 态度 . +What did you do with my glasses ? 你 把 我 的 眼鏡 怎麼 了 ? +Tom got to Boston yesterday . 汤姆 昨天 到 波士顿 . +We spent the weekend with friends . 我們 和 朋友 一起 度過 週末 . +I do not like the way she speaks . 我 不 喜欢 她 说话 的 态度 . +May I open the box ? 我 能 打开 盒子 吗 ? +The exam was divided into two parts . 考試 分為 兩個 部分 . +Do you believe ghosts exist ? 你 相信 鬼 存在 吗 ? +When are you coming home ? 你 什麼 時候 回家 ? +I promise . 我 向 你 保证 . +You should pay more attention to his warnings . 你 應 該 多 注意 他 的 警告 . +It is OK to eat the rest of the cake if you want . 你 愿意 的话 , 可以 把 剩下 的 蛋糕 也 吃 了 . +She wanted to wash the dirty clothes . 她 想 洗脏 衣服 . +The bargain sale will run for three days , beginning today . 这场 减价 活动 会 持续 三天 , 从 今天 开始 . +I like my job very much . 我 非常 喜欢 我 的 工作 . +I missed the last train . 我 錯 過 了 最 後 一班 火車 . +Take the oranges out of the fridge . 把 橙子 从 冰箱 里 拿 出来 . +I contacted my parents . 我 跟 父母 联络 了 一下 . +We are leaving Japan next month . 我們 下個月 將 離開 日本 . +It might rain . 可能 要 下雨 了 . +Say hi to your father for me . 代 我 向 你 父親 問 好 . +He must be Tom is brother . 他 一定 是 湯姆 的 兄弟 . +Let is go for a walk after it stops raining . 等 雨 停 了 , 我们 去 散步 吧 . +That is against the rules . 这 违反 规则 . +He lives in the suburbs of Tokyo . 他 住 在 東 京郊 區 . +Shame on you ! 你 真 丢脸 ! +He joined the Army during the war . 他 在 戰時 参軍 . +Tom has nothing to do here . 湯姆 在 這裡 沒有 可做 的 事 . +He got off at the next station . 他 在 下 一站 下車 了 . +Please stop fighting . 請 您們 別 再 吵 了 . +Broccoli is one of the healthiest vegetables . 西蘭 花是 最 健康 的 蔬菜 之一 . +We are classmates . 我们 是 同学 . +Tom probably knows where we can get something to eat around here . 湯姆 應該 知道 這 附近 哪裡 有 東西 吃 . +How are you feeling ? 你 感觉 如何 ? +The prisoner was released . 囚犯 重獲 自由 . +The man sitting next to me spoke to me . 坐在 我 旁边 的 男人 跟 我 说话 了 . +He would not listen to my advice . 他 不肯 聽 我 的 勸告 . +Tom did not write Mary back . 汤姆 没 给 玛丽 写 回复 . +A doctor was called in right away . 醫生 立刻 被 請來 了 . +She is Tom is older sister . 她 是 Tom 的 姐姐 . +I have a special relationship with my aunt . 我 和 我 阿姨 有種 特別 的 情誼 . +She successfully got him to tell the truth . 她 成功 地 从 他 口中 得知 了 真相 . +Whether he comes or not , I will go . 不論 他 來 或 不來 , 我 都 會 去 . +Keep quiet ! 保持 安静 ! +What do you know about the CIA ? 你 知道 中央 情报局 的 什么 ? +Please lend me your knife . 請 借 我 你 的 刀 . +She is wearing the same dress that she had on yesterday . 她 穿著 跟 昨天 相同 的 衣服 . +Almost all the work is done now . 幾乎 所有 的 工作 都 完成 了 . +The sky cleared up soon after the storm . 风暴 之后 不久 , 天空 就 晴朗 起来 了 . +I tried to smile . 我 試著 微笑 . +Tom does not like Boston . 汤姆 不 喜欢 波士顿 . +Tom does not know how bad it is . 湯姆 不 知道 它 有 多 壞 . +Someday I will run like the wind . 有 一天 , 我会 跑 得 像 风 一样 快 . +She made cookies for the children . 她 為 孩子 們 做 了 餅 乾 . +I do not mind if it is a little cold . 稍微 冷 一点 没关系 . +He pretended that he was a lawyer . 他 假裝 是 一位 律師 . +Is there a service charge for that ? 要 收服 務費 嗎 ? +She stayed in the house all day . 她 整天 待 在 房子 裡 . +We all hope for peace . 我們 都 希望 和平 . +I have already been punished . 我己 經被 懲罰 了 . +How are you feeling this morning ? 你 今天 早上 感覺 如何 ? +I painted the gate blue . 我 把 大門 漆成 了 藍色 的 . +I think it is OK . 我 想 沒 關 係 . +How long would it take to swim across the river ? 游 过 这条 河 要 多久 ? +I feel very sorry for your sister . 我 對 你 姐姐 感到 非常 抱歉 . +There is no use making excuses . 借口 是 没用 的 . +Tom went home alone . 汤姆 一个 人 回家 了 . +Could you sign here , please ? 請 你 在 這裡 簽名 好 嗎 ? +That is your book . 那 是 你 的 書 . +The bus was behind schedule . 公交车 迟到 了 . +I broke my right leg . 我 摔斷 了 右腿 . +I am studying economics in college . 我 正在 大学 里 读 经济 . +I bought two bags of popcorn . 我 買 了 兩袋 爆米花 . +Years passed . 多少 年 过去 了 . +We have got what we need . 我們 得到 了 我們 想要 的 . +Ebola spreads from person to person through bodily fluids . 埃 博拉 通过 体液 在 人 与 人 之间 传播 . +I just threw up . 我 剛 才 吐 了 . +I asked Tom to open the window . 我 請 湯姆 把 窗戶 打開 . +We have had it analyzed . 我们 已经 将 它 做 了 分析 . +A group of young men were fighting . 一群 年 輕 人 在 打架 . +Tom ripped out the page . 汤姆 把 这 一页 撕掉 了 . +This old book is worth 50,000 yen . 這 本舊 書值 5 萬 日元 . +Pick up the phone . 接电话 . +He advertised his house for sale . 他 登廣 告 出售 他 的 房子 . +She is a teacher . 她 是 女 教师 . +Whose car is this ? 這輛 汽車 是 誰 的 ? +Is the water in the Black Sea actually black ? 黑海 里 的 水 事实上 是 黑 的 吗 ? +The house is burning . 這 房子 正在 燃燒 著 . +She always keeps her promises . 她 總 是 信守 承諾 . +I feel like going on a trip . 我 想 去 旅行 . +There was no one in the room . 房間 裡 沒 有人 . +He is not such a great writer and I think he knows it . 他 不是 那么出色 的 作家 我 想 他 知道 这 一点 . +All sorts of people live in Tokyo . 各式 各樣 的 人 住 在 東京 . +Tom seems very happy . 汤姆 看起来 非常 开心 . +He took out some coins . 他 拿出 了 几枚 硬币 . +What do you think he did ? 你 覺得 他 這樣 做 怎麼樣 ? +See you in two days . 后天 见 . +I have already put Tom to work on it . 我 已经 让 汤姆 去 做 它 了 . +That house is big . 那栋 房子 很大 . +Do you know how to open this box ? 你 知道 如何 打開 這個 箱子 嗎 ? +When are you going home ? 你 什麼 時候 要 回家 ? +I have to give back the book before Saturday . 我 必须 在 礼拜六 之前 把 书 还 回去 . +Do they speak French in Canada ? 他們 在 加拿大 說法語 嗎 ? +I do not like drinking . 我 不 喜欢 喝酒 . +Look at that smoke . 快 看 那個 煙 . +Is this a pen or a pencil ? 这 是 一只 钢笔 还是 铅笔 ? +My aunt made me a new skirt . 我 阿姨 做 了 一條 新 裙子 給 我 . +Ideas matter . 想法 很 重要 . +She went to the museum by cab . 她 搭計 程車 到 博物 館 . +What did you do with those books ? 你 用 那些 書 做 什麼 ? +The train is very crowded this evening . 列车 在 晚上 很挤 . +I wonder why nobody told me . 不 知道 为什么 没有 人 告诉 过 我 . +He is a tall boy . 他 是 一个 高大 的 男孩 . +Do not forget to put the fire out . 不要 忘 了 熄火 . +He pinched and scraped for many years to save money . 為了 存錢 他省 吃 儉用 了 許 多年 . +Do you want fruit juice ? 您 想要 果汁 嗎 ? +Do as you please . 你 可以 隨心 所欲 . +He has a large family to support . 他 要 撫養 一 大家 人 . +I was able to answer the question . 我 能 回答 這個 問題 . +I need to know what you know . 我 需要 知道 你 知道 的 事 . +My father is in the garden . 我 爸爸 在 花园里 . +May I ask you to close the window ? 帮 我 关下 窗 可以 吗 ? +Many people were waiting in line . 許多 人 在 排隊 等候 . +Is there anything I can do for you ? 我 能 为 您 做 些 什么 吗 ? +I was a doctor . 我 以前 是 醫生 . +I do not have any enemies . 我 没有 敌人 . +We were not at home yesterday evening . 昨天晚上 我們 不 在家 . +We had a good time playing chess . 我們 下棋 玩 得 很 開心 . +I love my grandmother very much . 我 非常 愛 我 的 祖母 . +It is up to you to decide whether we will go there or not . 我们 去不去 那儿 由 你 来 决定 . +You refused to do that , did not you ? 你 拒絕 去 做 那件事 , 不是 麼 ? +Will you show me your photo album ? 你 能 讓 我 看看 你 的 相簿 嗎 ? +I am fine . 我 很 好 . +Does not Tom have any friends ? 汤姆 没有 朋友 吗 ? +Where would you like to go next ? 你 下 一步 想去 哪裡 ? +She became drowsy after supper . 晚 飯 後 她 變得 昏昏欲睡 . +Many workers were trapped in the coal mine . 有 很多 工人 被困 在 煤矿 里 了 . +Tom recently found a good job . 湯姆 最近 找到 了 一份 好 工作 . +I heard someone call my name . 我 聽見 有人 叫 我 的 名字 . +I do not want to fail my exams . 我 不想 不及格 . +Tom looked at Mary suspiciously . 汤姆 怀疑 地 看着 玛丽 . +He took a trip to Europe . 他 去 歐洲 旅行 了 . +Tom has admitted that he was there that night . 汤姆 承认 他 那晚 是 在 那里 . +I can do it alone . 我 可以 獨自 做 . +I should have gone to bed earlier last night . 我 昨晚 应该 早点 睡觉 的 . +I can not walk . 我 走 不了 . +It is going to rain . 天 快要 下雨 了 . +The incident was etched in his memory . 这件 事 他 铭记 于 心 . +He has not actually been to America . 他 還 沒有 真正 去過 美國 . +They made me captain . 他們 讓 我 當 了 隊長 . +His store is always crowded with customers . 他 的 店 總是 擠滿 了 顧客 . +It is too hot to stay here . 太 熱 了 不能 待 在 這裡 . +How are you doing in school ? 学校 怎么样 ? +I am going to play tennis tomorrow . 我 明天 會 去 打 網球 . +We have to wash the clothes . 我们 得 洗衣服 . +Where are you going on vacation ? 你 要 去 哪裡 度假 ? +I do not think Tom understands what is going on . 我 不 認為 湯姆 知道 正在 發生 甚麼 . +Today is my sixteenth birthday . 今天 是 我 十六 歲 的 生日 . +Everybody except Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +How about tomorrow night ? 明晚 怎么样 ? +I am starting to agree with you . 我 開始 同意 你 了 . +Tom is really handsome . 汤姆 真帅 . +I am old enough to support myself . 我 年 紀夠 大 可以 養活 我 自己 . +There are more than 4,000 languages in the world . 全世界 有 超过 4000 多种 的 语言 . +Does Tom have a job ? 汤姆 有 工作 吗 ? +I am accustomed to the climate . 我 对 这 气候 习惯 了 . +He came to Japan two years ago . 他 兩 年前 來 日本 . +I will admit I am wrong . 我 承認 我 錯 了 . +Straighten up . 改邪归正 . +You should have kept it secret . 你 應該 保密 的 . +What time do you leave for school ? 你 幾點鐘 去 學校 ? +Lend me some books to read . 借 我 一些 書 看 . +I asked him to drive me home . 我 請 他 開車 送 我 回家 . +The teacher made him stay after school . 老師 要 他 放學 後 留在 學校 . +I am not one hundred percent convinced of that . 我 不是 百分之百 确定 . +He was injured in the accident . 他 在 事故 中 受傷 . +Take the road on the left . 走 左邊 的 道路 . +What we need is a little more time . 我们 就 需要 再 多一点 时间 . +I am afraid of death . 我 怕死 . +He is watching TV . 他 在 看电视 . +Someone has walked off with my pencil . 有人 偷走 了 我 的 鉛筆 . +A permit is required . 需要 准许 . +He did not think he needed their protection . 他 认为 他 不 需要 他们 的 保护 . +You are a person . 你 是 人 . +Can I have the menu again , please ? 麻煩 讓 我 再 看看 菜 單 好 嗎 ? +Our train arrived on time . 我们 的 火车 准时 来到 . +It would be nice to have a party . 开 个 聚会 很 好 . +She greeted me with a big smile . 她 面帶 大大的 笑容 向 我 招呼 . +You go to school , do not you ? 你 去 上 學 , 不是 嗎 ? +How tall are your parents ? 你 的 父母 有 多 高 ? +Keep an eye on the bags . 把 包包 看好 . +The teacher can not have said such a thing . 老师 不 可能 说 过 这样 的 事 . +She saw herself in the mirror . 她 看到 鏡子 裡 的 自己 . +I can eat anything . 我 甚麼 都 能 吃 . +Do not let opportunities pass by . 不要 让 机会 溜走 . +She sat next to me . 她 坐在 我 旁边 . +At home , we speak only French . 在 家里 , 我们 只 说 法语 . +The pain is unbearable . 疼痛 令人 难以忍受 . +Weather is pretty nice tonight . 今晚 的 天气 不错 . +He brought back several souvenirs . 他 帶回 了 一些 紀念品 . +How much is this pen ? 這 支筆 多少 錢 ? +A little walk will give you a good appetite for breakfast . 散散步 將 會 給 你 很 好 的 食 慾 吃 早餐 . +Your voice reminds me of my late grandmother . 我 的 声音 让 我 想起 了 我 已故 的 祖母 . +They say that he has been dead for two years . 他们 说 他 死 了 两年 了 . +May I see you in private ? 我們 能 私下 見 見 嗎 ? +You are still green . 你 还 年轻 . +Sit wherever you like . 你 愛 坐 哪裡 就 坐 哪裡 . +Will you lend me your bicycle ? 你 能 把 你 的 自行车 借给 我 吗 ? +We do not have any other choice . 我们 别无选择 . +The red hat goes well with her dress . 这 顶 红帽子 很 衬 她 的 裙子 . +Who wrote these two letters ? 誰 寫 了 這 兩 封信 ? +I lost my way in the forest . 我 在 树林 里 迷路 了 . +I am glad I could help you . 能够 出 一份 力 太好了 . +My uncle lives in an apartment . 我 叔叔 住 在 公寓 裡 . +All of us would like to get rid of nuclear weapons . 我們 所有 的 人 都 想 除掉 核子武器 . +They were buried in a mass grave . 他们 被 埋 在 一座 大 坟墓 里 +I do not know about the past , but now we have faxes and emails . 我 不 知道 以前 怎样 , 但 现在 我们 有 传真 和 电子邮件 . +I want a quart of milk . 我 要 一 夸脫 的 牛奶 . +I do not want to eat . 我 不想 吃 . +Tom often takes pictures with his phone . 汤姆 经常 用 手机 拍照 . +Tom decided not to wait . 汤姆 决定 不再 等 了 . +Why did not you bring your hat today ? 为什么 你 今天 没有 把 帽子 带来 ? +I spent the whole day in reading the novel . 我 一整天 都 在 看 这本 小说 . +She is two years older than you . 她 比 你 大 兩歲 . +Our fence is made of iron . 我們 的 欄杆 是 鐵 做 的 . +Tom said he was ill , which was a lie . 汤姆 说 他 病 了 , 这 是 说谎 . +She had my mother take care of the baby . 她 让 我 母亲 照顾 孩子 . +I went for a walk after breakfast . 早餐 後 我 去 散步 了 . +He arrived earlier than usual . 他 比 平常 早 一點 到 達 . +Water boils at 100 degrees Celsius . 水 在 攝 氏 100 度沸騰 . +He quickly made friends with the new boy on the block . 他 很快 便 与 小区 里 新来 的 男孩 交上 了 朋友 . +Tom was drunk . 汤姆 醉 了 . +His second son married and settled down . 他 的 第二 個 兒子 結婚 並 定居 下來 了 . +It took me three years . 它 花 了 我 三年 . +I think I am coming down with a fever . 我 覺得 我 有 點 要 發燒 了 . +Tom has a very friendly smile . 汤姆 有 很 友好 的 微笑 . +You are not supposed to be in this area . 你 不 应该 待 在 这里 . +She cried bitterly . 她 痛哭 . +There are almost no books . 幾乎 沒有 任何 書籍 . +Tom wanted to take a shower . 汤姆 想 洗 个 澡 . +It seems that you are not having a good time here . 好像 你们 在 这儿 玩 得 不 愉快 啊 . +Tom got out of the taxi . 汤姆 从 出租车 上 下来 了 . +She extended her stay by five days . 她 延長 停留 五天 . +How are we going to pay for that ? 我们 怎么 付钱 ? +You have told Tom , have not you ? 你 告诉 汤姆 了 , 没有 吗 ? +It is not funny . 这 不好 笑 . +I 'd like three of these . 这个 给 我 来 三个 . +Do you want any of these books ? 你 要 這些 書 中 的 任何 一本 嗎 ? +What are you doing now ? 你 現在 在 做 什麼 ? +I understand everything you said . 我 理解 你 所说 的 一切 . +This car is the latest model . 这辆 车 是 最新款 . +She kept me waiting for half an hour . 她 让 我 等 了 半小时 . +Tom has never been on time . 汤姆 从来 都 没有 准时 过 . +I love you , too . 我 也 愛 你 . +Please continue with your story . 请 继续 讲 你 的 故事 . +Here is a letter for you . 这 是 你 的 信 . +My teeth are not as white as I 'd like them to be . 我 的 牙齿 没有 我 希望 的 那样 白 . +They all went to the restaurant . 他們 都 去 了 這家 餐廳 . +I know the problem . 我 知道 问题 . +I eat here . 我 在 這裡 吃 . +Tom has failed . 汤姆 失败 了 . +The roses in the garden are blooming . 在 花園 裡 的 玫瑰 正盛 開著 . +" Do you speak German ? " " No , I do not . " " 你 說 德語 嗎 ? " " 不 , 我 不 說 . " +He is not the man that he was when I first knew him . 他 已经 不是 我 最初 见 他 那时 的 那个 人 了 . +I 'd like a glass of water , please . 我 要 一杯 水 , 謝謝 . +He took out his passport . 他 拿出 了 他 的 護照 . +Here is a letter for you . 这儿 有 你 的 一封信 . +I caught up with them soon . 我 很快 就 趕上 了 他們 . +I will scold him . 我 會 責備 他 . +I am afraid I must say goodbye . 恐怕 我 必須 說 再 見 了 . +I have never felt better . 我 从来 没 感觉 那么 好 过 . +" Is he right ? " " I do not think so . " " 他 是 對 的 嗎 ? " " 我 不 這麼 認為 . " +Come on , let is go . 来 吧 , 我们 一起 去 . +It rained on and off all day . 雨 斷斷 續續 地下 了 一整天 . +Sewage often pollutes the ocean . 废水 经常 污染 海洋 . +She may come . 她 可以 來 . +He witnessed the murder . 他 目睹 了謀 殺案 . +It is necessary for you to go there immediately . 你 必需 马上 去 那儿 . +You look tired . You ought to rest for an hour or two . 你 看 起來 很 累 . 你 應該 休息 一兩個 小 時 . +We picked flowers in the garden . 我們 在 花園 裡 摘花 . +Could you call me back a bit later ? 你 可以 稍 後 回電 給 我 嗎 ? +Do you know me ? 你 还 认识 我 吗 ? +I will be back by seven or eight o 'clock . 我会 在 七八点 回家 . +Police should not take bribes . 警方 不 應該 收取 賄賂 . +Your cat scratched me . 你 的 猫 抓伤 我 了 . +I hope this is the right one . 我 希望 這 是 對 的 . +I want to buy this dictionary . 我 想 買 這 本 字典 . +They bought a box of cookies . 他们 买 了 一盒 曲奇 . +We probably do not have enough time to finish doing that today . 我们 应该 不够 时间 在 今天 之内 完成 它 . +I have not decided yet . 我 還 沒 決定 . +How about a sandwich ? 三明治 怎麼樣 ? +You have beautiful legs . 你 有着 漂亮 的 腿 . +I will do what I can to help you . 我 會 盡力 幫 你 . +They seem to have had a good time in Rome . 他們 看來 在 羅馬 過 了 些 好日子 . +Going out in this rain is out of the question . 在 雨 中 走 出去 是 不 可能 的 . +I promise I will do that tomorrow . 我 保證 明天 就 做 +I will do anything for you . 我 會 為 你 做 任何 事 . +I do not like tea . 我 不 喜欢 喝茶 . +She is lacking in common sense . 她 缺乏 常识 . +My job is to wash the dishes . 我 的 工作 是 洗碗 . +Listen to this . 聽 聽 這個 . +You may go home now . 你 現在 可以 回家 了 . +He broke up the chair for firewood . 他 摔斷 了 椅子 當 柴火 . +She and I are the same age . 她 跟 我 同年 . +Tom is buying some flowers for Mary . 汤姆 在 给 玛丽 买花 . +Mastering a foreign language involves a lot of patience . 学好 一门 外语 需要 坚韧不拔 的 毅力 . +Do you have a driver is license ? 你 有 駕駛 執照 嗎 ? +He came back from China . 他 从 中国 回来 了 . +He came back last August . 他 去年 八月 回來 的 . +That is intriguing . 那 真 有趣 . +I take a bath every other day . 我 每 兩天 洗 一次 澡 . +I can not trust you . 我 沒辦 法 相信 你 . +I wonder why they left my name off the list . 我 奇怪 他们 为什么 在 表里 把 我 的 名字 落下 了 . +It is a good question . 它 是 一個 很好 的 問題 . +I can talk about anything with my best friend . 我 能 跟 我 最好 的 朋友 說 任何 事 . +I was shocked by yesterday is news . 昨天 的 消息 讓 我 感到 震驚 . +Mary is not poor . On the contrary , she is quite rich . 玛丽 不穷 , 相反 , 她 相当 富裕 . +I work in a factory . 我 在 一家 工廠 工作 . +What is your favorite way to cook beans ? 你 最 喜歡 用 什麼 方法 煮 豆子 ? +Who hired you ? 誰 雇 了 你 ? +We will talk about this later . 我們 晚會 再 談 這事 . +The experiment was successful . 這 實驗 是 成功 的 . +He made a speech in plain English . 他 用 淺顯 的 英語 演講 . +I put it in the drawer . 我 把 它 放在 了 抽屜 裡 . +She is about the same age as me . 她 大約 跟 我 同年 紀 . +I can cook you something if you are hungry . 要是 你 饿 了 , 我 能 给 你 做饭 . +It is a quarter to three . 現在 是 兩點 四十五分 . +You have a point there . 喔 ! 你 提到 一個 重點 了 . +Look at what is happening outside . 看 外面 正在 发生 什么 . +My father has five siblings . 我 父親 有 五個 兄弟姐妹 . +She was not a very good pianist . 她 不是 一個 很好 的 鋼 琴家 . +Tom has been really busy recently . 汤姆 最近 相当 忙 . +She did not like living in the city . 她 不 喜歡 住 在 城市 裡 . +Tom became a hero . 汤姆 成 了 英雄 . +Christmas is December 25th . 聖誕節 是 12 月 25 日 . +All of my friends like soccer . 我 所有 的 朋友 都 喜歡 足球 . +I guess that she is over thirty . 我 猜 她 超過 三十 歲 了 . +I do not know anyone who matches that description . 我 不 认识 符合条件 的 人 . +He will make you eat dirt . 他 会 让 你 吃 灰 的 . +We are having dinner . 我們 在 吃 晚餐 . +How many books do you read per month ? 你 一個 月 讀 幾本 書 ? +Dust got into one of my eyes . 灰塵 鑽進 了我的一 隻 眼睛 . +I am left @-@ handed . 我 是 左撇子 . +Where is the vodka ? 伏特加 在 哪里 ? +I can not do it . 我 無法 做到 這 一點 . +I never thought it would come to this . 我 从没 想 过 它 会 变成 这样 . +Dozens are still missing . 数十 人 仍然 失踪 . +Tom would not like it . 湯姆 不 會 喜歡 它 . +Tom remained a bachelor until his death . 汤姆 终身 未娶 . +I did not go to school because I was sick . 由于 我 生病 了 , 我 便 没去 上学 . +She sang a Japanese song for us . 她 為 我們 唱 了 一首 日文 歌 . +As far as I am concerned , things are going well . 据我所知 , 事情 很 顺利 . +My head is exploding . 我 的 頭 要炸 了 . +My dream is to go to Japan . 我 的 夢 想 是 去 日本 . +Was her story true ? 她 的 故事 是 真的 吗 ? +Please give me something to drink . 請 給 我些 飲料 喝 . +Do not release that prisoner . 別 放 了 那個 犯人 . +Tom wants to speak . 汤姆 想 说话 . +Your friend is very late , is not he ? 你 的 朋友 來 得 很 晚 , 不是 麼 ? +Do you like juice ? 你 喜歡 果汁 嗎 ? +I do not accept it . 我 不 接受 . +He managed to make both ends meet . 他 設法 使 收支平衡 . +I decided to be a doctor . 我 決定 當 個 醫生 了 . +I will tell my wife . 我 會 告訴 我 的 妻子 . +I look forward to hearing your thoughts on this matter . 我 期待 听到 你 在 这件 事 上 的 想法 . +I am really sorry . I seem to have lost your umbrella . 我 真的 很 抱歉 , 我 好像 弄 丢 了 你 的 雨伞 . +This book is new . 这 本书 是 新 的 . +Let me introduce myself . 請 允許 我 自我 介紹 一下 . +I 'd like you to come back next week . 我 想 讓 你 下周 回來 . +What Tom really wanted was enough money to buy Mary some flowers . 汤姆 真正 想要 的 是 有 足够 的 钱 给 玛丽 买 一些 花 . +You need to have friends who can help you out . 你 需要 可以 幫助 你 的 朋友 . +His concert was great . 他 的 演唱 會 很棒 . +We had some chicken soup . 我們 喝 了 些 雞 湯 . +A fire broke out during the night . 在 夜間 發生 了 火災 . +I am not feeling that hungry yet . 我 感觉 还 不是 那么 饿 . +While you are young , you should read a lot . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +You will be confused . 你 會 困惑 . +It is good to see you . 见到 你 真好 . +He retired to his own room after supper . 他 在 吃 过 晚餐 后 回到 了 自己 的 房间 . +Is it OK if I go out with Tom ? 我 跟 汤姆 外出 行 吗 ? +My vision is getting worse these days . 这些 天 我 的 视力 正在 变差 . +He sent the letter back unopened . 他 把 那 封信 原封 不動 寄 回去 了 . +I know someone who might be able to help . 我 知道 有個 人 可能 能 幫 忙 . +She has been absent from school for five days . 她 已经 五天 不 上学 了 . +Tom had no children . Tom 沒有 孩子 . +Please help yourself to the fruit . 請 隨意 吃水果 . +Will you help me give out the programs to those people ? 你 能 帮 我 给 这些 人 分发 节目单 吗 ? +She patted her son on the shoulder . 她 拍拍 她 兒子 的 肩膀 . +Do not distract me while I am studying . 我 学习 的 时候 不要 打扰 我 . +I am going to be a millionaire . 我 就要 成为 百万富翁 了 . +I cry every time I watch this movie . 我 每次 看 这部 电影 都 会 哭 . +She greeted me with a smile . 她 用 一个 微笑 迎接 了 我 . +A friend in need is a friend indeed . 在 你 有 需要 的 時候 , 會 幫 你 的 朋友 才 是 真正 的 朋友 . +Stand back ! 往后 站 ! +She died of stomach cancer . 她 死 于 胃癌 . +She looks very elegant . 她 看上去 十分 优雅 . +Who planted this tree ? 谁种 了 这 棵 树 ? +Everyone in the town knows about it . 鎮 上 的 每個 人 都 知道 它 . +Tom went into the kitchen and poured himself a cup of coffee . 汤姆 进 了 厨房 , 给 自己 倒 了 杯 咖啡 . +I will pay you the money tomorrow . 我 明天 會 付錢 給 你 . +Tom had numerous girlfriends . Tom 有 很多 女友 . +When is it convenient for you ? 你 什么 时候 方便 ? +I will miss you so much . 我 會 非常 想念 你 . +This product claims to help you lose weight . 这个 产品 称 它 能 帮助 你 减肥 . +Please mail this letter for me . 請 幫 我 寄信 . +Be it ever so humble , there is no place like home . 金窝银 窝 不如 自己 的 狗窝 . +You made a wise choice . 你 做 了 一個 明智 的 選擇 . +Tom does not want to live in Boston . 湯姆 不想 住 在 波士 頓 . +Is there anyone in the room ? 屋里 有人 吗 ? +I went without food for a week . 我 一 星期 沒 帶 食物 去 . +Are you afraid of insects ? 你 怕 虫子 吗 ? +The train leaves at 6 o 'clock . 火车 6 点 出发 . +I am repairing the washing machine . 我 在 修 洗衣 機 . +He can not buy a car . 他 不能 买车 . +I have had enough of your lying . 我 听够 你 的 谎话 了 . +People from Madrid are weird . 从 马德里 来 的 人 都 很 怪 . +I am about ready . 我 快好了 . +What is this song ? I have heard it before , but I can not remember the name . 这 是 什么 歌 ? 我 以前 听 过 , 但是 我 想不起 歌名 了 . +She adores her older brother . 她 爱慕 她 哥哥 . +I arrived at school on time . 我 按时 到 了 学校 . +What is your favorite small town in Australia ? 你 最 喜欢 的 澳大利亚 的 小镇 是 哪里 呀 ? +What time are you going on duty ? 你 幾點 值班 ? +Tom told me that he was coming back . 湯姆 告訴 我他 正在 回來 . +Ca not you do something to help me ? 你 不能 做 些 事 來 幫助 我 嗎 ? +We had a lot of furniture . 我們 有 很多 家具 . +Tom pretended to not hear a thing . 汤姆 假装 没 听见 . +Do you have a cellphone ? 你 有 手機 嗎 ? +" Would you like some tea ? " " Yes , please . " “ 来 杯 茶 吗 ? ” “ 嗯 , 好 的 . ” +He went out of the room . 他 走出 了 房間 . +He stayed at his aunt is house . 他 住 在 他 舅妈 家 . +He offered his help to us . 他 向 我们 提供 了 帮助 . +I thank you with all my heart . 我 衷心感谢 您 . +She looked well when I last saw her . 上次 我 见到 她 的 时候 , 她 看上去 挺 好 的 . +The path zigzagged up the steep slope . 這條 小路 沿著 陡峭 的 斜坡 蜿蜒 而 上 . +Your prophecy has come true . 你 的 预言 成真 了 . +Tom is looking for a good job . 汤姆 在 找 工作 . +She won everything . 她 贏 得 一切 了 . +I think she is an honest woman . 我 认为 她 是 一个 诚实 的 女人 . +I am already married . 我 已婚 . +Will you show me your passport , please ? 能否 请 您 给 我 看 一下 您 的 护照 ? +He likes smoking in the toilet . 他 喜欢 在 厕所 里 吸烟 . +What are you going to do tomorrow ? 你 明天 要 做 什麼 ? +I saw them walking arm in arm . 我 看见 他们 胳膊 挽 着 胳膊 地 走路 . +She was so curious that she opened the box . 她 太 过 好奇 , 以至于 打开 了 盒子 . +This novel is too difficult for me to read . 這 本小 說 對 我 來說 太 難讀 了 . +I need my coat . 我 需要 我 的 大衣 . +Almost nobody thinks we are sisters . 几乎 没有 人 认为 我们 是 姐妹 . +I am sure that he will succeed . 我 肯定 他 会 成功 的 . +Someone stole my wallet on the train . 有人 在 火车 上 偷 了 我 的 钱包 . +Nobody gave us a chance . 没人 给 我们 机会 . +I do not see any reason why I have to apologize . 我 没 发现 任何 我 该 道歉 的 理由 . +I am glad that you have succeeded . 我 很 高兴 你们 成功 了 . +She spoke Japanese well . 她 日语 说 的 很好 . +Everybody in the building felt the earthquake . 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +Where do you study ? 你 在 哪 讀 書 ? +Give me back my wallet . 把 钱包 还 我 . +I am studying several languages . 我 在 学 几门 语言 . +Do you promise ? 你 保证 ? +Forewarned is forearmed . 凡事 豫 則 立 . +I will see you in an hour . 我 一 小时 内来 见 你 . +You are making progress . 你 在 進步 . +We saw Tom talking to Mary . 我们 看见 汤姆 跟 玛丽 说话 . +I do not know much about computers . 我 對 電腦 知道 的 不多 . +Tom is awfully sick . 湯姆 非常 虚弱 . +Do you mind if I open the window ? 你 介意 我 开窗 吗 ? +The president is difficult to approach . 总统 很 难接近 . +How long have you lived in Boston ? 你 在 波士顿 住 了 多久 ? +I would like to reserve a room in a hotel . 我 想要 订房 . +How curious ! 多 怪 啊 ! +This is really terrible . 这 真 可怕 . +What were you and Tom doing yesterday ? 你 和 汤姆 昨天 做 了 什么 ? +Help yourself to a piece of cake . 你 自己 拿 蛋糕 吃 吧 . +That gentleman usually wears a hat . 那位 紳士 經常 戴 著 一頂 帽子 . +She has a very open personality . 她 是 个 很 坦率 的 人 . +They armed themselves with guns . 他們 用槍 武裝 自己 . +Where are your things ? 你 的 東西 在 哪裡 ? +Call Tom now . 现在 给 汤姆 打电话 . +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 好意 . +Turn on the TV . 开 电视 . +I was exhausted from work . 我 工作 累死 了 . +Why is not that good ? 那 為 甚麼 不好 ? +Tom bought a dozen donuts . 汤姆 买 了 一打 甜甜 圈 . +Please come again in three days time . 请 在 三天 内 回来 . +What did you have for lunch ? 你 午饭 吃 的 什么 ? +Tom says that he does not feel like going out . 汤姆 说 他 不想 出去 . +When do you need it by ? 您 何時 需要 它 ? +We need Tom back . 我們 需要 湯姆 回來 . +It looks like Tom has a crush on Mary . 看来 汤姆 热恋 着 玛丽 . +I do not have anyone who 'd travel with me . 我 没有 一个 愿意 跟 我 一起 旅行 的 人 . +Nobody believes what I say . 没有 人 相信 我 说 的话 . +I get up at 6 : 30 on school days . 他 在 上學 的 日子 裡 6 : 30 起床 . +Tom does not have time . 汤姆 没有 时间 . +He has decided to become a teacher . 他 已經 決定 要成 為 一名 教師 . +Mary grabbed her purse and left . Mary 霸占 了 她 的 包包 并且 离开 了 . +This is a good book for children to read . 这 是 本 对 儿童 好 的 书 . +You gave me the wrong change . 你 找 錯 了 零 錢 給 我 . +English has spread all over the country . 英語 已經 普及 全國 . +He always wears dark glasses . 他 总是 带 着 黑色 眼镜 . +She began to sing . 她 开始 唱歌 了 . +I know Tom is watching me . 我 知道 湯姆 在 看着 我 . +I forgot to ask him . 我 忘记 问 他 了 . +I do not understand what you are trying to say . 我 不 明白 您 想 说 什么 . +It is a long way to the station . 到 車站 的 路程 很遠 . +I will stake my reputation on it . 我 赌 上 我 的 名声 . +He struck a match . 他 劃 了 一根 火柴 . +How are you doing ? 你們 好 嗎 ? +I do not have any other questions . 我 没有 别的 问题 了 . +What are you hiding ? 你 在 掩饰 什么 ? +Tom is probably pretty rich by now . 汤姆 现在 可能 很 有钱 . +I am sure that he will succeed . 我 肯定 他 会 成功 的 . +Is Tom sick ? 汤姆 是不是 身体 不太好 ? +He always takes sides with her . 他 總是 跟 她 站 在 同一 邊 . +He is mad about music . 他 痴迷 于 音乐 . +He was wounded in the war . 他 是 在 战争 中 受伤 的 . +I speak French every day at work . 我 每天 工作 时 都 讲 法语 . +I am in the house . 我 在家 裡 . +He has done it before . 他 以前 做 過 . +I managed to catch the last train . 我 設法 趕上 了 最 後 一班 火車 . +Those shoes will not do for climbing . 那种 鞋子 用来 登山 是 不行 的 . +I have got to go to the bank . 我 必须 到 银行 去 . +You must be kidding ! 你 一定 是 开玩笑 ! +Coffee , please . 我 要 咖啡 , 谢谢 . +I agree with you on this point . 我 同意 你 這 一點 . +What is with you ? 你 怎么 了 ? +My car is not red . It is blue . 我 的 汽車 不是 紅色 的 , 而是 藍色 的 . +I do not have a partner . 我 沒 有 夥 伴 . +Between you and me , Tom is idea does not appeal to me very much . 汤姆 的 主意 我 不 太 感兴趣 , 这个 我们 之间 说 说 就 好 . +A fool and his money are soon parted . 笨蛋 難 聚財 . +Please do not speak so fast . 请 不要 说 得 那么 快 . +You do not scare us . 你 別 嚇 我們 . +You will love it . 你 會 愛 它 . +They had a lovely time together . 他們 在 一起 很 愉快 . +Switzerland is a beautiful country . 瑞士 是 一个 美丽 的 国家 . +Neither Tom nor Mary has been losing weight . 汤姆 和玛丽 减肥 都 没减 下来 . +Do not talk rubbish . 别胡说 . +We do not think so . 我们 不 这样 认为 . +Nobody is laughing . 沒人在笑 . +The information is very important to us . 这些 信息 对 我们 非常 重要 . +I fed the dog . 我 餵 過 狗 了 . +I slipped the letter to him . 我 悄悄 把 信给 了 他 . +Will it take long to recover ? 復 原 需要 花 很 長 的 時間 嗎 ? +Please deal the cards . 請 發 一下 牌 . +Mary stayed up late last night . 瑪麗 昨晚 熬夜 . +I was searched by the customs officers at the airport . 我 在 機場 被 海關 人員 搜查 . +I am a stranger here . 我 是 這裡 的 外地人 . +My head aches . 我 头痛 . +He grows tomatoes in his garden . 他 在 他 的 花園 種 番茄 . +Why are you alone ? 为什么 您 一个 人 ? +I am looking for an assistant . 我 正在 找 一個 助手 . +I can not get away from work now . 我 現在 在 工作 無法 離開 . +The goods were transported by ship . 這 批 貨物 是 由 船 隻 運 送 的 . +We still have a chance . 我們 還 有次 機會 . +The worst is over . 最 壞 的 已經 過去 了 . +You look tired . 你 看起来 很困 了 . +You should not smoke so much . 你 不该 抽 那么 多 烟 . +AI means Artificial Intelligence . AI 是 人工智能 的 略称 . +Got it ? 你 懂 了 吗 ? +There is nothing worse than doing something in a half @-@ hearted manner . 没有 什么 比 做事 缺乏 热情 更糟 . +English is too difficult for me to understand . 英語 對 我 來說 太 難 理解 了 . +Whose car is this ? 這 是 誰 的 車 ? +I said open the door . 我 說 開門 . +I do not want any more . 我 不 想要 了 . +Thanks for your explanation . 谢谢 你 的 解释 . +I have three dogs . One is male and the other two are female . 我 有 三只 狗 , 其中 一只 是 公 的 , 另外 两只 是 母 的 . +Good evening . 晚上 好 . +Tom wrote the report all by himself . 湯姆 寫 報告 全是 靠 的 自己 . +How large is the population of New York City ? 纽约市 的 人口 有 多少 ? +This house is really beautiful . 这 房子 真 漂亮 . +Leave a space between the lines . 行與行 之間 要留 一個 空間 . +Please attend the meeting in the second floor conference room at 2 : 30 p.m. 请 在 两点 半 参加 在 二楼 会议室 的 会议 . +Did you cut the paper ? 你 裁切 紙 張 了 嗎 ? +You have got to go . 你們 得 走 了 . +I would like to get home by five . 我 想 在 五點 前 到 家 . +I am not famous . 我 没 名气 . +Tom is no fool . 汤姆 不 傻 . +His parents ran a hotel . 他 的 父母 经营 一家 酒店 . +You do not need to thank me . 您 不必 感谢 我 . +Can you teach me to play chess ? 您 能 教 我 下 国际象棋 吗 ? +Christmas is coming . 聖誕節 快 到 了 . +You told her that you had finished the work three days before . 你 告訴 她 你 已經 在 三天 前 完成 這個 工作 了 . +Can you give me a discount ? 能 给 我 打 个 折么 ? +I wish I could go with you . 我 希望 能 跟你走 . +Can I use your pencil ? 我 能 用 一下 你 的 铅笔 吗 ? +There are holes in the ceiling . 天花板 上 有 洞 . +The whole country was covered in snow . 整个 国家 被 大雪 覆盖 了 . +I asked Tom about his new book . 我 問 了 湯姆關 於 他 的 新書 的 事 . +Tom kissed Mary is cheek . 汤姆 吻 了 玛丽 的 脸颊 . +I am getting farsighted as I get older . 當 我 年 長 時 , 我 漸漸 變得 有遠 見 . +He wants to pay off his loan . 他 想 还清 贷款 . +Please serve him his meal first . 請 先 為 他 上菜 . +She loves Tom , not me . 她 爱 汤姆 , 而 不是 我 . +When will the rainy season be over ? 雨季 何時 會 結束 ? +Let them take care of themselves . 讓 他們 照顧 自己 . +His plan is dangerous ! 他 的 計劃 是 危險 的 ! +As time went on , rules were added to the game to make it safer . 随着 时间 的 推移 , 比赛 增加 了 规则 以使 之 更 安全 . +This juice tastes sour . 這個 果汁 喝 起來 酸酸的 . +What makes you think I will not be able to do it ? 你 怎么 认为 我 做不了 ? +He knocked on the closed door . 他 敲 了 敲 緊閉 的 門 . +I cannot distinguish a frog from a toad . 我 无法 区分 青蛙 和 蟾蜍 . +I vaguely remember meeting him . 我 依稀 記得 見 過 他 . +No matter what I do , she says I can do better . 不论 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I wanted to ask Tom how long he had lived in India . 我 想 问 汤姆 他 在 印度 生活 了 多久 . +My mother is a very good cook . 我 媽媽 是 一個 很棒 的 廚師 . +The red flag indicated the presence of danger . 红旗 代表 存在 危险 . +There used to be a bridge here . 以前 這裡 有 一座 橋 . +Are you happy ? 你 快樂 嗎 ? +I usually get up at six . 我 一般 六点 起床 . +I am vegetarian . 我 是 素食主义者 . +I will live in Sasayama next year . 我 明年 會 住 在 筱 山 . +These are called shoes . 這些 叫 鞋子 . +Mary has a flower in her hand . 瑪麗 手上 有 一朵花 . +I am fairly confident that I can do that . 我 相当 有 自信 我 能 做到 这 一点 . +We will be busy . 我們 會 很忙 . +My father got married in his twenties . 我 父親 在 他 二十多 歲時 結婚 了 . +She writes beautifully . 她 的 筆跡 很美 . +I want to eat something delicious . 我 想 吃 點 好吃 的 . +He stuck to his promise . 他 信守 了 承诺 . +Are you for or against the plan ? 你 赞成 还是 反对 这个 计划 ? +I have got a frog in my throat . 我 緊張 得 說 不 出話 來 了 . +" How old are you ? " " I am 16 years old . " 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He is used to traveling . 他 習慣 了 旅行 . +I clapped my hands . 我 拍手 . +I 'd like some more bread , please . 我 想 再 要 些 麵 包 , 謝謝 . +Do you hear me ? 你 听得见 吗 ? +I doubt that Tom will ever learn how to speak French properly . 我 对 汤姆 要 持之以恒 地 学习 法语 口语 这件 事 很 怀疑 . +We are conservative . 我们 很 保守 . +You should not have come alone . 你 不該 一個 人 來 . +That is exactly what I wanted to see happen . 这 刚好 是 我 想 看到 它 发生 的 . +Tom dyed his hair . 汤姆 染发 了 . +We have not known each other long . 我們 彼此 認識 沒有 很久 . +This song makes me think of when I was young . 这 首歌 使 我 想起 了 我 年轻 的 时候 . +My mother is a very good cook . 我 媽媽 的 廚藝 很 好 . +She was envious of her cousin is success . 她 羨慕 她 表哥 的 成功 . +He goes to school on foot . 他 步行 上学 . +May I ask you for your name and address ? 我 能 问 一下 您 的 姓名 和 住址 吗 ? +We have forgiven you . 我们 已经 原谅 你 了 . +He is not very strict about this . 他 在 这方面 不是 很 严格 . +I explained the reason in detail . 我 詳細 地 解釋 了 原因 . +I know those women . 我 認識 那些 女人 . +You should come home before six . 六点 之前 要 回家 . +Who is that woman standing over there ? 站 在 那儿 的 女人 是 谁 ? +It was in Beijing that I studied Chinese . 我 是 在 北京 學 的 中文 . +The students learned many poems by heart . 学生 们 用心 学习 了 很多 首诗 . +The people here are used to the cold . 这里 的 人 习惯 了 寒冷 . +Somebody is got to do something . 得 有人 做 点 什么 . +Thousands of people lost their jobs . 数千 人 失业 . +The rain lasted a week . 雨 下 了 一周 . +I am going to run a couple of errands . Wanna tag along ? 我 要 去 购物 . 你 要 跟着 来 吗 ? +I was delayed by a traffic jam . 我 被 交通堵塞 耽擱 了 . +Tom wants me to join his team . 汤姆 希望 我 加入 他 的 团队 . +I am studying in the library . 我 正在 图书馆 学习 . +They have English lessons three times a week . 他们 一周 上 3 节 英语课 . +I woke up early . 我 起 得 早 . +How often do the buses run ? 公共 汽車 隔 多久 一班 ? +Let is find something to sit on . 讓 我們 找 些 可以 坐在 上面 的 東西 . +I do not know what I am going to do next . 我 不 知道 下 一步 做 什么 . +He has a remarkable aptitude for music . 他 有 非凡 的 音樂 天份 . +Frankly speaking , he is wrong . 坦率地 说 , 他 错 了 . +Many friends came to see me off . 許多 朋友 來 為 我 送行 . +It has been raining since Sunday . 從 週日 開始 一直 在 下雨 . +When did he say he would come ? 他 說 他什麼 時候 會 來 ? +His behavior is worthy of respect . 他 的 行为 值得尊重 . +He had his socks on inside out . 他 把 他 的 襪子 穿反 了 . +Is it true that your family will travel in Hokkaido ? I envy you . 你们 家 去 北海道 旅游 是 真的 么 ? 我 羡慕 你 . +She seems to have known the secret . 她 好像 已經 知道 這個 秘密 了 . +English is spoken in many countries around the world . 全世界 許多 國家 的 人 說 英語 . +The forest is teeming with monkeys . 这个 森林 里 猴子 成群 . +When did you get back from your trip ? 你 什么 时候 旅游 回来 的 啊 ? +When do you close ? 你們 公司 幾點 下班 ? +My name is Tom . 我 叫 Tom . +Everything depends upon your decision . 所有 事 都 取決 於 你 的 決定 . +Lend me your book , please . 請 ​ ​ 借 我 你 的 書 . +Let is skip out before Tom gets back . 咱 在 汤姆 回来 之前 开溜 吧 . +He took a taxi to get there in time . 他 打 出租车 以及 时 赶到 . +I 'd like seats on the first floor . 我 想要 一 樓 的 座位 . +She may come . 她 也許 來 . +I am going to check out at eight . 我 會 在 八點鐘 的 時候 登出 . +It is no use arguing about it . 爭論 是 它 是 沒 有用 的 . +I am really surprised you got a prize . 我 很 惊讶 你 得 了 奖 . +Learning how to swim is very simple . 学 游泳 非常简单 . +Why do not we go home ? 我们 何不 回家 呢 ? +These dirty socks stink . 脏 袜子 散发 臭气 . +What are you up to these days ? 最近 在 干 些 什么 ? +Her feelings are easily hurt . 她 很 容易 受到 感情 上 的 伤害 . +I told Tom I was OK . 我 对 汤姆 说 我 很 好 . +That is the stupidest thing I have ever said . 那 是 我 说 过 的 最 愚蠢 的话 了 . +Tom and I were born in the same city . 湯姆 和 我 生 在 同一 個 城市 . +" Is she coming , too ? " " I hope so . " “ 她 也 会 来 吗 ? ” “ 我 希望 是 这样 . ” +Tom is getting paranoid . 汤姆 越来越 多疑 了 . +It sounds like they are not going to leave . 听 着 好像 他们 不 打算 走 . +Tom works at home . 湯姆 在家 工作 . +Is this seat available ? 这个 位子 空 着 吗 ? +He wrote a book about the American Civil War . 他 写 了 本 关于 美国 南北战争 的 书 . +Tom looked a little frightened . 湯姆 看來 受 了 點 驚 嚇 . +Do not quit your day job . 别 辞掉 你 的 正职 . +A fork fell off the table . 叉子 从 桌上 掉 了 下来 . +How are you doing ? 你們 好 嗎 ? +The cat is eating . 这 只 猫 在 吃 东西 . +Let me think . 讓 我 想一想 . +It is very hot this morning . 今天 早上 很 熱 呢 ! +She lost a book . 她 弄 丟了 一本 書 . +I should not have lied to you . 我 不該 對 你 說 謊 . +Do you think I can help ? 你 认为 我 能 帮忙 吗 ? +Tom wanted to say goodbye . 汤姆 想 说 声 再见 . +We love our school . 我們 愛 我們 的 學校 . +I have a slight fever today . 我 今天 有點 發燒 . +I came to Japan to see Kyoto . 我 來 日本 看 京都 . +He prefers poetry to fiction . 比起 小说 , 他 更 喜欢 诗歌 . +He has already had lunch . 他 已经 吃 过 午饭 了 . +This may not be a real diamond . 這 可能 不是 一顆 真的 鑽石 . +We were bored . 我们 感到 厌烦 了 . +Are not you supposed to be at school today ? 你 今天 不是 应该 在 学校 的 吗 ? +She made fun of her husband . 她 取笑 了 她 的 丈夫 . +At lunchtime today , our usual restaurant was closed because of a funeral in the family . 今天 午餐 時間 , 我們 常 去 的 飯館 關門 了 , 因為 他們 家 在 辦 喪事 . +Would you mind coming with me ? 你 介意 跟 我 一 起来 吗 ? +They should arrive by ten o 'clock . 他們 應該 十點 前 到 . +That is an original idea . 那 是 原创 的 想法 . +She got in at 9 p.m. 她 晚上 九點鐘 上 了 車 . +She intended to become an actress . 她 打算 成為 一名 演員 . +He told his wife not to buy on impulse . 他 叫 自己 的 妻子 不要 衝動 購物 . +This is an ice cube . 這 是 冰塊 . +He shut the door . 他 關上 了 門 . +You do not have to get up early . 你 不必 早起 . +How many books do you have ? 你 有 多少 本書 ? +Tom can not account for his whereabouts on the day that Mary was murdered . 汤姆 不能 说明 玛丽 遇害 那天 自己 在 哪里 . +Do you believe there are ghosts ? 你 相信 有 鬼魂 吗 ? +Your composition has a few mistakes . 你 的 作文 有 一些 錯誤 . +Leave your umbrella in the hall . 把 你 的 雨 傘 放在 走廊 裡 . +Tom wrote down something in his notebook . 湯姆 在 他 的 筆記本 上 寫 了 東西 . +No words can express her deep sorrow . 她 的 悲伤 无法 言喻 . +I have a bath every day . 我 每天 洗 一次 澡 . +All the world speaks English . 世界各地 都 說 英語 . +I would like to rent a car . 我 想 租 一輛 車 . +Some people are difficult to please . 有些 人 很 難 取 悅 . +Do not worry . 別 擔心 . +He has two daughters . 他 有 两个 女儿 . +I never thought something like that could happen . 我 从来 没想到 会 发生 那种 事 . +Manholes are round because that way they will not accidentally fall through the hole . 人孔 是 圓 的 , 因為 這樣 人 孔蓋 就 不 會 意外 地 掉 進 洞 裡 . +I live here . 我 住 在 這 . +Tom said it was a diamond . 汤姆 说 它 是 钻石 . +There is no cause for worry . 这 没什么 好 担心 的 . +My girlfriend cried . 我 女朋友 哭 了 . +Go back to your seat . 回到 你 的 座位 . +Tom asked Mary where her mother was . 湯姆問 瑪麗 她 媽 在 哪 . +What happened to Tom could happen to you . 湯姆 身上 發生 的 事 也 可能 發生 到 你 身上 . +Keep your eyes closed until I tell you to open them . 闭 着 你 的 眼睛 直到 我 告诉 你 睁开 为止 . +Tom did not seem to be intimidated . 汤姆 似乎 没有 被 吓到 . +I am worried about my weight . 我 担心 我 的 体重 . +We live in a three @-@ bedroom house . 我們 住 在 一棟 有 三間 臥室 的 房子 . +Tom was never very good at swimming . 湯姆 從來 不 擅長 游泳 . +Tom felt hungry . 汤姆 觉得 饿 了 . +He often takes me for a drive . 他 常常 載 我 去 兜 風 . +Hang on . 坚持 . +Korean food is generally very spicy . 韓國 菜 一般 都 很辣 . +Are you studying ? 你們 學習 嗎 ? +She had to accept her fate . 她 该 接受 她 的 命运 . +He failed the exam , but he does not care too much . 他 考试 失败 了 , 但 他 不 太 在意 . +Go straight on down this street . 沿着 这条 街 直 走 . +This document was actually written by Tom . 這 文件 其實 是 湯姆 寫 的 . +Tom drank some orange juice . T 喝 了 點 柳橙汁 . +He left for Europe a week ago , that is , on the tenth of May . 他 在 一周 前 离开 去往 欧洲 , 就是说 , 是 在 五月 十号 . +I thought it was true . 我 以为 这 是 真的 . +Tom embraced his father . 汤姆 拥抱 了 他 的 父亲 . +Could you please get me a taxi ? 你 可以 幫 我 叫 一輛 計程 車 嗎 ? +Nobody knows what will happen in the future . 人 不 知道 未來 可能 發生 什麼 事 . +Is it yours ? 这 是 你 的 吗 ? +Did you watch the soccer game on television ? 你 在 电视 上看 足球赛 了 吗 ? +I am sorry to trouble you . 我 很 抱歉 打擾 你 了 . +It is up to you to decide whether we will go there or not . 该 由 你 来 决定 我们 去不去 那儿 . +Do not wait . 不要 等待 ! +I have promised Tom that I 'd be there . 我 答应 汤姆 我会 到 那里 . +You can pick out any book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +This is my mother . 这 是 我 母亲 . +It is our obligation to help . 幫助 是 我們 的 義務 . +We have been tricked . 我们 被 耍 了 . +He asked me where my uncle lived . 他 問 我 我 的 叔叔 住 在 哪裡 . +A change of air will do you a lot of good . 改變 環境 將 對 你 有 很多 好 處 . +Tom said he would not be able to do what we asked him to do . 汤姆 说 他 做 不成 我们 要 他 做 的 事 . +The police accused him of theft . 警察 起诉 他 盗窃 . +It would not be wise to ignore Tom completely . 完全 忽视 汤姆 不会 是 明智 的 . +What is wrong with you ? 你 到底 怎麼 回事 啊 ? +Tom usually only eats oatmeal for breakfast . 汤姆 通常 早饭 只 吃 燕麦 . +I think Tom is getting ready . 我 认为 汤姆 准备 好 了 . +" She likes music . " " So do I. " “ 她 喜欢 音乐 . ” “ 我 也 是 . ” +I saw her clean the room . 我 看見 了 她 打掃 房間 . +Everybody desires happiness . 每个 人 都 向往 幸福 . +It is too late to call Tom now . 现在 很 晚 了 , 没法 电联 汤姆 . +Did you bring a hair dryer ? 你 吹 風機 帶來 了 嗎 ? +I only took a bite of bread . 我 仅仅 吃 了 口 面包 . +I caught him stealing the camera . 我 抓到 他 偷 相機 . +Tom has no plans to go anywhere . 湯姆 沒 有 去 哪裡 的 打算 . +School begins at half past eight . 学校 8 点 半 开始 上课 . +Send me a letter when you arrive . 當 你 到 達 時 寄 封信 給 我 . +Drive cautiously . 安全 地 駕駛 . +I like your house . 我 喜欢 你 的 房子 . +He will arrive in Paris tomorrow . 他 明天 將 抵達 巴黎 . +This is my bike . 这 是 我 的 自行车 . +I have got it right here . 我 就是 在 这 得到 它 的 . +Come again any time . 隨時 再 來 . +He is able to speak five languages . 他 會 說 五種 語言 . +I like your city . 我 喜欢 你们 的 城市 . +We all felt sorry for Tom . 我們 都 為 Tom 感到 遺憾 . +The threat to Richmond was ended . 对 里士满 的 威胁 结束 了 . +I feel better today than yesterday . 我 今天 感覺 比 昨天 好 . +It is a very sad story . 这 是 一个 非常 悲伤 的 故事 . +I will wait for you in front of the school . 我 在 學校 前面 等 你 . +Tom did not talk to Mary . 汤姆 没 跟 玛丽 说话 . +Tom was wearing an old pair of shoes . 汤姆 穿着 一双 旧 鞋 . +As soon as he saw me , he ran away . 他 一看 見 我 , 就 跑 了 . +Have not we met before ? 我们 以前 没见 过 吗 ? +Everyone was drunk . 所有人 都 喝醉 了 . +I have asked him . 我 問 過 他 . +There is not a drop of water left . 沒有 剩下 一滴水 . +They moved here two years ago . 他們 兩 年前 搬到 了 這裡 . +A wooden building can easily catch fire . 木质 房屋 很 容易 着火 . +Tom is reading a book in his room . 汤姆 正在 自己 房间 里 看书 . +She is fond of animals . 她 很 喜欢 动物 . +Which of the composers do you like best ? 你 最 喜欢 哪位 作曲家 ? +Everyone is equal before the law . 法律 面前 人人平等 . +Would you let me know when Tom comes ? 你 能 让 我 知道 汤姆 什么 时候 来 吗 ? +I want a boat that will take me far away from here . 我 想要 一艘船 带 我 远离 这里 . +You do not have any more time . 你 沒有 時間 了 . +Tom is not an angel . 汤姆 不是 天使 . +My friend asked me if I was feeling all right . 我 朋友 问 我 是不是 觉得 还好 . +Tom and his friends played basketball all afternoon . 汤姆 和 朋友 们 打 了 整个 下午 篮球 . +Did you tell Tom about your problems ? 你 告訴 湯姆 你 的 問題 了 嗎 ? +How long will we have to wait ? 我們 要 等 多久 ? +That discovery was quite accidental . 那个 发现 纯属偶然 . +I think Tom really likes Mary . 我 認為 湯姆真 喜歡 瑪麗 . +My mother made us cheese sandwiches for lunch . 媽媽 為 我們 做 了 乳酪 三明治 當 午餐 . +Do you know how to drive a car ? 您 会 开车 吗 ? +He has not written the letter yet . 他 還 沒寫 信 . +Someone is lying . 有人 說 謊 . +She could not look him in the face . 她 无法 看着 他 的 脸 . +I do not know why you do not like Tom . 我 不 知道 你 不 喜欢 汤姆 的 理由 . +Can you play the guitar ? 你 会 弹 吉他 吗 ? +We will be sure to look into it . 我们 将 一定 会 观察 它 . +When I first came back to Boston , I was really lonely . 当 我 第一次 回 波士顿 时 , 我 真是 孤独 . +He pretended to be a stupid man . 他 假裝 是 個 愚蠢 的 人 . +This is the office in which he works . 這 是 他 工作 的 辦 公室 . +She folded her handkerchief neatly . 她 整齊 地 把 她 的 手帕 折好 . +I do not have a car , but my sister does . 我 没有 车 , 但 我 姐妹 有 . +It makes no difference who I meet . 我 遇見 誰 都 無所謂 . +No way ! 不 可能 ! +Give Tom a chair . 給 湯姆 一把 椅子 . +Tom likes to play baseball . 湯姆 喜歡 打 棒球 . +He likes to travel . I do , too . 他 喜欢 旅行 . 我 也 是 . +I have seen it . 我 見 過 . +Please translate this sentence into Japanese . 請 把 這 句 話 翻譯 成 日文 . +Where is my umbrella ? 我 的 傘 在 哪 ? +We have to do a great deal of reading . 我们 要读 很多 书 . +Please open the door . 請 開門 . +It was just a joke . Lighten up ! 只是 个 玩笑 . 放松 点 ! +It is less humid today than it was yesterday . 今天 沒有 昨天 潮溼 . +It is our fault . 它 是 我們 的 錯誤 . +We are having a party next Saturday . 我們 下個 星期六 將 舉行 派 對 . +Tom repaired his bicycle . 湯姆 修好 了 他 的 自行 車 . +Do not you feel cold ? 你 不 冷 吗 ? +Tom thanked everyone for waiting . 汤姆 感谢 每个 人 的 等待 . +He used to live here . 他 以前 住 在 这儿 . +The party was a success . 晚会 很 成功 . +I just do not like it . 我 只是 不 喜欢 它 . +The game will probably be canceled . 這場 比賽 可能 將 被 取消 . +You could have done it . 你 本來 可以 做 的 . +There used to be an old temple here . 这里 曾 是 座 旧 庙 . +That program is now being broadcast . 那個 節目 現在 正在 播出 . +Please keep this a secret . 请 保密 . +It would have been better if you 'd stayed with Tom . 如果 你 和 Tom 呆 在 一起 , 结果 会 更好 +Tom has been lying all along . 湯姆 一直 在 說謊 . +She wrote a book about birds . 她 寫 了 一本 關於鳥 類 的 書 . +I want a dog . 我 想要 一 隻 狗 . +I will see you next Wednesday . 我 下 星期三 见 你 . +This bicycle belongs to me . 这辆 自行车 属于 我 . +I sometimes dream of my mother . 有時 我 夢 見 我 的 母親 . +Tom is house has three bedrooms . Tom 的 房子 有 三個 房間 . +I just ate sushi and drank beer . 我 剛 才 吃 了 壽司 喝 了 啤酒 . +Why do not we order pizza ? 为什么 不订 些 批萨 呢 ? +You are in big trouble . 你们 有大 麻烦 了 . +Do not put the cart before the horse . 不要 把 本末倒置 . +Where are the elevators ? 電梯 在 哪裡 ? +I like you very much . 我 非常 喜歡 你 . +They became friends in elementary school . 他們 在 小學 時 就是 朋友 了 . +Tom works long hours . 汤姆 的 工作 时间 很 长 . +Tom decided to become a monk . 汤姆 ( Tom ) 决定 出家 为 僧 . +I wonder if I hurt Tom is feelings . 我 不 知道 我 是不是 伤害 了 汤姆 的 感情 . +My boss is keeping me pretty busy . 我 的 老板 总 让 我 很 忙活 . +None of those books are useful . 這些 書 裡 沒有 一本 是 有用 的 . +Do you need to work on Sunday ? 你 週日 需要 去 工作 嗎 ? +The boy has come home . 男孩 到 家 了 . +It can be used as a knife . 它 可以 被 當成 一把 刀 來 用 . +I am still your friend . 我 还是 你 的 朋友 . +We went for a walk in the forest . 我们 去 了 林中 散步 . +Plastics have taken the place of many conventional materials . 塑料 代替 了 许多 传统 的 原料 . +She got good grades in English . 她 的 英文 成績 很 好 . +He caught a boy stealing his watch . 他 抓到 了 一個 男孩 正在 偷 他 的 錶 . +The assistant took the money . 助手 拿 了 钱 . +I got up at six @-@ thirty this morning . 我 今天 早上 六點半 起床 . +It is very special . 它 很 特別 . +They say that he is very rich . 據 說 他 很 富有 . +China is an emerging market . 中国 是 一个 新兴 市场 . +It will not take so long . 它 不 會 花 很 長 的 時間 . +That was one of the best times of my life . 那 是 我 一生 中 最 美好 的 时光 之一 . +My sister washes her hair every morning . 我 妹妹 每天 早上 洗 頭 髮 . +I was asked to umpire the game . 我 被 要求 當 這場 比賽 的 裁判 . +What is your occupation ? 您 的 職業 是 什麼 ? +I know I heard something . 我 知道 我 听见 了 什么 . +She made tea for me . 她 给 我 泡 了 茶 . +I had a hard day . 我 过 了 难挨 的 一天 . +Are both Tom and Mary Canadians ? 湯姆 和 瑪麗 都 是 加拿大人 嗎 ? +I am sorry to have disturbed you . 對 不起 打擾 你 了 . +Tom is already here , but Mary has not gotten here yet . 汤姆 已经 在 这里 了 , 但 玛丽 还 没到 . +I can not figure out what he means . 我 不 懂 他 的 意思 . +I am going to take the 10 : 30 train . 我 要 搭 10 : 30 的 火車 . +As is evident from the data , smoking is not decreasing among the young . 数据 表明 年轻人 抽烟 的 现象 没有 减少 . +He appeared on TV last night . 他 昨晚 上 电视 了 . +They are eating their apples . 他們 在 吃 他們 的 蘋果 . +Do not you like my yellow scarf ? 你 不 喜歡 我 的 黃圍 巾 嗎 ? +He has been to France three times . 他 訪 問 過 法國 三次 . +He managed to get there in time . 他 設法 及時 到 達 那裡 了 . +This is going to be very expensive . 这 要 花 很多 钱 . +I want a book . 我 想要 本书 . +You should get your hair cut . 你 该 理发 了 . +When he feels fine , he goes for a walk . 当 他 感到 舒服 时 , 他 去 散步 . +He is better than anyone else . 他 比 任何人 都 好 . +It is gotten better . 它 會 好轉 的 . +What did you want to do ? 你 以前 想 做 什么 ? +Would you like something to drink ? 你 想要 什么 喝 的 吗 ? +She has a lot of work to do . 她 有 很多 事 要 做 . +May I use your pencil ? 我 可以 用 你 的 鉛 筆 嗎 ? +I gave Tom three cookies . 我 给 了 汤姆 三块 饼干 . +She gave me some practical advice . 她 給 了 我 一些 實用 的 建議 . +Compared to yours , my car is small . 和 你 的 车比 起来 , 我 的 车 很小 . +The news of his death spread . 他 去世 的 消息 傳 開來 了 . +My car is not red . It is blue . 我 的 汽車 不是 紅色 的 , 而是 藍色 的 . +The committee meets twice a month . 委员会 一个月 召开 两次 . +Tom cut himself with his knife yesterday . 汤姆 昨天 用 刀切 到 自己 了 . +You know that that is your duty . 你 知道 那 是 你 的 责任 . +Tom did not give me back my money . 湯姆 沒有 把 錢 還 給 我 . +Can anyone drive ? 有人 会 开车 吗 ? +He grew up to be a doctor . 他 長 大 後 成為 了 一名 醫生 . +He returned very late at night . 他 晚上 回來 得 很 晚 . +There is no hope of his recovery . 他 沒有 希望 痊癒 了 . +The car hit a wall . 那辆车 撞 到 墙 了 . +I bought this watch at the store . 我 在 這家 店 買 了 這 支 手 錶 . +There is an old movie theater in town . 城裡 有 一家 古老 的 電 影院 . +Why do not you go home ? 你 为什么 不 回家 呢 ? +I like flowers . 我 喜歡 花 . +It is nice to have friends . 有 朋友 真好 . +I am glad you could come to the party . 我 很 高兴 你 能 来 参加 派对 . +Tom told Mary his age . 湯姆 告訴 瑪麗 他 的 年齡 . +I really enjoyed your company . 我 真的 很 喜歡 你 的 陪伴 . +I admire your courage . 我 佩服 你 的 勇氣 . +The picture is nice . 这 画 不错 . +I could not prevent Tom from eating all the cookies . 我 阻止不了 汤姆 把 饼干 全 吃 了 . +There were three survivors . 有 三个 幸存者 . +Express your idea clearly . 把 你 的 想法 表達 清楚 . +Let is take the 4 : 10 train . 我们 去 坐 四点 十分 的 火车 吧 . +My friend invited me to go out to dinner . 我 的 朋友 邀請 我 去 吃 晚餐 . +Do you have fresh strawberries ? 您 有 新鮮 草莓 嗎 ? +He may come and see us tonight . 他 今天 晚上 可能 來看 我們 . +None of my classmates live near here . 我 没有 一个 同学 住 在 这儿 附近 . +There are some strange animals in the zoo . 动物园 里 有 很多 奇怪 的 动物 . +You understand , do not you ? 你 明白 , 不是 嗎 ? +Mastering a foreign language calls for patience . 精通 一種 外語 需要 耐心 . +I have to lose weight . 我 必须 要 减肥 了 . +I want to leave this difficult job to her . 我 想 让 她 干 这项 艰难 的 工作 . +I have a pair of red shoes . 我 有 一双 红鞋子 . +A whale is a mammal . 鲸鱼 是 哺乳动物 . +He spent his sixtieth birthday in the hospital . 他 在 医院 里 过 了 他 的 十六岁 生日 . +What do not you want us to see ? 你 不想 让 我们 看见 什么 ? +The house is not occupied now . 房子 现在 没 被 占住 . +Stop complaining . 别 再 埋怨 了 . +I am your father . 我 是 你 爸爸 . +I can understand him perfectly . 我 十分 能 理解 他 . +It was extremely scary . 这 太 可怕 了 . +I sort of understand . 我 大概 懂 了 . +The quality of these products is the same . 这些 产品 的 品质 是 一样 的 . +Tom needs to get into shape . Tom 需要 让 身体 好 起来 . +I can not go , nor do I want to . 我 去 不了 , 也 不想 去 . +What does Tom suggest ? 汤姆 建议 了 什么 ? +Their trip was postponed because of the rain . 他们 的 旅行 因为 下雨 延期 了 . +We have absolutely nothing in common . 我们 完全 没有 共同点 . +Leave my camera alone . 別 碰 我 的 相機 . +Mary is the youngest of the three sisters . 玛丽 是 三 姐妹 中 的 老幺 . +He does not come here every day . 他 不是 每天 都 來 這 . +Control is everything . 控制 就是 一切 . +I sleep on my stomach . 我 趴着睡 觉 . +This little baby tore up a 10 dollar bill . 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Good luck . You will need it . 祝 你好 運 . 你 會 需要 它 . +When the cat is away , the mice will play . 山上 无 老虎 , 猴子 称 大王 . +Doing that is simply out of the question . 根本 不 可能 做 那件事 . +Tom told me he was coming back . 湯姆 告訴 我他 正在 回來 . +Do you want this T @-@ shirt ? 你 要 這件 T恤 嗎 ? +Tom is not used to walking barefooted . 汤姆 不 习惯 赤脚 漫步 . +Someday I will buy a cotton candy machine . 有 一天 我 买 了 一台 棉花 糖机 . +We often watch TV while we are eating breakfast . 我们 常在 吃 早饭 时 看电视 . +We take it for granted that he will succeed in his business . 我们 认为 他 的 生意 理所当然 会 获得成功 . +Several thousand people became victims of this disease . 数千 人 受 此 疾病 所害 . +English is a very important language in today is world . 英语 是 当今世界 上 一种 非常 重要 的 语言 . +I caused him a lot of trouble . 我 給 他 帶來 了 很多 麻煩 . +I have trouble breathing . 我 呼吸困难 . +I want to believe in Tom . 我 要 相信 湯姆 . +These flowers grow in warm countries . 這些 花生 長 在 溫暖 的 國家 . +I want something hot to drink . 我 想 喝 點 熱 的 飲料 . +Cats hate to get wet . 猫 讨厌 被 弄湿 . +I will get you a bike for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +They are all innocent children . 他们 都 是 天 真的 孩子 . +I am in a hurry today . 我 今天 趕 時間 . +I will stay at home tomorrow . 明天 我会 呆 在 家里 . +You 'd better wait for the next bus . 你 最好 等 下 一班 公車 . +Your book is on the desk . 你 的 书 在 书桌上 . +It is not necessary for us to attend the meeting . 我們 沒有 必要 參加 會議 . +I work even on Sunday . 我 甚至 在 週日 工作 . +I feel relieved . 我 感觉 轻松 了 . +That is not fair . 那 是 不 公平 的 . +There was a castle here many years ago . 许多年 前 这里 有 一座 城堡 . +If you are tired , go to bed . 你 若 累 了 , 就 去 睡 個 覺 . +They want more . 他們 想要 更多 . +You must start at once . 你 必须 马上 开始 . +You must pay attention to him . 你 必须 注意 他 . +It was getting dark . 天要 黑 了 . +I do not understand . 不 明白 . +He is a member of the baseball club . 他 是 這 棒球 俱樂部 的 成員 . +What are we having for dinner tonight ? 今天 晚饭 吃 什么 . +Did you see him go out ? 你 看到 他 出去 了 嗎 ? +Tom complains all the time . 汤姆 老 是 发牢骚 . +Do you know a good restaurant ? 你 知道 一个 好 飯 店 嗎 ? +English is taught in most countries . 英語 在 大部份 的 國家 被 教授 . +I meet him at the club . 我 在 俱樂部 見到 他 . +Days are getting longer . 白天 越來越 長 了 . +I will ask Tom to wait . 我 會 請 Tom 等 . +Do you know how to speak English ? 你 知道 怎麼 說 英語 嗎 ? +I bought some clothes . 我 買 衣服 了 . +Two people can enter with this ticket . 兩個 人 可以 用 這 張 票入場 . +I prefer cats to dogs . 比起 狗 , 我 更 喜欢 猫 . +Do you drink beer ? 你 喝啤酒 吗 ? +I need your cooperation . 我 需要 你们 的 合作 . +He is not a good driver . 他 不 擅长 开车 . +Who was in charge of today is party ? 誰 負責 今天 的 派 對 ? +To tell the truth , I do not like him . 老实 说 , 我 不 喜欢 他 . +I will sue you . 我 要 告 你 . +It is too dark for me to read . 太暗 了 我 無法 讀 . +How old is your oldest son ? 你 的 長子 幾歲 ? +How old are your children ? 你 的 孩子 多 大 了 ? +May I see your passport ? 我 可以 看看 你 的 護照 嗎 ? +She was married to a rich man . 她 嫁給 了 一個 有 錢 的 男人 . +Soccer is my favorite sport . 足球 是 我 最 喜欢 的 运动 . +Are you having problems ? 你 有 问题 吗 ? +Be sure to pick up some milk . 務 必要 買 一些 牛奶 . +Do not bother me . 别 来 烦 我 . +Tom is taking a shower . Tom 在 洗澡 . +I see a cat chasing a dog . 我 看见 一只 猫 追 着 一只 狗 跑 . +Is there an app for that ? 有 它 的 应用 吗 ? +It is warmer today than yesterday . 今天 比 昨天 暖和 . +They went to the station by car . 他們 開車 去 車站 . +Where do you want to go tomorrow ? 你 明天 想 去 那里 ? +I see you found your bag . 我 见 你 找到 了 你 的 包 . +Tom gets up at six every morning . 湯姆 每天 早上 六點 起床 . +My hobby is collecting old toys . 我 的 嗜好 是 收集 舊 玩具 . +Say what ? 啥 ? +It is been a long time . 已經 很 長 一段 時間 了 . +Thank you for agreeing to meet with us . 谢谢 你 答应 来 见 我 . +May I trouble you to shut the window ? 可以 麻烦 你 把 窗 关 了 吗 ? +I wish Tom could have been there . 我 希望 汤姆 能 在 那里 . +This room is air @-@ conditioned . 這個 房間 有空 調 . +I am going to study French . 我 要 学法语 . +I met your girlfriend . 我 見 過 你 的 女朋友 . +His mother came to pick him up . 他 的 母親 來接 他 了 . +Though wounded , they continued to fight . 尽管 受了伤 , 他们 还是 继续 战斗 . +Is there anything else you want me to do ? 你 还有 什么 事情 需要 我 去 做 的 吗 ? +My aunt made me a new skirt . 我 舅母 做 了 一條 新 裙子 給 我 . +How did Tom know ? 湯姆 怎麼 知道 ? +He became an orphan when he was ten . 十岁时 他 就 成 了 孤儿 . +Please sit . 请用 座 . +We enjoyed ourselves at the picnic . 我們 在 野餐 玩 得 很 開心 . +I do not want to go to church today . 今天 我 不想 去 教堂 . +She went upstairs to her bedroom . 她 上 樓 到 她 的 臥室 . +They were rescued by helicopter . 他们 被 直升机 解救 . +I am glad to make your acquaintance . 我 很 高興 能夠 認識 您 . +I am short of cash at the moment . 此刻 我 缺少 現金 . +When we are children , everything around us looks so big . 我们 小时候 , 所有 的 一切 对 我们 来说 都 显得 那么 大 . . . +Come as soon as possible . 尽早 来 . +It is impossible to get there by noon . 中午 到 達 那裡 是 不 可能 的 . +Tom is passport has expired . 湯姆 的 護照 過期 了 . +Let is just enjoy this peace and quiet . 让 我们 享受 这 平静 和 安宁 . +Put on your shoes . Let is go out for dinner . 穿 上 你 的 鞋 , 我们 出去 吃晚饭 . +My brother took me to the museum . 我 哥哥 帶 我 去 博物 館 . +Because he is sick , he can not come . 因為 他 生病 了 , 所以 他 不能 來 . +Tom tried to control his emotions . 汤姆 试 着 控制 他 的 情绪 . +I wish I could buy that guitar . 但 願 我 可以 買 那 把 吉他 . +I hear you are good at cooking . 我 聽 說 你 擅長 烹飪 . +I am always busy . 我 总是 有事 . +I am used to working all night . 我 習慣 整夜 工作 . +I rode a horse for the first time yesterday . 昨天 我 第一次 骑 了 马 . +They fought for the sake of their country . 他们 为 祖国 而 战斗 . +I was nervous , too . 我 也 紧张 . +Who decided that ? 誰 決定 了 那件事 ? +Boil some water . 烧 一点 水 . +He bought himself a dog . 他 給 自己 買了一 隻 狗 . +Tom said he needed money . 湯姆 說 他 需要 錢 . +She is on a diet . 她 在 节食 中 . +I am not too smart . 我 不 太 聰明 . +Keep reading . 继续 看 . +He left his glasses at our place . 他 把 眼镜 落 在 我们 这里 了 . +I wish you had told me that . 要是 你 告訴 過 我 就 好 了 . +He is telling a lie . 他 說 謊 . +He got a broken jaw and lost some teeth . 他 磕碎 了 下巴 , 掉 了 几颗 牙 . +That house is big . 那棟 房子 很大 . +Tom is a little worried . 湯姆 有 點 擔心 . +A few minutes later , the telephone rang . 几分钟 后 , 电话响 了 . +Tom is always late . 湯姆總 是 遲 到 . +Would you like me to see you home ? 你 愿意 让 我 送 你 回家 吗 ? +I am serious . 我 是 認 真的 . +See you tomorrow at the library . 明天 图书馆 见 . +I do not have the slightest idea . 我 沒 有 絲毫 的 想法 . +Tom is not a hero . 湯姆 不是 英雄 . +Tom can not stay . 汤姆 不能 留下 . +Tom is working in Boston . 湯姆 在 波士 頓 工作 . +The pharmacy is near the hospital . 藥局 在 醫院 附近 . +A wise man profits from his mistakes . 聰 明人 會 從 自己 的 錯誤 中 受益 . +This is a very informative article . 这 是 篇 信息量 很大 的 文章 . +Excuse me , let me point out three mistakes in the above article . 不好意思 , 讓 我 指出 先前 文章 的 三個 錯誤 . +I caught him by the arm before he could fall . 在 他 倒下 前 我 抓住 了 他 的 手臂 . +Just put those packages anywhere . 只要 把 那些 包包 放在 任何 地方 都行 . +Tom is parents were both teachers . 湯姆 的 父母 都 是 教師 . +He often eats breakfast there . 他 常常 在 那裡 吃 早餐 . +The fuel gauge is broken . 燃油 表坏 了 . +She is quiet . 她 很 安静 . +Beauty is in the eye of the beholder . 情人 眼裡 出 西施 . +The buildings shook in the earthquake . 建筑物 在 地震 中 摇晃 . +This law is applicable to all cases . 此法 適用 於 所有 情況 . +It is a really good school . 它 真是 個 好 学校 . +I enjoyed driving on the new highway . 我 很 喜歡 在 新 的 高速公路 上 開車 . +How long does it take to get to the station ? 去 火车站 要 多久 ? +He asked me to help him . 他 要求 我 幫助 他 . +Do you have a dictionary ? 你 有 字典 嗎 ? +We can not sit idly by . 我們 不能 光 坐著 . +The value of the yen has soared . 日元 的 價值 大幅 上升 . +I have deleted the app . 我 删除 了 这个 应用 . +She is going to have a baby . 她 將 生 孩子 . +He bought his daughter a new dress . 他 買 了 新 衣服 給 他 的 女兒 . +He laid on his back . 他 仰 躺 . +It is a beautiful day , is not it ? 今天 的 天氣 真好 , 不是 嗎 ? +How tall are you ? 你 多 高 ? +Can I have a bite ? 我 可以 吃 一口 嗎 ? +What is your date of birth ? 你 的 生日 是 几号 ? +The plane is about to take off . 飞机 快要 起飞 了 . +Guess what he told me . 猜猜看 他 告訴 了 我什麼 . +I am on Tom is side . 我 站 在 湯姆 一邊 . +There is nothing good on television now . 現在 電視 上 沒有 甚麼 好看 的 . +It was too difficult for me . 它 對 我 來說 太 困難 了 . +Dogs bark . 狗 会 叫 . +Tom is the one I saw . 我 看见 的 是 汤姆 . +All at once , I heard a cry . 突然 , 我 听到 了 一声 喊叫 . +I do not think that he is honest . 我 不 觉得 他 很 诚实 . +Can you weigh this , please ? 請 你 稱 一下 這個 的 重量 好 嗎 ? +He is absent from school today . 他 今天 沒上學 . +I am studying computer science . 我 在 学习 计算机科学 . +Open the bottle . 把 瓶子 打开 . +We were not making fun of you . 我們 没有 笑 話 你 . +Here is your pudding . 这 是 你 的 布丁 . +I would like to get some sleep . 我 想 睡 点 觉 . +He is a little taller than you are . 他 比 你 高一 點 點 . +He no longer lives here . 他 不再 住 在 這裡 了 . +I had my brother repair my bicycle . 我 让 我 哥 修理 我 的 自行车 . +Tom has always been very nice to me . 汤姆 对 我 一直 很 好 . +Why do you want to kill me ? 你們 為 什麼 想 殺 我 ? +Does it taste good ? 好吃 嗎 ? +It became dark before I knew it . 我 不 知道 天色 變暗 了 . +You look happy today . 你 今天 看 起來 很 高興 . +What awful weather ! 多么 糟糕 的 天气 啊 ! +I have not finished my supper yet . 我 還 沒 吃 完 晚 飯 . +We are going downtown . 我们 正在 去 市里 . +No , I did not go . 不 , 我 沒 去 . +Who is that person ? 那人 谁 啊 ? +Tom added broccoli to the stew . 汤姆 往 炖菜 里加 了 西兰花 . +I always thought that Tom was a bit different . 我 以前 总 认为 汤姆 是 有 一些 与众不同 的 . +Tell her that I am cooking dinner . 告诉 她 我 在 做 晚饭 . +She sometimes gets depressed . 她 偶爾 有 憂鬱 的 心情 . +I remember last summer is adventure . 我 记得 去年 夏天 的 历险 . +Do you play a musical instrument ? 你 演奏 樂器 嗎 ? +I came to Japan two years ago . 我 兩 年前 來 日本 . +My father bought a new car . 我 的 父親 買 了 一輛 新車 . +Mt . Asama is now dormant . 浅间 山 现在 是 寂静 的 . +Tom is in the house . 湯姆 在 這棟 房子 裡 . +I did not know who was going to meet me at the airport . 我 不 知道 谁 会 在 机场 见 我 . +It is no use asking him again . 再 问 他 也 没用 . +She has a little bread . 她 有点儿 面包 . +I know what you did . 我 知道 你 做 了 什么 . +Put it on one bill , please . 請記 在 一張 帳單 上 . +She lives in a two @-@ story house . 她 住 在 一棟 兩層 樓 的 房子 . +You did not come to school yesterday , did you ? 你 昨天 沒來 學校 , 是 嗎 ? +Six divided by two is three . 六 除以 二 得 三 . +I feel bad enough already . 我 已经 感觉 够 坏 了 . +Her mother passed away last year . 她 的 母親 去年 去世 了 . +I was tired , so I did not go . 我 累 了 , 所以 我 沒 去 . +Leave the room as it is . 保留 原狀 地 離開 房間 . +It is still early . 還 早 呢 . +" I feel like playing cards . " " So do I. " “ 我 想 打牌 . ” “ 我 也 是 . ” +He has never played golf . 他 从没 打 过 高尔夫球 . +He can not seem to understand that poem . 他 似乎 无法 理解 那 首诗 . +Our cow does not give us any milk . 我們 的 乳牛 沒有 給 我們 任何 牛奶 . +It can be done in a day . 它 可以 在 一天 之內 完成 . +I can not answer you now . 我 现在 不能 回答 你 . +There is little chance of his winning . 他 贏 的 機會 極 小 . +Wine made here is very famous . 這 裡 製 造 的 葡萄酒 非常 有名 . +It is just your imagination . 那 只是 你 的 想象 . +I met him on my way home . 我 在 回家 的 路上 遇到 了 他 . +You should follow the doctor is advice . 你 應該 遵照 醫生 的 忠告 . +He got up at five as usual . 他 像 往常 一樣 五點鐘 起床 . +I owe a lot of money . 我 欠 了 很多 钱 . +Show me another example . 再 给 我 举 个 例子 . +He came home late in the evening . 他 晚上 很 晚 回家 . +All my homework is done . 我 做 完 了 所有 的 回家 作業 . +It is snowing today . 今天 下雪 . +I want to visit South Korea . 我 想 访问 韩国 . +To tell the truth , I felt lonely . 說實話 , 我 感到 孤獨 . +We are old friends . 我们 是 老朋友 了 . +I know it is difficult to believe . 我 知道 , 要 相信 这件 事 很 难 . +Dozens of young people attended the demonstration . 几十个 年轻人 参加 了 示威游行 . +What are your plans for tonight ? 你 今晚 有 什么 打算 ? +I would like to live in the suburbs of Kobe . 我 喜歡 住 在 科比 的 郊區 . +Give me three pieces of salmon . 給 我 三片 鮭魚 肉 . +I majored in American literature at college . 我 在 大學 主修 美國 文學 . +Pull up your stockings . 把 你 的 絲襪 拉上去 . +We are not in Boston . 我們 不 在 波士 頓 . +Tom seems to be prepared . 湯姆 看來 準備 好 了 . +I do not know who made the cake . 我 不 知道 這個 蛋糕 是 誰 做 的 . +I took him to the most expensive restaurant on campus . 我 把 他 带到 校区 里 最贵 的 餐馆 去 了 . +Can you turn the TV down ? 您 能 把 电视 开 小声点 吗 ? +Tom will probably never be late again . 湯姆 可能 再也 不遲 到 了 . +Fortunately , no passengers were injured . 万幸 , 没 乘客 受伤 . +Someone is obviously telling a lie . 顯然 有人 在 撒謊 . +Can I use your pencil ? 我 可以 用 你 的 鉛 筆 嗎 ? +He often drives his father is car . 他 經常 駕駛 他 的 父親 的 車 . +When the cat is away , the mice will play . 上司 不 在 , 部下 就 輕 鬆 自 在 . +Your suggestion seems reasonable . 你 的 建議 似乎 是 合理 的 . +I am very concerned about his health . 我 很 关心 他 的 健康 . +I had a very good time today . 我 今天 玩 得 很 開心 . +I do not want to fail my exams . 我 不想 不 通过 考试 . +You really are hopeless . 你 真的 是 一點 希望 也 沒有 . +Come in , it is open . 进来 , 门 开 着 . +He really likes music a lot . 他 真的 很 热爱 音乐 . +I suppose you are hungry . 我 猜想 你 饿 了 . +He had plenty of fight left in him . 他 的 胸中 还有 足够 的 斗志 . +I recorded our conversation . 我 录下 了 我们 的 谈话 . +How about going out for dinner ? 出去 吃 晚餐 如何 ? +What does your father do ? 你 父亲 是 做 什么 的 ? +I have already eaten lunch . 我 已經 吃 過 午餐 了 . +Tom did not deny that he did that . 汤姆 没有 否认 他 做 的 事情 . +Tom joined our company three years ago . 汤姆 三年 前进 了 我们 公司 . +Absence makes the heart grow fonder . 小別勝 新婚 , 久别 情 更深 . +I had a telephone call from her . 她 打 了 一通 電話 給 我 . +This is never going to end . 这 将 永远 继续下去 . +Have you heard about the accident ? 你 聽 說 過 這場 意外 嗎 ? +He replied that he did not know . 他 回答 说 他 不 知道 . +Where do I have to change trains ? 我 要 在 哪裡 換 火車 ? +She is good at bargaining the price down . 她 很 善于 砍价 . +The boy got in through the window . 這個 男孩 從 窗戶 進去 了 . +He said he did not enter the room , which was a lie . 他 说 他 没有 进 房间 , 那 是 骗人 的 . +I am so lonely . 我 好孤单 . +What is the width of this road ? 這 條路 的 寬度 是 多少 ? +Tom and Mary were alone . 汤姆 和玛丽 单独 在 一起 +John is two years older than I am . John 比 我 大 两岁 . +Do not try to intimidate me . 别 想 吓唬 我 . +I like these . 我 喜欢 这些 . +My uncle gave me a present . 我 叔叔 给 了 我 一份 礼物 . +I have confidence in you . 我 對 你 有 信心 . +When does the game begin ? 游戏 几点 开始 ? +The men are wearing short sleeves . 男人 們 穿著 短袖 上衣 . +I can not reach it . 我 搆 不到 它 . +Tom said he is glad Mary has finally graduated . 湯姆 說 他 很 高興 瑪麗 畢業 了 . +I will stay here till you get back . 我 會 待 在 這裡 直到 你 回來 . +She must have taken the wrong bus . 她 一定 是 搭錯 了 公車 . +Have you ever been robbed ? 你 被 抢劫 过 吗 ? +That guy drives me crazy . 那家伙 让 我 发疯 . +Tom left his sunglasses on the dashboard of my car . 汤姆 把 他 的 太阳镜 留在 我 的 车 的 仪表板 上 了 . +Please speak more loudly . 請 說 更 大聲 一點 . +Tom should have discussed that with you . 汤姆 应该 跟 你 讨论 过 那事 了 . +They are self @-@ sufficient . 他们 自给自足 . +I am on your side . 我 站 在 你 这边 . +I work in this building . 我 在 这栋 楼 里 工作 . +They are talking in the kitchen . 他們 正在 廚房 裡 說 話 . +You can say whatever you want to . 你 可以 說 你 想 說 的 話 . +I do not understand German at all . 我 一點 也 不 懂 德語 . +I left the door open . 我 讓 門 開著 . +Many schools are closed today because of the storm . 今天 许多 学校 因为 风暴 停课 . +I think I now have enough money to buy the car I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Father is out , but Mother is at home . 爸爸 出去 了 , 但 妈妈 在家 . +He told me to speak more slowly . 他 告訴 我 要 說 慢 一點 . +A considerable amount of time and effort have been spent already . 已經 花費 了 很多 的 時間 和 精力 . +Do you have a points card ? 您 有 会员卡 吗 ? +I did not want to come here . 我 不想 來 這裡 . +Tom wished he could understand French . 汤姆 希望 他 能 懂 法语 . +I have to wake Tom up . 我 得 叫醒 汤姆 . +She runs . 她 跑 . +Tom turned out to be a thief . 原来 Tom 是 贼 来 的 . +Sorry , I have got my hands full now . 對 不起 , 現在 我 手上 都 是 東西 了 . +He announced that he would come at once and investigate the matter . 他 宣布 他 將 立刻 來 調查 此事 . +Where did you get the idea ? 你 哪儿 来 的 主意 ? +Please help me clean the house . 請 幫 我 打掃 房子 . +I have to find a part @-@ time job . 我 必須 找 一份 兼職 工作 . +She cared for her father until his death . 她 照顾 她 的 父亲 直到 他 去世 . +Pardon me , but that is my racket . 抱歉 , 这 是 我 的 球拍 . +She has already left the office . 她 已經 離開 了 辦 公室 . +The wind is blowing from the east . 風 從 東方 吹來 . +Tom said he was not ready , but Mary said she was . 汤姆 说 他 没 准备 好 , 但 玛丽 说 她 准备 好 了 . +I have nothing to do with this matter . 我 跟 這件 事 無關 . +Tom almost always uses a credit card when he goes shopping . 汤姆 在 去 购物 的 时候 , 几乎 每次 都 会 用 信用卡 . +I am not quite well . 我 有 點 不 舒服 . +Do you have any plans for Saturday ? 你 週六 有 什麼 計劃 ? +How did you come by this money ? 用 這些 錢 你 怎麼 來 的 ? +Flying kites can be dangerous . 放 風箏 可以 是 危險 的 . +I went to bed at twelve last night . 我 昨晚 十二点 去 睡 的 . +I do not think we can wait any longer . 我 认为 我们 不能 再等 了 . +The bill passed by a small majority of 10 votes . 法案 以 10 票 微弱 多数 通过 . +Do you have any friends that are doctors ? 你 有 朋友 是 醫生 嗎 ? +It took me half an hour to work out this problem . 我 花 了 一個半 小 時 的 時間 解決 這個 問題 . +I want a piece of candy . 我 想要 一颗 糖 . +He did not speak unless spoken to . 除非 有人 跟 他 說 話 , 他 不 說 話 . +Why do not we get out of here ? 我们 为什么 不 离开 这里 ? +Do you want anything ? 你 想要 什麼 嗎 ? +I do not speak German . 我 不会 说 德语 . +There are many people in the park . 公园 里 有 很多 人 . +They did not listen . 他们 没 听 . +The weather is nice tonight . 今晚 天公 作 美 . +You are very smart . 你 很 聪明 . +It rained for a week . 雨 下 了 一周 . +The election was unanimous . 选举 一致 通过 了 . +He mistook me for my twin brother . 他 把 我 誤 認為 我 的 雙 胞胎 兄弟 . +I am sure that he is an honest man . 我 确定 他 是 个 老实人 . +I do not know his address . 我 不 知道 他 的 地址 . +I am thirty . 我 三十 歲 . +Uncle Tom is my mother is brother . 湯姆 叔叔 是 我 媽媽 的 兄弟 . +He is to come to my house tonight . 他 今晚 会 来 我家 . +She told me she knew my brother . 她 告訴 我 她 認識 我 的 哥哥 . +Tom is serious now . 汤姆 现在 是 认真 的 . +I like tennis and golf . 我 喜歡 打 網球 和 高爾夫 球 . +Who is that old man ? 那個 老 男人 是 誰 ? +You have cut my hair too short . 你 把 我 的 头发 剪 得 太短 了 . +Tom is kind to everybody . 汤姆 对 每个 人 都 好 . +He has a lot of foreign stamps . 他 有 很多 外國 郵票 . +I am poor at swimming . 我 不 擅長 游泳 . +He has been sick since last night . 他 從 昨晚 開始 就 生病 了 . +The teacher told us to be quiet . 老師 告訴 我們 要 安靜 . +I got this bicycle for free . 我 免費 得到 了 這輛 自行 車 . +I have been wanting to see you . 我 一直 想見 你 . +The police are investigating the cause of the accident . 警察 调查 事故 的 原因 . +That was a disaster . 那 是 災 難 . +Both of my brothers are married . 我 的 兩個 兄弟 都 結婚 了 . +Turn on the radio , please . 请 将 收音机 打开 . +I have a feeling he is right . 我 覺得 他 是 對 的 . +Tom is a friend of mine . 湯姆 是 我 朋友 中 的 其中 一位 . +She does not have any friends or relatives to take care of her . 她 没有 任何 亲戚朋友 照顾 她 . +Many improvements have been made since this century began . 本世纪初 以来 , 产生 了 很多 进步 . +I was told that I do not need to do that . 有人 告訴 我 我 不用 做 . +There was no water in the river . 河裡 沒 有 水 了 . +I am in Tokyo today . 我 今天 在 東京 . +The best way to lose weight is to eat less and exercise more . 最好 的 減肥 方法 就是 少 吃 多 運動 . +Let us know whether you can come . 讓 我們 知道 你 是否 能來 . +We made an appeal for support . 我們 提出 了 請求 支持 的 呼籲 . +I know my limitations . 我 知道 我 的 限度 . +Prices have dropped recently . 最近 物價 已經 下降 . +I thought Tom had a soccer game tonight . 我 以为 汤姆 今晚 有 足球比赛 . +Our school is further away than the station . 去 我们 学校 比 去 火车站 要 远 . +Thank you ever so much . 非常感谢 ! +Could I have the check ? 把 帳單 給 我 好 嗎 ? +You were supposed to tell Tom that . 你 该 告诉 汤姆 . +I did not go , but stayed at home . 我 沒 去 , 但 我 留在 家裡 . +I am sorry I was not able to see you when you came by today . 我 很 抱歉 今天 您 来 的 时候 没能 见 您 . +Cutting a cake into equal pieces is rather difficult . 把 蛋糕 等 分切 開 更 難 . +She did not like the horse at first . 起初 她 不 喜歡 馬 . +I rented a house with a garage . 我 租 了 一間 有 車庫 的 房子 . +My father walks . 我 爸爸 走路 . +My shoes are bigger than yours . 我 的 鞋 比 你 的 大 . +I have been waiting for you since two o 'clock . 我 從 兩點 開始 一直 等 你 . +He will not go on to graduate school . 他 不 會 繼續 去 上 研究所 . +In case of emergency , call 119 . 在 緊 急情 況下 , 可撥 打 119. +If you can not come , you should let me know ahead of time . 如果 你 不能 來 , 你 該 讓 我 提前 知道 . +I would like to see your sister . 我 想见 你 的 姐姐 . +Tom certainly is an eloquent speaker . 汤姆 的确 是 个 很 会 讲话 的 人 . +She did not think so . 她 不 這麼 想 . +May I run with you ? 我 可以 跟 你 一起 跑 嗎 ? +If you are not going to the concert , then neither am I. 如果 你 不 去 音樂會 , 我 也 不 去 . +I am going to stay here for a couple of days . 我 將 要 在 這裡 待 幾天 . +Do not do anything like that again . 不要 再 做 那樣 的 事情 了 . +Today our artificial satellites are revolving around the earth . 今天 我们 的 人造卫星 正在 环绕 地球 运转 . +It is too late . 太晚 了 . +Where there is a will , there is a way . 有志者事竟成 . +My father is in the garden . 我 爸爸 在 花园里 . +She gave her father a tie . 她 给 了 她 父亲 一条 领带 . +Let is take a rest for a while . 我们 休息 一会儿 吧 . +He stole her watch . 他 偷 了 她 的 手表 . +You should keep your mouth shut . 你 應 該 閉 上 你 的 嘴 . +I will love you forever . 我 會 永遠 愛 你 . +Today I am feeling melancholic . 今天 我 很 憂鬱 . +Where is the nearest subway station ? 最近 的 地鐵 站 在 哪裡 ? +I am afraid I differ with you on this point . 恐怕 就 这点 上 , 我 和 你 持 不同 意见 . +I am a new student . 我 是 个 新生 . +I can not afford to buy that . 我 买不起 那个 . +You should not go . 你 不 應 該 去 . +This is their house . 这 是 他们 家 . +Tom will be there , will not he ? 汤姆 会 去 那里 , 不是 么 ? +She is about the same height as you . 她 大概 跟 你 一樣 高 . +She has a real knack for getting people to do what she wants . 她 真的 有 本事 让 别人 做 她 想 做 的 事 . +Why do you think Tom does not like it ? 你 為 甚麼 認為 湯姆 不 喜歡 它 ? +What are you crying for ? 你 為 什麼 哭 ? +There is an outside chance of winning . 贏 的 機會 微乎其微 . +Tom fell asleep in class . 汤姆 在 课堂 上 睡着 了 . +Tom deleted his Facebook account . Tom 刪 除了 他 的 Facebook 帳號 . +I have been here for a very long time . 我 在 這裡 很 長 時 間 了 . +Be nice . 和 气点 . +Everybody except Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I got on the wrong train . 我 上錯 了 火車 . +In doing anything , you must do your best . 做 任何 事 , 你 必须 要 做到 最好 . +Even expert drivers can make mistakes . 再 怎麼 經驗 老 到 的 司機 都 會 出錯 . +The teacher got quite well again . 老師 再次 恢 復 健康 了 . +Why did you use up all the money ? 为什么 你 花 了 所有 钱 ? +The bucket was full of water . 這個 桶 裝滿 了 水 . +She speaks English better than any of her classmates . 她 的 英語 說 得 比 班上 任何人 都 好 . +Tom is now living in Boston . 汤姆 现在 住 在 波士顿 . +I will deal with this problem as soon as I can . 我会 尽快 处理 这 问题 . +Can someone answer the telephone ? 有人 可以 接電話 嗎 ? +We should be safe here . 我们 在 这里 应该 是 安全 的 . +That is too easy . 那 太 简单 了 . +I have no homework today . 我 今天 沒 有功 課 . +I am busy cooking at the moment . 我 此刻 正忙 著 做 飯 . +He walks in the park every morning . 他 每天 早上 在 公園 裡 散步 . +That was not too bad . 那 不 太坏 . +I do not like being treated like this . 我 不 喜欢 以 这种 方式 被 对待 . +Who will take care of the dog while we are away ? 當 我們 離開 的 時候 , 誰 來 照顧 狗 ? +I gave them clothing and some food . 我 給 了 他們 衣服 和 一些 食物 . +I wish I could stop thinking about Tom . 希望 我 可以 不再 想 Tom . +Are you looking for work ? 你 在 找 工作 吗 ? +Sorry , can I borrow it for a minute ? 不好意思 , 可以 借過 一下 嗎 ? +Do you have a list of hotels ? 你 有 旅館 名錄 嗎 ? +My mother left me a message . 我 媽媽 留 了 口信 給 我 . +Can you walk ? 你們 能 走 嗎 ? +He is in a bad mood . 他 心情 不好 . +They did not come here , did they ? 他們 沒來 這裡 , 是 嗎 ? +People should get more involved . 人们 需要 更多 的 交流 . +Stay out of the rain . 別 被 雨淋 了 . +She is as tall as you . 她 跟 你 一樣 高 . +I am in a bad mood today . 我 今天 的 心情 不好 . +Could you check the tire pressure ? 你 能 檢查 一下 這個 輪胎 的 氣壓 嗎 ? +I know how old you are . 我 知道 你 多 大 了 . +Let is have dinner together . 一起 吃晚饭 吧 . +War may break out at any moment . 戰爭 隨時 可能 爆發 . +You can bank on that . 你 可以 相信 那個 . +I know you like sports . 我 知道 你 喜欢 体育运动 . +Please make a milkshake for me . 請 幫 我 做 個 奶昔 . +Count to thirty . 数 到 三十 . +Was I wrong ? 我 错 了 吗 ? +The contract is in the bag , so let is go out and celebrate . 合同 已经 到手 了 , 那 就 出去 庆祝 一下 吧 . +The meeting has almost ended . 会议 接近 了 尾声 . +I gave her her dictionary back . 我 把 她 的 字典 还给 了 她 . +I gave them one thousand yen each . 我 給 了 他們 每個 人 一千 日元 . +Tom is anxious to know the result . 汤姆 急 着想 知道 结果 . +The baby cried all night . 這 孩子 哭 了 一整夜 . +Tom definitely looks younger than Mary . 汤姆 看起来 的确 比 玛丽 年轻 . +I really do want that . 我 真的 很 想要 它 . +All men are equal under the law . 法律 之前 人人平等 . +We are going to discuss the problem tomorrow . 我們 明天 討論 這個 問題 . +I am still puzzled . 我 還 不 明白 . +She found employment as a typist . 她 找到 打字 員 的 工作 . +He is an excellent tennis player . 他 是 个 很棒 的 网球 选手 . +When was Tom fired ? 湯姆 什麼 時候 被 開除 的 ? +He was present at the meeting . 他 出席 了 会议 . +Tom took Friday off . 汤姆 星期五 闲着 . +Do you like English ? 你 喜歡 英語 嗎 ? +Wait until the light changes to green . 等到 燈 變為 綠色 . +There has been a good apple harvest this year . 今年 蘋果 的 收成 不錯 . +He was not able to attend the party . 他 無法 參加 這個 派 對 . +He asked if I liked Chinese food . 他 問 我 是否 喜歡 中國 菜 . +Can you think of something better ? 你 能 想到 更好 的 東西 嗎 ? +I helped my mother in the kitchen . 我 在 廚房 裡 幫 媽媽 . +Are you angry ? 你 生气 了 吗 ? +I ate a hasty lunch . 我 匆忙 的 吃 了 午餐 . +Tom bought a house for Mary . 汤姆 给 玛丽 买 了 个 房子 . +I saw her swim . 我 看見 她 游泳 . +I live in an apartment in the city . 我 住 在 城市 中 的 一間 公寓 裡 . +Tom sketched a picture of an elephant for Mary . 汤姆 给 玛丽 画 了 大象 的 素描 . +There are some cookies in the jar . 罐子 裡 有 一些 餅 乾 . +Where can I get a taxi ? 我 在 哪裡 可以 搭到 計程 車 ? +You have got a lot of willpower . 你 的 意志力 很 強 . +He made good use of the opportunity . 他 好好 地 利用 了 這個 機會 . +Has she ever fallen in love ? 她 曾经 坠入 过 爱河 吗 ? +More coffee , please . 請 再 給 我 一點 咖啡 . +The problem is not Tom . 問題 不是 湯姆 . +This town is quite different from what it was ten years ago . 這 鎮子 跟 十年 前 的 它 差別 很大 . +I am looking for a room for rent . 我 在 找 一間 出租 的 房間 . +I find politics very interesting . 我 對 政治 很感 興趣 . +Did you remember that you were supposed to buy candles ? 你 记得 自己 该 买 蜡烛 吗 ? +Do you really believe that is what happened ? 你 真的 相信 那 发生 了 吗 ? +Life is very hard . 人生 良苦 . +I would like to make a reservation . 我 要 預約 . +I am tired of eating fast food . 我 厌倦 吃快餐 了 . +I found something interesting in the town . 我 發現 了 鎮 上 一些 有趣 的 事 . +We could stay in Boston for a few more days if you like . 如果 你 愿意 的话 , 我们 可以 在 波士顿 多 待 几天 +They both want a child . 他倆 想要 一個 孩子 . +You like to talk about architecture , do not you ? 你 喜欢 讨论 建筑 , 不是 吗 ? +We do not live in Boston . 我们 不住 在 波士顿 . +Tom has a large jar of pennies . 湯姆 有 一大 罐 零 錢 . +They are talking . 他們 在 說 話 . +I can not hear you . 我 聽 不到 你 的 聲音 . +I will provide you all the necessary information . 我会 把 所有 有用 的 信息 提供 给 您 的 . +I will bring my sister to the party . 我 會 帶 我 妹妹 去 派 對 . +Did you receive my letter ? 你 收到 了 我 的 信 了 嗎 ? +Air is to us what water is to fish . 空气 对 人 来说 就是 水对鱼 的 意义 . +She beckoned me to come in . 她 招呼 我 进来 . +Hello , Tom . 你好 , 汤姆 . +This river is dangerous to swim in . 在 這條 河裡 游泳 很 危險 . +It is no use arguing with her . 和 她 争辩 是 没用 的 . +You 'd better stay here a little longer . 你 最好 在 這裡 待 久 一點 . +Tom does not know how to tie his shoes . 汤姆 不 知道 怎么 系 自己 的 鞋带 . +I cannot afford to pay so much . 我 付不起 這麼 多 錢 . +I would like to brush up my English . 我 想 复习 英语 . +I am planning to study tonight . 我 打算 今天 晚上 讀書 . +Sorry , I made a mistake . 对不起 , 我 错 了 . +Without your advice , I would have failed . 沒有 你們 的 意見 , 我 就 失敗 了 . +I appreciate your concern . 我 感謝 你 的 關心 . +Have you ever loved a man ? 你 曾經 愛 過 一個 男人 嗎 ? +She ran as fast as possible . 她 盡 可能 地 快 跑 . +That makes sense . 那 是 有 道理 的 . +Please show me the menu . 請 給 我 菜 單 . +This is the most beautiful sight that I have ever seen . 这 是 我 见 过 最美 的 景色 了 . +I wish Tom would just go away . 我 希望 汤姆 走开 . +Yours is over there . 你 的 在 那儿 呢 . +You are kidding ! 你 開 玩笑 吧 ! +How can that be possible ? 那 怎麼 可能 ? +I want to study French . 我 要 学法语 . +Tom has gained weight . 湯姆 變 胖 了 . +Water is liquid . When it freezes , it becomes solid . 水 是 液体 . 冻 起来 就 成 了 固体 . +I would not ask this of you if it were not important . 如果 不是 它 很 重要 , 我 不 會 問 你 . +Our teacher made us clean the room . 我們 老師 要 我們 打掃 這間 房間 . +She translated it word for word . 她 逐字 地 翻譯 它 . +He does not lie . 他 不 说谎 . +He makes it a rule to take a walk every morning . 他 给 自己 定下 每天 早上 散步 的 规矩 . +I met an old woman . 我 遇见 了 一位 老妇人 . +That is a strange question . 真是 奇怪 的 问题 . +Your answer is right . 您 的 答案 是 正確 的 . +My car is in the shop . 我 的 車 在 店 裡 修理 中 . +Kindness is the language which the deaf can hear and the blind can see . 善良 是 聾子 能 聽 盲人 能看 的 語言 . +She appears to have a headache . 她 看 起來 頭痛 的 樣子 . +I have never met her . 我 以前 从没 见 过 她 . +Tom is the head of the company in name only . His son makes all the important decisions . 汤姆 名义 上市公司 的 领导 . 他 儿子 做 所有 重大 决策 . +The good thing about this electronic dictionary is that it is easy to carry . 这 电子辞典 的 好处 就是 便于 携带 . +Ten prisoners broke out of jail . 十名 囚犯 逃獄 了 . +I do not want any excuses . 我 不想 听 解释 . +I will give you this camera . 我 會 給 你 這 台 相機 . +Who are we ? 我們 是 誰 ? +All of my friends got asked to dance except me . 除了 我 , 其他人 都 被 邀请 去 跳舞 了 . +I bought a kite to give to you . 我 買 了 一個 風箏 給 你 . +I was nine years old when I asked my mom if Santa Claus really existed . 我 九岁 的 时候 问 我 妈妈 圣诞老人 是否 真的 存在 . +We can not talk here . 我们 不能 在 这里 谈 . +This sofa can seat three people easily . 这 张 沙发 起码 可以 坐 三个 人 . +After I got married , my Japanese got better and I could understand more . 在 我 结婚 之后 , 我 的 日语 水平 提高 了 , 能 理解 更 多 日语 了 . +I bought a newspaper written in English . 我 买 了 份 英文 写 的 报纸 . +His speech moved us . 他 的 演说 打动 了 我们 . +I was kicked out of high school . 我 被 高中 退學 了 . +I think Mary is very attractive . 我 认为 玛丽 很 有 吸引力 . +I laughed . 我 笑 了 . +Your problem is similar to mine . 你 的 問題 和 我 的 相似 . +My father does not like soccer . 我 爸爸 不 喜欢 足球 . +I am really busy . 我 真的 好 忙 . +I am pregnant . 我 怀孕 了 . +The bride looked very beautiful . 新娘 看 起來 非常 漂亮 . +When does your new store open ? 你 的 新 商店 什么 时候 开张 ? +Tom is unbelievably stupid . 汤姆 傻 得 难以置信 . +He presented her with a doll . 他 送 她 一個 洋娃娃 . +This book is worth reading again . 这 本书 值得 再 看一遍 . +Why do you work here ? 你 為 什麼 在 這兒 工作 ? +They called off their engagement . 他們 解除 了婚 約 . +I need to find somewhere to practice dancing . 我 需要 找 個 地方 練舞 . +How is your new class ? 新 的 班级 怎么样 ? +Tom lost his car keys . 汤姆 丢 了 他 的 车 钥匙 . +It has nothing to do with you . 不關 你 的 事 . +They drive on the left in England . 在 英國 開車 要 靠左 行駛 . +He likes playing soccer . 他 喜歡 踢足球 . +His office is near the train station . 他 的 辦 公室 離車 站 很 近 . +Tom and Mary are both wearing brown hats . 汤姆 和玛丽 都 戴 着 褐色 的 帽子 . +You are lying , are not you ? 在 撒谎 吧 ? +When you are here , I feel safer . 你 在 這裡 的 時候 , 我 感到 更 安全 . +This is a picture of an airport . 這 是 一張 機場 的 照片 . +You deserve the prize . 你 應該 得到 這個 獎金 . +My wish is to become a teacher . 我 的 願望 是 成為 一個 老師 . +We agreed to share the housework . 我們 同意 分擔 家務 . +It can not be ! 这 不 可能 ! +His father does not play golf . 他 父親 不 打 高爾夫 球 . +Tom did not want to disappoint Mary . 汤姆 不想 让 玛丽 失望 . +He was the strongest candidate for the position . 他 是 那个 职位 最 有 希望 的 候选人 . +In recent years , science has made remarkable progress . 这 几年 , 科学 取得 了 显著 的 进步 . +Electricity is very useful . 电 很 有用 . +They ate sandwiches for lunch . 他们 午饭 吃 了 三明治 . +All at once , he spoke out . 他 突然 发言 了 . +I already apologized . 我 已经 道歉 了 . +How long do you plan on staying ? 你 准备 待 多久 ? +It was already very late . 天色已晚 . +Let me help you with your work . 讓 我 幫 你 做 你 的 工作 . +I am as tired as tired can be . 我 累得 不能 再累 了 . +Tom has traveled around the world . 汤姆 环游 了 世界 . +She is my sister . 她 是 我 的 姊妹 . +Even with all his wealth and fame , he is unhappy . 尽管 有 金钱 和 名誉 , 他 还是 不 幸福 . +Artificial leather can not compare with the real thing . 人造 皮革 是 比不上 真皮 的 . +Tom was a little drunk . 汤姆 有点 醉 . +Nobody has seen God . 沒 有人 看過 神 . +We also went to the temple . 我们 也 去 了 庙里 . +Tom tried to convince Mary to knit him a scarf . 湯姆 想 說 服 瑪麗 給 他 織 一條 圍巾 . +Get dressed . 穿 上 點 衣服 . +There are only three girls in the class . 這個 班 只有 三個 女生 . +Tom said he was sick . 湯姆 說 他 病 了 . +He likes watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +He explained the literal meaning of the sentences . 他 解释 了 句子 的 字面 意思 . +My scalp is very itchy . 我 的 頭皮 非常 癢 . +Tom does not really love Mary . 汤姆 不是 真的 爱 玛丽 . +I took my temperature every six hours . 我 每 六小时 量 一次 体温 . +I will still have a scar from that accident . 我 还 留 着 那 起 事故 的 伤疤 . +It is fun to speak in English . 说 英语 很 有趣 . +You 'd better take an umbrella with you today . 你 今天 最好 隨身 帶 把 傘 . +The cat got through the hedge . 貓 從 樹籬 穿 過去 . +I need a pencil . Can I use one of yours ? 我 需要 一支 铅笔 , 我 能 用 你 的 其中 一支 吗 ? +Tom wants to tell you something . 汤姆 想 告诉 你 一些 事情 . +Watch out for thieves around here . 在 這 附近 當 心 小偷 . +Is this your pencil ? 這 是 你 的 鉛 筆 嗎 ? +We have been watching you . 我们 在 看着 你 . +I have a bit of bad news . 我 有个 坏消息 . +Which road goes to city hall ? 哪 條路 通往 市政 廳 ? +I have rented a room not far from here . 我 租 了 一間 離 這裡 不遠 的 屋子 . +My father is hobby is growing roses . 我 父親 的 嗜好 是 種 玫瑰花 . +He is not stupid . 他 不是 傻子 . +She stopped to smoke a cigarette . 她 停下来 抽 了 根烟 . +There is not any solution . 无解 . +He is good at riding a horse . 他 擅長 騎馬 . +The children went out to play . 孩子 們 出去玩 了 . +I quit . 我 退出 . +What do you think of Japan is economy ? 您 怎樣 看 日本 的 經濟 呢 ? +I dove into the river . 我 跳进 了 河里 . +The chances are he is already heard the news . 他 有 可能 已經 得知 這 消息 . +If he is innocent , it follows that his wife is guilty . 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +You are going to wreck your eyesight if you play games all the time . 要是 你老 打游戏 的话 , 你 的 视力 会 下降 的 . +The phone rang while I was taking a shower . 我 在 洗澡 的 时候 , 电话响 了 . +I will call you up tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +It needs to be repaired . 它 需要 修理 . +You are the only one who can help us . 你 是 唯一 一个 能 帮助 我们 的 人 . +I do not have any money on me . 我 身上 沒有 錢 . +He teaches English to his friends . 他 對 他 的 朋友 教 英語 . +It is warm in here . 這裡 是 溫暖 的 . +I thought Tom would never shut up . 我 認為 湯姆 不 會 住口 . +He rushed out of the office . 他 急忙 出 了 办公室 . +I love movies . 我 愛 電影 . +You may choose any of them . 你 可以 選擇 他們 之中 的 任何 一個 . +Does he write letters in English ? 他 用 英文 寫信 嗎 ? +I was just about to leave . 我 就要 离开 了 . +I am leaving for Chicago next week . 我 下週 將 離 開去 芝加哥 . +Do you know whether she can speak English ? 你 知道 她 是否 會 講 英語 嗎 ? +I do not have the address now . 我 現在 沒有 地址 . +A good idea came to him . 他 想到 一个 好 主意 . +Butter and cheese are made from milk . 奶油 和 乳酪 是 由 牛奶 做成 的 . +I 'd rather be a bird than a fish . 我 寧願是一 隻 鳥 勝 過 一 條 魚 . +They told me it was your fault . 他们 告诉 我 这 是 你 的 错 . +Do you go to church ? 你 去 教堂 嗎 ? +I enjoyed talking with him at the party . 在 派对 中 我 和 他 聊得 很 开心 . +She married a musician . 她 和 一位 音乐家 结了婚 . +Our country is climate is temperate . 我國 是 溫帶 氣候 . +Tom will follow my advice . 汤姆 会 听从 我 的 建议 . +I am sick and tired of hamburgers . 漢堡 我 都 吃 膩 了 . +I am not interested . 我 不感兴趣 . +Tom advised me not to buy a secondhand car . 汤姆 建议 我 不要 买 二手车 . +What a pity you can not dance ! 可惜 你 不 會 跳舞 ! +Do you still need tea ? 你 还 需要 茶 吗 ? +Take care not to catch a cold . 小心 不要 着凉 . +He returned from abroad yesterday . 他 昨天 從 國外 回來 . +Tangerines contain a lot of vitamin C. 柳丁 含有 大量 的 維生素 C . +Are you dating anyone ? 你 跟 人 约会 吗 ? +Tom passed away on October 20 , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +My sister made me a beautiful doll . 我 姊姊 做 了 一個 漂亮 的 娃娃 給 我 . +Would you lend me your dictionary ? 你 可以 借 我 你 的 字典 嗎 ? +They made us work all day . 他們 讓 我們 工作 了 一整天 . +Ueno is the station after next . 下 下 一站 是 上野 站 . +She said to herself , " I am very happy . " 她 对 自己 说 : “ 我 很 幸福 ” . +Mary was wearing a navy blue skirt . 玛丽 穿着 深蓝色 的 裙子 . +You should have never interfered . 你 从来不 该 干涉 . +You are the best man for the job . 你 是 做 這份 工作 最好 的 人 選 . +I do not know any blind men . 我 不 认识 任何 一个 盲人 . +The accident took place at that corner . 事故 發生 在 轉角 . +We do not have another choice . 我们 没有 别的 选择 . +He only had 100 dollars . 他 只有 100 美元 . +Some babies learn to swim even before they are one year old . 有些 宝宝 甚至 在 一岁 之前 就 学习 游泳 了 . +Where is the accent on the word ' Australia ? ' “ Australia ” 这个 词 的 重音 要 放在 哪 ? +I decided to buy a car . 我 決定 買 一輛 車 . +Do you know which book sells well now ? 你 知道 现在 哪 本书 卖 得 好 吗 ? +Take whatever you like . 你 喜歡 什麼 就 拿 吧 . +Mary reminds me of my mother . 玛丽 让 我 想起 我 母亲 . +He is my father . 他 是 我 父親 . +I am getting off at the next station . 我 在 下 一站 下车 . +Tom wrote his name in the sand with a stick . 汤姆 用 棍子 在 沙 上 写 了 他 的 名字 . +Although it is snowing , I must go . 虽然 正在 下雪 , 但是 我 也 非去不可 . +What is the name of this river ? 這條 河 的 名字 是 什麼 ? +Here are some pictures . 這裡 有 一些 圖片 . +I am sorry to disappoint you . 我 對 讓 你 失望 感到 抱歉 . +The sky is full of stars . 天空 布满 星辰 . +For that reason , he lost his job . 因為 那個 原因 , 他 失去 了 工作 . +Tom is too tired to help you do that today . 湯姆 今天 太累 , 不能 幫 你 . +I was in the bath when the phone rang . 在 我 洗澡 的 时候 , 电话响 了 . +Pass me the wine , please . 請 把酒 遞 給 我 . +I wish I earned more money . 我 希望 我 賺 更 多 的 錢 . +Tom canceled his hotel reservation . 汤姆 取消 了 他 的 酒店 预订 . +He is but a child . 他 不过 是 个 孩子 . +Are you coming along with us ? 你 要 跟 我們 一起 來 嗎 ? +They made fun of Mary . 他們 取笑 瑪麗 . +Have you ever seen Tom angry ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +My husband earns $ 100,000 a year . 我 丈夫 一年 收入 10 萬 美元 . +It is hard to believe that Tom was not aware that Mary was in love with him . 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +I will play the guitar for you . 我 會 為 你 彈 吉他 . +Let is go ! 我們 開始 吧 ! +We are waiting for the right time . 我們 在 等對 的 時機 . +Thank you . 谢谢 . +He was sitting there . 他 之前 坐在 这里 . +At first , he could not speak English at all . 起初 , 他 不 會 說 英語 . +Tom said he read a book about this ship . Tom 说 他 在 这次 的 航行 中 读 了 一 本书 . +Now , what do you want me to do ? 現在 , 你 想 讓 我 怎麼 做 ? +She resembles her mother in every respect . 她 在 各 方面 都 像 她 的 母親 . +Two hundred people died of cholera last year . 去年 有 两百人 因 霍乱 死亡 . +Would you please close that window ? 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +I am good at skiing . 我 擅長 滑雪 . +He gives some meat to the dog . 他 給 這 隻 狗 一些 肉 . +He has no right to interfere in our family affairs . 他 无权 干涉 我们 的 家庭事务 . +That company deals mainly in imported goods . 這 公司 主要 做 進口 貨物 的 生意 . +Well begun is half done . 好 的 開始 是 成功 的 一半 . +Humans can not live without air . 没有 空气 , 人 无法 存在 . +That house is very small . 這 房子 非常 小 . +Tom should have finished it by now . 汤姆 现在 应该 已经 完成 了 . +He is the oldest son . 他 是 长子 . +Did Tom show an interest ? 汤姆 感兴趣 吗 ? +I do not really like the stores there . 我 不是 很 喜歡 那裡 的 商店 . +They stole apples from my orchard . 他們 從 我 的 果園 偷 了 蘋果 . +He went by bicycle . 他 是 騎 自行 車 去 的 . +They must have arrived home by this time . 他們 在 這個 時候 一定 已經 到 家 了 . +She works very hard . 她 很 努力 工作 . +We hear with our ears . 我们 用 耳朵 听 . +I want to emphasize this point in particular . 我 想 特别强调 这 一点 . +How do you like your eggs done ? 你 的 蛋 要 怎麼 做 ? +I will carry this suitcase for you . 我 會 幫 你 提 這個 手提箱 . +He stayed there a couple of days . 他 在 那裡 待 了 幾天 . +Tom made a sandwich . 汤姆 做 了 个 三明治 . +A true gentleman would not betray his friends . 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +It was raining heavily when I got up this morning . 我 今天 早上 起来 的 时候 雨 下得 很大 . +My internet connection was cut off . 我 的 網路 連 線 被 切斷 了 . +She was visibly afraid to be here . 顯然 她 害怕 待 在 這裡 . +Time is money . 时间 就是 金钱 . +Tom , what do you want for supper ? 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +We go fishing from time to time . 我们 时不时 地 去 钓鱼 . +Christmas is soon , right ? 聖誕節 很快 就 到 了 , 對 嗎 ? +It is already nine o 'clock . 已经 9 点 了 . +I will write letters to you as often as I can . 我会 尽可能 多 给 你 写信 的 . +I am poor at drawing . 我 不 擅長 畫畫 . +Look at the large building over there . 看 那边 那 幢 高楼 . +It is a clear day . 天空 很 晴朗 . +You are the one who quit . 你 是 退出 的 那個 . +Is it true that Tom can not read or write ? 汤姆 真的 不会 读 也 不会 写 吗 ? +You smoke far too much . You should cut back . 你 吸 太 多 煙 了 . 你 應 該少 抽 一點 . +I used to eat pizza , but now I do not . 我 以前 吃 披萨 , 但 现在 不了 . +Tom is fearless . 汤姆 无所畏惧 . +I will get in . 我 會 進去 . +I think to clearly distinguish opinion from fact is important . 我 认为 辨别 清楚 意见 和 事实 很 重要 . +The movie theater was filled with people . 這家 電 影院 擠滿 了 人 . +He is the manager of the marketing department . 他 是 营销部 的 负责人 . +Do not miss this chance . 不要 让 机会 溜走 . +I do not like to go out after dark . 我 天黑 后 不 喜欢 出门 . +He was brave . 他 很 勇敢 . +Come to my house whenever you like . 只要 你 喜歡 , 你 隨時 可以 來 我家 . +This book is very interesting . 這 本書 很 有趣 . +Do you guys know each other ? 你們 認識 嗎 ? +Tom is always daydreaming . Tom 總是 在 做 白日 夢 . +Her goal is to become a teacher . 她 的 目的 是 成为 教师 . +I will have finished reading this novel by the time you come tomorrow . 你 明天 来 的 时候 , 我 就 看 完 这本 小说 了 . +He is not as intelligent as his older brother . 他 不 像 他 的 兄长 那样 聪明 . +Tom will come back from Boston next Monday . 汤姆 会 在 下周一 从 波士顿 回来 . +Let me give you an example . 让 我 来 给 你 举 个 例子 吧 . +Perhaps we could get a drink sometime . 要 不 我们 找 时间 喝 一顿 . +I feel like taking a walk now . 我 現在 想要 散步 . +He went to the United States to study medicine . 他 去 美国 学医 了 . +She put the key in her pocket . 她 把 鑰匙 放在 她 的 口袋 裡 . +That dress looks good on you . 那条 连衣裙 很 适合 您 . +Do not be afraid to make mistakes when speaking English . 說 英語 的 時候 不要 怕 犯 錯 . +How do you account for that ? 你 怎样 作出 的 解释 ? +I am very hungry . 我 很 餓 . +The cake is delicious . 蛋糕 很 美味 . +Do you know a good dentist ? 你 有 認識 好 的 牙醫 嗎 ? +Tom does not know what he should do . 湯姆 不知所措 . +You will find this map very useful . 你 會 發現 這 張 地圖 非常 有用 . +Tom has just remodeled his kitchen . 汤姆 刚 改建 了 他 的 厨房 . +Would you like some more tea ? 您 想 再 来 点 茶 吗 ? +Tom does not have a driver is license . 湯姆 沒有 駕駛 證 . +He does not look his age . 他 的 长相 与 年龄 不符 . +He seems quite happy . 他 看起来 好像 很 幸福 . +Tom probably knows why the meeting was postponed . 湯姆 大概 知道 會議 延期 的 原因 . +My mother teaches flower arranging . 我 母親 教 插花 藝術 . +I am your father . 我 是 你 爸爸 . +He brought us sad news . 他 给 我们 带来 了 令人 难过 的 消息 . +What did you do with that camera ? 你 用 那 台 相機 做 了 什麼 ? +Everybody is equal before the law . 法律 面前 人人平等 . +Why did you leave the class yesterday ? 您 昨天 为什么 离开 教室 ? +I like your way of thinking . 我 喜歡 你 思考 的 方法 . +She kept crying all night . 她 一 整晚 都 在 哭 . +I was frightened by the sight . 我 被 这 情景 吓到 了 . +I am off today . 我 今天 休息 . +The box is empty . 盒子 裡面 沒有 東西 . +You can swim much better than him . 你 游泳 游得 比 他 好得多 . +We used to go skating every weekend . 过去 我们 每个 周末 都 去 溜冰 . +He waited for me until I arrived . 他 等 我 直到 我 來 . +Justice will prevail in the end . 正义 终将 胜利 . +I can not bring myself to do such a thing . 我 不能 让 自己 做 这样 的 事 . +As soon as he sat down , he picked up the telephone . 他 一 坐下 , 就 拿 起 了 電話 . +I will get some glasses . 我 會 去 拿 一些 玻璃杯 . +What is so special about Tom ? 汤姆 有 什么 很 与众不同 的 地方 吗 ? +Tom changed into his uniform . 汤姆 换上 制服 . +Life in Japan is expensive . 在 日本 生活 消费 很 高 . +I can not keep up with Tom . 我 跟不上 汤姆 . +Tom went abroad . 湯姆 出國 了 . +Who organized that meeting ? 谁 组织 了 这次 会议 ? +I will be back by six o 'clock . 我 将 6 点 回来 . +I help my mother with the housework every day . 我 每天 都 帮 我 妈 做 家务 . +Have you ever dreamed about me ? 你 梦见 过 我 吗 ? +What is the meaning of this word ? 這個 字 是 什麼 意思 ? +Are you feeling tired ? 你 覺 得 累 嗎 ? +I saw him cross the road . 我 看见 他 穿过 了 马路 . +If he knew her phone number , he could call her . 如果 他 知道 她 的 电话 , 他 会 打 给 她 . +Where should I put my laundry ? 我 應該 把 我 要 洗 的 衣服 放在 哪裡 ? diff --git a/TRANSLATE/cmn.txt_test_tokenized.tsv b/TRANSLATE/cmn.txt_test_tokenized.tsv new file mode 100644 index 0000000..ff37517 --- /dev/null +++ b/TRANSLATE/cmn.txt_test_tokenized.tsv @@ -0,0 +1,2402 @@ +Call me when you get settled in . 你 安 頓好 就 打 電話 給 我 . +Tom owes Mary thirty dollars . Tom 欠 Mary 三十元 . +She is always losing her handkerchief . 她 老 是 弄 丢 她 的 手帕 . +Nobody else offered to help . 没有 其他人 伸出 援手 . +Tom is boring . 汤姆 是 个 无聊 的 人 . +He has been to Hawaii several times . 他 去过 夏威夷 几次 . +French bread is delicious . 法国 的 面包 很 好吃 . +Where did you get this ? 这 是 你 哪里 拿 的 ? +She saw a tall man yesterday . 她 昨天 看见 一个 高大 的 男人 . +I need to try . 我 需要 尝试 . +Miyazaki is not what it used to be . 宮崎 不是 它 往日 的 樣子 了 . +Please help me fill out this form . 請 幫 我 填 這 張 表格 . +He lived in Matsue for seven years . 他 住 在 松江 七年 了 . +Tom is daughter pretended not to know him when he came to pick her up from school in his battered old car . 当 汤姆 开 着 他 破旧 的 雷泽车 来 接 女儿 放学 时 , 他 的 女儿 假装 不 认识 他 . +I wonder if he loves me . 我 不 知道 他 是否 愛 我 . +We looked out the window , but we did not see anything . 我们 看 了 窗外 , 但 什么 都 没 看见 . +His word is law . 他 的话 就是 命令 . +She was not in the mood for lunch . 她 不想 吃 午 飯 . +I believe you are honest . 我 相信 你 是 诚实 的 . +Since I had a cold , I did not go visit him . 我 没有 拜访 他 , 因为 我 感冒 了 . +Shame on you guys . 替 你们 脸红 啊 . +It is important to follow a strict diet . 重要 的 是 要 遵循 嚴格 的 飲食 控制 . +Tom , have you already eaten lunch ? 汤姆 , 你 已经 吃 过 午餐 了 吗 ? +John is two years older than me . John 比 我 大 两岁 . +Where will the bus pick us up ? 巴士 會 在 哪裡 接 我們 ? +Money takes a long time to earn , but you can spend it in no time . 錢 要 花 很 長 的 時間 來 賺 , 但 你 可以 一下子 就 花掉 它 了 . +Tom is intentions were quite clear . 湯姆 的 目的 很 明顯 . +She is hard up for money . 她 錢 不夠 . +This is a comfortable chair . 这 是 张 舒服 的 椅子 . +No one here will betray you . 這裡 沒 有人 會 背叛 你 . +I can barely stand his behavior . 我 可以 勉強 地 容忍 他 的 行為 . +Do you have many friends ? 你 有 很多 朋友 吗 ? +Her nose is bleeding . 她 在 流鼻血 . +She waited for hours and hours . 她 等 了 好 幾個 小 時 . +You speak fluent English . 你 英语 说 得 很 流利 . +He can play tennis very well . 他 网球 打 得 很 好 . +Every man has his price . 每个 人 都 有 个 价 . +It is rude to talk during a concert . 在 音樂會 中 講 話 是 不 禮貌 的 . +Please choose one person . 請 選擇 一個 人 . +I will lend you my notebook . 我 會 借 給 你 我 的 筆記 本 . +Can I stay here with you ? 我 可以 和 你 一起 呆 在 这里 吗 ? +He does not tell lies . 他 不 说谎 . +I like having breakfast with you . 我 喜欢 和 你 一起 吃 早饭 . +Is that love ? 那 是 愛 嗎 ? +She put clean sheets on the bed . 她 把 乾 淨 的 床單 鋪 在 床上 . +She studies English every day . 她 每天 學習 英語 . +I do not like movies . 我 不 喜歡 電影 . +He regrets his having wasted his money . 他 后悔 自己 的 挥金如土 . +I 'd like you to tell me the truth . 我 想要 你 把 真相 告诉 我 . +Call security ! 叫 保安 来 ! +No one is stopping you . 没有 人 在 阻止 你 . +That just does not make sense to me . 那 只是 對 我 來說 沒 有意 義 . +What does that gentleman do for a living ? 那位 先生 靠 什么 生活 ? +What time will the train get to Yokohama ? 火车 什么 时候 到 横滨 ? +My house does not have a roof . 我 的 房子 沒有 頂 . +My brother wants to study abroad . 我 哥哥 要 出 國 唸 書 . +Thanks for yesterday . 昨天 的 事 真的 要 谢谢您 了 . +Everything went according to plan . 一切 按 計劃 進行 . +I think you are a lot stronger than you know . 我 认为 你 比 你 想象 的 更 强 . +It can be dangerous . 它 有 危险 . +When I hear this song , I think of you , and miss you . 當 我 聽到 這 首歌 , 我 想起 了 你 , 並 想念 著 你 . +She has beautiful handwriting . 她 的 筆跡 很美 . +Tom knows that we are not happy . 湯姆 知道 我們 不 高興 . +Are you free this weekend ? 這個 週末 你 有 時間 嗎 ? +Look at my new car . 看看 我 的 新車 . +All aboard ! 请 上船 ! +He is twice as old as she is . 他 的 年龄 是 她 的 两倍 . +This summer I went on vacation in Scotland . 这个 夏天 , 我 去 苏格兰 度假 了 . +It is very big of you to admit you are wrong . 你 能 承认 你 错 了 是 很 伟大 的 . +He confessed that he was guilty . 他 承认 有罪 . +He was alone there . 他 獨自 在 那裡 . +You have something stuck in your teeth . 牙齿 卡 了 点 东西 . +My father repaired my old watch . 我 父親 修理 了 我 的 舊 手 錶 . +Tom is quite good at cooking . Tom 對 烹飪 很 在 行 . +He is very stingy with his money . 他 非常 吝啬 . +With the weather getting worse , the departure was put off . 由于 天气 变差 , 出发 延迟 了 . +Tom has to protect himself . 汤姆 得 保护 自己 . +There seemed to be no answer to the problem . 这个 问题 似乎 没有 答案 . +What do you think I want ? 你 認為 我 想要 甚麼 ? +The girls were asleep . 女孩 们 睡着 了 +I walked three @-@ fourths of a mile . 我 走 了 四分之三 英里 . +Three voted against the idea . 有 三票 反对 这 主意 . +Tom does not like it when people cuss in front of his children . 汤姆 不 喜欢 人们 在 他 孩子 面前 讲 坏话 . +He is always been kind to me . 他 总是 对 我 很 亲切 . +Tom will not know what to do . 湯姆 不 會 知道 要 做 甚麼 . +Tom said he is going to tell us what he knows . 湯姆 說 他 要 把 他 知道 的 告訴 我們 . +I have what you need . 我 有 你 需要 的 . +Let is go now . 我们 现在 去 吧 . +She gave birth to her first child at twenty years old . 她 在 二十 歲 的 時候 生下 第一 個 孩子 . +I am looking forward to seeing you . 我 期待 見 到 你 . +You are no better at remembering things than I am . 你 记 事情 的 能力 并不比 我 好 多少 . +I had fun last night . 昨晚 我 玩 得 开心 . +Put the book back on the shelf . 把 書 放回 書 架上 . +Please think about the problem . 請 想想 這個 問題 . +If he does not come , we will not go . 如果 他 不 來 了 , 我們 不 會 去 . +My aunt gave me an album . 我 姑姑 給 了 我 一本 相簿 . +She played a waltz on the piano . 她 在 鋼琴 上彈 了 一首 華爾滋 舞曲 . +Delete Tom is name from the list . 从 名单 上 删掉 汤姆 的 名字 . +It is one of the reasons . 這 是 其中 一個 原因 . +Who is to blame for the accident ? 誰 該 為 這次 事故 負責 ? +Let is sing the song in English . 讓 我們 唱 英文歌曲 . +If she had married you , she would be happy now . 如果 她 和 你 结婚 了 , 她 现在 会 很 幸福 . +It is just your imagination . 这 只是 你 的 想象 . +I was calm until I saw the syringe . 看到 针管 儿 之前 我 一直 都 很淡 定 . +The child followed me to the park . 這 孩子 跟著 我 去 公園 . +I have not seen you in ages . 我 已經 好久 沒有 見到 你 了 . +It is late . 很 晚 了 . +Your brother will not buy it . 你 哥哥 不 會 買 它 . +My father drives to work . 我 父親 開車 去 上班 . +I did not study at all yesterday . 我 昨天 都 沒讀 書 . +Tom learned French . 汤姆 学习 了 法语 . +What is that bird called ? 那 隻 鳥 叫什 麼 名字 ? +There are strawberries in my bag . 我 的 袋子 裡 有 草莓 . +Tom can not ride a horse . 湯姆 不能 騎馬 . +A devastating earthquake hit the state capital . 一場 毀滅 性 的 地震 襲擊 了 這個 州 的 首府 . +It looks good . 看起来 不错 . +He killed that man . 他 殺 死 了 那個 人 . +The little boy is afraid of the dark . 這 小男孩 怕黑 . +He left after he had lunch . 他 吃 过 午餐 就 出去 了 . +I am awfully sorry that I was late . 非常 抱歉 , 我 遲到 了 . +I refuse to answer your question . 我 拒绝 回答 你 的 问题 . +Nara is a very old city . 奈良 是 个 非常 古老 的 城市 . +It has had no effect on him . 这 对 他 没有 影响 . +Tom is drunk . 汤姆 醉 了 . +I can not eat this much food . 我 不能 吃 这么 多 食物 . +I did not get his joke . 我 不 懂 他 的 玩笑 話 . +I like to walk in the country . 我 喜歡 在 鄉間 散步 . +Do you eat rice in your country ? 在 你们 国家 吃 米饭 吗 ? +How much did the glasses cost ? 這 副 眼鏡 多少 錢 ? +I can not even remember what Tom looks like . 我 甚至 不能 记 起来 汤姆 长 什么样 . +That is a dumb question . 这 是 一个 愚蠢 的 问题 . +Yesterday I did not play tennis . 我 昨天 沒有 打 網球 . +If I had the money , I would immediately buy this computer . 我 要是 有钱 , 立马 就 买 这 台 电脑 . +He anonymously donated a large sum of money to the Red Cross . 他 匿名 向 红十字 捐 了 大笔 钱 . +If you eat that much , you will have a stomachache . 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +Tom is very confident , is not he ? 湯姆 很 有 信心 , 不是 麼 ? +It is a pity that you can not join us . 你 不能 和 我們 一起 來 真 可惜 . +I am not always at home on Sundays . 我 星期天 並 不 總是 在家 . +I want to see your older sister . 我 想 見 你 姐姐 . +I 'd like a table by the window . 我 要 一張 靠窗 的 桌子 . +We are ready for the next step . 我們 準備 好 了 走下 一步 . +The air conditioner does not work . 空調 故障 了 . +It is hard to tell Englishmen from Americans just by the way they look . 只 凭 长相 的话 很 难 区分 英国人 和 美国 人 . +How long were you in jail ? 你 在 监狱 里 呆 了 多久 ? +He is my type ! 他 是 我 的 菜 ! +I saw him running . 我 看見 了 他 跑步 . +I have never been to Europe . 我 从没 去过 欧洲 . +Do not let Tom die . 別 讓 湯姆 死 了 . +I took a picture of my family . 我 為 我 的 家人 拍 了 照片 . +Would you please take my picture ? 請 你 幫 我 照相 好 嗎 ? +What is your home phone number ? 你家 的 電話 號碼 幾號 ? +I did not do anything during my vacation . 在 假期 中 我什麼 都 沒有 做 . +He is in trouble . 他 有 麻烦 . +When she was three years old , her father died . 她 父亲 在 她 三岁时 死 了 . +When did you last see Tom ? 你 最后 一次 看到 汤姆 是 什么 时候 ? +I helped my mother wash the dishes . 我 幫 媽媽 洗碗 了 . +I took it for granted that you were on my side . 我 理所 當然 認為 你 會 站 在 我 這邊 . +It snowed for ten consecutive days . 雪 持续 下 了 十天 . +Do you regret marrying me ? 你 後 悔 跟 我 結婚 嗎 ? +Tom wrote us postcards . Tom 寫 明信片 給 我們 . +Tom has a big appetite . 汤姆 胃口 很大 . +My son is now as tall as I am . 我 儿子 现在 和 我 一样 高 了 . +The elevator seems to be out of order . 电梯 好像 故障 了 . +This is my daughter . 這 是 我 女兒 . +She elbowed her way onto the train . 她 擠上 了 火車 . +Tom gave us something to talk about . 汤姆 给 了 我们 可以 谈论 的 东西 . +Is Tom hurt ? 汤姆 受伤 了 吗 ? +World War I broke out in 1914 . 第一次 世界 大戰 於 1914 年 爆發 . +I 'd better do it right now . 我 马上 做 比较 好 . +You like it , do not you ? 你 喜歡 它 , 不是 嗎 ? +Tom realized it was time to leave . 汤姆 意识 到 该 走 了 . +Those are their books . 这 是 他们 的 书 . +He is used to making speeches . 他 習慣 於 作演 說 . +Horses are animals . 馬 是 動物 . +He has just published an interesting series of articles . 他 刚 发表 一系列 有趣 的 文章 . +It is becoming important for us to know how to use a computer . 知道 如何 使用 电脑 对 我们 来说 变得 很 重要 . +They are having a really good time . 他們 正 玩 得 非常 開心 . . +It is said that his father died in a foreign country . 据说 他 爸爸 在 外国 去世 了 . +We can not see the other side of the moon . 我們 看不到 月亮 的 另 一邊 . +It is getting dark . I wonder if it is going to rain . 天 变暗 了 . 我 不 知道 是不是 要 下雨 . +The mother missed her daughter who was away at college . 妈妈 想念 她 在读 大学 的 女儿 . +We did not start the fire . 我们 没 点火 . +My guess is that it will be fine tomorrow . 我 猜 明天 会 是 好 天气 . +He disappeared without a trace . 他 没有 留下 痕迹 就 消失 了 . +The recent shortage of coffee has given rise to a lot of problems . 近来 咖啡 的 短缺 造成 了 许多 问题 . +Why were you so scared ? 你 为什么 这么 害怕 ? +Are you sure about this ? 你 确定 吗 ? +You should get your hair cut . 你 该 剪头发 了 . +After school , I go to an English school to practice English conversation . 放學 後 , 我 到 一所 英語 學校 去 練習 英語 會話 . +He was made captain . 他 被 選為 隊長 . +They kept me waiting for an hour . 他們 讓 我 等 了 一個 小 時 . +He returned at six . 他 六点 回来 了 . +This movie is frightening to the children . 這部 電影 對 小孩 來說 很 可怕 . +How deep is the hole ? 這個 洞 多 深 ? +You should apologize . 你 應該 道歉 . +Few things give us as much pleasure as music . 很少 有 東西 像 音樂 一樣 帶 給 我們 這麼 多 的 快樂 . +He lied to me . That is why I am angry with him . 他 对 我 说 了 谎 , 这 就是 为什么 我 生 他 的 气 了 . +Are you students ? 你們 是 學生 嗎 ? +It is easier than I thought . 它 比 我 想 的 容易 . +She is gracious to everyone . 她 对 谁 都 很 和蔼可亲 . +Japan is not as big as Canada . 日本 不 像 加拿大 那么 大 . +Clean the dirt off the mirror . 清理 鏡子 上 的 灰塵 . +Who painted this beautiful picture ? 誰 畫 了 這幅 美麗 的 圖畫 ? +A little bird told me . 我 听 传闻 说 的 . +I know what he did . 我 知道 他 做 了 . +To the best of my knowledge , the rumor is not true . 据我所知 , 这个 谣言 不是 真的 . +He is not ashamed of being poor . 他 不 因 貧窮 而 感到 羞愧 . +What did you eat for lunch ? 你们 午饭 吃 了 什么 ? +Tom hitched a ride to Boston . 汤姆 搭便车 去 波士顿 了 . +What is Gestalt Therapy ? 什么 是 格式 塔 疗法 ? +The road was wet from the rain . 這 條路 因為 下雨 所以 是 濕 的 . +Our task has been easy so far , but it will be difficult from now on . 我们 的 任务 到 目前为止 很 轻松 , 但 从 现在 开始 将 会 变得 很 难 . +Could you spare me a few minutes ? 你 能 为 我 腾出 几分钟 时间 吗 ? +Please show me your notebook . 請 給 我 看 一下 你 的 筆記本 電腦 . +You live in Boston now , do not you ? 你 住 在 波士 頓 , 不是 麼 ? +Smoke is rising from the chimney . 煙 從 煙囪 上升 . +It is a nice day . 今天 天氣 很 好 . +It is you I have come for . 我 是 为 你 来 的 . +They were busy working for social reforms . 他们 忙于 社会 改革 . +Tom will not let me buy any more stuff . 湯姆 不 會 讓 我 再 買 甚麼 東西 了 . +The poor young man finally became a great artist . 这个 可怜 的 年轻人 最后 成为 了 一个 了不起 的 艺术家 . +Tom sure talks a lot . 汤姆 一定 很 能 讲 . +Smoking affects your health . 吸烟 有害 健康 . +Tom found me a taxi . 湯姆 幫 我 叫 了 輛 計程 車 . +I had a terrible dream last night . 昨晚 我 作 了 一個 可怕 的 夢 . +What happened then ? 然 後 發生 了 什麼 事 ? +I ate breakfast at eight . 我 八點鐘 吃 了 早餐 . +I am convinced that he is innocent . 我 相信 他 是 無辜 的 . +He never looks down on poor people . 他 從未 看不起 窮 人 . +It is a pity that you cannot come to the party . 很 遗憾 您 不能 来 派对 . +Do you know where your father went ? 你 知道 你 父親 去 哪裡 了 嗎 ? +It is getting dark . Let is go home . 天 漸漸 黑 了 . 我們 回家吧 . +I like learning languages . 我 喜欢 学习外语 . +They will hold a meeting at 2 o 'clock this afternoon . 他们 今天下午 2 点 会 举行 一个 会议 . +We want you to marry Tom . 我们 希望 你 和 汤姆 能 结婚 . +He failed to pass his driving test . 他 沒有 通過 他 的 駕駛 考試 . +Please tell the truth . 请 把 事实 说 出来 . +Did you call your friend in Canada ? 你 打 電話 給 你 在 加拿大 的 朋友 了 嗎 ? +Well , let is go . 好 吧 , 我們 走 吧 . +You are sick ! 你 有 病 ! +I thought I told you to stay away from my computer . 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +America did away with slavery . 美國 廢 除了 奴隸 制度 . +We are very different . 我们 很 不 一样 . +I made up my mind to study harder . 我 决定 更 努力 地 学习 . +Tom said that he keeps a gun in his home . 湯姆 說 他 的 家裡 有 把 槍 . +He should have been a lawyer . 他 本 应该 成为 一个 律师 . +Which judge heard the case ? 哪一位 法官 審理 此案 ? +Tom told me that he had lost his textbook . 汤姆 告诉 我 他 丢 了 课本 . +This makes me very angry . 這 讓 我 很 生 氣 . +It is well done . 做 得 很 好 . +Wait and see . 走著 瞧 +Five years is too long to wait . 五年 太漫長 而 無法 等待 . +We have no time . 我们 没 时间 . +Everyone knew Tom was good at French . 每个 人 都 知道 汤姆 的 法语 很 好 . +They are my brothers . 他们 是 我 的 兄弟 . +If it were not for your help , I could not succeed . 沒有 你 的 幫忙 , 我 無法 達成 . +You must do your best . 你 必须 做到 最好 . +Join us . 来 加入 我们 吧 . +I think that Tom lied to us . 我 觉得 汤姆 对 我们 撒谎 了 . +I like coffee better than tea . 我 喜歡 咖啡 勝 過 茶 . +I could swim well even when I was a child . 我 很小 的 时候 就 游 得 很 好 了 . +The bath is ready . 浴缸 已經 準備 好 了 . +The fuel tank in the car is full . 汽車 油箱 是 滿 的 . +I can not stand this heat . 我 受不了 這麼 熱 . +He loves to fish . 他 酷爱 钓鱼 . +You worry about your weight too much . 你 太 担心 您 的 体重 了 . +She always lets her children do what they want to . 她 總是 讓 自己 的 小孩 做 自己 想 做 的 事 . +I have read many kinds of books . 我 已经 读 过 很多 种类 的 书 了 . +The child is body felt feverish . 這個 小孩 身體 很 燙 . +Sports are good for your health . 运动 有益健康 . +She bought six yards of cloth for a dress . 她 買 了 六碼 的 布 做 衣服 . +She also likes chocolate . 她 也 喜欢 巧克力 . +Tom does not have a fever . 汤姆 没有 发烧 . +I am up . 我 已经 起来 了 . +I do not quite follow you . 我 聽 不 太 懂 你 的 意思 . +She does not have the ticket . 她 沒 有 票 . +Tom often walks to school . 汤姆 经常 步行 去 学校 . +How many friends do you have on Facebook ? 你 在 Facebook 上有 多少 朋友 ? +He did not work on Sunday night . 他 週日 晚上 不 工作 . +Let is visit some temples tomorrow . 讓 我們 明天 參觀 一些 寺廟 . +When will it begin ? 什么 时候 开始 ? +I trust him . 我 信任 他 . +I wonder what the weather will be tomorrow . 不 知道 明天 天气 会 怎么样 呢 ? +He wrote to me yesterday . 昨天 他 寫信 給 我 . +He does not realise that he is tone deaf . 他 不 知道 他 自己 五音不全 . +Do whatever he tells you . 他 跟 你 说 什么 , 你 就 做 什么 . +I paid him the money . 我 付 了 他 钱 . +My parents ' generation went through the war . 我 父母 那 一代 经历 过 战争 . +So what if that is true ? 那 如果 那 是 真的 呢 ? +Definitely ! 必须 的 ! +She is not as beautiful as her sister . 她 不如 她 姊姊 漂亮 . +I do not want Tom to die . 我 不想 让 汤姆 死 . +He can do it better than I can . 他 有 能力 比 我 做 得 更好 . +She invited us to her birthday party . 她 邀请 我们 去 她 的 生日派对 . +People show up bright on an infrared camera because of their body heat . 人會 因為 體溫 而 在 紅 外線 攝影機 上 顯現 . +I got up while it was still dark . 我 起来 的 时候 天 还是 黑 的 呢 . +He often quotes Milton . 他 常 引用 米爾頓 . +He failed to follow our advice . 他 沒有 遵循 我們 的 忠告 . +Tom did an excellent job . 汤姆 做 得 很 出色 . +The capital of Japan is Tokyo . 日本 的 首都 是 东京 . +Tom was an architect . 汤姆 是 建筑师 . +Tom knows me . Tom 認識 我 . +There is not much traffic on this road . 这 条 路上 的 车辆 不多 . +When are you going to get married ? 你 什麼 時候 要 結婚 ? +Do you need an ambulance ? 你 需要 救護車 嗎 ? +I have to sell my house . 我 得卖 我 的 房子 . +What are you here for ? 你 為 什麼 在 這 ? +Is there a timetable ? 有 时间表 吗 ? +Is this jacket right for me ? 我 穿 這件 外套 好看 嗎 ? +I always get nervous just before a match . 比赛 前 我 一直 都 很 紧张 . +I am thinking of closing my savings account . 我 想 关闭 我 的 储蓄 账户 . +This is very good soil . 这 是 非常 好 的 土壤 . +Some things are better left undone . 有些 事 不 做 更好 . +She has a son and two daughters . 她 有 一个 儿子 和 两个 女儿 . +I am sure I can find something for you to do . 我 確定 我 能 找 點 給 你 做 的 事 . +In my opinion , you are wrong . 在我看来 , 你 错 了 . +You can go wherever you want . 你 想 去 哪里 都 可以 . +Tom already knew the truth . 湯姆己 經 知道 了 真相 . +Kyoto has many universities . 京都 有 很多 所 大学 . +Just take my word for it . 請 相信 我 的 話 . +Even a child can understand that . 即使 是 一個 小孩子 都 能 理解 . +Excuse me , do you know what time it is ? 不好意思 , 请问 您 知道 现在 几点 了 吗 ? +What will you be doing over the weekend ? 你 整個 週末 會 做 什麼 ? +It was absolutely brilliant . 它 真是 太妙了 . +She is not a good cook . 她 不是 一個 好 廚師 . +I should do it . 我 应该 去 做 . +I am not as brave as Tom . 我 不 像 湯姆 那樣 勇敢 . +But I do not want to . 但是 , 我 不要 . +His speech impressed us very much . 他 的话 深深 触动 了 我们 . +Water the flowers before you have breakfast . 吃 早餐 之前 先澆花 . +I remember this word . 我 记得 这个 单词 . +I slept a little during lunch break because I was so tired . 我 在 午休 时间 睡 了 一会儿 , 因为 我 太 累 了 . +We are going to climb that mountain . 我們 將 要 去 爬 那 座 山 . +How old will you be next year ? 明年 你 会 是 几岁 ? +Try hard . 努力 . +We were robbed . 我們 被 偷 了 . +I think Tom can not win . 我 認為 湯姆 不 會 贏 . +Tom asked me about you . 汤姆 向 我 问起 你 . +Japan produces a lot of good cameras . 日本 生产 很多 好 相机 . +You should consult your doctor . 你 應該 諮詢 你 的 醫生 . +Have you read this book yet ? 你 讀 過 這 本書 嗎 ? +My room is three times as large as yours . 我 的 房間 是 你 的 三倍 大 . +They believe in a life after death . 他們 相信 來 世 . +The bicycle by the door is mine . 在 門口 的 自行 車 是 我 的 . +Tom told Mary he could not do what she asked him to do . 汤姆 告诉 玛丽 他 不能 做 她 要 他 做 的 事 . +Tom is not breathing . 汤姆 没有 呼吸 了 . +I always get along well with him . 我 跟 他 總是 相處 得 很 好 . +I have absolute faith in you . 我 百分之百 相信 你 . +That is the computer he used to write the article . 那 就是 那 台 他 用来 写文章 的 电脑 . +He introduced me to a pretty girl . 他 把 我 介紹 給 了 一個 漂亮 的 女孩 . +They got married six months ago . 他們 六個 月前 結婚 了 . +Hit Tom . 去 打 汤姆 . +I found the book very interesting . 我 覺得 這 本書 非常 有趣 . +Goodbye ! 告辞 ! +I am staying at the hotel for the time being . 目前 我 待 在 酒店 . +We are all praying for Japan . 我們 全體 為 日本 祈禱 . +I am used to getting up early . 我 習慣 早起 . +The board is about two meters long . 這塊 木板 大約 兩 公尺 長 . +Mercury is a planet . 水星 是 一顆 行星 . +I thought that he would come . 我 以为 他 会 来 的 . +Tom was stripped to the waist . 汤姆 光 着 膀子 . +Whose bicycle is this ? 这辆 自行车 是 谁 的 ? +I 'd rather you stayed at home . 我 寧願 你 待 在家 裡 . +I am looking forward to seeing you next week . 我 期盼 著 下週 見到 你 . +I do not go to school on Sundays . 我 周日 不 去 学校 . +It tastes really good . 它 的 滋味 真的 很 好 . +After she had lunch , she got ready to go out . 吃 過午 飯 後 , 她 準備 好要 出門 了 . +Do you have change for a dollar ? 你 有 零 錢 換 一元 美金 嗎 ? +This is the flag of Japan . 这 是 日本 国旗 . +I poured water into the bucket . 我 把 水 倒入 了 桶子 裡 . +He helped me do my homework . 他 幫 我 做 我 的 功課 . +The red dress looked good on her . 她 穿 這 套 紅色 的 洋裝 很 好看 . +She is younger than him . 她 比 他 年轻 . +What he said is not true . 他 說 的 話 不是 真的 . +Did the police ever question you ? 警察 盘问 你 了 吗 ? +I have a map . 我 有 一張 地圖 . +UK is the abbreviation for the United Kingdom . UK 是 英国 的 缩写 . +This knife is very sharp . 这 把 刀 很 锋利 . +What would you like for supper ? 你 晚餐 想 吃 什麼 ? +Who is she ? 她 是 谁 ? +I almost never lie . 我 幾乎 從 不 說 謊 . +He resigned and fled the country . 他 辞职 后 逃离 了 这个 国家 . +She is very beautiful . 她 非常 漂亮 . +Tom is a distant relative of mine . 湯姆 是 我 的 遠亲 . +She was feeling kind of tired . 她 覺得 有 點累 了 . +You need to go home right now . 你 需要 現在 就 回家 . +Tom started as a janitor , but he is now the president of the company . 汤姆 最初 是 看门人 , 但 现在 他 是 公司 的 总裁 了 . +How many years did Tom work here ? 汤姆 在 这里 工作 了 几年 ? +Nobody had ever heard of it . 以前 從來 沒 有人 聽 說 過 . +How awful ! 太 可怕 了 . +Is this the bus for Park Ridge ? 這 是 去 帕 克里 奇 的 巴士 ? +Drive cautiously . 开车 小心 点 . +Where did you get that much money ? 你 从 哪里 得到 这么 多 钱 的 ? +Things are not clearly defined . 事情 还 没 解释 清楚 . +He made her a bookshelf . 他 做 了 一個 書架 給 她 . +Can his story be true ? 他 的 故事 可能 是 真的 吗 ? +She was afraid to travel alone . 她 怕 獨自 旅行 . +Termites eat wood . 白蚁 吃 木头 . +He went to Boston by car . 他 坐 汽車 到 波士 頓 . +I went to the airport by taxi . 我 搭計 程車 去 機場 . +I think perhaps you are right . 我 猜想 你 可能 是 对 的 . +Is there any chance you will go to Australia next month ? 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +I really do not believe so . 我 真不 這麼 想 . +I can not do it either . 我 也 不 會 做 . +You are just saying that . 你 只是 說 說 而已 . +French has many more vowels than Japanese . 法语 的 元音 比 日语 的 多得多 . +He is fond of watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +Tom eats asparagus , but his brother does not . 湯姆 吃 蘆筍 , 但是 他 弟弟 不吃 . +I would like to have cake for dessert . 我 想 吃 蛋糕 當 點 心 . +He kept me waiting for an hour . 他 讓 我 等 了 一個 小 時 . +As a matter of fact , I have not eaten anything since this morning . 事實上 , 我 從 今天 早上 開始 沒有 吃 任何 東西 . +He does not know any of us . 他 不 认识 我们 中 的 任何 一个 . +I was just trying to protect you . 我 只是 試著 保護 你 . +Be realistic . 现实 点 ! +Tom looked at his reflection in the mirror . 汤姆 看 他 在 镜 中 的 映像 . +They were persecuted . 他们 受到 迫害 . +None of us thought he was to blame for the accident . 我們 都 不 認為 他 是 事故 的 罪魁 禍首 . +I guess it is only a joke . 估计 那 就是 个 笑话 吧 . +That cloud looks like a rabbit to me . 那朵云 对 我 来说 像 一只 兔子 . +It is raining . 在 下雨 . +I am afraid it will not work . 我 怕 它 是 行不通 的 . +Give me a chance to make you proud of me . 给 我 机会 来 让 你 为 我 感到 自豪 . +I bought a new sewing machine . 我 買 了 一台 新 的 縫紉機 . +Do you have anything to say ? 你 有 任何 話 要 說 嗎 ? +Do you want a cup of coffee ? 来 杯 咖啡 吗 ? +It is true that she is dead . 她 确实 死 了 . +They spoke to me . 他们 对 我 说话 了 . +Physics is my favorite subject . 物理 是 我 最 喜歡 的 科目 . +It makes sense to pay off your credit card balance every month . 每个 月 还清 信用卡 负债 很 重要 . +You have to make a reservation . 你 必須 事先 預約 . +We have no idea what to do . 我們 不 知道 要 做 甚麼 . +Since he did not know what to say , he remained silent . 自从 他 不 知道 该 说 什么 的 时候 , 便 一直 沉默 着 . +He threw a rock into the pond . 他 扔 一塊 石頭 到 池塘 裡 . +I do not like going to school . 我 不 喜欢 上学 . +Who will you vote for for president ? 你 選 誰 當 總統 ? +It was dark when I reached the hotel . 我 到 旅馆 的 时候 , 天 已经 黑 了 . +Do you want to eat garbanzo beans ? 你 想 吃 鹰嘴豆 吗 ? +He does not know English at all . 他 一點 也 不 懂 英語 . +That pasture is ten acres . 那個 牧場 有 十英畝 大 . +Tom is 30 years old . 汤姆 今年 三十岁 . +I would like to go abroad one day . 我 想 有 一天 去 国外 . +I often go downtown on Sunday . 我 常常 星期日 去 市中心 . +Please give me the menu . 請 給 我 菜 單 . +This book is not worth reading . 這 本書 不 值得 一 讀 . +Give me a little money . 给 我 一点 钱 . +He is rich , but he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +Tom seems really happy . 汤姆 看起来 非常 开心 . +You should not have done that . 我 不 應 該 做 那件事 的 . +Everyone , please be quiet . 各位 , 請 安靜 . +" Did he write a letter yesterday ? " " Yes , he did . " " 他 昨天 寫 了 一封信 嗎 ? " " 是 的 , 他 寫 了 . " +The car broke down . 汽车 发生 故障 了 . +He grew up to be an engineer . 他 長 大 後 成為 了 一名 工程 師 . +She is a quiet woman . 她 是 一個 安靜 的 女人 . +" Look , " she said . “ 看 啊 ! ” 她 说道 . +It is time you went to bed . Turn off the radio . 你 该 上床 了 . 把 收音机 关了 . +I envy him . 我 羡慕 他 . +Tom is drunk . 汤姆 醉 了 . +Carry on with your work . 繼續 工作 ! +Where do we go ? 我们 去 哪儿 ? +This article is of no value . 这 篇文章 没有 价值 . +The police are looking into the matter . 警方 正在 调查 . +Do you think animals have souls ? 你 认为 动物 有 灵魂 吗 ? +He pretended not to hear me . 他 假裝 沒有 聽見 我 . +Tom did not look happy at all . 汤姆 看起来 一点 也 不 开心 . +Seen from the sky , the river looked like a huge snake . 从 天上 看 下来 , 这条 河 像 一条 巨蛇 . +He is not a singer , but an actor . 他 不是 歌手 , 但是 个 演员 . +In the case of fire , dial 119 . 遇到 火警 時 , 撥 打 119. +It is valid until March thirty @-@ first , nineteen @-@ ninety @-@ seven . 有效期 到 1997 年 3 月 31 日 为止 . +Tom frequently talks in his sleep . 汤姆 经常 说梦话 . +I can not remember how to go there . 我 不 記 得 怎麼 去 那裡 了 . +Laura Ingalls grew up on the prairie . 勞拉英 戈爾斯 是 在 草原 上長大 的 . +This car needs washed . 这辆 车 需要 清洗 . +You did not find it , did you ? 你 沒 找到 , 不是 麼 ? +All of us went to the theater to see a play . 我們 所有 的 人 都 去 劇院 看戲 . +I just finished breakfast . 我 剛 吃 完 了 早 飯 . +Can you translate English into Japanese ? 你 可以 把 英文 翻譯 成日語 嗎 ? +He plays golf two or three times a month . 他 一个月 玩 两 到 三次 高尔夫 . +I do not have time for a vacation this year . 我 今年 没 时间 去 度假 . +Life goes on . 人生 會 繼續 . +I do not feel like taking a walk this morning . 我 今天 早上 不想 散步 . +He is a famous composer . 他 是 一位 著名 的 作曲家 . +My son believes in Santa Claus . 我 兒子 相信 聖誕 老人 . +Your mother is in critical condition . 你 母親 現在 情況 危殆 . +Please spell your name . 请 拼 一下 您 的 名字 . +My parents sent me a postcard . 我 父母 給 我 寄 了 一張 明信片 . +The boss has a good opinion of your work . 老板 对 你 的 工作 有 很高 的 评价 . +I have to change into my work clothes . 我 得 换工 服 了 . +I arrived in Kobe around two thirty . 我 在 两点 半左右 到达 神户 . +We should ban advertising aimed towards children . 我们 应该 禁止 针对 儿童 的 广告 . +We speak the same language , do not we ? 我們 說 的 是 同樣 的 語言 , 不是 嗎 ? +The baby seemed to be in a deep sleep . 那個 嬰兒 似乎 在 熟睡中 . +They are digging a hole . 他們 正在 挖 一個 洞 . +This dress is a good bargain . 这 条 连衣裙 很 便宜 . +He is been sick in bed for four days . 他 已 卧病在床 四天 了 . +Have you seen this man ? 您 见 过 这个 人 吗 ? +How long can it be kept going with 100 dollars ? 用 100 美元 可以 支持 多久 ? +I asked Tom to play the guitar . 我 叫 汤姆 弹 吉他 . +It is snowing . 正在 下雪 . +He was waiting for a long time . 他 等 了 很長 的 時間 . +Tom still is not sure what to do . 湯姆 還 是 不 確定 要 做 甚麼 . +This is a fish . 這 是 一條 魚 . +We arrived at the office on time . 我們 準 時 到 達 了 辦 公室 . +It really is very annoying . 真是 烦死 了 . +Are there many trees in the park ? 公園 裡 有 很多 樹 嗎 ? +Will you pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +He was terribly poor when he was young . 他 年轻 的 时候 穷困潦倒 . +I can not remember which is my racket . 我 不 記 得 哪個 是 我 的 球拍 . +A good neighbour is better than a brother far off . 一個 好 鄰 居勝 於 一個 遙遠 的 朋友 . +He kept his promise and helped his brothers . 他 履行 了 他 的 承诺 , 并且 帮助 了 他 的 兄弟 . +I have never fed my dog a banana . 我 從 沒給 我 的 狗 喂 過 香蕉 . +We do the best we can . 我们 尽 我们 所能 . +The concert is about to start . 音樂會 即將 開始 . +Is someone there ? 那边 有人 吗 ? +I can swim . 我 會 游泳 . +She is certain to be surprised . 她 肯定 会 大吃一惊 的 . +I 'd like a room in the back . 我 想要 一間 後 面 的 房間 . +Do not worry , I will help you . 不要 担心 , 我会 帮 你 的 . +I saw a man get hit by a car . 我 看见 有个 男人 被车撞 了 . +The sun does not shine at night . 太陽 在 晚上 不亮 . +There are many ways to improve one is life . 有 很多 的 方法 可以 改善 人 的 一生 . +The registration period is already over . 報名 時間 已經 過 了 . +Why should it be necessary ? 为什么 它 是 必要 的 ? +He brought me coffee , when I had asked for tea . 我 要 的 是 茶 , 而 他 却 给 了 我 一杯 咖啡 . +The poor girl went blind . 這 可憐 的 女孩 瞎 了 . +They were surprised . 他们 震惊 了 . +Try to keep from crying . 試著 不要 哭 . +Do you like to watch movies ? 你 喜歡 看 電影 嗎 ? +He sent me a birthday card . 他 寄 給 我 一張 生日 賀卡 . +There was nothing that the doctors could do . 醫生 甚麼 也 做不了 . +I think I may have made a big mistake . 我 認為 我 可能 已經 犯 了 大 錯 . +I take care of my grandfather . 我 照顧 我 的 爺爺 . +Tom sneaked up behind Mary . 汤姆 鬼鬼祟祟 地 遛近 了 玛丽 身后 . +It is no big deal . 这 没什么 大不了 的 . +How is it at school ? 学校 怎么样 ? +Tom is in the shower . Tom 在 洗澡 . +Give me your phone . 给 我 你 的 手机 . +They did not obey their parents . 他們 沒有 遵從 他們 的 父母 . +He took a photograph of the family . 他 拍 了 張 全家福 的 照片 . +There are many fish in this lake . 这 湖里 有 许多 鱼 . +I do not regret it . 我 不 後 悔 . +It is ten o 'clock by my watch . 我 的 手 錶 是 十 點 鐘 了 . +She and I are brother and sister . 我 和 她 是 兄妹 . +Tom is acting as if nothing has happened . 汤姆 像 什么 也 没 发生 一样 行动 . +Tom ripped up the letter . 汤姆 把 信 撕碎 了 . +I have not yet collected sufficient materials to write a book . 我 還 沒有 收集 到 足夠 的 材料 來 寫 一本 書 . +I do not use taxis unless it is absolutely necessary . 如 无 必要 我 也 不会 打 的 . +My father is very angry with me . 我 父親 對 我 非常 生氣 . +You do not get up as early as your sister , do you ? 你 比 你 妹妹 起得 晚 , 不是 么 ? +I want my dinner brought to my room . 我 想要 我 的 晚餐 送到 房间 里来 . +I am not letting Tom do this by himself . 我 不会 让 汤姆 独自 去 做 . +How much of what I have written here do you understand ? 你 了解 多少 我 寫 在 這裡 的 東西 ? +It is easy to read this book . 读 这 本书 很 容易 . +I have been here many times before . 我 以前 來 過 很 多次 了 . +My uncle had me act as a translator . 我 叔叔 讓 我 擔任 翻譯 . +The fire broke out after the staff went home . 在 全体 职员 回家 后 , 火 事 爆发 了 . +She accepted his gift . 她 收下 了 他 的 礼物 . +Please keep it secret . 請 保守 秘密 . +Who taught you how to dance ? 谁 教 你 跳舞 的 ? +Could you please pass me the pepper ? 能 把 胡椒 遞 給 我 嗎 ? +I had a tennis match with him . 我 曾 與 他 的 比賽 網球 . +My room faces east . 我 的 房間 面向 東邊 . +I wonder who has come . 我 想 知道 谁 来 了 . +I gave my brother a dictionary . 我 給 了 我 弟弟 一本 字典 . +The radio is a bit loud . 收音机 的 声音 有点 响 . +He weighs a lot more than before . 他 比 以前 重 得 多 . +The skin of a shark is much rougher than that of a tuna fish . 鯊魚 皮 比 金槍 魚皮 粗糙 多 了 . +I gazed at the sea for hours . 我 望著 海 好 幾個 小 時 . +Tom refused to answer any questions . 湯姆 拒絕 回答 任何 問題 . +The train has already left . 列车 已经 出发 . +Do not forget the ticket . 不要 忘 了 票 . +Could you help me translate this into French ? 你 能 帮 我 把 这 译成 法语 吗 ? +She got married in her teens . 她 十幾歲 時 就 結婚 了 . +If he studied hard , he would pass the test . 如果 他 努力学习 , 他 会 通过 考试 的 . +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 親切 . +What are you watching ? 你 在 看 什么 ? +Did you drink tea yesterday ? 你 昨天 喝茶 了 吗 ? +What is the meaning of this word ? 這個 字 的 意思 是 什麼 ? +He tries hard . 他 努力 地 嘗試 . +Do you often travel abroad ? 你 经常 出国 吗 ? +We would like you to come to our party . 我们 希望 你 来 我们 的 聚会 . +The professor spoke too fast for anyone to understand . 那个 教授 讲 得 太 快 了 , 没有 一个 人 听得懂 . +I have only five thousand yen . 我 只有 5000 日元 . +Can you come ? 你 能 來 嗎 ? +I think that Tom is going to be pretty mad when he finds out that the painting he bought is a fake . 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +I know the feeling . 我 知道 那種 感覺 . +Tom managed to find a new job . 汤姆 找到 了 新 工作 . +Besides the piano , can you play any other instruments ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I like May the best of all the months . 所有 月份 中 我 最 喜歡 五月 . +That job is pretty much finished . 那個 工作 幾乎 被 完成 了 . +I ate breakfast on my balcony . 我 在 陽 臺 上 吃 的 早 飯 . +They went to Tottori . 他們 去 了 鳥 取 . +They are making for the forest . 他们 正向 森林 而 去 . +School starts next week . 學校 下週 開學 . +Go and buy three bottles of coke . 去 買 三瓶 可樂 . +Do you want me to help ? 要 我 帮忙 吗 ? +I am a teacher . 我 是 個 老師 . +Japan depends on foreign countries for oil . 日本 依賴 外國 的 石油 . +I am glad it is over . 我 很 高興 它 結束 了 . +She always clears the table after a meal . 她 经常 在 饭后 收拾 桌子 . +I have finished watering the flowers . 我 已經 澆 完 花 了 . +I do not need your help . 我 不 需要 你 的 幫助 . +Who is Tom is girlfriend ? 汤姆 的 女朋友 是 谁 ? +She asked me whether I liked the plan or not . 她 问 我 喜不喜欢 这个 计划 . +I could not sleep . 我 無法 入睡 . +I did not get your last name . 我 沒 有 聽 清楚 你 的 姓 . +He towers above the rest of the class . 他 在 班上 出類 拔萃 . +If you are tired , go to bed . 你 若 累 了 , 就 去 睡 個 覺 . +I am sorry . 我 很 抱歉 . +Tom lives three miles east of here . 湯姆 在 這 以 東三哩 的 地方 住 . +I need to know . 我 需要 知道 . +It snowed last night . 昨晚 下 了 雪 . +She got good grades in English . 她 在 英文 上 取得 了 很好 的 成績 . +We were on the same train by chance . 我们 偶然间 乘 了 同一 列 列车 . +This work does not pay . 这个 工作 没有 酬劳 . +It is about time we went to bed . 差不多 是 我們 就 寢 的 時間 了 . +Money is not the only thing that matters . 不 只是 钱 关系 重大 . +The recent advances in medicine are remarkable . 医学 的 最新进展 颇为 显著 . +The couple is walking hand in hand . 這 對 夫妻 手 牽手 走路 . +He heard the news on the radio . 他 從 收音 機 聽到 了 這個 消息 . +They got here yesterday . 他們 昨天 到 這裡 的 . +Tom showed us his new car . 湯姆 給 我們 看 他 的 新車 . +I am sad . 我 很 难过 . +I do not know what I do not know . 我 不 知道 我 不 知道 什么 . +She hit the ball hard . 她 用力 地 拍 了 球 . +She is interested in learning new ideas . 她 有 興趣 學習 新 的 想法 . +He gave me his stamp of approval . 他 給 了 我 正式 批准 . +England is proud of her poets . 英格兰 为 她 的 诗人 感到 自豪 . +Do not open that . 别 打开 那个 . +We were in danger of losing our lives . 我们 曾 有 失去 生命 的 危险 . +She had the decency to apologize . 她 大方 地 道歉 . +Is there any chance that he will recover ? 他 有 任何 復 原 的 機 會 嗎 ? +Tom made a list of places he wanted to visit . 汤姆 列 了 他 想去 的 地方 的 名单 . +She kept crying all night long . 她 一 整晚 都 在 哭 . +Did you buy a return ticket ? 你 买 回程 机票 了 吗 ? +I know that you still want to be with me . 我 知道 你 还是 想 跟着 我 . +He can not buy himself a car . 他 不能 买车 . +He has some money in the bank . 他 银行 里 有点 钱 . +You should take the number 5 bus . 您 应该 乘 5 路车 . +There is a hole in this bucket . 這個 桶 有個 洞 . +What do you think about that ? 你 認為 如何 ? +I am sorry that you are leaving here . 我 很 遺憾 你 要 離開 這裡 . +It is not important . 這個 不 重要 . +It seems she hates you . 她 好像 很 讨厌 你 . +Where is the wedding to be ? 婚礼 在 哪儿 举行 ? +Where is the cafeteria ? 自助餐厅 在 哪里 ? +I can not believe you are eating something the doctor has told you repeatedly you should not eat . 真的 不敢相信 你 在 吃 医生 叮嘱 不要 食用 的 东西 . +Is Tom drunk ? 汤姆 喝醉 了 吗 ? +She told me an interesting story . 她 给 我 讲 了 一个 有趣 的 故事 . +The statue of Hachiko , the faithful dog , stands in front of Shibuya Station . 忠犬八公 的 雕像 伫立 在 涩谷 站 前 . +She is fluent in English . 她 英語 說 得 很 流利 . +Help me . 帮 我 一下 . +We have lost them . 我們 失去 他們 了 . +I can not find my glasses . 我 找 不到 我 的 眼鏡 . +Tom is not unhappy . 汤姆 不是 不 高兴 . +Tom is not going to stop . 湯姆 不 會 停 . +Tom let out a big sigh . 汤姆 大声 叹 了 口气 . +Tom spent most of the morning straightening up his office . 汤姆 花 了 大半 早晨 整理 他 的 办公室 . +I got a farewell present from everyone . 每個 人 都 送 了 我 一份 歡送 禮物 . +I am not famous . 我 不 出名 . +No one knows what will happen in the future . 沒 有人 知道 未來 會 發生 什麼 事 . +He backed his car into the garage . 他 倒 車入 車庫 . +Give us a ride downtown . 載 我們 到 市區 . +I take a bath almost every day . 我 幾乎 每天 洗澡 . +They have been here since 1989 . 他們 自 1989 年 以來 一直 在 這裡 . +I would like to go skiing . 我 喜歡 去 滑雪 . +She walks . 她 在 行走 . +No pain , no gain . 一分耕耘 , 一分 收 穫 . +Tom comes home every day at 2 : 30 . 汤姆 每天 2 : 30 回家 . +We are worried . 我们 很 担心 . +Many boys and girls were present . 许多 男生 和 女生 都 出席 了 . +I know everybody here . 我 認識 這裡 的 每個 人 . +He did not accept my apologies . 他 不 接受 我 的 道歉 . +We all consider your idea to be impractical . 我们 都 认为 你 的 想法 是 行不通 的 . +Good job ! 做得好 ! +This is a book about stars . 这 是 一本 关于 星星 的 书 . +What is your favorite movie ? 你 最 喜歡 的 電影 是 哪部 ? +I was kept waiting for nearly half an hour . 我 等 了 接近 半小时 . +Your answer is correct . 您 的 答案 是 正確 的 . +Are you angry ? 您 生气 了 吗 ? +He has been to many places . 他 去过 很多 地方 . +Did you watch the game ? 你 看 了 比賽 嗎 ? +Did I miss the party ? 我 错过 派对 了 吗 ? +Do not you remember what you said ? 自己 说 过 的话 都 不 记得 了 吗 ? +Sometimes I hate myself . 偶尔 我会 讨厌 我 自己 . +Tom asked me if I was tired . 湯姆 問 我 我 是不是 累 了 . +Do not mention it . 您 不必 感谢 我 . +I want to reserve a room . 我 想 預定 一個 房間 . +He had every reason for doing so . 他 有 充分 的 理由 這樣 做 . +Exercise is good for your health . 体育 有益健康 . +This is not safe . 这 不 安全 . +Which is your book ? 哪 本書 是 你們 的 ? +Who is going to speak tonight ? 今晚 谁 发言 ? +I can not find my shoes . 我 找 不到 我 的 鞋子 . +Do not ask any questions . 別 提問 . +Thanks to a cold summer , beer has sold poorly . 多 虧 了 冷夏 , 啤酒 賣 的 不好 . +This is a problem you have to solve by yourself . 这 是 一个 你 必须 自己 解决 的 问题 . +Who wants hot chocolate ? 谁 要 热 巧克力 ? +The river that flows through London is the Thames . 流经 伦敦 的 河 是 泰晤士河 . +The only useful answers are those that raise new questions . 只有 能 提出 新 问题 的 回答 才 是 有用 的 回答 . +I made several mistakes in the exam . 在 這次 考試 中 我 犯 了 幾個 錯誤 . +School was closed for the day due to the snow . 学校 因 大雪 停课 一天 . +It is not my fault . 不是 我 的 错 . +I wonder what happened to his sister . 我 想 知道 他 姊姊 發生 了 什麼 事 . +I envy her . 我 嫉妒 她 . +Let me buy you another one . 我 给 你 再 买 一个 吧 . +I have not finished my homework yet . 我 還 沒有 完成 我 的 作業 . +Is there a post office near here ? 這 附近 有 郵局 嗎 ? +She made cookies for the children . 她 给 孩子 们 做 了 曲奇 . +Tom does not like cheese . 湯姆 不 喜歡 乳酪 . +The crops need rain . 農 作物 需要 雨水 . +Would you please look after my dog tomorrow ? 你 明天 可以 幫 我 照顧 一下 我 的 狗 嗎 ? +We are happy to see you again . 我们 很 高兴 再次 见到 你 . +There is a hotel across the street . 對 街 有 一家 旅館 . +Pass me the salt , will you ? 請 把 鹽 遞 給 我 , 好 嗎 ? +What is your name ? 您 叫 什么 名字 ? +Which tooth hurts ? 哪 顆 牙痛 ? +That was the first time that a man walked on the moon . 那 是 人类 第一次 在 月球 上 行走 . +I saw more than Tom knows . 我 看 的 比 Tom 知道 得 多 . +I was very confused by his questions . 我 對 他 的 問題 感到 很 困惑 . +Mt . Fuji is the highest mountain in Japan . 富士山 是 日本 最高 的 山 . +Ca not you lower your voice ? 你 不能 小 聲點 說 話 嗎 ? +I want you to wait for me . 我 想 让 你 等 我 . +I thought I could be of some help . 我 認為 我 能 幫 點 忙 . +I will come to pick it up later . 我 晚点 再来 拿 . +He is a mathematical genius . 他 是 一個 數學 天才 . +Tom glanced away . 汤姆 瞥 了 一眼 就 移开 目光 了 . +Do you think that was fair ? 你 认为 那 公平 吗 ? +He is very sloppy in his dress . 他 穿着 上 很 不 讲究 . +I do not want to live my life in fear . 我 不想 在 恐惧 中 生活 . +I am interested in Japanese history . 我 對 日本 歷史 有 興趣 . +Someone told me that this boy cannot hear . 有人 告诉 我 这个 男孩 耳聋 . +I got out of the taxi . 我 從 出租 車 上下 來 . +Shall we go out for a walk ? 出去 散步 怎麼樣 ? +What time was it when you entered the building ? 你 进 这幢 楼 的 时候 是 几点 ? +Do not forget to turn the light off . 不要 忘 了 關燈 . +Tom is in the hospital . Tom 在 醫院 . +I am the one who wants to be with you . 我 才 是 那个 想 和 你 在 一起 的 人 ! +Hold fire . 停火 . +Tom had no family . 过去 汤姆 没有 家 . +Are you sure you have not forgotten anything ? 你 確定 你 沒有 忘記 什麼 嗎 ? +It is been hot this month , but today is an exception . 这个 月 一直 都 很 热 , 但 今天 是 个 例外 . +Your order has been submitted . 您 的 訂單 已經 提交 了 . +Say it in another way . 换种 方式 说 . +I am a big football fan . 我 是 足球 的 忠实 粉丝 . +One man is meat is another man is poison . 甲 之 蜜糖 , 乙之 砒霜 . +Do you want any of these flowers ? 你 要 這些 花 中 的 任何 一朵 嗎 ? +He was expelled from school . 他 被 逐出 了 学校 . +Did you ever try ? 你 试 过 吗 ? +Tom cannot drive . 湯姆 不能 開車 . +She is always trying new things . 她 总是 尝试 新 事物 . +Everyone has strengths and weaknesses . 每个 人 都 有 他 的 长处 和 短处 . +Shall I close the door ? 我 應該 把 門關 上 嗎 ? +Are you still in school ? 你 还 在 上学 吗 ? +Wash up . 去 清洗 一下 . +Do you promise ? 你 保证 吗 ? +He took part in the Olympic Games . 他 参加 了 奥运会 . +He walked past the house . 他 走 過 這棟 房子 . +Is it too salty ? 还有 多余 的 盐 吗 ? +Who did you see at the station ? 你 在 車站 看見 了 誰 ? +Thank you for baking this delicious cake . 谢谢 你 烤 的 美味 蛋糕 . +What do you say to dining out tonight ? 我们 今晚 出去 吃饭 , 你 说 怎么样 ? +I did not recognize him at first . 起初 我 沒 認出 他 來 . +We 'd better wake Tom up . 我们 最好 叫醒 汤姆 . +Kyoto depends on the tourist industry . 京都 依賴 旅遊 業 . +The lady really flipped out when she learned she had won a million dollars . 當 這位 女士 得知 她 已經 贏得 了 百萬 美元 , 她 真的 樂 瘋 了 . +It will cost around 10,000 yen . 這 將 花 費約 10000 日元 . +Of course . 當然 . +He has a strong sense of responsibility . 他 有 強烈 的 責任 感 . +He is still here . 他 还 在 这儿 . +You ought to see a dentist . 你 應 該 去 看 牙 醫 . +Tom is smart . 汤姆 脑子 好使 . +I need to know what you think . 我 需要 知道 你 怎么 想 . +His father is an impostor . 他 爸爸 是 个 骗子 . +It is almost time for Tom to go . 汤姆 快 该 走 了 . +Everyone was fine . 大家 都 还行 . +I would like to pay the check , please . 我 想付 帳 , 謝謝 . +There are no chairs in this room . 這個 房間 裡 沒有 椅子 . +Those chairs are in the way . 那些 椅子 擋住 了 去路 . +I want to talk to your boss . 我 想 跟 你 老板 谈 . +I am afraid she may have the mumps . 我 怕 她 可能 得 了 腮腺炎 . +My father allowed me to go swimming . 爸爸 准许 我 去 游泳 . +He is a man of few words , but he always keeps his promise . 他 这个 人话 不 多 , 但 总是 遵守 诺言 . +He has made the baseball team . 他 已經 成為 了 棒球 隊員 . +I do not understand music . 我 不 懂 音乐 . +Where are you going ? 你 要 去 哪裡 ? +I am six feet tall . 我 六 英尺 高 . +Water becomes solid when it freezes . 水 结冰 后 成为 固体 . +The cat is sleeping on the sofa . 貓 正在 沙發 上 睡覺 . +Do you feel like resting ? 你 感觉 轻松 吗 ? +Everyone wants what they can not have . 每个 人 都 想要 得到 无法 拥有 的 东西 +Could you carry my bags for me ? 你 可以 幫 我 提 我 的 袋子 嗎 ? +She teaches reading and writing . 她 教 閱讀 和 寫作 . +You are the one who suggested that we do that together . 你 是 那個 建議 我們 一起 做 那件事 的 人 . +Nobody likes war . 没有 人 喜欢 战争 . +Tom plays chess very well . 汤姆 下棋 下得 很 好 . +My plans failed one after another . 我 的 計劃 一個 接 一個 的 失敗 了 . +I did not hear anybody talking . 我 沒 聽到 任何人 在 說 話 . +He is tall . 他 高 . +He is running very quickly . 他 跑 得 非常 快 . +He rushed into the room with his coat on . 他 穿着 衣服 冲 进 房间 . +I am still waiting for Tom to get here . 我 还 在 等 湯姆 來 這裡 . +I was certain that you 'd come . 我 確定 你 會 來 . +I gained two kilos this summer . 这个 夏天 我 胖 了 两 公斤 . +Tom did not like spinach when he was a child . 汤姆 小时候 不 喜欢 菠菜 . +My stomach is full . 我 的 胃 是 脹 滿 的 . +Who are you looking for , Tom ? 你 在 找 誰 , 湯姆 ? +I prefer cats to dogs . 較 之 于 狗 , 我 更 喜欢 猫 . +I like swimming , but I do not like to swim here . 我 喜欢 游泳 , 但 我 不想 在 这里 游 . +I need to go to the bathroom . 我 要 去 方便 一下 . +I got bored with his long talk . 我 厌烦 了 他 的 长篇大论 . +Smoking is not permitted here . 这里 不 允许 抽烟 . +He is a very romantic boyfriend who brings me flowers each night . 他 是 个 非常 浪漫 的 男友 , 每晚 都 给 我 带 花 . +What time did you get up this morning ? 你 今天 几点 起 的 床 ? +I want to drink something cold . 我 想 喝 點 冷 飲 . +Both of you are wrong . 你們 倆 都 錯 了 . +Because of heavy snow , the plane from Beijing arrived 20 minutes late . 由 於 下 大雪 , 從 北京 来 的 班機 延遲 二十分 鐘 . +It is fun to speak in French . 说 法语 很 有趣 . +A year has twelve months . 一年 有 十二 個 月 . +Could I have the bill , please ? 請 把 帳單 給 我 好 嗎 ? +Tom does not like me . 汤姆 不 喜欢 我 . +Tom was captured . 汤姆 被 囚禁 了 . +Turn right at the intersection . 在 十字路口 右转 . +My mother hates writing letters . 我 媽媽 討厭 寫信 . +Your opinion is very important to us . 您 的 意見 對 我們 很 重要 . +Keep it up . 坚持 . +When did you start working here ? 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +Where do you attend high school ? 你 在 哪 裡 唸 高中 ? +It is very big . 它 很大 . +She worked hard . 她 努力 地 工作 . +It is raining . 在 下雨 . +He had not eaten in two days . 他 已經 兩天 沒 吃 東西 了 . +What time is it ? 現在 幾點 ? +Everybody in the village knew him . 村子 裡 的 每個 人 都 認識 他 . +I am not accustomed to getting up early . 我 不習 慣 早起 . +Did I tell you I got a new job ? 我 有 告訴 你 我 找到 新 工作 了 嗎 ? +Tom is in the attic . 湯姆 在 閣 樓裡 . +I get scared just walking past him . 只是 從 他 旁邊 走 過 去 我 就 覺得 害怕 . +She cooked us a delicious dinner . 她 為 我們 煮 了 一頓 美味 的 晚餐 . +He hopes to go abroad . 他 希望 到 國外 去 . +It has been cold since yesterday . 從 昨天 開始 變冷 了 ​ ​ . +I ordered a pizza on the phone . 我 打电话 订 了 个 披萨 . +I am coming to see you tomorrow . 我 明天 會 來看 你 . +She speaks both English and French . 她 會 講 英語 和法語 . +Do you know me ? 你 认识 我 吗 ? +You ought to get to work on time . 你 應該 準 時 上班 . +You should have rejected such an unfair proposal . 你 本该 拒绝 一个 那么 不 公平 的 提议 . +I know her very well . 我 非常 了解 她 . +I am staying for another few weeks . 我 還 要 再 待 幾個 星期 . +Do I need surgery ? 我 需要 做手术 吗 ? +I want Tom put in prison . 我 想 讓 湯姆進 監獄 . +Will you please lend me a stapler ? 請 你 借 給 我 一支 訂書機 好 嗎 ? +Do you have any Japanese beer ? 您 有 日本 啤酒 吗 ? +I was absent from work yesterday . 我 昨天 沒去 上班 . +How many children were injured ? 有 几个 小孩 受伤 了 ? +The toilet is backed up . 厕所 塞住 了 . +Excuse me , but where is the library ? 對 不起 , 但 圖書館 在 哪裡 ? +This is secret between you and me . 这 是 我们 之间 的 秘密 . +My brother loves taking pictures of mountains . 我 弟弟 很 喜欢 拍山 的 照片 . +She goes to a girls ' high school . 她 上 女子 高中 . +She likes to go to the library . 她 喜欢 去 图书馆 . +I swear that I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +Get real . 醒醒 吧 . +Apples were served as the dessert . 蘋果 被 用來 當作 甜點 . +I have not seen Tom since 1988 . 我 從 1988 年 起 就 沒有 看過 湯姆 了 . +They guarantee this clock for a year . 他們 保證 這個 時鐘 可用 一年 . +I trust you . 我 信任 你 . +She did not want to get involved . 她 不想 涉入 其中 . +How is your job going ? 工作 怎么样 ? +Tom is more active . 汤姆 更 活跃 . +We need more food . 我們 需要 更 多 食物 . +Have you finished reading that book yet ? 你 讀 完 那 本書 了 嗎 ? +Tom is a normal teenager . 湯姆 是 個 普通 的 青少年 . +We have to look after our parents . 我們 要 照顧 我們 的 父母 . +You were eavesdropping . 你 在 偷听 . +I am going to see what I can do . 我 要 看看 我 能 做 甚麼 . +His father is Japanese . 他 父親 是 日本 人 . +You should be ashamed of your ignorance . 你 應該 為 你 的 無知 感到 羞恥 . +How could it be done without my knowing ? 怎么 可能 在 我 不 知道 的 情况 下 做 完 呢 ? +Do you believe in ghosts ? 你 相信 鬼 存在 吗 ? +Tom got ripped off . 汤姆 被 宰 了 . +Long hair is out of fashion now . 长 发现 在 过时 了 . +I do not remember what Tom looked like . 我 不 記得 湯姆長 甚麼樣 . +Stick with it and you will succeed . 堅持 下來 , 你 就 能 成功 . +I do not have an ear for music . 我 不 懂 音樂 . +Yesterday is weather was not very good . 昨天 天氣 不是 很 好 . +I can not believe anyone anymore . 我 再也 不 相信 任何人 了 ! +According to the weather forecast , it will snow tomorrow . 天气预报 说 明天 会 下雪 . +You have done what you needed to do . 你 已经 尽力 了 . +The ball is that boy is prized possession . 这个 球 是 那个 男孩 的 宝贝 . +That is useless to me . 那 對 我 沒 有用 處 . +Are you going to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +You seem to be waiting for somebody . 你 看來 在 等 人 . +If we do not keep walking we will be late . 如果 我们 不 继续 赶路 , 我们 会 迟到 的 . +Do you need help ? 你 需要 幫助 嗎 ? +I do not like artificial flowers . 我 不 喜歡 假花 . +I would like to improve my English pronunciation . 我 想 改善 我 的 英语 发音 . +Your son is dating my daughter . 你 儿子 正在 和 我 女儿 约会 . +He likes taking a walk by himself . 他 喜歡獨自一人 散步 . +We raced toward the fire . 我們 急忙 跑 向 火 . +If you feed your dog properly , you can increase his lifespan . 合理 地 喂狗 可以 延长 宠物 寿命 . +He said , " It is nine o 'clock . " 他 说 , “ 九点 了 ” . +She found a job as a typist . 她 找到 了 一份 打字 員 的 工作 . +I always eat out . 我 總是 在 外面 吃 飯 . +I work every day but Sunday . 我 除了 星期天 外 每天 都 上班 . +Turn off the TV . 把 電視 關了 . +No one knows . 谁 也 不 知道 . +See you at the party . 在 派对 上见 +He is always with me . 他 一直 与 我 同在 . +Here , catch ! 这里 , 快 抓住 . +Is there anything I can do ? 有 什么 事 我 可以 做 吗 ? +There is a little water left . 还 剩 一点 水 . +The child cried loudly . 小孩 大声 呼叫 . +We should call the doctor . 我們 應 該 去 請 醫生 . +Destroy this temple . 摧毁 这个 寺庙 . +Some people criticized our decision . 一些 人 批评 了 我们 的 决定 . +How much is this camera ? 這個 相機 多少 錢 ? +Some of the essays are very interesting . 這些 文章 中 有 一些 非常 有趣 . +The volcano erupted suddenly , killing many people . 火山 突然 喷发 , 造成 了 多 人 死亡 . +You will soon get accustomed to your new school . 你 很快 就 会 适应 你 的 新 学校 . +She was wearing a blue coat . 她 穿 了 一件 蓝色 大衣 . +She wept bitterly . 她 痛哭 . +I 'd rather walk than take a bus . 我 寧願 走路 勝 過 搭 公車 . +Where does it leave from ? 它 从 哪里 离开 的 ? +Shake the bottle before using . 使用 前 搖動 一下 瓶子 . +Does he know that you love him ? 他 知道 你 愛 他 嗎 ? +He attributed his success to good luck . 他 把 他 的 成功 归功于 好运 . +Tom told Mary to ask John to help . 湯姆 告訴 瑪麗 去 找 約翰 求助 . +Did Tom reply ? 汤姆 有 回应 了 吗 ? +This directly concerns you . 这 与 你 有 直接 关系 . +Do you want me to call the police ? 你 想要 我 叫 警察 吗 ? +He has written a letter . 他 寫 了 一封信 . +Give me a glass of water , please . 请 你 给 我 一杯 水 . +Tom told me he wanted to win . 湯姆 告訴 我 他 想 贏 . +It is frozen hard . 真的 很 冰冷 . +Do you think Tom was satisfied ? 你 認為 湯姆 滿意 了 嗎 ? +Tom did not want Mary to know that he did not know how to do that . 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +I miss Mary is cooking . 我 想念 Mary 的 廚藝 . +Sport knows no borders . 体育 无国界 . +One million people lost their lives in the war . 100 万 人 在 战争 中 失去 了 生命 . +Do you have any siblings ? 你 有 兄弟姐妹 吗 ? +Can you come to the meeting tomorrow ? 你 明天 可以 來 參加 會議 嗎 ? +Is Tom a good guy ? 汤姆 是 好人 . +We do not need to attend that meeting . 我們 不必 參加 那場 會議 . +It is my belief that knowledge is power . 我 相信 , 知识 就是 力量 . +How long is this ? 這 有 多 長 ? +I will clean up the kitchen later . 我 等 一下 將 清理 廚房 . +This conference is very important . Do not miss it . 這場 會議 很 重要 , 不要 錯 過 了 ! +Rather than live a hundred years as a rabbit , live one day as a tiger . 寧 可 當 隻 老虎 活 一天 , 也 不 願 當 隻 兔子 過 一百年 . +I am short . 我 个头 矮 . +He threw a stone at the big dog . 他 朝着 大 狗 扔 了 块 石头 . +We have to have fun somehow . 我们 总得 找 点 乐子 . +A beautiful woman was seated one row in front of me . 一個 美麗 的 女人 坐在 我 前面 一排 . +I do not want to go there again . 我 不想 再次 去 那儿 . +Can you be ready to leave tomorrow ? 明天 你 能 準備 好 離開 嗎 ? +Did you have to get up very early this morning ? 你 今天 必須 起得 很早 嗎 ? +You only started this job an hour ago . 你 仅仅 是 一个 小时 前才 开始 这份 工作 的 . +She might be taller than you . 她 可能 比 你 高 . +I find that it is typical for him to come too late . 我 發現 他 就是 會 很 晚 才 來 這樣 的 人 . +She has no sense of beauty . 她 沒有 審 美感 . +Give me five more minutes . 再 给 我 五分钟 . +Sheep provide us with wool . 绵羊 提供 我們 羊毛 . +I do not know when he is coming . 不 知道 他 什么 时候 来 . +They sank ten enemy ships . 他们 使 10 艘 敌船 沉 了 +Would you like something to eat ? 您 想 吃 点 什么 吗 ? +Do you know if my father is still in the office ? 你 知道 我 父親 是否 還 在 辦 公室 嗎 ? +They left there the day before yesterday . 前天 , 他们 离开 了 那儿 . +You do not have any money . 您 沒有 任何 錢 . +Are you reading an interesting book ? 你 在 讀 有趣 的 的 書 嗎 ? +The noise frightened the baby . 噪声 吓到 了 婴儿 . +Tom does not have any idea why his wife left him . 湯姆 根本 不 明白 為 甚麼 他 的 妻子 離開 了 他 . +We enjoyed ourselves at the party . 我們 在 派 對 上 玩 得 很 開心 . +Tom and Mary have a very good relationship . 汤姆 和玛丽 关系 很 好 . +He made me sing on the stage . 他 讓 我 在 舞台 上 唱歌 . +Could you call me tonight , please ? 今晚 你 能 打 電話 給 我 嗎 ? +It is too expensive . 这 太贵 了 . +You are my best friend . 你 是 我 最好 的 朋友 . +Mary hugged her doll . Mary 擁抱 她 的 娃娃 . +The children are afraid of Tom . 孩子 們 怕 湯姆 . +We do not have class on Wednesday afternoons . 我们 周三 下午 没课 . +Are there any famous musicians on the stage ? 舞台 上 有 著名 音乐家 吗 ? +Let is proceed with the items on the agenda . 讓 我們 繼續 進行 議程 上 的 項目 . +It does not matter what you think . 你 怎么 想 无关紧要 . +Here is your bill . 这 是 账单 . +I always keep promises . 我 總 是 信守 承諾 . +Our house was robbed while we were away . 我们 走开 的 时候 , 房子 被 盗窃 了 . +Honesty is not always the best policy . 誠實不 總是 最好 的 策略 . +Tom hid under the table . Tom 躲 在 桌子 底下 . +In my opinion , she is correct . 在 我 看來 , 她 是 正確 的 . +" Tom is not here . " " Then where is he ? " “ 汤姆 不 在 那儿 . ” “ 那么 他 在 哪儿 ? ” +Who is next ? 下 一个 是 谁 ? +Do you know where he lives ? 你 知道 他 住 在 哪裡 嗎 ? +All he thinks about is himself . 他 只顾 自己 的 利益 . +He likes to travel alone . 他 喜歡 獨自 旅行 . +Please add up the bill . 請 確認 帳單 . +We can not just fire Tom . 我们 不能 仅仅 就 这样 炒 了 汤姆 +I am at work now , so I will call you later . 我 现在 在 上班 , 所以 晚点 打给 你 . +The lake is deepest at this spot . 这里 是 湖 最深 的 地方 . +I love coffee . 我 愛 咖啡 . +I want to stay . 我 想要 留下 . +We accept all major credit cards . 我們 接受 所有 主要 的 信用卡 . +I go shopping every other day . 我 每隔 一天 去 購物 . +That was an excellent meeting . 那 是 场 精彩 的 会议 . +Deal with them . 解决 他们 . +They decided to get married . 他們 決定 結婚 了 . +You should have come and talked to me . 你 應 該 來 跟 我 說 . +There is a bridge over the pond . 池塘 上 有 座 桥 . +He bent over backward to please his wife . 他 竭尽全力 地 讨好 他 老婆 . +This is the place where the battle of Hastings took place . 這裡 是 黑斯廷斯 戰役 發生 的 地方 . +My dream is to be a doctor . 我 的 梦想 是 成为 医生 . +You dropped your handkerchief . 你 的 手帕 掉 了 . +Hurry up . 快点 . +We expect to win . 我们 打算 赢 . +I often hiccup . 我 经常 打嗝 . +Do not stand near me . 不要 站 在 我 身邊 . +She put the money in the bank . 她 把 钱 放在 银行 里 . +The whole audience erupted in laughter . 哄堂大笑 . +Wood burns . 木材 燃燒 . +Ask her how much soup she wants . 問 她 要 多少 湯 ? +He usually goes to school by bus . 他 經常 搭 公車 上 學 . +Let is pray . 让 我们 开始 祈祷 吧 . +We want further information . 我们 想要 更 多 信息 . +It was heartless of him to say such a thing to the sick man . 他 对 一个 生病 的 男人 说 这种 事 真是 没良心 . +I will come with you . 我 會 和 你 一起 去 . +I dare say he is right . 我 敢 说 他 是 对 的 . +Leave me alone . 让 我 一个 人 待 着 . +I just saw Tom . 我 刚刚 见到 汤姆 了 . +I was expecting you last night . 昨天晚上 我 等著 你 來 . +She may be proud of her daughter . 她 可以 为 她 的 女儿 感到 骄傲 . +Will the train leave on time ? 這 班 火車 會 準 時 出發 嗎 ? +I will not let him come here again . 我 不 會 再 讓 他 來 這裡 . +Tom did not buy any bread . 湯姆 沒 有 買 甚 麼 麵 包 . +We do not want any freeloaders around here . 我們 不 希望 有人 在 這裡 吃 霸王餐 . +Though he is rich , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +We can not tell which is better . 我们 无法 辨别 哪个 更好 . +It is been raining since morning . 雨 從 早上 一直 下到 現在 . +Tom may have left already . 汤姆 可能 已经 走 了 . +I think you know that is not true . 我 认为 你 知道 那 不是 真的 . +He is good at playing tennis . 他 打网球 打 得 很 好 . +Please do not take pictures here . 请 别 在 这里 拍照 . +She taught music for thirty years . 她 教 了 三十年 的 音樂 . +I do not like swimming in pools . 我 不 喜歡 在 泳池 裡 游泳 . +He knew he could not win . 他 早就 知道 自己 不会 赢 . +Would you like to come along ? 你 想 一起 去 嗎 ? +He could not forsake his friend in trouble . 他 不会 抛 下落 难 的 朋友 不管 . +It took months . 它 花 了 几个 月 . +You never told me you could speak French . 你 從 沒 告訴 過 我 你 會 說 法語 . +Doing that is a waste of your time . 做 那事 是 浪费 你 的 时间 . +I will be with you tonight . 今晚 我 將 與 你 在 一起 . +He does nothing but complain from morning till night . 他 从早到晚 只是 在 抱怨 . +That was not nice . 那 不好 . +It is been a long time since we last saw each other . 真是 好久不见 啊 +He is at her side . 他 在 她 的 旁邊 . +I was stung by a bee . 我 被 蜜蜂 蛰了 一下 . +I have to win . 我 必须 赢 . +Do not get off the train till it stops . 列车 停下 前别 下车 . +I have heard this story before . 我 以前 听 过 这个 故事 . +I am good at tennis . 我 擅長 網球 . +I do not want anything to drink . 我 什么 都 不想 喝 . +Please shut the door . 請關 上門 . +Those flowers have died . 那些 花 死 了 . +Water is indispensable to life . 水 是 生命 所 不可 缺少 的 . +This whisky is very strong . 这种 威士忌 太烈 了 . +She managed to finish the work on her own . 她 想方设法 以 一己 之 力 完成 了 工作 . +I do not even want to try it . 我 甚至 不想 试试 . +This has nothing to do with me . 这 不关 我 的 事 . +It is convenient for me to see you at ten tonight . 我 今晚 10 点 见 你 比较 方便 . +Imagination affects every aspect of our lives . 想像力 影响 着 我们 生活 的 各个方面 . +Tom apologized to Mary for his rudeness . 汤姆 为 他 的 粗鲁 向 玛丽 道歉 . +Tom was late for dinner . 湯姆 晚餐 遲 到 了 . +I do not get it . 我 不 懂 . +He has three brothers . 他 有 三个 哥哥 . +I was very impressed by his story . 我 被 他 的 故事 感染 了 . +I know the girl playing tennis . 我 認識 這個 打 網球 的 女孩 . +He works in a big city hospital . 他 在 一間 很大 的 市立 醫院 工作 . +The butterfly flew away . 蝴蝶 飛 走 了 . +There are many sights to see in Kyoto . 在 京都 , 有 很多 的 景点 值得一看 . +I needed to speak to you about something . 我 需要 跟 你 說 點 事 . +Wait here . 在 这 等 着 . +That meal was simply divine . 那 頓 飯 簡直 好極 了 . +You talk as if you knew everything . 你 说 得 你 好像 什么 都 知道 似的 . +He paused to have a cigarette . 他 停下来 抽根 烟 . +Would you like to know how to prevent getting wrinkles ? 你 想要 知道 如何 避免 皺紋 嗎 ? +You are just being ridiculous . 你 就是 荒唐 . +Where is my watch ? 我 的 手 錶 在 哪 裡 ? +Tom would not hurt anyone . 湯姆 不 會 傷害 任何人 . +Tom should have already discussed that with you . 汤姆 应该 已经 跟 你 讨论 过 那事 了 . +She is always dressed in black . 她 總 是 一身 黑 . +There is only one window in my room . 我 的 房間 裡 只有 一个 窗戶 . +You are the only one I can trust . 你 是 我 唯一 能 信任 的 人 . +Tom says he needs a nap . 汤姆 说 他 需要 午睡 . +I get you . 我 了解 你 . +This school supplies students with textbooks . 这 所 学校 为 学生 提供 教科书 . +I had no right to interfere . 我 没有 权利 干涉 . +Come what may , I will not change my opinion . 無論 如何 , 我 不 會 改變 我 的 想法 . +What is the Wi @-@ Fi password ? Wifi 的 密碼 是 什麼 ? +I love going to the movies . 我 喜歡 看 電影 . +It makes no sense whatsoever . 无论如何 说 不通 . +He knows who they are . 他 知道 他们 是 谁 . +Research on the causes of cancer is very expensive . 有關 癌症 成因 的 研究 耗費 頗 巨 . +I have not heard that story yet . 我 還 沒有 聽 過 那個 故事 . +Promises are made to be broken . 诺言 就是 用来 打破 的 . +I have got something I want to show you . 我 有 东西 想 给 你 看看 . +We found the beds quite comfortable . 我們 發現 這些 床 很 舒服 . +Choose one person . 從 中 選擇 一 人 . +I am a little angry with you . 我 對 你 有 一點 生氣 . +Go wash up . 去 洗洗 吧 . +Complaining will not change anything . 抱怨 不 會 改變 任何 東西 . +The situation has become hopeless . 情況 變得 沒有 希望 了 . +Everyone I know uses Google . 我 认识 的 每个 人 都 用 谷歌 . +Flies and mosquitoes interfered with his meditation . 蒼蠅 和 蚊子 干擾 了 他 的 冥想 . +Feel free to get yourself a drink if you are thirsty . 觉得 渴 了 就 喝 点 . +I have a dog and a cat . 我 有一隻狗和一 隻 貓 . +Have not we met somewhere before ? 我们 好像 在 哪 见 过 ? +I will call you up tomorrow . 明天 我 會 打 電話 給 你 . +A plane is flying above the city . 一架 飛機 在 這個 城市 上空 飛行 . +Do not leave the water running . 不要 讓 水 一直 流 . +How long does it take from here to your house on foot ? 从 这里 步行 到 你家 要 多长时间 ? +Put the egg into boiling water . 把 蛋 放入 沸水 中 . +I got the money back from him . 我 拿到 了 他 還 給 我 的 錢 . +He is much taller than you . 他 比 你 高 得 多 . +He arrived at school exactly on time . 他 刚好 准时 到校 . +It is wrong to cheat at cards . 玩牌 作弊 是 錯誤 的 . +Would you mind explaining this ? 你 願意 解釋 嗎 ? +What are you girls doing ? 你們 這些 姑娘 在 做 甚麼 ? +He never goes out late at night . 他 從不 在 深夜 出門 . +The living room furniture was modern in style . 卧室 的 家具 是 现代 风格 . +They defended their country against the invaders . 他们 抵御 入侵者 , 保卫 了 国家 . +That is my coat . 那 是 我 的 大衣 . +Why is everyone being so nice to me all of a sudden ? 为什么 大家 突然 对 我 这么 好 ? +Lock the gate . 鎖 大門 . +Did Tom say anything ? Tom 有 說 什麼 嗎 ? +Can you take Tom to the hospital ? 您 能带 汤姆 上 医院 吗 ? +You 'd be surprised what you can learn in a week . 你 会 很 惊讶 你 在 一周 内能 学到 的 东西 . +Tom asked if I 'd found my key . 湯姆 問 我 找到 我 的 鑰匙 了 吗 . +He is driving at top speed . 他 全速 驾驶 着 . +He spent the morning reading a book . 他 花 了 一上午 的 時間 看書 . +This does not seem normal to me . 我 看 這 不 正常 . +Please turn on the radio . 請 打開 收音 機 . +Do you smoke ? 你 吸烟 吗 ? +He gathered his toys together . 他 收起 了 他 的 玩具 . +Do not do anything stupid . 请 不要 做 傻事 . +Mind your own business ! 管好 你 自己 的 事 吧 . +I would like to send these to Japan . 我 想 將 這些 寄 送到 日本 . +It is too hot for us to work . 太 熱 了 所以 我們 無法 工作 . +The weather is usually hot in July . 七月 天氣 經常 很熱 . +I talked to friends . 我 和 朋友 们 交谈 . +I do not care as long as you are happy . 只要 你 开心 就行了 . +I am very methodical . 我 很 有条理 . +She was not able to open the bottle . 她 無法 打開 這個 瓶子 . +They were listening to the radio . 他們 在 聽 收音 機 . +Cows are eating grass in the meadow . 牛 在 牧地 上 吃 草 . +I am a member of the swimming club . 我 是 游泳 社 的 成員 . +My sister often cries . 我 妹妹 经常 哭 . +He congratulated me on my success . 他 為 我 的 成功 恭 賀 我 . +Do not believe everything you hear . 不要 相信 你 聽到 的 每件事 . +Actually , I was wrong . 实际上 我 错 了 . +Can you save Tom ? 你 能 救 汤姆 吗 ? +I wish you 'd go . 我 希望 你 去 . +I am suffering from a bad headache . 我 頭 痛 得 厲害 . +America is very large . 美洲 很大 . +What do I have to do now that I am registered ? 我 注册 了 , 现在 该 干什么 呢 ? +When I got home , I was very hungry . 我 回到 家 的 时候 , 感觉 非常 饿 . +Tom could not tell Mary everything he knew . 汤姆 不能 告诉 玛丽 他 知道 的 所有 事 . +Lie down and rest for a while . 躺 下來 休息 一會兒 . +Tom did not know what Mary was talking about . 湯姆 不 知道 瑪麗 在 說 甚麼 . +I bought it for ten dollars . 我 花 10 美元 买 的 . +I need a towel . 我 需要 一塊 毛巾 . +You should have seen it . 您 本 應該 看看 它 的 . +I could not keep the tears from my eyes . 我 没法 忍住 我 的 眼泪 . +Father ran short of money and had to borrow some . 父親 缺錢 , 所以 他 必須 去 借 點 錢 . +She gave him a watch . 她 给 了 他 一块 表 . +Tom does not understand this . 湯姆 不 明白 這事 . +I am exhausted . 我 累死 了 . +The equator divides the globe into two hemispheres . 赤道 把 地球 分为 两个 半球 . +If you can not have children , you could always adopt . 如果 你 不能 有 孩子 , 你 总能 领养 . +I called Tom . 我 給 湯姆 打 了 電話 . +When did you get to know Tom ? 你 是 甚麼 時候 認識 湯姆 的 ? +This is a picture of my mother . 這 張 是 我 媽媽 的 照片 . +I think you will have very little difficulty in getting a driver is license . 我 想 你 要 拿到 驾照 根本 不难 . +Tom is growing a mustache . 湯姆 留著 小 鬍 子 . +They are not afraid of death . 他们 不怕死 . +First impressions matter . 第一印象 很 重要 . +He is an American . 他 是 美国 人 . +My sister has made remarkable progress in English . 我 妹妹 的 英语 有 了 明显 的 进步 . +His request is as follows . 他 的 要求 如下 . +I hope I can see you soon . 我 希望 很快 就 能 見 到 你 . +There is no film in this camera . 這個 相機 裡 沒有 胶卷 . +It is nonsense to try that . 这种 尝试 很 荒谬 . +The airplane made a safe landing . 這 架 飛機 安全 著陸 了 . +You may park here . 这里 可以 停车 . +I feed my cat every morning and every evening . 每天 早晚 , 我 给 我 的 猫 喂食 . +Who is the girl at the door ? 在 门口 的 女孩 是 谁 ? +You can go anywhere you want . 你 可以 去 任何 你 想去 的 地方 . +Tom wants to go to Japan . 湯姆 想 去 日本 . +He hates air travel . 他 讨厌 坐飞机 旅行 . +She accused me of telling a lie . 她 指責 我 說 謊 . +His son is criminal activities caused him great pain . 他 儿子 的 犯罪行为 给 他 带来 了 很大 的 痛苦 . +Auckland is a city in New Zealand . 奥克兰 是 一座 新西兰 的 城市 . +This one is yours . 這個 是 你 的 . +I watched the game from beginning to end . 那场 比赛 , 我 从头 看到 尾 . +For the time being , I am studying French at this language school . 目前 , 我 正在 這 所 語言學 校學 習法 語 . +Tom likes to listen to music while he is doing his homework . Tom 很 喜欢 一边 听歌 一边 做作业 . +She is married to an American . 她 嫁給 了 美國 人 . +I never make a speech without being nervous . 我 没有 一次 演讲 的 时候 是 不 紧张 的 . +It does not surprise me . 这 并 不让 我 惊讶 . +I want to go to the movies today . 我 今天 想 去 看 電影 . +He commanded me to leave the room immediately . 他 命令 我 立刻 离开 这个 房间 . +Could I have a subway map , please ? 給 我 一張 地下 鐵 的 路線 圖 好 嗎 ? +Everyone in the room checked their watches at the same time . 房间 里 的 所有人 都 同时 看 了 看 自己 的 手表 . +Food should not be wasted . 食物 不該 被 浪費 . +She was ashamed of herself for her carelessness . 她 为 自己 的 粗心 感到 羞耻 . +Go upstairs and bring down my trunk . 上樓 把 我 的 旅行箱 拿下 來 . +He is proficient in Farsi . 他 精通 波斯语 . +An ugly man knocked on my door . 一个 丑 男人 敲 了 我 的 门 . +I majored in chemistry at the university . 我 在 大學 主修 化學 . +You do not know how worried I am . 你 不 知道 我 有 多 担心 啊 . +She married a rich old man . 她 嫁給 了 一個 富有 的 老 男人 . +We are not ready to leave . 我们 还 没有 准备 好 离开 . +I do not want to hear any more excuses . 我 不想 再 听到 其他 借口 了 . +The oranges in this bag are rotten . 這個 袋子 裡 的 柳橙 都 爛 了 . +There are some books on the desk . 书桌上 有 几本书 . +I just wanted to check my email . 我 只 想查 一下 我 的 电子邮件 . +They all did it . 他们 都 做 了 . +My hobby is collecting stamps . 我 的 嗜好 是 集 郵 . +It was cloudy yesterday . 昨天 是 多 雲 . +Your father is tall . 你 爸爸 很 高 . +She had a little money . 她 有 一点 钱 . +As far as I know , she is still missing . 据我所知 , 她 仍然 失踪 . +Tom always sings out of tune . 汤姆 唱歌 总 跑调 . +I do not like English . 我 不 喜歡 英語 . +Everything is working fine . 一切正常 . +The boy does not know how to behave . 這個 男孩 不 懂 禮貌 . +He is about the same age as you are . 他 跟 您 年纪 差不多 . +He gave his life for his country . 他 把 他 的 一生 獻給 了 他 的 國家 . +It is important for old people to stay strong . 老人 保持 强健 很 重要 . +I had difficulty working out the problem . 我 在 解決 這個 問題 上 有 困難 . +He will not make it to old age . 他 不 會 長壽 . +" I think so , too , " she chimed in . “ 我 也 那样 觉得 . ” 她 附和 道 . +Do not forget your money . 不要 忘记 你 的 钱 . +I believe that he is happy . 我 相信 他 是 幸福 的 . +We sell orange juice . 我們 賣 柳橙汁 . +She is collecting material for a book . 她 为 一 本书 收集 材料 . +Be careful with it . 当心 它 . +Happy New Year ! 元旦 快 樂 ! +I agree with some of your opinions . 我 同意 你 一部分 的 意见 . +Is Tom able to speak French ? Tom 能 说 法文 吗 ? +Tell me when to start . 告诉 我 什么 时候 开始 . +She is about my age . 她 大約 跟 我 同年 紀 . +I heard him go out . 我 聽到 他 出去 了 . +How long will you be staying here ? 您 將 在 這裡 待 多久 ? +It is a very sad tale . 这 是 一个 非常 悲伤 的 故事 . +Peace talks will begin next week . 和平 會 談 將 在 下週 開始 . +They greeted me with a smile . 他們 面帶 微笑 向 我 打招呼 . +We had three tries and failed each time . 我们 试 了 三次 , 都 失败 了 . +Which is your book ? 哪 本 是 你 的 书 ? +Will you take part in the ceremony ? 你 會 參加 這個 儀式 嗎 ? +He had a hungry look . 他 面有 飢色 +Why are you always shouting ? 你 為 什麼 總要 大叫 ? +I collect foreign coins . 我 收集 外國 硬幣 . +Tom is waiting in the living room . 汤姆 正在 客厅 里 等 着 . +It was ten years ago that he first came to Japan . 他 第一次 來到 日本 是 在 十年 前 . +You look as healthy as ever . 你 看起来 和 以前 一样 健康 . +That is absolutely right . 那 是 絕對 正確 的 . +The dog growled at the strange man . 狗 對著 這個 陌生 男子 咆哮 . +I can not ask Tom right now . 我 現在 不能 問 湯姆 . +They freed the prisoner . 他們 釋放 了 犯人 . +We are not late . 我们 没 迟到 . +He is good at flying kites . 他 擅長 放 風箏 . +I think it is very difficult . 我 認為 它 很 難 . +He died yesterday . 他 昨天 去世 了 . +I have to paint it . 我 必須 把 它 漆 上 油漆 . +I am unable to finish my homework . 我 無法 完成 我 的 作業 . +We will be late for dinner . 我們 的 晚飯 要 晚點 吃 了 . +I am sure that this is a fresh water fish . 我 肯定 这 是 淡水鱼 . +In case of fire , push the button . 萬 一 發 生火 災 , 按 下 按 鈕 . +He is playing music . 他 在 演奏 音樂 . +The castle is across the river . 城堡 在 河 的 對面 . +Ask him where he parked his car . 问 他 把 他 自己 的 车 停 在 哪里 了 . +This was not cheap , was it ? 這 不 便宜 , 是 嗎 ? +I will pick you up around six . 我 會 在 六點鐘 左右 接 你 . +Is it really worth it ? 这 真的 值得 吗 ? +Tom is really gifted . 湯姆真 有 才 華 . +You are from Hokkaido , are not you ? 你 來 自 北海道 , 不是 嗎 ? +It started raining as soon as we got home . 我們 才 一 到 家 就 下起 雨 來 了 . +He gets a haircut three times a month . 他 一个月 剪 三次 头发 . +She finally reached the hotel . 她 終 於 到 達 了 酒店 . +I know what I did was wrong . 我 知道 我 做 错 了 . +The snow has disappeared . 雪 消失 了 . +I will lend you my textbook . 我 會 借 給 你 我 的 課本 . +She likes to go to the sauna . 她 喜欢 去 桑拿 . +We have been asked to not do this anymore . 我们 被 要求 不再 这么 做 . +He has great confidence in himself . 他 对 自己 很 有 自信 . +Are you afraid of being fired ? 你 害怕 被 炒鱿鱼 吗 ? +Columbus argued that he could reach India by going west . 哥伦布 提出 , 向 西 航行 可以 到达 印度 . +I am tired of my work . 我 厌倦 了 我 的 工作 . +You have no sense of direction . 你 一点 方向感 都 没有 . +It is absolutely impossible to do so . 絕對 不 可能 這樣 做 的 . +Now it is your serve . 現在 該 你 發球 . +I will call you up later . 我 稍 後 會 打 電話 給 你 . +I will lend you this dictionary . 我 會 借 給 你 這 本 字典 . +It is rude to point at others . 指著 別人 是 不 禮貌 的 . +If I 'd known the truth , I 'd have told you . 如果 我 知道 真相 , 我 就 告诉 你 了 . +We are the same age . 他 和 我 同岁 . +His comment was concise and to the point . 他 的 评论 简洁 且 击中要害 . +Do you have these shoes in my size ? 你們 這款 鞋子 有 我 的 尺寸 嗎 ? +You must go outside if you want to smoke . 如果 您 想 抽烟 的话 , 您 必须 出去 . +He drank three bottles of beer . 他 喝 了 三瓶 啤酒 . +This bicycle is mine . 這輛 自行 車 是 我 的 . +Whose notebook is that ? 這 臺 筆 記 本 電 腦 是 誰 的 ? +I think we should talk about this now . 我 认为 我们 现在 就 该 谈谈 这个 . +What did you make ? 你 做 了 什么 ? +I have not made up my mind yet . 我 還 沒有 下定 決心 . +The boy had a red face . 這個 男孩 有 一張 紅潤 的 臉 . +Are you nervous ? 你 紧张 吗 ? +Tom can not work this evening . 湯姆 今晚 不能 工作 . +He stressed the convenient aspects of city life . 他 强调 都市生活 的 便利 方面 . +Our school begins at eight @-@ thirty . 我們 學校 在 八點半 開始 上課 . +I do not know what we will do . 我 不 知道 我们 将 会 做 什么 . +My brother lives in a small village . 我 的 兄弟 住 在 一個 小村 莊裡 . +She put on socks . 她 穿 上 袜子 . +I am happy to see you here . 我 很 高興 在 這裡 看到 你 . +They are all college students . 他們 都 是 大學 生 . +Tom was hit by a truck and died instantly . 湯姆 被 卡車 撞到 而且 當場 死亡 . +Do you want rice ? 你們 要 米 飯 嗎 ? +I was wrong . 我 搞错 了 . +I am sure they will win . 我 相信 他們 會 贏 . +Unfortunately the telephone was out of order . 不幸 的 是 電話 壞 了 . +We must learn to live in harmony with nature . 我们 必须 学会 与 自然 和谐 共处 . +She left her umbrella in the train . 她 把 她 的 雨 傘 留在 火車 上 了 . +I found the comic book very interesting . 我 發現 這 本漫畫 書 非常 有趣 . +Keep oil away from the fire . 讓 油 遠離 火 . +I am not well at all . 我 一点 都 不好 . +It is windy today . 今天 有 风 . +He has a great deal of experience . 他 有 豐富 的 經驗 . +I have to go home . 我 该 回家 了 . +You may choose whichever book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +I did not feel like buying a car . 我 不想 買車 . +Tom is too old to work . 湯姆 老 得 不能 工作 了 . +Mary is not really sick . She is only pretending to be sick . 玛丽 不是 真病 . 她 只是 装病 . +Do you know the reason ? 你 知道 是 什麼 原因 嗎 ? +It is too long . 它 太 長 了 . +His wife opened the door for him . 他 的 妻子 為 他 開門 了 . +Thank you for your invitation . 感謝 您 的 邀請 . +She covered the mouthpiece of the phone with her hand . 她 用 手 捂住 了 电话 的 话筒 . +No one listened to me . 沒 有人 聽 我 的 . +I could not find it anywhere . 我 在 任何 地方 都 没能 找到 . +Are you busy at work ? 你 工作 很 忙 嗎 ? +Academic fraud is more common than you might think . 学术 造假 比 你 想象 的 普遍 . +Tom sent me there . 湯姆 送 我 去 了 那裡 . +All the boys in class worked hard . 課 堂上 所有 的 男生 都 很 用功 . +I made a mistake . 我 犯 了 一個 錯 . +It is hard for me to believe this . 我 觉得 这 难以置信 . +Who is your favorite TV star ? 谁 是 你 最 喜爱 的 电视 明星 ? +You are a student . 你 是 學生 . +Do you know what time it is in Boston ? 请问 现在 波士顿 是 几点钟 ? +You will be sorry for it some day . 有 一天 这 会 让 你 遗憾 的 . +What is your favorite iPad app ? 你 最 喜欢 的 iPad 应用 是 什么 ? +He got out from under the car . 他 從 車子 底下 出來 了 . +She employed him as a programmer . 她 僱用 他 作 程式 設計 師 . +He and his wife tried to work out their problems , but could not . 他 和 他 的 妻子 試圖 解決 他們 的 問題 , 但 沒有 辦法 . +We had a nice time last night . 我們 昨晚 過 得 很 開心 . +Two tears fell down her cheeks . 两滴 眼泪 从 她 的 脸颊 滑落 下来 . +This place is large , is not it ? 這個 地方 很大 , 不是 嗎 ? +He is older than she is by three years . 他 比 她 大 三岁 . +You do not have to go to school on Sunday . 你 没 必要 周日 去 上学 . +Let is not waste time arguing about it . 我们 别 再 浪费时间 争论 了 . +A bookstore in that location would not make enough money to survive . 那個 地點 的 書店 無法 賺 足夠 的 錢 生存 下去 . +It is getting to be time for me to head back . 差不多 该 回去 了 . +A cafeteria is a self @-@ service style restaurant . 自助餐 廳 是 一種 自助式 的 餐廳 . +Try to avoid making any more trouble . 盡量 避免 製 造 任何 更多 的 麻煩 . +Better be the head of a cat than the tail of a lion . 寧為貓 頭 不 為 獅尾 . +Her hobby is collecting stamps . 她 的 嗜好 是 集 郵 . +A great responsibility lies on his shoulders . 他 身肩重任 . +Last summer I traveled to Italy . 去年 夏天 我 去 意大利 旅行 . +It was very hot this afternoon . 今天下午 非常 炎熱 . +This is not love . 这 不是 爱 . +He goes to school to study every day . 他 每天 去 学校 学习 . +I want to spend the whole day with you . 我 想 跟 你 度 過 一整天 . +You got me . 算你狠 . +I did not suspect anything . 我 沒有 懷疑 任何 事 . +No problem at all ! 什么 问题 都 没有 ! +None of those books are useful . 這些 書 都 沒 有用 . +Do your gums bleed ? 你 的 牙齦 流血 嗎 ? +I want more . 我 想要 更多 . +Is bungee jumping frightening or fun ? 高空 彈 跳 是 恐怖 還是 好玩 ? +We have barely enough bread for breakfast . 我们 早饭 的 面包 刚够 吃 . +This dictionary has about 40,000 entries . 这本 字典 包含 了 约 4 万个 词条 . +No one lived on the island at that time . 那个 时候 , 没有 人 在 这个 岛上 生活 . +I want to eat something delicious . 我 想 吃 点 好吃 的 . +I want a few empty glasses . 我 要 一些 空 的 玻璃杯 . +He sells cars . 他 賣 車子 . +There is a fork missing . 少 一把 叉子 . +I do not care what happens . 我 不在乎 發生 什麼 事 . +He makes the most of his opportunities . 他 充分利用 他 的 機會 . +How long will the meeting last ? 會議 持續 多久 ? +I am very happy to see you . 我 很 高兴 见到 你 . +I really want to speak English fluently . 我 很 想 流利地 说 英语 . +It was a long letter . 它 是 封 长信 . +How about another beer ? 再 来 一杯 啤酒 怎么样 ? +Tom has contributed a lot of money to this hospital . 湯姆 捐獻 了 很多 錢 給 這間 醫院 . +He gave it a new name . 他 给 了 它 一个 新 名字 . +Tom looked at me and smiled . 汤姆 看着 我 笑 了 . +That river is dangerous to swim in . 在 這條 河裡 游泳 很 危險 . +It will cost at least five dollars . 它 至少 要 花 五美元 . +Let is meet here again tomorrow . 讓 我們 明天 再 在 這裡 見 面 吧 . +I still need to talk to you . 我 还有 话 要 对 您 说 . +The refrigerator is open . 冰箱 開著 . +She will be seventeen next year . 她 明年 將 滿 十七 歲 . +I never want to leave Boston . 我 從 不想 離開 波士 頓 . +He is a student at a high school . 他 是 一名 高中 學生 . +I have done a lot this week . 我 在 本週 做 了 許多 . +I am glad that you guys are here . 我 很 高兴 你们 都 在 . +There are many books in my room . 我 房間 裡 有 很多 書 . +Get them before they get us . 在 他们 控制 我们 之前 , 我们 先 制服 他们 . +Arrangements have already been made . 已经 安排 好 了 . +This is a friend of mine . 這 是 我 的 朋友 . +How much is it ? 它 多 貴 ? +The Italians often drink coffee . 意大利人 常常 喝咖啡 . +She had a basket full of apples . 她 有 一整 籃 的 蘋果 . +This book is very thick . 这 本书 非常 厚 . +Tom was at school all day . 汤姆 一整天 都 在 学校 . +There is a village over the mountain . 在 山巔 上 有 一個 村莊 . +Seeing the fresh lobster made me hungry . 看见 新鲜 龙虾 , 我 有 了 食欲 . +She is always finding fault with her neighbors . 她 总是 找 她 邻居 的 茬 . +Jealousy was the motive for the murder . 嫉妒 是 謀殺 的 動機 . +I owe my success to his help . 我 的 成功 要 归功于 他 . +I have a friend living in London . 我 有 一個 住 在 倫敦 的 朋友 . +" Whose chair is this ? " " It is mine . " “ 这 是 谁 的 椅子 ? ” “ 它 是 我 的 . ” +I felt as if I were in a dream . 我 感觉 就 像 做梦 一样 . +Something is starting to happen . 有 什么 要 开始 了 . +I was writing a letter when he came . 當 他 進來 的 時候 , 我 正在 寫信 . +Lots of Italians went to Australia . 許多 義 大利 人 去 了 澳大利 亞 . +He hid himself behind the door . 他 把 自己 藏 在 門 後 面 . +I have been told that you are a very competent person . 有人 說 你 是 個 很 有 能力 的 人 . +Wherever you go , I will follow you . 無論 你 去 哪裡 我 都 會 跟著 你 . +I have a high temperature . 我 發燒 了 . +Keep working . 繼續 工作 ! +Will you go to the party tonight ? 你 今晚 會去 派對 嗎 ? +You must always tell the truth . 你 必須 永遠 說 實話 . +I could not remember their names . 我 不 記 得 他們 的 名字 了 . +Stand aside . 一边 站 着 . +Oh please ! 噢 拜托 了 ! +You are a good person . 你 是 一個 好人 . +I am divorced . 我 离婚 了 . +The library is in the middle of the city . 图书馆 位于 市 中央 . +Japan is located in the Northern Hemisphere . 日本 位 於 北半球 . +Pass me the butter , please . 請 把 奶油 遞 給 我 . +" How old are you ? " " I am sixteen . " 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +The shopping center is one mile ahead . 這個 購物 中心 在 前面 一英里 遠 的 地方 . +Do you think you could make a little less noise ? 你 觉得 你 能 少 发点 噪音 吗 ? +They work only during the day . 他們 只 在 白天 工作 . +You should ask your father for his advice and follow it . 你 應 該 問 你 父親 的 忠告 並 遵守 它 . +I do not want to play cards . 我 不想 玩紙牌 . +Please tell me what I should do . 請 告訴 我 應 該 做 什麼 . +I spent the whole day reading that novel . 我 一整天 都 在 看 这本 小说 . +I am very busy . 我 很忙 . +Let is do it another time . 改天 再 說 吧 . +No news is good news . 没 消息 就是 好消息 . +I really like what I do . 我 真 喜欢 我 做 的 事 . +Which do you like better , dogs or cats ? 狗 和 猫 你 更 喜欢 哪 一个 ? +She slapped his face . 她 摑 了 他 的 臉 . +There are more girls than boys at our school . 在 我們 學校 裡 女孩 比 男孩 多 . +Please do not misunderstand me . 千万 别误会 我 的 意思 . +We have to leave in five minutes . 我们 必须 在 五分钟 之内 离开 . +I think your work is all right . 我 觉得 你 的 工作 可以 . +That is the computer on which he writes his articles . 那 就是 那 台 他 用来 写文章 的 电脑 . +Even a child could do it . 连 小孩儿 都 会 做 . +My father is car is new . 我 爸爸 的 車 是 新 的 . +She studied English in the morning . 她 上午 學習 英語 . +How many does he want ? 他 要 多少 ? +Tom translated a letter from French to English for his boss . 汤姆 为 他 的 老板 把 一封信 从 法语 翻译成 了 英语 . +We often hear you sing . 我们 经常 听到 你 唱歌 . +What we need is help . 我们 需要 的 是 帮助 . +Rice is sold by the kilogram . 米 以 公斤 為 單位 來 出售 . +If you do not want to go , you do not need to . 如果 你 不想 去 , 就 不必 去 了 . +What is your job here ? 你 在 这里 的 工作 是 什么 ? +I will give you a ring tomorrow morning . 明天 早上 我 會 打 電話 給 你 . +When did you go to work ? 你 什么 时候 上班 ? +Do you study English ? 您 学 英语 吗 ? +What do you usually eat for lunch ? 你 一般 中午饭 吃 什么 ? +Let me have a look at your notebook . 請 給 我 看 一下 你 的 筆記本 電腦 . +It is very easy to miss this kind of mistake . 这种 错误 很 容易 被 人 忽视 . +He was elected president . 他 被选为 总统 . +Could I get one more beer , please ? 再 給 我 一瓶 啤酒 好 嗎 ? +We went into the red last year . 我们 去年 遇到 了 赤字 . +Father bought me the latest model motorcycle . 父親 給 我 買 了 最新型 的 摩托 車 . +Nobody can help me . 没有 人 能 帮 我 . +Where is the elevator ? 電梯 在 哪裡 ? +How do you go to school ? 你 是 怎麼 去 上學 的 ? +Do you have a car ? 您 有 车 吗 ? +Tom did not know who it was . 湯姆 不 知道 那 是 誰 . +You must control yourself . 你 必須 控制 自己 . +Tom did not show up at the party yesterday . 湯姆 昨天 沒有 出現 在 派 對 上 . +Did you pay for the book ? 你 付 錢 買 這 本書 了 嗎 ? +Tom knows I want to leave as soon as possible . 湯姆 知道 我 想 盡早 離開 . +That thought crossed my mind . 这 应证 了 我 的 想法 . +Do you think it is a trap ? 你 認為 它 是 陷阱 嗎 ? +I do not sing very well . 我 唱歌 不太好 . +She was dressed in wool . 她 穿著 羊毛衣 . +My uncle never writes letters . 我 的 叔叔 從來 不寫 信 . +There are lots of trees in the countryside . 乡间 有 很多 树 . +Please write with a pencil . 請用 鉛筆 寫 . +The dress fits you very well . 这 条 裙子 你 穿着 很 合身 . +Nobody likes being laughed at . 沒 有人 喜歡 被 人 嘲笑 . +I did that , even though I did not really need to . 尽管 我 并 不是 真的 需要 这样 做 , 我 还是 做 了 +There was nothing the doctors could do . 醫生 甚麼 也 做不了 . +Mary will not listen to her friend is advice . 瑪麗 不 會 聽 她 朋友 的 忠告 . +The report is utterly false . 这份 报告 完全 错误 . +No comment . 禁止 评论 . +Is your homework finished ? 你 的 作業 做 完 了 嗎 ? +Is there anyone in the room ? 房间 里 有人 吗 ? +You look very happy this morning . 你 今天上午 看 起來 很 高興 . +Tom is not a friendly guy . 汤姆 不是 个 友好 的 家伙 . +Tom is office is on the third floor . 汤姆 的 办公室 在 三 楼 . +I wonder if anything happened to him . 我 怀疑 有 什么 事 在 他 身上 发生 了 . +This time , it is different . 這次 不 一樣 . +See you soon ! 一会儿 见 ! +I am really not happy about it . 我 對 此 真不 高興 . +He is acquainted with the mayor . 他 认识 市长 . +I would like to have another cup of coffee . 我 想 再 要 一杯 咖啡 . +Stay and have a drink with us . 留下来 和 我们 一起 喝酒 吧 . +What time do you start work ? 你 什么 时候 开始 工作 ? +What do you think of this sweater ? 你 觉得 这件 毛衣 怎么样 ? +He left his luggage at the station . 他 把 他 的 行李 留在 車站 . +It is cold this morning . 今天 早上 冷 . +I love this song . 我 爱 这 首歌 . +Be nice . 友善 点 . +Now is the time to decide whether you really want to get married or not . 现在 是 你 决定 是不是 真 要 结婚 的 时候 . +This drink is on the house . 這種 飲料 是 免費 招待 的 . +She is ashamed of what she is done . 她 为 自己 所 做 的 事 感到 羞耻 . +She asked us to leave her alone . 她 要求 我們 別 吵 她 . +Winds from the sea are moist . 从 海洋 吹来 的 风 感觉 湿漉漉 的 . +It would be wonderful if you could sing at our wedding . 你 能 在 我们 的 婚礼 上 唱歌 就 太好了 . +It is up to you . 由 你 來 決定 . +I am blind in the right eye . 我 的 右眼 瞎 了 . +We should have studied harder . 我们 本该 更加 努力学习 . +I wish she had come last night . 要是 她 昨晚 來 就 好 了 . +The people of London are very proud of this bridge . 倫敦 人 對 這 座 橋 感到 非常 自豪 . +She gave us lots to eat . 她 給 了 我們 很多 吃 的 東西 . +I will come to your place . 我 會 來 你 的 地方 . +This is too big . 這個 太 大 了 . +She rested her head on her mother is shoulder . 她 把头 垂 在 她 母亲 的 肩上 . +That is a pencil . 那 是 一支 铅笔 . +Tom is very quiet . 湯姆 很 安靜 . +He took a week off . 他 休 了 一周 的 假 . +The news made her happy . 这 消息 让 她 很 高兴 . +Follow me . 请 跟我来 . +We are to be married next Sunday . 我们 将 于 下 周日 结婚 . +The girl was always following her mother . 那 女孩 不管 到 哪兒 都 跟著 母親 . +Recently I moved to another apartment . 最近 我 搬到 另 一棟 公寓 . +I get depressed by the slightest things . 我 為 小 事情 覺得 沮喪 . +Tom said it was cold in Boston this time of year . 汤姆 说 一年 中 这时候 波士顿 很 冷 . +He kept me waiting all morning . 他 讓 我 等 了 整整 一上午 . +You should come home before six . 你 應 該 六點 前 回家 . +She pretended that she was sick . 她 假裝 生病 了 . +Answer the question . 回答 問題 . +Tom did not seem to want to tell me why he 'd done that . 汤姆 似乎 不想 告诉 我 为什么 他 要 那样 做 . +I would like to exchange this shirt that I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +I believe that story . 我 相信 那个 故事 . +There are a lot of parks in London . 伦敦 有 很多 公园 . +I like candlelight . 我 很 喜欢 烛光 . +Try it once again . 再试一次 . +Tom works in a windowless office . 汤姆 在 没有 窗户 的 办公室 里 工作 . +I just remembered that I was supposed to buy a loaf of bread . 我 才 想 起来 我 之前 该 买 个 面包 . +Quite a few people have two cars . 不少 人 有 兩輛 汽車 . +Tom bought a new notebook . 汤姆 买 了 新 笔记本 . +It seemed to be cheap . 似乎 很 便宜 . +Tom wondered what he could do . 汤姆 不 知道 他 能 做 什么 . +I know the man sitting over there . 我 認識 坐在 那裡 的 那個 男人 . +What are you concerned about ? 你 在 担心 什么 呢 ? +We are classmates . 我们 是 同学 . +Who is the boy swimming over there ? 在 那邊 游泳 的 男孩 是 誰 ? +My zipper got stuck . 我 的 拉链 卡住 了 . +Hurry , and you will catch the train . 快 一点 , 你 就 能 赶上 火车 了 . +Sydney is far from here . 雪梨 離 這裡 很 遠 . +There is no point in pretending to be sick . 装病 是 没用 的 . +I am proud of the work I have done here . 我 為 我 在 這裡 完成 的 工作 自豪 . +I have been to the barber is . 我 去 了 理发店 . +You can see the roof of the house from there . 你 能 從 那裡 看到 房子 的 頂 . +Is it true Tom can not swim ? 汤姆 真的 不会 游泳 吗 ? +No one is going to find you . 没有 人 要 去 找 你 . +It is really hot here in the summer . 这里 夏天 非常 热 . +They say that he will never return . 他们 说 他 再也不会 回来 了 . +Is Tom afraid of dogs ? 汤姆 怕 狗 吗 ? +He is not home . 他 不 在家 . +You guys have to hurry . 你们 这些 家伙 得 快点 . +I have to take my medicine every six hours . 我 每 六小时 要服 一次 药 . +I try not to think about it . 我 試著 不 去 想 了 . +You had better go at once . 你 最好 馬 上 走 . +We played soccer yesterday . 我们 昨天 踢 了 足球 . +I cannot give you a definite answer today . 我 今天 无法 给 您 一个 最终 的 答复 . +I can not survive without air conditioning in the summer . 我 夏天 没有 空调 会 死 . +The war began three years later . 三年 後 戰爭 開始 了 . +Zero comes before one . 零 在 一 前面 . +The Japanese Parliament today officially elected Ryoutarou Hashimoto as the country is 52nd prime minister . 日本 國會 今天 正式 選舉 了 橋本 龍 太郎 作為 全國 第 52 屆 總理 . +Keep looking . 繼續 看 ! +You speak good English . 你 的 英語 說 得 很 好 . +You are a professor . 你 是 教授 . +I can not undo it . 我 不能取消 它 . +There is a page missing . 有 一页 缺 了 . +We are not going on vacation . 我们 不 去 度假 . +I do not feel comfortable here . 我 在 這裡 感到 不 舒服 . +The cat is adorable . 這 隻 貓 很 可 愛 . +The soup is too hot . 汤太 烫 了 . +He went to Italy in order to study music . 為了 研讀 音樂 他 去 了 義 大利 . +I am open to suggestions . 我 愿意 接受 建议 . +What did you do with that book ? 你 用 那 本書 做 什麼 ? +There was a big fire last night . 昨晚 有 一場 大火 . +She pretended to be a student . 她 假装 是 学生 . +I am going to Hawaii next year . 我 明年 要 去 夏威夷 . +The bus was two minutes early . 巴士 早 了 兩分鐘 . +Are you busy today ? 你 今天 忙 吗 ? +I think it is better for us to adopt his plan . 我 认为 采用 他 的 计划 对 我们 比较 好 . +In my opinion , you are wrong . 在我看来 , 你 错 了 . +He is very fond of science fiction . 他 非常 喜欢 科幻小说 . +His response was contrary to our expectations . 他 的 回应 出乎 我们 的 意料 . +The other day I went fishing for the first time in my life . 前 几天 人生 第一次 去 钓鱼 了 . +Put your guns down . 放下 你 的 枪 . +I do not know anything about their relationship . 我 對 他們 的 關 係 一 無 所知 . +I am not moving to Boston . 我 没有 向 波士顿 走 . +I will do it . 我 會 做 的 . +Please leave me alone . 请 让 我 静 一静 . +Which book is yours ? 哪 本 是 你們 的 書 ? +He hates cleaning his room . 他 讨厌 打扫 自己 的 房间 . +You must always keep your hands clean . 你 应该 一直 让 手 保持 干净 . +She stayed in that area for a short while . 她 在 那 地方 待 了 片刻 . +You have a wonderful voice . 你 有 副 好 嗓音 . +It is not possible to stop here . 在 这 停留 , 这 不 可能 . +Do you know how to cook meat ? 你 知道 怎麼 煮肉 嗎 ? +His office is very close to mine . 他 的 辦 公室 跟 我 的 非常 近 . +Tom is face is red . 汤姆 的 脸红 了 . +Could you please autograph this book ? 請 你 在 這 本書 上 簽名 好 嗎 ? +No one came except Mary . 除了 瑪麗 沒 有人 來 . +It is almost time for the cherry blossoms . 幾乎 是 櫻花 綻放 的 時候 了 . +We will begin work soon . 我們 立即 開始 施工 . +Tom has blue eyes . 汤姆 的 眼睛 是 蓝色 的 . +I can not put up with this noise . 我 不能 忍受 這個 噪音 . +We tried to compromise with them . 我們 試著 和 他們 妥 協 . +That is great . 那 真是 太好了 . +We may never know . 我们 可能 永远 不 知道 . +There is no space in the room for another bed . 這間 房間 沒 有空 間 再 放 一張 床 了 . +The light changed from red to green . 燈 由 紅變 綠 . +There are no people who do not desire peace . 沒人不 渴望 和平 . +I am 17 , too . 我 也 是 17 岁 . +I thought you had to get up by 7 : 30 . 我 以为 你 要 7 点 半 起床 . +You should have accepted his advice . 你 本 应该 接受 他 的 建议 . +Tom built his own motorcycle . 湯姆 造 了 他 自己 的 摩托 車 . +We have to go . 我们 必须 走 了 . +A bird in the hand is better than two in the bush . 一 鳥 在手 勝 過 二 鳥 在 林 . +The young man put out his hand and I shook it . 年轻人 伸出 他 的 手 , 接着 我 和 他 握 了 手 . +I met your father yesterday . 昨天 我 見 到 了 你 父親 . +" What is in that box ? " " Nothing . " “ 盒子 里 有 什么 ? ” “ 什么 都 没有 . ” +That is the answer . 那 就是 答案 . +I am much younger than you . 我 比 你 年 輕 得 多 . +There is not any soap . 沒有 任何 肥皂 . +Tom knew that Mary would not cry . 湯姆瑪麗 不 會 哭 . +He is always asking for money . 他 總是 要 錢 . +How beautiful ! 多 美 啊 ! +Is Tom infected ? 汤姆 被 感染 了 吗 ? +You will get used to it . 你 会 习惯 的 . +You are everything to me . 你 是 我 的 一切 . +When I opened the door , I found him asleep . 当 我 打开门 的 时候 , 我 发现 他 睡着 了 . +How soon will the meeting begin ? 会议 什么 时候 开始 ? +He was suffering from a bad headache . 他 正 遭受 严重 头痛 的 困扰 . +You do not have to do it right away . 你 没 必要 马上 去 做 . +Tom has been to this park with Mary at least a dozen times . 汤姆 跟 玛丽 来 这 公园 至少 十二次 . +He will be free tomorrow . 他 明天 有空 . +Express yourself as clearly as possible . 盡 可能 明確 地表 達 你 自己 . +This homework is difficult for me . 這個 家庭 作業 對 我 來說 很困 難 . +We have not yet been told what we need to do . 還 沒人 告訴 我們 要 做 甚麼 . +This shirt needs to be ironed . 这 衬衫 需要 熨 . +She cursed loudly . 她 大声 诅咒 . +Who is your favorite actor ? 你 最 喜歡 的 演員 是 誰 ? +It serves you right . 自作自受 . +Tom said he keeps a gun in his home . 湯姆 說 他 的 家裡 有 把 槍 . +Hands up ! This is a robbery . 把手 举 起来 ! 这 是 抢劫 . +He died three years ago . 他 三年 前 死 了 . +I had to stay in bed all day . 我 不得不 一整天 都 呆 在 床上 . +This hall can hold 5,000 people . 这个 大厅 可以 容纳 5000 个人 . +I really do not know that woman . 我 完全 不 认识 那个 女人 . +I wonder why I feel so lonely when it gets cold . 我 很 疑惑 为什么 天气 变冷 的 时候 我会 觉得 很 孤单 . +Tom got fat . 汤姆 变胖 了 . +They mistook him for his brother . 他们 错 把 他 当成 他 的 兄弟 . +Do you think it is a sign ? 你 认为 这 是 个 预兆 吗 ? +We are both in the same class . 我們 兩個 同班 . +Shut the door on your way out . 出去 的 时候 把门 关上 . +I often play tennis after school . 我 常常 在 放學 後 打 網球 . +The war lasted nearly ten years . 這場 戰爭 持續 了 將 近十年 . +How come you do not know this ? 你 怎么 会 不 知道 ? +The mountain is covered with snow . 这 座 山 被 雪 覆盖 了 . +That is really nice . 真好 . +Tom is exaggerating . 汤姆 在 吹嘘 . +You are the one who decided to do this job , right ? 你 是 决定 做 这个 工作 的 那个 人 , 对 吗 ? +They would capture as many people as possible . 他們 會 盡 可能 地 抓 更 多 的 人 . +Tom has no manners . Tom 没有 礼貌 . +I do not love him anymore . 我 已经 不 爱 他 了 . +She asked for my help . 她 向 我 求助 . +I think I will take a bath tonight . 我 想 我 今晚 會 洗澡 . +Tom was popular . 汤姆 挺 受欢迎 . +There is no connection between them . 两者 没有 关联 . +You 'd better take it easy . 你 最好 放松 . +Kyoto is worth visiting . 京都 值得 游览 . +Let me stop you right there . We do not want to hear about that . 讓 我 在 這 打斷 你 . 我們 不想 聽 那個 話題 . +The guests are in the kitchen . 客人 們 在 廚 房 裏 . +Have you been busy since yesterday ? 你 从 昨天 开始 就 忙 吗 ? +You 'd better consult the doctor . 您 最好 请教 一下 医生 . +We took a walk in the park . 我们 在 公园 里 散步 . +I wish I were young . 但 願 我 還 年輕 . +That house appears deserted . 那 幢 房子 看起来 被遗弃 了 . +He denies having broken the window . 他 否認 打破 了 窗口 . +You will find it difficult to meet her requirements . 你 会 发现 难以 满足 她 . +I am tired of living this kind of life . 我 厌倦 了 这种 生活 . +The enemy dropped many bombs on the factory . 敵人 在 工廠 投下 了 很多 炸彈 . +She came to Tokyo when she was eighteen years old . 她 18 岁 的 时候 来到 东京 . +Saturn is a planet . 土星 是 一顆 行星 . +We were driven to the wall . 我们 被 逼得 走投无路 了 . +Where are you right now ? 你 現在 在 哪裡 ? +I am always at home on Sundays . 我 星期日 總是 在家 . +He looks just like his mother . 他 看 起來 就 像 他 的 母親 . +Write your goals down . 把 你 的 目標 寫 下來 . +It is a real bargain . 真是 物美 價廉 . +Do you own a gun ? 你 拥有 枪支 吗 ? +We lived together for three years . 我们 在 一起 生活 了 三年 . +Are you going to sing here ? 你们 要 在 这里 唱歌 吗 ? +Study hard , and you will succeed . 努力 學習 , 那麼 你 就 會 成功 . +His explanation really is not clear . 他 的 說明 並 不 清楚 . +He will regret it sooner or later . 他 遲早 會 後 悔 . +It must be a coincidence . 這 一定 是 個 巧合 . +The prince succeeded to the throne . 王子 继承 了 王位 . +I have already tried that . 我 已经 试 过 那个 了 . +I am dying for a cold drink . 我 迫切需要 冷饮 . +I have been warned against going there . 我 已經 被 警告 過 不要 去 那裡 . +What about you ? 你們 呢 ? +How is your business going ? 你 的 生意 进展 如何 ? +I will give you this money . 我 會 給 你 這筆 錢 . +I think I will be able to deal with that . 我 认为 我 能 做好 . +It is easy to catch a cold . 很 容易 感冒 . +This is expensive . 這 很 貴 . +We had a very good time last night . 我们 昨晚 过 得 非常 开心 . +Absolutely nothing is permanent in life . 生活 中 绝对 没有 什么 是 持久 的 . +Speaking foreign languages is not easy . 講 外語 是 不 容易 的 . +They became very nervous . 他们 变得 很 紧张 . +Ireland and England are separated by the sea . 爱尔兰 和 英格兰 被 海 分割 . +To master English is hard . 精通 英語 是 困難 的 . +It is clear that there is a rather strong disagreement between the two . 很 明顯 的 是 這 兩者 之間 有 很 強烈 的 分歧 . +She is older than Tom . 她 年紀 比 湯姆 大 . +He is confronted by many difficulties . 他 面 臨著 許多 困難 . +Does he speak English ? 他 说 英语 吗 ? +Prince William is second in line to the English throne . 威廉 王子 是 英国 王位 第二 顺位 继承人 +I will have to find a part @-@ time job . 我 得 找 一份 兼職 工作 . +There was a sudden change of plan . 計劃 突然 改變 . +The bad weather affected his health . 恶劣 的 天气 对 他 的 健康 带来 了 影响 . +What time does it open ? 什么 时候 开门 ? +Move the chair nearer to the desk . 把 椅子 挪 一 挪 靠近 桌子 . +She likes to cook for her family . 她 喜欢 为 她 的 家人 做饭 . +I 'd like a nonstop flight to New York . 我 想要 一个 直飞 纽约 的 航班 . +They did not see us . 他们 没 看见 我们 . +What is wrong with your dog ? 你 的 狗 怎麼 了 ? +Tom has not finished yet . 湯姆 還 沒 完成 . +She rarely goes out on Sundays . 她 星期日 很少 出門 . +Would you like some more cake ? 你 想 再 來 些 蛋糕 嗎 ? +I asked the boy to throw the ball back . 我 請 這個 男孩 把 球 扔回 來 . +I could not get him to stop smoking . 我 無法 讓 他 停止 吸煙 . +I do not like dogs . 我 不 喜歡 狗 . +What do we have to do ? 我們 必須 做 甚麼 ? +I left earlier than my sister . 我 比 我 的 妹妹 早 離開 . +Some people eat sushi with their hands . 一些 人用 手 吃 寿司 . +I have no time . 我 没 时间 . +I can not find the broom . 我 找 不到 掃 把 了 . +I thought we had agreed on this . 我 認為 我們 己 經 同意 了 . +He comes from England . 他 来自 英格兰 . +We must do something . 我們 必須 做 點 甚麼 . +They are ignoring me . 他們 不理 我 . +Tom told me he 'd be right back . 汤姆 告诉 我 他 会 马上 回来 . +Are you ready to proceed ? 准备 好 继续 了 吗 ? +I am at the airport now . 我 现在 在 机场 . +We should have stayed at home . 我們 本來 應該 留在 家裡 的 . +Are you satisfied now ? 你 現在 滿意 了 嗎 ? +Put away your bicycle . 把 你 的 自行车 放好 . +I am not going to show any fear . 我 不会 表现 出 恐惧 . +I could swear there is something inside this box . 我 能 发誓 这 箱子 里 有 东西 . +He had a book in his hand . 他 手里 拿 着 一 本书 . +Tom does not talk with anyone . 湯姆 不 跟 任何人 說 話 . +God is everywhere . 神無處 不 在 . +So you give up , right ? 所以 你 放弃 了 , 是 吗 ? +You look just like your big brother . 你 和 你 哥哥 长 得 一模一样 . +I do not like to go out when it is dark . 我 天黑 后 不 喜欢 出门 . +You look happy today . 你 今天 看上去 很 开心 . +Tom is looking for a job . Tom 正在 找 工作 . +Just take it slowly . 慢慢来 . +I can swim across the river . 我 能 游泳 過河 . +What were you doing in the attic ? 你 在 阁楼 上 做 了 什么 ? +Are you planning to take part in the meeting ? 你们 准备 参加 会议 吗 ? +How much time do you estimate it will take you to do that ? 你 估计 做 那件事 需要 花费 你 多少 时间 呢 ? +We need an ambulance . 我们 需要 一辆 救护车 . +I would like to pay by credit card . 我 想用 信用卡 支付 . +The street is paved with asphalt . 這條 街鋪 上 了 柏油 . +Everyone was surprised to see Tom . 每個 人 看到 Tom 都 很 驚訝 . +I will come as often as possible . 我 會 來 盡 可能 常來 . +How much time is left ? 还 剩 多少 时间 ? +One is new . The other is old . 一个 是 新 的 , 另 一个 是 旧 的 . +I looked him in the eyes . 我 直视 他 的 眼睛 . +I had a chance to travel abroad . 我 有個 到 國外 旅遊 的 機會 . +I brought up two kids all on my own . 我 一個 人 把 兩個 小孩 扶養 長大 . +My mother almost never complains . 我 媽媽 幾乎 從 不 抱怨 . +You had better take an umbrella with you today . 你 今天 最好 隨身 帶 把 傘 . +Go away ! 滾 ! +He wears glasses . 他 戴 眼鏡 . +I am getting choked up . 我 快要 激动 得 说不出 话 来 了 . +This is the nicest present I have ever received . 这 是 我 得到 过 的 最好 的 礼物 . +That one is really good . 那 一個 真好 . +Thanks very much for having me to dinner the other night . 谢谢 那天 晚上 请 我 吃了饭 . +Tom has got his own problems . 汤姆 有 他 自己 的 问题 . +I will make it clear that I will not come again . 我 要 明確 表示 我 不 會 再 來 了 . +I guess it depends on the weather . 我 想 這 要 看 天氣 情況 而 定 . +She dusts the furniture every day . 她 每天 擦拭 家具 的 灰塵 . +You are not me . 你 不是 我 . +How weird ! 多 怪 啊 ! +He is taking a walk . 他 正在 散步 . +When the phone rang , he ran to answer it . 電話 響起 時 , 他 跑 去 接起 . +The sun rose over the horizon . 太陽 升出 了 地平線 . +My son is engaged to his secretary . 我 的 兒子 和 他 的 秘書 訂婚 了 . +You look the way your father did thirty years ago . 你 看上去 就 像是 三十年 前 你 父親 的 樣子 . +Tom has to do that right away . 汤姆 必须 马上 去 做 . +All at once she began to shout in a shrill voice . 突然 間 她 開始 用 尖銳 的 聲音 大喊 . +That book is very old . 那 本書 很 舊 . +I am from Singapore . 我 是从 新加坡 来 的 . +Tom did not know what he 'd say to Mary . 湯姆 不 知道 他 要 對 瑪麗 說 甚麼 . +We give a 10 % discount for cash . 如 用 現金 付款 , 我們 給予 九折 優惠 . +Every great writer seems to have been interested in English . 每 一個 偉大 的 作家 似乎 已經 對 英語 感興趣 . +I am sorry , I dialed the wrong number . 對 不起 , 我 撥錯 了 號碼 . +Tom refused to pay the bill . 湯姆 拒絕 付賬 . +Tom was not too happy in those days . 湯姆 這些 天裡 不 太 高興 . +I slept just two hours . 我 只 睡 了 两 小时 . +He works every day except Sunday . 除了 星期天 他 每天 工作 . +Is there anybody in the house ? 屋里 有人 吗 ? +Let is call it a day . 今天 就 到 此 為止 吧 . +I will badly miss you if you leave Japan . 如果 你 离开 日本 , 我会 非常 想 你 的 . +Are you free tomorrow evening ? 你 明晚 有空 嗎 ? +The sky is full of dark clouds . 空中 烏雲 密 佈 . +How many oranges did Tom eat ? 湯姆 吃 了 多少 橘子 ? +I bought it last week . 我 上週 買 了 它 . +Your parents loved you very much . 你 的 父母 很 愛 你 . +We got involved in a traffic accident . 我們 被 捲 入 了 一 場 交通事故 . +Do you believe in eternal life after death ? 你 相信 死 后 永生 吗 ? +I miss you so much . 好 想 見 到 你 +The telephone is ringing . 電話 正在 響 . +Where do you watch television ? 您 在 哪儿 看电视 ? +He does not believe in God . 他 不 信神 . +There were many people at the concert . 演唱 會 上 有 許多 人 . +What is your favorite color ? 你 最 喜欢 的 颜色 是 什么 ? +The price of gas is rising . 天然 氣 的 價格 上升 . +It is not easy to catch a hare with your bare hands . 空手 赤拳 抓 野兔 並 不 容易 . +Tom bought a plane ticket . 湯姆 買 了 張 機票 . +He reluctantly agreed to my proposal . 他 勉強 同意 了 我 的 建議 . +He looks like his father . 他 看 起來 像 他 的 父親 . +I do not want you . 我 不 想要 你 . +Learning foreign languages is boring . 學 外文 很 無聊 . +After I cleaned the window , I could see through it clearly . 清潔 窗戶 後 , 我 能 很 清楚 的 從 窗戶 看 出去 . +What a lot of pens ! 那么 多 钢笔 ! +Would you please autograph this book ? 請 您 在 這 本書 上 簽名 好 嗎 ? +He likes both music and sports . 他 喜歡 音樂 和 運動 . +Which is your favorite team ? 你 最 喜歡 哪 一隊 ? +She is married to a foreigner . 她 嫁給 了 一個 外國 人 . +He has ambition , so he works hard . 他 有 抱負 , 所以 他 很 努力 工作 . +Who is the woman in the brown coat ? 那个 穿 棕色 大衣 的 女人 是 谁 ? +These shoes are too tight . They hurt . 这些 鞋子 太紧 了 , 伤脚 . +I really look forward to your visit in the near future . 我 很 期待 在 不久 的 將 來 您 的 光臨 . +Please put on these slippers . 请 穿 上 这些 拖鞋 . +They eat dinner at twelve o 'clock . 他們 在 12 點 吃 晚 飯 . +Tom has disappeared . 汤姆 不见 了 . +I am sorry to bother you . 對 不起 打擾 你 了 . +The job is half done . 這項 工作 已經 完成 了 一半 . +There was an earthquake this morning . 今天 早上 發生 了 地震 . +I love spending time with Tom . 我 喜欢 花 时间 和 Tom 在 一起 . +She did not like her husband . 她 不 喜歡 她 的 丈夫 . +Please water the flowers . 請 澆 花 . +Tom poured himself another glass of wine . 汤姆 又 给 自己 倒 了 一 杯酒 . +Tom has forgotten how to do that . 汤姆 忘 了 怎么 做 . +You do not have to stay in the hospital . 你 不必要 呆 在 医院 . +It is better to chill white wine before you serve it . 在 你 侍酒 前 最好 先 將 白葡萄酒 冷 卻 一下 . +We had a party last night . 我們 昨晚 有 一個 聚會 . +They forgot to lock the door . 他们 忘 了 锁门 . +She has lost weight . 她 的 体重减轻 了 . +No one can escape growing old . 没有 人能 逃过 衰老 . +Never forget to put out the fire . 永遠 不要 忘 記關 火 . +Did Tom ever tell you how he first met Mary ? 湯姆 告訴 你 他 是 怎樣 第一次 遇見 瑪麗 的 了 嗎 ? +Come on ! Give me a chance . 来 嘛 ! 给 我个 机会 . +It was Marie Curie who discovered radium . 鐳 是 居里夫人 所 發現 的 . +Your chair is identical to mine . 你 的 椅子 和 我 的 很 像 . +Our school is principal is very old . 我校 校长 很 老 了 . +He is not a doctor but a teacher . 他 不是 医生 , 他 是 教师 . +I can understand you to some extent . 在 某種 程度 上 我 能 了解 你 . +Why worry about it ? 為 什麼 要 擔心 ? +It was very nice seeing you again . 非常 高興 再次 見 到 你 . +Tom put a stack of letters on Mary is desk . 汤姆 把 一叠 信 放在 玛丽 桌上 . +She is upset . 她 心情 不好 . +A tiger has escaped from the zoo . 一 隻 老虎 逃出 了動 物園 . +She practiced the piano every day . 她 每天 練 習彈 鋼琴 . +You are not kids anymore . 你們 不再 是 小孩 了 . +Is he breathing ? 他 在 呼吸 嗎 ? +The rumor proved to be true . 经过 证实 , 谣言 是 真的 . +I actually did not say that . 我 其實 沒 那麼 說 . +He rested for a while . 他 休息 了 一会儿 . +We played basketball in the gym . 我們 在 體育館 打 籃球 . +Let is do it another time . 再 找 時間 吧 . +I am really scared of spiders . 我 真怕 蜘蛛 . +I am leaving next week . 我 下 個 星期 離開 . +He cut the envelope open . 他 裁開 了 那個 信封 . +Japan depends on other countries for oil . 日本 的 石油 依靠 进口 . +You are really a hard worker . 你 真是 个 努力 的 工人 . +Which season do you like the best ? 您 最 喜欢 哪个 季节 ? +I can not understand how Tom could know . 我 不 懂 汤姆 怎么 知道 的 . +She has traveled all over the globe . 她 周遊 世界各地 . +I know that he went to London . 我 知道 他 去 了 伦敦 . +Are you closer to your mother or to your father ? 你 和 爸爸 更 亲 还是 妈妈 更 亲 ? +If you want to go , then go . If you do not want to , then it is no big deal . 如果 你 想 去 , 就 去 好 了 . 如果 你 不想 去 , 那 也 没什么 大不了 的 . +He is a Japanese boy . 他 是 个 日本 少年 . +The girl resembled her mother . 這個 女孩 很 像 她 的 母親 . +I like listening to the radio . 我 喜歡 聽 收音 機 . +I do not blame you for doing that . 我 不 怪 你 那樣 做 . +Tom paid me back the money that he owed me . 汤姆 把 欠 我 的 钱 还给 我 了 . +I have gotten better . 我 已經 變得 好多 了 . +I do not like eating meat . 我 不 喜歡 吃 肉 了 . +He is a comedian . 他 是 喜剧演员 . +Did you eat at home before you came here ? 你 來 之前 在家 裡 吃飯 了 嗎 ? +I hope we stay in touch . 我 希望 我们 能 保持联系 . +More than 40 percent of the students go to university . 40 % 以上 的 学生 去 读 大学 . +I just cut my finger . 我 剛剛 切到 手指 了 . +You know that is your duty . 你 知道 那 是 你 的 责任 . +I would like to speak English fluently . 我 想 把 英語 說 得 很 流利 . +She knows how to play the guitar . 她 知道 如何 彈 吉他 . +I am looking for a small suitcase . 我 正在 找 一個 小 手提箱 . +My father died of lung cancer . 我 的 父親 死 於 肺癌 . +Had I arrived earlier , I could have seen Kelly . 如果 我 早點 到 , 就 能 遇到 凱莉 了 . +I agree with Tom a hundred percent . 我 百分之百 同意 Tom . +If you enjoy the work you do , you have something worth more than money . 如果 你 喜歡 你 做 的 工作 , 你 就 有 比金 錢 更 有 價值 的 東西 . +At first , I thought I was sick . 一 开始 , 我 以为 我 病 了 . +Are you going to buy a dictionary ? 你 要 去 買 詞典 嗎 ? +I did not order this . 我 没有 预定 这个 . +Ostriches can not fly . 鸵鸟 不会 飞 . +He put on clean trousers . 他 穿 上 了 乾 淨 的 褲子 . +Where is my book ? 我 的 書 在 哪 ? +Do you ever study in the library ? 你 曾經 在 圖書館 讀書 嗎 ? +She wants to hug him . 她 想 擁抱 他 . +I am 30 years old . 我 三十 歲 . +She made a new suit for him . 她 做 了 一套 新 衣服 給 他 . +He was kind enough to take me to the hospital . 他 好心 地 把 我 送到 医院 . +It is already time for us to go . 到 我們 該 走 的 時候 了 . +Please reconsider . 请 重新考虑 一下 . +He fought against racial discrimination . 他 反 對 種族 歧視 . +I almost caught the fish . 我 幾乎 釣到 了 魚 . +That boy is running . 那个 男孩 在 跑步 . +He barely passed the examination . 他 勉強 地 通過 了 考試 . +That is something to be proud of . 那 是 值得 自豪 的 事 . +This school was founded in 1650 . 这 所 学校 建于 1650 年 . +She held her breath . 她 止住 了 呼吸 . +Do you have a favorite color ? 你 有 喜欢 的 颜色 吗 ? +She cried bitterly . 她 痛哭 了 起來 . +Do you think Tom is too young ? 你 觉得 汤姆 是不是 太嫩 了 ? +Can I eat this ? 我 可以 吃 这个 吗 ? +I would like to stay for one night . 我 想待 一夜 . +What did you buy ? 你 買 了 什麼 ? +Paper is made from wood . 纸 是 由 木 制成 的 . +I like red wine better than white . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +A large pillar obstructs the view of the lake . 巨大 的 柱子 遮住 了 视线 , 让 人 看不到 湖 . +I am going to take my car . 我 将 去取 我 的 车 . +He carried a bag full of apples . 他 拿 着 一个 装满 了 苹果 的 袋子 . +My mother grows flowers in her garden . 我 的 母親 在 她 的 花園 裡 種花 . +I am going to miss that . 我 要 失去 它 了 . +Philosophy is not a thing one can learn in six months . 哲学 不是 我们 用 六个月 就 能学 的 东西 . +Is it hard to speak English ? 說 英語 很 難 嗎 ? +I have heard the French version of this song . 我 听 过 这 首歌 的 法语 版 . +Are you planning on eating that all by yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +The grapefruit tastes very sour . 柚子 很酸 . +Do not let anyone enter the room . 不要 讓 任何人 進入 這個 房間 . +If you can not make it , call us as soon as possible . 如果 你 做 不到 , 儘 快 連 絡 我 們 . +Let is meet at one o 'clock . 讓 我們 一點鐘 見 面 吧 . +I am much better today than yesterday . 我 今天 覺得 比 昨天 好多 了 . +Do not be disappointed . 不要 失望 . +If you can sing , that is good enough . 如果 你 会 唱歌 就 好 了 . +What trips are you planning ? 你 在 计划 什么 出游 吗 ? +She cooked the dinner herself . 她 自己 煮 晚餐 了 . +Wealth does not always bring us happiness . 財富 並 不 總是 為 我們 帶來 快樂 . +He went fishing instead of playing tennis . 他 去 钓鱼 了 , 而 没去 打网球 . +Goodbye and good luck . 再见 , 祝 好运 . +He thinks he knows everything . 他 以 为什么 都 知道 . +She can do both at the same time . 她 可以 同时 做 这 两件事 . +I like sweets . 我 喜歡 甜食 . +The soldiers occupied the building . 士兵 们 占领 了 这个 建筑 . +This is a bird sanctuary . 这 是 鸟类 庇护所 . +I 'd like a room in the front . 我 想要 一間 前面 的 房間 . +It looks like the dog wants something to eat . 那 隻 狗 看 起 來 好像 想 吃 東西 . +I am glad you came over . 我 很 高兴 你 回来 了 . +Do not you have any money ? 你 沒 有 錢 嗎 ? +The girl does not like to play soccer . 那个 女孩 不 喜欢 踢足球 . +I would like to ask you a few more questions . 我 想 問 再 你 幾個 問題 . +They believe in a life after death . 他們 相信 死 後 的 生命 . +I am suffering from a bad cold . 我 患上 了 重感冒 . +Behave yourselves . 规矩 点 . +He kissed his daughter on the forehead . 他 親 了 親 他 女兒 的 額頭 . +Had I known about it , I would have told you . 如果 我 知道 的话 , 我 早就 已经 告诉 你 了 . +This meal is adequate for three . 这 饭 足够 三个 人 吃 . +Tom is very talented . 汤姆 多才多艺 . +Since I had met him once before , I recognized him right away . 由 於 我 以前 見 過 他 一次 , 所以 我 馬 上 就 認出 他 了 . +My hobby is making model planes . 我 的 嗜好 是 做 模型 飛機 . +Mary is going to help us tomorrow . 瑪麗 明天 會 幫 我們 . +I am sorry , could you say that again ? 抱歉 , 你 能 再说 一遍 吗 ? +Tom looked at his notes . 汤姆 看 了 看 笔记 . +He fell in love with her at first sight . 他 對 她 一 見 鍾 情 . +Tom did not accept Mary is apology . 汤姆 不 接受 玛丽 的 道歉 . +The stream flows into the pond . 溪水 流進 這個 池塘 裡 . +You are the master of your own destiny . 你 才 是 自己 命运 的 主人 . +The girl has no mother . 这个 女孩 没有 母亲 . +Tom seems to have a cold . 湯姆 看來 感冒 了 . +The opening ceremony of the Olympics has already begun . 奥运会 已经 开幕 了 . +My father quit drinking . 父亲 戒酒 了 . +I 'd rather go swimming . 我 寧願 去 游泳 . +Did you watch TV last night ? 你 昨晚 看電視 了 嗎 ? +Tom wants to learn to sing in French . 汤姆 想学 唱 法语歌 . +Why could not you sleep last night ? 为什么 你 昨晚 睡不着 ? +My blood pressure is 155 over 105 . 我 的 血壓 為 155 比 105. +They made the novel into a drama . 他們 把 這 本小 說 變成 戲劇 . +We used to go to the movies on Saturday evening . 我们 曾经 总 在 星期六 傍晚 去 看 电影 . +I would rather stay at home than go out in this hot weather . 在 这种 暑天 里 我 宁愿 呆 在家 也 不 出去 . +I was pretty hungry . 我 真是 饿 了 . +This is not money . 这 不是 钱 . +You are stupid . 你 二 了 . +She gave away all her dresses . 她 把 她 所有 的 洋裝 都 送 人 . +My father took out his wallet and gave me ten dollars . 我 爸爸 拿出 他 的 钱包 , 并给 了 我 10 美元 . +She is dressed in white . 她 穿着 白色 的 衣服 . +There is a page missing . 有 一页 缺 了 . +This is one of the best restaurants that I have ever eaten in . 这 是 我 吃 过 的 最好 的 餐馆 之一 . +She is dieting . 她 在 节食 中 . +Let is finish up in a hurry . 讓 我們 快點 做 完 吧 . +" I saw her five days ago , " he said . 他 说 : “ 我 五天 前 见 过 她 . ” +Even a broken clock is right twice a day . 凡人 皆 有 得意 时 . +These patients have trouble walking . 这些 患者 走路 有 困难 . +Oh ! I am sorry to hear that . 哦 ! 我 很 遺憾 聽到 這個 消息 . +There are 30 students in our class . 我们 班 有 三十名 学生 . +I have been abroad several times this year . 我 今年 去 了 好 几次 外国 . +This is about as large as that . 這個 大約 跟 那個 一樣 大 . +Lincoln set the slaves free . 林肯 釋放 了 奴隸 . +He explained his plans in detail . 他 詳細 地 解釋 了 他 的 計劃 . +I was in Boston last month . 我 上 個 月 在 波士 頓 . +She made him a new coat . 她 為 他 做 了 件 新 大衣 . +You have got a great sense of humor . 你 有 很好 的 幽默感 . +I swear I will never do such a thing . 我 发誓 我 不会 做 这种 事 . +My uncle gave his car to me . 我 叔叔 把 他 的 車 給 我 . +Sorry , I do not have any money . 抱歉 , 我 没钱 . +If Tom does not surrender , shoot him . 如果 湯姆 不 投降 , 就 開 槍 +He wants to get a new dictionary . 他 想得到 一本 新 的 字典 . +Have you ever eaten Japanese food ? 你 吃 過 日本料理 嗎 ? +I bought an old lamp . 我 买 了 一盏 很 旧 的 灯 . +A tsunami is coming , so please be on the alert . 海啸 来 了 , 密切注意 啊 . +I am opposed to any type of war . 我 反對 任何 形式 的 戰爭 . +Tom came to the conclusion that no matter what he did , Mary would not like it . 汤姆 得出 无论 他 做 什么 , 玛丽 都 不会 喜欢 的 结论 . +I like drawing . 我 喜欢 画画 . +I can solve the problem by myself . 我 可以 自己 解決 這個 問題 . +She has plenty of work to do . 她 有 很多 事 要 做 . +This time , it is different . 这 一次 不 一样 . +They usually sleep in this room . 他們 通常 在 這個 房間 裡 睡覺 . +That makes sense . 那样 说 得 通 . +The teacher gathered his students around him . 老師 把 他 的 學生 們 聚集 在 他 周圍 . +Answer the phone . 接电话 . +It would be great if you could sing . 如果 你 唱歌 的 話 一定 很棒 . +You look very charming today . 今天 你 看起来 很 迷人 啊 . +Which one will he choose ? 他 會 選 哪個 ? +He placed the ladder against the fence . 他 把 梯子 倚著 柵欄 放 . +We often play cards on Sunday . 我們 常常 在 週日 打牌 . +She pressed her nose against the glass . 她 把 鼻子 贴 在 玻璃 上 . +I do not go to school . 我 不 去 学校 . +Have you read this book already ? 你 讀 過 這 本書 了 嗎 ? +She warned him not to go out at night alone . 她 警告 他 晚上 不要 一个 人 出去 . +I hope you will get well soon . 我 希望 您 快 就 会 好 起来 . +Sitting down all day is bad for you . 整天 坐著 對 你 不好 . +Which do you prefer , spring or autumn ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +What do you think ? 你 認為 如何 ? +I do not want to live alone . 我 不想 獨自 生活 . +She seems to hate you . 她 好像 很 讨厌 你 . +This is very expensive . 這 是 非常 昂貴 的 . +Tom always seems to be working . 湯姆 看來 總是 在 工作 . +It is the truth . 这 是 事实 . +I am quite all right now . 我 一切 都 很 好 . +I am sorry . I am not from here . 抱歉 , 我 不是 本地人 . +Are you not feeling well ? 你 身体 不 舒服 吗 ? +Tom doubled his investment in a year . 汤姆 一年 内 增加 了 一倍 的 投资 . +How long did you think the picnic was going to last ? 你 認為 野餐 要 多 長 時間 ? +Strike while the iron is hot . 打 鐵 趁 熱 . +You can only use it once . 这个 你 只能 用 一次 . +I think jogging is good exercise . 我 認為 慢跑 是 很好 的 運動 . +The main question is how does Tom feel . 主要 的 问题 是 汤姆 的 感受 如何 . +That is the other reason I am here . 那 是 我 在 这里 的 另外 一个 理由 . +Thank you for your reply . 谢谢 你 的 答复 . +Where would you like to go first ? 你 想 先 去 哪裡 ? +Why did you begin without me ? 为什么 你 不 等等 我 就 开始 了 ? +I do not allow sleeping in class . 我 不 允许 有人 在 课 上 睡觉 . +Everyone admired his courage . 每個 人 都 佩服 他 的 勇氣 . +What do you want to be ? 你 想 成为 什么 ? +Many small companies went bankrupt . 许多 小 公司 倒闭 了 . +Does love exist ? 愛 存在 嗎 ? +His house is not far from here . 他家 離 這兒 不遠 . +Japan relies on Arab countries for oil . 日本 靠 阿拉伯 国家 提供 石油 . +Tom broke into Mary is hotel room . 湯姆闖 進 了 瑪麗 的 酒店 房間 . +Ghosts exist . 鬼魂 是 存在 的 . +My mother is a lawyer . 我 妈妈 是 个 律师 . +I think that is not true . 我 認為 那 不是 真的 . +I can not meet you . 遇不到 你 . +I want to visit Korea . 我 想 访问 韩国 . +I can not study with you watching me . 你 盯著 我 看 使 我 無法 讀書 . +Mary loses her temper easily . 瑪麗 很 容易 發脾氣 . +He is a little pale . 他 有点 苍白 . +Thank you for inviting me . 謝謝 你 邀請 我 . +Tom practiced in front of the mirror . 湯姆 在 鏡 前 練習 . +Tom started dating Mary three months ago . 汤姆 三个 月 前 开始 和玛丽 约会 . +Please be quiet , everybody . 请 大家 都 保持 安静 . +Innocence is a beautiful thing . 纯真 是 一件 美好 的 事 . +Brush your teeth before going to bed . 上床睡觉 前要 刷牙 . +Can you take a picture of us ? 您 能 好好 给 我们 照 一张 相吗 ? +The teacher told us a funny story . 老師 跟 我們 說 了 一個 有趣 的 故事 . +She waved her hand until the train was out of sight . 她 挥 着 她 的 手 , 直到 火车 消失 在 视线 之外 . +Several minutes later , the telephone rang . 几分钟 后 , 电话响 了 . +I missed my chance . 我 錯 過 了 我 的 機會 . +I bought a new computer last month . 上个月 我 买 了 一台 新 电脑 . +Teaching English is his profession . 教 英语 是 他 的 职业 . +We are against war . 我们 反对 战争 . +What does it sound like ? 那 聽 起來 像 什麼 ? +She does not like sushi . 她 不 喜歡 壽司 . +This news is official . 这 是 官方消息 . +You should return home before it gets dark . 你 應該 在 天黑 之前 回家 . +He vowed to give up smoking . 他 发誓 要 戒烟 . +I wanted to cry . 我 想 哭 . +Suddenly , it started to rain . 突然 開始 下雨 . +We could walk there together . 我們 可以 一起 走著 去 . +Yes , I know it . 是 的 , 我 知道 . +This word comes from Latin . 這個 詞源 於 拉丁 語 . +Take as many peaches as you like . 你 想 拿 多少 桃子 就 拿 多少 . +My father is a bit old @-@ fashioned . 我 爸爸 有点 守旧 . +Would you like to have another beer ? 再 来 一杯 啤酒 怎么样 ? +Is not this what Tom asked for ? 这 不是 汤姆 要 的 吗 ? +I asked for a table over there . 我 在 那裡 要 了 一張 桌子 . +I saw him after ten years . 十年 之 後 我 看到 了 他 . +I do not think she can speak French . 我 認為 她 不 會 講 法語 . +I do not think that he is honest . 我 不 觉得 他 诚实 . +Because it is written in simple English even a child can understand it . 因為 這 是 用 簡單 的 英語 寫 的 , 所以 甚至 連 孩子 都 能 理解 . +Can I park my car here ? 我 能 把 我 的 车 停 在 这儿 吗 ? +That is my favorite chair . 那 是 我 最 喜歡 的 椅子 . +Iron is a useful metal . 铁 是 种 有用 的 金属 . +You have arrived very early . 你 來 得 很早 . +Have you bought a raffle ticket yet ? 你 买 彩票 了 吗 ? +We have just finished breakfast . 我們 剛剛 吃 完 了 早 飯 . +She worked from morning till night . 她 從 早上 工作 到 夜晚 . +I went to see the movies yesterday . 我 昨天 去 看 了 電影 . +I had lost a camera the previous day . 我 前一天 丢 了 一台 相机 . +Could I have another glass of beer ? 我 可以 再 喝一杯 啤酒 嗎 ? +I have decided to tell Tom about what happened . 我 决定 告诉 汤姆 发生 了 什么 事情 . +I have been spending too much time with Tom . 我 在 湯姆 身上 花 的 時間 太 多 了 . +How do you say this word ? 你们 怎么 读 这个 词 ? +A truck ran over our dog . 一輛 卡車 輾過 一 隻 狗 . +She is Tom is younger sister . 她 是 湯姆 的 妹妹 . +I decided to study abroad . 我 決 定出 國 留學 了 . +My wife has just cleared the table . 我 太太 剛剛 清理 了 桌子 . +The letter was finished . 信 寫 完 了 . +I will try to meet your wishes . 我 會 盡力 滿足 你 的 願望 . +I have to hurry ! 我 要 赶紧 了 ! +Reading a book can be compared to a journey . 阅读 一 本书 可以 比作 一次 旅行 . +" We have not seen each other since 2009 . " " Has it been that long ? " “ 我们 从 2009 年 起 就 没 见过面 . ” “ 有 那么 久 吗 ? ” +We are on strike because the company has not improved our wages . 我們 之所以 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +Do you know when she will come ? 你 知道 她 什麼 時候 會 來 嗎 ? +Armenian is an Indo @-@ European language . 亚美尼亚语 是 一门 印欧语 言 . +Parents love their children . 父母 爱 自己 的 孩子 . +He is my older brother . 他 是 我 的 哥哥 . +We hacked a path through the forest . 我們 開出 了 一條 穿 過 森林 的 小路 . +I do not know if I have time to do it . 我 不 知道 我 是否 有 时间 做 . +I have few friends . 我 朋友 很少 . +He is an author . 他 是 作家 . +You are not trying to trick me , are you ? 你 没 打算 耍 我 , 对 吧 ? +I do not want to talk about the weather . 我 不想 談論 天氣 . +Can anyone pronounce this word ? 有人 能 发 这个 词 的 音 吗 ? +Do not walk home alone . 不要 自己 一个 人 走 回家 . +I am studying now . 我 现在 正在 学习 . +Have a nice flight . 飞行 愉快 ! +Where do you want to go ? 你們 要 去 哪裡 ? +We got the meeting over with quickly . 我們 很快 的 結束 了 這個 會議 . +We must sleep at least eight hours a day . 我们 每天 至少 该 睡 八小时 . +Smoking is prohibited on the train . 在 火車 上 禁止 吸煙 . +When did you begin studying English ? 您 什么 时候 开始 学 英语 的 ? +The horse stopped and would not move . 這 匹 馬 停下 來 不動 了 . +Tom is eyes were glued to the screen . Tom 的 眼睛 被 荧幕 吸引住 了 . +Slow down . 慢 一點 . +She is graceful . 她 举止 优雅 . +Tom was the only guy in the class . 汤姆 是 这个 班级 里 唯一 的 男生 . +Our train is delayed . 我們 的 車誤 點 了 . +He could not breathe deeply . 他 無法 深呼吸 . +Where is the mailbox ? 郵箱 在 哪裡 ? +That is life . 人生 就是 如此 . +I did not have lunch today . 我 今天 沒 吃 午餐 . +All the students clapped their hands . 所有 的 學生 都 拍手 . +My wife asked me to throw this old hat away . 老婆 喊 我 把 这些 旧 帽子 扔掉 . +Tom has been very careful . 汤姆 非常 谨慎 . +Did Tom help his mother yesterday ? 湯姆 昨天 幫 他 媽媽 的 忙 嗎 ? +Is not that good enough ? 那 不夠 好 嗎 ? +I caught five fish yesterday . 我 昨天 釣 了 五條 魚 . +I hear he is good at mahjong . 我 听说 他 打麻将 很 厉害 . +I heard the news on the radio . 我 從 收音 機 聽到 了 這個 消息 . +She forgave the boy for his rudeness . 她 原谅 了 男孩 的 粗鲁 . +They rescued the boy from drowning . 他們 救 了 這個 落水 的 男孩 . +He asked her where her mother was . 他 問 她 她 的 母親 在 哪裡 . +Do not expect miracles . 別 期盼 奇跡 . +Tom has a good head on his shoulders . 汤姆 脑瓜 灵 . +I have not made up my mind yet . 我 還 沒有 拿定主意 . +The child will be six . 那 孩子 要 六歲 了 . +I want to study math . 我 想 学 数学 . +The teacher had a bad cold . 老師 患 了 重感冒 . +You are welcome to do anything you like . 您 可以 做 任何 您 想 做 的 事 . +He likes watching TV . 他 喜歡 看電視 . +What kind of person is she ? 她 是 怎样 的 人 呢 ? +Please do not ask . 請 不要 問 . +I will join you later . 我 一會兒 就 來 . +Would you like some of those pictures ? 你 想要 那些 照片 中 的 一些 嗎 ? +She had the boys paint the house . 她 要 男孩 們 粉刷 房子 . +We won the battle . 我们 战争 胜利 了 . +Let your hair down a little . 稍微 随意 一点 . +I think I will go by bus . 我 認為 我 要 坐 巴士 去 . +I had no choice but to stay in bed all day . 我 不得不 一整天 都 待 在 床上 . +I have lost my cap . 我 的 帽子 丢 了 . +This apple is bad . 这个 苹果 是 坏 的 . +Education starts at home . 教育 从 家庭 开始 . +The traffic light turned green . 紅綠燈 變成 綠色 了 . +Some diseases are caused by a defective gene . 一些 疾病 的 产生 原因 是 基因 缺陷 . +The audience was largely made up of very young children . 大部分 观众 是 年幼 的 儿童 . +I 'd gladly pay more for something if it is of high quality . 如果 它 是 高 品質 的 東西 我會 很 樂意 多付 一點 錢 . +Eggs are sold by the dozen . 蛋 是 按 打卖 的 . +Tom mostly kept to himself . 汤姆 大多 一个 人 独处 . +I do not wish to harm you . 我 不想 傷害 你 . +Let is start ! 讓 我們 開始 吧 . +I am running out of ideas . 我 没主意 了 . +We live on the third floor . 我们 住 在 三 楼 . +This jacket is a little too big . 這件 夾克 有 點 太 大 了 . +California and Nevada border on each other . 加利福尼 亞州 和 內華達州 相互 接界 . +Please join us . 請 加入 我們 . +She looks pretty in that dress . 她 穿 上 那件 衣服 看 起來 很漂亮 . +Read it once more , please . 請 再 讀 一次 . +He tires easily . 他 很 容易 觉得 累 . +It is raining . 下雨 了 . +Can you tell me where the flea market is ? 你 能 告訴 我 跳蚤 市場 在 哪裡 嗎 ? +Why are you crying ? 你 为什么 哭 ? +What does everybody else think ? 其他人 怎麼 想 ? +My plan is to study in Australia . 我 的 計劃 是 去 澳洲 唸 書 . +Let is play basketball after school . 讓 我們 放學 後 打 籃球 . +What are you doing ? 你 在 做 什麼 ? +Are Tom and Mary working together ? 汤姆 和玛丽 一起 工作 吗 ? +I used to swim here every day . 我 以前 每天 在 這裡 游泳 . +I wish you had told me that . 但 願 你 告訴 過 我 就 好 了 . +The history class starts at nine . 历史课 九点 开始 . +You should stay at home today . 你 今天 應該 待 在家 裡 . +Would you please shut the window ? 能 不能 请 你 把 窗 关了 ? +You look pale . 你 看 起來 很 蒼白 . +He studied for ten years . 他 研究 了 十年 . +The car is in the garage . 车 在 车库里 . +We will save a seat for you . 我们 会 给 你 留 个 位置 . +I am not afraid of anything . 我 什么 都 不怕 . +It looks like an egg . 这 看上去 像 个 蛋 . +French is my mother tongue . 法语 是 我 的 母语 . +Choose the one you like . 选 喜欢 的 . +Be kind . 友善 点 . +My city is fifty kilometres from the capital . 我 的 城市 离 首都 五十 千米 . +You are sick . You have to rest . 你 病 了 , 该 休息 了 . +Life would be impossible without the sun . 沒有 太陽 就 沒有 生命 . +Liars must have a good memory . 骗子 们 必须 有 好 记性 . +Tom did not like the idea . 湯姆 不 喜歡 這個 主意 . +I have not eaten for days . 我 好多天 没 吃 东西 了 . +Everybody but Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom plans to return . 湯姆 打算 回來 . +She worked side by side with men . 她 和 男人 一起 工作 . +It is a pleasure to have you with us again . 真 高兴 你 又 跟 我们 在 一起 了 . +He greeted the lady . 他 向 那位 女士 问好 . +Mother stays at home every day . 媽媽 每天 待 在家 裡 . +I was born on October 10th , 1972 . 我 出生 於 1972 年 10 月 10 日 . +Where is the bus stop for downtown ? 到 市區 的 公車 站牌 在 哪裡 ? +This is too expensive . 这 太贵 了 . +Tom is my friend . 湯姆 是 我 的 朋友 . +Give me the book . 把 书 给 我 . +It snowed . 下雪 了 . +I will pay the bill . 我 來付 賬 . +Is it a recent picture ? 那 是 一张 近照 吗 ? +Have you finished breakfast yet ? 你 吃 完 早 飯 了 嗎 ? +He made mistakes on purpose to annoy me . 他 为了 惹恼 我 故意 犯错 . +All you need to do is trust each other . 除了 相信 对方 以外 , 你们 没什么 要 做 的 了 . +The teacher made us repeat the word . 老師 要 我們 重 複 這 個 字 . +Do not blame the mistake on her . 不要 把 這個 錯誤 歸咎 於 她 . +Grab him . 抓住 他 . +The new medicine saved his life . 這個 新藥 救 了 他 的 命 . +Have you ever had food poisoning ? 您 曾經 食物中毒 過 嗎 ? +Are your hands clean ? 你 的 手 乾 淨 嗎 ? +They always wake up early , even on Sundays . 他們 總 是 早起 , 即使 是 在 周日 . +Can you give me your phone number ? 你 能 給 我 你 的 電話 號碼 嗎 ? +He pretended not to be listening . 他 裝作 沒在 聽 . +Are you a senior high school student ? 你 是 個 高中生 嗎 ? +Why did not you read the magazine ? 你 为什么 不读 这 杂志 呢 ? +Many thanks . 非常感谢 ! +You will learn how to do it sooner or later . 你 遲早 會 學會 怎麼 做 . +Goodnight . 晚安 . +I had a strange dream . 我 做 了 一个 奇怪 的 梦 . +I am crazy about football . 我 愛 足球 愛 瘋 了 . +His parents took him for a walk . 他 的 父母 帶 他 去 散步 . +You must think I am stupid . 你 肯定 认为 我 傻 . +What time will you leave ? 你 什么 时候 离开 ? +I do not like to leave things up in the air . 我 不 喜歡 讓 事情 懸而未決 . +It is rare to find big yards in Japan . 能 在 日本 找到 这样 的 大 的 院子 实属 罕见 . +I have just eaten lunch . 我 剛 吃 過午 飯 . +He left the room . 他 走出 了 房間 . +Do you know what Tom will say ? 你 知道 湯姆會 說 甚麼 嗎 ? +I tried to stop that from happening . 我 试 着 阻止 它 发生 . +Do you really think I look like Tom ? 你 真的 觉得 我 长 得 像 汤姆 吗 ? +We guarantee our products for one year . 我們 保證 我們 的 產品 一年 . +He has never been late for school . 他 從來 沒有 上學 遲到 . +Do you miss me ? 你 想 我 吗 ? +He plays the violin very well . 他 小提琴 拉 得 很 好 . +He looks old , but he has not reached 30 yet . 他 看上去 老 , 但 他 还 不到 30 岁 . +A bird in the hand is worth two in the bush . 一 鳥 在手 勝 過 二 鳥 在 林 . +Someone tapped me on the shoulder . 有人 拍了拍 我 的 肩膀 . +It happened in the blink of an eye . 它 發生 在 一眨眼 之間 . +She earns 30 dollars per day . 她 每天 挣 30 美元 . +You broke the rules . 你 触犯 了 规则 . +This work must be finished by Monday . 這項 工作 必須 在 週一 ​ ​ 前 完成 . +Do you have any cough medicine ? 你 有 止咳 藥 嗎 ? +This pear smells nice . 这 只 梨 闻 上去 很 香 . +Tom is not complaining . 湯姆 沒有 抱怨 . +He called in to say he could not attend the meeting . 他 打 電話 來說 他 不 會 參加 會 議 了 . +We encountered a lot of difficulties on the expedition . 我们 在 探险 的 时候 遇到 了 很多 困难 . +We furnished the refugees with blankets . 我們 提供 了 難民 們 毛毯 . +Please take your shoes off . 請 脫掉 你 的 鞋子 . +I walked as slowly as I could . 我 盡 可能 的 走慢 一點 . +Nobody supported her . 没 人 支持 她 . +The man is eating bread . 这个 男人 在 吃 面包 . +Nothing ventured , nothing gained . 没有 挑战 就 没有 收获 . +I invited my friends to dinner . 我 邀請 我 的 朋友 吃 晚餐 . +He refuses to believe us . 他 拒绝 相信 我们 . +I do not like wine . 我 不 喜欢 红酒 . +Here is a basket full of vegetables . 這裡 有個 裝滿 蔬菜 的 籃子 . +Let is talk about this tomorrow . 我们 来 讨论 下 明天 吧 . +I would like to have some more water . 请 再 给 我 一些 水 . +I hope we find Tom . 我 希望 我们 能 找到 汤姆 . +I should have brought my camera . 我 應該 把 我 的 相機 帶來 . +He fell asleep with the radio on . 他 睡著 了 但 收音 機 還 開著 . +He solved the difficult problem . 他 解決 了 難題 . +You are much less likely to get a good position if you do not speak English . 如果 你 不会 说 英语 , 你 就 很 难 得到 一个 好 的 职位 . +Her idea is better than yours . 她 的 想法 比 你 的 好 . +Learning English requires patience . 學 英語 需要 耐性 . +You will forget about me someday . 有 一天 你 会 忘 了 我 . +I will eat here . 我 會 在 這裡 吃 飯 . +Tom is anxious to see you . Tom 非常 渴望 见到 你 . +A beautiful girl sat next to me . 一個 美麗 的 女孩 坐在 我 旁邊 . +Tom is a good worker . 湯姆 是 個 好 工人 . +We can not get close to the enemy . 我们 无法 接近 敌人 . +There is not a cloud in the sky . 天上 没有 一片 云 . +She will accompany me on the piano . 她 會彈 鋼琴 為 我 伴奏 . +I could not understand him at first . 起初 我 聽 不 懂 他 說 的 話 . +All of them are not poor . 他们 都 不 穷 . +Tom told me where Mary lives . 汤姆 告诉 了 我 玛丽 住 哪儿 . +He is an expert at fishing . 他 是 个 钓鱼 专家 . +It snowed a lot . 下 了 很多 的 雪 . +The medicine made me very sleepy . 這個 藥 讓 我 很 想 睡 覺 . +Sydney is the largest city in Australia . 悉尼 是 澳大利 亞 最大 的 城市 . +His wife is quite a talented woman . 他 老婆 很 有 才 . +I do not belong to any club . 我 不 屬 於 任何 社團 . +Tom does not eat meat and neither does Mary . 湯姆 不吃 肉 , 瑪麗 也 是 . +Send us a telegram when you arrive . 當 你 到 的 時候 發 一份 電報 給 我們 . +Tom grows strawberries in his garden . 汤姆 在 他 的 院子 里 种着 草莓 . +My father is healthy . 父亲 很 健康 . +He does not know how to swim . 他 不会 游泳 . +The meeting ended . 会议 结束 了 . +I have enjoyed reading this novel . 我 喜 歡讀 這 本小 說 . +His book is very interesting . 他 的 書 非常 有趣 . +I understand perfectly . 我 完全 明白 . +The apple does not fall far from the tree . 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Look it up in your dictionary . 查查 你 的 字典 . +Tom is teaching me to how to sail . 汤姆 正在 教 我 怎么 开 帆船 . +Go home . 回家吧 . +Black suits you . 黑色 很 衬 你 . +I can not leave . 我 不能 走 . +That girl is good @-@ looking . 那個 女孩 長 得 很 好看 . +They named their son Tom . 他们 给 他们 的 儿子 取名 叫 汤姆 . +It is confidential . 这 是 机密 . +I met with an old woman . 我 遇见 了 一位 老妇人 . +I saw what Tom did . 我 見 識到 了 湯姆 的 作為 . +I will always remember your kindness . 我 會 永遠 記得 你 的 好意 . +Tom does not have any friends who are willing to help him . 汤姆 没有 愿意 帮助 他 的 朋友 . +What are they doing here ? 他們 在 這裡 做 甚麼 ? +Tom is dog bit him playfully . 汤姆 的 狗 咬 他 玩 . +My house is a long way from here . 我家 离 这儿 很远 . +What time do you usually get up ? 你 通常 什麼 時候 起床 ? +A man suddenly appeared in the doorway . 一个 男 的 突然 出现 在 门口 . +I do not want to work under these conditions . 我 不想 在 这些 条件 下 工作 . +I like to listen to the radio . 我 喜歡 聽 收音 機 . +I learned a lot from his books . 我 從 他 的 書學 到 了 很多 . +We swam until it got dark . 我們 游泳 到 天黑 . +The storm had a serious effect on the economy . 这场 暴风雪 已经 对 经济 造成 了 很 严重 的 影响 . +The plane takes off in ten minutes . 飛機 十分 鐘 後 起 飛 . +It is out of the question for you to go to New York this weekend . 這個 週末 去 紐約 對 你 來說 是 不 可能 的 事 . +The file is corrupt . 文件 已损坏 . diff --git a/TRANSLATE/cmn.txt_train_tokenized.tsv b/TRANSLATE/cmn.txt_train_tokenized.tsv new file mode 100644 index 0000000..12dcd30 --- /dev/null +++ b/TRANSLATE/cmn.txt_train_tokenized.tsv @@ -0,0 +1,19222 @@ +Put on some sunscreen . 涂点 防晒 吧 . +The two nations have strong trade ties . 这 两个 国家 有 强大 的 贸易 关系 . +Excuse me , I am lost . 不好意思 , 我 迷路 了 . +You seem to be prejudiced against ideas that come from foreign countries . 你 似乎 對 來 自 國外 的 想法 有 偏見 . +Do you know what is happened ? 你 知道 发生 了 什么 事情 吗 ? +Our supplies are running out . 我们 的 供给 要用 完 了 . +I am fed up with this weather . 我 受够了 这 天气 . +This is the cheapest store in town . 這 是 鎮 上 最 便宜 的 商店 . +I decided to study every day . 我 決定 每天 用功 讀書 . +We do not care what he does . 我們 不在乎 他 做 什麼 . +What is the purpose of your visit ? 你 此行 的 目的 是 什麼 ? +The school is located within five minutes ' walk of the station . 學校 坐落 於 距離 車站 步行 五分 鐘 的 地方 . +Speech is silver , but silence is golden . 雄 辯 如 銀 , 沉默 如 金 . +My aunt sent me a birthday present . 我 阿姨 送 了 我 一個 生日 禮物 . +After climbing Mt . Fuji , I got the inspiration for a poem . 攀登 富士山 後 , 我 得到 了 一首 詩 的 靈感 . +This will keep you warm . 这个 能 保暖 . +Any bed is better than no bed . 任何 床 都 比 沒有 床 好 . +There were two bridges . 那里 有 两座 桥 . +We get the materials from Malaysia . 我們 從 馬來西亞 得到 材料 . +She asked me a question . 她 問 了 我 一個 問題 . +I am proud of you . 我 以 你 為 榮 . +He told me that he was busy then . 他 告诉 我 他 那时 很忙 . +A computer is a complex machine . 电脑 是 个 复杂 的 机器 . +What should they do in this situation ? 在 这种 情况 下 , 他们 该 做 什么 ? +My mother is busy in the kitchen . 我 的 母親 在 廚房 裡 正忙 著 . +How many rackets do you have ? 你 有 多少 支 球拍 ? +I have always wanted to meet you . 我 一直 想見 你 . +His job is driving a sight @-@ seeing bus . 他 的 工作 是 驾驶 观光 巴士 . +I collect stamps . 我 收集 郵票 . +We know that . 我们 知道 . +There are many ships in the harbor . 港口 內 有 許多 船 . +That was not so hard , was it ? 那 不难 , 是 吧 ? +I objected to his paying the bill . 我 反 對 他 付 帳 單 . +You are allowed to use the hotel is swimming pool . 你 有权 使用 旅馆 的 游泳池 . +I read the book after I had finished my homework . 我 做 完 我 的 功课 后 , 就读 这 本书 . +President Lincoln was what we call a self @-@ made man . 林肯 總統 就是 我們 所謂 白手起家 的 男人 . +Like father , like son . 有其父必有其子 . +The captain is responsible for the safety of passengers . 船长 要 为 乘客 安全 负责 . +When I heard that song , it reminded me of when I was a kid . 我 聽到 那首歌 時 , 它 讓 我 想起 了 我 小 的 時候 . +The clock has stopped . 時鐘 已經 停止 了 . +Even Tom does not do that anymore . 甚至 湯姆 都 不再 做 了 . +At last , she solved the problem . 最 後 , 她 解決 了 這個 問題 . +I visit him every other day . 我 每隔 一天 拜訪 他 . +He works from Monday to Friday . 他 周一 到 周五 上班 . . +Tom knows that I used to live in Boston . 湯姆 知道 我 在 波士 頓 住 過 . +This is the house where I live . 这 是 我 住 的 房子 . +Birds fly . 鳥類 飛行 . +She is always dressed in black . 她 總 是 穿著 黑色 的 衣服 . +Excuse me for opening your letter by mistake . 對 不起 , 我 錯 開 了 你 的 信 . +He was admitted without taking the exam . 他 承認 沒有 參 加考 試 . +He has been dead for ten years . 他 已經 死 了 十年 . +He broke the law . 他 触犯 了 法律 . +Tom likes it hot . 汤姆 喜欢 热 的 . +There is no denying the fact . 這 是 無 可否 認 的 事實 . +He loves her . 他 愛 她 . +Do you get up at six ? 你 六点 起床 吗 ? +I was born on October 10th , 1972 . 我 在 一九七二年 十月十日 出生 . +He flew a kite with his son . 他 和 他 的 儿子 放风筝 了 . +Did you go out last night ? 你 昨天晚上 出去 了 嗎 ? +She found her purse under the desk . 她 在 桌子 底下 找到 了 她 的 錢 包 . +He was killed by a single bullet . 他 被 一顆 子彈 打死 了 . +I am going to get rid of all this stuff . 我 要 摆脱 这 一切 . +I no longer wish to be your wife . 我 不想 做 你 老婆 了 . +Hi . 嗨 . +How is it going at school ? 学校 怎么样 ? +I am just a plain old office worker . 我 只是 一個 普通 的 老式 上班族 . +My name does not appear on the list . 我 的 名字 沒有 出現 在 名單 上 . +A hare raced with a tortoise . 兔子 和 乌龟 赛跑 . +The children were flying kites . 孩子 們 在 放 風箏 . +Is it true or did Tom make that story up ? 這 是 事實 還 是 Tom 編 的 故事 ? +You work as hard as he did at your age . 你 跟 他 在 你 這個 年紀時 一樣 努力 工作 . +I wonder what I should do today . 我 在 想 我 今天 该 干什么 . +That is my final answer . 这 是 我 的 最终 回答 . +I can not fall asleep . 我 睡不着 觉 . +Mind your manners . 规矩 点 . +You do not need to do this . 你 不 需要 做 这事 . +He left ten minutes ago . 他 十分 鐘 前 離開 了 . +Freedom is very , very important . 自由 非常 非常 重要 . +We stayed with them all through the summer . 我们 整个 夏天 都 和 他们 待 在 一起 . +I wish I were younger . 但 願 我 年 輕 一點 . +I overslept . 我 睡 过头 了 . +I do not know what I am going to do next . 我 不 知道 接下来 我 要 做 什么 . +She does not know how to play golf . 她 不 知道 怎麼 打 高爾夫 球 . +He slipped me a note . 他 悄悄地 递给 我 一张 纸条 . +Do not look into my room . 不要 往 我 房间 里 看 . +It is dangerous to fool around with electricity . 隨便 亂 弄 電是 危險 的 . +It is not that easy to learn a new language after fifty . 五十岁 以后 学 一门 新 的 语言 不是 那么 容易 . +Thanks for accepting my friend request on Facebook . 謝謝 你 接受 我 Facebook 的 交友 邀請 . +I have nothing to do with that crime . 这个 犯罪 和 我 一点 关系 都 没有 . +His house was struck by lightning . 他 的 房子 遭到 雷擊 . +I had a vision . 我 有 一个 愿景 . +It was not my fault . 那 不是 我 的 錯 . +Do you know of any good restaurant near here ? 你 知道 这儿 附近 有 什么 好 餐馆 吗 ? +Class does not begin until eight @-@ thirty . 八點半 開始 上課 . +I really enjoyed myself tonight . 今晚 我 玩 得 很 開心 . +That is a nice car you are driving . 你 開 的 那輛 車 很 不錯 . +This is one of the best restaurants I have ever eaten in . 这 是 我 吃 过 的 最好 的 餐馆 之一 . +He is always laughing . 他 总是 在 笑 . +Do not laugh at him for making a mistake . 不要 因为 他 犯 了 一个 错误 就 嘲笑 他 . +There is no need to hurry . 沒有 必要 著急 . +There is a hair in my soup . 我 的 湯 裡 有 一根 頭 髮 . +How about another round ? 再 來 一輪 怎麼樣 ? +I spent twelve hours on the train . 我 在 火车 上待 了 12 小时 . +Are you going or not ? 你 去 還 是 不 去 ? +Get it done as soon as possible . 盡快 把 它 完成 . +I need a stamp . 我 需要 一張 郵票 . +Is there anything else you want ? 还有 什么 想要 的 吗 ? +You 'd better take an umbrella with you . 你 最好 隨身 帶 把 傘 . +I will wait for you in front of the radio station . 我 會 在 電 台前 等 你 . +You are looking tired . 你 看起来 很困 了 . +The teacher assembled the students in the hall . 老師 在 禮堂 把 學生 們 集合 起來 . +It is hardly worth discussing . 這 幾乎 不 值得 討論 . +An army marches on its stomach . 胃 里 如同 千军万马 开过 . +He studied very hard . 他 学习 非常 努力 . +A fly can walk on the ceiling . 蒼蠅 能 在 天花板 上 走 . +She tried to lift the box , but found it impossible to do . 她 試著 舉起 箱子 , 但 發現 不 可能 做到 . +Where have you been ? 你 一直 在 哪里 ? +All the signs are that she is getting better . 所有 迹象 表明 她 好 起来 了 . +He seldom goes to church . 他 很少 去 教堂 . +Do you want anything to eat ? 您 想 吃 点 什么 吗 ? +I like sports . 我 喜歡 運動 . +The accident seemed to have something to do with the heavy snow . 事故 似乎 和 厚厚的 积雪 有关 . +Work harder if you plan to succeed . 如果 你 計劃 要 成功 , 就要 更加 努力 地 工作 . +He stretched out his arm to take the book . 他 伸长 了 手臂 为了 能 拿到 书 . +The teacher made me repeat the sentence . 老師 讓 我 重 複 了 這 句 話 . +It is easy to add 5 to 10 . 5 加 10 很 简单 . +We had lunch at a little coffee shop . 我們 在 一家 小 咖啡店 吃 午 飯 . +I have something to give you . 我 有些 东西 要 给 你 . +He studied abroad . 他 出国 留学 了 . +You can use this car . 你 可以 使用 這輛 車 . +I would like to come with you . 我 想 和 你 一起 走 . +I remember returning the book to the library . 我 记得 我 把 书 还 到 图书馆 了 . +There are noticeable differences between the two . 两者之间 有 显著 的 差别 . +The chicken is undercooked . 雞肉 還 不夠 熟 . +The bus stop is across the street . 公車 站牌 就 在 街 對 面 . +Do you like oranges ? 你 喜歡 橙子 嗎 ? +This store has a variety of spices . 這家 商店 有 各種 香料 . +I get the feeling you are trying to tell me something . 我 感觉 你 想 告诉 我 什么 事 . +She is not at home now . 她 現在 不 在家 . +There was no one in the room besides Tom and Mary . 除了 汤姆 和玛丽 , 房间 里 没有 人 . +He held a package under his arm . 他 把 一個 包裹 挾 在 腋下 . +Tom made his servants eat in the dark . 汤姆 让 他 的 仆人 们 在 黑暗 下 进餐 . +Is your school far from your home ? 你 的 學校 離 你家 很 遠 嗎 ? +Do you know how to play mahjong ? 你 知道 怎麼 打 麻將 嗎 ? +I have lost my wallet . 我 掉 了 我 的 钱包 . +He substituted for his father . 子承父业 . +Tom said he 'd think about my suggestion . 汤姆 说 他 会 考虑 我 的 问题 . +I can not believe that . 我 不能 相信 . +I would do anything for Tom . 我会 为 汤姆 做 任何 事 . +You deserve to succeed . 你 的 成功 是 应得 的 . +Waitress , I would like to order . 服务生 , 我 要 点菜 . +Please give me a call . 请 给 我 打电话 . +He is in the kitchen . 他 在 厨房 . +Where is the longest tunnel in Japan ? 日本 最长 的 隧道 在 哪里 ? +Tom and Mary are very hungry . 汤姆 和玛丽 很 饿 . +You must do it . 你 必須 去 做 . +Everybody but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I know him by sight , but not by name . 我 知道 他 的 样子 , 但 不 知道 他 的 名字 . +This river is safe to swim in . 在 这条 河里 游泳 很 安全 . +Perseverance , as you know , is the key to success . 就 像 你们 知道 的 那样 , 毅力 是 成功 的 关键 . +He did the reverse of what I asked . 他 做 的 和 我 要求 的 相反 . +He may come tomorrow afternoon . 他 明天 下午 可能 會來 . +I stay at home on Sundays . 我 星期天 在家 . +You must take his age into account . 你 该 考虑 他 的 年纪 . +We need to make a plan . 我们 需要 做 计划 . +Father recovered his health . 爸爸 恢复 了 健康 . +This towel is so soft and fluffy . It feels good ! 这 条 毛巾 蓬松 又 柔软 , 特别 舒服 . +We must take into account the wishes of all the family in planning a trip . 筹划 旅行 的 时候 , 我们 必须 考虑 到 全家人 的 意愿 . +What subject do you like best ? 你 最 喜歡 哪 一個 科目 ? +I do not think it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +She really wants to lose weight . 她 真的 想 減肥 . +Let is take a look . 讓 我們 看看 吧 . +Tom kissed Mary on the cheek . 汤姆 亲 了 玛丽 脸颊 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 来 接 . ” +If that were true , what would you do ? 如果 这 是 真的 , 您 要 怎么办 ? +Tom follows orders . 汤姆 服从命令 . +You should not say that kind of thing when children are around . 孩子 们 在 旁边 的 时候 , 你 不 应该 说 那种 事 . +Do you know the meaning of this word ? 您 知道 这个 词 的 意思 吗 ? +Could you tell me where Tom is ? 你 能 告訴 我 湯姆 在 哪裡 嗎 ? +Come on over to have a try . 你 過來 試試 看 . +Would you look after my cat ? 你 可以 照顧 一下 我 的 貓 嗎 ? +He asked me why I was laughing . 他 問 我 為 什麼 在 笑 . +Let is turn back . 我们 掉头 吧 ! +She made me a nice dress . 她 做 了 一件 好看 的 衣服 給 我 . +All the dogs are alive . 所有 狗 都 活着 . +Let is drive to the lake . 讓 我們 開車 到 湖邊 . +Clean your room . 打扫 一下 你 的 房间 . +It is easy to make friends , but hard to get rid of them . 交朋友 很 容易 , 但 擺脫 他們 很 難 . +There are subtle differences between the two pictures . 这 两张 图片 之间 有 细致 的 差异 . +I am innocent . 我 是 清白 的 . +I am not the least bit worried . 我 一點 也 不 擔心 . +She was surprised that he showed up . 她 很 驚訝 他 出現 了 . +Tom came over to my house for dinner yesterday . 汤姆 昨天 来 我家 吃晚饭 . +Stay out of this . 别 插手 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +Here is your tea . 这 是 你 的 茶 . +You will have to play it by ear at the interview . 在 面試 的 時候 你 必須 見 機 行事 . +It is hard to say what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants to work in a hospital . 他 想 在 醫院 工作 . +I am looking for books on Roman history . 我 在 找 关于 古罗马 历史 的 书 . +I am going to play tennis . 我 要 去 打 網球 . +I lost my ticket . What should I do ? 我 丢 了 我 的 票 . 我 該 怎麼 辦 ? +A stitch in time saves nine . 小洞 及時 補 , 免遭 大洞 苦 . +Which do you like better , spring or fall ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +I saw the film in San Francisco last year . 我 去年 在 舊 金山 看 這部 電影 . +You should take care of your sick mother . 你 應該 照顧 你 生病 的 母親 . +Would you give me a hint ? 你 可以 给 我 一个 提示 吗 ? +I know that he was busy . 我 知道 他 忙 . +No matter where you go , I will follow you . 無論 你 去 哪裡 我 都 會 跟著 你 . +Tom asked me to tell you he did not plan on going to Boston with you . 汤姆 让 我 告诉 你 他 没有 计划 和 你 一起 去 波士顿 . +It is your business to take care of them . 照顾 他们 是 你 自己 的 事儿 . +One of them is a spy . 他們 其中 一 人 是 間諜 . +I demand an explanation for this mistake . 我 要求 說明 這個 錯誤 . +His house is across from mine . 他 的 房子 在 我 的 對面 . +Somehow I thought you 'd say that . 我 就 知道 你 会 这么 说 . +When will they arrive ? 他們 何時 抵達 ? +Would you like to leave a message ? 你 要 留言 嗎 ? +I will wait . 我 會 等 . +Tom could not help but smile . 汤姆 帮不了 , 只能 笑笑 . +I do not care all that much . 我 不 那么 在意 . +She came from Canada to see me . 她 從 加拿大 來看 我 . +I am still hungry . 我 还 饿 着 呢 . +My father goes to work by bike . 我 父親 騎 自行 車 去 上班 . +I missed you . 我 想念 你 . +He says he will not come . 他 說 他 不 會 來 . +Both Tom and his wife grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +" You talk too much , " he said . “ 你 说 得 太 多 了 , ” 他 说道 . +I want an MP3 player ! 我 想要 一个 MP3 播放器 ! +She lives in New York . 她 住 在 纽约 . +Do you really mean that ? 你 是 认真 的 吗 ? +The warrior is conscious of both his strength and his weakness . 戰士 知道 自己 的 力量 和 弱點 . +Smoking is harmful to your health . 吸烟 有害 健康 . +We just moved in . 我們 才 剛 搬 進來 . +I get a kick out of her cheerful personality . 她 開朗 的 個性 使 我 覺得 快樂 . +Scary , is not it ? 嚇 人 , 不是 麼 ? +Tom just got back from Australia . 汤姆 刚 从 澳大利亚 回来 . +Do you go to a private school ? 你 在 私立学校 读书 吗 ? +I saw a light in the distance . 我 看见 远处 有 灯光 . +I know you are going to say no . 我 知道 你 要 說 不 . +I am not satisfied with my English ability . 我 不 滿意 我 的 英語 能力 . +Tell me what to do . 告訴 我 該 做 什麼 . +She has been sick for three weeks . 她 已經 病 了 三個 星期 了 . +What are you reading ? 你 在 看 什么 ? +We did not expect him to finish the task in so short a time . 我们 没指望 过 他 在 那么 短 的 时间 里 完成 工作 . +I was in Tokyo yesterday . 我 昨天 在 東京 . +I walked in the woods by myself . 我 自己 走進 了 樹林 裡 . +Go get your helmet . 戴 上 你 的 安全帽 . +I am fairly certain Tom lives on Park Street . 我 很 确定 汤姆 住 在 公园 街 . +The old man walked across the road carefully . 老人 小心翼翼 地 过 了 马路 . +Mary is going to help us tomorrow . 玛丽 明天 会来 帮 我们 . +That makes no sense at all . 这 没有 任何 意义 . +I do not think she is happy . 我 觉得 她 不 开心 . +You have got to apologize . 你 應該 道歉 . +They moved here three years ago . 他們 三年 前 搬到 了 這裡 . +You 'd better go home . 你 最好 回家 . +He was a very good skier when he was little . 他 年 輕 時 很 會 滑雪 . +How old is that painting ? 那幅 画 有 多少 年 了 ? +At that time , Tom was sitting between Mary and John . 在 那个 时候 , 汤姆 正 坐在 玛丽和 约翰 中间 . +It was terrible . 真糟糕 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +Perfect ! 完美 ! +We have to put off the game till next Sunday . 我们 不得不 把 游戏 搁到 下 周日 了 . +Translate the passage word for word . 逐字 地 翻譯 這個 段落 . +I have neither seen nor heard of such a thing . 我 没 见 过 也 没 听 过 这样 的 事 . +No one is calling you a thief . 沒 人 叫 你 小偷 . +One must be responsible for one is conduct . 人 要 为 自己 的 行为 负责 . +I work for an oil company . 我 為 一家 石油 公司 工作 . +The Oscar ceremonies are Hollywood is biggest extravaganza . 奥斯卡 颁奖典礼 , 是 好莱坞 最 盛大 的 活动 . +We enjoyed watching TV . 我們 喜歡 看電視 . +Did not you write a letter to him ? 你 沒 寫信 給 他 嗎 ? +I am so fat . 我 好 胖 哦 . +Mary is studying in her room . 瑪麗 在 她 的 房間 裡 讀 書 . +I just got your letter yesterday . 我 昨天 剛 收到 你 的 信 . +How hot is that ? 那個 東西 有 多 熱 ? +Is there life on Mars ? 火星 上 有 生命 嗎 ? +" Shall I have him call you when he gets back ? " " Yes , please . " “ 等 他 回来 , 我 要 让 他 给 你 打电话 吗 ? ” “ 是 的 , 谢谢 . ” +You 'd better go to see your family doctor at once . 你 最好 立刻 去 看 你 的 家庭 醫生 . +Let me introduce you to him . 讓 我 把 你 介紹 給 他 . +Did you push the button ? 你 按了 按 鈕 嗎 ? +That was a month ago . 那 是 一個 月 前 了 . +Tom was very sick . 汤姆 很 虚弱 . +I should not have logged off . 我 不 應該 登出 . +They will be grateful . 他們 會 感激 . +Tom has no siblings . Tom 沒有 兄弟 姊妹 . +Do you believe me ? 你 相信 我 吗 ? +I am very happy . 我 很 幸福 . +Beware of thieves . 注意 小偷 . +Are you Japanese ? 你 是 日本 人 嗎 ? +Some foods make you thirsty . 有些 食物 令人 口渴 . +He picked up a mirror and examined his tongue . 他 拿 了 面 镜子 细看 自己 的 舌头 . +Tom hung his jacket in the hall closet . 汤姆 把 他 的 夹克 挂 在 大厅 衣柜 里 . +We have to fix the date for our trip quickly . 我们 必须 快点 定下 旅游 日期 . +We are special . 我们 很 特别 . +The show was wonderful , but the tickets were too expensive . 这场 秀 棒极了 , 但是 门票 太贵 了 . +Everybody knew Tom was good at French . 每个 人 都 知道 汤姆 的 法语 很 好 . +I think you are a really nice guy . 我 認為 你 真的 是 一個 好人 . +Would you like to go abroad ? 你 想 出 國 嗎 ? +All I want is my freedom . 我 只要 自由 . +I will study your report . 我 會 研究 你 的 報告 . +Did Tom not know what to do ? 汤姆 不 知道 该 做 什么 吗 ? +London , the capital of England , is on the Thames . 英国 首都 伦敦 在 泰晤士河畔 . +I ate curry last night . 我 昨晚 吃 了 咖喱 . +She married a rich man . 她 嫁给 了 一个 有钱人 . +Tell me what you did to Shounan . 告诉 我 你 对 湘南 做 了 什么 . +Tom was sitting alone at one of the tables near the door . 湯姆 獨自 坐在 門邊 一個 桌子 旁 . +I wondered if her story was true . 我 想 知道 她 的 故事 是否是 真的 . +You should not have done it . 你 不 應 該 做 的 . +Customs include food , celebrations and dancing . 风俗习惯 包括 食物 , 庆祝 和 舞蹈 . +I am not afraid of dying . 我 不怕死 . +Our mother bought us a puppy . 我們 的 媽媽 買 了一 隻 小狗 給 我們 . +What will you be doing at this time tomorrow ? 你 明天 这个 时候 会 是 在 做 什么 ? +He is very influential in the world of medicine . 他 在 医学界 有 很大 的 影响力 . +Please speak more loudly . 請 說 大聲 一點 兒 . +I understood Tom is point of view . 我 理解 汤姆 的 观点 . +We have less than five minutes to evacuate the whole building . 我们 有 不到 五分钟 来 疏散 整栋 楼 的 人 . +I have never known anyone as hypocritical as you . 我 从来 没有 见 过 谁 像 你 这么 虚伪 的 . +He threw a rock into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +I 'd like something to eat . 我 想 吃 点 东西 . +The road is very treacherous . 这 条路 挺 险恶 . +We want a new carpet . 我们 想要 一条 新 毯子 . +Tom did not write back to Mary . 汤姆 没 给 玛丽 写 回复 . +It is pitch black outside . 外面 一片 漆黑 . +I am not sure . 我 不 确定 . +You can use my car if you like . 如果 你 喜歡 你 可以 用 我 的 車 . +This is a stupid design . 这份 设计 很蠢 . +Nobody would listen to me . 沒 有人 會 聽 我 說 . +He arrived after the bell rang . 鈴 響 後 他 就 到 了 . +I said that . 我 是 那樣 說 的 . +Tom is in the living room . 汤姆 在 起居室 里 . +Nice to meet you . 很 高興 認識 你 . +I told Tom what to do . 我 告诉 了 汤姆 要 做 什么 . +When was Tom fired ? 湯姆 什麼 時候 被 解雇 的 ? +She is as busy as Tom . 她 和 湯姆 一樣 忙 . +Cities are exciting places , but also stressful . 城市 是 令人 興奮 的 地方 , 但 也 會 讓 人 產生 壓力 . +It is never too late to make amends . 彌補 永遠 不 會 太晚 . +I can win this time . 我 這 回能 贏 . +Leave the room immediately . 馬 上 離開 房間 . +Turn left . 向左转 . +Jealousy made him do that . 嫉妒 讓 他 那樣 做 . +Who invented that ? 那 是 谁 发明 的 ? +Which translation of this book do you think is better , the French one or the English one ? 你 觉得 这 本书 的 哪个 译本 比较 好 ? 法语 的 还是 英语 的 ? +I am the owner of this house . 我 是 這 房子 的 主人 . +I already talked to this student . 我 已经 和 这个 学生 谈 过 话 了 . +He is often absent from school . 他 经常 翘课 . +Why do not you stay a little while ? 你 為 什麼 不 留下 來 一會兒 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 親切 . +Have you taken your medicine yet ? 您 已经 吃 过 药 了 吗 ? +There is been a death in his family . 他 的 家 不幸 有人 身亡 . +I agreed with her . 我 同意 她 . +Do not move ! 别动 ! +It was beginning to snow . 開始 下雪 了 . +This tunnel is twice as long as that one . 這條 隧道 是 那 條 的 兩倍 長 . +I think you should open an account here . 我 认为 你 应该 在 这里 开 个 账户 . +Do you ever dream about flying through the sky ? 你 曾經 夢想 在 天空 飛翔 嗎 ? +My left eyelid is twitching . 我 的 左 眼皮 在 跳 . +Do I have to do it right away ? 我 必須 立刻 做 嗎 ? +He has not written to us since last February . 他 從 去年 二月 開始 就 沒 寫信 給 我們 . +He is good at driving . 他 擅長 駕駛 . +He may have lost his way . 他 可能 迷路 了 . +We use a lot of water every day . 我們 每天 用 很多 的 水 . +I am playing volleyball now . 我 现在 在 打 排球 . +It is time for dinner . 吃 晚 飯 的 時間 到 了 . +I like mathematics . 我 喜歡 數學 . +That white building is a hospital . 那棟 白色 的 建築物 是 一家 醫院 . +At the time there were no native English speakers teaching in any public school . 當時 沒有 任何 以 英語 為 母語 的 人 在 公立 學校 任教 . +I am glad to have her company . 我 很 高興 有 她 的 陪伴 . +What did you do over the weekend ? 你 整個 週末 做 了 什麼 ? +You stink . 你 身上 发臭 了 . +Do you speak French ? 你 會 講 法語 嗎 ? +I was a high school student at that time . 我 当时 是 高中生 . +It is not important . 这 不 重要 . +I am exhausted . 困死 了 . +I would not sell that at any price . 任何 價格 我 都 不 會 賣 . +I am married . 我 结婚 了 . +I will think it over . 我 會 考慮 一下 . +His little brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +I was scared all the time . 我 一直 很 害怕 . +Tell me what to do with it . 告诉 我 拿 它 做 什么 . +I could answer all the questions . 我 能 回答 所有 的 問題 . +There was a lot of snow last year . 去年 下 了 很多 雪 . +He asked after you . 他 問候 了 你 . +Which book is yours ? 哪 本 是 你 的 书 ? +Are you single ? 你 是 单身 吗 ? +Take a breath and hold it . 深 吸 一口 氣然 後 屏住 氣 . +If I had worked hard in my youth , I would be successful now . 如果 我 年 輕 的 時候 努力 工作 , 我 現在 就 成功 了 . +Tom asked Mary to buy a gift for John . 汤姆 叫 玛丽 买 一份 礼物 给 约翰 . +I am really concerned about your future . 我 真的 很 關心 你 的 未來 . +You are blushing . 你 脸红 了 . +The dolphin and trainer communicated much better than we expected . 海豚 和 驯养 员 交流 得比 我们 所 期望 的 好得多 . +We can rest . 我们 可以 休息 . +I need it as quickly as possible . 我 尽快 需要 . +The strike affected the nation is economy . 罢工 影响 了 国家 经济 . +What are you doing down there ? 你 在 那里 干什么 ? +Prices are going up . 物价上涨 了 . +He is very good at playing guitar . 他 很 擅長 彈 吉他 . +Tom hid himself under the table . Tom 躲 在 桌子 底下 . +She came here as soon as she heard it . 她 一來 這裡 就 聽到 了 . +He made a clean break with them . 他 跟 他们 干脆 地 断绝来往 了 . +Could you recommend another hotel ? 你 能 推薦 另一家 旅館 嗎 ? +Tom is drinking some water . 汤姆 在 喝 点 水 . +How about going to see a movie tonight ? 今晚 看 电影 怎么样 ? +We got behind the car and pushed . 我們 到 車子 後 面 推車 . +You do not need to help me . 你 不用 帮 我 . +She stirred her coffee with a teaspoon . 她 用 茶匙 搅 她 的 咖啡 . +He lived in the center of London . 他 住 在 倫敦 市中心 . +Not a single person arrived late . 沒有 一個 人 遲 到 . +He will be back in a second . 他 很快 就 会 回来 . +Countless stars were twinkling in the sky . 无数 星星 在 天上 闪烁 . +She was able to answer whatever was asked . 不管 问 了 什么 , 她 都 能 回答 . +I will give you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +She planted roses in the garden . 她 在 花園 裡 種 了 玫瑰 . +It is rude of him not to give me a call . 他 不 打电话 给 我 真是 无礼 . +I will never forget going to Hawaii with her . 我 永远 不会 忘记 那次 跟 她 一起 去 夏威夷 . +My plans failed one after the other . 我 的 計劃 一個 接 一個 的 失敗 了 . +He said , " I want to be a doctor . " 他 說 : 「 我 想成 為 醫生 . 」 +Open your mouth and close your eyes . 张开嘴巴 闭上眼睛 . +Moderate exercise is necessary for good health . 適度 運動 對 身體 健康 是 必要 的 . +Underage drinking is a crime . 未满 年龄 饮酒 是 罪行 . +We bought a pound of tea . 我們 買 了 一磅 的 茶 . +I hope Tom appreciates it . 我 希望 汤姆 欣赏 它 . +Could you bring me some water ? 能 给 我 带 一点 水 来 吗 ? +Can you come for dinner tonight ? 你 今天 晚上 能 來 吃 飯 嗎 ? +Where can I take a bath ? 我 能 在 哪裡 洗澡 ? +That is an interesting piece of information . 这 是 条 有趣 的 信息 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He threw a piece of meat to a dog . 他 朝 狗 扔 了 一块 肉 . +The family is eating breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +I will see you again this afternoon . 今天下午 我 會 再 見 到 你 . +Slight inattention can cause a great disaster . 失之毫厘 , 谬之千里 . +I do not want to go alone . 我 不想 独自 前往 . +You should not keep them waiting so long . 你 不该 让 他们 等 那么 久 . +Japan is not rich in natural resources . 日本 並 不 擁有 豐富 的 自然 資源 . +Tom was very scared . 湯姆 非常 害怕 . +Do you think Tom is having fun ? 你 認為 湯姆 玩 得 高興 嗎 ? +He had no luck in finding work . 他 不幸 找 不到 工作 . +Tom said he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +What is your favorite home @-@ cooked food ? 你 最 喜歡 的 家常菜 是 什麼 ? +I am thinking of going to Europe . 我 正在 考慮 去 歐洲 . +I remember mailing the letter . 我 記 得 寄 了 信 . +He failed to answer the letter . 他 沒有 回信 . +I have an urgent message from Tom . 我 收到 汤姆 的 一条 紧急 消息 . +How is your family ? 你 家里人 都 还好 吗 ? +There are too many people there . 那裡 太 多 人 了 . +Although old , he is still very much alive . 虽然 上 了 年纪 , 他 依旧 充满活力 . +Those two are exactly alike . 那 兩個 是 一模 一樣 的 . +Tom says he is not sure if he can do that , but he says he will try . 汤姆 说 他 不 确定 是否 能 做到 , 但是 他 说 会 尝试 . +Kabul is the capital of Afghanistan . 喀布尔 是 阿富汗 的 首都 . +I wish you could have been there . 要是 你 能 在 那裡 就 好 了 . +You had better go to the infirmary . 你 最好 去 一下 医务室 . +It belongs to me now . 它 现在 归 我 了 . +My father has already given up smoking and drinking . 我 爸爸 已经 戒烟 戒酒 了 . +Please tell me what you think . 請 告訴 我 你 的 想法 . +I do not have the address now . 我 沒有 現在 的 地址 . +I noticed a pattern . 我 注意 到 一個 圖案 . +I accompanied her on the piano . 我 為 她 作 鋼琴 伴奏 . +Today is my sister is birthday . 今天 是 我 姊姊 的 生日 . +Can I register for that class ? 我 可以 登記 這 堂 課 嗎 ? +Does Tom drink coffee ? 汤姆 喝咖啡 吗 ? +He lives somewhere about here . 他 住 在 這 附近 某個 地方 . +I had a good dream last night . 昨晚 , 我 做 了 个 好 梦 . +Go straight down this street and turn right at the third light . 沿着 这 条路 直 走 , 到 第三个 红绿灯 的 地方 右转 . +There is something strange going on . 正 有 什么 奇怪 的 事情 发生 着 . +I would not do that if I were you . 如果 我 是 你 , 我 就 不 做 那件事 . +Scotland is famous for its woollen textiles . 蘇格蘭 以 其 羊毛 紡織品 而 著名 . +He broke into a house . 他 闖入 一間 房子 . +What is the name of this tune ? 这歌 叫 什么 名字 ? +I am very thirsty . 我 很渴 . +Tom was able to make himself understood in French when he visited Paris . 在 巴黎 , 沒 有人 能夠 理解 湯姆 的 法文 . +A boy of seventeen is often as tall as his father . 十七 歲 的 男孩 常常 長 得 和 他 父親 一樣 高 . +Put your hands up . 手 举 起来 . +What do you want ? 你 想要 什麼 ? +One can not help many , but many can help one . 一个 人 帮不了 许多 个 , 但 许多 人能 帮助 一个 . +This size is too large for me . 这个 码 对 我 来说 太 大 了 . +You did not write anything . 你 甚麼 也 沒寫 . +My brother seems to enjoy himself at college . 我 弟弟 似乎 在 大学 过 得 很 愉快 . +I have decided . 我 決定 了 . +She bought two pounds of butter . 她 買 了 兩磅 的 奶油 . +May I have a talk with you ? 我 能 和 你 谈谈 吗 ? +This bomb can kill a lot of people . 这个 炸弹 可以 炸死 很多 人 . +You have set a bad example . 你 做 了 个 坏 榜样 . +What is this supposed to mean ? 這 該 是 甚麼 意思 ? +They were frightened . 他們 被 嚇到 了 . +Many of the workers died of hunger . 许多 工人 死 于 饥饿 . +If I were invisible , I would not have to wear anything . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +He has had a crush on her . 他 一直 暗恋着 她 . +I got up very late this morning . 今天 早上 我 起 得 很 晚 . +Please let me try the game . 請 讓 我 試試 這個 遊戲 吧 . +My father got home late last night . 我 父親 昨晚 很 晚才 回家 . +I was having a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I will be right with you . 我 馬 上 就 来 . +The deadline is approaching . 期限 近 了 . +Have you read today is paper yet ? 你 看 過 今天 的 報紙 了 嗎 ? +Traffic downtown is all backed up . 市中心 的 交通 都 堵塞 了 . +These dresses are too large . 這些 洋裝 太 大 . +He is a sucker for beautiful women . 他 非常 喜歡 漂亮 的 女人 . +I really like to read . 我 真 喜欢 阅读 . +I tried very hard to put an end to their heated argument . 我 努力 地 平息 他們 不斷 加溫 的 爭執 . +She was elected chairman of the committee . 她 當 選為 委員會 主席 . +Why do you want to die ? 你 为什么 想 死 ? +I really do not know Tom . 我 真不 了解 汤姆 . +My father likes pizza . 我 父親 喜歡 批薩 . +He is wearing gloves . 他 戴 着 手套 . +I do not get what you mean . 我 不 明白 你 的 意思 . +We left the final decision to him . 我們 讓 他 做 最 後 的 決定 . +She was in a hurry to see her father . 她 急于 见 她 的 父亲 . +Beer bottles are made of glass . 啤酒瓶 是 玻璃 做 的 . +We were nearly frozen to death . 我们 几乎 被 冻死 了 . +I do not believe Tom is version of the story . 我 不 相信 汤姆 的 说法 . +They supplied the soldiers with enough food and water . 他们 给 士兵 提供 了 充足 的 食物 和 水 . +Burn this letter after you finish reading it . 看完 这 封信 请 把 它 烧掉 . +I was struck by lightning . 我 被 雷劈 了 . +Here is a book . 這裡 有 一本 書 . +Would you please come again later ? 請 您 稍 後 再 來 好 嗎 ? +Buy Tom a beer . 给 汤姆 买 一瓶 啤酒 . +It is not quite ready yet . 还 没 怎么 准备 好 . +I would like to check out right now . 我 想現 在 結帳 離開 . +In that case , I will change my mind . 这样的话 , 我会 改变 主意 . +You are German , are not you ? 你 是 德国人 , 不是 吗 ? +You have a good sense of humor . 你 很 有 幽默感 . +In addition to English , he speaks German . 除了 英文 , 他 還 說 德文 . +The garden was surrounded by a wooden fence . 花园 被 木 栅栏 围 了 起来 . +She was wearing long boots . 她 穿着 长靴 . +The phone rang . 電話 正在 響 . +My mother took me to the park . 媽媽 帶 我 去 公園 . +Can you solve this problem ? 你 能 解決 這個 問題 呢 嗎 ? +Wait a moment . 等 一下 . +A lot of people came today . 今天 來 了 很多 人 . +Who wrote Hamlet ? 哈姆雷特 是 誰 寫 的 ? +We caught the thief . 我们 抓住 了 小偷 . +You must not go out after dinner . 晚 飯 後 你 不 可以 外出 . +The boy I love does not love me . 我 爱 的 那个 男孩 不 爱 我 . +I think he is something of a poet . 我 觉得 他 有 几分 像 个 诗人 . +The next one is for you . 下 一个 给 你 . +We will stay quiet . 我們 會 保持 安靜 . +I do not blame you for hitting him . 我 不 怪 你 撞 到 他 . +No one comes to visit me anymore . 已经 没人来 拜访 我 了 . +A fox is not caught twice in the same snare . 一只 狐狸 不会 两次 掉入 同一个 陷阱 里 . +What does Tom know about me ? 汤姆 知道 我 的 什么 ? +You should quit smoking . 你 應該 戒菸 . +They say that golf is very popular in Japan . 他们 说 高尔夫 在 日本 很 流行 . +I dislike being alone . 我 不 喜歡 獨處 . +The flash was not working , so he could not take a picture in the dark . 因为 闪光灯 坏 了 , 他 不能 在 黑暗 中 拍照 . +She showed me her album . 她 給 我 看 她 的 相簿 . +I do not have a computer . 我 沒有 電腦 . +How is your wife , Tom ? 你 媳妇 怎么样 , 汤姆 ? +It is not necessary to answer that letter . 沒有 必要 回 那 封信 . +The doctor examined my throat . 醫生 檢查 了 我 的 喉嚨 . +This apple is too small . 這個 蘋果 太小 . +I met Tom for the first time three days ago . 我 三天 前 第一次 见 汤姆 . +I can speak English . 我 會 講 英語 . +If you really want to know , why do not you ask Tom ? 如果 你 真的 想 知道 的话 , 为什么 不问 一下 汤姆 呢 ? +You are always late . 你 总是 迟到 . +It is wrong to tell a lie . 說 謊 是 錯誤 的 . +Prices have reached a 13 @-@ year high . 价格 已经 达到 了 十三年 以来 的 最高点 . +He went to London in 1970 . 他 在 1970 年 前往 倫敦 . +I am looking for an old man . 我 正在 尋找 一位 老人 . +Can you just please go ? 能 請 你 離開 嗎 ? +She thought that I was a doctor . 她 以为 我 是 大夫 . +I do not like either tea or coffee . 我 不 喜歡 茶 也 不 喜歡 咖啡 . +Tom was the first to react . 湯姆 是 最先 作出 反應 的 . +I want you to understand why you have to do this . 我 想 让 你 明白 为啥 你 必须 这么 做 . +I will not need any help . 我 不 需要 任何 帮助 . +The door opened slowly . 门 慢慢 地 开 了 . +I do not get the joke . 我 没 明白 那个 笑话 . +The wall is thirty yards long . 這 堵 牆長 三十 碼 . +I have never gone fishing at night . 我 从没 在 晚上 钓鱼 . +She enjoyed herself at the concert . 她 在 音樂會 上 玩 得 很 開心 . +A rock fell from above . 一块 岩石 从 上面 落下 . +I think that I am intelligent . 我 觉得 我 很 聪明 . +They won . 他们 赢 了 . +Suddenly , it started to rain very hard . 突然 就 下起 了 大雨 . +Throw it away . 扔掉 +She is going to Chiba Stadium . 她 將 去 千葉 球場 . +We know the identity of Tom is killer . 我 㥃 知道 了 湯姆 的 殺手 的 身份 . +Tom will not let you in his house . 汤姆 不会 让 你 进 他 的 屋子 . +Tom looked Mary in the eye . 湯姆 與 瑪麗 對 視 . +Did you have a good time last night ? 你 昨天晚上 過 得 好 嗎 ? +The doctor advised my father to cut down on smoking . 医生 建议 我 父亲 减少 吸烟 . +His ideas are always practical . 他 的 主意 总是 可行 的 . +Cars are expensive . 车子 很贵 . +He put on an air of innocence . 他 摆出 一副 无辜 的 样子 . +What time is it now in Boston ? 波士顿 现在 几点 ? +I promised him that I would come today . 我 答应 他 我 今天 会来 . +I can recommend this book to you . 我 可以 向 你 推薦 這 本書 . +In another two weeks you will be able to get out of the hospital . 再 过 两周 你 就 可以 出院 了 . +Tom needs to be very careful . 湯姆 需要 很 小心 . +It is rare to meet nice people like you . 很少 能 见到 像 你 那么 好 的 人 . +Please replace the empty ink cartridge in the printer . 请 把 打印机 里面 的 空 的 墨粉 鼓 换掉 . +It is an hour is drive from here to there . 从 这里 到 那里 驾车 一 小时 . +You sure were noisy last night . 你 昨晚 確實 很 吵 . +Has anything changed ? 有 任何 事情 改變 了 嗎 ? +You are tired , are not you ? 你 累 了 , 不是 吗 ? +Please sing a song . 請 唱 一首歌 . +Please tell me everything is OK . 請 告訴 我 一切 都 好 . +I eat bread . 我 吃 面包 . +She bit into the apple . 她 咬了一口 蘋果 . +She left here right away . 她 馬 上 離開 了 這裡 . +I expected him to offer some help . 我 期待 他 提供 一些 幫助 . +I went to school in Boston . 我 曾经 在 波士顿 上学 . +I have not eaten anything for days . 我 好多天 没 吃 东西 了 . +I did not hear anyone talking . 我 沒 聽到 任何人 在 說 話 . +You can count on it . 你 可以 依靠 它 . +Let is not talk about it any more . 讓 我們 不要 再 談論 它 了 . +I am so sorry I hurt your feelings . 我 很 抱歉 伤害 了 你 的 感情 . +It is very hard getting a taxi in this city . 在 这个 城市 , 很难 打到 的 . +I phone him every day . 我 每天 都 给 他 打电话 . +Dear Santa , I want a girlfriend for Christmas . 圣诞老人 , 我 想要 一个 女朋友 当 圣诞礼物 . +She is really smart , is not she ? 她 真的 很 聪明 , 不是 吗 ? +Tom is a decent sort of guy . 汤姆 是 个 诚实 的 男孩 . +Mass production reduced the price of many goods . 大量 生產 降低 許多 商品 的 價格 . +Do you have plans for tonight ? 今晚 有 什么 计划 吗 ? +Perhaps he missed the train . 他 可能 错过 了 火车 . +I thought we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +We go fishing once in a while . 我們 偶爾 去 釣 魚 . +This glass contains water . 這個 杯子 裡 有 水 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +I waited for my friend for an hour . 我 等 我 的 一个 朋友 等 了 一 小时 . +I know this is important to you . 我 知道 这 对 您 来说 很 重要 . +Do you often come here ? 您 经常 来 这儿 吗 ? +She wants a new dress badly . 她 很 想要 一条 新 的 连衣裙 . +Here are some interesting links . 這裡 有些 有趣 的 連結 . +I should clean my room . 我 应该 打扫 我 的 房间 . +My dad does not like soccer . 我 爸爸 不 喜欢 足球 . +If time permits , I will visit the museum . 如果 時間 允許 , 我 會 去 參觀 博物 館 . +This is not my car . 這 不是 我 的 車 . +Who is the author of this book ? 這 本書 的 作者 是 誰 ? +He drank a cup of coffee . 他 喝 了 一杯 咖啡 . +I can not understand why you are so critical of him . 我 不 明白 为什么 你 这么 批评 他 . +Pilots communicate with the airport by radio . 飛行員 用 無線電 與 機場 溝通 . +Show me a cheaper one , please . 請 給 我 看看 便宜 一點 的 . +Tom is able to swim well . 湯姆 游泳 可以 游 得 很 好 . +Will you stay at home ? 你 会 待 在家 吗 ? +Sensing danger , he ran away . 他 一 嗅到 风声 不 对 , 就 逃之夭夭 了 . +I was able to find out his address . 我 能 找到 他 的 地址 . +They do not even know why . 他們 甚至 不 知道 為 什麼 . +He owes his success to good luck . 他 將 他 的 成功 歸 於 好 運 . +How much does it cost ? 多少 錢 ? +He will come on foot or by bicycle . 他 走路 或者 骑车 过来 . +Thank you for your patience . 谢谢 你 的 耐心 . +You work hard . 你 工作 努力 . +Do you want to stay any longer ? 你 想 再 待 下去 嗎 ? +He has all kinds of books . 他 有 各种各样 的 书 . +Please open the bottle . 請 打開 瓶子 . +English is just one of over 2,700 languages in the world today . 今天 , 英語 只是 世界 上 超過 2 , 700 種 語言 的 其中 之一 . +He designed the new building . 他 設計 了 新 建筑 . +Elephants live in Asia and Africa . 大象 生活 在 亞洲 和 非洲 . +How about dining out tonight ? 我们 今晚 出去 吃 怎么样 ? +I do not really use Facebook that much . 我 並 沒有 花 那麼 多 時間 在 Facebook 上 . +It is just a cold . 只是 感冒 而已 . +You can use this computer any time . 你 可以 隨時 使用 這 台 電腦 . +I am looking forward to seeing you again . 我 期待 再 見 到 你 . +He knows better than to marry her . 他 聰明 到 不 會 娶 她 . +May I speak with the teacher ? 我 能 和 老师 说话 吗 ? +Why do not you wait here while I finish what I am doing ? 为什么 你 不 在 这里 等到 我 做 完 为止 ? +Love is like oxygen . 爱 就 像 氧气 . +Please show me those pictures . 請 讓 我 看看 那些 圖片 . +We need some more coffee . 我們 需要 多 一點 咖啡 . +He made many excuses for being late . 他 為 遲 到 找 了 很多 的 藉口 . +A wise man would not say such a thing . 一个 聪明人 不会 说 这种 话 . +You should drink a lot of liquid . 你 應該 喝 大量 的 液體 . +I have seen the film before . 我 已经 看过 这部 电影 了 . +We were on the train for ten hours . 我們 在 火車 上 十個 小 時 . +Arabic is read from right to left . 阿拉伯语 要 从 右 往 左 读 . +The students have returned . 学生 们 回来 了 . +I have lost my cap . 我 把 帽子 弄 丟了 . +Who is that guy ? 那家伙 是 谁 ? +Water evaporates when it is heated . 當 水 被 加熱 時 , 水汽 蒸發 . +Choose your favorite racket . 選擇 你 喜歡 的 球拍 . +What is the matter with you ? 你 怎么 了 ? +I am a student at Oxford University . 我 是 牛津大学 的 学生 . +He is not qualified for the job . 他 不 勝任 這份 工作 . +She ran very fast to catch up with the other members . 她 跑 得 很快 是 为了 赶上 其他 成员 . +He is on goods terms with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +What is your husband is name ? 你 丈夫 叫 什么 ? +It is the things that we do not possess which seem to us most desirable . 得不到 的 东西 就 最 想得到 . +Tom will paint the fence tomorrow . Tom 明天 將漆 柵欄 . +He has a nice income . 他 收入 可观 . +He studies history at college . 他 在 大学 修读 历史 . +She cooks chicken the way I like . 她 用 我 喜歡 的 方式 烹調 雞肉 . +I have to buy Christmas gifts . 我 必须 要 买 圣诞礼物 了 . +How much is that mountain bike ? 那 辆 山地车 多少 钱 ? +You should study harder . 你 應 該 更 努力 學習 . +She will almost certainly pass the test . 她 幾乎 確定 會 通過 測驗 . +The sea is blue . 大海 是 蓝色 的 . +Are they students ? 他們 是 學生 嗎 ? +You are a student . 您 是 學生 . +She suggested to me that I call off the meeting . 她 建议 我 取消 会议 . +I can not stand that noise any longer . 我 不能 再 忍受 那 噪音 了 . +We go to school by bus . 我們 乘 公共 汽車 去 上 學 . +I went to a park this morning . 今天 早上 我 去 了 公园 . +I get along with my younger brother . 我 與 我 的 弟弟 相處 融洽 . +I wish you had told me the truth then . 但 願 你 那時候 就 告訴 我 真相 . +He wore a mask so that no one could recognize him . 他 戴 著 面具 以至 於 沒 有人 認出 他 . +Do not take things so seriously . 不要 把 事情 看得 這麼 嚴重 . +Let is start the party . 讓 我們 開始 這個 派 對 吧 . +I got her to clean my room . 我 讓 她 清掃 了 我 的 房間 . +Not everyone is smiling . 不是 每個 人 都 在 笑 . +Tom gave me a pen . 湯姆 給 了 我 一枝 筆 . +I was about to leave when you came in . 你 来 的 时候 我 刚好 要 走 . +I am amazed at your audacity . 我 对 你 的 大胆 感到 很 惊讶 . +He must be over sixty . 他 应该 超过 六十岁 了 . +His car is really cool . 他 的 車 真的 很酷 . +Watch out ! 当心 ! +The accident almost cost him his life . 事故 差点 让 他 丢 了 性命 . +She is just a child . 她 只是 個 孩子 . +She was killed in an automobile accident . 她 死 於 一場 汽車 車禍 . +Tom did not wear jeans yesterday . 湯姆 昨天 沒穿 牛仔 褲 . +Our baseball team is very strong . 我們 的 棒球 隊 很 強 . +I want us to do it together . 我 想 讓 我們 一起 做 . +The towel was not useful at all . 毛巾 完全 没起 作用 . +Three months is too short a time to finish the experiment . 要 完成 实验 , 三个 月 太短 了 . +I have been here for a long time . 我 在 這裡 很 長 一段 時間 了 . +I often use SSH to access my computers remotely . 我 经常 使用 SSH 来 远程 连接 到 我 的 电脑 . +You have been late for school more often than before . 你 比 以前 更 容易 上課 遲到 了 . +Your plan seems better than mine . 你 的 計劃 似乎 比 我 的 好 . +I wish I were a little taller . 但 願 我 長 高一 點 . +We buy eggs by the dozen . 鸡蛋 是 论 打买 的 . +That is exactly what he said . 这 就是 他 所说 的 . +I will let you know when I have figured it out . 我 搞 明白 了会 告诉 你 . +You said you were in trouble . How can I help ? 你 说 你 有 困难 . 我 能 帮忙 吗 ? +You do not have to answer quickly . 你 不必 快速 作答 . +He often sits for many hours reading books . 他 常常 坐 着 看书 一连 好几个 小时 . +There are seven continents on the earth . 地球 上 有 七大洲 . +Mary wants to become a teacher . 瑪麗 想成 為 一名 教師 . +Now it is time for the weather forecast . 现在 是 天气预报 的 时间 . +There are many shrines in Kyoto . 京都 有 許多 神社 . +I will attend . 我 會 參加 . +Tom told Mary not to waste her time trying to convince John to help . 汤姆 对 玛丽 说 , 不要 浪费时间 去 说服 约翰 来 帮忙 . +Tom seems nice . 汤姆 看着 是 个 好人 . +We have more customers than we can count . 我們 的 顧客 比 我們 可以 計數 的 更多 . +This hotel does not have a swimming pool . 這個 酒店 沒有 游泳池 . +Call me if you discover anything . 如果 你 發現 什麼 , 請 打 給 我 . +Tom and I are friends . 湯姆 和 我 是 朋友 . +You really are an idiot . 你 真的 是 ( 一 ) 個 笨蛋 . +It is all your fault . 都 是 你 的 错 . +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +This is the very book you wanted . 這 是 你 非常 想要 的 書 . +Tom was injured in the blast . 汤姆 在 爆炸 中 受伤 . +I wish to see my father . 我 希望 看看 我 的 父親 . +I have just had lunch . 我 剛 吃 過午 飯 . +Your wife is mad at you . 你 太太 在 生 你 的 氣 . +I could not get to sleep . 我 無法 入睡 . +Let is go to a movie . 讓 我們 去 看 電影 . +I intend to become a lawyer . 我 有志 成为 一名 律师 . +She is everything to him . 她 是 他 的 一切 . +He lives just across the road . 他 就 住 在 馬路 對面 . +We could not do that . 我们 做 不到 . +That is no business of his . 那 不關 他 的 事 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +She looked more beautiful than ever . 她 似乎 比 以往 任何 时候 都 漂亮 . +She gets up early every morning . 她 每天 早上 早起 . +When you have finished reading this letter , burn it . 看完 这 封信 请 把 它 烧掉 . +Why should we help ? 为什么 我们 应该 要 帮助 ? +His house was small and old . 他 的 房子 又 小 又 旧 . +I do not think this is correct . 我 觉得 这 不是 真的 . +I like pop music . 我 喜歡 流行 音樂 . +No one can control him . 沒人 管束 或 開導 他 . +I put it in the drawer . 我 把 它 放在 抽屜 裡 . +Tom , Mary and John are all here . 湯姆 、 瑪麗 和 約翰 都 在 這裡 . +The conference is to be held in Tokyo the day after tomorrow . 会议 将 在 后天 于 东京 举行 . +My mother is making a cake . 我 的 母親 在 做 蛋糕 . +I do not trust him any longer . 我 再也 不 相信 他 了 . +Go straight home . 直接 回家 . +Tom is out cold . 汤姆 正 昏迷不醒 . +I saw a horse pulling a cart . 我 看見 一匹 馬拉著 一架 馬車 . +In the light of what you told us , I think we should revise our plan . 根据 你 所说 的话 , 我 认为 我们 应该 重新 审视 我们 的 计划 . +Where did you get the money to buy that dress ? 你 從 哪兒 弄來 的 錢 去 買 那件 衣服 ? +I am still young . 我 還 年輕 . +I spent all day in the library . 我 整天 待 在 图书馆 . +He has a lot of money . 他 有 很多 钱 . +The house burned to the ground before the fire truck arrived . 消防车 到达 之前 , 房子 就 全 烧 了 . +Nearly all Japanese have dark hair . 几乎 所有 的 日本 人 头发 都 是 黑色 的 . +I have missed another chance . 我 又 失去 了 一次 机会 . +Take the pan off the fire . 把 平底 鍋離 火 . +I can see you are good at this . 我 看 你 擅长 做 这事 . +The topic is worth discussing . 這 是 值得 探討 的 話題 . +Many young people in Japan eat bread for breakfast . 許多 日本 的 年 輕 人 吃 麵 包 當 作 早餐 . +How did you find my house ? 你 怎么 找到 我 的 房子 的 ? +This is a good movie . 這 是 一部 好 電影 . +" Is that Tom calling again ? " " Yes . He calls every evening these days . I should not have given him my number . " “ 又 是 汤姆 的 电话 ? ” “ 嗯 . 最近 他 每天晚上 都 会 打 过来 . 当时 就 不该 给 他 我 的 号码 的 . ” +Do what you think is right . 做 你 認為 正確 的 事 . +I was quite annoyed . 我 被 烦死 了 . +I had some calls to make . 我 要 打 几个 电话 . +You can not build buildings on swampy land . 你 不能 在 沼澤 地上 建造 建築物 . +Tom is laughing . 汤姆 在 笑 . +The leaves fell to the earth . 树叶 掉 在 地上 . +Tom slept through the entire movie . 湯姆 在 整場 電影 放映 時 都 在 睡覺 . +I am afraid of dying . 我 怕死 . +My father drives a very old car . 我 的 父親 開 一輛 舊車 . +Are you hiding something ? 你 是不是 瞒 着 我 什么 ? +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 就 方寸大乱 了 . +Do your best . 盡力 而為 . +Could you please tell me again why you are late ? 你 能 再 向 我 解释 一遍 你 为什么 迟到 了 吗 ? +Does Tom play tennis ? 湯姆 打 網球 嗎 ? +You can not depend on Tom . 你 不能 靠 湯姆 . +Are there any other suggestions ? 還 有 其他 建議 嗎 ? +Would you like to know how I did that ? 你 想 知道 我 怎么 做到 的 吗 ? +What are you learning at school ? 你 在 学校 学 些 什么 呀 ? +Try to make the most of your time . 尽量 试 着 用好 你 的 时间 . +My job is washing dishes . 我 的 工作 是 洗碗 . +The plane made a perfect landing . 這 架 飛機 完美 的 著陸 了 . +Are you feeling better now ? 你 觉得 好些 了 吗 ? +I am glad I could help out . 能够 出 一份 力 太好了 . +Tom nearly died tonight . 汤姆 昨晚 差点 死 了 . +He is as tall as his father . 他 和 他 爸爸 一样 高 . +She had died before I arrived . 她 在 我 到 達 之前 去世 了 . +Do not be afraid to make a mistake . 別 害怕 犯錯 . +You are a wonderful woman . 你 是 位 了不起 的 女性 . +Alcohol consumption is increasing every year . 酒 的 消费 每年 都 在 上升 . +The two teams fought very hard . 两队 打 了 场 硬仗 . +It might snow tonight . 晚上 也许 会 下雪 . +As soon as the door opened , they ran away . 门 一开 , 他们 就 逃走 了 . +Do not you know that ? 你 不 知道 那件事 吗 ? +This does not concern you . 这 不是 你 的 事 . +The weather was so cold that the lake froze over . 天 冷 得 足以 让 湖 结冰 . +" Would you like any more ? " " No , I have had enough . " " 你 想 再 多 吃 點 嗎 ? " " 不 , 我 吃 飽 了 . " +Training will be provided . 会 有 训练 . +He gave it to me for nothing . 他 免費 把 它 給 了 我 . +He is alone . 他 獨自一人 . +While I was reading in bed last night , I fell asleep with the light on . 我 昨晚 在 床上 看书 的 时候 点着 灯 就 睡 了 . +You can buy it at any bookstore . 你 可以 在 任何 一家 書店 買到 它 . +I want something to write on . 我 想要 可以 在 上面 寫 字 的 東西 . +That is what I have to do . 那 是 我 必須 做 的 . +He has been to Hokkaido . 他 曾 去過 北海道 . +She is been working all day long . 她 已經 工作 了 一整天 . +If you want something to be done right , sometimes you have just got to do it yourself . 如果 你 想 做 对 一件 事 , 有时候 你 得 亲力亲为 . +Hippopotamuses love water . 河马 喜欢 水 . +I am a foreigner . 我 是 一個 外國 人 . +Not every country belongs to the U.N. 不是 所有 国家 都 加入 了 联合国 . +This city is cold and lonely without you . 没有 你 , 这 座 城市 寒冷 又 孤寂 . +Was the baby crying then ? 那時 嬰兒 正在 哭 嗎 ? +Spring will be here soon . 春天 快 來 了 . +We saw a funny movie last Sunday . 我們 上 星期天 看 了 一場 很 有趣 的 電影 . +He speaks poor French . 他 讲 不好 法语 . +I wish I could help you . 但 願 我 可以 幫助 你 . +Do you have a fever and a sore throat ? 你 發燒 和 喉嚨 痛 嗎 ? +What he said was over my head . 这人 讲 的 我 完全 听不懂 . +She left her gloves in the car . 她 把 她 的 手套 留在 車 上 了 . +I wish I could speak English . 但 願 我 會 講 英語 . +That is my sole concern . 这 是 我 唯一 关心 的 . +That is impossible . 这 不 可能 . +I have known her for five years . 我 已經 認識 她 五年 了 . +I wish you could come with us . 但 願 你 可以 跟 我們 一起 來 . +You should check it out . 你 應該 檢查 一下 . +That was not the main reason Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +She kissed him on the cheek . 她 在 他 的 脸颊 上 吻 了 一下 . +Sleep deprivation increases risk of heart attacks . 睡眠不足 增加 心臟病 發作 的 危險 . +Would you like some salad ? 你 要 來 點 兒 沙拉 嗎 ? +You have to leave . 你 得 走 了 . +Do you live here ? 你 住 這裡 嗎 ? +Tom knows it is over . 湯姆 知道 它 結束 了 . +Were you tired last night ? 昨晚 你 累 了 嗎 ? +She will return home next Sunday , that is , the tenth . 她 下 周日 回家 , 也 就是 10 号 . +What do you have in your bag ? 你 的 袋子 裡 有 什麼 ? +I love you more than you love me . 我 愛 你 多 於 你 愛 我 . +I am blind in the right eye . 我 的 右眼 瞎 了 . +My grandfather is in his nineties . 我 祖父 九十多 歲 了 . +I bought a camera the other day . 我 前 幾天 買 了 一台 照相 機 . +I got arrested . 我 被 逮捕 了 . +She looked away . 她 轉移 了 視線 . +This book is popular with students . 這 本書 受到 學生 的 歡迎 . +Whose book is this ? 這書 是 誰 的 ? +I will not be home next Sunday . 我 下 周日 不 在家 . +I would like to be a guitarist . 我 想要 成为 吉他手 . +She went there yesterday . 她 昨天 去 那裡 . +My sister goes to a university . 我 妹妹 上大學 . +I should be ready by 2 : 30 . 我 应该 在 2 : 30 准备 好 . +I provided him with food . 我 提供 了 他 食物 . +Tom often does not keep his promises . 汤姆 经常 不 守约 . +My family goes skiing every winter . 我 的 家人 每年 冬天 去 滑雪 . +I will keep doing it . 我 要 一直 做 下去 . +I will call for you at eight tomorrow morning . 我 明早 八点 来接 你 . +Your parents did not come , did they ? 你 的 父母 沒來 , 是 嗎 ? +Tom was so drunk that he did not even recognize me . 汤姆 醉 得 连 我 都 认不出来 了 . +Where do you want to go ? 你 想 去 哪裡 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +I like children . That is why I became a teacher . 我 喜欢 孩子 . 这 就是 为什么 我 成为 了 教师 . +I should have gone to Australia with Tom . 我 本该 和 汤姆 一起 去 澳大利亚 . +You will get into trouble if your girlfriend finds out the truth . 如果 你 女朋友 发现 真相 的话 , 你 会 有 麻烦 的 . +I am new at this kind of work . 我 新 接触 這種 工作 . +You should have shown him the device . 你 应该 给 他 看看 这 装置 . +Tom was not as handsome as Mary said he was . 汤姆 并 不是 玛丽 说 得 那样 英俊 . +A little bit of luck sometimes leads to an unexpected success . 一點點 的 運氣 有 時會 導致 意想不到 的 成功 . +Do not be afraid to make mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +Are you tired ? 你 累 了 嗎 ? +The room was cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I do not know what Tom saw . 我 不 知道 汤姆 看到 了 什么 . +He has gone to Italy to study music . 他 已經 去 義 大利 學習音 樂 了 . +It is not a dream at all . 它 根本 不是 夢 . +You look bored . 你 看 起來 很 無聊 . +Turn to the left . 向左转 . +The school is on the hill . 学校 在 小丘 上面 . +Tom was with a bunch of strangers . 汤姆 和 一堆 陌生人 在 一起 +I do not have time to play games with you . 我 没 时间 跟 你 玩游戏 . +I will never allow you to do that . 我 絶 不 會 讓 你 去 做 . +I really enjoy your company . 我 非常 享受 你 的 陪伴 . +Mary hid the money in her bra . 瑪麗 把 錢藏 在 了 文胸 裏 . +Swimming at night is dangerous . 夜里 游泳 很 危险 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I have a Facebook account . 我 有 一个 Facebook 的 帐号 . +He has no chance of succeeding . 他 沒有 成功 的 機會 . +Put out the light . 熄灯 . +This writer is Russian . 这个 作家 是 俄罗斯 人 . +I do not have any sisters . 我 没有 姐妹 . +I have not yet watched that video . 我 还 没 看过 那段 视频 . +Lots of people in Japan are indifferent to politics . 很多 日本 人 对 政治 冷淡 . +He is likely to arrive soon . 他 可能 很快 就 到 了 . +There must be some misunderstanding between us . 我们 之间 肯定 有 误会 . +My bicycle has a flat tire . 我 的 腳踏車 輪胎 沒氣 了 . +Tom was all worn out . 湯姆 完全 筋疲力盡 了 . +They helped each other with homework . 他們 互相 幫忙 做功 課 . +Tom got into trouble because of Mary . 湯姆 因為 瑪麗 陷入 了 麻煩 . +She told me that her mother had bought it for her . 她 告诉 我 她 妈妈 买 给 她 了 . +You can ask the child that is playing over there . 你 可以 問問 在 那裡 玩 的 孩子 . +You have to move . 你 得行 動 了 . +Wake me up early tomorrow morning . 明天 早上 早點 叫醒 我 . +My uncle gave me a gift . 我 叔叔 送 了 我 一样 礼物 . +Our teacher comes to school by car . 我們 老師 開車 來 學校 . +The project was a complete failure . 這個 計劃 徹底 的 失敗 了 . +How about another piece of cake ? 要 不要 再 來 一塊 蛋糕 ? +I have no objection to paying a special fee if it is necessary . 如果 必要 的话 , 我 不 反 对付 特别 费用 . +Why do you need this money ? 你 為 什麼 需要 這筆 錢 ? +I had no choice . 那时 我 没有 选择 的 余地 . +What is it like being Tom is girlfriend ? 做 汤姆 的 女朋友 怎么样 ? +Do you have a lot of time to relax ? 你 有 很多 休閒 時間 嗎 ? +JST stands for Japan Standard Time . JST 代表 日本 標準 時間 . +He married an actress . 他 和 一个 女演员 结婚 了 . +I will attend the next meeting . 我会 参加 下次 的 会议 . +There is some water left . 还 剩 一点 水 . +She went over the list to see if her name was there . 她 走 過去 看看 她 的 名字 是否 在 清單 上 . +This city is 1,600 meters above sea level . 这 座 城市 海拔 1600 米 . +He has three sons . 他 有 三个 儿子 . +I am at home . 我 在家 裡 . +Open the door , please . 请 开门 . +I have been wanting to see that movie for a long time . 我 想 看 那 电影 想 好久 了 . +My briefcase is full of papers . 我 的 公事包 裡 裝滿 了 文件 . +Everybody is fine . 每个 人 都 好 . +Turn right at the next intersection . 请 在 下 一个 十字路口 右转 . +Would you like to dance with me ? 你 愿意 和 我 跳舞 吗 ? +Water boils at one hundred degrees . 水 在 攝 氏 100 度沸騰 . +I do not want any milk at all . 我 完全 不要 牛奶 . +She can play the drum . 她 會 打鼓 . +I was angry because he was late . 因為 他 遲到 了 , 所以 我 很 生 氣 . +Both of my sisters are married . 我 的 两个 姐妹 都 结婚 了 . +Mother has a coffee shop . 媽媽 有 一個 咖啡 廳 . +How can I reach you ? 我 怎么 联系 你 ? +Tom fell asleep . 汤姆 睡着 了 . +The dog walked across the street . 這 隻 狗 穿 過 街道 . +Wherever you go , I will follow . 無論 你 去 哪裡 我 都 會 跟著 你 . +It has not been easy . 它 不 容易 . +I was almost hit by a car . 我 幾乎 被 車 撞 到 了 . +You have worked hard for months and have certainly earned a holiday . 你 已經 辛苦 地 工作 好 幾個 月 了 , 當然 可以 休假 . +She drew a circle on a piece of paper with a pencil . 她 用 铅笔 在 纸 上 画 了 一个圈 . +What would you do if you had ten thousand dollars ? 如果 你 有 一 万美元 , 你 想 做 什么 呢 ? +I have plenty of money with me . 我 身上 帶著 很多 錢 . +Sing us a song , please . 請 為 我們 唱首歌 吧 . +Very few people live to be 100 . 很少 人 活到 100 岁 . +Please come . 请来 吧 . +I am just worried about my weight . 我 只是 担心 我 的 体重 . +I will drop you off at the station . 我 載 你 到 車站 . +Let is start right away . 我们 立刻 开始 吧 . +I do not see much of him . 我 不常 見到 他 . +I really am unlucky ! 我 真的 很 倒霉 ! +She has a very quick mind . 她 反應 很快 . +I do not have any children . 我 没有 孩子 . +He has been studying for two hours . 他 学 了 两个 小时 . +What are they saying ? 他們 在 說 什麼 ? +Hey , I may have no money , but I still have my pride . 嗨 , 我 可能 没 钱 , 但 我 一直 有 我 的 骄傲 . +You do not understand the procedure . 你 不 明白 程序 . +Are you being paid for doing this ? 是 有人 花钱 让 你 做 这事 吗 ? +How are your parents getting along ? 你 的 父母 是 如何 相處 的 ? +I liked Tom is first book more than the second . 相比 第二本 , 我 更 喜欢 汤姆 的 第一 本书 . +I could not get the point of his speech . 我 不能 抓到 他 演讲 的 重点 . +We do not have any bread left . 我們 沒 麵 包 了 . +You have to leave . 你們 得 走 了 . +Tom interrupted our conversation . 湯姆 打斷 了 我們 的 談話 . +My father can fly an airplane . 我 的 父親 會 駕駛 飛機 . +Do you remember where we first met ? 你 还 记得 我们 第一次 见面 是 在 哪里 吗 ? +Is this your first time in Korea ? 你 是 第一次 来 韩国 吗 ? +Tom walked out . 湯姆 走 了 出去 . +I can hear you , but I can not see you . 我 听得见 你 , 但 我 看不见 你 . +What is your biggest fear ? 你 最 害怕 的 是 什么 ? +We took a walk along the river . 我們 沿著 河 散步 . +It is not hard to understand . 不 難 理解 . +My mother told us an interesting story . 我 的 媽媽 給 我們 講 了 個 有趣 的 故事 . +I have neither time nor money . 我 沒有 時間 , 也 沒有 錢 . +I am very sorry I came home so late . 我 很 抱歉 那么 晚 回家 . +He painted the ceiling blue . 他 把 天花板 刷成 了 蓝色 . +Tom moves quickly . 汤姆 动 得 好 快 . +He may become a baseball player . 他 可能 成為 一個 棒球 選手 . +See you tomorrow . 明天 见 . +The new Harry Potter movie is pretty lame . 哈利波 特的 新片 十分 差 . +All of a sudden , it became cloudy . 忽然 天氣 轉為 多 雲 . +He has been sick for a week . 他 病 了 一 星期 . +They took our passports . 他們 拿 了 我們 的 護照 . +Do not you play tennis ? 你 不 打 網球 嗎 ? +He graduated from high school this spring . 今年 春天 他 從 高中 畢業 了 . +There are some misprints , but all in all , it is a good book . 雖然 有 一些 印刷 錯誤 , 但 大致 上 說 來 , 這 是 一本 好 書 . +He took me to the station . 他 帶 我 到 車站 . +I learned to drive a car when I was eighteen and got a driver is license . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +It is no use crying over spilt milk . 為 濺出 的 牛奶 哭 也 沒用 . +There were some boats on the lake . 湖上 有 一些 船 . +Tom wrote that song three years ago . 汤姆 三年 前 创作 了 那首歌 . +I warmed myself in the bath . 我 泡 了 个 澡 身体 暖和 起来 了 . +I am looking forward to Christmas . 我 期待 聖誕節 的 到 來 . +I plan to go there . 我 打算 去 那裡 . +Her husband is an excellent cook . 她 丈夫 是 個 優秀 的 廚師 . +She grew roses . 她種 了 玫瑰 . +She was accused of telling a lie . 她 被 指责 说 了 谎 . +It may never happen . 它 可能 從 沒 發生 過 . +Do not miss the bus . 不要 错过 公车 . +Last year in the Philippines , earthquakes and tidal waves resulted in the deaths of more than 6,000 people . 去年 在 菲律宾 , 地震 和 海啸 造成 了 超过 6000 人 的 死亡 . +I can drive a car . 我会 开车 . +Do you actually believe that ? 你 真 信 吗 ? +Do you like Mozart is music ? 你 喜歡 莫扎特 的 音樂 嗎 ? +I was puzzled about what to do next . 我 对 以后 做 什么 很 迷茫 . +I certainly would not want to be seen with Tom . 我 当然 不想 被 人 看见 跟 汤姆 在 一起 . +You did a good job . 你 干 得 很 好 . +Tom made me do that . 是 汤姆 让 我 做 的 . +That was not the main reason why Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +We know this . 我们 知道 . +I feel like I am going to faint . 我 覺得 我 快 昏倒 了 . +Our school is in the center of the town . 我们 学校 在 市中心 . +English is used by many people . 英語 是 被 許多 人 使用 . +Sweet dreams ! 祝 你好 梦 . +The policeman did not tow your car away . 警察 沒有 拖走 你 的 車 . +I suggest that you do not trust Tom too much . 我 建議 你 別 太 相信 湯姆 . +What is my room number ? 我 的 房间 号 是 多少 ? +Leave my car alone . 離 我 的 車 遠 一點 . +Eighty percent of all information on computers around the world is in English . 全世界 百分之八十 電腦 上 的 資訊 都 是 用 英語 寫 的 . +Tom regrets his mistake . 湯姆 為 他 的 錯誤 後 悔 . +I have got to go to the bank . 我 要 去 银行 了 . +This is your book . 這 是 你 的 書 . +Tom is a fat man . 湯姆 是 個 胖子 +Father is watering flowers . 父亲 在 浇花 . +The door is locked at nine o 'clock . 這個 門 在 九點鐘 的 時候 是 鎖著 的 . . +I accepted her invitation . 我 接受 了 她 的 邀請 . +Tom could not decide where to begin . 湯姆 不能 決定 從 哪裡 開始 . +He always left the problem of his children is education to his wife . 他 總是 把 孩子 的 教育 問題 留給 他 的 妻子 . +She took me for my brother . 她 把 我 认作 我 弟弟 了 . +You do not have to answer right away . 你 不用 马上 回答 . +I usually take a shower in the evening . 我 通常 在 晚上 洗澡 . +How about taking a rest ? 休息 一下 怎麼樣 ? +She is leaving for America tonight . 她 今晚 離開 去 美國 . +They have been married two years . 他們 已經 結婚 兩年 了 . +He got down the book from the shelf . 他 從 架上 拿下 書 . +She plays tennis in the morning . 她 早上 打 網球 . +I have two children away at university . 我 有 两个 出去 上 大学 的 孩子 . +I thought Tom would be worried . 我 以为 汤姆 会 感到 担心 . +We know . 我们 知道 . +Do you play soccer ? 你 踢足球 嗎 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +My father is sweeping the garage . 我 父親 正在 清 掃車 庫 . +You must pay attention to his advice . 你 一定 要 注意 他 的 建议 . +I can not put up with this smell . 我 不能 忍受 這種 氣味 . +Do you come here often ? 您 经常 来 这儿 吗 ? +What are you reading now ? 你 現在 在 讀 甚麼 ? +The fire reduced the house to ashes . 房子 被 大火 烧成 了 灰烬 . +Farmers always complain about the weather . 农民 总是 抱怨 天气 . +Where can you get tickets ? 在 哪里 可以 买 到 车票 ? +I could not agree with his opinion . 我 不 同意 他 的 看法 . +They are high school students . 他們 是 高中生 . +Dogs have a keen sense of smell . 狗 的 嗅觉 灵敏 . +Tom has not yet told us what he wants us to buy . 汤姆 还 没 对 我们 说 他 希望 我们 买 什么 呢 . +I 'd be unhappy , but I would not kill myself . 我会 不 高兴 , 但 我 不会 自杀 . +Do not underestimate my power . 不要 小看 我 的 力量 . +Women eat lighter meals when they are eating with a guy . 當 女性 跟 一個 男人 吃 飯 時 , 女性 會 吃 得 比較 少 . +This is not a trivial matter . 这 不是 鸡毛蒜皮 的 小事 . +Will it rain tomorrow ? 明天 会 下雨 吗 ? +They say that old house is haunted . 據 說 老房子 鬧 鬼 . +I think that what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +He is no fool . 他 没 疯 . +He is proud of having been educated in the United States . 他 对 自己 在 美国 读 过 书 这件 事 感到 很 骄傲 . +I could hardly hear him . 我 幾乎 聽 不到 他 的 聲音 . +Excuse me . 对不起 . +I love drinking tea . 我 很 愛 喝茶 . +Please add my name to the list . 請 在 名單 上 加上 我 的 名字 . +Tom has more books than Mary . 湯姆 的 書 比瑪麗 的 還 多 . +Tom will never do it again . 汤姆 再也 不 做 了 . +They always complain . 他們 總 是 抱怨 . +Tom is the one , is not he ? 湯姆 就是 那 一個 , 不是 他麼 ? +Mary put some flowers in the vase . 玛丽 把 一些 花 放进 了 花瓶 . +I am a free man . 我 是 一個 自由 的 人 . +Do not throw trash here . 别 在 这儿 扔 垃圾 . +I went swimming in the river yesterday . 我 昨天 去 河里 游泳 了 . +You look like a little girl . 你 看来 是 个 小女孩 . +Tom is wrong . 湯姆 錯 了 . +Perhaps it will rain in the afternoon . 也許 下午 會 下雨 . +Why do you have two cars ? 他 為 什麼 有 兩輛 車 ? +You are never satisfied with anything I do . 你 對 我 做 的 任何 事 都 不 滿意 . +I want something to drink . 我 想 喝 點 什麼 . +No more , thank you . I am full . 不 , 谢谢 , 我 饱 了 . +She has a lot of English books . 她 有 很多 英文 書 . +Tom did not tell me his secret . 湯姆 沒有 告訴 我他 的 祕 密 . +You ought not to go out . 你 不 應該 出門 . +A barber is a man who shaves and cuts men is hair . 理 髮 師 是 為 男人 刮 鬍 子 和 剪 頭 髮 的 人 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +I am cool . 我 很酷 . +The man sold his soul to the devil . 这 男人 把 他 的 灵魂 卖 给 魔鬼 . +I do not procrastinate as much as I used to . 我 不 像 我 以前 那么 拖延 了 . +What did you do with your camera ? 你 用 你 的 照相机 做 了 什么 ? +I think I can run as fast as Tom . 我 认为 我 能 跑 得 跟 汤姆 一样 快 . +What did you do last night ? 你 昨晚 做 了 什麼 ? +The light is green . 現在 是 綠燈 . +Is there someone that can drive ? 有人 会 开车 吗 ? +The music was very loud . 那 音乐 声音 十分 响 . +I am getting old . 我 在 变老 . +People are more educated now than they used to be . 现在 的 人 教育 程度 比 以前 高 得 多 . +Do not confuse desire with love . 不要 把 欲望 和 爱情 混为一谈 . +It is likely to rain all weekend . 可能 整個 週末 都 下雨 . +Today , many people worry about losing their jobs . 今天 , 許多 人 擔心 失去 工作 . +What is over there ? 那 是 什么 ? +Has he met them today ? 他 今天 見 他們 了 嗎 ? +I should really get some sleep . 我 真該 睡 一 覺 了 . +There is a pub just around the corner . 在 轉角 有 一家 酒吧 . +You made the same mistake as last time . 你 犯 了 跟 上次 相同 的 錯誤 . +They hated Tom . 他們 恨 湯姆 . +I saw you driving your new car . 我 看到 你 開著 你 的 新車 . +I can not deal with this problem anymore . 我 不能 再管 这 问题 了 . +Tom is a true man . 汤姆 是 个 真 男人 . +I am lost . 我 迷失 了 . +I do not plan to stay very long . 我 沒有 打算 停留 太久 . +Tom is here because of me . 因为 我 , 汤姆 在 这里 . +Looking at your Facebook friends ' photos is a waste of time . 在 Facebook 上 瀏覽 朋友 的 照片 是 在 浪費 時間 . +There is no way off the island . 沒有 辦法 離開 這個 島 . +You are really wonderful . 你 真是 太好了 . +I play tennis once in a while . 我 偶爾 打 網球 . +He was ill , so he could not come . 他 病 了 , 所以 他 不能 來 . +It is not a bug , it is an undocumented feature . 这 不是 一个 漏洞 , 而是 一个 没有 写 进 文档 的 特性 . +You should drive at a safe speed . 你 應該 以 安全 速度 駕駛 . +What did you have to eat ? 你 必須 吃 什麼 ? +I have always wanted to be a professional basketball player . 我 一直 想 成为 一名 职业 篮球 运动员 . +The stripes were horizontal . 條紋 是 水平 的 . +Tom looked pretty healthy last night . 汤姆 昨晚 看来 很 健康 . +As far as I am concerned , she is a complete stranger . 她 对 我 来说 是 一个 完全 陌生 的 人 . +I have got things under control . 我 控制 住 了 . +He pretended to be a doctor . 他 假裝 是 一名 醫生 . +Could you please repeat what you just said ? 您 可以 再 重复 一遍 刚才 说 的话 吗 ? +He got a loan from the bank . 他 從 銀行 得到 了 貸款 . +What do you think I should wear on my date tomorrow ? 你 觉得 我 明天 约会 穿 什么 好 呢 ? +I might say yes . 我 可能 会 说 是 . +She said that she had been happy . 她 說 她 以前 很快 樂 . +He has been to Europe many times . 他 去過 歐洲 很 多次 了 . +Tomorrow is my day off . 明天 是 我 的 休息日 . +I bought this book the other day . 我 前 幾天 買 了 這 本書 . +This is not good . 这 不好 . +She was aching all over . 她 全身 都 疼 . +His speech was short and to the point . 他 的 演讲 简短 且 切中要害 . +I often played tennis with her . 我 常常 和 她 打 網球 . +See above . 参见 上 文 . +I am sending you a birthday present by airmail . 我 寄 給 你 一個 航空 郵件 生日 禮物 . +I went there because I wanted to . 我 去 了 那裡 , 因為 我 想 去 . +You will soon get used to speaking in public . 你 很快 就 會 習慣 在 公開場 合 講話 了 . +Can you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +I am just another man . 我 只是 个 大众 脸 . +I can do it in a week . 我 可以 在 一週 內 做 . +There is food on the desk . 书桌上 有 食物 . +I need some help with my work . 我 在 我 的 工作 上 需要 一些 幫助 . +Can you hear me ? 你 听得见 吗 ? +If you need a pen , I will lend you one . 如果 你 需要 笔 的话 , 我 借 你 一支 . +That is exactly how I feel . 那 就是 我 的 感受 . +He did not accept their invitation . 他 沒有 接受 他們 的 邀請 . +Tom says he left a note . 汤姆 说 他 留 了 张 便条 . +Do we have milk in the fridge ? 我们 冰箱 里 有 牛奶 吗 ? +Do not pay any attention to what your father says . 别 在意 你 父亲 说 的话 . +Maybe you will succeed . 也許 你 會 成功 . +I do not want to fail my exams . 我 不想 挂科 . +Do you have it ? 你们 有 吗 ? +He was playing tennis all day . 他 整天 打 網球 . +We lost it . 我们 失去 了 它 . +I think you went too far . 我 觉得 您 过火 了 . +She has to take a remedial course in English . 她 需要 上 英语 补习班 . +She asked me where I was going . 她 問 了 我 要 去 哪裡 . +It is going to rain this evening . 今天 晚上 會 下雨 . +Get off your high horse , Tom . 别 那么 趾高气扬 , 汤姆 . +He is getting better bit by bit . 他 一點 一點 地 變好 . +I did not recognize anyone in the room . 房子 里面 的 人 我 一个 也 不 认得 . +We should have worked harder . 我們 應該 工作 得 更 努力 . +What is Tom given us ? 汤姆 给 了 我们 什么 ? +How am I going to explain this ? 我 要 怎麼 解釋 ? +It is difficult to understand this novel . 这部 小说 很 难 读懂 . +I relaxed at home last Sunday . 我 上個 星期天 在家 裡 放 輕 鬆 . +I thought my head would explode . 我 觉得 我 的 头 要炸 了 . +It was a lot of fun . 它 很 好玩 . +I have been here a long time . 我 在 這裡 很 長 一段 時間 了 . +I must repay the debt . 我 必须 偿还债务 . +Put the book where you found it . 把 書 放在 你 找到 的 地方 . +I did not see him . 我 没 见到 他 . +You should try to form the habit of using your dictionaries . 你们 该 养成 使用 字典 的 习惯 . +How long have you been abroad ? 你 在 國外 多久 了 ? +It looks like it will rain today , too . 今天 也 好像 會 下雨 . +Are you still living with your parents ? 你 依然 和 父母 住 一起 吗 ? +Please stop that right now . 请 即刻 停止 . +I want to move out of this cramped room as soon as I can . 我 想 尽快 从 这个 不透气 的 屋子里 出去 . +He is rarely in a good mood . 他 很少 心情 很 好 . +I am dripping with sweat . 我 正 流 着 汗 . +It is likely to rain again . 很 有 可能 还 会 下雨 . +My ex @-@ husband no longer lives in this city . 我 前男友 不再 住 在 這個 城市 了 . +He cured my illness . 我 的 病 给 他 治好 了 . +He finally became the president of IBM . 他 最终 成 了 IBM 的 总裁 . +He wants something cold to drink . 他 想 喝 些 冷 飲 . +I would like to sit in the non @-@ smoking section . 我 想 坐在 无烟 区 . +I was offended by his behavior . 他 的 行為 冒犯 了 我 . +He has no house in which to live . 他 没有 房子 住 . +I have got everything that you want . 我 已經 得到 了 一切 你 想要 的 東西 . +She gave me a meaningful look . 她 意味 深長 地 看 了 我 一眼 . +It is not anything like as cold as it was yesterday . 今天 沒有 像 昨天 那麼 冷 . +I think I have found the answer . 我 想 我 找到 答案 了 . +I have never seen him wearing jeans . 我 從來 沒有 看 過 他 穿 牛仔 褲 . +How often do you see him ? 您 多久 见 他 一次 ? +Who is dying ? 誰 要死 了 ? +This will be a good souvenir of my trip around the United States . 这 将 是 我 环绕 美国 旅行 中 一个 很好 的 纪念品 . +Swimming is easy for me . 游泳 對 我 來說 很 容易 . +I like this dog . 我 喜欢 这 只 狗 . +Between you and me , I think our boss is stupid . 我 觉得 我们 老板 很蠢 , 这 我 就 只 跟 你 说 . +Should Tom be worried ? Tom 應該 要 擔心 嗎 ? +I will remember you forever . 我 會 永遠 記住 你 的 . +The clown made a funny face . 小丑 做 了 个 鬼脸 . +I have a proposal . 我 有個 提案 . +He scraped the mud off his boots . 他 刮下 靴子 上 的 泥巴 . +I am a detective . 我 是 个 侦探 . +The house was in flames . 房子 被 火 吞噬 了 . +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +That was wrong . 那样 是 错 的 . +May I share this table with you ? 我 可以 跟 你 共用 這 張 桌子 嗎 ? +I met him just as he was coming out of school . 正 當 他 從 學校 回來 的 時候 , 我 遇見 了 他 . +Take care . 照顾 好 自己 . +How was the seminar ? 这 研究会 怎么样 ? +He drank a whole bottle of milk . 他 喝 了 一整瓶 的 牛奶 . +How is it going ? 你們 好 嗎 ? +Are you wearing a watch ? 你 有 戴 手表 吗 ? +Do you have to make dinner ? 你 必须 做 晚饭 吗 ? +Everyone knew Tom was the one who did it . 大家 都 知道 是 汤姆 做 的 +She could not attend that party because she was sick . 她 因 病 不能 出席会议 . +My eyes hurt . 我 的 眼睛 痛 . +There is a photo of Tom on Mary is desk . 在 瑪麗 的 桌上 有 張湯姆 的 照片 . +Kyoto has many places to see . 在 京都 , 有 很多 的 景点 值得一看 . +You will need a special tool to do it . 你 会 需要 一个 特殊 的 工具 来 做 这件 事 . +They made him captain of the team . 他們 要 他 作隊 長 . +He had decided on a new policy . 他 已經 決定 了 新 的 政策 . +We have a great team . 我们 有个 好极了 的 团队 . +These boxes are made of plastic . 這些 箱子 是 由 塑料 製 成 的 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +You do not need money . 你 不 需要 錢 . +He may be able to come tomorrow . 他 也 許 明天 能來 . +I will be there rain or shine . 風雨無阻 我 都 會 在 那裡 . +There is a cup on the table . 桌上 有個 杯子 . +Tom wanted revenge . 湯姆 想 報仇 . +She made elaborate preparations for the party . 她 精心 籌備 了 這個 派 對 . +I will be your first patient . 我 將 是 你 的 第一 個 病人 . +He must finish his homework today . 他 今天 必須 完成 他 的 功課 . +It was through his influence that she became interested in ecology . 她 开始 对 生态学 感兴趣 , 是 受到 他 的 影响 . +I do not recommend eating in that restaurant . The food is awful . 我 不 推荐 在 那家 餐馆 吃饭 . 食物 糟糕 透 了 . +I study for 3 hours every day . 我 每天 讀書 三個 小 時 . +Who threw a stone at my dog ? 谁 朝 我 的 狗 扔 的 石子 ? +Love makes the world go round . 爱 让 世界 转动 . +It was just a matter of time . 这 只是 时间 上 的 问题 . +Do you know when they will arrive ? 你 知道 他们 什么 时候 到 吗 ? +Someone told me about that . 有人 跟 我 說 這件 事 . +Tom encouraged his son to study French . 汤姆 鼓励 他 儿子 学法语 . +What did you go to Kyoto for ? 你 為 什麼 去 京都 ? +Sometimes things that happen do not make sense . 有时候 , 发生 的 事情 并 不是 合情合理 的 . +Please let me go . 請 讓 我 走 . +Who was here ? 谁 来 了 这里 ? +He has gone abroad by himself . 他 一个 人 去 了 国外 . +By the year 2020 , the population of our city will have doubled . 在 2020 年 以前 , 我們 的 城市 的 人口 將 增加一倍 . +My room is upstairs on the left . 我 的 房間 在 樓上 的 左邊 . +There was little water in the well . 這 口 井裡 的 水 很少 . +It is been ten years since I came to this town . 我 來 這個 鎮有 十年 了 . +The goods arrived undamaged . 货物 毫无 损坏 地 到达 了 . +Generally , Japanese people are shy . 一般而言 , 日本 人 很 害羞 . +She employed a private detective to keep a watch on her husband . 她 僱 了 一個 私人 偵探 看守 她 的 丈夫 . +That is a hard question to answer . 那 是 一個 很 難 回答 的 問題 . +I think you have mistaken me for someone else . 我 想 你 將 我 認成 別人 了 . +He is not my brother . He is my cousin . 他 不是 我 的 兄弟 . 他 是 我 的 表弟 . +Would you like anything to eat ? 您 想 吃 点 什么 吗 ? +That is the chair that I really like . 那 是 我 真的 很 喜歡 的 椅子 . +I am good at soccer . 我 擅長 足球 . +It only costs $ 10.00 ! 只要 十元 ! +I 'd rather not go out this evening . 我 今天 晚上 寧可 不要 出門 . +I ate french fries . 我 吃 了 炸薯 條 . +Tom has lived here since 2003 . 汤姆 自从 2003 年 就 住 在 这里 . +How many days are there in a week ? 一周 有 几天 ? +We expect a lot from him . 我們 對 他 期望 很多 . +He is glad to hear the news . 他 很 高興 聽到 這個 消息 . +Buy some milk on your way home . 回来 的 路上 买点 牛奶 . +I am crazy about you . 我 為 你 瘋狂 . +Would you care for another cup of coffee ? 再 来 一杯 咖啡 怎么样 ? +There are many hotels downtown . 市中心 有 很多 旅馆 . +I am glad Mary is not my wife . 我 很 高兴 玛丽 不是 我 的 妻子 . +Stay out of my kitchen . 别 进 我 的 厨房 . +It is stopped snowing . 雪停了 . +I was the last one to turn in my test . 我 是 最后 交 的 考试卷 . +Are you a practicing physician ? 你 是 执业 医师 吗 ? +She wept the entire night . 她 一 整晚 都 在 哭 . +I can hardly see without my glasses . 沒有 了 我 的 眼鏡 我 幾乎 看不到 . +He is the boy we spoke about the other day . 他 是 前 幾天 我們 談到 的 那個 男孩 . +I saw a girl with long hair . 我 看见 一个 长 头发 的 女生 . +Tom did not need to finish that work by today . 汤姆 不必 今天 就 完成 那 工作 . +Your father is pretty tall . 你 爸爸 很 高 . +You are partially correct . 你 部分 正确 . +Why exactly did you need to do that ? 你 到底 为什么 要 这么 做 ? +Some of them seem to be too difficult . 其中 一些 似乎 太 难 了 . +Do not you want to know why ? 你 不想 知道 为什么 吗 ? +He is a friend of my brother is . 他 是 我 弟弟 的 一個 朋友 . +It is not a watch . 這 不是 手 錶 . +Take as much as you like . 你 爱 拿 多少 就 拿 多少 . +She warmed herself by the fire . 她 在 火 旁邊 讓 自己 暖和 起來 . +Few students could understand what he said . 幾乎 沒有 學生 能 懂 他 所 說 的 話 . +In case of fire , ring the bell . 萬 一 發 生火 災 , 按 鈴 . +We should call the police . 我們 應 該 叫 警察 來 . +Tom is my older brother . Tom 是 我 哥哥 . +I really want to see you . 好 想 見 到 你 +Earthquakes frequently hit Japan . 地震 頻繁 地 襲擊 日本 . +He works in a factory . 他 在 一家 工廠 工作 . +I like grape jelly best . 葡萄 味 的 果凍 是 我 最 喜歡 的 . +How long will this rope hold ? 這條 繩子 能撐 多久 ? +My sister made me a beautiful doll . 我 妹妹 做 了 一個 漂亮 的 娃娃 給 我 . +A ball is floating down the river . 一個 球 正 順流而下 . +What are the origins of the Olympics ? 奥林匹克 的 起源 是 什么 ? +I am sick and tired of hamburgers . 我 吃 膩 了 漢堡 . +I studied English for four years with a native speaker . 我 跟 英语 母语 者 学 了 四年 英语 . +You gain nothing by speaking ill of others . 通过 诋毁 别人 , 你 得不到 什么 . +I would like to introduce you to my parents . 我 想 介紹 你 給 我 父母 認識 . +Tom did not know Mary had a boyfriend . 湯姆 不 知道 瑪麗 有 男朋友 . +Children need loving . 孩子 们 需要 关爱 . +The army forced him to resign . 军队 强迫 他 辞职 . +She must still be in her twenties . 她 一定 還 只是 二十 幾歲 . +He is still very much alive . 他 依旧 充满活力 . +The cat is under the table . 猫 在 桌子 底下 . +Tom begged me to let him go home early . 汤姆 求 我 让 他 早点 回家 . +I go to bed after I study . 我 讀 完 書 之 後 就 去 睡 覺 . +We are finding it difficult deciding on which one to buy . 我们 觉得 很 难 决定 买 哪 一个 . +I bought a camera two days ago . 兩天 前 我 買 了 一台 照相 機 . +Kissing a person who smokes is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +Tom wondered why there was a dog in his house . 汤姆 奇怪 为什么 他 的 房子 里 有 只 狗 . +I am still angry about that . 我 还是 为 那 生气 . +I just was not paying attention . 我 只是 没 注意 . +Sorry , we do not accept credit cards . 對 不起 , 我們 不 接受 信用卡 . +I hope it will be fine tomorrow . 我 希望 明天 將 是 美好 的 . +Japan imports various raw materials from abroad . 日本 從 國外 進口 各種 原料 . +Tom likes swimming . 湯姆 喜歡 游泳 . +I am going to major in French . 我 將 主修 法文 . +He looked in all directions , but did not see anyone . 他 看 了 看 四周 , 但 沒 看見 任何人 . +Do whatever you think is right . 做 你 認為 正確 的 事 . +What we had to do was really quite simple . 我們 要 做 的 很 簡單 . +He is always worrying about his daughter . 他 一直 很 担心 他 的 女儿 . +I cannot help thinking that my son is still alive . 我 不禁 想 我 的 儿子 一直 都 在 生 . +Tom is French is already rather good . 汤姆 的 发育 已经 很 好 了 . +He is much older than he looks . 他 的 實際 年齡 比 他 看 起來 老 得 多 . +I am not a doctor . 我 不是 醫生 . +He seems to be rich . 他 看 起來 很 有 錢 . +Will you listen to me for a few minutes ? 您 愿意 听 我 说 几分钟 话 吗 ? +They kissed . 他们 亲吻 了 . +A caged cricket eats just as much as a free cricket . 籠子 裡 的 蟋蟀 吃 得 跟 野生 的 蟋蟀 一樣 多 . +I bought two pairs of trousers . 我 买 了 两条 裤子 . +They were all hoarse from shouting . 他們 全都 叫 到 沙 啞 了 . +Who did you talk with ? 你 和 谁 说话 呢 ? +Tom seems to be easygoing . 湯姆 看來 隨 和 . +Coffee will be served after the meal . 咖啡 將 會 在 餐 後 供應 . +I do not like that guy . 我 不 喜欢 那家伙 . +I still love her . 我 仍然 爱 着 她 . +Tom does not have a lot of freedom . 汤姆 没有 很多 自由 . +Tom got ripped off . 汤姆 被 敲竹杠 了 . +Tom puts gas in his car twice a week . 湯姆 每週 幫 車子 加 兩次 油 . +You are cuter than Mary . 你 比 玛丽 可爱 . +He lives alone . 他 一个 人 生活 . +My mother is writing a letter now . 我 母親 現在 正在 寫 一封信 . +He is interested in many things . 他 對 很多 事情 都 有 興趣 . +Our car broke down last night . 我們 的 昨晚 車 拋錨 了 . +Learning French is not difficult . 学法语 不难 . +You can call me anytime you like . 你 喜欢 什么 时候 打给 我 就 什么 时候 打 . +Would you please look over my report ? 你 可以 仔細 檢查 一下 我 的 報告 嗎 ? +A burglar broke into my house while I was away on a trip . 一个 入室 盗窃者 趁 我 去 旅游 的 时候 闯入 了 我家 . +Tom wanted something else . 湯姆 想要 別的 東西 . +This fork is dirty . 這 把 叉子 是 髒 的 . +They insist that he should go . 他们 坚持 让 他 走 . +She spoke scarcely a word of English . 她 几乎 不 说 英语 . +Could I borrow a pencil ? 我 能 借支 铅笔 吗 ? +I suppose you like him . 我 猜想 您 喜欢 他 . +It is much more convenient . 这 方便 得 多 了 . +I am not as tall as you . 我 沒 有 你 高 . +He often eats fish for dinner . 他 晚 飯 經常 吃 魚 . +I ripped my pants . 我 扯掉 了 自己 的 裤子 . +Much of London was destroyed in the seventeenth century . 倫敦 許多 部份 在 十七 世紀時 被 摧毀 . +Why do not we stop arguing over these piddling matters and get to the issues at hand ? 为什么 我们 不 停止 为 细枝末节 的 争吵 而 进入 正题 呢 ? +Let is go as soon as it stops raining . 只要 雨 一停 我们 就 走 . +He often sits by me and listens to music . 他 经常 坐在 我 旁边 听 音乐 . +He is still sitting on the bench . 他 還 坐在 長椅 上 . +I baked some apple pies . 我 烤 了 蘋果 派 . +He is often mistaken for a student . 他 常常 被誤 認為 是 個 學生 . +I have breakfast at seven . 我 在 七點 吃 早 飯 . +Pick up the pencil from the floor . 從 地上 撿 起 這 支 鉛 筆 . +I cannot find fault with him . 我 挑不出 他 的 毛病 . +When did Tom ask you to do that ? 湯姆 是 甚麼 時候 讓 你 去 做 的 ? +What is aspirin made of ? 阿司匹林 是 用 什么 做 的 ? +Will I be the only one going to the party ? 会 不会 只有 我 一个 人 去 聚会 ? +He is taller than his brother . 他 比 他 的 弟弟 高 . +I will do my best . 我 會 盡力 而為 . +How dare you speak like that ? 您 怎么 敢 这样 说话 ? +We know it was you that killed Tom . 我們 知道 昰 你 殺 了 湯 姆 . +I thank you very much for your kindness . 我 十分 感谢 你 的 好意 . +Are you still at home ? 你們 還 在家 裡 嗎 ? +I was just about to come looking for you . 我 剛才 正要 找 你 . +Please come back as soon as possible . 请 尽快 回来 . +We must respect other people is privacy . 我們 必須 尊重 別人 的 私 隱 . +Tom was waiting inside his cabin . 汤姆 在 他 的 小 屋里 等 着 . +These flowers have a unique smell . 這些 花 有 一種 獨特 的 氣味 . +He is able to play the guitar . 他 會 彈 吉他 . +I 'd like a room facing the garden . 我 想要 一間 面 對 花園 的 房間 . +He is a screwball . 他 是 一個 怪人 . +Did Tom tell you it was an emergency ? 你 告诉 汤姆 那 是 紧急情况 了 吗 ? +What is wrong , honey ? 出 什么 事 了 , 宝贝 ? +This is my bicycle . 这 是 我 的 自行车 . +It sounds as if he were to blame for the disaster . 听 起来 好像 他 是 这场 灾难 的 罪魁祸首 . +You 'd better wear a sweater under your jacket . 您 最好 在 外衣 里 穿 一件 套衫 . +Fancy meeting you here ! 想不到 會 在 這裡 遇見 你 ! +Quite a few Americans like sushi . 不少 的 美國 人 喜歡 壽司 . +I am good at singing . 我 唱歌 很 好听 . +I am not picky . I will eat anything . 我 不 挑剔 , 我 什么 都 吃 . +I saw Liz this morning . 今天 早上 我 看到 了利茲 . +Are there any direct flights between Boston and Sydney ? 请问 波士顿 和 悉尼 之间 有 直飞 航班 吗 ? +It is essentially a question of time . 它 本質 上 是 一個 時間 的 問題 . +She took care of the poor little bird . 她 照顾 可怜 的 小鸟 . +Whose idea was it to call the police ? 想 报警 的 是 谁 ? +She had the nerve to speak out . 她 有 膽量 說 出來 . +What vegetables do you like to eat ? 你 喜歡 吃 什麼 菜 ? +He started to speak English . 他 开始 说 英语 了 . +It was very cold yesterday morning . 昨天早上 很 冷 . +Animals are afraid of fire . 动物 怕 火 . +She kept working . 她 继续 工作 . +He played baseball after school . 他 放学 后 打 棒球 . +I feel fine . 我 感觉 很 好 . +We succeeded . 我们 成功 了 . +I saw a helicopter flying overhead . 我 看见 一架 直升飞机 在 头顶 飞 . +Please wrap it like a Christmas present . 請 把 它 包裝 得 像 一個 聖誕 禮物 . +She went down to the fifth floor . 她 下五 樓 去 了 . +Tom works in Boston . 湯姆 在 波士 頓 工作 . +It is just around the corner . 就 在 转角处 . +Will you help me move this desk ? 你 能 幫 我 搬 這 張 桌子 嗎 ? +She studies mathematics . 她 学习 数学 +I think about it often . 我 经常 想着 它 . +He was home alone at the time . 他 当时 一个 人 在家 . +I watched a great movie yesterday . 我 昨天 看 了 部 很棒 的 電影 . +In the U.S. , most people can vote when they reach eighteen years of age . 在 美国 , 大多数 人能 在 十八岁 后 投票选举 . +He married a pretty girl . 他 娶 了 一個 漂亮 的 女孩 . +He participated in the debate . 他 参加 辩论 +I got a bee sting . 我 被 蜜蜂 蛰了 一下 . +Give it back . 还 回去 +They obeyed orders . 他们 服从 了 命令 . +He took her out for a drive . 他 帶 她 出去 兜風 了 . +There is a bus every 20 minutes . 每 20 分钟 有 一 班车 . +She returned the book to the library . 她 把 書 還 給 了 圖書館 . +She cannot do without her car . 沒有 車 她 做不了 事 . +Pass me the salt , would you ? 把 鹽 遞 給 我 好 嗎 ? +I have an umbrella in my car . 我 的 车里 有 伞 . +He is not as intelligent as his brother . 他 沒 有 他 弟弟 聰明 . +What time did you get to bed last night ? 你 昨天 甚麼 時候 睡覺 ? +Humans only live about 70 years . 一个 人 只能 活 七十岁 左右 . +When will we go ? 我們 甚麼 時候 出發 ? +Your assistance is indispensable for us . 您 的 帮助 对 我们 来说 是 必不可少 的 . +Let is begin on page 30 . 讓 我們 從 第 30 頁 開始 . +Tom is happy . 湯姆高興 . +They are leaving in three days , that is to say June 10th . 他們 將 在 三天 後 離開 , 那 也 就是 說 在 六月 十日 . +Tom came to see if Mary needed any help . 汤姆 过来 看看 玛丽 有没有 什么 需要 帮忙 的 . +I think that our living together has influenced your habits . 我 觉得 我 和 你 一起 住 影响 了 你 生活 的 方式 . +We will go on a picnic tomorrow . 我們 明天 要 去 野餐 . +Mail this letter . 把 这 封信 寄 了 . +You can dig dirt from the ground . 你 可以 在 地上 挖土 . +Please tell me . 請 告訴 我 . +I know none of them . 他们 中 的 任何 一位 我 都 不 认识 . +We are still a little confused . 我們 還 是 有 點 疑惑 . +She read an amusing story to the children . 她 给 孩子 们 读 了 个 有趣 的 故事 . +It rained yesterday . 昨天 下雨 了 . +She is asking how that is possible . 她 问 这 怎么 可能 . +Please pass me the salt . 請 把 鹽 遞 給 我 . +Tom told the cops everything . 湯姆 全都 告訴 了 條子 . +Do you have any plans for tonight ? 今晚 有 什么 计划 吗 ? +You are not too late . 你 還 不 太晚 . +Be still . 静静的 , 别动 . +His hobby is collecting old stamps . 他 的 兴趣爱好 是 收集 旧 邮票 . +He said , " I want to be a scientist . " 他 說 : “ 我 想成 為 科學家 . ” +The police will look into the case . 警察 会 调查 这 起 案件 . +Whose is this ? 这 是 谁 的 ? +I should not have logged off . 我 不该 退出 的 . +He has a son and two daughters . 他 有 一個 兒子 和 兩個 女兒 . +We did not see anybody . 我们 谁 也 没 看见 . +I envied his new house . 我 羨慕 他 的 新房子 . +Beer is taxed according to its malt content , so low @-@ malt beer is cheaper . 因为 啤酒 会 根据 麦芽 含量 去 征税 , 所以 发泡 酒会 比较 便宜 . +What are your weekend plans ? 你 週末 有 什麼 計劃 ? +I will miss your cooking . 我 會 想念 你 的 廚藝 . +Look there . 看 那里 . +I love that story . 我 喜欢 那个 故事 . +What is the time in Boston now ? 波士顿 现在 几点 ? +Dentists take x @-@ rays to examine your teeth . 牙医 用 X光 检查 你 的 牙齿 . +It is obvious that he lied . 顯然 地 他 撒 了 謊 . +He dropped in at the bookstore . 他 順道 去 了 這家 書店 . +I felt an impulse to cry out loud . 我 突然 好 想 大叫 . +My aunt gave me an album . 我 姑姑 給 了 我 一本 集郵冊 . +I was very tired last night . 我 昨晚 很 累 了 . +Turn it off . 把 它 关掉 . +He is from France . 他 是从 法国 来 的 . +She knows me . 她 认识 我 . +I promise I will do it . 我 保证 我会 做 的 . +I do not like studying . 我 不 喜欢 学习 . +I went there by bus and train . 我 搭 公車 和 火車 去 那裡 . +They always fight over little things . 他们 总是 为了 小事 吵架 . +Everyone wanted a piece of the cake . 每个 人 都 想 分 一点 蛋糕 . +You have such beautiful , hazel eyes . 你 有 如此 美麗 的 淡褐色 眼睛 . +Can we roller @-@ skate in this park ? 我們 可以 在 這個 公園 裡 玩 四輪 溜冰 嗎 ? +It is human nature . 它 是 人 的 天性 . +He goes to London once a month . 他 一個 月 去 一次 倫敦 . +He is already too far away to hear us . 他 已經 離 得 太 遠 聽 不到 我們 了 . +Your brother got married , did not he ? 你 哥哥 結婚 了 , 不是 嗎 ? +I had a really bad nightmare last night . 昨晚 我 做 了 一个 可怕 的 噩梦 . +She went shopping with her mother . 她 和 她 母親 去 購物 . +What is your phone number ? 你 电话号码 是 多少 ? +This place gives me a really bad vibe . 这 地方 给 我 一个 很差 的 印象 . +Do not step in the mud . 别 走进 泥地 . +To master English is difficult . 精通 英語 是 困難 的 . +We had a lot to drink . 我们 喝 了 很多 . +This is really difficult to deal with . 這件 事 真難 處理 . +I am sorry to put you through that . 很 抱歉 让 你 遭 这 罪 . +She put the magazine on the table . 她 把 雜 誌 放在 桌上 . +When will the world come to an end ? 世界末日 是 什么 时候 ? +That novel is not for children . 那 本小 說 不 適合 兒童 . +Write on every other line . 每隔 一行 寫 . +The teacher let the boy go home . 老師 讓 這個 男孩 回家 . +I learned to drive a car and got a driver is license when I was eighteen . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +Let me know where you are staying . 讓 我 知道 你 住 在 哪裡 . +I do not like these remarks . 我 不 喜歡 這 番 話 . +I can not go with you because I am very busy . 我 不能 和 你们 一起 去 , 因为 我 很忙 . +I found a beautiful shell on the shore . 我 在 海滩 上 发现 了 一个 漂亮 的 贝壳 . +Please turn off the light before you go to bed . 上床睡觉 之前 请 关灯 . +Tom is lonely and unhappy . 汤姆 又 孤单 又 不幸 . +Have a look at the world map . 来 看看 世界地图 . +Tom and Mary went to the best restaurant in town . 汤姆 和玛丽 去 了 镇上 最好 的 饭店 . +I do not want something like this to happen . 我 不想 这种 事 发生 . +This is the lady who wants to see you . 這位 就是 誰 想 見 你 的 夫人 . +Tom is a student . 湯姆 是 個 學生 . +He was born in Nagasaki . 他 出生 於長崎 . +I am interested in sports . 我 对 运动 感兴趣 . +Do you know which road leads to my house ? 你 知道 哪 一條 路 到 我家 嗎 ? +You 'd better keep your money for a rainy day . 你 最好 未雨绸缪 . +Please be careful not to get hurt . 请 小心 不要 受伤 了 . +You have got something in your teeth . 牙齿 卡 了 点 东西 . +Help yourself to anything you would like to eat . 想 吃 什么 就 吃 什么 吧 . +My mother is a lawyer . 我 妈妈 是 律师 . +Bee stings can be very painful . 蜜蜂 螫人 可以 是 非常 痛苦 的 . +What is in front of you ? 在 你 面前 是 什麼 東西 ? +It rained hard last night . 昨晚 雨 下得 很大 . +He is not an American . 他 不是 美国 人 . +She kept me waiting for 30 minutes . 她 让 我 等 了 半小时 . +I am familiar with this neighborhood . 我 對 這 附近 很 熟悉 . +I saw tears in her eyes . 我 在 她 的 眼睛 裡 看到 淚水 . +Not all aliens are bad . 不是 所有 外星人 都 坏 . +I entered the room and shook hands with him . 我 走進 了 房間 與 他 握手 . +I do not doubt it . 我 没有 疑问 . +Please write with a pen . 请 用 钢笔 写 . +There is no admission fee for children under five . 五岁 以下 的 小孩 票价 全面 . +Did you hear your name called ? 你 聽見 有人 叫 你 的 名字 嗎 ? +Tom finally did something right . 汤姆 最终 做 了 点 正确 的 事 . +I am as old as he is . 我 和 他 同年 . +She has many friends in the United States . 她 有 很多 美国 朋友 . +He lived abroad for much of his life . 他 大半生 都 住 在 国外 . +Where did you go last Sunday ? 上周日 你 去 哪儿 了 ? +None of them could understand what she was implying . 他們 沒 有人 了解 她 暗示 什麼 . +Do you like Indian food ? 你 喜歡 印度 菜 嗎 ? +They wash their hands . 他們 洗手 . +I need your advice . 我 需要 你 的 意见 . +Tom is a hick . 汤姆 是 个 乡巴佬 . +This must be my book . 这 肯定 是 我 的 书 . +Everything matters . 任何 事情 都 是 重要 . +Which do you like better , this or that ? 你 更 喜欢 哪个 , 这个 还是 那个 ? +I thought Tom would win . 我 认为 汤姆 会 赢 . +You 'd better go to bed at once . 你 最好 立马 去 睡觉 . +I will not attend the party . 我 将 不 出席 派对 . +Tom tried to stab me . 汤姆 企图 刺 我 . +Where are the showers ? 浴室 在 哪里 ? +Those apples are big . 那些 蘋果 很大 . +Why were you late this morning ? 今天 早上 你 為 什麼 遲到 了 呢 ? +He showed me the manuscript of his new play . 他 给 我 看 了 他 最新 剧 的 底稿 . +His horse jumped over the fence . 他 的 馬 跳 過 了 柵欄 . +Tom took a step backward . 汤姆 后退 一步 . +The engineer told us how to use the machine . 工程师 告诉 我们 如何 使用 机器 . +I am sorry , I forgot to do my homework . 对不起 , 我 忘 了 作业 这 回事 了 . +Please close the door . 請關 上門 . +My father is suffering from a cold . 我 父親 感冒 了 . +He amazed everyone by passing his driving test . 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 覺得 驚訝 . +She was very proud of her father . 她 為 她 的 父親 感到 非常 驕傲 . +I have nothing to do with the crime . 这个 犯罪 和 我 一点 关系 都 没有 . +Ask your dad to help you . 請 你 父親 幫 你 . +I want to go to school and study hard . 我 想 上学 并 努力学习 . +My daughter is in her late teens . 我 的 女兒 快 二十 歲 了 . +What are you talking about ? 你 说 的 是 什么 ? +What if Tom says no ? 汤姆 说 不行 会 怎样 呢 ? +We will need a head hunting agency to find the right man for this executive position . 我們 需要 人力 仲介公司 幫 我們 找到 合適 的 人 來 擔任 這個 管理 職位 . +It is fairly warm today . 今天 相當 暖和 . +He does not like being punished . 他 不 喜歡 被 懲罰 . +Spring will come soon . 春天 快 來 了 . +I do not eat bread . 我 不吃 面包 . +Tom burst into tears . 汤姆 泪流满面 . +You were late , were not you ? 你 遲到 了 , 不是 嗎 ? +We have some decisions to make . 我们 要 做 些 决定 . +Can you do some shopping for me ? 你 能 幫 我 買 些 東西 嗎 ? +Give him an inch and he will take a yard . 得寸进尺 . +My father became old . 我 爸爸 變 老 了 . +I have had a good sleep . 我 睡 得 很 好 . +How many pens do you have ? 你 有 多少 支 铅笔 ? +The temperature has suddenly dropped . 气温 突然 下降 了 . +We have lots of catching up to do . 我们 要 紧追 . +Tom is divorced and has a daughter . Tom 離婚 了 , 他 有個 女兒 . +Nobody wants you to do that . 没 人 想要 你 那样 做 . +Tom wants a computer small enough to easily carry . 汤姆 想要 个 小 得 易于 携带 的 电脑 . +He amassed a large fortune before he died . 他 死 前 累積 了 龐大 的 財富 . +His brother goes to school by bus . 他 哥哥 搭 公車 去 學校 . +Life is like a box of chocolates . 生活 就 像 一盒 巧克力 . +Which is your book ? 哪 本書 是 您 的 ? +It just gets worse . 它 变 糟 了 . +Hang up your coat , please . 請 把 你 的 外套 掛 起來 . +I often go to the movies . 我 常常 去 看 電影 . +We are going to be here all day . 我們 要 在 這裡 待 一整天 . +Do you like swimming ? 你 喜欢 游泳 吗 ? +I was not scolding you . 我 不是 在 罵 你 . +I am not curious . 我 不 好奇 . +Tom was advised by Mary not to go there by himself . 玛丽 建议 汤姆 不要 独自 去 . +Tom did not know what Mary thought about it . 汤姆 不 知道 玛丽 对 它 怎么 想 . +I am tired of writing . 我 写 腻 了 . +I have just spoken to your French teacher and he says you are doing well in his class . 我 刚 跟 你 的 法语 老师 谈 过 话 , 他 说 你 在 课堂 上 表现 得 很 好 . +Be at the station at 11 o 'clock sharp . 十一点 准时 到 车站 . +Call the police ! 报警 ! +The twins are indistinguishable from each other . 这 双胞胎 没法 区分 . +She succeeded in getting him to tell the truth . 她 成功 地 从 他 口中 得知 了 真相 . +Somebody is eating . 有人 在 吃 东西 . +Is it difficult eating with chopsticks ? 用 筷子 吃饭 难 吗 ? +Tom hid his money under his mattress . 湯姆 把 錢藏 在 床墊 底下 . +I am busy all the time . 我 总是 有事 . +We could do something big . 我们 能 做 点 大事 . +I was very , very lucky . 我 非常 非常 幸运 . +He preferred working to doing nothing . 他 更 愿意 工作 而 不是 无所事事 . +Let is take the children to the zoo . 讓 我們 帶 孩子 們 去 動物園 . +Tom and Mary were tired of waiting . 湯姆 和 瑪麗 等 煩 了 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +I almost always play baseball after school . 我 幾乎 總是 在 放學 後 打 棒球 . +Do you have Tom is address ? 你 有 汤姆 的 住址 吗 ? +Even chocolate contains vitamins . 連 巧克力 中 也 含有 維 他 命 . +Coal and natural gas are natural fuels . 煤 和 天然 氣 是 天然 燃料 . +These apples look very fresh . 这些 苹果 看起来 很 新鲜 . +Give me your phone number . 给 我 你 的 电话号码 . +Nobody tried to help Tom . 没 人 试图 帮 汤姆 . +The clock stopped . 鐘 停 了 . +I hate studying . 我 讨厌 学习 . +She does not like soccer . 她 不 喜欢 足球 . +We will come back tomorrow . 我们 明天 回来 . +This is not okay . 這個 不行 . +I did not get everything I wanted . 我 沒有 得到 我 所有 想要 的 . +I would not be too surprised if this song became a hit . 如果 这歌 成名 , 我 不会 太 惊讶 . +Please send this by registered mail . 請用 掛 號 寄 這個 . +That fish lives in fresh water . 那 魚 棲息 在 淡 水域 中 . +Do not panic ! 不要 恐慌 ! +Tom is not a fool . 汤姆 不是 傻瓜 . +His clothes always smell bad . 他 的 衣服 總是 很 臭 . +I hate mosquitoes . 我 恨 蚊子 . +Tom fell off his bike . 汤姆 从 他 的 自行车 上掉 了 下来 . +I saw a cottage in the distance . 我 看见 远处 有 一间 小屋 . +This is true . 這 是 真的 . +I met him by chance on the train this morning . 今天 早上 我 在 火车 上 偶遇 他 . +We will continue the meeting after some light refreshments . 茶点 过后 我们 接着 开会 . +Put the box down . 把 箱子 放下 . +How much is this pen ? 这 支 钢笔 要 多少 钱 ? +They arrived late because of the storm . 因为 风暴 , 他们 晚 到 了 . +Is one thousand yen enough ? 1000 日元 够不够 ? +Please show me your stamp album . 請 讓 我 看看 你 的 集郵冊 . +He pressured me . 他 向 我 施压 . +The ceremony began with his speech . 仪式 以 他 的 讲话 开始 . +I guess it depends on the weather . 我 想 這 取決 於 天氣 . +I do not remember much about that woman . 我 对 那位 女士 印象 不 深 . +I did not ask Tom for help . 我 没有 找 Tom 帮忙 . +I do not want to do anything risky . 我 不想 做 任何 冒險 的 事 . +He walks slowly . 他 慢慢 地 走 . +What would you like to do in the future ? 以后 打算 干什么 ? +My father died of a subarachnoid hemorrhage when I was fourteen . 我 十四岁 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +May I see your driver is license , sir ? 先生 , 我 可以 看看 你 的 駕駛 執照 嗎 ? +Tom searched inside the closet . 汤姆 搜查 了 衣柜 里面 . +I want something cold to drink . 我 想 喝 冷 飲 . +He cheated on the biology exam . 他 在 生物 學 考試 時 作弊 . +Could you please talk a bit louder ? I can not hear very well . 你 能 大声 点 讲 吗 ? 我 听 不 太 清 . +A brilliant future lay before him . 大好 的 前途 摆在 他 面前 . +She wore a red dress . 她 穿 了 一条 红色 的 裙子 . +Count me in . 算 我 一个 . +Can you save this seat for me ? 你 可以 幫 我 保留 這個 座位 嗎 ? +I thought the questions were easy . 我 認為 這些 問題 很 容易 . +It cost him 50 dollars to rent a car in Hawaii . 他 花 了 50 美元 在 夏威夷 租 了 一辆 汽车 . +I was surprised . 我 吃惊 了 . +Do not speak unless you have something worth saying . 除非 你 有 什么 值得 说 的话 要说 , 否则 就别 吭声 . +You ought to have come here earlier . 你 應 該 早點 來 的 . +I agree with your opinion . 我 同意 您 的 意見 . +What do tigers eat ? 老虎 吃 什么 东西 ? +Did Tom ever threaten you ? 湯姆 威脅 過 你 嗎 ? +I do not believe it at all . 我 根本 不信 . +That river is long . 那 條 河流 很 長 . +Clean up the room . 收拾 房间 . +I want to be a baseball player . 我 想 成為 一名 棒球 運動員 . +I do not quite agree with you . 我 不 太 同意 你 的 看法 . +May I ask a question ? 我 能 问个问题 吗 ? +Tom has made up his mind to go to Boston to study . 湯姆 已經 下定 決心 要 去 波士 頓 唸 書 . +It is really awesome . 太棒了 . +He told us an interesting story . 他 给 我们 讲 了 一个 有趣 的 故事 . +We do not have any more bread . 我們 沒 麵 包 了 . +What will you use it for ? 你 會 用 它 來 做 什麼 ? +Take off your hat when you enter a classroom . 进 教室 的 时候 请 把 帽子 摘 了 . +I am familiar with the author is name . 我 對 這位 作者 的 名字 很 熟悉 . +What kind of woman do you think I am ? 你 认为 我 是 哪种 女人 ? +You had better read a lot of books while you are young . 你 最好 在 年轻 的 时候 多 读点 书 . +Learning a foreign language is difficult . 學習 外語 是 困難 的 . +When will you come back to school ? 你何 時會 回學校 ? +You look sleepy . 你 看起来 很困 了 . +She banged the table with her fist . 她 用 拳頭 拍 了 桌子 . +I was born in 1988 . 我 生于 1988 年 . +She took full advantage of her stay in London to improve her English . 她 充分利用 她 住 在 伦敦 的 优势 , 提高 英语 . +Here is something very important . 這裡 有些 非常 重要 的 東西 . +You have plenty of time . 你 有 足够 的 时间 . +You have both been very impressive today . I am proud of you . 今天 你们 俩 很 让 人 印象 深刻 . 我 为 你们 感到 骄傲 . +This program is a rerun . 这个 节目 是 重播 . +Tom said that he 'd leave the door open . 汤姆 说 他 打算 让 门 开 着 . +Paper burns quickly . 紙 燒 得 快 . +Are you lost ? 您 迷路 了 吗 ? +You should practice playing the violin every day . 你 應該 每天 練習 拉 小提琴 . +My plan is to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +Hard work and dedication will bring you success . 努力 工作 和 敬业精神 使 你 成功 . +Why did you stay at home yesterday ? 你 昨天 為 甚麼 在家 ? +Can you put me up tonight ? 今晚 可以 住 你家 嗎 ? +Tom begged his father to buy him a new bicycle . 湯姆 求 他 父親 給 他 買 新 自行 車 . +You reap what you sow . 種 什麼 因 得 什麼 果 . +This bus will take you to the museum . 這輛 公車 會 載 你 去 博物 館 . +Nobody understands me . 没有 人 理解 我 . +Anyone can do that . 任何人 都 可以 做到 . +This dictionary is mine . 这本 字典 是 我 的 . +The house I am living in is not very large . 我 住 的 房子 不是 太大 . +The problem is been solved . 問題 已 解決 . +My father likes strong coffee . 我 父親 喜歡 濃 咖啡 . +Did she come here to relax ? 她 來 這裡 放 鬆 的 嗎 ? +Are you feeling better , Tom ? 你 感覺 好 點 了 嗎 , 湯姆 ? +They waited for their teacher . 他們 等待 著 他們 的 老師 . +Earth is a planet . 地球 是 一個 行星 . +My mother speaks French better than my father speaks English , so they usually speak to each other in French . 我 母亲 的 法语 比 我 父亲 的 英语 要 好 , 所以 他们 通常 用 法语 交流 . +Tom overslept . 汤姆 睡 过头 了 . +I found a coin on the sidewalk . 我 在 人行道 上 發現 了 一枚 硬幣 . +" Why are not you going ? " " Because I do not want to . " “ 为什么 你 不 来 ? ” “ 因为 我 不想 . ” +We will not go out if it does not stop raining . 雨 不停 , 我们 不会 出去 . +When you are hungry , anything tastes good . 當 你 餓 的 時候 , 任何 東西 都 好吃 . +She seems to be unhappy . 她 看起来 不 幸福 . +I bathe once a day . 我 每天 洗 一次 澡 . +It is been a long war . 这 是 场 长久 的 战争 . +Tom lost his credibility . 湯姆 失去 了 信譽 . +The old man is very kind . 這位 老人家 非常 仁慈 . +Being a good conversationalist does not just mean being a good speaker of English . 作為 一個 良好 的 交談者 , 並 不 只 意味 著作 一個 英語 說 得 好 的 說 話者 . +Can I borrow some money from you ? 我 可以 向 你 借 一些 錢 ? +Those tulips are beautiful . 那些 郁金香 很 美丽 . +You do not have to take an examination . 你 不 需要 考试 . +Tom is going to help us . 汤姆 要 帮助 我们 . +What is the spelling of your family name ? 你 的 姓 怎麼 拼 ? +I need a knife . 我 需要 一把 刀 . +I am starting to dislike her . 我 开始 不 喜欢 她 了 . +Stay put till I get to you . 待 在 原地 , 直到 我 找到 你 . +It is brand new . 这 是 全新 的 . +I do not see why not . 我 看不出 为什么 不 . +I got warm from jogging for an hour . 我 慢跑 了 一个 小时 , 身上 变 暖和 了 . +I can not figure him out . 我 不 了解 他 . +Tom runs fast . 汤姆 跑得快 . +Mary went down to the kitchen . 瑪麗 下 樓 到 廚房 . +We got him to carry our bag . 我們 讓 他 幫 我們 拿 袋子 . +Keep the change ! 不用 找 零钱 了 . +He is drawing a picture . 他 正在 画 一幅 画 . +Tom really needs help now . 湯姆 現在 真的 需要 幫助 . +Tom is room is dirty . 汤姆 的 房间 很脏 . +Would you like to eat something ? 您 想 吃 点 什么 吗 ? +Doing this is a lot of fun . 这样 做 很 有趣 +As soon as she wakes up , we will turn on the music . 她 一醒 , 我们 就 放 音乐 . +Is this your first time in Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me a lecture on drinking . 他 因 我 喝酒 而 訓斥 我 . +I thought that I was dreaming . 我 还 以为 我 在 做梦 呢 . +There are exceptions to every rule . 每 條 規則 都 有 例外 . +Does Tom need to stay home today ? 湯姆 今天 需要 留在 家裡 嗎 ? +Please speak in a louder voice . 請 說 話 大聲 一點 . +I looked over my shoulder . 我 回 過 頭 去 . +This is worth one million yen . 這 值 100 萬 日元 . +There is something wrong with my car . 我 的 車子 故障 了 . +Would you mind if I shut the window ? I have a slight cold . 你 不介意 我 关窗 吧 ? 我 有点 着凉 了 . +I would like to reserve a hotel room . 我 想要 订房 . +She works from nine . 她 九点 开始 工作 . +In case it rains , I will not go . 萬一 下雨 , 我 就 不 去 . +He has a lot of books on history . 他 有 很多 历史书籍 . +I had hoped that my mother would live until I got married . 我 曾经 希望 我 妈妈 能 活到 我 结婚 的 时候 . +You are so right . 你 真是太 對了 . +There is no point in trying again . 再 试 也 无济于事 了 . +There is no school during August . 8 月份 没课 . +She used margarine instead of butter . 她 用 人造黄油 代替 了 黄油 . +He has a large family to support . 他 有 一大家子 要養 . +She and I are classmates . 她 和 我 是 同學 . +Can I see that ? 我 能 看看 那个 吗 ? +Come if you can . 如果 你 能 就 來 吧 . +His political career has ended . 他 的 政治 生涯 完蛋 了 . +She did not like her husband drunk . 她 不 喜欢 让 自己 丈夫 喝醉 . +You should set a good example to your children . 你 应该 给 你 的 孩子 们 树立 好 的 榜样 . +It is spring . 春天 了 +He left the house without saying goodbye . 他 沒 說 再 見 就 離開 了 房子 . +What is love ? 愛 是 什麼 ? +You have beautiful lips . 你 的 嘴唇 很漂亮 . +It does not make sense to me . 这 对于 我 来说 没 任何 意义 . +Would you like to eat lunch together ? 要 一起 吃 午餐 吗 ? +It might be a wedding . 這 可能 是 一場 婚禮 . +Check your dictionary . 查 你 的 字典 . +Both my parents are at home now . 我 父母 現在 都 在家 . +Is it always a sin to tell a lie ? 说谎 总是 一种 罪 吗 ? +I have gained weight . 我 增加 了體 重 . +Is it true that Tom can not swim ? 汤姆 真的 不会 游泳 吗 ? +I do not know if I can go to the party . 我 不 知道 我 是否 可以 去 派对 . +I have not seen him in a long time . 我 很久没 见 过 他 了 . +Tom is writing a letter to his best friend . 汤姆 在 给 他 最好 的 朋友 写信 . +I do not know if he would have done it for me . 我 不 知道 他 是否 已经 为 我 做好 了 . +When will it start ? 什么 时候 开始 ? +He is just pulling your leg . 他 只是 跟 你 開 玩笑 . +I shot the horse because it had trouble breathing . 我 枪杀 了 那 匹 马 , 因为 他 已 呼吸困难 . +What are you after ? 你 想要 什麼 ? +Did you get my letter ? 你 收到 了 我 的 信 了 嗎 ? +He was always annoyed in the city by noises of one sort or another . 他 在 城市 里 一直 受到 噪音 或者 其他 的 干扰 . +For the teacher , teaching her was fun . 對 教師 來說 , 教 她 很 有趣 . +Please make the bed . 請 整理 床鋪 . +You are not to leave this room . 你 不 可以 離開 這個 房間 . +Bring me the newspaper , please . 請 把 報紙 拿來 給 我 . +Tom dragged himself out of bed and put on his clothes . 汤姆 从 床上 爬起来 , 穿上 了 衣服 . +It takes me ten minutes to walk to school . 我 走路 10 分钟 能 到 学校 . +He dropped his books on the floor . 他 的 書 掉 在 地板 上 了 . +She lived there about five years . 她 住 在 那裡 大約 5 年 了 . +She likes oranges . 她 喜歡 柳橙 . +Our teacher gives us a lot of homework . 我们 的 老师 给 作业 给得 很多 . +Tom is a very good tennis player . 湯姆 是 一個 非常 好 的 網球 選手 . +My father is very much involved in the stock market now . 我 爸爸 现在 非常 专注 于 股市 . +We moved to New York last fall . 我們 去年 秋天 搬到 了 紐約 . +I got a hole in my jeans . 我 的 牛仔 褲 破 了 一個 洞 . +I saw Tom three hours ago . 我 在 三 小时 前 见 过 汤姆 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +He is one of the greatest artists in Japan . 他 是 日本 最 伟大 的 艺术家 之一 . +I need to exercise more often . 我 需要 更 经常 地 锻炼 . +I like your shoes . 我 喜欢 你 的 鞋子 . +Those dogs are big . 那些 狗 都 很大 . +I do not speak Japanese . 我 不 说 日语 . +Our house is conveniently located . 我們 的 房子 位 於 交通 便利 的 地方 . +He built an observatory to study the stars . 為了 觀測 星象 , 他 建 了 一座 瞭望台 . +Bring me a sheet of paper , please . 请 带 一张 纸 给 我 . +I am not as stupid as you think I am . 我 不 像 你 想 的 那么 傻 . +Do not disappoint him . 别 让 他 失望 . +Tom helped me with the move . 汤姆 帮 我 搬 了 家 . +Children like fruit juice . 孩子 們 喜歡 果汁 . +I did not participate in the conversation . 我 沒有 參與 這個 談話 . +Where is the nearest telephone booth ? 最近 的 電話 亭 在 哪裡 ? +It might rain . 可能 会 下雨 . +What are you writing ? 你 在 寫 什麼 ? +This apple is very red . 这 只 苹果 非常 红 . +It must be done more carefully . 应该 更 谨慎 地 处理 它 . +He looks like a clever boy . 他 看 起來 像是 個 聰明 的 男孩 . +That is a book . 那 是 一本 書 . +This bucket has a hole in it . 這個 桶 有個 洞 . +I ate the apple . 我 吃 了 這個 蘋果 . +There is no use crying over spilt milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Everybody showed sympathy toward the prisoner . 每个 人 都 对 囚犯 表示同情 . +They sued the government for damages . 他們 狀告 政府 賠償 損失 . +Tom said that Mary was probably still studying French . 汤姆 说 玛丽 可能 还 在 学法语 +Tom has been here since 2013 . 湯姆 從 2013 年 起 一直 在 這裡 . +I have nothing to say . 我 没什么 可说 的 . +Two times two is four . 二 乘以 二 等于 四 . +Tom is an excellent father . 汤姆 是 个 杰出 的 爸爸 . +I got along with everybody . 我 和 大家 相處 . +Tom is still uncertain about whether to go to college or not . 汤姆 还 不 清楚 要 不要 上 大学 . +Mary wore a simple white dress . 玛丽 穿 了 一条 朴素 的 白 裙子 . +I do not feel well . 我 感觉 不 舒服 . +The problem is who is going to tell him the truth . 問題 是 誰 要 告訴 他 真相 . +He will be back home soon . 他 很快 就 會 回家 . +I would really like to know why he did something like that . 我 真的 很 想 知道 他 為 什麼 做 了 像 那樣 的 事 . +I have no time to read . 我 没 时间 阅读 . +I was at home then . 那个 时候 , 我 在家 . +Ask him what to do next . 问 他 下 一步 该 做 什么 . +Tom is going to tell Mary he is busy . 汤姆 会 和玛丽 说 他 很忙 . +You got here fast . 你 來 得 很快 . +What is done cannot be undone . 覆水 難收 . +Let is take a bus . 讓 我們 搭 公車 吧 . +He is full of energy . 他 充满活力 . +Have you finished reading that novel ? 你 读完 那 本 小说 了 吗 ? +I am used to it by now . 我 现在 已经 习惯 它 了 . +Is Tom there already ? 汤姆 已经 在 那里 了 吗 ? +It is less muggy today than it was yesterday . 今天 不 比 昨天 悶熱 . +We went on a picnic together . 我們 一起 去 野餐 了 . +How long are you going to stay in Japan ? 你 會 在 日本 多久 ? +My pen is new . 我 的 钢笔 是 新 的 . +That child may have been kidnapped on his way home . 那个 孩子 可能 在 回家 的 路上 被 绑架 了 . +Mary paid five dollars for her lunch . 玛丽 用 5 美元 买 了 午饭 . +He was standing at the door . 他 站 在 了 门口 . +There is nothing I would not do for Tom . 没有 我 不会 给 汤姆 做 的 事 . +I am now rich enough to afford to get anything I want . 我 现在 富 得 能 买 我 想要 的 任何 东西 . +This problem is too difficult for primary school children to solve . 这个 问题 让 小学生 解决 太 难 了 . +I get up at six . 我 六點 起床 . +You 'd better go now . 你 最好 现在 就 走 . +Not everybody can be an artist . 不是 所有人 都 能 当 艺术家 的 . +Mary prefers to dye her hair blonde . 玛丽 更 想 把 头发 染成 金色 . +I do not have time to meet up with you . 我 没 时间 跟 您 碰头 . +I am a good cook . 我 是 个 好 厨师 . +I understand your position perfectly . 我 十分 理解 你 的 立場 . +How many years did Tom spend in Boston ? 汤姆 在 波士顿 呆 了 几年 ? +That is what I want . 那 就是 我 想要 的 . +You should put safety before everything else . 你 應該 把 安全 放在 其他 一切 之上 . +She made a lot of spelling mistakes . 她 犯 了 很多 拼寫 錯誤 . +I am leaving at four . 我 四點 要 離開 . +He remained single all his life . 他 一生 獨身 . +She enjoyed herself a lot at the party . 她 在 聚會 上 玩 得 很 開心 . +I was totally confused . 我 完全 不 懂 了 . +My house is big . 我家 很大 . +The situation went from bad to worse . 情況 越來越 糟糕 . +The tire leaks air . 轮胎 漏气 了 . +With a little more effort , he would have succeeded . 如果 他 当时 再 努力 一点 , 他 就 成功 了 . +You should have kept it secret . 你 應該 保密 的 . +My mother boiled ten eggs . 妈妈 煮 了 十只 蛋 . +I think I am going to go now . 我 认为 我 现在 该 走 了 . +I am in the habit of taking some exercise before breakfast . 我 在 吃 早餐 前有 運動 的 習慣 . +Read this now . 现在 读 这个 . +I am sure you will be interested . 我 确定 你 會 感 興趣 . +" Where is your book ? " " On the table . " 「 你 的 書 在 哪 ? 」 「 在 桌上 . 」 +These scissors do not cut well . 这 把 剪刀 不好 用 . +There was nobody in the garden . 花園 裡 沒 有人 . +I have had a scratchy throat since this morning . I wonder if I have caught a cold . 早上 起来 , 嗓子 变得 很 沙哑 , 我 想 是不是 感冒 了 . +I am not asking you . I am begging you . 我 不是 要求 你 , 我 是 恳请 你 . +This food does not agree with me . 这 食物 不 适合 我 . +We saw him walking across the street . 我們 看見 他 正在 過 馬 路 . . +Please have a look at this book . 请 看 这 本书 . +Grab a hold of the rope . 抓住 繩子 . +Do not make fun of old people . 不要 捉弄 老人家 . +Tom picked up a pencil . 汤姆 拿 起 铅笔 . +Tom is resting at the moment . 汤姆 现在 在 休息 . +He looked around , but he saw no one . 他 看 向 四周 , 但 沒 看到 任何人 . +One hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I do not think he will come . 我 不 認為 他 會 來 的 . +Your shoes are here . 你 的 鞋 在 这儿 . +When did she promise to meet him ? 她 答应 几时 见 他 ? +You can not go outside . 你 不能 到 外面 去 . +What is happened ? 怎么 了 ? +He may not be happy . 他 可能 不 高兴 . +I am going to help you rescue Tom . 我 要 幫 你 營救 湯姆 . +I heard you were injured trying to help Tom . 我 听说 你 在 试图 帮助 汤姆 的 时候 受伤 了 . +Bird watching is a nice hobby . 观察 鸟类 是 个 很好 的 业余爱好 . +The prize will not be given to her . 奖项 是 不会 授给 她 的 . +May I ask you some more questions ? 我 可以 問 你 一些 問題 嗎 ? +Please give me a glass of water . 请 你 给 我 一杯 水 . +Do you have a map ? 你 有 地圖 嗎 ? +Tom is quite drunk now . 汤姆 现在 醉醺醺 的 了 . +She traveled around the world . 她 周遊 世界各地 . +I like rugby , but not as much as I like basketball . 我 喜欢 橄榄球 , 但 不 像 我 喜欢 篮球 那么 喜欢 . +He 'd prefer not to eat that . 他 宁愿 不吃 这个 . +Do you have any free time this weekend ? 這個 週末 你 有 時間 嗎 ? +The skies are clear . 天空 很 晴朗 . +In order to do that , you have to take risks . 要 这么 做 , 你 需要 冒险 . +He is a doctor by profession . 他 的 职业 是 医生 . +A capital letter is used at the beginning of a sentence . 一個 大 寫 字母 被 使用 在 一個 句子 的 開頭 . +I want to participate . 我 想 参加 . +Tom lives near me . 湯姆 住 在 我 的 附近 . +He held a ball . 他 举办 了 一场 舞会 . +I am learning how to type . 我 正在 學 如何 打字 . +I believe he is coming tomorrow . 我 相信 他 明天 會來 . +I do not care if it snows . 我 不在乎 是否 下雪 . +The explorers discovered a skeleton in the cave . 探险家 们 在 洞穴 里 发现 了 骸骨 . +Money cannot buy happiness . 钱 买不到 幸福 . +Playing tennis is fun . 打 網球 很 有趣 . +Air quality has deteriorated these past few years . 这些 年 空气质量 恶化 了 . +I did something really stupid . 我 做 了 很蠢 的 事 . +I did not understand a single word Tom said . 我 不 明白 湯姆 說 了 什麼 . +Good job ! 干 的 好 ! +I hear you passed the entrance exam . Congratulations ! 我 听说 你 通过 了 入学考试 . 恭喜 你 了 ! +A lot of people swim here in the summer . 许多 人 夏天 在 这里 游泳 . +I have to write a letter . Do you have some paper ? 我 要 写 一封信 . 你 有 纸 吗 ? +He consented to help the old lady . 他 同意 幫助 這位 老太太 . +He will never beat me . 他 永远 不会 打败 我 的 . +I wonder if this is love . 我 不 知道 這 是不是 愛 . +You should keep your valuables in a safe place . 你 该 把 你 的 值钱 物品 保存 在 一个 安全 的 地方 . +That toy is made of wood . 这个 玩具 是 木制 的 . +You are not even listening . 你 就 没在 听 . +He treats me like his slave . 他 對待 我 就 像 他 的 奴隸 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 是 一個 大 成功 . +Give me something to write on . 給 我 一些 我 可以 在 上面 寫 字 的 東西 . +He used to meditate in the morning . 他 過去 時常 在 早上 的 時候 冥想 . +They won many competitions . 他們 贏 了 許多 比賽 . +I found a taxi , but there was no driver inside . 我 找到 了 一輛 出租 車 , 但 裏 面 卻 沒 有 司 機 . +I am sorry I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +I donate blood every three months . 我 每 三个 月 献 一次 血 . +Tom turned up the TV . 汤姆 把 电视 调 大声 . +Arithmetic deals with numbers . 算数 处理 数字 . +I am glad I could be of service . 能够 出 一份 力 太好了 . +This school was founded in 1970 . 这 所 学校 是 1970 年 建成 的 . +The largest bedroom faces south . 最大 的 卧室 朝南 . +Tom made some mistakes on the test . 湯姆 在 考試 中 犯 了 一些 錯誤 . +The train arrived ten minutes behind time . 列車 晚 到 了 十分 鐘 . +As soon as he saw a policeman , he ran away . 他 一 看见 警察 就 逃走 了 . +Many friends saw him off . 許多 朋友 為 他 送行 . +We bought a round table . 我们 买 了 张 圆桌 . +People in Taiwan work hard . 在 台灣 人們 工作 很 努力 . +What a wonderful family . 多 美好 的 家庭 啊 ! +Are you free on Tuesday ? 周二 你 有空 吗 ? +When I first met Tom , I did not like him much . 我 第一次 見 到 湯姆 時 , 我 不 太 喜歡 他 . +The store can supply us with anything we need . 这家 商店 可以 提供 所有 我们 需要 的 东西 . +He is stronger than you . 他 比 你 強壯 . +My sleep was disturbed by the sound . 那 声音 搅 了 我 的 美梦 . +This ticket is good for three days . 這 張 票 的 有效期 是 三天 . +What about you ? 您 呢 ? +You did not come to school yesterday . 你 昨天 没 来 学校 . +Please sit down . 請 坐下 . +It is almost six . 差不多 六点 了 . +Tom was wearing a bulletproof vest , so the bullet did not kill him . 湯姆 穿著 一件 防彈 衣 , 所以 子彈 沒 把 他 殺 死 . +We ran three kilometers . 我們 跑 了 三 公里 . +I like to travel . 我 喜歡 旅行 . +Tom was at home . 汤姆 在家 的 . +She got on the subway at Ginza . 她 在 銀座 搭乘 了 地鐵 . +The weather is good today . 今天天气 很 好 . +Tom knew when Mary would be arriving . 汤姆 知道 玛丽 什么 时候 来 . +She helped him overcome his sadness . 她 幫助 他 平撫 了 他 的 悲傷 . +I owe Tom some money . 我 欠 湯姆 錢 . +I have already read today is paper . 我 已經 看 過 了 今天 的 報紙 . +Please wake me up at six tomorrow . 請 在 明天 六點 叫 我 起來 . +He drank a lot yesterday . 昨天 他 喝 了 很多 . +I forgot it in the garage . 我 把 它 忘 在 车库里 了 . +Tom does not know where Mary lives . 汤姆 不 知道 玛丽 住 在 哪里 . +I am going to Europe next week . 我 下週 要 去 歐洲 . +Do you know what he said ? 你 知道 他 說 了 什麼 嗎 ? +When the lights went out , Tom lit a candle . 灯灭了 , 汤姆 点 起 了 蜡烛 . +I wrote down that telephone number . 我 寫下 了 那個 電話 號碼 . +She cooked us a delicious dinner . 她 为 我们 煮 了 一顿 美味 的 晚餐 . +Translating this sentence will be very easy . 翻译 这个 句子 会 很 容易 . +She may realize later what I meant . 她 可能 以 後 會 明白 我 的 意思 . +Tom tried to kill Mary . 汤姆 试 着 杀死 玛丽 . +Flying a kite can be dangerous . 放 風箏 可以 是 危險 的 . +Our school is very close to the park . 我们 学校 离 公园 非常 近 . +Why do not you join our party ? 你 為 什麼 不 參加 我們 的 派 對 ? +Can we go back now ? 我們 現在 能 回去 嗎 ? +I have been cheated before . 我 以前 被 騙 過 . +Where is my apple juice ? 我 的 蘋 果汁 在 哪 ? +The war has not ended . 战争 还 没 结束 . +Get away ! 走開 ! +You have done a lot . 你 做 了 很多 . +Can you help us ? 你 能 幫 我們 嗎 ? +She left early in the morning . 她 清晨 離開 了 . +Winter is my favorite season . 冬天 是 我 最 喜欢 的 季节 . +Where is my dad ? 我 父亲 在 哪里 ? +" A rolling stone gathers no moss " is a proverb . “ 滚石 不生 苔 ” 是 一句 谚语 . +A stewardess was rescued from the wreck . 一名 空姐 從 飛機 殘骸 中 被 救出 來 了 . +Putting ideas into practice is difficult . 把 想法 付諸 實踐 是 困難 的 . +I do not trust him any more . 我 不再 相信 他 了 . +He was very busy all day . 他 一整天 都 很忙 . +Do not be too sensitive to criticism . 不要 对 批评 太 敏感 了 . +Right now , we have blueberries , blackberries , cherries , strawberries , peaches and nectarines . 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 草莓 、 桃子 和 油桃 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everybody wanted to eat . 每个 人 都 想 吃 . +Was this wall built to keep people out or to keep them in ? 建造 这 堵墙 是 为了 把 人 隔 在 外面 还是 把 他们 留在 里面 ? +That is life . 這 就是 生活 . +Is this the train for New York ? 這 班 是 去 紐約 的 火車 嗎 ? +There was nothing left in the fridge . 冰箱 里 什么 都 没 剩下 . +After the accident , Tom decided to stop skating . 事故 过后 , 汤姆 觉得 停止 滑冰 了 . +I do not think anyone can do this . 我 认为 没 人 能 做到 . +My hands were shaking too much to thread the needle . 我 的 手 抖 得 太 厉害 , 没法 穿针 了 . +I would like to go . 我 想要 去 . +He did not hear his name called . 他 没 听见 有人 叫 他 的 名字 . +What if something gets broken ? 要是 有 东西 坏 了 呢 . +He did not know what to do next . 他 不 知道 下 一步 要 做 什麼 . +You must not eat too much . 你 不该 吃 太 多 . +Can you really swim ? 你 真的 會 游泳 嗎 ? +She made jam from the apples . 她 用 蘋果 做 了 果醬 . +How long did you live there ? 你 住 在 那裡 多久 了 ? +How cute ! 多 可爱 啊 ! +I have some pictures to show you . 我 有 一些 照片 給 你 看 . +I will never forget what you told me . 我 將 永遠 不 會 忘記 你 告訴 過 我 的 話 . +The baby is sleeping in the cradle . 嬰兒 正在 搖 籃裡 睡覺 . +Good morning . 早上好 ! +He bought his daughter a dress . 他 買 了 一件 洋裝 給 他 女兒 . +They are much taller than us . 他們 比 我們 高 得 多 . +Do not forget about me . 別 忘 了 我 . +I caught sight of a parade on my way home . 在 回家 的 路上 , 我 看到 一场 阅兵式 . +Do you think that my work is easy ? 你 觉得 我 的 工作 简单 吗 ? +The baby started to cry . 宝宝 开始 哭 了 . +I was very surprised to hear the news . 我 听到 这个 消息 很 惊讶 . +Please show me what to do next . 請 告訴 我 下 一步 該 做 什麼 . +Tom is thirty . 汤姆 今年 三十岁 . +I know I did an awful thing . 我 知道 , 我 做 了 很 可怕 的 事 . +I am proud of my father . 我 为 我 父亲 而 自豪 . +I have just returned from the post office . 我 刚 从 邮局 回来 . +I will stop by your place on my way home . 我 回家路上 会 在 你 那里 停下 . +I am a student of this school . 我 是 这个 学校 的 学生 . +You should not eat here . 你 不该 在 这里 吃饭 . +Tom probably does not know why the picnic was canceled . 湯姆 大概 不 知道 為 什麼 野餐 取消 了 . +I like them . 我 喜欢 他们 . +I have got to stop eating such sweet ice cream . 我 必须 停止 吃 那么 甜 的 冰激凌 . +Why do not you have some sushi ? 为什么 不 尝尝 寿司 ? +He earns his living by writing . 他 靠 寫作 謀生 . +Give me the notebook . 把 筆 記本 給 我 . +In comparison with Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +Is our appointment today or tomorrow ? 我們 約 的 是 今天 還是 明天 ? +How did you get to know each other ? 你们 怎么 互相 认识 的 ? +Tom has no idea what to do with all the junk in his garage . 汤姆 不 知道 拿 他 车库 的 那些 废物 怎么办 . +We still have many other things to discuss . 我们 还有 许多 别的 事情 要 讨论 . +You must not be late for school . 你 上學 不 可以 遲 到 . +Is Tom at school ? 汤姆 在 学校 吗 ? +Did not you hear her speaking French ? 你 沒 聽到 她 說 法語 嗎 ? +Look at that picture on the desk . 看看 桌上 的 那 張 相片 . +Her mother knocked on the door . 她 的 母親 敲門 . +I think we need a doggy bag . 看來 我們 得 打包 了 . +Can you tell silver and tin apart ? 你 能 分辨 銀和錫 嗎 ? +I am a social worker . 我 是 個 社會 工作 人員 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +The button came off . 這 顆 鈕扣 脫落 了 . +As far as I know , your letter is under that book . 據 我 所知 , 你 的 信 在 那 本書 下面 . +The Second World War lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +Do not forget to bring a camera . 别忘了 带 个 相机 . +Let is clear up this problem . 把 问题 澄清 一下 . +This may take a while . 这 要 花 时间 . +I will show you around town . 我 會 帶 你 逛逛 這個 鎮 . +She did not need to do that work . 她 不 需要 做 那個 工作 . +My father is free this afternoon . 我 父親 今天下午 有空 . +I just did not want to go to work yesterday . 昨天 我 只是 不想 去 工作 . +Which way is the beach ? 去 海滩 走 哪条 路 ? +It is warm for this time of year . 對 一年 的 這個 時候 來說 , 天氣 很 溫暖 . +The sale prices are written in red ink . 售價用紅 墨水 寫 . +Keep quiet . 保持 安静 ! +I am nearly finished . 我 差不多 完成 了 . +She is not prettier than her mother . 她 没有 比 她 妈妈 更 漂亮 . +I hate chemistry . 我 讨厌 化学 . +Her skin is whiter than snow . 她 的 皮肤 比雪 还 白 . +Tom wears a wig . 湯姆 戴 假 髮 . +They are bitter enemies . 他們 是 仇 敵 . +How long are you going to stay ? 你 准备 待 多久 ? +If I were healthy , I would be happy . 如果 我 很 健康 , 我 會 很快 樂 . +Tom put a cover over his car . 汤姆 给 车盖 上套 . +I am playing baseball . 我 在 打 棒球 . +Do not open your book . 不要 打开 你 的 书 . +Tom is mother is a nurse at the hospital that is across the street from where Mary lives . 汤姆 的 妈妈 是 一名 护士 , 她 所在 的 医院 就 在 玛丽 住 的 那条 街 的 对面 . +I will send a message to Tom . 我会 给 汤姆 发 信息 . +We still do not know why . 我們 仍然 不 知道 為 什麼 . +He is always running short of cash . 他 的 現金 總是 不夠 用 . +I am married and have two children . 我 结婚 了 , 而且 有 两个 孩子 . +Do not tell anyone this . 不要 告訴 任何人 這件 事 . +He is afraid of the dog . 他 怕 那 只 狗 . +I would like your picture . 我 想要 你 的 照片 . +I am engaged to her . 我 跟 她 訂婚 了 . +I bought it at a department store . 我 在 百貨 公司 買 了 它 . +Now it is official . 现在 它 是 官方 的 . +Interest rates and inflation were high . 利率 和 通货膨胀 很 高 . +I expect you to work harder . 我 希望 你 更加 努力 地 工作 . +We had a good time last night . 我們 昨晚 玩 得 很 開心 . +I do not have a cat . 我 没有 猫 . +I like that person . 我 喜欢 那个 人 . +What is wrong with you ? 你 到底 怎么回事 啊 ? +It is not easy to train dogs . 訓練 狗 是 不 容易 的 . +He told me to be kind to others . 他 叫 我 对 别人 好 一点 . +My mother made me a Christmas cake . 母親 做 了 一個 聖誕 蛋糕 給 我 . +Watch out ! There is a big hole there . 小心 ! 在 那裡 有 一個 大洞 . +That was all Greek to me . 我 完全 看不懂 . +I was planning on going to the beach today , but then it started to rain . 我 本来 预备 今天 去 海滩 的 , 但 接着 天 就 开始 下雨 了 . +He devoured his meal . 他 狼吞虎咽 地 吃 了 一顿 . +Our problems are nothing compared to hers . 我们 的 问题 和 她 的 比 起来 不算什么 . +We like music . 我們 喜歡 音樂 . +I just want to be Tom is friend . 我 只 想 做 汤姆 的 朋友 . +Tom vanished . 汤姆 不见 了 . +That boy denies stealing the bicycle . 那个 男孩 否认 偷 了 自行车 . +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 而 烦躁 了 . +It is wrong to tell lies . 說 謊 是 錯誤 的 . +I waited for him all day long . 我 等 了 他 一整天 . +I had a feeling this might happen . 我 早 有 一種 感覺 這 可能 會 發生 . +Come on , try again . 来 , 再 试试看 . +He always keeps his room clean . 他 總是 把 他 的 房間 保持 乾 淨 . +Take off your socks . 把 襪子 脫掉 . +I doubt if Tom is single . 我 怀疑 汤姆 是 单身 . +When do you practice the piano ? 你 什麼 時候 練 習彈 鋼琴 ? +It is impossible to live without water . 生活 沒有 水是 不 可能 的 . +I am sorry I was so rude . 對 不起 , 我 太 無理 了 . +Come and dance with me . 过来 和 我 跳舞 啊 ! +We found the footprints in the sand . 我們 發現 了 沙灘 上 的 腳印 . +Turn the radio down a little . 把 收音 機 的 聲音 關小 一點 . +We are going downtown to eat pizza . 我們 要 去 市中心 吃 比 薩 . +At what age did you have your first girlfriend ? 你 几岁 交 了 第一个 女朋友 ? +He made me go against my will . 他 讓 我 違背 了 我 的 意願 . +He does not know how to play golf . 他 不 知道 如何 打 高爾夫 球 . +I managed to get there in time . 我 設法 及時 到 那裡 . +He has lots of money . 他 有 很多 钱 . +My grandfather was a policeman . 我 的 祖父 是 警察 . +She did not try to hide the truth . 她 没有 试图 掩盖真相 . +Do you like any of these pictures ? 你 喜歡 這些 照片 裡 的 任何 一張 嗎 ? +Somebody caught me by the arm . 有人 抓住 了 我 的 手臂 . +I thought you were my friend . 我 以为 你 是 我 的 朋友 . +Which way is Central Park ? 中央 公園 在 哪個 方向 ? +This is the man who is suspected by the police . 这 是 被 警察 认为 有 嫌疑 的 男子 . +Do you know what color she likes ? 你 知道 她 喜歡 什麼 顏色 嗎 ? +This guitar is so expensive that I can not buy it . 这 吉他 太贵 了 , 我 没法 买下 . +I washed the dishes after supper . 晚饭 后 我 洗 了 碗碟 . +Admission is $ 3.00 at the door . 入场费 是 3 美元 . +He sang while working . 他 一边 唱歌 一边 工作 . +Who is that woman holding the flowers ? 那个 拿 着 花 的 女人 是 谁 ? +Why did we fail ? 我們 為 甚麼 失敗 了 ? +He has been ill in bed for four days . 他 已 卧病在床 四天 了 . +The minimum wage in Okinawa is 642 yen per hour . 冲绳 的 最低 时薪 是 每 小时 642 日元 . +You should not have eaten so much ice cream . 你 不 應 該 吃 這麼 多 冰淇淋 . +Do you like snow ? 你 喜欢 雪 吗 ? +You are no singer . 你 不是 歌手 . +They killed time playing cards . 他們 玩牌 來 殺 時間 . +I know what his name is . 我 知道 他 叫 什么 名字 . +Everybody talks about the weather , but nobody does anything about it . 每個 人 都 在 談論 天氣 , 但是 沒 有人 為 它 做 任何 事情 . +He gave his children a good education . 他 給 了 他 的 孩子 們 良好 的 教育 . +We are going to have a test today . 我們 今天 將 有 一個 考試 . +Tom did not waste any time , did he ? 湯姆 不 浪費 一點 時間 , 不是 麼 ? +Breathing was difficult . 呼吸 困難 . +He bought me a new dictionary . 他 買 給 我 一本 新 字典 . +I can not understand this at all . 我 一點 也 不 懂 這個 . +What is your house like ? 你 的 房子 如何 ? +A sponge absorbs water . 海绵 吸水 . +We can not force people to do that . 我們 不能 強迫 人 去 做 . +Tom and Mary stayed in a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +The boat can still be seen . 船 还 能 看见 . +I caught the last bus . 我 趕上 了 最 後 一班 公車 . +Which club do you belong to ? 你 屬 於 哪個 社團 ? +They go to church on Sunday . 他們 禮 拜 天上 教堂 . +Have you eaten your lunch yet ? 你 吃 過午 飯 了 嗎 ? +I have not quite finished eating . 我 還 沒有 完全 吃 完 . +You have a good memory . 你 的 記憶力 很 好 . +That is soft . 这 很 软 . +We will be late if we do not hurry . 再 不 快点 就 迟到 了 噢 . +Please call the fire department . 请 叫 消防员 . +I would like to show you something . 我 有 东西 想 给 你 看看 . +I do not like eggs . 我 不 喜欢 鸡蛋 . +Put on some clothes . 你 穿 點 東西 . +Do you think I am joking ? 你 觉得 我 是 在 开玩笑 吗 ? +My father is in the habit of reading the newspaper before breakfast . 我 父亲 有个 习惯 , 早餐 之前 读 报纸 . +Judging from the look of the sky , it is likely to rain . 看看 天 的 样子 , 要 下雨 了 . +I took the fact for granted . 我 忽略 了 事实 . +You are driving too fast . 你 開 得 太 快 了 . +His father passed away last year . 他 的 父親 去年 過世 了 . +There is no money left in my bank account . 我 的 银行 账户 里 没 留下 钱 . +What Tom said was not true . 湯姆 說 的 不是 真的 . +His life after retirement was unhappy . 他 退休 後 的 生活 不快 樂 . +My front teeth stick out . 我 门牙 突出 . +The simplest way is often the best way to solve a problem . 解决问题 最 简便 的 方法 往往 是 最好 的 办法 . +Tell Tom I am sorry . 告诉 汤姆 我 很 抱歉 . +Make yourself at home . 就 当 在家 一样 . +I thought your parents liked me . 我 認為 你 的 父母 喜歡 我 . +Tom never did that when he was younger . 汤姆 年轻 时 从不 那么 干 . +Tom is got nothing to hide . 汤姆 没有 什么 可 隐藏 . +Do you understand what I mean ? 你 知道 我 的 意思 嗎 ? +Tom went to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +Where is the nearest shopping mall ? 最近 的 大 卖场 在 哪里 ? +My husband reads the newspaper while eating breakfast . 我 丈夫 一边 吃 早餐 一边 读 报纸 . +The cat caught the rats . 猫 抓住 了 老鼠 . +He caught hold of the rope . 他 抓住 了 绳子 . +I do not like to swim in pools . 我 不 喜歡 在 泳池 裡 游泳 . +We will always be friends . 我们 永远 都 会 是 朋友 . +Tom and Mary is home is cluttered . 汤姆 和玛丽 的 家 很乱 . +I am ready to go back home . 我 準備 回家 了 . +Tom heard this and got angry . 聽到 這事 之 後 , 湯姆為 之 色 變 . +Tom takes the bus to the city . 湯姆 搭 公車 去 市區 . +He is coming closer . 他 在 靠近 . +You remind me of myself . 你 让 我 想起 我 自己 . +The moon is the earth is only satellite . 月球 是 地球 唯一 的 卫星 . +You are absolutely right . 你 完全 正確 . +Will this year be different ? 今年 将 会 不同 以往 吗 ? +Everybody wished he had been elected governor . 每個 人 都 希望 他 當選 州長 . +Please show me the green shirt . 請 給 我 看看 這件 綠色 的 襯衫 . +Thank you just the same . 还是 要说 谢谢 的 . +People can not live without air . 没有 空气 , 人 无法 存在 . +We gave our mother a watch . 我們 給 了 母親 一支 手 錶 . +It is just your imagination . 这 只是 你 的 想象 . +Are you free in the afternoon ? 你 下午 有空 嗎 ? +We had a late lunch at two . 我們 在 兩點鐘 吃 了 晚 午餐 . +How long does it take ? 要 花 多久 時間 ? +What did she buy at the shop ? 她 在 店 裡 買 了 什麼 ? +She is busy preparing for the trip . 她 正忙 著 準備 這次 旅行 . +He will come back sooner or later . 他 迟早会 回来 的 . +The people here are accustomed to the cold . 这里 的 人 习惯 了 寒冷 . +You seem to be an honest man . 你 看起来 像 个 老实人 . +My father is a skilled fisherman . 我 爸爸 是 个 钓鱼 高手 . +He refused to shake hands with me . 他 拒绝 跟 我 握手 . +She has gone shopping . 她 去 购物 了 . +I stayed up all night again . 我 又 熬夜 了 . +All of a sudden , three dogs appeared in front of us . 突然 之間 , 三 隻 狗 出 現 在 我 們 面前 . +This desk is designed for children . 這 張 書 桌 是 專門 為 兒童 設計 的 . +The suspect is a caucasian female . 嫌疑人 是 一位 白人 女性 . +I will get there as soon as I can . 我会 尽可能 早 地 到 那儿 . +I am a vegetarian . 我 是 素食主义者 . +The youngest daughter was particularly beautiful . 么 女 長 得 特別 漂亮 . +The plane flew toward the west . 飞机 向西飞 了 . +I bought a dozen pencils today . 我 今天 買 了 一打 鉛筆 . +You are not a coward . 您 不是 个 懦夫 . +I got up early in the morning . 我 早上 很早 起床 . +I will find you a good doctor . 我 會 幫 你 找 個 好 醫生 . +That is what I like . 我 就 喜欢 它 . +Tom set the bird free . Tom 將鳥 放走 . +He is old enough to understand it . 他 已經 到 了 能 瞭解 它 的 年紀 . +I can help you , too . 我 也 能 幫 你 . +Tom is a man of few wants . 汤姆 是 个 寡欲 的 人 . +He wrote down the telephone number . 他 寫下 這個 電話 號 碼 了 . +I have no excuse . 我 没有 借口 . +They gave him up for lost . 他們 為 失敗 放棄 了 他 . +We need you to tell us why you were absent all last week . 我们 要 你 告诉 我们 你 为什么 整个 上周 都 缺勤 . +We defeated the enemy . 我們 戰勝 了 敵人 . +Tom teaches French . 湯姆 教法 語 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 餐具 . +Do you want to get some lunch ? 你 想 吃 点 午饭 吗 ? +Tom says he is tired . 汤姆 说 他 累 了 . +He broke in on our conversation . 他 打斷 了 我們 的 談話 . +She spends a lot of time practicing the piano . 她 花 很多 时间 练 钢琴 . +How is your wife ? 你 太太 怎么样 ? +The accident happened near his home . 事故 發生 在 他家 附近 . +May I be excused from tomorrow is class ? 明天 的 课 我 能 不来 吗 ? +Where does this street lead to ? 這條 街 通到 哪裡 ? +He practiced every day at home . 他 每天 在家 練習 . +Have you ever thought of becoming a nurse ? 你 曾經 想過 當 個護士 嗎 ? +She ironed her shirt . 她 熨 了 衬衫 . +I have a little money . 我 有 一些 錢 . +Tom died in battle . 湯姆 在 戰鬥 中 死 了 . +I prefer tea to coffee . 我 喜歡 茶 勝 過 咖啡 . +She has a husband and two daughters . 她 有 丈夫 和 兩個 女兒 . +Tom did not attend the meeting . 湯姆 沒有 参加 會議 . +I could hear dogs barking all night . 我 整夜 都 能 听到 狗叫 . +There is a cat under the desk . 书桌下 有 一只 猫 . +She gave me several books . 她 給 了 我 幾本 書 . +What is the point in doing that ? 幹 嘛 那麼 麻煩 ? +Tom crushed the garlic . 汤姆 捣碎 了 大蒜 . +Switch on the light . I can not see anything . 把 灯 打开 . 我 什么 都 看不见 了 . +I think you are really amazing . 我 觉得 你 真是 让 人 大吃一惊 . +He dressed up as a woman . 他 打扮 得 像 女人 一樣 . +You can not say no . 你 无法 说 “ 不 ” . +Do you like any of these pictures ? 你 喜歡 這些 畫 裡 的 任何 一幅 嗎 ? +Who is that man ? 那 男人 是 谁 ? +Which do you like better , spring or autumn ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +You are an idiot . 你个 傻子 ! +She saw a young man at the entrance . 她 在 入口 看到 一個 年輕 男人 . +I am really tired . 我 累死 了 . +Take the elevator to the fifth floor . 搭乘 電梯 到 五 樓 . +I looked , but I did not see anything . 我 看 過 了 , 但是 沒 看到 什麼 東西 . +They blamed Tom for causing the accident . 他们 指责 汤姆 造成 了 事故 . +I do not want to eat lunch now . 我 现在 不想 吃 午饭 . +Will you lend me your dictionary ? 把 你 的 字典 借 給 我 好 嗎 ? +One of my bags is missing . 我 的 一個 包包 不見 了 . +He was willing to work for others . 他 願意 為 別人 工作 . +Now they have three children . 现在 他们 有 三个 孩子 . +The weather is unusually cold . 天气 非常 寒冷 . +You and I are good friends . 你 和 我 是 好 朋友 . +Could you turn off the lights ? 你 可以 關燈 嗎 ? +Their eyes met . 他們 目光 相接 . +Take things a little more seriously . 對 事情 比較 正經 嚴肅 . +Answer my question carefully . 仔细 回答 我 的 问题 . +I am feeling fit . 我 覺得 精神 很 好 . +I think it is time for you to grow up . 我 觉得 你 是 时候 该 懂事 了 . +I am very grateful for everything you have done for me . 非常感谢 你 所 做 的 一切 . +I do not think my life is very interesting . 我 不 認為 我 的 人生 很 有趣 . +Stay with us . 和 我们 留在 一起 吧 ! +If I get rich , I will buy it . 如果 我 有钱 , 我 就 会 买 它 . +I have no way of knowing that . 我 无从 知道 . +If there was no sun , all the animals would be dead . 如果 没有 太阳 , 那 所有 生物 都 会 死 . +What language is spoken in America ? 在 美國 的 人 說 什麼 語言 ? +Coal is not always black . 煤 并不一定 都 是 黑 的 . +Let is take it easy . 讓 我們 放 輕 鬆 吧 . +I would rather live by myself than do as he tells me to do . 我 寧願 自己 獨立 生活 也 不要 他 來 指使 我 . +English is difficult to learn . 英語 很 難 學 . +I do not know where he comes from . 我 不 知道 他 從 哪裡 來 . +It is very hot here in the summer . 这里 夏天 非常 炎热 . +His house is somewhere about here . 他家 在 这儿 某处 . +The curtain fell . 谢幕 了 . +He can speak Russian as well . 他 还 会 说 俄语 . +She left the hospital an hour ago . 她 一 小时 前 离开 了 医院 . +I thought you were listening . 我 以为 你 在 听 . +He will succeed to the throne . 他 会 继承 王位 . +I prefer riding to walking . 我 喜歡 騎車 勝 過 走路 . +I am tall . 我 个子 高 . +I bought a hat at the store . 我 在 這家 商店 買 了 一頂 帽子 . +She lives in a huge house . 她 住 在 一個 很大 的 房子 裡 . +What do you want now ? 您 现在 想要 什么 ? +I can help you out . 我 能 幫 你 . +This is all I know . 這 是 我 所 知道 的 . +Would you please have a look at these papers ? 請 你 看看 這些 文件 . +I do not want to quit this job . 我 不想 辞去 这份 工作 . +Let is discuss the problem with them . 让 我们 和 他们 讨论 这个 问题 吧 . +Ask Tom . 去 问 汤姆 . +I am crazy about you . 我 为 你 着迷 . +Which ones are Tom is ? 哪个 是 汤姆 的 ? +I did not hear it . 我 没 听见 . +The boy who lives next door often comes home late . 隔壁 的 男孩 常常 晚 回家 . +I will get some help . 我会 需要 帮助 . +She is a bit naive . 她 有点 天真 . +No one knows . 沒 有人 知道 . +I will give you a prescription . 我会 给 你 开 个 药方 . +Is this everything ? 这 就是 全部 吗 ? +They forgave him for his crimes . 他们 原谅 了 他 的 罪行 . +Do you have any friends who are doctors ? 你 有 朋友 是 醫生 嗎 ? +My hobby is collecting old coins . 我 的 嗜好 是 收集 古錢幣 . +You had better be careful not to overeat . 你 最好 小心 不要 吃 過 量 . +Where were you yesterday morning ? 你 昨天上午 在 哪裡 ? +Do I have to stay in the hospital ? 我 必須 留在 醫院 嗎 ? +Would you lend me your knife ? 你 可以 借 我 你 的 刀 嗎 ? +She graduated from Kobe University . 她 畢業 於 神戶 大學 . +He did not show up at the party . 他 沒有 在 派 對 上 出現 . +I just want you to come . 我 只是 想要 你 来 . +Tom wears a hat every day . Tom 每天 都 戴帽子 . +You continue making the same mistakes time after time . 你 每次 都 继续 犯 同样 的 错误 . +She has a pretty doll . 她 有个 漂亮 的 洋娃娃 . +I just do not want to marry Tom . 我 只是 不想 和 汤姆 结婚 . +I did my best . 我 做得好 到 不能 再 好 了 . +I do not know whether I have time or not . 我 不 知道 我 有 沒有 時間 . +Do not worry about the past . 不要 担心 过去 . +Words express thoughts . 語 言表 達 思想 . +There is a beautiful park near my home . 我家 附近 有个 漂亮 的 公园 . +Step out of the car and place your hands behind your back . 下车 , 把手 放在 背后 . +He rode his bicycle there . 他 是 騎 自行 車 去 的 . +How high can you jump ? 你 能 跳 多 高 ? +He likes anything sweet . 他 喜歡 一切 甜 的 東西 . +I have a daughter . 我 有 一个 女儿 . +They sometimes help us . 他們 有 時 幫 我們 . +I will see you next month . 我 下個 月會 來看 你 . +My uncle has a flower shop near the station . 我 叔叔 在 車站 附近 有 一家 花店 . +Let me die . 让 我 去 死 . +Are you kidding ? 你 在 开玩笑 吗 ? +The vending machines are over there . 自动售货机 在 那边 . +We have the same problem . 你 的 问题 和 我 的 一样 . +I think I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +It is me . 是 我 . +The news made her sad . 这个 消息 让 她 很 伤心 . +I like fish . 我 喜欢 鱼 . +Both of my sisters are not married . 我 的 兩個 姊妹 並非 都 結婚 了 . +Do not leave your work half finished . 别 留 着 一半 工作 没 干 . +What is your favorite type of pizza ? 你 最 喜歡 的 比薩類 型 是 甚麼 ? +What is your name ? 你 叫 什么 名字 ? +It is definite that he will go to America . 他 肯定 要 去 美国 . +I work every day except Sunday . 除了 星期天 我 每 一天 都 工作 . +It was just as I thought . 这 正如 我 想 的 一样 . +Tom stayed home . 湯姆 留在 家裡 . +Have you been fired ? 你 曾經 被 開除 過 嗎 ? +They are about the same age . 他们 年龄 相仿 . +This book was printed in England . 这 本书 在 英国 印刷 . +Are you sure of your facts ? 你 確定 你 的 資料 屬實 嗎 ? +Nobody can know everything . 沒 有人 能 無所 不知 . +She had already gone when I arrived . 當 我 到 的 時候 , 她 已經 走 了 . +Do you like Japanese food ? 你 喜欢 日本 菜 吗 ? +The party ended at ten o 'clock . 派 對 在 十點鐘 結束 . +I am taking care of my grandfather . 我 照顧 我 的 爺爺 . +My uncle made me serve as interpreter . 我 叔叔 讓 我 擔任 翻譯 . +How old are you ? 你 幾歲 ? +I almost forgot all about that . 我 幾乎 忘 了 所有 關於 那件事 . +He amassed a fortune in stock trading during the last boom . 他 在 上个 景气 时期 炒股 攒下 了 一笔 钱 . +I must finish this work first . 我 必須 先 完成 這個 工作 . +He must be about forty . 他 应该 40 岁 左右 吧 . +Hey , what are you doing here ? 嘿 , 你 在 這 做 什麼 ? +Starting tomorrow , it is going to snow for a week . 雪 从 明天 开始 下 , 一直 持续 一个 星期 . +It is cold . 天 很 冷 . +You need a vacation . 你 需要 個 假期 . +How long are you planning to stay ? 你 准备 待 多久 ? +Tom followed Mary into the room . 汤姆 跟着 玛丽 进入 了 房间 . +I was very nervous as the plane took off . 飛機 起飛 的 時候 我 很 緊張 . +This plane flies between Osaka and Hakodate . 這 架 飛機 往返 於 大阪 和 函館 之間 . +They made straight for their destination . 他們 直奔 目的地 . +Tom has something very important to tell Mary . 湯姆 有 很 重要 的 事 要 告訴 瑪麗 . +What time will you have breakfast ? 你 什麼 時候 吃 早餐 ? +There is no possibility of his coming . 他 不 可能 來 . +Tom does not usually eat breakfast . 汤姆 一般 不吃 早饭 . +This table takes up too much space . 這 張 桌子 太 佔 空間 了 . +Tell me how to solve the problem . 告訴 我 如何 解決 這個 問題 . +Now tell us what we want to know . 现在 告诉 我们 我们 想 知道 的 . +Tom is always watching television . 湯姆總 是 在 看電視 . +It is a sheer waste of time . 這 完全 是 浪費 時間 . +Maybe you should study harder next time . 你 下回 可能 该 更 努力学习 . +The world is beautiful . 萬物 真 美好 . +We had a slight difference of opinion . 我們 的 看法 有 一點 不同 . +All the furniture was covered with dust . 所有 的 家具 都 佈 滿 了 灰 塵 . +Come here by ten at the latest . 最晚 十點 前來 這裡 . +He is anxious to see you . 他 急 於 要 見 你 . +I must help her at any cost . 我 必须 不惜一切 代价 帮助 她 . +We should inform them about that . 我们 应该 把 那件 事情 告知 他们 . +He prefers French to German . 他 喜歡 法語 勝 過 德語 . +If you could go back and start your life again , from what age would you like to start ? 假如能 回到 过去 让 人生 再 来 一遍 的话 , 你 希望 能 回到 几岁 的 时候 ? +Pride goes before a fall . 骄傲 使 人 落后 . +You can not do two things at once . 你 不能 一心两用 . +He is old enough to know better . 他 已經 長大 該 懂事 了 . +There is nothing better than taking a nice walk . 没有 什么 比 散步 更好 的 了 . +We are friends . 我们 是 朋友 . +This table is heavy . 这 张 桌子 很重 . +He has written a letter . 他 写 了 一封信 . +Why should anyone be surprised ? 为什么 任何人 应该 感到 惊喜 ? +I spoke with him about the matter . 我 跟 他 談 過 這個 問題 . +We have got to start thinking about recycling . 我們 必須 開始 考慮 回收 . +I do not like anything . 我 什么 都 不 喜欢 . +I hiccup a lot . 我 经常 打嗝 . +Tom tore the ticket to bits . 湯姆 把 票 撕成 碎片 . +I really enjoyed last night . 我 昨晚 真盡 興 . +I let my sister use my new computer . 我 让 我 妹妹 用 我 的 新 电脑 . +I have done bad things that I should be punished for . 我 做 了 該 受罰 的 壞事 . +We got lost in the fog . 我们 在 雾 中 迷了路 . +What did she say ? 她 说 了 什么 ? +There is nothing you can do for Tom . 你 無法 為 湯姆 做 甚麼 . +She has plenty of books . 她 有 大量 的 書 . +The box was not empty . 箱子 不是 空 的 . +Tom is accustomed to getting up early . 汤姆 习惯 早起 . +I feel like going out today . 我 今天 想 出門 . +She will be a famous artist in the future . 她 将来 会 是 一个 有名 的 艺术家 . +I have always wanted to climb Mt . Fuji . 我 一直 想 登 富士山 . +Have you washed the car yet ? 你 洗過 車子 了 嗎 ? +There was nothing on the radio about the accident . 電台 沒有 提到 這個 事故 . +The cottage was clean and tidy . 小屋 干净 又 整洁 . +Take care ! 照顾 好 自己 . +It all depends on the weather . 一切 都 取決 於 天氣 . +The girl was sobbing in the corner of the schoolroom . 女孩 在 教室 的 角落 啜泣 . +" He used to love me , " she answered sadly . 他 以前 愛 我 , 她 傷 心地 回答 . +You only gave me fifty cents . 你 只 給 了 我 五十 美分 . +Send for a doctor at once . 立即 送 醫 . +He acts as if he were a king . 他 做 得 好像 自己 是 国王 一样 . +What is it ? 這 是 什麼 啊 ? +He walks fast . 他 走路 很快 . +In the United States , school buses are yellow . 在 美国 , 校车 是 黄色 的 . +The broccoli today is not very fresh . 今天 的 西藍花 不是 很新 鮮 . +Shake my hand . 和 我 握手 . +Which goes faster , a ship or a train ? 船 和 火车 哪个 跑得快 ? +Mary is tall . 瑪麗 很 高 . +Watch your step . 走路 小心 . +Tom has lost his mind . 湯姆 失去 理智 了 . +Somebody has stolen my hair dryer . 有人 偷 了 我 的 吹 風機 . +I am sore all over . 我 全身 酸痛 . +Six divided by two equals three . 六 除以 二 得 三 . +Please say hello to your family . 带 我 向 你家 人 问好 . +Tom told us this morning that he and Mary were moving to Boston . 汤姆 告诉 我 今天上午 他 和玛丽 要 搬到 波士顿 . +How do I explain that to Tom ? 我 怎麼 跟 湯姆 解釋 ? +What do we want ? 我們 要 什麼 ? +Please get dressed . 请 穿衣服 . +This flower is the most beautiful of all flowers . 这 朵花 是 所有 花 中 最 漂亮 的 . +It is good to be a winner . 做 个 赢家 很 好 . +I think that I now have enough money to buy the car I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Where is the United Airlines check @-@ in counter ? 聯合 航空公司 辦理 登機 手續 的 櫃 檯 在 哪 裡 ? +Will Tom really do that ? 湯姆真 要 做 嗎 ? +The time will soon come when man will be able to travel to the moon . 在 不久 的 将来 人类 会 可以 去 月球 旅游 . +Of course she passed the test . 當然 , 她 通過 了 測驗 . +Tom has a reservation . 汤姆 有 预约 . +You are the one who suggested that we travel together . 你 是 那個 建議 我們 一起 旅行 的 人 . +Their cattle are all fat . 他們 的 牛 都 很 肥 . +He threw a piece of meat to a dog . 他 丢 了 块 肉 给 一条 狗 . +I know what is in the box . 我 知道 盒子 裡 有 什麼 . +I have more money than Tom . 我 比 汤姆 有钱 . +I can hardly understand what he says . 我 幾乎 無法 了解 他 說 的 話 . +I am too sleepy to do my homework . 我 太 累 了 , 做不了 功课 . +Can we stop fighting ? 我们 能 不 打 了 吗 ? +I was somewhere else . 我 在 另 一个 地方 . +Fire is always dangerous . 火 總是 危險 的 . +We have received a lot of applications in answer to our advertisements . 我們 已經 收到 了 很多 回應 我們 廣告 的 申請 . +He said that you had better go . 他 說 你 最好 去 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +She will be here this evening . 她 今天 晚上 將 在 這裡 . +Does anyone else have any advice ? 有人 還 有 什麼 建議 嗎 ? +She was sitting under a tree . 她 在 一棵树 下 坐 着 . +What languages are spoken in America ? 在 美国 人们 说 哪些 语言 ? +Lie still . 躺 着 不动 . +We climbed the mountain last year . 我們 去年 爬上 了 這 座 山 . +There is not a drop of water left . 沒有 剩下 一滴水 . +Malaria is carried by mosquitoes . 瘧疾 是 由 蚊子 傳染 的 . +I do not like studying in this heat . 我 不 喜歡 在 這麼 熱 的 氣 溫下 唸 書 . +They are not afraid of hard work . 他們 不怕 艱苦 的 工作 . +This is so boring . 这 太 无聊 了 . +I do not like eggs . 我 不 喜欢 吃 鸡蛋 . +He usually goes to work at 8 a.m. 通常 , 他 早上 8 点 去 上班 . +I do not play tennis that well . 我 网球 打 得 不 那么 好 . +I quickly ate lunch . 我 迅速 地 吃 了 午飯 . +I want some potatoes . 我 要 几个 土豆 . +Tom is single and has a three @-@ year @-@ old daughter . Tom 單身 , 他 有個 三歲 的 女兒 . +She refused to do what they wanted . 她 拒絕 做 他們 想要 的 事 . +As long as you keep quiet , you can stay here . 只要 你 保持 安靜 , 你 可以 留在 這裡 . +Hand me my towel . 幫 我 遞 一下 毛巾 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +America is very big . 美洲 很大 . +Why did not you tell Tom that you were married ? 你 为什么 不 告诉 汤姆 你 已经 结婚 了 ? +Who died ? 谁 死 了 ? +I am an optimist by nature . 我 生性 樂觀 . +Everyone likes Tom . 大家 都 喜歡 湯姆 . +Tom covered his face with his hands . 汤姆 用 他 的 手 捂住 了 他 的 脸 . +You can get from Washington to New York by train . 你们 可以 乘火车 从 华盛顿 去 纽约 . +How do you want this handled ? 你 想 怎麼 處理 ? +I 'd like a receipt , please . 麻煩 我 要 一張 收據 . +I can not tell you now . 我 現在 不能 告訴 你 . +I need some good advice . 我 需要 一些 好 的 忠告 . +The answer misses the point . 回答 偏 了 . +Could I get some tea ? 可以 给 我 一些 茶水 吗 ? +He is shorter than Tom . 他 比 湯姆 矮 . +Is there anything that needs to be done ? 有 甚麼 事 要 做 嗎 ? +He was the first to come . 他 是 第一 個 來 的 . +It is up to you to decide . 由 你 來 決定 . +We had an unpleasant experience there . 我們 在 那裡 有 一個 不 愉快 的 經歷 . +He got a master is degree in law . 他 得到 了 法律 碩士 學位 . +We may need some . 我們 可能 需要 一些 . +The patient is in a deep coma . 患者 现在 处于 深度 昏迷 状态 . +I do not like the way you laugh at her . 我 不 喜欢 你 嘲笑 她 的 方式 . +I am going to learn French . 我 要 学法语 . +To make matters worse , he is not even conscious of annoying his neighbors . 让 事情 更 糟糕 的 是 , 他 没有 注意 到 他 打扰到 了 邻居 . +The grass looks nice . 草地 看来 不错 . +What time do you close ? 你们 几点 关门 ? +I borrowed money from my father . 我 向 我 父親 借錢 . +I 'd like you to have an ultrasound . 我 想 讓 你 接受 超聲 檢查 . +Spanish is spoken in twenty countries . 有 二十 個 國家 說 西班牙 語 . +They all laughed at his jokes . 他們 全都 被 他 的 笑話 逗笑 了 . +She invited Tom and me to the party . 她 邀請 我 和 湯姆 去 派 對 . +I would like to have a cup of coffee . 我 想要 一杯 咖啡 . +I wish you a happy birthday . 我 祝 你 生日快乐 . +Tom , I want to have a chat with you . Tom , 我 想 和 你 談談 . +I do not like wearing socks . 我 不 喜歡 穿 襪子 . +Tom headed out the door . 汤姆 向 门 走 去 . +I asked Tom what he was reading . 我 问 了 汤姆 在读 什么 . +She was born in America . 她 生 在 美洲 . +In case the shipment is delayed , we have special delay insurance . 万一 船运 迟 了 , 我们 有 特别 的 迟到 保险 . +Is it really that hard to speak French ? 说 法语 真 有 那么 难 吗 ? +Where is the nearest drugstore ? 最近 的 藥店 在 哪裡 ? +She was making tea . 她 正在 泡茶 . +I like both science and math . 科学 和 数学 我 都 喜欢 . +I want you to take a break . 我 想 讓 你 歇歇 . +Just give me your name and address . 只要 給 我 你 的 姓名 和 住址 . +I had a dream about him . 我 夢 到 了 他 . +We got to be friends . 我们 交 了 朋友 . +Do you like apples ? 你 喜欢 苹果 吗 ? +Whose fault is it ? 是 誰 的 錯 呢 ? +I did not sell Tom my car . 我 没 把 我 的 车 卖 给 汤姆 . +Tom would still be alive if he had been wearing his seat belt . 要是 汤姆 系 上 安全带 的话 , 他 就 不会 死 的 . +You need to pay extra for the batteries . 电池 要 额外 付钱 . +Who touched my gun ? 誰 碰 了 我 的 槍 ? +Tom is afraid to go out alone at night . 汤姆 害怕 晚上 一个 人 出门儿 . +I wish I could buy you everything you wanted . 我 希望 我 能 买下 你 想要 的 所有 东西 . +Send for the doctor at once . 立刻 派 人 去 請 醫生 來 . +I love her and she loves me . 我 愛 她 , 她 也 愛 我 . +Everyone except Tom ate pizza . 所有人 除了 汤姆 都 吃 了 比萨 . +The radio did not mention the incident . 電台 沒有 提到 這個 事故 . +She appears to have many friends . 她 看 起來 好像 有 很多 朋友 . +Tom is my grandfather . Tom 是 我 爺爺 . +Tom is deceitful . 汤姆 是 个 骗子 . +I caught three fish yesterday . 昨天 我 釣 了 三條 魚 . +What is the point in doing that ? 那樣 做 有 什麼 用 ? +I was late for school this morning . 我 今天 早上 上學 遲到 . +I will go by myself . 我 會 自己 走 . +I feel cold . 我 觉得 冷 . +I have been busy writing a short story . 我 一直 忙于 写 一部 短篇小说 . +Why do not you eat pineapple ? 你 為 什麼 不吃 菠蘿 ? +Might I ask your name and address ? 我 能 问 一下 您 的 姓名 和 住址 吗 ? +It cost me a thousand yen to get my bicycle fixed . 修理 我 的 腳踏車 花 了 我 一千 日 圓 . +I did not tell Tom what needed to be done . 我 沒 告訴 湯姆 要 做 甚麼 . +Every cloud has a silver lining . 山 窮水盡疑無路 , 柳暗花明又一村 . +How does this work ? 這 是 怎麼 運行 的 ? +It is hard to quit smoking . 戒烟 难 . +We are Canadians . 我們 是 加拿大人 . +What does he say in his letter ? 他 在 信 上 说 什么 ? +I am glad I could help . 能够 出 一份 力 太好了 . +He was a rugby player . 他 曾 是 个 英式 橄榄球 运动员 . +I will be watching you . 我 會 看著 你 . +No one will see us . 沒 有人 會 看到 我們 . +Please send us more information . 請 給 我們 更 多 訊 息 . +Can I eat this orange ? 我 能 吃 这 只 橙子 吗 ? +There were several rooms still vacant . 还有 几间 空房 . +The time has come when I must tell you the truth . 現在 是 我 必須 告訴 你 真相 的 時候 了 . +You swim better than me . 你 游泳 游得 比 我 好 . +Did the police find any fingerprints ? 警察 找到 指纹 了 吗 ? +You really are tall , are not you ? 你 真的 很 高 , 不是 嗎 ? +I caught a beautiful butterfly . 我 抓到 一 隻 漂亮 的 蝴蝶 . +I want you to be prepared . 我 想 讓 你 準備 好 . +I have worn holes in my socks . 我 把 襪子 穿破 了 . +Do you have a knife ? 你 有 刀 吗 ? +He put the book on the shelf . 他 把 书 放在 了 书架上 . +The last person I told my idea to thought I was nuts . 最后 一个 听 我 说 我 的 主意 的 人 认为 我 疯 了 . +They were always making jokes . 他们 一直 闹笑话 . +Some people do not like to deposit their money in banks . 有些 人 不 喜欢 把 钱 存 银行 . +I feel like everybody is watching me . 我 感觉 大家 都 在 关注 我 . +I have lived here since I was a boy . 我 还是 一个 小男孩 的 时候 就 住 在 这里 . +Traffic is a major urban problem . 交通 是 都市 的 一個 主要 問題 . +You can borrow my car anytime . 你 隨時 可以 借用 我 的 車 . +You are free to go . 你 可以 走 了 . +We work every day but Sunday . 我們 除了 週日 每 一天 都 工作 . +I hope everything will be fine in the end . 我 希望 最后 一切 都 好 . +Who do you want to talk to ? 你 想 跟 誰 說 話 ? +I got the roller skates for nothing . 我 免費 得到 溜冰鞋 . +Enjoy your holidays . 度假 愉快 ! +Open your book to page nine . 打開 你 的 書 到 第九 頁 . +Who did you give it to ? 你 把 它 給 誰 了 ? +The next concert will take place in June . 下一场 音乐会 将 在 六月份 举办 . +She went to the park with him . 她 跟 他 去 公園 了 . +Grab that . 抓住 那个 . +He is hard to get along with . 他 這個 人 很 難相 處 . +How much will it all cost ? 一共 要 多少 錢 ? +Europeans like to drink wine . 歐洲 人 都 愛 喝 葡萄酒 . +Please do not use my name . 請 不要 用 我 的 名字 . +What is your nickname ? 你 的 昵称 是 甚麼 ? +Tom is not interested in Mary at all . 汤姆 对 玛丽 一点 也 不感兴趣 +Is Tom autistic ? 汤姆 有 自闭症 吗 ? +Give me something to eat . 給 我 點 東西 吃 . +I managed to make him understand it . 我 設法 讓 他 明白 了 . +He mistook me for my mother . 他 把 我 誤 認為 是 我 的 母親 . +Tom abstained from voting . 汤姆 投票 弃权 . +I wonder if you are as busy as we are . 我 担心 你 會 跟 我們 一樣 忙 . +Both Tom and Mary can speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +How often did you visit Kyoto ? 你 多常 造訪 京都 ? +This is exactly what I wanted . 我 想要 的 就是 这个 . +This blue sweater is very pretty . 這件 藍色 毛衣 很漂亮 . +This message does not make sense . 這個 消息 沒有 道理 . +They changed the system . 他們 改變 了 制度 . +Tom is interested in mountaineering . 湯姆 對 登山 感興趣 . +That is the reason he became angry . 那 就是 他 生气 的 理由 . +The fire was out . 火 熄灭 了 . +He clipped the sheep . 他 為 羊 隻 修剪 羊毛 . +There is no one in the room . 沒 有人 在 房間 裡 . +She will have to cook for everyone . 她 將 必須 為 大家 做飯 . +I plan to never drink again . 我 打算 絕 不再 喝酒 . +The plane was three hours late due to bad weather . 由于 天气 不好 , 飞机 迟到 了 3 小时 . +I will visit him tomorrow . 明天 我 將 拜訪 他 . +Change trains at the next station . 在 下 一站 換 火車 . +We had a conversation about baseball . 我們 交談 了 有關 棒球 的 事 . +Do I have to take off my shoes here ? 在 這裡 我 必須 脫 鞋 嗎 ? +I went there yesterday . 昨天 我 去 了 那裡 . +I hope that Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +We have been going out three months . 我們 外出 了 三個 月 . +Lemons are sour . 檸檬 是 酸 的 . +He forgot to turn off the light . 他 忘 了 關燈 . +Could you please repeat that ? 你 能 重复 一遍 吗 ? +Neither Tom nor Mary will do that . 湯姆 和 瑪麗 都 不 會 做 那件事 . +Let is play soccer . 去 踢足球 吧 . +I want a massage . I need to relax . 我 想要 按摩 . 我 需要 放松 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +Can I talk to you privately for a minute ? 我 能 跟 你 私下 谈 一分钟 吗 ? +I gave her a lift to town . 我 載 她 去 城裡 了 . +I do not think Tom will go to Boston next weekend . 我 不 認為 湯姆 下週 會 去 波士 頓 . +The situation has not changed at all . 情况 丝毫 没有 改变 . +How about tomorrow night at nine ? 明天 晚上 九点 怎么样 ? +Tom was excited to go to the concert . 汤姆 为 去 音乐会 而 激动 . +Hey , your dog just bit me . 嘿 , 你 的 狗 刚 咬 了 我 . +Why does not he tell me jokes anymore ? 為 甚麼 他 不再 跟 我 講 笑 話 了 ? +I love jokes about animals . 我 爱 听 有关 动物 的 笑话 . +The armed forces occupied the entire territory . 军队 占领 了 整片 领土 . +This is the room where the body was found . 这 就是 发现 尸体 的 房间 . +It was her little sister that broke her toy . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +Your name has been crossed off the list . 你 的 名字 已经 从 名单 删除 了 . +I went there many times . 我 去 那裡 很 多次 了 . +He was opposed to monopolies . 他 反对 垄断 . 他 曾经 / 以前 反对 垄断 +Have not I seen you before ? 我 以前 沒見 過 你 嗎 ? +Your behavior is intolerable . 你 的 行为 让 人 无法忍受 . +Fill it up . 把 它 填滿 . +The well has run dry . 這 口 井 乾 涸了 . +That is what I hope . 我 希望 如此 . +I studied for one hour . 我 讀 了 一個 小 時 的 書 . +We almost had Tom convinced . 我们 差不多 说服 Tom 了 . +She waved at me before she got on board the plane . 她 上 飞机 前 , 给 我 招 了 招手 . +Taxi fares will go up next month . 計程 車費 將 在 下 個 月 漲價 . +A Persian cat was sleeping under the table . 波斯猫 在 桌子 下面 睡觉 . +The children washed their feet . 孩子 们 洗 了 他们 的 脚 . +That Japanese word has no equivalent in English . 那个 日文 词汇 没有 对应 的 英文 . +There are a lot of eggs in the box . 这个 盒子 里 有 很多 蛋 . +How is your last name written ? 你 的 姓氏 怎么 写 ? +Where do you have pain ? 你 哪裡 痛 ? +I want to eat some cake first . 我 想 先 吃 點 蛋糕 . +We just want to find Tom . 我們 只是 想 找 Tom . +Are you afraid of dogs ? 你 怕 狗 吗 ? +Let is end this nonsense . 让 我们 结束 这 胡言乱语 . +I feel a lot better today . 我 今天 感觉 好多 了 . +Are we done ? 我们 完成 了 吗 ? +Please turn on the radio . 请 打开 收音机 . +Her birthday party will be held tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +They helped him get to Canada . 他們 幫 他 去 加拿大 . +I could not stop myself from laughing . 我 不能 忍著 不 笑 . +He is highly intelligent . 他 聪明 得 很 . +I weighed myself on the bathroom scales . 我 用 浴室 的 体重 计量 了 体重 . +Can you guess my age ? 你 能 猜到 我 的 年龄 吗 ? +She almost passed out . 她 几乎 喝晕 了 . +I usually get up at 6 : 00 . 我 通常 在 六點鐘 起床 . +I do not like my hair at all . 我 根本 不 喜歡 我 的 頭 髮 . +Is Tom swimming ? 汤姆 在 游泳 吗 ? +They have a very nice veranda . 他们 有 一个 非常 漂亮 的 暖房 . +I do not think Tom trusts many people . 我 不 認為 湯姆 相信 許多 人 . +I got her to clean my room . 我 讓 她 把 我 的 房間 弄乾 淨 . +Please give me a blanket . 請 給 我 送 一塊 毯子 . +Quite by chance , I met my old friend at the airport . 很 幸运地 , 我 在 机场 遇到 了 我 的 老朋友 . +Let me explain it to Tom . 讓 我 跟 湯姆 說明 . +What mountain do you think is the second highest in Japan ? 你 认为 日本 第二 高峰 是 哪 座 山 ? +I am sure Tom will do his best . 我 确定 汤姆 会 尽力去做 . +What did you answer ? 你 回答 了 什么 ? +Tom clenched his teeth . 汤姆 咬紧牙关 . +I can not afford to play tennis . 我 負擔 不 起 打 網球 的 費用 . +Tom has recently become forgetful . Tom 最近 变得 健忘 了 . +Spell your name , please . 请 拼 一下 您 的 名字 . +I was barely able to work . 我 几乎 不能 工作 了 . +Mary is Tom is secretary . 玛丽 是 汤姆 的 秘书 . +Your CV has really impressed me . 你 的 履歷 給 我 留下 深刻 的 印象 . +It was raining when we arrived . 我們 到 的 時候 正在 下雨 . +I have a dog . 我 有 一条 狗 . +Did you call Tom ? 给 汤姆 打 过 电话 了 吗 ? +I need to get some stamps . 我 需要 一些 郵票 . +What do you call this flower ? 這個 花 叫 什麼 名字 ? +My father died four years ago . 我 的 父親 四年 前 去世 了 . +Tom is Mary is ex @-@ boyfriend . 汤姆 是 玛丽 的 前男友 . +The dog chased the rabbit . 狗 追 兔子 . +Do you feel lucky ? 你 觉得 幸运 吗 ? +She got wet to the skin . 她 渾身 濕透 了 . +Tom is friendly to everyone . 汤姆 对 每个 人 都 很 友好 . +English has become an international language . 英语 成为 了 一门 国际 语言 . +You had better not stay up late . 你 最好 不要 熬夜 . +They adopted the little girl . 他们 收养 了 那个 小女孩 . +Why have you been late to school every day this week ? 為 什麼 你 這個 禮 拜 每天 上學 都 遲 到 ? +I was sore for three weeks . 我 难受 三周 了 . +You have good reason to be angry . 你 有 充分 的 理由 生氣 . +Who is that woman in the brown coat ? 那个 穿 棕色 大衣 的 女人 是 谁 ? +I have just been to the post office . 我 剛剛 去 了 郵局 . +No drinkers allowed . 飲酒 者 不准 禁入 . +She wants to move out and find a place of her own . 她 想 搬出去 , 找 個 屬 於 自己 的 地方 . +Here is my baggage . 这 是 我 的 行李 . +The situation is worse than I 'd thought . 情況 比 我 想 的 還壞 . +She knows your mother very well . 她 對 你 的 母親 很 熟悉 . +My dad is busy . 我 爸爸 很忙 . +He used to be an imaginative boy . 他 曾經 是 一個 富有 想像力 的 男孩 . +The cat is watching the fish . 猫 看着 鱼 . +I 'd love to come with you . 我 想 和 你 一起 去 . +She can not play the piano very well . 她 無法 把 鋼琴 彈 得 很 好 . +How do you pronounce your name ? 你 怎 麼 唸 你 的 名字 ? +He disappeared without a trace . 他 消失 了 , 不留 一丝 踪迹 . +Let is discuss the matter right now . 让 我们 马上 讨论 这个 问题 吧 . +If you would move over , there would be room for everyone . 如果 您 移 過 去 一點 , 每個 人 就 可以 有空 間 了 . +I will see to it . 我 會 留意 的 . +What will the results be ? 結果 會 是 甚麼樣 的 ? +I knew this day was coming . 我 知道 這天 要來 . +Meet me there . 在 那裡 見 我 . +I was ten minutes late for school . 我 上學 遲到 了 十分 鐘 . +My uncle gave me a gift . 我 叔叔 给 了 我 一份 礼物 . +The kidnappers showed no sign of giving up . 這些 綁 匪 沒有 放棄 的 跡象 . +He is unable to buy a car . 他 不能 买车 . +Is there central heating in this building ? 这栋 楼 里面 有 中央 暖气 系统 吗 ? +I have a few friends here . 我 在 这儿 有 一些 朋友 . +All our efforts were in vain . 我们 所有 的 努力 都 白费 了 . +Tom hid in the shed . 汤姆 躲 在 棚里 . +We are looking for him . 我们 在 找 他 . +Tom is birthday was yesterday . 汤姆 的 生日 是 昨天 . +You are always as busy as a bee . 你 總是 跟 蜜蜂 一樣 地 忙碌 . +Who is the girl standing over there ? 站 在 那儿 的 女孩 是 谁 ? +Have you had your eyesight checked recently ? 你 最近 检查 视力 了 吗 ? +I love watching talk shows . 我 愛 看 脫口秀 . +Do not play in the street . 別 在 馬 路上 玩 . +Did you hear about the fire yesterday ? 你 聽 說 了 昨天 的 火災 嗎 ? +Tell me again . 重新 告訴 我 . +He objected to his wife working outside . 他 反对 妻子 在外 工作 . +This is ice . 這 是 冰塊 . +Fasten your seat belts . 系上 你們 的 安全带 . +You let me down . 你 让 我 失望 了 . +Tom wondered where Mary had learned French . 汤姆 想 知道 玛丽 在 哪里 学会 了 法语 . +I had to abstain from smoking while I was in the hospital . 在 医院 的 时候 , 我 不得不 戒烟 . +Never be afraid of making mistakes . 不要 害怕 犯錯 . +I do not think he will say yes . 我 不 認為 他 會 同意 . +I suggested that she go alone . 我 建議 她 一個 人 去 . +A map helps us to know where we are . 地图 帮助 我们 知道 所在 的 位置 . +Where did you get your hair cut ? 你 在 哪裡 剪 頭 髮 ? +People who break the law are punished . 觸犯 法律 的 人 受到 懲罰 . +Talking during a concert is rude . 在 音樂會 中 說 話 是 不 禮貌 的 . +He gets tired easily . 他 很 容易 觉得 累 . +I heard a car pull up . 我 听到 一辆车 停 了 下来 . +Her daughter has become a beautiful woman . 她 的 女兒 已經 變成 一個 漂亮 的 女人 . +That book was interesting . 那 本書 很 有趣 . +I was unable to go to his birthday party . 我 那时 没法 去 他 的 生日派对 . +I am not serious . 我 不是 认真 的 . +Short skirts are already out of fashion . 短裙 已經 過時 了 . +Balls are round . 球 是 圆 的 . +Could you exchange rooms with me ? 可以 跟 我 交換 房間 嗎 ? +He likes music very much . 他 非常 喜歡 音樂 . +The doctor gave it to her . 醫生 把 它 給 了 她 . +The picture is hanging on the wall . 畫 掛 在 牆上 . +A beautiful lake lay just beyond the forest . 森林 外 有 一个 美丽 的 湖泊 . +My father often reads the newspaper during meals . 我 父亲 经常 在 吃饭 时 读 报纸 . +The soldiers are ready for battle . 士兵 們 準備 好要 戰鬥 了 . +I will be in my office from ten tomorrow . 我 明天 十点 起会 在 办公室 里 . +Stay there . 留在 这里 别动 . +Tom is living somewhere in Boston . 湯姆 住 在 波士 頓 某地 . +I feel like eating something sweet . 我 想 吃 點 甜 的 東西 . +He is lying through his teeth . 他 明显 在 撒谎 . +Tom is an important person . 湯姆 是 個 重要 的 人 . +We often played chess after school . 我們 常常 在 放學 後 下棋 . +Tom , we have to talk . 汤姆 , 我们 必须 谈谈 . +Bring the key . 帶 鑰匙 來 . +Action speaks louder than words , but not nearly as often . 行胜 于 言 , 但 并 不是 所有 情况 都 是 这样 . +I got my friends to help me . 我 請 我 的 朋友 來 幫助 我 . +We want to spend our honeymoon in Australia . 我们 想 在 澳大利亚 过 蜜月 . +Can I have a few words with you ? 可不可以 和 你 说 几句 ? +They cleared the street of snow . 他們 清理 了 街上 的 積雪 . +I will send it to you tomorrow . 我 明天 把 它 寄给 你 . +Is the snake alive or dead ? 這條 蛇 是 活 的 還 是 死 的 ? +Few students knew his name . 很少 学生 知道 他 的 名字 . +I need something to write with . 我 需要 一些 用來 寫 字 的 東西 . +I want to get a haircut before I go on the trip . 我 想 在 出發 旅行 前 剪 個 頭 髮 . +Tom can write almost like a native speaker , but his pronunciation is terrible . Tom 写作 可以 写 的 像 本国 人 一样 , 可是 他 的 发音 很烂 +She had a vague feeling of guilt . 她 隱約 地 有 一種 的 內疚 感 . +I 'd love to find out why she said so . 我 很 想 找出 她 为什么 这么 说 的 原因 . +Driving on a slippery road can lead to a car wreck . 在 光滑 的 路上 开车 会 导致 车祸 . +He swam across the river . 他 遊 過 了 河 . +Do you know if Tom has spoken to Mary recently ? 你 是否 知道 最近 湯姆 跟 瑪麗 有 沒有 說 過 話 ? +I think I have done enough . 我 認為 我 做 得 夠 了 . +How did you get back so soon ? 你 怎么 回来 得 这么 快 ? +I have a surprise for you . 我 帶 了 一個 驚喜 給 你 . +Have you ever seen Tom when he is angry ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +Money does not grow on trees . 錢 不 會 從 樹上 長 出來 . +People have two legs . 人 有 两只 脚 . +It is getting lighter outside . 外面 天色 越來越 亮 了 . +The soldiers were guarding the bridge . 士兵 們 守衛 著 這 座 橋 . +Do not let them forget me . 别 让 他们 忘 了 我 . +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +He drives very fast . 他 開車 速度 非常 快 . +Where is the next train going ? 下 一列 火車 去 哪裡 ? +Please open the window . 麻煩 你 開 一下 窗 . +I do not like to sing in public . 我 不 喜歡 在 公共 場合 唱歌 . +The baby went to sleep at once . 這個 小 嬰兒 立刻 去 睡覺 了 . +We are just like brothers . 我們 就 像 兄弟 一樣 . +Do not worry . You will make it . 不要 擔心 . 你 辦 得到 的 . +He and I walked together . 我 和 他 一起 走 . +When are you going to quit smoking ? 你 何時 要 戒煙 ? +He knows how to make a radio . 他 知道 如何 做 收音机 . +Do you think animals have a soul ? 你 认为 动物 有 灵魂 吗 ? +I can not find him anywhere . 我 在 哪儿 都 没 找到 他 . +What is your favorite game to play with friends ? 你 最 喜歡 和 朋友 玩 什麼 遊戲 ? +They both cried after hearing the tragic news . 聽到 這件 悲劇 , 他倆 盡 皆 哭泣 . +I was watching TV when the phone rang . 电话响 的 时候 , 我 在 看电视 . +She answered in tears . 她 很 傷 心地 回答 . +She tried to kill herself . 她 企圖 自殺 . +I telephoned her at once . 我 立刻 打 電話 給 她 . +I like playing baseball . 我 喜歡 打 棒球 . +Cats hate vacuum cleaners . 猫 很 讨厌 吸尘器 . +Everyone is laughing . 每個 人 都 在 笑 . +You are a month behind in your rent . 你 的 租金 遲交 了 一個 月 . +Where were you yesterday ? 您 昨天 在 哪儿 ? +While napping , I had a strange dream . 我 睡午觉 的 时候 做 了 个 怪 梦 . +I am able to drive a car . 我会 开车 . +Try some . 试试 吧 . +I am not good at mathematics . 我 的 數學 不好 . +You sound like a politician . 你 说话 像 个 当官 的 . +We accept checks . 我們 接受 支票 . +I wrote this book . 我 写 了 这 本书 . +If she was displeased , she never showed it . 如果 她 不 高興 , 她 從來 不 表現 出來 . +I do not see why I had to come along . 我 不 明白 为什么 我 得 跟着 去 . +We gave blood to help the child . 我們 捐血 來 幫助 這個 孩子 . +That song was written by Tom . 那首歌 是 Tom 寫 的 . +Her oldest daughter got married . 她 的 大 女兒 結婚 了 . +Bring him in . 带 他 进来 . +I am not very good at golf . 我 不 太 擅长 打 高尔夫球 . +I have had enough . 我 已經 吃 飽 了 . +I have a stomachache , doctor . 我 胃痛 , 醫生 . +My strength is all gone . 我 的 力气 耗尽 了 . +Why are you here ? 你 為 什麼 在 這 ? +His scores are always better than mine , even though he does not study very much . 他 的 分数 总 比 我 高 , 尽管 他 学习 得少 一点 . +He asked her to call him later . 他 要求 她 稍 後 打 電話 給 他 . +I listened to some CDs last night . 我 昨晚 了聽 一些 唱片 光碟 . +When will you go out ? 你 什麼 時候 要 出去 ? +The importance of music is underrated . 音乐 的 重要性 被 低估 了 . +Are there any messages for me ? 有 任何 給 我 的 訊息 嗎 ? +Will you give me a light ? 借 個 火 好 嗎 ? +I want this camera . 我 要 這 台 相機 . +Are you still at home ? 你 還 在家 裡 嗎 ? +My car burns a lot of gas . 我 的 車子 很 耗油 . +It is my brother is . 它 是 我 兄弟 的 . +You do not need to call me . 你 不必 打电话 给 我 . +The men is room is on the second floor . 男厕所 在 二楼 . +I am not inflexible . 我 不是 死板 的 . +It is going to get cold tonight . 今晚 天气 会 变冷 . +What is she doing ? 她 在 做 什麼 ? +Do not go above the speed limit . 不要 超速 . +You can watch TV after supper . 晚餐 之 後 你 才 可以 看電視 . +She fell down the ladder . 她 从 梯子 上 摔 了 下来 . +War does not make anybody happy . 战争 不会 使 任何人 幸福 . +I had a good time this evening . 今天 晚上 我 玩 得 很 開心 . +In case of an emergency , get in touch with my agent . 万一 有 紧急情况 , 联系 我 的 代理人 . +Tom has lived in Boston for over a year . 汤姆 住 在 波士顿 已经 一年 多 了 . +I found you , did not I ? 我 找到 你 了 , 没有 么 ? +Would you pass the salt , please ? 請 你 把 鹽 遞 過 來 好 嗎 ? +Do you have a car ? 你 有 车 吗 ? +Who are you ? 你 是 誰 ? +He explained the literal meaning of the sentence . 他 解释 了 句子 的 字面 意思 . +You should begin with easier questions . 你 應 該 先 從 最 簡單 的 問題 開始 . +She is drunk with happiness . 她 陶醉 在 幸福 裡 . +That is perfect . 那 是 完美 的 . +I am sure Tom wanted to come along . 我 确定 汤姆 想来 . +To my astonishment , my money was gone . 令 我 惊讶 的 是 , 我 的 钱 没 了 . +The losses are incalculable . 損失 是 無法 估計 的 . +She was more beautiful than all the others . 她 比 其他人 都 漂亮 . +Do this work by tomorrow if possible . 如果 可能 的话 , 在 明天 前 做好 这个 工作 . +Come if you can . 你 能 来 就 来 ! +He asked me a question . 他 問 了 我 一個 問題 . +It is a risk that Tom and I are not willing to take . 我 和 汤姆 都 不 愿意 冒 这个 险 +As far as I am concerned , this coffee is too strong . 这 咖啡 对 我 来说 太 浓 了 . +China is about twenty @-@ five times as large as Japan . 中国 的 版图 大概 是 日本 的 二十五倍 . +This word comes from Greek . 這個 詞 來 源于 希臘語 . +Tom kept talking all night . 湯姆 整夜 一直 在 說 話 . +Tom is now studying in his room . 湯姆 現在 在 他 的 房間 裡 學習 . +People who will lie for you , will lie to you . 会 为 你 说谎 的 人 , 就 会 对 你 说谎 . +Tom nodded approval . 汤姆 点头 同意 . +Please help yourself to some fruit . 請 你 隨便 吃 點 水果 . +What are you doing tonight ? 你 今晚 在 做 什麼 ? +They say that Venice is a beautiful city . 他們 說 威尼斯 是 個 漂亮 的 城市 . +The soup is thick . 汤 很 稠 . +Tom does not know if Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +The old man lived there by himself . 這個 老人 獨自 住 在 那裡 . +No one was killed in the fire . 沒人死 在 火 裡 . +Tom probably would not do something that stupid . 湯姆 可能 不 會 做 蠢事 . +Where are your things ? 你 的 東西 在 哪裡 ? +I should have declined . 我 本 应 婉拒 . +I came here to thank you . 我 來 感謝 你 . +I am fond of cars . 我 喜歡 車 . +Tom plays the violin well . 汤姆 拉 小提琴 拉 得 很 好 . +My camera was stolen on the train . 我 的 照相机 在 火车 上 被 偷 了 . +I usually walk to school . 一般 我 步行 去 学校 . +Help yourself to whatever you like . 隨 你 喜歡 隨便 吃 . +It is pretty simple . 它 真 簡单 . +The air felt a little cold . 空气 有点 冷 . +Tom could not go to college because his family did not have enough money . 因为 家里 钱 不够 所以 汤姆 没能 念 大学 . +We all chipped in to buy our teacher a birthday present . 我们 所有人 凑份子 给 老师 买 生日礼物 . +It is me that is wrong . 是 我 错 了 . +I have never stopped loving Tom . 我 從 沒 停止 過 愛 湯姆 . +I thought Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +Do you really want me to go there right now ? 你 真 想 让 我 马上 到 那里 去 吗 ? +Let me tell you the reasons that I do not agree with you . 让 我 来 告诉 你 我 不 赞成 你 的 理由 . +I bought a red sports car . 我 買 了 一輛 紅色 的 跑車 . +You should have worked harder . 你 應 該 要 更 努力 的 . +I have not had much sleep lately . 我 最近 没 怎么 睡觉 . +I have just started playing tennis . 我 剛 開始 打 網球 . +My brother is holding a camera in his hand . 我 弟弟 手里 拿 着 一个 摄像机 . +Thank you for inviting me to dinner . 谢谢 你 邀请 我 吃饭 . +All you can do is to wait . 所有 你 能 做 的 就是 等待 . +We must obey the rules . 我们 必须 遵守规则 . +This little girl let the birds escape . 這個 小女孩 讓 小 鳥 脫逃 了 . +Are not you happy about this ? 你 對 此 不 高興 嗎 ? +They will let us know what happens . 他们 会 让 我们 知道 发生 了 什么 . +Tom is quite fussy . 汤姆 相当 挑剔 . +Tom is house has a nice garden . 湯姆 的 住宅 有 一個 不錯 的 花園 . +Industry was growing quickly . 工業 發展 迅速 . +I got it for next to nothing . 我 簡直 不用 花錢 就 買到 了 . +School finishes before noon on Saturdays . 學校 在 星期六 中午 之前 放學 . +Do you have this in a bigger size ? 你 有 比 這個 再 大 一點 的 尺寸 嗎 ? +Can I speak to the head nurse ? 我 能 跟護 士長 說 話 嗎 ? +We used to play in the park . 我们 过去 常 在 公园 玩 . +She stayed there for a moment . 她 在 那裡 留 了 一會 . +" Trust me , " he said . “ 相信 我 . ” 他 说 . +Tom told Mary something she did not want to hear . 湯姆 告訴 了 瑪麗 她 不想 知道 的 事 . +Who is your favorite TV star ? 谁 是 你 最 喜爱 的 电视 明星 ? +Is it tasty ? 好吃 嗎 ? +She warned him not to go alone . 她 警告 了 他 不要 一個 人 去 . +I will not eat ice cream . 我 不 會 吃 冰淇淋 . +I am going to go tell Tom . 我 要 告诉 汤姆 . +I like to play basketball . 我 喜歡 打 籃球 . +What time is it in Boston ? 波士顿 现在 几点 ? +What have you come here for ? 您 来 这儿 干嘛 ? +We will have learned English for five years next year . 到 明年 我们 学 英语 就 有 5 年 了 . +The lecture lasted for two hours . 這場 演講 持續 了 兩個 小 時 . +I heard the door close . 我 听到 门 关了 . +Has anybody here been to Hawaii ? 这儿 有人 去过 夏威夷 吗 ? +You are not coming , are you ? 你 不 會 來 , 是 嗎 ? +I like to watch baseball games . 我 喜歡 看 棒球 比賽 . +Do you know whether or not she can speak English ? 你 知道 她 是否 會 講 英語 嗎 ? +She is going to France next week . 她 下週 要 去 法國 . +I do not like novels without heroes . 我 不 喜欢 没有 英雄 的 小说 . +I am grateful for what Tom did . 我 很 感激 汤姆 所 做 的 . +Be quiet , all of you . 你們 所有 的 人 都 安靜 . +Could you tell me where I can get a bus ? 你 能 告诉 我 能 在 哪里 上 公交车 吗 ? +Where does she want to go ? 她 想 去 哪裡 ? +Lend me your dictionary , please . 请 把 你 的 字典 借给 我 . +Tom put the large picnic basket on the passenger seat next to him . 汤姆 把 那个 大 野餐 篮子 放在 他 旁边 的 乘客 座位 上 . +What is not necessary ? 什麼 是 不必要 的 ? +This word is difficult to pronounce . 這個 字 很 難 發音 . +Can I have some tea ? 可以 给 我 一些 茶水 吗 ? +School begins at half past eight . 學校 八點半 開始 上課 . +Excuse me . Do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +The girl did not say anything . 這個 女孩 什麼 也 沒 說 . +She hung the calendar on the wall . 她 把 日 曆 掛 在 牆 上 了 . +Do you want to go somewhere ? 你 打算 去 什么 地方 吗 ? +It is just your imagination . 那 只是 你 的 想象 . +You 'd better get away from here at once . 你 最好 立刻 離開 這裡 . +May I go to the restroom ? 我 可以 去 洗手 間 嗎 ? +I am eating rice . 我 在 吃 米饭 . +We have a test tomorrow . 我们 明天 有个 测验 . +They answered their teacher is question with difficulty . 他们 好不容易 才 回答 了 他们 老师 的 问题 . +It is likely to rain tomorrow . 明天 有 可能 會 下雨 . +We enjoyed listening to the music . 我們 喜歡 聽 音樂 . +Ogai is his favorite author . Ogai 是 他 最 喜欢 的 作者 . +She was absorbed in the video . 她 迷上 了 视频 . +He had his head in the clouds in class . 他 在 課 堂上 心不在焉 . +They will not come until tomorrow . 他們 明天 才 會 來 . +She is capable of teaching English . 她 可以 教 英语 . +Japan is in Asia . 日本 在 亚洲 . +What size shoes do you wear ? 你 穿 幾號 的 鞋子 ? +I saw a dirty dog enter the garden . 我 看见 一条 脏 狗 进 了 花园 . +The baby started crying . 宝宝 开始 哭 了 . +Chocolate has more iron than spinach . 巧克力 含有 比 菠菜 更多 的 鐵質 . +She played the guitar and he sang . 她 彈 吉他 , 他 唱歌 . +You are frightening me . 你 在 嚇 我 . +I am playing the piano now . 我 現在 正在 彈 鋼琴 . +I never should have let Tom eat so much candy . 我 不論 甚麼 時候 都 不該 讓 湯姆 吃 那麼 多糖 . +It will cost you more to go by plane . 搭 飛機 將 花 你 比較 多 的 錢 . +You cannot achieve anything without effort . 没有 什么 是 不劳而获 的 . +He is richer than anyone else in this town . 他 比 镇里 的 其他人 都 有钱 . +She remained silent all day . 她 一整天 都 沉默不语 . +My father did not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +Excuse me , but may I open the window ? 不好意思 , 请问 我 可以 开窗 吗 ? +This article is nonsense . 這 文章 是 胡 說 . +He suddenly became very happy . 他 突然 變得 非常 開心 . +Answer the telephone , will you ? 請 你 接聽 一下 電話 , 好 嗎 ? +Why are not you listening ? 你 為 甚麼 不 聽 ? +Tom is in the other room drinking vodka . Tom 在 別的 房間 喝 伏特加 . +Why is Tom still at school ? 为社么 汤姆 还 在 学校 ? +She speaks a little Arabic . 她 说 一点 阿拉伯语 . +My sister is shorter than you . 我 妹妹 比 你 矮 . +There are many beautiful parks in London . 伦敦 有 很多 漂亮 的 公园 . +We do not like our neighbors , and they do not like us , either . 我們 不 喜歡 我們 的 鄰居 , 而 他們 也 不 喜歡 我們 . +The black telephone costs more than the white . 黑 的 电话 比 白 的 花钱 多 . +I will not see her again . 我 不 會 再 見 她 . +It is impossible to go out now . 現在 不 可能 出去 . +Keep the dog out . 别 让 狗 进来 . +I hid under the table . 我 藏 在 桌子 底下 . +This pencil is better than that one . 這 支 鉛 筆 比那 隻 好 . +Tom should be here soon . 汤姆 应该 很快 就 到 . +Which group do you want to join ? 你 想 加入 哪 一組 ? +I did not get your name . 我 沒 聽 清楚 你 的 名字 . +Put some water into the vase . 在 花瓶 裡 裝 些 水 . +It is better than nothing . 有 比 沒有 好 . +I would like to visit your country someday . 我 想 某 一天 拜访 你 的 国家 . +During the exam , Tom cheated off Mary . 在 考试 的 时候 , 汤姆 作弊 抄 了 玛丽 的 答案 . +We sent out the invitations yesterday . 我们 昨天 发出 了 邀请 . +What is the ultimate purpose of education ? 教育 的 最终 目的 是 什么 ? +Let me think for a minute . 让 我 想想 . +I can make that happen . 我 不能 让 那事 发生 . +The dog followed its master , wagging its tail . 狗 搖著 尾巴 跟著 主人 . +You 'd better check this out . 你 最好 检查一下 这个 . +We are eating apples . 我們 在 吃 蘋果 . +My father has a restaurant . 我 父亲 有家 餐馆 . +The boy eats bread . 這個 男孩 吃 麵 包 . +Tom certainly has a tough job . 汤姆 确实 有个 麻烦 的 工作 . +When does the next train leave ? 下 一班 火車 什麼 時候 開 ? +She looks a lot like her mother . 她 非常 像 她 的 母亲 . +Tom will do that . 湯姆會 做 . +Tom wanted to stay home and relax instead of hiking with his children . 汤姆 想待 在家 休息 而 不是 和 他 的 孩子 们 出去 远足 . +Compared to our house , yours is a mansion . 跟 我们 的 房子 比 , 你 的 就是 个 豪宅 . +We must conform to the rules . 我们 必须 遵守规则 . +All of my software is open source . 我 的 软件 全都 是 开源 的 . +I only want one . 我 只 想要 一件 东西 . +You did not need to come so early . 你 不必 這麼 早來 . +They are breaking down the wall . 他們 正在 拆 這面 牆 . +Maybe they have something . 他们 可能 有点 什么 . +No problem ! 没 问题 ! +None of this makes any sense . 這裡 頭 沒有 一件 事 說 得 通 . +What were you doing in Boston ? 你 在 波士顿 做 了 什么 ? +The boy denied having stolen the bicycle . 那个 男孩 否认 偷 了 自行车 . +The train will probably arrive at the station before noon . 火车 大概 会 在 中午 前 到 站 . +Let is clean our room . 打扫 我们 的 房间 吧 . +Osaka is the center of commerce in Japan . 大坂 是 日本 的 商业中心 . +Tell him to mind his own business . 告訴 他 別 多 管閒 事 . +There are some boys in the park . 公園 裡 有 一些 男孩子 . +Dry wood burns well . 干柴 燒 得 旺 . +I was truly astonished . 我 真是 惊讶 . +Most Americans like hamburgers . 大多 數 的 美國 人 喜歡 漢堡 . +These boxes are heavy . 这些 箱子 是 重 的 . +I borrow money . 我 借 錢 . +I 'd rather die than surrender . 我 寧 死不降 +Tom just wants my money . 湯姆 就是 想要 我 的 錢 . +A doctor told me that eating eggs was bad for me . 一位 医生 告诉 过 我 , 吃 鸡蛋 对 我 的 健康 有害 . +Lake Baikal in Russia is the deepest lake in the world . 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +I wanted to become a philosopher . 我 想 成为 哲学家 . +Could you help us after school ? 你 能 在 放學 後 幫助 我們 嗎 ? +I can come at three . 我 三點鐘 可以 來 . +By the way , my English is absolutely hopeless . 順道 一 提 , 我 的 英語 是 絕對 沒有 希望 了 . +Do you have kids ? 你們 有 小孩 嗎 ? +That is not a cat . It is a dog . 那 不是 猫 . 那 是 狗 . +He will not live a long life . 他 不 會 長壽 . +The sky is clear almost every day . 天空 幾乎 每天 是 晴朗 的 . +Could you please not smoke in this room ? 请问 你 能 不 在 房间 里 吸烟 吗 ? +Tom and Mary switched places on the bench . 汤姆 和玛丽 在 长凳 上 交换 了 位置 . +Today is the hottest day this year . 今天 是 今年 最熱 的 一天 . +What is the matter with you ? 你 怎么 了 ? +Tom wanted to see me . 汤姆 想见 我 . +What time did your friend go home ? 你 朋友 幾點鐘 回家 ? +People need to stop hating . 人们 需要 止住 仇恨 . +You look like you are confused . 你 看 起來 有 困惑 . +The show was very interesting . You should have seen it . 演出 真的 很 有意思 , 你 该 去 看看 的 . +The value of the coins depended on the weight of the metal used . 钱币 的 价值 取决于 所 使用 的 金属 的 重量 . +It is about a ten @-@ minute drive from here . 從 這裡 大約 10 分鐘 車程 . +Would you please lend me some money ? 你 能 借 我些 钱 吗 ? +Tom is not a good worker . 湯姆 不是 個 好 工人 . +Take your hat off when you enter a house of worship . 當 你 進入 禮 拜堂 時 , 把 你 的 帽子 脫 下來 . +How long did that take ? 那 持续 了 多久 了 ? +He is making great progress in English . 他 的 英語 有 很大 的 進步 . +Welcome . 欢迎 . +Actually , I am not suggesting anything . 實際 上 , 我 沒有 建議 甚麼 . +I go to bed late at night . 我 晚上 很晚 就 寢 . +Tom is not the only one here who is a good singer . 汤姆 不是 这里 唯一 的 好 歌手 . +Tom has not given us anything . 汤姆 什么 也 没给 我们 . +Do you mind turning on the TV ? 你 介意 打開 電視 嗎 ? +He became a famous singer . 他 成为 了 著名 的 歌手 . +All you can do is wait . 所有 你 能 做 的 就是 等待 . +Call the police ! 叫 警察 ! +I am going to the park . 我 去 公園 . +I speak English every day . 我 每天 都 说 英语 . +He wiped the sweat from his face . 他 擦 去 了 脸上 的 汗水 . +Could you write it down , please ? 請 你 寫 下來 好 嗎 ? +I hope everything will turn out well in the end . 我 希望 最后 一切 都 好 . +Mary is sitting at the desk . 瑪麗正 坐在 辦公 桌旁 . +How much is this hat ? 这 顶 帽子 多少 钱 ? +She was asked to write her name in ink . 她 被 要求 用 墨水 写下 她 的 名字 . +If you eat that much , you will get a stomachache . 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +The shell of an egg is easily broken . 蛋壳 容易 破碎 . +Is this car your friend is ? 這輛 車 是 你 朋友 的 嗎 ? +There is nothing I can do . 沒有 我 可以 做 的 事 . +I wish Tom were my younger brother . 但 願 湯姆 是 我 的 弟弟 . +Perhaps it will rain tomorrow . 也許 明天 會 下雨 . +Tom ran out of matches so he could not light the fire . 汤姆 用尽 了 火柴 , 不能 点火 了 . +We helped them as well . 我們 也 幫助 他們 . +I bought a book . 我 買 了 一本 書 . +Tom misses Boston . 汤姆 想念 波士顿 了 . +Your reason is very good . 你 的 理由 很 充分 . +Good morning . It is time to wake up . 早安 . 是 該 醒來 的 時候 了 . +I am interested in music . 我 對 音樂 有 興趣 . +This is only one of the things we found . 这 只是 我们 发现 的 东西 之一 . +Let is talk over a cup of coffee . 让 我们 边 喝咖啡 边 谈 . +It is already past five o 'clock . 已經 過 了 五點鐘 . +It is stupid of you to believe in him . 你 相信 他 真是太 愚蠢 了 . +You are a good cook , are not you ? 你 很 會 做菜 , 不是 嗎 ? +Are you a teacher or a student ? 您 是 老师 , 还是 学生 ? +He knows how to play baseball . 他 知道 怎么 玩 棒球 . +This coat fits you perfectly . 這件 大衣 十分 適合 你 . +Tell me what you want . 告訴 我 你 要 什麼 . +We saw the ground covered with snow . 我们 看见 地面 被 雪 覆盖 了 . +Is the customer always right ? 顾客 永远 是 正确 的 吗 ? +Hokkaido is to the north of Honshu . 北海道 在 日本 本州 的 北部 . +I wish Tom were my younger brother . 我 希望 湯姆 是 我 的 弟弟 . +I do not know what you are referring to . 我 不 知道 你 指 的 是 什么 . +Keep it quiet . 保持 安静 +Tom is waiting for everyone to leave . 汤姆 等 着 每个 人 都 离开 . +This shirt costs ten dollars . 這 襯衫 要 十元 . +Would you mind lending me your pen ? 你 介意 把 你 的 筆 借 給 我 嗎 ? +Let me remind you again that March 31st is the due date . 讓 我 再次 提醒 你 3 月 31 日 是 到期日 . +I want to know why I am here . 我 想 知道 我 為 甚麼 在 這裡 . +I do not believe such things exist . 我 不 相信 這樣 的 事情 存在 . +Some boys came into the classroom . 有些 男孩 走進 了 教室 . +I do my homework after school . 我 在 放学 後 做作 業 . +I want to eat out tonight . 我 今晚 想 出去 吃 . +What do you want now ? 你 现在 想要 什么 ? +The flag is up . 旗子 升起 了 . +They always skip school . 他們 總是 逃學 . +She is on a diet . 她 在 节食 中 . +Tom is interested in mathematics . 湯姆 是 對 數學感 興趣 . +He should thank you . 他 應該 感謝 您 . +You will get used to this in three or four weeks . 你 在 三 或 四周 内会 习惯 这个 . +The Smiths live in my neighborhood . 史密斯 夫婦 住 在 我家 附近 . +Keep children away from the pond . 让 孩子 远离 池塘 . +Many people were killed in the war . 很多 人 在 戰爭 中 被 殺 . +Help yourself to a piece of cake . 你们 自己 吃 蛋糕 . +I am counting on you . 我 就 指望 你 了 . +Throughout the five years of painful cancer treatments , he managed to keep a stiff upper lip . 这 五年 痛苦 的 癌症 治疗 他 终于 坚持 下来 了 . +Mary is helping her mother . 瑪麗 正在 幫忙 她 的 母親 . +You can drive a car , can not you ? 你 會 開車 , 不是 嗎 ? +He goes to the office by car . 他 開車 去 辦 公室 . +The rumor was without foundation . 謠言 是 毫無 根據 的 . +I think we should concentrate on other things . 我 想 我们 应 集中 于 另外 的 事情 . +You chose this job yourself , right ? 你 自己 选择 了 这份 工作 , 是 吗 ? +We have plenty of time tonight . 今晚 我们 有 充分 的 时间 . +What is up with you ? 你 怎么 了 ? +He lives somewhere around the park . 他 住 在 公园 周围 的 某个 地方 . +I helped my brother move his desk . 我 幫 我 弟弟 搬 了 他 的 書桌 . +What have you guys done to me ? 你们 到底 对 我 做 了 什么 ? +I can not sleep at all ! 完全 睡不着 . +Which bed do you want to use ? 你 想 睡 哪 張 床 ? +Finishing the report by tomorrow is next to impossible . 在 明天 前 完成 报告 几乎 是 不 可能 的 . +Why did not you dance with him ? 你 為 什麼 不 跟 他 跳舞 呢 ? +Wipe the pan dry with a paper towel . 用 纸巾 把 那 口 锅 擦干 . +Strawberries are in season now . 現在 是 草莓 的 季節 . +Tom has brains . 汤姆 脑子 好使 . +He is not at all afraid of snakes . 他 一點 也 不怕 蛇 . +I like this picture , not just because it is famous , but because it really is a masterpiece . 我 喜欢 这 幅画 , 不仅 是因为 它 的 名气 , 而是 因为 它 真的 是 一个 杰作 . +Tom is a very bad person . 汤姆 是 个 非常 坏 的 人 . +You guys looked mad . 你們 那時候 看 起來 在 生氣 . +He worked last night without taking a break . 他 昨晚 都 在 工作 , 彻夜未眠 . +Did you make this doll by yourself ? 这个 娃娃 是 你 自己 做 的 吗 ? +I will be absent from home in the afternoon . 下午 我 不 在家 . +As he spoke , pictures came into my mind . 他 说 的 时候 , 我 脑 中 浮现 出 了 画面 . +Tom has admitted he was there that night . 汤姆 承认 他 那晚 是 在 那里 . +I heard the children is happy voices . 我 聽到 孩子 們 開心 的 聲音 . +It is warm today , is not it ? 今天 很 溫暖 , 不是 嗎 ? +Is this your car ? 這 是 你 的 車 嗎 ? +You did not need to bring your umbrella . 你 不必 帶 你 的 傘 . +I do not know who he is . 我 不 知道 他 是 谁 . +Prices are high . 价格 高 . +Tom slept until noon . 汤姆 睡 到 中午 . +The volcano has become active again . 這 座 火山 又 開始 活動 了 . +I am on my way . 我 这 就 上路 . +Let is begin with this problem . 从 这个 问题 开始 吧 . +Do you have anything to remove stains ? 你 有 除锈 的 东西 吗 ? +How much is this ? 這 是 多少 ? +You talk too much . 你 說 太 多 了 . +We have two dogs , three cats , and six chickens . 我们 养 了 两只 狗 、 三只 猫 和 六只 鸡 . +Wash your feet . 洗 您 的 脚 . +She extended her stay by five days . 她 多 停留 了 五天 . +I have been learning to drive . 我 一直 在 學開 車 . +Is not this weather just great ! 天氣 真是 太好了 ! +I am not as strong as I used to be . 我 不 跟 以前 一樣 強壯 了 . +What is the matter ? 怎么 了 ? +He is very straightforward . 他 说话 很 直接 . +Let is get together again ! 讓 我們 再 聚在一起 ! +Do you weigh more than Tom ? 你 有 比 湯姆 重 嗎 ? +There is nothing to be afraid of . 没什么 好怕 的 . +He can speak Russian , too . 他 也 會 說 俄語 . +Ask Tom again . 再 问 一下 汤姆 吧 . +Somebody has stolen my suitcase . 有人 偷 了 我 的 行李 . +Tom does not look like his father at all . 汤姆 和 他 的 父亲 长 得 一点 也 不 像 . +She is mad at me . 她 跟 我 生气 了 . +Valuable time has been lost . 宝貴 的 時間 已 失去 . +Thanks for the comment . 谢谢您 的 评论 . +He came . 他 来 了 . +I am bored . 我 覺 得 很 無聊 . +Would you like to eat something ? 你 想 吃 點 東西 嗎 ? +He wrote a letter yesterday . 昨天 他 写 好 了 信 . +I am waiting for him . 我 在 等 他 . +She needs our help . 她 需要 我們 的 幫忙 . +Is there anything in the box ? 盒子 裡 有 任何 東西 嗎 ? +It is dangerous to jump onto a moving train . 跳 上 一列 正在 开 的 火车 是 很 危险 的 . +I just heard something . 我 只是 听到 了 一些 消息 . +Which book is better ? 哪 一本 書 比較 好 ? +I did not know you were going to be here . 我 不 知道 你 要 來 這裡 . +The charge for a front row seat is 5 dollars . 第一排 的 座位 5 美元 . +She forgot to mail the letter . 她 忘 了 寄信 . +Today is Valentine is Day . 今天 是 情人节 +You are very brave . 您 非常 勇敢 . +I wish you success . 祝你成功 . +I am looking for a present for my mother . 我 正在 为 我 的 妈妈 寻找 礼物 . +You are old enough to know better than to act like that . 你 夠 大 了 知道 不要 那樣 做 . +We needed to learn French . 我們 需要 學法 語 . +Generally speaking , the climate of Japan is mild . 总体 上 说 , 日本 的 气候 温和 . +I like grapes , but I can not eat so many . 我 虽然 喜欢 吃 葡萄 , 但是 我 吃 不了 那么 多 . +He still remembers the day his mother found out he was smoking . 他 还 记得 他 妈妈 发现 他 正在 抽烟 的 那天 . +It will not take long to finish the job . 完成 这个 工作 不会 花太 长时间 . +Tom was wrong . 汤姆 错 了 . +He went to New York by airplane . 他 搭 飛機 到 紐約 了 . +I think I will stay . 我 認 我 會 留下 . +He came home late last night . 他 昨晚 很 晚 回家 . +It will soon be time for dinner . 不久 就要 吃 正餐 了 . +She told me that she would go to Paris in August . 她 跟 我 说 八月份 她 会 去 巴黎 . +Be fair . 公平 点 . +That white dress looks good on you . 你 穿 那件 白色 的 衣服 很 好看 . +Kobe is famous for its port . 神戶 是 著名 的 港口 . +She said that she was ill . 她 说 她 病 了 . +My job is to wash the dishes . 我 的 工作 是 洗盤子 . +He was made a fool of by his neighbors . 他 被 他 的 邻居们 愚弄 了 . +She married a rich old man . 她 嫁给 了 个 有钱 老头 . +How much time has passed ? 過 了 多 長 時間 ? +I had my teeth examined at the dentist is . 我 在 牙医 那儿 检查 了 牙齿 . +Tom lives here . 汤姆 住 在 这里 . +What time will you leave the office ? 你 几点 离开 办公室 ? +Let is take a ten @-@ minute break . 讓 我們 休息 10 分鐘 . +We have three kids . 我們 有 三個 孩子 . +I am tired of translating . 我 厭倦 了 翻譯 . +I asked twenty friends to the party . 我 請 了 二十位 朋友 參加 派 對 . +Life would be so much better if you did not care so much . 如果 你 不 计较 太 多 , 生活 会 更 容易 些 . +Can you play the piano ? 你 會彈 鋼琴 嗎 ? +Boil the water . 把 水 燒開 . +Would you please wait for a minute ? 請 你 等 一下 好 嗎 ? +I am glad someone told me . 真 高兴 有人 告诉 我 . +We have plenty of time to spare . 我們 還 剩下 很多 時間 . +I wish I could go to the party with you . 我 希望 我 能 和 你 一起 参加 派对 . +Lincoln was elected President in 1860 . 林肯 在 1860 年 當 選為 美國 總統 . +I am very tired , but I can not get to sleep . 我 很 累 , 但 我 还是 没 办法 入睡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +I have two sons . 我 有 兩個 兒子 . +Do not stand in front of me . 不要 站 在 我 前面 . +They may have missed the train . 他們 可能 錯 過 了 火車 . +Wash your face and hands . 洗 你 的 臉 和 手 . +He stuck his pencil behind his ear . 他 把 他 的 鉛筆 放在 他 的 耳朵 後 面 . +Run and hide in the mountains . 跑 到 山里 躲起来 . +You are a good driver . 你 开车 很 好 . +I am doubtful whether he will come . 我 怀疑 他 是否 会来 . +There is a fence around the house . 這棟 房子 的 周圍 有 籬笆 . +Do you want some company ? 你 想要 伙伴 吗 ? +She does nothing but complain . 她 什麼 都 不 做 只 會 抱怨 . +Everybody laughs . 每個 人 都 在 笑 . +A crowd gathered on this street . 人群 聚集 在 这条 街上 . +I have not eaten for days . 我 好多天 沒 吃 東西 了 . +When I arrived , it was raining . 當 我 到 達 時 , 天正 下著 雨 . +He arrived after I had left . 我 走 之后 他 到达 了 . +You have to give Tom more time . 你 必須 給 湯姆 更 多 時間 . +I sat by his side . 我 坐在 他 旁边 . +I wrote a letter to my mother . 我 寫 了 一封信 給 我 的 母親 . +Check , please . 請 結帳 . +He suggested that we go for a swim . 他 提议 大家 一起 去 游泳 . +We have got another problem . 我們 又 遇上 問題 了 . +You should give up smoking . 你 應該 戒菸 . +We depend on you . 我们 可 全 指望 你 了 . +This rule does not apply in all cases . 这 条 规则 不是 任何 情况 下 都 奏效 的 . +What should I bring ? 我 该 带 些 什么 ? +Something is wrong with the brakes . 剎車 出 了 問題 . +It is not difficult to speak English . 說 英語 不 難 . +I will be seeing you . 我 會 見 到 你 . +I am too busy to go . 我 太 忙 了 不能 去 . +Were you a soldier ? 你 是 士兵 嗎 ? +Tom heard a shout . 汤姆 听到 了 一声 喊叫 . +The police officers arrested the burglar . 警察 拘捕 了 這個 竊 賊 . +We hope Tom is OK . 我們 希望 湯姆 沒事 . +He looks older than my brother . 他 看 起來 年紀 比 我 的 兄弟 大 . +You may as well tell me all about it . 你 不妨 告訴 我 一切 . +One more bottle of wine , please . 麻煩 再來 一瓶 葡萄酒 . +I know that Tom is hungry . 我 知道 湯姆 餓 了 . +I am still the boss here . 我 仍 是 这里 的 老板 . +Who is this boy ? 这个 男孩 是 谁 ? +It is nothing to worry about . 沒 什麼 好 擔心 的 . +Please drive carefully . 請 小心 駕駛 . +In case of fire , call 119 . 遇到 火灾 打 119. +Tom likes sitting on the floor . 汤姆 喜欢 坐在 地上 . +Our train leaves at eight @-@ thirty . 我們 的 火車 在 八點半 出發 . +It is actually not that difficult . 實際上 沒有 那麼 難 . +Tom laid the newspaper on the table . 汤姆 把 报纸 放在 桌上 . +He is poor . 他 很穷 . +He is not a teacher but a doctor . 他 不是 老師 , 而是 醫生 . +Do you know what I am doing ? 你 知道 我 在 做 什麼 嗎 ? +I had a happy childhood . 我 的 童年 很 快乐 . +Tom wants to know more about Mary is past . 汤姆 想要 知道 更 多 关于 玛丽 的 过去 . +Wonderful ! 很棒 ! +Why did not you call me yesterday evening ? 怎么 你 昨晚 没有 给 我 打电话 ? +What exactly happened there ? 那裡 究竟 發生 了 什麼 事 ? +I am constantly forgetting names . 我 經常 忘記 別人 的 名字 . +He is up to his ears in debt . 他 浑身 是 债 . +Thousands of people wanted to know the answer . 成千上万 的 人 想要 知道 答案 . +I am in a desperate situation . 我 处在 绝境 . +I got a new pair of shoes . 我 得到 了 一雙 新鞋 . +I was about to leave when the doorbell rang . 门铃 响 的 时候 , 我 正 准备 出门 . +It is not that simple . 它 沒有 那麼 簡單 . +At the age of six , I was taken to a circus for the first time . 在 我 六岁 的 时候 , 我 第一次 被 带去 看 马戏 . +Do you speak Chinese ? 你 會 說 中文 嗎 ? +It is totally dark outside . 外面 一片 漆黑 . +Does she know your phone number ? 她 知道 你 的 電話 號碼 ? +Everyone wants to meet you . You are famous ! 大家 都 想 见到 你 , 你 太 有名 了 ! +I will be at home in the morning . 我 早上 會 在家 . +He belongs to the camera club . 他 參加 攝影 社 . +A dog will bark at strangers . 狗会 对 陌生人 叫 . +He earned his living as a teacher . 他 以 教書 為 生 . +The serpent tempted Eve . 蛇 誘惑 了 夏娃 . +My plane leaves at six o 'clock . 我 搭 的 飛機 在 六點鐘 起飛 . +I will get the work done in a week . 我会 一周 内 完成 这个 工作 的 . +Would 9 o 'clock be all right ? 9 點 可以 嗎 ? +Tom wanted Mary to say that she loved him . 汤姆 想 让 玛丽 说 爱 他 . +These are pens . 這些 是 筆 . +To make matters worse , it began snowing . 更 糟糕 的 是 開始 下雪 了 . +I usually have a light breakfast . 我 早餐 通常 吃 得 很 清淡 . +I do not want the present Tom gave me . 我 不 想要 汤姆 给 我 的 礼物 . +Do not let Tom lie on the floor . 别 让 汤姆 躺 在 地板 上 . +" How did you get my phone number ? " " Tom gave it to me . " “ 你 怎么 知道 我 的 电话号码 的 ? ” “ 汤姆 告诉 我 的 . ” +Tom thinks there is hope . 汤姆 认为 有 希望 . +Tom would never have let us go if Mary had not gone with us . 如果 玛丽 不 跟着 我们 , 汤姆 不会 让 我们 走 . +A glass of wine , please . 一杯 葡萄酒 , 謝謝 . +" Thanks , guys . " " Do not mention it . " “ 谢谢你们 . ” “ 不用谢 . ” +She seems rich . 她 看來 有 錢 . +I have heard you have been sick . 我 听说 你 病 了 . +Problems that can be solved with money are not real problems . 錢 可以 解決 的 問題 都 不是 問題 . +Are you aware of how much she loves you ? 你 知道 她 有 多麼 愛 你 嗎 ? +Will you sell your car to me ? 你 可以 把 你 的 車 賣 給 我 嗎 ? +I forgot the date of the meeting . 我 忘 了 會議 的 日期 . +Have you answered that letter yet ? 你 回信 了 嗎 ? +He drives a car , does not he ? 他 開車 , 不是 嗎 ? +Tom laughed for no reason . 湯姆 無 故地 笑 . +Tom taught me French . 汤姆 教 了 我 法语 . +Another bottle of wine , please . 麻煩 再 一瓶 葡萄酒 . +I have been reading this for a few hours . 我 一直 讀 這個 讀 了 幾個 小 時 . +I have never underestimated Tom . 我 从没 低估 汤姆 . +He has a good knowledge of French . 她 很 懂法 語 . +I belong to the sailing club . 我 參加 帆船 社 . +He is a bad driver . 他 是 個 糟糕 的 司機 . +Please ask at the information desk . 請 向 服務台 詢問 . +I want to stay here longer . 我 想 在 这里 再 待 一会 . +Tom does not believe he could do that . 湯姆 不 相信 他 能 做到 . +This movie is worth seeing again . 這部 電影 值得 再 看一遍 . +I am afraid of death . 我 怕死 . +I like going to watch baseball . 我 喜歡 去 看 棒球 . +Tom is living with his uncle now . 湯姆 現在 跟 他 叔叔 住在一起 . +Tom has no intention of asking Mary to the upcoming dance . Tom 没有 意图 去 邀请 Mary 去 即将来临 的 舞会 . +You are joking ! 你 在 開 玩笑 吧 ! +I live in a big city . 我 住 在 一个 大城市 里 . +My eyesight is getting worse . 我 的 视力 正 慢慢 下降 . +No intelligent person drinks and then drives . 沒有 聰 明人 喝了酒 再 開車 . +My father has never been abroad . 我 父親 從來 沒有 出過 國 . +Here is your change . 這 是 你 零 錢 . +I do not know what I am doing . 我 不 知道 我 在 做 甚麼 . +Did you write ? 你 写 吗 ? +I ran as fast as possible to catch up with him . 我 盡力 追趕 他 . +She asked him questions . 她 問 了 他 問題 . +I guess that would be all right . 我 猜 那 應該 可以 的 . +We grow vegetables in our garden . 我們 在 我們 的 花園 裡 種 蔬菜 . +We are going to eat a lot tonight so I hope you are not on a diet . 我们 今晚 会 吃 很多 , 所以 我 希望 你 没有 在 节食 . +I told the policeman what I knew . 我 告訴 了 警察 我 所 知道 的 . +He always keeps his word . 他 总是 遵守 诺言 . +We are a family of five . 我家 有 5 口人 . +He took me to the park yesterday . 昨天 他 帶 我 去 公園 . +Have you seen all these movies ? 你 把 電影 全 看 了 嗎 ? +Listen . 听 着 . +I built an amplifier yesterday . 昨天 我 組裝 了 一個 揚 聲器 . +It is a good start . 这 是 一个 好 的 开端 . +I wish I did not have to work . 我 希望 我 不必 工作 . +Make another appointment at the front desk . 在 服務 台 另外 預約 . +I 'd be grateful to you if you could teach me to do that . 如果 你 能 教 我 怎麼 做 , 我 會 很 感激 . +I will tell Tom tomorrow . 我 明天 告訴 湯姆 . +I believe that he will do fine . 我 相信 他 會 做 得 很 好 . +If you need anything , let me know . 如果 你 需要 任何 東西 , 讓 我 知道 . +Are they all the same ? 他们 都 是 一样 的 吗 ? +Please leave . 請 你 離開 . +I will ask him tomorrow . 我 明天 會 問 他 . +An eye for an eye , a tooth for a tooth . 以眼还眼 以牙还牙 +These containers are airtight . 這些 容器 是 密封 的 . +We ordered Chinese food . 我们 点 了 中餐 . +It is imperative for you to act at once . 你 必须 马上 行动 . +One is Japanese and the other is Italian . 一个 是 日本 人 , 另 一个 是 意大利人 . +She is making progress with her English . 她 的 英語 正在 進步 中 . +I think someone is knocking on the door . 我 想 有人 在 敲门 . +I thought he loved you , but as it is , he loved another girl . 我 以為 他 愛 你 , 但 事實上 , 他 愛 另 一個 女孩 . +The archer killed the deer . 射手 打死 了 鹿 . +Do you eat out often ? 你 常常 外食 嗎 ? +How long is your spring vacation ? 你 春假 放 多久 ? +It does not sound like Tom . 聽 起來 不 像 湯姆 . +Let me see that . 讓 我 看看 . +I did not pay attention to what they were saying . 他们 说 了 什么 , 我 并 不 注意 . +It is nearly six . 差不多 六点 了 . +You can have a ride on my motorcycle . 你 可以 骑 上 我 的 摩托车 去 遛 一圈 . +Do you have a mobile phone ? 你 有 手機 嗎 ? +I think my French is not very good . 我 认为 我 的 法语 不太好 . +Have a nice trip ! 旅途愉快 ! +Let is eat now . I am starving . 咱们 吃 吧 ! 我 饿死 了 . +She was tired , but she kept working . 她 累 了 , 但 她 繼續 工作 . +We do not expect Tom to live much longer . 我们 不 指望 汤姆 能 活 得 更 久 . +Can I help you ? 我 能 幫 你 嗎 ? +I am not your mother . 我 不是 你們 的 媽媽 . +You should have stayed in the car . 你 該 留在 車裡 . +You have to be proactive . 你 必须 积极主动 . +Tom will be there for a few days . 汤姆 会 在 几天 后后 到达 那里 . +The room is fully furnished . 房間 裡 家具 齊 全 . +This is your only chance . 這 是 你 唯一 的 機會 . +This clock is mine . 這 個 錶 是 我 的 . +He is a fast walker . 他 走路 很快 . +We were astonished to hear what had happened . 我们 听到 所 发生 的 事 , 感到 很 惊讶 . +He turned over the matter in his mind . 他 在 心里 反复 思量 这件 事 . +Have you already rung the doorbell ? 你 已經 按門鈴 了 嗎 ? +Have you ever been to America ? 你 去過 美國 嗎 ? +I have never read such a scary novel . 我 从没 读 过 那么 恐怖 的 小说 . +Tom is afraid of heights . 汤姆 恐高 . +I no longer love him . 我 已经 不 爱 他 了 . +Which cap is yours ? 哪 顶 帽子 是 你 的 ? +I have almost no money with me . 我 身上 幾乎 沒有 錢 . +I want some orange juice . 我 想要 一點 柳橙汁 . +Tom did not agree to do it . 汤姆 不 同意 做 . +Tom told me that he 'd be right back . 汤姆 告诉 我 他 会 马上 回来 . +They were both drunk . 他們 兩個 都 喝醉 了 . +It is too big . 它 太 大 了 . +I have already finished the job . 我 已經 完成 了 這項 工作 . +I will call you back . 我会 给 你 回 电话 的 . +One of your tires is flat . 你 的 轮胎 爆 了 一个 . +This desk takes up too much room . 這 張 桌子 太 佔 空間 了 . +I will be back in ten minutes . 我 10 分钟 后 回来 . +I am eating rice . 我 在 吃 米饭 . +He is armed to the teeth . 他 武装 到 牙 齒 . +We have never had this problem before . 我們 從 前 從 沒有 過 這個 問題 . +He is rather hard to please . 取悅 他 很 難 . +I slipped and fell down the stairs . 我 滑了一跤 並 從 樓梯 上 摔 下來 . +I heard the front doorbell ring . 我 聽到 前門 的 門鈴 響 了 . +You may not remember me , but I remember you . 你 可能 不 記得 我 了 , 但 我 記得 你 . +This is a matter of the utmost importance . 这件 事 至关重要 . +They have no idea what is going on . 他們 不 知道 正在 發生 甚麼 . +Tom is not doing what he is supposed to be doing . 湯姆 沒 有 做 他 該 做 的 事 . +I hate you . 我 恨 你 . +She has not phoned since she went to London . 自 她 去 了 倫敦 後 , 就 沒 再 打電話 了 . +Let is go by bus . 讓 我們 坐 公共 汽車 去 . +That boy is running . 这个 男孩子 在 跑步 . +I have decided to shave my head . 我 已经 决定 把 我 的 头发 剃 了 . +Please tell the truth . 请 把 真实 的 情况 说 出来 . +I know the facts . 我 知道 事实 . +Tom is standing in the garden . 汤姆 在 花园里 站 着 . +Mistakes like these are easily overlooked . 这种 错误 很 容易 被 人 忽视 . +They are very big apples . 他們 是 非常 大 的 蘋果 . +Please close the door behind you . 請 隨手 關門 . +They were not listening to music . 他們 沒 在 聽 音樂 . +Do you know how to drive a car ? 你 知道 如何 開車 嗎 ? +You should not have lent the money to such a person . 你 不 應 該 借 錢 給 這樣 的 人 . +I overslept . 我 睡 過頭 了 . +They are having breakfast now . 他們 現在 正在 吃 早 飯 . +Tom did the best he could , but he was not able to get a higher grade than Mary . 汤姆 尽 了 全力 , 但 他 还是 不能 获得 比 玛丽 更 高 的 等级 . +Do you know Tom well ? 你 很 了解 汤姆 吗 ? +I went to the park last Saturday . 上個 星期六 我 去 了 公園 . +The train for Birmingham leaves from platform 3 . 去 伯明翰 的 火车 从 3 号 站台 出发 . +Actions speak louder than words . 行動 比 語言 更 響亮 . +Which shoes are you going to put on ? 你 将 穿 哪 双鞋 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +I go to school . 我 去 学校 . +The moment I held the baby in my arms , it began to cry . 我 一把 孩子 抱 在 手里 , 他 就 开始 哭 了 . +Compare your answers with the teacher is . 把 你 的 答案 和 老师 的 比较 一下 . +They got married and settled near Boston . 他們 結 了 婚 並 定居 在 波士 頓 附近 . +May I have a glass of milk , please ? 请问 能 给 我 一杯 牛奶 吗 ? +Do you have any day tours ? 你 有 任何 一日 遊 的 行程 嗎 ? +I work with her boyfriend . 我 和 她 的 男朋友 在 一起 上班 . +How much money did you spend in Boston ? 你 在 波士顿 花 了 多少 钱 ? +She takes private piano lessons . 她 上 私人 鋼琴 課 . +I took a cab to the station . 我 搭 了 計程 車 到 車站 . +We may be late for school . 我們 上學 可能 會 遲 到 . +I will do whatever you want me to do . 无论 你 要 我 做 什么 , 我 都 会 去 做 的 . +Were you playing tennis yesterday morning ? 你 昨天上午 打网球 了 吗 ? +It is illegal to park your car here . 把 車 停 在 這裡 是 違法 的 . +Tom knew what Mary intended to do . 湯姆 知道 瑪麗 想 做 甚麼 . +I can teach you how to swim . 我 能 教 你 怎样 游泳 . +I agree with your opinion about taxes . 我 同意 你 對 於 稅 的 意見 . +I received your letter . 我 收到 了 您 的 信 . +He is hard to deal with . 他 很 難對 付 . +We have little chance of winning . 我們 獲勝 的 機會 很少 . +I can not wait forever . 我 不能 永远 地 等 . +Can you ride a horse ? 您 会 骑马 吗 ? +Orange juice , please . 柳橙汁 , 麻煩 你 . +Did you actually see the accident ? 你 真的 看到 了 這 起 事故 嗎 ? +December has thirty @-@ one days . 十二月 有 三十 一天 . +He plays baseball every day . 他 每天 都 打 垒球 . +She especially likes music . 她 特別 喜愛 音樂 . +The moon is shining . 月光 在 照耀 著 . +You can come in . 你 可以 進來 . +Tom does not remember where he put his keys . 汤姆 不 记得 他 把 钥匙 放在 哪里 了 . +She told us the road was closed . 她 告訴 我們 道路 被 封閉 了 . +" Have you seen my cell phone ? " " It is on the table . " " 你 有 看到 我 的 手機 嗎 ? " " 它 在 桌子 上 . " +That is a stupid question . 这 是 一个 愚蠢 的 问题 . +World War II lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +What am I to do now ? 怎么办 ? +I am a liar . 我 是 个 骗子 . +Tom died in his kitchen . 汤姆 是 在 自家 厨房 里 死 的 . +More than 40 percent of students go on to university . 40 % 以上 的 学生 去 读 大学 . +He can read well enough . 他 能 讀 得 很 好 . +What subjects are you taking at school ? 你 在 學校 裡 讀 哪些 科目 ? +All of a sudden , it began raining . 突然 開始 下雨 . +Sit beside me . 坐 我 旁边 . +How unfortunate ! 可憐 ! +The man robbed her bag . 這 名 男子 搶走 了 她 的 包包 . +He differs from his brother . 他 和 他 兄弟 不 一样 . +Sales should double this year . 今年 销售 会 翻番 . +It was fun playing in the park . 在 公園 裡 玩 很 有趣 . +My car broke down this morning and will not be repaired until Friday . 我 的 车 今天 早上 坏 了 , 星期五 才能 修好 . +My wife is part @-@ time job brings in a little extra money . 我 太太 兼職 的 工作 賺進 了 一些 額 外 的 錢 . +You gain more than you spend when you go to college . 上大學 的 時候 , 你 得到 的 比 付出 的 還 多 . +I must have caught a cold . 我 肯定 着凉 了 . +I can do it without her help . 沒有 她 的 幫忙 我 也 能 做 . +Tom and I are not friends . We are just coworkers . 湯姆 跟 我 不是 朋友 , 我們 只是 同事 . +A bird is singing in the tree . 一 隻 鳥 正在 樹上 唱歌 . +Be careful not to catch a cold . 小心 不要 感冒 了 . +His father eats there twice a week . 他 爸爸 一週 在 那裡 吃 兩次 . +A great number of citizens went into the army . 許多 老百姓 加入 了 軍隊 . +Whichever route you take , you will get there in time . 不管 你 选 哪条 路 , 你 都 能 按时 到 那里 . +Tom has something else to say . 湯姆 還 有 想 說 的 事 . +You may take anything you like . 你 可以 拿 你 喜歡 的 東西 . +They will get married next month . 他們 將 在 下 個 月 結婚 . +Do not let that happen again ! 不要 再 让 这种 事 发生 了 ! +Tom did not have to thank me . 汤姆 不必 谢 我 . +I went fishing last Monday . 上 个 周一 我 去 钓鱼 了 . +The party has been put off until next Tuesday . 聚会 已经 推迟 到 了 下 周二 . +Could you lend me your bicycle for a couple of days ? 你 能 把 你 的 自行车 借 我 两天 吗 ? +I do not think Tom understands that . 我 不 認為 湯姆 明白 . +I laughed at his joke . 他 的 笑話 讓 我 大笑 了 . +Tom does not pay attention in school . 汤姆 在 学校 里 不 专心 . +Tom did not have dinner last night . 湯姆 昨晚 沒 吃 晚餐 . +I worked hard last month . 我 上個月 很 努力 工作 . +Where will you go for the vacation ? 你 要 去 哪裡 度假 ? +I guess I waited too long . 我 好像 等 太久 了 +You are the best man for the job . 你 是 最 適合 做 這份 工作 的 人 . +Tom is uncle keeps a lot of sheep . 湯姆 的 叔叔 養 了 很多 羊 . +This book is really interesting . 這 本書 真的 很 有趣 . +That film is for children . 那部 電影 是 給 小孩 看 的 . +The rumor turned out to be true . 這個 傳聞 後 來 被 證明 是 真的 了 . +Shut the door , please . 請 關門 . +There was a cottage on the side of the hill . 山坡 上 有 一间 村屋 . +What do you intend to do ? 你 想 做 什麼 ? +He hung a lamp from the ceiling . 他 把 一盏灯 挂在 了 天花板 上 . +I am closing the door . 我 在 關門 . +I do not have much money on me . 我 身上 沒有 很多 錢 . +I want a cellular phone , but I do not have enough money to pay for one . 我 想要 一支 手機 , 但是 我 沒有 足夠 的 錢 買 一支 . +I have never met him . 我 從來 沒有 見 過 他 . +We must make a new start . 我們 必須 重新 開始 . +There is not any milk in the glass . 這個 玻璃杯 裡 沒有 任何 的 牛奶 . +Why would they need to do that ? 为什么 他们 会 需要 那么 做 呢 ? +This is a defibrillator . 这 是 一个 除颤 器 . +I am not very particular about food . 我 對 食物 不是 很 講究 . +He loves traveling . 他 愛 旅行 . +As more paper money came into use , the value fell . 当更 多 的 纸币 投入使用 , 价格 就 下跌 了 . +I left it on the table . 我 把 它 留在 桌上 了 . +Is there a cat on the table ? 桌子 上有 只 猫 吗 ? +There was not a cloud in the sky . 天上 没有 一片 云 . +She was busy with her knitting . 她 忙 着 编织 . +Did you find your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Advertisements urge us to buy luxuries . 廣告 慫恿 我們 買 奢侈品 . +He got hurt when he fell down . 他 跌倒 的 時候 受 了 傷 . +Cheese is made from milk . 奶酪 是 用 奶 做成 的 . +She was sick in bed yesterday . 她 昨天 臥病 在 床 . +Tom is lucky he did not get shot . 湯姆 沒 被 射中 真 走 運 . +May I see your claim tags ? 我 可以 看看 你 的 行李 條 嗎 ? +How do you write your last name ? 你 的 姓氏 怎么 写 ? +We must go to school . 我们 必须 去 学校 了 . +They say that love is blind . 人们 说 爱情 是 盲目 的 . +She made out the application for admission . 她 提出 了入 學 申請 . +I am a little tired . 我 有 點累 . +Mary does not usually wear jewelry . 玛丽 通常 不 戴 首饰 . +We took a wrong turn . 我們 拐 錯 彎 了 . +I could hear her sobbing in her bedroom . 我 能 聽見 她 在 她 的 臥室 裡 抽泣 . +Tom is taller than his mother . 湯姆 比 他 的 母親 高 . +Let us go home . 让 我们 回家吧 . +The girl wore a yellow ribbon in her hair . 那 女孩 的 头发 上绑 了 一根 黄 丝带 . +I can not believe my eyes . 我 无法 相信 自己 的 眼睛 . +Do you think we should send for the doctor ? 你 認為 我們 應 該 派 人 去 請 醫生 來 嗎 ? +I stopped smoking for the sake of my health . 為了 健康 , 我 不再 抽 菸 . +He is a reporter for Time magazine . 他 是 时代 杂志 的 记者 . +I did not want this . 我 不 想要 這個 . +Ask at the police box over there . 問 那邊 的 警察 崗 哨 . +How about you ? 你們 呢 ? +What did you come here to do ? 您 来 这儿 干嘛 ? +Tom needs to study more if he hopes to pass this class . 汤姆 如果 想 通过 这 门 课 , 就 需要 加劲 学习 . +Who is playing the piano ? 谁 在 弹钢琴 ? +There are more important things in life . 人生 里 有 更 重要 的 事情 . +Suddenly , everything fell silent . 突然 间 , 鸦雀无声 . +The traffic accident deprived him of his sight . 這場 交通 意外 讓 他 失明 了 . +This chair is made of plastic . 這 把 椅子 是 用 塑 膠 製 成 的 . +I want to clean the house before my parents come . 我 想 在 我 父母 来 之前 收拾 干净 屋子 . +The horse is a useful animal . 马 是 种 很 有用 的 动物 . +Picasso is paintings seem strange to me . 畢加索 的 畫 對 我 來說 似乎 很 奇怪 . +My uncle gave me a book . 我 的 叔叔 給 了 我 一本 書 . +What are you doing that for ? 你 正在 做 的 那個 東西 是 做 什麼 用 的 ? +She decided to resign . 她 決定 辭職 了 . +His behavior never ceases to surprise me . 他 的 所作所为 总是 让 我 惊讶 . +The job offer still stands . 這份 工作 錄取 仍然 有效 . +The pressure was tremendous . 壓力 很 巨大 . +The two sides hold talks this week . 双方 本周 举行会谈 . +Do I have to bring my son to your office ? 我 必須 帶 我 的 兒子 到 你 的 辦 公室 嗎 ? +I do not think she takes after her mother . 我 不 觉得 她 像 她 妈妈 . +I can not do anything but obey him . 我 除了 聽 從 他 之外 什麼 也 不能 做 . +I saw him sawing a tree . 我 看见 他 正在 锯 一棵树 . +What season do you like the best ? 您 最 喜欢 哪个 季节 ? +One of us has to go . 我们 中 的 一个 得 走 . +Which is your book ? 哪 本 是 你們 的 書 ? +He is a professor of biology at Harvard . 他 是 哈佛大学 的 生物学 教授 . +How I have missed you ! 我 多麼 想念 你 ! +I am able to drive a car . 我 會 開車 . +Our friendship was put to the test . 我们 的 友谊 受到 了 考验 . +He lost his eyesight in an accident . 他 在 一次 意外 中 失去 了 他 的 視力 . +Who is in charge of the sales section ? 谁 负责 销售 部门 ? +He likes listening to the radio . 他 喜歡 聽 廣播 . +Tom got out of the jeep . 汤姆 从 吉普车 上 下来 了 . +His voice is pleasant to listen to . 他 的 声音 听 着 很 舒服 . +They have decided to get married next month . 他們 已經 決 定下 個 月 結婚 . +I read an exciting story . 我 讀 了 一篇 精彩 的 故事 . +Chinese is a tonal language . 漢語 是 一個 聲調 語言 . +We take health for granted until illness intervenes . 我們 視 健康 為 理所 當然 , 直到 疾病 侵襲 . +You can keep this one for yourself . 你 可以 把 這個 保留 給 自己 . +Wherever you go , I will follow . 無論 你 到 哪裡 , 我 都 會 跟著 你 . +She was in a hurry . 她 在 趕 時間 . +The birds sang . 鳥兒 歌唱 . +Do you know how to eat with chopsticks ? 你 會 用 筷子 吃 飯 嗎 ? +I do not know where my watch is . 我 不 知道 我 的 手 錶 在 哪 裡 . +You have a really good sense of direction . 你 的 方向感 很 好 . +When and where is breakfast served ? 早饭 在 何时何地 用 ? +I have finished my homework . 我 已經 完成 我 的 作業 . +I will say something about it . 我 會 談 談 它 . +We had a large audience . 我们 有 很多 听众 . +He has no interest in politics . 他 對 政治 沒有 興趣 . +Keep to the right . 靠 右侧 通行 . +Do not go out after dark . 天黑 以 後 不要 出門 . +They are trying to control you . 他們 設法 控制 你 . +English is a Germanic language . 英語 是 一種 日耳曼 語 . +Tom had no intention of giving Mary any money . 汤姆 不想 给 玛丽 一分钱 . +He lives just around the corner . 他 就 住 在 拐角 的 地方 . +She might know that we are here . 她 或许 知道 我们 在 这儿 . +You broke the rule . 你 坏 了 规矩 . +Do you know me ? 你 認識 我 嗎 ? +Tom does not eat red meat . 湯姆 不吃 紅肉 +If you had left home a little earlier you would have been in time . 如果 你 早点 出门 的话 , 你 就 能 赶上 了 . +She was obliged to give up the plan . 她 不得不 放弃 这个 计划 . +His name was on the tip of my tongue , but I could not remember it . 我 都 快要 说出 他 的 名字 了 , 可 就是 记不起来 . +Have you already voted ? 您 已經 投 了 票 了 嗎 ? +It is your turn . 輪到 你 了 . +That is a pencil . 那 是 一支 铅笔 . +I talked to Tom . 我 和 汤姆 说 了 话 . +That is because you are a girl . 那 是 因為 妳是 女生 . +Did Tom respond ? 汤姆 有 回应 了 吗 ? +Tom had no idea Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +Do not put it on my desk . 不要 把 它 放在 我 的 桌子 上 . +May I pay with a credit card ? 我 能 用 信用卡 支付 吗 ? +I have always kept my word . 我 一直 遵守 我 的 諾言 . +The admission is ten dollars a person . 入 會 費 一個 人 十美元 . +I am afraid of dogs . 我 怕 狗 . +I want to become rich . 我 想 變有 錢 . +I will give you a bike for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +Her older daughter is married . 她 的 大 女兒 結婚 了 . +There was not a tree in sight . 看不到 任何 一棵 樹 . +I lost my camera the other day . 那天 我 丢 了 我 的 照相机 . +Salt helps to preserve food from decay . 鹽 可以 幫助 保存 食物 避免 腐爛 . +The university was founded by his father twenty years ago . 大学 在 20 年前 由 他 的 父亲 建立 . +I know how to set a trap . 我 知道 怎么 设 陷阱 . +We are both reasonable people . 我们 是 两个 通情达理 的 人 . +He often stays up late at night . 他 經常 在 晚上 熬夜 . +I could not hear you . 我 听不见 你 . +We can not know what the future has in store . 人 不 知道 未來 可能 發生 什麼 事 . +I lost my luggage . 我 的 行李 丢 了 . +I do not know whether to accept or to refuse . 我 不 知道 是否 該 同意 或 拒絕 . +He tiptoed so no one heard him . 他 踮 著 腳 尖 走 , 所以 沒 有人 聽到 他 . +She is determined to become a secretary . 她 下决心 要 成为 秘书 . +I am very interested in French . 我 對 法語 很感 興趣 . +I do not do it anymore . 我 已经 不再 做 这个 了 . +I do not quite understand what he says . 我 不 太 明白 他 说 什么 . +You should not break promises . 你 不该 违背 你 的 诺言 . +Hardly anyone thinks that we are sisters . 几乎 没有 人 认为 我们 是 姐妹 . +English is studied in China , too . 英語 在 中國 也 被 學習 了 . +Sooner or later his luck will run out . 遲早 他 的 運氣 會用 完 . +Tom is older than I am . 湯姆 年紀 比 我 大 . +There was complete silence . 一片 寂静无声 . +She kept the secret to herself . 她 守著 這個 秘密 . +None of your business . 这 不是 你 的 事 . +My room looks out on the street . 從 我 的 房間 望出去 是 街道 . +My father always speaks in a very loud voice . 我 父親 總是 說 話 很大 聲 . +Were you at school at that time ? 那時 你 在 學校 嗎 ? +He will be very busy next month . 下个月 他 会 很忙 . +Tom was afraid to ask for help . 汤姆 不敢 求助 . +We want to go home . 我們 想 回家 . +Tom gave Mary the cold shoulder . 汤姆 给 玛丽 冷 的 肩膀 . +What are you watching ? 你 在 看 什么 ? +Tom sat on that park bench for nearly three hours . 汤姆 在 公园 的 长椅 上 坐 了 将近 三个 小时 . +Why did she come home early ? 為 什麼 她 早 回家 了 ? +This song was written by Foster . 這 首歌曲 是 由 福斯特 所寫 的 . +A wounded whale washed up on the beach . 一条 受伤 的 鲸鱼 在 海滩 边 搁浅 了 . +Smiles do not always indicate pleasure . 微笑 並 不 一定 表示 高興 . +I work best under pressure . 我 在 壓力 之下 工作 表現 最好 . +Tom failed to persuade Mary . 汤姆 没 能 说服 玛丽 . +Fill it with regular , please . 請 定期 填寫 . +You should not eat too much candy . 你 不 應 該 吃 太 多 糖果 . +You do not believe Tom , do you ? 你 不 信任 汤姆 , 对 吗 ? +You look tired . 你 看 起來 很 疲倦 . +This is my friend . 這 是 我 的 朋友 . +Why do you need my help ? 你 為 甚麼 需要 我 幫助 ? +The price of eggs is going up . 蛋 的 價格 正在 上漲 . +I feel comfortable . 我 感觉 很 舒服 . +Were you expecting to win ? 你 打算 赢 吗 ? +The bus leaves in five minutes . 公車 將 在 五分 鐘 後 開動 . +How do you get your children to eat vegetables ? 你 怎样 让 你 的 孩子 们 吃 蔬菜 ? +Why did you try to run away ? 为什么 你 企图 逃走 ? +It looks like Tom won the race . 看 起來 像是 湯姆 贏 得 了 比賽 . +He pressed the button and waited . 他 按 下 按 鈕然 後 等待 著 . +That river is dangerous . 那 條 河 是 危險 的 . +I need to take a shower . 我 需要 洗 个 澡 . +I have not been getting enough sleep lately . 我 最近 一直 睡眠不足 . +Without the slightest hesitation , he sold his own car . 他 毫不犹豫 地 把 自己 的 车 卖 了 . +We were talking about something at that time , but I do not remember what . 我们 那时 在 谈论 事情 , 但 我 不 记得 是 什么 了 . +I was surprised at his strong resemblance to his father . 他 像 极了 他 父亲 , 这 让 我 震惊 . +I really like this story . 我 真 喜歡 這 故事 . +She squeezed the juice from many oranges . 她 榨 了 許多 柳橙汁 . +Tom has a girlfriend in Boston . Tom 有個 在 波士 頓 的 女友 . +Where did you meet Tom ? 你 是 在 哪里 认识 汤姆 的 ? +I avoid discussing personal subjects with my boss . 我 避免 跟 老板 讨论 个人 话题 . +I will make you happy . 我会 让 你 幸福 的 . +What made you so angry ? 什麼 讓 你 這麼 生氣 ? +You should read many books when you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +Keep Tom safe . 确保 汤姆 安全 . +I 'd like a window seat , please . 請 給 我 靠 窗口 的 位子 . +I still have not found work . 我 還 沒有 找到 工作 . +Someone has taken my shoes by mistake . 有人 穿错 了 我 的 鞋 . +Tom is being held captive . 汤姆 被 囚禁 了 . +She disliked him . 她 不 喜歡 他 . +He likes to cook for his family . 他 喜歡 為 家人 做飯 . +I 'd rather do it by myself . 我 更 願意 自己 做 . +I do not like the taste of tomatoes . 我 不 喜歡 蕃茄 的 味道 . +They made up and became friends again . 他們 和解 了 , 並 再次 成為 了 朋友 . +You did what was necessary . 你 做 了 必要 的 事 . +I was already tired . 我 已经 累 了 . +They are melons . 它们 是 瓜 . +Tom has no friends to play with . 湯姆 沒有 朋友 可以 一起 玩耍 . +Watch him and do the same thing . 看著 他 並且 跟 他 做 同樣 的 事情 . +They came up with a plan after a long discussion . 他们 终于 在 漫长 的 讨论 之后 得出 了 一个 计划 . +I do not understand why pepperoni pizza is so popular . 我 不 懂 為何 義式 辣腸 披 薩 如此 受歡 迎 . +Have you been to London before ? 你 以前 去過 倫敦 嗎 ? +Say it clearly . 說 清楚 . +I knew he would accept . 我 知道 他 会 接受 的 . +Stop gambling . 戒掉 赌博 吧 . +I have a friend whose father is a teacher . 我 有 一個 朋友 , 他 的 父親 是 老師 . +I got up early . 我 起床 早 . +Anything new ? 有 什么 新鲜事 吗 ? +He goes to Karuizawa every year . 他 每年 都 去 輕 井澤 . +Why were you late ? 你 为什么 迟到 ? +Tom was not thirsty . 汤姆 不渴 . +He refused my friend request . 他 拒绝 了 我 加 好友 的 请求 . +He made me a suit . 他 给 我 做 了 套 衣服 . +You should have stayed in the car . 你 該 留在 車裡 . +Whenever I hear that song , I remember my youth . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +Tom made up his mind to become a newspaperman . 汤姆 决定 做 报业 人士 . +He is no ordinary student . 他 不是 个 普通 的 学生 . +Almost everyone came . 几乎 每个 人 都 来 了 . +Look , it is my problem . 看 , 这 是 我 的 问题 . +I received a letter written in English yesterday . 昨天 , 我 收到 一封 用 英语 写 的 信 . +You did not need to take a taxi . 你 不必 搭計 程車 . +He is so heartless . 他 是 这么 的 无情 . +Please stay as long as you wish . 你 想待 多久 就 待 多久 . +There is no clock in my room . 我 的 房间 里 没有 时钟 . +Have we made progress ? 我們 取得 進步 了 嗎 ? +He took me for an Englishman . 他 误认为 我 是 一个 英国人 . +Do not tell me you did not know . 别跟我 说 你 不 知道 . +That is very handy . 这 很 方便 . +You have put on weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +The bill was passed after a hard fight in the House . 該 法案 在 眾議 院爭議 後 獲得 通過 . +There is no need for you to study . 你 沒有 讀書 的 必要 . +He plays tennis very well . 他 打网球 打 得 很 好 . +Tom has lost weight recently . 湯姆 最近 變 瘦 了 . +Let is play tennis in the afternoon . 今天下午 讓 我們 打 網球 吧 . +Everybody did that . 每个 人 都 做 了 那事 . +Tom listened carefully . 湯姆 仔細 聽 . +It is time to leave . 是 时候 离开 了 . +I found her letter in the mailbox . 我 在 信箱 中 發現 了 她 的 信 . +Switzerland is situated between France , Italy , Austria and Germany . 瑞士 位于 法国 、 意大利 、 奥地利 和 德国 之间 . +First off , I 'd like you to come with me to a department store sale . 首先 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +I 'd rather stay than go . 我 寧願 待 在 這裡 而 不 去 . +They made their way across the river . 他們 渡河 前 進 . +Have you ever traveled by plane ? 你 曾經 坐 飛機 旅行 過 嗎 ? +A ring and some cash are missing . 少 了 一个 戒指 和 一点 现金 . +They are jealous of our success . 他们 嫉妒 我们 的 成功 . +Did you buy her something for Christmas ? 你 聖誕節 買 東西 給 她 了 嗎 ? +Let is eat sushi . 讓 我們 吃 壽司 吧 . +The meeting ended earlier than usual . 會議 比 往常 早 結束 . +Something must be done ! 必須 採取 一些 行動 了 ! +He gave the same answer as before . 他 給 了 跟 以前 一樣 的 回答 . +Spring will come soon . 春天 就要 来 了 . +Children really like playing on the beach . 孩子 们 非常 喜欢 在 海滩 上 玩耍 . +I saw an old woman cross the street . 我 看见 一个 老太太 穿过 了 马路 . +Did they live here ? 他們 從 前 住 這 嗎 ? +Please send me a letter . 請 寄信 給 我 . +Her English is excellent . 她 的 英语 好极了 . +That is my problem . 這 是 我 的 問題 . +What are your influences ? 你 的 影响力 是 什么 ? +Hold your horses , young man . 別 那麼 猴急 , 年 輕 人 . +He wants to kiss her . 他 想 亲 她 . +Tell me where to put these books . 告訴 我 這些 書要 放在 哪裡 . +How many children do you have ? 你 有 幾個 小孩 ? +May we swim here ? 我们 能 在 这里 游泳 吗 ? +I will give you this book . 我会 把 这 本书 给 你 . +He knows how to swim . 他 会 游泳 . +I bought a pair of shoes . 我 買 了 一雙 鞋子 . +Tom watched TV yesterday . Tom 昨天 看 了 电视 . +Life without love is just totally pointless . 没有 爱情 的 生活 毫无意义 . +What Tom said does not apply in this situation . 汤姆 所 言 不符 时局 . +I still need an answer . 我 仍然 需要 一个 答案 . +Which one of the two brothers did you see ? 你 见到 的 是 两 兄弟 中 的 哪 一个 ? +How do you feel now ? 你 现在 感觉 如何 ? +Please fill this bucket with water . 請 把 這個 桶子 裝滿 水 . +He left an hour ago . 他 一 小时 前 走 了 . +I was hoping Tom would come here today . 我 希望 湯姆 有 一天 會來 這裡 . +He was accused of murder . 他 被 控告 杀人罪 . +Everyone noticed . 所有人 都 注意 到 了 . +Tom certainly is an interesting person . 汤姆 这 人 确实 很 有意思 . +The taxi I took was very old and small . 我 打 的 这辆 出租车 很 老 , 也 很小 . +Do you realize what this means ? 你 知道 這 是 甚麼 意思 嗎 ? +He speaks French fluently . 他 说 法语 说 得 很 流利 . +You know too much . 你 知道 得 太 多 了 . +I feel lonely . 我 觉得 很 孤独 . +I do not need anything . 我 不 需要 任何 東西 . +Is Monday OK ? 周一 可以 吗 ? +I will explain it to her . 我会 跟 她 解释 的 . +Someone came . 有人 来 了 . +Do not tell lies . 别 说谎 ! +Shut your eyes . 闭 上 你们 的 眼睛 . +You and Tom must be happy . 你 和 湯姆 一定 很 高興 . +I can not play tennis very well . 我 網球 打 的 不是 很 好 . +The girl is small for her age . 就 她 的 年齡 來說 , 這個 女孩 算是 矮小 的 . +What do you suppose this could be ? 你 认为 这 是 什么 ? +Tom left his umbrella on the bus . 汤姆 把 伞 落在 了 巴士 上 . +Tom felt his heart beating faster . 湯姆 感覺 他 心跳 加快 . +I received a letter three months later . 我 在 三個 月 後 收到 了 一封信 . +Tom was the one that told us about the problem . 湯姆 是 告訴 我們 問題 的 人 . +Can I bring Tom ? 我 可以 带上 汤姆 吗 ? +I accompanied her on a walk . 我 陪 她 散步 . +I can seldom find time for reading . 我 很少 能 抽出 时间 看书 . +Who is that ? 那 是 谁 ? +It is wrong to deceive people , but worse to deceive yourself . 欺騙 別人 是 錯 的 , 但 更糟 的 欺騙 自己 . +The nail tore his jacket . 這個 釘子 撕破 了 他 的 夾克 . +I warned you not to come here . 我 警告 過 你 別 來 這裡 . +I have never told anyone about this . 我 没 跟 任何人 说 过 这个 . +I borrowed this comic from his sister . 我 向 他 的 妹妹 借了 這個 漫畫 . +London , where I live , used to be famous for its fog . 我 住 的 地方 - 倫敦 , 從前 以 霧聞 名 . +He knows almost nothing about that animal . 他 幾乎 對 那個 動物 一無 所知 . +Tom did not give me back my money . 湯姆 沒有 還 我 錢 . +Take whichever you want . 拿 你 想要 的 . +I understand . 我 明白 了 . +Are you going to attend the meeting ? 你 要 參加 會議 嗎 ? +Children often hate spinach . 小孩 一般 都 討厭 菠菜 . +Tom very often takes a nap for an hour after lunch . 汤姆 很 经常 在 午饭 后 小憩 一 小时 . +You have not washed your hands yet , have you ? 你 还 没 洗手 , 不是 吗 ? +May I say something ? 我 可以 說 些 什麼 嗎 ? +I went to sleep about 10 o 'clock . 我 在 10 點 左右 去 睡 覺 . +Everything will be OK . 一切 都 会 好 的 . +We had an earthquake last night . 昨晚 我們 這裡 發生 了 地震 . +I heard a strange sound . 我 聽見 一聲 怪響 . +Do you really want Tom to suffer ? 你 真 想 讓 湯姆 受苦 嗎 ? +My whole body hurts . 我 全身 酸痛 . +There is a bottle of white wine in the refrigerator . 冰箱 里 有 一瓶 白葡萄酒 . +There is not any film in this camera . 這個 相機 裡 沒有 胶卷 . +She lives in a large house . 她 住 在 一棟 大房子 裡 . +We have two examinations during this term . 这个 学期 我们 有 两次 考试 . +It is very expensive to keep up with the latest fashions . 跟上 最近 潮流 时尚 是 件 非常 花钱 的 事儿 . +You look tense . 你 看起来 很 紧张 . +You know I am right . 你 知道 我 是 正确 的 . +Please tell me about your problem . 請 告訴 我 你 的 問題 . +The cause of the fire was unknown . 火災 的 原因 不明 . +Tom has been expecting Mary . 湯姆 預計 瑪莉 會 來 . +I have caught a bad cold . 我 得 了 重感冒 . +I can not stand him . 我 受不了 他 . +I am on my way to the meeting right now . 我 在 前往 会议 的 路上 . +I slept only two hours . 我 祇 睡 了 兩 小 時 . +My cell phone has a built @-@ in digital camera . 我 的 手機 有 內建 的 數位 相機 . +Something is happening in Boston . 在 波士顿 正 发生 着 什么 事 . +I need to complete it as soon as possible . 我 需要 尽快 完成 . +I do not have a prejudice against foreign workers . 我 对 外籍 员工 没有 偏见 . +I asked the doctor some questions . 我 問 了 醫生 一些 問題 . +I am getting off at the next station . 我 下 一站 下车 . +I had some trouble in finding his house . 我 很 難 找到 他 的 房子 . +He often quotes from Shakespeare . 他 經常 引用 莎士比亞 . +Tom dealt the cards . Tom 处理 了 卡片 . +We can seat you soon . 我们 很快 就 可以 安排 您 入座 . +Tom does not even try to help Mary . 汤姆 甚至 没 打算 帮 玛丽 . +As soon as I get to London , I will drop you a line . 我一 到 伦敦 就 会 给 你 留言 的 . +There is a back entrance . 有 后门 . +He kicked the ball into the goal . 他 把 球 踢 進 了 球門 . +My friend is studying Korean . 我 的 朋友 在 學朝 鮮語 . +I have just been to my uncle is house . 我 剛剛 去 了 我 叔叔 家 . +The problem was very difficult . 這個 問題 非常 困難 . +My apartment is on the fourth floor . 我 的 公寓 在 四樓 . +His greatest fault is talking too much . 他 最大 的 缺点 就是 话 太 多 . +I still can not speak French . 我 还是 不会 说 法语 . +We had a welcome party for her . 我們 為 她 舉辦 了 一個 歡迎 會 . +Do not throw out this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +You have to get this work finished by noon . 你 必須 在 中午 以前 完成 這個 工作 . +The first thing you have to take into consideration is time . 你 应该 考虑 的 第一件 事 是 时间 . +Unfortunately , it rained . 很 遗憾 , 下雨 了 . +We will have to go back . 我们 还 得 回去 . +Where does it hurt ? 哪裡 疼 ? +I will get you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +Freedom is not free . 自由 是 有 代价 的 . +Tom saw Mary crying . 湯姆 看見 瑪麗 在 哭 . +I would like to try this on . Where are the fitting rooms ? 我 想 试试 这件 . 请问 哪里 是 试衣间 ? +Can anyone answer my question ? 有人 可以 回答 我 的 問題 嗎 ? +Let me give you some advice . 讓 我 給 你 一些 建議 . +He is beginning to lose his hair . 他 开始 掉头发 了 . +You made the mistake on purpose , did not you ? 你 故意 犯 這個 錯 , 是 嗎 ? +We ran down the hill . 我們 跑 下山 . +What is your job ? 你 做 什麼 工作 ? +May I put it here ? 我 可以 把 它 放在 这儿 吗 ? +The information you gave me is of little use . 你 給 我 的 資料 沒有 多大 的 用處 . +The soccer game is tomorrow . 明天 有 足球 比賽 . +English is a universal language and is used all over the world . 英語 是 一種 世界性 的 語言 , 用 於 世界各地 . +Who told you the story ? 誰 告訴 你 這個 故事 ? +She cried when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 哭 了 . +Pardon me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +She is a well @-@ known singer . 她 是 一个 著名 的 歌手 . +Quit talking , will you ? 不要 说话 , 好不好 ? +The bucket was full of water . 这桶 装满 了 水 . +Please wait until I come back . 請 等到 我 回來 . +Write your name in capitals . 写下 你 名字 的 大写字母 . +Tom is eyesight is deteriorating . Tom 的 视力 正在 恶化 . +My father is retiring next spring . 我 爸爸 明年 春天 就要 退休 了 . +Your cake is delicious . 你 的 蛋糕 很 美味 . +What is it that Tom wants to eat ? 汤姆 想 吃 的 是 什么 ? +Those are my pants . 那些 是 我 的 褲子 . +I saw him run away . 我 看見 他 逃跑 了 . +The participants were for the most part women . 参与者 大部分 是 女性 . +It is been raining since early morning . 從 清晨 開始 一直 下雨 . +I kept on singing . 我 繼續 唱歌 . +The cat is looking at the fish . 猫 看着 鱼 . +The things he says are not the least bit important . 他 说 的话 根本 毫无意义 . +You could not handle the pressure . 你 不能 处理 压力 . +He introduced me to his parents . 他 把 我 介紹 給 他 的 父母 認識 . +Let me see it . 讓 我 看看 . +Something did happen . 有 什么 事 发生 了 . +Let is go and swim in the river . 讓 我們 去 河裡 游泳 吧 . +The lights in the bathroom are not working . 洗手间 的 灯 坏掉 了 . +Compared to Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +We ran in the park . 我们 在 公园 里 跑 了 步 . +Please do that . 麻煩 您 那樣 做 . +Thanks to both of you . 感谢 你们 两位 . +Children love playing on the beach . 孩子 們 喜歡 在 沙灘 上 玩 . +The whole neighborhood was surprised at the news . 整个 小区 对 这个 消息 很 惊讶 . +It is supper time . 吃 晚 飯 的 時間 到 了 . +You come back soon , OK ? 你 早點 回來 , 行 嗎 ? +I have not eaten for many days . 我 好多天 沒 吃 東西 了 . +Tears filled her eyes . 她 热泪盈眶 . +No problem . 没关系 . +Her father passed away last week . 她 的 父親 上週 去世 了 . +" Are the drinks free ? " " Only for ladies . " “ 酒水 免费 吗 ? ” “ 仅 女士 而已 . ” +He called me a taxi . 他 替 我 叫 了 一部 計程 車 . +I would rather stay at home than go out . 比起 出门 , 我 更 喜欢 待 在家 . +What do you plan to major in at college ? 你 计划 去 大学 后 主修 什么 吗 ? +We are all at risk . 我们 都 在 冒险 . +You will be able to see the difference very easily . 你们 很 容易 就 能 看出 区别 . +You should rewrite this sentence . 你 應該 重寫 這 句 話 . +He is living abroad at the moment . 他 现在 住 在 国外 . +Take as many cookies as you want . 想 吃 多少 饼干 就 吃 多少 . +I would like to pay in cash . 我 想用 現金 支付 . +You are very shy . 你 很 害羞 . +Tom will wait . 湯姆會 等 . +It is fun to travel . 旅行 是 乐事 . +Tom can run fast . Tom 可以 跑 得 很快 . +It is very difficult . 这 很 难 . +You can bank on that . 你 可以 寄希望于 此 . +If it looks like an apple and it tastes like an apple , it is probably an apple . 如果 看起来 像 个 苹果 而且 吃 起来 也 像 苹果 的话 , 可能 就是 苹果 . +She asked how to cook the fish . 她 问 了 怎么 烧鱼 . +Why do not we order pizza ? 为什么 我们 不订 披萨 呢 ? +Tom said that he lost his key . 汤姆 说 他 丢 了 钥匙 . +He gave a nice present to me . 他 送给 我 一份 漂亮 的 礼物 . +It was rather easy for them . 這 是 對 他們 來說 相當 容易 . +He is American . 他 是 美国 人 . +He drank very little of the water . 他 喝 很少 的 水 . +Africa was once called the Dark Continent . 非洲 曾經 被 稱為 黑暗 大陸 . +He does not like to eat fish . 他 不 喜歡 吃 魚 . +" Who is in the car ? " " Tom is . " “ 谁 在 车里 ? ” “ 汤姆 . ” +The senator was censured by the congressional ethics committee . 议员 受到 了 议会 道德 委员会 的 谴责 . +That was years ago . 那 是 好 幾 年前 . +He objected to our plan . 他 反 對 我們 的 計劃 . +Who are your most interesting friends ? 你 最 有趣 的 朋友 是 誰 ? +Where were you ? 之前 你 在 哪里 ? +We do not have time . 我们 没 时间 . +We were worried . 我们 很 担心 . +Poor health prohibited him from traveling . 因为 健康 状况不佳 , 他 没去 成 旅行 . +It is too expensive . 这 太贵 了 . +He went by bicycle . 他 骑 自行车 去 的 . +There is no denying that she is very efficient . 无可否认 她 非常 有 能力 . +She smiled . 她 笑 了 . +Go away . 走開 ! +Tom likes science fiction . 汤姆 喜欢 科幻 . +Yesterday , the weather was very nice . 昨天 天气 非常 好 . +He looks old for his age . 他 看 起來 比 他 的 實際 年齡 大 . +My stomach is full . 我 吃 得 很 飽 . +She is two years older than you . 她 比 你 大 兩歲 . +Do you have a TV ? 你 有 电视 吗 ? +Are you happy ? 你 开心 吗 ? +He looks like a good boy . 他 看 起來 是 個 好 男孩 . +I thought his opinion was relevant . 我 認為 他 的 意見 很 中肯 . +He hid behind the door . 他 藏到 了 门 后 . +Tom can not get over Mary . 汤姆 不能 原谅 玛丽 . +Tom could not get to sleep till after three last night . 汤姆 昨晚 三点 多 才 睡着 . +Tom was not smiling when he entered the room . 汤姆 进 房间 时 没有 微笑 . +I want to eat apple pie . 我 想 吃 苹果派 . +He went to New York on Monday . 他 星期一 去 了 紐約 . +Walk faster , or you will miss the train . 走快 一點 , 不然 你 會 錯 過 火車 . +That is our school . 那 是 我们 的 学校 . +The dog came running to me . 狗 向着 我 跑 了 过来 . +Tom quietly closed the bedroom door . 湯姆 靜靜地 關上 了 臥室 的 門 . +I love this car . 我 愛 這 台 車 . +She was washing the dishes . 那時 她 正在 洗碗 . +Is there a hospital near here ? 這 附近 有 醫院 嗎 ? +Try it once more . 再 試 一次 . +You are always busy . 你 一直 忙 . +I often play soccer after school . 我 常常 在 放學 後 踢足球 . +Did you tell on me ? 你 告发 我 了 吗 ? +Could you please sign the register ? 請 您 在 登記 冊 上 簽名 好 嗎 ? +I suggest we go out on Friday . 我 建议 我们 星期五 出去玩 . +It is too loud . 它 太 大聲 . +Do you plan to stay long ? 你 打算 長 時間 停留 嗎 ? +I will always love you , no matter what happens . 不論 發生 了 什麼 事 , 我 會 永遠 愛 你 . +She set out on a trip last week . 她 上週 去 旅行 了 . +My brother is a first @-@ year student . 我 弟弟 是 個 一年 級 的 學生 . +Tom is insufferable . 汤姆 令人 难以忍受 . +What would you like ? 你 想要 甚麼 ? +Where do you work now ? 你 现在 在 哪里 工作 ? +He is independent of his parents . 他 獨立 於 他 的 父母 . +I would like to have a look at your collection of stamps . 我 想 看看 您 的 邮票 收藏 . +We have to pick a name for the child . 我們 要 給 孩子 起 個 名字 . +I am willing to take your offer . 我 願意 接受 你 的 報價 . +Many people envy Tom is success . 许多 人 嫉妒 汤姆 的 成功 . +Could you turn down the radio ? 您 能 把 收音机 开 小声 一点 吗 ? +Is Tom in a lot of trouble ? 汤姆 是不是 麻烦事 很多 ? +Although he is rich , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +I think we should be able to go wherever we want to . 我 認為 我們 應 該 能 去 我們 想去 的 地方 . +He made a few grammatical mistakes . 他 犯 了 一些 文法 錯誤 . +Is this Tom is ? 这 是 汤姆 的 吗 ? +You are Tom is friend , are not you ? 你 是 湯姆 的 朋友 , 不是 嗎 ? +What else do you want me to say ? 你 想 让 我 再说 什么 ? +Please remain seated for a few minutes . 请 坐 一会 . +The weatherman says there is a storm on the way . 气象学家 说 会 有暴风雨 . +There is somebody in there . 有人 在 那里 . +I wish I could talk to you . 我 希望 能 与 你 谈话 . +We went swimming at the beach . 我們 去 海邊 游泳 . +I think he will do his best . 我 認為 他 會 盡力 而為 . +We are friends from way back . 我们 是 老朋友 了 . +No words can relieve her deep sorrow . 沒有 什麼 話 語能 減輕 她 深深 的 悲傷 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +No , I did not write it . 不 , 我 沒 寫 . +Do you want to come in ? 你 想 进来 吗 ? +I think he will not come . 我 认为 他 不会 来 . +The circumstances did not allow me to go abroad . 情况 不 允许 我 出国 . +See you soon ! 一會兒 見 ! +Do you feel tired ? 你 覺 得 累 嗎 ? +Life cannot exist without water . 水 是 生命 的 源泉 . +It is been ten years since we last met . 我們 離 上次 見 面有 十年 了 . +She keeps a parrot as a pet . 她 養一隻鸚鵡 作 為 寵 物 . +He earns double my salary . 他 的 工资 是 我 的 两倍 . +I belong to the drama club . 我 參加 戲劇 社 . +You do not know who I am . 您 不 知道 我 是 谁 . +Banks charge higher interest on loans to risky customers . 银行 对 风险 客户 收取 较高 的 贷款 利息 . +We will probably be the first ones there . 我們 可能 是 最先 到 那裡 的 . +A computer is an absolute necessity now . 電腦 現在 是 一個 絕對 必要 的 東西 了 . +We went to the mountains to ski . 我們 去 山上 滑雪 . +Will you pick me up at seven tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +A young girl on crutches asked Tom where he lived . 一个 拄着 拐杖 的 年轻 女孩 问 汤姆 他 住 在 哪里 . +He has just become a principal . 他 剛 成為 一 名校 長 . +Did you just get to know him ? 你 是不是 刚 认识 他 ? +I do not make deals with people like you . 我 不 跟 你 这样 的 人 做生意 . +Do you know how to recover a deleted file ? 你 知道 怎么 恢复 已 删除 的 文件 吗 ? +I need someone to talk with . 我 得 找 人 商量一下 . +I am stuck here in Boston because of the storm . 我 因為 風暴困 在 波士 頓 . +May I borrow your knife ? 我 能 借 一下 你 的 刀 吗 ? +We had a heavy rain last night . 昨晚 下 了 一場 大雨 . +He put the book on the table . 他 把 书 放在 了 桌上 . +Where is the telephone book ? 电话簿 在 哪里 ? +I am very sorry that I came home so late . 我 很 抱歉 那么 晚 回家 . +The old man died from hunger . 這位 老人 死 於 飢餓 . +I do not want to hurt his feelings . 我 並 不想 傷害 他 的 感情 . +Tom does not have a microwave oven . 汤姆 没有 微波炉 . +My house is close to a bus stop . 我 的 房子 靠近 一個 公車 站牌 . +Three months later , Tom was dead . 三個 月 后 , 湯姆 死 了 . +I do not even know if Tom went to college or not . 我 甚至 不 知道 汤姆 有没有 上 过 大学 . +Tom did not have enough time to eat lunch . 湯姆 沒 時間 吃 午 飯 . +What more would you want ? 你 還 想要 什麼 ? +We can hear the ocean from here . 我們 從 這裡 可以 聽到 海 的 聲音 . +She plays golf every weekend . 她 每 周末 都 打 高尔夫球 . +Everybody lies . 每个 人 都 会 说谎 . +He majored in drama at college . 他 在 大學 主修 戲劇 . +She is progressing in Chinese . 她 中文 有 进步 . +I believe in exercising regularly . 我 相信 規律 的 運動 . +Tom is not watching TV now . 湯姆 現在 沒 在 電視 . +I gave Tom one of those . 我 给 了 汤姆 其中 之一 . +I would like to order drinks now . 我 現在 想 點 飲料 . +Tom is out of your league . 汤姆 不 在 你 的 联盟 里 . +Answer the following questions in English . 用 英語 回答 下列 問題 . +The committee consists of four members . 委员会 由 四个 成员 组成 . +Do you have any Japanese magazines ? 你 有 任何 日本 雜 誌 嗎 ? +I am sleepy . 我 困 了 . +It is not always cold in Hokkaido . 北海道 並 不 總是 寒冷 . +What you say makes no sense . 你 說 的 話 沒有 道理 . +Which hat is yours ? 哪 顶 帽子 是 你 的 ? +A famous architect built this house . 一个 有名 的 建筑师 造 了 这个 房子 . +I would like to reserve a single room . 我 想 預訂 一間 單人 房 . +I know what you are doing . 我 知道 你 在 做 什么 . +I did not mean to disturb you . 我 不是 想 打扰 你 . +Let him play your guitar . 讓 他 彈 你 的 吉他 . +Japan is famous for Mt . Fuji . 日本 以 富士山 聞名 . +It is too late to apologize . 现在 道歉 也 迟 了 . +She did not turn up . 她 沒有 出現 . +Computers are certainly playing an important role in our life , whether we like it or not . 无论 我们 是否 喜欢 电脑 , 它 在 我们 的 生活 中 始终 起 着 重要 的 作用 . +I am going to make you a drink . 我 去 弄 飲料 給 你 . +She filled her bag with apples . 她 在 她 的 袋子 裡 裝滿 了 蘋果 . +We import tea from India . 我們 從 印度 進口 茶葉 . +What were the meetings like ? 会议 怎么样 ? +He was watching TV last night . 他 昨晚 在 看電視 . +There are too many things to do ! 要 做 的 事太 多 了 ! +I do not know when he will come again . 我 不 知道 他 什麼 時候 會 再來 的 . +It is time to talk . 到 談話 的 時間 了 . +I have a new car . 我 有 辆 新车 . +Good evening . 晚上 好 ! +Do not worry about this . 別 為 此 擔心 . +Be on time . 要 守时 ! +My aunt made a new skirt for me . 我 阿姨 做 了 一條 新 裙子 給 我 . +When did you come to Japan ? 你 何時 來 日本 的 ? +She says he will not give up smoking . 她 說 他 不 會 戒煙 . +They said the situation was only temporary . 他们 说 情况 只是 暂时 的 . +Now I need you to leave . 現在 我 需要 你 離開 . +I met him while I was coming home . 當 我 回家 時 , 我 遇見 了 他 . +Tom realized that he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +He plays the guitar very well . 他 吉他 彈 得 很 好 . +Let me get my violin . 让我拿 一下 我 的 小提琴 . +Life is fun . 人生 是 有趣 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +This is an important event . 这 是 个 重要 事件 . +Please show me your driver is license . 請 讓 我 看看 您 的 駕駛 執照 . +My mother made a sweater for me . 我 媽媽 為 我 做 了 一件 毛衣 . +Close the door , please . 請 關門 . +We must try to break the deadlock . 我们 必须 设法 打破 这个 僵局 . +The bell rings at eight . 鈴聲 在 八點鐘 響起 . +Will you explain the rule to me ? 你 能 帮 我 说明 一下 规则 吗 ? +The bottle smashed to pieces . 瓶子 摔成 了 碎片 . +I am not your mother . 我 不是 你 母親 . +The road is too narrow for cars . 這 條路 對 汽車 來說 太 窄 了 . +That is my toothbrush . 這 把 是 我 的 牙刷 . +The bus was filled to capacity . 這輛 公車 客滿 了 . +How far is it from the airport to the hotel ? 從 機場 到 旅館 多遠 ? +You can probably guess what happens though . 但 你 很 可能 猜得到 会 发生 什么 . +The old man walked with a stick . 這個 老人 拄著 一根 拐杖 走路 . +I am getting off at the next stop . 我 將 在 下 一站 下車 . +He did not listen to music . 他 没有 听 音乐 . +Could you wrap this separately , please ? 請 你 分開 包裝 好 嗎 ? +Is this Tom is ? 这 是 汤姆 的 东西 吗 ? +I am going to stop trying to be friendly with you . 我 不 跟 你 要 好 了 . +She is fond of playing tennis . 她 酷爱 打网球 . +It is fine today . 今天天气 很 好 . +I want a girlfriend . 我 想 找 女朋友 . +He swims better than I do . 他 游泳 比 我 好 . +Movie making is an exciting job . 電 影 製 作 是 一 個 令人 興奮 的 工作 . +Tom has a pretty big mouth . 汤姆 是 一个 大嘴巴 . +It was nice meeting you here . 在 这里 见到 您 真是 太好了 . +Tom is fluent in three languages . 汤姆 掌握 了 三种 语言 . +Would you please look after the children ? 你 可以 照顧 一下 孩子 們 嗎 ? +Champagne , please . 给 我 香槟 , 谢谢 . +Tom used to work here . 汤姆 过去 在 这里 工作 . +I got this vacuum cleaner for nothing . 我 免費 得到 了 這個 吸 塵器 . +She is still dependent on her parents . 她 现在 依然 依靠 父母 生活 . +It is said that she is a well @-@ known actress . 據 說 她 是 個 知名 的 女 演員 . +As you sow , so shall you reap . 种瓜得瓜 , 种豆得豆 . +Do not pry into my private life . 不要 插手 我 的 私生活 . +You are in trouble now . 你 有 麻烦 了 . +Would you care for some tea ? 你 要 喝 點 茶 嗎 ? +Please pick me up at the airport at five . 請 於 五點鐘 到 機場 接 我 . +Where is your bag ? 你 的 包在 哪裡 ? +I have to say no . 我 必须 拒绝 . +Are you the owner of this house ? 你 是 這棟 房子 的 主人 嗎 ? +I think we were well @-@ prepared . 我 認為 我們 準備 好 了 . +She sent me a letter . 她 寄给 我 一封信 . +Tom was the first to arrive and the last to leave . 湯姆 最先 來 , 最 後 走 . +I was the last one to see Tom . 我 是 见 汤姆 的 最后 一个 . +Tom took out his wallet and paid the bill . 湯姆 拿出 錢 包付 了 賬 . +I refuse to be treated like a slave by you . 我 拒绝 被 你 像 奴隶 一样 对待 . +Louder , please . 请 大声 一点 . +My father sometimes goes abroad . 我 父親 偶爾 出國 . +Tom does not know whether Mary is telling the truth or not . 汤姆 不 知道 玛丽 说 的 是 真话 还是 假话 . +He does not have to go to school . 他 不必 上學 . +When was it built ? 它 是 什麼 什麼 時候 蓋 的 ? +I will stand by you whatever happens . 不论 发生 什么 事 , 我 都 会 在 你 身边 . +You do not look so happy . 你 看来 不 大 高兴 . +The man is wanted for murder . 這人 因謀 殺 被 通緝 . +I do not like to socialize . 我 不 喜欢 跟 人 打交道 . +I have got one for you . 我 給 你 帶 了 一個 . +The air conditioner has got out of order . 空调 坏 了 . +Tom wants to be the boss . 湯姆 想 當 老 闆 . +The top of Mt . Fuji was covered with snow . 富士山 顶盖 满 了 雪 . +How did you like the party ? 你 覺得 這個 派 對 如何 ? +Much of what they wrote about never happened . 他們 寫 的 很多 都 沒 發生 . +I do not like to mix business with pleasure . 我 不 喜欢 把 生意 和 快乐 混 在 一起 . +They referred to Chaucer as the father of English poetry . 他們 視 喬叟 為 英 詩 之 父 . +Large , is not it ? 很大 , 不是 嗎 ? +There is no doubt about it . 關於 此事 毫無疑問 . +Why did you quit ? 你 為 什麼 辭職 ? +Cosmetic surgery is not covered by most insurance plans . 大部份 的 保險 計劃 不 包含 整容 手術 . +I took a shower . 我 洗 了 澡 . +People look at things differently depending on whether they are rich or poor . 人們 看待 事情 的 角度 不同 取決 於 他們 是 富裕 或 貧窮 . +I did not know Tom was going to tell us what to do . 我 不 知道 汤姆 会 告诉 我们 该 怎么 做 +As soon as she comes , we will begin . 她 一 到 , 我们 就 开始 . +He answered my question with a " no . " 他 用 一個 " 不 " 回答 了 我 的 問題 . +It was amazingly easy . 这 出乎意料 地 容易 . +You may have been the last person to see Tom . 你 可能 是 最 後 一個 見 湯姆 的 人 . +This diamond is not real . 这 颗 钻石 不是 真的 . +He likes neither baseball nor football . 他 既 不 喜欢 棒球 , 又 不 喜欢 足球 . +I have finished cleaning my room . 我 已經 打掃 完 我 的 房間 了 . +My business has at last gotten on the right track . 我 的 生意 終於 上 了 軌道 . +He asked her seven times to marry him . 他 求 她 跟 他 结婚 七次 . +No one voted against it . 没有 人 投 反对票 . +Tom was never happy . 湯姆 從不 高興 . +I am convinced that things will change for the better . 我 深信 事情 会往 更好 的 方向 转变 . +The Hilton Hotel , please . 请 开到 希尔顿酒店 . +Come along with me . 请 跟我来 . +I was still an amateur at that time . 我 那時 還 是 個 外行 . +Tom is a very good man . 汤姆 是 个 很好 的 人 . +I think we should try it . 我 認為 我們 該 試試 . +May I have something to drink ? 我 可以 喝 點 東西 嗎 ? +My gums are bleeding . 我 的 牙齦 流血 . +Tickets are on sale now . 现在 售票 . +I think skateboards are usually cheaper than rollerblades . 我 觉得 一般 滑板 比 轮滑鞋 便宜 . +He divorced his wife last month . 上個月 他 和 妻子 離婚 了 . +Please return the book by tomorrow . 請 明天 前 還 書 . +You must be joking ! 你 一定 是 开玩笑 ! +They passed by her house yesterday . 他們 昨天 路 過 她家 . +Stay down ! 趴着 ! +We do not get many visitors here . 我们 这里 没有 很多 访客 . +Zip your lips . 闭上 你 的 嘴 . +Haste makes waste . 欲速 則 不達 . +This is not salt . 这 不是 盐 . +I think it was a good day . 我 認為 那 是 個 好日子 . +He is not a high school student . 他 不是 個 高中生 . +They have twelve children . 他们 有 12 个 孩子 . +Tom said he has not decided what needs to be done . 湯姆 說 他 還 沒 決定 要 做 甚麼 . +My brother goes to college in Tokyo . 我 兄弟 在 東京 上大學 . +" Pass me the salt , please . " " Here you are . " “ 请 把 盐 递给 我 . ” “ 拿 着 . ” +I could not convince him of his mistake . 我 没能 让 他 相信 他 的 错误 . +She got very angry with her children . 她 对 她 的 孩子 非常 生气 . +She carried the box under her arm . 她 把 箱子 挾 在 手臂 下 . +He was very patient . 他 非常 有 耐心 . +What a pity ! 太 可惜 了 ! +My house is close to the park . 我 的 房子 靠近 公園 . +There is a telephone in my room . 我 的 房里 有 部 电话 . +Do you want to go on a picnic with me ? 你 想 跟 我 去 野餐 吗 ? +I can not change what happened yesterday . 我 没法 改变 昨天 发生 的 事情 . +We have a little time left . 我們 還 有 一點 時间 . +Why do not you come dancing with me ? 为什么 你 不 来 跟 我 跳舞 ? +Do you have enough money ? 你 的 钱 够 吗 ? +Why are you being so evasive ? 你 为什么 这么 躲躲闪闪 ? +Tom and I were business partners . Tom 跟 我 是 商業 夥 伴 . +It is time to eat lunch . 午餐 時間 到 了 . +He does not speak our language . 他 不 會 說 我們 的 語言 . +We have to do our best . 我们 要 尽力而为 . +Do not you have to work ? 你 不用 工作 吗 +He has over a million dollars in assets . 他 有 超过 一百万美元 的 资产 . +They furnished the library with new books . 他們 在 圖書館 裝備 了 新 的 書籍 . +I do not know what to say . 我 不 知道 说 什么 . +You 'd better not go there again . 你 最好 不要 再 去 那裡 . +We celebrate Christmas every year . 我們 每年 都 慶祝 聖誕節 . +My room is just below . 我 的 房間 就 在 樓下 . +She has an eye for beauty . 她 有 一雙 美麗 的 眼睛 . +I 'd rather stay at home . 我 寧願待 在家 裡 . +I have already told Tom he can not go to Mary is party . 我 已經 告訴 湯姆 他 不能 去 瑪麗 的 聚會 了 . +Tom stayed at this hotel for three weeks . 汤姆 在 这 宾馆 待 了 三周 . +Is the room big enough for you ? 這間 房間 對 你 來說 夠 大 嗎 ? +Could you possibly suggest a way to solve the problem ? 你 能 提出 解决问题 的 方法 吗 ? +He is a professor at the National University . 他 是 国立大学 的 一名 教授 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +If a person has not had a chance to acquire his target language by the time he is an adult , he is unlikely to be able to reach native speaker level in that language . 如果 一個 人 在 成人 前 沒有 機會 習得 目標 語言 , 他 對 該 語言 的 認識 達到 母 語者 程度 的 機會 是 相當 小 的 . +She attempted suicide . 她 企圖 自殺 . +He stopped for a quick cigarette . 他 停下来 抽根 烟 . +Everyone except Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom knows how to behave in public . 汤姆 知道 在 公众 场合 怎么样 自处 . +I have seen Tom naked . 我 见 过 汤姆 光着 . +He did not mean to hurt you . 他 不是故意 要 傷害 你 . +The company is going to go bankrupt really soon . 公司 很快 就要 倒闭 了 . +Can she endure a long trip ? 她 能 忍受 長途 旅行 嗎 ? +She is having lunch now . 她 现在 正在 吃 午餐 . +The boy is full of promise . 这个 男孩 很 有 前途 . +How did you get to know him ? 你 是 怎么 认识 他 的 ? +I can not wait to go on a vacation . 我 等不及 要 去 度假 . +It has been raining heavily for three hours . 下 了 三 小 時 大雨 . +Tom does not think this is a coincidence . 汤姆 不 认为 这 是 一个 巧合 . +I will gladly help you . 我 會 很 樂意 幫助 你 . +Every minute counts . 分秒必争 . +How soon can we leave ? 我们 过 多久 才能 离开 ? +You may use this car . 你 可以 使用 這輛 車 . +They were scolded by the teacher . 他们 被 老师 训斥 了 . +His advice counted for little . 他 的 建議 不算 什麼 . +I need your passport and three photographs . 我 需要 你 的 护照 和 三张 照片 . +We had a lot of rain yesterday . 昨天 下 很多 雨 . +Are you students at this school ? 你 是 這 所 學校 的 學生 嗎 ? +I like to eat . 我 喜歡 吃 . +I am sorry to cause you all this trouble . 我 很 抱歉 给 你 惹 来 所有 的 这些 麻烦 . +This is not very stylish . 這 不是 很 流行 . +Why can not you come ? 你 為 什麼 不能 來 ? +Tom gave Mary a ride to Boston . 汤姆 载 玛丽 去 波士顿 . +Many accidents resulted from the icy conditions of the road . 道路 结冰 导致 了 很多 起 事故 . +Weather permitting , we will leave in an hour . 如果 天气 允许 的话 , 我们 1 小时 后 出发 . +He is afraid of death . 他 害怕 死亡 . +There is no rush . 不急 . +I want to play . 我 想 去 玩 . +What do you like to do in your free time ? 您 空闲 时间 喜欢 做 什么 ? +The sky was filled with airplanes . 天上 滿 是 飛機 . +I can not find my wallet . 我 找 不到 我 的 錢 包 了 . +Whose pencil is this ? 这 支 铅笔 是 谁 的 ? +He arrived in Tokyo yesterday . 他 昨天 抵達 東京 . +What time will you leave ? 你 什麼 時候 離開 ? +Where is the nearest train station ? 最近 的 火车站 在 哪里 ? +The doctor advised him to do more exercise . 醫生 建議 他 多 做 運動 . +It all seems so strange . 看起来 全都 太 奇怪 了 . +There is only one store on the island . 在 這個 島上 只有 一家 商店 . +For the other 600 million people , English is either a second language or a foreign language . 對 於 其他 的 六億 人口 而言 , 英語 不是 第二 語言 就是 外語 . +She has a pure heart . 她 有 一颗 纯洁 的 心 . +I thought Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +It is dangerous to drive so fast . 車 開得 這麼 快 很 危險 . +I have a high fever . 我 烧 得 很 厉害 . +He has at least one thousand books . 他 至少 有 一千本 書 . +It is difficult to speak three languages . 說 三種 語言 是 很困 難 的 . +Shakespeare is the name of a writer . 莎士比亞 是 一位 作家 的 名字 . +Tom knows how to play mahjong , I think . 汤姆 知道 怎么 玩 麻将 , 我 觉得 . +He died recently . 他 最近 去世 了 . +I like eating fruit . 我 喜歡 吃水果 . +Tom clapped his hands . 湯姆 拍 了 手 . +He cleared his throat . 他 清了清 喉嚨 . +Will you join us ? 你 會 參加 嗎 ? +There are twelve months in a year . 一年 有 十二 個 月 . +Get a grip on yourself . 冷静下来 ! +That is how I learned English . 我 就是 这么 学会 英语 的 . +They did not speak French very well . 他們 說 法語 說 得 不太好 . +I 'd be crazy to do that . 我 做 那事 会 疯 . +We have an elevator in our new house . 我們 的 新家 有一 臺 電 梯 . +We must never confuse the two . 我们 决不能 混淆 两者 . +What is Tom saying ? 湯姆 在 說 甚麼 ? +Her grandmother lived to be 88 years old . 她 的 祖母 活到 了 88 岁 . +I need evidence . 我 需要 證據 . +All you have to do is to take care of yourself . 你 要 做 的 只是 照顾 好 你 自己 . +I think I am going to cry . 我 想 我 要 哭 了 . +What should be done ? 怎么办 ? +What symptoms do you have ? 你 有 什麼 症狀 ? +What time does your plane leave ? 你 的 飛機 什麼 時候 起飛 ? +I want it to be different this time . 我 想 让 这次 变得 不 一样 . +It is free . 它 是 免費 的 . +If you do your best , you will succeed . 如果 你 盡力 而為 , 你 就 會 成功 . +He visited his uncle yesterday . 昨天 他 拜訪 了 他 的 叔叔 . +Mary said she would do her homework . 瑪麗 說 她 會 做 她 的 功課 . +I do not want something bad to happen to us . 我 可不 想要 坏事 发生 在 我们 身上 . +It is sort of strange . 有 點 奇怪 . +We have arrived . 我們 已經 到 了 . +When does Tom eat breakfast ? 汤姆 什么 时候 吃 早饭 ? +Tom could have called the police . 汤姆 本 可以 报警 的 . +He has not yet turned in the report this month . 他 這個 月 還 沒有 提交 報告 書 . +Nobody knows why he turns down my help . 沒 有人 知道 他 為何 拒絕 我 幫 忙 . +I used to play alone when I was a child . 我 小时候 常常 独自 玩耍 . +I hope to retire from work when I am 60 years old . 我 希望 在 六十 歲時 退休 . +Tom gave Mary a nice present . 湯姆 給 了 瑪麗 一個 不錯 的 禮物 . +Tom is about to fall asleep . 湯姆 要 睡著 了 . +We know so little about you . 我們 對 你 知道 得 不 多 . +I walked up the hill . 我 走上 山 了 . +He was too young to live alone . 他 太 年 輕 了 無法獨自 生活 . +Would you please turn off the TV ? 请 把 电视机 关掉 好 吗 ? +I do not think he is truthful . 我 不 觉得 他 很 诚实 . +I am thirsty . 我 渴 了 . +I had a telephone call from her . 我 有 一通 來 自 她 的 電話 . +She can play the piano very well . 她 可以 把 鋼琴 彈 得 很 好 . +I heard him play the piano once . 我 聽 過 一次 他 彈 鋼琴 . +Do you really want it ? 你 真的 想要 嗎 ? +This is where Tom usually parks his car . 汤姆 通常 把 他 的 车 停 在 这里 . +I would like some more water . 请 再 给 我 一些 水 . +I was not aware that Tom was sleeping . 我 不 知道 湯姆 在 睡覺 . +I often went fishing with him . 我 經常 和 他 去 釣 魚 . +Half of these apples are rotten . 這些 蘋果 的 其中 一半 都 爛 了 . +Mary went on a voyage around the world . 玛丽 去 环游世界 了 . +She furnished the room with beautiful furniture . 她 用 漂亮 的 家具 佈 置 了 房 間 . +He was seen to go upstairs . 有人 看見 他 上樓 . +I can not get at the exact meaning of the sentence . 我 抓 不到 句子 的 确切 含义 . +His brother is always watching TV . 他 的 弟弟 總是 在 看電視 . +How much did you bid ? 你 出价 多少 ? +The explosion that followed killed many people . 很多 人 在 随后 的 爆炸 中 死去 . +Maybe my grandchild will be the first person to set foot on Mars . 可能 我 的 孙子 会 是 登陆 火星 的 第一 人 . +This book is beautifully illustrated . 这 本书 有 精美 的 插图 . +She introduced me to her brother . 她 把 我 介紹 給 她 的 弟弟 認識 . +She has a strong objection to my plan . 她 強烈 反對 我 的 計畫 . +Something is really weird here . 這裡 有些 事 真怪 . +I like jazz . 我 喜歡 爵士 樂 . +I have to go to the toilet . 我 要 去 廁所 . +I used to be a forest ranger . 我 以前 是 護林 人 . +My house is near the station . 我家 离 火车站 很 近 . +He continued working all day . 他 繼續 工作 了 一整天 . +Tom knows exactly how I like my hair done . 汤姆 很 清楚 我 喜欢 什么样 的 发型 . +Tom did not tell me her name . 湯姆 沒有 告訴 我 她 的 名字 . +There is something I want to tell you . 有件 事情 我 要 对 你 说 . +Do not you miss anything ? 难道 你 不 想念 什么 吗 ? +Is the party over ? 聚會 結束 了 嗎 ? +Answer my questions . 回答 我 的 問題 . +Have you heard from him recently ? 你 最近 有 他 的 消息 嗎 ? +They do not need a reason . 他们 不 需要 理由 . +I was the second to last person to hear the bad news . 我 是 倒数 第二个 得知 这个 坏消息 的 . +What do you call this bird in English ? 这 鸟 你们 用 英语 怎么 称呼 ? +I do not think she cares very much . 我 不 认为 她 很 在意 . +Please take a look at this . 请 看看 这里 . +I was surprised by his perseverance . 我 对 他 的 坚持 感到 很 惊讶 . +Have there been any changes ? 有 過 任何 改變 嗎 ? +Tom is taller than you . 汤姆 比 你 高 . +I am responsible for that . 我 对此 负有责任 . +I know that it is highly unlikely that anyone knows me . 我 知道 有人 认识 我 的 可能性 微乎其微 . +If you make a mess , clean it up . 如果 你 弄乱 了 , 你 来 打扫 . +He left his son a large fortune . 他 留給 了 他 的 兒子 一大 筆 財富 . +I want you to stay a little longer . 我 想 让 你 再 呆 一会 . +Everyone admires the pictures painted by him . 每個 人 都 很 欣賞 他 所畫 的 圖畫 . +Do you drink coffee ? 你 喝咖啡 嗎 ? +He got thrown out of the house . 他 被 趕出 了 這棟 房子 . +She is far better today than yesterday . 她 今天 比 昨天 要 好 很多 . +At last , it began to rain . 终于 开始 下雨 了 . +If I won the lottery , I 'd buy a new car . 如果 我中 了 彩票 , 我会 买辆 新车 . +He went to stay with his cousin . 他 去 和 他 的 表弟 待 在 一起 了 . +The man was held in police custody . 這個 男人 被 警察 拘留 了 . +Who said that to you ? 是 谁 给 你 说 那个 的 呢 ? +If you are wrong , then I am wrong , too . 如果 你 錯 了 , 那麼 我 也 錯 了 . +I will send my mother a letter . 我会 给 我 的 母亲 寄 封信 . +My grandfather is a carpenter . 我 爺 爺 是 個 木匠 . +Stop meddling . 别 再 插手 . +They water the fruit trees . 他们 给 果树 浇水 . +There is no need to speak so loud . 沒有 必要 說 話 這麼 大聲 . +Computers save us a lot of time and trouble . 电脑 为 我们 节省 了 很多 时间 , 解决 了 很多 问题 . +Turn off the light . 關燈 . +It has nothing to do with you . 跟 你 沒 有 關 係 . +I am hoping that that will happen . 我 希望 那 會 發生 . +Her success made her the target of jealousy . 她 的 成功 让 她 成为 嫉妒心 的 靶子 . +Do you have a larger size ? 你 有 比 較大 的 尺寸 嗎 ? +How many pieces of baggage do you have ? 请问 您 有 多少 件 行李 ? +Mt . Fuji is Japan is tallest mountain . 富士山 是 日本 最高 的 山 . +It is a nice day , is not it ? 美丽 的 一天 , 不是 吗 ? +Tom comes here every now and then . 汤姆 常 来 这里 . +She was frequently late for school . 她 經常 上學 遲到 . +Why do you want to study abroad ? 为什么 你 想到 外国 读书 ? +I did not enjoy it very much . 我 不是 很 喜歡 它 . +What is the weather like there ? 那儿 是 什么 天气 ? +We just have to make sure Tom is planning to be here . 我們 只是 需要 確認 Tom 有 要 來 這 . +That was not the main reason that Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +I am breast @-@ feeding my baby . 我 餵 我 的 孩子 母乳 . +Take a deep breath and then relax . 深呼吸 , 然 後 放 鬆 . +I have put all of my energy into this plan . 我 在 这项 计划 上 投入 了 所有 精力 . +I miss you very much . 我 非常 想 你 . +I am looking for my contact lens . 我 在 找 我 的 隱形 眼鏡 . +This rose is beautiful . 這 玫瑰花 很 美麗 . +Freedom is the center of American democracy . 美國 民主 的 中心思想 是 自由 . +Do not forget to put out the fire . 不要 忘 了 熄火 . +For quantities of 20 or more , we can allow you a special discount of 10 % on the prices quoted . 20 个 以上 九折 特惠 . +How strange ! 真 奇怪 . +How often have you been to Europe ? 你 曾 多常 去過 歐洲 ? +I have mislaid my baggage . 我 的 行李 丢 了 . +Do you feel any pain in your stomach ? 你 的 胃會 痛 嗎 ? +Do you know whose handwriting this is ? 你 知道 这 是 谁 的 字 吗 ? +Stockholm is the capital of Sweden . 斯德哥爾摩 是 瑞典 的 首都 . +That place is food is delicious and their prices are low . However , their location is not good . 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 位置 . +There was no money for rebuilding . 沒有 重建 的 錢 . +What can Tom do ? 汤姆 能 做 什么 ? +He had no qualms in doing so . 他 这么 做 , 没有 任何 不安 . +You know quite a lot about Sumo . 你 對 相撲 知道 得 很多 . +She visited the old man in the hospital every day but Sunday . 她 每天 都 去 探視 在 醫院 裡 的 老人 , 除了 星期天 . +I do not really want to live in Australia . 我 不怎么 想住 在 澳大利亚 . +" Where have you been ? " " I have been to the barber is . " 你 去 哪儿 了 ? 我 去 了 理发店 . +This is exactly what I need . 这 正是 我 需要 的 东西 . +You should always do your best . 你 應 該 永遠 盡力 而為 . +The train got in on time . 火车 准时 到 了 . +I tried to call Tom back . 我 試著 叫 湯姆 回來 . +They are already here . 他們 已經 在 這裡 了 . +Let is wait for a while and see how you do . 讓 我們 等 一會兒 看看 你 怎麼 做 . +I work every day but Sunday . 除了 星期天 我 每 一天 都 工作 . +They got out of the car . 他們 下 了 車 . +I will show you how to catch fish . 我会 向 你 展示 怎样 捕鱼 . +We are next @-@ door neighbors . 我们 是 隔 着 墙 的 邻居 . +My father often goes to the United States on business . 我 爸爸 经常 去 美国 出差 . +I feel sad every now and then . 我 常常 覺得 悲傷 . +I am sure Tom will not have any trouble finding us . 我 确定 汤姆 找到 我们 没有 任何 问题 . +I agree with that opinion . 我 同意 那個 意見 . +Has the bell rung ? 钟响 过 了 吗 ? +She did not have any pencils . 她 一支 铅笔 也 没有 . +I disagree with you . 我 不 同意 你 的 看法 . +I would like fruit juice . 我 想要 果汁 . +Make it quick . 快点 . +We have time to spare . 我們 有 多餘 的 時間 . +There is a park near my house . 我家 附近 有 一個 公園 . +I used to play tennis in high school . 我 高中 时 曾 打网球 +Cross out the incorrect words . 划掉 错误 的 单词 . +This table is made of wood . 这 张 桌子 是 木制 的 . +She lived at 56 Russell Square . 她 住 在 罗素 广场 56 号 . +I have an egg . 我 有 一只 蛋 . +Give me the number . 把 那个 号码 给 我 . +People have been buying me drinks all night . 人們 整晚 都 在 給 我 買 飲料 . +Tom finished college last year . 湯姆 去年 上完 了 大學 . +I like your car . 我 喜欢 您 的 车 . +It is for you to decide . 這 由 你 來 決定 . +I did nothing out of the ordinary . 我 沒 做 不 尋常 的 事 . +I invited him to the party and he accepted . 我 邀请 他 去 派对 , 他 接受 了 . +I want to learn French . 我 要 学法语 . +To be very honest with you , I do not think I can do that . 和 你 说句实话 , 我 觉得 我 做 不到 . +I am not used to drinking coffee without sugar . 我 不 习惯 喝 无 糖 咖啡 . +I will see to it . 由 我 来 做 . +Follow me into the room . 跟 我 进 房间 . +Please do not say that . 请 不要 这样 说 . +The capital of Poland is Warsaw . 波蘭 的 首都 是 華沙 . +Time waits for no one . 时间 不 等 人 . +She does not like people who are not punctual . 她 不 喜欢 不 守时 的 人 . +I could not remember ever having met her . 我 不 记得 曾经 见 过 她 . +He was not aware of the danger . 他 沒 有意 識到 自己 有 危險 . +I am sure they can hear us . 我 確定 他們 能 聽見 我們 的 聲音 . +I understand your feelings . 我 明白 你 的 感受 . +You were not here then . 你 那時 不 在 這裡 . +He paid 1,000 yen for this book . 他 花 了 1000 日元 買 這 本書 . +Do you often travel abroad ? 你 经常 去 国外 旅行 吗 ? +It is very kind of you to help me . 你 幫 我 真好 . +A mouse is a timid creature . 老鼠 是 胆小 的 生物 . +I was not busy yesterday . 我 昨天 不忙 . +What did you do last Christmas ? 去年 圣诞节 做 了 什么 了 ? +I have already told you the truth . 我 已經 告訴 你 真相 了 . +There will be snow tomorrow . 明天 會 下雪 喔 ! +There are a lot of books in the library . 圖書館 裡 有 很多 書 . +She is in the restroom . 她 在 上 廁所 . +What do the initials NTT stand for ? NTT 這個 縮寫 是 什麼 意思 ? +Mom , I am hungry . 妈妈 , 我 肚子饿 了 . +The storm caused a lot of damage . 暴風雨 造成 了 很大 的 損害 . +It is my money . 那 是 我 的 钱 . +She loves children . 她 愛 孩子 . +Tom is shy . 汤姆 害羞 . +How can you say that ? 你 怎麼 能 那麼 說 ? +I wish you good luck . 我 祝您 好运 . +Two teas and a coffee , please . 请来 两杯 茶 和 一杯 咖啡 . +I agree with him on that point . 我 在 那 一個 觀點 上 同意 他 . +There is no way to win . 沒有 辦法 贏 . +It is your book . 它 是 你 的 書 . +I had my watch stolen yesterday . 我 的 手 錶 昨天 被 偷 了 . +This question is very simple . 这个 问题 很 简单 . +I thought I was dreaming . 我 还 以为 我 在 做梦 呢 . +Health is above wealth . 健康 比 财富 重要 . +Why are they angry ? 他们 为什么 在 生气 ? +Her father died when she was three . 她 父亲 在 她 三岁时 死 了 . +She has attractive eyes . 她 有 一双 迷人 的 眼睛 . +It seems very interesting . 它 似乎 很 有趣 . +I wake him at six every morning . 我 每天 早上 6 点 叫醒 他 . +Who did you talk to ? 你 和 谁 说话 呢 ? +I thank you from the bottom of my heart . 我 打 心底 里 感激 你 . +We are almost like brothers . 我們 幾乎 像 兄弟 一樣 . +Blenders are nice for people who really like smoothies . 攪拌機 對 真的 喜歡 冰沙 的 人 來說 很 不錯 . +Pace yourself . 量力而行 . +Can you freeze it ? 你 能 冷冻 它 吗 ? +How much will it cost ? 这 要 多少 钱 ? +I was caught in a shower and got drenched to the skin . 我 遇上 了 陣雨 被 淋得 全身 濕透 . +I appreciate your help in clarifying this . 我 感谢 你 帮助 澄清 . +The police will put you behind bars for twenty years . 警方 會 把 你 關 在 牢 裡 二十年 . +Why did you do that ? 你 為 什麼 要 那樣 做 呢 ? +I remember seeing you last year . 我 記得 去年 看 過 你 . +He is leaving Chicago tomorrow . 他 明天 將 離開 芝加哥 . +She knows a lot about the latest fashions . 她 很 了解 最新 的 時尚 趨勢 . +There is not anyone in the room . 房間 裡 沒有 任何人 . +He and his sisters are currently living in Tokyo . 他 和 他 的 姐妹 们 目前 都 住 在 东京 . +I chose the wrong one . 我 選 了 錯 的 那個 . +Get Tom . 找到 汤姆 . +There was a heavy rain last night . 昨晚 下 大雨 . +I need you here . 我 需要 你 在 這裡 . +The pond is 3 meters deep . 这个 池塘 有 三米 深 . +I will be busy tomorrow . 我 明天 会 很忙 . +I suppose he will be back soon . 我 想 他 会 很快 回来 的 . +He invented an excuse for being late . 他 为 他 的 迟到 制造 了 一个 借口 . +The weather forecast says it will be fine tomorrow . 根據 氣象 預報 , 明天 會 是 晴天 . +Tom should be worried . Tom 應該 要 擔心 . +Why do you let Tom treat you that way ? 你 為 甚麼 讓 湯姆 那麼 對待 你 ? +Congratulations ! 祝贺 你 . +I had to change clothes because what I was wearing was not appropriate for the situation . 我 必须 要 换衣服 , 因为 我 现在 穿 的 衣服 不 适合 这个 环境 . +Tom does not need to wear glasses anymore . 汤姆 不 需要 再 戴眼镜 了 . +New stamps will be issued next month . 新 郵票 將 於 下 個 月 發行 . +This is not important . 這個 不 重要 . +What is for dinner tonight ? 今天 晚饭 吃 什么 . +Tomorrow I am going to Paris . 明天 我 去 巴黎 . +He is a famous baseball player . 他 是 一位 著名 的 棒球 選手 . +I need advice . 我 需要 些 建议 . +I will drive you to the airport . 我会 开车 送 你 去 机场 . +I deleted the app . 我 删除 了 这个 应用 . +There is not a drop of water left . 沒有 剩下 一滴水 . +You have to have confidence . 你 必须 得 自信 . +I will give you a ride . 我会 让 你 搭 个 便 车 . +I have too many things on my mind these days . 这 几天 我 脑袋 里 的 事情 太 多 了 . +He does not believe me at all . 他 根本 不 相信 我 . +How old is this zoo ? 這間 動物園 多久 了 ? +Please do not tell this to your parents . 请 不要 告诉 你 父母 . +She went to the Takasu clinic . 她 去 了 高須 診所 . +If the lion is the king of beasts , the eagle is the king of birds . 狮子 是 兽类 之 王 的话 , 鹰 就是 鸟类 之 王 . +How many books does he have ? 他 有 多少 册 图书 ? +I wish I had a better memory . 但 願 我 有 好 一點 的 記憶力 . +How was the interview ? 面試 怎麼樣 ? +When he retired , his son took over the business . 他 退休 的 时候 , 他 儿子 接手 了 他 的 生意 . +Lots of famous people come here . 許 多名 人 來 這裡 . +Tom is worried for his safety . 湯姆 擔心 他 的 安全 . +I wish I could go to Japan . 要是 能 去 日本 就 好 了 . +I 'd like a glass of water . 我 想要 一杯 水 . +Mary likes milk very much . 瑪麗 很 喜歡 牛奶 . +I ate breakfast in my pajamas . 我 穿著 睡衣 吃 早 飯 . +I want to make a pie . 我 想 做 个 派 . +How did you reply ? 你 回答 了 什么 ? +Would you like a cup of coffee ? 来 杯 咖啡 吗 ? +She became a true friend of mine . 她 成為 我 的 一位 真正 的 朋友 . +This is not true love . 這 不是 真實 的 愛情 . +How long do you plan on staying here ? 你 打算 在 这儿 待 多久 ? +I have to take medicine . 我 必须 吃药 . +We have breakfast in the kitchen . 我們 在 廚房 裡 吃 早餐 . +Speaking English is a lot of fun . 說 英語 很 有趣 . +His influence extends all over the country . 他 的 影響 遍及 全國 . +Sumo is a traditional Japanese sport . 相扑 是 日本 传统 的 体育 活动 . +Your bicycle is similar to mine . 你 的 腳踏車 和 我 的 很 相似 . +Is Tom helping Mary ? 汤姆 在 帮 玛丽 吗 ? +My grandfather lived to be ninety . 我 的 祖父 活到 了 九十 歲 . +I recognize that what he says is the truth . 我 承认 他 说 的 是 事实 . +I think it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +You said you had important news . 你 說 你 有 重要 新聞 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +His wife is one of my friends . 他 的 妻子 是 我 的 一個 朋友 . +What is the name of that river ? 這條 河 的 名字 是 什麼 ? +This is my mother . 这 是 我 的 妈妈 . +Do not disturb me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +They are having a party tomorrow . 明天 他們 將 舉行 派 對 . +Only peace can save the world . 只有 和平 能够 拯救 世界 . +My parents will not let me date . 我 父母 不让 我 和 男生 约会 . +She pretended not to hear him yesterday . 昨天 她 裝作 沒有 聽見 他 . +Do you like to drink wine ? 你 喜歡 喝 紅 酒 嗎 ? +You worry too much about your weight . 你 太 担心 您 的 体重 了 . +She put on her hat . 她 戴 上 了 她 的 帽子 . +Politicians never tell us their inner thoughts . 政治家 从来不 告诉 我们 他们 的 别有用心 . +It turned out that the rumor was false . 谣言 [ 最后 ] 证明 是 假 的 . +He is not as tall as you are . 他 沒 你 高 . +He told me to do it , so I did it . 他 让 我 做 , 我 就 做 了 . +Did something happen ? 發生 了 什麼 事 嗎 ? +I am going to the restroom . 我 去 下 洗手间 . +I remember seeing him . 我 记得 见 过 他 . +Tom told me that I should do that . 湯姆 告訴 我 我 應 該 去 做 . +I will get you something nice . 我会 给 点 你好 东西 . +Tom filled out the application form . 湯姆 填寫 了 申請 表 . +I made some mistakes on the test . 我 在 考试 时 犯 了 些 错 . +Everyone knows the law . 大家 都 知道 這個 法律 . +I have been looking for a new job for a long time . 我 已经 找 了 很久 的 工作 . +Their house is being remodeled . 他們 的 房子 正在 裝潢 . +He asked me questions similar to those asked by many others . 他 和 许多 其他人 一样 问 了 我 同样 的 问题 . +I will call you . 我会 打电话 给 你 . +What is your favorite item of clothing ? 你 最 喜欢 哪类 的 衣服 ? +I am an atheist . 我 是 无神论者 . +His face turned pale . 他 的 脸 失去 了 所有 颜色 . +She takes piano lessons once a week . 她 每周 上 一次 钢琴课 . +You should not waste your time . 你 不该 浪费 你 的 时间 . +She went to the museum by taxi . 她 搭計 程車 去 博物 館 了 . +He is not good at remembering names . 他 不 善于 记人 名 . +Every cloud has a silver lining . 每 朵 雲 都 披著 銀衣 . +Is this edible ? 这个 能 吃 吗 ? +They sell sporting goods . 他们 卖 体育 产品 . +Even with all his money , he is unhappy . 儘 管 他 有 那 麼 多 錢 , 他 並 不快 樂 . +I know where she is . 我 知道 她 在 哪里 . +I do not know what to say to make you feel better . 我 不 知道 该 说 什么 来 安慰 你 . +What you see is what you get . 你 看到 什麼 拿 什麼 . +I felt that the plan was unwise . 我 覺得 這 計畫 不是 很 聰明 . +They are children . 她们 是 孩子 . +I walk my dog in the park every morning . 我 每天 早上 到 公园 里 遛狗 . +She can sing better than anybody else in her class . 她 唱 歌唱 得比 班上 任何 一個 人 好 . +Tom is crying outside right now . 湯姆 現在 正在 外面 哭 . +Everything is going horribly wrong for Tom . 對 湯姆 來說 一切 都 開始 錯 得 離 譜 . +Do not lean against the wall . 别 倚 着 墙 . +Stop talking . 不要 说话 了 . +He has three times as many books as I have . 他 有 我 的 三倍 的 书 . +The clouds are getting darker . 雲 越來越 黑 . +Who are you voting for ? 你 投 给 谁 ? +Is this your first visit to Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me whatever help I needed . 他 給 了 我 任何 我 需要 的 幫助 . +This is the cutest puppy I have ever seen . 這 是 我 見 過 最 可愛 的 小狗 . +Now is the time for action . 现在 是 行动 的 时候 了 . +Where do you play tennis ? 你 在 哪裡 打 網球 ? +Tom can swim faster than anyone else I know . 汤姆 是 我 认识 的 人 当中 游泳 最快 的 . +I think we have found what we were looking for . 我 認為 我們 找到 我們 正在 找 的 東西 了 . +Let me take your blood pressure . 讓 我 量量 你 的 血壓 . +You should follow your teacher is advice . 您 應 遵循 你老 師 的 建議 . +He seldom writes to his father . 他 很少 写信给 他 父亲 . +People are counting on us . 人们 正在 依赖 着 我们 . +Are you busy tomorrow afternoon ? 明天 下午 你 忙 嗎 ? +Tom does not have a lot of money . 汤姆 没有 很多 钱 . +Fools rush in where angels fear to tread . 初生 之 犢 不畏 虎 . +I looked around , but saw nobody . 我 環顧 四周 , 卻 沒 看見 任何人 . +They gave us very little trouble . 他們 幾乎 不 給 我們 添 麻煩 . +He has been very busy this week . 他 這個 星期 一直 很 忙碌 . +Is ten thousand yen enough ? 一萬 日元 夠 嗎 ? +You 'd better send for a doctor . 你 最好 派 人 去 請 醫生 來 . +Were you serious ? 你 是 认真 的 吗 ? +It is amazing . 太 神奇 了 . +My watch is five minutes slow . 我 的 錶 慢 了 五分 鐘 . +He went to Paris to study French . 他 到 巴黎 學習法 語 . +I can not afford a car . 我 買 不起 車子 . +Being sick is very boring . 生病 很 無聊 . +Tom can not go home until after 2 : 30 . 汤姆 在 2 : 30 之后 才能 回家 . +His doctor advised him to quit smoking . 他 的 医生 建议 他 戒烟 . +That scandal cost him his reputation . 丑闻 让 他 付出 了 失去 声誉 的 代价 . +He has a brother and two sisters . 他 有 一个 兄弟 和 两个 姐妹 . +It began to snow . 開始 下雪 了 . +The dog is blind in one eye . 那 狗 一只 眼 是 瞎 的 . +The taxi picked up two passengers . 這輛 計程 車 載 了 兩名 乘客 . +You may use my new car . 你 可以 使用 我 的 新車 . +I do not blame you . 我 不 怪 你 . +We have got to go . 我们 必须 走 了 . +Tom and Mary were both born in Boston . 湯姆 和 瑪麗 都 生 在 波士 頓 . +I am sure they will win . 我 確定 他們 會 贏 . +I visited my friend Tom yesterday . 我 昨天 拜訪 了 我 的 朋友 湯姆 . +He gave me 10,000 yen . 他 给 了 我 1 万日元 . +I could answer all the questions . 我 可以 回答 所有 问题 . +You do not like love stories , do you ? 你 不 喜歡 愛情 故事 , 是 嗎 ? +She is Tom is older sister . 她 是 Tom 的 姐姐 . +They flunked their exams . 他們 考試 不及格 . +He sipped the hot coffee slowly . 他 慢慢 地 啜飲 熱 咖啡 . +Do you like rap ? 你 喜欢 说唱 音乐 吗 ? +Are you here on business ? 你 来 这里 出差 的 ? +They go to church every Sunday . 他們 每個 星期天 上 教堂 . +The court declared him innocent on the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +A light bulb gives light . 灯泡 发光 . +He saw a dog near the door . 他 在 門 附近 看到 了一 隻 狗 . +You owe me something . 你 欠 我 點 東西 . +I run every day . 我 每天 跑步 . +Hollywood is not what it used to be . 好 萊塢 不是 以前 的 樣子 了 . +Pizza is my favorite food . 比薩 是 我 最 喜歡 的 食物 . +They stepped a few paces forward . 他們 前進 了 幾步 . +You have not changed at all . 你 真的 一点 没变 . +Tom knew he should help Mary . 湯姆 知道 他 該 幫 瑪麗 . +I have no doubt about it . 我 没有 疑问 . +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 赤脚 漫步 . +He was disappointed that things did not turn out as he 'd hoped . 事情 没能 如他 所 愿 让 他 感到 失望 . +Please hurry . 请 抓紧时间 . +Do not rely too much on others . 别 老 依赖 别人 . +There are no hats in that store that fit me . 那個 店 裡 沒 有合 我 尺寸 的 帽子 . +When can we eat ? 我們 什麼 時候 可以 吃 ? +I was surprised to see a lion . 我 很 驚訝 竟然 看到 了 獅子 . +This sentence is ambiguous . 此句有 歧義 +Lake Towada is famous for its beauty . 十 和田 湖 以 它 的 美麗 聞名 . +Tom is probably still studying French . 汤姆 可能 还 在 学法语 . +I have something interesting to tell you that you might find surprising . 我 有点 有趣 的 事 要 告诉 你 , 你 可能 会 吃惊 . +We grow a variety of crops . 我們 種植 各種 的 作物 . +Does this bus go to the beach ? 這輛 公車 去 海灘 嗎 ? +The taxi has arrived . 出租车 到 了 . +If you sing , we will sing with you . 如果 你 唱 , 我們 就 跟著 唱 . +Mary helped her mother with the cooking . 瑪麗幫 她 母親 做飯 . +Just say no . 只要 說不 . +This carpet is superior to that one in quality . 这 地毯 在 质量 上比 那个 好得多 . +Would you like a little more salad ? 请问 您 要 多 来 点儿 沙拉 吗 ? +What are you after ? 你 想要 什么 ? +That patient may die at any time . 病人 随时 会 死 . +The birds flew to the south . 群鸟 南翔 . +His advice is always very sensible . 他 的 忠告 总是 很 明智 . +Grandpa bought it for me ! 爷爷 买 给 我 的 ! +We have not thought about it . 我们 还 没 考虑 . +I feel like another beer . 我 想 再 来 一杯 啤酒 . +Do you have a lot of pens ? 你 有 很多 笔 吗 ? +It was a calm winter evening . 这 是 个 静谧 的 冬夜 . +Tom is laughing . 汤姆 在 笑 . +It is easy to swim . 游泳 很 簡單 . +We enjoyed watching the baseball game . 我們 喜歡 看 棒球 比賽 . +The policeman took the thief by the arm . 警察 抓著 小偷 的 胳膊 . +Half a million children still face malnutrition in Niger . 尼日尔 仍然 有 50 万 孩子 面临 着 营养不良 . +You can not do anything about that . 你 什么 也 做不了 . +He looks kind of pale . 他 有点 苍白 . +Take the first street to the right . 第一 條街 右 轉 . +The old man gave the child shelter . 這位 老人 收容 了 這個 孩子 . +Tom was too afraid to do anything . Tom 太 胆小 了 以至于 做不了 任何 事 +The coffee is cold . 咖啡 是 冷 的 . +The prosecutor asked me a leading question . 检察官 问 了 我 一个 引导性 的 问题 . +Tom is wearing the same clothes he wore yesterday . 汤姆 穿着 跟 昨天 穿 的 衣服 . +I like running . 我 喜欢 跑步 . +These shoes are too big for me . 这 双鞋 对 我 来说 太 大 了 . +Do I have to go to the party ? 我 需要 去 派 對 嗎 ? +Wait ! 等等 ! +You know I have no choice , do not you ? 你 知道 我 沒法 選擇 , 不是 麼 ? +I think you are sitting in my seat . 我 想 你 坐到 我 的 座位 了 . +Let is get divorced . 我们 离婚 吧 . +Tom is a very generous man . 湯姆 是 個 大方 的 人 . +Please answer my question . 請 回答 我 的 問題 . +I met a friend of Mary is . 我 遇到 了 瑪麗 的 一位 朋友 . +Is this ladder strong enough to bear my weight ? 这个 梯子 是否 足够 坚固 以 承受 我 的 重量 ? +Who is the author of this story ? 这本 小说 的 作者 是 谁 ? +I am the one you want . 我 就是 你 要 找 的 人 . +Tom is still in Boston . 汤姆 还 在 波士顿 . +An opportunity like this only comes along once in a lifetime . 一辈子 只 会 出现 一次 像 这样 的 机会 . +I , too , have been to Boston many times . 我 也 去过 波士顿 很 多次 . +We saw the children enter the room . 我們 看到 了 孩子 們 進入 這個 房間 . +Do not judge a man by his clothes . 不要 以 穿著 來 判斷 一個 人 . +I have discovered something interesting . 我 發現 了 一些 有趣 的 東西 . +She is very pretty . 她 很 可爱 . +Will he come tomorrow ? 他 明天 会 来 吗 ? +My body aches all over . 我 全身 酸痛 . +Could you say that one more time ? 你 能 再 說 一次 嗎 ? +You have to follow the rules . 你 必须 遵守规则 . +This vending machine is not working . 這 台 自動 販賣 機 故障 了 . +He has just left home . 他 刚 离开 家 . +She is good at getting around rules . 她 擅 於 逃避 規則 . +I had to get my tattoo removed . 我 必須 把 文身 去掉 . +You are not at all wrong . 你 并 不 完全 错误 . +Do not touch my camera . 不要 碰 我 的 相機 . +Tom looked at the photograph . 汤姆 看 了 看 照片 . +Tom is our starting quarterback . 汤姆 是 我们 的 首发 四分 卫 . +We are in a hurry . 我們 很急 . +He said that he wanted some money . 他 說 他 要 一些 錢 . +She lost her way and on top of that it began to rain . 她 迷路 了 , 紧接着 天 开始 下雨 了 . +He pretended to be my friend . 他 假装 是 我 的 朋友 . +Have you ever had any serious illness ? 你 曾经 得 过 重病 吗 ? +She talked as she walked . 她 邊 走 邊 談 . +Look around . 四处 看看 . +I will show you some pictures . 我 會 給 你們 看 些 照片 . +My father made me wash the car . 我 父親 要 我 洗車 . +English is spoken in many countries . 許多 國家 的 人 說 英語 . +Why is the sky blue ? 为什么 天 是 蓝 的 ? +Was Tom asleep ? 汤姆 睡着 了 吗 ? +I do not know when he came back from France . 我 不 知道 他 是 什么 时候 从 法国 回来 的 . +I know what I am doing . 我 知道 我 在 做 什么 . +The monkey climbed up a tree . 猴子 爬上 了 树 . +Put some more wood on the fire . 再 往 火 裡 添 些 木柴 . +I wish you were close to me . 我 希望 你 在 我 身边 . +Tom is very angry now . 汤姆 现在 很 生气 . +Tom is on good terms with John . 汤姆 和 约翰 关系 很 好 . +Help yourself to more potato chips . 隨意 多 吃 點 洋芋片 吧 . +The situation is worse than I thought . 情況 比 我 想 的 還壞 . +He is a good guy . 他 是 個 好人 . +They appointed him as a director . 他们 任命 他 为 经理 . +The earth is similar to an orange in shape . 地球 的 外形 和 橙子 相似 . +Tom drank some juice . Tom 喝 了 些 果汁 . +Tom has decided to become a monk . 汤姆 ( Tom ) 决定 出家 为 僧 . +I met the prince himself . 我 见到 了 王子真 人 . +I will show you the picture . 我会 给 你 看 图片 . +They made me really angry . 他们 让 我 很 生气 . +She is eager to live in Australia . 她 渴望 住 在 澳洲 . +I think it was wrong . 我 认为 它 错 了 . +When I was young , I used to climb trees a lot . 我 年 輕 時 經常 爬 樹 . +She turned down every proposal . 她 拒绝 了 每一项 提议 . +What should I do ? 我 该 做 什么 ? +My father told me where to go . 我 爸爸 告诉 我 去 哪儿 . +Tom might be here by 2 : 30 , but then , maybe not . tom 两点 半 可能 会 到 , 不过 , 也 可能 不会 +I have ten pens more than you do . 我 比 你 多 10 支 钢笔 . +The days are getting longer and longer . 白天 变得 越来越 长 . +I can not bear the pain . 我 無法 忍受 這個 痛苦 . +If you want a pencil , I will lend you one . 如果 你 需要 铅笔 , 我 借 你 一支 . +Please give me some advice on what I should do . 请 给 我 提提 建议 , 我 该 做 什么 . +There was a big gold star on the door . 在 門上 有 一個 大大的 金色 星星 . +It is on the house . 这 是 免费 的 . +He just arrived . 他 刚 到 . +He always wanted to study Japanese . 他 一直 想學日語 . +My train left at 7 and arrived in New York at 10 . 我 乘 的 火车 7 点 出发 , 10 点 到 了 纽约 . +I bought this camera yesterday . 我 昨天 買 了 這 台 相機 . +That was three days ago . 这 是 三天 之前 了 . +I asked each boy three questions . 我 問 了 每個 男孩 三個 問題 . +I think Tom is good . 我 觉得 Tom 人 很 好 . +I do not like winter . 我 不 喜欢 冬天 . +What he said would happen has happened . 他 說 會 發生 的 事情 已經 發生 了 . +Tell me when to begin . 告诉 我 什么 时候 开始 . +She was in America last month . 她 上 個 月 在 美國 . +Your answer is wrong . 你 的 回答 是 错 的 . +I wish we had won the game . 但 願 我們 贏 了 這場 比賽 就 好 了 . +That was really boring . 那 真是 無聊 . +I do not know if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +Who wrote these poems ? 这 是 谁 写 的 诗 ? +He works with me at the office . 他 跟 我 在 這間 辦 公室 一起 工作 . +How do you spell your name ? 你 怎麼 拼 你 的 名字 的 ? +I am translating a book . 我 在 翻譯 一本 書 . +I confessed to stealing the money . 我 承認 偷 了 錢 . +What is the price of this cap ? 这 顶 帽子 多少 钱 ? +America was discovered by Columbus in 1492 . 美國 在 1492 年 被 哥倫布 發現 . +Would you mind opening the window ? 你 介意 打開 窗戶 嗎 ? +I love parties . 我 愛 派 對 . +He promised me he would be here at six . 他 答應 我 六點鐘 的 時候 他 會 在 這裡 . +The patient is steadily recovering . 這個 病人 正在 穩定 地 康 復 中 . +How can I get in touch with you ? 我 怎么 联系 你 ? +She has been absent since last Wednesday . 从 上周三 起 , 她 一直 缺席 . +She sells flowers . 她 卖花 . +Are you speaking to me ? 你 在 跟 我 说话 吗 ? +I have to stay home . 我 得 留在 家 . +She does not like the way I speak . 她 不 喜欢 我 说话 的 方式 . +His hobby is painting pictures of flowers . 他 的 爱好 是 画 有 花 的 图 . +He is afraid of snakes . 他 怕 蛇 . +She sent this book to me . 她 寄 這 本書 給 我 . +I still do not understand what is going on . 我 還 是 不 明白 出 了 什麼 事 . +These people hate all foreigners . 这些 人 讨厌 所有 的 外国人 . +She had an appointment with the doctor . 她 跟 醫生 預約 看診 了 . +Can this be eaten ? 这个 能 吃 吗 ? +What a good idea ! 多 好 的 主意 啊 ! +Could you send me a brochure ? 你 能 寄 宣傳冊 給 我 嗎 ? +Christmas is soon , is not it ? 聖誕節 很快 就 到 了 , 不是 嗎 ? +She saddled him with the work . 她 強迫 他 做 這個 工作 . +I would like to go to the movies . 我 想 去 看 電影 . +Is there a hotel around here ? 附近 有 酒店 吗 ? +Tom says he is not feeling any better . Tom 说 他 感觉 不 舒服 . +I do not worry about the risk . 我 不 担心 风险 . +Where is Tom is classroom ? 湯姆 的 教室 在 哪裡 ? +It is dangerous to swim in this river . 在 這條 河裡 游泳 很 危險 . +I am too drunk to do that . 我 喝醉 了 , 做 不到 . +Let is go to the picnic . 讓 我們 去 野餐 . +Tom smiled at Mary , and she smiled back . 汤姆 对 玛丽 笑了笑 , 她 也 笑 着 回应 了 . +Where is your dog ? 你 的 狗 在 哪里 ? +She hated him . 她 恨 他 . +I am currently a teacher at this school . 我 现在 在 这 所 学校 任教 . +I had her sweep my room . 我 讓 她 打掃 了 我 的 房間 . +My father likes pizza very much . 我 父親 非常 喜歡 披 薩 . +Tell Tom I will be there in a minute . 告诉 Tom 我 将 在 一分钟 内 到达 这里 . +How many times have you seen this ? 你 看 这 看 了 多少 次 ? +Old dogs can learn new tricks . 老 的 犬 可以 学 新 的 诡计 . +Edison invented the electric lamp . 愛迪生 發明 了 電燈 . +The dog is dead . 这条 狗 死 了 . +I won ! 我 赢 了 . +I heard her singing . 我 听见 她 唱歌 了 . +Did you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +I know that I know it , but I can not remember it . 我 知道 我 知道 它 , 但 我 想不起 來 了 . +Algebra is my favorite subject . 代數 是 我 最 喜歡 的 科目 . +Are you a college student ? 你 是 大学生 吗 ? +Tom clenched his fists . 汤姆 握紧 了 他 的 拳头 . +Why are you so smart ? 为什么 你 的 脑袋 那么 聪明 呢 ? +I have already considered that possibility . 我 已经 考虑 过 那种 可能性 了 . +Please add my name to the list . 請 把 我 的 名字 加在 名單 上 . +I 'd like another beer . 我 想 再 来 一杯 啤酒 . +I am the one who has to do this . 我 是 必須 去 做 這事 的 人 . +Should not you be studying ? 你 不 应该 在 学习 吗 ? +I have a lot of regrets . 我 觉得 太 遗憾 了 . +Everything is normal . 一切正常 . +Doctors refused to perform a second operation . 医生 们 拒绝 做 第二次 手术 . +Let is see what is in the box . 看看 我 會 在 盒子 裡 找到 什麼 ? +He made me his own assistant . 他 让 我 做 他 的 助理 . +I tried to change her mind , but I could not . 我 試著 改變 她 的 心意 , 但 我 沒有 辦法 . +Where is the problem ? 哪裡 有 問題 ? +I would like to buy half a cake . 我 想 买 半个 蛋糕 . +Hi . 你好 . +I work for a shipping company . 我 為 一家 船運 公司 工作 . +I wish I had a car . 但 願 我 有 一輛 車 . +Why do you resent me ? 你 为什么 恨 我 ? +Raspberries are very expensive . 覆盆子 很貴 . +You seem to ask Tom a lot of questions . 你 看來 問 了 湯姆 很多 問題 . +Today , I am feeling a lot better . 我 今天 感觉 好多 了 . +I still have a question . 我 還 有 个 問題 . +I need you . 我 需要 你 . +What is your favorite radio station ? 你 最 喜歡 的 電台 是 什麼 ? +Would you mind if I used your car ? 如果 用 了 你 的 車 , 你 會 介意 嗎 ? +Be friendly . 友好 点 . +That is exactly what I have been telling Tom . 那 就是 我 告诉 汤姆 的 . +Turn back , please . 请 回来 . +I can not bend my right arm . 我 無法 彎曲 我 的 右 手臂 . +This has nothing to do with you . 跟 你 没 半 毛钱 关系 . +She is my older sister . 她 是 我 的 姐姐 . +There is a church near my house . 我家 附近 有 一座 教堂 . +He is afraid of snakes . 他 害怕 蛇 . +Is there anybody who can drive a car ? 有人 会 开车 吗 ? +He was almost hit by a car . 他 差點 被 一輛 汽車 撞上 了 . +Please turn off the lights . 請 關燈 . +Do you like this book ? 你 喜欢 这 本书 吗 ? +I am fairly confident I can do that . 我 相当 有 自信 我 能 做到 这 一点 . +Who are you waiting for ? 你 在 等 誰 ? +I think I know who did it . 我 認為 我 知道 是 誰 做 的 . +Tom has already hired a new lawyer . 湯姆 已經 雇 了 新律 師 . +I feel very sorry for your sister . 我 對 你 姐姐 感到 非常 遺憾 . +I want you out of my room . 我 想 讓 你 離開 我 的 房間 . +Tom did not tell me he did not know how to swim . 汤姆 没有 告诉 我 他 不会 游泳 . +I am so happy . 我 好 高興 . +Let him in . 让 他 进来 . +I need a lot of books . 我 需要 很多 書 . +She continued with the work . 她 繼續 工作 . +He blamed me for the accident . 他 為 這個 意外 指責 我 . +Do you know why she is so angry ? 你 知道 她 為 什麼 這麼 生氣 嗎 ? +The mechanic assembled the engine . 這 名 技師 組裝 了 這 台 引擎 . +You need not have taken an umbrella with you . 你 其实 没 必要 带 伞 . +She achieved great success in her business . 她 在 她 的 事業 上 取得 了 巨大成功 . +Would you like to have a drink before dinner ? 晚饭 前 您 想 喝一杯 吗 ? +A cat came out from under the desk . 一 隻 貓 從 桌 底下 出來 . +As for me , I have nothing to say . 以 我 之 见 , 我 无话可说 . +You are not a doctor . 您 不是 医生 . +Beginners should learn spoken English first . 初學者 應 先學 習口 說 英語 . +He is not what he used to be . 他 不再 是 以前 的 那个 他 了 . +You can not use this washing machine . 你 不能 用 這 臺 洗衣 機 . +Hey , can you turn the lights off ? 喂 , 你 能 把 灯 关掉 吗 ? +I had a pleasant dream last night . 我 昨晚 作 了 一個 好 夢 . +She plays tennis every Sunday . 她 每個 星期天 打 網球 . +When did it begin to rain ? 什么 时候 开始 下雨 的 ? +I wish to go to Hawaii . 我 希望 去 夏威夷 . +Where will you have lunch today ? 你 今天 將 在 哪裡 吃 午餐 ? +I asked her a difficult question . 我 問 了 她 一個 難題 . +We will fly there in 50 minutes . 50 分鐘 之內 我們 將 飛到 那裡 . +Hunger is the best sauce . 饑 餓 是 最好 的 調味品 . +Bread is made from flour . 面包 是 面粉 做 的 . +His lie got him into trouble when his boss discovered the truth . 当 他 老板 发现 真相 的 时候 , 谎言 给 他 带来 了 麻烦 . +His speech inspired all the boys . 他 的 演說 激勵 了 所有 的 男孩 . +This has been the driest six months in thirty years . 這 是 三十 年代 以來 最 乾旱 的 六月 . +Do not lie to Tom and me . 不要 对 我 和 汤姆 撒谎 . +She has very nice @-@ looking handwriting . 她 的 筆跡 很美 . +She decided to quit her job . 她 決定 辭去 工作 . +She has had to stay here . 她 不得不 待 在 这儿 . +I like shopping with Tom . 我 喜歡 跟 湯姆 購物 . +People still think Tom is a liar . 人们 仍然 认为 汤姆 说谎 . +Say hello to your father for me . 代 我 向 你 父親 問 好 . +They will not tell us anything . 他們 甚麼 也 不 會 告訴 我們 . +We must cancel our trip to Japan . 我們 必須 取消 我們 去 日本 的 旅行 . +Cut the chit @-@ chat and get to work . 別 閒 聊 了 , 開始 工作 . +You can hold my hand . 你 能握 我 的 手 . +Turtles are reptiles . 海龟 是 爬行动物 . +They have the same habits . 他們 有 相同 的 嗜好 . +Go on with your work . 繼續 工作 ! +He had to stay in bed . 他 得 卧床 休息 . +If it happened to Tom , it could happen to you . 如果 那 發生 在 Tom 身上 , 也 可能 會 發生 在 你 身上 . +I have just finished breakfast . 我 剛 吃 完 了 早 飯 . +I will arrange for someone to pick you up at your home . 我会 安排 一下 , 叫 个人 去 你家 接 你 . +She pulled him out of the mud . 她 把 他 从 烂泥 中 拽 出来 了 . +Traffic lights work all the time . 紅綠燈 一直 在 運作 . +Tom took a step back and fell . 湯姆 後 退一步 跌倒 了 . +Do you subscribe to any magazines ? 你 有訂 閱 任何 雜 誌 嗎 ? +I have some English books . 我 有 一些 英文 書 . +The old man got in her way . 這個 老人 擋 了 她 的 路 . +It is important to help each other . 重要 的 是 要 互相 幫助 . +Tom wrote Mary a long letter , but he did not send it to her . 汤姆 给 玛丽 写 了 封 长信 , 可是 没有 寄给 她 . +I like winter better than summer . 我 喜歡 冬天 勝 過 夏天 . +That is all I know about him . 这 就是 我 关于 他 知道 的 一切 . +Would you like another beer ? 再 来 一杯 啤酒 怎么样 ? +Iron the inside of collars first , and then the outside . 先 熨烫 领子 的 里面 , 然后 是 外面 . +I helped my father yesterday . 昨天 我 帮 了 我 爸爸 . +I can place the palms of my hands on the floor without bending my knees . 我 不用 曲 膝 就 能 把 我 的 手掌 放到 地上 . +I paid two thousand yen for the book . 我 用 两千 日元 买 了 这 本书 . +Above all , be patient . 尤其 是 要 有 耐心 . +It is not mine . 不是 我 的 . +I think the train will come soon . 我 想 火車 很快 就 會 來 了 . +Doctors have discovered some startling facts . 医生 发现 了 一些 令人吃惊 的 事实 . +Her son is a genius . 她 儿子 是 个 天才 . +I am looking for a place to sit . 我 正在 找 个 地方 坐下 . +Do you have a non @-@ smoking section ? 你們 有 非吸 煙區 嗎 ? +Tom did not tell me much about it . 汤姆 没 跟 我 说 太 多 关于 它 的 事 . +He may be jogging around the park . 他 可能 在 公園 周圍 慢跑 . +Have you ever written a blog ? 你 写 过 博客 吗 ? +He devoted the last years of his life to writing his autobiography . 他 晚年 致力 於 寫 自 傳 . +When I came home , I felt very hungry . 我 回到 家 的 时候 , 感觉 非常 饿 . +I think you are stupid . 我 认为 你 傻 . +I want to marry a girl like her . 我 想 和 一个 像 她 那样 的 女孩 结婚 . +I am afraid I have offended you . 我 怕 我 冒犯 了 你 . +I am not married to Tom . 我 没 跟 汤姆 结婚 . +I asked her out on a date . 我 請 她 出去 約 會 . +Turn right . 向右转 . +He left without saying goodbye . 他 不辭而別 . +What did you find out ? 你 發現 了 甚麼 ? +I miss you . I need to see you . Could I come over ? 我 想 你 . 我 需要 见 你 . 我 能 来 吗 ? +Without the sun , there would be no life . 沒有 太陽 就 沒有 生命 . +Go when you want . 你 想 走 的 时候 就 走 吧 . +I am not so brave . 我 没 那么 勇敢 . +Tom was not going to do anything to you . 汤姆 不 打算 给 你 做 任何 事 . +She plays tennis every day . 她 每天 都 打网球 . +You can not live without water . 沒有 水 你 不能 生活 . +There is no sugar . 没有 糖 . +I ran a race with him . 我 和 他 比賽 跑步 . +They all looked for the lost child . 他們 都 在 尋找 這個 失 蹤 的 孩子 . +The bell rings at noon . 正午 時分 鐘聲 響起 . +How was your weekend ? 你 週末 過 得 怎麼樣 ? +Rome is a city worth visiting . 羅馬 這個 城市 值得 一 遊 . +I do not like science . 我 不 喜欢 科学 . +Let is play tennis this afternoon . 讓 我們 今天下午 打 網球 . +I was expecting it ! 我 一直 在 期待 着 ! +One of your buttons has come off . 你 的 一個 按鈕 脫落 了 . +We must keep up the family traditions . 我们 必须 保持 家庭 传统 . +This is all he has to do . 這 是 所有 他 必須 做 的 事 . +I grew up near a river . 我 在 一條 河 的 附近 長大 . +I am a loser . 我 是 個 不成器 的 人 . +It is about to rain . 天 快要 下雨 了 . +Do you think Tom will show up ? 你 認為 湯姆會 出現 嗎 ? +Where are the strawberries ? 草莓 在 哪裡 ? +We are looking for a nice house to live in . 我们 在 找 一个 漂亮 的 屋子 住 . +Summers are very hot in Kyoto . 京都 的 夏天 很 热 . +Speaking English is difficult . 說 英語 很 難 . +I do not like big dogs . 我 不 喜歡 大 狗 . +This is a very important meeting . 這 是 個 很 重要 的 會議 . +You look as healthy as ever . 你 看 起來 健康 如昔 . +You do not have to work so hard . 你 不必 這麼 辛苦 地 工作 . +There is enough light to read by . 有 足夠 的 光線 讀書 . +Yes , of course . 是 的 , 當然 . +He is old enough to drive . 他 夠 開車 的 年紀 了 . +She is hiding the truth from us . 她 不让 我们 知道 真相 . +Someone is watching you . 有人 在 看著 你 . +How is the weather there ? 那儿 是 什么 天气 ? +You do not need to carry lunch with you . 你 不 需要 隨身 帶著 午餐 . +This chair has to be fixed . 这 张 椅子 需要 修理 . +We have only got one chance . 我们 只有 一次 机会 . +You will exist but you will never know what it is to live . 你 活着 , 但是 却 不 知道 为什么 活着 . +How many teams are there ? 那里 有 多少 队伍 ? +She waited for you for two hours . 她 等 了 你 兩個 小 時 . +He will play baseball tomorrow . 他 明天 將 打 棒球 . +She put sheets on her bed . 她 在 她 的 床上 鋪 了 床單 . +You get up early , do not you ? 你 很早 起床 , 不是 嗎 ? +I hate being alone on Valentine is Day . 我 讨厌 在 情人节 一 人 独处 . +Tom might be able to attend the meeting . 汤姆 可能 能 参加 会议 . +You can no longer hurt me . 你 不再 能 伤害 到 我 了 . +Hello ! 你好 . +It is going to rain soon . 天 快要 下雨 了 . +Japanese office workers work very hard . 日本 上班族 工作 得 非常 辛苦 . +Tom is certain to come on time . 汤姆 一定 会 准时 来 的 . +This car is easy to handle . 這輛 車 很 容易 操控 . +I will show you some pictures . 我 會 讓 你 看 照片 . +Move over . 腾 一下 地方 . +I am very busy this week . 这周 我 非常 忙 . +She asked me if anything was the matter . 她 问 我 是不是 发生 了 什么 事 . +Are you a high school student ? 你 是 高中生 嗎 ? +He made his way through the crowd . 他 設法 穿 過 了 人群 . +The skies are clear . 天空 很 清朗 . +We will only consent on that condition . 我们 只 会 在 那样 的 条件 下 同意 . +I am going out this afternoon . 今天下午 我 會 外出 . +She is getting better day by day . 她 一天 一天 地好 轉 . +Tom can not swim . 汤姆 不会 游泳 . +Now is the time to act . 现在 是 行动 的 时候 了 . +This is considered to be a matter of great importance . 这 被 认为 是 一件 大事 . +I have already changed my clothes . 我 已經 換 了 我 的 衣服 . +She tossed me grapes and I tried to catch them with my mouth . 她 朝 我 丢 葡萄 , 我 试 着 用 嘴 接住 它们 . +Do not let me down . 别 让 我 失望 . +Stop worrying . 别 担心 了 . +His record is a new world record in the 100 @-@ meter dash . 他 刷新 了 百米 短跑 的 世界 紀錄 . +This box is too bulky to carry . 這個 箱子 太 笨重 了 無法 攜帶 . +I have done enough already . 我 已经 做够 了 . +Tom has many cats . 湯姆 有 很多 貓 . +If I have misjudged you , I am terribly sorry . 如果 我 对 你 产生误解 , 我 实在 抱歉 . +I told her what should be done . 我 告诉 了 她 应该 做 什么 . +Do not waste your time . 别 浪费时间 . +How do I get my dog to eat dog food ? 怎么样 才能 让 我 的 狗 吃 狗 粮 ? +We are going to stay in Boston all month . 我們 整個 月 都 要 待 在 波士 頓 . +I bet Tom forgot . 我 打 賭 湯姆 忘 了 . +Please make three copies of each page . 请 把 每 一页 复印 三份 . +She loves chocolate , too . 她 也 喜欢 巧克力 . +They treat me like a child . 他们 把 我 当 小孩 . +Go outside and play now . 現在 出去 玩吧 . +I have a friend whose father is a famous novelist . 我 有 一位 父亲 是 著名 小说家 的 朋友 . +I agree . 我 同意 . +Why do not you talk to him ? 你 為 甚麼 不 跟 他 講 ? +I gave you a book . 我 给 了 你 一 本书 . +Tom did not know exactly what it was that Mary wanted him to do . 汤姆 不 知道 玛丽 到底 让 他 做 什么 . +Do not be late for school again . 不要 再上 學遲 到 了 . +I saw you kissing Tom . 我 看到 了 你 在 吻 汤姆 了 . +He forgot that he bought her a present . 他 忘记 给 她 买 过 一个 礼物 了 . +He is my brother , not my father . 他 是 我 哥哥 , 不是 我 爸爸 . +They are children . 他们 是 孩子 . +Have you all eaten ? 你們 吃飯 了 嗎 ? +What is going on with you ? 你 怎么 了 ? +She and I have nothing in common . 我 和 她 沒有 共同 之處 . +What are you doing ? 你 做 什麼 ? +I helped him with his homework . 我 幫 他 做 他 的 家庭 作業 . +I am from Boston . 他 來 自 波士 頓 . +I do not think I really have a problem . 我 不 認為 我 真的 有 問題 . +Read this book . 看 这 本书 . +This was the most interesting book that she had ever read . 這 是 她 讀 過 最 有趣 的 書 . +Next time I will come earlier . 下 一次 我 會 早 一點 到 . +There is nothing I can do about it . 我 对此 无能为力 . +How high can you jump ? 您 能 跳 多 高 ? +" I will do it tomorrow . " " You said that yesterday ! " “ 我 明天 再 做 . ” “ 这话 你 昨天 就 说 过 了 ! ” +I am sorry I do not agree with you on that matter . 很 抱歉 那个 问题 我 不 赞成 你 . +It has nothing to do with me . 它 跟 我 没关系 . +There is a computer on the table . 桌子 上有一 臺 電 腦 . +Tom put his hand over the microphone . 汤姆 把手 放在 麦克风 上 . +I 'd be thrilled to do that . 我 很 乐意 这么 做 . +My brother gave me a cute doll . 我 哥哥 給 了 我 一個 可愛 的 娃娃 . +The cost of living has risen . 生活 費 升高 了 . +He told me to wash my face . 他 叫 我 洗脸 . +There were a lot of people in the park . 公园 里 有 很多 人 . +When I opened the door , I broke the lock . 我 开门 的 时候 弄坏了 锁 . +A Japanese would not do such a thing . 日本 人 不 會 做 這種 事 . +The telephone rang several times . 電話 響 了 好 幾次 . +What time does the train for New York depart ? 去 纽约 的 火车 几点 出发 ? +I have so many clothes I do not know what to wear tomorrow . 我 有 那么 多 衣服 , 以至于 我 不 知道 明天 穿 什么 了 . +She looks young . 她 看起来 很 年轻 . +Study hard . 好好学习 . +Do I have to take this medicine ? 我 必須 吃 這個 藥 嗎 ? +I lent Tom my camera . 我 把 我 的 相機 借給 了 湯姆 . +I began playing golf years ago . 幾 年前 我 開始 打 高爾夫 球 . +I do not mind if it is hot and spicy . 辣 点儿 没关系 . +This T @-@ shirt is too small for me . 這件 T 卹 太小 了 . +You are probably smarter than you think . 你 可能 比 你 想 的 更 聪明 . +I got up early as usual . 我 和 往常 一样 起得 很早 . +A cornered rat will bite a cat . 窮鼠 囓狸 . +He asked her to marry him , and she accepted . 他 向 她 求婚 , 而 她 同意 了 . +You disappointed me . 你 让 我 失望 了 . +You are too drunk to drive . 你 酒 喝 得 太 醉 了 不能 開車 . +I have always been proud of you . 我 一直 以 您 为 荣 . +He sang some old songs . 他 唱 了 些 老歌 . +I am sure that it will be fun . 我 确定 它 将 会 很 有趣 +He is crazy about soccer . 他 酷爱 足球 . +You were late for work . 你 上班 迟到 了 . +He selected a Christmas gift for her . 他 給 她 選 了 件 聖誕 禮物 . +What do you think should be done about it ? 你 觉得 对此 该 做 什么 ? +Let me think for a while . 讓 我 思考 一下 . +It is almost midnight here . 這裡 已經 是 午夜 了 . +I , for one , am for the plan . 就 個 人 而言 , 我 贊同 這個 計劃 . +He interrupted our conversation . 他 打断 了 我们 的 谈论 . +I called her up . 我 叫 她 起来 . +How long did it take you to translate this book ? 你 用 了 多少 时间 来 翻译 这 本书 ? +He does not eat raw fish . 他 不吃 生鱼 . +How tall is your youngest brother ? 你 最小 的 弟弟 身高 多 高 ? +He knows how to captivate his audience . 他 知道 如何 去 吸引 他 的 聽眾 . +I will take him . 我会 去 接 他 的 . +Why are you asking me ? 你 為 什麼 問 我 ? +I will help you escape . 我会 帮 你 逃跑 的 . +We will play soccer after school . 我們 放學 後 會 去 踢足球 . +You should not tell him anything about her . 你 不 應該 告訴 他 任何 關於 她 的 事 . +Soccer is more popular than tennis . 足球 比 網球 更 受歡 迎 . +All you can do is trust one another . 你们 除了 信任 对方 , 没什么 要 做 的 了 . +The road is too narrow for cars . 這 條路 太 窄 汽車 無法 通行 . +We got an interesting piece of information . 我們 得到 了 一份 有趣 的 情報 . +It was impossible to find an answer . 不 可能 找 得到 答案 . +You are a good person . 您 是 一個 好人 . +She was busy with household work . 她 忙 於 家務 . +No one thinks Tom will win the race . 沒人 認為 湯姆賽 跑 會 贏 . +The strong wind indicates that a storm is coming . 強 風 暗示 著 即 將 到 來 的 暴雨 . +Sometimes I can not help myself . 有时候 我 帮不了 自己 . +The police assembled a lot of evidence against him . 警察 收集 了 很多 对 他 不利 的 证据 . +I have nothing more to do today . 我 今天 沒有 更 多 的 事 要 做 的 了 . +He had the right idea . 他 的 想法 是 对 的 . +Tom hoped that Mary would not die . 汤姆 希望 玛丽 别 死 . +Tom admitted to spilling the red wine . Tom 承认 了 他 摔 了 红酒 . +Did you know that some foxes lived on this mountain ? 你 知道 有些 狐狸 住 在 這 座 山上 嗎 ? +Is everybody ready ? 所有人 都 准备 好了吗 ? +She left here in a hurry . 她 匆忙 地 離開 了 這裡 . +The criminal has not been caught yet . 那個 犯人 還 沒 被 抓到 . +The village has no electricity . 村里 没 通电 . +My father has five brothers and sisters . 我 父親 有 五個 兄弟姐妹 . +Do you have any smaller sizes ? 你 有 任何 比較 小 的 尺寸 嗎 ? +Let is try it out . 我们 试试 . +We need one more spoon . 缺 一把 勺子 . +We gave the car a push . 我們 推 了 車 . +You know what I want to hear . 你 知道 我 想 聽 甚麼 . +What woke you up ? 什麼 吵醒 你 了 ? +I like to ride on trains . 我 喜歡 乘坐 火車 . +A card was attached to the gift . 一張 卡片 被 附在 了 禮物 上 . +On the whole , the event was successful . 整體 而言 , 這個 事件 是 成功 的 . +I am very sleepy . 我 非常 困 . +I am really bad at this . 我 实在 不 擅长 这个 . +Tom is quite thin , is not he ? 汤姆 真瘦 , 不是 么 ? +Lawyers are all liars . 律师 都 是 骗子 . +I can not stand that noise . 我 不能 忍受 那個 噪音 . +Tom turned right when he should have turned left . 汤姆 本该 往 左转 却往 右转 了 . +Crocodiles have sharp teeth . 鳄鱼 有 尖利 的 牙齿 . +I usually go to school by bus . 我 經常 搭 公車 上 學 . +Tom is a very talented writer . 汤姆 是 个 很 有 才华 的 作家 . +True love never grows old . 真 愛 不 會 變 老 . +My mom gets out of bed before me . 我 媽媽 比 我 早起 . +Please shut the door behind you . 請 隨手 關門 . +This is the worst hotel in town . 這 是 城裡 最 糟糕 的 旅館 . +I got to the station this morning . 我 今天上午 到 了 車站 . +We elected her chairperson . 我們 選 她 為 主席 . +Take good care of yourself . 照顾 好 你 自己 . +I think so . 我 想 是 這樣 的 . +My room is very small . 我 的 房間 很小 . +His uncle died five years ago . 他 的 叔叔 五年 前 去世 了 . +Man is the only animal that talks . 人类 是 唯一 彼此 交谈 的 动物 . +Please put those chairs away . 請 把 那些 椅子 放好 . +That is a good question . 那 是 一個 很好 的 問題 . +It appears that she had a nice time at the party . 看來 她 似乎 在 派 對 上 玩 得 很 開心 . +I have been coming to work one train earlier lately . 我 已經 搭 了 最近 比較 早 一點 的 火車 來 上班 . +Let is stop at the next gas station . 我们 在 下 个 加油站 停 一下 . +Maybe we should talk . 大概 我们 需要 交谈 . +You can stay as long as you like . 你 想要 待 多久 就 待 多久 . +Your English is improving . 你 的 英語 正在 進步 . +Tom hugged Mary . 汤姆 拥抱 了 玛丽 . +Neither Tom nor I did that . 汤姆 和 我 都 没有 那么 做 . +They know nothing . 他們 什麼 都 不 知道 . +He went to the dentist . 他 去 看 牙医 了 . +All the flowers in the garden withered . 所有 花園 裡 的 花朵 都 枯萎 了 . +Thank you very much for everything . 非常 感謝 你 所 做 的 一切 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 如何 到 火車 站 嗎 ? +She followed him home to find out where he lived . 她 跟 他 到 家 , 以 知道 他 住 哪 . +Their wedding is tomorrow . 他們 明天 舉行 婚禮 . +Spring is just around the corner . 春天 就要 来 了 . +You are lucky to have such a good job . 你 很 幸運 能有 這麼 好 的 工作 . +I remember meeting her somewhere . 我 記得 我 在 某個 地方 見 過 她 . +My brother is small but strong . 我 哥哥 雖然 矮小 可是 很 強壯 . +Do you really need a car ? 你 真的 需要 车 吗 ? +We woke up very early in order to see the sunrise . 我们 起得 很早 为了 看到 日出 . +I do not sleep well . 我 睡 不好 . +Do you like spinach ? 你 喜歡 菠菜 嗎 ? +How do you want your hair cut ? 你 想 將 頭 髮 剪成 怎樣 ? +I am in trouble . 我 有 麻煩 了 . +What time does the first train leave ? 第一班 火车 什么 时候 出发 ? +I have heard nothing from him yet . 我 沒 有 他 的 任何 消息 . +Tom disappeared . 汤姆 不见 了 . +She climbed down from the roof . 她 从 屋顶 上 下来 了 . +Water turns into steam when it is boiled . 水 沸腾 后 变为 蒸汽 . +I would like to help you . 我 愿意 帮 你 . +I do not like her . 我 不 喜歡 她 . +They grow strawberries in their greenhouse . 他們 在 他們 的 溫室 裡 種 植 草莓 . +He can swim very fast . 他 能 游 得 很快 . +You have no right to do that . 你 無權 那麼 做 . +We are having lunch . 我們 在 吃 午餐 . +We need your help . 我們 需要 你 的 幫忙 . +He traveled around the country . 他 周遊 全國 各地 . +The leaves fell . 叶子 落 了 . +Visitors to Switzerland admire the Alps . 遊客 到 瑞士 欣賞 阿爾 卑斯山 . +I told you to get out . 我 告诉 过 你 出去 . +Would you like me to take a look ? 你 能 让 我 看看 吗 ? +Let is go back to lesson three . 让 我们 回到 第三课 . +He has a good appetite . 他 的 胃口 很 好 . +Tom is our oldest son . 汤姆 是 我们 最大 的 儿子 . +Thank you for drawing a bird for me . 謝謝 你 為 我 畫 鳥 . +Can you wake me up at seven o 'clock tomorrow morning ? 你 明天 早上 七點 可不可以 叫 我 起床 . +She gave me whatever help I needed . 她 給 了 我 任何 我 需要 的 幫助 . +I wish I had not said that at the party . 我 希望 我 在 聚會 上 沒 說 過 那話 . +What time does it start ? 什么 时候 开始 ? +He himself did it . 是 他 自己 做 的 . +Tell me when to stop . 告訴 我 甚麼 時候 停下 . +What were you up to last night ? 你 昨天晚上 做 什麼 ? +Tell me again where you live . 再 跟 我 說 一次 , 你 住 哪 ? +Our eyes take time to adjust to the dark . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +A man must work . 男人 应该 工作 . +Does Tom have a girlfriend ? 湯姆 有 女朋友 嗎 ? +Better late than never . 迟 做 总比 不 做好 . +Does not Tom go to Australia every month ? 汤姆 不是 每个 月 都 去 澳大利亚 吗 ? +Who told you that Tom and I are dating ? 谁 告诉 你 我 和 汤姆 在 交往 的 ? +It seems as if I am the only person here capable of doing it . 看来 我 是 这里 唯一 有 能力 做 这件 事 的 人 . +I do not like this idea . 我 不 喜歡 這個 主意 . +The train is due to arrive at noon . 火車 該 在 中午 到 . +The sheet is on the bed . 床单 在 床上 . +I really need a drink now . 我 现在 真 需要 来 杯 喝 的 . +The couple had a son . 这 对 夫妇 生 了 个 儿子 . +Tom needs to see you in ten minutes . 湯姆 需要 在 十分 鍾 內 見 到 你 . +I go into town every weekend . 我 每 周末 都 会 去 市区 . +He told us an interesting story . 他 告訴 了 我們 一個 有趣 的 故事 . +Put the gun on the table . 把 槍 放在 桌子 上 . +The museum is open from Monday to Friday . 博物馆 周一 到 周五 开门 . +Yes , I have a good idea . 是 的 , 我 有 一個 好 主意 . +I borrowed Tom is phone this morning . 我 今天 早上 跟 Tom 借手 機 . +I thought it best to remain silent . 我 想 最好 還是 保持沉默 . +What newspaper do you subscribe to ? 你 訂閱 了 什麼 報紙 ? +The law is not always fair . 法律 並 不 總是 公平 的 . +War broke out in 1941 . 战争 于 1941 年 爆发 . +Tom is not a good person . 湯姆 不是 好人 . +I have never been this happy before . 我 从未 这么 高兴 . +She cut the apple with a knife . 她 用 刀子 切 蘋果 . +We accept your challenge . 我們 接受 你們 的 挑戰 . +I do not like this jacket . 我 不 喜歡 那件 夾克 . +Do not underestimate my power . 不要 低估 我 的 力量 . +Everyone is here except for him . 除了 他 每個 人 都 在 這裡 . +Fur coats are on sale . 毛 皮大衣 在 打折 . +I want to drink something cold . 我 想 喝 冷 飲 . +I am going to propose to her . 我 打算 向 她 求婚 . +We could see nothing but fog . 除了 雾 我 看不见 任何 东西 . +Where is the nearest police station ? 最近 的 警察局 在 哪里 ? +What did you open it with ? 你 用 什么 打开 的 ? +What do you usually do after dinner ? 你 通常 晚 飯 後 做 什麼 ? +My father neither smokes nor drinks . 我 的 父親 不 抽 菸 也 不 喝酒 . +Drive carefully . 安全 地 駕駛 . +Tom suddenly looked concerned . 湯姆 突然 看 起來 在 擔心 . +The project is ongoing . 该 项目 正在 进行 中 . +I found it easy to speak English . 我 發覺 說 英語 很 簡單 . +He cleaned his room on Sunday . 他 在 週日 打掃 他 的 房間 . +Fish cannot live out of water . 魚離 開水 就 無法 生存 . +Some of my friends can speak English well . 我 的 一些 朋友 英语 说 得 很 好 . +I would do it if I could . 我 如果 能 做 就 做 了 . +He will be a good husband to my sister . 他 会 是 我 妹妹 的 好 丈夫 的 . +I want to see a movie . 我 要 去 看 電影 . +I take a bath every day . 我 每天 洗 一次 澡 . +I am your partner . 我 是 你 的 夥 伴 . +What is Tom so angry about ? 湯姆 為 了 甚麼 生氣 ? +I let Tom watch a little TV after he finished his homework . 我 让 Tom 在 做完作业 后 看 一点 电视 . +Bring it to me . 把 它 带给 我 . +My job is washing dishes . 我 的 工作 是 洗盤子 . +Tom should have known better . 汤姆 应该 更 清楚 . +She is my daughter . 她 是 我 女儿 . +Do you know what I mean ? 你 知道 我 的 意思 嗎 ? +I have no intention of resigning . 我 無意 辭職 . +I know why you are happy . 我 知道 你 为什么 高兴 . +The tablecloth is in the cabinet . 桌布 在 櫥櫃 裡 . +My legs are smaller than yours . 我 的 腿 比 你 的 小 . +Tom does not trust the police . 湯姆 並 不 信任 警察 . +He was born on July 28th , 1888 . 他 出生 於 1888 年 7 月 28 日 . +The fire alarm rang . 火警 警报 响 了 . +What happened here ? 这儿 发生 了 什么 事 ? +It really comes in handy . 這 真的 能派 上 用場 . +I wish I could swim . 我 希望 我 會 游泳 . +No problem at all ! 没有 任何 问题 ! +Is breakfast included ? 包括 早饭 吗 ? +I want to be as tall as Tom . 我 想 和 Tom 一樣 高 . +Not everyone who lives here is rich . 並 不是 每個 住 在 這裡 的 人 都 是 富有 的 . +Tomorrow , he will land on the moon . 明天 他 会 在 月球 降落 . +Did you notice anything strange ? 你 注意 到 奇怪 的 地方 了 嗎 ? +You should run for city council . 你 应该 去 竞选 城市 委员会 . +If you do not behave , Santa will not come . 你 一旦 不 做 个 乖孩子 , 圣诞老人 就 不会 来 噢 . +I know you are upset . 我 知道 你 难过 . +At night , she gazed at the moon . 她 在 夜晚 望著 月亮 . +She is neither rich nor famous . 她 既 没钱 , 也 不 出名 . +You will understand someday . 你 有 一天 會 明白 . +A fire broke out in my neighborhood last night . 昨晚 我 领 居家 着火 了 . +What language is spoken in Egypt ? 在 埃及 说 什么 语言 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +He applied himself to the study of music . 他 潛心 研究 音樂 . +Your dog is very big . 你 的 狗 非常 胖 . +What does this mean ? 这 是 什么 意思 ? +Do you have a garage ? 你 有 車庫 嗎 ? +The teacher lined the children up in order of height . 老师 按照 身高 给 孩子 们 排队 . +Can we lock this door ? 我們 能 鎖 門 嗎 ? +Did you go anywhere during the summer vacation ? 这个 暑假 你 有 去 哪儿 玩 吗 ? +Can I borrow your car tonight ? 我 今晚 可以 借 一下 你 的 车 吗 ? +Tom will never see you again . 汤姆 再也不会 见 你 了 . +I have eight brothers and sisters . 我 有 八個 兄弟姐妹 . +You look very dignified . 你 看 起來 很 威嚴 . +He realized his dream of becoming an artist . 他 實現 了 當 兿 術 家 的 梦想 . +I hope you have sweet dreams . 祝 你好 梦 . +Keep away from the electrical equipment . 遠離 電器 設備 . +I got him to polish my shoes . 我 要 他 擦亮 我 的 皮鞋 . +This is never going to end . 這個 永遠 結束 不了 . +Would you like some more gravy ? 你 想 再 來 些 醬汁 嗎 ? +Do you plan to go overseas ? 你 打算 出國 嗎 ? +We will know the truth before long . 我們 不久 將 知道 真相 . +I just said something very stupid . 我 刚 说 了 很蠢 的话 . +Do not talk to me like this . 不要 这样 对 我 讲话 . +Are you busy now ? 現在 您 忙 嗎 ? +I had lost my pen . 我 弄 丟了 我 的 筆 . +I can only speak for myself . 我 只能 代表 我 自己 講 話 . +He lives in a village near Osaka . 他 住 在 大阪 附近 一座 鎮 上 . +Listen and listen carefully . 听 而且 听 仔细 . +I want more detailed information . 我 要 更多 詳細 的 訊息 . +When did you begin playing golf ? 你 什麼 時候 開始 打 高爾夫 球 ? +I am going to take a bath . 我 打算 洗 个 澡 . +Do you feel like going swimming ? 你 想 去 游泳 嗎 ? +Would you like to go ? 你 想 去 嗎 ? +Clean the window with a damp cloth . 用 濕布 清潔 窗戶 . +Switzerland is a beautiful country . 瑞士 是 一個 美麗 的 國家 . +Tom has been wounded . Tom 负伤 了 . +I feel as if I have woken up from a nightmare . 我 覺得 我 好像 從 惡 夢 中 驚醒 . +She is now eighty @-@ one years old . 她 現在 八十一 歲 了 . +It does not matter . 没关系 . +I think this medicine will do you good . 我 想 这 药会 对 您 有 好处 的 . +Agriculture consumes a great amount of water . 农业 需要 消耗 的 大量 水 . +How will we protect ourselves ? 我們 怎麼 保護 自己 ? +I like to take a walk after meals . 我 喜欢 饭后 散步 . +Tom began to learn French about three years ago . 汤姆 大约 三年 前 开始 学法语 . +There are many endangered species . 有 許多 瀕 危 物种 . +Once he had written the letter , he sent it . 信 一 写 好 , 他 就 把 它 寄 了 . +Hang on ! 等 一下 ! +I just knew you would say that . 我 就 知道 你 会 这么 说 . +He wants to be a tennis player . 他 想 成為 一名 網球 選手 . +What were you doing this morning ? 今天 早上 你 在 做 什么 ? +I can play Chopin . 我 會 彈 蕭邦 . +Tom is very good at doing things with his hands . 汤姆 善于 动手 做事 . +He was late for school yesterday . 他 昨天 上学 迟到 了 . +You just saved me a lot of time . 你 省 了 我 好多 時間 . +Keep on smiling . 保持 微笑 . +How many plates do we have ? 我們 有 多少 個盤子 ? +He does not have a job . He is retired . 他 没有 工作 , 他 退休 了 . +I belong to a tennis club . 我 是 网球 俱乐部 的 会员 . +I intend to study abroad next year . 我 打算 明年 出國留學 . +I still live at my dad is place . 我 還 住 在 我 父親 的 房子 裏 . +A friend of mine came to see me during the day . 我 的 一個 朋友 在 白天 的 時候 來看 我 . +I have got time . 我 有 时间 . +I am glad to see you again . 很 高興 再次 見 到 你 . +I thought Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He is doing his best . 他 在 全力以赴 . +I want to see him very much . 我 非常 想 见到 他 . +Tom looks very happy . 汤姆 看起来 非常 开心 . +My cats will love this . 我 的 猫会 爱 上 这个 . +I am worried about Tom . 我 在 為 湯姆 擔心 . +This noise is driving me crazy . 這個 噪聲 快 把 我 逼 瘋 了 . +I want you to open the window . 我 要 你 把 窗戶 打開 . +The visitor sat across from me . 訪客 坐在 我 的 對面 . +Were you serious about that ? 你 对 那 是 认真 的 吗 ? +Tom is never going to cry . 汤姆 永远 不会 哭 . +She dreamed that she was a princess . 她 梦见 她 是 一个 公主 . +My mother did nothing but weep . 我 的 母亲 只是 默默地 哭泣 . +There are seven men and four women in my section . 在 我 的 部门 里 有 七 男 四女 . +Whose book is this ? 這 是 誰 的 書 ? +Tom is parents were not particularly pleased . 汤姆 的 父母 不是 特别 高兴 . +This is what Tom would want me to do . 這 是 湯姆會 想 讓 我們 做 的 . +My aunt made me a new skirt . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +I wanted to show it to you . 我 想 把 它 給 你 看 . +I will give you a ring . 我会 打电话 给 你 . +Politics leaves him cold . 他 對 政治 沒有 興趣 . +He and I were inseparable friends during our time together in school . 我 和 他 在 學生 時代 是 分不開 的 朋友 . +I almost did not meet her . 我 幾乎 沒有 遇見 她 . +Can you guess what I have here ? 你 能 猜到 我 有 什么 吗 ? +You make life worth living . 你 讓 生命 值得 活下去 . +Fill the bucket with water . 把 水裝 滿 桶子 . +Keep your eyes open . 睜 大 你 的 眼睛 . +The child had no overcoat on although it was very cold . 尽管 天气 很 冷 , 孩子 却 没有 大衣 穿 . +I am developing an Android application . 我 正在 开发 一个 安卓 应用 . +The dog was sleeping on the mat . 狗 在 地毯 上 睡觉 . +Look what happened . 看看 發生 了 什麼 . +Turn on the radio , please . 请 打开 收音机 . +It is a pity they are getting divorced . 很 遗憾 他们 离婚 了 . +Why are not you married yet ? 你 为啥 还 不 结婚 ? +I plan to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +He played tennis all day long . 他 整天 打 網球 . +Tom went down the hill . 汤姆 走 下 山坡 . +You 'd better take an umbrella with you in case it rains . 以防 下雨 你 最好 带 把 伞 . +They went in opposite directions . 他們 往 相反 的 方向 去 . +Where did you go yesterday ? 你 昨天 去 哪裡 了 ? +How can I get to the police station ? 我 怎么 去 警察局 ? +Is it all there ? 全都 在 那裡 嗎 ? +The boy was naked to the waist . 男孩 赤裸 着 上身 . +Could you tell me what my choices are ? 你 能 告訴 我 我 的 選項 是 甚麼 嗎 ? +I would like mine rare . 我 的 牛排 要生 的 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 情緒 化 是 不好 的 . +Tom likes hot curry . 湯姆喜 歡辣 咖哩 . +I forgot to telephone him today . 我 今天 忘 了 打 電話 給 他 . +Mary placed her baby in a car seat for the flight . 航程 中瑪麗 把 她 的 寶寶 放在 嬰兒 汽車 座椅 上 . +Are you a bachelor ? 你 是 单身 吗 ? +This should be a lot of fun . 這 應 該 很 有意思 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +He had his socks on inside out . 他 将 袜子 的 里外 穿反 了 . +She made faces at that woman . 她 對 那個 女人 做 了 鬼 臉 . +It seems to me that she is a little selfish . 我 觉得 她 有点 自私 . +I thought that Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +A trip to America was equivalent to a two @-@ year salary for her . 去 美国 旅行 一次 相当于 她 两年 的 工资 . +The cab driver was not seriously injured . 出租车 司机 没有 受 重伤 . +That is a lot of cash . 那 是 很多 錢 . +Ca not you stay a little longer ? 你 不能 待 久 一點 嗎 ? +Tom closed his eyes and began to count sheep . 汤姆 闭上 了 眼睛 开始 数羊 . +We are heroes . 我們 是 英雄 . +Mary plays the piano . 瑪麗彈 鋼琴 . +You should always tell the truth . 你 應 該 永遠 說 實話 . +My dad died before I was born . 我 出生 前 , 我 父亲 就 死 了 . +Has not Tom told you anything ? 汤姆 什么 都 没 告诉 你 吗 ? +She scolded her son for being lazy . 她 罵 她 的 兒子 懶惰 . +A Mexican taught him Spanish . 一個 墨西哥人 教 了 他 西班牙文 . +Which is heavier , lead or gold ? 哪個 比較 重 , 鉛 還 是 黃金 ? +What is learned in the cradle is carried to the tomb . 幼年 時學 的 東西 , 一輩子 不 會 忘 記 . +When he was a child , he would go fishing on Sundays . 他 小时候 , 星期天 会 去 钓鱼 . +Tom is Mary is former husband . 湯姆 是 瑪麗 的 前夫 . +I think that it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Do not interrupt our conversation . 不要 打斷 我們 的 談話 . +You should be a diplomat . 你 应该 做 一个 外交官 . +She usually sleeps for eight hours . 她 通常 睡 八個 小 時 . +I will go to Hokkaido tomorrow . 我 明天 要 去 北海道 . +When she saw that they had no schools , she started one . 当 她 发现 他们 还 没有 学校 , 她 就 办 了 一个 . +The sun went below the horizon . 太陽 落到 地平線 下 了 . +I am a citizen of the world . 我 是 世界 公民 . +I want you to help us find out who killed Tom . 我 想 讓 你 幫 我們 查出 來 誰 殺 了 湯姆 . +Do you have a red pencil ? 你 有 紅色 的 鉛 筆 嗎 ? +Tom can not sleep without a light on . Tom 没 办法 在 没有 亮灯 的 时候 入睡 . +I think exams ruin education . 我 认为 考试 破坏 教育 . +Tom just got divorced , too . 湯姆 也 剛 離婚 . +I woke up at five this morning . 我 今天 早上 五點 醒來 . +Reporters do not hesitate to intrude into people is privacy . 记者 没有 犹豫 地 去 干涉 了 人们 的 私生活 . +Tom was already at work . 湯姆 已經 在 上班 了 . +She won many competitions . 她 贏 了 許多 比賽 . +I have a very sore arm where you hit me . 你 打 在 我 手臂 上 的 地方 超级 痛 . +I took off my hat and entered the church . 我 摘下 帽子 进 了 教堂 . +Tom was buried Monday . 汤姆 在 周一 被 埋 了 . +Has Tom gone insane ? Tom 瘋 了 嗎 ? +Would you please turn the TV off ? 请 把 电视机 关掉 好 吗 ? +We sometimes meet them . 我們 有 時會 見到 他們 . +What grade is your sister in ? 你 的 妹妹 唸 幾 年 級 ? +I do not like summer . 我 不 喜欢 夏天 . +I can call Tom if you want . 如果 你 想要 的话 , 我 可以 打电话 给 汤姆 . +Is the door open ? 門 開著 嗎 ? +They will tear down the old building in two days . 他們 將 在 兩天 內 拆除 這棟 舊 的 建築物 . +Tom lied . 汤姆 说谎 了 . +Fasten your seat belt , please . 請 繫 好 安全 帶 . +My father is too busy to take a walk . 我 父親 太 忙 而 無法 去 散步 . +She liked tennis and became a tennis coach . 她 喜欢 网球 并 成为 了 一个 网球 教练 . +Let is go ! 我們 走 吧 ! +In a crisis , you must get in touch with your teacher . 在 危險 的 時候 你 必須 跟 你 的 老師 聯 繫 . +She always looked happy , but never was . 她 總是 看 起來 很快 樂 , 但 實際 上 從來 不快 樂 . +Merry Christmas ! 聖誕 快樂 . +You must return the book to him . 这 本书 你 该 还给 他 . +I am quite satisfied with my life . 我 对 我 的 人生 很 满意 . +I do not mind if you go to bed before I get home . 我 不介意 你 在 我 回到 家 之前 先 去 睡觉 . +Do you believe in God ? 你 相信 上帝 吗 ? +Something may have happened to him . 他 可能 發生 了 什麼 事情 . +He will be back in ten minutes . 他 十分 鐘 後 會 回來 . +He got engaged to my cousin . 他 和 我 的 堂姊妹 订婚 了 . +Look out for pickpockets . 小心 扒手 . +A friend in need is a friend indeed . 患難 見 真情 . +Is this snake safe to touch ? 摸 這條 蛇 安全 嗎 ? +You make me feel so guilty . 你 讓 我 感到 很 內疚 . +You can not keep a secret . 你 不能 有 秘密 . +I want to go to see a movie . 我 要 去 看 電影 . +Graham Greene is a favorite author of mine . 格雷厄姆 葛林 是 我 最 喜歡 的 作家 之一 . +She makes herself up every morning . 她 每天 早上 自己 起床 . +It is easy for monkeys to climb trees . 猴子 爬树 容易 . +Look back ! 回头 看 ! +It is pretty heavy . 它 真 重 . +I could have told you that . 我 應該 告訴 過 你 了 . +He accomplished his mission . 他 完成 了 他 的 使命 . +You want to remain anonymous . 你 想 保持 匿名 身份 . +Tom is wearing gloves . 汤姆 戴 着 手套 . +She will care for you from now on . 从 现在 开始 , 由 她 来 照顾 你 . +Wires are used to convey electricity . 電線 被 用來 運送 電力 . +Tom will not be able to do that job . 汤姆 做不了 那 项 工作 +With your approval , I would like to offer him the job . 如果 您 同意 , 我 想 給 他 這份 工作 . +Do not put anything on top of the box . 盒子 上面 不要 放 任何 東西 . +Do you really think that Tom will not come ? 你 真的 认为 汤姆 不会 去 吗 ? +She made room for an old lady . 她 讓 座 給 一位 老太太 . +I just wanted to prove to myself that I could do this . 我 只 想 向 自己 证明 我 可以 做到 . +I told you not to talk about the matter in her presence . 我 跟 你 说 过 她 在 的 时候 不要 说 这件 事 . +We must not break our promise . 我們 不能 違背 我們 的 承諾 . +I will not be here tomorrow . 我 明天 不 在 这儿 . +Can I try this on ? 我 能 试一下 吗 ? +Please speak more clearly . 请 说 得 更 清楚 些 . +I washed the dishes after supper . 晚饭 后 我 洗 了 餐具 . +He is a DJ . 他 是 一个 DJ . +She will be the first Japanese woman astronaut . 她 將 會 成為 日本 第一 個 女性 太空 人 . +None of the telephones are working . 所有 的 電話 都 不通 . +My uncle lives near the school . 我 叔叔 住 在 学校 附近 . +Get them before they get us . 先下手为强 , 后 下手 遭殃 . +Mom is getting dinner ready . 媽媽 快 把 晚餐 準備 好 了 . +Tom has an old car . 湯姆 有 輛 舊車 . +I hope he will be able to come ! I would like to see him . 我 希望 他 能 來 ! 我 想 見 他 . +Approximately thirty young people attended . 约 有 三十个 年轻人 到 了 . +Can you help me find a job ? 你 能 幫 我 找 一個 工作 嗎 ? +Please tell me your name . 請 告訴 我 你 的 名字 . +I stood waiting for a bus . 我 站著 等 公車 . +Have you checked our supplies recently ? 你 最近 检查 我们 的 补给 了 吗 ? +If it is not too expensive , I will do that . 如果 不是 太贵 的话 , 我会 买 的 +Speak clearly . 講 清楚 . +This is by far the best novel that has been published this year . 这 显然 是 今年 出版 的 最好 的 小说 . +You can trust him to keep his word . 你 可以 相信 他 会 信守诺言 . +Do you want to hear what I think ? 你 想 聽 聽 我 是 怎麼 想 的 嗎 ? +Stay out of the rain . 躲雨 . +Tom can not tell Mary his real feelings . 汤姆 不能 把 他 的 真实 感受 告诉 玛丽 . +She is a middle @-@ aged fat woman . 她 是 個 中年 胖女人 . +To the man who only has a hammer in the toolkit , every problem looks like a nail . 对 工具箱 里 只有 一把 榔头 的 人 来说 , 所有 的 问题 都 像 钉子 . +Tom wanted to see Mary is room . 湯姆 想 看看 瑪麗 的 房間 . +I know it is time to go , but I want to stay longer . 我 知道 該 走 了 , 但 我 想 留 久 一點 . +My mother gets up early every morning . 我 媽媽 每天 早上 早起 . +I will treat you to dinner . 晚饭 我 请客 . +Dinner will be ready by six @-@ thirty . 晚餐 將 在 六點 半前 開飯 . +My team is always losing . 我们 队 总是 输 . +He was unsure how he would get there , and when . 他 不 确定 他 怎么 到 哪里 , 以及 什么 时候 . +She thought of a good solution . 她 想到 了 一个 好 的 解决办法 . +I do not know whether she will come . 我 不 知道 她 是否 會來 . +She has always lived in Otaru . 她 一直 住 在 小 樽 . +This is the real world . 這 是 真實 的 世界 . +You will have to wait and see . 你 得 等一等 看 . +Are you saying you do not want to go to Tom is party ? 你 的 意思 是 你 不想 去 汤姆 的 派对 ? +I worry about him . 我 擔心 他 . +I have been looking for my tripod . 我 一直 在 找 我 的 三腳 架 . +We are going to set up shelters . 我们 要 建立 避难所 . +I met her on campus yesterday . 我 昨天 在校 園裡 遇到 了 她 . +They want this . 他們 想要 這個 . +Why are we wasting time with this ? 为什么 我们 在 这 上面 浪费时间 ? +I need it ASAP . 我 尽快 需要 . +Is eating with chopsticks difficult ? 用 筷子 吃 飯 難 嗎 ? +He has dozens of English books . 他 有 幾 十本 的 英文 書籍 . +I am willing to share . 我 乐意 分享 . +Tom asked me if I liked chocolate . 汤姆 问 我 是否 喜欢 巧克力 . +That dog is big . 這 隻 狗 很大 . +He left high school at seventeen . 他 十七 歲 的 時候 離開 了 高中 . +Please give me a break . 饶 了 我 吧 ! +Are you free tomorrow ? 你 明天 有空 吗 ? +I do not mind lending you the money provided you pay it back within a month . 假如能 一个月 之内 还 上 的话 , 我 可以 把 钱 借给 你 . +Can you lend me 10,000 yen ? 你 能 借 給 我 10000 日元 ? +Tom lied to the others . 汤姆 向 其他人 撒谎 了 . +What happened ? The car is slowing down . 發生 了 什麼 事 ? 車子 慢下 來 了 . +Do not blame Tom for what Mary did . 别 为 玛丽 犯 的 错 责备 汤姆 . +That is a pheasant . 那 是 一 隻 野 雞 . +I have seen that . 我 見 過 . +That is weird , is not it ? 那 真 奇怪 , 不是 么 ? +They will understand that . 他們 會 明白 . +Fire is always dangerous . 火 是 非常 危險 的 . +I met him on his way home . 在 他 回家 的 路上 我 遇見 了 他 . +Please forgive me . 请原谅 我 . +You 'd better put on a raincoat . 您 最好 穿 一件 雨衣 . +It takes time . 这 需要 时间 . +Can you guess what I have ? 你们 能 猜到 我 有 什么 吗 ? +Do you study every day ? 您 每天 都 讀 書 嗎 ? +Are you and Tom leaving together ? tom 和 你 一起 離開 嗎 ? +Tom is the one that has been waiting the longest . 汤姆 是 等 了 最长 时间 的 人 . +I would rather not go there alone . 我 寧可 不要 單獨 去 那裡 . +I will alert Tom . 我会 警告 汤姆 . +Millions were affected that day . 那天 有 數百萬 人 受 影響 . +That architect builds very modern houses . 那个 建筑师 创建 了 非常 现代 的 房屋 . +Thank you very much for the wonderful dinner last night . 非常 感謝 您 昨晚 美妙 的 晚餐 . +They are eating apples . 他們 正在 吃 蘋果 . +I would like to go skiing with her . 我 想 和 她 去 滑雪 . +I am a high school student . 我 是 个 高中生 . +Will you use this ? 你 要 用 這個 嗎 ? +He raised his hand . 他 舉起 他 的 手 . +I would like to see your father . 我 想 去 看 你 的 父親 . +Tom came back . 湯姆 回來 了 . +He studied hard . 他 努力 學習 . +We bought a comfortable new armchair . 我們 買 了 張 舒適 的 扶手椅 . +Do not translate English into Japanese word for word . 不要 逐字逐句 的 把 英文 翻譯 成 日文 . +Have you finished reading the book ? 你 讀 完 這 本書 了 嗎 ? +I can not remember . 我 想不起 來 . +You 'd better not smoke while on duty . 當 你 值勤 時 最好 不要 抽煙 . +What do you think I have been doing ? 你 觉得 我 之前 在 做 什么 ? +Would you like to have some coffee ? 你 要 喝 點 咖啡 嗎 ? +She said something to him . 她 對 他 說 了 些 話 . +Are you going to come back ? 你 要 回來 嗎 ? +We should sit down . 我們 應該 坐下 . +I was absent from the party . 我 沒 去 派 對 . +Which way should we go ? 我们 应该 往 哪个 方向 走 ? +Tell us what to do next . 告訴 我們 下 一步 該 怎麼 做 . +I will dream about you . 我会 梦 到 你 的 . +They are afraid of us . 他們 害怕 我們 . +She asked him to open the window . 她 要求 他 打開 窗戶 . +She used to play tennis on Sunday . 她 以前 在 週日 打 網球 . +I did not know you did not know how to swim . 我 不 知道 你 不 會 游泳 . +It is not easy to learn a foreign language . 学会 一门 外语 不 容易 . +His mother is an English teacher . 他 的 母親 是 一位 英語 教師 . +He has a good reading knowledge of French . 他 能 很好 地 读懂 法语 . +All of my attempts have failed . 我 所有 的 尝试 都 失败 了 . +There was no water in the river . 這條 河 的 水 乾 了 . +The baby has finally stopped crying . 婴儿 终于 不 哭 了 . +His house is not far from this store . 他家 离 这间 商店 不远 . +I need a bigger box . 我 需要 個 更 大 的 箱子 . +Tom wants to tell you about Mary . 汤姆 想 跟 你 说 玛丽 的 事 . +All lawyers are liars . 律师 都 是 骗子 . +It is not practical . 这 不 实用 . +She cannot do without her car . 她 離 不開 她 的 車 . +We should have taken the schedule into consideration . 我们 本该 考虑一下 行程 . +The rain is letting up . 雨 变小 了 . +Do not you want to go out ? 你 不想 出去 嗎 ? +He went back to the store . 他 回 店里 去 了 . +They burst into tears . 他們 突然 哭 了 . +Can I ask you a question ? 我 能 问 您 一个 问题 吗 ? +Her look says that she loves you . 她 的 樣子 在說 她 愛 你 . +We do not think it is serious . 我们 认为 这 不 严肃 . +I did not trust Tom and he did not trust me , either . 我 不 信任 汤姆 而且 汤姆 也 不 信任 我 . +These paintings are beautiful . 這些 畫 很美 . +I have to go to bed . 我 该 上床 了 . +Tom watched in horror . 汤姆 惊恐 地 盯 着 . +I think he is happy . 我 想 他 很快 樂 . +Did you have a good rest ? 休息 好 嗎 ? +Does your school have a library ? 你 的 学校 有 图书馆 吗 ? +He was determined to go abroad . 他 下定 決心 要 出國 了 . +What are you guys going to do ? 你们 这些 家伙 想 去 干什么 ? +Nobody is too old to learn . 活到老 學到 老 . +Tom enjoyed himself at the party . 汤姆 在 晚会 玩 的 很 开心 . +My friends do not play tennis . 我 的 朋友 不 打 網球 . +Apart from on rainy days , I always ride my bike to work . 除了 雨天 , 我 都 是 骑车去 上班 的 . +The bus does not always come on time . 巴士 不 总是 能 准点 到达 . +Did not I tell you so ? 我 不是 告訴 過 你 了 嗎 ? +Happy New Year ! 新年 快 樂 ! +I feel sick . 我 有点 恶心 . +I do not go to school on Sunday . 我 周日 不 去 学校 . +Grab this . 抓住 这个 . +My legs still hurt . 我 的 腿 还是 很痛 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +Who is she ? 她 是 谁 ? +I accept the offer . 我 接受 了 报价 . +Your dog is very big . 您 的 狗 非常 胖 . +She did not want to speak to anyone . 她 不想 跟 任何人 說 話 . +What are you punishing them for ? 您 为什么 惩罚 他们 ? +What is it that you want ? 你 想要 什麼 ? +He is had many unhappy experiences . 他 有 许多 不 愉快 的 经历 . +I think this book is easy . 我 觉得 这 本书 很 简单 . +They tried very hard to gain an advantage over one another . 他們 很 努力 地 超過 對方 獲得 優勢 . +Tom lost . 汤姆 输 了 . +Do you want to be an actor in a movie ? 你 想 成為 一名 電影 演員 嗎 ? +My father grows rice . 我 爸种 水稻 . +They can not hear me either . 他們 也 不能 聽見 我 說 話 . +He suspects me of telling a lie . 他 懷疑 我 說 謊 . +She is fond of taking pictures . 她 喜欢 拍照片 . +I can cook . 我会 做饭 . +It was very cold this morning . 今天 早上 很 冷 . +Do not sign the contract in pencil . 别 用 铅笔 签合同 . +What is that building ? 那栋 建筑 是 什么 呢 ? +English is not easy , but it is interesting . 英语 不 简单 , 但是 很 有趣 . +This is just between you and me . 这 只是 我们 之间 的 秘密 . +Examine this . 调查 下 这个 . +While I was reading , I fell asleep . 當 我 讀 書 的 時候 , 我 睡著 了 . +There was a large crowd in the park . 公园 里 有 一大群 人 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +I see her sweeping the room . 我 看见 她 在 打扫 房间 . +I will never forget the day when I first met him . 我 永远 不会 忘记 那天 我 第一次 与 他 见面 . +Could you come up here ? 你 能 来 这里 吗 ? ? +That red dress looks good on her . 她 穿 那件 紅色 的 衣服 很 好看 . +If I had the money , I 'd buy a new house . 如果 我 有 錢 , 我 會 買 一個 新房子 . +Do not leave me here alone . 別 把 我 一個 人 留在 這裡 . +We should run some tests . 我们 应该 进行 测试 . +Why are your ears so big ? 為 什麼 你 的 耳朵 這麼 大 ? +Tom comes home almost every weekend . 湯姆 幾乎 每個 週末 都 回家 . +I do not understand this sentence . 我 不 明白 這 句 話 . +The reservation is already made . 预订 好 了 . +He is old enough to drive . 他 年 紀夠 大 可以 開車 . +I study French after dinner every day . 我 每天 吃 过 晚饭 后 都 会 学法语 . +Tom wants to pay back the money he owes . 汤姆 想去 还 欠 的 钱 . +My grandfather is fond of taking a walk early in the morning . 我 的 爷爷 喜欢 大清早 的 散步 . +I always eat before going to school . 我 总是 在 上学 前 先 吃饭 . +The boat was piloted safely into harbor . 船 被 安全 地 领入 港口 . +This is my business address . 这 是 我 的 公司地址 . +He acted as my guide . 他 擔 任我的 嚮 導 . +I expect her back by six o 'clock . 我 希望 她 六點 前 回來 . +I found the boy fast asleep . 我 发觉 男孩儿 酣然 入睡 了 . +It is so hard . 太 难 了 . +Tom is in the house . 湯姆 在家 裡 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +Do it when you have time . 你 有 时间 再 做 吧 . +" Is he going to swim tomorrow ? " " Yes , he is . " " 他 明天 會去 游泳 嗎 ? " " 是 的 , 他 會 . " +The cargo ship arrived four hours early . 货船 早 到 了 四 小时 . +I have been here for many years . 我 在 這裡 已經 很多年 了 . +No security system is foolproof . 沒有 防傻 的 安全 系統 . +The rain prevented me from going . 雨 大 得 让 我 不能 走 . +Did anyone call me while I was out ? 我 出去 的 时候 有人 打 我 电话 吗 ? +She gave us a present . 她 給 了 我們 一個 禮物 . +I think we should reduce the price . 我 觉得 我们 得 调低 价格 . +We are looking forward to seeing you and your family . 我们 很 期待 见到 您 和 您 的 家人 . +Tom left a note for Mary on her desk . 湯姆 給 瑪麗 在 她 桌上 留 了 便條 . +I got something nice for you . 我 给你个 好 东西 . +You may as well come with me . 你 不如 跟 我 一起 來 . +None of my friends drink coffee . 我 的 朋友 都 不 喝咖啡 . +I got scolded severely by that teacher . 我 被 那位 老師 嚴厲 斥責 了 . +The number of people who go abroad has been increasing . 出国 的 人数 一直 在 增加 . +Watch your step . 小心 脚下 . +Money talks . 金钱万能 . +He poured cold water over himself . 他 往 他 自己 身上 潑 了 一盆 冷水 . +I do not like her face . 我 不 喜歡 她 的 臉 . +You used to smoke , did not you ? 你 以前 吸煙 , 不是 嗎 ? +We will ask Tom and see what he thinks . 我們 要 問 問 湯姆 , 看看 他 怎麼 想 . +He was an honest man . 他 以前 是 个 诚实 的 人 . +That smells bad . 那 不好 聞 . +I do not want to wait . 我 不想 等 . +How many kids do you have ? 你 有 幾個 孩子 ? +The meeting lasted until 5 . 會議 一直 持續 到 5 點 鐘 . +He is doing very well considering he lacks experience . 考虑 到 他 缺乏经验 , 他 做 得 [ 已经 ] 非常 好 了 . +Have you seen all these movies ? 你 把 這些 電影 全 看 了 嗎 ? +Who told you that ? 是 谁 给 你 说 那个 的 呢 ? +I feel like a rest . 我 想 休息 一下 . +I made a bet that she would win the game . 我 賭 她 贏 這 比賽 . +We can see Mt . Fuji clearly today . 今天 我們 可以 清楚 地 看到 富士山 . +Can we do it ? 我们 能 做到 吗 ? +This is the house I lived in when I was young . 这 是 我 年轻 时候 住 的 房子 . +He really likes baseball . 他 非常 喜欢 棒球 . +I did not meet anyone there . 我 在 那裡 沒 遇見 任何人 . +He is always forgetting things . 他 總是 忘記 事情 . +Everybody knows his name . 每個 人 都 知道 他 的 名字 . +We understand . 我们 明白 . +The bus will take you to the center of the city . 巴士 会 把 你们 带到 市中心 . +I would like to go home now . 我 現在 想 回家 了 . +Everyone but Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I will finish my homework by nine . 我 會 在 九點 前 完成 我 的 作業 . +Tom , you have got to get up . 湯姆 , 你 必須 起床 了 . +Do you have a cough ? 你 咳嗽 嗎 ? +Tom never should have tried doing that by himself . 汤姆 从来不 应该 尝试 自己 一个 人 做 那些 . +Have a pleasant journey . 旅途愉快 ! +I think that you ought to apologize to her . 我 認為 你 應該 跟 她 道歉 . +He lives across the street from us . 他 住 在 我們 街 對 面 . +You 'd better not go . 你 最好 不要 去 . +I took it for granted that she would come to our wedding . 我 理所当然 地 认为 她 会 参加 我们 的 结婚典礼 . +She is not as young as she looks . 她 没 她 看上去 那么 年轻 . +Are you over 18 ? 你 有 18 歲 了 嗎 ? +Tom took off his wedding ring . 汤姆 拿掉 了 他 的 婚戒 . +Are those two going out ? 那 兩個 要 出去 嗎 ? +I trust him . 我 信赖 他 . +Tom , I want you to handle this one . 汤姆 , 我 想要 你 来 操作 这 一个 . +The leaves of the trees in the garden have turned completely red . 花园里 树上 的 叶子 已经 完全 变红 了 . +Do you know much about art ? 你 對 藝術 知道 得 多 嗎 ? +I am not afraid of dying . 我 不怕死 . +There is a cat in the kitchen . 廚房 裡有一 隻 貓 . +I go to bed at eleven . 我 十一点 上床 . +Tom asked Mary to stop the car . 湯姆 讓 瑪麗 停住 車 . +I can not find my ticket . 我 找 不到 我 的 票 . +Mother was busy getting ready for dinner . 母親 正忙 著 準備 晚餐 . +Have a good Christmas . 祝您 有 一個 愉快 的 聖誕節 . +I have won first prize ! 我 贏 得 了 第一名 ! +What is new ? 有 什么 新鲜事 吗 ? +Many TV programs have a bad influence on children . 許多 電視 節目 對 兒童 有 不良 的 影響 . +Can you name one of their songs ? 你 能够 说出 一首 他们 的 歌 的 名字 吗 ? +If you are happy , I am happy . 如果 你 高興 , 我 就 高興 . +I think we should lower the price . 我 觉得 我们 得 调低 价格 . +He would not agree to our proposal . 他 不 同意 我們 的 建議 . +English is by far the most widely @-@ spoken language in the world . 英語 是 目前 在世界上 使用 最 廣泛 的 語言 . +Tom says Mary was not tired . 湯姆 說 瑪麗 不累 . +I have a bad headache today . 今天 我 头痛 欲裂 . +I am sure Tom can not swim . 我 确定 汤姆 不会 游泳 . +He believes that he can prove it . 他 相信 他 能 证明 它 . +Do you have a cell phone ? 你 有 手機 嗎 ? +Welcome to our home . 欢迎 来到 我们 家 . +He acted like a lunatic . 他 表现 的 像 个 疯子 . +I saw Tom . 我 看見 湯姆 了 . +She seemed to have been ill . 好像 她 病 了 . +I have to go to the toilet . 我 要 去 上 廁所 . +I will reconsider the matter . 我 會 重新 考慮 此事 . +I can not remember any of it . 我 对 这些 都 没有 印象 . +I will fight to the death . 我会 战斗 至死 . +Do you have younger brothers ? 你 有 弟弟 嗎 ? +He talks as if he knows everything . 他 說 起 話 來 好像 他 什麼 都 知道 . +I 'd like an aisle seat , please . 請 給 我 靠 走道 的 位子 . +Tom told me not to open the envelope until my birthday . 汤姆 告诉 我 , 到 我 生日 那天 我 才能 打开 信封 . +We have many rainy days in June . 六月 下 了 很多 天 的 雨 . +I trust that I can see you again . 我 相信 我 能 再 見 到 你 . +Do you miss me ? 你 想 我 了 ? +I do not like living in the country . 我 不 喜歡 住 在 鄉下 . +She was busy with housework . 她 忙 於 家務 . +I grew up in Boston . 我 在 波士 頓 成長 . +Wherever she goes , she is well liked . 無論 她 去 哪裡 , 她 都 是 惹 人 喜愛 的 . +Do you believe there are ghosts ? 你 相信 鬼 存在 吗 ? +I got a shave and a haircut . 我 刮 了 鬍 子 並 理 了 髮 . +I hung the calendar on the wall . 我 把 日 曆 掛 在 牆 上 . +I wish he had attended the meeting . 要是 他 有 參加 這場 會議 就 好 了 . +Can I rest a bit ? 我 能 休息 一会儿 吗 ? +She ordered the book from London . 她 从 伦敦 订 了 这 本书 . +I keep the master copy under lock and key . 我 妥善 保管 原版 拷貝 . +Tom has a twin brother . Tom 有個 雙 胞胎 兄弟 . +I am the fastest runner . 我 是 最快 的 跑者 . +I belong to the swimming club . 我 是 游泳 社 的 成員 . +My problem is I do not trust you . 我 的 问题 是 我 不 信任 你 . +Tom needs to speak to Mary . 湯姆 需要 跟 瑪麗 說 話 . +How long did it take you to finish reading that book ? 你 看 完 這 本書 要 多少 時間 ? +This is a pencil . 這 是 一支 鉛筆 . +You are a real friend . 你 是 個 真正 的 朋友 . +Is this your daughter ? 這 是 你 的 女兒 嗎 ? +The man reading a paper over there is my uncle . 在 那儿 看 报纸 的 男人 是 我 叔叔 . +Tom and Mary stayed at a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +Birds sing . 鳥兒 歌唱 . +Their meeting was inevitable . 他們 的 相遇 是 必然 的 . +My mother gets up earlier than anyone else . 妈妈 起得 比 谁 都 早 . +There is a man at the door who wants to see you . 门口 有个 男人 想见 你 . +Tom did not show me anything . 湯姆 甚麼 也 沒 給 我 看 . +We are out of stock now . 我们 现在 缺乏 库存 . +Everyone knows of his affection for that dog . 每个 人 都 知道 他 对 那 狗 的 感情 . +Tom is drinking juice . Tom 正在 喝 果汁 . +I have put on two kilograms this summer . 这个 夏天 我 胖 了 两 公斤 . +He does not like tennis . 他 不 喜欢 网球 . +Tom is extremely romantic . 汤姆 非常 的 浪漫 . +I am reading a book now . 我 現在 正在 讀 一本 書 . +Everything is ready . 一切 就绪 . +Tom does not want to come . 汤姆 不想 来 . +I expect you to be punctual . 我 期待 你 能 準 時 . +I am fed up with English . 我 受够 英文 了 . +English is not easy , but it is interesting . 英语 不 容易 , 但 很 有意思 . +The police broke up the fight . 警察 驅散 了 這場 鬥 毆 . +I did not go to school yesterday . 昨天 你 没有 去 学校 . +There is no film in this camera . 這個 相機 裡 沒有 胶卷 . +Where is the vodka ? 伏特加 在 哪里 ? +Something must be wrong with the machinery . 這個 機器 一定 有什麼 地方 不 對 勁 . +Let is play baseball ! 讓 我們 來 打 棒球 吧 ! +Is anybody there ? 那边 有人 吗 ? +I had difficulty in solving this problem . 我 在 解決 這個 問題 上 有 困難 . +I do not know why you are here . 我 不 知道 你 為 甚麼 在 這裡 . +They have been married for ten years . 他們 已經 結婚 十年 了 . +Turn off the gas . 把 煤气 关 了 ! +I think that would be fun . 我 認為 那 會 很 有意思 . +Do you know what PKO stands for ? 你 知道 PKO 是 什么 意思 吗 ? +You can have this watch for nothing . 你 可以 免費 擁有 這 支 手 錶 . +I was embarrassed by what she said . 她 說 的 話 讓 我 覺 得 很 尷尬 . +Can I borrow your digital camera tonight ? 我 今晚 能 借 你 的 数码相机 吗 ? +Smoking is not permitted on the train . 不 允許 在 火車 上 吸煙 . +I like eggplant . 我 喜歡 茄子 . +Lonely people tend to be afraid of meeting others , which ensures they will always be lonely . 孤獨 的 人會 孤獨 , 是 因為 他 畏懼 他人 . +Can I carry this on the plane ? 我 能 把 这个 东西 带到 飞机 上 吗 ? +I took the children to school . 我 帶 孩子 們 去 上 學 . +He wants affection . 他 要 愛 . +I heard Tom was captured . 我 听说 汤姆 被捕 了 . +That was the best day of my life . 那 是 我 生命 中 最美 的 一天 . +My mother is reading a magazine . 我 媽媽 正在 讀 一本 雜 誌 . +Tom probably knows someone who can teach us French . 湯姆 應該 知道 有 誰 可以 教 我們 法文 . +She is very thoughtful and patient . 她 非常 周到 和 耐心 . +Follow that car . 跟上 那辆车 . +I had a nightmare . 我 做 噩梦 了 . +This is just for you . 這 是 只 給 你 的 . +I am not stupid . 我 不是 笨蛋 . +He is lazy . 他 很 懒 . +Are you picking me up at 7 tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +My sister is older than my brother . 我 姐姐 比 我 哥哥 大 . +She asked me for help . 她 向 我 求助 . +What is your hobby ? 你 的 爱好 是 什么 ? +He lost everything he owned . 他 失去 了 他 擁有 的 一切 . +I am so stupid . 我 真蠢 . +She has three brothers . 她 有 三个 兄弟 . +Some people felt that Tom is behavior was inappropriate . 一部分 人 感觉 Tom 的 行为 举止 不 太 合适 . +It makes no difference to me whether he comes or not . 他 来 不来 对 我 来说 没 区别 . +Tom is not dumb . 汤姆 不 傻 . +You should have done it earlier . It can not be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +What happened in the park ? 公園 裡 發生 了 甚麼 ? +That bicycle is too small for you . 那輛 腳 踏 車 對 你 來說 太小 了 . +Are your eyes open ? 你 睜 著 眼 嗎 ? +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Maybe next time . 也许 下 一次 吧 . +Imagination affects every part of our lives . 想像力 影响 着 我们 生活 的 各个方面 . +The area was quiet . 這 地區 很 安靜 . +Tom has lost his keys . 湯姆 遺失 了 他 的 鑰匙 . +A rabbit has long ears and a short tail . 兔子 有 长耳朵 和 短 尾巴 . +Tom knew what Mary had done . 湯姆 知道 瑪麗 做 了 甚麼 . +Tom says he is very rich . 湯姆 說 他 很 有 錢 . +May I ask how old you are ? 请问 您 老人家 高寿 ? +Why do not you go to sleep ? 你 怎么 不 睡觉 呢 ? +I am listening to music . 我 正在 听 音乐 . +She has been to Paris . 她 去过 巴黎 . +I am telling you the truth . 我 在 告訴 你 真相 . +The plane flew over the mountain . 這 架 飛機 飛越 了 這 座 山 . +You are always criticizing me ! 你 总是 批评 我 ! +I am making dinner . 我 准备 晚餐 . +Close your mouth . 闭上 你 的 嘴 . +This is my first time to visit Australia . 这 是 我 第一次 来 澳大利亚 +The students were for the most part from the West Coast . 大部分 的 學生 來 自 西海岸 . +They work really hard . 他们 工作 的 很 辛苦 . +You have not even asked me what I think . 你 甚沒 問 過 我 怎麼 想 . +You are a mean old man . 你 这个 吝啬 的 老头 . +He makes a living as a salesman . 他 當 推銷員 為 生 . +How many times a day do you look at yourself in the mirror ? 你 一天 照 几次 镜子 ? +You will get used to living here in no time . 你 很快 就 会 习惯 住 在 这里 . +I agree to your proposal . 我 同意 你 的 建議 . +How much is the tour per person ? 一個 人 的 旅費 多少 錢 ? +I do not drink coffee at all . 我 一点 咖啡 也 不 喝 . +Did he go to see Mary ? 他 去 看 瑪麗 了 嗎 ? +He grew up in a little village . 他 在 一個 小村 莊裡 長大 . +I will come back . 我会 回来 的 . +What a bizarre story ! 多么 荒唐 的 故事 ! +He swims better than I do . 他 游泳 游得 比 我 好 . +Why are you so worried ? 你 這麼 擔心 做 什麼 ? +I stayed with my uncle last week . 我 上週 跟 我 叔叔 住在一起 . +The train should be on time . 火车 应当 准点 到 . +We spent the entire day on the beach . 我們 一整天 在 沙灘 上 . +To live without air is impossible . 沒 有空 氣 生活 是 不 可能 的 . +It worried me that she looked pale . 她 虚弱 的 样子 让 我 捏了一把汗 . +What do you want it for ? 你 要 它 干什么 ? +Did you watch TV tonight ? 你 今晚 看電視 了 嗎 ? +We enjoy reading books . 我们 喜欢 阅读 书籍 . +Tom did not want to do that . 湯姆 不想 去 做 那件事 . +It is getting cloudy . It may rain soon . 雲 愈來愈 多 , 可能 快 下雨 了 . +The boy enjoyed painting a picture . 這個 男孩 喜歡 繪畫 . +I am thinking of going abroad . 我 在 考慮 出國 . +I have been in Japan for two months . 我 在 日本 已經 兩個 月 了 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Is this book yours ? 這 是 你 的 書 嗎 ? +I have to cook dinner today . 我 今天 要 准备 晚饭 . +I do not remember seeing the letter , but perhaps I read it . 我 不 記得 我 看 過 這 封信 , 但 或許 我 讀 過 它 . +Any student can answer that question . 任何 學生 都 可以 回答 這個 問題 . +Do you need help ? 你 需要 帮助 吗 ? +Would you mind closing the window ? 你 介意 我 關窗 戶 嗎 ? +May I try it on ? 我 能 试一下 吗 ? +What goes up must come down . 会 起 必 会 落 . +Let me make you some tea . 讓 我 給 你 沏茶 . +He was willing to help others . 他 願意 幫助 別人 . +Prices have been climbing steadily . 價格 一直 在 穩定 地 攀升 . +Why can not we go and see Tom ? 為 甚麼 我們 不能 去 看 湯姆 ? +I have always fed my dogs in the early evening . 每个 傍晚 我 都 会 喂 我 的 狗狗 们 . +How did your journey begin ? 你 的 旅行 是 怎么 开始 的 ? +I like potatoes . 我 喜歡 土豆 . +Did you bring them ? 你 把 它们 带来 了 么 ? +Tom studied French . 汤姆 学习 了 法语 . +Mom , can I go swimming ? 妈妈 , 我 能 去 游泳 吗 ? +I have a thorn in my finger . 我 的 手指 頭 有 一根 刺 . +I watched TV this morning . 我 今天 早上 看 了 电视 . +From now on , try harder . 從 現在 起 , 更加 努力 . +Is there anything you can not do ? 有 你 不能 做 的 事 吗 ? +It is difficult to give up smoking . 戒烟 难 . +Well , let is get going ! 好 吧 , 讓 我們 出發 吧 ! +I often slept on that bench when I was homeless . 当 我 无家可归 的 时候 , 我 常 在 那 张 长椅 上 睡觉 . +They only sell women is shoes here . 这里 只 卖 女鞋 . +Grammar is a very complex thing . 语法 是 很 复杂 的 . +Write it down before you forget it . 在 你 忘 記 之前 把 它 寫 下來 . +Wo not you come over to my place ? 你 不 會 來 我家 嗎 ? +We have almost finished our work . 我們 幾乎 完成 了 我們 的 工作 . +My apartment is near here . 我 的 公寓 在 這 附近 . +I arrived in London . 我 到 達 倫敦 了 . +The letter was written by Tom . 這 信 是 湯姆 寫 的 . +Tom is working on a new novel . 汤姆 正 致力于 一部 新 小说 . +How much do you love me ? 你 有 多 爱 我 ? +I almost laughed out loud . 我 差點 大聲 笑 了 出來 . +Mary arrived at the hospital . 瑪麗 到 了 醫院 . +I wrote a letter asking him to return a bit earlier . 我 写 了 封信 , 叫 他 早点 回 . +Why is he here ? 为什么 他 在 这儿 ? +Please show your ticket . 请 出示 您 的 票子 . +You guys looked mad . 你们 疯 了 吧 +What do you want for Christmas ? 想要 什么样 的 圣诞节 礼物 呢 ? +My father made me a delicious lunch . 我 父親 為 我 做 了 一頓 美味 的 午餐 . +Do you mind if I turn off the light ? 您 介 不介意 我 把 灯 关了 ? +I want to retire soon . 我 想 早點 退休 . +She kept various kinds of pets . 她 养 各种 不同 的 宠物 . +I saw a dog swim across the river . 我 見 過 狗 游泳 渡河 . +Please remind me to mail the report tomorrow . 请 提醒 我 明天 把 报告 寄 了 . +Do you know the boy in the picture ? 你 认识 画 里面 的 男孩 吗 ? +Who was playing ? 誰 在 玩 ? +What on earth are you talking about ? 你 到底 在 談 什麼 ? +The price of rice has fallen . 米价 下跌 了 . +I knew I was going to win . 我 知道 我会 赢 . +I am only thinking of you . 我 只 想到 你 . +Carelessness can lead to a serious accident . 粗心大意 可能 導致 嚴重 的 事故 . +Hemingway enjoyed big game hunting in Africa . 海明威 喜歡 在 非洲 的 大狩 獵 . +I would like to talk about your situation . 我 想 談 談 你 的 情況 . +Foreigners are interesting , are not they ? 外国人 真 有意思 , 不是 吗 ? +See you again next Monday . 下週 一再 見 . +" What should I do ? " I said to myself . “ 我 该 做 什么 呢 ? ” 我 自言自语 道 . +He wrote to his parents . 他 寫信 給 他 的 父母 . +Give this book to whoever wants it . 把 這 本書 給 想要 的 人 . +Please close the door quietly . 請 安靜 地 關門 . +I have not finished my homework yet . 我 还 没 做完作业 . +I go to the library two or three times a week . 我 一週 去 圖書館 兩 、 三次 . +We had a chat for a while . 我們 聊 了 一會兒 . +Do it as soon as possible . 尽早 做 . +My father is shaving in the bathroom . 我 爸爸 正在 浴室 裡 刮 鬍 子 . +He is just my age . 他 和 我 同岁 . +I really do not sing . 我 真的 不会 唱 . +Our eyes take time to adjust to the darkness . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +Tom laughed . 汤姆 笑 了 . +When was she born ? 她 是 什么 时候 出生 的 ? +He likes math , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +Do you hate me ? 你 讨厌 我 吗 ? +I should stop procrastinating . 我 做事 该 果断 . +I wish I were a good singer . 但愿 我 是 一个 好 歌手 . +He does not like us . 他 不 喜欢 我们 . +The most logical place to keep your shoes is near the door . 最 合 逻輯 的 放 鞋 處 是 門口 附近 . +What are you looking at ? 你 在 看 什么 ? +This medicine does not have side effects . 这 药 没有 副作用 . +I am seeing her this evening . 我 打算 今晚 和 她 约会 . +I really agree with you . 我 非常 同意 你 . +He found the box under the table . 他 在 桌子 底下 發現 了 這個 盒子 . +I want to ask you some questions about Tom . 我 想 问 你 一些 关于 汤姆 的 问题 . +I came to warn you not to do that . 我 来 警告 你 别 那样 做 . +My parents objected to my studying abroad . 我 父母 反對 我 出 國留學 . +Why do not you give it another try ? 你 為 什麼 不再 試 一次 ? +I want to travel around the world . 我 要 環遊 世界 . +She insisted that I should see the doctor . 她 坚持 让 我 去 看 医生 . +I will call you up tomorrow . 明天 我 給 你 打 電話 . +I take my health seriously . 我 重視 自身 的 健康 . +She wants to attend the party . 她 想 參加 這個 派 對 . +Tom bought a camera at a store not too far from here . Tom 在 离 这里 不远 的 一家 商店 里 买 了 一台 相机 . +You have got to be joking ! 你 一定 是 开玩笑 ! +I did not notice the light turn red . 我 沒有 注意 到 燈 變 紅色 了 . +I go by the nickname " Itch . " 我 用 我 的 暱 稱 " Itch " . +I did not expect to see you at a place like this . 我 都 没 想 过 会 在 这里 碰见 你 . +I work every day except for Sundays . 除了 星期天 我 每 一天 都 工作 . +How much is your monthly gas bill ? 你 每個 月 的 瓦斯 費 多少 錢 ? +I think I know who stole your watch . 我 認為 我 知道 是 誰 偷 了 你 的 手 錶 . +She is not as old as Mary . 她 沒 有 瑪麗 年紀 大 . +I had a good sleep last night . 我 昨晚 睡 得 很 好 . +I majored in philosophy at my university . 我 在 大學 主修 哲學 . +What are you going to do today ? 你 今天 要 做 什麼 ? +Tom is a violin teacher . 湯姆 是 小提琴 教師 . +We had a mild winter last year . 去年 冬天 很 暖和 . +I have lost one of my folders . 我 丢 了 我 的 一个 文件夹 . +Give me that book . 把 书 给 我 . +I should not have sold my house . 我 不该 把 我 的 房子 卖 了 的 . +I am very hungry now . 我 現在 非常 餓 . +I fell asleep while reading a book . 我 看书 的 时候 睡着 了 . +You do not need to be there . 你 不必 去 那裡 . +Here is your bag . 你 的 袋子 在 這裡 . +Who are those guys ? 那些 家伙 是 谁 ? +What are you reading ? 你 在看 什麼 ? +She went for a walk . 她 去 散步 了 . +I feel like going to the movies . 我 想 去 看 電影 . +My father likes traveling by air . 我 父親 喜歡 搭 飛機 旅行 . +Let me help you with your luggage . 讓 我 幫 您提 行李 . +See you tomorrow at school . 明天 在 學校 見 . +It will not make any difference . 这 没有 任何 区别 . +Tom can do so much better than me . 湯姆 可以 比 我 做得好 很多 . +Are you able to play organ ? 你 能 演奏 管风琴 吗 ? +Stop bothering me . 不要 烦 我 . +Tom waved . 汤姆 挥手 了 . +What are you eating ? 在 吃 什么 呢 ? +There is nothing more painful than losing one is child . 沒有 比 失去 孩子 更 讓 人 悲傷 的 事 . +Something weird is going on . 正 有 什么 奇怪 的 事情 发生 着 . +Do not let her go out after dark . 天黑 後 不要 讓 她 出門 . +I do not want Tom seeing this . 我 不想 讓 湯姆 看見 這個 . +He might change his mind . 他 可能 會 改變 心意 . +It is not polite to point at others . 用 手指 別人 是 不 禮貌 的 . +Fools rush in where angels fear to tread . 天使 畏懼 處 , 愚人 敢 闖入 . +He was accused of stealing money . 他 被 指控 偷 錢 . +My notebook is pink . 我 的 笔记本 是 粉色 的 . +She helped me to clear snow away . 她 幫 我 清除 積雪 . +My cholesterol is high . 我 的 胆固醇 很 高 . +He was able to solve the problem . 他 能 解決 這個 問題 . +I thought that Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +I 'd bought it the week before . 我 一周 前 已經 買 了 . +I go to church on Sunday . 周日 我 去 做礼拜 . +A couch potato is something that I do not want to be . 我 不想 成為 整天 泡 在 沙發 上 看 電視 的 人 . +He is old enough to understand it . 他 年 紀夠 大 可以 瞭解 它 . +Optimists see opportunities in disasters while pessimists find disasters in every opportunity . 樂 觀者 在 災禍 中 看到 機會 , 悲觀 者 在 機會 中 看到 災禍 . +I attempted to solve the problem . 我 試圖 解決 這個 問題 . +I have not changed . 我 没 改变 . +I think we should not let Tom do that again . 我 認為 我們 不該 讓 湯姆 再 那麼 做 . +What is so fun about taking pictures of trains ? 拍 火车 的 照片 什么 的 , 有 什么 好玩 的 呀 ? +Tom knows Mary was here . 湯姆 知道 瑪麗 在 這裡 . +Wait for me . 等等 我 . +Children like chocolate . 孩子 们 喜欢 巧克力 . +Do not think about it now . 現在 別 想 這事 . +How soon can they be delivered ? 它们 什么 时候 能 被 送到 ? +My vacation went by quickly . 我 的 假期 一下 就 過 完 了 . +Have you already eaten supper ? 你 已经 吃晚饭 了 吗 ? +I guess I have not made myself clear . 我 想 我 沒有 把 話 說 清楚 . +I want another beer . 我 想 再 来 一杯 啤酒 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 運動 . +Keep in mind that you must die . 你 要 想到 你 必须 死 . +I am just about done . 我 差不多 完成 了 . +After the revolution , France became a republic . 革命 之 後 , 法國 成為 了 一個 共和 國 . +He has a cold . 他 着凉 了 . +Tomorrow I have to go shopping . 明天 我 得 购物 . +The table is covered with powder . 桌上 布满 了 粉末 . +Somebody was murdered . 有人 被 謀殺 了 . +I got lost in the forest . 我 在 树林 里 迷路 了 . +He made his way to the minister . 他 設法 當上 了 部長 . +The warnings were ignored . 警告 被忽视 . +Are you talking to me ? 你 在 跟 我 说话 吗 ? +She plays the violin very well . 她 小提琴 演奏 得 非常 好 . +Is anyone absent today ? 今天 有人 缺席 嗎 ? +I would like to meet your older sister . 我 想 認識 你 姐姐 . +Tom can not go out because he has a lot of homework . 汤姆 因为 有 很多 作业 不能 外出 . +We have got to get you some help . 我们 不得不 给 你 一点 帮助 了 +What do you eat for breakfast ? 你 早餐 吃 什麼 ? +Your letter made me happy . 你 的 來 信使 我 快樂 . +We promised to stand by him in case of trouble . 我們 承諾 萬一 他 有 麻煩 的 時候 支持 他 . +Tom wished he had not won . 汤姆 希望 他 没有 赢 . +My camera can shoot high @-@ definition video . 我 的 录像机 可以 拍 高清 视频 . +Money rules the world . 金钱万能 . +This is Tom is car . 這 是 湯姆 的 車 . +She is wearing a hat . 她 戴 著 一頂 帽子 . +I need to take notes . 我 需要 作筆 記 . +You lied to me , did not you ? 你 對 我 說 了 謊 , 沒有 嗎 ? +I made my way through the crowd . 我 穿 過 了 人群 向前走 . +I am amazed at his rapid progress in English . 我 被 他 英语 的 快速 进步 惊呆 了 . +I found the test difficult . 我 觉得 这个 测试 很 难 . +The child has a case of chicken pox . 这 孩子 有 水痘 的 症状 . +I wish you the best of luck . 祝 你好 運 . +It is not too late for you . 对 你 来说 还 不 太晚 . +Those trains run every three minutes . 這些 火車 每 三分 鐘 發車 . +What do you make of his attitude towards us these days ? 你 做 了 什麼 讓 他 這些 日子 用 這種 態度 對待 我們 ? +My grandfather sometimes talks to himself when he is alone . 我 祖父 一个 人 的 时候 , 有时 会 自言自语 . +Long time , no see . I hear that you have changed your job again . 好久不见 . 听说 你 又 换 工作 了 ? +Being late is always better than not showing up at all . 迟到 总 比 不到 好 . +She was appointed chairperson . 她 被 任命 為 主席 . +How much does this watch cost ? 这 只 表 多少 钱 ? +Hey , relax . 嘿 , 放松 点 . +This chair is uncomfortable . 这个 椅子 坐 着 不 舒服 . +Swimming strengthens the legs . 游泳 使 腿部 强健 . +I am cold . 我 冷 . +There are only three women in this class . 這個 班 只有 三個 女生 . +I need to find out when we need to be there . 我 需要 知道 我们 什么 时候 需要 到 那里 . +You are not a coward . 你 不是 个 懦夫 . +I just talked to the person in charge . 我 刚 跟 主管 人 谈 过 . +I am here to help you . 我 來 這裡 幫 你 . +Tell Tom I need to borrow his car . 告訴 湯姆 我 需要 借 他 的 車 . +The longer I stayed in Paris , the more I liked it . 在 巴黎 待 得 越 久 , 我 就 越 喜欢 巴黎 . +I am very happy . 我 很快 樂 . +Do you belong to any clubs ? 您 隶属 哪家 俱乐部 吗 ? +He began to feel afraid . 他 开始 害怕 了 . +I would not buy that for Tom . 我 不 會 給 湯姆 買 那 東西 . +Tom has low blood pressure . 汤姆 有 低血压 . +Would you please open the door ? 請 你 開門 好 嗎 ? +I do not think that it is necessary . 我 想 没 这个 必要 . +These apples are very big . 这些 苹果 很大 . +Have you ever shaved your legs ? 你 剃 过 腿毛 吗 ? +If you need my advice , I 'd be glad to give it to you . 如果 你 需要 我 的 建议 , 我 很 愿意 告诉 你 . +I got up at seven this morning . 我 今天 早上 7 点 起床 . +Tom does not want to talk about it . 汤姆 不想 谈 这件 事 . +People usually do not like what they do not understand . 人们 通常 不 喜欢 他们 不 理解 的 事物 . +I think Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +Rabbits have long ears and short tails . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +It took us half an hour to set up the tent . 搭 帳 篷 花 了 我們 半 小 時 . +The matter is all settled . 這個 問題 都 被 解決 了 . +Please send it to me by fax . 请 把 它 传真 给 我 . +All you have to do is say the word , and I will leave . 你 只要 说句话 , 我 就 走 . +This is Tom is umbrella . 這 是 湯姆 的 雨 傘 . +He made himself heard across the room . 他 讓 對面 的 房間 都 能 聽到 他 的 聲音 . +We got to the station at six . 我們 六點鐘 到 了 車站 . +Are you Tom is mother ? 你 是 湯姆 的 母親 嗎 ? +I will get in touch with you soon . 我 會 很快 跟 你 聯絡 . +Like it or not , we have to attend that meeting . 不管 喜 不 喜歡 , 我們 都 得 參加 那個 會議 . +Here is your book . 這 是 你 的 書 . +Please send me your photo . 請 把 您 的 照片 發給 我 . +Ten teams competed for the prize . 十支 隊伍 競逐 獎項 . +She is more pretty than beautiful . 說 她 美 不如 說 她 可愛 . +Tom sat on a tree trunk . 汤姆 坐在 了 树干 上 . +He became more obstinate as he grew older . 他 年紀 越 大 變 得 越 頑固 . +It rarely snows in this area . 这 片 区域 很少 下雪 . +Do you take pride in your work ? 你 为 你 的 工作 感到 自豪 吗 ? +A man can not escape his past . 人 無法 逃避 過去 . +We have a special connection . 我們 有 特殊 聯 繫 . +That is an interesting idea . 那 是 个 有趣 的 主意 . +I know who lives in this house . 我 知道 谁 住 在 这 房子 里 . +They will not find Tom . 他们 不会 找到 汤姆 . +This is my younger sister . 这 是 我 的 妹妹 . +God helps those who help themselves . 自助 者 天助 . +I do not mind being criticized when I am wrong . 要是 我 说 错话 被 人 议论 , 我 是 不管 的 . +Take your time . There is no rush . 慢慢 來 , 不急 . +I asked for my father is help . 我 請 我 父親 幫忙 . +In a way you are right , but I still have doubts . 在 某种程度 上 你 是 对 的 , 但 我 还是 有 疑问 . +Are you going outside ? 你 去 外面 吗 ? +No problem . 没 问题 . +Since he is old , this task must be difficult for him . 他 老 了 , 所以 这 任务 对 他 来说 一定 很 难 . +Everyone deserves a second chance . 每個 人 都 值得 被 給予 第二次 機會 . +Can I do anything to help ? 我 能 幫 上 忙 嗎 ? +Maybe you are right . 也许 您 有 道理 . +I want to breathe some fresh air . 我 想 呼吸 一下 新鮮 空氣 . +Australia is smaller than South America . 澳洲 比 南美洲 小 . +Tom likes to knit . 湯姆 喜歡 編織 . +I saw it with my own eyes . 我 親 眼看 見 了 . +Call the police . 报警 ! +I wonder if what I wrote was correct . 我 在 想 我 寫 的 對不對 . +The smell of food made me hungry . 食物 的 味道 讓 我 餓 了 . +The apple does not fall far from the tree . 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Maybe you are working too hard . 可能 你 工作 得 太 拼命 ? +You need to register by Monday . 你 需要 在 星期一 前 註 冊 . +You can always count on Tom . 你 可以 永遠 信賴 湯姆 . +She got through her work before five . 她 在 五點鐘 前 做 完 了 她 的 工作 . +How did you enjoy the party ? 你 在 派 對 上 玩 得 開心 嗎 ? +When we started out , our band could only find small clubs in small cities that would hire us . 当 我们 起步 时 , 我们 的 乐队 只能 找 小 城市 里 的 小 俱乐部 雇 我们 . +You will be answering the phones . 你 要 接 電話 . +I do not know how to express my thanks . 我 不 知道 如何 表達 我 的 謝意 . +She was satisfied with the new dress . 那条 新 裙子 让 她 很 满意 . +Do you know why spring rolls are called spring rolls ? 你 知道 春卷 为什么 叫 春卷 吗 ? +He often plays the guitar . 他 常常 彈 吉他 . +She took my hand . 她 握住 我 的 手 . +I am not at all tired . 我 根本 不累 . +My grandfather gets up early . 我 的 祖父 早起 . +Tom is now a software engineer . 湯姆 現在 是 軟體 工程 師 . +I can not put up with the heat any longer . 我 受不了 这 大热天 了 . +Do you know what happened ? 你 知道 发生 了 什么 事情 吗 ? +She taught me how to write a poem . 她 教我如何 写诗 . +The old man breathed his last . 老人 咽下 了 最后 一口气 . +She is going to Sendai this spring . 她 今年 春天 要 去 仙台 . +They made us work all night . 他們 要 我們 整夜 工作 . +She is proud that her son has become a doctor . 她 为 自己 的 儿子 成为 医生 而 自豪 . +What is your problem ? 你 有 什么 问题 ? +She gave us some useful information . 她 給 了 我們 一些 有用 的 訊息 . +My mom does not speak English very well . 我 妈妈 英语 说 得 不太好 . +He could not run very fast . 他 無法 跑 得 非常 快 . +It is difficult to quit smoking . 戒烟 难 . +How are things at school ? 学校 怎么样 ? +A few years ago , our room had little furniture in it . 幾 年前 , 我們 的 房間 裡 沒有 什麼 家具 . +All their efforts were in vain . 他們 的 努力 都 白 費 了 . +Tom turned red . 汤姆 脸红 了 . +Tom is a very good person . 汤姆 是 个 很好 的 人 . +A nurse took my temperature . 一個 護士 量 了 我 的 體溫 . +After a storm comes a calm . 暴風 過 後 是 寧靜 . +India gained independence from Britain in 1947 . 印度 於 1947 年 脫離 英國 獲得 獨立 . +My uncle gave me the watch . 我 叔叔 給 了 我 這 支 錶 . +I got a good night is sleep . 我 睡 了 个 好 觉 . +She was crying as she answered . 她 邊 哭 邊 回答 . +Do not intrude on her privacy . 不要 侵犯 她 的 隐私 . +We know what we are doing . 我們 知道 我們 在 做 什麼 . +He disguised himself as a woman . 他 把 自己 化裝 成 一個 女人 . +May I go out to play ? 我 可以 出去玩 嗎 ? +I worked on the farm all day . 我 整天 在 農場 上 工作 . +We divided the money between us . 我們 平分 這筆 錢 . +How should I know ? 我 怎麼 知道 ? +Please take your seat . 请 坐 . +I have never lived on a farm , but both of my parents grew up on farms . 我 从 没有 住 在 农场 , 但 我 的 父母 都 在 农场 长大 . +She took care of my dog . 她 照顧 了 我 的 狗 . +We are anxious about her safety . 我们 为 她 的 安全 担忧 . +Do not touch these . 不要 碰 這些 . +We ate curry rice last night . 我們 昨晚 吃 了 咖哩 飯 . +Are you a student ? 你 是 學生 嗎 ? +Is there any mail for me today ? 今天 有 給 我 的 郵件 嗎 ? +Tom made a list of places he wants to visit . 汤姆 把 他 想去 的 地方 列成 了 一张 清单 . +How long do you plan on staying in this country ? 你 打算 在 这个 国家 待 多久 ? +I am watering the flowers . 我 在 澆 花 . +On hearing the news , she fainted . 听到 消息 , 她 晕倒 了 . +I was not busy last week . 我 上周 不忙 . +We are both here for the same reason . 我們 來 這裡 是 為了 同一 個 原因 . +Tom gritted his teeth . 汤姆 咬紧牙关 . +This river is dangerous for children to swim in . 孩子 在 这条 河里 游泳 太 危险 了 . +I am 30 years old now . 我 现在 30 岁 了 . +Many workers were laid off at that plant . 那个 工厂 开除 了 很多 工人 . +Tom sat beside Mary . 汤姆 坐在 玛丽 旁边 . +You must get this homework finished by the day after tomorrow . 你 必須 在 後 天 以前 完成 回家 作業 . +Mary set the basket on the table . 瑪麗 把 籃子 放在 桌子 上 了 . +If I had known that you were here , I would have come at once . 如果 我 早 知道 你 在 这儿 的话 , 我 马上 就 来 了 . +He is sleeping like a baby . 他 正 睡着 , 像 个 婴儿 一样 . +I will lend you this dictionary . 我 會 借 給 你 這 本 字典 . +Should I help you ? 我 该 帮 你 吗 ? +" What is going on in the cave ? I am curious . " " I have no idea . " “ 洞 里 发生 了 什么 ? 我 很 好奇 . ” “ 我 一点 也 不 知道 . ” +That car is quite new . 那辆车 十分 新 . +We had a heavy rainfall last night . 昨晚 雨勢 很大 . +I did not think Tom would be scared . 我 没想到 汤姆 会 害怕 . +The world is changing every minute . 世界 每一分 鐘 都 在 改變 . +I am a man . 我 是 个 男人 . +Tom made fun of me . 汤姆 拿 我 开心 . +They were so young . 他們 是 那麼 年輕 . +Tom did not understand what Mary really meant . 汤姆 不 知道 玛丽 真实 的 意思 . +Tom has no time . 汤姆 没有 时间 . +The victim died at a hospital in Boston . 受害者 在 醫院 裡 死去 了 . +He spoke for one hour . 他 讲 了 一 小时 . +She is getting married this fall . 她 今年 秋天 要 結婚 . +He is very kind . 他 非常 親切 . +She refused my offer to help her . 她 拒絕 讓 我 幫助 她 . +Tom says it is quite important . 汤姆 说 它 十分 重要 . +Could I see you a minute , please ? 讓 我 看 你 一會兒 好 嗎 ? +Did you play tennis yesterday ? 你 昨天 打网球 了 吗 ? +Would you like tea or something ? 你 需要 茶 或者 别的 什么 吗 ? +Whose turn is it ? 輪到 誰 了 ? +This room has two closets for clothing . 這 房間 有 兩個 衣櫥 . +He has seven sons . 他 有 七个 儿子 . +Look what I made for you . 看 我 为 你 做 了 什么 . +What are you going to do this weekend ? 你 這個 週末 要 做 什麼 ? +Do you know whether or not it will rain tomorrow ? 您 是否 知道 , 明天 会 不会 下雨 ? +That job paid well . 这份 工作 工资 很 高 . +Tom has no money . Tom 沒有 錢 . +I will wait a day or two . 我 會 等 一兩天 . +He regrets not having worked harder at school . 他 后悔 在校 时 没 用功读书 . +Tom wanted to see Mary . 湯姆 想 見 瑪麗 . +I found a good place to buy fruit a couple of days ago . 前 几天 我 发现 了 一个 买 水果 的 好 地方 . +It is easy to answer the question . 这个 问题 很 容易 回答 . +She gave me this compact disc . 她 給 了 我 這個 光碟 . +I am sorry to trouble you . 我 很 抱歉 給 你 添 麻煩 了 . +He could not get the job . 他 無法 得到 這份 工作 . +I do not know anything about his past . 我 不 知道 任何 有關 他 過去 的 事 . +I did not mean that . 我 沒有 那個 意思 . +You 'd better go back home now . 你 現在 最好 回家 . +Can I try on this jacket ? 我 可以 試穿 這件 外套 嗎 ? +Who will take care of the baby ? 誰 將 照顧 這個 嬰兒 ? +He set fire to the school building . 他 放火 燒 了 校舍 . +Please put the book on the shelf . 請 把 書 放在 架子 上 . +My brother will not be at home tomorrow . 我 的 兄弟 明天 不 在家 . +I lost my notebook today . 今天 我 的 筆記 本 掉 了 . +My father put a fence around the garden . 我 父亲 在 花园 边上 装 了 篱笆 . +That is an exception . 那 是 例外 . +I am never at home on Sundays . 我 周日 从来 都 不 在家 . +That is mine . 那 是 我 的 . +He relies on his wife financially . 他 经济 上 依靠 他 的 太太 . +My aunt brought me some flowers . 我 阿姨 給 我 帶來 了 一些 花 . +More often than not , she had to go in person . 很多 時候 她 要 親自 去 . +Tom had a decision to make . 湯姆 要 做 個 決定 . +I appreciate your cooperation . 我 感謝 您 的 合作 . +These machines are not working now . 这些 机器 目前 不 运转 . +I am very tired right now . 我 現在 很 累 . +Tom said he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +I 'd like you to have a blood test . 我 希望 你 做 血液 檢查 . +You make me happy . 你 讓 我 快樂 . +He can drive a car . 他 會 開車 . +I can not explain it either . 我 也 无法解释 . +My whole family is from Boston . 我 全家 來 自 波士 頓 . +Everyone knows that Bell invented the telephone . 任何人 都 知道 贝尔 发明 了 电话 . +He is afraid of his own shadow . 他 怕 自己 的 影子 . +He is opposed to racial discrimination . 他 反对 种族歧视 . +She is already sleeping . 她 已经 睡下 了 . +Half a loaf is better than none . 聊勝於無 、 有 比 沒有 好 . +Shortly after the accident , the police came . 事故 發生 後 不久 , 警察 來 了 . +I wish I had not bought this . 我 希望 我 沒 買 這 東西 . +I want a good dictionary . 我 想要 本好 词典 . +I made a paper plane . 我 造 了 架 纸飞机 . +Real friendship is more valuable than money . 真正 的 友谊 比 金钱 更 有 价值 . +See you at the party . 在 派 對 上見 . +Put your weapon down . 把 你 的 武器 放下 . +During the Depression in the 1930 is , many wealthy people lost everything in the stock market crash . 在 十九世纪 三十 年代 的 大 萧条 时期 , 许多 富人 在 股市 崩盘 中 失去 了 一切 . +What fruit do you like the best ? 您 最 喜歡 什麼 水果 ? +What is the population of India ? 印度 的 人口 有 多少 ? +She acknowledged that my statement was true . 她 承認 我 的 聲明 是 真實 的 . +The soldier gave water to me . 士兵 給 了 我 水 . +We do what we want to do . 我們 做 我們 想 做 的 . +That should not be hard for you . 那 对 你 来说 应该 不难 . +She gave me access to her records . 她 允許 了 我 對 她 的 訪問 紀錄 . +How rude of you ! 你 真 粗 魯 ! +You must be back by 10 o 'clock . 你 必須 在 10 點 前 回來 . +You certainly play the piano well . 你 一定 鋼琴 彈 得 很 好 . +I am getting off at the next station . 我 會 在 下 一站 下車 . +Do you want this job or not ? 你 想 不 想要 這 工作 ? +The old houses were torn down to make room for a supermarket . 這棟 老房子 被 拆除 了 , 以 騰出 空間 給 超級 市場 . +While reading a book , I fell asleep . 我 看书 的 时候 睡着 了 . +Tom is plastered . 汤姆 醉 了 . +I think that is awful . 我 看 那 糟透了 . +Are you still cold ? 你 还 冷 吗 ? +How much money do you owe Tom ? 你 欠 湯姆 多少 錢 ? +When did you buy it ? 你 甚麼 時候 買 的 ? +Did you find anything interesting ? 你 找到 有趣 的 東西 了 嗎 ? +One language is never enough . 一種 語言 是 永遠 不夠 的 . +You are absolutely right . 你 完全 正確 . +As we went around the corner , the lake came into view . 当 我们 走 到 转角处 , 湖 就 映入 了 眼帘 . +The school will provide tents for us . 学校 会 提供 帐篷 给 我们 . +Cuff him . 把 他 铐 上 . +Are they actually friends ? 他們 真是 朋友 嗎 ? +I can not find my umbrella anywhere . 我 任何 地方 都 找 不到 我 的 傘 . +I vowed that I would never speak to her again . 我 發誓 再也 不 跟 她 說話 了 . +Do you have plans tonight ? 今晚 有 什么 计划 吗 ? +Please lock the door . 請 把 門鎖 上 . +Do not pry into the affairs of others . 不要 探听 别人 的 事 . +Tom is a native speaker of French . 汤姆 是 法语 母语 者 . +It cost me ten thousand yen to have my television set repaired . 把 我 的 電視機 修好 花 了 我 一萬 日元 . +It snowed from Monday to Friday . 雪 从 周 一下 到 周五 . +What is the total amount of money you spent ? 你 一共 花 了 多少 钱 ? +I went swimming in the river . 我 去 了 河裡 游泳 . +What do you call this insect in English ? 这种 昆虫 在 英语 中 叫 什么 ? +We hardly have time to eat breakfast . 我们 几乎 没空 吃 早饭 . +He is giving me a hard time . 他 跟 我 過不去 . +I arrived here yesterday . 我 昨天 到 這裡 的 . +She said she had been happy . 她 說 她 以前 很快 樂 . +I want to have this letter registered . 我 想要 用 掛 號 寄 這 封信 . +Dark clouds are a sign of rain . 乌云 是 下雨 的 征兆 . +I have so many ideas . 我 有 那麼 多 的 主意 . +Do not make fun of people . 不要 取笑 人 . +The school was established in 1650 . 这 所 学校 建于 1650 年 . +He is terrible at math . 他 的 数学 很 不好 . +He lost his way in the woods . 他 在 森林 中 迷了路 . +Come to my house this afternoon . 今天下午 到 我家 来 一趟 . +I barely escaped being hit by the truck . 我 差點 被 卡車 撞 上 . +Do you have any idea when the bank closes ? 你 知道 银行 什么 时候 关门 吗 ? +They have been here for an hour . 他們 已經 在 這裡 一個 小 時 了 . +I will give you this pendant . 我 會 給 你 這個 墜飾 . +Hold on . 坚持 . +She gave birth to a healthy baby . 她 生下 了 一個 健康 的 嬰兒 . +My children are twins . 我 的 孩子 是 雙 胞胎 . +Tom can not remember anything . 汤姆 什么 都 记不住 . +I will go by taxi . 我 坐 出租 車 去 . +Take a book and read it . 拿 本书 读 ! +How do you feel about the issue ? 你 對 這個 問題 有 甚麼 感受 ? +This book was easy . 這 本書 很 容易 . +Tom and Mary even always wear the same color clothes . 汤姆 和玛丽 甚至 经常 穿 同样 颜色 的 衣服 . +She felt like taking a walk . 她 想 去 散步 . +Please remember to mail the letter . 請 記得 把 信 寄出去 . +We need to leave . 我们 必须 走 了 . +There is a hole in your sock . 你 的 袜子 破 了 一个 洞 呀 . +Tom said he loved me . 汤姆 说 他 爱 我 . +Birds lay eggs . 鳥 下蛋 . +They are all innocent children . 他们 都 是 无辜 的 孩子 . +Tom is serving a life sentence . 汤姆 正在 服 无期徒刑 . +How much is this handkerchief ? 请问 这个 手帕 多少 钱 ? +Please show me around . 請 帶 我 到 處 看看 . +Why did not you turn up on Saturday ? 你 為何 週六 沒來 ? +Tom asked Mary who her boyfriend was . 汤姆 问 玛丽 她 的 男朋友 是 谁 . +She gave me a book for Christmas . 她 給 了 我 一本 的 書作 為 聖誕 禮物 . +My birthday falls on Sunday . 我 的 生日 在 星期日 . +That was the most interesting novel that I had ever read . 这 是 我 所 读 过 的 最 有趣 的 小说 . +Do not ask me anything . 什麼 都 別 問 我 . +She walked very carefully . 她 小心翼翼 地 走 . +I have eaten one apple . 我 吃 了 一個 蘋果 . +English is spoken in Australia . 在 澳洲 的 人 說 英語 . +What did you guys go see ? 你们 去 看 啥 了 ? +May I go to the movies tonight ? 我 今晚 可以 去 看 電影 嗎 ? +Tom did not have enough money to pay the rent . 汤姆 没有 足够 的 钱 付 租金 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 多愁善感 是 不好 的 . +The admission is ten dollars a person . 入場費 一個 人 10 美元 . +It is very cold . 非常 冷 . +My favorite sport is baseball . 我 最 喜歡 的 運動 是 棒球 . +Did you go to school yesterday ? 你 昨天 去 上 學 了 嗎 ? +It is difficult to give up smoking . 戒煙 很 難 . +What are your names ? 你們 叫 什麼 名字 ? +He is studying in the library now . 他 現在 在 圖書館 讀書 . +This is the only book I have . 这 是 我 仅 有 的 一 本书 . +They arrived here safely yesterday . 他們 昨天 平安 抵達 這裡 . +The fire alarm sounded . 火警 警报 响 了 . +We went swimming in the river . 我們 去 河裡 游泳 . +Would you care for more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Tom was bullied . 汤姆 被 欺负 了 . +I am staying home . 我 在家 裡 待著 . +Who did you speak with ? 你 和 谁 说话 呢 ? +I still do not know your name . 我 到 現在 還 是 不 知道 你 的 名字 . +" Is he going to swim tomorrow ? " " Yes , he is . " “ 他 明天 去 游泳 吗 ? ” “ 没错 ” +Children do not like to go out in the dark . 孩子 們 不 喜歡 摸黑 外出 . +This work is not necessarily easy . 这项 工作 未必 容易 . +He speaks both English and French . 他 會 講 英語 和法語 . +This zipper does not zip smoothly . 這 拉 鍊 卡卡 的 . +Tsunamis swept through rice fields and flooded the towns . 海嘯席 捲 稻田 , 淹沒 了 城鎮 . +Is there anything that I should not eat ? 有 什么 东西 是 我 不该 吃 的 吗 ? +He is a good lad . 他 是 個 好人 . +What do you say to taking a walk in the park ? 去 公园 散步 你 觉得 怎么样 ? +We will deal with this problem in Chapter 3 . 我们 在 第三章 讨论 这个 问题 . +The dog went away . 這 隻 狗 跑 走 了 . +You ought to have come to see me yesterday . 你 昨天 應該 來看 我 的 . +I doubt if he will come to school today . 我 懷疑 他 今天 是否 會來 上學 . +Listen carefully . 仔细听 着 . +Sorry , but can you show me the way to the next village ? 能 不能 麻烦 你 告诉 我 去 邻村 怎么 走 ? +Let is not discuss it . 我们 不要 讨论 它 . +My father will kill me . 我 爸会 杀 了 我 的 . +You used to be able to see the church from here . 你 以前 可以 從 這裡 看到 教堂 . +The Eiffel Tower is in the same city as the Louvre Museum . 埃菲尔铁塔 和 卢浮宫 在 同 一座 城市 . +I think that it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Get out of bed ! 起床 ! +I am watching TV now . 我 正在 看电视 . +I need to know tomorrow . 我 明天 需要 知道 . +I was tired today so I went to bed early . 我 今天 累 , 所以 我 睡 得 早 . +I heard an unusual sound . 我 聽到 一個 不 尋常 的 聲音 . +An uncle of mine gave me some useful advice . 我 的 一个 叔叔 给 我 了 一些 有用 的 建议 . +This gives me renewed hopes . 这 给 了 我 新 的 希望 . +Have you heard from Tom ? 汤姆 那里 有 联系 过 你 吗 ? +He painted the door over white . 他 把 門 漆成 了 白色 . +How many books do you think you have read so far ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +Come and see me tomorrow . 明天 来 看看 我 . +You are quite forgetful . 你 很 健忘 . +I walked along the river . 我 沿着 河 走 了 段 路 . +If you hurry , you will catch up with him . 如果 你 快 一点 , 还 能 赶上 他 . +Even his servants despised him . 連 他 的 僕人 都 鄙視 他 +When do you want to go ? 你 什麼 時候 要 去 ? +I walked as far as the station . 我們 走到 跟 火車 站 那樣 遠 的 地方 . +He climbed Mt . Fuji . 他 爬 上 了 富士山 . +She laughed at the sight of his hat . 看到 他 的 帽子 , 她 笑 了 . +Did Tom break something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Are you meeting someone here ? 你 在 这里 是 要 见 谁 吧 ? +The surrounding area was very quiet . 周圍 的 地區 非常 安靜 . +I have been on vacation . 我 在 休假 . +I do not take any responsibility at all . 我 完全 不负 任何 责任 . +Tom did not actually see what happened . 湯姆 沒有 真正 看見 發生 了 甚麼 . +Do you deny that you went there ? 你 否認 你 去 了 那裡 嗎 ? +Scotland can be very warm in September . 蘇格蘭 在 9 月 可以 變 的 很 溫暖 . +Tom is not lying . 湯姆 沒有 說謊 . +You are very resourceful . 你 鬼点子 真多 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +The movie received mixed reviews . 影片 得到 的 评价 褒贬不一 . +Bring the water to a boil . 把 水 燒開 . +His office is past the bank on your left . 经过 银行 , 左边 就是 他 的 办公室 了 . +Flowers bloom . 鮮花盛 開 . +You do not have to hide . 你 不用 藏著 . +Tom showed interest in the plan . 湯姆 對 這個 計劃 有 興趣 . +She does not care how she dresses . 她 不在乎 她 的 穿著 . +I am new here . 我 是 新來 的 . +Good luck . 祝你好运 . +Let is begin . 讓 我們 開始 吧 . +It never rains but it pours . 禍 不單 行 . +How do you feel ? 你 感觉 如何 ? +This job pays 10,000 yen a day . 這個 工作 一天 有 10 , 000 日 圓 的 報酬 . +Can I have it ? 可以 给 我 吗 ? +You must go to bed now . 你 現在 必須 上床 睡覺 . +What are you reading ? 你 在 看 什么 ? +He could not remember my address . 他 不 記得 我 的 地址 了 . +Tom visits Mary every time he goes to Boston . 湯姆 每次 去 波士 頓都 去 看 瑪麗 . +The wind is blowing from the north . 风 从 北边 来 . +Tom is a good friend of Mary is . 汤姆 是 玛丽 的 一个 好 朋友 . +I do not want to participate in the ceremony . 我 不想 参加 典礼 . +Tom studies philosophy at college . 汤姆 在 大学 里学 的 是 哲学 . +I have missed so much . 我 错过 了 太 多 . +You are here . 你 在 这里 . +Her father is an excellent pianist . 她 的 父親 是 一位 優秀 的 鋼 琴家 . +Have you eaten dinner ? 你 吃 晚 飯 了 嗎 ? +There is a soccer match tomorrow . 明天 有 一場 足球 比賽 . +You can not buy this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +He ate a box of chocolates . 他 吃 了 一盒 巧克力 . +Tom is leaving Boston tomorrow . 湯姆 明天 離開 波士 頓 . +The policemen arrested the burglar . 警察 逮捕 了竊 賊 . +We must take into account the fact that he is young . 我们 必须 考虑 到 他 很 年轻 . +Tom and Mary can both speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +This is a picture of my family . 這 是 一張 我 全家 的 照片 . +His son wants to be a lawyer . 他 儿子 想 当 律师 . +It was so still that you would have heard a pin drop . 安靜 到 連 針 掉 在 地上 的 聲音 你 都 會 聽 得到 . +I am looking forward to seeing you . 我 期待 著見 到 你 . +He did not answer the phone , so I sent him an email . 他 没有 接电话 , 所以 我 给 他 发 了 封 邮件 . +He does not know much about Japan . 他 不是 很 了解 日本 . +She is a girl , but she is brave . 她 是 個 女孩 , 但 她 勇敢 . +It is by no means certain . 这 根本 不是 确定 的 . +Should we be worried ? 我們 應 該 要 擔心 嗎 ? +Do not you like baseball ? 你 不 喜欢 棒球 吗 ? +This is my friend . 這個 是 我 的 朋友 . +Tom was the only boy in the entire class . 汤姆 是 班里 唯一 的 男生 . +Can you swim ? 你 會 游泳 嗎 ? +Maybe you could draw me a picture . 你 可以 给 我 画 张 画 . +Tom has gone back home to Boston . 湯姆 回波 士頓 的 家 去 了 . +I paid him five dollars . 我 付 了 他 五塊 美元 . +He is the chief of my department . 他 是 我 部門 的 主管 . +He is a friend of my brother is . 他 是 我 哥哥 的 朋友 . +We got a good price for that . 我們 得到 了 一個 很好 的 價格 買 那個 東西 . +I saw him wash the car . 我 看見 他 洗車 . +He was playing the piano and she was singing . 他 彈 鋼琴 , 她 唱歌 . +He sat next to the stream . 他 坐在 河边 . +She fooled him . 她 愚弄 了 他 . +I put some cream in my coffee . 我 在 我 的 咖啡 裡 放 了 一些 奶油 . +I am prepared to accept the consequences . 我 准备 好 了 承担 后果 . +It was love at first sight . 那 是 一见钟情 . +When was the last time you spent time on Facebook ? 你 上 一次 用 Facebook 是 什麼 時候 ? +This book of his is not interesting at all . 他 的 这 本书 一点 意思 也 没有 . +That is too bad . 太 可惜 了 ! +He has to take two science classes . 他 必須 上 兩堂 理化 課 . +That is the man who lives next door . 那 是 住 在 隔壁 的 男人 . +I wish she had come last night . 但 願 她 昨晚 來 就 好 了 . +Tom was the only one who was punished . 湯姆 是 唯一 受罰 的 人 . +Clint Eastwood was elected mayor of Carmel . 克林伊 斯威特 當 選為 卡梅爾市 市長 . +That hotel was very near the lake . 這家 旅館 非常 靠近 湖 . +Sorry to be late . 對 不起 我 來 晚 了 . +We are almost broke . 我們 快 破產 了 . +There is no reason that I should give up my plan . 沒有 理由 让 我 放弃 我 的 计划 . +Tom will now be proud of me . 汤姆 现在 会 以 我 为 傲 . +He has a large farm in Colorado . 他 在 科羅拉多州 有 一個 大 農場 . +It is ten minutes before eleven . 還 有 十分 鐘 就 十一 點 . +It makes me feel sad . 这 让 我 感到 沮丧 . +He has no choice but to resign . 他 沒有 選擇 , 只能 辭職 . +I take full responsibility for the action . 我 會 為 這次 行動 負起 全責 . +Somebody is playing the piano . 有人 正在 彈 鋼琴 . +Please translate the sentence below . 请 把 下面 的 句子 翻译 一下 . +I still have not finished my homework . 我 还 没 完成 作业 . +This tape recorder is not new . 这个 磁带 录音机 不是 新 的 . +He had hoped to succeed , but he did not . 他 本 希望 可以 成功 , 但是 他 没有 . +Has something happened ? 發生 了 什麼 事 嗎 ? +Do not be silly . I can not do it . 别 犯傻 . 我 能 做到 . +Be quiet , or the baby will wake up . 安靜 , 否則 嬰兒 會 醒來 . +He will play golf next Sunday . 他 下 週日 將 打 高爾夫 球 . +I do not feel like eating anything . 我 不想 吃 任何 東西 . +Do you keep in contact with your high school classmates ? 你 还 和 你 的 高中同学 保持联系 吗 ? +Thanks for your reply . 谢谢 你 的 答复 . +I 'd better go home . 我 回家 比較 好 . +I want a new shirt . What do you want ? 我 要 一件 新 衬衫 . 你 想要 什么 ? +This hotel was built last year . 這家 旅館 是 去年 蓋 的 . +I agree with that . 我 同意 . +Tom was hiding something . 湯姆 在 藏 甚麼 . +I could not agree with you more . 我 非常 同意 你 . +He loses his temper quite easily . 他 很 容易 發脾氣 . +Tom is not planning to stay . 湯姆 不 打算 留下 . +Tom seems to know how . 湯姆 看來 知道 那 是 怎樣 . +Does anyone want some more pie ? 有人 想要 更多 的 餡餅 嗎 ? +I can not find my pen . 我 找 不到 我 的 筆 . +Tom did not let me answer Mary is question . 湯姆 沒 有 讓 我 回答 瑪莉 的 問題 . +Can you tell us a bit more about that ? 能 再 告诉 我 一点 吗 ? +May I introduce myself ? 我 可以 自我 介紹 嗎 ? +I will do it tomorrow . 我 明天 再 做 . +Stick another stamp on the envelope . 把 另 一張 郵票 貼 在 信封 上 . +Tom is thirty . 汤姆 今年 三十岁 . +Tom has been sick in bed for three weeks . 汤姆 已经 因 病 卧床 三周 了 . +That bicycle is mine . 那 自行车 是 我 的 . +She studied abroad in order to brush up her English . 她 在 國外 學習 以便 提升 她 的 英語 . +Can you please tell me your name once more ? 请问 你 能 再 告诉 我 一遍 你 的 名字 吗 ? +I usually go to school by bicycle . 我 通常 騎 自行 車 去 上 學 . +Something is wrong with my watch . 我 的 錶 出 了 毛病 . +How important can it be ? 它 能 有 多 重要 ? +We think Tom will be back soon . 我們 認為 湯姆會 很快 回來 . +If I were you , I would not do it . 如果 我 是 你 , 我 就 不 做 那件事 . +I have not seen you around here before . 我 以前 在 这里 没见 过 你 . +I intend to go there . 我 打算 去 那裡 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He has all but finished the work . 他 幾乎 已經 完成 這個 工作 了 . +This coffee is too strong for me . 這個 咖啡 對 我 來說 太 濃 了 . +Does Tom still like jazz ? 湯姆 還 喜歡 爵士 樂 嗎 ? +That man stole my wallet . 那 男人 偷 了 我 的 钱包 . +Tom is in danger . 湯姆 有 危險 . +He loved to laugh and enjoy life . 他 爱 笑 以及 享受 生活 . +I am disappointed that I was not able to go with her . 我 很 失望 我 沒能 和 她 一起 去 . +I remember giving him the key . 我 記得 給 了 他 鑰匙 . +Is this your apple ? 這 是 你們 的 蘋果 嗎 ? +Tom thought he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +Tell me more about Tom . 告诉 我 汤姆 的 情况 . +What are we having for dinner ? 我们 晚饭 吃 什么 ? +This is the end . 這 是 結束 . +Are you free right now ? 你 現在 有空 嗎 ? +What did you hear ? 您 听到 什么 了 ? +Fortune smiled on him . 好运 向 他 露出 了 笑容 . +These pictures are really very beautiful . 这些 照片 真美 . +The entire sales staff has worked around the clock for a week . 全体 销售 人员 通宵达旦 地 工作 了 一周 . +Is that all you have to do ? 这些 都 是 你 不得不 做 的 吗 ? +They are very big . 他們 非常 大 . +The boy has learned to read . 男孩 學會 了 閱讀 . +He saw her and blushed . 他 看到 她 就 臉 紅 了 . +Cancer can be cured easily if it is found in its first phase . 癌症 如果 在 第一阶段 被 发现 的话 是 很 容易 治愈 的 . +You have a way with women . 你 对 女人 有 一套 . +It was before dawn that they got the fire under control . 他们 在 黎明前 控制 住 了 火势 . +He is just gone on leave . 他 剛 請 假 走 了 . +I envy the friendship Tom and Mary have . 我 羨慕 Tom 和 Mary 之間 的 友誼 . +They are talking about music . 他们 在 谈 音乐 . +He went to New York on business . 他 去 紐約 出差 了 . +I hope that you will get well soon . 我 希望 您 快 就 会 好 起来 . +Tom is thrilled . 汤姆 兴奋不已 . +Nice timing . 好时机 . +It was our secret . 它 是 我們 的 秘密 . +Tom is eyes are blue . 汤姆 的 眼睛 是 蓝色 的 . +She got married against her father is will . 她 違背 了 她 父親 的 意願 結 了 婚 . +How well do you know Tom ? 你 了解 汤姆 多少 ? +She insisted that it was my fault . 她 坚持 认为 那 是 我 的 错 . +In my opinion , he is correct . 在我看来 , 他 是 有 道理 的 . +We were attacked from both sides . 我們 被 兩面 夾擊 了 . +What a beautiful flower ! 多 漂亮 的 花 啊 ! +You 'd better not go out today . 你 今天 最好 不要 出門 . +Two thirds of the employees of this company are engineers . 这个 公司 二分 之三 的 雇员 是 工程师 . +She went into her room to change her dress . 她 进 了 她 的 房间 换 裙子 . +Did you get the package I sent you ? 你 收到 我 寄 給 你 的 包裹 了 嗎 ? +Nobody had ever heard of it . 从 没有 人 听说 过 这件 事 . +You can not understand this sentence , can you ? 你 不 懂 这 句句 子 , 不是 吗 ? +Does she speak English ? 她 會 說 英語 嗎 ? +You must be at the station by 5 o 'clock . 五點 以前 你 必須 在 車站 . +Wait here till he comes back . 在 这儿 等到 他 回来 为止 . +Where is the closest pharmacy ? 最近 的 藥房 在 哪裡 ? +This is a small town . 这 是 个 小镇 . +Let is just eat . 我們 吃 吧 . +The Seine flows through Paris . 塞纳河 穿越 了 巴黎 . +A dolphin is a kind of mammal . 海豚 是 一種 哺乳 動物 . +Mary looks like her mother . 瑪麗 長 得 像 她 媽媽 . +Write your name in capitals . 把 你 的 名字 用 大 写写 下来 . +How about Thai food ? 泰国菜 怎么样 ? +How about playing chess tonight ? 今晚 下棋 怎麼樣 ? +He could not understand the sentence . 他 無法 理解 這 句 話 . +My blood pressure is low . 我 的 血压 很 低 . +I will not stay silent . 我 不 會 保持沉默 的 . +Look out ! 当心 ! +I will be flying to Boston . 我 将要 飞 到 波士顿 去 . +Everything seems OK . 一切 看上去 正常 . +He likes to sing in the bathtub . 他 喜歡 在 浴缸 裡 唱歌 . +Just put yourself in my shoes . 你 站 在 我 的 立場 上 考慮 看看 . +How do you make a box ? 你 怎么 做 箱子 ? +The motel can accommodate as many as 400 guests . 汽车旅馆 可以 接待 多达 400 名 客人 . +I would like to speak with Tom alone . 我 想 和 汤姆 单独 谈一谈 . +Learning English is hard work . 學習 英語 很 辛苦 . +My room is very small . 我 的 房間 非常 小 . +This watch is broken . 这个 手表 坏掉 了 . +She said she was happy . 她 说 了 她 很 幸福 . +What does your aunt do ? 你 姑姑 是 做 什麼 的 ? +How about a drink after the game ? 比賽 結束 後 喝一杯 怎麼樣 ? +Did you do this on your own ? 這 是 你 自己 做 的 嗎 ? +Tom does not want to lose Mary . 汤姆 不想 失去 玛丽 . +You are drunk ! 你 喝醉 了 ! +I am bleeding . 我 在 流血 . +Do you want to be rich ? 你 想 致富 嗎 ? +I do not feel like studying English today . 我 今天 不想 学习 英语 . +I have never seen you so happy . 我 从没 见 过 你 这么 高兴 . +I think this is true . 我 想 这 是 真的 . +Tom did better this time than he did last time . 汤姆 这次 做 得 比 上次 好 . +I will have another beer . 我会 再 喝一杯 啤酒 . +I think that Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +What is your mother tongue ? 你 的 母语 是 什么 ? +They never tell a lie . 他们 从不 说谎 . +You may be late for school . 您 上學 可能 會 遲 到 . +I often visit my relatives . 我 常常 访问 我 的 亲戚 . +I played tennis with my brother . 我 和 我 的 兄弟 打 網球 . +Tom was mistaken . 汤姆 错 了 . +My camera is different from yours . 我 的 相機 跟 你 的 不同 . +I need a friend . 我 需要 个 朋友 . +I am sure that he will succeed . 我 相信 他 會 成功 . +As long as you are here , I will stay . 只要 你 在 這兒 , 我 就 會 留下 來 . +Should we have some lunch ? 我們 該 吃 午飯 了 吧 ? +Someone is calling you . 有人 在 叫 你 . +Do you know where I live ? 你 知道 我 住 哪 吗 ? +Something strange is going on . 正 有 什么 奇怪 的 事情 发生 着 . +I know those girls . 我 認識 那些 女孩 . +The lake was frozen . 湖 冻冰 了 . +I did not mean to do that . 我 没 想 那样 做 的 . +How much longer will you stay in Boston ? 你 在 波士顿 再 待 多久 ? +Tom likes chocolate cake a lot . 汤姆 很 喜欢 巧克力 蛋糕 . +I have brown hair . 我 的 头发 是 褐色 的 . +His clothes are out of fashion . 他 的 衣服 過時 了 . +Food should be chewed before being swallowed . 食物 在 吞咽 前要 经过 咀嚼 . +You seemed surprised . 你 看起来 很 吃惊 . +Since I was sick , I did not go to school . 由于 我 生病 了 , 我 便 没去 上学 . +Shut up ! 閉嘴 ! +I did everything by myself . 我 全 靠 自己 . +I know nothing about her . 我 对 她 一无所知 . +We do not have any secrets . 我們 沒有 秘密 . +She tried . 她 试 过 了 . +She is not a full @-@ time employee of this company . 她 不是 這間 公司 正式 的 職員 . +The fish in this restaurant is delicious . 這家 餐廳 的 魚 很 好吃 . +She rushed home with the good news . 她 急忙 帶著 好消息 跑 回家 . +I introduced Mary to my parents . 我 把 玛丽 介绍 给 我 的 父母 了 . +He came to see you yesterday . 他 昨天 來看 你 . +Where do the airport buses leave from ? 机场 大巴 从 哪里 出发 ? +I felt comfortable . 我 感觉 很 舒服 . +I am asking you what you think . 我 问 你 你 在 想 什么 . +Pass me the salt , please . 请 给 我 盐 . +There is something strange happening . 正 有 什么 奇怪 的 事情 发生 着 . +I want you to stay here until I get back . 我 想 你 待 在 这里 直到 我 回来 . +Tom put his keys in his pocket . 湯姆 把 他的鈅匙 放在 他 的 口袋 裡 . +I have hiccups . 我 打嗝 了 . +Why do not you come visit us ? 为什么 你 不 来看 我们 ? +We got up after midnight . 我们 在 午夜 之后 起床 . +This is my property . 這 是 我 的 財產 . +Lansing is the state capital of Michigan . 蘭辛 是 密西根州 的 首府 . +He behaves as if he were insane . 他 表现 得 像 疯 了 一样 . +I met him at the station . 我 在 車站 遇見 他 . +It is a waste of time and money . 这 是 在 浪费时间 和 金钱 . +Kyoto and Boston are sister cities . 京都 和 波士顿 是 姐妹 城市 . +Who do you suggest we talk to ? 你 建議 我們 跟 誰 講 話 ? +Please let me take your picture . 請 讓 我 為 你 拍照 . +Thanks for the updates . 谢谢 提供 新 消息 . +I had my bicycle stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Do you live with your parents ? 你 和 你 的 父母 同住 嗎 ? +She usually gets up early . 她 通常 很早 起床 . +The path zigzagged up the steep slope . 蜿蜒 的 小路 爬上 了 陡坡 . +Mary closed the door quietly . 瑪麗 悄悄地 關上 了 門 . +Was Tom surprised ? 汤姆 吃惊 吗 ? +Close the door on your way out . 出去 的 时候 把门 关上 . +The rope broke under the strain . 繩子 被 拉斷 了 . +Is it going to rain tomorrow ? 明天 会 下雨 吗 ? +I support you whole @-@ heartedly . 我 全心全意 地 支持 你 . +Tom also has one . 汤姆 也 有 一个 . +He had his car stolen last night . 昨晚 他 的 車 被 偷 了 . +This is a post office and that is a bank . 这 是 邮局 , 那 是 银行 . +Tom is friendly to me . 湯姆 對 我 友好 . +Tom does not eat pork . 湯姆 不吃 猪肉 . +Watch my camera for me . 幫 我 看著 我 的 相機 . +Monopoly is a popular game for families to play . 大富翁 是 一個 家庭 玩 的 熱門 遊戲 . +I helped my father with the work . 我 幫 我 父親 做 這個 工作 . +They speak English in New Zealand . 他們 在 紐西蘭 講 英語 . +It is still fresh in my memory . 我 仍然 記憶 猶新 . +This is a great day . 真是 美好 的 一天 . +Tom is coach likes him . 汤姆 的 教练 喜欢 他 . +It is worth the wait . 它 是 值得 等待 的 . +I am not sure Tom would help . 我 不 確定 湯姆 能 不能 幫忙 . +We are not scared of anybody . 我们 谁 都 不怕 . +What time does the movie start ? 電影 什麼 時候 開始 ? +It does not really matter . 那 不 真的 重要 . +I got a phone call from him just as I was about to go to bed . 我 正要 上床 的 時候 接到 了 他 打來 的 電話 . +Keep your eyes wide open before marriage , half shut afterwards . 婚前 張開眼 , 婚 後 半閉眼 . +Let is get our photograph taken . 讓 我們 來 拍照 吧 . +They told me that I would feel a little better if I took this medicine . 他們 告訴 我 吃 完 這個 藥 我 就 會 覺得 舒服 一點 . +We have run short of money . 我们 缺钱 了 . +My grandfather lived to be 90 years old . 我 的 祖父 活 到 九十 歲 . +It stopped snowing an hour ago . 一個 小 時 前 雪停了 . +He leaves for school at seven . 他 七點鐘 去 學校 . +That is the same story as I heard when I was a child . 那 跟 當 我 是 個 孩子 時所 聽到 的 是 同樣 的 故事 . +I would like to talk to Tom alone . 我 想 和 汤姆 单独 谈一谈 . +In my room , there are no clocks . 我 的 房间 里 没有 时钟 . +We went all out to get the job done . 我们 全力以赴 来 完成 工作 . +What is the purpose of your visit ? 您 此行 的 目的 是 什麼 ? +Deal us the cards . 發牌 給 我們 . +He wants to go to Africa . 他 想要 去 非洲 . +Do you have one ? 你 有 嗎 ? +I could not bear to look at her . 我 无法忍受 看着 她 . +I did not want to listen to Tom singing . 我 不想 聽 湯姆 唱歌 . +There is nobody in the building now . 現 在建 築 裡 沒 人 . +I promise that I will come . 我 保证 我会 来 . +He is a teacher . 他 是 教师 . +Please write to me about conditions at your school . 请 写信 告诉 我 你们 学校 的 情况 . +What kind of sandwich do you want ? 你 要 什麼樣 的 三明治 ? +She got first prize in the eating contest . 她 在 吃 东西 比赛 里 得 了 一等奖 . +We had a kid just last year . 就 在 去年 我們 有 了 一個 孩子 . +I am doubling my prices . 我 正在 把 价格 涨 一倍 . +My father has been engaged in foreign trade for many years . 我 父亲 经营 外贸 多年 . +Tom was like a member of our family . 湯姆 像是 我們 家庭 的 一員 . +The friend who I thought would pass the exam failed it . 那个 我 认为 会 通过 考试 的 朋友 失败 了 . +The sun gives us light and heat . 太陽 提供 我們 光 和 熱 . +Not everything can be bought with money . 不是 所有 的 東西 都 可以 用 金錢 買到 . +Tom did not say a single word . 湯姆 甚麼 也 没 說 . +What did you tell your boss ? 你 跟 你 的 老板 说 什么 了 ? +Nobody is going to shed any tears if that old building gets torn down . 没有 人会 为 这个 旧 建筑物 的 拆除 而 落泪 . +She is at work right now . 她 现在 正在 工作 . +You are quite right . 你 是 對 的 . +There is a bank in front of the station . 车站 前 有个 银行 . +Declarations of variables are extremely important in C and C + + . 变量 的 声明 在 C 和 C++ 中 极其重要 . +I paid ten dollars for this cap . 我 付 了 十美元 買 這 頂 帽子 . +I will never speak to you again . 我 再也不会 跟 你 说话 了 . +I will bring one more towel . 我 再 拿 块 毛巾 过来 . +Are you and Tom working together ? 你 跟 湯姆 一起 工作 嗎 ? +Tom did not say where he was planning to go . 湯姆 沒 說 他 打算 去 哪裡 . +Good night . 晚安 . +You should have started by now . 你 早就 該 開始 了 . +Is it true Tom can not read or write ? 汤姆 真的 不会 读 也 不会 写 吗 ? +I agreed with him on that point . 我 在 那 一點 上 同意 他 . +Can he speak English ? 他 會 講 英語 嗎 ? +He took care of the business after his father is death . 在 他 父亲 死 后 , 他 接管 了 公司 . +You could have answered that question . 你 本 可以 回答 那 问题 . +Sentences begin with a capital letter . 句子 以 一個 大 寫 字母 開頭 . +I heard the telephone ringing . 我 听到 电话响 了 . +He skis in Hokkaido every winter . 他 每年 冬天 在 北海道 滑雪 . +You will soon get used to Japanese food . 你 很快 就 会 习惯 吃 日本料理 了 . +She is as beautiful as her mother . 她 跟 她 媽媽 一樣 漂亮 . +Quit gambling . 戒掉 赌博 吧 . +I should not have done it . 我 本 不 应该 做 的 . +We have seen no one . 我们 谁 也 没 看见 . +I saw a woman in black . 我 看见 一个 穿 黑衣服 的 女人 . +He began to eat his breakfast . 他 開始 吃 他 的 早餐 了 . +I hope Tom loses . 我 希望 湯姆 輸 . +I am going out for a while . 我 出去 一会儿 . +I am sorry to bother you so often . 一直 打扰 你 不好意思 . +Be patient . 耐心 等 着 . +I filled the bucket with water . 我 在 桶子 裡 裝滿 了 水 . +Maybe he will not become famous . 也許 他 不 會 成名 . +Finally , it is Friday . 終於 星期五 了 . +She visited her husband in prison . 她 探望 了 她 在 監 獄裡 的 丈夫 . +You are not fast enough . 你 不够 快 . +Tom translated the document into French . 汤姆 把 文档 译成 法语 . +He is a thief . 这 是 一个 小偷 . +He stayed there for three days . 他 在 那裡 待 了 三天 . +Stop making a fool of yourself . 停止 愚弄 你 自己 . +The school is on top of the hill . 學校 在 山丘 頂上 . +She was beautiful when she was young . 她 年轻 时 很 美丽 . +She got out of the car . 她 从 车里 出来 了 . +I have to go shopping . I will be back in an hour . 我 该 去 买 东西 了 , 我 一 小时 后 回来 . +I should have gone home earlier . 我 該 早點 回家 . +If you heard her speak English , you would take her for an American . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 美国 人 呢 . +He cannot have done such a thing . 他 不 可能 做 那種 事 . +They were all dressed in uniforms . 他們 全部 穿 制服 了 . +May I come and see you tomorrow ? 我 明天 可以 來看 你 嗎 ? +I want to drive . 我 想 開車 . +Suppose you had a thousand dollars , what would you do with it ? 假如 你 有 1000 美元 , 你 会 用 它 做 什么 呢 ? +Why should I go to school ? 为什么 我 应该 去 上学 ? +Mary has a bad back . It is hard for her to lift things . 瑪麗 的 背 不好 , 她 很 難 把 東西 舉起 來 . +I hope Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +This is my dictionary . 这 是 我 的 字典 . +This is typical . 这 是 典型 的 . +I asked him to wait here . 我 請 他 在 這裡 等 . +Tom certainly is good at baseball . 汤姆 打 棒球 打 的 非常 好 . +She is a clerk in the supermarket . 她 在 超市 做 秘书 . +I had a little fever this morning . 今天上午 我 有 一點 兒 發燒 . +He caught a cold . 他 着凉 了 . +He was kind enough to lend me some money . 他 够 大方 , 借了 我 一点 钱 . +She is on a diet . 她 在 节食 . +He came to my rescue . 他 拯救 了 我 . +I will provide you with all the necessary information . 我 會 給 你 所有 必要 的 信息 . +There is no water . 沒有 水 . +You are too young to retire . 你 太 年輕 , 不能 退休 . +I am afraid of dogs . 我 怕 狗 . +The planets revolve around the sun . 行星 繞著 太陽 轉 . +Do you believe that God exists ? 你 相信 神 存在 嗎 ? +I am interested in Asian history . 我 对 亚洲 的 历史 很感兴趣 . +This is my wife . 这 是 我 的 妻子 . +Did you lock the door ? 你 有 關門 嗎 ? +A little knowledge is a dangerous thing . 只有 一點點 的 知識 是 危險 的 事 . +It looks like it is going to snow . 看起 來 快 下雪 了 . +He is fluent in Chinese . 他 能 說 流利 的 中文 . +My father helped me with my homework . 我 爸爸 幫 我 做作 業 . +She was ashamed of her children is behavior . 她 为 自己 孩子 的 行为 感到 羞耻 . +Water boils at 100 degrees . 水 在 攝 氏 100 度沸騰 . +I noticed she was wearing a new hat . 我 注意 到 她 当时 戴 了 顶 新 帽子 . +Please do not speak so fast . 請 不要 說 得 這麼 快 . +She is correct for sure . 她 的 確是 正確 的 . +He bought a small house in Kyoto . 他 在 京都 買 了 一個 小 房子 . +Do you like music ? 你 爱 音乐 吗 ? +The doctor called him back . 医生 把 他 叫 了 回来 . +Tom was not in bed . 湯姆 不 在 床上 . +Did you bring a hair dryer ? 你 有 帶 吹 風機 嗎 ? +He was standing at the street corner . 他 站 在 街角 . +I am not ashamed of my father being poor . 我 父亲 很穷 并 不让 我 觉得 丢脸 . +He accused me of having stolen his watch . 他 指控 我 偷 了 他 的 手表 . +Her mother will continue to work . 她 母亲 将 继续 工作 . +He hit the ball with his racket . 他 用 他 的 球拍 擊球 . +That is a huge challenge . 这 是 一个 巨大 的 挑战 . +I brought you a little something . 我 给 你 带 了 点 东西 . +Has the mailman already come ? 郵差 已經 來 過 了 嗎 ? +I know this area pretty well . 我 很 瞭解 這 地方 . +Do not start without me . 我 不 在 就别 开始 . +He is not at home . 他 不 在家 . +I made a few changes . 我 做 了 点 改动 . +I can not stay . 我 不能 留下 . +I hope he has not had an accident . 我 希望 他 沒發 生意 外 . +I did not need to paint the fence . 我 不 需要 粉刷 圍牆 . +It was one of the best nights I have had . 这 是 我 度过 的 最好 的 夜晚 之一 . +He is no fool . 他 不是 傻子 . +This book is quite difficult . 这 本书 很 难读 . +This desk is mine . 這 張 書 桌 是 我 的 . +I am not writing a letter . 我 不是 正在 寫信 . +He lives in that house over there . 他 住 在 那邊 的 那間 房子 . +You should have attended the meeting . 你 應該 參加 這個 會議 的 . +The ship went up in flames . 船 起 了 火 . +He is a promising student . 他 是 一位 有 前途 的 学生 . +I caught a cold two days ago . 我 兩天 前 感冒 了 . +Tom was a bit puzzled by Mary is answer . 汤姆 被 玛丽 的 回答 困惑 了 一下 . +Please shut the door . 請 關門 . +Where do you live now ? 你 现在 住 在 哪里 ? +Tom learned how to do that from his grandfather . 汤姆 从 他 祖父 那里 学会 了 怎么 做 . +I have a pair of shoes . 我 有 一双 鞋 . +He ran as fast as he could . 他 跑 得 能 有 多快 就 有 多 快 . +None of the teachers could solve the problem . 所有 的 老师 都 无法 解决 这个 问题 . +It is not something I am very good at . 这 不是 我 所 擅长 的 事 . +I only want to know the facts . 我 只 想 知道 事实 . +Tom should have handled the situation differently . 汤姆 应该 用 别的 方式 处理 这 状况 . +The best hairdressers are gay . 最好 的 理发师 是 同性恋 . +She is my classmate . 她 是 我 的 同學 . +You should have come yesterday . 你 昨天 應該 來 的 . +Let me give you a lift as far as the station . 讓 我 送 你 到 車 站 吧 . +How did your test go ? 你 的 测验 怎么样 ? +Can you please shut up ? 你 可以 閉 嘴 嗎 ? +I felt good tonight . 我 今晚 感觉良好 . +What is the weather like today ? 今天天气 怎么样 ? +A face with too much make up looks strange . 化妆 太 浓 的话 脸会 看着 很 奇怪 . +Are you taking any medicine regularly ? 你 經常 服用 任何 藥物 嗎 ? +There was only one warden on duty when the riot started . 暴動 開始 時 只有 一位 監獄 長 值班 . +The rich are not always happier than the poor . 有钱人 未必 比 穷人 幸福 . +Tom has not forgiven anybody . 汤姆 没 原谅 过 任何人 . +I need a cab . 我 需要 一輛 出租 車 . +There was no money left in my wallet . 我 钱包 里 没钱 了 . +My room is twice as big as his . 我 的 房間 是 他 的 兩倍 大 . +I wish more people felt the same way . 我 希望 更 多 人 以 相同 的 方式 来 感受 . +The hawk caught a mouse . 這 隻 鷹 抓 到 一 隻 老鼠 . +She was almost late for school . 她 上學 幾乎 遲到 . +He did not agree to my proposal . 他 不 同意 我 的 建議 . +I like reading . 我 喜欢 阅读 . +These things are not mine ! 这些 东西 不是 我 的 ! +The river flows under the bridge . 河 從 橋 下流 過 . +He whistled as he walked . 他 邊 走 邊 吹口哨 . +I advertised my house in the newspaper . 我 在 报纸 上 刊登 了 我 的 房子 的 广告 . +He returned from China . 他 从 中国 回来 了 . +A thousand dollars is a large sum . 1000 美元 是 个 大 数目 . +You should be kind to others . 对 其他人 你 应该 和善 一点 . +Do you like flying ? 你 喜歡 坐 飛機 嗎 ? +She kissed him on the cheek . 她 亲吻 他 的 脸颊 . +Even children can read this book . 即使 是 小孩 也 能讀 這 本書 . +There is no scientific basis for these claims . 這些 主張 沒有 科學 的 根據 . +We cannot overestimate the value of health . 我们 不能 高估 健康 的 价值 . +It is impossible to predict earthquakes . 預測 地震 是 不 可能 的 . +Tom has apparently done that already . 很 明顯 , 湯姆 已經 做 完 了 . +I have not made much progress . 我 还 没有 取得 那么 大 的 进展 . +Is this the bus to Oxford ? 这 是 去 牛津大学 的 车 吗 ? +My hobby is playing the piano . 我 的 嗜好 就是 彈 鋼琴 . +What are you looking at ? 你 在看 什麼 ? +School starts next Monday . 下周一 开学 . +We will get a phone call from him tonight for sure . 今晚 我們 肯定 會 接到 他 的 電話 . +I do not know . 我 一无所知 . +I have no idea who she is . 我 不 知道 她 是 谁 . +Tom is doing what he loves . 汤姆 在 做 他 喜欢 做 的 事 . +She quit smoking . 她 停下 來 抽煙 . +He has not come already , has he ? 他 並 沒有 來 , 不是 嗎 ? +Unfortunately , there was no one around . 很 不幸 , 没有 人 在 身边 . +How do you spell your family name ? 你 的 姓 怎麼 拼 ? +This desk is better than that one . 這 張 書桌 比 那 張 好 . +Volleyball is a lot of fun . 排球 很 有意思 . +Please help me . 請 幫 我 . +Can you jump rope ? 你 能 跳绳 吗 ? +Why do not we have lunch together ? 為 什麼 我們 不 一起 吃 午 飯 呢 ? +I am getting off at the next station . 我 下 一站 下车 . +Tom said hi . 汤姆 打了个 招呼 . +I can see the light . 我 能 看到 光線 . +He is about your age . 他 跟 您 年纪 差不多 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +These are cakes that she baked herself . 這些 是 她 自己 烤 的 蛋糕 . +She graduated from high school last year . 去年 她 從 高中 畢業 了 . +Tom visited Boston last year . 湯姆 去年 去 了 波士 頓 . +He tried to speak French to us . 他 試著 跟 我們 講法 語 . +This job does not pay . 这份 工作 不 付钱 的 . +I think I should get right to work . 我 認為 我 該 馬 上去 工作 . +You are always late . 你 总是 迟到 . +You should learn to control your emotions . 你 應該 學會 控制 自己 的 情緒 . +It was raining when we left , but by the time we arrived , it was sunny . 我们 走 的 时候 下着雨 , 到 的 时候 有 太阳 . +I carried the box on my shoulder . 我 把 盒子 扛 在 肩上 . +Tom wished he had not borrowed the book from Mary . 汤姆 希望 他 没有 从 玛丽 那里 借书 . +I 'd like for you to go . 我 希望 你 去 . +I can not adjust myself to the climate here . 我 不能 讓 自己 適應 這裡 的 氣候 . +All of you did good work . 你們 所有 的 人 都 做 得 很 好 . +I would like to make an overseas call . 我 想 打 個 國際 電話 . +Tom and Mary admired the scenery as they held hands . 汤姆 和玛丽 手牵着 手 , 一起 欣赏 风景 . +He visited many countries in Asia . 他 訪 問 過 許多 亞洲 國家 . +I prefer rice to bread . 比起 面包 , 我 更 喜欢 米饭 . +Tom was conservative . 汤姆 过去 很 保守 . +You are in a safe place . 您 在 一个 安全 的 地方 . +You can not speak English , can you ? 你 不会 说 英语 , 是 吗 ? +He shaved his mustache off . 他 刮 了 他 的 胡子 . +We have not seen anyone . 我们 谁 也 没 看见 . +The city was destroyed by fire . 這個 城市 毀 於 火災 . +I am tired of homework . 我 厭倦 了 功課 . +The blanket is still wet . 这个 毯子 还是 湿 的 . +It was only a partial success . 那 只是 部分 的 成功 . +No man can serve two masters . 没有 人 可以 共侍 二 主 . +The clock gains five minutes a day . 那个 钟 每天 都 快 了 五分钟 . +You are liable for the debt . 你 有 义务 还债 . +I need to study math . 我 需要 学习 数学 . +Are you afraid of Tom ? 你 會 怕 Tom 嗎 ? +I studied for a while this morning . 我 今天 早上 讀 了 一會兒 書 . +I can not stand the noise . 我 不能 忍受 這個 噪音 . +Have you ever been in jail ? 你 去过 监狱 吗 ? +Will it snow tonight ? 今晚 会 下雪 吗 ? +I will attend the meeting . 我 將 參加 這個 會議 . +Mom , can I go swimming ? 媽 , 我 可以 去 游泳 嗎 ? +He looks old , but he is still in his twenties . 他 看上去 老 , 但 他 还 不到 30 岁 . +They were carelessly unaware of the danger . 他们 粗心大意 , 还 没 意识 到 危险 . +One thousand dollars will cover all the expenses for the party . 1000 美元 将 负担 聚会 的 全部 费用 . +All of them agreed to the proposal . 他們 所有 的 人 都 同意 這項 建議 . +He is not breaking the law . 他 没 违法 . +CDs have taken the place of records . CD 已经 取代 了 胶木 唱片 . +We did not break in . 我们 没有 打断 . +Did you buy a nice bicycle ? 你 買 了 輛 好 自行 車 嗎 ? +She appears to have a lot of friends . 她 看 起來 好像 有 很多 朋友 . +It is dangerous to drink too much . 酒 喝 太 多 很 危险 . +Have you gone to see a doctor ? 你 去 看过 医生 了 吗 ? +There were many people at the concert . 音乐会 上 有 很多 人 . +You think I am mad , do not you ? 你 認為 我 瘋 了 , 不是 麼 ? +Tom can not find Mary . 汤姆 找 不到 玛丽 . +She asked him to mail that letter . 她 請 他 寄 那 封信 . +This happens all the time . 這 是 常有 的 事 . +Life has been very hard . 生活 很 艰苦 . +I missed you . 我 想 你 . +I am a student . 我 是 个 学生 . +You and I have the same idea . 你 和 我 有 相同 的 想法 . +It makes no sense at all . 这 没有 任何 意义 . +Is that your car ? 那 是 你 的 車 嗎 ? +Her parents can not help worrying about her injuries . 她 的 父母 不能不 担心 她 的 伤势 . +His new novel is worth reading . 他 的 新小 說 值得 一 讀 . +I will not allow you to use my pen . 我 不 允许 你 用 我 的 钢笔 . +Can you translate this song for me ? 你 能 为 我 翻译 这 首歌 吗 ? +He has been teaching for 20 years . 他 已經 教 了 20 年 . +I am too excited to eat anything . 我 興奮 得 吃不下 任何 東西 . +Come on . I want to show you something . 来 吧 . 我 想 让 你 看点 东西 . +She cried . 她 哭 了 . +Please turn on the radio . 请 将 收音机 打开 . +Drive on . 往前 开 . +I wonder why he did that . 我 不 知道 他 為 什麼 那樣 做 ? +Put on some clothes . 穿 上 點 衣服 . +I got on the wrong bus . 我 上 錯車 了 . +How much is this umbrella ? 這 把 傘 多少 錢 ? +How much money do you have hidden under your bed ? 你 在 你 的 床 下面 藏 了 多少 钱 ? +This is a picture of my sister . 這 是 我 姊姊 的 照片 . +Get out ! 出去 ! +I have run out of money . 我 錢 已經 用完 了 . +She was reading a gardening manual . 她 正在 讀 一本 園藝 手冊 . +Stop swearing , please . 请 别 再 发誓 了 . +Both you and I are men . 你 和 我 都 是 男人 . +Why is snow white ? 为什么 雪 是 白色 的 呢 ? +The speaker is comments were highly offensive . 发言人 的 评论 极 有 攻击性 . +I will never be able to live this down . 我 以 後 不能 在 這 鎮 上 生活 了 . +How many things did you buy ? 你 買 了 多少 東西 ? +Is he still interested ? 他 還 有 興趣 嗎 ? +We are going out tonight . 我们 今晚 出去 . +Who drew it ? 誰 畫 的 ? +Obey your teachers . 要 听 老师 的话 . +I gave my cold to him . 我 的 感冒 传染 了 他 . +It is not easy to master English . 要 精通 英語 不 容易 . +Tom is happy here . 湯姆 在 這裡 很 高興 . +Are you also from Boston ? 你 也 是 從 波士 頓來 的 嗎 ? +She decided to resign from her job . 她 決定 辭去 她 的 工作 . +She is a mere child . 她 只是 個 孩子 . +Let is talk about what you did in Boston . 让 我们 谈谈 你 在 波士顿 做 的 事 . +I want to write an article . 我 想 写 篇文章 . +The boy is playing with his toy soldiers . 男孩 在 玩 玩具兵 . +Would you like a tour ? 你 想 去 旅游 嗎 ? +I wish I were a good singer . 但 願 我 是 一個 好 歌手 . +I knew what Tom was doing . 我 知道 汤姆 在 做 什么 . +We suspected him of lying . 我们 怀疑 他 说谎 了 . +This book is too difficult for you to read . 这 本书 对 你 来说 读 起来 太 难 了 . +Do not forget to take a camera . 别忘了 带 个 相机 . +" Why are you going to Japan ? " " To attend a conference in Tokyo . " “ 你 去 日本 干嘛 ? ” “ 去 东京 参加 一个 会议 . ” +Is Tom a common name in your country ? 在 你们 国家 , 汤姆 是 个 常见 的 名字 吗 ? +I erased the blackboard for the teacher . 我 为 老师 擦 黑板 . +There is no cause for complaint . 没有 理由 抱怨 . +He admonished them for being noisy . 他 告誡 他們 不要 吵鬧 . +The nurse will tell you how to do it . 护士 会 告诉 你 怎么 做 . +This novel is boring . 這 本小 說 很 無聊 . +He lost his eyesight in that accident . 他 在 那次 意外 中 失去 了 他 的 視力 . +Let is shake hands . 讓 我們 握手 吧 . +I work under her . 我 在 她 手下 工作 . +You should have woken me . 你 应该 叫醒 我 . +He lives by himself . 他 独自 生活 . +She bit him . 她 咬 了 他 . +Mary tied an apron around her waist and then took the turkey out of the oven . Mary 试图 把 围裙 围 在 腰 上 , 然后 把 烤鸡 从 炉子 里 拿 出来 . +Tom does not think that will do any good . 汤姆 认为 那 没有 好处 . +He works at the welfare office . 他 在 福利 辦事 處 上班 . +I want to see your mother . 我 想 看看 你 的 母親 . +Are you really willing to help ? 你 是 真的 很 樂意 幫忙 嗎 ? +Please wait till he comes back . 請 等到 他 回來 . +He shook hands with his friend . 他 和 他 的 朋友 握手 . +Let is get started . 让 我们 开始 吧 . +This dog eats almost anything . 這 隻 狗 幾 乎 吃 任何 東西 . +Would you please give me some more tea ? 你 能 再 给 我 点 茶 吗 ? +It is time to take a bath . 是 时候 洗 个 澡 了 . +Where are you planning to spend the night ? 你 打算 去 哪儿 过夜 ? +They consider it impolite to disagree with someone they do not know very well . 他们 认为 , 去 反驳 一个 不 认识 的 人 有些 不 礼貌 . +He began to shout . 他 開始 喊叫 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +You have three minutes to surrender . 限 你 三分 鐘 內 投降 +He spends lots of money on clothes . 他 在 衣服 上 花 了 很多 錢 . +We will meet again . 后会有期 . +I am sick . 我 生病 了 . +That is so perfect . 那 是 完美 的 . +I can not live without you . 沒有 你 我 活不下去 . +The food is not very good here . 這裡 的 食物 不是 很 好 . +I am still sleepy . 我 还 很困 . +He acted like a madman . 他 表现 的 像 个 疯子 . +Our team scored the first goal . 我们 队 进 了 第一个 球 . +I hope I can see you at Christmas . 我 期望 能 在 圣诞节 见到 你 . +Tom wore ripped jeans . 汤姆 穿 了 破洞 牛仔裤 . +I am not a witch . 我 不是 巫婆 . +It goes without saying that health is important . 不用说 , 健康 是 重要 的 . +It would be crazy to do that again . 再 来 一次 就 真是 发疯 了 . +The crane , unlike the dog , has never dreamed of flying . 不 像 狗 , 這 隻 鶴 從 來 沒 有 夢 想 過 飛 翔 . +He told me the story of his life . 他 给 我 讲述 了 他 的 一生 . +I am so excited . 我 很 激动 . +Time for dinner . 吃饭时间 到 了 . +There is no chair to sit upon . 沒有 椅子 坐 . +Keep it . 留 着 吧 . +Radio is been replaced by the TV . 电视 代替 了 收音机 . +Tom has lost his interest in studying French . 汤姆 已经 对 学法语 不感兴趣 了 . +I kept singing . 我 继续 唱歌 . +What I want is not tea , but coffee . 我 要 的 不是 茶 , 而是 咖啡 . +The cat caught a mouse . 猫 抓住 了 老鼠 . +They tasted the bread . 他們 嚐了 麵 包 . +He may have taken the wrong train . 他 可能 搭錯 火車 了 . +Although I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I can not shake off my cold . 我 的 感冒 怎麼 也 不 會 好 . +This is a secret just between you and me , so do not let it slip out . 这 只是 你 和 我 之间 的 秘密 , 所以 不要 让 它 流出去 . +There was a shortage of fuel . 燃料 短缺 . +Where is the checkout counter ? 結帳 櫃台 在 哪裡 ? +They have announced their engagement . 他們 已經 宣布 訂婚 了 . +He comes here every three days . 他 每 三天 來 這裡 一次 . +We want candy . 我們 想要 糖 . +She was at a loss for words to express her feeling . 她 已经 无法 用 语言表达 她 的 感觉 了 . +I can not sleep at all . 完全 睡不着 . +I have heard that name somewhere before . 我 在 别处 听 过 那个 名字 . +There is a book here . 這裡 有 一本 書 . +Switzerland is a neutral country . 瑞士 是 一个 中立 的 国家 . +You should come back immediately . 你 应该 马上 回来 . +She decided to marry him . 她 决定 和 他 结婚 . +Turn off the TV . 关闭 电视机 +I saw him crossing the road . 我 看见 他 穿过 了 马路 . +Only six people were present at the party . 只有 六個 人 參加 了 派 對 . +How many different kinds of pizzas are on the menu ? 菜單 上 有 多少 種比薩 ? +I may have made a mistake . 我 可能 犯 了 个 错 . +I had a vision . 我 有 一个 设想 . +Tom can not have done what you think he did . 汤姆 还 不能 做 完 你 认为 他 能 的 事 . +Sorry it took me so long to write to you . 對 不起 , 我 過 了 這麼 長 的 時間 才 回 你 的 信 . +Three bulbs have burned out . 三个 灯泡 烧坏 了 . +Let is take a rest . 我们 休息 一下 吧 . +I got a letter from her today . 我 今天 收到 了 她 的 信 . +Just then , the bus stopped . 就 在 那时 , 公交车 停住 了 . +You could count to ten when you were two . 在 你 兩歲 時 , 你 可以 數 到 十 . +" When will you be back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +The telephone rang a few minutes later . 几分钟 后 , 电话响 了 . +She told me to open the window . 她 告訴 我 把 窗戶 打開 . +The top of the mountain is covered in snow . 山顶 被 雪 覆盖 了 . +Please take off your coat . 請 脫下 您 的 外套 . +She has not heard the news yet . 她 还 没 听到 这个 消息 . +I want to eat something that is not sweet . 我 想 吃 点 不甜 的 东西 . +I slept on the bus . 我 在 公交车 上 睡觉 了 . +I will leave that to you . 我 會 留 給 你 . +Some people like summer , and others like winter . 有人 喜歡 夏天 , 有人 喜歡 冬天 . +I do not care what he does . 我 不在乎 他 做 什麼 . +Have you ever seen a UFO ? 你 看 過 飛 碟 嗎 ? +Tom has changed his mind again . 汤姆 又 改变 了 他 的 主意 . +The town was full of activity . 小镇 充满 了 活力 . +I need more time . 我 需要 更 多 时间 . +Will you live in Sasayama next year ? 你 明年 會 住 在 筱 山 嗎 ? +It makes me feel good . 它 讓 我 感覺 很 好 . +Did you show it to your parents ? 你 給 你 父母 看 了 嗎 ? +He looked like a doctor . 他 看 起來 像 個 醫生 . +He behaved like a madman . 他 表现 的 像 个 疯子 . +Let me in . 让 我 进去 . +Tom did not know what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +Can I catch a taxi near here ? 我 能 在 這 附近 打車 嗎 ? +Tom is the tallest in his family . 湯姆 是 他家 裡 最高 的 . +I will take your suitcase to your room . 我 會 把 你 的 手提箱 拿到 你 的 房間 . +Is it near your house ? 它 在 你家 附近 嗎 ? +There is no way to know . 沒有 辦法 知道 . +I want him to play the guitar . 我 要 他 彈 吉他 . +She thinks of everything in terms of money . 她 對 任何 事 都 用 錢 的 角度 來看 . +We kept quiet . 我们 保持 了 沉默 . +Tom told Mary he had a lot of money . 湯姆 告訴 瑪麗 他 有 很多 錢 . +She gave me these old coins . 她 給 了 我 這些 舊 硬幣 . +Which countries have you visited ? 你 去过 哪些 国家 ? +He was late because of the snow . 他 因為 下雪 所以 遲 到 了 . +The number of people on Facebook is greater than the population of the United States . Facebook 的 用戶 比美 國 人口 還 多 . +I thought that I told you to stay away from my computer . 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +In this kind of weather , it is best to stay home and not go outside . 这种 天气 下 最好 待在家里 不要 外出 . +Thank you for the wonderful dinner . 為 這 美好 的 晚餐 謝謝 你 . +I look forward to your next visit . 我 期待 著 您 的 再次 光臨 . +Wash your hands before eating . 進食 前 先 洗手 . +Tom and I were not the ones who complained . 汤姆 和 我 不是 抱怨 的 人 . +Many books have been stolen . 很多 书 被盗 了 . +I got acquainted with him in France . 我 在 法國 認識 了 他 . +I returned the book to the library . 我 把 書 還 給 圖書館 . +These shoes do not fit my feet . 這些 鞋 不合 我 的 脚 . +You have to study more . 你 该 学 得 更 多 . +I took Highway 58 . 我 走 58 號 高速公路 . +Tom bought a pair of black leather shoes . 汤姆 买 了 一双 黑色 皮鞋 . +He should apologize for being rude to the guests . 他 应该 为 自己 对 客人 的 粗鲁无礼 而 道歉 . +He runs as fast as you . 他 跑 得 跟 你 一樣 快 . +Sooner or later , we will know the truth . 我們 遲早 會 知道 真相 . +Could you please drive me home ? 你 可以 載 我 回家 嗎 ? +Have you ever eaten a banana pie ? 你 吃 过 香蕉 派 吗 ? +What is for supper ? 我们 晚饭 吃 什么 ? +Does Tom live in Boston ? 汤姆 住 在 波士顿 吗 ? +He likes Disney . 他 喜欢 迪士尼 . +How did you do on your exam ? 考得 如何 ? +This is a low @-@ budget movie . 這 是 一部 低成本 的 電影 . +He would not look at my proposal . 他 不 會 考慮 我 的 建議 . +Where were you last night ? 昨天晚上 你 在 哪裡 ? +This is all the money I have on me . 這 是 我 身上 所有 的 錢 . +Her hair grew back . 她 的 頭 髮 長 回 來 了 . +You can delete that now . 你 现在 可以 删除 它 . +Tom gave Mary half of the apple . 汤姆 给 玛丽 半个 苹果 . +I am not quite sure if we can meet your requirements . 我 不 太 確定 我們 是否 能夠 滿足 你 的 要求 . +I want something to read . 我 要 些 讀 的 東西 . +I do not know what time it is . 我 不 知道 現在 幾點鐘 . +I have already had lunch . 我 已經 吃 過 午餐 了 . +Did you go to school ? 你 去 學校 了 嗎 ? +Do not get involved with that guy . 別 和 這個 人 打交道 . +They accused me of having broken my promise . 他们 指责 我 没有 信守诺言 . +He will come back . 他 会 回来 的 . +All the apple trees were cut down . 所有 苹果树 都 被 砍倒 了 . +We both know why I am here . 我們 都 知道 我 為 甚麼 在 這裡 . +Is this a river ? 這 是 一條 河 嗎 ? +Should not somebody be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +She hired him as a programmer . 她 聘請 他 作 程式 設計 師 . +I can not stand this noise any longer . 我 無法 再 忍受 這個 噪音 了 . +I can not put up with it . 我 无法忍受 它 了 . +His father dedicated his life to science . 他 的 父親 把 一生 奉 獻給 了 科學 . +I still can not believe I did it . 我 仍旧 无法 相信 我 居然 做 了 这种 事 . +I am looking for a part @-@ time job . 我 正在 找 一份 兼職 的 工作 . +Two months have passed since he left for France . 自从 他 离开 去 法国 , 已经 有 两个 月 了 . +I have never heard of Tom . 我 從 沒聽 說 過 湯姆 . +Can I get you something to drink ? 我 可以 帶喝 的 東西 給 你 嗎 ? +When are you leaving ? 你 什么 时候 离开 ? +Keep off the grass . 不要 踩 草地 . +I am amazed at your fluency in English . 你 流利 的 英语 让 我 很 吃惊 . +What is that big building in front of us ? 我们 面前 的 这幢 高楼 是 什么 ? +We captured the thief . 我们 抓住 了 小偷 . +I am sick . 我 病 了 . +I have two sons . One is in Tokyo and the other is in Nagoya . 我 有 两个 儿子 , 一个 在 东京 , 另 一个 在 名古屋 . +I will be back at seven o 'clock . 我 會 在 七點鐘 回來 . +What did you do to make Tom cry ? 你 做 了 甚麼 事 把 湯姆 惹 哭 了 ? +I did it myself . 我 自己 做 的 . +I am not afraid to die . 我 不怕死 . +Did he tell you what to do ? 他 告訴 過 你 要 做 什麼 嗎 ? +She divorced her husband . 她 與 丈夫 離婚 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 練習 . +Do you have a steady boyfriend ? 你 有 一个 固定 的 男朋友 吗 ? +I might make a mistake . 我 可能 犯 了 個 錯 . +She told him she wanted a divorce . 她 告诉 他 说 , 她 想要 离婚 . +Whether you like it or not does not matter . 你 喜不喜欢 没关系 . +They skip school all the time . 他們 總是 逃學 . +See you around . 再见 ! +How much does a kilogram of pineapples cost ? 菠蘿 一 公斤 多少 錢 ? +Tom is no longer a member of this club . 汤姆 不再 是 俱乐部 的 成员 了 . +Let me explain it to you . 讓 我 給 你 說 明 . +I am the best . 我 是 最好 的 . +You will be able to drive a car in a few days . 幾天 之 後 你 就 可以 開車 了 . +Tell them we are coming . 告诉 他们 我们 要来 了 . +She is a quiet person . 她 是 個 安靜 的 人 . +The policeman grabbed the boy is arm . 警察 抓住 了 那个 男孩 的 手臂 . +We help each other out . 我們 互相 幫忙 . +Ignorance is bliss . 無知 就是 幸福 . +A dog followed me to my school . 一 隻 狗 跟 著 我 到 我 的 學 校 . +I do not know when she will come back . 我 不 知道 她 什么 时候 会 回来 . +Tom has been struck by lightning three times . 湯姆 被 閃電擊 中 過 三次 . +He will be here around four o 'clock . 他 会 在 四点 左右 到达 这里 . +The boy can count to ten . 这 小男孩 能数 到 十 . +She is good at speaking English . 她 擅長 說 英語 . +I need to go to the toilet . 我 要 去 廁所 . +I am just writing a letter to my girlfriend . 我 只是 在 写 一封信 给 我 的 女友 . +Tom told me what to say . 汤姆 告诉 我 该 说 什么 . +You are a beautiful young woman . 你 是 一个 美丽 的 女人 . +We have to come to some agreement . 我们 要 达成 一些 协定 . +I have always kept my promises . 我 一直 信守 我 的 諾言 . +I want you to tell me the truth . 我 想 你 把 真相 告诉 我 . +We have ordered Chinese food . 我们 点 了 中餐 . +That is right ! 對了 ! +The Japanese have dark eyes . 日本 人 有 黑色 的 眼睛 . +If you do not leave , I will sic my dogs on you . 如果 你 不 离开 , 我 就 放狗 出来 咬 你 . +You 'd better do it soon . 你 最好 尽快 去 做 . +I played tennis . 我 打 網球 了 . +Let me try another one . 让 我 试试 别的 . +It will be cloudy . 天要 变 多云 了 . +I will open the window a bit . 我 把 窗户 打开 一点 . +What is this ? 這 是 什麼 ? +There is no need to hail a taxi . 没 必要 叫 出租车 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 非常 成功 . +There was no one left but me . 除了 我 没有 人 離開 . +My bike was stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Could you say that in plain English ? 你 會 說 簡單 的 英語 嗎 ? +She managed to drive a car . 她 成功 地 開車 了 . +The sky was clear when I left home . 当 我 离开 家 的 时候 天空 很 明朗 . +The Swiss consume a large amount of beer . 瑞士人 消耗 不少 啤酒 . +Tom got a late start this morning . 汤姆 今早 出发 晚 了 . +Let me ask a stupid question . 我 来 问 个 有点 傻 的 问题 . +He picked flowers for her . 他 为 她 摘 了 些 花 . +I think it is dangerous to climb a mountain on a day when it is stormy . 我 認為 在 有 風暴 的 時候 裡 登山 很 危險 . +There was a big earthquake last night . 昨晚 有 一場 大 地震 . +You must study more . 你 该 学 得 更 多 . +That mountain is easy to climb . 那 座 山 很 容易 爬 . +It is never too late to learn . 活到老 , 学到老 . +Do not try to do this by yourself . 别 想 靠 你 自己 做 这事 . +I do not have to clean my room . 我 不用 打扫 房间 . +I owe ten dollars to her . 我 欠 她 10 美元 . +We have decided not to fire you . 我们 决定 不 开除 你 . +I can not shut it down . 我 不能 關掉 它 . +She cooked us a wonderful meal . 她 為 我們 煮 了 豐盛 的 一餐 . +Not knowing what to do , I asked the teacher for advice . 因为 不 知道 做 什么 , 所以 我 向 老师 寻求 建议 . +Nobody watches her . 谁 也 没在 看 她 . +That is none of your business . 那 不關 你 的 事 . +Turn right at the next corner . 在 下 一個 轉角 右 轉 . +Tom has Mary is address . 汤姆 有 玛丽 的 地址 . +We easily figured out the password . 我们 毫不费力 地 想出 了 密码 . +Summer is over . 夏天 过去 了 . +Would you like another apple ? 你 要 再 來 顆 蘋果 嗎 ? +I am going to bed . Good night . 我 要 睡 了 . 晚安 . +Tom often reads when his children are not at home . 汤姆 经常 在 孩子 们 不 在家 时 阅读 . +We have spent too much time here . 我們 在 這裡 花 了 太 多 時間 . +No one can keep me from going there . 没 人 能 阻止 我 去 那儿 . +She has a cottage by the sea . 她 在 海边 有 一间 小屋 . +That is quite meaningless . 这 毫无意义 . +I know him by name , but not by sight . 我 知道 他 的 名字 , 但 不 知道 他 长 什么样 . +All those things are true . 那些 事 都 是 真的 . +The box is too heavy to carry . 這個 箱子 太重 了 無法 攜帶 . +Try this . 试试 这个 . +How much do I owe you ? 我 欠 您 多少 ? +What did you major in at college ? 你 大學 時 主修 什麼 ? +Do you want to die here ? 你 想 死 在 這裡 嗎 ? +I am tired of working a nine @-@ to @-@ five job . 我 厭倦 了 做 朝九晚五 的 工作 . +Tom knows many French songs . 汤姆 知道 许多 法语歌 . +I should not have eaten the whole bag of potato chips . 我 不该 把 一整 包 薯片 都 吃 完 的 . +Can we trust them ? 我们 能 信任 他们 吗 ? +Tom fell off his bicycle . 汤姆 从 他 的 自行车 上掉 了 下来 . +People grow more cynical with age . 人會 隨著 年齡 的 增長 而 更加 地 玩世不恭 . +He wants a book to read . 他 想 找 本書 來讀 . +Is there a discount if you pay in cash ? 用現 金付 的 話 會 有 折扣 嗎 ? +Tom can change . 湯姆 能 改變 . +I do not care what color ink , just bring me a pen . 颜色 无所谓 , 给 我 一支 笔 就行了 . +Come here quickly . 快 來 這裡 . +I do not understand what you are saying . 我 不 了解 你 在 說 什麼 . +I really need to read all this . 我 真的 需要 把 这 都 读 了 . +There is an urgent message for you . 你 有 一個 緊急 的 訊息 . +I have lost my umbrella . 我 丢 了 我 的 伞 . +They had to work all year round . 他們 一 整年 都 必須 工作 . +The world is running out of oil . 世界 上 的 石油 快用 完 了 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +Tom called the police . 汤姆 叫 了 警察 . +Tom was the only boy in the class . 汤姆 是 班里 唯一 的 男生 . +You ought to tell Tom that you will likely be late . 你 应该 告诉 汤姆 你 可能 会 迟到 . +I am anxious to see you . 我 渴望 見 到 你 . +Turn up the TV . 把 电视 声音 调大 点儿 . +I guess that is how Tom found me . 我 猜 那 就是 汤姆 找到 我 的 方法 . +This tie does not go with my suit . 這條 領帶 跟 我 的 西裝 不配 . +Do you know where Tom is waiting for us ? 你 知道 汤姆 在 哪里 等 我们 吗 ? +I do not think that he is sincere . 我 不 相信 他 是 真心 的 . +What book are you reading ? 你 在读 哪 本书 ? +Tom did a very good job today . 湯姆 今天 做 得 非常 好 . +We had bad weather yesterday . 昨天 天氣 很糟 . +I asked Tom a few questions . 我 问 了 汤姆 几个 问题 . +They know what happened . 他们 知道 发生 了 什么 . +At last , we reached our destination . 我们 终于 达到 了 我们 的 目标 . +Do not make a fool of me . 别 把 人家 当 傻瓜 . +I am almost finished reading this book . 我 就要 读完 这 本书 了 . +When was this temple built ? 这个 寺庙 是 何时 造 的 ? +I am not going to do anything to you . 我 不 會 對 你 做 任何 事 . +Come here , all of you . 你们 全都 过来 . +You must look over the contract before you sign it . 你 在 签字 前 必须 察看 这 合同 . +When did you change your address ? 你 什麼 時候 更改 了 你 的 地址 ? +Do you believe what he said ? 你 相信 他 說 的 話 嗎 ? +I am buying a new car . 我 在 买 一辆 新车 . +The population of London is much greater than that of any other British city . 倫敦 的 人口 遠遠 多 於 其他 英國 城市 的 人口 . +His memory amazes me . 他 的 记忆力 使 我 惊讶 . +Here is a pan without handles . 这 是 个 没有 柄 的 平锅 . +Tom and I have known each other for a long time . 湯姆 和 我 相識 很 久 了 . +A hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I can not give up smoking . 我 無 法戒 煙 . +He is lacking in common sense . 他 缺乏 常识 . +You will not need it . 你 不 會 需要 它 . +I got your fax the other day . 我 前 幾天 收到 了 你 的 傳真 . +He asked me two questions . 他 問 了 我 兩個 問題 . +There was no water in the well . 這 口 井裡 沒有 水 . +He reluctantly agreed to my proposal . 他 不 情愿 地 同意 了 我 的 提案 . +She usually goes to bed at nine . 她 经常 九点 睡觉 . +I 'd very much like to go . 我 非常 想 离开 . +I can not sleep at night . 我 有 失眠症 . +Is it safe to eat cockroaches ? 吃 蟑螂 安全 吗 ? +Stop shooting . 停止 射击 . +It is awfully hot today . 今天 非常 熱 . +He was invited to be the chairman of the club . 他 受邀 做 俱乐部 的 主席 . +The day after tomorrow is Tom is birthday . 後 天 是 湯姆 的 生日 . +What is today is date ? 今天 幾號 ? +What is your name ? 叫 什麼 名字 ? +Winners do not use drugs . 優勝者 不 使用 藥物 . +Tom glanced at the clock on the wall . 湯姆 瞥 了 墻 上 的 表 一眼 . +We ran short of money . 我们 缺钱 了 . +A bottle of red wine , please . 請來 瓶紅 酒 . +If it rains on that day , the game will be postponed until the next fine day . 如果 那天 下雨 , 比赛 会 顺延 至 下 一个 晴天 . +Tom is perfect , is not he ? 湯姆 是 完美 的 , 不是 麼 ? +Watch yourself . 自己 当心 啊 . +They made him sign the contract . 他們 讓 他 簽約 了 . +You have got to set the alarm clock before you go to bed . 在 你 上床 睡覺 之前 , 你 必須 把 鬧 鐘 設定 好 . +I met a friend at the airport . 我 在 机场 见 了 个 朋友 . +Are you angry with Tom ? 你 在 生 汤姆 的 气 吗 ? +Traffic was blocked by a landslide . 交通 被 山崩 所 阻斷 . +Get me a ticket , please . 請 給 我 一張 票 . +Tom is not stupid . 汤姆 不 傻 . +They do not have to know . 他們 不 需要 知道 . +Put the book on the bottom shelf . 把 這 本書 放在 架子 的 底部 . +Money can not buy everything . 金钱 不能 买 到 所有 的 东西 . +I can not remember . 我 記 不得了 . +The President spoke to the nation on TV . 总统 在 电视 上 对 国民 讲话 . +You should have told me a long time ago . 很久以前 你 就 應該 告訴 我 的 . +I do not know and neither does he . 我 不 知道 , 他 也 不 知道 . +There are many stores in this area . 這個 區域 有 很多 商店 . +We have so many things left to do . 我们 有 许多 未 完成 的 事 . +Tom used a fire extinguisher to try and put the fire out . 湯姆 試著 用滅 火器 把 火 撲 滅 . +He is always smiling . 他 总是 在 笑 . +He is as smart as any other boy in the class . 他 和 班上 其他 男生 一样 聪明 . +Quit smoking if you do not want to die early . 如果 你 想 活 得 久 一点 就 戒烟 . +I am satisfied with his progress . 我 對 他 的 進步 感到 很 滿意 . +I want your love . 我 要 你 的 愛 . +Tom is going to be proud of you . 湯姆 要 以 你 為 傲 了 . +I love my wife . 我 爱 我 的 妻子 . +Please do not tell your parents this . 请 不要 告诉 你 父母 . +What do you want to tell me ? 你 想 跟 我 说 什么 ? +He eats lunch at a cafeteria . 他 在 自助餐 廳 吃 午餐 . +We go out together every weekend . 我們 每個 週末 都 一起 出去 . +He hurried to the station so he would not miss the train . 为了 不错 过 火车 , 他 匆匆 赶往 了 车站 . +I will write or phone you next week . 下周 我会 给 你 写信 或 打电话 的 . +Best wishes from all of us . 我们 所有人 都 祝福 你 . +I found the secret compartment quite by accident . 我 完全 是 在 偶然 的 情况 下 发现 了 密室 . +He caught a cold . 他 感冒 了 . +Please take off your shoes . 請 脫掉 你 的 鞋子 . +They announced that a storm was coming . 他們 宣布 了 暴風雨 即將 來臨 . +You can see a lot of stars in the sky . 你 能 看到 天空 中 的 繁星 . +Tom needed to wash his car . 湯姆 需要 洗 他 的 車 . +Give some meat to the dog . 給 這 隻 狗 一些 肉 . +My father goes jogging every morning . 我 父親 每天 早上 去 慢跑 . +London is famous for its fog . 倫敦 以 霧 著名 . +I think I lost my keys . 我 觉得 我 把 钥匙 丢 了 . +He will not be able to do the work . 他 没 能力 做 这个 工作 . +I bought her a nice Christmas present . 我 給 她 買 了 一個 不錯 的 聖誕 禮物 . +We reached the top of the mountain . 我們 到 達 了 山頂 . +When listening to a lecture , you should be quiet . 听 讲座 时 , 你 应该 保持 安静 . +Tom wants a glass of water . 汤姆 想要 一杯 水 . +I like to read . 我 喜欢 阅读 . +You must keep your eyes open . 你 得 留意 一下 . +Why did you come here ? 你 為 什麼 來 這裡 ? +Tom fell down . 湯姆 摔倒 了 . +It is absolutely impossible for me to go on like this . 让 我 像 这样 继续下去 是 绝对 不 可能 的 . +It is the right thing to do . 這 是 正確 的 事情 . +The bread is not fresh . 面包 不 新鲜 . +Thou shalt not kill . 不可 殺 人 . +One plus two equals three . 一加二 等于 三 . +I do not think you ought to . 我 認為 你 不 應該 . +Trouble began immediately . 麻烦 说来 就 来 . +I do not agree with you . 我 不 同意 你 的 看法 . +He snored loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +Did you hear about what is happened to Tom ? 你 有没有 听说 汤姆 出 了 什么 事 ? +Lips that touch liquor shall not touch mine . 碰 過 酒 的 嘴唇 就別 想 碰 我 的 唇 . +Would you lend me a pencil ? 能 借 我 支 铅笔 吗 ? +What is your schedule for tomorrow ? 你 明天 的 行程 安排 是 什麼 ? +That child has few friends . 那 孩子 沒有 什麼 朋友 . +Some abstract art is difficult to understand . 一些 抽象 藝術 是 很 難 理解 的 . +She kept me waiting for 30 minutes . 她 让 我 等 了 30 分钟 . +I wish I were rich . 但 願 我 很 有 錢 . +Father named me after his aunt . 父親 以 他 姑姑 的 名字 為 我 命名 . +Do not underestimate your own strength . 不要 低估 自己 的 实力 . +You do not have a fever . 你 没 发烧 . +I did not expect it to be that big . 我 没想到 它 有 那么 大 . +We are not stupid . 我們 不 傻 . +Be sure to drop us a line as soon as you get to London . 别忘了 一 到 伦敦 就 给 我们 留言 啊 . +Nagoya is to the east of Kyoto . 名古屋 在 京都 的 東方 . +I will personally visit you . 我 會 親自 拜訪 您 . +He saluted the lady . 他 向 那位 女士 问好 . +Man is mortal . 人 固有 一 死 . +I plan to catch the 10 : 30 train . 我 打算 搭 十點 三十分 的 火車 . +If you won a million yen , what would you do ? 如果 你 中 了 一百万 日元 的 奖 , 你 会 怎么 做 ? +You should have completed it long ago . 你们 很久 前 就 应该 完成 了 . +The guy with a beard is Tom . 长胡子 的 是 汤姆 . +They all looked for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +Do you want to drink some water ? 你 要 喝水 嗎 ? +Put your hat on . 戴 上 你 的 帽子 . +She is poor , but she is happy . 她 很 窮 , 但是 她 很快 樂 . +He is getting along well with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +The bookcase is level with the table . 书架 和 桌子 齐平 . +I must have mistyped the number . 我 一定 是 打 錯號 碼 了 . +Did you see yesterday is eclipse ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +His grandmother looks healthy . 他 祖母 看 起來 很 健康 . +I have no particular reason to do so . 我 没有 特别 的 理由 去 做 . +Feel free to stay . 歡迎 留下 來 . +Will he be able to come tomorrow ? 他 明天 能来 吗 ? +I warned him , but he ignored the warning . 我 警告 過 他 , 但 他 不理 會 警告 . +You do not seem to like Tom . 你 看來 不 喜歡 湯姆 . +Tom spoke about the problem with Mary . 汤姆 跟 玛丽 说 了 这 问题 . +Is that the railroad station ? 这 是 火车站 吗 ? +Please remember what he said . 請 記住 他 說 的 話 . +That is very sweet of you . 您 真是 太好了 . +Stay out of my room . 别 进 我 的 房间 . +It is nothing serious . 這 沒 什麼 要 緊 的 . +Tom or somebody said that . 汤姆 或 某人 说 了 那事 . +Salmon lay their eggs in fresh water . 三文 魚 在 淡水 中產 卵 . +I did not have time to watch TV yesterday . 我 昨天 沒時間 看電視 . +Great progress has been made . 已经 取得 巨大 进展 . +Tom hit a triple . 湯姆 擊出 三壘 安打 . +The dog always barks at me . 狗 總是 對著 我 嚎叫 . +I wanted red shoes . 我 要 紅色 的 鞋子 . +He asked that we be silent . 他 要求 我們 安靜 . +I have no knife to cut with . 我 沒有 刀子 可用 來 切 . +Which book is yours ? 哪 本書 是 你們 的 ? +How much does this hat cost ? 这 顶 帽子 多少 钱 ? +Someone has been here . 有人 來 過 這裡 . +The boy entered by the back door . 那個 男生 從 後 門 進來 了 . +Tom is sloshed . 汤姆 醉 了 . +She married him . 她 嫁给 了 他 . +Wait for me downstairs . 在 楼下 等 我 +Pride goes before a fall . 骄傲 是 失败 的 先行者 . +Did they buy the juice ? 他們 有 買 果汁 嗎 ? +I can not find my suitcase . 我 找 不到 我 的 手提箱 . +Do you want some more tea ? 你 想 再 要点 茶 吗 ? +I just do not want to marry you . 我 就是 不想 嫁 給 你 . +Will you please explain the meaning of this sentence to me ? 您 能 为 我 解释 这 句句 子 的 意思 吗 ? +The bottle is filled with water . 這個 瓶子 裝滿 了 水 . +There were no more free seats . 没有 更 多 免费 座位 了 . +Luckily , we found an escape route . 幸運 的 是 , 我們 找到 了 逃生 通道 . +Let is get off here . 我们 在 这里 下车 吧 . +You remind me of a boy I used to know . 你 让 我 想起 我 过去 认识 的 一个男孩 . +You should wear a coat . 你 應 該 穿 一件 大衣 . +Tom is a racist . 汤姆 是 种族主义者 . +Bring me a bucket of water . 給 我 一桶 水 . +Other than Sundays , I work every day . 除了 星期天 我 每 一天 都 工作 . +Are you looking for work ? 你 是 在 找 工作 吗 ? +Are you sure Tom can do that ? 你 確定 湯姆 能 做 嗎 ? +Put in a little more sugar . 多 放 一點 糖 . +I will give you a call tomorrow . 明天 我 給 你 打 電話 . +He did not give me much advice . 他 没 给 我 多少 建议 . +You 'd better go by bus . 你 最好 坐 公共 汽車 去 . +I took the elevator to the third floor . 我 乘 电梯 上三楼 . +I did not mean to keep it secret . 我 不是 有意 要 保密 的 . +My brother is not as tall as I was two years ago . 我 弟弟 没 我 两年 前 高 . +We enjoyed singing songs together . 我們 喜歡 一起 唱歌 . +Pale ale is a low @-@ alcohol beer . 淡 啤酒 是 一種 酒精 含量 低 的 啤酒 . +That feels good . 感觉良好 . +Do not worry about it . 不要 擔心 它 . +Can I make a reservation for golf ? 我 能 预定 一下 打 高尔夫球 吗 ? +I saw a strange woman there . 我 看见 那儿 有个 奇怪 的 女人 . +Is not Tom from Australia ? 汤姆 不是 澳洲 来 的 吗 ? +I got acquainted with him last night . 我 昨晚 認識 了 他 . +You are a celebrity now . 你 现在 是 名人 了 . +The handyman was supposed to arrive at twelve noon , but got stuck in a traffic jam for a few hours . 這個 工人 本來 應該 在 中午 十二 點 到 達 , 但 他 被 交通堵塞 困住 了 幾個 小 時 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +We are very disappointed in you . 我们 对 你 很 失望 . +Dutch is closely related to German . 荷蘭語 與 德語 關 係 密切 . +I think Tom lied to us . 我 觉得 汤姆 对 我们 撒谎 了 . +This hotel does not serve lunch . 這家 旅館 不 提供 午餐 . +Interest rates are still low . 利率 还是 低 . +This is the best pizza I have ever eaten . 這 是 我 吃 過 的 最好 的 比薩 . +I think Tom is talented . 我 認為 湯姆 有 才能 . +Remember to cross your t is . 记得 在 字母 t 上画 上 横 . +They fell into the conversation immediately . 他们 很快 就 聊起来 了 . +Please bring us two cups of coffee . 請 給 我們 來 兩杯 咖啡 . +Tom found new evidence . 汤姆 发现 了 新 的 证据 . +My father was no less affectionate and tender to me than my mother was . 我 爸爸 对 我 的 爱和 照顾 不 比 我 妈妈 少 . +Tom has been uncooperative . 湯姆 不 合作 . +There were few people on the beach . 沙灘 上 的 人 非常少 . +Let me read the paper when you have finished with it . 报纸 看完 后 借 我 看下 . +You will have to start at once . 你 必须 马上 开始 . +Tom does not pay much attention to how he dresses . Tom 没有 花费 精力 去 打扮 自己 . +We have to do something , Tom . 汤姆 , 我们 必须 要 做 点 什么 . +If you do not understand , ask . 如果 你 不 懂 , 那 就 问 . +He got injured in a traffic accident . 他 在 一場 交通 意外 中 受 了 傷 . +He is not going to buy a camera . 他 不 打算 买 一个 摄像机 . +She slept for a few hours . 她 睡 了 几小时 . +Do not ask me for money . 不要 問 我 要 錢 . +I could not leave Tom . 我 不能 離開 湯姆 . +Tom is an unknown artist . Tom 是 個 不 知名 的 藝術家 . +I will be happy to attend your party . 我 很快 樂能 參加 你 的 派 對 . +She has no enemies . 她 没有 敌人 . +You look really nervous . 你 看起来 真的 很 紧张 . +Watch him and do what he does . 看著 他 並 跟著 他 做 . +My mother is not at home . 我 媽媽 不 在家 . +I asked her for a date . 我 向 她 提出 約 會 的 請求 . +I will treat you . 我 請 你 . +Bright ideas never occur to me . 我 總 想不出 什麼 好 點子 . +I was the one who had to tell Tom . 该 由 我 告诉 汤姆 . +Can you speak English ? 你們 會 說 英語 嗎 ? +Her father devoted his life to science . 她 父亲 把 一生 都 贡献 给 科学事业 了 . +I sometimes watch TV . 我 有 時 看 電視 . +The children were playing in the dirt . 孩子 们 在 尘土 里 游戏 . +She assigned him to the job . 她 指派 他 做 這個 工作 . +I ran as fast as possible . 我 盡 可能 地 跑 快 一點 . +Perhaps you are right . 也许 您 有 道理 . +Someone pushed me inside . 有人 推 我 到 裡面 . +Who can say what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +This extension cord is too short . 這條 延長 線 太短 了 . +I rejected the offer . 我 拒绝 了 报价 . +I asked a policeman for directions . 我 向 一個 警察 問路 . +Do you know my name ? 你 知道 我 的 名字 嗎 ? +The swimmers were numb with cold . 游泳 選手 們 凍僵 了 . +He visited his hometown for the first time in ten years . 他 10 年 中 第一次 访问 他 的 故乡 . +Is anybody in there ? 那边 有人 吗 ? +Is there a zoo in the park ? 公园 里 有 动物园 吗 ? +This table is reserved . 这个 桌子 被 预约 了 . +I have chapped lips . 我 的 嘴 裂开 了 . +Do you think the weather will be fine tomorrow ? 你 觉得 明天 天气 会 变 好 吗 ? +Well , girls , it is time to go . 那么 , 女孩 们 , 是 时候 出发 了 . +Her father made her tell him everything . 她 的 父親 要 她 告訴 他 一切 . +I do forgive Tom . 我 真的 原谅 汤姆 . +When does it begin ? 什么 时候 开始 ? +America likes to claim that it is a " classless " society . 美国 是 一个 自称 没有 社会阶层 的 国家 . +I usually walk to school . 我 通常 走 去 学校 . +Eat and drink . 吃 吧 , 喝 吧 . +They say love is blind . 人们 说 爱情 是 盲目 的 . +Are you free this afternoon ? 你们 今天下午 有空 吗 ? +This is delicious . 很 美味 . +You ought to ask him for advice . 你 应该 向 他 征求意见 . +I go to bed very early . 我 很 早就 去 睡 覺 . +Banks open at nine o 'clock . 銀行 九點 開門 +I saw your brother the other day . 前 幾天 我 看到 了 你 哥哥 . +Why do you want to study abroad ? 为什么 您 想到 外国 读书 ? +These days it snows quite a lot . 这些 天下 了 好多 雪 . +Even though I studied English for 6 years in school , I am not good at speaking it . 尽管 我 在 学校 学 了 6 年 英语 , 我 还是 说 不好 . +He was the first person to arrive . 他 是 第一 個 到 達 的 人 . +I was awfully confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can understand what she is saying . 我 能 了解 她 在 說 什麼 . +This could hurt our business . 这 会 打击 我们 的 生意 . +I hear they are pretty good . 我 听说 他们 挺 好 . +My sister resembles my mother . 我 妹妹 很 像 我 妈妈 . +I am as hungry as a horse . 我 餓 得 像 匹馬 . +I am not turning back . 我 不 回去 . +Tom stayed in Australia for three years . 汤姆 在 澳大利亚 呆 了 三年 . +Let me introduce my mother to you . 讓 我 向 你 介紹 我 的 母親 . +Remember Tom is advice . 记住 汤姆 的 建议 . +Tom probably does not know how to do that as well as Mary . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Roll the ball to me . 把 球 传给 我 . +He is a head taller than me . 他 比 我 高 一个头 . +I do not care . 我 无所谓 . +The boy came running into the room . 小男孩 跑 進 了 房間 . +My father works at a factory . 我 父亲 在 工厂 工作 . +A gentleman would not do such a thing . 一个 绅士 是 不会 做 这种 事 的 . +Tom does not want to let Mary go . Tom 不想 让 Mary 走 +I do not know what I should do now . 我 不 知道 现在 应该 做 什么 . +Are you interested in politics ? 你 对 政治 感兴趣 吗 ? +And everyone has the ability to contribute . 每个 人 都 有 能力 作贡献 . +Sorry , but I can not hear you very well . 對 不起 , 但 我 聽 不 清 你 說 的 話 . +I should be studying English , but I want to watch a movie . 我 真的 應該 學 英語 , 但是 我 想 看 電影 . +She felt insecure about her future . 她 對 她 的 未來 感到 沒有 安全感 . +Tom waited outside . 湯姆 在 外面 等 . +Do you understand ? 你 明白 了 嗎 ? +As for me , I have no objection . 对于 我 , 我 不 反对 . +He plays baseball tomorrow . 他 明天 將 打 棒球 . +How could things get worse ? 事情 怎麼 變 糟 的 ? +I have to get to sleep ! I have got classes tomorrow . 我 必须 去 睡觉 了 ! 我 明天 早上 有 课 . +Think about tomorrow . 請 思考 一下 明天 . +Do not come into my room . 不要 進入 我 的 房間 . +What do you think of those Japanese writers ? 你 觉得 那些 日本 作家 怎么样 ? +It seems to me that she has a tendency to exaggerate . 在 我 看來 , 她 有 一種 誇張 的 傾向 . +Maybe we should open it now . 我們 現在 可能 該 打開 它 . +I want to brush up my English . 我 要 溫習 一下 我 的 英文 . +It soon began to rain very hard . 很快 就 會 開始 大雨 了 . +The revolution has brought about many changes . 这场 革命 已经 带来 了 很多 改变 . +Tom worked hard to get the work done on time . 汤姆 努力 工作 按时 完成 工作 . +Since he has ambitions , he works hard . 因為 他 有 野心 , 他 很 努力 地 工作 . +This is too expensive ! 这 太贵 了 . +I have to say this . 我 得 说 这事 . +She is busy now and can not speak to you . 她 现在 忙 , 不能 跟 你 说话 . +It is your favorite song . 它 是 你 最 喜歡 的 歌 . +He convinced me of his innocence . 他 让 我 相信 他 是 无辜 的 . +He has more than five dictionaries . 他 有 五本 以上 的 字典 . +All I really want to do is talk to Tom . 我 真正 想 做 的 就是 跟 湯姆 說 話 . +My uncle is company launched a new product last month . 舅舅 的 公司 上个月 推出 了 一项 新 产品 . +I am glad I was there . 我 很 高興 我 在 那裡 . +Leave this to me . 把 这个 留给 我 吧 . +Please wait until the end of this month . 本月 结束 之前 请 等待 . +Only six people came to the party . 只有 六個 人 參加 了 派 對 . +Come along with us . 跟 我們 一起 來 吧 . +That was really unfair . 那 真不 公平 . +You are not authorized to enter there . 你 无权 进入 那里 . +She is not afraid of anything . 她 不 害怕 任何 東西 . +The paint was coming off the wall . 油漆 從 牆上 脫落 . +She kept on working . 她 繼續 工作 . +She must have done it yesterday . 她 昨天 一定 已經 做 過 了 . +A big tree fell in the storm . 一棵 大樹 在 暴風 中 倒下 . +I look forward to seeing you again . 我 期待 著 再次 見 到 你 . +Why are you wearing that scarf ? 你 为什么 戴 那条 围巾 ? +I asked him to open the window . 我 請 他 把 窗戶 打開 . +I have not smoked for ages . 我 很久没 有 抽烟 了 . +I agree with him . 我 同意 他 . +We will continue . 我们 要 继续下去 . +What time shall I pick you up ? 我 該 幾點 去 接 你 ? +I will let you know in advance . 我会 让 你 提前 知道 . +I only know him by name . 我 只 知道 他 的 名字 . +May I help you ? 我 能 幫 你 嗎 ? +Do you have a lot of money on you ? 你 身上 有 很多 钱 吗 ? +Can you do that by yourself ? 你 自己 一個 人 能 做 嗎 ? +Other than Sundays , I work every day . 我 除了 星期天 外 每天 都 上班 . +The policeman arrested him for drunken driving . 警察 因 酒 後 駕駛 逮捕 了 他 . +I like shopping on Ebay . 我 喜欢 在 eBay 上 购物 . +This is a bad thing . 這 是 件 壞 事 . +They broke into the jewelry shop . 他們 闖進 了 珠寶 店 . +I eat meat three times a week . 我 每週 吃 肉 三次 . +I go to church on Sundays . 周日 我 去 做礼拜 . +The conflict between blacks and whites in the city became worse . 在 这个 城市 , 白人 和 黑人 间 的 争端 愈演愈烈 . +They hugged . 他们 拥抱 . +They trust Tom . 他们 信任 汤姆 . +Mother prepared lunch for me . 妈妈 为 我 准备 了 午饭 . +Speaking English is not easy . 說 英語 是 不 容易 的 . +I was in London last month . 上個月 我 在 倫敦 . +Get me the newspaper . 去 拿 一下 报纸 . +It is ten minutes ' walk to the station . 步行 到 車 站 要 花 十分 鐘 . +It is not good for anybody . 这 对 任何人 都 不好 . +I have always trusted your judgment . 我 一直 都 相信 你 的 判断 . +Where is the kitchen ? 厨房 在 哪 ? +I was very relaxed . 我 很 放 鬆 . +Write your name and address on this envelope . 把 你 的 姓名 和 地址 寫 在 這個 信封 上 . +He likes to watch baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I heard our dog barking all night . 我 聽到 我們 的 狗叫 了 一整夜 . +She fainted when she saw blood . 她 看见 血 就 晕 了 . +I was not alone then . 我 当时 不 孤单 . +I have no friends to help me . 我 没 朋友 帮 我 . +I asked him for a favor . 我 請 他 幫 忙 . +He makes good use of his talents . 他 善用 他 的 天赋 . +I just want to be happy . 我 只 想 高兴 . +She is going to Mount Tate . 她 將 去 立山 . +He told me an interesting story . 他 告訴 了 我 一個 有趣 的 故事 . +I do not like being the one who always has to milk the cow . 我 不 喜欢 做 那个 总是 挤 牛奶 的 人 +He placed the book on the shelf . 他 把 书 放在 了 书架上 . +I know that life is short . 我 知道 生命 是 短暂 的 . +I am just playing the devil is advocate . 我 在 给 魔鬼 当 辩护士 . +What is your opinion on that ? 关于 那个 你 有 什么 看法 ? +I got on the train for London . 我 登上 去 伦敦 的 火车 . +Something is changing . 有些 東西 在 變化 . +English is studied all over the world . 世界各地 都 讀 英語 . +A cold front swept over Europe . 一股 寒流 侵袭 了 欧洲 . +He is getting along with his neighborhood . 他 和 他 的 邻居 相处 . +Please speak a little more slowly . 請 講 慢 一點 . +He parked his car in front of the building . 他 把 车 停 在 大楼 前 . +Foxes eat hens . 狐狸 吃 母鸡 . +The explanation is by no means satisfactory . 這個 解釋 不是 很 令人 滿意 . +Can you feel the difference ? 你 能 感受 到 不同 之處 嗎 ? +I am looking forward to seeing him . 我 期待 再次 見 到 他 . +This coffee is too hot for me to drink . 这 咖啡 热 得 我 没 办法 喝 . +I will never see him again . 我 永遠 不 會 再 看到 他 . +I like chocolate . 我 喜歡 巧克力 . +He was scared you would shoot him . 他 害怕 你 會 開 槍 打 他 . +I am not tired at all . 我 根本 不累 . +She poured brandy into the glasses . 她 把 白蘭 地 倒 進 玻璃杯 裡 . +She is very clever . 她 很 聰明 . +That is Tom is mother . 那 是 汤姆 的 妈妈 . +See you later . 再见 . +What if Tom is still alive ? 如果 汤姆 还 活着 呢 ? +I also had a very good time . 我 也 过 得 很 愉快 . +Those records are not accessible to the public . 這些 記錄 不 對 公眾 開放 . +Nobody knows when the earthquake will occur . 没有 人 知道 地震 何时 会来 . +After they argued , they did not speak to each other for a week . 他们 争吵 后 , 一周 都 没有 再 说话 . +What is this ? 這 是 什麼 啊 ? +She gave birth to a daughter yesterday . 她 昨天 生 了 一個 女兒 . +Do not put your elbows on the table . 不要 把 你 的 手肘 放在 桌子 上 . +Do you think he is good for the position ? 你 认为 他 适合 这个 职位 吗 ? +I turned the doorknob . 我 轉動 了 門 把 . +Tom is looking for someone to take Mary is place . Tom 正在 找 其他人 代替 Mary . +I canceled my hotel reservation . 我 取消 了 我 旅館 的 預訂 . +Let is have a few drinks tonight . 讓 我們 今晚 喝 幾杯 . +Tom is a very good singer . 汤姆 是 个 很好 的 歌手 . +I can not find fault with him . 我 挑不出 他 的 毛病 . +It is not a road , but a path . 它 不是 一條 路 , 而是 一條 小徑 . +My mother opened the door very carefully . 我 妈妈 小心翼翼 地 打开门 . +What have I got to lose ? 我 要 失去 什么 ? +Could I park my car here ? 我 能 把 我 的 车 停 在 这儿 吗 ? +Do you have a fever ? 你 發燒 了 嗎 ? +May I borrow your bike ? 我 能 借 一下 您 的 自行车 吗 ? +Put it back on the desk . 把 它 放回 桌子 上 . +She is a noted singer . 她 是 一个 著名 的 歌手 . +You are not going in the right direction . 你 要 南辕北辙 了 . +What did he ask you ? 他 問 你 什麼 ? +She has blue eyes . 她 有 蓝色 的 眼睛 . +Everybody looks up to Tom . 每个 人 都 看 向 汤姆 . +There is a basket under the table . 桌子 底下 有 一個 籃子 . +He accepted her gift . 他 接受 了 她 的 礼物 . +I asked him point @-@ blank . 我 直接 地 問 了 他 . +I play volleyball a lot . 我 常 打 排球 . +Let is eat while the food is warm . 讓 我們 趁 熱 吃 吧 . +Tom is asleep on the couch . 汤姆 在 长沙 发 上 睡着 了 . +This wine tastes great . 這 葡萄酒 非常 好喝 . +He is a man of ability . 他 是 个 能干 的 男人 . +I speak Swedish . 我 说 瑞典语 . +There is something I want you to see . 我 有 东西 想 给 你 看看 . +It is my job . 這 是 我 份 內 的 事 . +Feel this . 来 感受一下 这个 . +That is a great poem . 這 是 一首 很棒 的 詩 . +Tom is a French teacher . 汤姆 是 法语 老师 . +I have not seen you for ages . 我 已經 有 很 長 的 時間 沒有 見到 你 了 . +In some countries , the punishment for treason can be life in prison . 在 一些 國家 , 叛國 罪 的 懲罰 可以 是 終身 監禁 . +He is three years older than her . 他 比 她 大 三岁 . +I do not understand any French . 我 一点 法语 都 不 懂 . +Riding double on a bicycle is dangerous . 腳踏車 雙載 是 危險 的 . +Tom is as tall as his father . 湯姆 跟 他 爸爸 一樣 高 . +Where is the pain ? 哪裡 痛 ? +I am busy . 我 很忙 . +Are we allowed to take pictures here ? 这里 允许 拍照 吗 ? +What did you get for Christmas ? 你 耶 誕節 得到 了 什麼 ? +We got permission to park here . 我們 有 在 這裡 停車 的 許 可 . +He came home three hours later . 他 三個 小 時 後 回家 了 . +She proceeded with the work . 她 继续 工作 . +I have a computer . 我 有 一台 电脑 . +You will never be alone . 你 永远 不会 一个 人 的 . +He rescued a boy from drowning . 他 救 了 一个 溺水 的 男孩 . +I think we are ready to do that . 我 认为 我们 准备 好 了 . +We all like cycling . 我们 都 喜欢 骑 自行车 . +She used to live with him . 她 以前 和 他 住 一起 . +Are you for real ? 你 是 认真 的 吗 ? +I do not feel very well . I should go home . 我 感覺 不太好 , 我 該 回家 . +I was not quite sure what to say . 我 不 太 確定 要 說 什麼 . +I do not understand at all . 我 完全 不 懂 . +Tom was fired . 湯姆 被 解僱 了 . +That movie is for children . 那部 電影 是 給 小孩 看 的 . +The river is on the other side of the hill . 河 在 山丘 的 另一端 . +I have finished reading the book . 我 看 完 了 这 本书 . +Tom could not conceal his disappointment . 汤姆 不能 掩饰 他 的 失望 . +Why are you burning these pictures ? 为什么 你 要 烧 这些 图片 呢 ? +Give me the report . 给 我 报告 . +The dog barked at the mailman . 狗 對著 郵差 叫 . +What does this word mean ? 这个 词 是 什么 意思 ? +He is studying at his desk . 他 正在 他 的 書 桌旁 讀書 . +He had to clean his room . 他 不得不 打扫 了 他 的 房间 . +Tom was a teacher for nearly thirty years . 汤姆 当 教师 约 三十年 了 . +I suggest we move to a safer location . 我 建議 我們 去 個 更 安全 的 地方 . +It is said that treasure is buried in this area . 据说 这个 区域 埋 着 财宝 . +Nobody knows where he has gone . 沒 有人 知道 他 去 了 哪裡 . +He was wet all over . 他 从头到脚 都 湿 了 . +He patted me on the shoulder . 他 拍拍 我 的 肩膀 . +He is a learned man . 他 是 个 有 教养 的 人 . +Tom is hope was to win first prize . 湯姆 希望 贏 得 第一名 . +The wind blew too hard for them to play in the park . 风 刮得 太猛 , 他们 没法 在 公园 里 玩 了 . +This is my book . 这 是 我 的 书 . +I admire you for your courage . 我 佩服 你 的 勇氣 . +Can you use a computer ? 您 会 使用 计算机 吗 ? +I regret eating those oysters . 我 後 悔 吃 了 那些 牡蠣 . +The sky grew darker and darker . 天空 变得 越来越 暗 了 . +I solved the problem easily . 我 很 容易 地 解決 了 這個 問題 . +Tom let Mary go home . 湯姆 讓 瑪麗 回家 . +We will change trains at the next station . 我們 會 在 下 一站 換 火車 . +Do not read while walking . 不要 边走边看 书 . +You should have told me yesterday . 你 昨天 就 该 告诉 我 了 . +Tom does not like people who smoke in no smoking areas . 汤姆 讨厌 在 禁烟 区 吸烟 的 人 . +Mary had to go to school . 瑪麗 必須 去 上 學 . +I ate your strawberries . 我 吃 了 你 的 草莓 . +He is new in town . 他 刚来 这 镇上 . +I am a vegetarian . 我 是 素食主义者 . +Let is go to the beach . 讓 我們 去 海邊 吧 . +Tom does not want to go alone . 汤姆 不想 一个 人 走 . +The problem is Tom . 問題 是 湯姆 . +Every time he comes here , he orders the same dish . 每次 他 来 这里 点 一样 的 菜 . +Tom yawned . 汤姆 打哈欠 了 . +Are you serious ? 你 是 认真 的 吗 ? +He came to Japan seven years ago . 他 七年 前來 日本 . +She made a man of him . 她 使 他 長大 成人 . +Please let us know . 請 讓 我們 知道 . +He had no luck in finding work . 他 找 工作 不 走 運 . +He lived to be eighty years old . 他 活到 了 八十 歲 . +I am trying to think of a better plan . 我 试 着 考虑 更好 的 计划 . +I stayed home because of the rain . 因為 下雨 , 所以 我 待 在家 裡 . +Where is the nearest travel agency ? 最近 的 旅行社 在 哪裡 ? +I saw him cross the street . 我 看见 他 穿过 了 马路 . +How tall is your brother ? 你 的 兄弟 多 高 ? +I like to do my homework . 我 喜歡 做 我 的 作業 . +I am very lonely . 我 很 寂寞 . +He arrived in time . 他 准时 来 了 . +I did not see anything . 我什麼 都 沒 看見 . +What is your favorite way to cook potatoes ? 你 最 喜歡 用 什麼 方式 煮 馬鈴薯 ? +You must start immediately . 你 必须 马上 开始 . +Tom gave Mary a flashlight . 汤姆 给 了 玛丽 一把 手电筒 . +He crossed the river in a small boat . 他 乘 小船 過河 . +He gave me authority to fire them . 他 授權 給 我 解僱 了 他們 . +I think Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +There was a steady increase in population . 人口 穩定 地 增加 . +Admission is free for children . 儿童 免费入场 . +Tom blushed . 汤姆 脸红 了 . +Do not throw away this magazine . 不要 丟掉 這 本 雜 誌 . +My wife is afraid to drive my new car . 我 的 妻子 害怕 开 我 的 新车 . +I am not a child , but sometimes you talk to me as if I were a child . 我 不是 小孩子 , 但 有时 你 跟 我 说话 就 好像 我 是 小孩子 一样 . +Tom is busy now and can not talk with you . 湯姆 現在 忙 , 不能 跟 你 講 話 . +It snowed a lot last year . 去年 下 了 很多 雪 . +He asked me if I was busy . 他 问 我 是否 很 忙 ? +He tried to unify the various groups . 他 試著 統一 不同 的 團體 . +He likes to smoke in the toilet . 他 喜欢 在 厕所 里 吸烟 . +You are taller than most of Tom is friends . 你 比 汤姆 的 大部分 朋友 都 高 . +I have three cameras . 我 有 三台 攝影 機 . +I know an English teacher who comes from Canada . 我 认识 一个 加拿大 来 的 英语 教师 . +The door was kicked open . 门 被 踢开 了 . +Tom and I are teammates . 湯姆 和 我 是 隊友 . +Let me go alone . 讓 我 一個 人 去 . +This time it is different . 這次 不 一樣 . +The bridge will be completed by the end of this year . 大橋 將 在 年底 完工 . +He started going bald quite young . 他 很年 輕 就 開始 禿頭 了 . +Tom deserves to be blamed . 汤姆 应当 被 责备 . +I do not understand German . 我 不 懂 德语 . +Do you have any plans for tomorrow ? 明天 你 有 什么 安排 没有 ? +I am hungry , so I am going to get something to eat . 我 餓 了 , 所以 我 要 吃 東西 . +I am as hungry as a horse . 我 饿 得 跟 饿虎扑羊 似的 . +Will you have another slice of pie ? 你 要 再 來 一塊 餡餅 嗎 ? +I share a bedroom with my sister . 我 跟 我 姐姐 共用 同一 間 臥房 . +Let me have a look at those photos . 让 我 看看 那些 照片 . +Have you seen any movies lately ? 最近 看 了 什么 电影 没有 ? +They love each other . 他們 彼此 相愛 . +I will pick you up at your home . 我会 去 你家 接 你 . +My papers were in that box . 我 的 文件 在 那個 箱子 裡 . +I accompanied her on the piano . 我 彈 鋼琴 為 她 伴奏 . +They dropped out of school . 他們 輟學 了 . +This is smaller than that . 这个 比 那个 更 小 . +His brazen act of defiance almost cost him his life . 他 怀疑 的 无耻 行为 差点 要 了 他 的 命 . +We are sorry we can not help you . 我们 很 遗憾 没 能 帮助 你们 . +Our school is fifty years old . 我們 學校 有 五十年 的 歷史 了 . +That is just your imagination . 这 只是 幻想 而已 . +He called me up almost every day . 他 幾乎 每天 打 電話 給 我 . +I used to swim in this river . 我 以前 在 這條 河裡 游泳 . +Where did you guys go ? 你们 这些 家伙 去 哪儿 了 ? +Tom waved at Mary from the helicopter . 湯姆 在 直升 機上 向 瑪麗揮 手 . +I am a little confused . 我 有 一点 困惑 了 . +There is one apple on the desk . 桌上 有个 苹果 . +I do not like reading at all . 我 一点 都 不 喜欢 阅读 . +I hope you will call again . 我 希望 你 會 再 打 一次 電話 . +Tom sat at his desk working . 湯姆 在 他 的 桌邊 工作 . +We should tell children how to protect themselves . 我们 应该 告诉 孩子 怎么 保护 自己 . +Hand me the remote . 把 遥控器 递给 我 . +I do not want to lose you . 我 不想 失去 你 . +What are you looking at ? 你 在 看 什么 ? +He is mean . 他 很 凶 . +You have the same racket as I have . 你 的 球拍 跟 我 的 一樣 . +Tom works at a fast @-@ food restaurant . 汤姆 在 一家 快餐店 工作 . +The boy feared the dark . 这个 男孩 害怕 黑夜 . +I always have to wear a tie because of my job . 因為 這份 工作 的 關 係 , 我 總是 要 打 領帶 . +Please come whenever you like . 請 你 想 什麼 時候 來 都 可以 . +Do you know who he is ? 你 知道 他 是 誰 嗎 ? +That child resembles his father . 那 孩子 和 他 父亲 很 像 . +How many friends do you have ? 你 有 多少 朋友 ? +She understands you now . 她 现在 了解 你 . +I do not mind if the weather is hot . 天气 热点 儿 没关系 . +Are you busy on Sunday afternoon ? 你 週日 下午 忙 嗎 ? +Why am I still here ? 为什么 我 还 在 这里 ? +Tom opened the blinds and looked out the window . 汤姆 打开 百叶窗 , 向 窗外 望去 . +I do not trust businessmen . 我 不 相信 商人 . +Your manners are not very good . 你 的 禮貌 不是 很 好 . +I can not do anything . 我 不会 做 任何 事 . +You and I are the same age . 你 和 我 同龄 . +All their secrets have been revealed . 他們 所有 的 秘密 都 已經 被 揭曉 了 . +It was very far . 它 很遠 . +Is she your mother ? 她 是 你 媽 媽 嗎 ? +His shirt was stained with sauce . 他 的 衬衫 被 酱汁 弄脏了 . +Would you like more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Stop talking loudly . 停止 大声 说话 . +I study about two hours every day . 我 每天 讀書 大約 兩個 小 時 . +We know that all men are mortal . 我們 知道 人 皆 難免 一死 . +Please keep an eye on my suitcase . 請 留神 看著 我 的 手提箱 . +She whispered something into his ear . 她 在 他 耳邊 低聲 說 話 . +You could run . 你 能 跑 . +Tom really does not like you . 汤姆 真的 不 喜欢 你 . +In this case , the adjective goes before the noun . 在 这种 情况 下 , 形容词 放在 名词 前面 . +He does not come here every day . 他 不是 每天 都 來 這 . +I helped my father wash his car . 我 幫 我 父親 洗 他 的 車 . +Tom still can not read . 汤姆 还是 不能 读书 . +Give me the same , please . 请 给 我 同样 的 东西 . +Why are you so mean to me ? 你 为什么 对 我 这么 小气 ? +Who built it ? 这 是 谁 建 的 ? +Some people believe in ghosts . 有些 人 相信 鬼 . +This desk is made of wood . 这 张 书桌 是 木制 的 . +Tom is consoling Mary . 汤姆 在 安慰 玛丽 . +I wrote the wrong address on the envelope . 我 在 信封 上 写错 了 地址 . +Not a star was to be seen . 星星 沒有 被 看到 . +The audience was very large . 观众 人数 庞大 . +Europeans like to drink wine . 欧洲人 喜欢 喝酒 . +I do not like this one . 我 不 喜欢 这个 . +His company did not survive the crisis . 他 的 公司 沒有 從 危機中 倖 存 . +There was nothing left in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Tom has not finished his lunch yet . 湯姆 還 沒 吃 完 他 的 晚飯 . +Do not you want to use mine ? 你 不想 用 我 的 嗎 ? +If you 'd listen a little more carefully to what the teacher says , you 'd probably be able to understand . 假如 你 在 老师 讲课 的 时候 再 集中 一点 去 听讲 的话 , 你 应该 就 能 弄 明白 了 . +We want to be on the first bus tomorrow morning . 我们 想 乘 明天 早上 第一班 公交车 . +He will make a good team captain . 他 會 成為 一個 好 隊長 . +I do not want it anymore . 我 再也 不 想要 了 . +I have been to Australia three times . 我 去過 澳洲 三次 . +People should do their best . 人們 應該 盡力 而為 . +He is getting along with his employees . 他 和 他 的 員工 相處 . +I am asking what your opinion is . 我 在 問 你 的 選擇 是 甚麼 . +He shook his head up and down . 他 上下 晃 了 晃头 . +Would you like another cup of tea ? 你 想 再 要 杯 茶 吗 ? +He changed schools last year . 去年 他 转校 了 . +Please come back home as soon as you can . 请 尽快 回家 . +I have to go to the bank . 我 必须 到 银行 去 . +Tom will never willingly go there by himself . 汤姆 绝不会 愿意 独自 去 那里 . +I do not have any change . 我 没 任何 零钱 . +A person views things differently according to whether they are rich or poor . 每 一個 人 對 事情 的 看法 不同 是 依據 他們 是 富有 還是 貧窮 . +I think you will find it convenient to put a short @-@ cut on the desktop . 我 想 你 迟早会 知道 在 桌面 建立 一个 快捷方式 是 有 多 方便 . +A fox is not caught twice in the same snare . 狡兔三窟 . +I am lost . Can you help me , please ? 我 迷路 了 , 能 不能 请 您 帮 我 一下 ? +Attack is the best form of defense . 進攻 是 最好 的 防禦 . +The system worked . 系统 运行 起来 了 . +My mother is a good woman . 我 媽媽 是 個 好 女人 . +He checked in at a good hotel . 他 入住 了 一間 很好 的 旅館 . +Tomorrow there is a high probability it will rain . 明天 很 有 可能 下雨 . +Let is get to work . 干活 吧 . +I think you are quite right . 我 認為 你 說 得 很 對 . +I like summer the best . 我 最 喜歡 夏天 . +He was named after his grandfather . 他 以 他 祖父 的 名字 被 命名 . +You should get your car fixed . 你 應該 把 你 的 車 修好 . +Nagoya is between Tokyo and Osaka . 名古屋 在 東京 和 大阪 之間 . +Mary succeeded in her studies . 玛丽 在 研究 上 成功 了 . +Tom had a hunch that Mary was seeing someone else . 汤姆 预感 到 玛丽 在 见 别人 . +You do not have to kick yourself . 你 不要 自甘堕落 . +Please take good care of yourself . 請 好好 照顧 你 自己 . +One year has twelve months . 一年 有 十二 個 月 . +Could you turn it down ? 你 可以 轉 小聲 一點 嗎 ? +Carrots cost three dollars . 胡萝卜 要 三 美元 . +I am free tonight . 我 今晚 有空 . +He is younger than me . 他 比 我 年轻 . +I did not know that he was Japanese . 我 不 知道 他 是 日本 人 . +Tom said that he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +The boy actually was going to do it . 這個 男孩 實際 上 是 要 去 做 . +Tom and I are in the same class . 湯姆 和 我 在 同一 個 班 裡 . +Is this a duty @-@ free shop ? 這 是 一間 免稅 商店 嗎 ? +Why are you angry ? 你 为什么 生气 ? +I do not like learning irregular verbs . 我 不 喜欢 学习 不规则 动词 . +I graduated from high school last year . 去年 我 從 高中 畢業 了 . +What would the world be like without women ? 没有 女人 的话 , 世界 会 是 什么样 ? +This guidebook might be of use to you on your trip . 这本 导游 册子 或许 会 对 你 的 旅行 有 帮助 . +I will only buy the car if they repair the brakes first . 除非 他们 事先 修好 刹车 , 我 才 会 买 车子 . +The ticket is good for three days . 這 張 票 的 有效期 是 三天 . +He dropped the cup and broke it . 他 把 杯子 掉 到 地板 上 打碎 了 . +Let me do that . 让 我 去 做 . +Tom passed away October 20 , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +He studied English history . 他 学 了 英国 历史 . +Suddenly , it began to rain . 突然 開始 下雨 . +I still have not found anything . 我 还 什么 都 没 找到 呢 . +My wife wants to adopt a child . 我 妻子 想 收养 一个 孩子 . +We all have secrets . 我們 都 有 秘密 . +We had a good conversation . 我们 谈 得 不错 . +He had his shirt on inside out . 他 把 他 的 襯衫 穿反 了 . +Who will be elected chairman ? 谁 将 当选 主席 呢 ? +I would like to dance . 我 想要 跳舞 . +We gazed at the beautiful scenery . 我們 望著 這 美麗 的 風景 . +That could not have gone any worse . 再 糟糕 不过 了 +I have nothing to say with regard to that problem . 对于 这个 问题 我 无可奉告 . +I just can not believe it . 我 真是 不能 相信 . +The old man made out his will . 這位 老先生 立 了 他 的 遗嘱 . +I thought that we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +Are you saying Tom is hiding something from us ? 你 说 Tom 对 我们 隐藏 了 一些 事情 ? +Cheers ! 乾杯 ! +I am first . 我 是 第一 . +He left the book on the table . 他 在 桌子 上 留下 了 這 本書 . +I need to go to the toilet . 我 要 去 上 廁所 . +I am ill . 我 生病 了 . +He ate all of the apple . 他 把 整个 苹果 都 吃 了 . +What is your name ? 您 叫 什么 名字 ? +Being rejected is painful . 被 拒絕 是 痛苦 的 . +Tom is not dumb . 汤姆 不 傻 . +Could you help me find my dog ? 你 能 幫 我 找到 我 的 狗 嗎 ? +There is no mistake . 没有 错误 . +Please help me with my homework . 請 幫 我 做 我 的 家庭 作業 . +He was not able to open the box . 他 沒有 能力 打開 箱子 . +His new car is wonderful . 他 的 新車 很棒 . +I could barely get out of bed yesterday . 我 昨天 幾乎 下 不了 床 . +Come whenever you want . 什么 时候 想来 就 过来 吧 . +English is spoken in Canada . 在 加拿大 的 人 說 英語 . +I do not know where he lives . 我 不 知道 他 住 在 哪裡 . +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +The police are checking their bags . 警察 正在 检查 他们 的 包 . +Give me a bottle of wine . 給 我 一瓶 葡萄酒 . +Breathe through your nose . 用 你 的 鼻子 呼吸 . +She cried her heart out . 她 哭 得 肝腸寸斷 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +Do you want something to drink ? 你 想要 什么 喝 的 吗 ? +Do not you have any feelings for me at all ? 你 对 我 完全 没有 感觉 吗 ? +The market is big . 市場 很大 . +May I go to the bathroom ? 我 可以 去 洗手 間 嗎 ? +I like tea . 我 喜欢 茶 . +I am talking about my friend . 我 在 談 我 的 朋友 . +The petals are floating on the water . 花瓣 浮 在 水面 上 . +We must finish our homework first . 我們 必須 先 完成 我們 的 功課 . +You are so stupid . 你 真傻 . +The police are after him . 警察 在 跟著 他 . +The little cabin was bathed in moonlight . 小木屋 沐浴 在 月光 之中 . +Where did you go that night ? 那天 晚上 你 在 哪裡 ? +Tom could not see anybody . 汤姆 看不到 任何人 . +Tom is not used to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +Please copy this . 麻煩 拷貝 這個 . +You must keep quiet for a few days . 你 该 安静 几天 . +A strange feeling came over me . 我 觉得 不 舒服 . +A hungry pig dreams of acorns . 飢餓 的 豬 夢 到 橡樹子 . +There is a spoon missing . 缺 一把 勺子 . +My father made a shelf for me . 我 父親 為 我 做 了 個 架子 . +Do you know how to drive this thing ? 你 知道 怎么 驾驶 这 玩意儿 吗 ? +Will you show me what you bought ? 你 愿意 给 我 看看 你 买 了 什么 吗 ? +I was just about to leave the house when the telephone rang . 我 正要 离开 家 的 时候 电话响 了 . +Did Tom say who ? 汤姆 说 是 谁 了 吗 ? +Can you tell me where the nearest bus stop is ? 你 能 把 最近 的 公车站 指给 我 看 吗 ? +I could not find his house . 我 找 不到 他 的 家 . +I fell asleep while reading . 我 看书 的 时候 睡着 了 . +I bought that car . 我 買 了 那輛 車 . +He is gone to Nagoya on business . 他 因公 出差 到 名古屋 . +Why are you being so secretive ? 你 為 什麼 這麼 神秘 ? +I will not be getting married this year . 我 今年 不 結婚 . +I will be back late . 我 會晚 一點 回來 . +Tom made a choice . 汤姆 做出 了 选择 . +What was that meeting about ? 那场 会议主题 是 什么 ? +He thanked me for coming . 他 感謝 我 的 到 來 . +He passed the entrance examination . 他 通過 了 入學 考試 . +You should not go out . 你 不 應該 出去 . +How do you view this matter ? 您 怎麼 看 這個 問題 ? +I almost won . 我 几乎 赢 了 . +They have elected a new government . 他們 選出 了 新政府 . +Do you want to have sushi tonight ? 你 今晚 想 吃 壽司 嗎 ? +I think you are lying . 我 觉得 你 在 撒谎 . +The death penalty had been done away with in many states in the USA . 死刑 在 美国 的 很多 州 都 被 废除 了 . +I have lost my watch . 我 把 我 的 表 丢 了 . +He sleeps during the day and works at night . 他 白天 睡觉 , 晚上 工作 . +They have many friends . 他们 有 很多 朋友 . +Rice is grown in rainy regions . 人們 在 多 雨 地區 種植 水稻 . +The flood water reached the level of the windows . 洪水 涌到 了 窗户 的 高度 . +I can not blame Tom for not waiting . 我 不能 怪 湯姆 不 等著 . +I have done everything necessary . 我 做 完 了 所有 重要 的 事 . +I agree with you absolutely . 我 完全 赞同 你 . +Two men are checking on what is wrong with the car . 两个 男人 在 检查 汽车 出 了 什么 故障 . +Tom helped us all . 湯姆 幫 了 我們 . +Try to have a positive attitude about everything . 试 着 用 积极 的 态度 去 面对 任何 事情 . +Let is split the reward fifty @-@ fifty . 讓 我們 平分 這個 報酬 吧 . +I am disgusted with him . 我 厌恶 他 . +People like you should not be here . 你 這樣 的 人 不該 在 這裡 . +That is the part I liked best . 那 是 我 最 喜歡 的 部分 . +Do you think they noticed ? 你 认为 他们 注意 了 吗 ? +I do not want him to touch me . 我 不想 被 他 感动 . +It is not something anyone can do . 这 不是 任何人 都 能 做 的 事 . +He compared his car to the new model . 他 拿 他 的 車 和 新款 車作 比較 . +Have you ever seen such a nice film ? 你 看过 这么 好看 的 电影 吗 ? +He went to the store . 他 去 了 商店 . +If her temperature goes up , send for the doctor . 如果 她 的 體溫 上升 , 派 人 去 請 醫生 來 . +What kind of work will you do ? 你 將 做 什麼樣 的 工作 ? +The precise time of their arrival is not known . 他們 到 逹 的 確 切 時 間 還 不 知道 . +I do not understand German at all . 我 完全 不 懂 德语 . +Tom sits at his computer eight hours a day . Tom 每天 在 電腦 前 工作 八 小 時 . +I want a guitar . 我 想要 一把 吉他 . +Will you be at home this afternoon ? 你 今天下午 会 在家 吗 ? +Tom turned on the car is fog lights . 湯姆 打開 了 車 的 霧 燈 . +She is a wonderful woman . 她 是 個 很棒 的 女人 . +When can we eat , I wonder . 我 不 知道 我們 什麼 時候 可以 吃 . +He turned to his friends for help . 他 尋求 他 的 朋友 的 幫助 . +Get dressed . 你 穿 點 東西 . +Please pardon me for coming late . 抱歉 那么 晚来 . +I am Hungarian . 我 是 匈牙利人 . +I want you to not go to Boston with Tom . 我 要 你 別 和 湯姆 去 波士 頓 . +We are preparing to do so . 我们 准备 去 做 . +New York is on the Hudson River . 紐約 位 在 哈得遜 河 . +The door clicked shut . 门 咔哒 一声 关上 了 . +Could you come and see me tomorrow ? 你 明天 可以 來看 我 嗎 ? +There is a small garden in front of my house . 我家 前面 有个 小 庭院 . +I am glad you were right . 很 高兴 你 是 对 的 . +Everybody thinks so . 大家 都 是 这样 想 的 . +You have changed so much that I can hardly recognize you . 你 变 了 那么 多 , 以至于 我 几乎 认不出 你 了 . +I am very ashamed of myself about what I have done . 我 對 自己 的 作為 很 內疚 . +I wish I were an only child . 我 要是 个 独子 就 好 了 . +I would like to know her name . 我 想 知道 她 的 名字 . +I was bored with his old jokes . 我 厌倦 了 他 的 老 笑话 . +I began running . 我 開始 跑 . +You might have heard of it . 你 可能 听说 过 . +I go to school by subway . 我 搭 地铁 上学 . +People rely too much on phones these days . 現代 人 太 仰賴 手機 . +Skating is one of my hobbies . 溜冰 是 我 的 嗜好 之一 . +There is something strange about Tom today . 今天 汤姆 有点 奇怪 . +Their contract is to run out at the end of this month . 他们 的 合同 在 这个 月底 到期 . +You told Tom you could do that , did not you ? 你 告诉 汤姆 你 可以 做到 , 是 吗 ? +My parents will not let me go out with boys . 我 父母 不让 我 和 男生 约会 . +Pork does not agree with me . 猪肉 不 适合 我 . +I cannot speak Mandarin well . 我 的 中文 說 得 不好 . +I can not go with you today because I am very busy . 今天 我 太 忙 了 , 没法 和 你 一起 去 . +He did not know that . 他 不 知道 . +School begins on April the tenth . 學校 在 四月 十日 開學 . +She borrowed a saw from the farmer . 她 向 農夫 借 了 一把 鋸子 . +I can do without his help . 沒有 他 的 幫助 我 也 能 做 . +My mother is in the hospital now . 我 媽媽 現在 在 醫院 . +Spring is coming soon . 春天 就要 来 了 . +My throat feels dry . 我 喉咙 很 干 . +Respect for law is fundamental to our society . 尊重 法律 是 我們 社會 的 基礎 . +I have to iron my shirt . 我 必須 熨 我 的 襯衫 . +My plan is to buy a car . 我 打算 買輛 車 . +He has no eye for women . 他 對 女人 沒有 眼光 . +They are jealous of our success . 她们 嫉妒 我们 的 成功 . +The economy is picking up . 经济 在 复苏 之中 . +Mary has beautiful brown eyes . 玛丽 的 褐色 眼睛 很美 . +All of the milk was spilled . 所有 的 牛奶 都 灑 出去 了 . +He runs . 他 跑 . +Having a slight headache , I went to bed early . 因為 我 有 點 頭 疼 , 所以 我 早早 上床 睡覺 . +He gave correct answers to the questions . 他 對 這個 問題 給 了 正確 的 答案 . +Speaking in French is fun . 说 法语 很 有趣 . +They say she and her husband can not agree on anything . 他們 說 她 和 她 的 丈夫 不 可能 對 任何 事 達成 協議 . +Tomorrow , he will land on the moon . 明天 , 他 将 登上 月球 . +They are in danger . 他們 有 危險 . +I want to become a singer . 我 想 當 歌手 . +Her house is at the foot of a mountain . 她家 在 一座 山 的 山脚下 . +He gave me food and money as well . 他 给 了 我 食物 和 钱 . +I am a university student . 我 是 个 大学生 . +Tom claims he does not remember . 湯姆聲 稱 他 不 記得 了 . +Is ten thousand yen enough ? 一 万日元 够 吗 ? +What do you usually do on Sundays ? 你 週日 通常 做 什麼 ? +My sister has a nice piano . 我 妹妹 有 架 漂亮 的 钢琴 . +What is the idea behind that ? 那 背后 是 什么 意思 ? +The typhoon caused the river to flood . 颱 風 造成 了 河水 氾 濫 . +Tom has never been willing to help us before . 湯姆 以前 從 不 這樣 願 意 幚 我 們 . +The crow flew away . 這 隻 烏鴉 飛 走 了 . +I think Tom is still alive . 我 認為 湯姆 還 活著 . +Where are the shoes ? 鞋子 在 哪儿 ? +You can not use this washing machine . 您 不能 使用 這 台 洗衣 機 . +It was really special . 它 真 特別 . +We arrived at a small town in Hokkaido . 我们 到达 了 北海道 的 一个 小镇 . +I will not be fooled . 我 不会 上当 的 . +You should know that is impossible . 你 应该 知道 这 是 不 可能 的 . +It came to nothing . 这 没有 结果 . +Are they all like this ? 他们 都 像 这 一样 吗 ? +The family eats breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +Luckily he had enough money to pay the bill . 幸运 的 是 他 有 足够 的 钱 来 付账 . +This is a book about stars . 这 是 本 关于 星星 的 书 . +Some of the bluest water in the world is found in Crater Lake . 一些 世界 上 最 藍 的 水 在 火山湖 . +My uncle comes to see me from time to time . 我 叔叔 偶爾 來看 我 . +I can not make an exception . 我 不能 破例 . +My parents live in Australia . 我 的 父母 住 在 澳大利亚 +Something is wrong with my camera . 我 的 相機 壞 了 . +Please buy a tube of toothpaste . 請買 條 牙膏 吧 . +There is nothing to forgive . 没什么 可 原谅 的 . +Our library is on the third floor . 我們 的 圖書館 在 三 樓 . +I did not even know Tom had left . 我 甚至 不 知道 湯姆 離開 了 . +He traveled on business . 他 旅行 洽商 . +Do you know who they are ? 你 知道 他們 是 誰 嗎 ? +J.F. Kennedy was buried in Arlington Cemetery . 约翰 甘迺迪 被 安葬 在 阿靈頓 公墓 . +I thought she was going to kill me . 我 認為 她 要 殺 我 . +I can not remember his name . 我 不 記得 他 的 名字 . +I wonder what she really means . 我自 問 她 真正 的 意思 是 什麼 . +I should have chosen a shorter username . 我 该 用 短 一点 的 用户名 的 . +My canary was killed by a cat . 我 的 金絲雀被一 隻 貓 殺 死 了 . +Looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +I am here to assist you . 我 來 協助 你 . +The teacher has a great influence on his pupils . 这个 教授 对 他 的 学生 有 很大 的 影响力 . +Tom is in the hospital waiting room . 汤姆 在 医院 的 等候 室 . +Would you please wait for a few minutes ? 请 您 等 几分钟 好 吗 ? +Why can not we have pizza ? 为什么 我们 不能 要 比萨 ? +Let is be realistic . 現實 點 吧 . +I am humble . 我 是 谦虚 的 . +I could not make myself understood . 我 無法 讓 別人 了解 我 的 意思 . +This theory is very controversial . 这个 理论 很 有 争议 . +As you sow , so will you reap . 种瓜得瓜 , 种豆得豆 . +How was the meeting yesterday ? 昨天 的 会议 怎么样 ? +The children are having fun in the park . 孩子 們 在 公 園 裏 玩耍 . +Children depend on their parents for food , clothing and shelter . 孩子 们 的 衣食住行 靠 的 是 他们 的 父母 . +A fire broke out last night and three houses were burnt down . 昨晚 發生 了 一場 火災 , 三棟 房屋 被 燒毀 了 . +We still have more time . 我們 仍然 有 更 多 的 時間 . +Tom will not be coming . 汤姆 不会 来 了 . +You seem like a very smart person . 你 看起来 像 一个 聪明人 . +Are not you happy ? 你 不快 樂 嗎 ? +Compared with her sister , she is not very punctual . 與 她 的 妹妹 相比 , 她 不是 很 準 時 . +We have no reason to be ashamed . 我们 没理由 害臊 . +We 'd better talk . 我们 谈谈 比较 好 . +I paid the bill . 我 买 了 单 . +What kind of meal did you eat ? 您 吃 了 什麼樣 的 膳食 ? +We have one of your friends here with us . 你 的 一个 朋友 在 我们 这里 . +Did Tom actually say that ? 汤姆 真的 那么 说 了 吗 ? +I could not enter because the door was closed . 我 因為 門 關著 進不去 . +I know him , but I do not know his name . 我 認識 他 但是 我 不 知道 他 的 名字 . +Actually , it was pretty boring . 实际上 , 我 非常 无聊 . +I found this in your desk drawer . 我 在 你 的 桌子 抽屉 里 找到 了 这个 . +My nephew is allergic to eggs . 我 侄子 對 雞蛋 過敏 . +Help yourself to whatever you like . 你 想 吃 什麼 就 吃 什麼 . +My stomach is full . 我 的 胃 是 脹 滿 的 . +You will have to wait and see . 你 得 等一等 看 . +This book is for students whose native language is not Japanese . 這 本書 是 給 母語 不是 日語 的 學生 的 . +He passed his property on to his son . 他 把 他 的 财产 传给 了 他 儿子 . +I do not like this . 我 不 喜欢 . +Can you give me some money ? 你 能 給 我 一些 錢 嗎 ? +He had a large family to support . 他 要 養活 一個 大家庭 . +Where is your dog ? 你 的 狗 在 哪里 ? +Austria is one of the largest producers of electricity in Europe . 澳大利亚 在 欧洲 是 最大 的 电能 生产国 之一 . +Tom is taller than I am . 湯姆 比 我 高 . +He began to look for work . 他 开始 找 工作 了 . +Tom did nothing . 汤姆 什么 都 没 做 . +I will not allow you to do that . 我 不会 让 你 做 那事 . +The knife is not sharp . 這 刀不鋒利 . +Did you bring your family with you ? 你 帶著 家人 一起 來 嗎 ? +The plane is ready . 飞机 准备 好 了 . +The Sahara is a vast desert . 撒哈拉沙漠 广袤 无垠 . +Was that what Tom said ? 那 就是 汤姆 说 的 吗 ? +She finished her work an hour in advance . 她 提前 一 小时 完成 了 工作 . +Tom likes football . 汤姆 喜欢 足球 . +I said to myself , " That is a good idea . " 我 对 自己 说 , “ 那 是 个 好 主意 . ” +No one understands me . 没有 人 理解 我 . +What just happened ? 刚刚 发生 了 什么 ? +I will give you a little tip . 我会 给 你些 提示 . +The meeting will be held tomorrow . 會議 將 於 明天 舉行 . +I can not believe that you were the smartest kid in your class . 我 不敢相信 你 是 你们 班 里面 最 聪明 的 孩子 . +I like the cold . 我 喜歡 寒冷 . +I hit him in the belly . 我 打 了 他 的 肚子 . +Will I see you tomorrow ? 我 明天 能 见到 你 吗 ? +Pigs share certain characteristics with human beings . 豬 與 人類 的 一些 特性 相同 . +That was not my intention . 这 不是 我 的 初衷 . +He has not come yet . 他 還 沒來 . +My father has been dead for ten years . 我 爸爸 去世 有 10 年 了 . +English is spoken in America . 在 美国 说 英语 . +The job looked quite simple , but it took me a week . 這份 工作 看 起來 很 簡單 , 但 它 花 了 我 一個 星期 . +She is leaving the country in six months . 她 半年 后 就要 出国 了 . +There were no mistakes . 没有 错误 . +We knew no one . 我們 誰 也 不 認識 . +Give me a cigarette . 给 我 支 香烟 吧 . +The audience was deeply affected . 观众 深受感动 . +It is lunch time . 午餐 時間 到 了 . +I no longer love Tom . 我 不再 愛湯姆 了 . +Tom does not like to wear a watch . 汤姆 不 喜欢 戴 手表 . +He asked me to speak more slowly . 他 要求 我 講 慢 一點 . +She went to the movies by herself . 她 獨自 去 看 了 電影 . +What are you staring at ? 你 在看 什麼 ? +With just a little more effort , he would have succeeded . 如果 他 再 努力 一点 , 就 可能 已经 成功 了 . +These tools are used for building a house . 这些 工具 是 用来 造 房子 的 . +He is apt to be late . 他 很 容易 遲 到 . +She kept on working . 她 继续 工作 . +The girl brought me a red and a white rose . 女孩 给 我 了 一枝 红玫瑰 和 一枝 白玫瑰 . +Gold is much heavier than water . 金子 比水 重得 多 . +I asked for my father is help . 我 向 我 父親 求助 . +I hear my uncle died of cancer . 我 聽到 我 叔叔 死 於 癌症 的 消息 . +Tom slept . 汤姆 睡 了 . +This place has a mysterious atmosphere to it . 这个 地方 的 气氛 很 神秘 . +In the Edo period , moon @-@ viewing parties were very popular . 在 江戶 時代 賞 月 的 宴會 非常 受歡 迎 . +Green suits you . 綠色 適合 你 . +He always quarrels with his wife . 他 總是 與 他 的 妻子 吵架 . +I would have liked to come with you , but I did not have time . 我 想 和 你 一起 去 , 但是 我 没有 时间 . +She tore the letter into pieces . 她 把 信成 碎片 . +The car is waiting at the gate . 車 在 門口 等著 . +Let is walk . 我们 走走 吧 . +Do not run risks . 不要 冒险 . +I will gladly pay you anytime . 我 隨時 樂意 付錢 給 你 . +Can you tell me a little about yourself ? 你 能 稍微 告诉 我 关于 自己 的 事情 吗 ? +Do not let that happen again . 不要 再 让 这种 事 发生 了 ! +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +It is good to see you . 见到 你 真好 . +The shop is open from Monday to Saturday . 这家 店 从 星期一 到 星期六 都 营业 . +Let is drink coffee while we talk . 让 我们 边 喝咖啡 边 谈 . +This city is cold and lonely without you . 没有 你 这个 城市 孤单 又 冷清 . +They were very excited . 他们 非常 兴奋 . +I thought that Tom had a soccer game tonight . 我 以为 汤姆 今晚 有 足球比赛 . +I am OK . 我 沒事 . +Do you know this song ? 你 知道 這 首歌 嗎 ? +I do not have the address with me . 我 身上 沒 帶 這個 地址 . +We watch TV every day . 我们 每天 看电视 . +I miss you so much . 我 如此 想念 你 . +He was playing the piano . 他 那時 正在 彈 鋼琴 . +She spread the butter on the bread . 她 把 奶油 塗 在 麵 包 上 . +Can you do bookkeeping ? 你 會 記 帳 嗎 ? +I did not want to get up early . 我 不想 很早 起床 . +He is known as a great poet . 他 以 一個 偉大 的 詩人 聞名 . +She stabbed him in the back . 她 在 他 的 背上 戳 了 一下 . +I do not know when she got married . 我 不 知道 她 是 什么 时候 结婚 的 . +There are some eggs in the box . 盒子 裡 有 一些 蛋 . +Tom is not nearly as smart as he thinks he is . 汤姆 并 不 像 他 自 认为 的 那么 聪明 . +My father takes a bath before supper . 我 的 父親 在 晚 飯前 洗澡 . +Frankly speaking , I do not agree with you . 实话 说 , 我 不 赞成 你 . +Where did you go for vacation ? 你 去 哪裡 度假 了 ? +We took strong measures to prevent it . 我们 采取 了 强有力 的 预防措施 . +Do not you want to know the reason ? 你 不想 知道 原因 吗 ? +You ask me to do the impossible . 你 让 我 做 不 可能 做到 的 事情 . +What time is it ? 几点 了 ? +Tom should have plenty of time . 汤姆 应该 有 很多 时间 . +They adopted the orphan . 他们 收养 了 那个 孤儿 . +Tom and I see each other every day at school . 汤姆 和 我 每天 都 在 学校 见面 . +You nearly poked me in the eye with your pencil . 你 的 鉛筆 差點 戳 到 我 的 眼睛 了 . +My job is to wash dishes . 我 的 工作 是 洗碗 . +I do not remember any of it . 我 对 这些 都 没有 印象 . +Generally , men run faster than women . 一般 來 說 , 男人 比 女人 跑得快 . +Did I leave my umbrella here ? 我 把 雨伞 落 在 这里 了 吗 ? +Because our kids got married , we are now in @-@ laws . 我們 成親 家 了 , 因為 我們 的 孩子 們 結婚 了 . +I do not like your smile . 我 不 喜欢 你 的 微笑 . +Did you get up early ? 你 起床 早 嗎 ? +How come you know so much about Japanese history ? 你 為 什麼 知道 這麼 多 的 日本 歷史 ? +He was hurt in a car accident . 他 在 一次 車禍 中 受傷 了 . +The exhibition is now open . 展览 现在 已经 开放 . +I have been reading the book all afternoon . 我 整个 下午 都 在读 这 本书 . +They are typical youngsters . 他们 是 典型 的 年轻人 . +Some people questioned his honesty . 有些 人 質疑 他 的 誠實 . +He likes to read newspapers . 他 喜欢 看 报纸 . +Tom never saw her again . 湯姆 沒 再 見 過 她 . +According to the radio , it will snow tomorrow . 据 广播 里 讲 , 明天 会 下雪 . +Tom is a strange person . 湯姆 是 個 怪人 . +His opinions are not worth listening to . 他 的 意見 不 值得 聽 . +I got him to repair my car . 我 讓 他 修理 我 的 車子 . +The Internet is an invaluable source of information . 互联网 是 一种 无法估量 的 信息 资源 . +Due to the worsening weather , the departure was delayed . 由于 天气 变差 , 出发 延迟 了 . +Can I do anything for you ? 我 能 為 你 做 點 甚麼 嗎 ? +We often associate black with death . 我们 常 把 黑色 跟 死亡 联系 起来 . +Take any train on track 5 . 到 5 号 轨道 乘 随便 什么 火车 . +My hometown is very pretty . 我 的 家乡 非常 漂亮 . +It seems obvious that he is sick . 似乎 很 明顯 他 病 了 . +He has no children . 他 沒有 孩子 . +I need to go home . 我 该 回家 了 . +I have got a lot more to learn . 我 要 学 很多 . +I may be unsociable , but it does not mean I do not talk to people . 我 或许 不 善于 社交 , 但 这 并 不 意味 我 不 和 别人 交谈 . +This is a strange sentence . 這 是 一個 奇怪 的 句子 . +Tom wants to learn boxing , but his mother thinks it is too dangerous . 汤姆 想 学 拳击 , 但 他 妈妈 觉得 这 太 危险 了 . +Do not let the dog come in . 别 让 狗 进来 . +I was talking about something else . 我 在 說別 的 事 . +The magician had the children is attention . 魔术师 吸引 了 孩子 们 的 注意 . +He regrets what he did . 他 对 他 所 做 的 一切 感到 后悔 . +I tried not to wake you up . 我 设法 不让 你 醒 . +No matter how often I tell her , she keeps making the same mistake . 不管 我 跟 她 说 了 多少 次 , 她 还是 继续 犯 同样 的 错误 . +You should try to be more polite . 你 應該 試著 更 有 禮貌 . +Why should I apologize to you ? 为什么 我 要 向 你 道歉 ? +Open your book to page nine . 翻開 你 的 書 到 第九 頁 . +She feels at ease in their home . 她 在 他们 家里 感觉 很 放松 . +He can read English easily . 他 能 轻松 地 读 英语 . +There is a letter for you . 你 有 一封信 . +We were friends . 我们 是 朋友 . +Thanks for calling me . 谢谢 你 给 我 打电话 . +She used to visit me regularly . 她 以前 定期 來看 我 . +I am four months pregnant . 我 怀孕 四个 月 了 . +He made good use of the money . 他 好好 的 使用 了 ​ ​ 這筆 錢 . +Who is your favorite character in this book ? 你 最 喜歡 這 本書 中 的 哪個 角色 ? +I think you are dumb . 我 认为 你 傻 . +He is not always at home on Sundays . 他 星期日 並 不 總是 在家 . +This is kind of interesting . 這 真是 有趣 . +There is a car coming . 有 車 來 了 . +I received your letter yesterday . 我 昨天 收到 了 你 的 信 . +My dictionary is very useful . 我 的 字典 非常 有用 . +Thanks for your quick answer . 谢谢您 的 迅速 回复 . +Tom has no brothers or sisters . Tom 沒有 兄弟 也 沒有 姊妹 . +This is a very interesting book . 這 是 一本 非常 有趣 的 書 . +I can not believe your parents let you come here by yourself . 我 不敢相信 你 父母 让 你 自己 过来 . +Are you guys free this afternoon ? 你们 今天下午 有空 吗 ? +He did not appear until about noon . 直到 快要 中午 前 他 都 沒 出現 . +This clock loses three minutes a day . 这个 钟 每天 慢 三分钟 . +She came to Tokyo at the age of 18 . 她 18 岁 的 时候 来到 东京 . +According to the newspaper , he committed suicide . 據 報紙 上 說 , 他 自殺 了 . +May I be the first to offer my congratulations . 或许 我 是 第一个 给 你 祝贺 的 人 . +Help us . 帮帮 我们 吧 ! +Would you please explain the rules to me ? 請 你 為 我 解釋 規則 好 嗎 ? +Father always has the tailor make his suits . 父親 總是 讓 這位 裁縫師 為 他 做 西裝 . +My sister became a college student . 我 妹妹 成為 了 一個 大學 生 . +Tom did not have a fever this morning . 湯姆 今天 早上 沒有 發燒 . +I had no feeling in my fingers . 我 的 手指 没有 感觉 . +That is crazy . 那 是 瘋狂 的 . +I wonder if you have something to write with . 我 懷疑 你 是否 有 東西 可寫 . +Tom is intoxicated . 汤姆 醉 了 . +They were worried . 他们 担心 . +My wallet and passport are missing . 我 的 錢包 和 護照 不見 了 . +I do not really read newspapers . 我 不 太 看 报纸 . +Do not be so careless ! 别 这么 粗心 ! +It is healthy to breathe deeply . 深呼吸 有益健康 . +Being a teacher is very hard work . 做 教師 很 辛苦 . +He knows a lot of people . 他 认识 很多 人 . +I will let Tom tell you . 我会 让 汤姆 告诉 你 . +Where was this picture taken ? 这 张 照片 在 哪儿 照 的 ? +Your tripod is in my office . 你 的 三腳 架 在 我 的 辦 公室 裏 . +He sometimes watches TV . 他 有 時 看 電視 . +Breakfast is the most important meal of the day . 早饭 是 一天 中 最 重要 的 一顿饭 . +Will you stay at home tonight ? 你 今晚 會 待 在家 裡 嗎 ? +The library is on the 4th floor . 圖書館 在 四樓 . +Only one third of the members turned up at the meeting . 仅 三分之一 的 成员 出席 了 会议 . +The boy went to bed with his socks on . 男孩 穿着 袜子 就 上床睡觉 了 . +When does the movie start ? 電影 什麼 時候 開始 ? +Big fish eat little fish . 大鱼吃小鱼 . +Please show me another one . 请 给 我 看看 其他 的 . +He made fun of me in public . 他 在 公共 場合 取笑 了 我 . +I will see you a week from today . 我 下星期 的 今天 會 和 你 見 面 . +Where is the book ? 那本书 在 哪儿 ? +Kyoto is visited by many tourists . 很多 游客 赴 京都 旅游 . +I know your brother very well . 我 和 你 哥哥 很熟 . +If you do not have this program , you can download it now . 假如 你 没有 这个 程序 , 你 现在 就 可以 去 下载 . +I need more money . 我 需要 更多 的 錢 . +She has been dead for ten years . 她 已經 死 了 十年 了 . +He studies English , but he is also studying German . 他 学 英语 , 但 他 也 学 德语 . +We will not go out unless it stops raining . 除非 雨 停 了 , 我们 才 会 出去 . +I think you need to spend a little more time on your homework . 我 觉得 你 应该 多 花点 时间 在 作业 上 . +What happened to you yesterday ? 你 昨天 發生 了 什麼 事 ? +Her book is very interesting . 她 的 書 非常 有趣 . +My friends all call me Tom . 我 的 朋友 都 叫 我 湯姆 . +Tom told them not to do that . 湯姆 告訴 他們 不要 去 做 那事 . +Who do you think they were ? 你 认为 他们 是 谁 ? +What is your telephone number ? 你 电话号码 是 多少 ? +Some bugs were fixed . 一些 程式 錯誤 被 改正 了 . +He did everything he could for his child . 他 為 自己 的 孩子 能 做 的 都 做 了 . +When I heard the news , I cried . 當 我 聽到 這個 消息 , 我 哭 了 . +I am a night owl . 我 是 個夜 貓子 . +He is out now . 他 现在 出去 了 . +I am on my way to meet Tom at the station right now . 我 现在 在 去 车站 见 汤姆 的 路上 . +I learned to live without her . 我 学会 了 不靠 她 生活 . +He lives in a world of fantasy . 他 住 在 一個 奇幻 世界 裡 . +He is a tennis player . 他 是 个 网球 球手 . +I am sorry for the delay in responding . 我 很 抱歉 這麼 遲 才 回 復 . +Nothing remained in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Is Tom going to dump Mary ? 汤姆 要 甩 了 玛丽 吗 ? +Please move the desk to the left . 请 把 桌子 向 左移 . +I kept the $ 20 I found in the street . 我 留 着 在 街上 发现 的 20 美元 . +Two for the lunch buffet , please . 兩 人份 自助 午餐 , 謝謝 . +I must catch the first train . 我 必须 赶上 头班 火车 . +Tom does not like women who wear too much makeup . 汤姆 不 喜欢 妆化 太 浓 的 女人 . +She hates carrots . 她 討厭 胡蘿 蔔 . +The summer is over . 夏天 过去 了 . +My brother is a high school student . 我 哥哥 是 個 高中生 . +She goes to school on foot . 她 走路 去上 學 . +You are an idiot . 你 是 一個 笨蛋 . +Let is meet again soon . 讓 我們 很快 地 再次 見面 . +I do not know either of them . 他们 中 的 任何 一位 我 都 不 认识 . +Almost everyone in our village is related to one another . 我们 村里 所有 的 村民 几乎 彼此 都 是 亲戚 . +Please forgive me for being late . 請 原諒 我 遲到 . +The plane crash was only last week . 上個 星期 這 架 飛機 墜毀 了 . +There is a post office close by . 附近 有 一間 郵局 . +I was shy . 我 害羞 . +Who found my bag ? 誰 找到 了 我 的 包 ? +He is not interested in art at all . 他 對 藝術 一點 也 不感 興趣 . +People live only about 70 years . 一个 人 只能 活 七十岁 左右 . +What do you think of Tom is cooking ? 你 覺得 Tom 的 廚藝 如何 ? +She is old enough to know better . 她 年 紀夠 大 該 懂事 了 . +Two beers , please . 请来 两杯 啤酒 . +The wind calmed down . 风停了 . +Try and do better next time . 嘗試 在 下 一次 做 得 更好 . +We were caught in a storm . 我们 被 暴风雨 袭击 了 . +Tom is waiting for you in the conference room . 汤姆 在 会议室 等 你 . +I 'd like three of these . 这 我 要 三个 . +It is almost six o 'clock . 差不多 六点 了 . +Do you take MasterCard ? 可以 用 万事达 信用卡 吗 ? +There are many shantytowns in Mexico . 在 墨西哥 有 很多 貧民窟 . +I want to have my own room . 我 想要 有 我 自己 的 房间 . +We are in the era of atomic energy . 我們 身 在 原子能 時代 . +While you are reading to me , I can do my sewing . 你 读 给 我 听 的 时候 , 我 就 可以 做 缝纫 了 . +Everyone comes to Tom for advice . 每個 人 都 請 教 湯姆 . +Please tell me Tom is OK . 请 告诉 我 汤姆 很 好 . +I was taking a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I want something sweet to eat . 我 想要 吃甜 的 東西 . +I owe you ten dollars . 我 欠 你 10 美元 . +I have just finished eating breakfast . 我 剛 吃 完 了 早 飯 . +I like red wine better than white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +It is really different from what I expected . 這 真的 跟 我 所 預期 的 不同 . +She and I are in the same class . 她 和 我 同班 . +My brother died of cancer last year . 我 弟弟 去年 死 於 癌症 . +Let is take advantage of the long weekend . 来 好好 利用 大 周末 吧 . +Tom saw everything that happened . 汤姆 见证 了 所有 发生 的 事情 . +I have had enough , so my stomach is full . 我 吃 飽 了 , 所以 我 的 胃 都 滿 了 . +I refused , of course . 我 當然 拒 絶 了 . +The most important thing in the Olympic Games is not winning but taking part . 奥运会 最 重要 的 不是 获胜 , 而是 参与 . +I think Tom is going to be pretty mad when he finds out that the painting he bought is a fake . 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +Tom is name was on the list . 湯姆 的 名字 在 名單 上 . +Is it true that Tom wants to paint his house green ? 汤姆 想 把 房子 漆成 绿色 , 是 真的 吗 ? +Remember to admire her new dress . 記得 稱 讚 她 的 新洋 裝 . +She was advised by him to go to the police . 他 勸 她 去 報警 . +Children of six and above should attend school . 六岁 及 以上 的 小孩 应该 上学 . +You are the prisoner . 你 是 囚犯 . +May I have a road map , please ? 請 給 我 一張 路 線 圖 . +I will stay here for a bit . 我 在 这 待 一会 . +We met her by accident . 我们 偶然 碰到 了 她 . +The police will put you in prison . 警方 將 把 你 關 在 監 獄裡 . +He is concerned about his father is illness . 他 担心 他 父亲 的 身体 . +I believe this was unnecessary . 我 相信 這 是 不必要 的 . +It is imperative for you to act at once . 您 必须 马上 行动 . +She lost her father when she was three years old . 她 父亲 在 她 三岁时 死 了 . +Can you wait about an hour ? 能 麻烦 您 等 一个 小时 左右 吗 ? +You should tell him the truth . 你 该 告诉 他 真相 . +You can not allow Tom to do that anymore . 你 不能 再 允許 湯姆 那麼 做 了 . +Half a loaf is better than none . 半 個 麵 包 總 比 沒 有 好 . +Where can I catch a bus ? 我 可以 在 哪裡 搭 公車 ? +You are working hard . 你 工作 努力 . +When are you leaving ? 你 什麼 時候 離開 ? +He wrote a letter . 他 写 了 一封信 . +Their goods are of the highest quality . 他们 的 货品 有着 最高 的 品质 . +A burglar broke into his house . 一個 竊 賊 闖進 了 他 的 房子 . +Please give me a cup of water . 請 給 我 一杯 水 . +Mary dyed her hair blue . 瑪麗 把 她 的 頭 髮 染成 藍色 . +All of us like you very much . 我们 都 非常 喜欢 你 . +This water tastes good . 這 水 很 好喝 . +I am happy if you are happy . 如果 你 開心 , 我 也 就 開心 . +What fruit do you like the best ? 你們 最 喜歡 什麼 水果 ? +Tom broke some bones in his arm and hand . 湯姆 的 手臂 和 手斷 了 些 骨頭 . +You should have refused his offer . 你 應該 拒絕 他 的 提議 的 . +Would you like me to help you ? 你 要 我 幫 你 嗎 ? +She loved me in the same way that I loved her . 她 愛 我 就 像 我 愛 她 一樣 . +This is not salt . 这 不是 盐 . +Please close the door . 請 關門 . +Please bring us two cups of tea and one cup of coffee . 请来 两杯 茶 和 一杯 咖啡 . +I looked at my notes . 我 看 了 自己 的 笔记 . +Who is going to believe that ? 谁 会 信 呢 ? +Without you , I am nothing . 沒有 你 , 我 甚麼 也 不是 . +Were you at home yesterday ? 昨天 你 不 在家 嗎 ? +Can I ask you a question ? 我 可以 问 你个 问题 吗 ? +Tom can not tie a tie . 汤姆 不会 系 领带 . +I do not like the way you talk to me . 我 不 喜歡 你 和 我 說 話 的 口氣 . +My hobby is taking pictures of wild flowers . 我 的 业余爱好 是 拍 野花 的 照片 . +Do you still have my phone number ? 你 還 有 我 的 電話 號碼 嗎 ? +No one answered my question . 沒人 回答 我 的 問題 . +Tom usually does not make mistakes . 汤姆 通常 不 犯错 . +Mother bakes cookies on Sundays . 妈妈 周日 烤 曲奇 . +He asked for some money . 他 要 了 一些 錢 . +Thank you in advance for your cooperation . 提前 感謝 你們 的 合作 . +Tom forgot to sign his name . 汤姆 忘记 签名 了 . +Tom and Mary have three sons and a daughter . Tom 和 Mary 有 三個 兒子 和 一個 女兒 . +He arrived in time . 他 及時 趕到 . +He ran into the room . 他 跑 进 房间内 . +I play the tenor saxophone . 我 吹 次 中音 薩 克斯 風 . +My grandson is still a baby . 我 的 孫子 還 是 個 嬰兒 . +The matter has not been settled yet . 问题 还 没有 解决 . +Tom told Mary that she should stop pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +When did your father come home ? 你 爸爸 什麼 時候 回家 ? +Tom made a bet with Mary . 湯姆 跟 瑪麗 打 了 個 賭 . +This milk will not keep till tomorrow . 這 牛奶 放到 明天 會 壞 的 . +I can comfort her . 我 可以 安慰 她 . +We had an early lunch at school . 我們 在 學校 有 一個 早 午餐 . +I will return at 6 : 30 . 我 六點半 回來 . +I make a point of being punctual . 我 重視準 時 . +He introduced his daughter to me . 他 把 他 的 女兒 介紹 給 我 認識 . +She went upstairs . 她 上樓 了 . +He sat next to the stream . 他 坐在 溪流 旁邊 . +I do not feel like eating sushi . 我 不想 吃 壽司 . +He is also very famous in Japan . 他 在 日本 也 很 有名 . +We discussed the plan yesterday . 昨天 我們 討論 了 這個 計劃 . +I have a cough . 我 咳嗽 . +He said nothing , which made her angry . 他 什么 也 没 说 , 这 让 她 很 生气 . +The rocket was launched into space . 火箭 發射 進入 太空 . +May I eat this orange ? 我 可以 吃 這個 柳橙 嗎 ? +He has been in Hokkaido before . 他 以前 曾 在 北海道 . +I have got something you have got to see . 我 有个 东西 您 该 看看 . +Did he propose to you ? 他 向 你 求婚 了 嗎 ? +Should I go to college ? 我 該 上 大學 嗎 ? +Tom works in a bank now . 湯姆 現在 在 銀行 上班 . +Who do you live with ? 你 和 誰 住在一起 ? +Do not underestimate me . 别 低估 我 . +That is not a cat . That is a dog . 那 不是 猫 . 那 是 狗 . +Did you see the rainbow this morning ? 你 见到 今天 早上 的 彩虹 了 吗 ? +It is because of you that we were late . 因为 你 我们 才 迟 了 . +The apple tree has a beautiful blossom . 苹果树 上 挂 着 美丽 的 花朵 . +I had to take shelter under a tree . 我 不得不 在 树下 躲雨 . +I am absolutely elated . 我 真是 欣喜若狂 . +I ran as fast as I could , but I missed the train . 我 用盡 全力 跑 , 但 我 還 是 沒趕 上火 車 . +This book is hard for me to read . 这 本书 对 我 来说 很 难读 . +Can you solve this puzzle ? 你 能 解開 這個 謎 嗎 ? +Tom hates spiders . 汤姆 恨 蜘蛛 . +Tell me how to use the washing machine . 告訴 我 洗衣 機 怎麼 用 . +I said I would make her happy . 我 说 我会 让 她 幸福 的 . +Tom is fluent in French . 湯姆 的 法語 說 的 很 流暢 . +The train is 10 minutes late today . 火車 今天 晚 了 十分 鐘 . +We should stop seeing each other . 我们 不该 再 对视 了 . +The length of this ship is 30 meters . 这 艘 船 的 长度 是 30 米 . +Tom is working the night shift . 湯姆 上 夜班 . +Do you want to come along ? 你 想 不想 一起 去 ? +I recognized your voice right away . 我 立刻 認出 了 你 的 聲音 . +I just need you to come with me . 我 只要 你 跟我来 . +He extended his right arm . 他 伸长 了 他 的 右手 . +Sensing danger , he ran away . 他 感覺 到 危險 就 逃跑 了 . +I grew up in the country . 我 在 鄉下 長大 . +He turned down my offer . 他 拒絕 了 我 的 提議 . +There is nobody here . 這裡 沒 人 . +They have jobs . 他們 有 工作 . +I have a headache . 我 头痛 . +This shirt does not go with that tie at all . 這件 襯衫 跟 那條 領帶 不 搭 . +If you see a mistake , then please correct it . 如果 你 发现错误 , 那 就 请 你 纠正 它 . +We swam in the lake . 我们 在 湖里 游 了 泳 . +We postponed the meeting . 我们 推迟 了 会议 . +Tom is not as old as you . 湯姆 的 年紀 不 比 你 大 . +He may have missed the train . 他 可能 错过 了 火车 . +This is the worst book I have ever read . 这 是 我 读 过 的 书 里面 写 的 最差 的 一本 了 . +I have to go meet with Tom . 我 必須 去 見 湯姆 . +Do you drink green tea ? 您 喝 绿茶 吗 ? +Tom drove the car . 汤姆 开 的 车 . +They talked over the plan for hours . 他们 谈 计划 谈 了 几个 小时 . +You need a car if you live in the suburbs . 要住 在 郊区 的话 , 汽车 是 必需 的 . +What would you all like to eat ? 你們 想 吃 什麼 ? +It is sometimes difficult to make yourself understood in public . 有時 很 難 在 公眾 場合表 達 你 自己 的 意思 . +Mary carries pepper spray in her purse . 玛丽 的 包里 有 胡椒 喷剂 . +The rich sometimes despise the poor . 富人 有时 会 看不起 穷人 . +Will you mail this letter for me ? 你 可以 幫 我 寄 這 封信 嗎 ? +This makes me angry . 這 讓 我 憤怒 . +May I open the windows ? 可以 开窗 吗 ? +I know that you are right . 我 知道 你 是 對 的 . +It is our duty to obey the law . 遵守 法律 是 我們 的 義務 . +I am acquainted with him . 我 和 他 认识 . +I do not know what is worse . 我 不 知道 什么 更 糟糕 . +He decided not to go to the party . 他 決定 不要 去 派 對了 . +A stay of execution was ordered at the eleventh hour . 缓期 执行 在 最后 关头 决定 了 下来 . +I 'd like my coffee after the meal . 我 想 吃 完飯 再 喝咖啡 . +I am afraid she will not accept my explanation . 我 怕 她 不 會 接受 我 的 解釋 . +I got fired from the company , but since I have a little money saved up , for the time being , I will not have trouble with living expenses . 虽然 我 被 公司 解雇 了 , 但是 我 还 有点 存款 , 所以 目前 不用 担心 生计 问题 . +She is working on the problem . 她 在 处理 问题 . +What are my responsibilities ? 我 的 责任 是 什么 ? +Tom is going to a concert this evening . 汤姆 今晚 会 去 演唱会 . +Tom has a lot of experience in computers . 汤姆 对 电脑 有 很多 经验 . +What did you do with my glasses ? 你 用 我 的 眼鏡 做 了 什麼 ? +He admitted his guilt . 他 承認 他 有罪 . +Tom is quite sarcastic . 汤姆 真 会 挖苦 人 . +It is very hot today , is not it ? 今天 非常 熱 , 不是 嗎 ? +Have you ever seen Tom mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +That will not ever happen . 那 从 不会 发生 . +He told me he would go to Venice . 他 告诉 过 我 他 会 去 威尼斯 . +All subscriptions must be paid before the end of this year . 所有 訂購 必須 在 今年年底 前 支付款 項 . +You do not like gambling , do you ? 你 不 喜歡 賭博 , 是 嗎 ? +I ate breakfast in my pajamas . 我 穿著 我 的 睡衣 吃 早餐 . +I got my notebook stolen . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Excuse me , where are the eggs ? 请问 鸡蛋 在 哪里 ? +He is a waiter in a seaside restaurant . 他 是 一家 海滨 餐厅 的 服务员 . +I have just eaten lunch . 我 剛 吃 過午 飯 . +Tom bent down and picked up a handful of sand . 汤姆 弯 下腰 , 捧起 了 一把 沙子 . +Will the fine weather keep up till tomorrow ? 好 天气 能 持续 到 明天 吗 ? +I can not believe you are giving up . 我 不能 相信 你 在 放弃 . +My grades are above average . 我 的 成績 高 於 平均水平 . +Tom is not easily satisfied . Tom 不 容易 被 滿足 . +He has gone mad . 他 疯 了 . +Hey , what are you guys looking at ? 嘿 , 你们 这些 家伙 看 什么 呢 ? +Tom told Mary that she was right . 汤姆 告诉 玛丽 她 是 对 的 . +I admit that I was careless . 我 承认 我 大意 了 . +I love you . 我 爱 您 . +Tom does not seem to think so . 汤姆 似乎 不 这么 认为 . +As for me , I am satisfied . 就 我 而言 , 我 很 满意 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I am going on vacation next week . 我 下週 要 去 度假 . +The garden was filled with flowers . 花園 裡 充滿 了 花朵 . +My younger brother really likes to take photos of mountains . 我 弟弟 很 喜欢 拍山 的 照片 . +What are you after ? 你 想要 什麼 ? +He is studying law at Harvard . 他 在 哈佛 大學學 習 法律 . +I am almost finished . 我 差不多 完成 了 . +You are our only hope . 你 是 我们 唯一 的 希望 . +I am writing a draft of the speech . 我 在 寫 演講 的 草稿 . +I followed the deer is tracks . 我 跟着 鹿 的 踪迹 . +The number of cars is on the increase . 汽车 的 数量 在 增长 . +She used to work for our company . 她 以前 在 我們 公司 工作 . +My cat looks sad . 我 的 猫 看上去 很 悲伤 . +His house is across the street . 他 的 房子 在 街 對 面 . +All our teachers were young and loved teaching . 我們 所有 的 老師 都 很 年輕 並且 喜愛 教學 . +Maybe I should just tell Tom the truth . 可能 我 就 該 告訴 湯姆 真相 . +This really is a masterpiece . 这 真是 个 杰作 . +Democracy is the worst form of government , except all the others that have been tried . 除了 那些 我们 尝试 过 的 政府 形态 , 民主 是 最差 的 那种 了 . +I crossed the river by boat . 我 乘船 过 了 河 . +I do not know why they are fighting . 我 不 知道 他們 為 什麼 在 打架 . +Please let me know as soon as it is decided . 决定 好 的话 请 第一 时间 告诉 我 . +I was quite thirsty and wanted to drink something cool . 我 很渴 , 想 喝 点 冷饮 . +I wish to climb Mt . Fuji again . 我 希望 再 爬 一次 上 富士山 . +In the winter , many older people slip on ice and fall down . 在 冬天 , 很多 老人 在 冰上 滑倒 . +It will be spring soon . 春天 快 來 了 . +Evidently , it is going to rain tomorrow . 明天 肯定 会 下雨 . +All of these books are mine . 这些 书 都 是 我 的 . +Tom was not apologetic . Tom 并 不 觉得 抱歉 . +She walked slowly so she would not slip . 她 慢慢 地 走 , 這樣 她 就 不 會 滑倒 了 . +I must think over the matter before giving my answer . 我 在 回答 之前 必须 考虑 周全 . +What is your favorite fruit ? 你 最 喜爱 的 水果 是 什么 ? +Give us two knives and four forks , please . 请 给 我们 两把 刀 和 四把 叉 . +He wrote it down in his notebook . 他 把 这 记 在 他 的 笔记本 上 . +She was amazed to hear the news . 她 听到 那个 消息 后 惊呆 了 . +He could not stand the bitterness of the coffee . 他 受不了 咖啡 的 苦味 . +It is too dark to play tennis now . 現在 太暗 了 不能 打 網球 . +Would three o 'clock be all right ? 三點鐘 可以 嗎 ? +He talks as if he were a teacher . 他 说话 就 像 一位 老师 . +This plant is indigenous to Canada . 这种 植物 原产 于 加拿大 . +I have got to go now . 我 現在 得 走 了 . +The doctor cured him of his cancer . 醫生 治好 了 他 的 癌症 . +I will not be at home next Sunday . 我 下 周日 不 在家 . +We are going to climb that mountain . 我們 將 要 去 爬 那 座 山 . +I speak French , too . 我 也 说 法语 . +I have no idea what I am going to wear . 我 不 知道 穿 甚麼 好 . +The city was full of starving soldiers . 城市 裡 充滿 了 飢餓 的 士兵 . +Come on , touch it . 来 吧 , 摸 一下 . +They will not allow us to enter the garden . 他们 不会 允许 我们 进 花园 的 . +I want something cold to drink now . 我 想現 在 喝 冷 的 東西 . +I think we are in trouble . 我 认为 我们 有 麻烦 . +You 'd better do what they say . 你 最好 照 他們 所 說 的 做 . +I will explain everything to you . 我会 向 你 全部 解释 清楚 的 . +You are a good person . 您 是 一個 好人 . +I will be taking a vacation next month . 我 下 個 月 要 休假 . +Tom does not want to talk to anybody . 汤姆 不想 跟 任何人 说话 . +I did not know what to do then . 那時 我 不 知道 該 怎麼 辦 . +Between you and me , I am going to quit my present job soon . 我 只 跟 你 说 , 我 很快 就要 辞掉 我 现在 的 工作 了 . +After two days our food gave out . 过 两天 我们 的 食物 就 发完 了 . +I prefer milk to juice . 比起 果汁 , 我 比較 喜歡 牛奶 . +The bride seems to be very pretty . 新娘 好像 非常 漂亮 . +There used to be a store right here . 这里 以前 有个 商店 . +I have a large collection of stamps . 我 收集 很多 郵票 . +I can not resist sweet things . 我 抵抗 不了 甜食 的 诱惑 . +We have no choice but to risk it . 我们 别无选择 只能 冒着危险 . +Have you ever been stuck in an elevator ? 你 有 沒有 被困 在 電梯 裡 過 ? +The library is in the middle of the city . 图书馆 位于 城市 中心 . +I am losing my grip . 我 失去 了 控制 . +I can not follow his logic . 我 无法 理解 他 的 逻辑 . +I hope the economy picks up soon . 我 希望 经济 很快 复苏 起来 . +She said that she gets up at six every morning . 她 说 她 每天 早上 六点 起床 . +Do you offer any all @-@ day tours ? 你 提供 任何 全日 遊 嗎 ? +That is terrible . 这 太 可怕 了 . +Go away ! 走開 ! +Where is Tom ? 汤姆 在 哪儿 ? +I came to Tokyo three years ago and have been living here ever since . 三年 前 我 来到 东京 并 一直 住 在 这儿 . +Tom is in the bathroom now . 湯姆 現在 在 衛生間 . +You are on the right track . 你 的 想法 是 對 的 . +Tom has many friends living in Boston . 湯姆 有 很多 朋友 住 在 波士 頓 . +The number of traffic accidents seems to be on the increase . 交通事故 的 数量 似乎 在 增长 . +She is not as patient as you . 她 没 像 你 那样 有 耐心 . +I want you to stay here longer . 我 希望 你 留在 這兒 久 一點 . +How could it be Tom is fault ? 它 怎麼 能 是 湯姆 的 錯 ? +I hear that you play the piano . 我 听说 你 弹钢琴 . +I am content with my job . 我 對 我 的 工作 感到 滿意 . +I did not participate in the dialog . 我 没有 参与 对话 . +We should always obey laws . 我们 总 要 遵守 法律 . +The polar bears are dying . 北极熊 正在 死去 . +I have written a letter . 我 写 了 一封信 . +I do not feel like working today . 我 今天 不想 上班 . +She makes all her own clothes . 她 的 衣服 全部都是 她 自己 做 的 . +I want something cold to drink . 我 想 喝 點 冷 飲 . +He won everything . 他 赢得 一切 了 . +Remember to mail this letter . 記得 要 去 寄 這 封信 . +Do not worry . 别 擔心 . +I can not believe Tom was able to do this all by himself . 没法 相信 , 汤姆 没 人 帮助 自己 一个 人 就 做到 了 这些 . +I have no idea . 我 一无所知 . +Why are you alone ? 你 为什么 一个 人 ? +The phone is ringing . 電話 正在 響 . +My stomach hurts . 我 胃痛 . +I decided not to go to Europe . 我 决定 不 去 欧洲 了 . +Tom is not wrong . 湯姆 沒有 錯 . +This guy looks like a fox . 这 家伙 像 个 狐狸 . +Help me peel the potatoes . 幫 我 削 一下 土豆 . +Turn the key to the right . 往右 邊 轉動 鑰匙 . +We have got too much work to do . 我們 要 做 的 工作 太 多 了 . +Foxes are wild animals . 狐狸 是 野生动物 . +America is a country of immigrants . 美國 是 一個 移民 國家 . +Tom will be a teacher someday . 湯姆 有 一天 會 成為 教師 . +We are not the ones getting married . 我们 不是 结了婚 的 人 . +I am a citizen of Sapporo . 我 是 札幌 的 市民 . +He even called me an idiot . 他 甚至 叫 你 傻瓜 . +He did not give me anything to eat . 他 沒有 給 我 任何 東西 吃 . +Basho was the greatest poet . Basho 是 最 偉大 的 詩人 . +My pen is not as good as yours . 我 的 钢笔 不 像 你 那 支 那么 好 . +I did not know the city , and what is more , I could not speak a word of the language . 我 不 知道 这个 城市 , 而且 我 一点 都 不 懂 那里 的 语言 . +You may depend on him to help you . 你 或许 可以 依靠 他 来 帮助 你 . +To tell the truth , I completely forgot . 說實話 , 我 完全 忘 了 . +If I had taken that plane , I would be dead now . 要是 我 坐 了 那 架飞机 的话 , 我 现在 早就 死 了 . +The storm developed into a typhoon . 暴風雨 發展 成 了 一 個 颱 風 . +That factory makes toys . 那家 工廠 生產 玩具 . +Should not someone be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +He has a brother who lives in Tokyo . 他 有个 住 在 东京 的 兄弟 . +I wanted to go to the concert . 我 本 想 去 参加 音乐会 的 . +He is gone to Nagoya on business . 他 去 名古屋 出差 . +One of my suitcases is missing . 我 的 其中 一个 行李 不见 了 . +I am afraid of spiders . 我 怕 蜘蛛 . +Tom is a fluent speaker of Japanese . 湯姆日語 說 得 很 流利 . +What kind of wine do you have ? 您 有 什麼樣 的 葡萄酒 ? +Please tell me about it . 请 告诉 我 它 的 事情 . +What a wonderful night ! 多 美妙 的 夜晚 啊 ! +It is a good thing to read good books when you are young . 年轻 的 时候 多 看点 好书 是 件 好事 . +Divide the pizza in three . 把 披薩 分成 三份 . +Water is very important . 水 非常 重要 . +We have no classes on Wednesday afternoons . 我们 周三 下午 没课 . +The boy remained silent . 男孩 依旧 沉默不语 . +Do you have anything for a cold ? 你 有 任何 治感冒 的 東西 嗎 ? +I usually eat out . 我 通常 在 外面 吃饭 . +One of the dogs is alive . 這些 狗 中 的 其中 一 隻 是 活 的 . +Let me have a try at it . 让 我 试试 . +She speaks Chinese . 她 讲 中文 . +Is that paper ? 那 是 紙 嗎 ? +He said hello to the woman . 他 向 那位 女士 问好 . +Zimbabwe was once a colony of Britain . 津 巴布 韋 曾經 是 英國 的 殖民地 . +Tom finally quit smoking . 汤姆 终于 戒烟 了 . +I can verify that that is the truth myself . 我 自己 能够 证实 那 是 真的 . +The world does not revolve around you . 世界 不是 围着 你 转 的 . +I clapped . 我 拍手 . +I am being patient . 我 很 有 耐心 . +Please wrap it up . 請 包起 來 . +It was sensible of you to follow her advice . 你 聽 從 她 的 忠告 是 明智 的 . +You 'd better eat something . 你 最 好吃 点 东西 +Can I sit here ? 我 能 坐 这里 吗 ? +I tried to convince Tom to come home . 我 试 着 说服 汤姆 回家 . +He took a quick look at the magazine . 他 迅速 瞥 了 一眼 杂志 . +I know that you did your best . 我 知道 你 盡力 了 . +I just want to sleep . 我 只 想 睡觉 . +Oh ! That is too bad . 哦 ! 那 太 糟糕 了 . +I have already been working here for several hours . 我 已经 在 这里 工作 几个 小时 了 . +Let me know if I need to change . 让 我 知道 我 是否 需要 改变 . +It is not necessary for us to attend this lecture . 我們 沒有 必要 出席 這個 講 座 . +It seems that no one knew the truth . 貌似 没有 人 知道 真相 . +She opened the letter quickly . 她 很快 地 打開 了 信 . +No matter how much I think about it , I do not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +I would like to go to the concert with you . 我 想 和 你 一起 去 音乐会 . +I hired someone today . 我 今天 雇 了 个人 . +Get serious . 认真 点 . +Mary does not wear as much makeup as Alice . 玛丽 没有 化 爱丽丝 那样 浓 的 妆 . +Ultraviolet rays can cause skin cancer . 紫外 線 可 導致 皮膚 癌 . +Everyone in his family is tall . 他家 的 每個 人 都 很 高 . +We are traveling on a tight budget . 我們 用少 的 預算 旅行 . +There are four seasons in one year . 一年 有 四季 . +Did you have any difficulty in finding my house ? 你 找 我 的 房子 有 困難 嗎 ? +Who is next ? 下 一个 是 谁 ? +You know that is not right . 你 知道 不是 那样 的 . +The money you give them will be put to good use . 你 给 他们 的 钱 会 用到 好处 . +You will miss me when I am gone . 我 走 了 你 会 想 我 . +You ought to know better at your age . 在 你 這個 年紀 你 應 該 要 更 懂事 . +She hurt her foot when she fell off her bicycle . 她 在 从 自行车 上 摔下来 时伤 到 了 脚 . +They gave a series of concerts . 他們 辦 了 一系列 的 音樂會 . +Your bicycle is better than mine . 你 的 腳踏車 比 我 的 好 . +I tried to tell you . 我 試著 要 告訴 你 . +I will wait until she comes . 我会 等到 她 来 . +I am glad that they fixed the heating system , but now it is too hot . 我 很 高興 他們 修 復 了 暖 氣 系 統 , 但 現在 太 熱 了 . +Tom was full . 汤姆 饱 了 . +We will talk about it tomorrow . 我們 明天 討論 它 . +She teaches us French . 她 教 我们 法语 . +You could be right , I suppose . 我 猜想 你 可能 是 对 的 . +It is already time to go home . 已经 是 时候 回去 了 . +What do you do ? 你 的 職業 是 什麼 ? +You do not look so well . 你 看上去 不太好 . +She cooked herself a good meal . 她 為 自己 煮 了 好吃 的 一餐 . +I always rely on him in times of trouble . 我 在 困難 時 總是 依賴 他 . +How is school ? 学校 怎么样 ? +Who is your most interesting friend ? 你 最 有趣 的 朋友 是 誰 ? +Nothing is as precious as love . 沒有 什麼 東西 是 跟愛 一樣 珍貴 的 . +Do you like it ? 你 喜欢 吗 ? +I have not seen him for years . 我 有些 年 没见 过 他 了 . +Are we finished ? 我们 完成 了 吗 ? +If you are busy , I will help you . 如果 你 忙 , 我 會 幫 你 . +She may not come here tomorrow . 她 明天 可能 不 會 來 這裡 . +What do you two do for fun ? 你们 两个 做 了 什么 有趣 的 事情 呢 ? +I have to stay in bed all day . 我 不得不 一整天 都 待 在 床上 . +My wife buys vegetables from a supermarket nearby . 我 老婆 在 附近 的 超市 买 蔬菜 . +He is not as smart as his older brother . 他 不 像 他 的 兄长 那样 聪明 . +Is the work hard ? 工作 困難 嗎 ? +Let is play baseball after school . 讓 我們 放學 後 打 棒球 . +Everything is ready . 一切 就绪 . +I would like to have a cup of coffee . 我 想 喝一杯 咖啡 . +You cannot purchase this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +Do not show your face around here again . 你 不要 再 出現 在 這裡 了 . +It was just a joke . 我 这么 说 只是 开 个 玩笑 . +Am I wrong ? 我 錯 了 嗎 ? +We played poker the entire day . 我们 用 了 一整天 打扑克 . +Tom and his wife both grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +Weeds sprang up in the garden . 花園 裡 雜草 叢生 . +Only 3 out of the 98 passengers survived . 98 名 乘客 只有 3 人生 还 . +I am not responsible for what Tom did . 我 不必 對 湯姆 所 做 的 事負責任 . +She always studies while listening to music . 她 總是 邊 聽 音 樂邊 唸 書 . +Thanks for returning my call . 感謝 您 的 回電 . +The lights are not on . 灯 没有 亮 着 . +Do not bother . 不用 麻烦 了 . +The pen is on the desk . 笔 在 桌上 . +Everyone knows Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom knows what he has to do . 湯姆 知道 他 該 做 什麼 . +Time flies . 时间 匆匆 走过 . +What are you cooking ? 你 在 煮 什麼 ? +A new difficulty has arisen . 出现 了 新 困难 . +You ought to be ashamed of yourself . 你 應該 為 你 自己 感到 羞恥 . +I do not want to lose you again . 我 不想 再 失去 你 . +I had a strange dream last night . 我 昨晚 做 了 一個 奇怪 的 夢 . +I had sore legs the next day . 第二天 我 的 腿 很酸 . +I hope he will wait for me . 我 希望 他 會 等 我 . +We will not get paid extra for doing this . 我们 做 这事 没有 额外 报酬 . +The police will put you behind bars . 警察 會 把 你 關 在 牢 裡 . +Fresh fruits and vegetables are good for your health . 新鮮 水果 和 蔬菜 有益健康 . +The watch on the desk is mine . 桌上 的 手表 是 我 的 . +Sydney is the largest city in Australia . 雪梨 是 澳洲 最大 的 城市 . +There is a possibility that you will have to do that . 你 有 可能 不得不 那么 做 . +We will talk later . 我们 过 一会 再 谈 . +I saw him swim across the river . 我 看見 他 游 過 了 河 . +Stay calm . 保持 冷靜 . +I have a car . 我 有 一辆车 . +That is too bad . 多 遗憾 啊 ! +I know where he comes from . 我 知道 他 来自 哪里 . +He could not swim . 他 不能 游泳 . +I am not used to speaking in public . 我 不 習慣 在 公眾場 合 說 話 . +Who wrote this story ? 谁 写 了 这个 故事 ? +What are you punishing them for ? 你 為 什麼 懲罰 他們 ? +We have nothing in common . 我們 沒有 任何 共同 之處 . +I buy donuts every Sunday after church . 我 每个 星期日 礼拜 完 都 买 甜甜 圈 . +Tom says he feels a little better . 汤姆 说 他 感觉 好 点 了 . +Did you go to the book fair ? 你 去 書展 了 嗎 ? +I did not sleep a wink last night . 我 昨晚 一夜 沒 闔眼 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +He will be a good doctor . 他 会 成为 一个 好 的 医生 的 . +You need to attach your photo to the application form . 你 必须 把 你 的 照片 贴 在 申请书 上 . +Who invented the telephone ? 谁 发明 了 电话 ? +How was your weekend ? 你 的 周末 是 怎么 过 的 ? +She drew out the money from the bank . 她 从 银行 取 了 钱 . +Do you want to eat this ? 你 想 吃 這個 嗎 ? +Few people live to be 100 years old . 很少 人 活到 100 岁 . +Tom has no friends who are willing to help him . 汤姆 没有 愿意 帮助 他 的 朋友 . +It is going to be cold tonight . 今晚 會 很 冷 . +I have no idea . 我 一无所知 . +I think Tom will likely like this movie . 我 認為 湯姆 很 可能 會 喜歡 這部 電影 . +Tom wants me to stay away from him . Tom 要 我 離 他 遠 一點 . +Tom is quite likely to be late . 湯姆 很 可能 遲 到 . +I am looking forward to seeing you next Sunday . 我 期待 下 周日 能 见到 你 . +I drank a cup of water . 我 喝 了 一杯 水 . +Theory and practice should go hand in hand . 理论 得 联系实际 . +Tom sat down . 汤姆 坐下 了 . +They will kill you . 他們 要 殺 你 . +I want something to drink now . 我 現在 想要 喝 點 東西 . +We should go to sleep . 我 该 去 睡觉 了 . +That was not my intention . 那 不是 我 的 本意 . +Tom lived in a small fishing village . 汤姆 住 在 一个 小 渔村 . +The dog is dying . 這 隻 狗 快要 死 了 . +You are a beautiful woman . 你 是 个 美 人 . +Tom attached the string to the kite . 湯姆 把 繩子 加在 了 這個 風箏 上 . +He is ashamed of his failure . 他 为 他 的 失败 感到 羞耻 . +I am satisfied with my work . 我 很 滿意 我 的 工作 . +Hi ! Do you work here ? 嗨 ! 你 在 这儿 工作 吗 ? +I know you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +Tom has short hair . 汤姆 ( Tom ) 留 短发 +She always dresses in black . 她 總 是 穿著 黑色 的 衣服 . +Cows are eating grass in the meadow . 牛 吃 牧草 . +Tom told me he was Canadian . 汤姆 告诉 我 他 是 加拿大人 . +He did not go and I did not either . 他 沒 有 去 , 我 也 沒去 . +You will soon hear from him . 你 很快 就 會 收到 他 的 信 . +She backed her car into the garage . 她 倒 車 進車 庫 . +You are the man I have been looking for . 你 就是 我 一直 要 找 的 人 . +Turn the TV off . 把 電視 關了 . +We talked and talked until the day broke . 我們 一直 聊天 直到 天明 . +At last , he came . 最终 , 他 来 了 . +We did not have much rain last month . 上個月 我們 這兒 沒有 下 很多 雨 . +She takes care of my children . 她 照顧 我 的 孩子 . +The air is thin at the top of a high mountain . 山頂 上空 氣 稀薄 . +Your manners are not very good . 你 的 舉止 不是 很 好 . +I would like to tell you something . 我 想 告訴 你 一些 事情 . +Tom turned on the electric fan . 湯姆 打開 了 電風 扇 . +What are your plans for the weekend ? 你 週末 有 什麼 計劃 ? +Tom does not like any kind of spicy food . 汤姆 不 喜欢 任何 辣 的 食物 . +Nobody is too old to learn . 沒 有人 會 因為 太 老 而 不能 學習 . +Can you tell me what this is ? 你 能 告诉 我 这 是 什么 吗 ? +She did not tell me her secret . 她 沒有 告訴 我 她 的 秘密 . +People must love one another . 人 要 爱 他人 . +I really think we should do this . 我 真的 认为 我们 该 做 这个 . +I found a good Mexican restaurant . 我 发现 一家 很好 的 墨西哥 餐厅 . +This dress cost me over 40,000 yen . 這件 衣服 花 了 我 40000 日元 . +Is there anything I must do ? 有 什么 事 是 我 该 做 的 吗 ? +He told me his life is story . 他 跟 我 讲 了 他 的 人生 故事 . +Only one person survived the accident . 只有 一 人 倖 免 於 難 . +They congratulated us on our victory . 他們 祝賀 我們 的 勝利 . +It is okay to go . 你 可以 走 了 . +How long have you been in here ? 你 来 这里 多久 了 ? +Does this letter have to be written in English ? 這 封信 必須 用 英文 寫 嗎 ? +My sister is cooking in the kitchen . 我 妹妹 正在 厨房 做饭 . +Tom realized he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +Learning French is not hard . 学法语 不难 . +I climbed in through the window . 我 从 窗口 爬 进来 的 . +Tom picked up the jar and read the label . 汤姆 拿 起 罐子 读 标签 . +Father would often read detective stories in his spare time . 父亲 常常 在 空闲 时间 读 侦探小说 . +Nothing much has changed . 沒有 多少 改變 . +The board unanimously decided to appoint her as CEO . 董事会 一致 决定 任命 她 为 执行 总裁 . +Why not ? 为什么 不 ? +Nothing happened . 什麼 事 都 沒有 發生 . +Let me help you . Your bag looks very heavy . 让 我 来 帮 你 吧 . 你 的 包 看起来 很重 . +He said , " I am from Canada . " 他 说 : “ 我 是 加拿大 来 的 . ” +He is washing his car . 他 正在 洗 他 的 车 . +I was tired , but I could not sleep . 我 累 了 , 但是 我 睡 不著 . +This makes me sad . 這 讓 我 難過 . +This is surprising . 這 是 令人 吃驚 的 . +I bought a new television . 我 买 了 台 新 电视机 . +Is it right for a doctor to decide when someone should die ? 由 医生 来 决定 某人 何时 该死 是 对 的 吗 ? +Tom has a veterinary background . Tom 有 獸 醫 背景 . +I will be seventeen next year . 我 明年 17 岁 . +Can Tom buy that for us ? 湯姆 能 給 我們 買 嗎 ? +Everybody knows her . 每個 人 都 認識 她 . +He is a pleasant person . 他 是 个 好脾气 的 人 . +My father runs a restaurant . 我 的 父親 經營 一家 餐館 . +Stop gawking . 别 再 傻 看着 . +It has been three months since he left Japan . 自從 他 離開 日本 已經 有 三個 月 了 . +I am almost sure of it . 我 幾乎 能 確定 . +No matter what I do , she says I can do better . 不管 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I was trying to kill time . 我 试 着 消磨 时间 . +See you tomorrow in the library . 明天 图书馆 见 . +An apple fell to the ground . 一個 蘋果 落到 了 地上 . +An old man broke into our conversation . 一位 老人 打斷 了 我們 的 談話 . +I am always busy with my homework . 我 總是 忙 於 功 課 . +What is that ? 那 是 什么 ? +Tom criticized Mary in front of everyone . 汤姆 在 所有人 面前 批评 了 玛丽 . +It has always been a pleasure to work with you . 跟 你 共事 总是 很 愉快 . +My father had already finished breakfast when I got up this morning . 我 今早 起床 时 , 我 爸 已经 吃 过 早饭 了 . +You must be joking . 你 一定 是 开玩笑 ! +When does it start ? 什么 时候 开始 ? +Fish and red wine do not go together . 鱼 和 红酒 不 相配 . +School begins at 8 : 30 a.m. 学校 8 点 半 开始 上课 . +He is afraid of that dog . 他 怕 那 只 狗 . +That would be relevant . 那 会 有 关系 . +Could you tell me how to get there ? 请问 我 该 怎么 去 那里 ? +Have a good weekend . 周末 愉快 . +I did not want this to happen . 我 不想 这种 事 发生 . +They did not keep their promise . 他們 沒有 信守 諾 言 . +The house I bought is pretty far from downtown . 我 買 的 房子 離 市中心 比較 遠 . +Our school is near the station . 我們 學校 在 車站 的 附近 . +I visited my grandmother is house . 我 拜訪 了 我 祖母 的 房子 . +It rains a lot in June in Japan . 在 日本 , 6 月 的 时候 会 下 很多 雨 . +You can take your time . 你 可以 慢慢来 . +He likes hunting . 他 喜欢 打猎 . +It is really not important . 真的 不 重要 . +Please take a look at this picture . 請 看看 這 張 照片 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +The clock is above the fireplace . 時鐘 在 壁爐 的 上方 . +I know the real reason you do not want go . 我 知道 你 不想 去 的 真实 原因 . +Keep going . 继续 吧 . +It is about time to start . 差不多 该 开始 了 . +This is a friend of mine . 這個 是 我 的 朋友 . +The hunter shot and killed the fox . 猎人 射死 了 狐狸 . +I was waiting for something to happen . 我 在 等 事情 發生 . +Walk ahead of me . 在 我 前面 走 . +Speaking English is useful . 说 英语 很 有用 . +You are now an adult . 你 现在 是 大人 了 . +My brother and I shared the room . 我 哥哥 和 我 共用 這間 房間 . +You really are lucky , are not you ? 你 真的 很 幸運 , 不是 嗎 ? +She is not a regular employee of this company . 她 不是 這間 公司 正式 的 職員 . +I do not want there to be any misunderstanding . 我 不想 有 任何 误会 . +That was fabulous . 那 真是 极好 的 . +She was aching from head to foot . 她 浑身 酸痛 . +He bored us with his long stories . 他 長長 的 故事 讓 我們 覺得 厭煩 了 . +I have already finished this book . 我 已經 讀完 了 這 本書 . +She has a gift for prophecy . 她 有 预言 的 能力 . +My brother bought an electric guitar . 我 的 兄弟 買 了 電子 吉他 . +You need protection . 你 需要 保護 . +She is a frequent visitor to this country . 她 经常 来 这个 国家 . +Prices are double what they were two years ago . 價格 是 兩 年前 的 兩倍 . +I like to eat apples . 我 喜欢 吃 苹果 . +Tom refused to help Mary do her homework . 湯姆 拒 絶 幫 瑪 麗 做 她 的 作 業 . +This is the house where he lived . 這 是 他 住 的 房子 . +She cooked vegetable soup for us . 她 為 我們 煮 了 蔬菜 湯 . +I do not have the slightest intention of retiring . 我 没有 一点 退休 的 念头 . +This plan will be very expensive to carry out . 这 计划 执行 起来 花销 会 很大 . +This is not what I ordered . 這 不是 我 點 的 食物 . +He founded the school five years ago . 他 在 五年 前 創立 了 這 所 學校 . +I often go swimming in the river . 我 常常 在 河裡 游泳 . +You can do whatever you want to . 你 可以 做 任何 你 想 做 的 事 . +Work slowly . 干活 慢点 . +They come from the south of France . 他们 是从 法国 南部 来 的 . +Anything that can be misunderstood will be . 任何 事 都 可以 被 誤解 . +He traveled around the world . 他 周遊 世界各地 . +Hurry up ! We will be late . 快點 ! 我們 要 遲 到 了 . +She likes all kinds of sports . 她 喜歡 各種 運動 . +It is quite difficult to master French in 2 or 3 years . 很 难 在 2 、 3 年内 掌握 法语 . +You can use my dictionary . 你 可以 用 我 的 字典 . +His parents expect too much of him . 他 父母 对 他 期望 过 高 . +The lake is deep here . 这个 湖 在 这个 地方 很 深 . +He rescued the dog at the risk of his own life . 他 冒 着 生命危险 救 了 那条 狗 . +Tom finally understood it . 汤姆 最终 明白 了 . +I think I am intelligent . 我 觉得 我 很 聪明 . +I will go back home with you . 我 會 跟 你 一起 回家 . +Do not forget to take the first @-@ aid kit . 别忘了 带上 急救箱 . +I want to see you again . 我 希望 再次 見 到 你 . +The flowers in the garden need to be watered . 花园里 的 花 需要 浇水 . +Tom does not have any friends who like camping . 汤姆 没有 喜欢 露营 的 朋友 . +I can not make any sense of this . 我 完全 不 明白 . +How many apples do you want ? 你 要 多少 個 蘋果 ? +I do not like you anymore . 我 再也 不 喜欢 你 了 . +Let is keep in touch . 让 我们 保持 联络 . +I almost forgot my lunch . 我 快 把 我 的 午饭 忘 了 . +What does this pen cost ? 這 支筆 多少 錢 ? +What time does the play begin ? 演出 什么 时候 开始 ? +I am a teacher . 我 是 個 老師 . +He is at home today . 他 今天 在家 . +I do not want to miss the exam . 我 不想 错过 考试 . +Time is the most precious thing in the world . 时间 是 世界 上 最 宝贵 的 东西 . +Go back to the office . 回辦 公室 去 . +She can sing and dance beautifully . 她 會 唱歌 而且 舞 跳 得 很美 . +She plays the piano very well . 她 鋼琴 彈 得 很 好 . +I feel unwell . 我 感觉 不 舒服 . +But you are not there . 但 你 不 在 那裡 . +It was Tom that saved the girl . 是 湯姆 救 了 這個 小女孩 . +Both French and English are spoken in Canada . 在 加拿大 的 人 說 法語 和 英語 . +She lived a lonely life . 她 的 生活 很 寂寞 . +We will go on a picnic next Sunday . 我們 下週 六 將 去 野餐 . +Will it be necessary for us to buy a book for this class ? 我们 有 必要 为 上 这 门 课 买 本 教材 吗 ? +Mary is carrying a watermelon . 瑪麗婭 抱著 一個 西瓜 . +I am sorry . I have another appointment . 很 抱歉 , 我 还有 另 一个 约会 . +The road is under construction . 路 正在 建 . +Are you saying my life is in danger ? 你 在 说 我 有 生命危险 吗 ? +We depend on you . 我们 可 全 靠你了 . +This is the church where we got married . 這裡 是 我們 結婚 的 教堂 . +Children need a lot of sleep . 孩子 們 需要 大量 的 睡眠 . +My mother made me a white dress . 我 媽媽 為 我 做 了 一件 白色 的 洋裝 . +There are 50 members in the club . 這個 俱樂部 有 50 位 成員 . +Will you wait a minute ? 麻煩 您 等 一下 . +She is just a child . 她 只是 個 孩子 . +I was invited to their wedding . 我 被 邀請 參加 他們 的 婚禮 . +He stepped on my foot on purpose . 他 故意 踩 我 的 腳 . +Tom was ready to work . 湯姆 準備 去 工作 . +We let him keep the dog . 我們 讓 他 養 狗 . +Wine helps with digestion . 葡萄酒 幫 助消化 . +Tom says that he is a creature of habit . 汤姆 说 他 是 习惯 的 产物 . +I have had a headache for three days and I can not get rid of it . 我 已经 头疼 三天 了 , 还 没 摆脱 它 . +Some of them are healthy , but others are not . 他们 中 的 一些 人 身体健康 , 但是 其他人 不是 . +I have a friend whose father is a famous writer . 我 有個 朋友 的 父親 是 知名 的 作家 . +I can not speak English at all . 我 一点 英文 都 不会 说 . +Ask for what you want . 要 你 想要 的 ! +Tom looked well . 汤姆 看上去 很 精神 . +Our country must develop its natural resources . 我們 國家 必須 開發 自然 資源 . +It is two @-@ hour drive from here to my uncle is house . 从 这里 坐车 , 要 花 两个 小时 才能 到 我 叔叔 家 . +I have always been smart . 我 一直 聪明 . +When I came home , Tom was studying . 當 我 回家 的 時候 , 湯姆 正在 讀書 . +Let me have a look at it . 讓 我 看看 它 . +The whole class is present once a week . 全班同学 每周 出席 一次 . +I have two nieces . 我 有 两个 外甥女 . +Tom hit me first . 汤姆 先 打 了 我 . +Do not ask questions . Just follow me . 别 问 问题 . 跟着 我 就 行 . +Do you want more ? 你 想要 更 多 嗎 ? +This month was kind of difficult . 这个 月 我 过得 有点 艰难 . +Only then did he realize he had been deceived . 直到 那时 , 他 才 意识 到 他 已经 上当受骗 . +You should obey your parents . 你 该 听 你 父母 的话 . +He invited me to his house . 他 邀请 我 去 他家 . +He has not answered my letter yet . 他 还 没回 我 的 信 . +Shut the door . 关门 . +Mars has two natural moons . 火星 有 兩個 天然 衛星 . +She becomes drowsy after dinner . 晚 飯 後 她 變得 昏昏欲睡 . +What does this pen cost ? 这 支 钢笔 要 多少 钱 ? +I did not go to school last Monday . 上周 一 我 没 去 上学 . +The company went bankrupt . 公司 破产 了 . +Some people like sports , and others do not . 有些 人 喜欢 运动 , 有些 人 不 喜欢 . +Do you have any money with you ? 你 身上 有 錢 嗎 ? +There are many beautiful castles in northern Germany . 在 德國 北部 有 很多 美麗 的 城堡 ? +How much money do you have ? 你 有 多少 錢 ? +The vase was shattered . 花瓶 被 打碎 了 . +I have not seen him in a long time . 我 好久不见 他 了 . +I do not know if there is time . 我 不 知道 有没有 时间 . +I believe in you . 我 相信 你 . +It is started raining again . 又 开始 下雨 了 . +I have to get some sleep . 我 必須 睡 一下 覺 . +Tom does not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +How long will the train stop here ? 火车 要 在 这里 停 多久 ? +It is a beautiful painting . 是 一幅 漂亮 的 畫 . +Who took the money ? 誰 拿 了 錢 ? +It is evident that he has made a mistake . 很 明顯 的 是 他 犯 了 錯 . +Why do not you eat vegetables ? 为什么 你 不吃 蔬菜 ? +Could you please pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Tom is by far the tallest boy in our class . 汤姆 远 比 我们 班 其他 男孩 高 . +I went to three funerals last month . 上个月 我 参加 了 三场 葬礼 . +I wish I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +They live across the river . 他們 住 在 河對面 . +Is there a supermarket near here ? 這 附近 有 超市 嗎 ? +How about playing tennis ? 打 網球 怎麼樣 ? +I do not think I can help you very much . 我 不 認為 我 能 幫 你 很多 . +One hundred years is called a century . 一百年 称为 一个 世纪 . +Australia is the world is fifth @-@ largest coal producer . 澳大利亚 是 世界 第五 大 煤炭 产地 . +I sometimes play tennis with her . 有時 我 會 跟 她 打 網球 . +He occasionally visited me . 他 偶尔 会 来 拜访 我 . +Tom and Mary are in the same class . 汤姆 和玛丽 在 同一个 班级 . +Do you have a coat and a hat ? 你 有 外套 和 帽子 嗎 ? +Tom was wearing jeans . 湯姆 穿著 牛仔 褲 . +Tom finally gave up smoking . 汤姆 终于 戒烟 了 . +There is enough time for a quick snack . 有 足夠 的 時間 很快 地 吃 一下 點 心 . +They rescued the boy from drowning . 他們 救 了 這個 男孩 , 使 他 免 於 淹死 . +I do not want to go there . He does not want to go either . 我 不想 去 那儿 , 他 也 不想 . +I gave my sister a dictionary . 我 給 了 我 妹妹 一本 字典 . +He has strange ideas . 他 有着 奇妙 的 想法 . +She has an agreeable voice . 她 的 声音 令人 愉快 . +When did your baby start talking ? 你 的 寶寶 , 什麼 時候 開始 說 話 的 ? +Tom used to drink like a fish . Tom 過去 喝 很多 酒 . +We need to get some help . 我们 需要 人 帮忙 . +She got her daughter a personal computer . 她 給 她 的 女兒 買 了 一台 個 人 電腦 . +They left one after another . 他们 一个 接着 一个 地 离开 了 . +Fill in your name and address . 填上 你 的 姓名 和 地址 . +He makes three times more money than I do . 他 赚 的 钱 比 我 多三倍 . +They got into the train . 她們 上 了 火車 . +He read the letter over and over . 他 把 信读 了 一遍 又 一遍 . +The boat is going against the current . 船 逆流 航行 . +By the way , have you seen him lately ? 顺便 说 一句 , 你 最近 见 过 他 吗 ? +She made me a cake . 她 为 我 做 了 一个 蛋糕 . +He who laughs last laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +She was hit by a car . 她 被 車 撞 了 . +I believe you will get over it soon . 我 相信 你 很快 就 能 复原 . +Would you please write with a ballpoint pen ? 你 能 用 圆珠笔 写 吗 ? +The two of us are students . 我們 兩個 是 學生 . +My French is not good enough . 我 的 法语 说 得 不够 好 . +What color is your hair ? 您 的 头发 是 什么 颜色 的 ? +Stop joking around . 別 開 玩笑 了 . +Do you want to eat something else ? 你 想 吃 點 別的 嗎 ? +I do not know what Tom is plan is . 我 不 知道 湯姆 的 計劃 是 甚麼 . +He thought that it was like a bird cage . 他 认为 这 像 个 鸟笼 . +You must put an end to this foolish behavior . 你 该 结束 这种 愚蠢 的 行为 了 . +He graduated from Harvard University with honors . 他 光榮 地 從 哈佛 大學 畢業 了 . +Your memory is not too good . 您 记性 不太好 . +These peaches are not very sweet . 這些 桃子 不是 很甜 . +It is very simple . 这 很 简单 . +Tom ate a slice of pizza . 湯姆 吃 了 一片 比薩餅 . +You can swim , can not you ? 你 會 游泳 , 不是 嗎 ? +Rome has a lot of ancient buildings . 罗马 有 很多 古建筑 . +I am extremely grateful to you . 我 無法 表達 我 對 你 的 感謝 . +Tom is a good person . 湯姆 是 個 好人 . +Tom did not want to come . 汤姆 不想 来 . +Tom started running towards the house . 湯姆 開始 向 房子 跑 去 . +He had kept the secret to himself . 他 保守 著 這個 秘密 . +Tom asked Mary some questions , but she refused to answer them . 汤姆 问 了 玛丽 一些 问题 , 但是 她 拒绝 回答 . +How long ago did the bus leave ? 這輛 公車 多久 前 離開 的 ? +I am using Twitter . 我 用 Twitter . +This bus will take you to the airport . 这辆 公交车 能载 你 去 机场 . +Tom never wanted to try it . 湯姆 從 不想 試試 . +Your behavior leaves much to be desired . 你 的 行为 离 要求 的 太 远 了 . +Tom did not go . 汤姆 没 走 . +How large is your family ? 你 的 家庭 有 多 大 ? +Fear quickly turned into anger . 恐惧 很快 变成 愤怒 . +Are you dating anybody ? 你 跟 人 約 會 過 嗎 ? +Tom joined the discussion . 汤姆 参加 了 讨论 . +I can work with anyone . 我 能 跟 任何人 工作 . +He has a few pens . 他 有些 鋼筆 . +The tiger cub looked like a large kitten . 小老虎 看起 來 像 隻 大 貓 . +Tom will not likely be grumpy again today . 汤姆 今天 脾气 不太可能 会 那么 坏 了 . +Do not forget me . 別 忘 了 我 . +I took a day off last week . 上週 我 休 了 一天 的 假 . +This swallow is wings are broken . 这 只 燕子 的 翅膀 受伤 了 . +I stayed at his place yesterday . 我 昨天 住 在 他家 . +She lived up to our expectations . 她 没有 辜负 我们 的 期望 . +It is difficult to keep secrets . 守住 秘密 很 难 . +She may be a nurse . I am not sure . 她 可能 是 护士 . 我 不 太 肯定 . +That boy used to drop in on me . 那 男孩儿 来访 过 我家 . +My blood type is A positive . 我 的 血型 是 A型 血 阳性 . +He is just a business associate . 他 只是 個 事業 合夥人 . +What do you want to be when you grow up ? 你 长大 后 想 成为 什么 ? +Would you like some sugar in your tea ? 红茶 里 要 加糖 吗 ? +Do you have siblings ? 你 有 兄弟姐妹 吗 ? +It seems that you are not having a good time here . 好像 你们 在 这儿 玩 得 不 愉快 啊 . +He lived here for a time . 他 在 这儿 住 了 有 一段时间 了 . +Tom said Mary is shy . 湯姆 說 瑪麗 害羞 . +You should stay away from Tom . 你 应该 离 汤姆 远 点儿 . +There are four people in my family . 我家 有 四個 人 . +We talked about yesterday is test . 我們 談到 了 昨天 的 測驗 . +He occasionally reads detective novels . 他 偶尔 会 阅读 一些 侦探小说 . +I have no doubts . 我 没有 疑问 . +Tom happened to meet Mary at the supermarket . 汤姆 在 超市 偶遇 玛丽 . +Is it all right to take pictures in this building ? 我们 可以 在 大楼 里 拍照 吗 ? +Is it serious ? 严重 吗 ? +The incident made everyone feel more embarrassed . 這件 事 弄 得 大家 都 比較 尷尬 . +I asked him to help me . 我 請 他 幫 我 . +An old man was resting in the shade of the tree . 一個 老人 在 樹蔭 下 休息 . +I must help my mother . 我 必須 幫忙 我 母親 . +I will give you a book . 我 會 給 你 一本 書 . +My camera does not need to be fixed . 我 的 照相 機 不 需要 修理 . +I can start anytime . 我 随时 可以 开始 . +What do you think would happen if the earth stopped spinning ? 如果 地球 停止 自传 , 你 认为 会 发生 什么 ? +My father had me wash the car . 父亲 让 我 洗 汽车 . +This is the best book that I have ever read . 這 是 我 讀 過 的 最好 的 書 . +Tom helped Mary buy everything she needed . 湯姆幫 瑪麗 買 了 她 所有 需要 買 的 東西 . +Who do you want to speak to ? 你 想 跟 誰 說 話 ? +I hid in the tall grass . 我 躲 在 高 草丛里 了 . +You said that you 'd help me . 你 说 过 你 会 帮 我 的 . +Children generally have a higher body temperature than adults . 小孩 的 体温 一般 比 大人 的 要 高 . +He quickly went out of the room . 他 很快 地 走出 了 房間 . +I worked in a post office during the summer vacation . 暑假 期间 , 我 在 邮局 工作 . +I will obey . 我会 听从 指示 . +Come home . 回家吧 . +I have a high opinion of this book . 我 對 這 本書 評價 很 高 . +You must have been asleep . 你 一定 睡著 了 . +He does not like fish . 他 不 喜歡 吃 魚 . +Tom is escaping . 湯姆 在 逃跑 . +I have tried to contact Tom . 我 试 过去 联系 汤姆 . +I owe everything to Tom . 我 什么 都 欠 汤姆 的 . +I will get started right away . 我 會 立刻 開始 . +Mix the flour with two eggs . 把 麵 粉 和 兩 顆 雞 蛋 混合 . +He was tired , but he kept working . 他 累 了 , 但是 他 繼續 工作 . +Tom says he does not know how to swim . 汤姆 说 他 不 知道 怎么 游泳 . +I forget where I put my hat . 我 忘 了 我 把 我 的 帽子 放在 哪裡 了 . +I hear that he sold his house . 我 聽 說 他 賣 掉 了 房子 . +Do not depend too much on others . 不要 太 过于 依赖 别人 . +Please fill this bottle with water . 請 把 這個 瓶子 裝滿 水 . +Do not laugh at him for making a mistake . 不要 笑 他 犯 了 错误 . +Are not you going to go with me ? 你 不要 跟 我 一起 走 嗎 ? +Tom was caught driving without a license . Tom 被 抓到 無照 駕駛 . +He is not able to buy a car . 他 不能 买车 . +Do you go to church on Christmas Day ? 你 在 圣誕節 去 教堂 嗎 ? +My boss assigned the hard job to me . 我 老板 把 艰巨 的 任务 指派 给 了 我 . +It is not necessary for you to quit the job . 你 没 必要 辞掉 工作 . +He went bankrupt . 他 破产 了 . +I prefer being poor to being rich . 我 更 愿意 贫穷 而 不是 富裕 . +I hate silent movies . 我 讨厌 无声电影 . +I respect the elderly . 我 尊敬 长辈 . +It is impossible to master English in a short time . 不 可能 短时间 内 学会 英语 . +Tom went over and sat down next to Mary . 汤姆 来 了 , 坐到 了 玛丽 的 边上 . +You should read a lot of books while you are young . 应该 趁 年轻 多 读点 书 . +The boat was tied with a short line . 船 被 用 短 繩 繫 著 . +What was it we were talking about ? 我们 那个 时候 讨论 的 是 什么 ? +Can I borrow your car ? 我 能 借 你 的 车 吗 ? +I have looked everywhere , but I can not find my book . 我什麼 地方 都 找 過 了 , 但 卻 找 不到 我 的 書 . +She substituted margarine for butter . 她 用 人造黄油 代替 了 黄油 . +Were you able to do it ? 你 有 能力 去 做 这个 吗 ? +Can I get my money back ? 我 是不是 能 收回 我 的 钱 ? +It is very cold . 天气 非常 寒冷 . +He likes to travel by himself . 他 喜歡 獨自 旅行 . +His intelligence and experience enabled him to deal with the trouble . 他 的 智慧 和 經驗 使 他 能 處理 這個 麻煩 . +We can not let them do that . 我们 不能 让 他们 那么 做 . +Have you traveled anywhere recently ? 你 最近 去 哪裡 旅遊 了 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 网站 的 版面设计 . +Is this your notebook ? 這 是 你 的 筆記 本 嗎 ? +She will cry even when no one is looking . 没 人 盯 着 她 的 时候 , 她 甚至 会 哭 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +Nobody can stop me ! 没 人 能 阻止 我 ! +What happened to your computer ? 你 的 電腦 怎麼 了 ? +He came here ten minutes ago . 他 十分 鐘 前 到 這裡 . +Are you happy now ? 你 现在 高兴 吗 ? +Tom has spent the past three years in prison . 湯姆 在 監 獄裡 待 了 三年 . +I do not think he is sincere . 我 不 相信 他 是 真心 的 . +Have you ever seen such a beautiful sunset ? 你 看 過 這麼 美的 夕陽 嗎 ? +Go to the patio . 去 露台 . +I listen to the radio every night . 我 每晚 都 听 收音机 . +I had hoped to meet you there . 我 曾 希望 在 那裡 遇見 你 . +He gave us not only clothes but some money . 他 不仅 给 了 我们 衣服 , 还有 一点 钱 . +It is hard for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +She eats nothing but vegetables . 她 只 吃 蔬菜 . +Tom needs a change of scenery . 汤姆 需要 换换 风景 . +Do not speak to anyone . 你們 別 和 任何人 說 . +Is it something I said ? 是 我 說 的 嗎 ? +Why do you need to read such a book ? 为什么 你 要读 这样 一 本书 ? +Why are not you coming with us ? 你 为什么 不 和 我们 一 起来 ? +Why do not we have dinner ? 為 甚麼 我們 不吃 晚 飯 ? +He majors in English literature . 他 主修 英國 文學 . +You have made progress . 你 进步 了 . +I am a new student . 我 是 个 新生 . +He has a car . 他 有 辆车 . +You are as tall as I am . 你 和 我 一样 高 . +Children should keep away from the river . It is dangerous . 儿童 应该 远离 河流 . 有 危险 . +Could you take me to a movie ? 你 帶 我 去 看 電影 好 嗎 ? +It would be ridiculous to spend all their money . 花光 他們 所有 的 錢 會 很 荒謬 . +It is only a matter of time . 這 只是 時間 的 問題 . +You are very talkative , are not you ? 你 很 健谈 , 不是 吗 ? +Is that better ? 那 更好 吗 ? +He put his hands in his pockets . 他 把手 插進 口袋 裡 . +This is your dog . 这 是 你 的 狗 . +Are you sure you do not want to sleep on it ? 你 確定 你 不想 睡 在 它 上面 嗎 ? +I will go with you if necessary . 如果 必要 的 話 , 我 會 和 你 一起 去 . +Abraham Lincoln , the 16th president of the United States , was born in a log cabin in Kentucky . 伯 拉罕 · 林肯 , 美国 第 16 任 总统 , 生于 肯塔基州 的 一个 简陋 的 小 屋里 . +No one will talk . 没人会 讲 . +This tea tastes good . 這 茶 味道 不錯 . +Will you all be here tomorrow ? 明天 你 一整天 都 會 在 這裡 嗎 ? +Please call me at my hotel later . 等 一下 請 打 電話 到 我 住 的 旅館 . +I felt my hands tremble . 我 感覺 到 我 的 手 在 震動 +They were alone in the library . 他們 獨自 在 圖書館 裡 . +A truck was standing in the middle of the road . 路 中间 有 一辆 卡车 . +She is as beautiful as Snow White . 她 像 白雪公主 一樣 漂亮 . +Tom is living in Boston now . 汤姆 现在 住 在 波士顿 . +Tom paid me back the money he owed me . 汤姆 把 欠 我 的 钱 还给 我 了 . +Everybody will die . 人 固有 一 死 . +Tom is a bit snobbish . 汤姆 有 一点 势利 . +It can not be ! 不 可能 ! +She is almost the same height as you . 她 差不多 和 你 一样 高 . +You must not jump to conclusions . 你 不 可以 妄下 結論 . +Tom was questioned by the police . 汤姆 被 警察 盘问 . +A lot of houses were washed away by the flood . 许多 房屋 被 洪水 冲走 了 . +It makes sense . 那样 说 得 通 . +Read Lesson 10 from the beginning . 從 第十 課 的 開頭 讀起 . +Tom said he is glad he could do that . 湯姆 說 他 很 高興 他 能 做 . +I will try my best today , too . 今天 我 也 会 努力 的 . +Draw a line from A to B. 请 画 一条 从 A 到 B 的 线 . +If it rains tonight , I am not going to go out . 如果 今晚 下雨 , 我 就 不 出去 . +Do not change your mind . 不要 改變 你 的 心意 . +I think we should change the topic . 我 認為 我們 該 換 個題 目 . +Do not forget smoking is bad for your health . 不要 忘记 吸烟 对 你 的 健康 有害 . +Tom did not let his children go to Mary is party . 湯姆 沒 有 讓 他 的 孩子 們 去 瑪莉 的 派 對 . +We were very sorry that we could not help them . 我們 很 遺憾 無法 幫助 他們 . +The price of meat dropped . 肉价 下跌 了 . +You have got to be joking . 你 一定 是 开玩笑 ! +Choose the color you like the best . 選 你 最 喜歡 的 顏色 . +I walked to school . 我 走路 到 學校 . +All of the milk was spilled . 所有 的 牛奶 都 溢出 去 了 . +How long is this visa good for ? 這個 簽證 的 有效期限 是 多久 ? +We like to play soccer . 我們 喜歡 踢足球 . +Water poured from the broken pipe . 水 從 破裂 的 水管 傾瀉 而 出 . +I got him to fix my bicycle . 我 讓 他 修理 了 我 的 腳踏車 . +Tom has been driving all day . 汤姆 整天 都 在 开车 . +I do not know if I have the time . 我 不 知道 我 有 沒有 時間 . +Spring has come . 春天 到 了 . +I would like to change yen to dollars . 我 想 把 日元 換成 美元 . +Afraid of hurting his feelings , I did not tell him the truth . 怕 傷害 了 他 的 感情 , 我 沒有 告訴 他 真相 . +We kept them quiet . 我們 讓 他們 保持 安靜 . +I did not know what to say . 我 不 知道 該 說 些 什麼 . +Sorry , I do not have any change . 不好意思 , 我 没 零钱 . +She asked him for help . 她 向 他 求助 . +Tell me the correct answer . 告诉 我 正确 的 答案 . +We went to the races . 我们 去 看 了 比赛 . +They set out on a picnic . 他们 出发 去 野餐 了 . +Tom followed . 汤姆 跟着 . +You have lost weight , have not you ? 你 减肥 了 , 不是 么 ? +Karaoke is good for reducing stress . 卡拉 OK 對 減輕 壓力 有益 . +Good luck on the test ! 祝 考试 好运 ! +I hear you , but I do not see you . 我 听得见 你 , 但 我 看不见 你 . +You are in better shape than I am . 你 的 體型 比 我 的 好 . +Tom never forgets to give his wife flowers on their wedding anniversary . 汤姆 从没 忘记 在 婚礼 周年 纪念日 送给 他 妻子 花 . +Did you enjoy yourself yesterday ? 你 昨天 玩 得 開心 嗎 ? +My father often goes to America on business . 我 爸爸 经常 去 美国 出差 . +The man ate bread . 這個 男人 吃 了 麵 包 . +It is already nine o 'clock . 已经 9 点 了 . +She calmed down . 她 冷靜 下來 . +The family ate dinner together . 家裡 人 一起 吃 了 晚 飯 . +You should not have gone there . 你 不 應 該 去 那裡 的 . +He invited me to dinner . 他 邀請 我 吃 晚 飯 . +The rumor turned out to be false . 谣言 [ 最后 ] 证明 是 假 的 . +Is Tom Canadian ? Tom 是 加拿大人 嗎 ? +One after another , the animals died . 動物 一個 接 一個 的 死亡 . +Is it next Monday that Tom returns ? 汤姆 是 在 下个星期 一 回来 吗 ? +No arrests were ever made . 根本 就 没 实施 过 逮捕 行动 . +I got over the difficulty with my characteristic tenacity . 我 凭 韧性 克服 了 困难 . +Printing ink is in short supply . 油墨 快没了 . +Can I eat my lunch here ? 我 能 在 這裡 吃 午 飯 嗎 ? +I screwed up the very first note . 我 搞砸 了 第一 個 音符 . +He is a tennis player . 他 是 个 网球 球手 . +Are you the one who did that ? 你 就是 做 那事 的 人 嗎 ? +The room smelled of tobacco . 房里 有 股 烟味 . +A doctor was sent for at once . 醫生 立刻 被 請來 了 . +You have been had . 您 被 骗 了 . +She gave me a present . 她 給 了 我 一件 禮物 . +One who has everything can lose everything . 拥有 一切 的 人 可能 会 失去 一切 . +Tom complained that Mary never helped him . 汤姆 埋怨 玛丽 从来不 帮 他 . +I have a home . 我 有 一个 家 . +Take it . 拿走 吧 . +He had an accident at work . 他 在 工作 中 出 了 意外 . +Has she finished her work yet ? 她 完成 了 她 的 工作 嗎 ? +Stop whining . 别 再 埋怨 了 . +They helped one another to make the school festival a success . 他们 互帮互助 , 把 校庆 搞 得 很 成功 . +Man is the only animal that can speak . 人 是 唯一 会 说话 的 动物 . +I am leaving for Tokyo tomorrow . 我 明天 要離 開去 東京 . +He was run over by a car . 他 被 車 輾過 了 . +The universe is limitless . 宇宙 浩瀚 無邊 . +The baby is playing with some toys . 這個 小 嬰兒 正在 玩 一些 玩具 . +I have to take a test tomorrow . 明天 我 必須 參 加考 試 . +Which do you like better , rock music or classical music ? 你 比較 喜歡 哪 一個 , 搖滾樂 還 是 古典 音樂 ? +Please knock before you come in . 进来 之前 请 敲门 . +What is the exchange rate today ? 今天 的 匯率 是 多少 ? +I want to go to America some day . 有 一天 我 要 去 美國 . +A good cook does not throw out yesterday is soup . 一個 好 的 廚師 不 會 丟掉 昨天 的 湯 . +From what school did you graduate ? 您 是从 哪个 学校 毕业 的 ? +Tom seems to really enjoy being in Boston . 湯姆 看來 真喜 歡待 在 波士 頓 . +Let is take a trip to New York . 去 纽约 旅行 吧 ! +You can not say that . 你 不能 这么 说 . +I can still remember the time when we went on a picnic together . 我 还 记得 我 和 你 一起 去 野餐 的 时候 . +We can not go outside because it is raining . 因为 下雨 , 我们 不能 出去 . +I live too far away . 我 住 得 太 遠 了 . +Is there anything in the box ? 箱子 裡 有 任何 東西 嗎 ? +I like walking alone . 我 喜歡 獨 自行 走 . +I am positive that he has finished . 我 確信 他 已經 完成 了 . +We watched them play baseball . 我們 看著 他們 打 棒球 . +He entered the army . 他 加入 了 陸軍 . +Everyone knows that Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +All participants must be registered . 所有 的 參加者 都得 註 冊 . +Getting started was difficult . 开始 很 难 . +I have never seen Tom so angry . 我 从没 见 过 汤姆 那么 生气 . +I have a black and a white dog . 我 有 一只 黑狗 和 一只 白狗 . +Tom undressed and got into bed . 汤姆 脱光 睡觉 了 . +I owe my success to him . 我 把 我 的 成功 歸功 於 他 . +It is strange that he should say so . 他 这么 说 很 奇怪 . +This is not the type that I like . 这 不是 我 喜欢 的 类型 . +They say that she was born in Germany . 他们 说 她 是 在 德国 出生 的 . +I remember this map . 我 記得 這 張 地圖 . +You are a good cook . 你 是 个 好 厨师 . +How did he find us ? 他 怎麼 找到 我們 的 ? +He does not have any friends . 他 没有 朋友 . +Could you call a doctor , please ? 你 能 請 個 醫生 來 嗎 ? +Riding a horse is really thrilling . 騎馬 真的 很 令人 興奮 . +The boy grew up to be a great statesman . 这个 孩子 长大 后 成为 了 一个 伟大 的 政治家 . +Only a fool would do something like that . 傻瓜 才 会 那么 干 . +We enjoyed swimming in the lake . 我们 尽情 在 湖里 游泳 . +I can play soccer . 我 會 踢足球 . +The firm went under due to lack of capital . 公司 由于 缺乏 资本 倒闭 了 . +Do you study English ? 你 学 英语 吗 ? +I have an opinion . 我 有 一個 意見 . +I ran away in a hurry . 我 趕快 跑 走 了 . +I still have not heard from him . 我 還 沒 收到 他 的 信 . +Tom loves flowers . 湯姆 熱愛 花卉 . +He comes here twice a week . 他 一周 来 这儿 两次 . +This is not my key . 這 不是 我 的 鑰匙 . +Many moons orbit around Saturn . 許多 衛星 繞著 土星 運行 . +I have not had time to look for what you wanted . 我 没 时间 找 你 想要 的 东西 . +They love that . 他们 喜欢 那个 +The island is a paradise for children . 这个 岛 是 孩子 们 的 天堂 . +He has a large family . 他 有 一個 大家庭 . +The ice on the lake is too thin to bear your weight . 湖上 的 冰 太薄 了 , 承受 不了 你 的 重量 . +Tom seems to be a fairly successful businessman . 汤姆 看来 是 个 很 成功 的 商人 . +She gets good marks in English . 她 英语 成绩 很 好 . +If the car breaks down , we will walk . 如果 車子 壞 了 , 我們 就 走路 . +What happened to him ? 他 發生 了 什麼 事 ? +We are adults . 我们 已 是 成年人 了 . +This makes me happy . 這 讓 我 開心 . +See you tonight . 今晚 見 . +What have you done with my pen ? 你 把 我 的 筆 怎麼 了 ? +The dog was hit by a truck . 狗 被 卡車 撞 了 . +Come home before six . 六点 之前 要 回家 . +I agree with you to some extent . 我 在 一定 程度 上 同意 你 的 意見 . +I will go to the meeting . 我 将要 去 参加 会议 . +I always enjoy listening to classical music when I have some free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +I heard it on the radio . 我 從 收音 機 聽到 它 . +You 'd better start now . 你 最好 現在 就 開始 . +If you are tired , just let me know . 困 了 的话 就 说 哦 . +Let is continue the game after supper . 讓 我們 在 晚 飯 后 繼續 這個 遊戲 . +He is much younger than Tom . 他 比 Tom 年轻 得 多 . +She decorated her room with roses . 她 用 玫瑰花 装饰 了 她 的 房间 . +You should emphasize that fact . 你 應該 重視 那個 事實 . +This is the cheaper of the two . 這 是 兩件 裡 便宜 的 那個 . +I will be staying here for another three days . 我会 在 这儿 再 待 上 三天 . +There is a knife missing . 少 一把 刀 . +Tom sent me an interesting text . 汤姆 给我发 了 一条 有趣 的 短信 . +Do you have something to say ? 您 有 什么 事 要说 吗 ? +Tom worries a lot about money . 汤姆 很 担心 钱 的 问题 . +I have found a place to live . 我 找到 了 个 住处 . +Three cubed is twenty @-@ seven . 三 的 立方 是 二十七 . +I have not finished reading this book yet . 我 還 沒讀 完 這 本書 . +The young should respect the old . 年轻人 应该 尊敬 老人 . +I heard a knock at the door . 我 聽到 了 敲門聲 . +The life span of a butterfly is short . 蝴蝶 的 寿命短 . +I do not like science . 我 不 喜欢 科学 . +He did not know what to say . 他 不 知道 说 什么 好 . +I like red roses . 我 喜歡 紅色 的 玫瑰 . +They all envied my new car . 他们 都 羡慕 我 的 新车 . +Halley is Comet will come back in 2061 . 哈雷彗星 將 在 2061 回來 . +I did not mean to be selfish . 自私 不是 我 的 本意 . +I want to talk to him . 我 想 跟 他 說 話 . +I like tennis very much . 我 非常 喜歡 網球 . +This is a very beautiful flower . 這 是 一朵 非常 美麗 的 花 . +How much did you pay ? 您 付 了 多少 钱 ? +Why are you busy today ? 你 今天 为什么 忙 ? +That person does not want to do anything . 那人 甚麼 也 不想 做 . +Tom does not quite get it . Could you explain it to him again ? 汤姆 不 大 明白 . 你 能 再 跟 他 解释 一遍 吗 ? +This turkey tastes good . 这 只 火鸡 味道 很 好 . +No one else was hurt . 没有 别的 人 受伤 . +We went to the movies last night . 我們 昨晚 去 看 電影 了 . +What did Tom say ? 汤姆 说 了 什么 ? +I understand it more or less . 我 大概 懂 了 . +It seems that he knows everything . 他 似乎 什麼 都 知道 . +I listened , but I did not hear anything . 我 听 了 , 但 什么 也 没 听到 . +Did you buy juice ? 你 買 果汁 了 嗎 ? +Can you put some suntan lotion on my back ? 你 能 在 我 的 背上 涂 些 防晒霜 吗 ? +We are fighting against time . 我們 在 跟 時間 鬥爭 . +The price of rice has come down . 米价 下跌 了 . +Do not let anyone press this button . 別 讓 任何人 按 這個 按 鈕 . +What time is it ? 幾點 了 ? +The taller the tree , the more likely it is to be struck by lightning . 树 高 遭雷击 . +He is like his father . 他 像 他 父亲 . +My pulse is fast . 我 的 脉搏 很快 . +After supper , she cleared the table . 晚 飯 後 她 清理 了 桌子 . +I have nowhere to go now . 我 现在 无处可去 . +My house has a small yard . 我 的 房子 有 一個 小 院子 . +We are eating apples . 我們 正在 吃 蘋果 . +I must go now . 我 現在 必須 走 了 . +She made a mess of the work . 她 把 工作 弄 得 一團糟 . +I would like to have this meat dish with your best white wine . 我 想 在 吃 这 肉 喝 你 最好 的 白酒 . +Do you have any other questions ? 你 有 任何 其他 的 問題 嗎 ? +Give me a glass of water , please . 請 給 我 一杯 水 . +I do not for a moment think you are wrong . 我 从没 认为 你 错 了 . +You need to know . 你 有 必要 了解 . +Does anyone know Tom ? 有人 認識 湯姆 嗎 ? +He disregarded my advice . 他 不 顧 我 的 忠告 . +He gave her a piece of advice . 他 給 了 她 一個 忠告 . +Asia is roughly four times the size of Europe . 亚洲 的 大小 约 四倍 于 欧洲 . +This letter is wrongly addressed . 这 封信 寄错 地方 了 . +I do not eat chicken skin . 我 吃不下 鸡皮 . +I always kept my promises . 我 一直 遵守 我 的 諾言 . +We were kids then . 我们 那时 是 孩子 . +You do not need to speak so loud . 你 不必 這麼 大聲 說 話 . +Tom apologized for what he did . 湯姆 為 他 所 做 的 事 道歉 . +I will finish it by tomorrow afternoon . 明天 下午 之前 我会 把 它 完成 . +I need help . 我 需要 帮助 . +Tom did a good job predicting who would win the election . 汤姆 预测 胜选者 做得好 . +I have a frog in my throat . 我 的 喉嚨 裡有一 隻 青蛙 . +You are one of my best friends . 你 是 我 最好 的 朋友 之一 . +Demand for occupational therapy has surged in recent years . 这 几年 对 作业 疗法 的 需求 在 迅速 增长 . +The parking lot is free of charge . 停车场 是 免费 的 . +Tom told me he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Do not open this door , please . 請 不要 打開 此 門 . +We have not finished eating the watermelon yet . 我們 還 沒 吃 完 這個 西瓜 . +I want to eat pizza tonight . 我 今晚 想 吃 些 批 萨 . +When I entered the room , she was playing the piano . 当 我 进入 那个 房间 的 时候 , 她 正在 弹钢琴 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +My baby began crying , asking for milk . 我 的 宝宝 开始 哭 了 , 他 想要 吃奶 . +I do not think that he will come . 我 不 認為 他 會 來 . +Reading books is interesting . 看书 很 有意思 . +In theory , there is no difference between theory and practice . But , in practice , there is . 理论 上 说 , 理论 和 实践 没有 区别 . 但 实践 上 说 , 是 有 的 . +All things considered , I think you should go back home and take care of your parents . 全盤 考慮 後 , 我 覺得 你 應該 回家 , 照顧 你 的 父母 . +You can come with me . 你 可以 跟 我 來 . +Turn the flame down low . 把 火 轉小 一點 . +Tom , your life is in danger . 湯姆 , 你 的 生命 有 危險 . +I can not understand why Tom does not want to go with us . 我 不 理解 为什么 汤姆 不想 和 我们 一起 走 . +Tom is an electrical engineer . 湯姆 是 一個 電子 工程 師 . +I would like to see a doctor . 我 要 看病 . +My father will come home at seven . 我 爸爸 會 在 七點鐘 回家 . +This suit seems really expensive . 这 西装 好像 真的 很贵 . +I am not sick . 我 没 生病 . +That was Tom is choice . 那 是 汤姆 的 选择 . +She really wants to go . 她 特别 想去 . +I want you to meet my parents . 我 想 讓 你 見 見 我 的 父母 . +The only difference between a bad cook and a poisoner is the intent . 一個 差 勁 的 廚師 和 下毒 者 唯一 的 不同 在 於 他們 的 意圖 . +I was in school yesterday morning . 昨天上午 我 在 學校 . +Please find a solution to the problem . 请 找到 问题 的 解决 方法 . +Do people in your country eat rice ? 在 您 國家 的 人 是 吃 米 飯 的 嗎 ? +I do not like rock music . 我 不 喜欢 摇滚乐 . +My sister takes piano lessons twice a week . 我 妹妹 每周 上 两次 钢琴课 . +This is just what I wanted . 我 想要 的 就是 这个 . +I helped him yesterday . 昨天 我 帮 了 他 . +Please knock on the door . 请 敲门 . +If it rains tomorrow , I will just stay at home . 如果 明天 下雨 , 我 就 待 在家 . +Will six o 'clock suit you ? 六點鐘 你 方便 嗎 ? +I will be busy this afternoon . 我 今天下午 會 很忙 . +I have done my best . 我 已经 尽力 了 . +It is so early . 太 早 了 . +I will study English at home . 我 将 在家 学习 英语 . +Did you find the book interesting ? 你 覺得 這 本書 有趣 嗎 ? +You must make up for the loss . 您 必须 弥补 损失 . +We consider it a blessing . 我们 把 它 当作 恩惠 . +Where are your things ? 您 的 東西 在 哪裡 ? +I need a lawyer . 我 需要 一名 律師 . +I am thinking about you . 我 突然 想到 你 . +The conference ended at five . 會議 在 五點鐘 結束 . +She called me many a time . 她 叫 了 我 很 多次 . +You should not talk back to your parents like that . 你 不 應該 對 你 父母 那樣 頂 嘴 . +The library is in the center of the city . 图书馆 位于 城市 中心 . +All my friends will be there . 我 所有 的 朋友 都 会 到 那儿 . +Will you please hold this edge ? 能 不能 请 你 拿 着 这 端 ? +Tom is a good person . Tom 是 一個 好人 . +I am positive that he is wrong . 我 確定 他 是 錯 的 . +It is all you can really do . 这 是 你 所 能 做 的 一切 了 . +Edison invented many useful things . 愛迪生 發明 了 許多 有用 的 東西 . +A fire broke out at the inn where they were staying . 火警 發生 在 他們 住 的 旅館 . +We want to know the facts . 我们 想 知道 真相 . +Are you all listening to me ? 你们 在 听 我 说 吗 ? +They are all the same size . 他們 都 是 一樣 的 大小 . +Four hundred million people speak English as their first language . 四億 人 以 英語 作為 他們 的 第一 語言 . +He appears to be strong and healthy . 他 看起来 健康 强壮 . +Do you have any light beer ? 你 有 任何 淡 啤酒 嗎 ? +I have never felt better . 我 从来 没 感觉 那么 好 过 . +This is a dangerous mission . 這 是 個 危險 的 任務 . +I will eat it here . 我 會 在 這裡 把 它 吃 了 . +How many CDs do you have ? 你 有 多少 张 CD ? +Tom does not know whether Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +I was just talking about Tom . 我 仅仅 是 在 和 Tom 交谈 . +Would you lend me your bicycle ? 你 可以 借 我 你 的 腳踏車 嗎 ? +A plastic dish will melt on the stove . 塑料 盘子 在 烤箱 里 会化 的 . +Please have a seat and wait until your name is called . 请 在 被叫 到 名字 之前 坐在 椅子 上 等候 . +It was not a very interesting novel . 這 不是 一個 很 有趣 的 小 說 . +There was a big fire last night . 昨晚 發生 了 一場 很大 的 火災 . +I work long hours . 我 工作 數 小 時 . +Nothing is achieved without effort . 没有 什么 是 不劳而获 的 . +A swarm of hornets attacked the children . 一 窩 黃蜂 襲擊 了 孩子 們 . +I wish we had won the game . 要是 我們 贏 了 這場 比賽 就 好 了 . +Jesus loves you . 耶穌 愛 你 . +Hey , you ! What are you doing ? 嘿 , 你 ! 你 在 幹 什麼 ? +Rio de Janeiro is perfectly safe as long as you stay out of the dangerous areas . 如果 你 远离 危险 区域 , 里约热内卢 就是 完全 安全 的 . +I am sorry , I do not have change . 不好意思 , 我 没 零钱 . +Do not worry about it . It is not your problem . 不要 在意 , 不是 你 的 问题 . +News of the recent blast is all over the radio . 收音 機 廣播 充斥 著有 關 最近 爆炸 的 新聞 . +I do not have money now . 我 现在 没有 钱 . +That is not my line . 这 不是 我 拿手 的 . +All men are created equal . 人 人生 来 平等 . +I had intended to go there . 我 本來 打算 去 那裡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +We are in a hurry . 我們 很 匆忙 . +She spent a good deal of money on her vacation . 她 休假 期间 花 了 一大笔钱 . +I do not expect that they will support my view . 我 不 期望 , 他们 能够 支持 我 的 观点 . +I do not know anybody here . 我 不 認識 這裡 的 任何人 . +He has spent ten years in jail for murder . 他 因為 謀殺 案 在 牢 裡 待 了 十年 . +Where are those posters now ? 那些 海报 现在 都 到 哪里 去 了 ? +It is a secret . 它 是 個 秘密 . +You are not even paying attention . 你 根本 沒有 注意 . +Please pick up my dry cleaning . 請 取回 我 乾 洗 的 衣服 . +It is our pleasure . 这 是 我们 的 荣幸 . +I understand how to solve the problem . 我 知道 怎么 解决 这个 问题 . +You 'd better have your hair cut at once . 你 最好 立刻 剪 頭 髮 . +Are you available tonight ? 今晚 有空 嗎 ? +Please shuffle the cards carefully . 请 仔细 洗牌 . +I received a letter from her . 我 收到 了 她 的 來信 . +In a sense , she is right , too . 从 某种意义 上 来说 , 她 也 是 对 的 . +Do you want to get married first or have a child first ? 你 想 我们 先 结婚 还是 先生 孩子 ? +The policeman grabbed the robber is arm . 警察 抓著 小偷 的 胳膊 . +We plan to climb that mountain . 我們 計劃 去 爬 那 座 山 . +These three pretty girls are all nieces of mine . 这 三个 漂亮 的 女孩 都 是 我 的 侄女 . +Wash your feet . 洗 你 的 脚 . +Say it in English . 用 英语 说 . +Can you walk ? 你 能 走 嗎 ? +We have been here before . 这里 我们 以前 来 过 . +I like this color , too . 我 也 喜歡 這個 顏色 . +I do not want to talk about myself . 我 不想 談 我 自己 . +I am doing my homework . 我 正在 做 我 的 作业 . +He has recovered from his bad cold . 他 从 重感冒 中 恢复 了 过来 . +I suspect that they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +It is about time to go to school . 差不多 该 去 学校 了 . +When did you begin studying English ? 你 什么 时候 开始 学 英语 的 ? +We got there at the same time . 我們 在 同一 時間 到 了 那裡 . +He was too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +You 'd better go to bed at once . 你 最好 马上 去 睡觉 . +He earned his living as a teacher . 他 以 當 老師 為 生 . +I will never leave you . 我 永远 不会 离开 您 的 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +Do you have enough food ? 你 有 足够 的 食物 吗 ? +He is very brave . 他 很 勇敢 . +Tom knows that I do not like him . 汤姆 知道 我 不 喜欢 他 . +He was snoring loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +You are so beautiful ! 你 太漂亮 了 ! +I can not help admiring his talent . 我 不禁 欣賞 他 的 才華 . +He took a picture of the koala . 他 為 無 尾 熊 拍照 . +Tom is speaking French . 汤姆 在 说 法语 . +I have no idea what to wear . 我 不 知道 要 穿 什麼 . +I want to go with you . 我 想 和 你 一起 走 . +The capital of Brazil is Brasilia . 巴西 的 首都 是 巴西利亚 . +He does not altogether trust me . 他 並 不 完全 信任 我 . +That book is a new book . 那 本書 是 一本 新書 . +We had a short vacation in February . 2 月 我们 有个 短期 休假 . +I do not want to cause any more trouble . 我 不想 再 惹事 了 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +Ask her when she comes back . 等 她 回来 的 时候 问问 她 . +I am very busy these days . 我 最近 很忙 . +Would you like anything else ? 还有 什么 想要 的 吗 ? +How do you say " I love you " in French ? “ 我爱你 ” 用 法语 怎么 讲 ? +What have you done with my pen ? It was here a minute ago . 你 把 我 的 鋼筆 怎麼 了 ? 一分 鐘 前 它 還 在 這裡 . +You are very brave . 你 非常 勇敢 . +She has a bit of a bad temper . 她 脾气 有点 坏 . +You owe me an apology for that . 关于 那件事 你 欠 我 一个 道歉 . +Please wish me luck . 請祝 我 好 運 . +Yesterday I spent the whole day working . 昨天 我 一整天 都 在 工作 . +He thought that he was a genius . 他 認為 他 是 個 天才 . +According to the newspaper , there was a big fire last night . 根據 報導 , 昨晚 有 一場 很大 的 火災 . +These fireworks are spectacular ! 这些 焰火 真 壮观 ! +Why do not you grow up ? 你 为什么 长不大 呢 ? +AI stands for artificial intelligence . AI 代表 人工智能 . +I passed the city hall on my way to the station . 我 去 車站 的 路上 路 過 了 市政 廳 . +He bought her a sweater . 他 買 了 一件 毛衣 給 她 . +Would you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +Are you coming tomorrow ? 你 明天 要 來 嗎 ? +He froze with fear when he saw the snake . 他 看 見 蛇 就 嚇 得 不動 了 . +Now let is get down to work . 現在 讓 我們 開始 工作 . +See you . 再见 ! +He is always been living in Tokyo . 他 一直 住 在 東京 . +A boat suddenly appeared out of the mist . 一艘船 突然 从 雾 中 出现 . +Do you have a soup bowl ? 你 有 湯 碗 嗎 ? +I want you to go . 我 要 你 去 . +I do not know if that is what Tom wants or not . 我 不 知道 那 是不是 汤姆 想要 的 . +You can park here . 这里 可以 停车 . +He does not have any friends to play with . 他 没有 任何 朋友 玩 . +The other day I discovered a book written by my father . 前 几天 我 发现 了 一本 我 父亲 写 的 书 . +Help yourself to anything you like . 喜歡 什麼 就 隨便 吃 吧 . +I am sorry , I did not hear you . 对不起 , 我 没有 听见 你 说话 . +We saw monkeys at the zoo . 我們 在 動物 園裡 看到 了 猴子 . +I did not want to mislead anyone . 我 不想 誤導 任何人 . +He is popular with the students . 他 受到 學生 的 歡迎 . +You can not count on their help . 你 不能 指望 他们 的 帮助 . +I am lost . 我 迷失 了 . +I do not know what I should be doing right now . 我 不 知道 , 我 现在 应该 做 什么 . +There is no salt . 没有 盐 . +Because his salary is low , he can not buy that house . 因為 他 的 薪水 太 低 , 他 買 不起 那棟 房子 . +Who is the man playing the violin ? 那個 正在 拉 小提琴 的 男人 是 誰 ? +Tom could have called the police . 汤姆 本 可以 叫 警察 的 . +Will you lend me your CD player for an hour ? 你 能 借 我 你 的 CD 播放 機 一小 時 嗎 ? +Come and see me at eleven o 'clock . 十一 點 鐘 來看 我 . +I rode my bicycle to the store . 我 騎 了 我 的 自行 車 去 商店 . +Nobody understood why the elephant suddenly turned on its owner . 没有 人 明白 为什么 大象 突然 攻击 了 它 的 主人 . +They had a rest for a while . 他們 休息 了 一會兒 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +Are you listening to English ? 你 在 聽 英語 嗎 ? +Your book is on the desk . 你 的 書 在 書 桌上 . +There were so many things I wanted to ask Tom . 我 有 很多 事想问 汤姆 . +The x @-@ ray showed two broken fingers . X光 片 显示 两根 手指 断 了 . +I have a lot of cats . 我 有 很多 狗 . +Is there any coffee in the kitchen ? 廚房 裡 有 咖啡 嗎 ? +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +She was accepted to Harvard . 她 被 哈佛 大學 錄取 了 . +He is one of my neighbors . 他 是 我 的 一個 鄰居 . +I wish you had come with us . 要是 你 和 我們 一起 來 就 好 了 . +I am feeling much better today . 我 今天 感觉 好多 了 . +This train leaves at nine o 'clock . 這 班 火車 九點鐘 發車 . +They are required to work eight hours every day . 他们 每天 必须 工作 8 小时 . +Their plan sounds interesting to me . 他们 的 计划 对 我 来说 很 有意思 . +I can not do any better . 我 做得好 到 不能 再 好 了 . +Do we have enough chairs ? 我們 的 椅子 夠 嗎 ? +He was absent from school yesterday . 他 昨天 没 来 上学 . +What is this smell ? 这 是 什么 气味 ? +I got a letter from her . 我 收到 她 的 來信 . +We are not short of oil in this country . 我们 国家 不 缺 石油 . +Publication of the article was timed to coincide with the professor is birthday . 文章 的 发表 被 预定 在 教授 生日 那天 . +He is a doctor . 他 是 医生 来 的 . +Why was not Tom arrested ? 為 甚麼 湯姆 沒 被捕 ? +Please turn off the television . 請 把 電視 關掉 . +That was the first time that I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I am sick . 我 生病 了 . +This piano has probably not been tuned for years . 这 台 琴 应该 好多年 没调 过音 了 . +I will call you every night . 我 每晚 都 給 你 打 電話 . +They are fake . 它们 是 假 的 . +We will deal with it tomorrow . 我们 明天 解决 它 . +Do you mind if I open the door ? 你 介意 我 開門 嗎 ? +I always dreamed of being a billionaire . 我 總 是 梦想 著成 為 億萬 富翁 . +They make good use of their rooms . 他們 好好 地 利用 他們 的 房間 . +You are mine . 你 是 我 的 . +I suggest that we go out on Friday . 我 建议 我们 星期五 出去玩 . +I am a bit drunk . 我 有 點 醉 了 . +The news of his death spread around . 他 去世 的 消息 傳遍 各地 . +The kettle is boiling . 茶 壺 沸 了 . +He raised his hands . 他 舉起 了 他 的 手 . +Who is the woman dressed in pink ? 那個 穿 粉 紅色 衣服 的 女人 是 誰 ? +The ship made slow progress against the strong wind . 這 艘 船 逆風而行 緩慢 前進 . +I would like to know the exact time . 我 想 知道 確切 的 時間 . +You remember it better than I do . 你 比 我 记得 好 . +The enemy launched an attack on us . 敌人 对 我们 发起 了 攻击 . +Can I borrow your pencil for a bit ? 我 能 用 一下 你 的 铅笔 吗 ? +I was able to succeed because of your advice . 我 因為 有 你 的 建 議 纔 能 成功 . +We are on strike because the company has not improved our wages . 我們 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +How much does this pen cost ? 这 支 钢笔 要 多少 钱 ? +This factory manufactures CD players . 这家 工厂 生产 CD机 . +The situation is getting worse by the day . 情况 一天 比 一天 差 . +You must stop smoking . 你 必须 停止 吸烟 . +It is very simple . 这 很 简单 . +Pick up the phone . 接 一下 电话 . +I swim once a week . 我 每周 游 一次 泳 . +He was held in captivity . 他 被 囚禁 了 . +Here is how we do it . 以下 是 我们 怎么 做 的 . +We met in front of the school . 我們 在 學校 前面 見面 了 . +I found the field trip very educational . 我 發現 實地 考察 很 有 教育 意義 . +There is always something happening here . 這裡 總 有 一些 事情 在 發生 . +My uncle made a will last year . 我 叔叔 去年 立下 了 遺囑 . +Actinium was discovered by André @-@ Louis Debierne in 1899 . 锕 在 1899 年 被 他 发现 . +English is spoken by more people than any other language . 說 英語 的 人比 說 任何 其他 語言 的 人 多 . +Have you ever seen Mt . Fuji ? It is beautiful beyond description . 你 看 過 富士山 嗎 ? 它 美 得 無法 形容 . +Islam first reached China about the middle of the 7th century . 伊斯 蘭教 大約 在 七 世纪 中 傳到 中國 . +You are an optimist . 你 是 个 乐观主义 者 . +Your memory is good . 你 的 記憶力 很 好 . +The cancer has spread to her stomach . 癌細胞 已經 擴散 到 她 的 胃 . +I was feeling blue all day . 我 一整天 都 觉得 很 消沉 . +She is not yet heard the news . 她 还 没 听到 这个 消息 . +He tried to sleep on the floor . 他 試著 在 地板 上 睡覺 . +I despise you . 我 鄙视 你 . +Tom is a grumpy old man . 汤姆 是 个 脾气 暴躁 的 老人 . +I know that she has been busy . 我 知道 她 一直 很忙 . +He is a bit energetic . 他 有点 活泼 . +Do we know you ? 我们 认识 你么 ? +I will drive you home . 我 開車 送 你 回家 . +You are stepping into dangerous territory . 你 進入 了 危險 區 . +I took an art class last year . 我 去年 上 了 一堂 藝術 課 . +The Mona Lisa has an enigmatic smile . 蒙娜丽莎 有着 神秘 的 微笑 . +Tom was hiding under the table . Tom 躲 在 桌子 底下 . +Hurry up . 趕快 ! +Kyoto is famous for its old temples . 京都 以 古廟 有名 . +This airplane is capable of carrying 40 passengers at a time . 这 架飞机 一次 可以 携带 40 名 乘客 . +The negotiation is off . 谈判 中止 了 . +I think it will not rain tomorrow . 我 認為 明天 不 會 下雨 . +He reads a good deal . 他 读 很多 书 . +Tom does not drive as carefully as I do . 汤姆 不 像 我 这样 开车 小心 . +Is it poisonous ? 它 有毒 嗎 ? +Can you drive a car ? 您 会 开车 吗 ? +My hobby is collecting old bottles . 我 的 嗜好 是 收集 舊 瓶子 . +We postponed our departure because of the storm . 我們 因為 風暴 推遲 了 起程 . +Were your mother and father home ? 你 父母 親 在家 嗎 ? +Please come in . 請 進來 . +We like you . 我们 喜欢 你们 . +My sister usually walks to school . 我 妹妹 通常 走路 去 學校 . +Does this book belong to you ? 這 是 你 的 書 嗎 ? +I am not a university student , but I am brighter than them . 我 不是 一個 大學 生 , 但 我 比 他們 更 聰明 . +God knows we did everything we could . 上帝 知道 我们 做 了 我们 所能 做 的 事 . +It is almost three o 'clock . 將近 三點 了 . +The thief got in without being noticed . 小偷 在 沒有 被 發現 的 情況 下 進去 了 . +The Rhine flows between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +We gave him up for dead . 我們 為 死者 放棄 了 他 . +What is the problem with your computer ? 你 的 电脑 有 什么 问题 ? +I will be leaving for Australia next month . 我 下個月 將 去 澳洲 . +They granted his request . 他們 批准 了 他 的 請求 . +This is the most massive structure I have ever seen . 这 是 我 所 见 过 的 最 大型 的 构造 了 . +Tom does not have the time . 汤姆 没有 时间 . +Tom never turned up again . 湯姆 沒有 再 出現 . +I do not want to drink anything . 我 什么 都 不想 喝 . +Do you not understand basic logic ? 你 不 懂 基本 逻辑 吗 ? +I study Chinese every day . 我 每天 讀 中文 . +Do not throw rocks into the river . 不要 往 河裡 扔 石頭 . +Is Tom home ? 汤姆 在 家里 吗 ? +I am really sorry about what happened last night . 我 对 昨天晚上 发生 的 事情 感到 非常 的 抱歉 . +He set a precedent . 他 開 了 先河 . +Most boys like computer games . 大多数 男生 喜欢 电脑游戏 . +Germany adopted a social security system in the 1880 is . 德国 在 1880 年代 采取 了 一种 社会保障 制度 . +I can eat anything but onions . 除了 洋葱 我 什么 都 可以 吃 . +Tom is coughing again . 汤姆 又 在 咳嗽 了 . +Do you still buy lottery tickets ? 你 還 買 彩票 嗎 ? +You are a friend of Tom is , are not you ? 你 是 湯姆 的 一個 朋友 , 不是 嗎 ? +We are going to paint the wall . 我们 准备 刷墙 . +Never say never . 永远 不要 说 永远 . +He often goes with her to watch movies . 他 常 和 她 一起 去 看 电影 . +You can do it , can not you ? 你 可以 做到 , 不是 嗎 ? +There are some boys under the tree . 樹下 有 一些 男孩 . +Tom is not smiling . 汤姆 没在 笑 . +He should have the right to decide for himself . 他 应该 有 权利 去 自己 做 决定 . +I lost my umbrella . 我 丢 了 我 的 伞 . +I see a woman wearing black . 我 看见 一个 穿 黑衣服 的 女人 . +I have nothing better to do . 我 没有 其他 更好 的 事情 去 做 . +Do as I say . 按 我 說 的 做 . +I used to eat like a pig . 我 曾经 像 猪 一样 吃 . +We suggest raising the fees . 我們 建議 提高 收費 . +Are you studying English ? 你 在 研讀 英語 嗎 ? +Lift your right arm . 舉起 你 的 右臂 . +I have no objection to your plan . 我 不 反 對 你 的 計劃 . +How far away is your school ? 你 的 学校 有 多 远 ? +I had no idea it would put you to so much trouble . 我 一点 都 不 知道 这 会 给 你 带来 那么 多 问题 . +I will be back at ten . 我 十点 回来 . +You can buy it for a thousand yen or so . 你 能 以 大约 1000 日元 买下 它 . +Do we have enough food ? 我们 有 足够 的 食物 吗 ? +It says in the Bible , " Man shall not live on bread alone . " 圣经 里 有 一句 话 , 叫做 “ 人 不能 只 靠 面包 生活 ” . +You are not invited . 你 没 受到 邀请 . +Do not beat around the bush . 不要 拐彎抹角 . +I went to the park last Sunday . 上個 星期天 我 去 了 公園 . +This system has obvious defects . 這個 系統 有些 明顯 的 缺陷 . +One of the children left the door open . 其中 一個 孩子 讓 門 開著 . +Tom took the clock apart . 汤姆 把 钟 拆开 了 . +She liked him right off . 她 立刻 喜歡 上 他 了 . +I can not believe you love me . 我 不能 相信 你 愛 我 . +Did your uncle let you drive his car ? 你 叔叔 让 你 开 他 的 车 了 吗 ? +Jupiter is the largest planet in the Solar System . 木星 是 太陽系 中 最大 的 行星 . +Not every child likes apples . 不是 每 一个 孩子 喜欢 吃 苹果 . +I would like to go to London . 我 想要 去 伦敦 . +We are having fun . 我们 在 高兴 地玩 . +Einstein loved playing the violin . 愛 因斯 坦 喜歡 拉 小提琴 . +Our baby cannot talk yet . 我家 宝宝 还 不会 说话 . +Read as much as possible . 盡 可能 地 多 閱讀 書籍 . +Let is play baseball ! 我們 去 打 棒球 吧 . +How far away is the airport ? 到 机场 有 多 远 ? +The pirates boarded the ship . 海盜 們 上 了 船 . +If we were supposed to talk more than listen , we would have been given two mouths and one ear . 如果 我們 應 該少 聽 多 說 話 , 那麼 我們 應該 得到 兩個 嘴巴 一 隻 耳朵 才 是 . +If he had taken his doctor is advice , he might still be alive . 如果 他 听 了 他 医生 的 建议 , 他 可能 还 活着 . +I do not have any experience . 我 什么 经验 都 没有 . +I like dogs , but my sister likes cats . 我 喜歡 狗 , 但 我 姊 喜歡 貓 . +It can not be true . 那 不 可能 是 真的 . +When did you learn to swim ? 你 什么 时候 学会 游泳 的 ? +He seems to be ill . 他 好像 病 了 . +We have to look into the disappearance of the doctor . 我们 必须 调查 医生 的 失踪案 . +I can read Spanish easily . 我 能 很 輕 鬆 地 讀 西班牙文 . +Tom remained standing as the others sat down . 别人 都 坐下 了 , 汤姆 还 站 着 . +He is the man you met the other day . 他 是 前 几天 和 你 见过面 的 那个 人 . +I would like to go to the mall . 我 想 去 商场 . +I am reading . 我 在 读书 . +I took it for granted that he would pass the exam . 我 理所当然 地 觉得 , 他 会 通过 考试 . +I do not think I will ever meet him . 我 不 認為 我 會 再 跟 他 見 面 . +You do not have to help me . 你 不用 帮 我 . +The space race was an exciting time in history . 太空 跑步 是 历史 上 激动人心 的 时刻 . +Few people think so . 很少 人 这么 认为 . +I can not look at this painting without thinking of my mom . 我 無法 看著 這 幅畫 而 不 想起 我 母親 . +Why do you think I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +He got accustomed to the new way of living . 他 适应 了 新 的 生活 方式 . +I agree with you on this issue . 我 同意 你 對 這 問題 的 看法 . +My boss made me work overtime . 我 的 老 闆 要 我 加班 . +What do you think of it ? 你 認為 如何 ? +It is freezing . 天氣 好 冷 . +Tom sat at his desk , pretending to study . 湯姆 坐在 桌前 , 装作 在 學習 . +She gave birth to a baby boy . 她 生下 了 一個 男 嬰 . +It may be that he likes his job . 他 可能 喜欢 他 的 工作 . +Tom has not talked to Mary in years . 汤姆 多年 没有 和玛丽 说话 了 . +I do not like early morning meetings . 我 不 喜歡 在 清晨 開 的 會議 . +My house is old and ugly . 我 的 房子 又 舊 又 難 看 . +Do you believe in fairies ? 你 相信 神話傳說 嗎 ? +I would like to send this package to Japan . 我 想 把 這個 包裹 寄 到 日本 . +Are you mad ? 您 生气 了 吗 ? +Can you help me ? 您 能 帮 我 吗 ? +I feel comfortable in his company . 我 在 他 的 公司 裡 覺得 很 舒服 . +I want that bag . 我 想要 那個 袋子 . +Tom does not know how to have fun . 汤姆 不 知道 怎样 玩 得 开心 . +Would you carry my luggage upstairs ? 你 可以 把 我 的 行李 拿到 樓上 嗎 ? +You gave me only fifty cents . 你 只 給 了 我 五十 美分 . +Do you think Tom will let us do that ? 你 認為 湯姆會 讓 我們 做 嗎 ? +That is an imitation . 那 是 一個 仿造品 . +Do you deliver on Sundays ? 你们 周日 送货 吗 ? +I can not work for this company anymore . 我 没法 再 在 这家 公司 里面 工作 了 . +I just had dinner with some of Tom is friends . 我 刚 跟 汤姆 的 一些 朋友 吃 了 晚饭 . +Could you show me that necktie ? 你 能 給 我 看看 這條 領帶 嗎 ? +You have many books . 你 有 许多 书 . +Will you please turn down the radio ? 請 你 把 收音 機關 小聲 一點 好 嗎 ? +He is my youngest brother . 他 是 我 最 年轻 的 兄弟 . +I hope that you are very well . 我 希望 你 很 健康 . +It is food . 它 是 食物 . +I am not the boss . 我 不是 老 闆 . +I worked a lot this week . 我 这周 干 了 很多 活 . +Tom blew out all the candles on the cake . 汤姆 吹灭 了 蛋糕 上 的 所有 蜡烛 . +They will not pass ! 他們 不 會 通過 的 ! +The dictionary comes in two volumes . 那 本词典 分为 两卷 . +One good friend is better than ten relatives . 一个 好友 胜过 十个 亲戚 . +This matter is very urgent . 這件 事 非常 緊急 . +Are those new shoes ? 那 是 新 买 的 鞋子 吗 ? +I am not particularly thirsty right now . 我 现在 不 特别 渴 . +He showed interest in the plan . 他 對 這個 計劃 表示 了 興趣 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +You 'd better not go today . 你 今天 最好 不要 去 . +Tom and Mary own a small organic farm . 汤姆 和玛丽 拥有 一个 小型 的 有机 农场 . +My phone was out of order . 我 的 電話 壞 了 . +I did not pass . 我 没 通过 . +Several dozen young people participated in the demonstration . 几十个 年轻人 参加 了 示威游行 . +I cannot afford to buy a car . 我 買 不 起 一輛 車 . +He runs in the park every day . 他 每天 都 在 公园 中 跑步 . +The baby fell asleep in the cradle . 宝宝 在 摇篮 里 入睡 了 . +I would like to retract my previous statement . 我 想 撤回 我 之前 的 陈述 . +I do not feel much like talking . 我 不太想 說 話 . +Tom wrote postcards to us . Tom 寫 明信片 給 我們 . +When would you like to see him ? 你 想要 什麼 時候 見 他 ? +I do not remember where I bought it . 我 记不起来 我 在 哪里 买 的 了 . +He flatly refused to let me in . 他 斷然 地 拒絕 讓 我 進去 . +Tom helped me fix my watch . 汤姆 帮 我 修好 了 我 的 手表 . +He is very smart , and he is handsome too . 他 很 聪明 , 而且 他 很 帅 . +I am on the roof now . 我 现在 在 屋顶 上 . +Graham Greene is my favorite author . 格雷厄姆 格林 是 我 最 喜歡 的 作家 . +I found it best to say nothing about the matter . 我 觉得 什么 都 不 说 是 最好 的 . +He swam until he could swim no more . 他 游到 不能 游 为止 . +He must love you . 他 一定 很 愛 你 . +Clean the room . 打掃 房間 . +She wrote 5 novels in 5 years . 她 在 5 年 里 写 了 5 本 小说 . +Mary asked her son to behave himself . 瑪麗 要求 她 的 兒子 守 規矩 . +I went there yesterday . 我 昨天 去 那儿 了 . +I have to get my computer repaired . 我 必須 把 我 的 電腦 拿去 給 人家 修理 . +Tom does not like this color . 汤姆 不 喜欢 这种 颜色 . +I do not want either of them . 它们 中 没有 我 要 的 . +I have just finished eating . 我 刚刚 吃 完 . +My uncle made me serve as interpreter . 我 舅舅 讓 我 擔任 翻譯 . +I did not go to school last month . 我 上 個 月 沒上 學 . +Open fire ! 开火 ! +The roof was damaged by the storm . 屋頂 被 暴風雨 損壞 了 . +A foreign language can not be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +Do not move , or I will shoot you . 別動 , 不然 我 就 開 槍 射 你 . +You should take up golf . 你 应该 开始 从事 高尔夫 . +You owe me money . 你 欠 我 钱 . +I know New York like the back of my hand . 我 对 纽约 了如指掌 . +This is a miracle . 这 是 一个 奇迹 . +You should keep your promise . 你 應該 信守 諾 言 . +What is Tom doing ? 汤姆 在 做 什么 ? +Kill them . 殺 了 他們 +The company invested a lot of money in this project . 該 公司 在 這個 企劃 中 投入 了 很多 錢 . +The medicine worked marvels . 这 药 创造 了 奇迹 . +April showers bring May flowers . 四月 春雨 , 五月花 . +I am always here . 我 一直 在 這裡 . +She had her handbag stolen . 她 的 手提包 被 偷 了 . +She gave me a shy smile . 她 給 了 我 一個 靦腆 的 笑容 . +I advertised my car for sale . 我 登廣 告賣 我 的 車 . +There is a big supermarket in my neighborhood . 在 我 的 邻近 区域 有 一个 大 超市 . +He is a good person . 他 是 个 好人 . +Refugees poured in from all over the country . 难民 从 整个 国家 涌来 . +What do you think about this plan ? 你 覺得 這個 計劃 怎麼樣 ? +How much is the rent per month ? 一個 月 的 租金 多少 ? +I will not talk to him anymore . 我 不 會 再 跟 他 說話 了 . +No comment . 无可奉告 . +Did you bring an umbrella with you ? 你 有 帶 雨 傘 嗎 ? +Thousands of candles illuminated the church during the ceremony . 数以千计 的 蜡烛 点亮 了 仪式 中 的 教堂 . +I will have to think about it . 我 将 考虑 考虑 . +Tom still drinks , but not as much as he used to . 汤姆 还是 喝 , 但 不 像 以前 那么 多 了 . +Tom can swim almost as fast as I can . 汤姆 几乎 能 游 得 跟 我 一样 快 . +Yes , it is such a nice evening . 是 的 , 今天 晚上 很 愉快 . +The doctor told her that she should take a rest . 医生 告诉 她 要 静养 . +Do you know how to ride a horse ? 你 会 骑马 吗 ? +My job is to wash dishes . 我 的 工作 是 洗盤子 . +In the summer I wear short @-@ sleeved shirts . 夏天 我 穿 短袖 衬衫 . +Tom did not have any family . 过去 汤姆 没有 家 . +I 'd wear a helmet . 我 要 戴 頭盔 . +Tom speaks French fluently . 湯姆 的 法語 說 的 很 流暢 . +I am interested in English . 我 对 英语 感兴趣 . +It is just what I expected . 它 正是 我 所 期待 的 . +I went on reading . 我 继续 阅读 . +I played tennis after school . 放学 后 我 打 了 网球 . +You are barking up the wrong tree . 你 白費力 氣 了 . +She is Tom is sister . 她 是 Tom 的 姐妹 . +Tom is a good golfer . 汤姆 是 个 不错 的 高尔夫球 手 . +Mary is the prettiest girl in her class . 玛丽 是 班 里面 长 得 最 漂亮 的 女孩 . +Things are totally different now . 現在 全都 不 一樣 了 . +All good things must come to an end . 天下 无不 散 之 筵席 . +I think I have found something of yours . 我 認為 我 找到 一些 你 的 東西 了 . +I am going to the store now . 我 現在 要 去 這家 商店 . +We watched a baseball game on television . 我們 看 了 電視 上 的 棒球 比賽 . +This is the only camera I have got . 這 是 我 唯一 的 相機 . +She assigned the work to him . 她 把 這個 工作 派 給 他 做 . +I will finish it as quickly as I can . 我会 尽快 完成 的 . +Tom looked around , but saw no one . Tom 看 了 看 周圍 , 但 沒 看到 任何人 . +I felt lonely . 我 觉得 很 孤独 . +The large crowd roared in approval as Mark Knopfler played the first few bars of " Money for Nothing " . 就 像 马克 · 诺弗勒 早期 演唱 的 歌曲 《 金钱 无用 》 一样 , 绝大多数 的 人 依然 高呼 赞成 “ 金钱 无用论 ” . +I told Tom that I thought his house needed to be painted . 我 告诉 汤姆 我 认为 他 的 房子 要 刷漆 . +He is very handsome . 他 很 英俊 . +I do not have a lot of work , but it is enough to keep me in the office this week . 其实 我 工作 并不多 , 但 足以 让 我 这周 在 办公室 里 忙 着 了 . +I am not finding anything . 我 甚麼 也 沒 找到 . +Please turn off the light . 請 關燈 . +I can not imagine life without you . 我 無法 想像 沒有 你 的 生活 . +Are you carrying a lot of money ? 你 身上 有 很多 钱 吗 ? +Do not play baseball here . 不要 在 這裡 打 棒球 . +Pay the cashier on the way out . 在 出口 處 的 收银台 付款 . +The poor man has no relatives . 窮 人 無 親戚 . +Your question has no answer . 你 的 问题 没有 答案 . +You were at my wedding . 你 出席 了 我 的 婚礼 . +Playing cards is very interesting . 打牌 很 有意思 . +I expect that he will help us . 我 期望 他 會 幫助 我們 . +Tom started the engine . 湯姆 發動 了 引擎 . +That hat cost around fifty dollars . 那 頂 帽子 花費 了 大約 五十 美元 . +They came all the way from Brazil . 他们 从 巴西 远道而来 . +Tom is studying to become a marine biologist . 汤姆 正在 学习 以 成为 海洋 生物学家 . +We must reduce energy demand . 我们 必须 降低 能源需求 . +Thank you for your translation . 謝謝 你 的 翻譯 . +Which one do you think is correct ? 你 認為 哪 一個 是 正確 的 ? +It happened at a quarter past eleven . 它 發生 在 十一 點 一刻 . +Tom was completely exhausted . 湯姆 完全 筋疲力盡 了 . +There are a lot of people in the park . 公园 里 有 很多 人 . +There is narrow road to the village . 到 村 莊 有 條 窄路 . +The teacher pointed her finger at me and asked me to come with her . 教师 用 手指 指着 我 , 要 我 跟 她 走 . +I finished the work in less than an hour . 我 用 不到 一 小时 就 完成 了 这个 工作 . +The only thing I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +I will take you for a swim . 我 會 帶 你 去 游泳 . +I met Mary yesterday . 昨天 我 遇見 了 瑪麗 . +Come with me now . 现在 就 跟我来 . +Let is not fool ourselves . 我们 别自 骗自 了 . +His office is on the eighth floor . 他 的 辦 公室 在 八樓 . +We are against working on Sundays . 我们 反对 星期日 工作 . +Even if I knew the answer , I would not tell you . 即使 我 知道 答案 , 我 也 不会 告诉 你 . +It is very important to get enough rest . 充足 的 休息 十分 重要 . +I have wine . 我 有 酒 . +What are you laughing at ? 你 笑 什么 呢 ? +It is close to eleven . It is about time we went to bed . 快 11 点 了 . 我们 该 上床睡觉 了 . +Tom was crying . 汤姆 当时 在 哭 . +Tom needed treatment . 汤姆 需要 接受 治疗 . +Tom was fired in October . 湯姆 在 十月 被 解雇 了 . +Who were you speaking with ? 你 和 谁 说话 呢 ? +I could not have done it without you . Thank you . 没有 你 我 无法 做到 , 谢谢 . +This dictionary is not the most recent version . 這 本 字典 不是 最新版 的 . +Where is your dog ? 你 的 狗 在 哪儿 ? +The dress that Mary is wearing looks expensive . 玛丽 穿 的 衣服 看起来 价格不菲 . +He glanced at his watch . 他 看 了 一眼 他 的 表 . +Where am I ? 這 是 什麼 地方 ? +That is the point . 这 正是 问题 的 关键 . +Well done ! 做得好 ! +That is very rare . 那 太 稀少 了 . +They got thoroughly wet in the rain . 他們 在 雨 中 被 淋得 全身 都 濕 了 . +Her hair is streaked with gray . 她 的 頭 髮 中 夾 有 白 髮 . +We took turns driving the car . 我們 輪流 開車 . +Do you have school on Saturdays ? 你 星期六 要 上 學 嗎 ? +My parents live in the country . 我 父母 住 在 鄉下 . +He jumped onto the table . 他 跳 上 了 桌子 . +If it is fine tomorrow , we will go on a picnic . 如果 明天 天气 好 , 我们 就 去 野餐 . +Tom is a Vietnam veteran . 汤姆 是 一个 越军 退役军人 . +Come inside . 进来 . +There is something I have to say . 有些 事 我 必須 說 . +Tom is indispensable . 汤姆 是 必不可少 的 . +We receive many telephone calls from abroad . 我們 接到 許多 來 自 國外 的 電話 . +I will swim . 我 要 游泳 . +She looks unhappy . 她 看 起來 不快 樂 . +He is sure to succeed . 他 一定 会 成功 . +She is good at handling children . 她 對 孩子 很 有 一套 . +What do you think about it ? 关于 那个 你 有 什么 看法 ? +She gave birth to twin girls . 她 生 了 雙 胞胎 女兒 . +I would like to purchase some boots . 我 想 买 些 靴子 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +I have been in prison . 我 進過 監獄 . +He went to London , where he stayed for a week . 他 去 了 伦敦 , 并 在 那儿 待 了 一周 . +She was busy doing her homework . 她 忙 著 做 她 的 功課 . +I am the tallest one in the class . 我 在 班里 是 最高 的 . +Another Scotch and water , please . 麻煩 再來 一杯 威士忌 和 加水 . +I prefer to travel by air . 我 寧願 搭 飛機 旅行 . +He seldom , if ever , goes to church . 他 很少 , 如果 有 的 話 , 去 教堂 . +I have already done my homework . 我 已經 做 了 我 的 家庭 作業 . +The boys kept quiet . 男孩子 們 保持 安靜 . +Stop reading . 别 再 念 了 . +You need to shed some pounds . 你 需要 甩掉 几磅 . +He walks his dog every morning . 他 每天 早晨 溜 狗 . +I am a student , but he is not . 我 是 個 學生 , 但 他 不是 . +Have you turned in your report ? 你 交報 告 了 嗎 ? +Have not I met you before ? 我 以前 沒見 過 你 嗎 ? +Why did you cry so much ? 你 為 甚麼 哭 得 這麼 厲害 ? +We made pancakes for breakfast . 我们 早餐 做 了 煎饼 . +The weather was not only cold , it was also damp . 天气 又 冷 又 湿 . +I think Tom probably likes you a lot . 我 認為 湯姆 可能 很 喜歡 你 . +You will soon get accustomed to this cold weather . 你 很快 就 會 習慣 這種 冷天 氣 . +There is still no end in sight . 還是 看 不見盡頭 . +We need to find Tom as quickly as we can . 我們 要 盡快 找到 湯姆 . +Thank you for your cooperation . 謝謝 您 的 合作 . +She believes whatever he says . 她 相信 他 說 的 任何 事 . +His mother was a school teacher . 他 的 母親 是 一名 學校 老師 . +What time is it in Boston now ? 波士顿 现在 几点 ? +Not being tall is not a disadvantage . 长 不 高 不是 坏事 . +Are you certain this is what you want ? 你 确定 这 就是 你 想要 的 吗 ? +What will you have for lunch today ? 你 今天 午餐 吃 什么 ? +He is not a hero . 他 不是 英雄 . +This is difficult . 这 很 难 . +An unforgettable event occurred . 一场 令人难忘 的 事件 发生 了 . +Our fridge is broken . 我們 的 冰箱 壞 了 . +You 'd better hurry . 你 最好 快点 . +I am incredibly tired . 我 累死 了 . +They left . 他们 离开 了 . +I am not busy now . 我 現在 不忙 . +I still do not understand what is happening . 我 還 是 不 明白 出 了 什麼 事 . +Would you like to drink anything ? 你 想 喝 點 什麼 嗎 ? +This book is easy enough for them to read . 这 本书 他们 读 起来 够 简单 了 . +Make sure you get plenty of rest . 你 務 必要 好好 地 休息 . +We immediately became friends . 我們 馬 上 成為 了 朋友 . +Tom heard Mary is voice . 汤姆 听见 了 玛丽 的 声音 . +Yesterday was my seventeenth birthday . 昨天 是 我 17 岁 生日 . +Let them decide . 讓 他們 決定 . +The two of us do not belong here . 我们 俩 不 属于 这儿 . +He decided to become a pilot . 他 決定 成為 一名 飛行員 . +I continued singing . 我 繼續 唱歌 . +He felt in his pocket for his wallet . 他 在 口袋 里 摸 着 找 他 的 钱包 . +I do not think he is sincere . 我 不 觉得 他 很 诚实 . +Everybody has weaknesses . 谁 都 有 弱点 . +My grandfather lived a long life . 我 的 祖父 很 長 壽 . +He applied for the scholarship . 他 申請 了 獎學金 . +Thanks for your advice . 谢谢 你 的 建议 . +He is used to traveling . 他 習慣 了 旅行 . +I love my life . 我 爱 我 的 生活 . +" How old are you ? " " Sixteen years old " . 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He could not come because of his serious illness . 他 因為 生 重病 不能 來 . +I have always been proud of you . 我 一直 为 您 骄傲 . +I will call you as soon as I can . 我会 尽快 给 你 打电话 的 . +Do you have a gift shop here ? 你們 這裡 有 禮品 店 嗎 ? +She looks as if she were drunk . 她 看 起來 好像 喝醉 了 . +No student went to the party . 没有 学生 去 参加 派对 . +Mary did not recognize her ex @-@ husband . 玛丽 没有 认出 她 的 前夫 . +He married a stewardess . 他 娶 了 一位 空姐 . +My father is busy . 我 爸爸 很忙 . +Do not look down on others . 不要 看不起 別人 . +Of course ! 當然 ! +I filled up the vase with water . 我 倒水 進去 花瓶 裡 . +Let is get to work on that problem . 我们 研究 这个 问题 吧 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Should not Tom be doing this , too ? Tom 也 需要 做 这件 事 吗 ? +That company is managed by a foreigner . 這家 公司 由 一個 外國人 經營 . +I was a student at that time . 我 当时 是 学生 . +Do you think Tom is already retired ? 你 認為 湯姆 退休 了 嗎 ? +Tom came to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +After several delays , the plane finally left . 經過 數次 延遲 之 後 , 飛機 終 於 離開 了 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +The bus stopped suddenly in the middle of the street . 公車 突然 在 路 中央 停下 來 . +I prefer working to doing nothing . 我 寧願 工作 也 不 願 閒著 . +She has to look after her mother . 她 必須 照顧 她 的 母親 . +Are you brushing your teeth properly ? 你 正確 地 刷牙 嗎 ? +I did not like beer at that time . 那 时候 我 不 喜欢 啤酒 . +I am going to lose . 我 要 输 了 . +I bet ten dollars on that horse . 我 在 那 匹 馬 下 十美元 的 賭注 . +I am a good guy . 我 是 一个 好人 . +The river is water level has risen . 河 的 水位 上升 了 . +My father gave me a game . 我 爸爸 给 我 了 游戏 . +Her mother made her a new dress . 她 的 媽媽 給 她 做 一件 新 衣服 . +What did you do with your shoes ? 你 把 你 的 鞋 怎么 了 ? +" He would like to have a coffee after work . " " I would too . " " 他 想 在 下班 後 喝杯 咖啡 . " " 我 也 想 . " +I should not have told you anything . 我 本 不该 告诉您 什么 的 . +We require your help . 我們 需要 你 的 幫助 . +How long has it been since you saw your girlfriend ? 你 跟 你 的 女朋友 见面 以来 有 多久 了 ? +I am sure you will be back before long . 我 确定 你 不久 就 回来 . +You reap what you sow . 种瓜得瓜 , 种豆得豆 . +They ruined my life . 他们 毁 了 我 的 生活 . +Tom can swim as fast as you . 湯姆 游泳 可以 游得 跟 你 一樣 快 . +I know what to say . 我 知道 要说 什么 . +He cannot swim . 他 不 會 游泳 . +I am glad to hear that . 我 很 高興 聽到 這個 消息 . +There is no knowing what he will do next . 没有 人 知道 他 接下来 会 干什么 . +This medicine will make you feel better . 这 药会 让 你 好受 点 . +A fire broke out after the earthquake . 地震 之 後 發生 了 火災 . +I caught him stealing the money . 我 抓到 他 偷 錢 . +I heard her singing in her room . 我 聽到 她 在 她 的 房間 裡 唱歌 . +I am behind him . 我 在 他 後 面 . +Mary is a very pretty girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +It was a great shock to me . 這 對 我 是 很大 的 震撼 . +You have beautiful eyes . 你 的 眼睛 真 漂亮 . +I am going to call you tomorrow . 明天 我 給 你 打 電話 . +It is exactly what I wanted . 我 想要 的 就是 这个 . +Someone has taken my shoes by mistake . 有人 拿错 了 我 的 鞋 . +The experiment confirmed his theory . 实验 证明 了 他 的 理论 . +The offer is too good to be turned down . 此 提議 好 得 令人 難以 拒絕 . +This is just a hypothesis . 这 只是 个 假设 . +Where is my newspaper ? 我 的 报纸 在 哪里 ? +The bill amounted to 100 dollars . 帐单 金额 高达 100 美元 . +Tom may be able to come tomorrow . 汤姆 可能 能 在 明天 来 . +Please turn off the TV . 请 关闭 电视机 . +They were going to lose . 他們 要 輸 了 . +Who is the girl in a yellow raincoat ? 穿 黃色 雨衣 的 女孩 是 誰 ? +She took the entrance exam yesterday . 她 昨天 參加 了 入學 考試 . +Wash your hands before meals . 饭前 要 洗手 . +Did you vote yet ? 您 已經 投 了 票 了 嗎 ? +The game will probably be called off . 這場 比賽 將 可能 被 取消 . +You have made the very same mistake again . 你 又 犯 了 相同 的 錯誤 . +Someone is knocking at the door . 有人 在 敲門 . +I went to the hospital yesterday . 我 昨天 去 了 醫院 . +This radio is no bigger than a matchbox . 这 收音机 不 比 火柴盒 大 . +Is that a coyote ? 那 是 丛林 狼 吗 ? +I am looking for my pen . 我 在 找 我 的 鋼筆 . +Why should I hire Tom ? 为什么 我 要 雇佣 Tom ? +He has not been to France . 他 从没 去过 法国 . +What sound does a giraffe make ? 长颈鹿 是 怎么 叫 的 ? +Tom has been quite cooperative . 汤姆 很 合作 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +This house belongs to my uncle . 這棟 房子 屬 於 我 的 叔叔 . +She still has not heard this news . 她 还 没 听到 这个 消息 . +Talking in the library is not allowed . 不准 在 圖書館 裡 談話 . +I feel like my head is going to explode . 我 感 覚 我 的 頭 要 炸 了 . +He was hit by a car and died instantly . 他 被 車 撞 了 之 後 便 過世 了 . +You are the one with all the money . 你 是 有 所有 錢 的 人 . +There is a television in this room . 这个 房间 里 有个 电视机 . +There was a cold wind blowing from the north . 有 一阵 从 北边 吹来 的 冷风 . +For what purpose ? 為了 什麼 目的 ? +Tom hurt himself . 湯姆 弄 傷 了 自己 . +Does Tom have to be there ? 湯姆 必須 在 那裡 嗎 ? +Who discovered radium ? 誰 發現 了 鐳 ? +I am tired of watching television . 我 厌倦 了 看电视 . +Give me your telephone number . 给 我 你 的 电话号码 . +Did you notice Tom is hair ? 你 注意 到 湯姆 的 頭 髪 了 嗎 ? +If we do not hurry , we will be late . 再 不 快点 就 迟到 了 噢 . +Stay out of my business . 别管 我 的 事 . +He was laughed at by his friends . 他 被 他 的 朋友 們 取笑 了 . +I like spring the best of the seasons . 春天 是 我 最 喜歡 的 季節 . +The bell rang . 铃响 了 . +He did not come to the last meeting . 他 最 後 一場 會議 沒來 . +I can not drink milk . 我 不能 喝牛奶 . +I wake up at eight . 我 八點 起床 . +How are you going to get home ? 你 打算 怎麼 回家 ? +I always study hard . 我 總 是 用功 讀書 . +I have a bicycle . 我 有 一輛 自行 車 . +Tom demanded an explanation . 汤姆 要求 有人 解释 . +I have lost my umbrella somewhere in the park . I have to buy one . 我 的 雨傘 遺失 在 公園 裡 某個 地方 . 我 必須 再 買 一把 . +There are no clouds in the sky . 天上 没有 云 . +My first day in the university was rather boring . 我 大学 里 的 第一天 相当 没意思 . +She did not have much money . 她 沒有 很多 錢 . +I play the guitar after school . 我 放學 後 彈 吉他 . +The sky is clear . 天空 很 晴朗 . +What did you name your son ? 你 给 你 儿子 起 什么 名字 ? +She rides a motorcycle well . 她 骑 摩托车 的 技术 不错 ! +She came to Japan for the purpose of studying Japanese . 她 為了 學習 日文 來到 日本 . +That incident made him famous . 這 起 事件 使 他 一舉 成名 . +Anybody can make a mistake . 谁 都 会 犯错 . +" Where have you been ? " " I have been to the station to see a friend off . " “ 你 去 哪儿 了 ? ” “ 我 去 了 火车站 送 我 的 一个 朋友 . ” +I remember the way you used to dance . 我 记得 你 以前 跳舞 的 方式 . +An eight @-@ year @-@ old car is almost worthless . 一輛 車齡 八年 的 車子 幾乎 是 毫無價值 的 . +She made room for an old lady . 她 讓 出 個 空間 給 一位 老太太 . +Tom probably does not know how to do that as well as Mary does . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Do you like to eat fruit ? 你 喜歡 吃水果 嗎 ? +This car sells well . 这辆 车 卖 得 好 . +How long is the Rainbow Bridge ? 彩虹 橋 有 多 長 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 好意 . +The telephone was invented by Bell . 电话 是 由 贝尔 发明 的 . +Tom did not want Mary to know he did not know how to do that . 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +How can I reach you ? 我 怎樣 才能 連絡 到 你 ? +Mom is preparing a meal in the kitchen . 媽媽 正在 廚房 裡 做 飯 . +Sometimes I have to read boring novels . 有时候 , 我 不得不 读 一些 无聊 的 小说 . +I could not answer all of the questions . 我 不能 回答 所有 的 問題 . +Tom thinks I am missing this great opportunity . 汤姆 认为 我 失去 了 这 绝佳 机会 . +I am grateful to you for your kindness . 谢谢您 的 好意 . +I have not eaten anything since yesterday . 我 從 昨天 起 沒有 吃 任何 東西 . +I have to explain this to Tom . 我 必須 向 Tom 解釋 這個 . +I forgot to bring my I.D. card . 我 忘 了 帶 我 的 身份 證 . +Do you commute to school by bus ? 你 搭 公車 上下 學 嗎 ? +She gave me a strange look . 她 奇怪 地 看 了 我 一眼 . +She continued with the work . 她 继续 工作 . +She cannot be over thirty . 她 不 可能 超过 30 岁 了 . +Tom shut his eyes . 汤姆 闭上 了 眼睛 . +May I leave now ? 我 现在 能 走 了 吗 ? +Please leave right away . 請 馬 上 離開 . +The cat arched its back and stretched itself . 猫 弓起 背 , 伸 了 个 懒腰 . +I am not busy . 我 没 在 忙 . +I got my hair cut . 我 把 我 的 頭 髮 剪 了 . +Goodbye ! 再见 ! +I have a dim memory of my grandmother . 我 对 祖母 的 记忆 很 模糊 . +Weather permitting , I will start tomorrow . 天气 允许 , 我 明天 就 开始 . +I knocked on the door , but nobody answered . 我 敲门 , 但是 没有 人 回应 . +Who is your favorite actor ? 你 最 喜歡 的 演員 是 誰 ? +Look behind you . 瞧 你身 後 . +I did not play tennis yesterday . 我 昨天 沒有 打 網球 . +Tom and Mary ended 30 years of marriage . 汤姆 和玛丽 结束 了 三十年 的 婚姻 . +I did not know what to do . 我 不 知道 該 怎麼 辦 . +These flowers are beautiful , are not they ? 這些 花 很美 , 不是 嗎 ? +The accident happened on Sunday at about 3 : 00 . 此 事故 发生 在 周日 3 点 左右 . +The bus stop is near our school . 巴士站 離 我們 的 學校 近 . +We should work faster . 我們 的 工作 應該 要 加快 . +One of the girls was left behind . 這些 女孩 當中 其中 一個 被 留下 來 了 . +None of this is your money . 這些 都 不是 你 的 錢 . +They are both artists . 他们 都 是 艺术家 . +I love music . 我 爱 音乐 . +She made a series of medical discoveries . 她 提出 了 一連 串 的 醫學 發現 . +It is rude to make fun of your boss in public . 在 公開場 合開 你老 闆 的 玩笑 是 無 禮 的 . +That tree is on Tom is property . 那 樹 是 湯姆 的 財 産 . +What does this stand for ? 这 是 什么 意思 ? +Now , what do you want to see ? 現在 , 你 想 看 甚麼 ? +Spanish is her native language . 西班牙语 是 她 的 母语 . +Get down ! 趴下 ! +I look forward to it . 我 很 期待 哦 . +I have never been to my uncle is house . 我 没 去过 我 叔叔 的 房子 . +Tom is going out this afternoon with Mary . 今天下午 汤姆 和玛丽 会 一起 出去 . +The United States is abundant in natural resources . 美国 的 自然资源 很 丰富 . +If it is at all possible , I 'd like you to take part in the next meeting . 如果 可能 的 話 , 我 希望 你 參加 下 一次 的 會議 . +Tom always makes me laugh . 湯姆總 是 讓 我 笑 . +Tom is used to getting up early . 汤姆 习惯 早起 . +It is a new book . 那 本書 是 一本 新書 . +She picked flowers in the garden . 她 在 花園 裡 摘花 . +I asked her to wait a minute . 我 让 她 等 了 一分钟 . +Which fruit do you like the best ? 你 最 喜爱 的 水果 是 什么 ? +Try it again . 再 試 一次 . +We were born to die . 我们 是 为了 死亡 而 诞生 的 . +She does not have any friends . 她 一个 朋友 都 没有 . +I have never seen a live whale . 我 從來 沒有 見 過 一條 活生生 的 鯨魚 . +I had a wonderful time . 我 玩 得 很 愉快 . +A rolling stone gathers no moss . 滚石 不生 苔 . +Do you want to hear it ? 您 想 听 它 吗 ? +He advised her to stop drinking . 他 建議 她 戒酒 . +I wrote down his phone number . 我 寫 下 他 的 電話 號 碼 了 . +Do not step on the broken glass . 不要 踩 在 碎玻璃 上 . +Do not forget us . 别忘了 我们 . +The bodyguard was wearing an earpiece . 保镖 戴 着 耳机 . +How do we find it ? 我们 怎样才能 找到 它 ? +Is anything bothering you ? 有 什么 事 让 你 烦心 吗 ? +I enjoyed talking with him at the party . 聚会 上 我 和 他 谈 得 很 愉快 . +This does not concern you . 跟 你 没 半 毛钱 关系 . +He does speak well . 他 真的 說 得 很 好 . +She was very embarrassed when her child behaved badly in public . 當 她 的 孩子 在 公共 場合行 為 表現 不好 的 時候 , 她 覺 得 很 尷尬 . +No one man could do it . 沒有 一個 人 能 做到 這 一點 . +How about eating out this evening for a change ? 你 说 今晚 改变 一下 , 去 外面 吃晚饭 怎么样 ? +He has long hair . 他 有 長 頭 髮 . +I will go to America tomorrow . 我 明天 會去 美國 . +I can not say . 我 不能 说 . +There are many fish in this lake . 這個 湖裡 有 很多 魚 . +I want to keep my car there . 我 想 把 我 的 車 停放 在 那裡 . +I have not done that since high school . 高中毕业 之后 我 就 没 那样 做 过 了 . +I 'd really like to go to Boston with you . 我 不想 跟 你 去 波士 頓 . +Could you please speak a little bit more slowly ? 能否 請 你 說 慢 一點 ? +There is one apple on the desk . 书桌上 有 一个 苹果 . +We sat talking about the remote past . 我们 坐 着 谈 很久以前 的 事 . +The situation is improving , so cheer up ! 情況 正在 改善 , 所以 振作起 來 ! +I ache all over . 我 全身 酸痛 . +All you have to do is to wait . 所有 您 要 做 的 , 就是 等待 . +Both of Tom is parents passed away when he was quite young . 汤姆 很小 的 时候 父母 就 都 去世 了 . +My underpants are wet . 我 的 內褲 是 濕 的 . +What steps should we take ? 我们 应该 走出 什么样 的 步伐 . +Any comments are welcome . 欢迎 作 任何 评论 . +You are an idiot . 你个 呆瓜 ! +I plan to go to France next year . 我 想 明年 去 法国 . +Can I open the window ? 可以 开窗 吗 ? +In those days , a cup of coffee cost 200 yen . 那 时候 一杯 咖啡 要 200 日元 . +I made his son a new suit . 我 給 他 的 兒子 做 了 一套 新西 裝 . +To my surprise , the door was unlocked . 令 我 驚訝 的 是 , 門 沒 上鎖 . +Tom burned the letter . 汤姆 烧掉 了信 . +You should not go alone . 你 不 應 該 一個 人 去 . +We have decided to remain silent . 我們 決定 要 保持沉默 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Give me a dozen oranges . 給 我 一打 橘子 . +He is lazy . 他 很 懒 . +She aspired to become an actress . 她 立志 成為 一名 演員 . +My brother became an engineer . 我 哥哥 成 了 一名 工程 師 . +I will be here for a while . 我 在 这 待 一会 . +Allow me to introduce myself . 請 允許 我 自我 介紹 一下 . +It is rude to stare at someone . 盯著 別人 看 是 不 禮貌 的 . +OK . I agree . 好 . 我 同意 . +She refused to accept the money . 她 拒絕 接受 這筆 錢 . +Wo not you have some tea with me ? 你 不 和 我 一起 喝 点 茶 吗 ? +He was late for the 7 : 30 bus . 他 错过 了 7 点 30 分 的 车 . +I have just come back from school . 我 刚 从 学校 回来 . +I am folding my dress . 我 在 叠 我 的 连衣裙 . +This is just wrong . 這 就是 錯 的 . +Do you wish to complain ? 你 想 抱怨 嗎 ? +I thanked Mary for her help . 我 对 玛丽 的 帮助 表示 了 感谢 . +Eating too much is bad for your health . 吃 得 太 多 对 健康 不好 . +He came to my office yesterday . 他 昨天 來 我 的 辦 公室 . +I do not feel like eating out this evening . 今晚 我 没 心情 出去 吃饭 . +I suggest you turn around and go back home . 我 建議 你 轉身 回家 . +What are you doing ? 搞 什么 啊 ? +Your dress is very nice . 你 的 穿著 非常 好 . +These toys are suitable for girls . 這些 玩具 適合 女生 . +I am pretty tall . 我 相当 高 . +My underwear is dirty . 我 的 內 衣 髒 了 +I am sure you will love what we have on the menu tonight . 我 肯定 你 会 喜欢 我们 今晚 的 菜肴 . +Sometimes you get lucky . 你 有 時候 真 走 運 . +The children have not studied division yet . 孩子 們 還 沒上 過 除法 . +Who picked you for this mission ? 谁 选 你 来 做 这个 任务 ? +Go home quickly . 赶快 回家 . +I will leave when she comes back . 當 她 回來 的 時 後 , 我 就 離開 . +Tom swims very fast . 湯姆 游泳 游得 非常 快 . +I am glad that I was able to help . 能够 出 一份 力 太好了 . +I have a cough and a little fever . 我 咳嗽 , 还 有点 发烧 . +The result confirmed my hypothesis . 这 一 结果 证实 了 我 的 猜想 . +Tom is almost six feet tall . 湯姆 差不多 有六 呎 高 . +My sister got married in her teens . 我 妹妹 在 她 十幾歲 時 就 結婚 . +Tom asked for Mary is permission to leave early . 汤姆 请 玛丽 允许 他 早 走 . +Hot and humid weather makes us lazy . 炎熱 潮濕 的 天氣 使 我們 變得 懶散 . +I studied in the morning during the summer vacation . 我 在 暑假 里 早晨 学习 . +I can not take the place of her as an English teacher . 我 无法 取代 她 做 英语老师 . +Tom should have been ready . 汤姆 本该 已经 准备 好 了 . +I have a stupid question . 我 有 一个 挺蠢 的 问题 . +I am a stranger here myself . I am afraid I can not help you . 我 對 這裡 不熟 . 恐怕 我 不能 幫 你 . +Tom can keep a secret . 汤姆 会 保密 . +I wanted to surprise her . 我 想 給 她 一個 驚喜 . +The world is beautiful . 世界 真 美好 . +Knowledge is power . 知识 就是 力量 . +They did not like you . 他们 不 喜欢 你 . +Tom does not care about money . 汤姆 不 关心 钱 . +Would you mind shutting the door ? 請 你 把 門關 上 好 嗎 ? +I am so proud of my boys . 我 為 我 的 孩子 們 感到 很 驕傲 . +He kept his promise . 他 信守 了 他 的 承诺 . +Is it necessary for me to explain the reason to him ? 我 有 必要 向 他 解释 原因 吗 ? +You idiot ! 蠢货 ! +The box is almost empty . 盒子 几乎 是 空 的 . +Why are you so good at cooking ? 为什么 你 做饭 那么 拿手 呢 ? +How much was your new computer ? 这 台 电脑 你 用 多少 钱 买 的 ? +He calls her up every night . 他 每天晚上 打 電話 給 她 . +I am glad to see you back . 很 高兴 再 见到 您 . +Tom has not complained yet . 湯姆 還 沒有 抱怨 . +Let me try . 让 我 试试 . +I was so cold . 我 很 冷 . +It is an endangered species . 这 是 一个 濒临灭绝 的 物种 . +I 'd like a glass of water , please . 請 給 我 一杯 水 . +Is there anything you can do ? 有 什么 事 是 你 能 做 的 吗 ? +Where is the bathroom ? 洗手 間 在 哪裡 ? +I am just looking , thank you . 我 只是 看看 , 謝謝 你 . +Last night there was a full moon . 昨晚 是 满月 . +It was the only way to go . 那 是 唯一 的 出路 . +Where does your uncle live ? 你 叔叔 住 在 什麼 地方 ? +We are badly in need of food . 我们 非常 需要 食物 . +We make milk into cheese and butter . 我們 把 牛奶 製 成 乳酪 和 奶油 . +She remained single all her life . 她 终生 未婚 . +She shut herself up in her room . 她 把 自己 关 在 房里 . +This company is listed on the Paris stock exchange . 这家 公司 在 巴黎 证券 交易所 上市 了 . +He asked me whether I was busy . 他 问 我 是否 很 忙 ? +Take a deep breath , please . 請 深呼吸 . +She made the same mistake again . 她 又 犯 了 同樣 的 錯 誤 了 . +You need to get ready . 你 需要 做好 准备 . +Let is rest here . 在 这里 稍微 休息 一下 吧 . +Could you please repeat it once again ? 請 您 再 說 一遍 好 嗎 ? +You do not have to talk so loud . 你 不必 這麼 大聲 說 話 . +Have you ever tried scuba diving ? 你 曾 試 過 用水 肺潛水 嗎 ? +I made a few modifications . 我 做 了 点 改动 . +Perhaps I will be able to help you . 我 可能 能 幫 你 . +It is impossible to do the sights of Tokyo in a day or two . 一两天 是 没 办法 逛 完 东京 的 . +I 'd be happy to help you . 我 愿意 帮 你 . +I am glad to see you back . 很 高兴 再 见到 你 . +The acid ate into the metal . 酸性 腐蚀 了 金属 . +How come Mary is going on a picnic with him ? 为什么 玛丽和 他 去 野餐 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +Tell her that I am watching the news . 跟 她 說 我 正在 看 新聞 . +I always kept my promises . 我 一直 信守 我 的 諾言 . +We had a heavy rain yesterday . 昨天 下 大雨 . +Did you borrow it ? 你 借 它 了 吗 ? +Do you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +She looked after the children . 她 照顧 孩子 . +I wonder where Tom is planning to go to college . 我 想 知道 汤姆 计划 去 哪里 上 大学 . +Is there any salt left ? 还有 多余 的 盐 吗 ? +Please wait a moment . 请稍等 一会 . +Please drive the car more slowly . 請 開車 開慢 一點 . +I am learning English . 我 學 英文 . +Would you mind saying that once more ? 你 可以 再 說 一次 嗎 ? +She can swim further than I can . 她 能 遊 得 比 我 遠 . +I was quite satisfied . 我 真是 满意 . +Be respectful to your superiors , if you have any . 如果 你 有 上司 的话 , 学会 尊敬 他 ( 她 ) . +He would not look at my proposal . 他 對 我 的 提議 不屑 一顧 . +I lent him a CD . 我 借给 他 一盘 CD . +Tom speaks French a little . 汤姆 会 说 一点 法语 . +Tom left his umbrella on the bus . 汤姆 把 他 的 雨伞 忘在 了 公交车 上 . +We had a lecture on environmental pollution . 我们 有 一节 关于 环境污染 的 讲座 . +He drinks too much beer . 他 喝 太 多 啤酒 . +We should abolish the death penalty . 我们 应该 废除 死刑 . +He went away without saying a word . 他 沒 說 一句 話 就 離開 了 . +I want to cry . 我 想 哭 . +Take me home . 带 我 回家 . +Give me a ring tomorrow . 明天 打电话 给 我 . +The king crushed his enemies . 國王 摧毀 了 他 的 敵人 . +Are you studying ? 您 学习 吗 ? +The drug problem is international . 毒品 是 国际性 的 问题 . +Boston is a great place to raise kids . 波士 頓是 養 小孩 的 好 地方 . +He told me that I looked pale and asked me what the matter was . 他 跟 我 说 我 很 苍白 , 并 问 我 怎么 了 . +I have things to take care of . 我 有些 事 . +Tom changed clothes . 湯姆 換 了 衣服 . +We managed to get some foreign stamps . 我們 設法 得到 一些 外國 的 郵票 . +He is afraid to fly in an airplane . 他 怕 坐飞机 . +I wanted to smack you . 我 想 过 扇 你 一巴掌 . +My sister is playing with a doll . 我 妹妹 正在 玩 洋娃娃 . +Not even one taxi stopped . 甚至 沒有 一輛 計程 車 停下 來 . +You look stupid . 你 看上去 很傻 . +My sister is twenty @-@ one years old and a college student . 我 妹妹 21 岁 , 是 个 大学生 . +I buy tapes . 我 買 磁帶 . +I can not play tennis that well . 我 不 那麼 會 打 網球 . +He could not wait to try out his new surfboard . 他 迫不及待 地想 试一下 他 的 新 冲浪板 . +The talks will last three days . 这场 谈话 将要 持续 三天 . +He is a student at Harvard . 他 是 一個 哈佛 的 學生 . +She left for London yesterday . 她 昨天 離開 去 倫敦 . +You may sit wherever you like . 你 喜欢 坐 哪儿 就 坐 哪儿 . +They all searched for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +The mountain has a beautiful shape . 這 座 山 有 一個 美麗 的 外形 . +Please give me a glass of water . 請 給 我 一杯 水 . +English is an international language . 英語 是 國際 語言 . +I can not believe that you love me . 我 不能 相信 你 愛 我 . +It is difficult for me to answer the question . 这个 问题 对 我 来讲 很 难 回答 . +Everyone loves that place . 每 一個 人 都 喜歡 那個 地方 . +I can hear you . 我 听 得到 . +These products are of the same quality . 这些 产品质量 同等 . +My dog follows me wherever I go . 無論 我 去 哪裡 , 我 的 狗 都 跟著 我 . +It will soon be three o 'clock . 很快 就要 三點鐘 了 . +It is not polite to stare at people . 盯著 人 看 是 不 禮貌 的 . +Tom was dressed like a pirate . Tom 穿 得 像 个 海盗 . +He often goes abroad on business . 他 經常 出國 洽商 . +It is clear that you are wrong . 很 明顯 地 你 錯 了 . +Your second button is coming off . 你 的 第二 顆鈕 扣快 掉 了 . +The end does not always justify the means . 為了 正當 目的 並非 總是 可以 不擇 手段 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +I ran as fast as possible . 我 跑 得 尽可能 快 . +I hear that she is a famous actress . 我 聽 說 她 是 個 有名 的 演員 . +Marriage is the main cause of divorce . 婚姻 是 造成 離婚 的 主因 . +Say no to drugs . 對 毒品 說不 . +Speak clearly and make yourself heard . 講 清楚 並 大聲 地 讓 別人 聽到 你 說 話 . +Why can not he play tennis today ? 為 什麼 他 今天 不能 打 網球 呢 ? +He is a dentist by profession . 他 是 一位 专职 牙医 . +Waiter , I would like to order . 服务生 , 我 要 点菜 . +He agrees with my opinion . 他 同意 我 的 意見 . +It is possible that Tom lied to you . 汤姆 有 可能 对 你 撒谎 了 . +Shut all the doors and windows . 關閉 所有 的 門 和 窗戶 . +Were you right ? 你 是 对 的 吗 ? +This place has a mysterious atmosphere . 这个 地方 有 一种 神秘 的 气氛 . +I do not have a desk in my bedroom . 我 的 臥室 裡 沒有 桌子 . +Cats do not eat bananas . 猫 不吃 香蕉 . +He was very good at playing tennis . 他 网球 打 得 很 好 . +It is just what I wanted . 我 想要 的 就是 这个 . +Do it now . 現在 就 做 . +I do not sleep in a bed . 我 不 在 床上 睡觉 . +I can hardly walk . 我 幾乎 不能 走路 . +Why did you come here so early ? 你 為 什麼 這麼 早來 這裡 ? +She caught colds often . 她 常常 感冒 . +Dad is in an impatient mood today . 爸爸 今天 很 不耐烦 . +It is unlikely that he did anything wrong . 他 看來 沒有 做錯 甚麼 . +I like to eat meat . 我 喜歡 吃 肉 . +He should have been more careful . 他 本 應 該 更 小心 的 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +She came home very late . 她 很 晚 回家 . +Do you think we will have good weather ? 你 认为 我们 会 遇到 好 天气 吗 ? +I won the lottery . 我 中奖 了 . +Do not write in red ink . 別 用 紅 墨水 寫 . +Are you mad at Tom ? 你 在 生 汤姆 的 气 吗 ? +You underestimate your charisma . 你 低估 了 你 的 魅力 . +I miss you . 我 想念 你 . +He is a teacher . 他 是 老师 . +I am glad I was able to help . 能够 出 一份 力 太好了 . +That will not change anything . 這樣 做 的 話 什麼 都 不 會 改變 的 . +I am taller than you . 我 比 你 高 . +Many students like to study in the morning . 许多 学生 喜欢 在 早上 学习 . +I have quit drinking beer . 我 已經 不 喝啤酒 了 . +Where is Tom ? 汤姆 在 哪儿 ? +Tom put his money in the safe . 汤姆 把 他 的 钱 放在 保险柜 里 . +I finally found a job . 我 終于 找到 工作 了 . +I live near here . 我 住 在 這 附近 . +The rain is beating against the windows . 雨点 打着 窗户 . +I felt quite relieved after I had said all I wanted to say . 说 了 所有 我 要说 的话 后 , 我 感觉 很 轻松 . +Could you put my name on the waiting list ? 你 能 把 我 的 名字 加 到 等候 批准 的 申请人 名单 上 吗 ? +Tom climbed down from the tree . 汤姆 从 树上 爬 了 下来 . +I study English and Japanese . 我 学习 英语 和 日语 . +He was listening to music . 他 正在 聽 音樂 . +Tom and Mary could not help me do that . 湯姆 和 瑪麗 不能 幫 我 去 做 . +She kept him waiting half an hour . 她 讓 他 等 了 半 小 時 . +He may have left for Kyoto . 他 可能 已經 離開 京都 了 . +We have four French classes a week . 我們 一週 有 四堂 法語 課 . +The medicine did not do me any good . 這 藥 對 我 沒有 任何 好 處 . +It may snow in the afternoon . 下午 可能 會 下雪 . +Her socks are gray . 她 的 襪子 是 灰色 的 . +He came in person . 他 亲自 来 了 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +She is a glamorous girl . 她 是 个 迷人 的 女孩子 . +I remember my mother teaching me the alphabet . 我 记得 我 母亲 教 我 认字 . +His speech captured our attention . 他 的 演講 吸引 了 我們 的 注意 . +She is qualified as a nurse . 她 是 个 合格 的 护士 . +I am sure we will find a solution . 我 确信 我们 会 找到 解决办法 的 . +Turn left at the first light . 在 第一 個 紅 綠燈 左 轉 . +The bike parked over there is my brother is . 那邊 停著 的 那輛 自行 車 是 我 哥哥 的 . +He acts quickly . 他 行动 迅速 . +I miss my children . 我 想念 我 的 孩子 . +I 'd like three pounds of chicken . 我 要 三磅 的 雞肉 . +Did you understand what he said ? 你 听懂 他 说 的 了 吗 ? +Tom smiled . 汤姆 笑 了 . +I prefer hardwood floors to carpet . 我 喜歡 硬 木地板 勝 過 地毯 . +Bring me the magazines . 把 那 本 雜 誌 拿 來 給 我 . +I am willing to help him . 我 願意 幫 湯姆 . +The man behind them is playing the piano . 在 他們 身 後 的 男人 正在 彈 鋼琴 . +He does not understand me . 他 不 理解 我 . +This is the last time I will ask you to do anything for me . 这 是 我 最后 一次 让 你 为 我 做点事 了 . +I have been going out with her for months . 我 和 她 交往 幾個 月 了 . +The trees are green . 树 是 绿 的 . +I have no more time to talk with you . 我 没 时间 再 跟 你 说话 了 . +The man is loading the moving truck on his own . 這個 男人 獨自 把 東西 搬上 搬家 卡車 上 . +Why do you need it ? 你 為 什麼 需要 它 ? +What is your favorite drink ? 你 最 喜欢 的 饮料 是 什么 ? +He will be back by five o 'clock . 他 五點 左右 會 回來 . +He may be on the next train . 他 可能 在 下 一班 火車 上 . +I deleted my Facebook account . 我 刪 除了 我 的 Facebook 帳號 . +He catches colds very easily . 他 很 容易 感冒 . +Queen Elizabeth I passed away in 1603 . 女王 伊麗莎 白 一世 於 1603 年 去世 . +Turn around . 转过 来 . +Are you going to be in Boston this weekend ? 你 這 週末 在 波士 頓過 嗎 ? +She happened to know his address . 她 恰巧 知道 他 的 地址 . +It is high time you were in bed . 你 早该 睡 了 . +Look at me when I talk to you ! 我 跟 你 说话 的 时候 看着 我 ! +I am all ears . 我 洗耳 恭 聽 . +He is giving his whole attention to that . 他 全神贯注 . +I grew up in a poor family . 我 出身 贫寒 . +Where are you now ? 你 现在 在 哪里 呢 ? +Have you finished doing your homework yet ? 你 做 完 回家 作業 了 嗎 ? +I should put on more clothes . 我 应该 多 穿 点 衣服 了 . +Nothing is really guaranteed . 沒有 甚麼 是 真正 有 保證 的 . +I sure hope this is a dream . 我 当然 希望 这 是 一个 梦 . +Please pass me the butter . 请 把 黄油 递给 我 . +Tom told Mary that she should quit pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +It is really cheap . 它 真的 很 便宜 . +Smoking is prohibited . 禁止 吸烟 . +Is it cheaper to call after 9 : 00 ? 九點 以 後 打 電話 比較 便宜 嗎 ? +What you said about Tom is not true . 你 说 的 关于 汤姆 的话 不是 真的 . +Do not look a gift horse in the mouth . 不要 對 人家 送 的 禮物 挑 三 揀 四 , 嫌東 嫌西 的 . +My father lives in the country . 我 父親 住 在 鄉下 . +This is mine . 这 是 我 的 . +Every door in the house is locked . 這 房子 裡 的 每 一扇 門 都 被 鎖上 了 . +I do not have a car . 我 沒有 汽車 . +I do not know where my crutches are . Have you seen them ? 我 不 知道 把 拐杖 放 哪 去 了 , 你 有 看到 嗎 ? +It seems that I have lost my keys . 我 好像 丢 了 我 的 钥匙 . +I am going to the bank . 我 要 去 银行 了 . +I do not sleep well . 我 睡 不好 . +Did you get my letter ? 你 收到 了 我 发 的 邮件 了 吗 ? +I do not know what this symbol stands for . 我 不 知道 這個 符號 代表 什麼 意思 . +She wears a lot of makeup . 她 化 着 浓妆 . +He would often come to see us when I was a child . 當 我 還 是 個 孩子 時 , 他 經常 來 看望 我們 . +I wish you had been there . 但 願 你 去過 那裡 . +Tom said he 'd wait . 湯姆 說 他 會 等 . +We ate breakfast at seven . 我们 7 点 吃 了 早饭 . +I usually stay indoors on Sunday . 星期天 我 通常 待 在家 裡 . +Does it sound like I am in love ? 聽 起來 像是 我 戀愛 了 嗎 ? +Seen from the moon , the earth looks like a ball . 从 月球 上看 的话 , 地球 看起来 像 个 皮球 . +Tom went swimming in the river , but when he got out , his clothes had been stolen . 汤姆 去 河里 游泳 , 但当 他 出来 时 , 他 的 衣服 被 偷 了 . +I like traveling . 我 喜歡 旅行 . +I do not expect anything from you . 我 不 指望 从 你 身上 得到 什么 . +Please excuse me for being rude . 請 原諒 我 的 魯莽 . +Could you bring my breakfast to room 305 ? 你 可以 把 我 的 早餐 送到 305 房间 吗 ? +She asked us several questions . 她 问 了 我们 好几个 问题 . +Do you want something to eat ? 您 想 吃 点 什么 吗 ? +Words express thoughts . 語詞 表達 思想 . +I once wanted to be an astrophysicist . 我 曾經 想 過 當個 太空 物理 學家 . +He has dozens of books about Japan . 他 有 幾 十本 關於 日本 的 書 . +There was a lot of snow last winter . 去年 冬天 下 了 好多 雪 . +I think that Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +Beauty is in the eye of the beholder . 美 驻留 在 看 的 那个 人 的 眼里 . +Your friendship means a lot to me . 你 的 友誼 對 我 來說 意義 重大 . +I will not do it again . 下次 我 不 做 了 . +He hit his head against a rock . 他 的 頭 撞 到 了 一塊 岩石 . +We do not have too much time . 我们 没有 太 多 时间 . +There is only one book on the desk . 桌子 上 只有 一 本书 . +I am reading a book about animals . 我 正在 讀 一本 關於 動物 的 書 . +This store is currently selling vegetables . 这家 店 在 卖 蔬菜 . +Tom drank my apple juice . Tom 喝 我 的 蘋 果汁 . +You are such an idiot . 你 真是 個 傻瓜 ! +She is busy now and can not talk with you . 她 现在 忙 , 不能 跟 你 说话 . +I tried to hit Tom , but he ducked . 我 要 去 打 汤姆 , 但是 他 避开 了 . +He seems not to be aware of the conflict between my father and me . 他 似乎 不 知道 我 父亲 和 我 之间 的 纠葛 . +I thought Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +I would like to join your group . 我 想 加入 你们 的 团 对 . +Tom went out for a walk with his dog . 湯姆 帶 他 的 狗 出去 走 . +I do not think any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +They made us work all day long . 他們 讓 我們 工作 了 一整天 . +I want some fresh eggs . 我 想要 一些 新鲜 的 鸡蛋 . +What movies are playing this week ? 这周 放 什么 电影 ? +I am going to school . 我 去 学校 了 . +I am waiting for the store to open . 我 正 等著 這家 店 開門 . +Please accept my sincere apologies . 請 接受 我 誠摯 的 歉意 . +His advice did not help at all . 他 的 建议 完全 没用 . +The soldier groaned with pain . 這 名 士兵 痛苦 地 呻吟 . +Teachers also make mistakes . 老师 也 会 犯错 . +Tom says they need more time . 汤姆 说 他们 需要 更 多 时间 . +He wears Chinese @-@ style clothes . 他 穿 中式 服裝 . +I can not think of any other way of getting him to accept our proposal . 我 看不出 有 其他 方法 能 让 他 接受 我们 的 提议 . +I talked with Tom . 我 和 汤姆 说 了 话 . +I dreamt about you . 我 梦 到 你 了 . +Do you want to speak to Tom ? 你 想 跟 汤姆 说话 吗 ? +I am out of time . 我 没 时间 了 . +If Tom is really alive , where is he ? 如果 汤姆 真的 活着 , 他 在 哪里 ? +I will leave this work to you . 我 會 把 這個 工作 留給 你 . +How can Tom not understand that ? 湯姆 怎麼 能 不 懂 ? +The police held him in custody . 警方 拘留 了 他 . +They gave in to my opinion . 他們 屈服 於 我 的 看法 了 . +She taught me how to swim . 她 教我如何 游泳 . +How are you ? 你們 好 嗎 ? +Tom thanked me for the gift . 湯姆 為 這個 禮物 感謝 我 . +I am not feeling well . 我 感觉 不 舒服 . +We do not speak French . 我們 不 講 法語 . +The living room adjoins the dining room . 客廳 緊 鄰著 餐廳 . +I bought a good camera . 我 買 了 一台 不錯 的 照相 機 . +She has a daughter who is a pianist . 她 有 一个 钢琴家 女儿 . +I decided not to study French . 我 決定 不學法 語 . +Can I see the menu , please ? 麻煩 給 我 菜 單 . +Turn left at the next corner . 下 一个 街角 左转 . +She laid the work on him . 她 派 他 去 工作 了 . +He thought of a good solution . 他 想到 了 一個 解決 的 好 辦法 . +To put it briefly , I do not agree . 简而言之 , 我 不 同意 . +They called him a coward . 他們 稱 他 膽 小鬼 . +I wonder what the weather will be like tomorrow . 不 知道 明天 天气 会 怎么样 呢 ? +I had no trouble finding his office . 我 毫不 费劲 就 找到 他 的 公司 . +I will see you later . 等 會 兒 見 . +Do not bother calling security . 别 麻烦 保安 了 . +We must execute his orders . 我们 必须 执行 他 的 命令 . +He gave her a piece of paper . 他 給 了 她 一張 紙 . +I do not want to buy a newspaper today . 我 今天 不想 买 报纸 . +I am not sure , but I think I know where to go . 我 不 确定 , 但 我 认为 我 知道 要 去 哪里 . +Do not be terrified . 別 被 嚇壞 了 . +She ought to have arrived by now . 她 現在 應該 已經 到 了 . +He spared no pains to help me . 他 不 遺餘力 幫助 我 . +I am looking over his report . 我 在 阅读 他 的 报告 . +We have only one chance . 我们 只有 一次 机会 . +I am never coming back here again . 我 不会 再 回来 了 . +Sit tight . 耐心 等 着 . +Red is out of fashion . 红色 不 流行 了 . +They laughed at my idea . 他們 嘲笑 我 的 想法 . +We were very sorry we could not help them . 我們 很 遺憾 無法 幫助 他們 . +This is the house where I used to live when I was young . 这 是 我 年轻 时候 住 的 房子 . +I have a dictionary . 我 有個 字典 . +People used to laugh at us . 人们 以前 笑话 我们 . +If a sick person folds one thousand paper cranes , her wish will come true . 如果 一個 病人 折 一千 隻 紙 鶴 , 她 的 願望 就 會 成 真 . +Anything you say can be used against you in court . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +My sister can play the piano better than I can . 我 妹妹 鋼琴 可以 彈 得 比 我 好 . +I thought we were going to do this together . 我 認為 我們 要 一起 做 . +He asked me if I liked mathematics . 他 問 我 喜 不 喜歡 數學 . +This is going to be a great trip . 這 會 是 個 絕好 的 旅行 . +How many prefectures are there in Japan ? 日本 有 多少 個 縣 ? +Tom wanted to go to Australia . 汤姆 想 去 澳大利亚 . +I am sure of his success . 我 肯定 他 会 成功 的 . +I like each of them . 我 喜欢 他们 每 一个 . +This is Mary is dog . 這 是 瑪麗 的 狗 . +She showed the visitor her baby . 她 给 客人 看 了 她 的 宝宝 . +This might not be a genuine diamond . 這 可能 不是 真的 鑽石 . +She is now staying at her uncle is house . 她 现在 正待 在 她 叔叔 家 . +I wish I knew where he was ! 但 願 我 知道 他 在 哪裡 . +Rather than cutting down on cigarettes , why do not you just give them up ? 比起 少 抽 菸 , 你 何不 直接 把 菸 戒 了 ? +It is none of your concern . 这 不关 你 的 事 . +No students were absent . 沒有 學生 缺席 . +Stop putting off finding a job . 不要 拖延 去 找 工作 的 事 . +Is that black bag yours ? 那個 黑色 提包 是 你 的 嗎 ? +He is busy with his homework now . 他 現在 正忙 著做 他 的 家庭 作業 . +There are not many books on these shelves . 这些 书架上 没有 很多 书 . +He is going to run for mayor . 他 將 競選 市長 . +How is everyone ? 大家 好 嗎 ? +Let is assume that will happen . 讓 我們 假定 那 會 發生 . +Tom seems to be completely lost . 湯姆 看來 完全 輸 了 . +An electric current can generate magnetism . 電流 可以 產生 磁性 . +That is Mary is husband . 那 是 玛丽 的 丈夫 . +Let is ask if it is true . 让 我们 来 问问 这 是不是 真的 . +He got wet from the waist to the knees . 他 從 腰部 到 膝 蓋 都 濕 了 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +You look very pale . 你 看上去 很 苍白 . +When have you ever done anything for me ? 你 什么 时候 给 我 做事 ? +Tom told me that I should not go out alone at night . 汤姆 跟 我 说 我 不 应该 晚上 一个 人 出门 . +She must be over eighty . 她 肯定 超过 80 岁 了 . +I just want to know what actually happened . 我 只 想 知道 实际上 发生 了 什么 . +I am blessed with good health . 上帝 賜予 我 健康 的 身體 . +Lie down and make yourself comfortable . 躺 下來 讓 自己 舒服 一點 . +Suddenly it began to rain . 突然 開始 下雨 . +I am getting more and more gray hair . 我 的 白 髮 越 來 越 多 . +I like to listen to music , especially jazz . 我 喜歡 聽 音樂 , 特別 是 爵士 音樂 . +My boss made me work last Sunday . 上週 日 我 的 老 闆 要 我 工作 . +I anticipate that there will be trouble . 我 預料 會 有 麻煩 . +Did somebody hit Tom ? 有人 打 汤姆 了 吗 ? +An argument may be logically sound without being true . 不 正确 的 命题 听 起来 可能 符合 逻辑 . +Popcorn is my favorite snack . 爆米花 是 我 最 喜欢 的 零食 . +Sir , can we quickly inspect your luggage please ? 先生 , 我們 可以 檢查 一下 您 的 行李 嗎 ? +It is a waste of time . 这 是 浪费时间 . +These must be fake . 這些 一定 是 假 的 . +Nobody knows the truth . 没有 人 知道 真相 . +Tom currently resides in Boston . 汤姆 现在 住 在 波士顿 . +He was involved in the trouble . 他 被 卷进 了 是非 中 . +She did not appear to recognize me . 她 好像 没 认出 我 . +I was always good at English . 我 的 英文 一直 都 不錯 . +Am I a good teacher ? 我 是 一個 好 老師 嗎 ? +They do not like me . 他們 不 喜歡 我 . +He owes his success both to working hard and to good luck . 他 的 成功 要 归结 于 他 的 辛勤工作 和 好运气 . +The waves crashed against the rocks . 浪 拍 在 岩石 上 . +I am wet . 我 濕 了 . +I do not know whether I have time or not . 我 不 知道 有没有 时间 . +I went to Disneyland yesterday . 昨天 我 去 了 迪士尼 樂園 . +I am not a beggar . 我 不是 乞丐 . +We can do nothing . 我们 什么 都 做不了 . +A boy is walking across the street . 一个男孩 正 沿着 街 走 . +The date of manufacture is shown on the lid . 生产日期 在 盖子 上 . +He ran faster than his brother did . 他 跑 得 比 他 哥哥 快 . +Please feel free to ask questions . 歡迎 隨時 提問 . +We had to go there together . 我们 必须 一起 去 . +A true scientist would not approach the question this way . 真正 的 科学家 不会 这样 去 思考 . +Tom is always absent . 汤姆 总是 旷课 . +We can not deny the fact that he is honest . 我们 无法 否认 , 他 确实 是 很 诚实 的 人 . +I have been there a couple of times . 我 去過 那裡 幾次 . +We should try to avoid imposing our own beliefs on others . 我們 應該 盡量 避免 把 我們 自己 的 信念 強加 在 別人 身上 . +According to TV news , there was a plane crash in India . 根据 电视新闻 , 一架 飞机 在 印度 坠毁 了 . +How many boys are there in this class ? 这个 班 有 多少 男生 ? +If you have something to say , just say it . 如果 你 想 说 , 就 说 . +I was born in Kyoto . 我 生于 京都 . +Time passes quickly when we are doing something we like . 在 做 喜欢 的 事情 的 时候 时间 过去 得 很快 . +You can go to the ballpark on this bus . 坐 這個 公車 可以 到 球場 . +What you said left a deep impression on me . 你 说 的话 给 我 留下 了 很 深刻 的 印象 . +He wants you to stay here . 他 要 你 留在 這裡 . +Mary came home from school in tears because her friends had teased her . 玛丽 哭 着 从 学校 跑 回 了 家里 , 因为 她 的 朋友 捉弄 了 她 . +I got acquainted with the chief executive . 我 認識 了 這位 行政 長 官 . +He is a tall boy . 他 是 一个 高大 的 男孩 . +They do not always obey their parents . 他们 并 不 总是 服从 父母 . +She does not have as much patience as you do . 她 没 像 你 那样 有 耐心 . +Tom has not done anything . 汤姆 什么 都 没 做 . +No , thank you . I am just looking around . 不 , 謝謝 你 . 我 只是 四處 看看 . +" More coffee ? " " No , thanks . " “ 还要 咖啡 吗 ? ” “ 不了 , 谢谢 . ” +She declared that she was not guilty . 她 声称 自己 没罪 . +You may come if you like . 如果 你 想 , 你 可以 來 . +Are you going out tomorrow ? 你 明天 出去 吗 ? +I can not go . 我 不能 走 . +He will have to go to the station . 他 该 去 火车站 了 . +Volcanic ash disrupted air travel . 火山灰 阻礙 航運 . +He has an eye for antiques . 他 对 古董 很 有 鉴赏力 . +I know you are richer than me . 我 知道 你 比 我 有 錢 . +Cows give milk . 牛 可 产奶 . +Did you get your wish ? 你 如 願 以償 了 嗎 ? +I asked him where he was going . 我 問 了 他 要 去 哪裡 . +You do not understand . 你 不 了解 . +I am getting too old for this job . 对于 这份 工作 来说 , 我 的 年龄 太 老 了 . +I like to go fishing with my father . 我 喜欢 和 父亲 一起 去 钓鱼 . +Tom has accumulated a lot of junk . 湯姆屯 了 很多 垃圾 . +Do you have any idea what is been going on ? 你 知道 現在 正在 發生 甚麼 嗎 ? +The news confirmed my suspicions . 这 一 消息 证实 了 我 的 怀疑 . +The explosion may have been caused by a gas leak . 這場 爆炸 有 可能 是 瓦斯 外 洩 引起 的 . +Come and see me whenever you like . 你 隨時 都 可以 來看 我 . +He worked very hard . 他 工作 很 努力 . +Probably you are allergic to pollen or dust . 你 可能 对 花粉 或 灰尘 过敏 . +You will fail . 你 會 失敗 . +They went to the station by car . 他們 坐 車 去 車站 . +Tom wants to talk . 汤姆 想 说话 . +Why did you buy such an expensive dictionary ? 为什么 你 买 了 一本 那么 贵 的 词典 ? +Tom is a bus driver . 汤姆 是 个 公交车 司机 . +What I want is some peace and quiet . 我 所 想要 的 是 一点 平和 和 安静 . +We lost our cat and Tom found it for us . 我們 弄 丟了 車 , Tom 幫 我們 找 了 回來 . +Some gum stuck to his shoes . 口香糖 粘到 他 的 鞋子 上 了 . +Who were you talking to ? 你 和 谁 说话 呢 ? +" Shall I take a message ? " " No , thank you . " “ 需要 我 为 您 留 个 口信儿 吗 ? ” “ 不用 了 , 谢谢 . ” +We will do that . 我們 會 去 做 . +An angle of 90 degrees is called a right angle . 90 度 的 角 叫 直角 . +Between you and me , what is your opinion of her ? 你 就 只 告诉 我 一个 人 , 你 对 她 的 意见 如何 ? +Tennis is my favorite sport . 网球 是 我 最 喜欢 的 运动 . +When I woke up , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Whose glass is this ? 这 是 谁 的 杯子 ? +Would you like to go to the zoo this afternoon ? 今天下午 你 想 去 動物園 嗎 ? +You should be able to manage it . 你 应该 能 解决 . +According to newspaper reports , there was an airplane accident last evening . 根據 報載 , 有 一架 飛機 昨天晚上 發生 了 意外 . +I had to work overtime yesterday . 我 昨天 必須 加班 . +Why do you want to be a nurse ? 你 为什么 想 成为 护士 呢 ? +I was born in the winter . 我 在 冬天 出生 . +My attitude towards him changed . 我 对 他 的 态度 变 了 . +I will stay home . 我 會 待 在家 裡 . +He is been to the stadium . 他 去過 體育館 . +Please do not forget to put a stamp on the letter before mailing it . 请 不要 忘记 寄信 前 要 在 上面 贴 邮票 . +He left his daughter a great fortune . 他 留给 他 女儿 一大笔 财产 . +Have you been eating ? 你 在 吃 东西 吗 ? +Gravity brings everything down to Earth . 重力 将 一切 带 下 地球表面 . +My parents have gone to the airport to see my uncle off . 我 父母 去 机场 送 我 叔叔 了 . +Tom has his own problems . 汤姆 有 他 自己 的 问题 . +After asking for my key at the front desk , I took the elevator to my floor . 我 到櫃檯拿了鑰匙 , 然 後 就 乘 電梯 去 了 我 房間 的 樓層 . +How many hours a day do you sleep ? 你 每天 睡 几个 小时 ? +Do not bite on the right side . 不要 從 右邊 咬 . +I know Tom . 我 认识 汤姆 . +I am going to see Tom in the morning . 我 早上 去 見 湯姆 . +He caught her by the arm . 他 抓住 了 她 的 胳膊 . +Sorry to have kept you waiting . 對 不起 讓 你 一直 等 . +Tom always speaks in such a low voice that I can barely understand what he says . 汤姆 总是 说话 声音 太小 , 我 几乎 听不懂 他 在 说 什么 . +They were forced to kill and eat several of their horses . 他们 被迫 杀掉 他们 的 几匹马 来 吃 . +Her birthday party will be tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +The storm did not abate for several hours . 风暴 几个 小时 没有 减弱 了 . +You may take this . 您 可以 拿 着 这个 . +There is an apple on the desk . 书桌上 有 一个 苹果 . +You are in my way . 你 擋住 了 我 的 路 . +We have to find out what Tom wants . 我们 要 明白 汤姆 想要 什么 . +Asia is much larger than Australia . 亚洲 比 澳洲 大 很多 . +His brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +It is likely that she will succeed . 她 很 有 可能 会 有所 成就 . +Tom knows what we are doing . 汤姆 知道 我们 在 做 什么 . +His brother studies very hard . 他 的 哥哥 很 用功 讀書 . +Have you handed in your homework ? 你 交功課 了 嗎 ? +Do you understand ? 你们 懂吗 ? +I was abducted by aliens . 我 被 外星人 绑架 了 . +Tom has started studying karate . 汤姆 已经 开始 学习 空手道 了 . +He lives next door to us . 他 住 在 我們 隔壁 . +It takes 165 years for Neptune to orbit around the sun . 海王星 繞行 太陽 一周 要 花 一百六十五 年 . +Excuse me , how much is this sweater ? 请问 下 , 这件 毛衣 要 多少 钱 ? +I want you guys to do me a favor . 我 想要 大家伙 帮 我个 忙 . +This is not a sentence . 这 不是 一句 话 . +Smoking is strictly prohibited . 严禁吸烟 . +He said that it would probably rain . 他 說 很 可能 會 下雨 . +This book is not interesting at all . 這 本書 一點 也 不 有趣 . +It is all Greek to me . 我 对此 一窍不通 . +I have to get up quite early tomorrow . 我 明天 得 早起 . +His son was expelled from school . 他 的 兒子 被 學校 開 除了 . +Is Tom living in Boston ? 汤姆 住 在 波士顿 吗 ? +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +What time do you wake up on Sundays ? 你 星期天 幾點 起床 ? +Tom is still upset . 湯姆 還 是 不安 . +I kept singing . 我 繼續 唱歌 . +This car is very economical on gas . 这辆 车 很 省油 . +I wake him up at 6 every morning . 我 每天 早上 6 点 叫醒 他 . +Will it take long to recover ? 要 很 長 的 時間 才能 恢 復 嗎 ? +I found the new magazine very interesting . 我 發現 這 本新 雜 誌 非常 有趣 . +I am afraid the job I have got for you will not be easy . 我 恐怕 我 給 你 找 的 工作 不 輕 鬆 . +She was holding an umbrella . 她 握 着 一把 伞 . +They did not pay me . 他们 没付 我 钱 . +Do not begin without me . 我 不 在 就别 开始 . +She helped her father with the work in the garden . 她 帮 她 爸爸 干 了 花园里 的 活 . +They will not come until tomorrow . 他們 直到 明天 前 不 會 來 . +It is up to you . 这 就要 看 您 了 . +She hit him . 她 打 了 他 . +How can I get to the station ? 我 怎樣 才能 到 火車 站 ? +I think I am going crazy . 我 认为 我 快 疯 了 . +My team is always losing . 我们 队 从来 就 没 赢 过 . +I want to go for a swim . 我 想 去 游泳 . +I enjoy taking pictures . 我 喜欢 拍照 . +This ticket is valid for three days . 这 张 票 三日 有效 . +You will be able to see the difference very easily . 您 很 容易 就 能 看出 区别 . +I am happiest when I am reading . 當 我 閱讀 的 時候 , 我 最快 樂 . +It looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +Tom heard nothing . 汤姆 什么 也 没 听见 . +Let is not argue . 我們 別 吵 了 . +It is impossible for me to explain it to you . 要 我 解释 给 你 听 是 不 可能 的 . +You may choose whichever you want . 你 可以 选择 任何 你 想要 的 . +You like rain , do not you ? 你 喜欢 雨 对 吧 ? +We need to go . 我们 必须 走 了 . +Turn off the light , please . 請 關燈 . +Your watch is more expensive than mine . 你 的 手表 比 我 的 贵 . +How are you doing today ? 你 今天 怎么样 ? +It is already 7 : 00 . 已经 是 早上 七点 了 . +She greeted us with a smile . 她 面帶 微笑 向 我們 打招呼 . +Only a few TV programs are worth watching . 只有 为数不多 的 几个 电视节目 值得 关注 . +We will have to wait and see . 你 得 等一等 看 . +Is this fish still alive ? 这条 鱼 还是 活 的 吗 ? +You are the one who suggested that we sing together . 你 是 那個 建議 我們 一起 唱歌 的 人 . +I have to say goodnight to Tom . 我 必须 跟 汤姆 说 晚安 . +Read this . 念 这个 . +We waited in the park for a long time . 我们 在 公园 等 了 好久 . +If you bite me , I will bite back . 如果 你 咬 我 , 我 就 咬 回来 . +We have got lots of time . 我們 有 很多 時間 . +We found the boy fast asleep . 我們 發現 這個 男孩 睡 得 很沉 . +I wonder whether we have enough money to buy Tom the painting he wanted . 我 想 知道 咱们 是否 有 足够 的 钱 给 汤姆 买 他 想要 的 这 幅画 +I 'd better get back home . 我 回家 比较 好 . +They grow flowers in the garden . 他們 在 花園 裡 種花 . +He has been to London three times . 他 去過 倫敦 三次 . +I bumped into him at the station . 我 在 車站 碰到 他 . +It looks like snow , does not it ? 看起 來 要 下雪 了 , 不是 嗎 ? +He admitted his mistakes . 他 承认 了 自己 的 错误 . +I am calling from a cell phone . 我 正在 用 手机 打电话 . +Tom is bicycle was stolen yesterday . 湯姆 的 自行 車 昨天 被 偷 了 . +He is a high school student . 他 是 一名 高中 學生 . +I am actually doing quite well . 我 其實 做 得 很 好 . +I know the boy who is sitting closest to the door . 我 认识 那个 坐 得 最靠近 门 的 男孩 . +They waited for him for hours . 他們 等 了 他 好 幾個 小 時 . +Tom got here before sunrise . 汤姆 天亮 前 就 到 这 了 . +The cat was scared by an unfamiliar noise . 猫 被 陌生 的 噪音 惊吓 了 . +Stay off the grass . 不要 走 在 草地 上 . +Tom does not work here . 湯姆 不 在 這裡 工作 . +Let is forget it for now . 讓 我們 現在 忘 了 它 吧 . +Tom has to speak French every day at work . 汤姆 每天 都 要 在 工作 时说 法语 . +It is self @-@ evident . 這 是 不證 自明 的 . +I do not want to hear your theories . 我 不想 听 你 的 理论 . +I want something sweet . 我 要 一些 甜 的 東西 . +Nature is full of mysteries . 自然 充满 了 神秘 . +I have had a lot of work to do lately . 我 最近 有 很多 事情 要 做 . +Should I cancel the call ? 我 该 取消 通话 吗 ? +I am afraid of earthquakes . 我 怕 地震 . +How did you get there ? 你 怎麼 到 那 的 ? +I do not like that . 我 不 喜欢 . +What have you done with my pen ? 你 用 我 的 筆 做 了 什麼 ? +Tom was there physically , but not mentally . 汤姆 人 在 心 不 在 . +I think you should make the deal . 我 看 你 该 做 这 交易 . +There is a path through the fields . 有 条 小路 穿过 农田 . +He was very busy all day . 他 忙 了 一整天 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can see Tom . 我 看得见 汤姆 . +" Are you tired ? " " No , not at all . " “ 你 累 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +Tom is speech was good . 汤姆 的 演讲 很 精彩 . +I will be seeing Mary this afternoon . 我 今天下午 會 看到 瑪麗 . +I am really looking forward to summer vacation . 我 真的 非常 期待 暑假 . +Would you please show me that skirt ? 请 你 给 我 看 一下 这 条 裙子 好 吗 ? +Nothing is missing . 什么 也 没少 . +His explanation is not clear . 他 的 說明 並 不 清楚 . +That is right . 对 ! +You want to be excused from doing that , do not you ? 你 想 通过 做 那件事 而 得到 原谅 是 吗 ? +Who do you think I am ? 你 把 我 当 什么 啦 ? +Do you have children ? 你 有 孩子 嗎 ? +Please have someone else do it . 請 讓 別人 去 做 . +I go to school here , too . 我 也 在 这儿 上学 . +The days are getting longer and longer . 白天 越來越 長 了 . +How many apples do you want ? 你 要 幾個 蘋果 ? +He is always running short of cash . 他 總是 缺錢 . +Tom denied having stolen the money . Tom 否认 偷 了 钱 . +Help me lift the package . 帮 我 抬起 这 包裹 . +I heard someone come in . 我 聽到 有人 進來 了 . +I am concerned about Tom . 我 在 為 湯姆 擔心 . +The two young girls smiled happily . 兩個 年輕 的 女孩 高興 地 微笑 了 . +Tom did not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +He is good at football . 他 擅長 足球 . +Tom drank heavily . 湯姆 喝 得 很多 . +I had my brother repair my bicycle . 我 讓 我 的 哥哥 修理 我 的 腳踏車 . +She was very happy with my gift . 她 對 於 我 送 的 禮物 感到 很 開心 . +I was watching television when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +Long time , no see . 好久 不見 . +They are trying to keep costs down . 他们 正 努力 降低成本 . +He is really angry . 他 非常 生气 . +Step inside . 进来 . +Pass me the salt , please . 请 把 盐 递给 我 . +English is a hard language to learn . 英語 是 一種 難學 的 語言 . +My watch is very accurate . 我 的 手 錶 很 準 . +He is likely to be late again . 他 可能 又 遲 到 了 . +Everyone except me was invited . 除了 我 , 每个 人 都 受到 了 邀请 . +I can not explain it either . 我 也 無法 解釋 . +I like summer better than winter . 我 喜歡 夏天 勝 於 冬天 . +He used to get up early . 他 以前 很早 起床 . +I do not understand . 我 不 懂 . +Do not put anything in the bag . 不要 把 所有 东西 都 放到 包 里面 . +We gather here once a week . 我们 每周 在 这儿 聚 一次 . +He is old enough to travel alone . 他 够 大 了 , 可以 独自 旅行 了 . +My room is a pigsty . 我 房间 是 个 猪 窝 . +When to start is the main problem . 什么 时候 开始 是 主要 问题 . +The weather report says we will get three inches of snow . 天气预报 说 会 下 三 英寸 雪 . +Someone must have stolen your watch . 一定 是 有人 偷 了 你 的 手 錶 . +I owe it you that I am still alive . 多亏 了 你 , 我 还 活着 . +Mathematics is basic to all sciences . 數學 是 所有 科學 的 基礎 . +How many people work there ? 有 多少 人 在 那里 工作 ? +You always work hard . 你 一直 努力 工作 . +I want to become a teacher of Japanese . 我 想 成为 日语 老师 . +Water is a liquid . 水 是 液体 . +I do not often do that by myself . 我 不 經常 自己 去 做 . +I smell something here . 我 在 这里 闻见 了 什么 . +My ear was bleeding this morning . 今天 早上 我 耳朵 流血 了 . +I will not see him any more . 我 不会 再见 他 了 . +I ran into my aunt by chance in Europe . 我 在 欧洲 偶遇 了 姑母 . +She really does like animals . 她 确实 喜欢 动物 . +He is the father of two children . 他 是 兩個 孩子 的 父親 . +I am Tom is assistant . 我 是 湯姆 的 助手 . +Do not leave ! 別 走 ! +Grandmother sent us a box of apples . 奶奶 送 了 我們 一箱 蘋果 . +I was late for the appointment . 我 約 會 遲 到 了 . +Industry as we know it today did not exist in those days . 我们 今天 所 认识 的 工业 在 那个 时代 不 存在 . +I got a good grade in English . 我 的 英文 成績 很 好 . +I am fed up with eating in restaurants . 我 受夠 了 在 餐館 吃 飯 . +Fasten your seat belt . 系上 您 的 安全带 . +You have got a great memory . 你 的 記憶力 很 好 . +Let is meet at the station at eight tomorrow morning . 明早 八点 车站 见 . +I have always kept my promises . 我 一直 遵守 我 的 諾言 . +We have many goals . 我們 有 許多 目標 . +She likes music very much . 她 非常 喜欢 音乐 . +You can stay here if you like . 你 要是 願意 就 留在 這裡 . +We are having a party this evening . 我們 今天 晚上 將 舉行 派 對 . +Were you happy ? 你 开心 吗 ? +How long does it take to walk to the station ? 走 着 去 火车站 要 多久 ? +Tom does not have any shoes on . 汤姆 没 穿鞋 . +Let is clear up this problem . 让 我们 来 澄清 一下 这个 问题 . +Do all of you speak French ? 你們 都 講 法語 嗎 ? +You should read many books when you are young . 应该 趁 年轻 多 读点 书 . +She does not live there any more . 她 不再 住 在 那裡 了 . +What made her do that ? 为什么 她 要 做 这种 事情 呢 ? +I am not disagreeing with you . 我 没有 反对 你 . +Tom is trying to figure out how to do that now . 汤姆 现在 正在 想 办法 去 做 那件事 +This dam supplies us with water and electricity . 这个 水坝 给 我们 提供 水 和 电 . +This is a very tall tree . 这 是 棵 很高 的 树 . +Kyoto is not as large as Osaka . 京都 不如 大阪 大 . +Our garden was full of weeds . 我们 的 花园 布满 了 杂草 . +All of them are good teachers . 他们 都 是 好 老师 . +Of course . 当然 了 . +What do you do before breakfast ? 早餐 前 你 做 什麼 ? +I noticed that Tom was smiling . 我 注意 到 汤姆 在 笑 . +Will you have time to have lunch with me ? 你 有 时间 跟 我 吃 午饭 吗 ? +You are selling him short . 你 別 小看 了 他 . +He spent the morning reading a book . 他 整個 上午 都 在 看書 . +I like football . 我 喜歡 足球 . +My neighbor renovated her house completely . 我 的 鄰居 把 她 的 屋子 翻新 了 一遍 . +Mary can dance well . 瑪麗舞 跳 得 很 好 . +We play football every Saturday . 我們 每個 星期六 踢足球 . +Tom took Mary to the hospital on the back of his motorcycle . 汤姆 把 玛丽 放到 他 的 摩托车 背上 送到 医院 . +Be nice to others . 对 他人 要 友善 . +I did not even think of it . 我 連 想都不想 . +I bought two tickets for a concert . 我 买 了 两张 音乐会 的 票 . +I would like to live in New York . 我 想住 在 紐約 . +The law is full of ambiguities . 法律 有 很多 不 明确 的 地方 . +What languages do you speak ? 你 會 說 什麼 語言 ? +Why did you come here this morning ? 今天 早上 你 為 什麼 來 這裡 ? +A bird can fly . 鸟会 飞 . +How long have you been working here ? 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +He told his son an interesting story . 他 給 他 兒子 講 了 一個 有趣 的 故事 . +Do you know how to do that ? 你 知道 怎么 做 吗 ? +Our school library is small , but new . 我们 学校 的 图书馆 很小 , 但是 是 新 的 . +It will rain soon . 天 快要 下雨 了 . +Tom has known Mary since childhood . 汤姆 从小 就 认识 玛丽 了 . +He wants to go to America . 他 想 去 美國 . +You are drinking out of my cup . 你 正在 把 我 杯子 里 的 东西 喝掉 . +The Rhine runs between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +Take your time . 你 可以 慢慢来 . +This is my page on Facebook . 這 是 我 的 Facebook 頁面 . +The average height of girls in this class is over 155 centimeters . 这个 班 的 女生 平均 身高 超过 了 155 公分 . +He erased his speech from the tape . 他 把 他 的 那段 话 从 磁带 里 删除 了 . +You do have choices . 你 有 选择 . +She is busy preparing supper now . 她 現在 正忙 著 準備 晚飯 . +Will you be there ? 你 会 在 那里 吗 ? +I can not believe anyone anymore . 我 再也 无法 相信 任何人 了 . +She will be back within a week . 她 一週 之內 會 回來 . +It is too early to get up . 時間 還 早 不用 起床 . +What is the daily fee ? 每天 费用 多少 ? +It is very hot in the summer in Japan . 日本 的 夏天 很 热 . +Call me at six tomorrow morning . 明天 早上 6 点 给 我 打电话 . +Please do not cry . 请 你 不要 哭 . +He asked his friends for help . 他 尋求 他 的 朋友 的 幫助 . +I cheered myself up by listening to music . 我 藉由 聽 音樂 來 鼓舞 我 自己 . +Do you still want to talk to me ? 你 还 想 跟 我 谈 吗 ? +Tom probably knows how to get to Mary is house . 湯姆 大概 知道 要 怎麼 去 瑪莉 家 吧 . +Fluency in English is a must . 流利 的 英語 是 必須 的 . +I do not like children . 我 不 喜欢 小孩 . +She was wearing pumps . 她 穿著 舞鞋 . +In a few minutes we will be landing at New Tokyo International Airport . 我们 将 于 几分钟 内 降落 在 新 东京国际 机场 . +I am taking an exam in January . 我 一月份 要 参加考试 . +Software is constantly evolving . 软件 正在 不断 进化 . +Which is your book ? 哪 本 是 您 的 書 ? +Follow him . 跟著 他 走 . +My hand was burned . 我 的 手 烧伤 了 . +Tom died in a traffic accident . 湯姆死 於 交通事故 . +Have you found your ticket yet ? 你 找到 你 的 票 了 吗 ? +The animals died one after another . 動物 一個 接 一個 的 死亡 . +They do not seem to be Americans . 他們 似乎 不是 美國 人 . +Do not worry about such a thing . 不要 擔心 這樣 的 事情 . +I am three years younger than you . 我 比 你 小 三歲 . +My daughter wants a kitten . 我 女儿 想要 一只 小猫 . +She married her classmate . 她 跟 她 的 同學 結婚 了 . +Could I have a pillow and blanket ? 給 我 一個 枕頭 和 毛毯 好 嗎 ? +Where is the police station ? 警察局 在 哪里 ? +Where is the hammer ? 锤子 在 哪里 ? +Is this your pen ? 這 是 你 的 筆 嗎 ? +I made an abstract of a book . 我 為 一本 書 寫 了 內容 提要 . +They sell candy . 他們 賣 糖果 . +She was only frightened , not injured . 她 只是 被 嚇到 了 並 沒有 受傷 . +You made me laugh . 我 被 你 逗乐 了 . +I take the train to work every day . 我 每天 搭 火車 上班 . +My fingers are so numb with cold that I can not play the piano . 我 的 手指 冻僵 了 , 以至于 无法 弹钢琴 了 . +Tom will not even know what you did until it is over . 汤姆 不到 最后 不会 知道 你 做 了 什么 . +I arrived later than usual . 我 比 平常 晚 到 . +Can you find it ? 你 能 找到 它 嗎 ? +I went camping with my family . 我 和 家人 去 露營 . +Needless to say , fundamental human rights should be respected . 無須 多 言 , 基本 人權 應當 被 尊重 . +I was out of town on vacation . 我 出 城 度假 了 . +There is always someone talking . 總是 會 有人 談論 . +Please fill out this form first . 請 先 填寫 這 張 表格 . +This smells great ! What are you cooking ? 聞 起來 好 香 喔 . 你 在 煮 什麼 ? +He went out in spite of the rain . 尽管 下着雨 , 他 还是 出去 了 . +We are special . 我们 是 特别 的 . +Tell her to come at noon . 让 她 中午 过来 . +I will send a letter to my mother . 我会 给 我 的 母亲 寄 封信 . +I looked for him in the supermarket . 我 在 超級 市場 裡 找 他 . +How did you know all that ? 你 怎麼 全都 知道 ? +They buried him in the graveyard by the church . 他們 把 他 埋葬 在 教堂 旁 的 墓園 . +I wish I could live near your house . 我 希望 住 在 你家 附近 . +Let is fly a kite . 讓 我們 放 風箏 . +I got up at seven . 我 7 点 起床 了 . +He was born in Africa . 他 出生 在 非洲 . +How do you like your eggs done ? 您 要 什麼樣 的 蛋 ? +Why do you even care about this ? 你 怎麼 還 關心 這個 ? +I am feeling blue today . 我 今天 的 心情 不好 . +Is the bank open ? 銀行 開著 嗎 ? +When he shouted , the veins in his neck stood out clearly . 当 他 咆哮 时 , 他 脖子 上 青筋 暴起 . +Did you phone Tom ? 给 汤姆 打 过 电话 了 吗 ? +Tom told me where he lived . 湯姆 告訴 我 他 住 在 哪裡 . +It is exactly as you say it is . 它 跟 你 說 的 完全 一樣 . +Where do you suppose you will spend your vacation ? 你 认为 你 会 到 哪儿 度假 ? +The vacation is over now . 现在 假期 结束 了 . +The first attack missed the target . 第一次 攻击 错过 了 目标 . +Do you have any brothers ? 你 有 兄弟 吗 ? +Every dog has his day . 凡人 皆 有 得意 时 . +That is the reason I bought this book . 那 是 我 買 這 本書 的 原因 . +You took the wrong key . 你 拿 错 钥匙 了 . +Tom put a lot of honey on his toast . 汤姆 往 他 的 吐司 上放 了 许多 蜂蜜 . +Today is the 3rd . 今天 三號 . +How did you spend your winter vacation ? 你 的 寒假 怎么 过 的 ? +I asked him about the accident . 我 問 他 關 於 這個 意外 的 事 . +You are very brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +She gave the door a gentle push . 她 輕輕地 推 了 門 . +I have been busy repairing things . 我 一直 在 忙 着 修 东西 . +My father bought me a new bicycle . 父親 買 了 一輛 新 自行 車 給 我 . +I think this book is worth reading . 我 覺得 這 本書 值得 一 讀 . +I really have to go . 我 真的 得 走 了 . +I generally walk to school . 我 通常 走 去 学校 . +I like walking at night . 我 喜歡 在 夜晚 走路 . +After walking for an hour , we stopped to take a rest . 走 了 一個 小 時 後 , 我們 停下 來 休息 . +I got it free . 我 是 免費 得到 的 . +I told you never to come here again . 我 告诉 过 你 不要 再 来 这里 了 . +English is useful in diplomacy and tourism . 英語 在 外交 和 旅遊 業 方面 很 有用 . +I respect Tom . 我 尊敬 湯姆 . +I know that it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +My father has been to Australia twice . 我 父親 曾經 去過 澳洲 兩次 . +I am determined to be a scientist . 我 決心 要成 為 一名 科學家 . +Nobody should be worried . 沒人應 該 擔心 . +I am having some problems compiling this software . 我 编译 这个 程序 有些 困难 . +It is more polite to say thin than skinny . 说 苗条 比 说 瘦 更 有 礼貌 . +There is a long wait between trains . 在 火车 的 间隔 中 有 漫长 的 等待 . +I have no idea of what is going on in there . 我 不 清楚 這裡 發生 了 什麼 事 ? +He was an excellent scientist , and what is more , was a great poet . 他 是 一位 優秀 的 科學家 , 更是 一位 偉大 的 詩人 . +I have never been to New York , and my sister has not , either . 我 从没 去过 纽约 , 我 妹妹 也 没有 . +I gave careful consideration to the problem . 我 仔細 地 考慮 了 這個 問題 . +I was watching TV when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +When you pose a question , you expect an answer . 當 你 提出 一個 問題 , 你 期望 得到 答案 . +The boy lay listening to the radio . 男孩 躺 着 听 收音机 . +Please eat some cake . 请吃 点 蛋糕 . +Basketball is a lot of fun . 篮球 可 真是 有意思 . +A cup of tea , please . 请 给 我 一杯 茶 . +You might not like this beer at first . It is an acquired taste . 剛 開始 的 時候 你 可能 不 會 喜歡 這個 啤酒 . 這 是 需要 多次 品嚐 去 習慣 它 的 口味 . +Tom will probably be there . 湯姆 可能 會 去 那裡 . +He wrote the report . 他 寫 了 這份 報告 . +Tom has a 13 @-@ year @-@ old daughter . Tom 有個 十三 歲 的 女兒 . +It is a good idea . 这 是 个 好 主意 . +We had a late lunch at two . 我們 在 兩點鐘 很 晚 才 吃 午餐 . +This is a wooden table . 这 是 张 木桌 . +Who does the cooking in your home ? 你 家里 谁 做饭 ? +Can you pass me the milk ? 可以 把 牛奶 递给 我 吗 ? +He heard a shout . 他 聽到 了 叫 聲 . +I stayed up late last night . 我 昨晚 睡得 晚 . +I have not yet finished my homework . 我 还 没 做完作业 . +I usually get up at 6 : 00 . 我 一般 六点 起床 . +I wish they would stop fighting . 我 希望 他們 會 停止 戰鬥 . +They looked as if they would cry . 他們 看 起來 好像 要 哭 了 . +Please turn off the TV . 請 把 電視 關掉 . +Tom studies hard . 汤姆 努力学习 . +I can not stand it . 我 不能 忍受 . +Tom is in Boston on business . 汤姆 因为 工作 现在 在 波士顿 . +I am not going to give up . 我 不会 放弃 的 . +Tom did not have time to finish his report . 湯姆 沒 時間 完成 報告 . +Release him . 放开 他 . +He went to America to study medicine . 他 去 美国 学医 了 . +Tom is a Boston native . 湯姆 是 波士 頓 本地人 . +Do not stay in the sun too long . 不要 在 陽光 下 逗留 太久 . +I overslept because my alarm did not go off . 因为 闹铃 没有 响 , 所以 我 继续 睡下去 了 . +Do not let children play in the road . 别 让 孩子 们 在 马路 中间 嬉戏 . +I do not want any bananas at all . 我 一點 也 不要 香蕉 . +Check Tom is pulse again . 再 检查一下 汤姆 的 脉搏 . +I will never tell anyone where I have hidden the treasure . 我 不 會 告訴 任何人 我 藏宝 的 地方 . +He absconded with the money . 他 携款 潜逃 . +They are arriving here soon from Hong Kong . 他们 就快 从 香港 抵达 了 . +You forgot to turn off the light . 他 忘 了 關燈 . +Who were you talking to ? 你 跟 誰 說 話 呢 ? +Would you like tea or coffee ? 您 想要 茶 还是 咖啡 ? +I do not speak Japanese . 我 不 說 日 語 . +An eye for an eye , a tooth for a tooth . 以 眼 還 眼 , 以 牙 還 牙 . +I am grateful for that . 我 对 那事 很 是 感激 . +Will you excuse us for a moment ? 你 会 暂时 原谅 我们 吗 ? +We talked over the phone . 我們 電話 裡 說 . +The earthworm wriggled when I touched it . 我 碰 蚯蚓 的 时候 , 它 扭动 起来 . +I am playing volleyball now . 我 现在 在 打 排球 . +Sorry , that was none of my business . 對 不起 , 那 不關 我 的 事 . +Tom told me that he will not come to school tomorrow . 汤姆 告诉 我 他 明天 不 来 上学 . +I do not meet him so often . 我 不常 見到 他 . +The well ran dry . 這 口 井 乾 涸了 . +That is the village I was born in . 这 就是 我 出生 的 村庄 . +The girl resembles her mother . 這個 女孩 酷似 她 的 母親 . +She is giving a party tonight . 她 今晚 舉行 派 對 . +This book is really old . 這 本書 真的 很舊 . +Tell me what happened . 告訴 我 發生 了 什麼 事 . +She is not afraid of death . 她 不怕死 . +Everyone , say cheese . 所有人 , 都 请 说 cheese . +He did not study at all . 他 根本 就 没有 学习 . +Please pull over . 请 把 车 停下来 . +I need a good pair of sunglasses . 我 需要 一副 好 的 太陽 眼鏡 . +The beach is an ideal place for children to play . 海滩 是 一个 供 孩子 们 玩乐 的 理想 场所 . +She is sitting on the bench . 她 坐在 長椅 上 . +Are you all ready ? 你們 都 準備 好 了 嗎 ? +Can I ask you some questions ? 我 能 問 你們 一些 問題 嗎 ? +He is unfit to be a teacher . 他 不 适合 当 老师 . +I expect your help . 我 期待 你 的 幫助 . +Is this really worth it ? 这样 真的 值得 吗 ? +The bathtub was filled with hot water and flower petals . 浴缸 裡 滿 是 熱水 和 花瓣 . +I am tall . 我 个子 高 . +You are responsible for the result . 你 要 对 结果 负责 . +I had no choice but to accept the offer . 除了 接受 报价 , 我 别无选择 . +This is my bag . 那 是 我 的 包 . +I believe Tom is right . 我 相信 湯姆 是 對 的 . +My brother can drive a car . 我 哥哥 會 開車 . +I did not mean to wake you . 我 沒 打算 叫醒 你 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +I love her so much that I can not leave her . 我 如此 地 愛 她 所以 我 無法 離開 她 . +I like oranges better than apples . 我 喜歡 橘子 勝 過 蘋果 . +There was not a soul in sight . 一個 人影 也 看不到 . +It was my duty to do that . 做 那事 是 我 的 责任 . +He had a book on physics published . 他 有 一本 關於 物理 學 的 書 被 出版 了 . +That is not important , is it ? 那 不 重要 , 不是 么 ? +I am not sure what I was thinking . 我 不 确定 当时 我 正在 想 什么 . +I will give you a bicycle for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +I waste a lot of time daydreaming . 我 浪費 了 很多 時間 作 白日 夢 . +Step aside . 让开 . +I am not really sure what Tom meant . 我 不 清楚 湯姆 是 甚麼 意思 . +My aunt made me a new skirt . 我 姑姑 做 了 一條 新 裙子 給 我 . +I was in the garden all afternoon . 我 整个 下午 都 在 花园里 . +Tom freed the bird . Tom 將鳥 放走 . +Tom was just as excited as Mary . 汤姆 就 和玛丽 一样 兴奋 . +Several cottages have been isolated by the flood water . 好几间 小屋 被 洪水 孤立 起来 了 . +I have never thought of that . 我 從來 沒有 想到 這 一點 . +I can not live without TV . 没有 电视 , 我 无法 生活 . +The problem is that solar energy costs too much . 問題 是 , 太陽 能 太 貴 了 . +She came back an hour later . 一个 小时 后 , 她 返回 了 . +All I want now is a little sleep . 我 现在 只 想 睡 点 觉 . +It is obvious . 它 是 明顯 的 . +Kobe is famous as a port city . 科比 是 一個 著名 的 港口城市 . +I could not control my anger . 我 不能 控制 我 的 愤怒 . +Long skirts are out of fashion now . 現在 長裙 過時 了 . +That requires careful consideration . 這 需要 慎重 考慮 . +I will take care of it . 我 會 關照 它 的 . +Your time is running out . 你 的 时间 快用 完 了 . +What would you like for dessert ? 你 要 什麼 甜點 ? +I do not wash my hair in the morning . 我 早上 不 洗头 . +Please take more care in the future . 以后 请 注意 点 . +He is two years older than you . 他 比 你 大 兩歲 . +My mother was an alcoholic . 我 母亲 是 个 酒鬼 . +They are plotting to kill the king . 他們 正密 謀要 殺害 國王 . +Tom has always been a bachelor . 汤姆 一直 都 是 单身汉 . +It is been snowing all night . 雪 下 了 一整夜 . +How annoying ! 真 烦人 . +If you stay at a big hotel , you can use their swimming pool . 若 你 住 到 的 是 大 的 旅館 , 就 能 使用 他們 的 游泳池 . +Do you know why it is happening ? 你 知道 为什么 它 正在 发生 吗 ? +She was listening to music . 她 听 着 音乐 . +She went to Italy to learn Italian . 她 到 意大利 學習 意大利 語 . +Do you have children already ? 你 已經 有 孩子 了 嗎 ? +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +I broke the lock opening the door . 我 开门 的 时候 弄坏了 锁 . +What were you doing at that time ? 當時 你 在 做 什麼 ? +She did not visit me on Sunday but on Monday . 她 沒有 在 星期天 來 找 我 , 而是 星期一 . +I am going to drop in on her next week . 下禮 拜 我 要 去 拜訪 她 一下 . +Who is your teacher ? 谁 是 你 老师 ? +Tomorrow is going to be a big day . 明天 是 个 大 日子 . +Wake me up at seven . 七点 叫醒 我 . +Your plan sounds great . 你 的 計劃 聽 起來 很 不錯 . +I am afraid I can not help you . You must ask someone else . 我 担心 可能 帮不了 你 , 你 需要 找 其他人 帮忙 . +We talked about a variety of topics . 我們 談 了 各種 話題 . +Come whenever you want to . 什么 时候 想来 就 过来 吧 . +Give me something to do . 给 我 点 事 做 . +Not a star was to be seen . 沒 看到 任何 一顆 星星 . +It is up to you . 由 你 來 決定 . +Where did it come from ? 它 从 哪里 来 ? +Classes begin next week . 课程 下周 开始 . +Christmas is a special holiday . 聖誕節 是 一個 特別 的 節日 . +The dog growled at a little boy . 這 隻 狗 對 著 一 個 小男孩 咆哮 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 碗碟 . +Mt . Fuji can be seen from here . 從 這裡 可以 看到 富士山 . +There used to be a lot of frogs in this pond . 以前 在 這個 池塘 裡 有 許多 青蛙 . +His letter makes me uneasy . 他 的 来信 让 我 不安 . +I gave Mary a book . 我 給 了 瑪麗 一本 書 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +If her nose were a little shorter , she would be quite pretty . 若 她 的 姿態 能 再 低 一點 就 更 完美 了 . +Is your family doing well ? 你 的 家人 好 么 ? +She tried to commit suicide . 她 企圖 自殺 . +I had hardly left home when it began to rain heavily . 當雨 開始 下得 很大 的 時候 , 我 幾乎 不能 出門 了 . +The sun was shining , yet it was cold . 虽然 有 阳光 照射 , 但 还是 很 冷 . +Tom bought some flowers for Mary . 湯姆 給 瑪麗 帶 了 些 花 . +She will love her husband forever . 她 會 永遠 愛 她 的 丈夫 . +The only sound to be heard was the ticking of the clock . 唯一 能 听到 的 声音 是 钟 的 滴答声 . +I can not focus on two things at the same time . 我 不能 同時 注意 两件事 . +Tom lost his only son in a car accident . 汤姆 在 一场 车祸 中 失去 了 他 的 独子 . +He placed emphasis on the importance of education . 他 强调 了 教育 的 重要性 . +This book is full of mistakes . 這 本書 充滿 了 錯誤 . +Here we are ! 我們 到 了 ! +Everyone is waiting for Tom . 每個 人 都 在 等 湯姆 . +That bag is mine . 那 是 我 的 包 . +What do you like to do in your free time ? 你 空闲 时间 喜欢 做 什么 ? +You have to go to the hospital . 你 必須 去 醫院 . +I want to stay in a hotel near the airport . 我 想住 在 機場 附近 的 旅館 裡 . +That is our house . 那 是 我們 的 房子 . +I know that feeling . 我 知道 那種 感覺 . +The thunder scared the children . 雷聲 嚇到 孩子 了 . +Which book is yours ? 哪 本書 是 您 的 ? +Sir , that CD is available only by special order . 先生 , 那 盘 CD 需要 预定 才 有 . +A drunk driver was responsible for the car accident . 喝醉 的 驾驶员 对 车祸 有 责任 . +I am not a junior high school student . 我 不是 個 初中生 . +Thank you for coming to meet me . 謝謝 你 來 跟 我 見 面 . +Everything went black . 一切 都 變成 了 黑色 . +Tom decided to stay with Mary . 汤姆 决定 陪 玛丽 在 一起 . +May I open my eyes now ? 我 現在 能 睜 眼 嗎 ? +Tom took over after I left . 我 走 了 后 汤姆 接手 了 . +Cool down . 冷静 点 . +What will tomorrow is weather be like ? 明天 天氣 怎麼樣 ? +You are working too hard . Take it easy for a while . 你 工作 太 勤奋 了 . 休息 一会 吧 . +Tom is able to come to our party tomorrow . 汤姆 明天 能 来 我们 的 聚会 . +Shall we walk ? 我们 该 步行 吗 ? +It is not a cat . It is a dog . 它 不是 猫 . 它 是 狗 . +I do not know for certain when he will come . 我 不 知道 他 来 这里 的 确切 时间 . +I am sad without you . 沒有 你 我 很 悲傷 . +Was there anyone in the room ? 房间 里 有人 吗 ? +Are there problems at home ? 在家 裡 有 問題 嗎 ? +There was no one there besides me . 那儿 除了 我 , 一个 人 都 没有 . +Lots of companies have implemented an eight @-@ hour working day . 很多 公司 實行 8 小 時 工作制 . +That was the first time I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I hope you will soon get well . 我 希望 您 快 就 会 好 起来 . +I see a book . 我 看到 一本 書 . +I use this . 我 使用 这个 . +What is this ? 這 是 什麼 啊 ? +She gave out a sigh of relief . 她 鬆 了 一口 氣 . +I am sure you will never regret it . 我 確定 你 永不 後 悔 . +Put the chair in front of the desk . 把 椅子 放在 桌子 前面 . +His sad story touched my heart . 他 悲伤 的 故事 触动 了 我 的 心 . +If he is fluent in English , I will hire him . 如果 他 說 得 一口 流利 的 英文 , 我 就 請 他 為 我 工作 . +This sofa takes up too much space . 這 張沙 發占 了 太 多 空間 . +Everybody knows that he is honest . 大家 都 知道 他 是 誠實 的 . +He worked in a big city hospital . 他 在 一間 很大 的 市立 醫院 工作 . +I love nature . 我 愛 大自然 . +How was your trip ? 你 的 旅行 怎么样 ? +He is familiar with Japanese culture . 他 熟悉 日本 文化 . +Is she Japanese ? 她 是 日本 人 嗎 ? +It will definitely rain . 绝对 将要 下雨 . +This ticket is good for three days . 这 张 票 三日 有效 . +I will be at the meeting . 我会 出席会议 的 . +Get into your car . 进 你 的 车里 . +I know that money is not everything . 我 知道 金钱 不 代表 一切 . +Where do you want to go today ? 你 今天 想 去 哪儿 呀 ? +Wood floats . 木头 会 漂浮 . +This clock is not working . 这 表不走 了 . +My mother likes tea very much . 我 媽媽 很 喜歡 茶 . +The students all laughed . 學生 都 笑 了 . +I told you to stop , did not I ? 我 告訴 了 你 停下 來 , 不是 嗎 ? +Although I was tired , I did what I was able to do . 雖然 我 很 累 , 但是 我 已經 做 了 我 能 做 的 了 . +Do not complain . You have to go . 別 抱怨 了 . 你 必須 去 . +I found out where she was . 我 弄清楚 她 在 哪儿 了 . +I will ask him tomorrow . 明天 我会 问 他 的 . +What is the last thing you remember ? 你 能 记 起来 的 最后 一件 事 是 什么 ? +Would you do me a favor ? 你 能 幫 我 一個 忙 嗎 ? +Come on , trust me . 来 吧 , 相信 我 . +Prices depend on supply and demand . 價格 取決 於 供給 和 需求 . +Where is your house ? 你們 家 在 哪 ? +I love you more than anyone else . 我爱你 胜过 其他 任何 一个 人 . +I bought her a new car . 我 给 她 买 了 辆 新车 . +We got up at dawn to avoid a traffic jam . 我们 黎明 时 起床 以 避开 交通堵塞 . +He is not an idiot . 他 不是 傻 的 . +I am listening to the radio . 我 在 聽 收音 機 . +Tom and Mary have been here for three hours . 湯姆 和 瑪麗 已經 在 這裡 待 了 三個 小 時 . +Where can I go to get a map of Europe ? 去 哪里 可以 买 到 欧洲 的 地图 ? +She died on a cold night in December . 她 在 一个 寒冷 的 十二月 晚上 死 了 . +I will not know until I talk to Tom . 我 不 跟 湯姆 說 就 不 知道 . +I really appreciate what you have done . 我 真的 很 感激 你 所 做 的 一切 . +Where does it hurt ? 哪裡 痛 ? +This is where Tom wants to live . 这 就是 汤姆 想住 的 地方 . +Tom is married to a Canadian named Mary . 汤姆 和 一个 叫 玛丽 的 加拿大人 结婚 了 . +He entered my room without permission . 他 未經 允許 進 了 我 房間 . +This is my notebook . 這 本 是 我 的 筆記 本 . +I hope that Mary passes the examination . 我 希望 瑪麗 通過 考試 . +Would you mind lending me your car ? 你 介意 把 你 的 車 借 給 我 嗎 ? +Prices are double what they were ten years ago . 价钱 是 10 年前 的 2 倍 . +It is easy for a monkey to climb a tree . 对 猴子 来说 , 爬树 很 容易 . +He fell down on the floor . 他 摔倒 在 地 . +I do not go to school by bus . 我 不 乘 公交 去 学校 . +Let is wait till he comes back . 等到 他 回来 吧 . +I was waiting for a taxi . 我 等 着 出租车 . +Do you know him ? 你 认识 他 吗 ? +I always take a bath before going to bed . 我 睡觉 前 总要 洗 个 澡 . +There is a kite flying above the tree . 有 一只 风筝 在 树上 . +He sometimes makes dinner for us . 他 有 時 煮 晚 飯 給 我們 吃 . +Tom wondered why Mary was crying . 汤姆 奇怪 为什么 玛丽 哭 . +You win . 算你狠 . +Give me an orange . 給 我 一個 橙子 . +Tom is from Australia and Mary is from New Zealand . 汤姆 来自 澳大利亚 , 玛丽 来自 新西兰 . +How do you heat the house ? 您 怎么 让 屋子 暖 起来 ? +She kept working . 她 不停 地 工作 . +You do not have to work on Sundays . 你 週日 不必 工作 . +God created the heaven and the earth . 上帝 創造 了 天地 . +I want a boat . 我 想要 一艘船 . +Nobody asked . 没 人 问 过 . +We ought to obey the law . 我们 必须 遵纪守法 . +Can you really not swim ? 你 真的 不 會 游泳 嗎 ? +It took me more than two hours to translate a few pages of English . 翻译 几页 英文 花 了 我 2 个 多 小时 . +How is the weather ? 天氣 怎樣 ? +The law is quite clear . 法律 很 清楚 . +You had better go to the dentist is . 你 最好 去 看 牙 醫 . +Who will provide capital for the venture ? 谁 来 为 风险投资 提供 资金 ? +Tom has never been in prison . 湯姆 從 沒進 過 監獄 . +Let me see . 让 我 想一想 . +Why can not Tom come to us ? 為 甚麼 湯姆 不能 來 我們 這裡 ? +The toilet does not flush properly . 厕所 冲水 不 正常 . +Maybe I should go help Tom . 或許 我 該 去 幫 湯姆 . +They can not see me . 他們 看 不 見 我 . +There is too much salt in this soup . 这 汤 里 盐 放多 了 . +What exactly does Tom do ? 汤姆 究竟 在 做 什么 ? +It would appear that you are wrong . 你 似乎 错 了 . +Why do not you sit down and relax ? 你 為 什麼 不 坐下 來 放 鬆 一下 . +You have nice skin . 你 的 皮膚 真好 . +He failed in his attempt to swim across the river . 他 试图 游 过河 , 但是 失败 了 . +I go to work every day . 我 每天 去 上班 . +Mary came in . 瑪麗 進來 了 . +The police arrested the suspect . 警方 逮捕 了 嫌疑人 . +There are two zeros in the number " 2010 . " 2010 这个 数字 里 有 两个 零 . +I forgot to ask him . 我 忘 了 問 他 . +I like to travel alone . 我 喜欢 独自 旅行 . +Why do you want to leave today ? 你们 为什么 想 今天 走 ? +If you have a question , please raise your right hand . 如果 有 问题 , 请 举起 你 的 右手 . +Give me some milk , too . 也 給 我 一些 牛奶 . +I hate terrorist organizations . 我 痛恨 恐怖主义 组织 . +What were Tom and Mary doing here ? 湯姆 和 瑪麗 在 這裡 做 了 甚麼 ? +I bought a few eggs and a little milk . 我 买 了 几个 鸡蛋 和 一点 牛奶 . +He received quite a few letters this morning . 今天 早上 他 收到 好多 信 . +Tom no longer trusts Mary . 湯姆 不再 相信 瑪麗 了 . +Do not let Tom leave . 别 让 汤姆 走 了 . +We have two ears . 我們 有兩 隻 耳朵 . +Sometimes adults behave like children . 有时候 成人 表现 得 像 儿童 . +Let them learn from us . 让 他们 向 我们 学习 . +There was a cottage on the side of the hill . 山坡 上 有 一个 茅屋 . +It is time to go . 該 走 了 . +Today is one of my friends ' birthday . 今天 是 我 一个 朋友 的 生日 . +I want to get rid of it . 我 想 擺脫 它 . +At least tell me where you are going . 至少 告诉 我们 你 要 去 哪里 . +I was alone in the classroom . 我 独自 待 在 教室 里 . +Tom , you 'd better stay here . 湯姆 , 你 留在 這裡 比較 好 . +I guess that would be all right . 我 想 那 應 該 沒 關 係 的 . +Tom went back to his bedroom . 汤姆 回到 了 他 的 卧室 . +She was arrested by the police . 她 被 警方 逮捕 了 . +I am ready to do anything for you . 我 甘心 为 你 做 任何 事 . +She made the doll for me . 她 為 我 做 了 這個 娃娃 . +I was not drunk . 我 沒醉 . +The city has a large population . 这个 城市 人口众多 . +I hope Tom is not angry . 我 希望 湯姆 不生 氣 . +Do you feel any better today ? 你 今天 感覺 好多 了 嗎 ? +You are really useless . 你 真 沒用 . +Tom is not paying attention . 汤姆 在 开小差 . +I have a new red car . 我 有 一輛 新 的 紅色 汽車 . +My mother gets up early in the morning . 我 妈妈 早上 早起 . +That goes without saying . 不言而喻 . +We climbed Mt . Fuji last summer . 去年 夏天 我們 爬 了 富士山 . +I have never been abroad before . 我 以前 从没 去过 国外 . +We must follow the rules . 我们 必须 遵守规则 . +There is a military base near here . 這 附近 有 一個 軍事 基地 . +Is this bag yours or his ? 那个 包是 你 的 还是 他 的 ? +There are many different people in Europe . 在 欧洲 有 许多 不同 的 人 . +After a storm comes a calm . 否極 泰 來 . +Stand up . 起立 . +I give up . 我 放弃 . +Tom was in Boston last weekend . 湯姆 上 週末 在 波士 頓 . +Tom was there this morning . 汤姆 早上 去过 那里 . +Am I overreacting ? 我 反应 过度 了 吗 ? +Can I speak with the teacher ? 我 能 和 老师 说话 吗 ? +The man is naked . 那人 沒 穿衣服 . +I think what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +The sun is larger than the moon . 太陽比 月亮 大 . +It is really dark here . I can not see anything . 這裡 真的 很 暗 , 我什麼 都 看不到 . +When I hear that song , I remember my younger days . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +The book is here . 那本书 在 这里 . +We are sorry we are unable to accept your request . 很 抱歉 , 我们 不能 接受 你 的 要求 . +" Will you have some more coffee ? " " No , thanks . I have had enough . " “ 你 想 再来点 咖啡 吗 ? ” “ 不 , 谢谢 . 我 够 了 . ” +If you hurry you can still make the train . 如果 你 抓紧 , 你 还 能 赶上 火车 . +Tom is hiding a terrible secret . 汤姆 隐藏 着 一个 可怕 的 秘密 . +You can not drink seawater because it is too salty . 你 不能 喝 海水 , 因为 它 太 咸 了 . +I got there in time for the train . 我 准时 赶上 了 火车 . +Let is go to the hospital now . 我们 现在 就 去 医院 吧 . +Let is meet in front of the theater . 讓 我們 在 戲院 前面 碰面 . +The dog attacked the little boy . 這 隻 狗 攻 擊 了 這 個 小男孩 . +Spring is just around the corner . 春天 快 來 了 . +You have to be patient . 你 必須 有 耐心 . +What are you saying ? 你 在 說 什麼 ? +See how high you can jump . 看看 你 能 跳 多 高 . +What time does boarding begin ? 什麼 時候 開始 登機 ? +There must be some way to solve this . 一定 有 解決 的 辦法 . +I do not need to do anything . 我 什么 都 不用 做 . +I want to go wherever you are going . 我 想 去 你 要 去 的 地方 . +My grandmother lives by herself . 我 祖母 獨自 生活 . +She got to the station at seven . 她 七點鐘 到 車站 . +We are encouraged to use our imagination . 我們 被 鼓勵 使用 想像力 . +Please knock before entering . 进来 之前 请 敲门 . +France is to the south of England . 法國 在 英國 的 南邊 . +Put the book back where it was . 把 書 放回 它 原來 的 地方 . +She is older and wiser now . 她 現在 更加 年 長 也 更加 有 智慧 . +Please leave everything to me . 請 把 所有 的 東西 留給 我 . +Tom is coming to our school tomorrow . 湯姆 明天 會來 我們 的 學校 . +Tom tried to return the swimsuit for a larger size , but the clerk told him that was not allowed . 汤姆 试过 还 回 泳衣 来 换成 更 大 一号 的 , 但是 员工 告诉 他 那 是 不 被 允许 的 . +He was sitting between Mary and Tom . 他 坐在 瑪麗 和 湯姆 之間 . +Social customs vary from country to country . 国家 不同 , 习俗 各异 . +You should make good use of this opportunity . 你 要 好好 把握 這個 時機 . +You are working too hard . Take it easy for a while . 你 工作 得 太 辛苦 了 . 放 輕 鬆 一下 . +Stop , or I will shoot . 停止 , 不然 我 就 開槍 了 . +This book is small . 这 本书 小 . +He is used to getting up early . 他 習慣 早起 . +Do you have a soup bowl ? 你 有 碗 盛 湯 嗎 ? +It is a pity that you can not join us . 你 不能 和 我們 一起 來 真 可惜 . +She is weak by nature . 她 天生 体弱 . +Draw a circle . 画 一个圈 . +Trees do not grow on prairies . 樹 不 會 長 在 草原 上 . +Shouting at your computer will not help . 對 你 的 電腦 吼 一點 幫助 也 沒有 . +We watched the children play . 我们 看着 这 孩子 玩耍 . +We have to obey the rules . 我们 必须 遵守规则 . +His room was covered with dust . 他 的 房間 佈 滿 了 灰 塵 . +She has a round face . 她 有 张 圆脸 . +I only wanted to do some good . 我 只 想 做好事 . +The ticket is good for three days . 这 张 票 三日 有效 . +The house is haunted . 這 房子 鬧 鬼 . +Please conduct yourself with dignity . 请 自重 . +The assignment took me longer than I had expected . 我 用 了 比 我 预期 更 长 的 时间 来 完成 作业 . +How about you ? 那 你 呢 ? +I dislike big cities . 我 不 喜歡 大城市 . +I no longer love you . 我 不再 爱 你 了 . +We will have lived here for two years next April . 到 明年 四月 我们 住 在 这儿 就 满 两年 了 . +I do not know if you feel the same as I do . 我 不 知道 你 是否 和 我 有 一样 的 感觉 . +Tom is clean . 湯姆 是 干净 的 . +I want to eat ice cream . 我 想 吃 冰 淇 凌 . +He was in good spirits . 他 精神 很 好 . +He put his hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +We enjoyed swimming in the river . 我們 喜歡 在 河裡 游泳 . +I did not know that he was there . 我 不 知道 他 在 那裡 . +She showed him to his seat . 她 領 他 到 他 的 座位 上 . +I believed you . 我 信过 你 . +Tom is three years younger than Mary is . 汤姆 比 玛丽 小 三岁 . +That is really a great idea . 真是 个 好 主意 ! +Can I pay by credit card ? 我 可以 用 信用卡 付 帳 嗎 ? +Your tie looks good . 你 的 領帶 不錯 . +Her speech moved the audience . 她 的 演说 感动 了 听众 . +She looked after the children . 她 照顧 孩子 們 . +It was foolish of you to accept his offer . 你 真笨 去 接受 他 的 提議 . +Everyone who knew him admired him . 每 一個 認識 他 的 人 都 愛慕 他 . +I ate apples . 我 吃 了 蘋果 . +I hate when other people make me wait a long time . 我 讨厌 别人 让 我 等 很久 . +English is useful in commerce . 英語 在 商業 中 很 有用 . +Did you grade the tests ? 你 給 測驗 評分 了 嗎 ? +Are you busy ? 你 忙 嗎 ? +I saw a beautiful waterfall there . 我 看见 那儿 有个 很 美的 瀑布 . +Could you teach me how to play the piano ? 您 能 教 我 弹钢琴 吗 ? +I was brought up by my grandmother . 我 被 我 的 祖母 撫養 長大 . +Please keep this secret . 請 保守 這個 秘密 . +This is my new guitar . 这 是 我 的 新 吉他 . +Singing is her strong point . 唱歌 是 她 的 强项 . +This is a kind of watermelon . 这 是 一种 西瓜 . +Tom was puzzled by what Mary said . 汤姆 被 玛丽 说 的话 给 难倒 了 . +Are there any English magazines in this library ? 這間 圖書館 有 任何 英語 雜 誌 嗎 ? +Tom only wears a suit on special occasions . 湯姆 只 在 特殊 場 合穿 西裝 . +A great number of books are published every year . 每年 都 有 大量 新书 出版 . +He is studying . 他 在 讀書 . +I would like to buy a house . 我 想 买 套 房子 . +He asked the man to help him . 他 叫 那个 男人 帮助 他 . +Do you like school ? 你們 喜歡 學校 嗎 ? +I have numerous books on my bookshelf . 我 有 大量 的 书 在 我 的 书架上 . +I am staying with a friend . 我 和 一位 朋友 住在一起 . +Could you translate this sentence ? 你 能 翻译 这个 句子 吗 ? +Do you like Japanese food ? 你 喜歡 日本料理 嗎 ? +Is his pulse regular ? 他 的 脈搏 正常 嗎 ? +He was very old . 他 很 老 . +Dad gave me a book , and my little brother gave me a pen . 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 一枝 筆 . +I have to take the book back to the library today . 我 今天 必須 把 書 還 給 圖書館 . +He was paid 10,000 dollars . 有人 付给 他 10000 美元 . +Hunger is the best sauce . 对于 一个 饥饿 的 人 来说 , 任何 食物 都 是 美味 . +How would you like your eggs ? 请问 鸡蛋 要 什么 做法 ? +Married people sometimes wish they were single . 已婚 的 人 有 時候 希望 他們 是 單身 , . +It happens occasionally . 它 偶尔 会 发生 . +The old man sat down . 老人 坐 了 下来 . +Tom got angry at the children . 湯姆 對 孩子 們 生氣 . +Skating is one of my hobbies . 滑冰 是 我 的 嗜好 之一 . +Tom , what would you like to have for dinner ? 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +I am not guilty . 我 没有 罪 . +Tom did not take his shoes off . 汤姆 没 脱鞋 . +The police officer arrested the burglar . 警官 逮捕 了竊 賊 . +I love her . 我 愛 她 . +Tom probably wanted to go swimming . 湯姆 可能 想 去 游泳 . +Tom needs the money . 湯姆 需要 錢 . +Do what you think is best . 做 你 所 想 的 是 最好 的 . +Something is wrong with my typewriter . 我 的 打字 機 好像 有什麼 問題 . +Back in high school , I got up at 6 a.m. every morning . 以前 讀 高中 的 時候 ﹐ 我 每天 早上 六點 起床 . +Bears can climb trees . 熊会 爬树 . +He looks young . 他 看起来 很 年轻 . +Tom said he will ask Mary to do that . 湯姆 說 他 會 讓 瑪麗 去 做 . +Maybe he will be a good teacher . 也許 他 會 是 一個 很好 的 老師 . +Take the road on the right . 走 右邊 的 道路 . +Would you please wait for a few minutes ? 能 不能 请 你 等 几分钟 ? +Stars began to appear in the sky . 星星 開始 在 天空 中 出現 . +This story is true . 这个 故事 是 真的 . +How do you want your hair cut ? 你 想 怎麼 剪 你 的 頭 髮 ? +How about going to the movies ? 我们 去 电影院 怎么样 ? +I was bitten by a mosquito . 我 被 蚊子 叮 了 . +Maybe I am just a fool . 可能 我 就是 個 傻子 . +I am not writing a letter . 我 沒 在 寫信 . +You are blushing . 你 脸红 了 . +Did he look like a doctor ? 他 看 起來 像 個 醫生 嗎 ? +Hop in . 跳进来 . +My father goes jogging every morning . 我 父親 每天 早上 都 跑步 . +I work here . 我 在 這裡 工作 . +Will you drive me home ? 你 會 開車 送 我 回家 嗎 ? +What sports do you like ? 你 喜歡 什麼 運動 ? +Tom is car has been stolen . 汤姆 的 汽车 被 偷 了 . +He came from a tiny mountain town . 他 來 自 一個 小 山城 . +The word is unfamiliar to me . 我 对 这个 单词 不熟 . +Many attended his funeral . 很多 人 都 参加 了 他 的 葬礼 . +I wish to visit Egypt someday . 我 希望 有 一天 去 埃及 . +She took care of the children . 她 照顧 孩子 們 . +I will try it again . 我 會 再 試 一次 . +Do you go often ? 您 经常 去 吗 ? +My brother is good at mathematics . 我 哥哥 擅長 數學 . +Are they both the same ? 他们 都 是 一样 的 吗 ? +He does not have any knowledge about American democracy . 他 一点 都 不 知道 美国 的 民主 . +He abandoned all hope . 他 放弃 了 所有 希望 . +I am tired of your complaints . 我 已經 厭倦 了 你 的 投訴 . +That man grabbed the young girl is wrist . 那個 男人 抓住 了 這個 年輕 女孩 的 手腕 . +Welcome home . 欢迎 回家 . +Do not shoot . 停火 . +I worked as a piano tuner for many years . 我 做 钢琴 调音师 很多年 了 . +The police seem to know exactly where we are . 警察 看來 很 清楚 我們 在 哪裡 . +It is delicious . 很 美味 . +What do you usually do in your free time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +I got your letter yesterday . 我 昨天 收到 了 你 的 信 . +Who buys this type of art ? 谁 买 这种 艺术品 ? +I take a walk every day except when it rains . 除了 雨天 我 每天 都 散步 . +He has access to the American Embassy . 他 有权 出入 美国大使馆 . +Would you mind saying that once more ? 請 你 再 說 一次 好 嗎 ? +She eyed the stranger suspiciously . 她 盯著 可疑 的 陌生人 看 . +He was in time for the appointment . 他 及時 赴約 了 . +We live in the United States . 我們 住 在 美國 . +I know he is watching me . 我 知道 他 在 看著 我 . +We failed due to a lack of preparation . 我們 因 缺乏 準備 而 失敗 了 . +I do not know her , nor do I want to . 我 不 认识 她 , 也 不想 认识 . +I agree completely . 我 完全同意 . +Put handcuffs on him . 把 他 铐 上 . +Excuse me , I have to get off at the next stop . 对不起 , 我 要 在 下 一站 下 . +The moon was full last night . 昨晚 月亮 满 了 . +I would like to try on this dress . 我 想 試穿 這件 衣服 . +Please give me a cup of water . 请 你 给 我 一杯 水 . +Why blame Tom ? 为什么 责备 汤姆 ? +Do you read French every day ? 你 每天 读 法语 吗 ? +Tom knows my number . Tom 知道 我 的 號碼 . +Who teaches you French ? 谁 教 你们 法语 ? +I am near the station . 我 在 車站 附近 . +My grandmother has a green thumb . 我 祖母 是 個園 藝 巧手 . +She graduated in 1996 . 她 在 1996 年 畢業 . +Would you like some cream in your coffee ? 你 要 在 咖啡 上加 些 奶油 嗎 ? +He was scared when the monkey jumped at him . 猴子 跳到 他 身上 的 时候 , 他 受到 了 惊吓 . +They are not dead . 他們 沒死 . +Tom is life was changed forever . 湯姆 的 生活 被 彻底 改變 了 . +What did you do last night ? 你 昨天晚上 做 什麼 ? +I 'd do anything for Tom . 我会 为 汤姆 做 任何 事 . +Are you doing anything special ? 你 在 做 什麼 特別 的 事 嗎 ? +He promised to come , but he did not come . 他 保证 过会 来 却 没有 来 . +I do not approve your decision . 我 不 同意 你 的 決定 . +Were you in Boston last summer ? 你 上个 夏季 在 波士顿 吗 ? +Wait for a moment outside the room . 在 房間 外面 等待 片刻 . +May I borrow your car ? 我 可以 借用 你 的 車 嗎 ? +What would you think if I did that ? 如果 我 那么 做 你 会 怎么 想 ? +It must be around here somewhere . 我 想 應該 在 這 附近 . +You seem to be a little under the weather . 你 看上去 不太好 . +She accused me of making a mistake . 她 指責 我 犯 了 錯 . +It is a matter of life and death . 这 是 一个 生 和 死 的 问题 . +Please take a deep breath . 请 深 吸 一口气 . +The moon is already out . 月亮 已經 出來 了 . +Tom could be Canadian . 汤姆 可能 是 加拿大人 . +Tom wanted Mary is phone number , but she refused to give it to him . 汤姆 想要 玛丽 的 电话号码 但是 被 拒绝 了 . +Their father is a taxi driver . 他們 的 父親 是 一個 計程 車司 機 . +The early bird catches the worm . 早起 的 鸟儿 有 虫 吃 . +I have just been to the post office . 我 剛剛 去 了 郵局 . +What have you come here for ? 你们 来 这儿 干嘛 ? +Who is that man ? 那 男人 是 谁 ? +Only a few people understood me . 只有 一些 人 了解 我 . +Not knowing what to say , he remained silent . 因為 不 知道 該 說 什麼 , 他 保持沉默 . +Do not cry . 别哭 . +Ever since she fell in the kitchen , she has not been all there . 自從 她 在 廚房 裡 摔倒 後 , 她 不曾 再 到 那裡 . +Believe it or not , she has three children . 她 有 三个 孩子 , 信不信 由 你 . +Your work is below average . 你 的 工作 表現 低 於 平均水平 . +Call me at 9 : 00 tomorrow . 明天 九点 打电话 给 我 吧 . +He neglected his duties . 他 怠忽 職 守 了 . +Tom is not foolish . 汤姆 不 傻 . +He was completely engrossed in the book . 他 完全 沉浸 在 書裡 . +What will you make ? 你 會 做 什麼 ? +I want to travel with you . 我 想 和 你 去 旅行 . +I do not know how to handle children . 我 不 知道 如何 對待 孩子 . +The doctors are looking at an x @-@ ray . 医生 在 观察 X光 片 . +As far as I know , there is nothing wrong with his plan . 據 我 所知 , 他 的 計畫 沒有 出差 錯 . +How dare you say that ! 你 怎么 敢 那么 说 . +I will tell Tom you said that . 我 會 告訴 湯姆 你 說 了 那話 . +Stock prices plunged to a record low . 股票 價格 跌 至 歷史 新低 . +You will not be late , will you ? 你 不 會 遲 到 , 是 嗎 ? +When the cat is away , the mice will play . 貓兒 不 在 , 老鼠 玩 的 輕 鬆 自 在 . +Where is my father ? 我 父亲 在 哪里 ? +This car handles very easily . 这 车 容易 开 . +I think you should get more rest . 我 觉得 你 应该 多 休息 一会儿 . +Is this something you want ? 这 是 你 要 的 吗 ? +Each student has a locker . 每個 學生 都 有 一 櫃子 . +I wish I could give up smoking . 我 希望 能够 戒烟 . +She likes cooking for her family . 她 喜欢 为 她 的 家人 做饭 . +Can you speak French well ? 你 法语 说得好 吗 ? +Tom can not get his car started . 汤姆 没法 发动 他 的 车 . +Are you friends ? 你們 是 朋友 嗎 ? +Let me have a look . 讓 我 看看 . +This book is easy to read . 這 本書 很 容易 讀 . +I can not help feeling sorry for him . 我 不禁 為 他 感到 難 過 . +Spanish is her mother tongue . 西班牙语 是 她 的 母语 . +Someone is watching . 有人 在 监视 . +I gave it to the little boy . 我 把 它 給 這個 小男孩 . +Come on in . 进来 . +It was lucky for you that you found it . 你 很 幸運 找到 了 它 . +He is going to be an engineer . 他 將 成為 一名 工程 師 . +It is no use your begging him for help . 你 求 他 帮忙 没有 用 . +There are three of us . 我們 是 三個 人 . +With a firm goal in mind , you will do well . 有 了 坚定 的 目标 , 你 会 做 得 很 好 . +I want to go and change into that shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +The building is one hundred meters high . 該 建築 高 一百 公尺 . +She is on a diet . 她 在 节食 . +He collected bits of information . 他 收集 了 一些 訊息 . +I get a kick out of life . 我 為 人生 感到 很 開心 . +Be careful not to fall . 小心 别 摔倒 了 . +I am sorry , but it is impossible . 我 很 抱歉 , 但 它 是 不 可能 的 . +Tom was a nurse . 汤姆 是 个 护士 . +What subjects do you like the best ? 你 最 喜歡 什麼 科目 ? +You did not protect me . 你 没有 保护 我 . +The barber gave him a haircut . 理 髮 師 為 他 理 了 頭 髮 . +Does that belong to Tom ? 这 是 汤姆 的 东西 吗 ? +Let me check your ticket . 讓 我 看 一下 你 的 票 . +He has gone to London . 他 去 了 伦敦 . +Oh no ! 不会 吧 . +Have you ever climbed Mt . Yari ? 你 曾 爬 過 槍 岳 嗎 ? +I waited for her for a really long time . 我 真的 等 了 她 很 長 一段 時間 . +I did not expect that result . 我 没有 期望 得到 这样 的 结果 . +Choose whichever you like . 選 你 喜歡 的 . +My car is at your disposal . 你 可以 随便 用 我 的 车 . +Today was fun . 今天 很 有趣 . +She had two accidents within a year . 她 一年 裡 遇到 了 兩次 事故 . +I am able to speak . 我 能 说 . +He got his meaning across to me . 他 把 他 的 意思 對 我 講 清楚 了 . +Were you able to do everything you wanted to get done ? 你 是不是 有 能力 做到 你 想要 完成 的 所有 事情 呢 ? +He said it merely as a joke . 他 这么 说 就是 为了 开玩笑 . +Tom disassembled the clock . 汤姆 把 钟 拆开 了 . +I want to learn how to swim . 我 想 学习 如何 游泳 . +It seems that most people only barbeque in the summer . 人們 似乎 只 在 夏天 烤肉 . +She can never keep a secret . 她 永远 也 做 不到 保守 秘密 . +Tom cares about you . 汤姆 关心 你 . +I would like to make a call to Tokyo , Japan . The number is 3202 @-@ 5625 . 我 想要 打 个 电话 到 日本 东京 , 号码 是 3202 - 5625. +Paper was invented by the Chinese . 紙 是 由 中國 人 發明 的 . +No fewer than 50 passengers were killed . 不下 50 个 乘客 死 了 . +I am accustomed to working hard . 我 习惯 辛勤努力 地 工作 . +I am on my way back to Boston . 我 在 回 波士顿 . +He is going to have a heart attack . 他 的 心臟病 要 發作 了 . +This diamond is not real . 这 颗 钻石 不是 真的 . +My parents are not old yet . 我 父母 还 不 老 . +She does not have any enemies . 她 没有 敌人 . +It is on the sofa . 它 在 沙發 上 . +After running up the hill , I was completely out of breath . 跑 上山 後 , 我 完全 喘 不 過 氣 來 . +Florence is the most beautiful city in Italy . 佛罗伦萨 是 意大利 最 美丽 的 城市 . +He confessed to the murder . 他 供认 了 杀人 的 罪行 . +Wait just a moment . 就 等 一會兒 . +I do not think that she will come . 我 不 認為 她 會 來 . +If I were to tell you all I know , you would be amazed . 要是 我 告诉 你 我 所知 的 一切 , 你 会 被 惊呆 的 . +Tom bought a car . 湯姆 買 了 輛 車 . +Is this the right bus for Boston ? 這輛 是 去 波士 頓 正確 的 巴士 嗎 ? +It makes no difference to me . 這 對 我 沒 什麼 差別 . +Do you play any instruments other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I wish that Tom would agree to do that . 我 希望 湯姆 能 同意 . +Maybe you should just fire Tom . 或许 你 就 应该 把 汤姆 开 除掉 . +I truly do not understand the question . 我 真的 不 懂 这个 问题 . +I have some money . 我 有 一些 錢 . +You are terrible . 你 真 壞 . +I can not afford to pay so much . 我 付不起 這麼 多 錢 . +He always gets bullied at school . 他 在 學校 老 是 被 人 欺負 . +Tom asked for food . 汤姆 要 食物 . +I was afraid I 'd be late . 我 怕 我 會 遲 到 . +He made his way to the room . 他 走進 了 房間 . +Every one of his songs was a hit . 他 的 每首歌 都 长期 备受 欢迎 . +That is a good plan . 那 是 一個 很好 的 計劃 . +Tom did a lot of great things . 汤姆 做 了 许多 大事 . +Do you guys want to go with me ? 你們 要 和 我 一起 去 嗎 ? +I am not saying that what she did was right . 我 不是 說 她 做 的 是 對 的 . +The huge explosion killed six people . 大 爆炸 致死 六 人 . +Are you laughing at me ? 你 在 嘲笑 我 吗 ? +I prefer red wine to white . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +Is it true you are trying to do that ? 你 真的 要 试 着 那样 做 吗 ? +We have a warrant to search your apartment . 我们 有权 搜查 你 的 公寓 . +Which cup is yours ? 哪个 杯子 是 你 的 ? +She got on a bus for Harajuku . 她 搭上 了 去 原宿 的 巴士 . +It had to be Tom that did that . 一定 是 汤姆 做 的 . +All of a sudden , the enemy bombs came down on us like rain . 突然 间 , 敌人 的 炸弹 像 雨点 一样 落向 我们 . +You are free to go home . 你 隨時 可以 回家 . +There are five patients in the waiting room . 等候 室里 有 五位 患者 . +All of the students were present . 所有 學生 都 出席 了 . +How soon do you need it ? 你 多久 后 需要 它 ? +The weather was not only cold , but also wet . 天气 又 冷 又 湿 . +The weather turned better . 天氣 轉好 了 . +This stuff is worth its weight in gold ! 這個 東西 很 有 價值 . +It seems that Tom is lying . 看來 湯姆 在 說謊 . +I am trying to save room for dessert . 我 尽量 留 着 胃 吃 甜点 . +Everybody says I look like my father . 每個 人 都 說 我 看 起來 像 我 爸爸 . +I will give you a call as soon as I get home . 我 一 回到 家 就 打电话 给 你 . +Would you like some scrambled egg ? 你 想要 來 些 炒蛋 嗎 ? +Sunday is not a workday for me . 星期天 不是 我 的 工作日 . +Look at that tall building . 看 那棟 高樓 . +It is dangerous ! 它 是 危險 的 ! +He was wounded in the shoulder . 他 伤 了 肩膀 . +Could you take this , please ? 請 你 拿 這個 好 嗎 ? +How do I change my cell phone is ringtone ? 我 要 怎麼 換 我 的 手機 鈴 聲 呢 ? +I think I understand . 我 想 我 懂 了 . +I have a stupid question . 我 有 一個 愚蠢 的 問題 . +I will make you happy . 我会 让 你 幸福 的 . +I have never seen that guy before . 我 從 沒看 過 那個 人 . +We are fed up with your complaining . 我們 受夠 了 你 的 抱怨 . +I have forgotten his name . 我 已经 忘 了 他 的 名字 . +I do not smoke weed . 我 不 吸 大麻 . +By the way , are you free tonight ? 顺便 问 一句 , 你 今晚 有空 吗 ? +I am willing to attend the meeting . 我 願意 參加 這場 會議 . +How old do you think Tom is ? 你 觉得 汤姆 有 多 大 ? +My income has decreased ten percent . 我 的 收入 減少 了 百分之十 . +Tom stood up from his chair . 汤姆 从 椅子 上 站 了 起来 . +Go away before they see you here . 在 他们 看见 你 之前 离开 这儿 . +We had a lot of visitors yesterday . 我們 昨天 有 許多 訪客 . +I always lock my room . 我 總是 鎖 上 我 的 房間 . +I do not like it . 我 不 喜欢 . +She woke up on her own . 她 自己 起床 的 . +She made him a new suit . 她 為 他 做 了 一套 新 衣服 . +I am a professor . 我 是 大学教授 . +What is your marital status ? 能 告诉 我 你 的 婚姻状况 吗 ? +Do not look at Tom . Look at me . 不要 看 湯姆 . 看著 我 . +Tom owns a yellow sports car . 汤姆 有 一辆 黄色 跑车 . +This is an exception to the rule . 这 是 一个 例外 . +Perhaps you are right . 也许 您 有 道理 . +My sister resembles my grandmother . 我 的 姐姐 就 像 我 的 祖母 . +I am the only one who can do that . 我 是 唯一 能 做到 那个 的 人 . +Give me a light , would you ? 借 個 火 , 好 嗎 ? +Any one of us could do it . 我們 之中 任何 一個 都 能 做到 . +I am not really prepared . 我 沒有 真的 準備 好 . +Life begins when we realize who we really are . 当 我们 明白 真正 的 自己 时 , 生活 开始 了 . +He gave in . 他 让步 了 . +Behave yourself . 规矩 点 . +They are proud of their daughter . 他們 以 他們 的 女兒 為 榮 . +Tom told me he had a right to see it . 汤姆 告诉 我 他 有权 看 它 . +Do not pull my leg ! 不要 拉 我 的 腿 ! +I do not understand much about it . 这 里面 我 有 很多 不懂 的 . +I did not tell them . 我 沒 告訴 他們 . +That flower smells sweet . 那 花闻 起来 很 香 . +You may leave your bag here . 你 可以 把 你 的 袋子 留在 這裡 . +The teacher cannot have said such a thing . 老师 不 可能 说 过 这样 的 事 . +He has poor eyesight . 他 的 视力 不 佳 . +The children ran down the hill . 孩子 們 跑 下 了 山丘 . +She does not get outdoors much . 她 沒 有常 到 戶外 . +She hated her husband . 她 恨 她 的 丈夫 . +I do not care as long as you are happy . 只要 你 开心 就行了 . +From the look of the sky , it may rain in the afternoon . 從 天色 看 起來 , 下午 可能 會 下雨 . +Drunk driving is a serious problem . 酒 驾 是 个 严重 的 问题 . +It is getting warmer day by day . 天 日渐 回暖 . +They were good . 他们 不错 . +Do you get along with your boss ? 你 跟 老板 合得来 吗 ? +It seems that he is happy . 看來 , 他 很快 樂 . +I would like to attend the party . 我 想要 出席 排队 . +I do not think that she looks like her mother . 我 不 觉得 她 像 她 妈妈 . +That house is the place where I was born . 那 房子 是 我 出生 的 地方 . +Tennis is very popular among students . 网球 在 学生 中 非常 流行 . +Tom wants to sleep on it . 汤姆 想 在 它 上面 睡觉 . +I spent last Sunday reading a novel . 我 上週 日 花 時間 看 了 一本 小 說 . +I hugged him tightly and cried . 我 緊緊 地 抱著 他 哭 . +I did nothing during the holidays . 在 假期 中 我 無所 事事 . +Entering the house , I tripped over the mat . 进 家门 后 , 我 被 垫子 绊倒 了 . +Are there reserved seats on the train ? 火車 上 有 預訂 的 座位 嗎 ? +I dreamed about you . 我 梦 到 你 了 . +This is none of your business . 跟 你 没 半 毛钱 关系 . +Please take more care in the future . 请 你 将来 注意 点 . +Put your hands up ! 手 举 起来 . +I am very happy to hear about the party . 我 听到 聚会 的 事 很 高兴 . +Cherry blossoms are very beautiful . 櫻花 非常 漂亮 . +Please give me something hot to drink . 請 給 我 一些 熱 的 東西 喝 . +Your mother must have been beautiful when she was young . 你 母親 年輕 的 時候 一定 很美 . +There are many more students in the classroom today than yesterday . 今天 教室 裡 的 學生 比 昨天 還 要 多 . +I resign . 我 放弃 . +Japanese history is my favorite subject . 日本 歷史 是 我 最 喜歡 的 科目 . +Are you interested in foreign languages ? 你们 对 外语 感兴趣 吗 ? +How did you feel about that ? 关于 那件事 你 之前 怎么 想 的 ? +It is a dead end . 这 是 个 死胡同 . +That medicine is not going to help . 那 药 不会 管用 . +What was that you just said ? 你 刚 说 了 什么 ? +Tomorrow I am going to Shanghai . 我 明天 要 去 上海 . +Could you shut the door ? 你 能 把 門關 上 嗎 ? +There were only six people at the party . 只有 六個 人 參加 了 派 對 . +I did not like it . 我 没有 喜欢 过 . +I do not want to get a suntan . 我 不想 晒黑 . +I wish you had told me the truth . 我 希望 你 告訴 我 真相 了 . +I hope everything goes well . 我 希望 万事如意 . +She gave him a lot of money . 她 给 了 他 很多 钱 . +He went to London via Paris . 他 经由 巴黎 去 了 伦敦 . +Daddy loves to say funny things . 爹 地 喜歡 講 有趣 的 事 . +Eating habits differ from country to country . 各國 有 不同 的 飲食 習慣 . +He looked young beside his brother . 他 在 他 弟弟 旁边 显得 很 年轻 . +There are a lot of hot springs in Japan . 日本 有 很多 温泉 . +Who exactly is responsible ? 究竟 谁 要 负责 ? +He has made little progress in his English . 他 的 英语 有 了 小小的 进步 . +You should not talk to Tom that way . 你 不該 那樣 跟 湯姆 講 話 . +There is a bag on the desk . 书桌上 有 一个包 . +He is a DJ . 他 是 一个 DJ . +Tom knew Mary would not let him down . 汤姆 知道 玛丽 不会 让 他 失望 . +I do not understand its significance . 我 没有 领会 这个 意义 . +He is lacking in experience . 他 缺乏 經驗 . +The girl was gazing at the doll . 女孩 凝视着 洋娃娃 . +Why did you cry ? 你 为什么 哭 ? +Nothing is worse than war . 没有 什么 比 战争 更糟 的 了 . +It is against the law to carry weapons . 攜帶 武器 是 違法 的 . +Add a tiny pinch of salt . 加 一丁 點 鹽 . +Call home ! 打电话 回家 ! +I was a little bit nervous . 我 有点 紧张 . +Tom brought Mary some juice . Tom 幫 Mary 買 了 點 果汁 . +This beach is a paradise for surfers . 这个 海滩 是 冲浪者 的 天堂 . +There is no time for explanation . 没 时间 解释 . +She cried as she read the letter . 她 一邊 讀 這 封信 一邊 哭 . +I can not believe Tom just did that . 我 不敢相信 汤姆 那么 做 了 . +I do not believe that ghosts exist . 我 不 相信 鬼魂 存在 . +Take off your socks , please . 請 脫下 你 的 襪子 . +I will be a doctor someday . 我 有朝一日 会 成为 一名 医生 . +I hope he will wait for me . 我 希望 他 會 等 我 . +You can get a loan from a bank . 你 可以 从 银行贷款 . +That is not fair . 這 不 公平 . +I still prefer to write letters by hand . 我 更 喜欢 用 手 写信 . +Everyone should bring their own lunch . 每個 人 都 應 該 帶 自己 的 午餐 . +The things he says are entirely inconsequential . 他 说 的话 根本 毫无意义 . +He will be my deputy while I am away . 我 不 在 的 时候 , 他 将 是 我 的 代理人 . +I can not tell you how to pronounce the word . 我 不 知道 怎么 告诉 你 这个 词 的 发音 . +We have to find out where Tom is . 我们 必须 查明 汤姆 在 哪里 . +We are still vulnerable . 我们 还是 脆弱不堪 . +You are bound to fail . 你 注定 失败 . +Felicja likes to watch TV . Felicja 喜歡 看電視 . +What did you say your name was ? 你 說 你 叫 什麼 名字 ? +I think Tom is sleeping . 我 以為 湯姆 在 睡覺 . +I would like to go with you . 我 想 和 你 一起 走 . +Hurry up , or you will miss the train . 快点 , 不然 你 就要 错过 火车 了 . +You have to go . 你們 得 走 了 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +I am stuck in my job . 我 被 工作 困住 了 . +Such a thing can not happen in Japan . 這樣 的 事情 不 可能 在 日本 發生 . +I have no home to return to . 我 無家 可回 . +Does any other country fan the flames of patriotism as much as America ? 有没有 一个 国家 比 美国 更 提倡 爱国主义 ? +You will never know the truth . 你 永远 不会 知道 真相 . +You should go . 你 應 該 去 . +Do not talk in the classroom . 別 在 教室 裡 說 話 . +She gave him a sweater . 她 给 他 一件 毛衣 . +I have been told Tom is going to be fired . 有人 告訴 過 我 湯姆 要 被 開除 . +He who laughs last , laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +How many languages can you speak ? 你 會 說 多少 種 語言 ? +She is a stubborn girl . 她 是 个 倔强 的 女孩 . +I was in the bathroom . 我 当时 在 卫生间 . +Thousands of foreigners visit Japan every year . 每年 有 成千上万 的 外国人 访问 日本 . +Do not let him play with your phone . 別 讓 他 玩 你 的 手機 . +The main problem with Tom is that he has no sense of humor . 汤姆 的 主要 问题 是 他 一点 幽默感 都 没有 +Where did you get your camera repaired ? 你 在 哪儿 修 的 照相机 ? +The sky is full of dark clouds . 天空 乌云密布 . +His work is washing cars . 他 的 工作 是 洗車 . +The old man starved to death . 這位 老人 餓死 了 . +The ages of the two children put together was equivalent to that of their father . 两个 孩子 的 年龄 加 起来 和 他们 的 父亲 相当 . +She felt herself being lifted up . 她 覺得 自己 好像 被舉 起來 了 . +He betrayed her secret to his friends . 他 把 她 的 秘密 告诉 了 他 的 朋友 . +Do you know how far it is from the station to city hall ? 你 知道 从 火车站 到 市政府 有 多 远 ? +Can I use your pen ? 我 可以 用 你 的 筆 嗎 ? +When does the movie start ? 电影 什么 时间 开始 ? +Tom encouraged Mary to learn how to speak French . 汤姆 鼓励 玛丽 学 着 说 法语 . +Where is the bank ? 银行 在 哪里 ? +Every time I went to his place , he was studying . 每次 我 去 他 住 處 , 他 都 在 讀書 . +If you pass this test , you could graduate next month . 如果 你 通過 這個 考試 , 你 下個月 就 可以 畢業 了 . +I need a taxi . 我 需要 一輛 出租 車 . +Do not you ever clean your room ? 你 從 不 清 掃 你 的 房間 嗎 ? +Do not tell anyone our plan . 不要 把 我们 的 计划 告诉 任何人 . +Swimming is easy . 游泳 很 容易 . +I am not a native speaker . 我 不是 个 母语 者 . +Yes . That is right . 是 的 . 沒錯 . +May I have a napkin , please ? 請 給 我 一張 餐巾 紙 好 嗎 ? +Did you buy juice ? 你 有 買 果汁 嗎 ? +I will go there even if it rains . 即使 下雨 我 也 會 去 那裡 . +They must really hate me . 他们 一定 很 恨 我 . +There is no place like home . 金窩 銀窩 不如 自己 的 狗 窩 . +The map is on the wall . 地图 挂 在 墙上 . +You need to seek help . 你 需要 尋求 協助 . +A cooking course should be mandatory in schools . 烹饪 课程 应该 作为 学校 的 必修课 . +Tom has just returned from the post office . 湯姆剛 從 郵局 回來 . +Well , let is get the ball rolling . 那麼 , 讓 我們 開始 進行 吧 . +We want to know . 我們 想 知道 . +It is true . 這 是 真的 . +It is impolite to stare at people . 盯著 人 看 是 不 禮貌 的 . +He is determined to go to England . 他 决心 去 英国 . +Are those explosives ? 那些 是 爆炸物 嗎 ? +My house is fully insured . 我 的 房子 绝对 保险 . +Drink this juice . 喝 這 果汁 . +I think Tom is athletic . 我 认为 汤姆 好 运动 . +Which of these rackets is yours ? 這些 球拍 中 哪 一支 是 你 的 ? +No matter how much I think about it , I can not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +Tom has visited Boston . 汤姆 去过 波士顿 . +May I open the window ? 可以 开窗 吗 ? +After Tom lost his job , he started to gamble to cope with his depression . 湯姆 失業 後 , 為了 排遣 鬱悶 的 心情 而 開始 了 賭博 . +One out of 455 women does not realize she is pregnant until the twentieth week of pregnancy . 455 名婦 女 中會 有 一名 直到 懷孕 第二十 週前 沒 有意 識到 自己 懷孕 . +I do not know what I 'd do without you . 我 不 知道 如果 沒 了 你 我 還 能 做 什麼 . +He can not swim . 他 不 會 游泳 . +Could you come to tomorrow is meeting ? 你 能 来 参加 明天 的 会议 吗 ? +He is scared of that dog . 他 怕 那 只 狗 . +They studied English yesterday . 他們 昨天 學習 英語 . +We want two taxis . 我們 要 兩輛 出租 車 . +She dived into the swimming pool . 她 跳入 了 游泳池 . +What is your native language ? 你 的 母语 是 什么 ? +His voice is pleasant to listen to . 他 的 声音 很 悦耳 . +I work every day except for Sundays . 我 除了 星期天 外 每天 都 上班 . +Who wrote these stories ? 誰 寫 了 這些 故事 ? +How long does it take to get from here to your house on foot ? 从 这里 步行 到 你家 要 多长时间 ? +I do not think Tom is going to be too much help . 我 认为 汤姆 帮不上 大忙 . +I saw a strange woman there . 我 看见 一位 陌生 女人 在 那儿 . +I am sorry I did not call . 我 很 抱歉 我 没有 打电话 . +You look very good . 你 看上去 很 好 . +He does not know how to write a letter in English . 他 不 知道 如何 用 英语 写信 . +We loaded a lot of luggage into the car . 我們 往 車裡 装 了 很多 行李 . +The population of the city is about 100,000 . 这 座 城市 的 人口 约 有 100 000. +Do you know how many people in the world starve to death every year ? 你 知不知道 全世界 每年 有 多少 人 饿死 呀 ? +Tom is a good friend . 汤姆 是 个 好 朋友 . +I am dying for a cold drink . 我 迫切需要 冷饮 . +Nobody believed what I said . 没有 人 相信 我 说 的话 . +It was a very stupid decision . 这 是 一个 十分 愚蠢 的 决定 . +The old man lived by himself . 老人 独自 生活 . +He looks strong . 他 看 起來 很 強壯 . +Stay right here and relax . 待 在 這里 , 放 鬆 . +I have more experience than Tom . 我 比 汤姆 更 有 经验 . +You are not too bad @-@ looking . 你 看 起來 不 難 看 . +There is an orange on the table . 桌上 有 一只 橙子 . +I want a dozen cream puffs . 我 要 一打 奶油 泡芙 . +My parents usually speak to each other in French , even though my mother is a native English speaker . 我 父母 通常 用 法语 对话 , 即使 我 母亲 的 母语 是 英语 . +I am very interested in languages . 我 对 语言 很感兴趣 . +I saw him looking at me . 我 看見 他 在看 我 . +Those were difficult times . 那 是 困难 时期 . +Should I buy something for him ? 我 應 該 買 些 東西 給 他 嗎 ? +You 'd better not have driven my car . 你 最好 不要 開 了 我 的 車 . +The fish he caught yesterday is still alive . 他 昨天 抓住 的 鱼 一直 还 活着 . +A foreign language cannot be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +My aunt made a new skirt for me . 我 舅母 做 了 一條 新 裙子 給 我 . +Almost everybody was invited . 幾乎 每個 人 都 被 邀請 了 . +At last , the bus stopped . 公车 最终 停 了 下来 . +My father always said that heaven helps those who help themselves . 我 父親 總是 說 天助 自助 者 . +What are your strong points ? 你 的 强项 是 什么 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 去 接 . ” +He lives alone . 他 独自 生活 . +Where is the city hall ? 市政府 在 哪裡 ? +He speaks too fast . 他 说话 太 快 了 . +I will stay with Tom until you get back . 你 回来 之前 我会 跟 汤姆 在 一起 . +I started thinking about Tom . 我 开始 想起 汤姆 . +The mountain was covered with snow . 這 座 山 被 雪 覆蓋 著 . +I can not stand that kind of politician . 我 不能 忍受 那種 政治家 . +Who cares ? 爱 谁 谁 . +We want to hear it . 我们 想 听听 . +She went on working . 她 继续 工作 . +I do not want to talk to you . 我 不想 跟 你 说 ! +Your family is waiting for you . 你 的 家人 在 等 你 . +Tom does not like doing homework . 汤姆 不 喜欢 做作业 . +I have to go to the bathroom . 我 要 去 廁所 . +He meets his girlfriend on Saturdays . 他 每 週六 和 他 的 女朋友 見面 . +I do not want to have an operation . 我 不想 接受 手術 . +We are a family . 我們 是 個 家庭 . +Mary is an exceptionally beautiful girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +I will go shopping tomorrow . 我 明天 要 去 购物 . +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +All of his family work on a farm . 他 全家 都 在 农场 工作 . +Did Tom talk to Mary ? 汤姆 跟 玛丽 说话 了 吗 ? +She raised her voice . 她 提高 了 她 的 嗓音 . +He felt his heart beating fast . 他 覺得 他 的 心跳 加速 . +I feel hopeful about the future . 我 對 未來 感到 有 希望 . +A baby is sleeping in the cradle . 一個 嬰兒 在 搖籃 裡 睡覺 . +Compare your translation with his . 比較 你 和 他 的 翻譯 . +We were disappointed to hear that Tom could not get a visa . 我们 很 遗憾 地 听说 , 汤姆 没 能 拿到 签证 . +We knew it all along . 我们 一 开始 就 知道 . +You are a beautiful young woman . 你 是 一个 美丽 的 女孩 . +My father is far from artistic . 我 父親 一點 也 不 懂 藝術 . +What prevented you from coming earlier ? 為 什麼 你 不能 早點 來 ? +I do not even want to think about what could happen . 我 甚至 不想 去 想 會 發生 什麼 . +Give me something to write with . 給 我些 可以 寫 字 的 東西 . +Do not believe what she says . 不要 相信 她 說 的 話 . +It is later than you think . 時間 比 你 想 的 還 要 晚 . +The old cottage has a certain charm about it . 旧村 屋 有 它 自己 一定 的 魅力 . +Do you have tinnitus ? 你 耳鸣 吗 ? +Do not you know what happened yesterday ? 你 不 知道 昨天 發生 什麼 事 嗎 ? +One hundred and fifty people entered the marathon race . 150 个人 参加 了 马拉松 比赛 . +I am studying at the University of Hyogo . 我 在 兵库县 立 大学 学习 . +I think Tom is very cool . 我 認為 湯姆 很酷 . +She was afraid to cross the road . 她 怕 過 馬 路 . +He likes traveling and so do I. 他 喜欢 旅行 . 我 也 是 . +Can I use your dictionary for a minute ? 我 能 用 一下 你 的 字典 吗 ? +Tom should wait until Monday . 汤姆 应该 等到 星期一 . +That red car hit the blue van . 那輛 紅色 汽車 撞到 了 藍 色 麵 包 車 . +Tom wrung out the towel and hung it up to dry . 汤姆 拧干 毛巾 挂 起来 晾干 . +Facts are stubborn things , but statistics are pliable . 事实 是 倔强 的 , 但 统计 是 柔顺 的 . +I like candy . 我 喜歡 甜食 . +Tom is speech was excellent . 湯姆 的 演講 非常 好 . +Tom and Mary have three cats and two dogs . Tom 和 Mary 有三隻貓和兩 隻 狗 . +Money has changed his life . 金钱 改变 了 他 的 生活 . +You ask too many questions . 你 问题 太 多 了 +I like beans . 我 喜欢 豆子 . +Tom is a good friend of yours , is not he ? 湯姆 是 你 的 好 朋友 , 不是 麼 ? +We need assistance . 我們 需要 幫助 . +Do not you think so ? 你 不 这么 认为 吗 ? +Tom continued his investigation . 湯姆 繼續 他 的 調查 . +He is married to an American lady . 他 和 一个 美国 女人 结婚 了 . +We will go when the rain stops . 當雨 停 了 , 我們 就 會 去 . +I told them to send me another ticket . 我 請 他們 再寄 給 我 一張 票 . +Now I remember . 现在 我 想 起来 了 . +He once knew her , but they are no longer friends . 他 过去 认识 她 , 但 他们 现在 不再 是 朋友 了 . +Kiss me . 吻 我 . +We have got to have determination . 我們 要 下 決心 了 . +The poet expressed his burning passion for the woman he loved . 詩人 對 他 愛 的 女人 表達 了 他 火熱 的 激情 . +Please wash my back . 請 幫 我 洗 背 . +Please help me . 請 幫助 我 . +I did not expect to hear back from Tom so soon . 我 沒 想到 這麼 快 就 收到 湯姆 的 回信 . +The present time is a good time . 现在 正是 好 时候 . +I met him on my way home . 我 在 回家 的 路上 遇見 了 他 . +Those houses are 500 years old . 那些 房子 有 500 年 了 . +I had a good night is sleep . 我 睡 了 一整夜 的 好觉 . +It is likely to be fine tomorrow . 明天 天氣 可能 很 好 . +You have got a lot of guts . 你 膽子 很大 . +What would you do if you had a million dollars ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +The policeman captured the man who was running . 警察 抓 了 正在 跑 的 那個 男人 . +There is a castle in the background of the picture . 图片 的 背景 是 一座 城堡 . +A penny saved is a penny earned . 省 下 了 一分 錢 , 就 等 於 賺 了 一分 錢 . +He made the most of his opportunity . 他 盡力 地 利用 了 這個 機會 . +Give me your location . 给 我 你 的 位置 . +I do not understand why Tom brought you here . 我 不 知道 為 甚麼 湯姆 把 你 帶到 這裡 . +Subtract three from eight and you get five . 八 减去 三 就 能 得到 五 . +His words gave me hope . 他 的 話 給 了 我 希望 . +I have recently given up smoking . 我 最近 戒烟 了 . +The dog barked at the stranger . 這 隻 狗 對 著 陌生人 叫 . +I stayed up till very late last night . 我 昨晚 睡 得 很 晚 . +I need many books . 我 需要 很多 書 . +No matter how hard the training was , she never cried . 不管 训练 多么 艰苦 , 她 都 没有 哭 过 . +It was really cheap . 它 真的 很 便宜 . +Life is not all fun and games . 生活 並 不 都 是 輕 鬆 愉快 的 . +The cat meowed . 猫叫 . +I am a hero . 我 是 個 英雄 . +The girl greeted me with a smile . 這個 女孩 面帶 微笑 向 我 打招呼 . +I spoke to Tom last night . 昨晚 我 和 汤姆 说话 了 . +Give it to them . 把 它 给 他们 . +He has no sense of right and wrong . 他 是非不分 . +Tom told me he was nervous . 湯姆 告訴 我他 緊張 . +The airplane took off on time . 這 班 飛 機準 時 起 飛 . +Did you hear my show last night ? 你 听 了 我 昨天晚上 的 节目 吗 ? +My father works at the factory . 我 父亲 在 工厂 工作 . +Restart your computer . 重新启动 你 的 电脑 . +The party was put off for a week . 派对 延期 了 一周 . +Have a look . 请 看一看 . +The price is not reasonable . 这个 价格 不合理 . +You can take today off . 你 今天 可以 休假 一天 . +Can you eat this ? 这个 能 吃 吗 ? +I had difficulty working out the problem . 我 很 難 解決 這個 問題 . +I did not think this was your seat . 我 不 認為 這 是 你 的 座位 . +He attributes his success to good luck . 他 将 他 的 成功 归功于 好运 . +I do not want to miss my train . 我 不想 错过 我 的 火车 . +He will travel abroad next year . 明年 他 要 去 国外 旅游 . +He arrived at the station at seven . 他 7 点 到 了 火车站 . +You drink too much coffee . 你 咖啡 喝 得 太 多 了 . +Did you buy cat food ? 你 买 猫 粮 了 吗 ? +I am not a student . 我 不是 學生 . +Let is go ahead and eat . 咱们 去 吃饭 吧 . +He wrote a book about a jungle adventure . 他 写 了 一本 关于 丛林 冒险 的 书 . +The doorbell rang . 门铃 儿 响 了 . +Keep an eye on the child for me for a moment . 帮 我 看 会儿 孩子 . +He married a very pretty girl . 他 娶 了 一個 很漂亮 的 女孩 . +I am not a teacher . 我 不是 個 老師 . +There were risks . 有 風險 . +He lived a moral life . 他 以 君子 之 道 生活 . +Do not worry ! Even if I drink , it does not have an effect on my driving . 別 擔心 ! 即使 我 喝酒 了 , 它 對 我 的 駕駛 沒有 影響 . +How long do you plan to stay in this country ? 你 打算 在 这个 国家 待 多久 ? +I do not remember mailing the letter . 我 不 記 得 寄 過信 了 . +He made no mention of her request . 他 沒有 提到 她 的 請求 . +Tom did not give me what I asked him for . 汤姆 没给 我 我 跟 他 要 的 . +We know him . 我們 認識 他 . +Please do not say that . 请 你 不要 说 这个 . +If you want to , you can use my car . 如果 你 愿意 , 你 可以 用 我 的 车 . +He does not care much for baseball . 他 不 太 关注 棒球 . +Do not enter the room without permission . 未經 允許 請 勿 進入 這個 房間 . +He made the best of the opportunity . 他 善用 了 這個 機會 . +The youngest daughter is exceptionally beautiful . 么 女 長 得 特別 漂亮 . +I do not read newspapers much . 我 不 太 看 报纸 . +Are you busy ? 您 在 忙 吗 ? +Everyone is anxious to know what has become of the former champion . 大家 都 渴望 知道 前 冠军 得主 发生 了 什么 . +Let me say one thing . 讓 我 說 一件 事情 . +Everyone inside the building felt the earthquake . 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +You really are rude , are not you ? 你 真的 很粗 魯 , 不是 嗎 ? +Please give me something to eat . 請 給 我 點 東西 吃 . +Do you think he did the job on his own ? 你 认为 他 是 自己 独立 完成 这份 工 的 吗 ? +I invited them to the party . 我 邀請 了 他們 參加 派 對 . +I promise it will not happen again . 我 保證 它 不 會 再 發生 . +You said you 'd help me . 你 说 过 你 会 帮 我 的 . +How do we get out of here ? 我们 该 怎么 从 这里 出去 . +Tom explained it to Mary very carefully . 汤姆 仔细 地 给 玛丽 解释 . +I do not want Tom to see this . 我 不想 讓 湯姆 看見 這個 . +Can you describe to me the difference between black tea and green tea ? 你 能 告诉 我 红茶 和 绿茶 的 区别 吗 ? +Tom is check bounced . 汤姆 的 支票 被 退票 了 . +What time are you leaving ? 你 什么 时候 走 ? +I remember meeting you before . 我 記得 以前 見 到 你 . +The train was crowded with people . 火车 挤满 了 人 . +We are glad to have you in our class . 我们 很 高兴 你 加入 了 我们 班 . +This is the cheapest shop in town . 這 是 鎮 上 最 便宜 的 商店 . +Tom and I know each other quite well . 湯姆 和 我 互相 很 了解 . +I am undressing . 我 脱衣服 . +I only spent three dollars . 我 只 花 了 三 美元 . +We are neighbors . 我們 是 鄰居 . +He is out now . 他 现在 出去 了 . +Let is eat now . I am dying of hunger . 咱们 吃 吧 ! 我 饿死 了 . +Did you forget to lock the door last night ? 你 昨天晚上 忘 了 鎖 門 嗎 ? +The problem is being discussed now . 这 问题 正在 被 讨论 . +Do not kid around . 別 開 玩笑 了 . +He played baseball after school . 他 放學 後 打 棒球 . +How many forks do we need ? 我們 需要 多少 把 叉子 ? +She went to the hospital yesterday . 她 昨天 去 了 醫院 . +The police think the burglar entered through a basement window . 警察 认为 窃贼 从 地下室 窗口 进入 . +She spoke through an interpreter . 她 透過 傳譯員 發言 . +I am really glad you are here . 你 能 来 我 真 高兴 . +I do not know if today is Tuesday or Wednesday . 我 不 知道 今天 是 星期二 還是 星期三 . +You must not yield to temptation . 你 不 應該 屈服 在 誘惑 之下 . +I do not believe the child came to Tokyo alone . 我 不 相信 孩子 能 独自 到 东京 . +The storm abated . 风暴 减弱 了 . +Let is discuss it . 来 商量 吧 . +I am not a bit tired . 我 一點 也 不累 . +Tom will never see you again . 汤姆 以后 再也不会 见 你 了 . +Tom often goes cross @-@ country skiing . Tom 经常 滑雪 穿过 城市 . +Tom walks very slowly . 汤姆 走 得 很慢 . +Were you playing tennis yesterday morning ? 你 昨天早上 在 打网球 吗 ? +We will have guests tomorrow . 我們 明天 會 有 客人 . +That was pretty neat . 那 真 整潔 . +He cannot afford to buy a car , much less a house . 他 买不起 一辆 汽车 , 更 不要 说 一套 房子 了 . +The dress suits you very well . 这 条 裙子 很 适合 你 . +I do not really like him , in fact , I hate him . 我 不 太 喜欢 他 , 其实 我 讨厌 他 . +I am not a student . 我 不是 學生 . +How long have you two been together ? 你们 两个 在 一起 多久 了 ? +The old man was almost hit by a car . 老人 幾乎 被 車 撞 上 . +You 'd better tell us what is going on . 你 最好 告诉 我们 发生 了 什么 . +Tom says that Mary definitely will not accept the job . 湯姆 說 瑪麗 絕不 會 接受 這 工作 . +He is afraid that he might be late . 他 担心 他 可能 会 迟到 . +Have a nice day , Tom . 汤姆 , 希望 你 今天 玩 得 开心 . +This job does not pay . 这个 工作 没有 酬劳 . +Mary said that she loved me , but I did not believe her . 玛丽 说 她 爱 我 , 但是 我 并 不 相信 她 所说 的话 . +Do you want some rice ? 你們 要 米 飯 嗎 ? +Please feel free to call me up . 請 隨時 都 可以 打 電話 給 我 . +I can not drink milk . 我 不 可以 喝牛奶 . +Tom put the vase on the table . 湯姆 把 花瓶 放在 桌上 . +She is proficient in French . 她 精通 法語 . +The investigation is under way . 相關 調查 正在 進行 中 . +We must not laugh at the poor . 我们 不能 嘲笑 穷人 . +Feel this . It is really soft . 来 摸摸 这个 感觉 一下 . 真的 很 柔软 啊 . +Tom arrived here before sunrise . 汤姆 天亮 前 就 到 这 了 . +It is a pity you did not come last night . 您 昨晚 沒來 真是太 可惜 了 ! +It is too dark to play baseball now . 現在 太暗 無法 打 棒球 . +Her eyes shone with joy when she saw that her mother was not mad at her . 當 她 看到 媽媽 沒 在 生 她 的 氣 , 她 的 雙眼 因為 幸福 而 閃爍 了 . +I discovered that speaking English was pretty easy . 我 發覺 說 英語 很 簡單 . +I will be at home all day tomorrow . 明天 我 一整天 都 在家 . +May I put it down here ? 我 可以 把 它 放在 这儿 吗 ? +London is on the Thames . 倫敦 在 泰 唔 士河 旁 . +I just do not want to lose you . 我 只是 不想 失去 你 . +Roll up your right sleeve . 捲 起 你 右 邊 的 袖子 . +How long did it take you to write this report ? 你 写 这份 报告 花 了 多长时间 ? +Eat your soup before it gets cold . 趁 汤 没 凉 之前 喝 下 . +They did not know what to do first . 他們 不 知道 先 做 什麼 . +The teacher demonstrated the idea with an experiment . 这位 老师 用 试验 论证 了 这个 想法 . +There is a TV in this room . 这个 房间 里 有个 电视机 . +I had curry last night . 我 昨晚 吃 了 咖喱 . +Just pull the door shut . It will lock by itself . 只要 推门 就 好 了 . 它 自己 会 锁上 的 . +We will begin tomorrow morning . 我們 明天 上午 開始 . +I will be free all day tomorrow . 明天 我 一整天 都 有空 . +I feel no sympathy for Tom . 我 不 同情 湯姆 . +The enemy attacked us at night . 敵人 在 夜間 攻擊 了 我們 . +Why do not you take the day off ? 你 為 什麼 不 請 一天 假 ? +I want to study abroad next year . 我 明年 想 出国 留学 . +I hope I am not disturbing you . 我 希望 没 打扰到 你 吧 ? +Does your father get home early ? 你 爸爸 很早 回家 嗎 ? +Can I help ? 我 可以 幫忙 嗎 ? +What you said is not true . 你 说 的 不是 真的 . +If a man had 11 sheep and all but 9 died , how many sheep would he have left ? 如果 一个 人 有 11 只 羊 , 除了 9 只 之外 , 其他 全部 死 了 , 那么 他 还 剩下 几只羊 呢 ? +Please help yourself to the cake . 你 自己 拿 蛋糕 吃 吧 . +Father takes the 7 : 00 subway to work . 爸爸 乘 早上 7 点 的 地铁 去 上班 . +Is it about ten o 'clock ? 大約 十點鐘 嗎 ? +Tom has come up with a good plan . 湯姆 想到 了 個 好 計劃 . +No one can help me . 没有 人 能 帮 我 . +She is nothing but a child . 她 只是 個 孩子 . +More than 40 percent of the students go on to university . 40 % 以上 的 学生 去 读 大学 . +I think Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +You should not share too much private information on the social networks . 你 不 应该 在 社交 网络 上 分享 过 多 私人 信息 . +It is difficult to speak Chinese well . 很 難 把 中文 說 得 好 . +Tom does everything he can to save money . 湯姆盡 全力 省 錢 . +The manager approved our plan . 經理 批准 了 我們 的 計劃 . +He has no house to live in . 他 没有 房子 住 . +Hide in the closet . 你 藏進 櫃子 裡 去 . +I want ten plates . 我 要 十個 盤子 . +We have to turn in our reports by the end of this month . 这个 月底 前 , 我们 必须 交 报告 . +Please answer my question . 请 回答 我 的 问题 . +Selling cars is my job . 賣車 是 我 的 工作 . +Are not you thirsty ? 你 不 渴 嗎 ? +Do you believe in ghosts ? 你 相信 有 鬼魂 吗 ? +I sell clothing online . 我 在 網 路上 賣 衣服 . +Only four horses competed in the race . 只有 四匹 馬 參加 了 比賽 . +I spilled my coffee on the carpet . 我 把 咖啡 倒 翻 在 地毯 上 了 . +He will wait for you . 他 會 等 你 . +You made an error . 你 犯 了 个 错误 . +I will give you the money tomorrow . 我 明天 會 給 你 錢 . +There is no telling what he will do next . 没有 人 知道 他 接下来 会 干什么 . +We were just about to enter the room . 我们 正要 进 房间 . +You 'd better go home at once . 你 最好 立刻 回家 . +Tom told me that he does not like carbonated drinks . 汤姆 告诉 我 他 不 喜欢 碳酸 饮料 . +We need to talk about that as soon as possible . 我們 需要 盡早 談論 那件事 . +We made it out of there . 我們 從 那裡 逃 了 出來 . +Why do not you go home early today ? 你 今天 為 什麼 不 早點 回家 呢 ? +I belong to the swimming club . 我 參加 游泳 社 . +He married a stewardess . 他 娶 了 一个 空姐 . +His parents are saving for his college education . 他 的 父母 為 他 的 大學 教育 存錢 . +No one will bother you here . 這裡 沒 人會 打擾 你 . +I do not write letters anymore . 我 不再 写信 了 . +That is mine . 那 是 我 的 . +He made his son a chair . 他 做 了 一把 椅子 給 他 兒子 . +This method is sure to work . 這個 方法 一定 會 成功 . +This dictionary is my sister is . 這 本 字典 是 我 妹妹 的 . +I can not recall the last time we met . 我 想不起 來 我們 上次 見面 的 情况 了 . +Do not put anything on top of the box . 不要 放 任何 東西 在 箱子 上面 . +I know her address . 我 知道 她 的 地址 . +Wipe your eyes . 擦擦 你 的 眼睛 . +How are you , Tom ? 你好 嗎 , 湯姆 ? +She asked about my school . 她 問 了 關 於 我 學校 的 事 . +He works for an advertising agency . 他 為 一家 廣告 公司 工作 . +What would you like to eat for dinner ? 你 想 吃 什麼 作 晚餐 ? +Tom robbed a bank . 湯姆 搶 了 家銀行 . +Who does the book belong to ? 這 本書 是 誰 的 ? +Who is this , please ? 請 問 這 是 誰 ? +If you buy me an ice cream , I will give you a kiss . 如果 你 買 給 我 冰淇淋 , 我 就 親 你 一下 . +Who did you give that to ? 你 把 東西 交給 誰 了 ? +Follow us . 请 跟着 我们 . +I left my umbrella in the cab . 我 把 我 的 傘 忘 在 計程車 上 了 . +We can not afford to make mistakes . 我們 承擔 不了 犯錯 的 後 果 . +It was not long before we met again by chance . 没多久 , 我们 又 碰巧 遇到 了 . +I 'd like you to go there . 我 希望 你 去 那裡 . +We took turns with the driving . 我們 輪流 駕駛 . +Let is wait here until he comes back . 讓 我們 在 這裡 等 他 直到 他 回來 . +Do not leave the TV on . 不要 让 电视机 开 着 . +I was fired without cause . 我 被 无故 辞退 了 . +I have not eaten lunch yet . 我 现在 还 没有 吃 过 午饭 . +Tom is going to run for mayor . 汤姆 要 竞选 市长 . +Blood was everywhere . 到处 都 是 血 . +We can see more and more swallows . 我們 能 看到 越來越 多 的 燕子 . +Marriage frightens some people . 有些 人 害怕 婚姻 . +There is no doubt . 毫无疑问 . +Turn on the light , please . 麻煩 開燈 一下 . +You seem to know everything . 你 看起来 什么 都 知道 . +I am not as optimistic as you . 我 不 像 你 那么 乐观 . +I can see through your lies . 我 能 看穿 你 的 謊言 . +I am afraid to go alone . 我 害怕 一個 人 去 . +I would like to invite you to the party . 我 想 请 你 参加 派对 . +How are you ? 你好 嗎 ? +Everything comes to those who wait . 成功 屬 於 耐心 等待 的 人 . +Yesterday , an explosion occurred at the fireworks factory . 昨晚 , 烟花 厂 发生 了 爆炸 . +Tom watched Mary draw a picture . 汤姆 看 玛丽 画 一幅 画 . +Why do you say that ? 你 為 什麼 那樣 說 ? +Tom , wake up . 汤姆 , 快 起来 ! +He never speaks unless spoken to . 除非 有人 跟 他 說 話 , 他 從來 不 說 話 . +My father graduated from Harvard University . 我 爸爸 是 哈佛大学 毕业 的 . +Can you get up ? 你 能 起床 嗎 ? +She hung the picture upside down . 她 把 画 挂反 了 . +Is it OK to take pictures here ? 这里 允许 拍照 吗 ? +I have not done very much this year . 我 今年 沒 做 多少 事 . +What time does the movie start ? 电影 什么 时间 开始 ? +What happened that night ? 这个 晚上 发生 了 什么 ? +The library is on the second floor . 圖書館 在 二 樓 . +There are several ways to measure speed . 测速 的 方法 有 很多 . +I can not keep up with you . 我 無法 跟上 你 . +Three people were killed in the explosion . 这场 爆炸 中 有 三 人 丧生 . +We need more . 我們 需要 更多 . +Tom told me I should not do that . 湯姆 告訴 我 我 不該 去 做 . +Do not try to stop me . 别 想 阻止 我 . +Drive slowly . 开车 慢点 . +You can not fight a good fight with such a defeatist attitude . 抱著 失敗 主義 的 態度 你 無法 打 一場 漂亮 的 仗 . +He is doing very well at school . 他 在 學校 的 表現 很 好 . +I used to have a friend named Tom . 我 曾 有 个 朋友 叫 汤姆 . +We should not expect too much help from Tom . 我們 不該 期望 從 Tom 那 得到 太 多 幫助 . +Do you know how to dance ? 你 會 跳舞 嗎 ? +I agree with what you say to some extent . 在 某种程度 上 , 我 认同 你 所说 的 . +I would like to swim in this river . 我 想 在 這條 河裡 游泳 . +The price does not include the box . 這個 價格 不 包含 這個 箱子 . +What is become of your dog ? 你 的 狗 怎麼 了 ? +The car is ready . 汽车 准备 好 了 . +When did you begin studying English ? 你们 什么 时候 开始 学 英语 的 ? +I have got a lot of questions . 我 有 许多 问题 . +How about taking a walk with us ? 跟 我們 一起 散步 怎麼樣 ? +Do not let him down . 别 让 他 失望 . +Ca not you get by on your salary ? 靠 你 的 收入 你 不能 過 活 嗎 ? +If you do not hurry , you will miss the train . 如果 你 不 抓紧 的话 , 你 就 会 赶不上 火车 . +He would not listen to my advice . 他 不 聽 我 的 勸告 . +Tom has not said a word all morning . 汤姆 整整 一个 上午 一句 话 也 没 说 . +She is a good dancer . 她 是 一個 很好 的 舞者 . +I know how to make beef stroganoff . 我 知道 怎麼 做 俄式 炒 牛肉 片 . +I 'd rather be with you . 我 更 愿意 跟着 你 . +Do not forget to lock up when you leave . 当 你 出门时 , 别忘了 锁门 . +You will go to school tomorrow . 你 明天 去 學校 . +Lend me some money , if you have any . 你 有钱 的话 , 借 我 一些 . +Could you drive Tom home ? 你 能載 湯姆 回家 嗎 ? +Do not move . 不要 动 . +She helped me pack my suitcase . 她 幫 我 打包 我 的 手提箱 . +I can not put up with his arrogance . 我 不能 忍受 他 的 傲慢 . +Boys , as a rule , are taller than girls . 一般来说 , 男生 会 比 女生 高 一些 . +I got up early enough to catch the first train . 我 起 了 个 大早 为了 赶 第一班 火车 . +I understand how to solve the problem . 我 明白 怎么 解决问题 . +Thank you for the pleasant evening . 謝謝 你 讓 我 度 過 一個 愉快 的 晚上 . +He is a baseball player . 他 是 个 棒球 手 . +I love the sound of children laughing . 我 喜歡 孩子 們 笑 的 聲音 . +A friend is coming over tomorrow . 一個 朋友 明天 要過 來 . +Do not do this to me again . 別 再 對 我 做 這事 了 . +I do not want everyone to think I am stupid . 我 不想 讓 任何人 認為 我 傻 . +The cat is not dead . 那 猫 没死 . +Hug Tom . 请 抱紧 汤姆 . +I remember seeing her . 我 記得 我 看 過 她 . +He told us a lie . 他 對 我們 說 了 一個 謊 . +Tom is on his way here . 湯姆 正在 來 這里 . +I am not like Tom . 我 跟 汤姆 不 一样 . +He tried to kill himself . 他 試圖 自殺 . +It is difficult to do that . 那麼 做 很 難 . +Call me . 联系 我 . +Tell me Tom is email address . 告诉 我 汤姆 的 邮箱地址 吧 . +It is a sunflower . 那 是 一朵 向日葵 . +Do you have a bicycle ? 你 有 自行 車 嗎 ? +Whoever said money can not buy happiness simply did not know where to go shopping . 那些 说 钱 不能 买来 幸福 的 人 , 只是 不 知道 上 哪里 去 买 而已 . +I do not know for certain . 我 不 太 確定 . +Be happy for me . 为 我 感到高兴 吧 . +I ate caviar . 我 吃 了 魚子 醬 . +He knows how to brush his teeth . 他 知道 怎么 刷牙 . +He is at home . 他 在家 裡 . +Have you finished reading that book ? 你 读完 那本书 了 吗 ? +The red dress suited her . 這件 紅色 的 洋裝 適合 她 . +It took me a little more time than usually to fall asleep . 我 花 了 比 平常 多 一點 的 時間 入睡 . +I am praying . 我 在 祈禱 . +I think he is a great writer . 我 认为 他 是 位 伟大 的 作家 . +Do you like strawberries ? 你 喜歡 草莓 嗎 ? +That is a face I have seen before . 這 張 臉 我 以前 見 過 . +I thought Tom was going to hurt me . 你 認為 湯姆 要 傷害 我 . +He always takes sides with her . 他 總 是 支持 她 . +I am not certain about that . 对于 那个 , 我 不 确信 . +I am not very good at swimming . 我 不是 很 擅長 游泳 . +It is a lot of fun to drive a car . 開車 很 好玩 . +He returned home for the first time in ten years . 他 十年 中 第一次 回家 . +Bringing up a baby is hard work . 养 大 一个 宝宝 是 一项 艰难 的 工作 . +We have French third period . 我們 第三 節 是 法語 課 . +Tom is spending more and more time in Boston . 汤姆 在 波士顿 待 得 越来越 久 . +The old church by the lake is very beautiful . 河边 的 老 教堂 很漂亮 . +He knows how to read Chinese . 他 看得懂 中文 . +Tom studies French as well . 湯姆 也 學 法語 . +Where will we go afterwards ? 我们 以后 往 哪 走 ? +I hope no one saw me dancing . 我 希望 沒人 看見 我 跳舞 . +She is not a child . 她 不是 小孩 . +Tom threw in the towel . 汤姆 不 干 了 . +I felt like crying . 我 想 哭 . +Visiting a foreign country must be expensive . 到 外國 一定 很貴 . +Tom had a lot of problems at the school . 汤姆 在 学校 遇到 了 很多 问题 . +I am able to swim . 我 會 游泳 . +Do you think I am beautiful ? 你 認為 我 美 嗎 ? +Everyone except Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +This medicine will decrease your pain . 这种 药会 减轻 你 的 疼痛 . +I was asked to wait here . 我 被 要求 在 这里 等 . +Switzerland is famous for its scenic beauty . 瑞士 以 它 的 風景 優美 而 聞名 . +Your shirt button is coming off . 你 衬衣 的 纽扣 快 掉 了 . +You may injure yourself if you do not follow safety procedures . 如果 你 不 按照 安全 手续 来 的话 , 你 可能 会 受伤 的 . +Were you working last night ? 你 昨晚 在 工作 吗 ? +What do you have ? 您 有 什么 ? +All I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +What made her so angry ? 什麼 事 讓 她 這麼 生氣 ? +She gave up her plans against her will . 她 違背己願 放棄 了 她 的 計畫 . +It is OK not to eat it . 你 不吃 沒 關 係 . +They arrived in Osaka at the beginning of May . 他们 五月 初 到 了 大阪 . +Stop yelling ! 别 再 喊叫 了 ! +We are happy . 我們 很快 樂 . +You should have introduced yourself . 你 本來 應該 介紹 自己 的 . +I do not want it . 我 不要 . +" I like traveling . " " So do I. " “ 我 喜欢 旅游 . “ ” 我 也 是 . “ +How long does it take to walk to your house from here ? 从 这里 步行 到 你家 要 多长时间 ? +Tom had a pain in his chest , so he went to the hospital . 汤姆 胸痛 , 所以 去 了 医院 . +You people are no fun at all . 你们 这帮 人 真 没意思 . +What is it about ? 它 是 關 於 什麼 ? +All you have to do is take advantage of this rare opportunity . 你 所要 做 的 便是 好好 把握 這 千載難逢 的 機會 . +A group of young men are playing handball in the playground . 一群 年 輕 人 在 操場 上 打 手球 . +I found your letter in the mailbox . 我 在 信箱 中 發現 了 你 的 信件 . +I should not have said that . 我 不该 说 那个 . +Many people only speak one language . 許多 人 只 說 一種 語言 . +I am going to go there with Tom . 我 要 和 汤姆 去 那里 . +We kept our fingers crossed . 我们 试图 让 手指 互相 交错 . +I sometimes break the rules . 我 有时候 打破 规矩 . +Tom cut down the tree that was in front of his house . 湯姆 砍 了 他 門前 的 樹 . +He is too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +I am just a plain office worker . 我 只是 一個 普通 的 上班族 . +How old do you think she is ? 你 认为 她 多 大 ? +He made an important discovery . 他 有 了 一個 重要 的 發現 . +Ca not you speak English ? 你 不 會 說 英語 嗎 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +I want to show you something in my office . 我 想 给 你 看看 我 办公室 里 的 一些 东西 . +Do you need to buy anything ? 你 有 什么 需要 买 的 吗 ? +May I go to the toilet ? 我 可以 去 廁所 嗎 ? +The problem was that I had nothing to say to him . 问题 是 我 没什么 要 跟 他 说 的 . +It is obvious that she is sick . 顯然 地 她 生病 了 . +I am an optimist by nature . 我 天生 是 一個 樂觀 主義 者 . +The child missed his mother very much . 這 孩子 非常 想念 他 的 母親 . +The light was on . 灯 亮 着 . +This is Uncle Tom is farm . 這 是 湯姆 叔叔 的 農場 . +I do not know your reasons for not liking Tom . 我 不 知道 你 不 喜欢 汤姆 的 理由 . +He should have arrived by now . 现在 他 应该 已经 到 了 . +Be careful . It is very sharp . 小心 點 , 它 很 锋利 . +Drive carefully . 开车 小心 点 . +I found the book interesting . 我 觉得 这 本书 很 有意思 . +Every time it rains , the roof leaks . 每次 下雨 屋頂 就 漏水 . +Your opinion matters . 你 的 觀點 是 重要 的 . +She testified that she saw the man . 她 作證 說 她 看見 了 這 名 男子 . +He gave us the signal to begin . 他 給 了 我們 信號 讓 我們 開始 . +Tom worked very hard and earned a lot of money . 汤姆 努力 工作 挣 了 好多钱 . +Mary showed the letter to me . 瑪麗 給 我 看 了 這 封信 . +Tom seems a little confused . 湯姆 看來 有 點 困惑 . +She is good at playing tennis . 她 擅長 打 網球 . +You are very courageous . 您 非常 勇敢 . +We are having difficulty locating Tom . 我们 难以 找到 汤姆 . +Where is my seat ? 我 的 位子 在 哪儿 ? +I heard her singing a song . 我 聽到 她 唱歌 . +I am afraid that there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +The bus will take time . 乘 公交车 费时 . +Do you want to eat noodles or rice ? 你 要 吃 麵 條 還 是 吃 米 飯 ? +His doctor ordered him to rest . 他 的 医生 命令 他 休息 . +Tom has not missed any of Mary is concerts . 汤姆 没有 错过 一场 玛丽 的 音乐会 . +The quickest means of travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +May I use this ? 我 可以 用 嗎 ? +Ca not we work this out ? 我们 做 不成 吗 ? +I could not think of anything to say . 我 想不到 要 說 什麼 話 . +I feel weak . 我 感到 虚弱 . +A typhoon is approaching Japan . 颱 風 正 接近 日本 . +The papers blew off . 文件 被 风 刮起来 . +She gave the children two apples each . 她 給 孩子 們 每人 兩個 蘋果 . +He was elected mayor . 他 被选为 市长 . +She lived for a long time . 她 活 了 很久 . +It is been raining since last night . 從 昨晚 起 一直 下雨 . +Because of the typhoon , my parents ended their trip one day early . 因为 台风 的 关系 , 我 的 父母 提早 一天 结束 了 旅行 回到 家 . +I had a lot of fun . 我 玩 得 很 開心 . +Please wait a little while longer . 請 稍 等 一會兒 . +Take this medicine every six hours . 每 六個 小 時 吃 一次 這個 藥 . +This book belongs to the library . 這 本書 是 圖書館 的 . +Show me your passport , please . 请 给 我 看看 您 的 护照 . +Let is go to the club . 讓 我們 去 俱 樂 部 吧 . +Hang in there . 坚持 . +I do not agree with him . 我 不 同意 他 . +She is still dependent on her parents . 她 是 啃老族 . +I have to ask you something . 我 得 问 你 点 事 . +These flowers bloom earlier than others do . 這些 花 比別 的 花 早 開花 . +She translated the letter from Japanese into French . 她 把 信 从 日语 译成 法语 . +Many conservationists fear the continuing slaughter of whales is pushing these animals towards extinction . 许多 自然环境 保护主义者 担心 持续 屠杀 鲸鱼 正 推动 这些 动物 走向 灭绝 . +The sky became darker and darker . 天空 变得 越来越 暗 了 . +Sales fell off in the third quarter . 在 第三季 時 銷售 跌 了 下來 . +It is becoming warmer day by day . 一天天 热 起来 了 . +He got off the bus . 他 下 了 公車 . +We have got a situation . 我们 有 情况 了 . +There is nothing to prevent you from going . 没什么 能 阻止 你 出发 了 . +Nice to see you . 见到 你 真好 . +It rained hard yesterday morning . 昨天上午 下 大雨 . +I can not locate the source of the problem . 我 无法 找到 问题 的 根源 . +That white parasol is hers . 那 把 白色 阳伞 是 她 的 . +They came all the way from Brazil . 他們 從 巴西 遠 道 而 來 . +Please put on your shoes . 請 穿 上 你 的 鞋子 . +Do you like black cats ? 你 喜歡 黑色 的 貓 嗎 ? +Why are you still unmarried ? 你 為 甚麼 還 不 結婚 ? +This chair is light . 这 把 椅子 很轻 . +I think we should not allow Tom to do that . 我 認為 我們 不 應該 允許 湯姆 去 做 . +He is careless about money . 他 不 關心 錢 . +This is an old building . 这 是 幢 老楼 . +We enjoyed playing baseball . 我們 喜歡 打 棒球 . +I work too much . 我 工作 得 太 多 了 . +He reads a lot of books . 他 读 很多 书 . +The meat has gone bad . 這 肉 已經 壞 了 . +I am not the only one who thinks Tom is overweight . 觉得 汤姆 肥 的 人 不止 我 一个 . +He lives in a cozy little house . 他 住 在 一個 舒適 的 小 房子 裡 . +We all wondered why she had dumped such a nice man . 我們 都 想 知道 她 為 什麼 甩 了 這麼 好 的 一個 男人 . +They made me go there alone . 他們 讓 我 獨自 去 了 那裡 . +Many children die of starvation in Africa . 在 非洲 有 许多 孩子 死 于 饥饿 . +My mother is quite angry . 我 母亲 十分 生气 . +I want to die . 我 想 死 +Playing tennis is a lot of fun . 打 網球 很 有趣 . +Would you like some more beef ? 你 想 再 來 些 牛肉 嗎 ? +Diplomats are allowed various privileges . 外交官 有 多种 特权 . +I do not love you anymore . 我 不再 爱 你 了 . +Only adults may watch that film . 只有 成人 可以 看 那种 电影 . +What kind of stone is this ? 这 是 什么 石头 ? +Some people never grow up . 有些 人 永远 也 长不大 . +I am at home . 我 在家 . +He must have missed the train . 他 一定 是 錯 過 了 這 班 火車 . +It could be just a coincidence . 可能 只是 巧合 . +He can not be ill . 他 不 可能 生病 了 . +Run like your life depends on it 拼命 地 跑 +You should make an effort to stop smoking . 你 應該 努力 去 戒煙 . +Hopefully , we will enjoy our China trip . 希望 我們 會 喜歡 我們 的 中國 之 旅 . +The king governed the country . 國王 統治 了 這個 國家 . +They are talking with each other . 他们 在 互相 交谈 . +He lives by himself in the woods . 他 獨自 住 在 森林 裡 . +Creationism is a pseudo @-@ science . 创造 主义 是 一种 伪科学 . +I can not do any more than this . 我 無法 再 做 下去 了 . +Do not leave the door open . 不要 把门 开 着 . +I want to go there once more . 我 想 再 去 那裡 一次 . +Lunch is on . 午餐 送到 了 . +It was not until I reached home that I missed my purse . 那 是 在 我 到 家 以后 , 我 才 不见 了 我 的 钱包 . +The value of the painting was estimated at several million dollars . 这 幅画 被 估价 数百万元 . +They are peace @-@ loving people . 他们 是 热爱 和平 的 人 . +I am an only child . 我 是 獨 生子 . +I am going to see him today . 今天 我 要 去 看 他 . +Would you like a drink ? 你 想 喝 點 什麼 嗎 ? +May I see the wine list ? 我 可以 看 一下 酒單 嗎 ? +English is studied in China , too . 在 中國 的 人 也 研讀 英語 了 . +He stopped reading the newspaper . 他 停止 了 读报 . +What is your opinion on this matter ? 关于 那个 你 有 什么 看法 ? +They are having a chat . 他們 正在 聊天 . +You look just like your older brother . 你 和 你 哥哥 长 得 一模一样 . +On Mondays , he is always at home . 他 星期一 總是 在家 . +Such a plan is bound to fail . 這樣 的 計劃 注定 會 失敗 的 . +I miss you badly . 我 非常 想 你 . +I got a good grade in English . 我 的 英文 得到 了 好 成績 . +She took my joke seriously . 她 把 我 的 玩笑 当真 了 . +Could you please lend me thirty dollars ? 請 問 你 能 借 給 我 三十 美 圓 嗎 ? +Everybody is supposed to know the law , but few people really do . 每 一个 人 都 应该 知法 懂法 , 但是 真正 能 做到 的 人 却 很少 . +I got up at six this morning . 我 今天 早上 六點 起床 . +I can not put up with him . 我 受不了 他 . +Please tell us what to do next . 請 告訴 我們 下 一步 要 做 什麼 . +I succeeded in getting what I wanted . 我 成功 地 得到 了 我 想要 的 . +I am hearing that a lot lately . 我 最近 听说 了 不少 . +This book will do . 這 本書 就行了 . +I was happy to see him . 我 很 高兴 见到 他 . +Tom ate half the cake by himself . 湯姆 獨自 吃 了 半個 蛋糕 . +He was supposed to come . 他 應 該 來 的 . +Shine your shoes before going out . 出門 前 把 你 的 鞋子 擦亮 . +What is the forecast for tomorrow ? 明天 的 天气预报 怎么 说 ? +Tom refused to even listen to my suggestions . 汤姆 甚至 拒绝 听 我 的 建议 . +Have a good weekend ! 周末 愉快 . +I forgot to ask Tom . 我 忘 了 问 汤姆 . +Once in a while , we should take a step back and think . 有时候 , 我们 应该 后退 一步 想一想 . +Tom swam . Tom 游泳 . +The town was destroyed by the flood after the storm . 小镇 被 暴风雨 后 的 洪水 摧毁 了 . +I can not see you . 我 看 不 見 你 . +Two detectives followed the suspect . 两个 侦探 跟着 嫌疑人 . +Who is the boss of this company ? 这家 公司 的 老板 是 谁 ? +You 'd better not have eaten the cake . 你 最好 不要 吃 了 蛋糕 . +Why were you there ? 你 為 什麼 在 那裡 ? +Admission to the museum is thirty dollars . 博物 館入 場費 是 三十 美元 . +I guess I am never going to get married . 我 想 我会 一辈子 单身 . +See you then . 到 時候 見 . +We forgive you . 我們 原諒 你 . +I wonder how many Canadians live in Boston . 我 在 想有 多少 加拿大人 住 在 波士 頓 . +I do not think you need to change . 我 不 認為 你 該 改變 . +Wild animals live in the forest . 野生 動物 住 在 森林 裡 . +If you do not want to do it , you do not have to . 如果 你 不想 的话 也 没 问题 . +I mistook him for his brother . 我 把 他 誤 認為 是 他 的 兄弟 . +The blouse costs twelve libras . 这件 衬衫 卖 十二 英镑 . +These glasses are cool . 這些 眼鏡 真酷 . +Never look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +You should be good to your neighbors . 你 应该 对 邻居 好 点 . +I dislike eggs . 我 不 喜欢 鸡蛋 . +It depends on the context . 这 得 看 情况 . +My shoulder hurts . 我 肩膀 痛 . +He continued reading the book . 他 繼續 看書 . +He went to some place or other . 他 去 了 某个 地方 . +I have a lot of problems at the moment . 目前 我 问题 很多 . +He put away his toys . 他 收起 了 他 的 玩具 . +It will be fine this afternoon . 今天下午 天氣 會 很 好 . +Anniversaries are important . 週年 紀念 很 重要 . +How was the fishing ? 釣魚 怎麼樣 ? +Take a taxi to the hotel . 打 的 去 旅馆 吧 . +Tom loves you . 汤姆 爱 你 . +I do not like you . 我 不 喜欢 你 . +Who is your English teacher ? 你 的 英語 老師 是 誰 ? +They never give up . 他们 永不言弃 . +That is no business of yours . 这 不关 你 的 事 . +She does not like to sing sad songs . 她 不 喜欢 唱 悲伤 的 歌 . +This sentence does not make sense . 这 句 话 没意思 . +Sydney is far from here . 悉尼 离 这里 很远 . +Get lost ! 滾 ! +Do not talk to others during the class . 上 課 中 不要 跟 別人 講 話 . +Whose is this bicycle ? 这辆 自行车 是 谁 的 ? +Fantastic ! 很棒 ! +He is not likely to succeed . 他 不 可能 成功 . +My sister and I went to the castle . 我 和 妹妹 去 了 城堡 . +She is a very interesting person . 她 是 一個 非常 有趣 的 人 . +I found what I was looking for . 我 找到 了 我 正在 找 的 東西 . +Beats me . 我 一无所知 . +My album is here . 我 的 相簿 在 這裡 . +Young children are often fascinated by science . 小孩 常常 对 科学 很 有 热情 . +That is not wine . It is grape juice . 這 不是 葡萄酒 , 是 葡萄汁 . +We often eat fish raw in Japan . 我們 在 日本 常常 吃 生魚 . +I did not sleep a wink last night . 我 昨晚 沒睡 . +Put the book on the top shelf . 把 書 放在 最 上面 的 架子 上 . +I did not know about your plan . 我 不 知道 你 的 計畫 . +What does PTA stand for ? PTA 代表 什么 意思 ? +Tom and I sat on a bench in the park and talked while we fed pigeons . 我 和 汤姆 在 公园 的 长椅 上 坐 着 , 一边 聊天 一边 喂 着 鸽子 . +I like L.A. better . 我 更 喜欢 洛杉矶 . +Everyone knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He goes to bed at eight o 'clock . 他 八點 上床 睡覺 . +That is awesome , right ? 很棒 , 不是 吗 ? +Is Tom well ? 汤姆 还好 吧 ? +Ask Tom if you have any doubt . 你 如果 有 疑问 , 就 问 汤姆 吧 . +Tom would like to see you . 汤姆 想见 你 . +She is good at handling children . 她 善 於 處理 兒童 . +Tom will return home tomorrow . 汤姆 明天 回家 . +I have always wanted to learn how to swim . 我 一直 想 学习 如何 游泳 . +I am a student . 我 是 个 学生 . +You do not go to school on Sunday , do you ? 你 週日 不 上學 , 對 嗎 ? +His advice did not help much . 他 的 忠告 没 起到 太 大 的 作用 . +We worked on a farm last summer . 我們 去年 夏天 在 一個 農場 上 工作 . +Running is good for your health . 跑步 對 你 的 健康 有益 . +If you need a dictionary , I can lend you my old one . 如果 你 需要 字典 , 我 就 把 我 旧 的 借给 你 . +Please open the door . 請 把 門 打開 . +I guess it was our bad luck . 我 猜 这 是 我们 的 运气 坏 . +What will actually happen is anyone is guess . 誰 也 說 不準 實際 上 將 會 發生 什麼 事 . +I can not bear to deal with her anymore . 我 再也 忍受 不了 她 了 ! +We agreed to start early the next morning . 我们 同意 了 第二天 一早 开始 . +What is your favorite beverage ? 你 最 喜欢 的 饮料 是 什么 ? +We laughed . 我们 笑 了 . +Prices went up . 物價 上漲 . +Why do that now ? 为什么 现在 做 那个 ? +When was this university founded ? 这 所 大学 是 什么 时候 建 的 ? +I am expecting a letter from her . 我 期待 她 的 來信 . +He likes to watch TV . 他 喜歡 看電視 . +I have already eaten dinner . 我 已經 吃 晚 飯 了 . +Tom is a magician . 汤姆 是 魔法师 . +Tom did not even notice Mary had gone . 湯姆 甚至 沒 注意 到 瑪麗 走 了 . +It is not that far . 不是 那么 远 . +What do you do on Sundays ? 你 星期天 都 做 什麼 ? +Please get me a scrap of paper . 請 給 我 一張 廢紙 . +The light is on . 灯 亮 着 . +She always speaks in a low voice . 她 總是 低聲 地 說 話 . +Tom had no idea that Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +I do not know anything . 我 什么 都 不 知道 . +A bridge was built across the river . 人 們 修 了 一座 橋 過 河 . +What is the name of this river ? 這條 河 叫 什麼 名字 ? +Tom does not like being treated like a child . 汤姆 不 喜欢 被 当作 小孩 . +" How do you feel ? " he asked . “ 你 感觉 怎么样 ? ” 他 问 . +I know that she is Spanish . 我 知道 她 是 西班牙人 . +I have already visited Australia . 我 已经 游览 过 澳大利亚 了 . +I know where he lives . 我 知道 他 住 哪儿 . +I am too tired to walk any further . 我 累得 再也 走 不動 了 . +I have lost a little weight . 我 瘦 了 一點 . +How much will it cost you to go by air ? 坐 飛機 將 花 你 多少 錢 ? +Being rich is not enough . 有钱 还 不够 . +We usually walk to school . 我们 通常 步行 去 学校 . +We gladly accept your offer . 我们 很 高兴 接受 你 的 提议 . +Tom rolled down his window . 湯姆拉 下 了 他 的 窗戶 . +Something is better than nothing . 聊胜于无 . +I will treat you to sushi . 我 會 請 你 吃 壽司 . +The shooting started around noon . 槍 擊 是 在 中午 十二 時 左右 開始 的 . +You can start right now . 你 现在 可以 开始 了 . +She was promoted . 她 晉升 了 . +What shall we eat for breakfast ? 我們 早 飯 吃 什麼 ? +A new branch will be opened in Chicago next month . 新 的 分店 下个月 在 芝加哥 开张 . +Please speak more loudly . 請 說 話 大聲 一點 . +What have you been doing this week ? 你 這個 星期 一直 在 做 什麼 ? +You will have to leave now . 你 现在 必须 离开 . +Tom admitted that he had killed Mary . 汤姆 承认 他 杀死 了 玛丽 . +This is not for you . 這 不是 給 你 的 . +Please say it once more . 請 再 說 一次 . +The door is locked at nine o 'clock . 九點鐘 鎖門 . +A huge monster is coming down the mountain . 从 山上 走来 一只 巨大 的 怪物 . +He is very afraid of his mother . 他 非常 怕 他 的 母親 . +What is your favorite season of the year ? 一年 之中 , 你 最 喜欢 哪个 季节 ? +The rivers were flooded by the heavy rain . 大雨 使 河水 泛滥 . +This is a hospital . 这 是 医院 . +Except for one person , everybody went home . 除了 一 人 , 大家 都 回家 了 . +I think Tom is awake . 我 想 Tom 已经 醒 了 . +She has hundreds of books . 她 有 幾百本 書 . +He got angry . 他 生气 了 . +My father takes a walk every morning . 我 父親 每天 早上 去 散步 . +I have been looking for a new job for a long time . 我 找 工作 已经 很 久 了 . +Many Asians have English as a common language . 許多 亞洲 人 以 英語 作為 共用 的 語言 . +He is afraid of snakes . 他 害怕 蛇 . +Thank you very much for your gift . 非常 谢谢 你 的 礼物 . +No one escaped alive . 沒有 人生 還 . +She says she will call you later . 她 說 她 晚 一點 會 打 電話 給 你 . +She is evidently sick . 她 明顯 生病 了 . +I have nothing in common with her . 我 和 她 沒有 共同 之處 . +There is a map on the wall . 墙上 有 张 地图 . +This is the town where he was born . 这 是 他 出生 的 城市 . +I found this at the risk of my life . 我 冒著 生命 危險 找到 了 這個 . +Tom made me do it . 是 汤姆 让 我 做 的 . +Nothing ever makes him angry . 沒有 什麼 事 曾 讓 他 憤怒 . +When did Tom get here ? 湯姆 是 甚麼 時候 來到 這裡 的 ? +Tom died three months ago . 湯姆 三個 月前 死 了 . +I think it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Collect your thoughts before you begin your work . 工作 之前 先 收好 思绪 . +Cross out the incorrect words . 把 错误 的 单词 划掉 . +I think his opinion is very important . 我 認為 他 的 意見 非常 重要 . +The fire has gone out . 火 已經 灭 了 . +Judging from the look of the sky , it may rain this afternoon . 從 天色 上 判斷 , 今天下午 可能 會 下雨 . +We sometimes swim in the lake . 我們 偶爾 在 湖裡 游泳 . +You are suitable for the job . 你 很 適合 這份 工作 . +She is asking for the impossible . 她 在 无理取闹 . +Tom seems to be very happy . 汤姆 看起来 非常 开心 . +The sky is clear and full of stars . 天空 晴朗 , 布满 了 星辰 . +My whole body is sore . 我 全身 酸痛 . +Who do you usually go to the movies with ? 你 一般 和 誰 去 看 電影 ? +Do you have anything to eat ? 你 有 东西 吃 吗 ? +Let your uncle think about it . 讓 你 叔叔 想一想 . +He has a wife and two young children to provide for . 他 有 一个 妻子 和 两个 孩子 要 养活 . +I do not particularly like her . 我 特别 不 喜欢 她 . +I am surprised that your family has a Japanese car . 我 很 惊讶 , 你家 居然 有 辆 日本 车 . +Who gave them to you ? 谁给了 你 这些 东西 ? +Please go to the bank . 請去 銀行 . +Open the box . 打開 箱子 . +Wolves scare me . 狼 嚇 到 了 我 . +Has he finished his homework yet ? 他 完成 他 的 功課 了 嗎 ? +The French Revolution began in 1789 . 法国 大革命 1789 年 开始 . +She mistook me for my brother . 她 把 我 誤 認為 是 我 的 兄弟 . +Tom is a native French speaker . 汤姆 是 法语 母语 者 . +She spends her leisure time making dolls . 她 利用 空闲 时间 做 布娃娃 . +You may make use of his library . 你 可以 利用 他 的 图书馆 . +Everything is bad . 一切 都 很 糟糕 . +One is new , and the other is old . 一个 是 新 的 , 另 一个 是 旧 的 . +This is the biggest car in the world . 这 是 世界 上 最大 的 车 . +You do not have to go to the party unless you want to . 除非 你 想 去 , 否則 你 不必 去 這個 派 對 . +Tom will not stop . 湯姆 不 會 停 . +She sat on the bench . 她 坐在 長椅 上 . +I will definitely vote for Tom . 我 一定 要 給 湯姆 投票 . +Tom is a politician . 汤姆 是 位 政治家 . +He is not from Hokkaido . 他 不是 來 自 北海道 . +I think you have done this before . 我 想 你 以前 做 过 这个 . +How did you make this soup ? 这 汤 怎么 做 的 ? +You 'd better not go out . 你 最好 不要 出門 . +I have to stop procrastinating . 我 不能 再 拖延 了 . +Tom and Mary spoke on the phone . 湯姆 和 瑪麗 在 電話 裡 交流 . +I want to go with you . 我 想 和 你 一起 去 . +Clean your room . 清 掃 你 的 房間 . +I called him up yesterday . 我 昨天 打 電話 給 他 . +Where did you have your picture taken ? 你 从 哪里 照 的 相 ? +Do not touch it . 別 碰 它 . +I intend to go to the barbershop . 我 打算 去 理 髮 店 . +Better late than never . 迟到 总 比 不到 好 . +I really like puppies . 我 非常 喜欢 小狗 . +Please speak as slowly as possible . 请 尽量 慢点 说 . +That is a strange sentence . 那 是 一個 奇怪 的 句子 . +Could you send it to this address ? 你 能 把 它 送到 這個 地址 嗎 ? +Tom is not as innocent as he seems . 汤姆 不 像 他 看上去 的 那样 无辜 . +Thank you , I have had enough . 謝謝 你 , 我 吃 飽 了 . +It is up to you to decide whether we will go there or not . 该 由 你 来 决定 我们 去不去 那儿 . +He complained about the noise . 他 抱怨 這個 噪音 . +Can we talk in private ? 我们 能 私下 谈谈 吗 ? +Can you please give me something to do ? 请问 你 能 给 我 点 事 做 吗 ? +That only happens occasionally . 这 只是 偶发事件 . +We toured all the major cities . 我们 游览 了 所有 主要 城市 . +My mother happened to be there when the fire broke out . 着火 的 时候 我 妈妈 恰好 在 那 . +Today is even busier than normal . 今天 比 平时 还 忙 . +She and I are brother and sister . 她 和 我 是 姐弟 . +Do you want to know ? 你 想 知道 嗎 ? +He is always at home on Sundays . 他 星期日 總是 在家 裡 . +Were they serious ? 他们 是 认真 的 吗 ? +I just wish we could leave this horrible place . 我 只是 希望 我们 能 离开 这个 可怕 的 地方 . +One of my pleasures is watching TV . 我 的 一個 樂趣 是 看 電視 . +I can not believe Tom is really planning to do this . 我 无法 相信 汤姆 真的 打算 做 这 事儿 . +I find it hard to get up early on cold mornings . 我 覺得 在 寒冷 的 早晨 很 難 早起 . +My baggage is missing . 我 的 行李 丢 了 . +Tom died recently . 汤姆 最近 死 了 . +Let is play baseball . 我們 去 打 棒球 吧 . +I am here , so do you want to chat ? 我 在 这 , 你 想 聊天 吗 ? +Sociopaths rarely display remorse or feelings of guilt for their crimes . 反 社会 者 极少 为 他们 的 罪行 显露 懊悔 或 有 罪恶 的 感觉 . +Have any letters arrived for me ? 到 的 有 我 的 信 吗 ? +What is on the desk ? 桌子 上 有 什么 ? +Get lost . 滚 . +So , what happened this time ? 那么 , 这次 发生 了 什么 ? +Finally , he attained his goal . 他 终于 达到 了 自己 的 目标 . +Both Tom and Mary can not speak French . 汤姆 和玛丽 都 不 说 法语 . +That car is really expensive . 那 辆 汽车 真的 很贵 . +Be careful on your way back home . 回家 的 路上 注意安全 . +Tom frowned . 湯姆 皺著 眉頭 . +Is it large enough ? 這麼 大 的 夠用 嗎 ? +We will take part in the marathon . 我们 将 参加 马拉松 . +They were left speechless . 他们 惊 得 目瞪口呆 . +We did not get an apology . 我们 没有 收到 过 道歉 . +I hope so . 我 希望 如此 . +He came all the way from Chicago . 他 從 芝加哥 遠 道 而 來 了 . +Nowadays nobody believes in ghosts . 現在 沒 有人 相信 有鬼 . +Please allow me to go . 請 允許 我 去 . +I feel much better today . 我 今天 感觉 好多 了 . +Men should work . 男人 应该 工作 . +Are you a student of a private high school ? 你 在 私立高中 读书 吗 ? +I really like my coworkers . 我 确实 喜欢 我 的 同事 . +The woman glared at us . 女人 瞪 了 我們 . +Tom certainly is a good teacher . 湯姆 確實 是 位 好 老師 . +Tom was embarrassed to have to ask for help . 汤姆 很 不好意思 去求 帮忙 . +Tom was my first boyfriend . 汤姆 是 我 第一个 男朋友 . +Tom has not called Mary yet . 湯姆 還 沒 打 給 瑪莉 . +This whisky is too strong . 这种 威士忌 太烈 了 . +I could tell Tom the truth , I suppose . 我 覺得 我 能 告訴 湯姆 真相 . +That is too bad . 那 太 糟糕 了 . +She is not always happy . 她 不 總是 高興 . +You look very tired . 你 看上去 非常 累 . +This doghouse was built by Tom . 这 狗 屋 是 汤姆 建 的 . +Could we go somewhere and talk ? 我们 能 去 别的 地方 谈谈 吗 ? +His wife gave birth to twin boys . 他 的 妻子 生下 了 一對 雙 胞胎 男孩 . +Tom is not a very nice guy . 湯姆 不是 個 多 好 的 人 . +He is a person who never cuts corners . 他 是 个 绝对 不会 偷工减料 的 人 . +I want the other one . 我 想要 另 一個 . +What is the weather like ? 天氣 怎麼樣 ? +The novel ends with the heroine is death . 小说 以 女主角 的 死 告终 . +She left home ten minutes ago . 她 十分 鐘 前 離家 . +Life does not always go the way we want it to . 生活 并 不 总是 如 我们 所愿 . +I do not have a dog . 我 没有 狗 . +I understand how you feel . 我 明白 你 的 感受 . +My father is out . 我 父亲 出门 了 . +You have been deceived . 你 被 騙 了 . +Could you stop saying that ? 你 能 不 说 那个 了 吗 ? +I want to just focus on the positive . 我 只 想 注意 积极 方面 . +Do I need to transfer ? 我 需要 换乘 吗 ? +I would like to see it . 我 想 看看 它 . +What do you call this bird ? 這 隻 鳥 叫作 什麼 ? +This is the dictionary I use every day . 这 是 我 每天 都用 的 字典 . +Put on your good shoes . 穿 上 你 的 好鞋 . +I have brothers . 我 有 兄弟 . +Place it wherever you like . 你 想 放在 哪裡 就 放在 哪裡 . +I continued working . 我 繼續 工作 . +Tom is my brother . Tom 是 我 哥哥 . +Environmental pollution is causing abnormal weather conditions . 環境 污染 正 造成 異常 的 天氣 情況 . +Can I take pictures here ? 我 能 在 这里 拍照 吗 ? +The bus is full . You will have to wait for the next one . 這 班 公車 客滿 了 . 你 必須 等下 一班 . +I saw my reflection in the window . 我 在 窗户 上 看見 了 我 的 映像 . +Jazz fusion is a combination of rock and jazz . 融合 爵士 是 搖滾樂 與 爵士 樂 的 融合 . +I will show you around the town . 我 會 帶 你 逛逛 這個 鎮 . +I can not stand this noise . 我 不能 忍受 這個 噪音 . +Tears rolled down my cheeks . 泪水 沿着 我 的 面颊 流 了 下来 . +Broccoli is one of the healthiest vegetables . 西藍花 是 最 健康 的 蔬菜 之一 . +Feel free to ask any questions . 隨時 問 任何 問題 都 可以 . +No one lives in this building . 没有 人 住 在 这栋 楼里 . +Is death the only way out ? 死 是 唯一 的 解脱 吗 ? +That is the man whose kids are so nice . 那个 男人 , 就是 他 的 孩子 很 友好 的 那个 . +I can not do without her help . 沒有 她 的 幫助 我 做 不到 . +I have always distrusted Tom . 我 一直 不 信任 湯姆 . +He studies contemporary literature . 他 学习 现代文学 . +I ate lunch in a hurry . 我 匆忙 地 吃 了 午飯 . +We are here in the name of Jesus Christ and King Charles . 我們 這裡 以 耶穌 基督 和 查理斯 國王 之 名 . +He does not seem to be an American . 他 似乎 不是 美國 人 . +Tom had a drink in his hand . 汤姆 手里 拿 着 饮料 . +My grandfather died when I was a boy . 當 我 是 個 小男孩 的 時候 , 我 的 祖父 就 過世 了 . +She is a doctor . 她 是 医生 . +We are hiding . 我们 在 藏 着 . +The population of Japan is larger than that of New Zealand . 日本 的 人口 比 新西兰 多 . +He gave me a nice Christmas present . 他 给 了 我 一个 很棒 的 圣诞礼物 . +My TV has quit working . 我 的 電視 已經 壞 了 . +I take a bath every night . 我 每晚 洗澡 . +About how much will I have to pay for all the treatments ? 所有 的 医药费 我 大概 要 付 多少 ? +Is there anything you want that you do not have ? 有 什么 你 想要 但是 没有 的 东西 吗 ? +He can also speak Russian . 他 也 會 說 俄語 . +He shaves every day . 他 每天 刮 鬍 子 . +That is flammable . 那 是 可燃 的 . +My older sister often drinks tea with milk . 我 的 姐姐 经常 就 着 牛奶 喝茶 . +Can I ask you a question ? 我 可以 問 您 一個 問題 嗎 ? +I am not as optimistic as you are . 我 没有 你 那么 乐观 . +I went to the hospital to have my eyes tested . 我 到 醫院 去 檢查 了 眼睛 . +Nothing seems to grow in this soil . 這個 土壤 似乎 長 不出 任何 東西來 . +I know all your secrets . 我 知道 你 所有 的 秘密 . +You are really brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +You run . 你 跑 . +I like playing the piano . 我 喜欢 弹钢琴 . +He worked too hard , and became sick . 他 工作 得 太 多 , 病倒 了 . +I wish he were here now . 我 希望 他 現在 在 這裡 . +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +Over @-@ sleeping is no excuse for being late . 睡 过头 不是 迟到 的 理由 . +Let is leave as soon as he arrives . 他 一 到 , 咱們 就 走 了 吧 . +Tom is watching a video . 湯姆 在 看 影片 . +He earns three times more than me . 他 赚 的 比 我 多三倍 . +These questions are easy to answer . 這些 問題 太 容易 回答 了 . +I feel sad . 我 很 难过 . +He is good at baseball . 他 垒球 打 得 很 好 . +This is what I want . 这 就是 我 想要 的 . +Tom was very scared . 湯姆 當時 非常 害怕 . +You 'd better consult the doctor . 你 最好 请教 一下 医生 . +He used to be a nice boy . 他 以前 是 個 好 男孩 . +I am almost done . 我 差不多 完成 了 . +Are you sure that Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +They were afraid of the big dog . 他們 怕 這 隻 大 狗 . +I was amazed at his courage . 我 對 他 的 勇氣 感到 驚訝 . +He is a good person . 他 是 個 好人 . +We are very skeptical . 我们 非常 怀疑 . +Tomorrow is my birthday . 明天 是 我 生日 . +Would you care for another glass of beer ? 再 来 一杯 啤酒 怎么样 ? +Do not make stupid jokes . 开 什么 国际 玩笑 . +It is not a watch . 這 不是 手 錶 . +She bought a toy for her child . 她 買 了 一個 玩具 給 她 的 孩子 . +People can not live forever . 人 无法 长生不死 . +I can not wait for you . 我 不能 等 你 . +Let them have their fun . 讓 他們 鬧 去 . +I am making a movie . 我 在 製 作 電 影 . +That is a nice coat . 那 是 一件 不錯 的 大衣 . +Tom was unsatisfied with the results . 汤姆 对 结果 不满 . +I really do not need any help . 我 真的 不 需要 幫助 . +Keep this lesson in mind . 记好 了 这 教训 . +The barometer is falling . It is going to rain . 气压计 下降 了 - 要 下雨 了 . +I was worried about his health . 我 担心 他 的 健康 . +You should make better use of your free time . 你 要 更好 地 利用 闲暇 时间 . +The program starts at nine o 'clock . 這個 節目 九點 開始 . +You made a mistake . 你 犯 了 个 错误 . +You seem very nervous . 你 看起来 很 紧张 . +I do not think this is Tom is umbrella . 我 認為 這 不是 湯姆 的 傘 . +As long as you are here , we might as well begin . 既然 你 在 這裡 , 那 我們 就 開始 吧 . +We enjoyed watching the fireworks on a bridge last summer . 去年 夏天 , 我们 在 桥上 看 焰火 看 得 很 过瘾 . +She does not seem to be an American . 她 似乎 不是 美國 人 . +He told us to keep quiet . 他 告訴 我們 要 保持 安靜 . +That is a good idea ! 真是 个 好 主意 ! +We got on the bus there . 我們 在 那裡 上 了 公共 汽車 . +You and I have something in common . 你 和 我 有 一些 共同点 . +Is this for sale ? 这 是 要卖 的 东西 吗 ? +I can speak Chinese , but I can not read Chinese . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +He is not here because he is ill . 他 不 在 这儿 , 因为 他 病 了 . +I am waiting for you to help me . 我 等 着 你 帮 我 . +What is the worst @-@ case scenario ? 最 坏 的 情境 是 什么 ? +He threw a stone at the dog . 他 朝着 狗 扔 了 块 石头 . +She was accepted by Harvard . 她 被 哈佛 錄取 了 . +I wonder whether or not Tom can speak French . 我 不 知道 湯姆會 不 會 說 法語 . +I treated her as my own daughter . 我 把 她 當成 是 我 自己 的 女兒 一樣 對待 . +That toy is made of wood . 這個 玩具 是 用 木頭 做 的 . +He will be at home tomorrow . 他 明天 会 在家 . +Tom used to eat a lot of junk food . 汤姆 以前 经常 吃 很多 垃圾 食品 . +You have to study Japanese harder . 你 必須 更 努力 學習 日 語 . +Take your time . 慢慢来 . +I hurried in order to catch the first train . 我 匆匆忙忙 , 为的是 能 赶上 第一班 火车 . +You have to leave home at six . 你 必須 在 六點 鐘 時 從 家中 出發 . +Tom is late as usual . 汤姆 像 往常 一样 来晚 了 +He is good at dealing with children . 他 擅長 應付 小孩子 . +I cannot bring myself to do such a thing . 我 不能 让 自己 做 这样 的 事 . +Please be careful when crossing the street . 过 马路 时 请 小心 . +It is extremely hot and humid in Bali in December . 12 月份 巴厘岛 极其 炎热 和 潮湿 . +I subscribe to two newspapers . 我 訂閱 了 兩份 報紙 . +How many people know about us ? 有 多少 人 知道 我們 ? +A beautiful sunset , is not it ? 美麗 的 夕陽 , 不是 嗎 ? +This is difficult to believe . 這 讓 人 難以 置信 . +I wonder what will happen . 我 不 知道 會 發生 甚麼 . +He is in the kitchen . 他 在 厨房 . +There is a letter for you . 你 有 一封信 . +Could you lend me the book ? 你 能 借 我 这 本书 吗 ? +Tom studies at Harvard . 汤姆 在 哈佛 学习 . +Talk is cheap . 說 得 簡單 . +I have a bad toothache . 我 牙痛 得 厲害 . +I know what you mean . 我 知道 你 的 意思 . +The meal satisfied his hunger . 這 頓 飯 讓 他 充 饑 解 餓 了 . +Only Takeuchi did not accept the invitation . 只有 竹 內 沒有 接受 邀請 . +We are confident of victory . 我們 有 信心 獲勝 . +When did you learn how to swim ? 你 什么 时候 学会 游泳 的 ? +I heard him coming downstairs . 我 聽 見 他 下樓 的 聲音 . +She never wears green . 她 從來 不 穿 綠色 的 衣服 . +I was not drunk . 我 沒醉 . +We will be here for three more days . 我們 還 要 在 這里 待 三天 . +Do not touch this with your dirty hands . 别 用 你 的 脏手 碰 这个 . +Actions speak louder than words . 坐 而言 不如 起 而 行 . +I do not feel like studying . 我 没有 强烈 的 欲望 去 学习 . +I am not guilty of anything . 我 没有 对 任何 事 感到 有罪 . +She is sitting on the bench . 她 坐在 長椅 上 . +Tom has been learning French for a few years . 汤姆 学 了 几年 法语 . +I visited him a week ago today . 我 在 一周 前 的 今天 拜訪 了 他 . +He has lost his job . 他 已經 失去 了 他 的 工作 . +Everything went well . 一切 都 很 顺利 . +I do not know if I can do it . 我 不 知道 我 能 不能 做 . +She visits us every other day . 她 每 兩天 探訪 我們 . +How did you draw this picture ? 你 怎么 画 这 幅画 ? +I thought you said you did not see anything . 我 記得 你 說 你 甚麼 也 沒 看見 . +You 'd better relax a bit . 你 最好 休息 一下 . +Is that our problem ? 那 是 我們 的 問題 嗎 ? +I was not implying anything . 我 沒有 暗示 甚麼 . +Tom and Mary have a daughter and a son . Tom 和 Mary 有個 女兒 和 兒子 . +You like elephants . 你 喜欢 大象 . +Tom is writing a letter to his best friend . 汤姆 正 给 他 的 好友 写信 . +He must have said so without giving it much thought . 他 一定 没有 多 考虑 就 说 了 . +Love does not exist . 愛 不 存在 . +I still can not believe you are married . 我 仍然 無法 相信 你 結婚 了 . +I have not watched that video yet . 我 还 没 看过 那段 视频 . +I can not see anything without my glasses . 我 没 带 眼镜 就 什么 都 看不到 . +I will go on ahead . 我 會 繼續 前 進 . +He painted a dog . 他 畫 了一 隻 狗 . +A couple of flights were delayed on account of the earthquake . 一些 航班 由 於 地震 被 延誤 了 . +I am a college student . 我 是 个 大学生 . +You are the one who must decide . 你 是 要 做 決定 的 人 . +I saw Tom having an argument with Mary . 我 见 汤姆 跟 玛丽 争论 . +I do not know if he can come tonight . 我 不 知道 他 今晚 會 不 會 來 . +That is logical . 那 符合 逻辑 . +Mary , I love you . 玛丽 , 我 喜欢 你 ! +I have nothing to do with the affair . 我 跟 這件 事 無關 . +She is wearing a white dress today . 她 今天 穿著 白色 的 衣服 . +Tom said he was not sure what Mary wanted to do . 汤姆 说 他 不 确定 玛丽 想 做 什么 . +Shut the door , please . 請關 上門 . +I can not predict what will happen . 我 不能 預言會 發生 甚麼 . +If anything should happen , please let me know . 如果 发生 了 什么 , 请 让 我 知道 . +Which country are you from ? 你 是从 哪个 国家 来 的 ? +I wish that I could speak French better . 我 希望 我 能 说 法语 说 得 更好 . +Get me some towels from the bathroom . 给 我 从 浴室 拿 几条 毛巾 来 . +It is really bad for your eyes . 它 对 你 的 眼睛 有害 . +I like dogs and my sister likes cats . 我 喜欢 狗 , 我 妹妹 喜欢 猫 . +She must be angry with me . 她 一定 在 生 我 的 氣 . +Are you two ready ? 你们 两个 人 都 准备 好了吗 ? +May I eat something ? 我 可以 吃 點 什麼 嗎 ? +This bridge was built two years ago . 這 座 橋 是 在 兩 年前 建造 的 . +He drove the truck to Dallas . 他 開 卡 車 到 達 拉斯 . +She identified him as the murderer . 她 確認 他 是 殺 人 兇 手 . +The whole family was sick in bed . 全家 都 病倒 了 . +Tom is obese , is not he ? 汤姆 很胖 , 是 吧 ? +I am coming . 我 來 了 . +Everyone will die . 人 固有 一 死 . +Do not worry about me . 不要 擔心 我 . +He has gone to Britain . 他 已经 去 了 英国 . +This is my bedroom . 這 是 我 的 臥室 . +You must be careful not to make him angry . 你 要 小心 別 惹 他 生氣 . +Stick a stamp on the envelope . 把 郵票 貼 在 信封 上 . +She asked a very good question . 她 問 了 一個 非常 好 的 問題 . +Eat a lot of vegetables . 多 吃 点 蔬菜 . +You have cute eyes . 你 有 一双 很 可爱 的 眼睛 . +The baby tore up a ten @-@ dollar bill . 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Where is the dining room ? 餐厅 在 哪里 ? +Tom got ready for bed . 湯姆 準備 睡覺 . +You need to leave . 你 必須 離開 . +What he says is total nonsense . 他 说 的话 根本 毫无意义 . +Tom put his wallet on the table . 汤姆 把 钱包 放在 了 桌子 上 . +How many students are there in your school ? 你们 学校 有 多少 学生 ? +I am tired of him bawling me out . 我 厭煩 了 他 對 我 說 教 . +What do you have for breakfast ? 你 早餐 吃 什么 ? +She has a rose in her hand . 她 手里 拿 着 一 朵玫瑰 . +You may go anywhere . 您 可以 随便 去 哪儿 . +I bought a book online . 我 在 網上 買 了 一本 書 . +He wanted to get his shirts washed . 他 想要 把 他 的 襯衫 洗 乾 淨 . +What do you need this money for ? 你 需要 這些 錢 做 什麼 ? +We think that he is honest . 我們 認為 他 誠實 . +The TV remote control is under the couch . 电视 遥控器 在 沙发 下面 . +It is great . 真是 太好了 . +I have a sore throat . 我 喉嚨 痛 . +Tom owes us a favor . 汤姆 欠 我们 个情 . +You are going to be a mommy . 你 要 當 媽 了 . +I am thinking about that matter . 我 在 想 那個 問題 . +It is not a watch . 這 不是 手 錶 . +It will be finished in a day or two . 一兩天 內 就 能 結束 . +We have our own problems to solve . 我们 有 自己 的 问题 要 解决 . +Why are you so mad ? 你 為 什麼 這麼 生氣 ? +I was about to go look for you . 我 剛才 正要 找 你 . +My mother was up late last night . 我 母亲 昨天 很晚 还 醒 着 . +Please give me your permanent address . 請 給 我 你 的 永久 地址 . +It is two miles from here to the park . 從 這裡 到 公園 距離 兩 英里 . +Others are less optimistic . 其他人 不 那么 乐观 . +She married him for his money . 她 为了 他 的 钱 嫁给 了 他 . +It took me three hours to do my homework . 我 花 了 3 小时 做作业 . +Will you please show me the way ? 請 您 給 我 指 一 指路 好 嗎 ? +Ask her when she will come back . 问问 她 什么 时候 回来 . +I like to run . 我 喜欢 跑步 . +She showed us a beautiful hat . 她 給 我們 看 了 一頂 漂亮 的 帽子 . +Tom is hair was disheveled . 湯姆頭 發 蓬亂 . +Can you drive a manual transmission ? 你 會 開手 排車 嗎 ? +Tom had never seen Mary so busy . 汤姆 从没 见 过 玛丽 这么 忙 . +I am not so sure Tom is wrong . 我 不 太 確定 湯姆 錯 了 . +He graduated from Tokyo University . 他 畢業 於 東京 大學 . +Have a nice day . 祝 你 一天 过 得 愉快 . +Do not worry about others . 不用 担心 其他人 . +I am single . 我 单身 . +The meeting lasted two hours . 這個 會議 持續 了 兩個 小 時 . +There were lots of people . 有 很多 人 . +I like Tom , too . 我 也 喜歡 湯姆 . +I like to listen to the radio . 我 喜歡 聽 廣播 . +Ten minutes later , our car ran out of gas . 我们 的 车 再 过 十分钟 就 没油 了 . +This medicine will give you some relief . 这 药会 让 你 舒服些 . +What will you give Tom ? 你 会 给 汤姆 什么 ? +We have had this discussion before . 我們 以前 討論 過 . +What is the name of this tune ? 這 首 曲子 叫 什麼 名字 ? +The books here are mine . 這兒 的 書 是 我 的 . +Be realistic ! 现实 点 ! +I invited my neighbor to breakfast . 我 請 我 的 鄰居 來 吃 早 飯 . +You are a good person . 你 是 一個 好人 . +We have to get through this . 我们 要 了结 此事 . +Tom did not doubt that there would be a lot of people there . 汤姆 确定 那里 会 有 很多 人 . +Are you angry at Tom ? 你 在 生 汤姆 的 气 吗 ? +I do not fear death . 我 不怕死 . +She should have been more careful . 她 本來 應該 更 小心 的 . +Fish is cheap today . 今天 魚 很 便宜 . +Tom was not surprised to see me . 汤姆 见到 我 并 没有 惊讶 . +I think it is a really good thing . 我 認為 它 真是 好事 . +I wish I were taller . 我 希望 我 比較 高 . +He put a hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +Tom did not try to hide the truth . 湯姆 並 沒有 試著 要 隱瞞 實情 . +I thought he was my brother . 我 以为 他 是 我 弟弟 . +It is just big enough for Tom . 这 尽够 汤姆 的 . +Tom is a rabbi . 汤姆 是 个 拉比 . +I want some cake . 我 想要 点 蛋糕 . +I used to play tennis . 我 以前 打网球 . +Eating raw eggs could be bad for you . 吃 生蛋 可能 是 危險 的 . +We can deliver it this evening . 我們 今天 晚上 可以 運送 它 . +Why should I care what you think ? 為 什麼 我 應該 在乎 你 怎麼 想 ? +Were you busy ? 您 当时 在 忙 吗 ? +He sometimes comes to see me . 他 有时 会 来看 我 . +Tom did not want to work in Boston . 汤姆 不想 在 波士顿 工作 . +Iceland used to belong to Denmark . 冰島 以前 屬 於丹麥 . +This man is not reliable . 这个 人 靠不住 的 . +According to my calculation , she should be in India by now . 根據 我 的 估計 , 她 現在 應該 在 印度 了 . +It is none of your business . 這 不關 你 的 事 . +This is a very hard mattress . 這個 床墊 很 硬 . +The jet landed at Tokyo . 這 架 客機 降落 在 東京 了 . +We talked over the plan with him . 我們 和 他 談 了 這個 計劃 . +This is the house where she used to live . 这 是 她 曾经 住 过 的 房子 . +I know him . 我 認識 他 . +Tom and Mary are studying together in the library . 湯姆 和 瑪麗 在 圖書館 一起 學習 . +Whose bike is this ? 这辆 自行车 是 谁 的 ? +I am delighted to see you . 我 很 高兴 见到 你 . +He behaved as if he were crazy . 他 表现 的 像 个 疯子 . +Lake Baikal in Russia is the deepest lake in the world . 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +You or I will be chosen . 你 或者 我会 被 选中 . +I know why Tom is studying French . 我 知道 為 甚麼 湯姆學法語 . +The rear gate was open . 后门 曾 开 着 . +Do you think that he is equal to the task ? 你 认为 他 能够 胜任 这个 任务 吗 ? +She said that she was happy . 她 说 了 她 很 幸福 . +The pain has started to ease now . 痛 开始 减轻 了 . +I met her late in the evening . 我 在 深夜 遇見 了 她 . +Can we go now , please ? 请问 我们 现在 能 走 吗 ? +We got together in the park . 我們 在 公園 裡 聚在一起 . +They tied the thief to the tree . 他们 把 小偷 绑到 了 树上 . +Let is start with Lesson Ten . 我们 从 第十课 开始 吧 . +It is my birthday soon . 我 的 生日 就 快 到 了 . +They became close friends . 他們 成 了 密友 . +I was late to school . 我 上学 迟到 了 . +The bicycle under the tree is mine . 那 輛 在 樹下 的 自行 車 是 我 的 . +His teeth are yellow from smoking too much . 他 的 牙齿 被 烟熏 黄 了 . +Tom tried to catch up with Mary , but he could not . 汤姆 试图 去 追上 玛丽 , 但是 他 没 成功 . +Was his story true ? 他 的 故事 是 真的 吗 ? +Do you know how to do this ? 你 知道 怎么 做 吗 ? +Where are we going to meet ? 我们 在 哪里 见面 ? +It is over there . 在 那里 . +Tom has absolutely no enemies . 汤姆 绝 没有 敌人 . +Give me some paper to write on . 給 我 一些 紙 來 寫 字 . +He is no longer a boy . 他 不再 是 个 男孩 . +Is Tom eating ? 汤姆 在 吃饭 吗 ? +I was not yelling . 我 沒有 在 吼 . +I need an assistant who speaks French . 我 需要 一個 會 說 法語 的 助理 . +I am such an unlucky guy . 我 真是 不 走运 的 家伙 . +The Colombian government demanded more money . 哥伦比亚政府 要 了 更 多 的 钱 . +Everyone knows that Tom is French is good . 每个 人 都 知道 汤姆 的 法语 很 好 . +I have a lot of friends living in Boston . 我 有 很多 朋友 住 在 波士顿 . +For here , or to go ? 內用 還 是 外帶 ? +You should set a good example for your children . 你 应该 给 你 的 孩子 们 树立 好榜样 . +There is an orange on the table . 桌上 有 一只 橙子 . +He did nothing but cry . 他 只是 哭 . +She gave him the car . 她 给 了 他 车 . +Bring your student ID card . 帶上 你 的 學生卡 . +I do not like to swim in the pool . 我 不 喜歡 在 泳池 裡 游泳 . +Tom did not know that what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +My grandfather is photograph is on the wall . 我 祖父 的 照片 在 墙上 挂 着 . +He showed me his photograph album . 他 給 我 看 了 他 的 影集 . +Without water , we cannot exist . 没有 水 , 我们 无法 生存 . +The city was soon occupied by the soldiers . 很快 , 城市 就 被 士兵 占领 了 . +I can not find anything wrong with his theory . 我 在 他 的 理論 中 找 不到 任何 問題 . +The train came on time . 火车 准时 到 了 . +Tom passed away on October 20th , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +You do not need to work on Sundays . 星期天 的 時候 , 你 不用 工作 . +I was impressed with her work . 她 的 作品 給 我 留下 了 深刻印象 . +What would you like to be in the future ? 你 以后 想 当 什么 呢 ? +I am on a diet . 我 在 節食 . +I love passion fruit juice . 我 愛 百香果汁 . +He is very angry . 他 非常 生气 . +I am just a regular office worker . 我 只是 一個 普通 的 上班族 . +He is married with two children . 他 已婚 並 育有 兩個 孩子 . +Please answer all the questions . 請 回答 所有 問題 . +I really have to be going . 我 真的 得 走 了 . +I can open the window . 我 可以 打開 這 扇 窗 . +I want you to work harder . 我 希望 你 更加 努力 地 工作 . +This is your key . 這 是 您 的 鑰匙 . +I wonder if they will get divorced . 我 不 知道 他們 是否 會 離婚 . +Tom does not seem to be a Canadian . 湯姆 看來 不是 加拿大人 . +How do you make your money ? 你 怎麼 賺 錢 ? +" Do you think he will come ? " " I hope not . " " 你 認為 他 會 來 嗎 ? " " 我 希望 不 會 . " +Is there any chance that he will resign ? 他 有 可能 辭職 嗎 ? +Do not pay any attention to Tom . 千万别 理 汤姆 . +Do you often hear from him ? 你 常常 收到 他 的 音訊 嗎 ? +I think you are going to want to sit down . 我 觉得 你 想 坐下 . +The Prime Minister is speech was calculated to anger the opposition parties . 總理 的 發言 估計 激怒 了 在野 黨 . +You should go . 你 最好 去 . +You spend too much money . 你 花 太 多 钱 了 . +Cows provide us with milk . 奶牛 为 我们 提供 牛奶 . +She always gets her own way . 她 總是 隨心 所欲 . +That mountain is covered with snow . 這 座 山 被 雪所覆蓋 . +Close the door . 关门 . +You have to clean your room . 你 该 打扫 你 的 房间 . +Call Tom and Mary this evening . 今晚 给 汤姆 和玛丽 打电话 . +As soon as she opened the door , a cat ran out . 她 一開 門 , 一 隻 貓 就 跑 了 出 來 . +She is a famous singer . 她 是 一个 著名 的 歌手 . +Love blinded him to her faults . 愛情 讓 他 盲目 到 看不到 她 的 錯 . +We started at six . 我們 六點 開始 . +I am sure Tom would approve . 我 確定 湯姆會 同意 . +I am not at all satisfied with this result . 我 對 這個 結果 一點 兒 也 不 滿意 . +What do you want to do ? 你 想 做 什麼 ? +He got away disguised as a policeman . 他 偽裝 成 警察 逃跑 了 . +Can you wake me up at 7 : 00 tomorrow ? 你 明天 早上 七點 可不可以 叫 我 起床 . +No one believed what I said . 没有 人 相信 我 说 的话 . +This is not difficult . 這個 不 難 . +There is no need to get so angry . 沒有 必要 這麼 生氣 . +You have everything . 您 全都 有 . +His pictures were hung on the wall . 他 的 画 被 悬挂 在 墙上 . +Have you finished it ? 你 做 完 了 嗎 ? +I continued singing . 我 继续 唱歌 . +This lake is deepest at this point . 这里 是 湖 最深 的 地方 . +I think this machine is in need of repair . 我 认为 这 机器 需要 修理 . +It has been raining since last Thursday . 從 上週 四 開始 一直 下雨 . +I am scared of wild animals . 我 怕 野兽 . +I think you are jealous . 我 觉得 你 妒忌 了 . +We had a lot of snow last year . 去年 下 了 很多 雪 . +You must be mentally exhausted . 你 肯定 脑子 糊掉 了 . +Are you absolutely certain about this ? 你 絶 對 確 定 這 事 嗎 ? +Study hard so you do not fail . 努力 學習 , 這樣 你 就 不 會 失敗 . +She has broken the toaster again . 她 再次 弄壞 了 烤 麵 包 機 . +He lives just around the corner . 他 就 住 在 附近 . +I do not care if it is a bit cold . 稍微 冷 点儿 不要紧 . +I was very confused by his questions . 我 對 他 的 問題 感到 非常 困惑 . +Good afternoon . 下午 好 . +Tom bought new gloves . 湯姆 買 了 新 手套 . +What kind of movie do you want to watch ? 你 想 看 哪种 类型 的 电影 ? +Dinosaurs became extinct a very long time ago . 恐龍 在 很久以前 滅 絶 了 . +I cut myself shaving this morning . 我 今天 早上 刮 鬍 子 的 時 候 把 自己 弄 傷 了 . +Tomorrow is weather should be sunny with occasional rain . 明天 天气 晴 转 阵雨 . +I want a few potatoes . 我 要 幾個 土豆 . +Everybody laughed . 大家 笑 了 . +Please phone me before you come . 請 你 來 之前 打 電話 給 我 . +You are too sensitive to criticism . 你 對 批評 太 敏感 了 . +I have a certain amount of money on me . 我 有些 钱 . +I do not know what to open it with . 我 不 知道 用 什么 能 打开 它 . +It is hard to predict what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants more . 他 想要 更多 . +He got injured in the traffic accident . 他 在 這場 交通 意外 中 受 了 傷 . +His absence gave birth to all sorts of rumors . 他 的 缺席 导致 了 各种 谣言 的 产生 . +They serve excellent food here . 他們 這裡 提供 一流 的 美食 . +The smell of roses filled the room . 玫瑰 香水 的 味道 充满 了 房间 . +My hands and legs are swollen . 我 的 手 和 腳 都 腫 了 . +He is your friend . 他 是 你 的 朋友 . +I can not swim at all . 我 一点 也 不会 游泳 . +I do not like sushi . 我 不 喜欢 寿司 . +Ask him where he parked his car . 問 問 他 把 他 的 車 停 在 那裡 . +Tom is the tallest in his class . 湯姆 是 班上 最高 的 . +She squeezed the juice from many oranges . 她 用 了 許多 柳橙 來 榨汁 . +He went to Nagoya on business . 他 到 名古屋 洽談 業務 . +I arrived at the station on time . 我 準 時 到 達 了 車站 . +This is all that I know about him . 这 就是 我 关于 他 知道 的 一切 . +Tom might have missed the last train . 汤姆 可能 错过 了 最后 一班 列车 . +She seems to be in love with my brother . 她 似乎 喜歡 上 了 我 哥哥 . +Welcome back . 欢迎 回来 . +That is very big . 那 是 很大 的 . +Tom and I are almost done . 湯姆 和 我 要 做 完 了 . +A stranger spoke to me on the bus . 在 公车上 , 一个 陌生人 和 我 说 了 话 . +I am cooking dinner . 我 准备 晚餐 . +Let is not discuss the matter today . 今天 讓 我們 不要 討論 這件 事 . +I am as tall as you . 我 跟 你 一樣 高 . +Can you distinguish silver from tin ? 你 能 分辨 銀和錫 嗎 ? +What is this ? 這 是 什麼 ? +Take off your socks . 把 你 的 袜子 脱 了 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +It looks like your dog is thirsty . 你 的 狗 看起来 口渴 了 . +Visiting all the tourist sights really wore me out . 參觀 所有 觀光勝 地 累壞 了 我 . +She may be late , in which case we will wait . 她 可能 迟到 , 然后 我们 就要 等 . +Tom says he hopes Mary can do that . 汤姆 说 他 希望 玛丽 能 做到 . +You should put your coat on . 你 應該 把 大衣 穿 上 . +I will take you to the bus stop . 我会 带 你 到 公交车站 . +You are irresistible . 你 令人 难以 抗拒 . +I like you . 我 喜欢 你 . +Tom was replaced by Mary . 汤姆 被 玛丽 替换 下来 . +I think I am right . 我 想 我 是 對 的 . +Every day I waited for her at the bookstore after school . 我 每天 放学 后在 书店 那里 等 她 . +The sky turned dark . 天暗 了 下来 . +Europe has a smaller population than Asia . 欧洲 的 人口 比 亚洲 少 . +I have eight siblings . 我 有 八個 兄弟姐妹 . +We studied English . 我们 学 了 英语 . +There were two pieces of cake . 那 有 两块 蛋糕 . +Let me handle this . 讓 我 來 處理 . +I want a boat that will take me far away from here . 我 想要 一艘船 带 我 远离 这里 . +I think that Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +I want to keep moving . 我 想 继续 走 . +He comes to Tokyo once a year . 他 一年 來 東京 一次 . +Tom has not taken a bath in a long time . 汤姆 很 长时间 没 洗澡 了 . +I can do it by myself . 我 可以 自己 做 . +I handed the mike to him . 我 把 麥克風 遞 給 他 . +Will you be here tomorrow ? 你 明天 在 这里 吗 ? +I was vaccinated against the flu . 我 接种 了 流感疫苗 . +That should make you happy . 那 该 让 你 高兴 . +I want to know where she went . 我 想 知道 她 去 哪儿 了 . +It is fun to travel . 旅行 是 令人 快乐 的 . +I believe in love . 我 相信 爱情 . +He wore a dark sweater . 他 穿 了 一件 深色 毛衣 . +Tom should thank me . 汤姆 应该 感谢 我 . +I can not do it . 我 做 不到 . +I called Tom up . 我 打 電話 給 湯姆 了 . +I do not think he can help you . 我 覺得 他 不能 幫 你 . +I like to travel by train . 我 喜歡 搭 火車 旅行 . +Mathematics is difficult for me . 數學 對 我 來說 很 難 . +How much is the commission ? 手续费 是 多少 ? +Did you check all the items on the shopping list ? 你 检查 购物单 上 所有 的 项目 了 吗 ? +Can you copy this for me ? 你 能 替 我 拷貝 這個 嗎 ? +Tom has calmed down . 汤姆 冷静下来 了 . +Tom has his own bedroom . 湯姆 有 他 自己 的 房間 . +We are waiting for Tom . 我们 在 等 汤姆 . +She was very proud of her father . 她 非常 地 以 她 父親 為 榮 . +All horses are animals , but not all animals are horses . 所有 的 马 都 是 动物 , 但 并非 所有 的 动物 都 是 马 . +The teacher asked me which book I liked . 老師 問 我 我 喜歡 哪 本書 . +Do you know where they come from ? 你 知道 他们 来自 哪里 吗 ? +His methods are not scientific . 他 的 方法 不 科学 . +I can not stand his arrogance . 我 受不了 他 的 傲慢 . +Here is the book you are looking for . 你 正在 找 的 書 在 這裡 . +A stitch in time saves nine . 防微 杜漸 . +A dog can run faster than a man can . 狗 跑 得 比 人 快 . +I ate an apple . 我 吃 了 一個 蘋果 . +The glass is dirty . 玻璃 髒 了 . +We will stay here until Sunday . 星期天 前 我們 將 會 待 在 這裡 . +I will pay . 我 來付 錢 . +You should seriously consider working here . 你 应该 认真 考虑 在 这里 工作 的 事 . +I made her angry . 我 讓 她 生氣 . +I am leaving for Canada tomorrow . 我 明天 要離 開去 加拿大 . +Have you ever seen Tom when he is mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +It is already eleven . 已经 是 11 点 了 . +Most people think I am crazy . 大部份 的 人 覺得 我 瘋 了 . +I wash my hands before eating lunch . 我 在 吃 午 饭前洗手 . +He could not answer that question . 他 無法 回答 這個 問題 . +You look like you have just lost your best friend . 你 看上去 就 像是 刚刚 失去 了 自己 最好 的 朋友 似的 . +He is an Italian . 他 是 義 大利 人 . +You have to start somewhere . 你 必须 有 一个 出发点 . +I have met so many new people . 我 遇見 了 許多 新 的 人 . +I will play tennis this afternoon . 我 今天下午 會 去 打 網球 . +I applied for a summer internship . 我 應徵 了 一個 暑期 實習 . +Many kinds of birds live in Japan . 許多種 鳥類 住 在 日本 . +I know what it is like to lose someone . 我 知道 这 看起来 像是 失去 了 某人 . +Tom abandoned hope . 湯姆 放棄 了 希望 . +Is Tom really a nice guy ? 汤姆 是 个 好人 吗 ? +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +These are the new ones . 這些 是 一些 新 的 . +This medicine will help you . 這個 藥會 幫助 你 . +I do not eat as much as I used to . 我 比 以前 吃 得 少 了 . +He could not hold his temper any longer . 他 再也 忍不住 气 了 . +I am okay . 我 沒事 . +How was the food ? 食物 怎麼樣 ? +He has made the same mistake twice . 他 犯 了 兩次 相同 的 錯誤 . +He is writing a long letter . 他 写 长信 . +Open your eyes , please . 请 睁开眼睛 . +What do you usually do in your spare time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +Is there anything you want to eat ? 有 什么 想 吃 的 吗 ? +Tom is a scumbag . 湯姆 是 個 无賴 . +I built a new house . 我 盖 了 栋 新房子 . +I have finished writing the letter . 我 已經 寫 完信 了 . +I wrote a letter . 我 写 了 一封信 . +I have no energy today . 今天 我 沒有 精神 . +Raise your hands . 手 举 起来 . +I can sing well . 我 唱歌 很 好听 . +I do not know when he will come . 我 不 知道 他 什么 时候 来 . +I made up my mind to go there . 我 决定 去 那里 . +I must help her . 我 必須 幫助 她 . +She abandoned her children . 她 抛弃 了 她 的 孩子 . +Chocolate has more iron than spinach . 巧克力 的 鐵質 含量 比 菠菜 還 要 多 . +You should have warned him sooner . 你 應 該 要 更快 警告 他 的 . +Strictly speaking , the earth is not round . 嚴格 來說 , 地球 不是 圓 的 . +I really do not understand this problem . 我 真的 不 懂 这个 问题 . +Dad bought me a camera . 爸爸 给 我 买 了 一个 照相机 . +I felt that my honor was at stake . 我 覺得 我 的 名譽 受到 了 威脅 . +How about going to the movies ? 去 看 電影 怎樣 ? +Do you want to know what I see ? 你 想 知道 我 看见 什么 了 吗 ? +You may go anywhere you like . 你 喜欢 去 哪儿 就 可以 去 哪儿 . +With the T.V. on , how can you keep your mind on your studies ? 你 开 着 电视 怎么 能 安心 学习 呢 ? +I think it will turn out fine . 我 觉得 没 问题 . +Wait till the light turns green . 等到 指示 燈 變成 綠色 . +Perhaps she will come tomorrow . 也許 她 明天 會來 . +I wish I were in Paris now . 但 願 我 現在 在 巴黎 . +You hate Tom , do not you ? 你 恨 湯姆 , 不是 麼 ? +I can read without glasses . 没 眼镜 我 可以 读 . +Things are getting out of control . 事情 要 失控 了 . +Tom gave a different answer . 湯姆 給出 了 不同 的 答案 . +Are you following me ? 你 在 跟著 我 嗎 ? +She discovered that she had run out of salt . 她 发现 她 已经 断盐 了 . +She killed herself yesterday . 她 昨天 自杀 了 . +What did he say ? 他 说 了 什么 ? +If it rains tomorrow , I will not go . 如果 明天 下雨 , 我 就 不 去 . +Did you play baseball yesterday ? 你 昨天 打 棒球 了 没有 ? +Wait a moment . 請 稍 等 . +My father is hobby is fishing . 我 父親 的 嗜好 是 釣 魚 . +Why are you guys so angry ? 你們 為 什麼 這麼 生氣 ? +I live near the sea so I often go to the beach . 我 住 在 海边 所以 经常 去 海滩 . +Did she show you the picture ? 她 給 你 看 過 照片 了 嗎 ? +There must be a way to arrive at a diplomatic solution . 必须 有 外交 解决 的 途径 . +I do not know her . 我 不 認識 她 . +Mary can speak Japanese . 瑪麗會 講 日 語 . +Why would she lie ? 她 為 甚麼 要 說 謊 ? +That is my dictionary . 那 是 我 的 字典 . +I as well as you was late for school yesterday . 我 跟 你 一样 昨天 上学 迟到 了 . +Tom should not have been here today . Tom 今天 不該 在 這 . +" I never thought Tom would win . " " Me neither . " “ 我 没想到 汤姆 会 赢 . ” “ 我 也 是 . ” +Tell Tom that I do not need his help . 告诉 汤姆 我 不 需要 他 的 帮助 ! +He lives by himself . 他 一个 人 生活 . +You should do that as often as you can while you are still young . 趁 你 还 年轻 的 时候 , 你 应该 尽可能 经常 地 这样 做 . +I know that you are busy , too . 我 知道 , 您 也 很忙 . +Where is the Japanese Embassy ? 日本 大使 館 在 哪裡 ? +Tom said that he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +You remind me of your brother . 你 讓 我 想起 你 的 兄弟 . +I do not know if she wants to go with me . 我 不 知道 她 想 不想 和 我 一起 去 . +What time do you go home ? 你 几点 回家 ? +Is that pure gold ? 那 是 純金 嗎 ? +He is something of a scholar . 他 有 几分 像 学者 . +There is no doubt about it . 關於 此事 毫無疑問 . +Wear whatever you want to wear . 穿 你 想 穿 的 . +Tom does not write to me anymore . 汤姆 不再 给 我 写信 了 . +Which do you prefer , dogs or cats ? 狗 和 猫 你 更 喜欢 哪 一个 ? +I know this has not been easy for you . 我 知道 這 對 於 你 不 容易 . +He did not eat anything yesterday . 他 昨天 沒有 吃 任何 東西 . +He told me when to say yes . 他 告诉 我 什么 时候 该 说 是 . +Cash donations will be accepted . 接受 现金 捐赠 . +Do you have something to say to me ? 你 有事 想 对 我 说 吗 ? +My friends invited me to dinner . 我 的 朋友 邀請 我 去 吃 晚 飯 . +They do not always obey their parents . 他們 並 不 總是 服 從 他們 的 父母 . +It took a long time to take in what she was saying . 花 了 很久 才能 听懂 她 在 说 什么 . +I have already eaten breakfast . 我 已经 吃 过 早饭 了 . +Everyone was surprised . 所有人 都 很 吃惊 . +If you do not have anything nice to say , do not say anything at all . 如果 你 没 好话 说 , 那 就 什么 都 别说 . +They do not know each other very well . 他們 不 太 認識 對 方 . +Where are you going ? 你们 去 哪里 ? +I do not lie . 我 不 說 謊 . +Tom put down his paintbrush . 湯姆 放下 了 他 的 畫筆 . +All of the cookies are in the shape of stars . 所有 餅 乾 都 是 星星 的 形狀 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everything is normal . 一切正常 . +I like spring better than fall . 我 喜歡 春天 勝 過 秋天 . +There is something we need to talk about . 我们 有些 事 要 谈 . +Tom is a high school student . 湯姆 是 個 高中生 . +That is good , is not it ? 那 太好了 , 不是 嗎 ? +My aunt grows tomatoes in her garden . 我 阿姨 在 她 的 花園 種 蕃茄 . +Will you take a personal check ? 你 收 私人 支票 嗎 ? +Tom waited for Mary in front of the warehouse . 湯姆 在 倉庫 前 等 瑪麗 . +He took a walk before breakfast . 他 在 早餐 之前 散步 . +I need my boots . 我 需要 我 的 靴子 . +She married again in her mid @-@ forties . 她 在 四十多 歲 的 時候 再次 結婚 . +That tie goes well with your shirt . 那條 領帶 很 適合 你 的 襯衫 . +Are you finished with your work ? 你 完成 你 的 工作 了 嗎 ? +She despised him . 她 看不起 他 . +She burned her left hand . 她 的 左手 被 燙到 了 . +It is unfortunately true . 可惜 这 是 真的 . +I heard it on the radio . 我 從 廣播 中 聽到 它 . +Tom could not see anyone . 汤姆 看不到 任何人 . +I do not want to take such a risk . 我 不想 承担 这样 一个 风险 . +Tom is coming , too . 汤姆 也 来 . +We can not stay in here very long . 我們 不能 在 這裡 待 很 長 時間 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +He moved into my neighborhood . 他 搬到 了 我家 附近 . +We are eating bread . 我们 在 吃 面包 . +The class begins at 8 : 30 . 課程 八點半 開始 . +I can not follow Tom is logic . 我 跟不上 汤姆 的 逻辑 . +Tom got so absorbed in his work that he forgot to eat . 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 吃饭 . +He painted a picture of roses . 他 畫 了 一幅 玫瑰 的 畫 . +He has three older sisters . 他 有 三个 姐姐 . +None of the money is yours . 這些 錢 都 不是 你 的 . +Tom had to sell his house . 湯姆 必須 賣 了 他 的 房子 . +Do you know where to find Tom ? 你 知道 去 哪 找 汤姆 吗 ? +I want to sing a song . 我 想 唱 個 歌 . +That meat is chicken . 那個 肉 是 雞 肉 . +I spent my vacation at the beach . 我 在 海邊 度假 . +He keeps his room clean . 他 保持 他 的 房間 乾 淨 . +You must answer these questions . 你 必須 回答 這些 問題 . +Tom clapped . 湯姆 拍 了 手 . +Would you mind my opening the door ? 你 介意 我 開門 嗎 ? +They now have three kids . 现在 他们 有 三个 孩子 . +I will be there at once . 我 會 立刻 到 那裡 . +We want one . 我們 要 一個 . +I do not mind waiting for a while . 我 不介意 等 一會兒 . +This book is worth reading twice . 這 本書 值得 讀 兩遍 . +The young girl burst into tears . 這個 年輕 的 女孩 淚流 滿面 . +Can you hold on a second ? 你 能 等 一下 嗎 ? +They kept on walking . 他们 继续 走 . +I am an actress , not a model . 我 是 演员 , 不是 模特 . +I consider fruit to be the healthiest food . 我 將 水果 視為 最 健康 的 食物 . +Let me try it . 让 我 试试 . +You have a choice of black tea , coffee , or milk . 你 可以 选择 红茶 , 咖啡 或 牛奶 . +The plan was carried out . 计划 被 执行 了 . +It is taking a little longer than I expected . 我 花 了 比 預期 更 多 的 時間 . +This is not a tiger . 这 不是 老虎 . +He seldom gives his wife presents . 他 很少 給 他 的 妻子 禮物 . +We have to stop the bleeding . 我們 必須 止血 . +There was a cottage on the side of the hill . 山坡 上 有 一间 小屋 . +I was born on April 3 , 1950 . 我 出 生于 1950 年 4 月 3 日 . +Could you show me this bag ? 你 能 給 我 看看 這個 包 嗎 ? +The landlord says he wants to raise the rent . 地主 说 他 要 提高 租金 . +Have you ever seen him swimming ? 你 曾 看 過 他 游泳 嗎 ? +I did not mean to do that . 我 不是故意 那樣 做 . +She almost drowned . 她 差点 就 溺水 了 . +That shop sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +That was the part that Tom and I were most confused about . 这 是 我 和 汤姆 最 困惑 的 部分 . +Hokkaido is to the north of Sendai . 北海道 在 仙台 的 北方 . +Everyone attacked my opinion . 每個 人 都 抨擊 我 的 意見 . +Soccer is the most popular of all sports . 足球 是 所有 体育运动 中 最 受欢迎 的 . +I will see you whenever it suits you . 只要 你 方便 , 我什麼 時候 都 可以 跟 你 見 面 . +Turn on the computer . 打開 電腦 . +There is a strike . 有 罢工 . +Clearly you are mistaken . 顯然 的 , 你 錯 了 . +We found that everyone was asleep . 我們 發現 每個 人 都 睡著 了 . +I do not want to take the chance . 我 不想 冒 這個 險 . +Actions speak louder than words . 行動勝 於雄辯 . +He ignored his father is advice . 他 不 顧 他 父親 的 忠告 . +I am surprised that you do not know about their marriage . 我 很 惊讶 , 你 竟然 不 知道 他们 结婚 . +I want him to read this . 想 让 他 读 这个 . +Let is draw lots to decide who goes first . 来 抽签 决定 谁 先 走 吧 . +I hate Mondays . 我 讨厌 星期一 . +My uncles come to see me from time to time . 我 的 叔叔 們 ( 舅舅 們 ) 有時 會 來 探望 我 . +The sky is full of stars . 天空 中 繁星点点 . +Keep your voice down . 你 说话 小点声 . +I need a Japanese @-@ English dictionary . 我 需要 一本 日 英 字典 . +Marriage is the main cause of all divorces . 结婚 是 所有 离婚 的 主要 原因 . +There was scarcely any money left . 几乎 没 剩下 钱 . +Will you please show me the way ? 請 你 告訴 我路 怎麼 走 好 嗎 ? +Do you have this jacket in different colors ? 你 有 不同 顏色 的 外套 嗎 ? +I want everyone to help me clean the house . 我 希望 所有人 都 来 帮 我 打扫 房子 . +My daughter graduated from the university today . 我 女兒 今天 大學 畢業 . +I bought the book for myself , not for my wife . 我 給 我 自己 買 了 書 , 不是 給 我 妻子 . +How would you like your steak ? 您 的 牛排 要 几分 熟 ? +It was very kind of you to lend me an umbrella . 你 借给 我 伞 真好 . +She is looking for her car keys . 她 在 找 她 的 車 鑰匙 . +Get out ! 滾 出去 ! +That red dress suited her . 那件 紅色 的 洋裝 適合 她 . +Tom was a little late . Tom 迟到 了 一小 段时间 . +I do not think this is a good idea . 我 觉得 这 主意 不行 . +He ran . 他 跑 了 . +There is nothing good on television . 電視 上 沒有 什麼 好事 . +Are you writing a letter ? 你 在 寫信 嗎 ? +Tom thought that he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +He married an air hostess . 他 娶 了 一个 空姐 . +I left my briefcase on the bus . 我 把 我 的 公事包 留在 公車 上 了 . +Who were you talking with ? 你 和 谁 说话 呢 ? +We are just about finished here . 我們 快要 結束 了 . +She thanked us for our help . 她 感謝 我們 的 幫助 . +The company abandoned that project . 公司 放弃 了 那个 项目 . +That does not make sense . 这 没有 任何 意义 . +I am looking forward to your visit . 我 期待 著 您 的 光臨 . +Tom is more famous than you . 湯姆 比 你 有名 . +Tom could not think of a good place to hide it . 湯姆 想不到 個 好 地方 藏 它 . +He is likely to win the game . 他 有 可能 赢得 比赛 . +There is a cottage beyond the bridge . 桥 对面 有 一间 小屋 . +Accuracy is important in arithmetic . 准确性 在 计算 中 很 重要 . +You should have introduced yourself to the girl . 你 應該 向 那個 女孩 自我 介紹 的 . +Save it on the external hard drive . 把 它 保存 在 外接式 硬碟 . +I caught a cold last month . 上個月 我 感冒 了 . +That student runs fast , does not he ? 那个 学生 跑 得 很快 , 不是 吗 ? +Why did not Tom need to go to Boston ? 为什么 汤姆 不 需要 去 波士顿 +I am afraid you will have to go in person . 我 恐怕 您 必须 亲自 去 . +It may sound strange , but what she said is true . 聽 起來 或許 有 點怪 , 但 她 說 的 是 真的 . +I hope I make a good first impression . 我 希望 我 能 留下 個 好 的 第一印象 . +As long as we love each other , we will be all right . 只要 我們 彼此 相愛 , 我們 會 沒事 的 . +There is not a cloud in the sky . 天上 没有 云 . +I will give you anything that you want . 我 會 給 你 任何 你 想要 的 東西 . +Would you like some coffee ? 你 要 喝咖啡 吗 ? +It will cost about 10,000 yen . 它 將 花 費大 約 10 , 000 日元 . +Those pictures were painted by him . 那些 圖畫 是 他 畫 的 . +Excuse me , where is the train station ? 抱歉 , 火車 站 在 哪裡 ? +He has a good command of English . 他 有 很好 的 英語 能力 . +Everybody needs to calm down . 大家 需要 冷静下来 . +They do not talk to us anymore . 他們 不再 跟 我們 談 了 . +What are you after ? 你 想要 什么 ? +I can not bear the sight of him . 我 受不了 他 的 視線 . +He always tells the truth . 他 總是 說 實話 . +The orange left a strange taste in my mouth . 橙子 在 我 嘴里 留下 了 一种 奇怪 的 味道 . +She resembles her aunt . 她 长 得 像 她 姑姑 . +Please turn up the AC a little bit . 请 你 把 冷气 调 高点 . +Let is take turns rowing the boat . 讓 我們 輪流 划船 . +Do you really think that I look like Tom ? 你 真的 觉得 我 长 得 像 汤姆 吗 ? +She went to Mexico by herself . 她 独自一人 去 了 墨西哥 . +She went either to London or to Paris . 她 不是 去 了 伦敦 就是 巴黎 . +We were not able to find Tom . 我們 找 不到 湯姆 . +He caught them stealing apples . 他 抓到 了 他們 在 偷 蘋果 . +Because of its origins , Canadian English has features of both American and British English . 由 於 它 的 起源 , 加拿大 英語 具有 美國 英語 和 ​ ​ 英國 英語 兩者 的 特色 . +I need a new pair of shoes . 我 需要 一双 新鞋 . +You 'd better go in person . 你 最好 親自 去 . +Tom fed his leftovers to his dog . 湯姆 把 他 的 廚餘 餵 給 他 的 狗 吃 . +Japan depends on imports for raw materials . 日本 依賴 進口 原料 . +Let is divide this money between you and me . 这 钱 你 和 我 分 了 吧 . +I got lost in the woods . 我 在 树林 里 迷路 了 . +I am sorry , I can not stay long . 对不起 , 我 不能 待 很久 . +Give her the book . 把 这 本书 给 她 . +Tom said he wanted to try riding a unicycle . 湯姆 說 他 想 試試 騎 獨輪車 . +That did occur to me . 那 就 發生 在 我 身上 . +I do not know anything about their plan . 我 對 他們 的 計劃 一無 所知 . +He sat there with his legs crossed . 他 翹著 二郎腿 坐在 那裡 . +I have no place to sleep tonight . 我 今晚 沒 地方 睡覺 . +I miss Boston . 我 想念 波士 頓 . +I passed by her house yesterday . 我 昨天 經過 她家 . +I got this CD player for free . 我 免費 得到 這個 CD 播放 機 . +Is it far from here ? 离 这儿 远 吗 ? +We go to school to study . 我們 去 學校 學習 . +I love the people here . 我 爱 这里 的 人们 . +How did you get out of your room ? 你 怎么 从 你 的 房间 里 出来 ? +It is this window that he broke . 他 砸坏 的 是 这 扇 窗 . +There are a lot of things you do not know about my personality . 我 的 个性 还有 很多 方面 是 你 不 了解 的 . +Is there anything else you want to say ? 你 還 有 甚 麽 想 說 的 ? +I admit that I was a little drunk . 我 承認 當時 是 有 點 醉 . +He is acquainted with my wife . 他 是 我 太太 认识 的 一个 人 . +After the hurricane , their house was a wreck . 暴风雨 过后 , 他们 的 房子 成 了 废墟 . +He shot at me . 他 槍擊 了 我 . +That was you , was not it ? 那 就是 你 , 不是 么 ? +My mother made me take some medicine . 我 媽媽 讓 我 吃 點 藥 . +It is already past ten o 'clock . 已經 過 了 十點鐘 了 . +It was not very hot last night . 昨晚 不是 很 熱 . +Could you tell me the Wi @-@ Fi password ? 能 不能 請 你 告訴 我 Wi - Fi 的 密碼 呢 ? +How about going out to eat tonight ? 今晚 出去 吃 怎么样 ? +I have lost my ticket . 我 把 票 弄 丟了 . +Tom is the one I want . 汤姆 是 我 想要 的 人 . +We will have to do that , too . 我们 也 不得不 做 +He turned the key . 他 转动 钥匙 . +Charles Lindbergh made the first solo flight across the Atlantic Ocean in 1927 . Charles Lindbergh 於 1927 年 成功 完成 了 第一次 獨自 飛越 大西洋 . +He wishes to erase bad memories . 他 希望 抹 去 不好 的 记忆 . +My foot hurts . 我 的 脚痛 . +There are a lot of new buildings here now . 这里 现在 有 了 许多 新 建筑 . +I can only give you ten minutes . 我 只能 给 你 十分钟 . +He is a good fellow . 他 是 個 好人 . +My father will often read the newspaper during meals . 我 父亲 常 在 吃饭 时 看 报纸 . +I agree on an emotional level , but on the pragmatic level I disagree . 我 感情 上 支持 , 但是 理性 上 反对 . +We lost sight of the man in the crowd . 在 人群 中 , 我们 失去 了 那个 男人 的 踪影 . +I have ten pens . 我 有 十支 筆 . +I came to Japan from China . 我 從 中國 到 日本 . +Tom is answer was very evasive . 汤姆 的 回答 很 含糊不清 . +I enjoyed watching TV yesterday . 昨天 我 很 開 心地 看電視 . +The buildings look so tiny . 大楼 看上去 那么 寒酸 . +He earned as much money as possible . 他 能 赚 多少 就 赚 多少 . +What does this key unlock ? 这 钥匙 能 打开 什么 ? +Remember to brush your teeth . 别忘了 刷牙 . +He is not religious . 他 不 信教 . +When did you graduate from high school ? 你 什麼 時候 中學 畢業 ? +Tom does not enjoy tennis and never has . 汤姆 不 喜欢 网球 , 从来不 . +I am looking for some regular work . 我 在 找 一些 固定 工作 . +If Tom does not do what he is supposed to do , please let me know . 如果 汤姆 没有 做 他 应当 做 的 事 , 请 让 我 知道 . +This is a crucial point . 这 是 一个 关键点 . +We managed to get there on time . 我們 總算準 時 到 那裡 了 . +Tom does not have a good French @-@ English dictionary . Tom 沒有 一本 好 的 法 英 字典 . +What is my room number ? 我 的 房间 号 是 多少 ? +Are you speaking to me ? 你 是 在 对 我 说 吗 ? +She is good at playing the piano . 她 擅長 彈 鋼琴 . +I am already full , thank you . 我 已经 吃饱 了 , 谢谢 . +What is that ? 那 是 什么 ? +She was asked to convince him to get his son or someone else to paint the house . 她 被 要求 去 说服 他 以 让 他 或者 他 的 儿子 或者 是 别的 人 来 粉刷 屋子 . +The phone rang when I was having lunch . 當 我 正在 吃 午餐 時 , 電話 響 了 . +Did you check this ? 你 检查 这个 了 吗 ? +I thought that you were listening . 我 以为 你 在 听 . +We study music . 我们 学习 音乐 . +How come you did not say anything ? 你 怎麼 什麼 話 也 沒 說 ? +She was asked to convince him to paint the house . 她 被 要求 说服 他 油漆 房子 . +I ordered some books from London . 我 從 倫敦 訂購 了 一些 書 . +Fight like a man ! 像 男人 一样 战斗 ! +Will you please let me go now ? 可否 请 你 现在 让 我 走 ? +Everything is changing . 一切都在 变 . +I gave her just what she needed . 我 給 她 的 正是 她 所 需要 的 . +I am counting on you . 我 指望 你 了 . +The thief got away with the money . 小偷 帶著 錢 逃跑 了 . +Tom came a little earlier today than he usually does . 汤姆 今天 来得 比 往常 要 早 一些 . +I like jazz music . 我 喜歡 爵士 樂 . +I am busy today . 我 今天 忙 . +He can pull strings for you . 他 能 为 你 暗箱 操作 . +Thank you for everything . 为 一切 感谢 你 . +It looks like Tom has bought a new bicycle . 看來 湯姆 借 了 輛 自行 車 . +Give the cat some meat . 給 猫 喂 點 肉 . +What is the weather like now ? 现在 的 天气 怎么样 了 ? +He has to repair the clock . 他 必須 修理 這個 時鐘 . +I want to be a lawyer . 我 要 當 律師 . +She is my type . 她 是 我 的 菜 . +Harvard was founded in 1636 . 哈佛 始建 于 1636 年 . +Hang your coat on the hook . 把 你 的 外套 掛 在 鉤子 上 . +Excuse me for interrupting you . 對 不起 , 打擾 你 了 . +The rumor is not true . 傳聞 不是 正確 的 . +I have never met such a kind man . 我 从没 遇到 过 那么 好心 的 男人 . +It is hot out here . 这里 够 热 . +I wanted to go there . 我 想 去 那裡 . +This data is not accurate at all . 這個 數據 一點 也 不 準確 . +I said shut up ! 我 说 过 了 , 闭嘴 ! +Does not that change things ? 那 能 改变 甚麼 嗎 ? +He was moved to tears when he heard the news . 当 他 听到 那个 新闻 的 时候 , 他 感动 得 哭 了 . +She knit him a sweater . 她 给 他 织 了 件 毛衣 . +Tom does not talk much . 汤姆 说话 不多 . +I think you should take the test again . 我 的 意见 是 , 你 该 再次 参加 测试 . +A woman visited us while you were sleeping . 你 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Karuizawa is famous as a summer resort . 輕 井澤 是 著名 的 避暑 勝地 . +It is difficult to satisfy everyone . 众口难调 . +Tom did not know how to translate the word " computer " because the people he was talking to had never seen one . 汤姆 不知 如何 翻译 “ 计算机 ” 一 词 , 因为 同 他 谈话 的 人 从未见过 一台 . +Tom is boss was really angry . 汤姆 的 上司 真的 非常 生气 . +Give Tom back his money . 把 汤姆 的 钱 还给 他 . +Could you bring me some water ? 你 能 帶 給 我 一些 水 嗎 ? +You should begin right away . 你 應該 立即 開始 . +If I had one million yen now , I would buy a car . 如果 我 现在 有 100 万日元 , 我会 买 辆车 . +You should look after the children from time to time . 你 應 該 偶爾 照顧 孩子 . +I am accustomed to getting up early . 我 習慣 早起 . +The United States borders Canada . 美国 与 加拿大 相邻 . +Look into my eyes . 看著 我 的 眼睛 . +I have never heard of this actor . 我 从 没听说过 这个 演员 . +Did you do your homework by yourself ? 你 自己 做 回家 作業 的 嗎 ? +He is accustomed to traveling . 他 習慣 了 旅行 . +When I was a child , I used to swim in that pond . 当 我 还是 个 孩子 的 时候 , 我 在 这个 泳池 里游 过泳 . +The message was in French . 这 条 消息 是 法语 写 的 . +What do you make ? 你 做 什麼 ? +I am glad that the thief was caught . 抓 到 小偷 真是 太好了 . +Tom studied hard so he could get into college . 汤姆 努力学习 以 进入 大学 . +She will not be back till five . 她 五點鐘 才 會 回來 . +All three of you are very lucky . 你們 三個 很 走 運 . +You are just a coward . 你 就是 胆小鬼 . +Tom would not let anyone else in the room . 汤姆 不让 任何人 进 房间 . +I did not have to study yesterday . 我 昨天 不必 讀書 . +He took off his overcoat . 他 脫掉 了 大衣 . +She gave him a tender kiss . 她 給 了 他 一個 溫柔 的 吻 . +I am as tall as my father . 我 跟 我 父親 一樣 高 . +It would take me too much time to explain to you why it is not going to work . 给 你 解释 这 为什么 行不通 要 花 很多 时间 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +Tom runs very fast . 湯姆 跑得快 . +Come and have tea with me . 来 跟 我 喝茶 吧 . +She was too short to see over the fence . 她 太矮 了 , 看不到 围墙 外面 . +She needs a coat . 她 需要 一件 外套 . +Where are those people from ? 那些 人 从 哪 来 的 ? +Mercury is the smallest planet in our solar system . 水星 是 我們 的 太陽系 中 最小 的 行星 . +It is your move . 該 你 走 了 . +Tom is old enough to go to school . 汤姆 年纪 足够 去 上学 了 . +She is doing her homework now . 她 現在 正在 做 她 的 功課 . +Tom is ecstatic . 汤姆 兴奋不已 . +They work together . 他们 在 一起 工作 . +How much does this cost ? 多少 錢 ? +How do I sign up ? 我 怎样 报名 参加 呢 ? +Something might have happened to her . 她 可能 出 什么 事 了 . +This has nothing to do with you . 這 與 你 無關 . +When will it be ready ? 这 什么 时候 能 准备 好 ? +She was often late for school . 她 經常 上學 遲到 . +Let is get started . 讓 我們 開始 吧 . +I do not want to be involved in that matter . 我 不想 被 牵扯 到 这件 事 里 . +They smiled at each other . 他們 曾 彼此 微笑 . +The court acquitted him of the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +They are gone . 他们 离开 了 . +He spoke very loudly . 他 说 得 很 大声 . +She is only a child . 她 只是 個 孩子 . +I am the fastest runner . 我 是 跑 得 最快 的 人 . +This dog was born two months ago . 這 隻 狗 是 兩 個 月 前 出生 的 . +He ordered a cup of tea . 他 點 了 一杯 茶 . +Would you like to listen ? 你 想 聽 嗎 ? +The children were well looked after . 孩子 们 被 照顾 得 很 好 . +He fell to the floor . 他 摔倒 在 地 . +We have to sing at an old folks home today . 我们 今天 得去 养老院 唱歌 . +Although the government refuses to admit it , its economic policy is in ruins . 尽管 政府 拒绝 承认 , 它 的 经济 政策 还是 失败 了 . +I am considering studying in America next year . 我 在 考虑 明年 去 美国 学习 . +Most Americans do not object to my calling them by their first names . 大多数 美国 人 似乎 不 反对 我 直呼其名 . +I did not know what to do . 我 不 知道 要 做 什麼 . +I just could not say no . 我 就是 不能 说不 . +It is no use trying to escape . 試圖 逃跑 是 沒 有用 的 . +I have a few friends who speak French well . 我 有 一些 法语 说得好 的 朋友 . +She can not write or read . 她 不会 读书 写字 . +I attended the meeting yesterday . 昨天 我 出席 了 會議 . +Can you get it repaired ? 你 能 不能 修理 它 ? +He is now either in Rome or in Paris . 他 不是 在 羅馬 , 就是 在 巴黎 . +He was aware that I was around , but did not come to greet me . 他 注意 到 我 在 場 , 但是 沒向 我 打招呼 . +Are you students ? 您們 是 學生 嗎 ? +Breakfast is ready . 早饭 准备 好 了 . +You 'd better consult your doctor . 你 最好 請 教 你 的 醫生 . +Can you skate ? 你 会 溜冰 吗 ? +Who do you think broke the window ? 你 認為 是 誰 打破 了 窗戶 ? +He finally got his wish . 他 終 於 如 願 以償 了 . +Where did you come from ? 你 從 哪裡 來 ? +Did Tom use to be a teacher ? 湯姆 以前 是 教師 嗎 ? +Everyone knows that I do not like Tom . 每個 人 都 知道 我 不 喜歡 湯姆 . +My purse was stolen . 我 的 錢 包被 搶 了 . +I have a slight headache today . 我 今天 有 輕微 的 頭痛 . +I am sick and tired of hamburgers . 我 對 漢堡 感到 厭煩 了 . +Do you have a book written in English ? 你 有 一本 用 英文 寫 的 書 嗎 ? +I got five hours sleep last night . 我 昨晚 睡 了 五小时 . +You have only to ask for it . 你 只要 问 就 好 了 . +He turned a deaf ear to their request . 他 对 他们 的 请求 置若罔闻 . +He does nothing but read comics . 他 什麼 都 不 做 只是 看漫 畫 . +May I ask a few questions ? 我 能 问 一些 问题 吗 ? +I am sure of his success . 我 肯定 他 会 成功 的 . +You should have done so . 你 本 應該 這樣 做 的 . +We need to buy a new TV . 我们 需要 买新 电视机 . +Help us reach our goal . 幫助 我們 達成 目標 . +He is going to be a doctor when he grows up . 他 长大 了会 成为 一名 医生 . +He was mad because he was not invited . 他 因为 没有 被 邀请 而 气 得 快 疯 了 . +This is gibberish . 這 是 胡 說 . +We heard a voice from the bedroom . 我们 听到 卧室 里 有 声音 . +My father takes a walk every day . 我 父親 每天 散步 . +Do not interfere in my affairs . 不要 插手 我 的 事 . +He is poor at chemistry . 他 的 化学 很 差 . +I met him on the street . 我 在 街上 遇到 他 . +You are on the right track . 你 在 正確 的 軌道 上 . +Your problem is similar to mine . 你 的 问题 类似 于 我 的 . +These cameras are made in Japan . 這些 照相 機是 在 日本 製 造 的 . +That hurts . 真疼 . +When were you planning on telling Tom about what happened ? 你 准备 啥时候 告诉 Tom 发生 了 什么 +Do you want anything to eat ? 你 想要 吃 任何 東西 嗎 ? +Are you through with your homework ? 你 把 功課 做 完 了 嗎 ? +I usually wear jeans on Sunday . 我 星期天 通常 穿 牛仔 褲 . +Tom seems to hardly ever get his homework done on time . Tom 似乎 没 办法 准时 完成 他 的 作业 . +She always buys expensive clothes . 她 總是 買 昂貴 的 衣服 . +My father does not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +I can walk to school in 10 minutes . 我 走路 10 分钟 能 到 学校 . +He is playing in his room . 他 在 自己 房里 玩 . +Tom wants to see you . 汤姆 想见 你 . +Some of the money was stolen . 一部分 钱 被 偷 了 . +Do you know the answer ? 你 知道 答案 嗎 ? +She lives just across from us . 她 就 住 在 我們 對 面 . +I 'd like some more water . 请 再 给 我 一些 水 . +What have you come here for ? 你 为什么 来 这儿 ? +Everybody plays the game of love . 大家 都 玩 爱情 游戏 . +Tom and I are good friends . 湯姆 和 我 是 好 朋友 . +Washing clothes is my work . 洗衣服 是 我 的 工作 . +Tom lost his balance and fell down . 汤姆 失去 了 平衡 摔 落下来 . +I would like to change my reservation . 我 想 更改 我 的 預訂 . +The tigers escaped from the zoo . 老虎 從 動物園 中 逃出 來 了 . +I threw a stone at the bird . 我 扔 了 块 石头 打向 鸟儿 . +There is been an accident . 曾經 有 一個 意外 . +I am the one who is sick . 我 就是 那个 生病 的 人 . +I hung my hat on the peg . 我 把 我 的 帽子 掛 在 掛鉤 上 . +He writes Arabic . 他 写 阿拉伯文 . +My father neither drinks nor smokes . 我 爸爸 既 不 喝酒 也 不 抽烟 . +Children are our future . 孩子 是 我们 的 未来 . +Are you saying that you give up ? 你 是 说 你 放弃 了 吗 ? +We have to try to communicate with them . 我们 要 设法 跟 他们 交流 . +I had never seen a windmill until I visited the Netherlands . 在 我 去 荷兰 之前 , 我 从没 见 过 风车 . +Tom closed his eyes . 汤姆 闭上 了 眼睛 . +Who is that boy running toward us ? 那个 朝 我们 跑过来 的 男孩 是 谁 ? +When do you eat turkey ? 你 什麼 時候 吃 火雞 ? +You may go anywhere . 你 可以 随便 去 哪儿 . +How much time do you spend on Facebook ? 你 花 多少 時間 在 Facebook 上 ? +I am pretty busy . 我 挺 忙 . +She is walking . 她 在 行走 . +I want to play the guitar . 我 想彈 吉他 . +I got a lot of mosquito bites . 我 被 很多 的 蚊子 叮 了 . +This car needs to be washed . 这辆 车 需要 清洗 . +This really is great weather . 這 真的 是 個 好 天氣 . +Do you like music ? 你 喜欢 音乐 吗 ? +India is a developing country . 印度 是 发展中国家 . +I want beef , too . " 我 也 要 牛肉 . " +The balloon was caught in the tree . 這 顆 氣球 被 樹絆 住 了 . +It is clear what must be done . 顯然 地 勢 必要 做 些 什麼 . +Always do right . This will gratify some people and astonish the rest . 坚持 做对 的 事情 . 这 会 满足 一部分 人 同时 使 另 一部分 人 感到 惊讶 . +Keep it up ! 坚持 . +Please turn off the television . 请 关闭 电视机 . +He was caught cheating in the exam . 他 在 考試 中 作弊 時 被 抓到 了 . +She thought that he was wasting electricity . 她 認為 他 是 在 浪費 電 . +There is insufficient light to take pictures . 拍照片 光线 不够 亮 . +Tom knew Mary would come . 湯姆 知道 瑪麗會 來 . +Every one of her songs was a hit . 她 的 每首歌 都 长期 备受 欢迎 . +Was he still here when you arrived ? 當 你 到 達 的 時候 他 還 在 這裡 嗎 ? +Monday is Tom is thirtieth birthday . 星期一 是 Tom 的 三十 歲 生日 . +I will wait here till he comes . 我 會 在 這裡 等 直到 他 來 . +She fumbled with a piece of paper . 她 摸索 著 一張 紙 . +What is your favorite movie ? 你 最 喜歡 的 電影 是 哪部 ? +The shooting started around noon . 拍攝 是 在 中午 十二 時 左右 開始 . +She was a genius in mathematics . 她 是 个 数学 天才 . +The dictionary is of great use to me . 这本 字典 对 我 很 实用 . +We will be ready in time . 我们 会 及时 准备 好 . +Did you visit the Tokyo Tower ? 您 参观 过 东京 塔 吗 ? +She disappeared . 她 消失 了 . +I saw him playing baseball . 我 看到 他 在 打 棒球 . +I object to her going there alone . 我 不 同意 她 一个 人 去 那儿 . +I do not mind if I get wet . 我 不介意 被 弄 濕 . +Stop resisting ! 停止 抵抗 ! +She would not let up until I agreed to go to the movies with her . 她 不 愿 松开 我 , 直到 我 同意 和 她 去 电影院 . +I knew that something was wrong . 我 知道 有些 事 不 對 . +Tom is working hard . 汤姆 在 努力 工作 . +He likes oranges . 他 喜欢 橙子 . +Why did you cry ? 你 為 什麼 哭 ? +Tom can not afford this . 汤姆 买不起 这个 东西 . +Today is Thursday . 今天 是 礼拜四 . +Women tend to live longer than men . 女人 往往 比 男人 活得 更 長 . +I like short poems . 我 喜歡 短 詩 . +We really enjoyed ourselves . 我們 真的 玩 得 很 開心 . +Do not be afraid of making mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I am counting how many people there are . 我 正在 算有 多少 人 在 那裡 . +The bus was ten minutes late . 公车 晚 了 十分钟 . +This is the best . 这 是 最好 的 . +I even made Tom laugh . 我 甚至 讓 湯姆 笑 了 . +What souvenir do you think she would like most ? 你 觉得 她 最 想要 什么 纪念品 ? +Tom is a clever kid . 汤姆 是 聪明 的 孩子 . +We invited him to our house . 我們 邀請 了 他 到 我們 家 . +A glass of cold water is very refreshing in hot weather . 一杯 冷水 在 暑热 的 天气 里 十分 提神 . +I want to be a computer programmer . 我 想 做 一个 程序员 . +I lost face . 我 丢臉 了 . +We were just about to leave when it rained . 我們 正要 離開 的 時候 下雨 了 . +My knowledge of Japanese is rather poor . 我 對 日文 不 大 了解 . +We could not keep from crying . 我們 止不住 哭泣 . +They grow oranges in California . 他们 在 加利福尼亚 种 橙子 . +Take a picture with your phone . 用 你 的 手机 拍 一张 照片 . +I will show you the way . 我 會 為 你 帶 路 . +Tom can not decide whether to buy a Toyota or a Ford . 汤姆 不能 决定 买 丰田 还是 福特 . +She stood in front of the mirror . 她 站 在 镜子 前 . +Tom was sobbing . 汤姆 在 啜泣 . +It is said the house is haunted . 据说 这 房子 是 个 鬼屋 . +I am staying at my aunt is . 我 住 在 我 姑姑家 . +I missed the opening ceremony of the Olympics . 我 错过 了 奥运会 的 开幕式 . +Tom suggested that I change the lock on my door . 汤姆 建议 我 换 我 的 门锁 . +She freshened herself up before supper . 她 在 晚 飯前 把 自己 梳洗打扮 了 一下 . +These pants fit me well . 这些 裤子 我 穿 起来 很 合身 . +It is boring to stay at home . 呆 在 家里 很 无聊 . +I think I have a question . 我 覺 的 有 一個 問題 . +Tom was absent yesterday . 湯姆 昨天 缺席 了 . +Could I try this on ? 我 能 試 一下 這個 嗎 ? +A friend of mine is studying abroad . 我 有 一位 朋友 在 國外 留學 . +Lie on your right side . 躺 在 你 右邊 . +Tom is out of his mind . 湯姆 失去 理智 了 . +I am glad we hired you for this job . 我 很 高兴 我们 录用 了 你 来 担任 这份 工作 . +Tell me about it ! 跟 我 讲讲 那件事 . +Bread is made from flour , water and yeast . 面包 是 用 面粉 、 水 和 发酵粉 做 的 . +How could I be a robot ? Robots can not dream . 我 怎么 可能 是 机器人 呢 ? 机器人 不会 做梦 . +She was scared to cross the road . 她 怕 過 馬 路 . +An aging population will require more spending on health care . 老龄化 的 人口 需要 更 多 医疗保健 支出 . +Everyone in the class climbed the hill . 班上 每個 人 都 爬 上 了 這個 山坡 . +Father is going to undergo an operation . 父亲 将 会 接受 手术 . +My husband is not in town . 我 丈夫 没 在 城里 . +She gave the blouse a quick wash . 她 很快 地 把 襯衫 洗 一 洗 . +She told him that she believed in astrology . 她 告诉 了 他 自己 相信 占星术 . +I want this work completed by two o 'clock tomorrow afternoon . 明天 下午 2 点 以前 , 我 希望 这 工作 完成 了 . +You are welcome . 您 不必 感谢 我 . +Love your neighbors . 与 邻居 相亲相爱 . +The plane is about to land . 飛機 就要 降落 了 . +I advised her to come by 9 : 00 . 我 建議 她 九點 前來 . +Indigenous Australians have eaten kangaroos for millennia . 澳大利亚 土著 已经 吃 了 上千年 袋鼠 . +Would you mind closing the door ? 你 介意 關上 門 嗎 ? +He stayed at his aunt is house . 他 呆 在 他 阿姨 家 . +Tom is funeral will be this weekend . 湯姆 的 葬 禮 訂 在 這 週末 . +He hit his head against a rock . 他 的 头 撞倒 了 一块 岩石 . +He came several times . 他 来 了 很 多次 了 . +I had a nice chat with her . 我 和 她 聊得 很 愉快 . +I was not yet married at that time . 那個 時候 我 還 沒有 結婚 . +You must have been surprised to meet your teacher in such a place . 在 那种 地方 碰到 你 的 老师 , 你 应该 很 惊讶 吧 . +What have I ever done to Tom ? 我 对 汤姆 做 了 什么 ? +Tom does not know the difference between Iraq and Iran . 汤姆 不 知道 伊拉克 和 伊朗 有 什么 区别 . +My room faces the garden . 我 的 房間 面向 花園 . +He has more books than I do . 他 拥有 的 书 比 我 的 多 . +It is ten degrees below zero now . 現在 是 零下 十度 . +She does not speak Japanese at home . 她 在家 不 說 日 語 . +I can not let you give me your last ten dollars . 我 不能 讓 你 給 我 你 最 後 十美 圓 . +Whose ring is that ? 那 是 谁 的 环 ? +I made it myself . 我 自己 做 的 . +You should read a lot of books while you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +The physician prescribed his patient some medicine . 医生 给 他 的 病人 开 了 一些 药 . +I do not love him any longer . 我 已经 不 爱 他 了 . +I watch television in the evening . 我 在 晚上 看電視 . +You people can not help yourselves . 你们 这些 人 帮不了 自己 . +I will go with you as far as the bridge . 我会 跟着 你 走 到 桥 那里 . +He pretends to be deaf . 他 装 听不见 . +I think I have found something better . 我 認為 我 找到 了 更好 的 . +Who is the man playing the piano ? 那個 正在 彈 鋼琴 的 男人 是 誰 ? +I saw it in the newspaper . 我 在 报纸 上 看到 了 它 . +Where are you going to eat lunch ? 你 要 去 哪裡 吃 午 飯 ? +This is a Turkish tradition . 這 是 個 土耳其 的 傳統 . +Do not leave the room . 别 离开 房间 . +How many pictures did you buy ? 你 買 了 多少 張 照片 ? +He risked losing all his fortune . 他 冒 着 失去 所有 财产 的 危险 . +One man is meat is another man is poison . 對 某人 有利 的 對 另外 的 人 未必 有利 . +She paid me a visit yesterday . 她 昨天 来 见 我 了 . +He is pale because he is sick . 他 病 了 , 所以 脸色 显得 苍白 . +He was very friendly to everybody . 他 對 每個 人 都 非常 友善 . +Boston is a wonderful city . 波士顿 是 一座 非常 好 的 城市 . +Tokyo is a big city . 东京 是 一个 很大 的 城市 . +I am fine now . 已经 没事 了 . +You can lie to everyone else , but you can not lie to yourself . 你 可以 向 别人 撒谎 , 但 你 不会 向 自己 撒谎 . +He is looking forward to it . 他 对此 很 期待 . +Where is your hat ? 你 帽子 在 哪儿 ? +Water freezes at 0 degrees Centigrade . 水 在 攝 氏 0 度 時 結成 冰 . +What did you do yesterday evening ? 你 昨天晚上 做 了 什麼 ? +Tom never felt comfortable expressing his own opinion . 汤姆 在 表达 自己 的 意见 的 时候 总是 很 慌张 . +My uncle gave me a camera . 我 叔叔 給 了 我 一個 照相 機 . +Tom teaches me French twice a week . 汤姆 每周 两次 教 我 法语 . +He is likely to be late for school . 他 上学 很 可能 会 迟到 . +All that I know is that he gave up the plan . 我 所 知道 的 是 他 放棄 了 這個 計劃 . +He went on reading the book as if nothing had happened . 他 繼續 讀書 , 好像 什麼 事 也 沒有 發生 . +I eat breakfast every morning . 我 每天 早上 吃 早餐 . +There was not anyone in the room . 房間 裡 沒 有人 . +He has a round face . 他 有 一張 圓 臉 . +The train leaves in ten minutes . 火車 十分 鐘 後 離開 . +While we were discussing the problem , I hit upon a good idea . 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 好 主意 . +This camera was made in Germany . 这个 照相机 是 德国 制造 的 . +Do not throw away this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +I have always wondered what it 'd be like to have siblings . 我 总是 想 有 兄弟姐妹 会 怎么样 . +What number bus do I take to get to Waikiki ? 我 乘 几路 车 去 怀基基 ? +Many people work in industrial towns . 许多 人 在 工业 城市 工作 . +She wants to work at the hospital . 她 想 在 医院 工作 . +I usually go to bed before ten . 我 通常 在 十點 前 上床 睡覺 . +I want to become an engineer . 我 想要 成為 一位 工程 師 . +I prefer apples to oranges . 比起 橘子 , 我 更 喜欢 苹果 . +" I will be back , " said Tom . “ 我会 回来 , ” 汤姆 说 . +He looks a bit tired , does not he ? 他 看 起來 有 點累 , 不是 嗎 ? +Tom has high blood pressure . 汤姆 有 高血压 . +You have got something stuck in your teeth . 牙齿 卡 了 点 东西 . +I paid him a visit yesterday . 我 昨天 去 见 他 了 . +I want to know how long it will take . 我 想 知道 这 需要 用 多久 时间 . +The weather has been unusual this year . 今年 的 天氣 一直 異常 . +Every time I read the Bible , I am deeply moved . 每次 我 读 圣经 都 会 被 深深地 感动 . +He took us back in his car . 他 开车 送 我们 回来 的 . +He looked after the baby . 他 照顧 孩子 . +I often catch colds . 我 常常 感冒 . +Keep listening . 继续 听 . +Tom and I have decided to go to Australia next summer . 汤姆 和 我 决定 下 个 夏天 去 澳大利亚 +I will try harder next time . 下次 我 會 更加 努力 . +Both of them are in the room . 他們 兩個 人 都 在 房間 裡 . +I 'd like some tea , please . 請 給 我 一杯 茶 . +Doing the laundry is my job . 洗衣服 是 我 的 工作 . +We are staying at our uncle is . 我们 待 在 舅舅家 . +I love to make people laugh . 我 喜歡 逗人 笑 . +He knows how to play the piano . 他 知道 如何 彈 鋼琴 . +By the way , did you find the umbrella you said you 'd lost the other day ? 对 了 , 前些时 间 你 说 伞 不见 了 , 现在 找到 了 吗 ? +The boy is wearing glasses . 這個 男孩 戴著 眼鏡 . +I am using Twitter . 我 在 用 Twitter . +A DNA test showed he was innocent . DNA 检测 表明 , 他 是 无辜 的 . +To what extent can he be trusted ? 可以 相信 他 到 什麼 程度 ? +Tom goes to school on foot . 湯姆 走路 去上 學 . +Tom wanted to comfort Mary . Tom 是 想着 去 安慰 Mary 的 . +He is a strange character . 他 的 性情 古怪 . +Tom helped Mary move the furniture . 汤姆 帮 玛丽 移动 家具 . +Let is start . 我们 开始 吧 . +It seems less crowded during the week . 平日 似乎 比較 不 擁擠 . +I sometimes just do not want to get out of bed in the morning . 我 有时 早上 不想 下床 . +That is enough money to cover the expenses . 那些 錢 足夠 支付 費用 . +I had nothing to hide . 我 没什么 可 隐藏 . +He kept a diary during the trip . 他 旅行 期间 , 写 了 旅游 日记 . +I need you to help me find Tom . 我 需要 你 幫 我 找 湯姆 . +You should bring your passport to the bank . 你 应该 带 护照 去 银行 . +This place still looks the same as it did a long time ago . 這裡 就 像 在 古 時候 一樣 . +Why do not you want to tell us the truth ? 為 甚麼 你 不想 告訴 我們 真相 ? +Tom has plenty of friends to help him . 汤姆 有 很多 朋友 去 帮助 他 +Tom had a heart attack last year . 汤姆 去年 得 了 心脏病 . +The train leaves at six . 火车 6 点 出发 . +She talked childishly . 她 说话 幼稚 . +That is a nice tie you are wearing . 你 打 了 一條 不錯 的 領帶 . +My mother took my temperature . 我 媽 媽量 了 我 的 體溫 . +Compare your answer with Tom is . 比較 你 和 湯姆 的 答案 . +What I am about to say is strictly between you and me . 我 要 告訴 你 的 只能 你 我 知道 . +That store sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +Tom tricked Mary into doing his work for him . 汤姆 哄 玛丽 做 他 的 作业 . +He slept well last night . 他 昨晚 睡 得 很 好 . +I have to take the test again . 我 必須 再 考 一次 試 . +The car is not worth repairing . 這車 不 值得 修 了 . +Who are the two women over there ? 那边 的 两位 女士 是 谁 ? +Tom is at school , is not he ? 湯姆 在 學校 裡 , 不是 麼 ? +Tom is so hot . 汤姆 非常 性感 . +Tom knew that Mary was upset . 汤姆 知道 玛丽 不 高兴 . +Whose car is this ? 這 台汽 車 是 誰 的 ? +If you had a million dollars , what would you do ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +She was brought up by her grandmother . 她 是 由 她 的 祖母 带大 的 . +I do not think we 'd have any chance of winning . 我 认为 我们 没有 机会 赢 . +What made you come here so early ? 什麼 原因 讓 你 這麼 早來 這裡 ? +Tom plays chess better than me . 汤姆 下 国际象棋 比 我 好 . +There will be a math test tomorrow . 明天 有 一個 數學 測驗 . +She left her son a lot of money . 她 留 了 很多 钱 给 她 儿子 . +She has an eye for antiques . 她 看 古董 的 眼光 很 好 . +Nothing is going his way . 什么 都 没 按 他 的 路子走 . +He is the richest man on earth . 他 是 世界 上 最 有 錢 的 人 . +The reporter criticized the politician . 記者 批評 了 政治家 . +Why did you buy a Japanese car ? 你 為 甚麼 買 日本 車 ? +I am busy looking for an apartment . 我 正忙 著找 公寓 . +I am writing a letter . 我 正在 寫 一封信 . +I wish I had a better memory . 希望 我 的 記憶力 能 好 一點 . +Thank you very much . 非常感谢 ! +He can speak French , and obviously English . 他 能 说 法语 , 很 明显 还有 英语 . +There are no problems . 沒有 問題 . +Will I have a scar ? 我会 留 疤 吗 ? +I asked him what his name was . 我 問 了 他 叫 什麼 名字 . +I always enjoy listening to classical music in my free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +Forewarned is forearmed . 凡事 要 預先 準備 好 . +School begins at 8 : 30 a.m. 學校 在 上午 八點 三十分 開始 上課 . +Tom had no reason to be angry . 汤姆 没有 动怒 的 理由 . +You are still young . 你 仍然 很年 輕 . +Look at the sky . 看 天上 . +I do not want to hear any more of your complaining . 我 不想 再 听 你 抱怨 了 . +You should go in person . 你 應 該 親自 去 . +He is in charge of the department . 他 負責 這個 部門 . +Which is better , red thread or white thread ? 哪个 更好 , 红线 呢 还是 白线 ? +I hope that is not the case . 我 希望 事情 並非 如此 . +Tom loves doing this . 湯姆 喜歡 做 這事 . +I got acquainted with her in France . 我 在 法國 認識 了 她 . +I explained the process to him . 我 向 他 解釋 了 這個 過程 . +Choose the one you like . 選 一個 你 喜歡 的 . +I am not going anywhere on Sunday . 我 週日 哪裡 也 不 去 . +How long are you going to be in Boston ? 你 要 在 波士顿 留 多久 ? +They climbed Mt . Fuji last week . 上個月 他們 爬 了 富士山 . +It is high time you were in bed . 你 早该 睡 了 . +She made the same mistake as before . 她 犯 了 和 以前 同樣 的 錯誤 . +This booklet is free of charge . 這本 小冊子 是 免費 的 . +Few people know how to do it . 很少 有人 知道 怎么 做 . +The accident happened the day before yesterday . 事故 发生 在 前天 . +I am saving up to buy a new car . 我 在 省钱 买 新车 . +I live on the outskirts of Tokyo . 我 住 在 東 京郊 區 . +Please call a taxi for this lady . 请为 这位 女士 叫 辆 出租车 . +Tom wrote two books . 汤姆 写 了 两本书 . +You are not a doctor . 您 不是 医生 . +He is a friendly person . 他 是 一個 友善 的 人 . +He may have missed the last train . 他 可能 錯 過 了 最 後 一班 火車 . +What you said does not make sense . 你 說 的 沒有 道理 . +Is not that mine ? 那 是 我 的 吗 ? +Did you go to see a doctor ? 你 去 看过 医生 了 吗 ? +Thank you in advance for your help . 我 先 谢谢 你 的 帮忙 . +I support political reform . 我 支持 政治 改革 . +Our teacher likes his new car . 我們 的 老師 喜歡 他 的 新車 . +It is easy to answer this question . 回答 這個 問題 很 容易 . +You should have done it earlier . It cannot be helped now . 你 應 該 早點 做 的 . 現在 沒 人 可以 幫 你 . +He told me that whatever might happen , he was prepared for it . 他 告诉 我 不论 发生 什么 , 他 都 准备 好 了 . +What do you say we go skiing ? 我们 去 滑雪 怎么样 ? +He is very angry with you . 他 對 你 非常 生氣 . +If only I could speak English ! 我 要是 会 说 英语 就 好 了 . +He enjoys watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I can not stand this pain . 我 無法 忍受 這個 痛苦 . +I can play tennis . 我 會 打 網球 . +I made an apple pie for you . 我 做 了 一個 蘋果 派 給 你 . +Would you mind my moving your car ? 你 介意 我 移動 你 的 車 嗎 ? +Neptune is the eighth planet of the solar system . 海王星 是 太阳系 第八个 行星 . +We still have plenty of time left . 我們 還 剩下 很多 時間 . +It is cold there even in the summer . 那裡 連 夏天 也 冷 . +Hurry up . 快点 ! +Something is wrong with my camera . 我 的 相機 有 毛病 . +Please bring me my bill . 請 把 帳單 給 我 . +I have already finished my homework . 我 已經 完成 了 我 的 作業 . +We do not want anything from you . 我们 不想 从 你 身上 要 任何 东西 . +I do not know whether Tom will eat with us or not . 我 不 知道 Tom 是否 和 我们 一起 吃饭 . +I came to this country for the purpose of studying music . 我 來 這個 國家 的 目的 是 學習 音樂 . +The entire world desires peace . 整个 世界 都 需要 和平 . +Are you finished ? 你 结束 了 吗 ? +I am at home . 我 在家 . +Where are you ? 你 在 哪儿 ? +I have a job for you . 我 有 工作 給 你 . +The truck is gone . 貨車 走 了 . +Trust me . 相信 我 . +May I speak to you a minute ? 我 可以 和 你 講 一下 話 嗎 ? +I do not agree with you at all . 我 完全 不 赞成 你 的 意见 . +Were you on time for work today ? 你 今天 準 時 上班 了 嗎 ? +Tom is drinking apple juice . Tom 正在 喝 蘋 果汁 . +Do you think this thing is cute ? 你 覺得 這個 東西萌 嗎 ? +I succeeded in getting what I wanted . 我 赢得 了 我 想要 的 . +Everybody knew she could speak English well . 大家 都 知道 她 的 英语 说 得 很 好 . +Do you run every day ? 你 每天 都 跑步 吗 ? +The tourists were fascinated with the exquisite scenery . 觀光客 被 獨特 的 景致 所 吸引 . +Some scientists believe that the greenhouse effect is imaginary . 有 的 科學家 認為 溫室 效應 是 虛構 的 . +Close your eyes . 闭上 你 的 眼睛 . +The sky was completely dark . 天空 完全 变黑 了 . +Here is a big map of Germany . 这儿 有 张 德国 的 大 地图 . +I have heard the story . 我 听说 过 那个 故事 . +How do you account for that ? 你 怎么 解释 那个 ? +Bring me a dry towel . 給 我 一條 乾 毛巾 . +He is the same age as me . 他 和 我 同岁 . +Both brothers are musicians . 两 兄弟 都 是 音乐家 . +What is the average height of the players ? 选手 们 的 平均 身高 是 多少 ? +I do not know . What do you think ? 我 不 知道 . 你 怎麼 想 ? +You should have been more careful . 你 應 該 要 更 小心 的 . +I want to go there . 我 想 去 那裡 . +Is there any chance that you will go to Australia next month ? 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +My opinion is similar to yours . 我 的 觀點 和 你 的 類似 . +I do not know when he will come . 我 不 知道 他 什么 时候 会来 . +The law should not be violated . 法律 不應 受到 侵犯 . +I can take care of myself . 我 可以 照顧 自己 . +He knows a lot about foreign affairs . 他 知道 很多 外國事務 . +Did Tom send you ? 湯姆 派出 了 你們 嗎 ? +Only one little boy survived the traffic accident . 这次 交通事故 中 只有 一个 小男孩 幸存 了 下来 . +The poor people were at the mercy of the cruel dictator . 可憐 的 人民 任 憑 殘暴 的 獨裁者 處置 . +I like having breakfast with you . 我 喜欢 和 你 一起 吃 早餐 . +Do you have any idea where Tom could be ? 你 知道 湯姆 能 在 哪裡 嗎 ? +Who told you the news ? 誰 告訴 了 你 這個 消息 ? +We have a lot of rain in June and July . 六七 月份 雨 很多 . +I wanted to thank you for what you did today . 我 想 为 你 今天 所 做 的 事 感谢 你 . +I signed the lease today . 我 今天 签 了 租约 . +Hang on ! 坚持 . +Modern ships only need a small crew . 現 代船 隻 只 需要 一小 組 的 船員 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Why do you want to become a nurse ? 你 为什么 想 成为 护士 呢 ? +The taxi is here . 出租车 到 了 . +This is a picture of my family . 這 是 一張 我 的 全家福 照片 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Mission accomplished . 任务 完成 . +Tom saw you . 湯姆 看見 你 了 . +I swear I did not do anything . 我 发誓 我 什么 也 没 做 . +The patient is steadily recovering . 该 病人 正 逐步 康复 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +Why did they turn down your proposal ? 他們 為 什麼 否決 了 你 的 建議 呢 ? +This chair is ugly . 這 把 椅子 很 難 看 . +I 'd like a room with a good view . 我 喜欢 视野 好 的 房子 . +My aunt gave me an album . 我 姑姑 給 了 我 一張 唱片 專輯 . +Tom did not go there yesterday . 汤姆 昨天 没 去 那里 . +I know who you all are . 我 知道 你們 都 是 誰 . +Science begins when you ask why and how . 為何 如何 ? 你 疑問 的 當下 就是 科學 的 開端 . +Sulfur burns with a blue flame . 硫磺 燃 燒著 藍色 的 火焰 . +Allow me to go . 請 允許 我 去 . +The only thing I have now are memories . 我 现在 仅 有 的 东西 就是 我 的 记忆 了 . +We are having a serious talk about your future . 我们 在 严肃 地 谈论 你 的 未来 . +I am afraid I have to go now . 恐怕 我 现在 得 走 了 . +Ca not you discount it a little ? 你 不能 打 一點 折 嗎 ? +I am glad the thief was caught . 抓 到 小偷 真是 太好了 . +Let is play tennis after school . 讓 我們 放學 後 打 網球 . +She wore a beautiful dress . 她 穿著 漂亮 的 洋裝 . +You have gained weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +We have not lost much . 我們 沒有 失去 太多 . +I wish that Tom would go home . 我 希望 湯姆 回家 . +She made coffee for all of us . 她 為 我們 所有 的 人 煮 咖啡 . +I know you are busy , too . 我 知道 , 您 也 很忙 . +When I was your age , Pluto was a planet . 當 我 在 你 這個 年紀時 , 冥王星 是 行星 . +I stayed at home last night . 我 昨晚 待 在家 裡 . +Take off your hat when you enter a classroom . 进 教室 时 请 脱下 帽子 . +You are not as smart as me . 你 没有 我 聪明 . +Tom jumped up from his chair . 湯姆 從 他 的 椅子 上 跳 了 起來 . +The old church on the hill dates back to the twelfth century . 山上 的 老 教堂 的 歷史 可以 追溯到 12 世紀 . +He is going to leave tomorrow afternoon . 他 將 在 明天 下午 離開 . +Unbelievable ! 難以 置信 ! +Tom put down his pencil . 汤姆 放下 他 的 铅笔 . +He got hurt in the game yesterday . 他 昨天 在 這場 比賽 中 受 了 傷 . +He had a second helping of soup . 他 又 喝 了 一碗 湯 . +The bank was held up a week ago . 這家 銀行 一 週前 被 搶劫 . +Do you have a better explanation ? 你 有 更好 的 理由 嗎 ? +I seem to have a temperature . 我 好像 发烧 了 . +The teacher said that the earth is round . 老師 說 地球 是 圓 的 . +She gets good marks in English . 她 取得 了 優異 的 英語 成績 . +Tom says he is willing to help . 汤姆 说 他 愿意 帮忙 . +Tom and Mary have a lot in common . 汤姆 和玛丽 有 很多 共同点 . +Even if I were rich , I would not give him money . 就算 我 富有 , 我 也 不会 给 他 钱 . +Which team are you a fan of ? 你 是 哪 一隊 的 迷 ? +Write something . 寫點 什麼 . +Wait here till I come back . 在 這兒 等著 , 直到 我 回來 . +Who solved the hard problem ? 誰 解決 了 這個 難題 ? +I live in this neighborhood . 我 住 在 這 附近 . +I woke up at 2 : 30 . 我 在 2 : 30 起床 . +Sunday is not a workday for me . 我 在 星期日 不 工作 . +He never drinks alcohol . 他 從 不 喝酒 . +Stand back from the rope . 退到 繩子 後 面 . +She was always quarreling with her parents . 她 总和 她 父母 吵架 . +Tom is on the bus to the city . 湯姆 搭 公車 去 市區 . +I live in this area . 我 住 在 这区 . +Tickets are available now . 现在 有票 . +I looked around me . 我 看 了 看 周圍 . +It is fun to ride a motorcycle . 騎 摩托 車 很 有趣 . +What language is this ? 這 是 什麼 語言 ? +She went out to buy some food . 她 出去 買 些 食物 了 . +He is leaving for China tomorrow . 他 明天 出发 去 中国 . +Why do not you quit Facebook ? 你 為 什麼 不 戒掉 Facebook ? +I would like to be alone if you do not mind . 如果 你 不介意 的话 , 我 想 一个 人 呆 着 . +Everyone in her class likes her . 她 班上 的 每個 人 都 喜歡 她 . +What is new ? 有 什么 新鲜事 吗 ? +Somebody had drowned her in the bathtub . 有人 把 她 淹死 在 浴缸 裡 . +The horse stopped and refused to go any further . 馬 停 了 下來 , 而且 拒絕 移動 . +I arrived at Narita Airport this morning . 我 今天 早上 抵達 了 成田 機場 . +I knew you 'd find Tom . 我 知道 你 会 找到 汤姆 . +We are having an office party tomorrow . 我們 明天 有個 辦 公室 派 對 . +She is watering the flowers . 她 正在 澆 花 . +I returned the knife which I had borrowed . 我 把 我 借来 的 刀 还 了 . +She is Tom is sister . 她 是 Tom 的 姐姐 . +Your proposal is a bit extreme . 你 的 建議 有 點 極 端 . +Do not make me stand here . 別 讓 我 一直 站 在 這裡 . +Can I use my medical insurance ? 我 可以 使用 我 的 醫療 保險 嗎 ? +I asked Tom why he was not here yesterday . 我 问 汤姆 为什么 他 昨天 没 在 这里 +Thank you for yesterday . 昨天 的 事 真的 要 谢谢您 了 . +We will die sooner or later . 我們 早晚 要死 . +I must sell my house . 我 得卖 我 的 房子 . +Tom found a skeleton in the cave . 汤姆 在 洞穴 里 找到 了 一具 骨架 . +Our native language is Japanese . 我們 的 母語 是 日 語 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +Is your school in this town ? 你 的 学校 在 这个 城市 吗 ? +What is the matter with you ? 你 到底 怎么回事 嘛 +He threw a stone into the pond . 他 扔 一塊 石頭 到 池塘 裡 . +" Where were you ? " " I was at a friend is house . " “ 你 在 哪里 ? ” “ 我 在 一个 朋友家 . ” +I do not have that kind of time . 我 可 沒有 那 閒 空 . +What do you do for a living ? 您 做 什麼 工作 為 生 ? +She has put on weight recently . 她 最近 增加 了體 重 . +I admit this may not be the best way of doing it . 我 承认 这 可能 不是 最好 的 方法 . +I warned him not to be late . 我 警告 了 他 不要 遲 到 . +Why did not you lock the door ? 你 為 甚麼 不 鎖 門 ? +Why do not you stay here ? 你 为什么 不 留在 这里 ? +I need your advice on what I should do next . 我 需要 你 指導 我 接下 來 該 做 甚麼 . +I grew up in this small town . 我 在 這個 小鎮 上 長大 的 . +I hope to see Tom soon . 我 希望 能 早点 看到 汤姆 . +He gave us the signal to begin . 他 給 了 我們 開始 的 信號 . +He reads a great deal . 他 读 很多 书 . +The meaning of this sentence is obscure . 这 句句 子 意思 模糊 . +He is my Mr. Right . 他 是 我 的 如意郎君 . +This toy is made of wood . 這 玩具 是 用 木頭 做 的 . +I do not have a pencil . 我 沒 鉛 筆 . +Ask him his name . 问 他 一下 他 的 名字 . +I would like to speak English fluently . 我 想 講 一口 流利 的 英語 . +The prisoner was brought before a judge . 這個 囚犯 被 帶到 法官 面前 . +That book is over here . 那本书 在 这里 . +Tom and Mary both know who you are . 湯姆 和 瑪麗 都 知道 你 是 誰 . +I talked to Tom last night . 昨晚 我 和 汤姆 说话 了 . +This ticket is valid for three days . 這 張 票 的 有效期 是 三天 . +I am here on business . 我 在 這裡 出差 . +Do you have a temperature ? 你 發燒 了 嗎 ? +I will bring wine . 我会 带酒 来 . +Finally , he achieved his goal . 他 终于 达到 了 自己 的 目标 . +Put the book there . 把 書 放在 那裡 . +We want Tom . 我们 想要 汤姆 . +He is three years older than she is . 他 比 她 大 三岁 . +Patience is sometimes the most effective weapon . 耐心 有时候 是 最 有效 的 武器 . +English is studied in Japan . 在 日本 的 人 學習 英語 . +I think I can . 我 想 我 可以 . +I will be back tomorrow . 我 明天 回來 . +Just relax . 放松 点 吧 . +He proposed a reform in the educational system . 他 提议 对 教育 系统 进行 改革 . +There is an apple on the table . 桌上 有个 苹果 . +Can you lend me your bicycle ? 你 能 把 你 的 自行车 借给 我 吗 ? +How much is four times six ? 6 乘以 4 是 多少 ? +Where do I pay for the gas ? 我 该 在 哪儿 付 煤气费 ? +" Who is it ? " " It is your mother . " “ 是 谁 ? ” “ 是 你 妈妈 . ” +I do not understand . 我 不 懂 . +I know where I am going next . 我 知道 我 接下 來 去 哪裡 . +Write your name in capital letters . 写下 你 名字 的 大写字母 . +I know you are learning French at school . 我 知道 你 在 學校 學法 語 . +Remember that I outrank you . 记住 我 的 级别 在 你 的 之上 . +Doing that will not take long . 做起 來 不 會 很久 . +She gets up late on Sunday mornings . 她 每 週日 早上 很 晚 起床 . +Who is your favorite DJ ? 谁 是 你 最 喜爱 的 DJ ? +This cat does not chase mice . 这 只 猫 不 抓 老鼠 . +Tom is an extraordinary man . 汤姆 是 个 不 寻常 的 人 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +Watch out for cars when you cross the street . 當 你 過 馬路 的 時候 要 當心 汽車 . +Do you have an extra English dictionary by any chance ? 您 碰巧 有 一本 額 外 的 英文 字典 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 的 网站 的 布局 . +If you get sleepy , let me know . 困 了 的话 就 说 哦 . +I would like to finish the work on my own . 我 想 自己 把 工作 做 完 . +That movie is worth seeing . 那 部 电影 值得一看 . +It is as cold as ice . 它 冷 得 像 冰 一樣 . +We took strong measures to prevent it . 我们 使用 了 强大 的 措施 来 预防 . +Tom will likely never do that again . 湯姆 不 太 會 再 去 做 那事 了 . +I am already full , thank you . 我 已经 很饱 了 , 谢谢 . +Do you go to school on Saturday ? 你 星期六 去 上 學 嗎 ? +I noticed Tom was smiling . 我 注意 到 汤姆 在 笑 . +Tell me what you have in your hand . 告诉 我 你 手里 有 什么 . +Here comes the train . 火車 來 了 . +Are you a wizard ? 你 是 个 术士 吗 ? +Wine is made from grapes . 葡萄酒 是 用 葡萄 做成 的 . +How old is your son ? 你 兒子 幾歲 ? +My sister married her high school classmate . 我 的 姐姐 嫁給 了 她 的 高中 同學 . +Even though I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I consider you one of my closest friends . 我 把 你 视为 我 最 要 好 的 朋友 之一 . +He is at her side . 他 在 她 的 旁邊 . +What do you plan to do ? 你 打算 怎麼 辦 ? +I received an invitation . 我 收到 了 一张 请帖 . +I was learning . 我 在 學習 . +He narrowly escaped being killed . 他 險 些 被 殺害 . +I met a Smith at the party . 我 在 聚会 上见 了 史密斯 . +You look just like your older brother . 你 看起来 很 像 你 的 哥哥 . +I am an honest person . 我 是 个 老实人 . +Tom is a real good man . 汤姆 是 个 很好 的 人 . +Cherry trees are now in bloom in Washington . 华盛顿 的 樱花 现在 开放 . +My mother has good handwriting . 我 母親 的 筆跡 很 好看 . +May I have some more coffee ? 我 可以 再 要 些 咖啡 嗎 ? +I feel like crying . 我 想 哭 . +It is all my fault . 都 是 我 的 错 . +We were just talking about you when you called . 當 你 打 電話 來 時 , 我們 正在 談論 你 . +I believed you . 我 相信 了 你 . +You can come at any time . 你 隨時 可以 來 . +Suddenly , I heard shouting . 突然 , 我 听到 了 一声 喊叫 . +If possible , I would like to travel around the world . 如果 可能 的话 , 我 想 环游世界 . +The pianist played two encores . 這位 鋼 琴家 演奏 了 兩首 安 可曲 . +That is rather unexpected . 这 真是 很 意外 . +I saw him reading a book . 我 看見 他 在 讀 一本 書 . +Vote for Tom . 投票 給 湯姆 . +Let is go and see as many things as we can . 我们 走 , 尽可能 多 看点 东西 . +The truth is that nothing is totally true or false . 真相 是 沒有 甚麼 完全 正確 或 錯誤 . +You are the only one who can protect them . 你 是 唯一 能 保护 他们 的 . +Tom could not control himself . 汤姆 不能自已 . +This is not important . 这 不 重要 . +I am sorry , but I can not hear you well . 對 不起 , 但 我 聽 不 太 清楚 你 說 話 . +I always catch colds in the winter . 我 在 冬季 總是 感冒 . +How is work ? 工作 怎么样 ? +There is a spoon missing . 少 了 一把 勺子 . +The days are getting longer and longer . 白天 漸漸 地 越來越 長 . +Do you have anything to declare ? 你 有 任何 要 申報 的 東西 嗎 ? +Were you in Boston for a long time ? 你 在 波士顿 待 了 很久 吗 ? +I have to call Tom . 我 得 给 汤姆 打电话 . +I saw something strange in the sky . 我 看见 天上 有 奇怪 的 东西 . +A lot of trees were cut down . 很多 树 被 砍倒 . +He can not help you . 他 不能 幫 你 . +What horrible weather ! 多么 糟糕 的 天气 啊 ! +I am no longer your assistant . 我 不再 是 你 的 助手 了 . +The policeman told me that the last bus leaves at ten . 警察 告诉 我 巴士 的 末班车 在 十点 出发 . +I have no secrets from you . 我 對 你 毫無隱瞞 . +She got all dolled up for her big date . 为了 她 的 重要 约会 , 她 精心 打扮 了 一下 . +Tom studied French for three years . 汤姆 学 了 三年 法语 . +Is the bath clean ? 浴室 干净 吗 ? +I wrote it all down . 我 全 写 下来 了 . +It is already eleven . 已经 是 11 点 了 . +When was it finished ? 是 什么 时候 完成 的 ? +Will you send for a doctor ? 你 會 派 人 去 請 醫生 來 嗎 ? +Did you go anywhere for the summer ? 你 夏天 去 了 任何 地方 嗎 ? +People should be dancing . 人們 應該 在 跳舞 . +I have a lot of friends to help me . 我 有 很多 朋友 帮 我 . +There are so many people at this concert . 這場 演唱 會 的 人 真多 . +I like taking walks . 我 喜欢 散步 . +This camera is cheap . 这个 相机 很 便宜 . +Please let me off at the next stop . 请 在 下 一站 让 我 下车 . +We do not do it very often . 我们 不常 做 . +We had a good time playing cards . 我們 打牌 玩 得 很 開心 . +I am an honest person . 我 是 个 老实人 . +After a long argument , I finally persuaded her to go camping . 經過 長久 的 爭論 , 我 終 於 說 服 了 她 去 露營 . +Did you hear the news ? 你 听到 新闻 了 吗 ? +I do not like the way he speaks . 我 不 喜歡 他 說 的 話 . +Do you believe there are ghosts ? 你 相信 有 幽灵 吗 ? +I want to lose weight . 我 想 减肥 . +I will telephone you every night . 我 每晚 都 給 你 打 電話 . +Tom is girlfriend threatened to leave him . 汤姆 的 女朋友 威胁 要 离开 他 . +Have you finished writing the letter yet ? 你 信 寫 完 了 嗎 ? +She is a pretty girl . 她 是 一個 漂亮 的 女孩 . +It is next to impossible to finish it in a day . 在 一天 之内 完成 它 几乎 是 不 可能 的 . +His room is always tidy . 他 的 房間 總是 很 整齊 . +You must hurry up . 您 要 赶快 些 . +She finds it a little distasteful . 她 发现 这 有点 令 她 不快 . +She applied her mind to her new job . 她 专注 在 她 的 新 工作 上 . +Education begins at home . 教育 从 家庭 开始 . +I am really sorry to hear that . 听到 这样 的 消息 我 真的 很 难过 . +They are kids . 他们 是 孩子 . +He decided to quit smoking . 他 決定 戒菸 了 . +Do not be afraid of barking dogs . 別 怕 吠 犬 . +She made a mess of the work . 她 工作 做 得 亂 七八 糟 . +Tom began talking . 汤姆 开始 说话 . +My father is going for a walk in the park . 我 父親 要去 公園 裡 走 . +Please show me your injured arm . 請 讓 我 看看 你 受傷 的 手臂 . +I interpreted her silence as a refusal . 我 認為 她 的 沉默 就是 表示 拒絕 . +She likes oranges . 她 喜欢 橙子 . +What are you going to do tonight ? 你 今晚 要 做 什麼 ? +I almost did not visit Australia . 我 差点 没 去 澳大利亚 +Have you done all your homework ? 你 做 了 所有 的 功課 嗎 ? +Please tell me where to go next . 請 告訴 我 下 一步 去 哪裡 . +Better luck next time . 祝 你 下 一次 好运 . +He probably will not come . 他 可能 不会 来 了 . +She said she had a cold . 她 說 她 感冒 了 . +Tom says he has a plan . 汤姆 说 他 有个 计划 . +She lived a long life . 她 活 了 很久 . +What time do you wake up every day ? 你 每天 幾點 起床 ? +He was very good at playing tennis . 他 打网球 打 得 很 好 . +They wash their hands with soap . 他们 用 肥皂 洗手 . +I found the bed quite comfortable . 我 覺得 這 張 床 相當 地 舒適 . +My aunt gave me a camera . 我 的 阿姨 給 了 我 一台 攝影 機 . +Stop fooling around . 不要 隨便 開 玩笑 . +Put away your books and notebooks . 把 你 的 書 和 筆記 本 收起 來 . +He denied having written to me . 他 否認 曾 寫信 給 我 . +Someone is standing behind the wall . 有人 站 在 墙后 . +Everyone knew that Tom is French was good . 每个 人 都 知道 汤姆 的 法语 很 好 . +Winter is over and spring has come . 冬天 結束 了 春天 已經 來 了 . +You must choose . 你 必须 选择 . +Do not be afraid of making mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +People of all ages like this song . 这 首歌 老少皆宜 . +The room originally had no furniture . 本来 这 间 房间 里 没有 家具 . +Here is your dog . Where is mine ? 这 是 你 的 狗 . 我 的 呢 ? +I can barely see you . 我 幾乎 看不見 你 . +Your team is stronger than ours . 你們 的 隊伍 比 我們 的 強 . +Swimming is good for your health . 游泳 對 你 的 健康 很 好 . +Car exhaust causes serious pollution in towns . 汽车尾气 在城镇 里 造成 了 严重 的 污染 . +She complained that my salary was low . 她 抱怨 我 的 薪水 很 低 . +She is good at speaking English . 她 擅長 說 英文 . +You are a good painter , are not you ? 你 是 個 很棒 的 畫家 , 不是 嗎 ? +Do you believe in ghosts ? 你 相信 有 幽灵 吗 ? +The lion is stalking its prey . 狮子 在 跟踪 它 的 猎物 . +I do not know which button to push . 我 不 知道 要 按 哪個 按 鈕 . +Tom passed away last night . 汤姆 在 昨晚 去世 了 . +I know your older brother quite well . 我 跟 你 哥哥 很熟 . +It is improved . 它 有 改善 了 . +Call me , please . 请 给 我 打电话 . +Tom got first prize , did not he ? 湯姆 得 了 第一名 , 不是 嗎 ? +Why do you study every day ? 为什么 你 每天 都 学习 呢 ? +Are you still at the office ? 你 還 在 辦 公室 裡 嗎 ? +How long have you been here ? 你 在 這裡 多久 了 ? +Could you put it in plain language ? 您 可以 简单 点儿 说 吗 ? +I am at home . 我 在家 裡 . +The total comes to 3,000 yen . 总共 是 3000 日元 . +He ate the whole apple . 他 把 整个 苹果 都 吃 了 . +You will need their help . 你 会 需要 他们 的 帮助 . +The gang was planning a robbery . 這 夥 人 計劃 搶劫 . +He is getting along with his neighborhood . 他 與 他 的 鄰居 相處 . +Tom went to Boston to buy a painting . 湯姆 去 波士 頓 買 一幅 畫 . +He was leaning against the wall . 他 靠著 牆 . +He will reach Hakodate tonight . 他 今晚 將 抵達 函館 . +I noticed a note on my desk , but I do not know who wrote it . 我 發現 了 我 辦 公 桌上 有 張 字 條 , 但是 我 不 知道 是 誰 寫 的 . +Are you sure ? 你 确定 吗 ? +There was nothing that I could do at that time . 当时 我 什么 都 不能 做 . +Do not eat like a pig . 别 像 猪 一样 猛吃 东西 . +He got 90 % in English . 他 英文 得到 了 九 十分 . +I do not want to have this fight . 我 不想 打 这 架 . +My memory failed me . I just could not remember his name . 我 的 記性 不好 . 我 簡直 不 記得 他 的 名字 了 . +Tom needs Mary is help . 湯姆 需要 瑪麗 的 幫助 . +May I pay with a travelers ' check ? 我 可以 用 旅行支票 支付 嗎 ? +I took it for granted that he would keep his word . 我 理所 當然 地 認為 他 會 履行 諾 言 . +I am not wearing pants . 我 没 穿 裤子 +Wait ! 等 一下 ! +Tom was a little overweight when he was a child . 湯姆 在 小时候 有 點 超重 . +No other mountain in the world is as tall as Mt . Everest . 世界 上 任何 山峰 都 达 不到 珠穆 朗 瑪峰 的 高度 . +Can you help me wash these dishes ? 你 能 幫 我 洗 這些 碗 盤 嗎 ? +We get together once a year . 我們 一年 聚 一次 . +The talks will deal with the problem of pollution . 这场 谈论 即将 对 污染 问题 展开讨论 . +I really liked the gift you gave me . 我 真 喜歡 你 給 我 的 禮物 . +Long time , no see . 真是 好久不见 啊 +I am not afraid of death . 我 不怕死 . +She must have studied very hard . 她 一定 很 用功 讀書 . +You ought to have come to our party . 你 應 該 到 我們 的 派對 的 . +I lost my job and I have no money . I am at my wit is end . 我 失業 又 沒錢 . 真 不知 該何 去 何 從 . +The man must work . 男人 应该 工作 . +She is what we call a bookworm . 她 就是 所谓 的 书虫 . +We ordered too much food . 我們 點 太 多 食物 了 . +I arrived two weeks ago . 我 在 兩 週前 到 了 . +It seems that the only time he is not eating is when he is sleeping . 看来 他 只有 在 睡觉时 不吃 东西 . +Neither of those two students passed the test . 兩個 學生 都 沒 通過 考試 . +Many of the user reviews on Amazon are fake . 亚马逊 网站 上 的 许多 用户 评论 都 是 虚假 的 . +Second semester has ended . 第二 學期 結束 了 . +The food tasted slightly of garlic . 這個 食物 嚐 起 來 有 一 點 大蒜 味 . +She is got a good eye for paintings . 她 對 繪畫 有 很好 的 鑑賞 力 . +Why did you run away ? 你 為 什麼 逃走 ? +How did Tom talk Mary into babysitting his children ? 汤姆 是 怎么 说服 玛丽 照顾 他 的 小孩 的 呢 ? +We are not as young as Tom . 我们 不再 像 汤姆 那样 年轻 . +There are no comments yet . 還 沒有 任何 評論 . +Unbelievable ! 难以置信 ! +Tom pulled Mary out of the water . Tom 把 Mary 拉 出水 +We are not afraid of death . 我们 不怕死 . +I do not mind hot weather . 我 不在乎 炎熱 的 天氣 . +Would you like a cup of coffee ? 你 要 來 杯 咖啡 嗎 ? +Shut the door . 不要 把门 开 着 . +I have class tomorrow . 我 明天 有 课 . +Why are you not doing it ? 你 为什么 不 做 ? +Fresh food is wonderful . 新鮮 的 食物 最 棒 了 . +I do not know what you mean . 我 不 懂 你 什么 意思 . +Are you sure Tom is happy ? 你 確定 湯姆 高興 嗎 ? +I am completely exhausted . 我 完全 地筋 疲力 盡 了 . +I hope I will see you again soon . 我 希望 我 會 很快 再 見 到 你 . +Anything you say may be held against you in a court of law . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +Tom , are you okay ? 汤姆 , 你 还好 吧 ? +Am I supposed to help Tom ? 我 该 帮 汤姆 吗 ? +She made a point of visiting me . 她 特地 來 拜訪 我 . +Tom clapped his hands together . 湯姆 拍 了 手 . +You are about three days late . 你 大 約 遅 了 三天 . +He listened with his ear to the door . 他 把 耳朵 貼 在 門上 聽 . +Get down on the floor ! 趴在 地上 ! +I have had to do everything by myself . 我 必须 靠 自己 做 所有 事 . +" Do you know when they will arrive ? " " At eleven @-@ thirty this evening . " 你 知道 他们 什么 时候 到 吗 ? 今晚 11 点 半 . +He brought me to the bus stop . 他 帶 我 到 車站 . +You made it . 你 做到 了 . +He brought his lunch today . 他 今天 带 了 午饭 . +Her toy was broken by her little sister . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +I paid $ 200 in taxes . 我 付 了 兩 百元 含稅 . +What is your name ? 你 叫 什么 名字 ? +Ostriches can not fly . 鴕鳥 不 會 飛 . +I told her not to let go of the rope , but she did . 我 叫 她 不要 松开 绳子 , 但是 她 做 了 . +I am in love with her . 我 愛 上 她 了 . +He put on the black coat . 他 穿 上 了 黑色 的 外套 . +We found the front door locked . 我們 發現 前門 被 鎖上 了 . +I saw the sunrise . 我 看 了 日出 . +He spent the night at his uncle is place . 他 在 他 舅舅 那 裏 過 夜 . +They built a bridge across the river . 他們 建 了 一座 橫 跨 河流 的 橋 . +Do Japanese people eat sushi every day ? 日本 人 每天 都 会 吃 寿司 吗 ? +He is to blame for the failure . 失败 的 责任 在 他 . +Prepare yourself for the future . 为 将来 做 准备 吧 . +The school is five kilometers from my home . 學校 離 我家 有 五公里 遠 . +Tom said that he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I love sports . 我 喜歡 運動 . +Who is your girlfriend ? 你 女朋友 是 谁 ? +Let is stay here tonight . 讓 我們 今晚 留在 這裡 吧 . +This is the place where the battle took place . 这 是 战斗 发生 的 地方 . +Maybe Tom just got nervous . 可能 汤姆 紧张 了 . +How much does this umbrella cost ? 這 把 傘 多少 錢 ? +Eating lunch with you would make me happy . 跟 你 一起 吃 午 飯 會 讓 我 高興 . +Put this jacket on , and you will be much warmer . 穿 上 外套 吧 ! 你 會 暖 一些 . +She broke the window on purpose . 她 故意 把 窗戶 弄壞 了 . +She has a good command of English though she was brought up in Japan . 雖然 她 在 日本 被 撫養 長大 , 但是 她 精通 英語 . +Tom is on the go day and night . 汤姆 日夜兼程 . +He is in London on business now . 他 現在 在 倫敦 洽 公 . +Tom saw the file . 湯姆 看 了 文件 . +Later he wrote to the president . 他 后来 写信给 总统 . +Tom knows the difference . 湯姆 知道 不同 之處 . +He is about the same age as you . 他 跟 您 年纪 差不多 . +Someone called . 有人 打電話來 . +I do not want to go to school . 我 不想 去 学校 . +My father is an office worker . 我 父親 是 一名 辦 公室 職員 . +I am telling you this confidentially . 这个 我 只 和 你 说 哦 . +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +You should not have paid the bill . 你 本來 不 應該 付賬 的 . +I am on the balcony . 我 在 陽 臺 上 . +The boy is kind . 他 是 个 好孩子 . +They decided to build a bridge . 他們 決定 建 一座 橋 . +These flowers you see are roses . 你 看到 的 這些 花 是 玫瑰 . +Tom planted three apple trees in his yard . 汤姆 在 他 的 院子 里 种 了 三棵 苹果树 . +Let is hope she comes . 讓 我們 祈盼 她 會 來 . +This house is not for sale . 这 房子 不 出售 . +Tom looked around and realized he was lost . 汤姆 环顾四周 , 发现自己 迷路 了 . +We just need a plan . 我們 只是 需要 個 計畫 . +I did not get along with her . 我 沒有 和 她 相處 過 . +That will not make any difference . 这 没有 任何 区别 . +He wishes to become a doctor . 他 希望 成為 一名 醫生 . +We are in the era of atomic energy . 我們 身處 核能 時代 . +Yesterday was the last day of school . 昨天 是 最后 一天 上学 . +I got up early yesterday . 昨天 我 很早 起床 . +We watched the soccer game on TV . 我們 看 了 電視 上 的 足球 比賽 . +Why did not you follow my advice ? 你 為 什麼 不 聽 我 的 忠告 ? +Tom is going crazy . 汤姆 要 发疯 . +There is something that I want to tell you . 有件 事情 我 要 对 你 说 . +Let bygones be bygones . 既往不咎 . +It is great ! You will laugh for sure . 太棒了 ! 你 一定 會 笑 的 . +I do not understand what he said . 我 不 明白 他 说 的话 . +The bus is running about ten minutes late . 公交 車 晚 點 了 十分 鐘 . +I miss him . 我 想念 他 . +How do you pronounce this word ? 你们 怎么 读 这个 词 ? +Tom wants to spend more time with his family . 汤姆 想 多把 时间 花 在 他 的 家庭 上 . +She wants to know who sent the flowers . 她 想 知道 是 谁 送 的 花 . +The family is watching a movie together . 这 一家人 一起 看 电影 . +The Amazon is fed by a large number of tributaries . 亚马逊河 有 很多 支流 . +Do not be so childish . 不要 那么 幼稚 . +I have problems , just like everybody else . 我 有 问题 , 就 像 其他人 一样 . +Did you go to the art exhibition ? 你 去 看 藝術 展覽 了 嗎 ? +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +I am thrilled . 我 激動 不已 . +Go up the stairs . 上楼 . +How is the weather there ? 那里 的 气候 怎么样 ? +I hope you will get well soon . 我 希望 你 很快 就 會 好 . +Are you certain ? 你 确定 ? +Please come back home . 請 回家 . +More and more people are moving to urban areas . 越來越 多 的 人 遷往 鄉村 . +I am busy getting ready for tomorrow . 我 正忙 著為 明天 作 準備 . +Are there any questions ? 有 什么 问题 吗 ? +I thought Tom had heard us . 我 觉得 汤姆 听说 过 我们 . +You are turning red . 你 脸红 了 . +I have to write a letter . Do you have some paper ? 我 需要 写 一封信 . 你 有 纸 吗 ? +We tried to stop you . 我們 試著 阻止 你 . +We are boys . 我們 是 男孩 . +Tom picked up the book . 汤姆 捡起 了 书 +I changed trains at Tokyo Station . 我 在 東京 站換 火車 . +Tom is waiting for Mary to come back . 汤姆 正在 等 着 玛丽 回来 . +I use Twitter . 我 用 Twitter . +I am sixteen years old . 我 16 岁 了 . +Do not give up ! 不要 放棄 ! +Can your brother drive a car ? 你 弟弟 會 開車 嗎 ? +Where is the nearest telephone box ? 最近 的 電話 亭 在 哪裡 ? +He does not have any friends . 他 一个 朋友 都 没有 . +Did you enjoy the party yesterday ? 昨天 的 派 對 你 玩 得 開心 嗎 ? +She gave me plenty to eat . 她 給 了 我 很多 吃 的 東西 . +May I take your picture ? 我 可以 幫 你 照相 嗎 ? +He played the piano and she sang . 他 彈 鋼琴 , 她 唱歌 . +I am going to watch TV this evening . 今天 晚上 我 打算 看电视 . +Bring me the dictionary . 把 那本 詞典 遞 給 我 . +He was jealous of my success . 他 嫉妒 我 的 成功 . +My father will retire at the age of sixty . 我 父亲 六十岁 就要 退休 了 . +I can not remember the meaning of the word that I looked up yesterday . 我 记不起 昨天 查 的 那个 词 的 意思 了 . +It will clear up in the afternoon . 今天下午 天氣 將 轉 晴 . +Tom does not think so . 汤姆 可不 这么 认为 . +Will you drive me to the hospital ? 你 可以 載 我 去 醫院 嗎 ? +I advise you to change clothes . 我 建議 你 換 衣服 . +I made efforts to improve my grades . 我 努力 的 改善 我 的 成績 . +I need some medicine to kill the pain . 我 需要 用药 来 镇痛 . +You do not have to do it immediately . 你 没 必要 马上 去 做 . +They now have three children . 现在 他们 有 三个 孩子 . +I consider myself fairly fluent in French . 我 认为 自己 的 法语 相当 流利 . +My older brother is a teacher . 我 哥哥 是 一名 教師 . +That is true . 這 是 真的 . +What is it you want to know ? 你 想 知道 什麼 ? +Tom speaks without thinking . 汤姆 不假思索 脱口而出 . +Everyone said that I was wrong . 大家 都 說 我 是 錯 的 . +True friendship is based on mutual trust . 真正 的 友谊 建立 在 彼此 信任 的 基础 上 . +She began crying . 她 开始 哭泣 . +She was always quarreling with her brothers . 她 一直 和 她 的 兄弟 争吵 . +I am interested in this story . 我 對 這個 故事 感興趣 . +The situation is getting worse and worse day by day . 情况 一天 比 一天 差 . +Turn the knob and open the door . 轉動 門 把 , 把 門 打開 . +We are ready to leave . 我們 準備 離開 . +I do not care if you trust me or not . 我 不 關心 你 是否 信任 我 . +Do you really need to ask the question to know the answer ? 你 真的 需要 提 问题 来 知道 答案 吗 ? +I could hardly keep from laughing . 我 忍不住 要 大笑 . +My aunt made a new skirt for me . 我 姑姑 做 了 一條 新 裙子 給 我 . +Thanks for adding me as a friend . 谢谢 你 把 我 加为好友 . +Lincoln died in 1865 . 林肯 於 1865 年 去世 . +I should have tried out this electric shaver before buying it . 我 本该 在 买下 这个 电动 剃须刀 之前 试一下 的 . +Are you planning to be at Tom and Mary is wedding ? 你 打算 参加 汤姆 和玛丽 的 婚礼 吗 ? +Tom did not return my phone calls . 湯姆 沒 有 回 我 的 電話 . +More than twenty boys went there . 超過 二十 個 男孩 去 了 那裡 . +We apologize for the delay and regret any inconvenience it may have caused . 我们 对 这次 的 延迟 表示 抱歉 , 并 对 可能 造成 的 不便 表示遗憾 . +In March , many flowers come out . 許多 花 在 三月份 綻放 . +Tom does not have to thank me . 湯姆 不 需要 謝 我 . +There is no one in your bedroom . 你 的 卧室 里 没有 人 . +It is your turn . 輪到 您 了 . +How do you spell your last name ? 你 的 姓 怎麼 拼 ? +I suppose I 'd better phone Tom . 我 想 我 给 汤姆 打电话 比较 好 . +I sat next to him . 我 坐在 他 旁边 . +They are very close friends . 他們 是 非常 親密 的 朋友 . +The rope was not strong enough to support him . 绳子 不够 牢固 , 撑不住 他 . +We just have enough time to eat breakfast . 我们 刚好 有 时间 吃 早饭 . +He retired at the age of 65 . 他 65 岁 退 了 休 . +I am afraid of heights . 我 恐 高 . +Hi ! How are you ? 嗨 ! 你好 嗎 ? +I did not tell anyone what time I 'd be arriving . 我 沒 跟 別人 說 過 我什麼 時候 會 到 . +The doctor examined the patients . 醫生 檢查 了 病人 . +Can I drive the tractor ? 我 能 開 拖拉 機 嗎 ? +Tom told him . 汤姆 告诉 了 他 . +Five gallons of regular , please . 請照 平常 一樣 五加 侖 . +I am going to check . 我 正要 去 签到 . +Can I ask a question ? 我 能 问个问题 吗 ? +The students are talking about language and culture . 学生 们 在 探讨 语言 和 文化 . +Tom said Mary was hungry . 汤姆 说 玛丽 饿 了 . +Having lived in Tokyo , I know the city well . 因为 住 过 东京 , 我 对 这个 城市 非常 了解 . +Do not forget your money . 不要 忘记 您 的 钱 . +Tom is careful , is not he ? 湯姆 很 仔細 , 不是 麼 ? +Everything depends on it . 全都 靠 它 了 . +He has been secretly in love with her . 他 一直 暗恋着 她 . +Awesome ! 好 棒 ! +She took a taxi to the hospital . 她 搭計 程車 去 醫院 了 . +Who is in charge of this section ? 谁 负责 这个 部门 ? +These pants fit me well . 我 穿 這條 褲子 很 合身 . +It is on this point that our opinions differ . 是 在 这点 上 我们 的 意见 有 分歧 . +He borrowed money from his friend . 他 向 他 的 朋友 借錢 . +Let me try . 让 我 来 . +Our teacher has a wonderful sense of humor . 我们 的 老师 非常 有 幽默感 . +At last , she gave in to him and told him the secret . 最 後 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +Tom and Mary were smiling . 汤姆 和玛丽 正 微笑 着 . +Is that the station ? 那 是 車 站 嗎 ? +Mt . Fuji as seen from Suruga Bay is beautiful . 從駿 河灣 看 , 富士山 很 美麗 . +Do not go out after it gets dark . 天黑 以 後 不要 出門 . +I am yours and you are mine . 我 是 你 的 , 而 你 是 我 的 . +I have got to try to find Tom . 我 试图 找到 Tom . +Tom does not share Mary is enthusiasm . 汤姆 没有 感受 到 玛丽 的 热情 . +English is not difficult to learn . 英語 並 不 難 學 . +She must have been sick . 她 一定 是 生病 了 . +I am feeling good this morning . 我 今天 早晨 感觉良好 . +I got sick from drinking too much . 因為 喝酒 喝 太 多 , 所以 我 生病 了 . +She answered my letter right away . 她 立刻 回信 給 我 . +Tom was sent back to Boston . 汤姆 被 送回 了 波士顿 +When will it be convenient for you ? 什麼 時候 對 你 來說 是 方便 的 ? +His decision to retire surprised all of us . 他 要 退休 的 決定 讓 我們 都 感到 吃 驚 . +I need to go to work . 我 得去 工作 了 . +Bring Tom here . 把 汤姆 带到 这里 来 . +Let is take a trip to New York . 去 纽约 吧 ! +Bush followed Reagan as president . 布什 继 里根 之后 当上 了 总统 . +I do not want to play anymore . 我 不想 再 玩 了 . +We need money . 我們 需要 錢 . +Anything else ? 还有 别的 吗 ? +I got home at seven . 我 七點 回到 家 . +He is difficult to get along with . 他 這個 人 很 難相 處 . +He hurt his left foot when he fell . 當 他 跌倒 時 , 他 傷 了 他 的 左腳 . +Have you ever seen Tokyo Tower ? 你 曾 看 過 東京 鐵塔 嗎 ? +He is as tall as her . 他 和 她 一样 高 . +It looks like an orange . 它 看 起來 像 橙子 . +Their apples are not as good as our apples . 他們 的 蘋果 沒有 我們 的 好 . +Everyone is talking about Tom . 每个 人 都 在 谈论 汤姆 . +I am having my house painted next month . 我 下 個 月 刷 我 的 房子 . +Beauty is but skin deep . 美貌 只是 表面性 的 东西 . +They were only interested in selling books . 他们 只 对 卖书 有 兴趣 . +Tom quit smoking cold turkey . 汤姆 突然 戒烟 了 . +Was it all an illusion ? 那 全是 幻觉 吗 ? +I wonder which way is the shortest . 我 想 知道 哪 一條 路 是 最短 的 . +Not all of the passengers escaped injury . 並非 所有 的 乘客 都 免 於 受傷 . +Somebody must care for the patient . 一定 要 有人 照顧 病人 . +How about calling it a day ? 今天 就 做到 這裡 如何 ? +Tom is very kind . 汤姆 人 很 好 . +I fed the leftovers to my dog . 我 把 剩下 的 东西 给 我 的 狗 吃 . +She will give her photo to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +My mother never gets up early . 我 的 母親 從 不 早起 . +Why do you ask ? 你 問 這個 幹 什麼 ? +I want you to tell me the truth . 我 想要 你 把 真相 告诉 我 . +Mars is a planet . 火星 是 一顆 行星 . +What did she say ? 她 說 了 什麼 ? +He plays the guitar well . 他 吉他 彈 得 很 好 . +My office is on the fifth floor . 我 的 辦 公室 在 五 樓 . +Everybody likes to goof off . 所有人 都 喜欢 偷懒 . +He lives alone in an apartment . 他 一個 人 住 在 公寓 裡 . +Are these all your books , Tom ? 汤姆 , 这些 全都 是 你 的 书 吗 ? +She managed to keep up appearances . 她 設法 保住 面子 . +He taught himself French . 他 自 學法 語 . +Her dream is to visit Paris . 她 的 梦想 是 参观 巴黎 . +Tom swam . 汤姆 游泳 了 . +She always believes me . 她 一直 都 相信 我 . +Tom does not know what he should do now . 汤姆 不 知道 他 现在 应该 做 什么 . +I am proud of my son . 我 为 我 儿子 感到 骄傲 . +In London , the police are always worried about finding a bomb on the train or subway . 在 倫敦 , 警察 總是 擔心 在 列車 上 發現 炸彈 . +What nonsense are you talking now ? 你 胡说 什么 呢 ? +Let is make some more . 我們 做 多一點 . +He works hard all the year round . 他 一年 到 頭 努力 工作 . +Are there any apples in the box ? 箱子 裡 有 蘋果 嗎 ? +The flood caused a lot of damage . 洪水 造成 了 很大 的 損害 . +My best friend dances really well . 我 最好 的 朋友 舞 跳 得 很 好 . +She respects her homeroom teacher a lot . 她 很 尊重 她 的 導師 . +A good idea occurred to him . 他 想到 一个 好 主意 . +He is good at rugby . 他 很 擅長 橄欖球 . +She took a bite of the apple . 她 咬了一口 蘋果 . +He had a shower before breakfast . 他 在 早餐 前 洗 了 个 澡 . +Tom got rid of his old books . 汤姆 扔掉 了 他 的 旧书 . +I need to search for my pen . 我 得 查找 一下 我 的 笔 . +My parents taught me to respect my elders . 我 的 父母 教育 我 应该 尊敬 老人 . +Let is take the bus . 讓 我們 坐 公共 汽車 去 . +You have three cars , do not you ? 你 有 三辆 车 对 吗 ? +I did nothing out of the ordinary . 我 沒 做 什麼 與 眾 不同 的 事 . +Tom just never should have done that . 汤姆 就 不该 做 那事 . +That makes no difference . 这 没有 任何 区别 . +They made their way through the crowd . 他們 從 人群 中 擠 過 去 了 . +I do not remember anything about the incident . 我 不 记得 事故 的 情况 . +You have not changed at all . 你 一点 都 没变 . +My brother likes horror movies . 我 哥哥 喜歡 恐怖 電影 . +Clothes make the man . 人要 衣裝 . +They closed their eyes . 他们 闭上眼睛 . +Some people like volleyball , others enjoy tennis . 有些 人 喜欢 排球 , 其他人 喜欢 网球 . +He became a member of this club five years ago . 他 在 五年 前 成為 了 這個 俱樂部 的 成員 . +He threatened to make it public . 他 威胁 要 公开 . +Tom is happy . 湯姆高興 . +You must always keep your hands clean . 您 应该 一直 让 手 保持 干净 . +The car crashed into the truck . 汽車 撞上 了 卡車 . +These shoes are hers . 這些 鞋 是 她 的 . +Tom says he does not feel like going out . 汤姆 说 他 不想 出去 . +I ran across an old friend near the bank . 我 在 银行 附近 碰见 老朋友 . +We caught some large fish there . 我們 在 那裡 抓 了 一些 大魚 . +Have you washed your hands yet ? 你 洗 過 你 的 手 了 嗎 ? +She is looking for her missing wallet . 她 正在 找 她 不 見 了 的 皮夾 . +You are not to leave this room . 你 不 應該 離開 這個 房間 . +He knows better than to marry her . 他 不 會 傻 到 去 娶 她 . +He has no manners at all . 他 一點 禮貌 也 沒有 . +Tom will be able to swim soon . 湯姆 將 很快 就 會 游泳 了 . +I was at home most of the day yesterday . 我 昨天 大部分 时间 在家 . +There are a few shops next to my house . 我家 旁边 有 几家 商店 . +We can not keep this a secret forever . 我們 不能 永遠 把 它 當 秘密 守住 . +She will give her picture to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +Turn on the light , please . 請 開燈 . +I changed my address last month . 上個月 我 換 了 我 的 地址 . +The dog is sitting by the bowl . 狗 坐在 碗 旁边 . +Oil is extracted from olives . 油 是从 橄榄 中 提炼 出来 的 . +He hid himself behind the door . 他 藏到 了 门 后 . +My daughter caught a cold . 我 的 女儿 感冒 了 . +Hey , look what I found . 嘿 , 看 我 找到 了 什么 . +There is something weird happening . 正 有 什么 奇怪 的 事情 发生 着 . +Show it to me . 给 我 看下 它 吧 . +I played with the baby on my knee . 我 在 膝蓋 上 跟 嬰兒 玩 . +I think that I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Let is wait until it stops raining . 我们 等 雨 停 吧 . +She does not have many friends in Kyoto . 她 在 京都 沒有 很多 朋友 . +I do not discriminate . 我 不 歧视 人 . +Do you want to go to the station with me ? 要 不 一起 到 车站 去 ? +This is not safe . 这 不 安全 . +I would like to work at the cafeteria . 我 想 在 餐廳 工作 . +Tom can not cross the border . Tom 没 办法 穿过 边界 . +May I ask some questions ? 我 可以 問 一些 問題 嗎 ? +If I were you , I 'd want to know what Tom is doing right now . 如果 我 是 你 , 我 不会 想 去 知道 Tom 现在 正在 做 什么 . +I have caught a terrible cold . 我 得 了 一種 可怕 的 感冒 . +I am sorry I did not make myself clear . 對 不起 , 我 沒 講 清楚 . +Tell us more . 告訴 我們 多一點 . +We got all the materials together . 我們 把 所有 的 材料 放在 一起 . +This school has many students . 这个 学校 有 很多 学生 . +Tom was a real hero . 汤姆 是 个 真 英雄 . +Your hair is pretty . 你 的 头发 很漂亮 . +Write your address here . 在 這裡 寫下 你 的 地址 . +Are you for or against his idea ? 您 赞成 还是 反对 他 的 想法 ? +I will drive you to the airport . 我会 开车 送 你们 去 机场 . +The accident is only survivor was a baby . 这场 灾难 的 唯一 幸存者 是 一个 婴儿 . +It is more blessed to give than to receive . 赠与 比 接受 更让人 觉得 幸福 . +Move quietly . 轻轻地 移动 . +Tom is very much alone . 汤姆 非常 孤单 . +I 'd never done it before . 我 以前 從未 過 它 . +My father often washes the dishes . 我 爸爸 常常 洗碗 . +Tom has not talked to Mary about that yet . 汤姆 还 没 跟 玛丽 谈 那事 . +The murmur of the brook lulls me to sleep . 溪流 潺潺 , 催 我 入眠 . +English is not spoken here . 這裡 的 人 不 說 英語 . +How long does it take to go from here to the Hilton Hotel ? 從 這裡 到 希爾頓 飯 店 要 花 多久 時間 ? +She likes chocolate , too . 她 也 喜欢 巧克力 . +She can speak English , of course . 她 會 講 英語 , 當然 . +If you do not go , I will not , either . 如果 你 不 去 , 那 我 也 不 會 去 . +I asked him to mend my shoes . 我 請 他 修理 我 的 鞋子 . +I went to the station to see my friend off . 我 去 车站 为 我 朋友 送行 . +I remember having seen her somewhere . 我 记得 好像 在 哪里 见 过 她 . +I thought pizza was what you wanted to eat . 我 認為 你 想 吃 的 是 比 薩 . +I suppose you are hungry . 我 猜想 您 饿 了 . +I am right . 我 是 對 的 . +I remember you . We met three years ago . 我 記得 你 . 三年 前 我們 見 過 面 . +I wish I could go to Japan . 我 非常 希望 能够 去 日本 . +Old people get up very early . 老人 們 很 早就 起床 . +Call me at the office . 打 電話 到 我 辦 公室 來 . +I did not know she was married . 我 不 知道 她 结婚 了 . +How far is it to the station ? 到 火車 站 有 多 遠 ? +Who would want to hire Tom ? 誰 會 想 雇 湯姆 ? +Tom put a lot of honey on his toast . 汤姆 往 他 的 面包片 上放 了 许多 蜂蜜 . +He is very good at playing violin . 他 非常 擅 長拉 小提琴 . +I do not like to use liquid laundry detergent . 我 不 喜歡 用 洗衣 液 . +Tom came home early yesterday . 湯姆 昨天 提早 回來 了 . +Will you switch seats with me ? 您 愿意 跟 我 换 座位 吗 ? +Is it still far from here ? 离 这里 还 远 吗 ? +Will you put down that paper and listen to me ? 你 能 放下 文件 聽 我 說 嗎 ? +I will be very happy if I can serve you . 能 为 你 服务 我会 感到 非常高兴 . +I am sorry . 对不起 . +He died of lung cancer . 他 死 於 肺癌 . +Tom could have figured that out without any help . 汤姆 能 不 依靠 任何 帮助 解决 那事 . +Where are we meeting ? 我们 在 哪里 见面 ? +This door is locked from the inside . 這 門 從 裡面 被 反鎖 了 . +How did you meet Tom ? 你 是 怎麼 見 到 湯姆 的 ? +How can you do this to me ? 你 怎么 这样 对 我 ? +Where did you live last year ? 你 去年 住 在 哪儿 ? +That is mine . I do not know where yours is . 那个 是 我 的 . 我 不 知道 你 的 在 哪里 . +It is not a suitable topic for discussion . 它 不是 一個 適合 討論 的 主題 . +Tom played with his dog . 汤姆 和 他 的 狗 玩 . +They failed the exam . 他們 考試 失敗 了 . +What are you reading right now ? 你 在 看 什么 ? +He studies Chinese as well . 他 也 学习 汉语 . +The train was late this morning . 今天 早上 火車 來遲 了 . +Come in . 进来 . +That boy over there is probably Tom is brother . 那边 的 那个 男孩 可能 是 汤姆 的 兄弟 . +He knows New York inside out . 他 对 纽约 了如指掌 . +How much does the wooden chair cost ? 那 张 木椅 要 多少 钱 ? +Tom is used to getting up early in the morning . 汤姆 习惯 早起 . +Their traditional life style no longer exists . 他们 传统 的 生活 方式 不再 存在 . +I must go home . 我 该 回家 了 . +You are lying , are not you ? 你 在 撒謊 , 不是 嗎 ? +It began to snow . 开始 下雪 了 . +I am really looking forward to seeing Tom again . 我 真 想 再 見 見 湯姆 . +I do not know any of them . 他们 中 的 任何 一位 我 都 不 认识 . +We hope a solution is found . 我们 希望 找到 解决 方法 . +Skip it . 不管 它 . +Tom is a professional magician . 汤姆 是 个 专业 的 魔术师 . +Can you explain the exact meaning of this word ? 你 能否 說出 這個 詞 的 精確 意思 ? +I suppose I felt a little jealous . 我 想 我 感到 有 點 嫉妒 . +I am just going for a walk . 我 只是 去 散散步 . +What is that ? 那 是 什么 啊 ? +We should have been more careful . 我們 應 該 更 小心 的 . +It is all Tom is fault . 全 是 湯姆 的 錯 . +A slip of the tongue is sometimes fatal to a politician . 有时候 口误 对 政治家 来说 是 致命 的 . +I look forward to hearing from you . 我 期待 收到 你 的 來信 . +You would not believe me if I told you . 我 告诉 你 , 你 也 不会 信 . +This is not a good idea . 這 不是 好 主意 . +It is nearly six o 'clock . 差不多 六点 了 . +Please contact us . 请 联系 我们 . +Wait here for a while . 在 这儿 等 一会儿 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +I am playing a TV game . 我 在 玩電視 遊樂器 . +This is none of your business . 这 不是 你 的 事 . +I am tired of watching television . 我 看 電視 看到 厭煩 了 . +I approved it . 我 同意 它 . +How long would it take ? 要 多长时间 ? +Tom took his wedding ring off . 汤姆 拿掉 了 他 的 婚戒 . +Close the door , please . 請關 上門 . +He insured himself . 他 給 自己 投 了 保險 . +I bought a VCR at that store for a low price . 我 在 上 商店 花 低价 买 了 录像机 . +Could I see you in private ? 我 能 私下 見 你 嗎 ? +We are not looking . 我們 沒有 看著 . +When you hurt others , you also hurt yourself . 你 若 是 傷害 別人 , 你 也 會 傷 害到 自己 . +You do not want to be an editor ? 你 不想 做 编辑 ? +I bought a camera for 30 dollars . 我 花 30 美元 買 了 一台 照相 機 . +Just at that time , the bus stopped . 就 在 那时 , 巴士 停住 了 . +He rescued the child from the fire . 他 從 火場 中 救 了 這個 孩子 . +What did you do ? 你 做 了 什么 ? +Do not use computer translation . 别用机 翻 . +How much sugar do you use ? 你 用 多少 糖 ? +Did you hear the click ? 你 聽到 了 點擊 聲 嗎 ? +He quarrelled with his brother . 他 和 他 弟弟 吵 了 起来 . +Tom is still sitting in the waiting room . 汤姆 还 在 等候 室里 坐 着 . +I am coming home , Tom . 我 在 回家 , 湯姆 . +Tom says he did not know what to do . 汤姆 说 他 不 知道 要 做 什么 . +I am tired of listening to Tom . 我 厌倦 了听 汤姆 说话 . +I talked with her for an hour . 我 跟 她 談 了 一個 小 時 . +Four is an unlucky number in Japanese . 4 在 日本 是 一个 不幸 的 数字 . +Are you on the committee ? 你 是 委員會 中 的 成員 嗎 ? +How long will you stay here ? 你 会 在 这儿 待 多久 ? +Tom knows you better than he knows anyone else . 湯姆 對 你 的 瞭解 比對 其他人 都 清楚 . +English and German are two related languages . 英語 和德語 是 兩種 相關 的 語言 . +Did you meet Tom ? 你 见 过 汤姆 了 吗 ? +Tom slipped out of the classroom . 湯姆 溜出 了 教室 . +All the desk drawers were empty . 所有 的 办公桌 抽屉 都 是 空 的 . +He told me not to tell lies . 他 告訴 我 不要 說 謊 . +She went from London to Paris . 她 从 伦敦 去 了 巴黎 . +I would like to go with Tom . 我 想 跟 湯姆 走 . +What did you have for lunch ? 你们 午饭 吃 了 什么 ? +The water turned to ice . 水 结成 冰 了 . +I hope I am not boring you . 希望 我 没有 烦 到 你 . +He likes to listen to the radio . 他 喜歡 聽 廣播 . +Your bag is open . 你 的 包开 着 . +It is too bad that you could not come . 你 不能 來 真是太 糟糕 了 . +I can not explain it now . 我 现在 不能 解释 . +He was drowned . 他 被 淹死 了 . +Why should I thank Tom ? 我 為 甚麼 該 感謝 湯姆 ? +It was not as expensive as I expected . 它 沒 有 我 想像 的 那麼 貴 . +I am very proud of my father . 我 非常 以 我 的 父親 為 榮 . +I have no time for reading . 我 没 时间 阅读 . +Her mother always accompanies her . 她 母亲 一直 陪 着 她 . +I feel we are going to get better . 我 感覺 我們 將 要 變得 更好 . +He was sleeping under the tree . 他 在 樹下 睡覺 . +We made friends with them . 我們 與 他們 交朋友 了 . +Today , I was supposed to study at the library but I woke up around 12 o 'clock . 今天 , 我 本 打算 在 图书馆 学习 但 到 12 点 左右 才 醒 . +I took a taxi from the station to the hotel . 我 從 車站 搭 了 一班 到 旅館 的 計程 車 . +My mother plays the piano well . 我 的 母親 鋼琴 彈 得 很 好 . +How long will you be staying ? 你 会 待 多长时间 ? +The Tigers lost the game , which was a surprise to us . 我們 覺得 很 驚訝 老虎 隊 竟然 輸掉 了 比賽 . +The Cold War ended when the Soviet Union collapsed . 冷战 以 苏联 解体 结束 . +We found out that he was her father . 我们 发现 他 是 她 的 父亲 . +This case might not get resolved for a while . 這個 案件 可能 不 會 在 短 時間 內 就 解決 . +Tom is door is open . 湯姆 的 門 開著 . +Keep next Sunday free . 把 下 周日 空 出来 . +Did you enjoy your winter holidays ? 你 寒假 過 得 愉快 嗎 ? +The dress is made of a thin fabric . 這件 衣服 是 由 薄織 物 製 成 的 . +He likes geography and history . 他 喜欢 地理 和 历史 . +The price of the book was $ 5 . 这 本书 的 价格 是 5 美元 . +Do you usually have tea for breakfast ? 你 經常 早餐 喝茶 嗎 ? +He hid himself behind a large rock . 他 藏到 一个 大石头 后面 了 . +No one could solve the puzzle . 没人 解得 了 这个 谜题 . +We live together . 我們 住在一起 . +He looked over my report . 他 仔細 看 了 我 的 報告 . +I am going to attend the meeting . 我 將 出席 這個 會議 . +I am so tired . 我 好累 . +How dare you speak to me like that ! 你 怎么 敢 这样 跟 我 说话 ! +Tom has been under a great deal of strain lately . 汤姆 最近 压力 特别 大 . +I go to school by bus . 我 乘车 去 学校 . +Hurry up , and you will be in time for the bus . 快点 , 你 就 能 准时 搭 上 公交车 了 . +My watch has stopped . 我 的 錶 停 了 . +I forgot . 我 忘 了 . +How much is this camera ? 这部 相机 多少 钱 ? +Bring your children along . 把 你 的 孩子 带来 . +Tom has only a week to decide . 湯姆 只有 一週 時間 做 決定 . +This book has a lot of pictures . 這 本書 有 很多 圖片 . +You are too generous . 你 太 大方 了 . +Did you feed the dog this morning ? 你 今天 早上 喂 过 狗 了 吗 ? +This is quite good . 这 可 真好 . +He put on the red jacket . 他 穿 上 了 紅色 的 外套 . +Open your eyes . 睁开眼睛 . +There was nothing I could do at that time . 当时 我 什么 都 不能 做 . +Whose house is across from yours ? 你家 對面 的 房子 是 誰 的 ? +My parents are divorced . 我 父母 离婚 了 . +Who can tell what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +She passed away peacefully in her sleep . 她 在 睡眠 中 安详 地 去世 了 . +My brother goes to college in Kobe . 我 弟弟 在 神戶 上 大學 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +I do not want to fail my exams . 我 不想 考试 失败 . +I can not tolerate this noise any longer . 我 不能 再 忍受 這個 噪音 了 . +Can anyone believe you ? 誰 會 相信 你 ? +He must have taken the wrong train . 他 一定 是 搭錯 火車 了 . +The batteries in my calculator are dead . 我 計算機 的 電池 沒電 了 . +We managed to swim across the river . 我們 成功 地游 過 了 河 . +Do not forget to take out the garbage . 别忘了 把 垃圾 拿出 去 . +Tom was making French fries . 汤姆 想 做 炸薯条 . +Do not be shy . 不要 害羞 . +Apart from some fruit , he has not eaten anything . 除了 水果 , 他 什么 都 没 吃 . +He went there instead of his father . 他 代替 他 的 父親 去 . +She showed him the photo . 她 把 照片 给 他 看 . +Please do not interrupt me . 请 不要 打断 我 . +There seem to be several reasons for his failure . 他 的 失败 看来 有 几个 原因 . +Just let Tom speak . 就 讓 湯姆 說 吧 . +Tom is hands are shaking . 汤姆 的 手 在 颤动 . +Did you kill Tom ? 是 你 杀 了 汤姆 吗 ? +I do not have the strength to keep trying . 我 没 力气 继续 尝试 了 . +You should apologize for your rudeness . 您 该 为 您 的 粗鲁 道歉 . +She gave up everything for her children . 為了 孩子 們 她 放棄 了 一切 . +You are not old enough to get a driver is license . 你 还 没到 可以 拿 驾驶执照 的 年龄 . +I got some sand in my eye . 我 的 眼睛 進 了 些 沙 . +Back off . 往 后退 点 . +What kind of a person is Tom ? 汤姆 是 个 什么样 的 人 ? +I like short hair . 我 喜欢 短发 . +Where does your grandfather live ? 你 爺 爺 住 在 哪裡 ? +Do you have a camera ? 你 有 照相机 吗 ? +We meet here once a week . 我们 每周 在 这儿 聚 一次 . +I like playing sports . 我 喜歡 運動 . +The policeman arrested the burglar . 警察 逮捕 了 小偷 . +This car is not worth repairing . 這輛 車 不 值得 修理 . +The missing cat has not been found yet . 失踪 的 猫 还 没 被 找到 . +She cleaned her room in a hurry . 她 急忙 地 清掃 了 她 的 房間 . +The song reminds me of my home . 这 首歌 让 我 想家 了 . +He is strong . 他 很 強壯 . +My daughter wants a piano . 我 女儿 想要 架 钢琴 . +I am curious . 我 很 好奇 . +Let me come in . 让 我 进去 . +He was elected captain of the team . 他 被 選為 團隊 的 隊長 . +Let is take a break now . 现在 , 让 我们 休息 一会儿 吧 . +All you have to do is to write your name and address here . 你 只要 在 这里 写下 你 的 姓名 和 地址 就行了 . +You should not wait here . 你 不 應該 在 這裡 等 . +People can not keep quiet . 人們 無法 保持沉默 . +What is in the living room ? 客廳裏有什 麼 ? +It is very easy to sound natural in your own native language , and very easy to sound unnatural in your non @-@ native language . 你 很 容易 把 母语 说 得 通顺 流畅 , 却 很 容易 把 非 母语 说 得 不 自然 . +Bring me today is paper , please . 請 幫 我 把 今天 的 報紙 帶來 . +He went by bicycle . 他 騎 腳 踏 車 去 . +It does not matter what he said . 他 說 的 不 重要 . +She was almost hit by a car . 她 幾乎 被 車 撞 到 . +The truth can be more painful than a lie . 真相 可能 比 谎言 更 令人 痛苦 . +He looks like an honest man . 他 看起来 忠厚老实 . +Tom is the richest guy I know . 汤姆 是 我 所 知道 的 最 有钱 的 家伙 . +Tom said he thought he should study French . 湯姆 說 他 認為 他 該 學法 語 . +Are you sure you do not want me to say anything ? 你 确定 要 我 什么 都 不 说 ? +We played basketball yesterday . 我們 昨天 打 籃球 . +It is no use telling me anything . 對 我 說 什麼 都 是 沒用 的 . +Where are you from ? 你 從 哪裡 來 ? +Tom wants popcorn . 湯姆 要 爆米花 . +Foreign investors withdrew their money from America . 外国 投资者 从 美国 收回 他们 的 钱 . +I wish I could buy a motorcycle . 但 願 我 能 買 一輛 摩托 車 . +An elephant has a long nose . 大象 有 長 鼻子 . +I can recommend this restaurant . 我 推荐 这个 餐厅 . +It was not very cold yesterday . 昨天 不是 很 冷 . +How long are you going to stay in Japan ? 你 會 待 在 日本 多久 ? +This watch is waterproof . 這 手 錶 是 防水 的 . +He is allergic to house dust . 他 對 室內 灰塵 過敏 . +We have got to get you out of here . 我們 必須 把 你 带走 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +My shoulder really aches . 我 的 肩膀 很 痠 . +Do not let the dog in . 别 让 狗 进来 . +We set a trap to catch a fox . 我们 设 了 个 陷阱 来 抓 狐狸 . +He painted all the walls green . 他 把 所有 的 牆壁 漆成 了 綠色 . +He is angry with you . 他 在 生 你 的 氣 . +Your English has improved a lot . 你 的 英語 進步 了 很多 . +What do you do after school ? 你 放学 以后 干什么 ? +I often play tennis on Sunday . 我 常常 在 週日 打 網球 . +She is dieting . 她 在 节食 中 . +Are not you the one who saved me ? 你 不是 救 了 我 的 人 嗎 ? +After a couple of drinks , the guy was feeling no pain . 喝 了 幾 杯酒 後 , 這 個 傢 伙 就 感 覺 不 痛 了 . +The problem is , he has no money . 问题 是 他 没钱 . +Give a thief enough rope and he will hang himself . 多行不义必自毙 . +We never gave up . 我們 從不 放棄 . +I did not want to surprise you . 我 没 想 吓唬 你 . +I am tired of dancing . 我 厭倦 了 跳舞 . +It is almost time to go to bed . 差不多 是 就 寢 的 時間 了 . +You work too hard . 你 工作 太 努力 了 . +What do you do here ? 你 在 這裡 做 甚麼 ? +All you need is ignorance and confidence and the success is sure . 要 想 成功 只 需要 无知 和 自信 . +Please tell me your address . 请 告诉 我 你 的 地址 . +Nobody knows . 谁 也 不 知道 . +Take it easy . 放 輕 鬆 . +Mary helped her mother cook . 瑪麗幫 她 媽媽 做飯 +It was a terrible day . 這 是 糟糕 的 一天 . +I am really looking forward to it . 我 很 期待 哦 . +I just wanted to speak to Tom . 我 只 想 跟 汤姆 说话 . +My father began jogging last month . 我 父親 上 個 月 開始 慢跑 . +I broke my arm . 我 的 手臂 斷 了 . +What is the name of that river ? 這條 河 叫 什麼 名字 ? +This is the house where he lives . 這 是 他 住 的 房子 . +There are more clouds today than yesterday . 今天 的 雲比 昨天 的 多 . +I can not get away from work now . 我 現在 上班 無法 離開 . +Please fill the teapot with boiling water . 請用 開水 把 茶壺 灌滿 . +I enjoyed talking with him . 我 和 他 谈 得 很 愉快 . +I read a book last night . 我 昨晚 讀書 . +This boy is lazy . 这个 男孩子 很 懒 . +I asked Tom to wait here . 我 讓 湯姆 在 這裡 等 . +I am seeing my uncle tomorrow . 我 明天 要 去 看 我 叔叔 . +You will never see that again . 你 以后 再也不会 看到 它 了 . +Anyway , you will never know . 不管 怎樣 , 你 永遠 不 會 知道 . +He drove the car , listening to music on the radio . 他 一面 開車 一面 聽 收音 機 的 音樂 . +She plays tennis after school . 她 放学 后 打网球 . +She gets up at seven . 她 早上 7 点 起床 . +It is 3 : 30 . 3 点 半 了 . +She promised not to go out alone . 她 答應 不單 獨 外出 . +That was a beautiful moment . 那 是 個 美好 的 瞬間 . +To distinguish right from wrong is difficult . 要 分清是非 是 困難 的 . +Please tell me when to go . 請 告訴 我什麼 時候 該 走 . +I am afraid of dying . 我 怕死 . +Christmas is soon . 聖誕節 快 到 了 . +He teaches English to his friend . 他 對 他 的 朋友 教 英語 . +May I use your toilet ? 我 能 用 一下 你们 的 厕所 吗 ? +He traveled all over the world . 他 周遊 世界各地 . +That is the office where he works . 那 是 他 工作 的 辦 公室 . +Tom drinks juice . Tom 喝 果汁 . +Does he go to school on foot or by bicycle ? 他 走路 去 学校 还是 骑车去 学校 ? +You do not seem to be as afraid as Tom seems to be . 你 似乎 并 不 像 汤姆 看起来 那样 害怕 +We have to pull the weeds . 我們 必須 拔除 雜草 . +Do not fear the unexpected , but be prepared for it . 不要 害怕 意外 , 但要 有 準備 . +Science is fun . 科學 好玩 . +Write everything down . 把 所有 東西 寫 下來 . +Tom knew how to do that . 汤姆 知道 怎么 做 那事 . +There is a television in the room . 房里 有个 电视机 . +May I see your boarding pass , please ? 請 讓 我 看看 您 的 登機 證好 嗎 ? +My grandfather is very healthy . 我 的 祖父 非常 健康 . +He is afraid of getting lung cancer . 他 怕 得到 肺癌 . +I can read German , but I can not speak it . 我 能看懂 德语 , 但 不会 说 . +She said that he was handsome . 她 說 他 很 英俊 . +Almost no one believes her . 几乎 没 人 相信 她 . +He is unsociable . 他 太 不 合群 . +We had a great relationship . 我們 的 關 係 非常 好 . +Do you like it ? 你 喜歡 嗎 ? +Do it somewhere else . 到 别处 去 做 . +Smoking is not permitted here . 这里 不 允许 抽烟 . +Do you know how to use a computer ? 您 会 使用 计算机 吗 ? +This is a book . 这 是 一 本书 . +I can not thank you enough . 我 無法 表達 我 對 你 的 感謝 . +I cannot follow your logic . 我 跟不上 你 的 逻辑 . +I am never at home on Sundays . 我 周日 从不 在家 . +Tom had a heat stroke . 汤姆 中暑 了 . +I ordered a book from London . 我 從 倫敦 訂購 了 一本 書 . +I will come earlier next time . 我 下次 會 早點 來 . +Please help yourself to the cake . 你们 自己 吃 蛋糕 . +When I was a child , I spent most of my time indoors reading . 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 阅读 . +My parents have just arrived at the station . 我 的 父母 剛剛 到 達 車站 . +A rabbit has long ears and a short tail . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +I do not know where she lives . 我 不 知道 她 住 在 哪裡 . +Some say that China was like a Russian colony . 有人 說 中國 像是 俄國 的 殖民地 . +I am clearly missing something here . 我 确实 在 这里 丢 了 东西 . +He prefers football to baseball . 他 喜歡 足球 勝 過 棒球 . +I have got a boat . 我 有 一艘 小船 . +That was my mistake . 那 是 我 的 錯 . +Tom was able to go to college thanks to a scholarship . 因為 一份 獎學金 , Tom 得 以上 大學 . +They are watching a movie . 他們 在 看 一部 電影 . +Tom told me Mary is leaving tomorrow . 汤姆 和 我 说 明天 玛丽 会 离开 . +Someone has brought us some grapes . 有人 帶 了 一些 葡萄 給 我們 . +Take it easy . 別 緊張 . +What else have you figured out ? 你 还 发现 什么 了 ? +What is the purpose of your trip ? 你 旅行 的 目的 是 什麼 ? +I can not concentrate on my work because of the noise . 由于 噪音 , 我 无法 集中精力 工作 了 . +Could you please pass me the pepper ? 請 你 把 胡椒 遞 給 我 好 嗎 ? +What is the matter with your car ? 你 的 車子 怎麼 了 ? +What is it ? 它 是 什么 ? +Are you ready ? 你们 准备 好了吗 ? +Tom sold Mary his car . 汤姆 把 他 的 汽车 卖给 了 玛丽 . +We have got plenty of time . 我們 有 充足 的 時間 . +Our baby can not talk yet . 我家 宝宝 还 不会 说话 . +He really wants to meet you . 他 真的 想見 你 . +We are all longing for peace in the world . 谁 都 希望 世界 和平 . +Tom was on the list . 湯姆 在 名單 上 . +Many English words are derived from Latin . 許多 英文 單字 源自 於 拉丁文 . +He is fond of adventure . 他 喜欢 冒险 . +My father loves pizza . 我 父親 愛 吃 比 薩 . +What is going on with Tom ? 汤姆 出 什么 事 了 ? +His pronunciation is far from perfect . 他 的 发音 远非 完美 . +My house is here . 我家 在 這裡 . +The company is competitive edge will be eroded if system engineers continue to leave . 如果 系统 工程师 继续 离开 , 公司 的 竞争 优势 将 会 被 削弱 . +How dare you say that to me ! 你 怎麼 能 這麼 對 我 說 話 ! +What did Tom expect Mary to do ? 汤姆 打算 让 玛丽 做 什么 ? +Please take off your hat . 请 您 摘下 您 的 帽子 . +Let me know if you need any help . 你 需要 帮助 就让 我 知道 . +Well , the night is quite long , is not it ? 夜晚 很 长 , 不是 吗 ? +She will be getting married next year . 她 明年 將 要 結婚 . +I think Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +I was right behind you . 我 就 在 你 后面 . +The bus should be coming soon . 公車 應該 很快 就 會 來 了 . +That is quite obvious . 那 很 明顯 . +I am dead tired . 我 累死 了 . +This is a well @-@ written article . 這 是 篇 寫 得 很好 的 文章 . +Your cake is delicious . 您 的 蛋糕 很 美味 . +What time is it by your watch ? 你 表上 是 几点 ? +My watch has been stolen . 我 的 表 被 偷 了 . +That is his house . 那 是 他家 . +Do you know anyone who is not on Facebook ? 你 有 認識 沒 有用 Facebook 的 人 嗎 ? +Tom does not want anything to drink . 汤姆 什么 都 不想 喝 . +I am single . 我 單身 . +Now shake hands and make up . 现在 握 个 手 和解 吧 . +Iron is a useful metal . 铁 是 个 有用 的 金属 . +This song makes me homesick . 这 首歌 让 我 想家 了 . +I was the happiest man on earth . 我 曾 是 世界 上 最 幸福 的 男人 . +He really loves beer and gets drunk every day . 他 喜歡 喝爱 啤酒 , 而且 每天 都 喝醉 . +What is the meaning of this phrase ? 這個 片語 是 什麼 意思 ? +The train arrived on time . 火车 准时 到 了 . +Ouch ! My finger got caught in the door . 好 痛 ! 被 门 夹到 手指 了 ! +What do you base your theory on ? 你 的 理論 是 以 什麼 為 基礎 ? +Someone ate all my cupcakes . 某人 把 我 的 杯形 蛋糕 吃 完 了 . +They kissed each other . 他们 亲吻 了 . +Tom has to do that again . 湯姆 必須 再 做 一遍 . +How much is four times six ? 6 的 4 倍 是 多少 ? +I could smell the alcohol on his breath . 我 能 闻到 他 呼吸 中 的 酒精 味 . +Breakfast is from seven to nine . 早餐时间 在 七点 到 九点 . +A full moon can be seen tonight . 今晚 能 看到 满月 . +I wish he would write more often . 我 希望 他 来信 更 勤 些 . +I have got a few friends . 我 有 一些 朋友 . +Why did you paint the bench red ? 为什么 你 把 长凳 漆成 红色 了 ? +He grew up in Germany . 他 在 德國 長大 . +They let me go . 他們 讓 我 走 . +I am seeing you in a new light . 我 对 你 刮目相看 了 . +I did not feel bad . 我 没 觉得 不好 . +He began to look for a job . 他 开始 找 工作 了 . +You need not do it at once . 你 没 必要 马上 去 做 . +Tom seems tough . 汤姆 看来 难缠 . +I do not have any friends to help me . 我 没 朋友 帮 我 . +It is difficult to play the piano . 彈 鋼琴 很困 難 . +Tom poured cold water over himself to wake himself up . 汤姆 给 自己 浇 凉水 以 清醒过来 . +I wonder what this phrase means . 我 想 知道 这 句 话 的 意思 . +I think that she knows the truth . 我 覺得 她 知道 真相 . +I love watching soccer games . 我 爱看 足球 . +It is an artificial flower . 這 是 朵 人造花 . +Nobody was injured . 沒 有人 受傷 . +You should have known better than to take an examination without preparing for it . 你 應該 知道 要為 考 試作 準備 . +We were able to catch the last train . 我们 能 赶上 最后 一班 火车 . +Make sure to turn off all the lights before going out . 出去 之前 确认 一下 所有 的 灯 都 关了 . +Grab Tom . 抓住 汤姆 . +Are you sure Tom will come back ? 你 確定 湯姆會 回來 嗎 ? +Tom also talked . 湯姆 也 說話 了 . +I have no regrets about what I did . 我 對 我 做 過 的 事 不 後 悔 . +I do not need you or anybody else . 我 不 需要 你 或 别的 人 . +It does not matter what you do . 你 做 什么 都 无所谓 . +He sent me some American magazines . 他 送 給 我 一些 美國 雜 誌 . +The house stood out because of its unusual shape . 那 房子 因为 其 少有 的 形状 被 突显 出来 . +This makes me so angry . 這 讓 我 非常 憤怒 . +I watch my weight very carefully . 我 非常 注意 我 的 體重 . +My passport has expired . 我 的 護照 過期 了 . +She is practicing the violin now . 她 現在 正在 練習 拉 小提琴 . +That fox must have killed the hen . 那 隻 狐狸 殺 了一 隻 母 雞 . +The boy is eating bread . 这个 男孩子 在 吃 面包 . +I was always good at English . 我 一直 都 擅長 英文 . +I am a Hyogo University student . 我 是 個 兵庫 大學 的 學生 . +I have three million dollars . 我 有 三百 萬美圓 . +I can not put up with that noise any longer . 我 无法 再 忍受 那 噪音 了 . +When water freezes it becomes ice . 水 結凍 後 , 變成 冰 . +I think Tom is optimistic . 我 認為 湯姆樂 觀 . +I tried to change the subject . 我 試圖 改變 話題 . +I gave you my word . 我 和 你 保证 . +He played the part of Hamlet . 他 扮演 哈姆雷特 的 角色 . +I will ask him about it tomorrow . 我 明天 會 問 他 . +I only do what I am paid to do . 我 祇 做 別 人 付 錢 讓 我 做 的 事 . +I will tell you the truth . 我 會 告訴 你 真相 . +When will your new store open ? 你 的 新 商店 什么 时候 开张 ? +Tom was admiring my new car at the time the truck crashed into it . 在 湯姆欣 賞 我 的 新車 的 同時 , 一輛 卡車 撞 了 過來 . +The building has 20 floors . 大楼 有 20 层 . +No one likes war . 没有 人 喜欢 战争 . +He seems to have told a lie . 他 似乎 已經 說 了 謊 . +Who else knows about it ? 還 有 誰 知道 它 ? +There is bamboo growing in the garden . 花園 裡 有 竹子 在 生長 . +Break it up ! 停手 ! +She hopes to become a designer . 她 希望 成為 一名 設計 師 . +Did you accomplish your goals ? 你 達成 你 的 目標 了 嗎 ? +Whose is this car ? 這輛 汽車 是 誰 的 ? +Is there a doctor on board ? 船上 有 醫生 嗎 ? +He made the most of his opportunities . 他 盡力 地 利用 了 他 的 機會 . +Why does Tom call me Mary ? 为什么 汤姆 叫 我 玛丽 ? +I like snow a lot . 我 很 喜歡 雪 . +I go to the office by bicycle except on rainy days . 除了 雨天 , 我 都 是 骑车去 上班 的 . +You have got to wake up . 你 必須 醒醒 . +He is responsible for the accident . 他 為 這個 事故 負責 . +I have to clean the bathroom . 我 要 清理 廁所 了 . +I should obey . 我 應 該 服 從 . +The neighborhood was silent . 社區 是 安靜 的 . +Strange to say , he did not know the news . 说来 奇怪 , 他 不 知道 这个 消息 . +She has a flower in her hand . 她 手上 有 一朵花 . +How to overcome the high value of the yen is a big problem . 如何 克服 日元 升高 是 个 大 问题 . +Tom is not afraid of anything . 湯姆 對 甚麼 都 不怕 . +You will be punished if you break the law . 如果 你 違反 了 法律 , 你 將 受到 懲罰 . +Tom enjoys gardening . 汤姆 享受 园艺 . +He has not come yet . He must have missed the bus . 他 还 没来 . 他 肯定 错过 公交车 了 . +This car was so cheap that he could afford it . 這車 便宜 得 讓 他 能 買 得 起 . +I do not like school . 我 不 喜欢 学校 . +I have to help my mother . 我 必須 幫忙 我 母親 . +You might meet him . 你 可能 會 見 到 他 . +I was brought up in the country . 我 在 鄉下 被 撫養 長大 . +I was wondering if you were going to show up today . 我 在 想 你 今天 会 不会 来 . +What does it contain ? 它 包含 了 什么 ? +Do you know anything about Tom is parents ? 你 知道 任何 关于 汤姆 父母 的 事 吗 ? +It is on the tip of my tongue . 它 在 我 的 舌尖 上 . +I can not find my glasses . 我 的 眼鏡 不 見 了 . +Today , the weather is very nice . 今天天气 很 好 . +Language is the means by which people communicate with others . 语言 是 人们 与 他人 交流 的 手段 . +Who did you hang out with last weekend ? 你 上 週末 跟 誰 閒逛 了 ? +Who else in Boston do you know ? 你 还 認識 波士 頓 的 誰 ? +My brother is now in Australia . 我 哥哥 現在 在 澳洲 . +That is what Tom requested . 那 就是 汤姆 想要 的 . +I could not make him understand it . 我 無法 讓 他 明白 . +Call us . 联系 我们 . +Could I borrow your gray suit ? 我 可以 借 你 的 灰色 西装 吗 ? +What about having fish for dinner ? 晚餐 吃 魚 怎麼樣 ? +Teachers must understand children . 教師 必須 了解 孩子 . +Professional writers do not have a regular income . 專職 作家 沒有 固定 的 收入 . +Our team won the game . 我們 這隊 贏 得 了 比賽 . +Someone locked me in the room . 有人 把 我 鎖 在 這 房間 裡 . +You are wanted on the phone . 有 你 的 電話 . +He likes sleeping . 他 喜欢 睡觉 . +Can you put up with the way he behaves ? 你 能 容忍 他 做事 的 方式 么 ? +Soldiers must carry out their orders . 軍人 必須 履行 他們 的 命令 . +There are many earthquakes in Japan . 日本 有 许多 地震 . +I have no clue . 我 一无所知 . +Which book are you reading ? 你 在读 哪 本书 ? +Did you rent an apartment ? 你 租房子 了 吗 ? +Tom was too scared to say anything . 汤姆 吓 得 说不出 话 . +Maybe you 'd better come with us . 也許 你 最好 和 我們 一起 來 . +Animals cannot exist without air and water . 動物 離不開 空氣 和 水 . +You are too old to be doing this kind of thing . 你老 得 做不了 这种 事 了 . +Modern technology has made our lives more comfortable . 现代 科学技术 让 我们 的 生活 更加 舒适 . +That nurse is very kind and polite . 那个 护士 人 很 好 , 又 有 礼貌 . +He carried six boxes at a time . 他 一次 搬 6 个 箱子 . +What country are you from ? 你 是从 哪个 国家 来 的 ? +I got the information from him directly . 我 直接 從 他 那裡 得到 訊息 . +Is it going to snow tonight ? 今晚 会 下雪 吗 ? +I work for a bank . 我 為 一家 銀行 工作 . +You and he are both very kind . 你 和 他 都 很 友好 . +Do you want me to make coffee ? 你 要 我 煮 咖啡 嗎 ? +The school needed a new teacher . 學校 需要 一個 新 的 老師 . +The lake is deepest at this point . 这 是 湖 的 最深处 . +" Can somebody help me ? " " I will . " " 誰 可以 來 幫 我 一下 ? " " 我 幫 你 . " +I would like to become a poet . 我 想要 成為 詩人 . +How about going out for a walk ? 出去 散步 怎麼樣 ? +Tom asked Mary to help . 湯姆 向 瑪麗 求助 . +That means a lot to me . 那 对 我 来说 意义 重大 . +I can teach you how to drive . 我会 教 你 怎么 开车 . +Where is the boss ? 老 闆 在 哪 裡 ? +I have been looking for you . 我 一直 在 找 你 . +He decided to marry her . 他 決定 娶 她 . +Have a good flight . 飞行 愉快 ! +They are young , but they have experience . 他們 還 年輕 , 但 他們 有 經驗 . +Tom asked a few questions . 湯姆 問 了 幾個 問題 . +I got off at the wrong station . 我 在 錯誤 的 車站 下車 . +He comes here almost every day . 他 几乎 每天 都 来 . +I am bad at sports . 我 不 擅長 運動 . +I heard that Tom attempted suicide . 我 聽 說 湯姆 試圖 自殺 . +I bought them each a present . 我 買給 了 他們 每人 一份 禮物 . +I was supposed to go to school . 我 该 去 上学 . +Other people is expectations affect how we behave . 其他人 的 期望 會 影響 我們 的 行為 . +Tom seems to speak French better than before . 汤姆 讲 法语 看来 比 以前 好 . +You had better not start until they arrive . 你 最好 不要 在 他們 來 之前 開始 . +I lost my way in the woods . 我 在 树林 里 迷路 了 . +I admitted that I did not know how to do that . 我 承認 我 不 知道 怎麼 做 . +Is that what it is called ? 那 就是 它 的 叫法 嗎 ? +Be calm . 冷静 点 . +If I were you , I 'd do the same . 如果 我 是 你 , 我 也 会 这么 做 . +I lost my money . 我 丢 了 我 的 钱 . +He painted his bicycle red . 他 把 他 的 自行车 刷成 红色 . +It will be spring soon . 春天 快 來 了 . +Do you want to know why I lied to Tom ? 你 想 知道 为什么 我 对 Tom 说话 吗 ? +You should do your homework now . 你 應該 現在 做功 課 . +The boy got his hands dirty . 這個 男孩 把 他 的 手 弄 髒 了 . +This is a beautiful flower . 这 是 一朵 美丽 的 花 . +Did you already eat at home ? 你 在家 吃 过 了 吗 ? +I did not get the point of his speech . 我 没有 抓到 他 演讲 的 重点 . +Let me know the result as soon as you can . 尽早 让 我 知道 结果 . +Tom died . 汤姆 去世 了 . +He is a meth addict . 他 是 个 吸毒 男 . +After reading his books I feel I can construct a house . 讀完 他 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I want to go with a friend to Hokkaido next month . 我 想 下个月 和 一个 朋友 去 北海道 . +I am almost 180 centimeters tall . 我 差不多 180 公分 高 . +My father retired at the age of 65 . 我 的 父亲 65 岁 的 时候 退休 了 . +I saw a group of foreigners on my way to school this morning . 今天 早上 在 去 学校 的 路上 , 我 看到 了 一群 外国人 . +There is a school near my house . 我家 附近 有 一所 學校 . +Unfortunately , she is absent . 不幸 的 是 , 她 不 在 . +She whispered something to him . 她 對 他 小聲 說 了 些 什麼 . +Tulips will bloom soon . 鬱金香 很快 將 盛開 . +They fine you in Singapore if you throw trash in the streets . 在 新加坡 的 街道 上 扔 垃圾 会 被 罚款 . +She was pleased with the new dress . 那条 新 裙子 让 她 很 满意 . +He is fluent in French . 他 说 法语 说 得 很 流利 . +Are you staying at this hotel ? 你 住 在 這家 旅館 嗎 ? +The doctor may have said so . 医生 可能 说 过 . +I can not find my keys anywhere . 我 到处 都 找 不到 我 的 钥匙 . +This room is too small . 這個 房間 太小 了 . +He likes taking care of the garden . 他 喜歡 照顧 花園 . +What exactly happened to you ? 你 到底 怎麼 回事 啊 ? +I think that they will be late . 我 想 他們 會 遲 到 . +Have you eaten lunch ? 你 吃 過午 飯 了 嗎 ? +Who was the letter written to ? 信是 写给 谁 的 ? +Tom needs encouragement . 湯姆 需要 鼓勵 . +I picked up a pretty shell at the seaside . 我 在 海边 捡了个 漂亮 贝壳 . +Is somebody there ? 那边 有人 吗 ? +It is necessary for you to go there . 你 有 必要 到 那里 去 . +It will take a long time . 我 要 花 很 长时间 . +He will be back tomorrow . 明天 他 會 回來 . +You should use a deodorant . 你 应该 用 一下 除臭剂 . +He plays very well . 他 玩 得 很 好 . +This time it is different . 这 一次 不 一样 . +He leaned on his elbows . 他 把 身子 靠 在 胳膊 上 . +The picture is hanging on the wall . 那幅 图 挂 在 墙上 . +She does not want to talk about it . 她 不想 提 了 . +I can usually tell when someone is hiding something from me . 我 常常 能 分辨 出来 一个 人 是不是 瞒 着 我 什么 事情 . +I will call Tom back . 我会 叫 汤姆 回来 . +This is the tallest tower in Japan . 這 是 日本 最高 的 塔 . +I have not started anything yet . 我 还 没 开始 做 任何 事 . +I applied for membership in the association . 我 申請 成為 協會 會員 . +I wanted to see Tom is room . 我 就 想 看看 汤姆 的 房间 . +She looked out of the window . 她 看 了 窗外 . +I am never late for school . 我 從來 沒有 上學 遲到 . +Your opinion is similar to mine . 你 的 意見 跟 我 的 相似 . +She does not have a driver is license . 她 没有 驾照 . +We headed for the mountain cottage . 我们 向 山间 小屋 走去 . +I can wait for you . 我 可以 等 你 . +I understand that you feel uneasy , but do not worry . 我 知道 你 不自在 , 但 别急 . +Can you tell those twins apart ? 你 可以 分出 那 對 雙 胞胎 中 誰 是 誰 嗎 ? +Somebody came . 有人 来 了 . +Do not be so pessimistic . 不要 感觉 那么 悲观 . +You ought to thank him . 你 应该 感谢 他 . +Are any seats still available ? 還 剩 座位 嗎 ? +I believe Tom will do that . 我 相信 汤姆 会 去 做 . +Ten years is a long time . 十年 是 很 長 的 時間 . +She gave away all her dolls . 她 把 她 所有 的 娃娃 送給 了 別人 . +I am in favor of your proposal . 我 贊成 你 的 建議 . +I used to go out with friends every weekend . 我 曾经 每 周末 都 和 朋友 外出 . +Here is the bill . 这 是 账单 . +I will prove it to you . 我会 给 你 证明 的 . +A capital letter is used at the beginning of a sentence . 一個 句子 以 一個 大 寫 字母 開始 . +We have two daughters . 我们 有 两个 女儿 . +I do not know what day he will come . 我 不 知道 他 星期 幾會 來 . +You will understand later . 你 晚一 會 就 能 明白 . +Mary is pregnant with twins . 玛丽 怀 了 双胞胎 . +The church is at the foot of a mountain . 教堂 位于 山脚 . +I am very glad to see you again . 我 很 高興 再次 見 到 你 . +She wrapped herself in a blanket . 她 用 一條 毯子 把 自己 裹起 來 . +I have never been so proud of you . 我 从没 这么 以 你 为 豪 . +How about going for a drive ? 去 開車 兜風 怎樣 ? +Do you know how the accident happened ? 你 知道 這個 意外 是 如何 發生 的 嗎 ? +He got to school just in time . 他 刚好 准时 到校 . +We have issues we have to deal with . 我們 有 我們 必須 解決 的 問題 . +There is a good chance that gasoline prices will go up . 油价 上涨 的 可能性 很 高 . +What do you need the money for ? 你 要 这 钱 干嘛 ? +That furniture is my mother is . 那個 家具 是 我 母親 的 . +I must decline . 我 必须 拒绝 . +I will make you a new suit . 我 會 給 你 做一套 新 衣服 . +They made him do the work again . 他們 要 他 再 做 一次 這個 工作 . +I know you do not want to talk to me . 我 知道 你 不想 跟 我 说话 . +I stayed home all day long reading novels . 我 全天 在家 讀 小 說 . +He never said that . 他 從來 沒 說 過 那個 . +Turn on the radio , please . 請 打開 收音 機 . +The room smelled of tobacco . 房里 闻 起来 有 股 烟味 . +They refused . 他們 拒絕 了 . +Tom is waiting for Mary to return . 汤姆 正在 等 着 玛丽 回来 . +If he were a little younger , he would be eligible for the post . 如果 他 年轻 一点 , 他 将 很 适合 这个 职位 . +My aunt made a new skirt for me . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +Do you have a lot of money with you ? 你 身上 有 很多 钱 吗 ? +The man finally confessed . 那个 男人 最终 供认 了 他 的 罪行 . +Tom found out where Mary lives . 湯姆 找到 了 瑪麗 的 住處 . +I want you to grow up . 我 希望 你 能 长大 . +I was unable to complete the task . 我 無法 完成 這個 任務 . +I will lend you the book as soon as I am done reading it . 我 一把 这 本书 读完 了 就 借给 你 . +She walked around looking for him . 她 走來 走去 地 找 他 . +This machine is out of order . 这个 机器 出 故障 了 . +Give me an apple . 給 我 一個 蘋果 . +Russia is facing great financial difficulties . 俄罗斯 面临 着 严重 的 财政困难 . +English is taught in most countries . 大部份 的 國家 都 教 英語 . +Tom returned to his hometown to visit his parents during the summer break . 汤姆 在 夏休 回乡 看望 父母 . +Tom whispered something to Mary and she smiled . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 笑 了 . +Tom knows we are not happy . 湯姆 知道 我們 不 高興 . +What is the difference between this and that ? “ 这 ” 和 “ 那 ” 有 什么 区别 ? +Does anybody have a pencil ? 有 谁 有 铅笔 吗 ? +I can not sleep well . 我 睡 不好 . +How many people are in this room ? 在 這個 房間 裡 有 多少 人 ? +Will you hold this seat for me ? 您 能 給 我 留 這個 座 嗎 ? +When people meet , first impressions determine more than 50 percent of whatever happens next . 在 人际交往 中 , 第一印象 决定 着 将要 发生 的 事情 内容 的 百分之五十 以上 . +Nowadays many people travel by car . 現在 很多 人 開車 去 旅行 . +Are these your daughters ? 這些 是 你 的 女兒 嗎 ? +The sky today is the bluest that I have ever seen it . 今天 的 天空 是 我 看 過 最藍 的 天空 . +Life today is fast @-@ moving and complex . 今日 的 生活 是 迅息 萬變和 複 雜 的 . +I have finished reading that book . 我 讀 完 了 那 本書 . +The boat passed under the bridge . 船 從 橋下 通過 . +He is the same age as me . 他 和 我 同岁 . +What do you want to be ? 您 想 成为 什么 ? +Let is take a break now . 现在 休息 一下 . +Everybody wants to sit beside her . 大家 都 想 坐在 她 旁边 . +I listened to some records last night . 我 昨晚 聽 了 一些 唱片 . +We elected her captain of our team . 我们 选 她 为 我们 队 的 队长 . +Why do not you go see Tom ? 你 為 甚麼 不 去 看 湯姆 ? +May I ask you a question ? 我 可以 问 你个 问题 吗 ? +He likes fishing . 他 喜歡 釣魚 . +Here is where they usually have dinner . 这儿 是 他们 通常 吃晚饭 的 地方 . +She put on her hat to go out . 她 戴 上 了 帽子 准备 出去 . +After dinner , I did my homework . 吃 完 晚 飯 後 , 我 做作 業 . +You are still too young to get a driver is license . 你 還 太 年輕 無法 取得 駕駛 執照 . +How many boys are in this class ? 这个 班 有 多少 男生 ? +Would you like to eat with us ? 你 想 和 我們 一起 吃 嗎 ? +Tom took the hammer away from Mary . 汤姆 从 玛丽 那里 拿走 了 锤子 . +Can you forgive me ? 可以 原谅 我 吗 ? +Why are you awake ? 你 为什么 醒 着 ? +Everyone hoped that she would win . 每個 人 都 希望 她 會 獲勝 . +Do not leave the lights on when you leave the room . 离开 房间 时 , 不要 留灯 . +Elephants are the largest land animals alive today . 大象 是 如今 现存 的 陆生动物 里 最大 的 . +Old people often talk to themselves . 老人 時 常自言 自語 . +Their wedding will be tomorrow . 他们 的 婚礼 将 在 明天 举行 . +I have never seen Tom laugh . 我 從 沒見 湯姆笑 . +I did not want to humiliate you . 我 不是 想要 羞辱 你 . +He does not have any friends . 他 没有 任何 朋友 . +They worked jointly on this project . 他们 一起 为 这个 项目 工作 过 . +I think my right arm is broken . 我 想 我 的 右 手臂 斷 了 . +I know that you like sports . 我 知道 你 喜欢 体育运动 . +Tom does not even have a driver is license . 湯姆 甚至 沒有 駕駛 證 . +He made remarkable progress in English . 他 的 英語 有 了 顯著 的 進步 . +It is hard to believe Tom was not aware that Mary was in love with him . 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +Tell me how you solved the problem . 告訴 我 你 如何 解決 了 這個 問題 . +I am under so much pressure , I just want to cry . 我 壓力 好大 , 我 真 想 哭 . +There is a hole in your sock . 你 的 袜子 上 有 个 洞 . +What time does the train arrive at Yokohama ? 火车 什么 时候 到 横滨 ? +She does not like sushi . 她 不 喜欢 寿司 . +He lived abroad for many years . 他 居住 在 國外 多年 . +Is this really real ? 这 真是 真的 吗 ? +Shakespeare is too hard to read . 莎士比亞 的 作品 太 難讀 了 . +Really ? 你 确定 ? +Do not distract me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +I have got no friends . 我 没有 朋友 . +I have many abilities . 我 有 很多 才能 . +All Americans have to pay their taxes . 所有 美国 人 都 需要 缴税 . +Tom is hammered . 汤姆 醉 了 . +Welcome to your new home . 歡迎 來到 你 的 新家 . +I am Finnish , but I speak also Swedish . 我 是 芬兰人 , 但 我 也 说 瑞典语 . +I will wait here till he comes back . 我会 等 在 这儿 直到 他 回来 . +We often talk about the weather . 我们 经常 讨论 天气 . +This piano is really cheap . 這 鋼琴 真 便宜 . +My dad keeps a journal every day . 我 爸爸 每天 都 记日记 . +By the way , I have got to tell you something . 我 得 順便 給 你 講件 事 . +Some people do not know that . 有些 人 不 知道 那件事 . +It is raining . 下雨 了 . +Tom lit his cigar . 湯姆 點 了 雪茄 . +I know all my neighbors . 我 认识 我 所有 的 邻居 . +That woman is much older than I am . 那 女人 比 我 老 很多 . +This car needs washing . 这辆 车 需要 清洗 . +Hope is not a strategy . 希望 不是 一种 策略 . +This is how I made it . 这 就是 我 的 办法 . +I am shorter than you . 我 比 你 矮 . +You have no right to interfere in other people is affairs . 你 沒有 干涉 他 人事 務 的 權力 . +I have no books to read . 我 没书 可读 . +You have got a big hole in your sock . 你 的 袜子 上 有个 大洞 . +Does she like oranges ? 她 喜歡 柳橙 嗎 ? +You are in my way . 你 擋住 了 我 的 路 . +I spent no more than three dollars . 我 只 花 了 三 美元 . +You should apologize to Dad for not coming home in time for supper . 你 應該 為 你 沒有 及時 回家 吃 晚餐 向 你 父親 道歉 . +School will start next Monday . 下周一 开学 . +He is a very thoughtful person . 他 是 個 很 體貼 的 人 . +Let is go to the movies . 我们 去 看 电影吧 ! +I would like to meet your older sister . 我 想 見 你 姐姐 . +She visits the dentist on a regular basis , so she seldom gets toothaches . 她 定期 去 看 牙医 , 所以 她 很少 牙痛 . +What is missing ? 少 了 什么 ? +Tom has lost his keys . 湯姆 弄 丟了 他 的 鑰匙 . +Do not drop this cup . 不要 掉 了 这个 杯子 . +We should all sleep easier now . 我們 現在 都 該 早點 睡 . +Tom did not get much sleep . 汤姆 没 怎么 睡 . +Are you going to come tomorrow ? 你 明天 要 來 嗎 ? +How did Tom get out of jail ? 汤姆 是 如何 出狱 的 ? +I paid five dollars for the book . 我 花 了 五元 買 這 本書 . +He has lived here for one week . 他 已經 住 在 這裡 一個 星期 了 . +It is believed that whales have their own language . 人们 相信 鲸 有 他们 自己 的 语言 . +He climbed the stairs . 他 爬 上 了 樓梯 . +I wanted to stop Tom . 我 想 阻止 湯姆 . +Of course she can speak English . 她 當然 會 講 英語 . +We have been warned . 我们 被 警告 过 了 . +Are you working ? 你 在 上班 嗎 ? +My mother does not like watching TV . 我 母親 不 喜歡 看電視 . +I lived abroad for ten years . 我 住 在 國外 十年 了 . +My uncle lived abroad for many years . 我 叔叔 住 在 國外 很多年 了 . +What prevented you from coming earlier ? 什麼 阻止 你 早點 來 了 ? +Tom is very courageous , is not he ? 汤姆 非常 勇敢 , 不是 么 ? +No one ran ahead of him . 没有 人 跑 在 他 前面 . +He did it for money . 他 做 这个 是 为了 钱 . +Continue working . 繼續 工作 ! +You do not have to tell Tom if you do not want to . 如果 你 不想 , 那 你 便 没有 这个 必要 去 告诉 汤姆 . +Go get your passport . 去 拿 你 的 护照 . +I always think of him when I am alone . 我 孤单 的 时候 总会 想起 他 . +Do not bug me . 别 来 烦 我 . +All of you are familiar with the truth of the story . 你們 所有 的 人 都 熟悉 這個 故事 的 真相 . +Do you think Tom is retired already ? 你 認為 湯姆 退休 了 嗎 ? +Tom , have you eaten anything ? 汤姆 , 你 吃 过 东西 了 吗 ? +He intruded on her privacy . 他 侵犯 了 她 的 隐私 . +That is your responsibility . 这 是 您 的 义务 . +What disease do I have ? 我 得 了 什麼 病 ? +I can not get my tractor started . 我 發動 不了 我 的 拖拉 機 . +Everybody had a hard time . 每个 人 都 遇到 过 困难 . +Tom will go . 湯姆 要 走 . +I will do it tomorrow . 我 明天 再 做 . +Let us know when you will arrive . 讓 我們 知道 你 什麼 時候 會 到 . +I do not know if I still have it . 我 不 知道 我 还有 没有 . +Do you know how to use this ? 你 知道 怎么 使用 吗 ? +We should have been more careful . 我們 應 該 更 小心 的 . +That child can count to twenty . 这 孩子 能数 到 20. +I can not say for sure . 我 不 太 確定 . +Tom often fails to keep his word . 汤姆 经常 不 守约 . +I wish I had more money . 我 希望 我 有 更 多 錢 . +Walk two blocks , and turn left . 走 過 兩個 街區 , 然 後 左 轉 . +Please sing . 请 唱歌 . +They waited in line for the bus . 他們 排隊 等 公車 . +Umbrellas sell well . 雨伞 卖 得 好 . +Tom is testing me . 汤姆 在 试探 我 . +He is a teacher at our school . 他 是 我們 學校 的 老師 . +This paragraph is vague . 這 一個 段落 是 模糊不清 的 . +You can count on her . 你 可以 相信 她 . +He knows many people . 他 认识 很多 人 . +The police have been searching for the stolen goods for almost a month . 警察 大概 从 一个月 前 就 开始 找 被 偷 物品 了 . +The ship was flying the American flag . 這 艘 船 掛著 美國國旗 . +Mathematics is an easy subject for me . 數學 對 我 來說 是 一個 容易 的 科目 . +I will be gone for a while . 我 要 暂时 离开 . +I prefer red wine to white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +I am very worried about my weight . 我 很 擔心 我 的 體重 . +Children should obey their parents . 孩子 應該 服 從 他們 的 父母 . +I can not hear very well . 我 聽 不 太 清楚 . +He wrote one letter . 他 写 了 一封信 . +The end justifies the means . 為了 正當 目的 可以 不擇 手段 . +Can you show me on the map ? 可以 在 地图 上 展示 给 我 看 吗 ? +He is afraid of dogs . 他 怕 狗 . +You have no fever . 你 没 发烧 . +They guaranteed regular employment to their workers . 他們 對 他們 的 員工 保證 就業 . +Strawberries sell for a high price in the winter . 草莓 在 冬天 售價高 . +I would like to exchange this shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +He filled the bottle with water . 他 用水 装满 了 瓶子 . +No problem at all ! 一点 问题 都 没有 ! +We had a heated discussion about it . 我們 激烈 的 討論 了 這個 問題 . +Keep the money in a safe place . 把 錢 保存 在 安全 的 地方 . +In Switzerland , spring comes in May . 在 瑞士 , 春天 在 五月 来临 . +I am a stranger here . 我 是 這裡 的 外地人 . +My son does not obey me . 我 儿子 不 听 我话 . +I know that this is important to you . 我 知道 这 对 您 来说 很 重要 . +It grew larger and larger . 它 变得 越来越 大 . +She is collecting material for a book . 她 为 一 本书 收集 材料 . +He postponed leaving for Hokkaido until next month . 他 延遲 到 下 個 月 去 北海道 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Tom is smashed . 汤姆 醉 了 . +I shave every morning . 我 每天 早上 刮 鬍 子 . +Carrots contain a lot of vitamin A. 胡蘿 蔔 中 含有 大量 的 維生素 A . +Tom and Mary are close friends . Tom 和 Mary 是 親密 的 朋友 . +What an idiot I am ! 我 真是 個 白痴 ! +See you again . 再见 ! +We met in 2008 . A year later , we got married . 我們 在 2008 年 相遇 . 一年 後 , 我們 結婚 了 . +She succeeded in drawing the truth from him . 她 成功 地 从 他 口中 得知 了 真相 . +I made him carry the suitcase . 我 要 他 提 行李箱 . +You are no longer a mere child . 你 不再 只是 一个 孩子 了 . +That can not be Mary . She is in the hospital now . 那 不 可能 是 玛丽 , 她 现在 在 医院 . +How is the apple ? 這個 蘋果 怎麼樣 ? +He came to pick me up . 他 來 接 我 走 . +He will not listen to me . 他 不 會 聽 我 的 . +She is already sleeping . 她 已经 睡下 了 . +I do not need anyone . 我 谁 也 不 需要 . +Maybe you should just give up . 可能 你 应该 放弃 . +My driving instructor says I should be more patient . 我 的 駕駛 教練 說 我 應 該 更 有 耐心 一點 . +I am glad you guys are here . 我 很 高兴 你们 都 在 . +I would like to cash a travelers ' check . 我 想 兌換 旅行支票 . +Do not shout . 不许 大叫 . +Kissing a smoker is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +The students of this school are kind . 这个 学校 的 学生 很 友好 . +What subject do you think he is interested in ? 你 觉得 他 会 对 什么 主题 感兴趣 ? +Germany was once allied with Italy . 德国 曾 是 意大利 的 同盟国 . +I am sorry , I forgot my homework . 很 抱歉 我 忘 了 寫 作業 . +I smell gas . 我 聞到 瓦斯 味 . +She got the ticket for nothing . 她 免費 得到 這 張 票 . +I thought he would come . 我 以为 他 会 来 的 . +This table is made out of wood . 这 张 桌子 是 木 的 . +Banks open at nine o 'clock . 银行 九点 开门 . +The man tried to install his own antenna . 这 男人 试 着 安装 他 自己 的 天线 . +Were you out last night ? 昨晚 你 出去 了 嗎 ? +They called in a doctor because the child was ill . 他們 打 電話 給 醫生 因為 這個 孩子 生病 了 . +I can not tell you how much I will miss Tom . 我 不会 告诉 你 我 有 多 想念 汤姆 . +Waste not , want not . 不 浪費 則 不 匱乏 . +Promises are not enough . 承諾 是 不夠 的 . +It is a whole new ball game for me . 這 對 我 來說 是 個 全新 的 球類 遊戲 . +There is only a little milk left . 只 剩下 一點點 牛奶 了 . +I stayed home all day instead of going to work . 我 没有 去 工作 , 在 家里 待 了 一整天 . +Why should you think that ? 为什么 你 对于 这个 有 这样 的 想法 ? +She will not be back till five . 她 五點 前 不 會 回來 . +Tom is three years older than Mary is . 汤姆 比 玛丽 大 三岁 . +Can I have a bottle of red wine ? 請來 瓶紅 酒 . +I need to get a stamp . 我 需要 一張 郵票 . +He found me a good seat . 他 幫 我 找到 了 一個 好 位子 . +Yesterday was my birthday . 昨天 是 我 的 生日 . +Most people brush their teeth at least two times a day . 多数 人 每天 至少 刷 两次 牙 . +This book says that elephants live to be over 100 years old . 这 本书 上写 , 大象 能 活过 一百岁 . +He was born in the 19th century . 他 生于 19 世纪 . +Please send me a reply as soon as you receive this mail . 收到 此 邮件 后 请 尽快 给 我 答复 . +The meeting has been postponed until tomorrow . 会议 已经 被 延迟 到 明天 了 . +Tom clenched the shovel . 汤姆 握紧 了 铲子 . +Your driver is license has expired . 你 的 駕駛 執照 已經 過期 了 . +He is not stupid . 他 不是 傻子 . +A string of disasters struck the region . 一連 串 的 災難 襲擊 這個 地區 . +I have got to shave before leaving . 離開 前 我 必須 刮 鬍 子 . +He arrived in time for the meeting . 他 及時 趕到 了 會議 . +The lid will not open . 這 蓋子 打不開 . +Why can not we talk now ? 为什么 我们 现在 不能 讲 ? +I did not know who Tom was at first . 我 一 开始 不 知道 汤姆 是 谁 . +We love each other . 我們 彼此 相愛 . +I felt so sleepy that I could hardly keep my eyes open . 我 感觉 困 得 几乎 不能 睁开 我 的 眼睛 了 . +Do not put books on the table . 不要 把 書 放在 那 張 桌子 上 . +We just do not have enough time . 我们 没有 足够 的 时间 了 . +I am having lunch with my sister right now . 現在 正 和 妹妹 吃 午 飯 中 . +You will never achieve anything if you do not study harder . 如果 你 不 更加 努力 地學 習 , 你 將 永遠 不 會 有所 成就 . +She does not smile for me anymore . 她 已经 不 向 我 微笑 了 . +The boy was shirtless . 男孩 赤裸 着 上身 . +There is a large supermarket . 有 一個 大型超市 . +You are not afraid of ghosts , are you ? 你 不怕 鬼 , 不是 麼 ? +We help the poor . 我們 幫助 窮人 . +Get lost ! 滚 . +You might want to discuss it with Tom . 你 或许 想 和 汤姆 讨论一下 . +Tom told me that he would like to become a doctor . 汤姆 告诉 我 他 想 当 医生 . +Goodbyes are always sad . 离别 总是 让 人 悲伤 . +She did nothing but cry all the while . 她 一直 哭哭啼啼 . +We will go on a picnic if it is fine tomorrow . 如果 明天 天气 好 , 那么 我们 就 去 野餐 . +Why is change so hard ? 為 什麼 改變 那麼 難 ? +I do not do that as well as I used to . 我 不如 以前 做得好 了 . +There was no furniture in that room . 那個 房間 裡 沒有 家具 . +Mary bought a skirt and a blouse . 玛丽 买 了 一件 衬衫 和 一条 连衣裙 . +Would you lend me your pencil ? 你 可以 借 我 你 的 鉛 筆 嗎 ? +We had a heavy frost this morning . 今天 早上 下 厚 霜 了 . +Put it out of your mind . 別 去 想 它 . +He is getting better day by day . 他 一天 一天 地好 轉 . +Would you like to be my friend ? 你 想 做 我 的 朋友 嗎 ? +Have you given Tom everything ? 你 全都 给 汤姆 了 吗 ? +My business has at last gotten on the right track . 我 的 生意 终于 走上 了 正轨 . +Are you good at math ? 你 数学 好 吗 ? +I was just going to write a letter . 我 正要 去 写 一封信 . +Have you ever heard of such a thing ? 你 听说 过 这样 的 事 吗 ? +She wore a white dress . 她 穿 了 一件 白色 的 洋裝 . +Tell me the truth . 告訴 我 真相 . +He could no longer stand the pain . 他 再也 無法 忍受 這種 痛苦 . +There is no use crying over spilled milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Can you please close that window ? 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +Compared with yours , my car is small . 和 你 的 车比 起来 , 我 的 车 很小 . +We are going to have to change our plans . 我們 快要 到 必須 改變 我們 計畫 的 時候 了 . +You have done a perfect job . 你 做 了 一项 完美 的 工作 . +Tom wrote a letter to Mary this morning . Tom 今天 早上 寫 了 封信 給 Mary . +With her help , my French improved little by little . 在 她 的 帮助 下 , 我 的 法语 逐渐 进步 了 . +Do not forget to put a stamp on your letter . 别忘了 在 你 的 信 上 贴 张 邮票 . +There is a lot of trash on the far bank of the river . 河對岸 有 很多 的 垃圾 . +Tom broke the window . 湯姆 打破 了 窗戶 . +Tom is stingy . 汤姆 很小 气 . +There was hardly anyone in the room . 房間 裡 幾乎 沒 有人 . +We have ample time to catch our train . 我们 有 充裕 的 时间 赶上 火车 . +Do you think I am stupid ? 你 認為 我 傻 嗎 ? +We traveled to Mexico by plane . 我們 搭 飛機 去 墨西哥 旅行 . +We should study English every day . 我们 应该 每天 都 学 英语 . +Mary tied an apron around her waist and then took the turkey out of the oven . 玛丽 把 围裙 系 在 她 的 腰 上 , 然后 把 火鸡 从 烤箱 里 拿 出来 了 . +Fish and red wine do not go well together . 魚 和 紅酒 不合 . +I do not remember your name . 我 不 记得 你 的 名字 了 . +She is sure to succeed . 她 理所当然 的 取得 了 胜利 . +Can you give me an example ? 你 可以 给 我 举 个 例子 吗 ? +In the morning , I write in the park . 我 每天 早上 在 公園 寫作 . +Trim the fat off the meat . 切除 這塊 肉 的 脂肪 . +These dogs are big . 這些 狗 很大 . +Tom is always playing video games . 湯姆總 是 在 玩電視 遊樂器 . +He will be back soon . 他 很快 就 会 回来 的 . +What are you doing here ? 你 在 這裡 做 什麼 ? +He is learning how to drive a car . 他 正在 学 怎么 开车 . +We are going to eat now . 我們 現在 就要 吃 飯 . +You did not eat much lunch , did you ? 你 午饭 吃 的 不多 , 不是 吗 ? +It was a quiet winter evening . 这 是 个 静谧 的 冬夜 . +English is spoken in Singapore . 在 新加坡 的 人 說 英語 . +Facebook is blocked in China . Facebook 在 中國 是 被 封鎖 的 . +I made sure no one was following me . 我 確定 沒人 跟踪 我 . +Could you take a picture of us ? 您 能 好好 给 我们 照 一张 相吗 ? +I have never heard Tom speaking French before . 我 以前 從 沒聽 過 湯姆 講 法語 . +Have you ever seen the man in this photo ? 你 见 过 这 张 照片 上 的 男人 吗 ? +Tom has lost interest in studying French . 湯姆 已經 失去 學習 法語 的 興趣 . +Be punctual . 要 守时 ! +The sun always rises in the east . 太陽 總 是 從 東方 升起 . +My watch gains five minutes a day . 我 的 手表 每天 走 快 五分钟 . +I prefer to remain seated . 我 更 想 繼續 坐著 . +I did not mean it . 我 不是 这个 意思 . +Can I see this one ? 我 能 看看 這個 嗎 ? +Hope to see you again next year . 希望 明年 再次 見 到 你 . +She was run over by a car . 她 被 車子 輾過 了 . +He shot an arrow at the deer . 他 射 了 鹿一箭 . +I have known her for a long time . 我 已經 認識 她 很 久 了 . +Is there anything else you can tell me ? 你 還 能 告訴 我 甚麼 ? +No student is allowed to enter the room . 學生 不准 進入 這個 房間 . +Summer has ended . 夏天 已經 結束 . +I remember the first time . 我 记得 第一次 . +Do you need help carrying anything ? 你 需要 幫 忙 拿 東西 嗎 ? +They decided to get married next month . 他們 決定 在 下 個 月 結婚 . +Mastering a foreign language is difficult . 掌握 一门 外语 很 难 . +Tom wanted to know if Mary had a boyfriend . 汤姆 想 知道 玛丽 是否 有 男朋友 ? +I would like to put some things in the hotel safe . 我 想 在 酒店 的 保险柜 里 存点 东西 . +I play in a band . 我 在 一個 樂團 裡 演奏 . +Thank you for your attention . 谢谢您 的 关注 . +The railroad is parallel to the road . 铁路 与 公路 平行 . +Some people relax by reading . 一些 人 通过 阅读 来 放松 . +I can not believe he did that . 我 不能 相信 他 做到 了 . +Everyone was invited , except for me . 除了 我 每個 人 都 被 邀請 了 . +Once again . 再 一次 . +I want to buy a few pairs of sunglasses . 我 想 買 幾副 墨鏡 . +This cake tastes like it has cheese in it . 这块 蛋糕 尝 起来 有 奶酪 的 味道 . +She should have arrived home by now . 她 现在 应该 已经 到 家 了 . +Will he be able to catch the train ? 他 能 趕 上火 車 嗎 ? +Do you want to know why I quit ? 您 想 知道 为什么 我 要 离开 吗 ? +It would be helpful if you could do that for me . 您 那样 做 的话 , 可 就 帮到 我 了 . +Tom mopped the floor . 汤姆 擦 了 地板 . +You were treated unfairly . 你 被 不公平地 對待 . +He used to read at night . 他 以前 都 在 夜晚 看書 . +I will drop by the post office on the way home . 我会 在 回家 的 路上 顺便去 邮局 . +The post office is down the street . 郵局 在 街 那 頭 . +What is this ? 那 是 什么 ? +You have too many books on the shelf . 你 書 架上 的 書太 多 了 . +He somewhat resembles his father . 他 有点像 他 的 父亲 . +Up to now , how many books do you think you have read ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +I do not like kids . 我 不 喜欢 小孩 . +Wet clothes stick to your skin . 濕 衣服 貼著 你 的 皮膚 . +I know those tall girls quite well . 我 跟 那些 高 個子 的 女孩 很 熟稔 . +Put down your weapons . 放下 你们 的 武器 . +The prince fell in love with a woodcutter is daughter . 王子 愛 上 了 一個 樵夫 的 女兒 . +Tom arrived after I left . 汤姆 在 我 走 后 到 了 . +He left the house without so much as saying goodbye . 他 甚至 没 说 再见 就 离开 了 家 . +She did not like him . 她 不 喜歡 他 . +Please let me go . 請 允許 我 去 . +My premonition turned out to be right . 我 的 预感 被 证明 是 正确 的 . +I understand the concept . 我 明白 这 概念 . +Despite his riches , he is not contented . 尽管 他 很 富有 , 他 还是 不 满足 . +Do not forget that Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +We have to have a plan . 我們 必須 有 計畫 . +I went there recently . 我 刚 去过 那里 . +Can you hurry up a bit ? 快 一点 好 吗 ? +Do they love each other ? 他們 彼此 相愛 嗎 ? +What was the cause of the explosion ? 爆炸 的 原因 是 什么 ? +I want your opinion . 我 想要 聽 聽 你 的 意見 . +My girlfriend is a good dancer . 我 的 女朋友 跳舞 跳 得 很棒 . +I agree with his opinion . 我 同意 他 的 觀點 . +Have you worked the puzzle out ? 你 解开 谜团 了 吗 ? +She is popular , not because she is beautiful , but because she is kind to everyone . 她 受歡 迎 不是 因為 她 的 美麗 , 而是 因為 她 親切 地 對待 每個 人 . +Suddenly , the light went out . 灯 突然 灭 了 . +I have been feeling a little restless . 我 有 點 不安 . +I was at the theater . 我 在 劇場 . +Do you have a child ? 你 有 孩子 嗎 ? +No less than three hundred dollars was needed for the work . 这个 工作 需要 不 低于 300 美金 . +I do not think he will say yes . 我 不 認為 他 會 說 好 . +It is true that she is pretty , but she is selfish . 她 确实 很漂亮 , 但 她 很 自私 . +Man is the only animal that can talk . 人类 是 唯一 能够 彼此 交谈 的 动物 . +How can you afford a place like this ? 我們 怎麼 付得 起 這種 地方 的 錢 ? +Fantastic ! 好 棒 ! +I know that you know that I know . 我 知道 你 知道 我 知道 . +I 'd buy a new house if I had the money . 如果 我 有 錢 , 我 會 買 一個 新房子 . +She gave me some good advice . 她 給 了 我 一些 很好 的 建議 . +I baked cookies . 我 烤 了 曲奇 . +You look just like Tom . 你 看起来 就 像 湯姆 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think you should eat a ham sandwich . 我 认为 你 该 吃 火腿三明 治 . +The robot went out of control . 這個 機器 人 失控 了 . +Is not it black ? 它 不是 黑色 的 嗎 ? +Feel free to ask any questions . 尽管 提问 . +I am sorry , I do not have change . 對 不起 , 我 沒有 零 錢 . +It seems interesting to me . 在我看来 很 有意思 ! +It is an endangered species . 这 是 一个 濒临 消失 的 物种 . +I bought it for about twelve dollars . 我 用 12 美元 买 的 . +I have mixed feelings about this . 我 對 這件 事 百感交集 . +Have you finished your lunch yet ? 你 吃 完 你 的 午飯 了 嗎 ? +Tom did not understand what the teacher said . 汤姆 没 明白 老师 说 了 什么 . +She had just come home when I called . 我 打电话 的 时候 , 她 刚回到 家 . +I have seen a lot of him recently . 我 最近 常看到 他 . +It seems we are in the same boat . 看起来 我们 是 在 一条 船上 . +Maybe you should move . 你 可能 該 動 一動 . +I held my breath and waited . 我 屏住 了 呼吸 等待 着 . +We both won . 我們 都 贏 了 . +I am not sure of the exact date . 我 不 知道 確切 的 日期 . +Who does this suitcase belong to ? 這個 手提箱 是 誰 的 ? +She grew up to be a veterinarian . 她 長 大 後 成為 了 一名 獸 醫 . +It is a clear day . 它 是 一個 晴朗 的 日子 . +I was so homesick . 我 很 想 家 . +She studied Japanese after dinner . 晚 飯 後 她 讀 日 語 . +Do you study every day ? 你 每天 都 学习 吗 ? +She put the dirty dishes in the sink . 她 把 脏 盘子 放进 水池 里 . +Are you busy now ? 現在 你們 忙 嗎 ? +It is only your imagination . 那 只是 你 的 想象 . +There are a few apples on the tree , are not there ? 树上 有些 苹果 , 不是 吗 ? +I hear that you play the piano . 我 聽 說 你 彈 鋼琴 . +Beware of pickpockets . 小心 扒手 . +Are you afraid of bugs ? 你 怕 虫子 吗 ? +Tom has loved Mary for a long time . 汤姆 爱 玛丽 很 久 了 . +I met him at the barber is . 我 在 理发店 碰到 了 他 . +Tom pushed his way through the crowd . 汤姆 从 人群 中 拥 出来 . +We are going by train . 我们 要 乘火车 去 . +Long skirts are out of fashion now . 現在 長裙 不 流行 了 . +He has a lot of original ideas . 他 有 很多 獨到 的 見解 . +This bomb can kill many people . 这个 炸弹 可以 炸死 很多 人 . +I have no intention of asking him . 我 不想 問 他 . +He drives his own car . 他 開 他 自己 的 車 . +I asked him to go there tomorrow . 我 要求 他 明天 去 那裡 . +Tom is taking a day off . 汤姆 在 休 一天 假 . +Ask me something easier . 问 我 简单 些 的 . +You did not tell me Mary was so beautiful . 你 没 告诉 我 玛丽 这么 漂亮 . +The bill will never go through . 該 法案 將 永遠 不 會 通過 . +You will bounce back . 你 会 东山再起 的 . +I am a junior high school student . 我 是 個 國中 生 . +Your view is too optimistic . 你 的 看法 過 於 樂觀 . +I am married . 我 已婚 . +I helped her wash dishes . 我 幫 她 洗碗 . +Perhaps Tom is too old to do this kind of thing . 也許 Tom 年紀 太 大 , 不 適合 做 這件 事 . +She made a serious mistake . 她 犯 了 一個 嚴重 的 錯誤 . +Let is go out and have some fun tonight . 我们 今晚 一起 出去 找 乐子 吧 . +I do not love her , not even if she loves me . 即使 她 愛 我 , 我 也 不 愛 她 . +His memory never ceases to astonish me . 他 的 记忆力 总 让 我 吃惊 . +I know what can happen here . 我 知道 这里 会 发生 什么 . +How are things at work ? 工作 怎么样 ? +She could not answer the question . 她 無法 回答 這個 問題 . +May I pay by check ? 我 可以 用 支票 付 吗 ? +Tom talked about his school . 湯姆 談 了 他 的 學校 . +Rome is famous for its ancient architecture . 羅馬 以 其 古代 建築 而 聞名 . +I am hoping that will happen . 我 希望 那 會 發生 . +The town was defended by a large army . 城市 由 一支 大军 守卫 . +She turned eighty @-@ one . 她 八十一 歲 了 . +Two glasses of apple juice , please . 请 给 我 两杯 苹果汁 . +I almost never watch TV nowadays . 现在 我 几乎 不 看电视 . +You do your part and I will do the rest . 你 做 你 的 部份 , 其他 的 我 來 做 . +There is no need to apologize . 沒有 必要 道歉 . +She is absorbed in rock music . 她 沉迷于 摇滚乐 . +He said he did not know the man , which was a lie . 他 說 他 不 認識 那個 男人 , 這 是 一個 謊言 . +He got tired of reading . 他 厌倦 了 读书 . +He grasped the rope with two hands . 他 用 兩 隻 手 抓住 了 繩子 . +Each year Hamamatsu has a kite festival . 每年 濱松 有 風箏 節 . +I work for three hours every Sunday morning . 我 每个 周末 早上 工作 三 小时 . +The boy jumped into the water . 這個 男孩 跳入 了 水中 . +Please call the police . 叫 警察 . +After he had graduated from the university , he taught English for two years . 從 他 大學 畢業 以 後 , 他 教 了 兩年 的 英語 . +I am looking for you . 我 在 找 你 . +My dog goes everywhere with me . 我 的 狗 總是 跟著 我 . +Let is leave . 走 吧 . +What is your favorite way to cook trout ? 你 最 喜欢 怎么 烧 鲑鱼 ? +Please buy a tube of toothpaste . 請買 一支 牙膏 . +We felt the house shake a little . 我們 感覺 到 房子 搖動 了 一下 . +Will you tell me how to get to Shinjuku ? 请问 你 可以 告诉 我 如何 可以 到达 新宿 吗 ? +Who won ? 谁 赢 了 ? +This is the best restaurant that I know . 这 是 我 所 知道 的 最好 的 餐厅 . +It was so cold yesterday that I stayed home . 昨天 太冷 了 , 我 只好 待在家里 . +She gave us a vague answer . 她 給 了 我們 一個 模糊 的 答案 . +You are the only one that can help us . 你 是 唯一 一个 能 帮助 我们 的 人 . +Who would want to live here ? 誰 會 想住 在 這裡 ? +Is he Japanese ? 他 是 日本 人 吗 ? +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +This book sells well . 那 本書 賣 得 很 好 . +Tom is good at cooking . 湯姆 擅長 烹飪 . +I graduated from Kyoto University . 我 畢業 於 京都 大學 . +Do not look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +Life is beautiful . 生活 是 美丽 的 . +You have got to learn to hold your tongue . 你 應該 學著 閉上 你 的 嘴 . +We have had a most delightful day . 我們 過 了 最 愉快 的 一天 . +Whether he comes or not , the result will be the same . 他 来 还是 不 来 , 结果 是 一样 的 . +He wrote me a letter . 他 给 我 写 了 封信 . +Tom knows him . 湯姆 認識 他 . +Tom told me that he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Tom swims . Tom 游泳 . +I think that fact is very important . 我 認為 事實 非常 重要 . +Someone is knocking on the door . 不知 是 谁 在 敲门 . +You swim better than I do . 你 游泳 游得 比 我 好 . +What are you doing ? 搞 什么 啊 ? +I feel like taking a bath now . 我 現在 想 洗澡 . +I actually agree with you . 我 确实 同意 你 . +It is under the table . 它 在 桌下 . +This is old news to me . 這 對 我 來說 是 舊 聞 了 . +What is wrong with my legs ? 我 的 腿 有 什么 毛病 ? +Where are you going ? 你 去 哪儿 ? +When is breakfast ? 早餐 是 從 幾點 到 幾點 ? +She traveled all over the world . 她 周遊 世界各地 . +He is an excellent brain surgeon . 他 是 一個 優秀 的 腦 外科 醫生 . +I want to talk to your uncle . 我 想 和 你 的 舅舅 谈一谈 . +The park is filled with children . 公園 裡 都 是 孩子 . +You are so bad . 你 真 壞 . +I will be free tomorrow afternoon . 我 明天 下午 有空 . +Tom waved his hand . 汤姆 挥手 了 . +Mathematics is my favorite subject . 數學 是 我 最 喜歡 的 科目 . +He plays very well . 他 弹 得 很 好 . +Where is the nearest subway station ? 最近 的 地鐵 站 在 哪裡 ? +Tom needs to update his website . 汤姆 需要 更新 他 的 网站 . +I have two cats . 我 有 两只 猫 . +Where is nearest American Express office ? 最近 的 美國 運通 辦 公室 在 哪裡 ? +School starts in September in Europe . 歐洲 的 學校 在 九月 開學 . +A permanent job is better than a temporary one . 正式工 比 临时工 要 好 . +I encountered a problem . 我 遇到 了 故障 . +Taking the group of children to the library was no problem . 带 孩子 团体 去 图书馆 一点 问题 都 没有 . +Are we going to lose ? 我们 将 会 输 了 吗 ? +Have some more . 你 該 多 吃 點 . +Where can I find toothpaste ? 在 哪儿 我 能 找到 牙膏 ? +Lake Biwa is the largest lake in Japan . 琵琶湖 是 日本 最大 的 湖 . +Do you have an extra key ? 你 有 多余 的 钥匙 吗 ? +I dialed Tom is number . 我 拨打 了 Tom 的 号码 . +I advise you never to live beyond your income . 我 建议 你 永远 不要 入不敷出 . +He asked me what I had bought . 他 问 我 买 了 什么 . +We go to the same school . 我們 上 同一 所學校 . +Are you free now ? 现在 有空 吗 ? +I would not try that again . 我 不会 再 试 了 . +She has kept a diary for 3 years . 她 已經 寫 了 三年 的 日記 . +That is a good idea . 那 是 一個 好 主意 . +Tom climbed over the wall . 湯姆 爬 上 了 墙 . +It is very normal . 它 很 正常 . +I did not believe him at first . 起初 我 不 相信 他 . +Should not you still be in bed ? 你 不 該 還 在 床上 嗎 ? +Where is the nearest station ? 最近 的 車站 在 哪裡 ? +That is not what I told Tom . 那 不是 我 對 湯姆 說 的 . +He pretended not to be listening . 他 假装 听不见 . +We have all we need for now . 我们 现在 拥有 了 所有 我们 想要 的 . +Because of his wealth , he was able to become a member of that club . 由 於 他 的 財富 , 他 能夠 成為 這個 俱樂部 的 成員 . +Do you guys want something to eat ? 你們 想要 吃 些 什麼 嗎 ? +The car he is driving is not his . 這輛 他 正在 開 的 車 不是 他 的 . +They do not pay me enough . 他們 給 我 錢 沒 給夠 . +Studying abroad is very common now . 現在 出國 留學 是 很 常見 的 了 . +My mother looked at me with tears in her eyes . 我 妈妈 眼 含着泪 看 我 . +She introduced me to her father . 她 把 我 介紹 給 她 父親 . +That is avoidable . 那 是 可 避免 的 . +We are expecting a good harvest this year . 我們 期望 今年 豐收 . +Would you please lock the door ? 請 你 鎖 門 好 嗎 ? +I got off at the wrong station . 我 下錯 了 車站 . +We were crowded into the small room . 我们 挤进 了 那间 小房间 里 . +Tom walks slowly . 汤姆 走 得 很慢 . +It is going to rain soon . 天 快要 下雨 了 . +It turned out that I was right . 結果 證明 我 是 對 的 . +Mt . Fuji was covered with snow . 富士山 被 雪所覆蓋 . +I have just washed all the dishes . 我 剛 洗 了 所有 的 碗盤 . +Ukrainian girls are the prettiest in the world . 乌克兰 姑娘 是 全世界 最 漂亮 的 姑娘 . +Please take me to the hospital . 請 帶 我 去 醫院 . +This park reminds me of my childhood . 来到 这个 公园 会 让 我 想起 自己 的 童年 . +I am a college student . 我 是 个 大学生 . +I wish it would stop raining . 我 希望 雨會 停 . +Where do you want to go ? 你 要 去 哪裡 ? +I should have left earlier . 我 應 該 要 早點 出發 的 . +I saw a lot of buses . 我 看見 了 很多 大巴 車 . +It did not cross my mind . 这 不是 我 的 想法 . +When his food supply ran short , he had to look for a new place to live . 他 的 食物 供给 不足 的的 时候 , 他 不得不 去 找 新 的 地方 居住 . +It is impossible . 這 是 不 可能 的 . +He should have done it that way . 他 该 那样 做 完 了 . +That is not my wife . 这 不是 我 的 妻子 . +I want to talk with your uncle . 我 想 跟 你 叔叔 談談 . +I heard someone calling my name . 我 聽見 有人 叫 我 的 名字 . +It does not mean anything . 这 什么 都 说明 不了 ! +Can you swim underwater ? 你 能 潜水 吗 ? +We work in a factory . 我们 在 一个 工厂 工作 . +Please get me hotel security . 请 帮 我 叫 宾馆 保安 . +How much money do you need ? 你 需要 多少 钱 ? +I hope that your brother is better . 我 希望 你 弟弟 好 点 了 . +She looks unhappy . 她 看起来 不 幸福 . +It is easy to read this book . 這 本書 很 容易 讀 . +Are you off tonight ? 你 今天 晚上 有 沒有 要 上班 ? +I know a lot about ships . 我 知道 很多 關於船 的 知識 . +Flying is the quickest way to travel . 搭 飛機 是 最快 的 旅行 方式 . +They married when they were young . 他們 在 還 很 年輕 的 時候 就 結婚 了 . +I know that money is not everything . 我 知道 金钱 不是 万能 的 . +Hey you ! Please wait . 嘿 , 你 ! 請 稍候 . +I have no friends . 我 没有 朋友 . +You ought to ask for your teacher is permission . 你 應該 請求 你 的 老師 允許 . +Tom was completely worn out . 湯姆 完全 筋疲力盡 了 . +No one came . 没有 人 来 了 . +You have to study hard to catch up with your class . 你 必須 用功 讀書 趕上 同 學 . +Summer vacation begins next Monday . 暑假 從 下 星期一 開始 . +How was your test ? 你 的 测验 怎么样 ? +Tom took the concert ticket Mary offered him . 汤姆 拿 了 玛丽 给 他 的 音乐会 票 . +Always be true to yourself . 永遠 要 對 自己 誠實 . +You may choose whichever you want . 你 可以 選擇 任何 你 想要 的 . +A dog was run over by a truck . 一条 狗 被 卡车 碾过 . +You 'd better go . 你 最好 走 . +Tom is there already . 湯姆己 經 在 那裡 了 . +Tom says he hopes Mary is able to do that . 汤姆 说 他 希望 玛丽 能 做到 . +How could so many people go along with this ? 怎么 会 有 这么 多 的 人 同意 呢 ? +Did you murder Tom ? 是 你 杀 了 汤姆 吗 ? +His wife is in the hospital because she was injured in a car crash . 他 的 妻子 在 醫院 裡 因為 她 在 一場 車禍 中 受傷 了 . +Wow ! It is been a long time . 哇 ! 好久 不見 了 . +Is Tom an actor ? 汤姆 是 演员 吗 ? +I will provide you all the necessary information . 我会 把 所有 有用 的 信息 给 你 的 . +What time will you get to the station ? 你 几点 会 到 车站 ? +You are too suspicious about everything . 你 对 什么 都 太 怀疑 了 . +Apples were served as the dessert . 蘋果 被 當作 甜點 . +Run . 你 用跑 的 . +I know that some people value my work . 我 知道 有些 人 看重 我 的 工作 . +She went to Shanghai by train . 她 是 坐 火車 去 上海 的 . +It is time to go . 是 該 離開 的 時候 了 . +Tom probably knew who I was . 汤姆 可能 知道 我 是 谁 . +You did not need to buy the book . 你 沒有 必要 買 這 本書 . +Here is an even better one . 这里 有个 更好 的 . +I am not accustomed to such treatment . 我 不習 慣 這樣 的 待遇 . +Could you put this coat somewhere ? 您 能 把 這件 大衣 放在 某個 地方 ? +You should have a doctor take a look at it . 你 应该 让 个 医生 看看 . +She gave it her personal attention . 她 親自 過問 了 此事 . +It is cruel of him to say such things to her . 他 跟 她 说 这样的话 真是太 残忍 了 . +Tom prepared his speech very carefully . 湯姆 很 認真 地 準備 他 的 演講 . +His bag is right here , so he cannot have gone to school yet . 他 的 包 就 在 这儿 , 所以 他 不 可能 已经 去 了 学校 . +Everyone knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom promised to try again . 湯姆 答應 再 試 一次 . +He hid his friend from the police . 他 把 他 的 朋友 藏 了 起來 不 讓 警察 知道 . +I have not seen you for ages . Do you remember when I saw you last ? 好久不见 了 . 记得 上次 我 什么 时候 看见 你 的 吗 ? +I had difficulty in solving this problem . 我 很 難 解決 這個 問題 . +Do not forget where you put it . 不要 忘記 你 放在 哪裡 . +He gave him a book . 他 給 了 他 一本 書 . +I think that Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +They had a baby last week . 上週 他們 生 了 一個 孩子 . +I have always kept my word . 我 一直 信守 我 的 諾言 . +I am sorry . I got the wrong number . 對 不起 , 我 拿 錯 了 號碼 . +I have just arrived at the airport . 我 剛剛 抵達 了 機場 . +He has been sick since last Sunday . 他 從 上週 日 開始 就 生病 了 . +What is the biggest difference ? 最 不 一样 的的 是 什么 ? +She was in trouble because she lost her passport . 她 遇到 了 麻煩 , 因為 她 弄 丟了 她 的 護照 . +When she was thirteen , she ran away from home . 她 十三岁 的 时候 离家出走 了 . +My brother would often stay up all night reading novels . 我 哥哥 經常 熬夜 看 小 說 . +What is the fare from Osaka to Akita ? 从 大阪 到 秋田 的 车费 是 多少 ? +We need a hero . 我們 需要 英雄 . +You should give up smoking and drinking . 你 该 戒烟 戒酒 了 . +I gave up smoking for a year . 我 戒 煙 一年 了 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +Stay here with Tom . 留在 这 和 汤姆 在 一起 . +He likes baseball very much . 他 非常 喜欢 棒球 . +Do you have a table on the patio ? 你 院子 裡 有 桌子 嗎 ? +Whose is this car ? 這 台汽 車 是 誰 的 ? +It is six o 'clock already . 已經 六點鐘 了 . +I had a slight headache last night . 我 昨晚 有 輕微 的 頭痛 . +Between you and me , I do not like our new team captain . 我 就 只 告诉 你 , 我 不 喜欢 我们 的 新 队长 . +She likes going to the library . 她 喜欢 去 图书馆 . +Everybody is alive . 所有人 都 是 活着 的 . +This is my sister . 这 是 我 的 妹妹 . +Everybody was singing except me . 除 我 以外 每個 人 都 在 歌唱 . +She always cared about my health . 她 總是 關心 我 的 健康 . +He will be glad to see you . 他 會 很 高興 見到 你 . +You can not blame Tom for getting angry . 你 不能 怪 汤姆生 气 了 . +Tom said he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I am not absolutely sure . 我 不 完全 肯定 . +Did you enjoy yourself at the party last night ? 你 在 昨晚 的 聚會 上 盡 興 了 嗎 ? +How is the weather there ? 那里 的 气候 怎么样 ? +He is a student at this college . 他 是 這 所 大學 的 學生 . +The pain has gone . 疼痛 消失 了 . +Is there anything you want to add to what I just said ? 我 刚才 说 的 内容 , 你 想 补充 么 ? +Are you sad ? 你 傷心 嗎 ? +Thanks anyway . 还是 要说 谢谢 的 . +I will keep that book for myself . 我 要 把 这 本书 留给 自己 . +How long have you worked with Tom ? 你 跟 湯姆 工作 了 多 長 時間 ? +Shame on you . 你 真 丢脸 ! +Tom will not be here long . 湯姆 不 會 在 這裡 久留 . +I want Tom to win . 我 想 让 汤姆 赢 . +Whose is it ? 这 是 谁 的 ? +Father makes sure that all the lights are off before he goes to bed . 父親 確定 所有 的 燈 都 關 了 後 才 去 睡 覺 . +I always keep my promises . 我 總 是 信守 我 的 承諾 . +He was forced to work overtime . 他 被迫 加班 . +He died soon after the accident . 他 在 事故 後 不久 就 去世 了 . +She believes that he is innocent . 她 相信 他 是 無辜 的 . +Look at that house . 看 那个 房子 . +Have you already fed the horses ? 你 喂 过 马 了 吗 ? +What did you do with my luggage ? 你 把 我 的 行李 放到 哪裡 去 了 ? +Their baby is able to walk already . 他們 的 小 嬰孩 已經 會 走路 了 . +She found a ball in the garden . 她 在 花園 裡 發現 了 一顆 球 . +I usually have breakfast at seven . 我 通常 七點 吃 早餐 . +I do not have time to read . 我 没 时间 阅读 . +He makes friends with everybody he meets . 他 跟 所有 他 遇見 的 人 交朋友 . +He is a bit like his father . 他 有点像 他 的 父亲 . +So what will you do in the afternoon ? 您 下午 做 啥 呢 ? +We visited the museum last week . 我們 上週 參觀 了 博物 館 . +How lovely ! 多 可爱 啊 ! +Mt . Aso is an active volcano . 阿蘇山 是 一座 活火山 . +Congratulations ! 恭喜 ! +Give the book to whomever wants it . 这 本书 谁 想要 就 给 谁 吧 . +The man kept talking for an hour . 這個 男人 連續 說 了 一個 小 時 的 話 . +Please write back soon . 请 快点 回信 . +Why do not you do it ? 你 为什么 不 做 ? +My heart was filled with happiness . 我 心里 充满 着 快乐 . +Hurry . Please lend me a hand . 快點 . 請 幫 幫 我 . +Tom is unlikely to do that again . 湯姆 不太可能 再 那麼 做 了 . +Tom has a tattoo of a skull on his chest . 湯姆 在 胸上 有 個 頭 骨 文身 . +I was unable to finish my homework . 我 無法 完成 我 的 作業 . +If you want to know , just ask . 如果 您 想 知道 , 直接 问 就是 了 . +A fire broke out the day before yesterday . 前天 發生 了 火災 . +Last month our twenty @-@ year @-@ old daughter gave birth to a baby girl . 上个月 , 我们 20 岁 的 女儿 生 了 个 女孩 . +I hardly ever go to museums . 我 几乎 不 去 博物馆 . +He helped me to get over the difficulties . 他 帮助 我 克服 了 困难 . +She is an obstinate girl . 她 是 个 倔强 的 女孩 . +I have not met her . 我 没有 遇见 她 . +To my knowledge , she has not married yet . 據 我 所知 , 她 還 沒 結婚 . +Tom told me that he did not want to go with us . 湯姆 告訴 我他 不想 跟 我們 走 . +Where is the coffee shop ? 這家 咖啡 館 在 哪裡 ? +I do not know if I will have time to do it . 我 不 知道 我 是否 有 时间 做 . +I recognized some of the tunes that Tom played . 我 认出 了 些 汤姆 演奏 的 调子 . +He sometimes goes to work by car . 他 有 時 開車 去 上班 . +He sent a card to Mary . 他 送 了 一張 卡片 給 瑪麗 . +Tom is very important to me . 汤姆 对 我 来说 很 重要 . +I am very busy today . 我 今天 很忙 . +I can not guarantee that that is going to happen . 我 不能 确保 这 一切 会 发生 . +The company spends a lot of money on advertising . 那 家 公司 在 广告 上 花 了 很多 钱 . +Birds build nests . 鸟儿 筑巢 . +You never get a second chance to make a first impression . 你 永遠 沒有 第二次 機會 去 打造 第一印象 . +This letter is addressed to you . 這 封信 是 寄 給 你 . +Winter is just around the corner . 冬季 快 來 了 . +I bought a watch . 我 買 了 一只 手 錶 . +I will never stop . 我 絕不 會 停 . +Anybody would be better than nobody . 不管是谁 总 比 没人好 . +We are still nervous . 我們 還 是 緊張 . +A true gentleman never betrays his friends . 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +I am learning how to drive . 我 正在 學習 如何 駕駛 . +Our friendship will last a long time . 我們 的 友情 會長 久 留存 . +She was buried in her hometown . 她 被 安葬 在 她 的 家鄉 . +I will not go to school tomorrow . 我 明天 不 會 去 學校 . +Tom is in the living room , sleeping on the couch . 汤姆 在 客厅 , 躺 在 长沙 发 上 睡觉 . +He showed me her picture . 他 給 我 看 了 她 的 照片 . +Are not you free tonight ? 你 今天 晚上 沒 空 嗎 ? +Tom did it again . 汤姆 又 做 了 一次 . +It is the only thing I can think of . 这 是 我 唯一 能 想到 的 事 了 . +If not now , when ? 如果 不是 现在 , 那 是 什么 时候 ? +I have not seen her since last month . 我 從 上 個 月 開始 就 沒有 看到 她 了 . +What is the minimum wage in your country ? 你 的 国家 的 最低工资 是 多少 ? +I like you . 我 喜歡 你 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 迷惑 . +Texting while driving is dangerous . 開車 時 打字 是 危險 的 . +Tom is looking for a new job . 湯姆 在 找 新 工作 . +My sister sometimes makes our dinner . 我 的 妹妹 有時 為 我們 做 晚餐 . +Thank you for the present you gave my son . 谢谢 你 送给 我 儿子 礼物 . +Call me tomorrow . 明天 打电话 给 我 . +My father participated in a cooking contest and came in first . 我 爸爸 参加 了 料理 竞赛 并得 了 第一名 . +I play the guitar after dinner . 我 晚 飯 後 彈 吉他 . +We know our rights . 我们 知道 我们 的 权利 . +Did you know that before ? 你 之前 知道 那個 嗎 ? +I am in trouble . 我 遇到 困難 了 . +The meeting was called off . 会议 取消 了 . +Can you guess what I have ? 你 能 猜到 我 有 什么 吗 ? +We should always try to help others . 我們 應該 盡力 幫助 他人 . +My father stopped drinking . 父亲 戒酒 了 . +My son is going to leave for France next week . 我 儿子 下周 要 去 法国 了 . +Did not you lock up your car ? 你 没有 把 你 的 车上 锁 吗 ? +Can you make it on time ? 你 能 准时 做好 吗 ? +They must work 8 hours a day . 他们 每天 必须 工作 8 小时 . +There is no water . 沒有 水 . +If you want to , call me this afternoon . 如果 你 想 的话 , 今天下午 给 我 打电话 . +You will get lost . 你 会 迷路 的 . +I worked three years as Tom is assistant . 我 给 汤姆 当 了 三年 助手 . +I 'd like orange juice . 我 想要 橙汁 . +He asked me whether I like math . 他 问 我 喜不喜欢 数学 . +Would you mind lending me your pen ? 你 介意 借 我 你 的 筆 嗎 ? +Tom quit . 汤姆 不 干 了 . +We live in the suburbs . 我们 住 在 郊区 . +Tom is overweight . 汤姆 超重 了 . +Tom picked up the knife . 汤姆 拿起 了 刀 . +Turn off the television . I can not concentrate . 把 電視 關掉 . 我 無法 專心 . +Excuse me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +Lightning is usually followed by thunder . 閃 電 常常 伴隨 著 雷鳴 . +Can you imagine walking around on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I thought that Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He was discovered unconscious on the floor of the kitchen . 他 被 人 发现 倒 在 厨房 的 地板 上 , 不省人事 . +We had no secrets . 我們 沒有 秘密 . +I will give you anything but this . 除了 這個 之外 我 會 給 你 任何 東西 . +Thank you very much for your present . 非常 谢谢 你 的 礼物 . +The importation of rare wild animals to this country is strictly prohibited . 该国 严禁 进口 稀有 野生动物 . +She devoted her life to working among the poor . 她 一生 致力于 为 穷人 工作 . +Tom is used to cooking on a campfire . 湯姆 習慣 用營 火 做菜 . +He held a package under his arm . 他 挾著 一個 包裹 . +Go with these men . 跟 這些 人 走 . +You can rely on him . 你 可以 依靠 他 . +They would never meet again . 他们 不会 再见面 了 . +Does anyone here speak Japanese ? 这儿 有人 说 日语 吗 ? +I am not doing that anymore . 我 不再 做 那事 了 . +Stir the soup . 搅 一下 汤 . +Did you learn that from Tom ? 你 從 湯姆 那裡 學到 了 嗎 ? +I have heard this joke before . 我 以前 聽 過 這 笑 話 . +Cover your head when you are in the sun . 當 你 在 陽光 下 的 時候 , 遮住 你 的 頭 . +The stew smells delicious . 這 鍋 墩 湯聞 起來 真 美味 . +I usually got to bed about eleven . 我 通常 約 十一 點 鐘 上床 睡覺 . +I sat between Tom and John . 我 坐在 汤姆 和 约翰 中间 . +A soccer team consists of eleven players . 一个 足球队 由 十一个 球员 组成 . +Can we take care of this tomorrow ? 这个 我们 明天 能 解决 吗 ? +He just got home . 他 刚回到 家 . +I agreed to the proposal . 我 同意 這項 建議 . +I finished writing the letter by noon . 我 中午 前 寫 完 這 封信 了 . +My friends invited me to supper . 我 朋友 邀 我 共赴 晚餐 . +My grandfather died five years ago . 我 祖父 五年 前 去世 了 . +The police were able to find the criminal . 警方 能夠 找到 罪犯 . +I am going to tell you the truth . 我 要 告诉 你 真相 . +Light the candle . 把 蠟燭 點燃 . +She has many friends in Hong Kong . 她 在 香港 有 很多 朋友 . +School begins at eight @-@ thirty . 学校 8 点 半 开始 上课 . +The economy of the island is dependent on the fishing industry . 这个 岛 的 经济 依靠 的 是 渔业 . +We should call the police . 我们 该 报警 . +Tom does not usually dress like that . 湯姆平 時 不 那樣 穿衣服 . +Tom is reading an essay . 湯姆 在 讀 一篇 短文 . +Whose is that notebook ? 這 臺 筆 記 本 電 腦 是 誰 的 ? +I signed the document . 我 簽 了 文件 . +My neck still hurts . 我 的 脖子 还 疼 . +This is atrocious weather . 惡劣 的 天氣 . +You can shut up now . 你 現在 可以 住口 了 . +This is a wig . 这 是 假发 . +A good idea suddenly came to me . 我 的 大 腦 裏 突然 出現 了 一個 很好 的 想法 . +That is thirty meters long . 那個 長 30 米 . +I looked after him for a period of time . 我 看 了 他 一段时间 . +You do not need to study today . 你 今天 不必 讀書 . +That young lady is a nurse . 这个 年轻 女孩 是 护士 . +I think that Liszt is " Forgotten Waltz No.3 " is a hidden masterpiece . 我 觉得 李斯特 的 《 被 遗忘 的 圆舞曲 第三首 》 是 个 被 埋没 的 名曲 . +UFO stands for unidentified flying object . UFO 代表 不明 飛行 物體 . +My friend is father is a doctor . 我 朋友 的 爸爸 是 個 醫生 . +I went shopping last Saturday . 上週 六 我 去 購物 . +Do not forget Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +In case of emergency , call the police . 在 緊 急情 況下 , 打 電話 報警 . +Where was it published ? 它 发表 在 哪里 ? +Has Tom broken something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Would you like some more beer ? 你 想 再 喝 些 啤酒 嗎 ? +You 'd better wait until the police come . 你 最好 等到 警察 前来 . +He is very tall . 他 很 高 . +Is it safe to skate on this lake ? 在 這個 湖上 滑冰 安全 嗎 ? +She filled the glass with wine . 她 在 玻璃杯 裡 裝滿 了 酒 . +Tom did not seem that happy . 汤姆 看来 不 高兴 . +Please send me your picture . 請 把 您 的 照片 發給 我 . +Our house has three bedrooms . 我們 家 有 三個 臥室 . +Few students could understand what he said . 很少 有學 生能 了解 他 說 的 話 . +She held her baby in her arms . 她 把 她 的 孩子 抱 在 懷裡 . +He will be busy tomorrow . 他 明天 會 很忙 . +I will not work overtime today . 今天 我 不 加班 . +Are you still collecting stamps ? 你 還 在 收集 郵票 嗎 ? +No , thank you . I have had enough . 不 , 謝謝 你 . 我 已經 吃 飽 了 . +Do we have anything I can snack on ? 我們 有 任何 我 可以 當 零食 吃 的 東西 嗎 ? +I confess that I am tired . 我 承认 我 很 累 . +You will soon get used to speaking in public . 你 很快 就 会 习惯 在 大庭广众 说话 了 . +She hung a curtain over the window . 她 把 窗簾 掛 在 窗戶 上 . +We owe you an apology . 我们 欠 你个 道歉 . +He does not know the difference between right and wrong . 他 好坏不分 . +The plane took off . 飛機 起飛 了 . +She made tea for me . 她 给 我 沏 了 茶 . +The principal wants to talk to you . 校长 想 跟 你 谈话 . +What kind of shampoo do you use ? 你 用 哪種 洗 髮 水 ? +Is this the right train for Tokyo ? 這 是 開往 東京 正確 的 火車 嗎 ? +I am fully convinced of your innocence . 我 完全 相信 你 是 清白 的 . +If I were invisible I would not have to dress myself . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +I do not like green onions . 我 不 喜欢 葱 . +You are a better skier than me . 你 滑雪 比 我 好 . +Tom is just a crazy old man . 湯姆 只是 一個 瘋老 頭 . +She felt blue . 她 感到 闷闷不乐 的 . +Tom just does not understand . 汤姆 就是 不 懂 . +May I see your driver is license ? 我 可以 看看 你 的 駕駛 執照 嗎 ? +Have you chosen a major yet ? 你 选好 专业 了 吗 +I am counting on your help . 我 指望 你 的 帮助 . +Remember to mail this letter tomorrow morning . 明天 早上 記得 去 寄 這 封信 . +Do not forget to take a camera with you . 别忘了 带 个 相机 . +Can you speak French ? 你 會 講 法語 嗎 ? +His story sounds true . 他 的 故事 聽 起來 是 真的 . +I lost my key somewhere around here . 我 的 钥匙 就是 在 这 附近 丢失 的 . +Which do you prefer , tea or coffee ? 你 比較 喜歡 哪 一個 , 茶 還 是 咖啡 ? +The baby seemed to be fast asleep . 那個 嬰兒 似乎 在 熟睡中 . +Tom does not have to go to Boston next week . Tom 下星期 不用 去 波士 頓 . +Tom told Mary to help John . 湯姆 讓 瑪 麗 幚 約 翰 . +Have you cleaned your room yet ? 你 打掃 你 的 房間 了 嗎 ? +I like taking walks in the woods . 我 喜歡 在 樹林 裡 散步 . +Sometimes I still miss her . 有 時候 , 我 還 是 會 想起 她 . +In life there are ups and downs . 生活 中 有 高低 起伏 . +I had to stay at home . 我 得 留在 家裡 . +All you need to do is just sit here . 你 要 做 的 只是 坐在 这儿 . +Tom could not swim . 汤姆 不会 游泳 . +She picked up one of the glass vases . 她 拿 了 其中 一个 玻璃 花瓶 . +She was holding a small parasol in her hand . 她 手里 握 着 一把 小 阳伞 . +She looks like a teacher . 她 看起来 像 老师 . +Sometimes I see him at the club . 我 偶尔 会 在 俱乐部 碰到 他 . +I appreciate good music . 我 欣賞 好 音樂 . +These pictures were painted by him . 這些 畫 是 他 畫 的 . +It took us a long time to decide what we really wanted to do . 我們 花 了 很 長 時間 決定 我們 真正 想 的 事 . +She was a tall , thin girl with long , soft brown hair . 她 是 個 又 高 又 瘦 , 留著 一頭 又 長 又 軟 的 褐色 頭 髮 的 女孩 . +The coral reef is the region is prime attraction . 珊瑚礁 是 这个 地区 的 主要 景点 . +The moonlight is really beautiful . 月光 真美 . +Children should drink milk every day . 孩子 们 应该 每天 喝牛奶 . +I ate bread and butter this morning . 今天 早上 , 我 吃 了 面包 夹 黄油 . +I trust his executive ability . 我 相信 他 的 执行 能力 . +Where are you planning to stay ? 你 打算 在 哪裡 留宿 ? +I should tell Tom what I have to do . 我 應該 告訴 湯姆 我 該 做 甚麼 . +I am daydreaming . 我 在 做 白日梦 . +You should eat more vegetables . 你 應 該 多 吃 蔬菜 . +I like both dogs and cats . 我 喜歡 狗 和 貓 . +Wearing a suit , he stood out . 他 穿著 西裝 站 了 出來 . +I do not know right now . 我 现在 不 知道 . +I am on the right . 我 在 右邊 . +I often eat chicken . 我 經常 吃 雞 . +Are you sure that is what you want ? 你 確定 那 是 你 想要 的 嗎 ? +Let is synchronize our watches . 讓 我們 校 對 一下 錶 吧 . +Tom is not very strict about it . 湯姆 對 此 不 嚴格 . +It is my treat . 我 請 客 . +I will come , weather permitting . 如果 天气 允许 的话 , 我 就 去 . +The picture looks better at a distance . 这 幅画 远 看 更好 . +It is a surprise . 这 是 一个 惊喜 . +Is it really possible ? 真的 是 可能 的 嗎 ? +Everybody was confused . 每个 人 都 很 困惑 +She wrote him a long letter , but he did not read it . 她 给 他 写 了 一封 长信 , 但是 他 没有 看 . +Tom likes tea better than coffee . 湯姆 喜歡 茶 勝 過 咖啡 . +I do not need anything . 我 什么 都 不 需要 . +I was very impressed by his story . 他 的 故事 給 我 留下 了 很 深 的 印象 . +I am interested in history . 我 對 歷史 有 興趣 . +He is afraid of snakes . 他 怕 蛇 . +It was a bag that I lost in the room yesterday . 它 是 我 昨天 遺失 在 房裡 的 包 . +That responsibility is a burden to him . 那个 责任 对 他 是 个 负担 . +I think it will not succeed . 我 認為 它 不 會 成功 . +The streets in Tokyo are full on Saturdays . 週六 , 東京 街上 人 滿為 患 . +My father is a doctor . 我 父亲 是 个 大夫 . +Please be quiet . 請 安靜 . +She seems to be unhappy . 她 看 起來 不快 樂 . +I am thirty years old . 我 三十 歲 . +He is already a man . 他 已经 是 个 男人 了 . +The boy who lives next door often comes home late . 住 在 隔壁 的 男孩 常常 很 晚 回来 . +I do not believe you . You are always telling lies . 我 不 相信 你 . 你 总是 说谎 . +She was susceptible to colds . 她 易 患感冒 . +Which credit cards can I use ? 我 可以 用 哪些 信用卡 ? +Japan is now very different from what it was twenty years ago . 相比 二十年 前 的 日本 , 现在 的 日本 有 了 翻天覆地 的 变化 . +I have not seen Tom lately . 我 最近 沒 看到 湯姆 . +Tom fell into a vat of sulfuric acid . Tom 摔倒 进 一桶 硫酸 中 +If I lost my key , I would not be able to lock the door . 如果 我 弄 丟了 我 的 鑰匙 , 我 就 無法 鎖門 了 . +There is something I have been meaning to discuss with you . 有件事 我 一直 想 跟 你 商量 . +What browser are you using ? 你 用 什么 浏览器 ? +I have finally got the whole set ! 我 終 於 擁有 了 一整套 ! +Tom knows that I want to leave as soon as possible . 湯姆 知道 我 想 盡早 離開 . +Our team lost the first match . 我們 隊 輸 了 第一 場 比賽 . +I am busy all the time . 我 總 是 忙碌 . +We did not stay home yesterday . 我們 昨天 沒 有待 在家 裡 . +Tom does not even know my name . 汤姆 甚至 不 知道 我 的 名字 . +I have time . 我 有 时间 . +Could we have a table outside ? 我們 在 外面 可以 有 一張 桌子 嗎 ? +When did you get here ? 你 是 什麼 時候 來的 ? +She asked him to open the window . 她 請 他 打開 窗口 . +Her only pleasure is listening to music . 她 唯一 的 樂趣 就是 聽 音樂 . +It is safe to say so . 這麼 說 是 安全 的 . +We had a rest in the shade . 我們 在 樹蔭 下 休息 . +Hokkaido is very far , is not it ? 北海道 很遠 , 不是 嗎 ? +She went to Italy to study music . 她 去 了 意大利 學習 音樂 . +Hurry home . 赶快 回家 . +Hundreds of buffaloes moved toward the lake . 數以百計 的 水牛 走向 湖邊 . +I expect a lot from him . 我 對 他 期望 很 高 . +Could you solve the problem ? 你 能 解決 這個 問題 嗎 ? +I can not stand this pain any more . 我 不能 再 忍受 這種 痛苦 了 . +The blue lines on the map represent rivers . 地图 上 的 蓝线 代表 河流 . +Excess of politeness is annoying . 禮貌 過度 是 煩人 的 . +She is the one who feeds our dog . 她 是 喂 我們 的 狗 的 人 . +He does not like coffee . 他 不 喜歡 喝咖啡 . +Christmas is definitely my favorite holiday . 圣诞节 绝对 是 我 最 喜欢 的 节日 . +You do not have to eat it . 你 不必 吃 . +To err is human , to forgive divine . 人 皆 有錯 , 唯 聖者 能 恕 . +Use it or lose it . 使用 它 或 失去 它 . +I was quite hungry . 我 很 饿 . +I also heard a similar story . 我 也 听 过 一个 类似 的 故事 . +We have a problem here . 我们 现在 有 了 麻烦 . +They moved ahead slowly . 他們 慢慢 地 向前 進 . +My car cost more than yours did . 我 的 车子 的 开销 比 你 的 要 多 . +My mother never punishes me . 我 母親 從來 沒有 懲罰 過 我 . +Now is a great time to buy one of those . 现在 是 买 它 的 最好 时机 . +All that glitters is not gold . 光 看 表面 是 不足 夠 的 . +How far is it from here ? 离 这儿 有 多 远 ? +Tom is there alone . Tom 獨自 在 那 . +The eight o 'clock bus was early today . 8 点 那 班车 今天 早 到 了 . +I do not like the way he talks . 我 不 喜歡 他 講 話 的 樣子 . +I can not bear this pain . 我 無法 忍受 這個 痛苦 . +Who likes beans ? 谁 喜欢 豆子 ? +I do not know what to believe anymore . 我 再也 不 知道 該 信 甚麼 了 . +It is time to get some work done . 到 了 做 點 事 的 時候 了 . +I have no idea of what to do . 我 不 知道 该 怎么办 . +I like the way you walk . 我 喜欢 你 走路 的 方式 . +I would like to speak with you in private . 我 想 跟 你 私下 说话 . +I am from Portugal . 我 来自 葡萄牙 . +It is almost six o 'clock . 快要 六點 了 . +Is he tall ? 他 长 得 高 吗 ? +When I heard the news , I wanted to cry . 当 我 听到 这个 消息 时 , 我 想 哭 . +Japan is an extremely noisy country . 日本 是 一個 非常 嘈雜 的 國家 . +They will arrive a week from today . 他們 將 於 下 個 星期 的 今天 抵達 . +I hope you will get better soon . 我 想 你 快点 好 . +I know how we can help . 我 知道 我們 要 怎麼 幫忙 . +I am going to my room , where I can study . 我 要 回 房间 了 , 在 那儿 我 可以 学习 . +That could be too late . 那 可能 太晚 了 . +You 'd better not speak . 你 最好 不要 說 . +You should pay your rent in advance . 你 应该 提前 付 租金 . +Tom is tired . 湯姆 累 了 . +Tom did it the same way I did . 汤姆 我 按 我 做 的 办法 做 了 . +I think I mistakenly deleted that file . 我 觉得 我 是 误删 了 这个 文件 . +Scientists have not found a cure for cancer yet . 科学家 们 还 没有 找到 癌症 的 治疗 方法 . +Her mother is writing a letter . 她 的 母親 正在 寫信 . +Is there a zoo in Boston ? 波士顿 有 动物园 吗 ? +I believed that he would keep his promise . 我 相信 他 会 信守诺言 . +Tom has two children . Tom 有 兩個 孩子 . +The design itself is flawed . 設計 本身 有 問題 . +She is eating . 她 吃 . +I will let you decide . 我 让 你 来 决定 . +I am a professor . 我 是 大学教授 . +I have no problem with my boss . 我 和 老 闆 沒 有 問 題 . +The telephone was invented in 1876 by Bell . 電話 於 1876 年 由 貝爾 所 發明 . +I am happy to have so many good friends . 我 很 高 興有 這麼 多 好 朋友 . +How long will this rain go on ? 雨会 下 多久 ? +You can not achieve anything without effort . 没有 什么 是 不劳而获 的 . +Thousands of people died of hunger . 數千 人 死 於 飢餓 . +Who does the gun belong to ? 這 把 槍 是 屬 於 誰 的 ? +He made his son a wealthy man . 他 使 他 儿子 成 了 个 有钱人 . +I can not finish the job in so short a time . 我 無法 在 這麼 短 的 時間 內 完成 這份 工作 . +He accelerated . 他 提速 了 . +Let is not watch TV . 我們 不要 看電視 吧 . +It is going to rain , for sure . 要 下雨 了 , 我 敢肯定 . +According to the weather forecast , it will snow tomorrow . 天气预报 说 明天 会 下雪 . +Everyone but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom likes to make paper airplanes . 汤姆 喜欢 折纸 飞机 . +Accidents happen . 事故 發生 . +Tom has a beautiful car . Tom 有 台 靓车 . +I do not care a bit about the future . 我 不在乎 将来 . +Last year , he spent three months at sea . 去年 他 在 海上 度過 了 三個 月 . +Swimming makes your legs strong . 游泳 使 腿部 强健 . +He threw a stone into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +She goes to aerobics once a week . 她 每星期 去 作 一次 健美操 . +Who is worried about Tom ? 谁 担心 汤姆 ? +Here is the map you are looking for . 你 正在 找 的 地圖 在 這裡 . +I will not make that mistake again . 我 不 會 再犯 那 錯 了 . +This old house is haunted . 这个 老房子 闹鬼 . +What you are saying does not make sense . 你 说 的 没有 意义 . +They all burst out laughing . 他们 都 哈哈大笑 起来 . +God exists . 上帝 存在 . +The young man is a doctor . 这个 年轻人 是 医生 . +I had nothing in common with them . 我 同 他们 没有 过 共同之处 . +Was that too much ? 那 太 多 了 吗 ? +How do you know that belongs to Tom ? 你 怎麼 知道 那 是 湯姆 的 ? +Now , wait a second . 現在 等 一下 . +Can we save the planet ? 我们 能 拯救 这 颗 星球 吗 ? +This is impossible . 这 不 可能 . +When Dad finds out what you have done , he is going to hit the roof . 当 爸爸 发现 你 做 了 什么 的 时候 , 他 会 发疯 的 . +He lost his eyesight in the accident . 他 在 意外 中 失明 了 . +I have just finished my homework . 我 剛剛 完成 我 的 作業 . +He dried his wet clothes by the fire . 他 在 火 旁 烘干 他 的 湿 衣服 . +Do not shout at me . 別 對著 我 吼 . +I am looking forward to hearing from you soon . 我 期待 很快 就 能 收到 你 的 信 . +Tom hung the calendar on the wall . 湯姆把日 曆 挂 在 墙上 . +She made me wait for half an hour . 她 让 我 等 了 半小时 . +Who else uses this room ? 还有 谁 用 这个 房间 ? +He taught us that Columbus discovered America . 他 教導 我們 說 , 哥倫布 發現 了 美洲 . +Where in Turkey do you live ? 你 在 土耳其 哪儿 生活 ? +The lady tolerated the man . 那 女士 容忍 了 那 男人 . +I used to smoke a lot , but now I have quit . 我 以前 常 抽 菸 , 但 現在 我 戒掉 了 . +You dropped your pencil . 你 把 你 的 铅笔 弄掉 了 . +Tom has a plan . 湯姆 有個 計畫 . +He rarely stays home on Sunday . 他 很少 週日 待 在家 裡 . +He does not like traveling by air . 他 不 喜歡 搭 飛機 旅行 . +Your tie has come undone . 你 的 領 帶 鬆 了 . +I wonder why karaoke is so popular . 我 不 知道 為 什麼 卡拉 OK 如此 受歡 迎 . +We made the most of the opportunity . 我們 盡力 地 利用 了 這個 機會 . +If you sang , they 'd kick you out of the bar . 如果 你 唱歌 了 , 他们 就 会 把 你 踢 出 酒吧 +Would you like me to explain it ? 我 為 你 解釋 一下 好 嗎 ? +I study at school . 我 在 学校 读书 . +He walked in the park yesterday . 他 昨天 在 公園 裡 散步 . +I was lonely without her . 她 不 在 , 我 很 孤独 . +Our music teacher advised me to visit Vienna . 我們 的 音樂 老師 建議 我 去 維也納 看看 . +This job pays pretty well . 这 工作 报酬 很 高 . +When the cat is away , the mice will play . 山上 无 老虎 , 猴子 称 大王 . +I will think it over carefully . 我会 深思熟虑 . +She bought two pairs of socks . 她 買 了 兩雙 襪子 . +Please do not get me wrong . 千万 别误会 我 的 意思 . +Hurry up , or you will miss the bus . 快點 , 否則 你 會 錯 過 公車 . +We must get up at dawn . 黎明 時 我們 必須 起床 . +Take care of yourself . 照顾 好 自己 . +What are you eating ? 在 吃 什么 呢 ? +His daughter has become a pretty woman . 他 的 女兒 已經 成為 了 一個 漂亮 的 女人 . +Is this your first trip abroad ? 這 是 你 第一次 出國 嗎 ? +Keep them . 留 着 吧 . +I accepted the offer . 我 接受 了 报价 . +Are you Tom ? 你 是 汤姆 吗 ? +Do not fail to mail this letter . 不要 忘 了 寄 這 封信 . +They are armed . 他們 有 帶 武器 . +You do not have to buy me anything . 你 不必 为 我 买 什么 . +I hate myself sometimes . 偶尔 我会 讨厌 我 自己 . +When do you have to go to bed ? 你 甚麼 時候 必須 去 睡 覺 ? +Not all Germans like to drink beer . 不是 所有 的 德国人 都 喜欢 喝啤酒 . +We did not know what to do next . 我們 不 知道 下 一步 要 做 什麼 . +Do you really believe that story ? 你 真的 相信 那 故事 嗎 ? +I can not do any more than this . 我 無法 做 比 這 更 多 的 了 . +That is his house . 那 是 他家 . +What do you want me to do , Tom ? 你 想 讓 我 做 甚麼 , 湯姆 ? +My joints ache when it gets cold . 當天 氣變 冷 的 時候 , 我 的 關節 疼痛 . +The moonlight is beautiful . 月光 真美 . +I have a lot of homework . 我 有 很多 功課 . +It is hard to say . 難 講 喔 . +I am going to register at a gym . 我 去 註 冊 一家 健身房 . +English is easy to learn . 英語 簡單 易學 . +I had a wonderful time . 我 度 過 了 美好 的 時光 . +She always takes care of her children . 她 毫無間斷 地 照顧 自己 的 孩子 . +What do you think of that ? 你 認為 如何 ? +I will be free in ten minutes . 我 十分钟 后 有空 . +This medicine will do you good . 这 药 对 你 有 好处 . +She disliked her husband . 她 不 喜歡 她 的 丈夫 . +My neighbor is dog is dead . 我 鄰居 的 狗 死 了 . +They got to the hotel after dark . 天暗 後 他們 到 了 酒店 . +This is not a sentence . 這 不是 一個 句子 . +I am no quitter . 我 不 輕易 放棄 . +That is a pretty big assumption . 那 是 个 很大 的 设想 . +I do not care what they say . 我 不在乎 他們 說 什麼 . +It never rains but it pours . 不下雨 則 矣 , 一下 一定 是 傾盆 大雨 . +The student handed the examination papers in to the teacher . 該 學生 把 考試 卷 交給 了 老師 . +We 'd like another bottle of wine . 我們 想 再 來 一瓶 葡萄酒 . +I am full . 我 吃 飽 了 . +What does he want to do ? 他 到底 想 干嘛 ? +We ate sandwiches for breakfast . 我們 早餐 吃 了 三明治 . +Any child can do that . 任何 小孩 都 能 做到 . +We love Tom . 我们 爱 汤姆 . +His cottage is on the coast . 他 的 村屋 在 海岸 上 . +I am going to change my shirt . 我 要 去 換 我 的 襯衫 . +How much sugar should I put in your coffee ? 我 应该 往 你 的 咖啡 里 放 多少 糖 呢 ? +What happened here was unavoidable . 这里 发生 的 不可避免 . +Tom is not happy at all . 汤姆 根本 不 高兴 . +He found a ball in the garden . 他 在 花園 裡 找到 了 一顆 球 . +I have not eaten for many days . 我 好多天 没 吃 东西 了 . +I am thinking about you . 我 正 考慮 到 你 . +Whose shirt is this ? 這 是 誰 的 襯衫 . +Drinking lots of water is good for you , sure , but one can not drink that much water at once . 虽然 喝 多点 水 对 身体 有 好处 , 但是 一次性 喝 太 多 水 也 是 不好 的 . +Did you drive her home last night ? 昨晚 你 把 她 送 回家 了 吗 ? +Tom thanked Mary for coming . 汤姆 感谢 玛丽 的 光临 . +Although he was exhausted , he had to keep working . 尽管 他 累 极了 , 他 还 必须 工作 . +I asked her to wait a moment . 我 請 她 等 一會兒 . +We have no electricity . 我們 沒有 電 . +I have been to Rome . 我 去过 罗马 . +Tom can not afford that . 汤姆 负担 不起 . +I have nothing to fall back on . 我 没什么 可 依靠 的 了 . +I have the same trouble as you have . 我 有 跟 你 同樣 的 麻煩 . +There used to be a prison here . 這裡 以前 有 一座 監獄 . +Would you like to come ? 你 愿意 来 吗 ? +Bring me a glass of water . 给 我 一杯 水 . +I had a phone call from him . 我 接到 了 他 打來 的 電話 . +It is no use talking with him . 跟 他 說 話 沒用 . +I can not lift my right arm . 我 無法 舉起 我 的 右 手臂 . +" Will he pass the examination ? " " I am afraid not . " " 他 會 通過 考試 嗎 ? " " 我 怕 是 不 會 . " +Where are your things ? 你們 的 東西 在 哪裡 ? +He came to see me . 他 來看 我 了 . +Tom is not an elected official . 湯姆 不是 選 出來 的 官員 . +I have many discs . 我 有 许多 唱片 . +I can not tell if you are joking . 我 無法 分辨 你 是否 在 開 玩笑 . +We are going to leave tomorrow . 我們 明天 要 離開 . +I feel very sick . 我 覺得 我 病 得 很 厲害 . +Finally , he reached his goal . 他 终于 达到 了 自己 的 目标 . +He came back not because he was homesick , but because he was running short of money . 他 不是 因為 想 家 , 而是 因為 沒錢 才 回來 的 . +Who do you think we are ? 你 认为 我们 是 谁 ? +Have you eaten your dinner already ? 你 吃 過 晚 飯 了 嗎 ? +I wish I could have spoken Spanish . 要是 我 會 說 西班牙 語 就 好 了 . +He had his sister help him paint the wall of his room . 他 让 妹妹 帮 他 涂 他 房间 的 墙 . +Do you study at a private school ? 你 在 私立学校 读书 吗 ? +His hat is not on straight . 他 的 帽子 没戴 正 . +He got his wife to mend his shirt . 他 让 他 的 妻子 补好 衬衫 . +I spent 10 dollars on it . 我 在 这 东西 上 花 了 十美元 . +I sometimes still think about her . 有 時候 , 我 還 是 會 想起 她 . +I believe in what they said . 我 相信 他們 說 的 話 . +It all depends on you . 这 都 取决于 你 . +Let me cut the carrots . 讓 我 來 切 胡蘿 蔔 . +The cough syrup has a licorice flavoring . 咳嗽 糖浆 有 股 甘草 的 味道 . +I am very happy . 我 很 快乐 . +I wish that we could spend more time together . 我 希望 我们 有 更 多 时间 呆 在 一起 . +Mary has just come home . 瑪麗剛 剛 回家 . +The street was crowded with people . 街道 上 擠滿 了 人 . +Are not there any qualified applicants ? 没有 合格 的 申请人 吗 ? +I am not as optimistic as you . 我 没有 你 那么 乐观 . +This novel is difficult to understand . 这部 小说 很 难 读懂 . +I know that can not really happen . 我 知道 那 不 會 真的 發生 . +I come from a large family . 我 从 一个 大家庭 来 . +Our friend finished the race in second place . 我们 的 朋友 完成 了 比赛 , 得 了 第二名 . +Why do you think that I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +That affair made him famous . 那 件 事情 使 他 一舉 成名 . +I am blessed with good health . 我 很 幸運 有 健康 的 身體 . +The train has already gone . 列车 已经 出发 . +We are supposed to know the rules . 我们 应该 了解 相应 的 规则 . +The potato was so hot that it burned my mouth . 土豆 太 热 , 以至于 烫 到 了 我 的 嘴 . +Ignore Tom . 别理 汤姆 . +She glanced briefly at the newspaper . 她 很快 地 瞟 了 一眼 報紙 . +A new team was formed in order to take part in the boat race . 为了 参加 划船 比赛 , 一支 新 的 队伍 组成 了 . +I just need a break . 我 只 想 休息 一下 +Stuff happens . 事情 难免会 发生 . +It is OK . 没关系 . +It is an hour is walk to the station . 步行 到 車 站 要 一小 時 . +It may or may not be true . 這 可能 是 真的 , 也 可能 不是 . +Tom seems to be much happier than me . 汤姆 看来 比 我 高兴 . +When the phone rang , I was watching TV . 电话响 的 时候 , 我 在 看电视 . +You should see a doctor . 你 應 該 去 看 醫生 . +Your dog is very fat . 你 的 狗 非常 胖 . +Do not let appearances deceive you . 不要 被 外貌 蒙蔽 了 . +Winter is coming . 冬季 快 來 了 . +How about you ? 你 怎麼樣 ? +They knocked down a part of the wall . 他們 拆掉 了 一部分 牆 . +Tom could not hold back his anger . 汤姆 没法 压抑 自己 的 怒火 了 . +The runner jumped over the hole in the ground . 那个 赛跑 运动员 跃过 了 地面 上 的 洞 . +Please tell me about your trip . 請 告訴 我 有 關 你 旅行 的 事 . +They are at lunch . 他们 在 吃 午饭 . +There is always someone talking . 總是 會 有人 說 話 . +He knocked on the door . 他 敲 了 門 . +The princess begged forgiveness from the emperor . 公主 向 皇帝 请求 饶恕 . +He played tennis . 他 打 了 网球 . +I caught the man stealing the money . 我 抓到 了 這個 男人 正在 偷 錢 . +This song is very popular in Japan . 這 首歌曲 在 日本 很 受歡 迎 . +I have decided to carry on the work . 我 决定 继续 工作 . +My opinion is different from yours . 我 的 看法 跟 你 的 不同 . +You must clear the table . 你 必须 把 桌子 清理 干净 . +What do you really want to say ? 你 实际上 想 说 什么 ? +This sentence is grammatically correct . 这个 句子 在 语法 上 是 正确 的 . +You must get up a little earlier . 你 该 早 一点 起床 . +I grow tomatoes and onions in my garden . 我 在 花园 种 了 番茄 和 洋葱 . +He is very busy writing stories . 他 忙于 写 故事 . +I have a slight headache now . 现在 我 有 些许 头痛 . +Taking off is easier than landing . 起飛 比 降落 容易 . +I am not good at carpentry . 我 不 擅長 做 木工 . +I said it might rain . 我 说 了 可能 要 下雨 . +I think it will be hot today . 我 觉得 今天 会 很 热 . +Tom likes me the most . Tom 最 喜欢 我 . +Do you know which deity this temple is dedicated to ? 您 知道 这 座 庙宇 供奉 的 是 哪个 神 吗 ? +I am alarmed by your irresponsible attitude . 我 对 你 不负责任 的 态度 感到 惊讶 . +I am young . 我 還 年輕 . +The fish tasted like salmon . 這 魚 吃著 像 三文 魚 . +I have a bad headache . 我 頭 疼 得 厲害 . +He is the chairman of the committee . 他 是 委員會 主席 . +She is dieting . 她 在 节食 . +I am home . 我 在家 裡 . +She used to go to the movies on Sundays . 她 從 前 會 在 星期天 去 看 電影 . +I will not do this again . 我 不想 再 做 這個 了 . +He invested his money in stocks . 他 把 錢 投資 於 股票 . +We have to continue to do our jobs . 我们 要 继续 我们 的 工作 . +I agreed with him on the plan . 對 於 這個 計劃 我 同意 他 的 意見 . +Tom hurried so he would not miss the train . 汤姆 加紧 步伐 以 不错 过 火车 . +The same thing is happening here in Boston . 同樣 的 事 在 這 - 波士 頓 發生 . +Are you planning to help them ? 你 打算 幫助 他們 嗎 ? +She mistook my brother for me . 她 把 我 哥哥 誤認 為 我 . +" Will you be at my party tomorrow night ? " " I will try to be there . " “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 尽量 来 . ” +There is nothing else we can do . 没有 我们 能 还 做 的 事 . +Perhaps it was worth it . 可能 是 值得 的 . +You are impatient . 你 缺乏 耐心 . +He might not be happy . 他 可能 會 不 高興 . +How often does the bus run ? 公共汽车 多久 发车 一次 ? +Tom can not drive a bus . 湯姆 不能 開 巴士 . +We had to live together . 我們 要 在 一起 生活 . +Why did you not tell me the truth ? 为什么 你 不 告诉 我 真相 ? +My father bought me a bicycle . 我 父亲 给 我 买 了 一辆 自行车 . +Tom stopped me from entering the bank . 汤姆 阻止 我 进 银行 . +He is staying at his aunt is . 他 呆 在 他 阿姨 家 . +My eyes are watering . 我 在 流眼淚 . +We had a heavy frost this morning . 今天 早上 天氣 嚴寒 . +Do not hesitate to ask questions . 不要 猶豫 去 問 問題 . +This book is yours . 這 本書 是 你 的 . +Take your time . There is no hurry . 慢慢来 , 没 那么 急 . +You do not seem happy . 你 看起来 不 高兴 . +Please say it more loudly . 請 說 更 大聲 一點 . +What I am about to say is strictly between you and me . 我 要说 的 只能 是 你 知 我 知 . +He always mistakes me for my sister . 他 老 是 把 我 和 我 姐姐 搞错 . +A green carpet will not go with this blue curtain . 绿色 的 毯子 和 这条 蓝色 的 帘子 不配 . +I am ready to leave . 我 准备 好 出发 了 . +He told the truth . 他 說 了 實話 . +I have had enough . 我 已經 受夠 了 . +He has a lot of hobbies . 他 有 很多 兴趣爱好 . +My back still hurts . 我 的 背 還 在 痛 . +Can I see that one ? 我 能 看 那個 嗎 ? +It is a good deal . 这 是 一笔 不错 的 交易 . +Tom gave us nothing . 汤姆 什么 也 没给 我们 . +The cost of living has gone up . 生活 費 提高 了 . +How many cats do you have ? 您 有 几只 猫 ? +That house belongs to him . 這棟 房子 是 屬 於 他 的 . +Let Tom live . 給 湯姆 活路 ! +He threw the ball . 他 把 球 扔 了 . +Where are we eating breakfast ? 我們 在 哪裡 吃 早餐 ? +The third quarter GNP growth was 1 % over the preceding quarter . 第三季 國 民生 產總值 較 上 一季 成長 了 1 % . +Is this your book ? 這 是 你 的 書 嗎 ? +I have been careful my whole life . 我 一生 都 谨慎 行事 . +Do not exceed the speed limit . 不要 超速 . +Try resting for now . 现在 休息 一下 . +Can Tom help us ? 汤姆 可以 帮 我们 吗 ? +He wanted to reduce the tax on imports . 他 想要 减少 进口品 的 税 . +He was killed in a car accident . 他 死 於 一場 車禍 . +I am looking for a warm , woolen skirt . 我 想 找 一件 溫暖 的 羊毛 裙 . +You must come back before it gets dark . 你 必须 在 天黑 前 回来 . +She put her CDs in a row on the shelf . 她 把 她 的 CD 在 書 架上 排成 一排 . +I guess they really were not so happy . 我 猜 他們 真的 不 太 高興 . +He works from nine to five @-@ thirty . 他 從 早上 九點 工作 到 下午 五點半 . +The area of the factory is 1,000 square meters . 工厂 的 面积 是 1000 平方米 . +He arrived in Tokyo yesterday . 他 昨天 到 了 东京 . +I even work on Sundays . 我 甚至 在 週日 工作 . +Our new home has an elevator . 我們 的 新家 有一 臺 電 梯 . +You are not special . 您 不 特別 . +She gave in to the temptation . 她 屈服 於 誘惑 了 . +Could you do me a favor ? 請 你 幫 我 一個 忙好 嗎 ? +I gave up all hope of survival . 我 放棄 了 所有 生存 的 希望 . +Tom slept with his shoes on . 汤姆 穿着 鞋 睡 了 . +He is rotten to the core . 他 壞 透 了 . +They are sure to fall in love . 他们 肯定 会 相恋 的 . +You are irresistible . 你 令人 难以 抗拒 . +I did it . 我 做到 了 ! +There was not anybody in the house . 沒 有人 在家 . +Whose cup is this ? 这 是 谁 的 杯子 ? +She is a very good teacher . 她 是 个 非常 好 的 老师 . +It will be snowing when we arrive at Shiga Heights . 我们 到达 志 贺 高原 时会 下雪 . +Is Tom ready for that ? 汤姆 准备 好了吗 ? +The artist who illustrated this book is very good . 給 這 本書 畫 插畫 的 畫家 很 好 . +I bought this book at Maruzen Bookstore . 我 在 书商 Maruzen 那里 买 了 这 本书 . +She does not have a ticket . 她 沒 有 票 . +You should have done it earlier . It cannot be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +We probably should have left early . 我們 可能 應該 早點 走 . +How often do the buses depart ? 公共汽车 多久 发车 一次 ? +Edison was not a bright student . 爱迪生 不是 个 优秀 的 学生 . +I do not want to wait that long . 我 不想 等 那么 久 . +It would take forever for me to explain everything . 要 都 解释 的话 , 需要 一辈子 的 时间 . +I will teach you how to drive a car . 我会 教 你 怎么 开车 . +This really is a nice surprise . 真是 个 惊喜 ! +Are you ready ? 您 准备 好了吗 ? +I am playing football now . 我 現在 正在 踢足球 . +Had he known what was about to happen , he would have changed his plan . 要是 他 知道 会 发生 什么 , 他 就 会 改变 计划 . +Tom is comment was inappropriate . 湯姆 的 評論 不合 適 . +Is something wrong ? 有 什么 不对 吗 ? +Please do not look at me like that . 請 不要 那樣 看 我 . +I could not agree with you more . 我 再 同意 你 不 過 了 . +I have climbed Mt . Fuji twice . 我 爬 過 兩次 富士山 . +Tell me how you are feeling . 告訴 我 你 的 感受 . +For some reason the microphone did not work earlier . 剛才 我 的 麥克風 沒起 作用 , 不 知道 為 什麼 . +He is on the radio . 他 上 电台 了 . +He got a good grade in mathematics . 他 數學 得 了 一個 好 成績 . +I had my composition corrected by the teacher . 我 把 我 的 作文 拿 給 老師 訂正 . +Can you lower the price ? 可以 便宜 點 嗎 ? +The policeman was drunk . 警察 醉 了 . +She spent all afternoon cooking . 她 花 了 整個 下午 作飯 . +Please come as soon as possible . 请 尽快 过来 . +How long did you stay ? 你 待 了 多久 ? +Let is hope you do not need it . 希望 你 用不着 它 . +I can only see it getting worse . 我 只 看见 它 变得 更糟 了 . +She stayed at home by herself . 她 獨自 留在 家裡 . +Tom is standing in the corner of the room . 汤姆 正 站 在 房间 的 角落 . +That music is worth listening to many times . 这 音乐 值得 听 许多次 . +I was deeply impressed by the scenery . 我 被 这 景色 深深 迷住 了 . +We took part in the discussion . 我們 參加 了 討論 . +Today is my birthday . 今天 是 我 的 生日 . +Tom started singing . 湯姆 開始 唱歌 . +Experience is the best teacher . 經驗 是 最好 的 老師 . +The countryside has many trees . 乡间 有 很多 树 . +He predicted there would be rain . 他 预测 会 下雨 . +He tends to be late for meetings . 他 開會 往往 會 遲 到 . +Put some salt into the boiling water . 放 點 鹽 到 滾 水裡 . +This train stops at every station . 這 班 火車 每站 都 停 . +Parents teach their children that it is wrong to lie . 父母 教育 他们 的 孩子 说谎 是 不好 的 . +That changed everything . 那 改变 了 一切 . +I know it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +Every rose has its thorns . 沒有 不 帶刺 的 玫瑰 . +This shirt needs ironing . 这 衬衫 需要 熨 . +What do you plan to sell ? 你 計劃 賣 甚麼 ? +We all miss you very much . 我们 都 非常 想 你 . +Let is go ! 走 吧 . +I do not like tea , so I generally drink coffee for breakfast . 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 喝咖啡 . +That really whets my appetite . 那 很 開 胃 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +War must be avoided at all costs . 戰爭 必須 不惜一切 代價 地 去 避免 . +Is there any possibility of his resigning ? 他 有 可能 辭職 嗎 ? +Are you sure Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +We are all hungry . 我們 都 餓 了 . +I tried to escape . 我 试图 逃跑 . +We ran after the cat . 我們 追著 貓 . +He gave me a smile of recognition . 他 給 了 我 一個 認可 的 微笑 . +There is something odd going on . 正 有 什么 奇怪 的 事情 发生 着 . +It was not me who told you not to do that . 不是 我 告訴 你 不要 去 做 的 . +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Tom failed . 汤姆 失败 了 . +Everyone was happy . 每個 人 都 高興 . +Have you finished your homework ? 你 做 完 作業 了 嗎 ? +Watching TV is a passive activity . 看電視 是 一種 被動 的 活動 . +I wonder why Tom is so excited . 我 奇怪 為 甚麼 湯姆 那麼 激動 . +Well , have you decided ? 那麼 , 你 決定 好 了 嗎 ? +My dog often lies on the grass . 我家 的 狗 經常 躺 在 草地 上 . +Come on , hurry up . 来 吧 , 快 一点 . +I am going to go sit down . 我 要 坐下 . +I like strawberry ice cream . 我 喜歡 草莓 味 的 冰淇淋 . +I ordered those books from Germany . 我 從 德國 訂購 了 那些 書 . +Please wait for me at the station . 請 在 車站 等 我 . +I tried to listen to him carefully . 我 試著 仔細 地 聽 他 說 話 . +You will never be alone . 你们 永远 不会 一个 人 的 . +It cost me 50 dollars to have my watch fixed . 我 花 了 五十 美元 修好 了 手表 . +Now who is going to help you ? 現在 誰 要 幫 你 ? +Have you made your decision ? 你 决定 好了吗 ? +She knows how to do the crawl . 她 知道 怎麼 游 自由式 . +Where am I ? 我 在 哪裡 ? +I received her letter yesterday . 昨天 我 收到 了 她 的 信 . +If you do not know the way , ask a policeman . 要是 不知 道路 的话 去 问 警察 吧 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 要 怎麼 去 火車 站 嗎 ? +The light suddenly went out . 灯 突然 灭 了 . +When does it arrive ? 它 什么 时候 到 ? +Tom is not here yet , but we expect him soon . 湯姆 還 不 在 這裡 , 但 我們 期待 他 很快 就 來 . +How about another cup of coffee ? 要 不要 再來 一杯 咖啡 ? +She always smiles at me . 她 總是 對 我 微笑 . +Tom stood behind me . 汤姆 站 在 我 后面 . +I like being on the team . 我 喜欢 在 队伍 里 . +I saw him crossing the street . 我 看见 他 穿过 了 马路 . +Get out of here . 離開 這裡 . +Speak softly . 你 说话 小点声 . +He can scarcely write his name . 他 很 难 写 他 的 名字 . +They live in peace . 他们 过 着 和平 的 生活 . +Spring is the best season to visit Kyoto . 春天 是 访问 京都 最好 的 季节 . +That is just what I wanted . 我 想要 的 就是 这个 . +I was at home . 我 刚才 在家 . +There were few children in the room . 房间 里 没 几个 小孩子 . +Tom donates half his salary to his favorite charity . 汤姆 捐 一半 他 的 薪水 给 他 最 喜欢 的 慈善机构 . +You can eat whatever you like . 你 可以 吃 你 喜歡 的 東西 . +I can not hear you . 我 听不见 你 . +The mother occasionally reread her son is letter . 这位 母亲 偶尔 会 重温 她 的 儿子 的 信件 . +If we knew what we were doing , it would not be called research , would it ? 如果 我们 知道 我们 在 做 什么 , 那么 这 不能 称之为 研究 , 是 吗 ? +He missed the last train . 他 错过 了 最后 一班 火车 . +She needed some money to buy something to feed her dog . 她 需要 一些 钱 来 买点 东西 喂 她 的 狗 . +You have no need to be ashamed . 你 不 需要 害羞 . +I believe the actions that he took were right . 我 相信 我们 采取 的 行动 是 对 的 . +What is the title of your new book ? 你 新書 的 書名 是 什麼 ? +You do not like sashimi , do you ? 你 不 喜 歡生 魚片 , 是 嗎 ? +He had a smile on his face . 他 面帶 笑容 . +It is obvious why his stomach hurts . 他 為 什麼 會 胃痛 的 原因 很 明顯 . +He lost a book . 他 弄 丟了 一本 書 . +He stole money from her wallet . 他 從 她 的 錢 包 偷 了 錢 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +My son is taller than I am . 我 兒子 比 我 高 . +His name is not on the list . 他 的 名字 不 在 名单 里 . +What is Tom is blood type ? 湯姆 的 血型 是 甚麼 ? +She is going to wash the bike this afternoon . 她 下午 会 洗 自行车 . +You must not stay in bed . 你 不能 待 在 床上 . +Why do you want to know what I am thinking ? 為 什麼 你 想 知道 我 在 想 什麼 ? +That is a bad day for me . 那天 我 不行 . +I made the decision by myself . 我 自己 做 了 决定 . +I give you my word . 我 向 你 保证 . +The hunters aimed at the elephant . 猎 人们 用 枪 瞄准 了 大象 . +She stooped to pick up a pebble . 她 撿 起 了 一塊 鵝 卵石 . +If you are not listening to the radio , turn it off . 要是 你 不 在 听 广播 的话 , 就 关掉 它 . +We were unable to make contact with them until it was too late . 我们 联系 上 他们 已经 为时已晚 . +It is nearly three o 'clock . 將近 三點 了 . +Do not let your feelings show . 不要 流露 你 的 感情 . +Tom was the last one off the bus . 湯姆 是 最 後 下 巴士 車 的 人 . +He is sitting at an empty table . 他 坐在 一张 空 桌旁 . +He carried a rifle on his shoulder . 他 把 步槍 背 在 他 的 肩上 . +He is an agreeable person . 他 是 个 好脾气 的 人 . +She took the book back to the library . 她 把 书 带回 了 图书馆 . +I 'd like your help . 我 想 請 你們 幫 個 忙 . +I planted a peach tree in my yard . 我 在 我 的 院子 里 种 了 棵 桃树 . +Tom was sick in bed last Sunday . 湯姆 上 週日 臥病 在 床 . +It is hard to maintain one is reputation . 維持 一個 人 的 聲譽 是 很 難 的 . +I will buy this . 我 要 買 這個 . +I met her on a certain winter day . 冬天 的 某日 , 遇到 了 她 . +The dog was hit by a car . 狗 被 車 撞 了 . +I put the money into the safe . 我 把 錢 放入 保險櫃 裡 . +Please wait for me at the entrance of the building . 请 在 建筑 的 入口处 等 我 . +We are good friends . 我們 是 好 朋友 . +It was not interesting at all . 一点 也 不好玩 . +I will bring it to you tomorrow . 我 明天 带给 你 . +How far away are we ? 我们 有 多 远 了 ? +The girl was afraid to jump down from the roof . 小女孩 害怕 从 屋顶 上 跳下来 . +I have absolute trust in you . 我 絕對 信任 你 . +He turned pale with fright . 他 嚇 得 臉色 發白 . +My home is far away . 我家 很远 . +You are the new secretary , are not you ? 您 是 新来 的 秘书 吧 , 不是 吗 ? +I will show you my room . 我 會 帶 你 看看 我 的 房間 . +Where is your house ? 你家 在 哪裡 ? +Do you happen to know his name ? 你 說 不定 知道 他 的 名字 ? +All that Jack does is sleep . 所有 傑克 做 的 事 就是 睡覺 . +I went into the navy . 我 加入 了 海軍 . +What a pity ! 多 遗憾 啊 ! +You do not need to hurry . 你 不必 著急 . +Mother Teresa was given the Nobel prize . 特蕾 莎 修女 被 授予 諾貝爾獎 . +I am too short . 我 太矮 了 . +Are you afraid of being fired ? 你 害怕 被 解雇 吗 ? +Let me have a try . 让 我 试试 . +He always plans a thing out carefully before he does it . 他 每件事 做 之前 都 會 細心 計劃 . +Are you sure that you want to go there ? 你 确定 你 要 去 那儿 吗 ? +He does not always come late . 他 不是 总来晚 . +You are taller than she is . 你們 比 她 高 . +If it had not been for your help , I could not have completed the work . 如果 不是 因为 有 你 的 帮助 , 我 不 可能 完成 了 这个 工作 . +This is Room 839 . 这 是 839 号 房间 . +She likes taking pictures . 她 喜欢 拍照片 . +I ordered several books from England . 我 从 英国 订 了 好几 本书 . +Tom wants to sit down . 汤姆 想 坐下 . +The dog saved the girl is life . 這 隻 狗 救 了 這 個 小女孩 的 命 . +My mother bought two bottles of orange juice . 我 母亲 买 了 两瓶 橙汁 . +I think you should do that before you go home today . 我 認為 你 該 在 今天 回家 前 做 . +What do you think I was doing before ? 你 觉得 我 之前 在 做 什么 ? +Turn on the radio . 打开 收音机 . +He took it literally . 他 按照 字面上 的 意思 . +Her hair is long and beautiful . 她 的 頭 髮 長 而 美 麗 . +We have to do our best . 我们 应该 做到 最好 . +Tom took out his key and opened the door . 汤姆 掏出 钥匙 开了门 . +He came at three in the afternoon . 他 在 下午 三點鐘 的 時候 來 了 . +I have two cars . 我 有 两辆车 . +May I play the piano ? 我 可以 彈 鋼琴 嗎 ? +I am free today . 我 今天 有空 . +Are you looking for something ? 您 在 找 什么 吗 ? +At first , I had no idea why . 起初 我 不 知道 為 什麼 . +Do not make noise when you eat soup . 當 你 喝 湯 的 時候 不要 發出 聲音 . +Do you have your driver is license ? 你 有 駕駛 執照 嗎 ? +We all fell asleep . 我们 都 睡着 了 . +It is so different now . 现在 真是 不 一样 了 . +Is there anything else you 'd like ? 还有 什么 想要 的 吗 ? +What do you want ? 你 想要 什么 ? +He had his hair cut short . 他 把 头发 剪短 了 . +Leaves begin to fall in October . 樹葉 在 十月 開始 掉落 下來 . +He is a good tennis player . 他 是 个 网球 高手 . +He has made a fortune through hard work . 他 通过 努力 挣 了 大笔 钱 . +Beware of the dog ! 小心 狗 ! +It will not take much time . 不 會 花 很多 時間 的 . +His mother did not want to do it . 他 的 母親 不想 做 . +I made him paint the house . 我 讓 他 刷 房子 . +Why did you say such a thing ? 你 為 什麼 說 了 這樣 的 事 ? +Please be ready in fifteen minutes . 请 在 15 分钟 内 准备 好 . +I was afraid I might be late . 我 怕 我 可能 遲 到 了 . +He tries . 他 来 试试 . +I can swim very fast . 我 游泳 可以 游得 很快 . +We went down a river by canoe . 我們 乘著 獨 木舟 向河 的 下游 而 行 . +Tom drank his orange juice . Tom 喝 了 他 的 柳橙汁 . +I will join you all later . 我 晚会 加入 你们 . +Turn the radio up a little . 把 收音 機 開 大聲 一點 . +Tom looks pale . 湯姆 看 起來 很 蒼白 . +Tom is miserly . 汤姆 很小 气 . +My father will come home at the end of this week . 我 爸爸 会 在 这 周末 回家 . +If you get sleepy , just tell me . 困 了 的话 就 说 哦 . +Tell me how he got it . 告诉 我 他 怎么弄 到 的 . +He likes to listen to the radio . 他 喜歡 聽 收音 機 . +Do you think I am made of money ? 你 以为 我 造钱 啊 ? +Are you coming next week ? 你 下週 來 嗎 ? +She gave me a watch . 她 給 了 我 一支 手 錶 . +Throw the ball back to me . 把 球 丟 還 給 我 . +Books are for people who wish they were somewhere else . 書 是 為了 那些 希望 自己 在 另 一個 地方 的 人 . +Close your eyes . 闭 上 你们 的 眼睛 . +They live on the other side of the road . 他們 住 在 路 對 面 . +How is everything at work ? 工作 怎么样 ? +Did you have a good time yesterday ? 你 昨天 玩 得 開心 嗎 ? +I heard Tom muttering something in French . 我 听到 汤姆 在 用 法语 嘀咕 些 什么 . +He did not get up early . 他 没有 早起 . +Is it far ? 遠 嗎 ? +No matter what happens , I am prepared . 不管 發生 什麼 事 , 我 都 準備 好 了 . +What do you think of Japanese food ? 你 覺得 日本料理 怎麼樣 ? +I know the truth . 我 知道 真相 . +Do not put the cart before the horse . 不要 把 馬車 放在 馬 的 前面 . +Ladies and gentlemen , due to an accident at the airport , our arrival will be delayed . 女士们 , 先生 们 , 由于 机场 的 意外 情况 , 我们 的 着陆 将 被 推迟 . +I want to buy a pair of pants . 我 想 買 條 褲子 . +Tom cleared his throat and continued to speak . 汤姆 咳嗽 了 一下 然后 接着 讲 . +How did you know that was my favorite one ? 你 怎麼 知道 那 是 我 最 喜歡 的 ? +I am an electrician . 我 是 一名 電工 . +Can you stay for a while ? 你 能待 一会 吗 ? +What type of food do you like ? 你 喜欢 什么样 的 食物 ? +We have not done well . 我们 没有 做好 . +They had their houses destroyed by a strong earthquake . 他們 的 房屋 被 強烈 地震 摧毀 了 . +A day without laughter is a day wasted . 没有 笑声 的 一天 肯定 是 最为 虚度 的 一天 . +I am not sure what is going on . 我 不 清楚 發生 了 甚麼 . +She will make him a good wife . 她 会 是 他 的 好 妻子 . +I could not afford to buy a bicycle . 我 买不起 自行车 . +You will succeed if you try . 如果 你 尝试 的话 , 你 会 成功 的 . +Please think about it . 請 你 考慮 考慮 . +I worked all this week . 这周 我 一直 在 工作 . +Let is find out who sent this to us . 讓 我們 查查 誰 送 給 我們 這個 . +He accepted my idea . 他 接受 了 我 的 主意 . +Look at me with your books closed . 把 你 的 書 閤 起 來 看 著 我 . +I have been busy since yesterday . 我 從 昨天 開始 一直 忙著 . +I want you to sleep on it . 我 想要 你 睡 在 它 上边 . +We will be in Boston for another three weeks . 我們 還 會 在 波士 頓待 三個 月 . +Thanks for telling me the truth . 感谢 告诉 我 真相 . +How much is the bus fare ? 公車 票價 多少 錢 ? +I do not think he will be able to do it by himself . 我 不 觉得 他 自己 一个 人会 做到 . +We will wait and see what happens . 我們 要 等等 看會 發生 甚麼 . +They should all be fired . 他們 全部 都 應該 被 開除 . +Please show me what to do next . 請 讓 我 看看 下 一步 該 做 什麼 . +I am curious . 我 很 好奇 . +The bell has not rung yet . 钟 还 没响 . +About how long will it take to get there by bus ? 搭 公車 到 那裡 大約要 花 多久 的 時間 ? +Tom will never see you again . 汤姆 永远 也 不会 见 你 了 . +I think that it is true . 我 認為 這 是 真的 . +What is the climate there like ? 那里 的 气候 怎么样 ? +I talked to him on the telephone yesterday night . 我 昨晚 跟 他 通电话 了 . +Keep your mouth shut and your eyes open . 闭嘴 看着 . +I would like to get married to someone like you . 我 想 跟 你 这样 的 人 结婚 . +She looks blue for some reason . 由于 某些 原因 , 她 看起来 很 忧伤 . +I may have made a mistake . 我 可能 搞错 了 . +My father insisted that I should go to see the place . 我 爸爸 坚持 要 我 去 那 地方 看看 . +My brother is a professor . 我 哥哥 是 教授 . +Next time it will be my turn to drive . 下次 该轮 到 我 开车 了 . +Tom did not deny he did that . 汤姆 没有 否认 他 做 的 事情 . +Tom thinks I am too young . 汤姆 认为 我 太 年轻 . +This bike needs to be repaired . 这辆 自行车 需要 修理 . +Let me show you around our house . 讓 我 帶 你 四處 看看 我們 的 房子 . +Gold is far heavier than water . 金子 比水 重得 多 . +We are going to do that right away . 我們 馬 上 就 去 做 . +Tom has written to me . 汤姆 写给 我 了 . +I do not think that he is right . 我 不 認為 他 是 對 的 . +Please wash it . 请 清洗 它 . +He went there ten years ago . 他 十年 前去 了 那 ‘ 里 . +Someone yelled for help . 有人 呼救 . +Do you trust her ? 你 相信 她 嗎 ? +I did not catch your last name . 我 没 听到 您 的 姓 . +This amount includes tax . 这个 价格 含 了 税 . +She is always at the bottom of the class . 她 总是 在 班上 拿 倒数 第一 . +I managed to repair my car by myself . 我 自己 搞定 , 修好 了 我 的 车 . +How was your summer vacation ? 暑假 過 得 如何 ? +My grandmother made me a new dress . 我 的 祖母 做 了 一套 新 衣服 給 我 . +Will it be much longer ? 還要 很 久 嗎 ? +Give it to me , please . 請 把 它 給 我 . +I found it by chance . 我 偶然 找到 了 它 . +Can you move this desk by yourself ? 你 能 自己 搬 這 張 桌子 嗎 ? +I bought her a watch . 我 買 了 一支 手 錶 給 她 . +It is a pity when somebody dies . 有人 死 了 的 时候 真是 遗憾 . +Tom does not like to discuss his work . 汤姆 不 喜欢 谈论 他 的 工作 . +We must observe the rules . 我们 必须 遵守规则 . +Do you like playing volleyball ? 你 喜歡 打 排球 嗎 ? +My mother washes clothes every day . 我 媽媽 每天 洗衣服 . +There is not a moment to waste . 一刻 也 不 浪費 . +The mouse ran into the hole . 這 隻 老鼠 跑 進 洞 裡 . +I understood everything Tom said . 我 明白 湯姆 所 說 的 一切 . +Do you know where Tom lives ? 你 知道 汤姆 住 哪儿 吗 ? +Tom wanted to follow in his father is footsteps . 汤姆 想 追随 他 父亲 的 脚步 . +You must build up your courage . 你 一定 要 鼓起勇气 . +How about something cold to drink ? 喝 點 冷 飲 怎樣 ? +I still do not think I am wrong . 我 還 是 不 認為 我 錯 了 . +Please divide the pizza into three parts . 請 把 披薩 分成 三份 . +I bathe every day . 我 每天 都 洗澡 . +Are they treated fairly ? 他们 受到 公正 对待 了 吗 ? +Which team do you think will win ? 你 覺得 哪 支球 隊會 贏 ? +I have had just about enough of her . 我 真的 受夠 了 她 . +May I go now ? 我 现在 能 去 了 吗 ? +The children slid down the bank . 孩子 們 滑下 岸邊 . +Give my love to your kids . 替 我 向 你 的 孩子 們 問 好 . +I had a feeling this might happen . 我 早就 有感 覺到 這 可能 會 發生 . +He told us such a funny story that we all laughed . 他 给 我们 讲 了 一个 有趣 的 故事 , 我们 都 笑了起来 . +I found this book interesting . 我 觉得 这 本书 很 有意思 . +I do not want to look stupid . 我 不想 看起 來 傻 . +I am not greedy . 我 不 貪婪 . +Spring is my favorite season . 春天 是 我 最 喜歡 的 季節 . +The girl playing the piano is my sister . 弹钢琴 的 女孩 是 我 妹妹 . +I want you to read this letter . 我 想 你 读 一下 这 封信 . +The service here is awful . 這裡 的 服務 很 糟糕 . +Is this your family ? 这 是 你 的 家人 吗 ? +He likes to build model planes . 他 喜歡 建造 模型 飛機 . +Tom is a good cook . 汤姆 是 个 好 厨师 . +My daughter loves jumping rope . 我 女兒 喜歡 跳 繩 . +I must hand in the report today . 我 今天 必須 交報 告 . +History is not his major subject . 历史 不是 他 的 主修 课 . +Am I allowed to use this ? 能 让 我 用 这个 吗 ? +He is afraid of the dog . 他 怕 那 只 狗 . +Your pen is better than mine . 你 的 笔 比 我 的 好 . +I am sorry , I left my homework at home . 抱歉 , 我 把 作业 落 在 家里 了 . +This has nothing to do with me . 此事 与我无关 . +He should have bought a used car . 他 應 該 買 一輛 二手 車 的 . +Are you free tomorrow afternoon ? 你 明天 下午 有空 吗 ? +I asked Tom to close the door . 我 要求 湯姆 關門 . +The carpenter brought his tools along . 木匠 带著 他 的 工具 . +She was out of Japan last year . 去年 她 离开 了 日本 . +I know everything that you have done . 我 知道 你 做 的 所有 事 . +Africa is a continent , but Greenland is not . 非洲 是 一個 大陸 , 而 格陵蘭 不是 . +Dead men tell no tales . 死 人 不 會 告密 . +There is little water in the pond . 這個 池塘 裡 的 水 很少 . +That actually makes a lot of sense . 那个 相当 能 说 得 通 . +Did you miss me ? 你 想 我 了 ? +She looked sad . 她 看上去 很 伤心 . +She was very surprised at the news . 她 对 那个 消息 非常 惊讶 . +I ran into Mary at a party last week . 上星期 在 一次 派 對 中 我 遇到 了 瑪麗 . +Kuala Lumpur is worth visiting . 吉隆坡 值得 一 遊 . +Frankly speaking , he is wrong . 坦率地 说 , 他 错 了 . +A hundred people were hurt in a train wreck . 一百多个 人 在 一个 火车 事故 中 受了伤 . +People in the United States speak English . 在 美國 的 人 說 英語 . +Ask him if he will attend the meeting . 问 他 会 不会 来 参加 会议 . +There is a clock on the wall . 牆 壁上 掛著 一個 時鐘 . +I do not have much time . 我 时间 不多 . +He is not very good at mathematics . 他 不是 很 擅長 數學 . +I like jogging . 我 喜欢 跑步 . +Are you done ? 你 做好 了 嗎 ? +Tom is good , but not good enough . 汤姆 好 , 但 不够 好 . +How tall are you ? 你 多 高 ? +Beethoven was a great musician . 貝多芬 是 一個 偉大 的 音樂家 . +I am used to staying up late . 我 习惯 晚睡 . +She goes to night school . 她 上 夜校 . +He already knew about it . 他 已经 意识 到 它 了 . +I do not know anything about him . 我 不 知道 任何 有關 他 的 事 . +I love elderberry juice . 我 愛 接骨木 果汁 . +I was not aware that Tom was sick . 我 還 不 知道 湯姆 生了病 . +Languages are not his forte . 语言 不是 他 的 强项 . +Do you like school ? 您 喜歡 學校 嗎 ? +He is sometimes absent from school . 他 偶爾 逃學 . +I want to go home . 我 要 回家 . +You should prepare for the worst . 你 应该 作 最 坏 的 准备 . +What will you have ? 你 将 拥有 什么 ? +When will you leave ? 你 什麼 時候 離開 ? +Would you like me to explain it ? 你 要 我 解釋 一下 嗎 ? +I am afraid you have the wrong number . 我 恐怕 您 打错 电话 了 . +We bought some vegetables and fish at the market . 我们 在 市场 上买 了 些 蔬菜 和 鱼 . +I want to go abroad next year . 我 明年 想去 國外 . +We missed you . 我們 想 你 . +Will you play tennis after school ? 你 放學 後 會 去 打 網球 嗎 ? +Please wait on him first . 請 先 等 他 . +The children go to school in the morning . 孩子 们 早上 去 学校 . +It is an easy victory . 這 是 一個 輕 鬆 取得 的 勝利 . +You can go or stay , as you wish . 你 走 或 留 , 随 你 高兴 . +Fish is sold by the pound here . 魚 在 這裡 是 以 磅 為 單位 來 出售 . +He made a journey around the world . 他 環遊 世界 旅行 . +Do not play in the road . 別 在 馬 路上 玩 . +We can not escape . 我們 逃不出 去 . +When do you eat dinner ? 你 几点 吃 的 晚饭 ? +I always try to tell the truth . 我 總是 試著 說實話 . +I saw five men . 我 看到 了 五個 男人 . +Tom goes for a walk every morning . Tom 每天 早上 去 散步 . +Are you crying ? 你 在 哭 嗎 ? +I want to go to Africa someday . 有 一天 我 要 去 非洲 . +Have you ever been hit by a car ? 你 被车撞 过 吗 ? +I could hear birds singing outside my window . 我 能 听见 鸟 在 窗外 歌唱 . +There were not any roses in the garden . 花園 裡 沒有 任何 玫瑰 . +Let me know when you need me again . 再 需要 我 就 告诉 我 . +Could you tell me ? 您 会 告诉 我 吗 ? +Come again next week . 下周 再來 . +I have decided to go a little further . 我 准备 再 前进 一点 . +Tom told Mary she could not do that . 湯姆 告訴 瑪麗 她 不能 做 那件事 . +How complex is it ? 它 有多 複 雜 ? +No matter what happens , I am not changing my mind . 無論 如何 , 我 不 會 改變 我 的 想法 . +You did not need to hurry . 你 不 需要 著急 . +He sat on the bench . 他 坐在 長 凳 上 . +I had a long talk with her . 我 和 她 有 一段 長 談 . +My dream is to become a teacher . 我 的 夢 想 是 成為 一名 教師 . +Why are you just sitting there ? 你 为什么 就 站 在 这里 ? +Why worry about Tom ? 為 什麼 要 擔心 Tom ? +Where is the ticket window ? 售票 窗口 在 哪裡 ? +Where are my books ? 我 的 書 在 哪 ? +I believe you . 我 相信 你 . +My grandfather usually eats breakfast at six . 我 的 祖父 通常 在 六點鐘 吃 早餐 . +My right hand is numb . 我 的 右手 麻 了 . +We hope you will enjoy the show . 我們 希望 你 喜歡 這個 表演 . +We were granted the privilege of fishing in this bay . 我们 得到 了 在 这个 海湾 内 捕鱼 的 特权 . +He is out taking a walk . 他 出去 散步 . +I think that Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +The ambulances carried the injured to the nearest hospital . 救护车 把 伤者 送往 了 最近 的 医院 . +The legal system in America is the world is finest . 美國 的 司法制度 是 世界 上 最好 的 . +They wanted a wedding picture in front of the Eiffel Tower . 他們 想 在 艾菲爾 鐵塔 前面 拍張 結 婚照 . +I do not think I like this game very much . 我 觉得 我 不 太 喜欢 这 游戏 . +Are you still winning ? 你 還 在 贏 嗎 ? +I know you are not comfortable . 我 知道 你 不 舒服 . +His lectures are very long . 他 的 講座 很 長 . +It is too large . 它 太 大 了 . +How come you did not say anything ? 你 為 什麼 都 不 說 話 ? +Try it . 试试 吧 . +Let is leave the decision to Tom . 讓 我們 留給 他 作 決定 . +This is the worst movie I have ever seen . 这 是 我 看过 的 最 差劲 的 电影 了 . +The leaves will turn red in two or three weeks . 再 过 两 三周 , 树叶 就 会 变 红 吧 . +It is my CD , is not it ? 這 是 我 的 CD , 不是 嗎 ? +He leaves for China tomorrow . 他 明天 出发 去 中国 . +You are really beautiful . 你 真的 很漂亮 . +I do not want to hear about it again . 我 不想 再 聽到 這事 . +I do not think that he is sincere . 我 不 觉得 他 很 诚实 . +What time do you open ? 你们 什么 时候 开始 营业 ? +How many people can do that ? 有 多少 人 能 做 ? +Tom avoids Mary whenever possible . 湯姆 盡量 避開 瑪麗 . +Mary is very cute . 玛丽 非常 可爱 . +Tom will try and stop me for sure . 汤姆 一定 会试 着 阻挡 我 . +A lot of soldiers were killed here . 許多 士兵 在 這裡 陣亡 . +She played a tune on the piano . 她 在 鋼琴 上彈 了 一首 曲子 . +Are you allergic to any medicine ? 你 對 任何 藥物 過 敏 嗎 ? +Give me my beer . 把 我 的 啤酒 給 我 . +I remember writing to her . 我 记得 给 她 写过信 . +Do not be afraid to make mistakes when speaking English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +An apple sits on the table . 桌上 有个 苹果 . +I do not want to go to Tom is birthday party . 我 不想 去 汤姆 的 聚会 . +You are good . 你 很 好 . +Tom sells T @-@ shirts at a 30 percent discount . 汤姆 以 七折 销售 T恤 . +What is the weight of your suitcase ? 你 的 行李 多重 ? +He is not an American . 他 不是 美国 人 . +I am glad that I did not buy something like this . 我 很 高兴 没有 买 这样 的 东西 . +I will phone you every night . 我 每晚 都 給 你 打 電話 . +The bird was covered with white feathers . 鸟儿 身上 铺满 了 白色 的 羽毛 . +I had my wallet stolen . 我 的 钱包 被 偷 了 . +Does the letter need to be written in English ? 這 封信 需要 用 英文 寫 嗎 ? +Please feed the dog every day . 请 每天 喂 一下 狗 . +That is no big deal . 那 没什么 大不了 的 . +I think you should leave as soon as you can . 我 觉得 你 应该 赶紧 走 . +He is a very imaginative writer . 他 是 非常 有 想像力 的 作家 . +I have to study for the test . 我 必須 讀書 準備 考試 . +He was busy with his homework . 他 忙 於 做功 課 . +To tell you the truth , this is a little too spicy for me . 说实话 , 这 对 我 来说 有点 太 辣 了 . +My mother made me a sweater . 我 媽媽 為 我 做 了 一件 毛衣 . +Tell me your story . I am all ears . 告訴 我 你 的 故事 . 我 會 注意 聽 . +He committed suicide . 他 自杀 了 . +This one is still alive . 這 一個 還 活著 . +Your plan requires a large amount of money . 你 的 计划 需要 一大笔钱 . +Call me if you need anything . 需要 什么 就 给 我 打电话 . +The wind is cold today . 今天 刮 冷风 . +Why did you get up so early ? 你 為 什麼 這麼 早起 ? +The train arrived on schedule . 火车 准时 到 了 . +People should understand that the world is changing . 人 应该 明白 世界 在 变 . +I wish I could figure out how to disable comments on my blog . 但愿 我 能 找到 在 我 的 博客 上 屏蔽 评论 的 办法 . +They are discussing the problem . 他們 正在 討論 這個 問題 . +He is an old friend of mine . 他 是 我 的 一位 老朋友 . +Tom is the only boy in our class . 湯姆 是 我們 班裡 唯一 的 男孩 . +You have made a mistake . 你 犯 了 个 错误 . +Do you like pirate movies ? 你 喜欢 盗版 电影 吗 ? +I know people think I am odd . 我 知道 人們 認為 我 古怪 . +He took the wrong bus by mistake . 他 搭错 了车 . +Furniture made of good materials sells well . 用 优质 材料 做 的 家具 卖 得 很 好 . +I did not really feel like going out . 我 不是 很 想 出去 . +Who were they talking about ? 他们 在 讨论 谁 ? +She greeted him waving her hand . 她 揮著 手 向 他 打招呼 . +Was this letter written by Mary ? 这 封信 是 玛丽 写 的 吗 ? +This decision is final . 这 是 最终 决定 . +I hope that you give this book a read . 我 希望 你 讀讀 這 本書 . +He has his own room . 他 有 自己 的 房间 . +He visited her house the other day . 他 前 幾天 拜訪 了 她家 . +Money makes the world go round . 金钱万能 . +Are you going to visit any other countries ? 你 会 去 访问 其他 国家 吗 ? +I got this bicycle for nothing . 我 免費 得到 這輛 自行 車 . +Do you really believe in ghosts ? 你 真的 相信 鬼 嗎 ? +There is no fire without smoke . 沒有 不 冒 煙 的 火 . +Terrific ! 很棒 ! +I am sorry for the late response . 我 很 抱歉 回复 晚 了 . +You should make notes . 你 应该 做 笔记 . +If it is raining tomorrow , we will go there by car . 如果 明天 下雨 , 我们 就 坐车去 那儿 . +I suspect they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +He plays golf every weekend . 他 每個 週末 打 高爾夫 球 . +There are fifty members in this club . 这个 俱乐部 里 有 50 个 会员 . +I prefer cats to dogs . 與 狗 相比 , 我 更 喜歡 貓 . +This is a good book , but that one is better . 這 是 本 好 書 , 但 那 本 更好 . +Is everything going OK at work ? 工作 一切顺利 吗 ? +He came to Tokyo at the age of three . 他 三岁 就 到 东京 了 . +How far is it to the airport ? 到 机场 有 多 远 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 很 難 使用 的 弓 . +Is that true ? 真的 ? +I just wanted somebody to help me . 我 只是 想 有 个人 来 帮助 我 . +This boat has six oars . 這 艘 船 有 六個 槳 . +He said he was tired , so he would go home early . 他 说 他 累 了 , 所以 他 想 早点 回家 . +I am sick of eating fast food . 我 受够 吃快餐 了 . +It is possible that you do not know this . 你 有 可能 不 知道 这事 . +It is very hot in this room . 這間 房裡 很 熱 . +English has now become the common language of several nations in the world . 英语 现已 成为 世界 上 许多 国家 的 通用 语言 了 . +You know as well as I do that Tom hates Mary . 你 我 都 知道 湯姆 恨 瑪麗 . +He is not here yet . 他 還 沒到 這裡 . +Go on home . 回家吧 . +I thought that Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +I will give you a ride . 我 會 載 你 一程 . +How about some more roast beef ? 再 多一些 烤牛肉 怎麼樣 ? +The firemen soon put out the fire . 消防 隊員 很快 就 把 火 撲 滅 了 . +I do not know where you want to go . 我 不 知道 你 要 去 哪 . +It is a piece of cake . 小菜一碟 . +To my surprise , he easily came up with a plan . 令 我 吃惊 的 是 , 他 很 容易 就 想出 了 一个 方案 . +I admit that he is right . 我 承认 他 是 对 的 . +When will that new school open ? 那 是 新 学校 什么 时候 开学 ? +Here is a photograph of my family . 這裡 有 一張 我 全家 的 照片 . +He finally became the president of IBM . 他 終 於 成 了 IBM 的 總 經理 . +Is it OK for me to come in now ? 我 现在 进来 方便 么 ? +We happened to get on the same bus . 我们 恰巧 上 了 同 一辆 公交车 . +Let me think about it . 让 我 想一想 . +Comb your hair before you go out . 在 你 出門 之前 , 把 你 的 頭 髮 梳 一 梳 . +For the time being , my sister is an assistant in a supermarket . 目前 , 我 妹妹 在 一家 超市 当 收银员 . +He takes a walk every morning . 他 每天 早上 都 散步 . +Sammy Davis was an excellent singer . 山米 戴維斯 是 一個 優秀 的 歌手 . +Leave me . 让 我 一个 人 呆 会儿 . +I think I made a mistake . 我 认为 我 犯 了 个 错 . +Students generally like a teacher who understands their problems . 通常 学生 们 喜欢 理解 他们 问题 的 老师 . +I did not get the joke . 我 没 明白 那个 笑话 . +There was a minute of silence and then everybody started screaming . 有 一分钟 的 沉默 , 然后 每个 人 都 开始 尖叫 . +I had a neighbor who was blind . 我 有個 盲鄰 居 . +It happened a long time ago . 这 事 发生 在 很多年 以前 . +Our refrigerator is not working . 我們 的 冰箱 壞 了 . +If he is innocent , then his wife is guilty . 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +Wo not you have some coffee ? 你 不要 點 咖啡 嗎 ? +I bought two loaves of bread . 我 買 了兩條 麵 包 . +I know who likes Tom . 我 知道 谁 喜欢 汤姆 . +No matter how hard I try , I can not do it any better than she can . 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Let me know . 讓 我 知道 . +Tom might be a vegetarian . 湯姆 可能 是 素食者 . +Almost all the students like English . 幾乎 所有 的 學生 喜歡 英語 . +Tom should be fired . 湯姆 應 該 要 被 開除 . +She complained about my low salary . 她 抱怨 我 的 工資 低 . +I saw five men . 我 看见 五个 男人 . +I will not stay here for long . 我 不会 在 这里 呆 很久 . +I wish I could go . 我 希望 我 可以 去 . +Thank you all the same . 同样 感谢 你 . +You should know it . 你 應該 知道 的 . +I always walk to school . 我 總 是 走路 到 學校 . +I waited an hour for my friend . 我 等 我 的 一个 朋友 等 了 一 小时 . +It looks like Tom will do what we have asked him to do . 看來 湯姆會 按 我們 要求 的 去 做 . +I feel like getting some fresh air . 我 想要 呼吸 一些 新鮮 空氣 . +He has three brothers . 他 有 三名 兄长 . +I do not agree with you on this point . 这 一点 我 不 赞成 你 . +The game ended at nine o 'clock . 比賽 在 九點鐘 結束 . +I will miss you when you are gone . 你 走 後 , 我 會 想念 你 的 . +Could you do it ? 你 能 做到 嗎 ? +I advise you to give up drinking . 我 勸 你 戒酒 . +Tom bought a ticket . 汤姆 买 了 张 票 . +I go to church every day . 我 每天 上 教堂 . +It looks like an apple . 看起来 像 个 苹果 . +Why do I have to do that ? 我 为什么 一定 要 那么 做 ? +I am waiting for you to finish your homework . 我 等 你 把 作業 做 完 . +He was arrested for drunken driving . 他 因 酒 後 駕駛 而 被捕 . +I need glue . 我 需要 胶水 . +You are drunk . 你 喝醉 了 ! +You have to come with me . 你 必須 跟 我 來 . +The camera will cost at least $ 500 . 這 台 相機 至少 要 花費 500 美元 . +I am sorry , but I really have to go . 我 很 抱歉 , 但 我 必須 走 了 . +Not a day passes without traffic accidents . 交通事故 没有 一天 是 不 在 发生 的 . +Can you tell me where the nearest antique shop is ? 你 能 告诉 我 最近 的 古玩店 在 哪里 吗 ? +It is cool this morning , is not it ? 今天上午 很 涼爽 , 不是 嗎 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 不 稱手 的 弓 . +She may have missed the 7 : 00 train . 她 可能 錯 過 了 七點 的 火車 . +We know everything . 我们 什么 都 知道 . +My father went fishing . 我 父親 去 釣魚 了 . +How long have you been in Japan ? 你 去 了 日本 多久 ? +Would you close the window ? 請 您 把 窗戶 關起 來 好 嗎 ? +Ten houses were burned down . 十間 房屋 被 燒毀 了 . +Bear his advice in mind . 牢 記 他 的 建議 . +Tom looks a bit sick . 湯姆 看來 有 點 不適 . +That man died of lung cancer a week ago . 那个 男人 在 一周 前 死于 肺癌 . +I refuse to be treated like a child . 我 拒绝 被 像 一个 孩子 般 对待 . +How is your work coming along ? 你 的 工作 進行 得 怎麼樣 ? +We sometimes see them . 我們 有 時會 看見 他們 . +Tom is a lot younger than Mary is . 汤姆 比 玛丽 年轻 许多 . +All plants need water and light . 所有 的 植物 都 需要 陽光 和 水 . +Tom saw the exhibits . 汤姆 看 了 展览会 . +He called me a cab . 他 替 我 叫 了 一部 計程 車 . +She recognized the brooch as the one she had lost a few months before . 她 认出 那 枚 胸针 是 她 几个 月 前 丢失 的 . +Swimming makes your legs stronger . 游泳 使 腿部 强健 . +When it stops raining , let is go for a walk . 等 雨 停 了 , 我们 去 散步 吧 . +He was laughed at by his friends . 他 被 他 的 朋友 嘲笑 了 . +Tom lived in Japan for ten years . 湯姆 住 在 日本 十年 了 . +After you have read it , give the book back to me . 在 你 讀 完 後 , 把 書 還 給 我 . +Tom used to live near Mary . 汤姆 以前 跟 玛丽 住 得 近 . +They give good service at that restaurant . 那家 餐館 提供 良好 的 服務 . +All we need is water . 我们 需要 的 只有 水 . +I wonder if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +I have nothing to complain about . 我 沒有 什麼 可 抱怨 的 . +I did not know where it came from . 我 不 知道 它 是从 哪里 来 的 . +There is something in your hair . 你 头发 上 粘着 什么 东西 . +He is eligible for the presidency . 他 有 資格 當選 總統 . +She carried that habit to her grave . 她 到 死 都 改不了 那個 習慣 . +I do not think that it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +Where can we make a phone call ? 我們 能 在 哪裡 打 電話 ? +I talked to her . 我 跟 她 谈 了 话 . +I do not think that this is a good idea . 我 觉得 这 主意 不行 . +I do not care for eggs . 我 不 喜欢 鸡蛋 . +I played catch with my father . 我 和 我 爸爸 玩 接球 . +We were surprised to hear the news . 我們 聽到 這個 消息 很 驚訝 . +The snow was knee deep . 積 雪深 及 膝蓋 . +All this is new to me . 这 对 我 来说 全 是 新 的 . +We took turns driving . 我們 輪流 開車 . +She has the large house to herself . 她 給 自己 一間 大房子 . +You are the only person I can trust . 你 是 我 唯一 可以 信任 的 人 . +Do you know Tom is address ? 你 有 汤姆 的 住址 吗 ? +Have you seen my glasses anywhere ? 你 曾 在 哪裡 看到 過 我 的 眼鏡 嗎 ? +No one was late . 没有 人 迟到 . +She went to the hospital by taxi . 她 搭計 程車 去 醫院 了 . +Please show me your bag . 請 讓 我 看看 你 的 袋子 . +Are you writing a letter ? 你 在 写信 吗 ? +He seldom comes to see me . 他 很少 来看 我 . +He is always a little irritable in the morning . 他 早上 总是 有点 脾气 暴躁 . +There is no more salt . 沒有 再 多 的 鹽 了 . +This is a present for you . 這 是 給 你 的 禮物 . +Tom would not dare show his face around here again . 汤姆 不敢 再 到 这里 露面 . +In Esperanto there are only 16 grammar rules . 世界 語 只有 16 個 語法 規則 . +What are your thoughts on this ? 你 觉得 这个 怎么样 ? +It is better to teach someone how to fish than to give someone a fish . 授 之 以 鱼 , 不如 授 之 以 渔 . +I feel a whole lot better today . 我 今天 感觉 好多 了 . +My dream is to become a pilot . 我 的 梦想 是 成为 一名 飞行员 . +The company suffered a loss of one billion yen last year . 那 家 公司 去年 亏损 了 10 亿日元 . +Do not ever touch my things again . 不要 再 碰 我 的 东西 . +I did not know he drank so much . 我 不 知道 他 喝 那么 多 酒 . +I retired last year . 我 去年 退休 了 . +The room has a seating capacity of 200 . 这个 房间 能 容纳 200 人 . +Can you guess how old I am ? 你 能 猜到 我 的 年龄 吗 ? +It is a basic human right . 它 是 基本 人权 . +The fox and the bear lived together . 這 隻 狐狸 和 這 隻 熊 一起 生活 了 . +It is still too early to get up . 時間 還 早 不必 這麼 早 起床 . +There are fifty states in the United States . 美国 有 50 个 州 . +I will call you tomorrow . 明天 我 給 你 打 電話 . +Who is in charge of the office while the boss is away ? 在 主任 不在 的 时候 , 办公室 由谁来 负责 ? +The stars are shining very brightly in the sky tonight . 今晚 的 夜空 星光 非常 明亮 . +They must have had an accident . 他們 一定 發生 了 意外 . +A good many people have told me to take a holiday . 很多 人 都 跟 我 說 要 我 休假 . +I kept on singing . 我 继续 唱歌 . +Tom loves to sing . 湯姆愛 唱歌 . +There is a path through the wood . 有 一個 穿 過 樹林 的 小路 . +That is my younger sister is photograph . 那 是 我 妹妹 的 照片 . +I heard him go down the stairs . 我 聽見 了 他 下樓 . +In Japan , the new school year begins in April . 日本 的 新學 年 在 四月 開始 . +What made her do so ? 为什么 她 要 做 这种 事情 呢 ? +Tom should be happy . 汤姆 应该 高兴 . +Those are my trousers . 那些 都 是 我 的 褲子 . +Tom does not want our help . 湯姆 不想 讓 我們 幫忙 . +He was standing behind the door . 他 站 在 門 後 . +Bern is the capital of Switzerland . 伯恩 是 瑞士 首都 . +How long did it take to do that ? 你 做 那事 用 了 多久 ? +Helen Keller was blind , deaf and dumb . 海倫 凱勒 眼盲 , 耳聾 , 又 啞 . +I am going to change my clothes . 我 要 去 换衣服 . +She considered his offer carefully . 她 仔细 考虑 了 他 的 提议 . +That is what I always say . 那 是 我 經常 說 的 . +I will come and see you one of these days . 这些 天 我会 抽 一天 来看 你 的 . +I guess you are right . 我 猜 你 是 對 的 . +Preventive measures are much more effective than the actual treatment . 预防措施 比 真正 的 治疗 更 有效 . +Many of the immigrants changed their names . 许多 移民 改 了 名字 . +Did anybody ask you to come here ? 有人 叫 你 來 這 嗎 ? +He mistook me for an Englishman . 他 誤以 為 我 是 一個 英國 人 . +How much is this watch ? 这 只 表 多少 钱 ? +No way ! 没门 ! +This rug is handmade . 这块 地毯 是 手工 制作 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +Mary is very cute , is not she ? 马力 很 可爱 , 不是 么 ? +Tom went there to learn French . 汤姆 去 那里 学法语 . +My brother and I are in the same class . 我 的 兄弟 和 我 在 一个 班级 . +How many Chinese characters can you write ? 你 會 寫 多少 漢字 ? +Tom has no one to turn to for help . 汤姆 没有 能 求助 的 人 . +They settled in Canada . 他们 在 加拿大 安家落户 . +I never played golf . 我 从没 玩 过 高尔夫 . +Taiwanese food is milder than Indian food . 台灣 菜 比 印度 菜 口味淡 . +Maternal love is greater than anything else . 母爱 比 任何 别的 东西 都 伟大 . +You should think before you speak . 你 在 说话 前 应该 先 思考 . +Here goes nothing . 毫無 希望 , 白費 心思 . +In Japan , it rains quite a bit during our rainy season which is from mid @-@ June until mid @-@ July . 在 日本 , 在 我们 的 雨季 常常 下雨 , 雨季 一般 在 六月 中旬 至 七月 中旬 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +I do not think Tom is serious . 我 不 覺得 湯姆 是 認 真的 . +You are irresistible . 你 是 不可 抗拒 的 . +He likes tea . 他 喜歡 茶 . +There is no reason to get angry . 沒有 生气 的 理由 . +God bless America . 上帝保佑 美国 . +He acknowledged his faults . 他 得知 了 他 的 错误 . +Can we speak in the hall ? 我們 能 在 走廊 裡 說 話 嗎 ? +It became quiet again in the forest . 森林 裡 又 再 變 得 安靜 下來 了 . +She is only a child . 她 只是 個 孩子 . +Tom carried the chairs to the next room . 汤姆 把 椅子 拿到 了下 个 房间 . +May I come in ? 我 可以 進來 嗎 ? +You have given me good advice . 你 給 了 我 很 好 的 建議 . +Tom bought a mobile phone . 汤姆 买 了 个 手机 . +A dolphin is a mammal . 海豚 是 哺乳 動物 . +Have you found your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Tom knows a lot of stuff about Mary . 汤姆 知道 玛丽 的 很多 事 . +This is my first time . 這 是 我 的 第一次 . +We will leave as soon as you are ready . 你 一 准备 好 , 我们 就 走 . +Tom wanted to be a better teacher . 汤姆 想 做 个 更好 的 教师 . +They forced me out . 他们 迫使 我 出来 . +I lent my friend some money . 我 借给 了 朋友 一些 钱 . +Do you smoke ? 您 吸烟 吗 ? +You are lying . 你 在 撒谎 . +Do you have medical insurance ? 你 有 醫療 保險 嗎 ? +Do I have to answer all of the questions ? 我 需要 回答 所有 問題 嗎 ? +It is been an amazing experience . 这 是 奇妙 的 体验 . +Tom died in an accident . 湯姆 在 一場 意外 中 喪生 . +So , what will you give me ? 那 你 会 给 我 什么 ? +Do not let this information leak out . 不要 让 这些 信息 泄露 出去 . +To tell the truth , I do not agree with you . 实话 说 , 我 不 赞成 你 . +I do not have a cat . 我 没有 猫 . +It is about the size of an egg . 它 的 大小 就 像 雞 蛋 . +I remember seeing her somewhere . 我 記得 在 哪兒 見 過 她 . +Tom applied for the job . 湯姆申 請 了 這份 工作 . +I gather that they will agree with us . 我 猜想 他們 會 同意 我們 的 . +She got out of the car . 她 下 了 車 . +May I have a bus schedule ? 我 可以 有 張 公車 的 時刻 表嗎 ? +I am interested in sports . 我 对 运动 感兴趣 . +Iceland belonged to Denmark . 冰岛 曾 属于 丹麦 . +She will be glad if you go to see her in person . 如果 你 單獨 去 看 她 , 她 會 很 高興 的 . +I arrived at the village before dark . 我 天黑 之前 到达 了 村庄 . +They are 30 minutes behind schedule . 他們 的 進度 較 預期 慢 30 分鐘 . +It is hot today , is not it ? 今天 很 熱 , 不是 嗎 ? +You should talk directly to Tom . 你 应该 直接 跟 汤姆 说 . +The teacher gave us homework . 老师 给 我们 布置 了 家庭作业 . +After winning the Nobel prize , she remained as modest as ever . 獲得 諾貝爾獎 後 , 她 仍 謙虛 如昔 . +It is very uncomfortable . 它 真是 不 舒服 . +I felt hungry after the long walk . 長途 步行 後 我 覺得 餓 了 . +Like a good wine , he improves with age . 就 像 上 好 的 红酒 一样 , 他 随着 年龄 的 增长 变得 越来越 好 . +The room was illuminated with red lights . 這個 房間 被 紅色 的 燈 照亮 了 . +Tom would accept . 湯姆會 接受 . +It is our job to help you . 帮助 你 是 我们 的 工作 . +You have never had a girlfriend , have you ? 你 从 没有 女朋友 , 不是 么 ? +I will boil the potatoes for you . 我 為 你 煮 馬鈴薯 . +He wishes he had gone to the theater last night . 昨晚 他 希望 他 去 了 剧场 . +I think you should see a doctor . 我 覺得 你 應 該 去 看 醫生 . +I love my yellow sweater . 我 很 喜欢 我 的 黄色 套衫 . +The monkey fell from the tree . 猴子 從 樹上 掉 了 下來 . +Astronomy deals with the stars and planets . 天文 學 涉及 恆星 和 行星 . +Do you hear what I am saying ? 你 在 听 我 说 吗 ? +Will you marry me ? 你 愿意 嫁给 我 吗 ? +She smiled at her baby . 她 對著 她 的 孩子 微笑 . +The telephone operator asked the caller to hold on until a connection was made . 电话 运营商 提示 来电 人 等候 接通 . +I am not frightened of anything . 我 不 害怕 任何 東西 . +Your glasses fell on the floor . 你 的 眼镜 掉 在 地上 了 . +I often look up words in that dictionary . 我 经常 用 那 本词典 找 单词 . +He lived to be seventy years old . 他 活到 了 70 歲 . +She was obliged to marry the old man . 她 不得不 和 这个 老 男人 结婚 . +I wish that she would stop smoking . 我 希望 她 戒 煙 . +English is a means of communication . 英語 是 一種 溝通 的 手段 . +Tom has been spending time with Mary . 汤姆 在 玛丽 身上 花 时间 . +I 'd like an orange juice . 我 想要 一杯 柳橙汁 . +If you get sleepy , tell me . 困 了 的话 就 说 哦 . +Tomorrow is Mother is Day . 明天 是 母 親節 . +Why did you stay ? 你 为什么 留下 ? +They welcomed me warmly , so I felt at home . 他们 这么 热情 的 欢迎 我 , 让 我 感觉 家人 一样 . +Come and see me at eleven o 'clock . 您 十一点 时 来看 我 吧 . +He was just on the verge of going to sleep . 他 快要 睡 了 . +He was appointed ambassador to Britain . 他 被 任命 為 駐 英國 大使 . +Tell me about some of the places you have visited . 给 我 说 说 你 去过 的 一些 地方 . +I am not well . 我 身体 不适 . +There is a library in every city in America . 美国 的 每个 城市 都 有 一个 图书馆 . +Are you going to sing ? 你 要 唱歌 嗎 ? +I wonder if he will come tonight . 我 不 知道 他 今晚 會 不 會 來 . +Has Tom come back already ? 汤姆 已经 回来 了 吗 ? +The old man got off the bus . 這位 老人 下 了 公車 . +What do you want for breakfast ? 你 早餐 想要 吃 什麼 ? +The boy made his parents happy . 這個 男孩 讓 他 的 父母 高興 . +Can I go swimming this afternoon ? 我 今天下午 可以 去 游泳 嗎 ? +The cup is on the table . 杯子 在 桌上 . +I wish that I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +Your dog is here . 你 的 狗 在 這 . +Tom still does not know the truth . 汤姆 还是 不 知道 真相 . +Did you make that mistake on purpose ? 你 故意 犯 那個 錯 的 嗎 ? +She came into the room . 她 进 了 房间 . +Everybody is immune to smallpox nowadays . 現今 每個 人 都 對 天花 免疫 了 . +I do not remember . 我 不 記得 了 . +I am cold . 我 冷 . +Everybody knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +A parrot can mimic a person is voice . 鸚鵡會 模仿 人 的 聲音 . +Monkeys can learn a lot of tricks . 猴子 能學會 很多 把 戲 . +I am looking forward to hearing from you . 我 期待 收到 您 的 來信 . +His words surprised me . 他 的 話 讓 我 吃 驚 . +How interesting ! 多么 有趣 啊 ! +I need a raise . 我 需要 加薪 . +He is the manager of the marketing department . 他 是 营销部 的 负责人 . +He is flying to Paris tomorrow . 他 明天 將 飛往 巴黎 . +He never gave up hope that he would reach that goal . 他 從 沒 放棄 達成 那個 目標 的 希望 . +Not everyone can be a poet . 不是 每個 人 都 能 成為 詩人 . +Please answer this question for me . 請 回答 我 這個 問題 . +She turned a page of her book . 她 翻 了 一页 书 . +Stop staring . 别 再 盯 着 了 . +Tom likes to sit on the floor . 汤姆 喜欢 坐在 地上 . +Did I say something I should not have ? 我 說 了 什麼 我 不 應 該 說 的 嗎 ? +He crashed his car because someone tampered with the brakes . 他 撞车 是因为 有人 在 刹车 上 做 了 手脚 . +Yesterday I met Mary on the street . 昨天 我 在 街上 遇見 了 瑪麗 . +I plan to buy him a pen . 我 打算 給 他 買 一支 鋼筆 . +How much does a kilo of bananas cost ? 一 公斤 香蕉 多少 錢 ? +Do not be afraid to make mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +That coat may have cost a lot of money , but it is worth it . 那 大衣 可能 花 了 很多 錢 , 但 它 值得 . +Did you see the eclipse yesterday ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +Water is important for people . 水 對 人 是 很 重要 的 . +Could you keep this luggage until 3 p.m. ? 你 可以 保管 這個 行李 直到 下午 三點 嗎 ? +He catches colds easily . 他 很 容易 感冒 . +I have not seen you for a while . 我 好 一陣子 沒 看到 你 了 . +Paris is one of the largest cities in the world . 巴黎 是 世界 上 最大 的 城市 之一 . +I promise that I will do it . 我 保证 我会 做 的 . +Tom , be careful ! 汤姆 , 小心 ! +Tom has a good head on his shoulders . 汤姆 脑子 好使 . +Save yourself . 拯救 你 自己 . +I have two dogs . One is white and the other black . 我 有 两条 狗 . 一条 是 白色 的 , 另 一条 是 黑色 的 . +They are always complaining . 他們 總 是 抱怨 . +Tom learned to ride a bike when he was ten . 汤姆 在 10 岁 的 时候 就学 骑 了 自行车 . +Are you ready ? 你 准备 好了吗 ? +Time flies . 時光 飛逝 . +She resented being called a coward . 她 對 被 稱為 懦夫 很 反感 . +I wrote her a letter every day . 我 一天 又 一天 地 给 她 写信 . +What are you laughing at ? 在 笑 什么 呢 ? +The police accused him of murder . 警方 指控 他 謀殺 . +I should have known better than to call him . 早 知道 我 不 應 該 打 電話 給 他 . +Drive safely . 安全 地 駕駛 . +She would often go to the theater when she was in London . 她 在 伦敦 的 时候 , 曾 经常 去 剧院 . +I have to go to bed . 我 该 去 睡觉 了 . +It is like looking for a needle in a haystack . 这 好比 大海捞针 . +I will go to the library with you tomorrow . 我 明天 要 跟 你 去 圖書館 . +There is also a park there . 那里 也 有 个 公园 . +World War II ended in 1945 . 第二次 世界 大戰 結束 於 1945 年 . +All of them are not present . 他們 所有 的 人 都 沒有 出席 . +Please sit on the sofa and relax . 請 坐在 沙發 上 放 輕 鬆 . +Can you imagine what the 21st century will be like ? 你 能 想象 21 世紀 會 是 甚麼樣 嗎 ? +He did not respond to my question . 他 沒有 回答 我 的 問題 . +I will call you on Monday . 我 會 在 星期一 給 你 打 電話 . +Where is your house ? 您 的 家 在 哪 ? +I do not want to spoil the ending for you . 我 不想 把 結局 提前 透露 給 你 . +I saw a cat running after the dog . 我 见 一只 猫 追 着 狗 跑 . +I must make up for the loss . 我 必须 弥补 损失 . +Tom did not sound too worried . 湯姆聽 起來 不 太 擔心 . +Do you have a bike ? 你 有 自行 車 嗎 ? +Do not forget to sign your name . 不要 忘記 簽上 你 的 名字 . +Why do you need change ? 你 為 什麼 需要 零 錢 ? +She twisted her ankle while she was doing exercise . 她 锻炼 时 扭伤 了 脚踝 . +I can not believe Tom is getting married . 我 不能 相信 汤姆 要 结婚 了 . +I have a dictionary . 我 有 一個 字典 . +I do not know any of the five ladies . 这 五个 女人 我 一个 都 不 认识 . +That looks like blood . 那 看起来 像 血 . +Rain prevented us from taking a walk . 雨 讓 我們 沒有 辦法 去 散步 . +I really did not even notice . 我 真的 根本 沒 注意 到 . +It is fun to learn slang words in foreign languages . 学习外语 里 的 俚语 很 有趣 . +What are those numbers ? 那些 数字 是 什么 ? +I heard someone in the crowd outside the station call my name . 我 聽到 車站 外 的 人群 中 有人 在 叫 我 的 名字 . +Did you come here alone ? 你 是 一个 人 来 这儿 的 吗 ? +Tom had a strange dream . 汤姆 做 了 个 奇怪 的 梦 . +I fell in love with her . 我 爱 上 了 她 . +Do you play any instrument other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +Her garden is a work of art . 她 的 花园 是 一件 艺术作品 . +Let is get together again next year . 讓 我們 明年 再 相聚 . +That is nonsense . Nobody but a fool would believe it . 那 是 無稽之談 . 只有 傻瓜 才 會 相信 . +Where was the mistake ? 錯 在 哪裡 ? +We are traveling on a tight budget . 我們 很節 省地 旅行 . +I am a man . 我 是 个 男人 . +I 'd like the sauce on the side . 我 想要 醬料 放在 旁邊 . +Can you eat raw oysters ? 你 能生 吃 牡蠣 嗎 ? +How about eating out this evening ? 今天 晚上 出去 吃 怎樣 ? +Are not you coming to pick me up tomorrow morning ? 你 明天 早上 不来 接 我 吗 ? +What fruit do you like the best ? 你 最 喜欢 什么 水果 ? +They must be waiting for you . 他們 一定 在 等 你 . +It was discovered by Tom . 它 是 由 湯姆 發現 的 . +You two should get married . 你们 两个 应该 结婚 . +I have a stomachache . 我 胃痛 . +We try . 我们 来 试试 . +How long does it take to get to the train station ? 去 火车站 要 多久 ? +What is her name ? 她 叫 什麼 ? +Tom says that he is willing to help . 汤姆 说 他 愿意 帮忙 . +They obtained a yield of 8 percent on their investment . 他們 在 這次 的 投資 中 得到 百分之八 的 收益 . +Tom fell asleep sitting up in the chair . 汤姆 坐在 椅子 上 睡着 了 . +There is a telephone in the hall . 在 大廳 裡 有 一支 電話 . +Where is my wife ? 我 的 妻子 在 哪裡 ? +He is the tallest boy . 他 是 最高 的 男生 . +That is your opinion . 那 是 你 的 想法 . +Do not disturb me while I am studying . 我 学习 的 时候 不要 打扰 我 . +The book was published in 1689 . 这 本书 出版 于 1689 年 . +He came out from behind the curtain . 他 从 窗帘 后 出来 了 . +I opened the door . 我 開 了 門 . +My father made me what I am . 我 父親 讓 我 知道 了 我 自己 是 誰 . +I am old enough to live by myself . 我 年 紀夠 大 了 可以 自己 一個 人 住 . +Thanks for coming over tonight . 謝謝 您 今晚 的 光臨 . +Tom was afraid of you . 湯姆 怕 你 . +I do not want to swim . 我 不想 游泳 . +I do not like homework . 我 不 喜欢 作业 . +Keep going straight . 繼續 直行 . +Where in Australia did you grow up ? 你 在 澳洲 的 哪裡 長大 ? +Exercise is good for your health . 做 运动 有利于 健康 . +The bridge is being repainted . 這 座 橋 正 被 重新 油漆 . +We do not trust Tom . 我们 不 相信 汤姆 . +I do not think that any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +My house is just across the street . 我 的 房子 就 在 對 街 . +The traveler was delighted at the sight of a light in the distance . 发现 了 远处 的 灯光 的 旅行者 欢喜 不已 . +" What time is it ? " " It is ten @-@ thirty . " " 几点 了 ? " " 10 点 半 了 . " +Are these your things ? 這些 是 你 的 東西 嗎 ? +He is very good at playing baseball . 他 垒球 打 得 很 好 . +My laptop crashed . 我 的 笔记本电脑 发生 故障 了 . +She took care of the children . 她 照顧 孩子 . +I can neither confirm nor deny that . 我 即 不能 确认 也 不能 否定 . +Tom has not lost his confidence . 湯姆 還 沒有 失去 信心 . +I study Korean . 我 学 韩语 . +I think she will divorce him . 我 想 她 會 和 他 離婚 . +You did not tell me you worked for Tom . 你 沒 告訴 我 你 為 湯姆 工作 . +Imagine that you have a time machine . 想象 一下 , 假如 你 有 一台 时光 机 . +You live and learn . 你 一面 生活 一面 學習 . +The older we become , the worse our memory gets . 我们 越 老 , 记忆力 就 越 差 . +A blast of cold air swept through the house . 冷 空氣 疾風 席 捲 整 棟 房子 . +Is the post office still closed ? 邮局 还 关 着 门 吗 ? +I hope to see you . 我 希望 能 见到 你 . +She can speak three languages . 她 會 講 三種 語言 . +He is confined to bed now . 他 现在 卧床不起 . +Never give up . 决不 放弃 . +It is business . 公事 公辦 . +I am suffering from a bad cold . 我 患上 了 重感冒 . +My father is in his room . 我 父親 在 他 的 房間 裡 . +Catch him . 抓住 他 . +I think it is time for me to buy a house . 我 想 我 該 是 時候 買間 房子 了 . +That is my money . 那 是 我 的 钱 . +Tom had to go himself . 汤姆 不得不 自己 去 . +I thought you 'd be full after eating that big steak . 我 觉得 吃 完 那块 大 牛排 你 就 饱 了 . +Opinion is divided on this point . 在 這 一點 上意 見 不 一 . +Where did all that self @-@ confidence come from ? 哪 来 那么 大 的 自信 啊 ? +Boys , do not make any noise . 男孩 們 , 不要 製 造 任何 噪音 . +What is your home address ? 你家 的 地址 是 什麼 ? +He studied hard in order to get into college . 他 努力学习 , 为的是 能够 考上 大学 . +You should be more careful . 你 應 該 要 更 小心 . +Tell Tom what you heard . 把 你 听到 的 告诉 汤姆 . +What is learned in the cradle is carried to the tomb . 搖籃裡學 的 帶到 墳墓 . +It was not until I had a baby myself that I knew what mother is love is . 直到 我 自己 有 了 孩子 我 才 明白 了 什么 是 母爱 . +Tom has been on the wanted list for three years . 汤姆 已经 上 通缉令 三年 了 . +I felt a drop of rain on my head . 我 感觉 有 滴雨 落 在 头上 . +It is too noisy in here . 這兒 太 吵 了 . +I am afraid I would not be very good company . 我 恐怕 不是 个 很好 的 伙伴 . +He is afraid of his own shadow . 他 是 个 胆小鬼 . +Do not listen to her . 別 聽 她 的 . +He confused us . 他 把 我們 弄 糊塗 了 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +Hug Tom . 抱抱 汤姆 ! +He thinks he is so great . 他 以為 自己 很 了不起 . +Is it love ? 那 是 愛 嗎 ? +It is a very serious illness . 这 是 很 严重 的 病 . +He took off his glasses . 他 摘下 了 眼鏡 . +No one came except Tom . 除了 汤姆 没有 人 来 . +You are not satisfied , are you ? 你 并 不 满意 , 对 吧 ? +We met at the church . 我们 在 教堂 里 遇到 . +You should go and brush your teeth . 你 該 去 洗牙 了 . +He graduated from Cambridge with honors . 他 以 优异 的 成绩 毕业 于 剑桥大学 . +Is someone knocking on the door ? 有人 敲门 吗 ? +You sing like an angel . 你 唱歌 像 天使 . +People can easily tell the difference between them . 人們 可以 很 容易 地 看出 其中 的 差別 . +I tried not to cry . 我 努力 忍住 哭 . +Japan is now very different from what it was twenty years ago . 现在 的 日本 与 二十年 前 大不相同 . +The scenery was beautiful beyond description . 這 風 景美 得 無法 形容 . +Tom should be here any minute . 湯姆 應 該 隨時 就 會 到 這裡 . +He bought a Honda . 他 賣 了 一台 豐田 的 車 . +We talked until two in the morning . 我們 聊到 凌晨 兩點 . +I am afraid there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +Do not go to extremes . 别 走极端 . +When I awoke , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +What do you think of this plan ? 你 覺得 這個 計畫 如何 ? +Are you guys crying ? 你們 在 哭 嗎 ? +Please do not open the windows . 请 不要 开窗 . +Why do you want to kill me ? 你 為 什麼 想 殺 我 ? +I have always wanted to do that . 我 一直 都 想 做 . +You should try this . 你 应该 试试 这个 . +We know that this is impossible . 我們 知道 這 是 不 可能 的 . +What is her job ? 她 做 什么 工作 ? +I want to ride a horse . 我 想 騎 馬 . +I could see that . 我 能 看見 . +" Let is go , " he said to me . " 咱們 走 吧 , " 他 對 我 說 . +He is making preparations for a trip . 他 正在 籌備 一次 旅行 . +A friend of mine asked me to send her a postcard . 我 的 一位 朋友 要求 我 寄 給 她 一張 明信片 . +People love to talk . 人們 就是 愛 說 話 . +It sounds like a good idea . 它 聽 起來 是 個 好 主意 . +He is an aggressive person . 他 是 个 咄咄逼人 的 的 人 . +I could hear doors slamming . 我 可以 聽見 門 砰砰 作響 . +The prisoner was given his freedom . 囚犯 重獲 自由 . +I was going to work here all day . 我 要 在 這裡 工作 一整天 . +I do not have a good feeling about this . 我 觉得 这 没什么 好 . +I wish I had seen her . 但 願 我 見 過 她 . +The doctor will be here in a minute . 醫生馬 上 就 來 . +She spent the weekend by herself . 她 獨 自度 過 了 週末 . +I might not see Tom today . 我 今天 可能 見 不到 湯姆 了 . +We are still doing well . 我们 依然 做 得 很 好 . +Can you ride a horse ? 你 会 骑马 吗 ? +It is expensive to live in Japan . 生活 在 日本 很 昂貴 . +There goes our bus . 我们 的 车 走 了 . +The sun sets earlier in the winter . 在 冬天 , 太阳 下山 比 往常 更早 . +Do you know each other ? 你們 認識 嗎 ? +The boy took the radio apart . 这个 男孩 把 收音机 折 散架 了 . +Do you still want to give me a hug ? 你 還 想 給 我 一個 擁抱 嗎 ? +Do not ever mention that again . 永远 别 再 提 它 了 . +It was difficult for him to hide his pride in his success . 他 很 难 掩饰 对 自己 成功 的 骄傲 . +You have got a strong will . 你 的 意志力 很 強 . +Are you lost ? 你 迷路 了 吗 ? +You can tell us . 你 能 告诉 我们 . +I do not have time for reading . 我 没 时间 阅读 . +The man got away from the city . 這 名 男子 逃離 了 這個 城市 . +OK , you two , follow me . 好 , 你們 兩個 , 跟著 我 . +He helped an old lady get up from her seat . 他 幫 忙 一位 老太太 從 位子 上 站 起來 . +Give Tom any help you can . 给予 汤姆 一些 你 力所能及 的 帮助 . +I look after my grandfather . 我 照顧 我 的 爺爺 . +He helped the lady into the car . 他 幫助 這位 女士 上車 . +This is the best restaurant I know of . 这 是 我 知道 的 最好 的 餐馆 . +I can not afford that . 我 买不起 那个 . +I brush my teeth twice a day . 我 一天 刷 兩次 牙 . +I feel sad every now and then . 我 不時 地 覺得 難過 . +Here is the bill . 这 是 账单 . +I generally agree with her . 我 大致 上 同意 她 . +This is a new experience for Tom . 这 对于 汤姆 是 新体验 . +Hold your horses , young man . 握住 你 的 馬 , 年 輕 人 . +I have a boat . 我 有 一艘 小船 . +Water freezes at 32 degrees Fahrenheit . 水 在 華氏 32 度 結成 冰 . +I guess most of them went home . 我 猜 他們 大多 數 回家 了 . +I should be happy . 我 該 高興 . +He studies much harder than before . 他 比 以前 学 得 更 努力 了 . +Please come over if you have time . 如果 你 有 時間 的 話 , 請 過來 一趟 . +She always gets lost . 她 总是 迷路 . +His speech lasted three hours . 他 的 演讲 持续 了 三个 小时 . +Whether you succeed or not depends on your own efforts . 你 成功 与否 取决于 你 自身 的 努力 . +Will you lend your dictionary to me ? 把 你 的 字典 借 給 我 好 嗎 ? +After I talked with my teacher , I decided to work hard . 跟 我 的 老師 談 過 後 , 我 決定 認真 努力 . +I would like to go to France one day . 我 想 有 一天 能 去 法国 . +This stone is too heavy to lift . 這塊 石頭 太重 了 無法 抬起 來 . +I am tired of eating fast food . 我 受够 吃快餐 了 . +The world is full of incompetent doctors . 社会 上满 是 不称职 的 医生 . +She was on the verge of crying . 她 要 哭 出来 了 . +How much money do I owe you ? 我 欠 你 多少 錢 ? +We met in a coffee shop near the campus . 我們 在校 園 附近 的 咖啡 廳 碰面 . +We want to clear up this problem . 我们 像 澄清 这个 问题 +We had a history quiz this morning . 我們 今天 早上 有 歷史 小考 . +What I am saying is true . 我 說 的 是 真的 . +I need a bag . Will you lend me one ? 我 需要 个 包 . 你 能 借 我 一个 吗 ? +That is a little hard to believe . 那 有点 难以置信 . +You should speak with Tom . 你 應該 和 Tom 說 . +He may have been ill . 他 可能 病 了 . +It exploded with a loud noise . 它 發出 巨響 爆炸 了 . +I will ask him about it tomorrow , then . 那 我 明天 会 问 他 的 . +I have known her for two years . 我 认识 她 两年 了 . +I have two brothers and three sisters . 我 有 两个 兄弟 和 三个 姐妹 . +He likes mathematics , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +I am sorry that I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +Mother made a doll for me . 妈妈 给 我 做 了 一个 洋娃娃 . +Tom has been gone for ages . 汤姆 年纪 大 去世 了 . +I drive everywhere . 我 去 哪里 都 开车 . +Does he study English every day ? 他 每天 研讀 英語 嗎 ? +Tom is the tallest man I know . 湯姆 是 我 所 知道 的 最高 的 人 . +Water freezes at zero degrees Celsius . 水 在 攝 氏 零度 時 結冰 . +Do not trust anyone here . 你 在 這 別 相信 任何人 . +When did she break the window ? 她 什麼 時候 打破 了 窗戶 ? +It is no use worrying about it . 擔心 它 是 沒 有用 的 . +If Tom can not tell me , then no one can . 如果 湯姆 不能 告訴 我 , 就 沒 人 能 了 . +A female friend of mine loves to go to gay bars with me . 我 的 一个 女性朋友 喜欢 跟 我 一起 去 同志 酒吧 . +No one supported his motion . 沒人 支持 他 的 動議 . +Tom understands what it takes to survive . 汤姆 明白 生存 的 代价 . +We must intervene . 我们 必须 介入 . +The two men were business partners . 这 两个 男人 是 生意 上 的 合作伙伴 . +Tom is absent . 湯姆 缺席 . +How should I know ? 我 怎麼 知道 ? +Would you like to wait ? 你 愿意 等 吗 ? +Tom began laughing . 湯姆 開始 笑 了 . +As soon as she heard the bell ring , she answered the telephone . 她 一 聽到 鈴響 , 就 接 了 電話 . +How much is it ? 多少 錢 ? +Tom loves dogs . 汤姆 喜欢 狗 . +He still has not answered my letter . 他 还 没回 我 的 信 . +We have got to do something about this problem soon . 我们 要 快点 处理 这 问题 . +Are you a doctor ? 你 是 医生 吗 ? +The risk is too great . 风险 太大 . +Cookie is mother died of cancer . Cookie 的 母親 死 於 癌症 . +She sang better than him . 她 唱 得 比 他 好 . +Do not ask Tom any questions about his job . 别 问 汤姆 他 的 工作 的 问题 . +No one had anything left to say . 沒 有人 有 話 可 說 . +She hugged him . 她 抱 了 他 . +He comes back from Sydney today . 他 今天 從 雪梨 回來 . +Mary came on her own . Mary 自己 一個 人 來 . +We have a big supermarket . 我們 有 一個 大 超市 . +I go to the country every summer . 我 每年 夏天 都 去 鄉 下 . +I am staying at the Hilton Hotel . 我 留在 希尔顿 宾馆 . +Tom lost his job . 湯姆 丟了 工作 . +Tom is three years younger than Mary . 汤姆 比 玛丽 小 三岁 . +Leaving something unfinished is the worst thing you can do . 半途而废 是 你 所 能 做 的 最 糟糕 的 事情 . +Do not be sad . 别 伤心 . +There is a possibility you will have to do that . 你 有 可能 不得不 那么 做 . +Do you know if she can speak English ? 你 知道 她 会 说 英语 吗 ? +It is really time for us to go . 这 真是 我们 该 走 的 时候 了 . +I think this coat should fit you . 我 认为 这 外套 应该 适合 你 . +You are always watching TV . 你 總是 在 看電視 . +Can you give me a ride to the office on Wednesday ? 周三 你 可以 载 我 到 办公室 吗 ? +More money for education will spur economic growth . 更多 投資 在 教育 的 錢 將 會 刺激 經濟 成長 . +What do you usually do with your friends ? 你 一般 和 朋友 一起 做 什麼 ? +Tom shot himself in the head . 汤姆 拿 枪 射 自己 的 头 . +She might come . 她 也許 會 來 . +Scientists can easily compute the distance between planets . 科學家 們 可以 很 容易 地計 算出 行星 之間 的 距離 . +Do not ask me what it was . 别 问 我 这 是 什么 东西 ! +She called up her mother on the phone . 她 给 她 妈妈 打电话 . +Have fun . 玩 得 開心 . +It is almost time for the train to arrive . 現在 差不多 是 火車 要到 的 時間 . +She got a new CD player yesterday . 她 昨天 得到 了 一個 新 的 CD 播放 機 . +It is so secret that even I do not know what it is all about . 这 太 秘密 了 , 连 我 都 不 知道 它 是 关于 什么 的 . +There is no membership fee for joining . 參加 不用 會員費 . +Some people like red wine and some people like white wine . 有人 喜歡 紅酒 , 有人 喜歡 白酒 . +She likes to listen to music . 她 喜欢 听 音乐 . +You are free to do as you please with your money . 你 可以 隨 你 高興 的 用 你 的 錢 . +You can buy stamps at any post office . 你 在 任何 一家 邮局 都 能 买到 邮票 . +Good luck on your test . 考试 加油 ! +I wrote down the address for you . 我 給 你 寫下 了 地址 . +I am not used to spicy food . 我 不習 慣 辛辣 的 食物 . +You may choose what you like . 你 可以 選擇 你 喜歡 的 . +How many books are on the shelf ? 櫃子 上 有 幾本 書 ? +She glanced shyly at the young man . 她 羞怯 地 看 了 一眼 那個 年 輕 人 . +The boy has an apple in his pocket . 这 男孩 的 口袋 里 有个 苹果 . +Are you sad ? 你 在 难过 吗 ? +Her argument was not based on facts . 她 的 观点 没有 基于 事实 . +I am not feeling well . 我 身体 不适 . +Do you still love Tom ? 你 依然 爱 汤姆 吗 ? +I think your basic theory is wrong . 我 認為 你 的 基本 理論 是 錯 的 . +Tom and Mary went camping in the mountains . 湯姆 和 瑪麗 去 山裡 露營 . +They nominated Calvin Coolidge for vice president . 他们 提名 卡尔文 • 柯立芝 为 副 总统 . +My fountain pen is new . 我 的 钢笔 是 新 的 . +That is all I could find . 那 是 我 所有 能 找到 的 . +I do not need anybody . 我 谁 也 不 需要 . +I am just looking . 我 只是 隨便 看看 . +Whose idea was it ? 这 是 谁 的 主意 ? +I would like to see you tomorrow . 明天 我 想见 你 . +It is okay to take it easy sometimes . 有時 可以 放 輕 鬆 一下 . +Tom comes here three or four times a month . 汤姆 一个月 来 这里 三四次 . +We have to go by the rules . 我们 必须 遵守规则 . +There was not any furniture in that room . 那個 房間 裡 沒有 任何 傢 俱 . +He is three inches taller than I am . 他 比 我 高三 英寸 . +Who can do this work ? 谁 能 做 这件 工作 ? +Tom declined to give details . 汤姆 拒绝 提供 详细信息 . +If we do not keep walking we will be late . 再 不 走 就 迟到 了 . +Apparently , there is nothing that cannot happen today . 显然 , 今天 什么 事 都 有 可能 发生 . +I want to meet your older sister . 我 想 認識 你 姐姐 . +Please stay here till I get back . 請待 在 這裡 直到 我 回來 . +Everybody knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He told the students to be quiet . 他 告訴 了 學生 要 安靜 . +How heavy is your suitcase ? 您 的 行李箱 有 多重 ? +We should do our best . 我们 应该 做到 最好 . +This book is new . 这 本书 是 新 的 . +Japan is confronted with severe economic problems . 日本 正面 臨著 嚴重 的 經濟 問題 . +Do not you agree ? 您 不 同意 吗 ? +I do not know how to use it . 我 不 知道 如何 使用 它 . +What do you think I was doing ? 你 觉得 我 在 干吗 呢 ? +A drunken man was sleeping on the bench . 一個 醉 了 的 男人 在 長椅 上 睡觉 . +I am really cold . 我 真的 冷 . +I like the way she laughs at my jokes . 我 喜欢 她 因 我 的 笑话 而 欢笑 的 样子 . +He was forced to sign the document . 他 被迫 在 文件 上 簽字 . +I could not understand his ideas . 我 無法 理解 他 的 想法 . +I wrote it myself . 我 自己 写 了 它 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +You may not come in . 你 不能 進來 . +We need competent leaders . 我们 需要 称职 的 领导人 . +The tie does not go with my suit . 领带 和 我 的 西装 不配 . +There were a lot of people at the concert . 音乐会 上 有 很多 人 . +The plan was executed . 计划 被 执行 了 . +You should know better than to ask a lady her age . 你 應該 知道 不要 問 小姐 的 年齡 . +The students are all at their desks now . 学生 们 现在 都 坐在 桌前 . +We enjoyed watching the TV . 我們 喜歡 看電視 . +Do you need this book ? 你 需要 这 本书 吗 ? +Even when I was a child , I was able to swim well . 我 很小 的 时候 就 游 得 很 好 了 . +There is a telephone in the hall . 走廊 裡 有 一部 電話 . +The prisoner was behind bars for two months . 那個 囚犯 在 牢 裡 待 了 兩個 月 . +I seem to have a fever . 我 好像 发烧 了 . +Are you sure you know how to do this ? 你 真的 知道 这个 怎么 做 吗 ? +The sum of 5 and 3 is 8 . 五 和 三 的 總 和 是 八 . +You look just like your mother . 你 看 起來 就 像 你 的 母親 . +She found her purse under the desk . 她 發現 她 的 錢 包在 桌子 底下 . +Tom never did what we asked him to do . 我们 叫 汤姆 做 什么 , 他 从来不 做 . +I could not understand anything that he said . 我 不 了解 他 所 說 的 事情 . +It depends on the context . 这 要 看 情况 . +She gave me a smile of recognition . 她 給 了 我 一個 認可 的 微笑 . +Do you have other family ? 你 有 其他 家人 吗 ? +That was not my intention . 那 不是 我 故意 的 . +I have a brother in Boston . 我 有个 在 波士顿 的 兄弟 . +What you said is baloney . 你 说 的 东西 是 胡扯 . +Humor me . 你 就 随 了 我 的 意吧 . +I miss her so much . 我 那么 想念 她 . +Most boys like baseball . 大部分 男生 喜欢 棒球 . +The old man passed away this morning . 老 男人 今天 早上 去世 了 . +I do not work like that . 我 不 像 那樣 工作 . +Can I have something to eat ? 我 能 些 吃 的 東西 嗎 ? +This could be fun . 這 可能 很 好玩 . +The address on this parcel is wrong . 這個 包裹 上 的 地址 是 錯 的 . +We have your size , but not in that color . 我们 有 你 的 尺寸 , 但是 没有 那个 颜色 . +The big tree was struck by lightning . 這 棵 大樹 遭到 雷擊 . +I discovered the truth . 我 發現 了 真相 . +I wonder if Tom likes me . 我 不 知道 湯姆 是否 喜歡 我 . +Tom goes to work by motorcycle . 湯姆騎 摩托 車 上班 . +He got into this school in September last year . 他 去年 九月 进 了 这 所 学校 . +Are not you cold ? 你 不 冷 吗 ? +Why me ? 为什么 是 我 ? +I have been requested to help you . 有人 请 我 帮 你 . +The birds were flying in a group . 鸟儿 成群 飞 着 . +She is fond of singing old songs . 她 喜歡 唱 老歌 . +I do not think I have ever made any serious mistakes . 我 认为 我 没犯 任何 严重 的 错误 . +I generally walk to school . 一般 我 步行 去 学校 . +Tom pretty much forgot about the meeting . 汤姆 差不多 忘 了 开会 的 事儿 . +I saw what Tom did . 我 看到 湯姆 做 什麼 了 . +Let is all pray together . 大家 来 一起 祈祷 吧 . +Please make yourself at home . 請 不要 客氣 . +He was happy at the news of her success . 听到 她 成功 的 消息 , 他 很 高兴 . +I should have taken the money . 我 應 該 拿 那些 錢 的 . +It is very easy to learn how to swim . 学 游泳 非常简单 . +Outside the school , she saw people with no homes living in cardboard boxes . 在 校外 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +Buy milk on your way home . 回来 的 路上 买点 牛奶 . +Everyone is tired of hearing that story . 每个 人 都 听腻 了 那个 故事 . +Do you understand French ? 你 會 法語 ? +I love my life . 我 爱 我 的 生命 . +He runs a supermarket in the town . 他 在 這個 鎮 上 經營 一家 超級 市場 . +There were two cakes . 那 有 两块 蛋糕 . +Maybe I will go , and maybe I will not . 也許 我 會 去 , 也許 我 不 會 . +You may use my dictionary . 你 可以 用 我 的 字典 . +He did all he could to protect his son . 他 做 了 一切 能 做 的 去 保護 他 的 兒子 . +Will six o 'clock suit you ? 六点 您 行 吗 ? +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +Close the door when you leave . 出去 的 时候 把门 关上 . +Does Tom speak French better than Mary ? 湯姆 說 法語 比瑪麗 好 嗎 ? +I wonder why I should not do that . 我 纳闷 我 为什么 不该 那样 做 +I do not know the meaning of this word . 我 不 知道 这个 词 的 意思 . +Do you have a pen on you ? 你 身上 有 铅笔 吗 ? +Were you in America last month ? 你 上 個 月 在 美國 嗎 ? +I have not heard that she will come . 我 沒 聽 說 她 會 來 . +What a strong wind ! 多麼 強 的 風 啊 ! +It is a pity that you could not come . 很 遺憾 你 不能 來 . +Tom snickered at Mary . 汤姆 暗中 笑 玛丽 . +This will not help you . 這 幫 不了 你 . +Why did you come home so late ? 你 為 什麼 這麼 晚 回家 ? +Tom wasted time . 湯姆浪 費 時間 . +I do not play the piano . 我 不彈 鋼琴 . +Neither Tom nor Mary has found anything valuable . 汤姆 和玛丽 都 没有 发现 什么 有 价值 的 东西 +Let is go indoors . 我們 進屋 吧 . +I was mistaken for a salesman . 我 被 誤 認為 是 推 銷員 . +Keep the window closed . 让 窗子 关着 . +Why are you still at school ? 你 为什么 还 在 学校 ? +I need to ask you a silly question . 我 必须 问 你 一个 蠢 问题 . +I am a professional photographer . 我 是 專業 攝影師 . +I studied around the clock . 我 夜以繼日 地 讀 書 . +Do you often have fish for dinner ? 你 常常 晚餐 吃 魚 嗎 ? +Today is Saturday and tomorrow is Sunday . 今天 是 周六 , 明天 是 周日 . +Part of his story is true . 他 的 故事 一部分 是 真的 . +Is there someone who could help me ? 有 誰 可以 幫 我 嗎 ? +I have a shower every night . 我 每晚 洗澡 . +I do not have the time or the money . 我 沒有 時間 , 也 沒有 錢 . +We did it ourselves . 我们 自己 做 的 . +You can stay here till the snow stops . 你 可以 在 這裡 等到 雪 停 . +Did you hear what I said ? 你 聽 見 我 說 的 了 嗎 ? +Tom is afraid of everyone . 湯姆 害怕 每個 人 . +I just thought I should double check . 我 只 覺得 我 應 該 再 檢查 一遍 . +May I come and see you now ? 我 現在 可以 來 看看 你 嗎 ? +Have you ever dyed your hair ? 你 染 過 頭 髮 嗎 ? +She cried all night . 她 一 整晚 都 在 哭 . +Why are you crying ? 你 為 什麼 哭 ? +I like mathematics . 我 喜欢 数学 . +Did you visit the Tower of London ? 你 參觀 倫敦 塔 了 嗎 ? +My computer is acting strange . 我 的 电脑 好 诡异 . +According to the guidebook , this is the best restaurant around here . 根據 指南 , 這 是 這 附近 最好 的 餐館 . +What do you think Tom is waist size is ? 你 认为 汤姆 的 腰围 是 多少 ? +Tom put some salt on his eggs . 湯姆 在 他 的 蛋 上 撒 鹽 . +An honest man never steals money . 誠實 的 人 從 不 偷 錢 . +They are still in Boston . 他們 還 在 波士 頓 . +Do you know the difference between a microscope and a telescope ? 你 知道 显微镜 和 望远镜 的 差别 吗 ? +Eat a live frog every morning , and nothing worse will happen to you the rest of the day . 每天 早上 吃一 隻 活 青蛙 , 那麼 你 一天 中 其他 的 時間 就 不 會 發生 什麼 更 糟糕 的 事 了 . +I did not catch what he said . 我 没 听懂 他 说 的话 . +You look like a monkey . 你 看着 像 猴 . +I have lost my watch . 我 把 我 的 表 丢 了 . +It is rude to stare at strangers . 盯著 陌生人 看 是 不 禮貌 的 . +It is especially hot today . 今天 特別 熱 . +They went to America last month . 他們 上 個 月 去 美國 . +As far as I know , he did nothing wrong . 据我所知 , 他 没 做 错 任何 事 . +I love apple juice . 我 愛 蘋 果汁 . +I do not mind walking in the rain . 我 不介意 在 雨 中 漫步 . +I can not forget what happened that day . 我 无法 忘记 那天 发生 了 什么 . +You are very alert . 你 真是 警惕 . +He is a liar . 他 是 個 騙子 . +I am not used to walking long distances . 我 不習 慣 走 很 長 的 路 . +Get on the horse . 上马 . +I do not feel like eating anything today . 我 今天 不想 吃 东西 . +Tom has three cats . Tom 有三 隻 貓 . +Can you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Stop joking around . 不要 隨便 開 玩笑 . +I do not want Tom to do that alone . 我 不想 讓 湯姆 自己 做 . +Tom is out cold . 汤姆 正 昏迷不醒 . +When will you be free ? 你 什麼 時候 有空 ? +You should do the honorable thing and resign . 你 應該 光榮 地 辭職 . +Do not you agree ? 你 不 同意 吗 ? +Leave my car alone . 不要 碰 我 的 車 . +I would like to see him tomorrow afternoon . 我 想 明天 下午 見 他 . +Her skin is smooth . 她 的 皮膚 光滑 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +Is there enough food for everyone ? 有 足夠 的 食物 給 大家 嗎 ? +Tom did not think that anybody would recognize Mary . 汤姆 不 认为 有人 会 认出 玛丽 . +When we are told not to come , we become all the more eager to go . 让 我们 别 来 , 我们 就 更 想来 了 . +This room is cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I can speak Chinese , but I can not read it . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +It is as smooth as a baby is bottom . 它 像 婴儿 的 屁股 一样 光滑 . +Which one are you referring to ? 你 指 的 是 哪个 ? +He is bound to forget . 他 准会 忘 . +She gives me a nasty look every time she sees me . 她 每次 看見 我 都 給 露出 厭惡 的 眼神 . +I am very interested in jazz . 我 對 爵士 樂 很 有 興趣 . +I do not think Tom will like this place . 我 不 认为 汤姆 喜欢 这个 地方 . +She did not feel like eating lunch . 她 不想 吃 午 飯 . +Is she a taxi driver ? 她 是 出租车 司机 吗 ? +Drivers should wear seat belts . 司機 應該 繫 安全 帶 . +He changed his mind . 他 改变 想法 了 . +China is twenty times as large as Japan . 中国 是 日本 的 20 倍 大 . +There was a car accident yesterday . 昨天 發生 了 一場 車禍 . +I know the boy standing over there . 我 知道 站 在 那裡 的 那個 男孩 . +The television does not work . 电视机 坏 了 . +How did your weekend go ? 你 的 周末 是 怎么 过 的 ? +Everybody is laughing . 每個 人 都 在 笑 . +You are such a jerk . 你 真是 個 傻子 . +She is giving the baby a bath . 她 正在 給 嬰兒 洗澡 . +He is a big boy . 他 是 個 大 男孩 . +Life is full of ups and downs . 人生 充滿 了 高低 起伏 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +This is not a tiger . 这 不是 老虎 . +The policeman aimed his gun at the man . 警察 瞄准 了 那个 男人 . +Are you here to see Tom ? 你 是 來 見 湯姆 的 嗎 ? +Let is go home . 让 我们 回家吧 . +Mary wanted to marry a man with ambition . 以前 , 玛丽 想 和 一位 有 雄心壮志 的 男人 结婚 . +Someone stole my laptop computer . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Are you feeling under the weather ? 你 感觉 不 舒服 吗 ? +Do not be fooled . 別 被 騙 了 . +It looks as if it is going to rain . 天 看起来 要 下雨 了 . +I am a little bit concerned . 我 有点 担心 . +Why do not you hug me ? 你 為 甚麼 不 抱 我 ? +There is something wrong with my car . 我 的 車子 有 問題 . +There is no chance of rain today . 今天 不 可能 下雨 . +I can read German , but I can not speak it . 我 能 看 德语 , 但是 不能 说 . +There is a hole in this bucket . 這個 桶子 上 有 個 洞 . +The strike affected the nation is economy . 罢工 妨碍 了 国家 经济 . +Why did you marry Tom ? 你 為 甚麼 跟 湯姆 結婚 ? +He is always at home on Mondays . 他 星期一 總是 在家 . +He had barely enough to eat . 他 仅 有够 糊口 的 吃 的 . +It is likely to snow this evening . 今天 晚上 可能 會 下雪 . +I booked a seat . 我 訂 了 一個 位子 . +Please move your bicycle out of here . 請 將 您 的 自行 車 移出 這裡 . +She handed him the key . 她 遞給 了 他 鑰匙 . +Something has happened to my car . 我 的 车 出 了 点 事 . +You do not need a gun . 你 不 需要 枪 . +That is what Tom promised . 那 是 汤姆 承诺 的 . +The train was delayed because of heavy snowfall . 火车 因 大雪 被 耽搁 了 . +Travel agencies ' profits soared . 旅行社 的 利润 猛涨 . +It belongs to my brother . 它 屬 於 我 兄弟 . +My brother is a college student . 我 哥哥 是 個 大學 生 . +He likes taking a walk by himself . 他 喜欢 独自 散步 . +President Lincoln accepted the invitation . 林肯 总统 接受 了 邀请 . +I am sorry my pronunciation is not very good . 不好意思 我 发音 不太好 . +English is studied in Japan . 英語 在 日本 被 學習 . +We made every effort to help him . 我們 盡 了 一切 努力 來 幫助 他 . +We surrender . 我們 投降 . +I always feel blue on Mondays . 我 每個 星期一 都 覺 得 很 憂鬱 . +The police did not find any clues . 警方 沒有 發現 任何 線索 . +I like your room . 我 喜欢 你 的 房间 . +I finished reading the book last night . 我 昨晚 看完 了 這 本書 . +We did not bring it back . 我们 没 把 它 带 回来 . +Tom promised that he 'd come , but he did not . 湯姆 答應 他 會 來 , 但 他 沒來 . +I always have to wear a tie because of my job . 因為 我 這份 工作 的 緣故 , 我 總是 要 打 領帶 . +Have you heard from him ? 你 收到 他 的 音訊 了 嗎 ? +She is about the same age as I am . 她 大約 跟 我 同年 紀 . +I returned the books I borrowed from the library , and I borrowed some new ones . 我 还 了 从 图书馆 借 的 书 , 又 借 了 些 新 的 . +Thank you for telling me the truth . 謝謝 你 告訴 我 真相 . +He went to Italy for the purpose of studying music . 他 去 義 大利 的 目的 是 學習 音樂 . +How long do you plan to stay ? 你 准备 待 多久 ? +Tom came up with an answer to our problem . 汤姆 给 我们 的 问题 想出 了 个 答案 . +He will be coming to the party . 他 會 來 參加 派 對 . +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +How about you ? 您 呢 ? +I went for a walk in the park . 我 去 公园 散 了 步 . +I could not answer all the questions . 我 无法回答 所有 问题 . +I can not make out what he wants . 我 不 明白 他 想要 什么 . +Are you mad ? 你 生气 了 吗 ? +Our school is across the river . 我們 學校 在 河 的 對面 . +He pushed the emergency button . 他 按 下 了 緊急 按 鈕 . +I am the laziest person I know . 我 是 据我所知 最懒 的 人 . +I forgot what his name was . 我 忘记 他 叫 什么 名字 了 . +He does not live there anymore . 他 不再 住 在 這裡 了 . +This house is mine . 這 房子 是 我 的 . +Please give me a glass of milk . 請 給 我 一杯 牛奶 . +I am very , very sorry . 我 非常 , 非常 抱歉 . +You need to let me handle this . 你 要 让 我 来 解决 . +He changed schools last year . 去年 他 换 了 学校 . +These two words are easily confused . 这 两个 词 容易 混淆 . +Lunch is ready . 午餐 好 了 . +Tom does not know who he can trust anymore . 湯姆 不 知道 他 還 能 再 信任 誰 . +What is your phone number ? 你 电话号码 是 多少 ? +I will be back in a jiffy . 我 马上 就 回来 . +It is an advantage to be able to use a computer . 會 用 電腦 是 一個 好 處 . +Tom is crying , too . 湯姆 也 在 哭 . +Where is the phone book ? 电话簿 在 哪里 ? +She is been absent from school for five days . 她 已经 五天 不 上学 了 . +I wonder if I can do it again . 我 不 知道 我 能 不能 再 做 一次 . +May I have the check , please ? 請 把 帳單 給 我 好 嗎 ? +Our math teacher drew a circle on the blackboard . 我们 的 数学老师 在 黑板 上 画 了 一个 圆 . +It is already 11 . 已经 是 11 点 了 . +We are on the third floor . 我们 在 三 楼 . +I gave Tom a going @-@ away present . 我 送给 汤姆 一份 临别 礼物 +We have a door between our offices . 我們 的 辦 公室 之間 有 扇 門 . +I can not believe you bought this . 我 不信 你 買 了 這個 東西 . +Smoke appeared . 烟雾 出现 了 . +I competed with him for the championship . 我 和 他 競爭 冠軍 . +I am always forgetting people is names . 我 總是 忘記 別人 的 名字 . +Drop the knife ! 把 刀 放下 ! +He came back from America . 他 從 美國 回來 了 . +I had an accident at work . 我 出 了 工伤 . +His bicycle is blue . 他 的 自行车 是 蓝色 的 . +We have to think about it . 我們 必須 考慮 它 . +I do not like the food at that deli . 我 不 喜欢 那 家 熟食店 里 的 食物 . +I never thought that would happen . 我 从来 没想到 会 发生 那种 事 . +He was severe with his children . 他 对 自己 的 孩子 很 严格 . +Make it smaller . 把 它 弄 小 一點 . +I wonder what else Tom wants . 我 想 知道 汤姆 还要 别的 什么 . +Be careful not to drive the wrong way on a one @-@ way street . 小心 不要 在 单行道 逆向行驶 . +How do you pronounce this word ? 这个 词 怎么 发音 ? +I find it difficult to express my meaning in words . 我 覺 得 很 難用言語 表達 我 的 意思 . +I like my coffee without sugar . 我 喜欢 喝咖啡 不 加糖 . +Pizza is the kind of food that fits into today is life style . 比萨 是 种 适合 现在 的 生活 方式 的 食物 . +I heard the song sung in French . 我 听 过 这 首歌 的 法语 版 . +" Did you watch TV last week ? " " No , I did not . " “ 上周 你 看电视 了 吗 ? ” “ 没有 , 我 没 看 . ” +They like to sing . 他们 都 喜欢 唱歌 . +I am not as optimistic as you are . 我 不 像 你 那么 乐观 . +France is running a welfare state it can no longer afford . 法國 是 一個 福利 國家 , 但 它 卻 不再 能夠 負擔 得起 了 . +The baby smiled at me . 宝宝 对 我 笑 了 . +You must pay in advance . 您 必须 预先 付钱 . +The man you saw yesterday was my uncle . 你 昨天 看到 的 那个 男人 是 我 叔叔 . +Calm down . 冷静 点 . +You ought not to make fun of them . 你 别 嘲弄 他们 . +We can begin . 我們 能 開始 . +I like dragon fruit . 我 喜欢 火龙果 . +Is that for sale ? 这个 卖 不卖 ? +Why do people not always tell the truth ? 为什么 人们 不 总是 讲 真话 ? +I will do the shopping for her birthday . 我 要 去 给 她 生日 买点 东西 . +What do you want me to do ? 你 要 我 做 什麼 ? +He broke the window on purpose . 他 故意 打破 了 窗戶 . +Their losses reached one million yen . 他們 的 損失 到 達 了 一百 萬日 圓 . +Do you take part in any community activities ? 你 参加 社团活动 吗 ? +I do not know where Tom was going . 我 不 知道 汤姆 往 哪 去 了 . +How did you accomplish this ? 你 怎么 完成 的 ? +Those flowers have died . 那些 花 已經 枯死 了 . +How is your project coming along ? 你 的 项目 进展 得 怎么样 ? +Who can tell the difference ? 谁 能 说 清 不同点 ? +There is the train at 10 o 'clock . 十點鐘 有 一班 火車 . +My head hurts . 我 头痛 . +She boiled the eggs . 她 煮 了 蛋 . +He lied to us . 他 欺騙 了 我們 . +Ebola is one of the most virulent viruses known to man . 埃 博拉 是 人类 已知 的 最 致命 的 病毒 之一 . +She was wearing dark brown shoes . 她 穿著 深褐色 的 鞋子 . +Do you understand what I am saying ? 你 明白 我 的 意思 嗎 ? +Tom runs faster than me . 汤姆 跑 得 比 我 快 . +Where else should we go ? 我们 要 去 其他 的 什么 地方 ? +I am sorry to hear it . 我 听 了 感到 抱歉 . +He is three years older than me . 他 比 我 大三 歲 . +Friends are like flowers in the garden of life . 朋友 就 像 生命 之 园里 的 花朵 . +What time is the next performance ? 下 一場 表演 在 幾點鐘 ? +I felt something moving on my back . 我 感到 背上 有 东西 动 . +I do not want to fail my exams . 我 不想 落榜 . +What a surprise ! 太 惊喜 了 ! +I thought I had all the answers . 我 認為 我 有 所有 的 答案 . +We got lost in the snow . 我們 在 雪地 裡 迷了路 . +" The good die young " is an old saying which may or may not be true . “ 好人 不 长命 ” 是 句 或 真 或 假 的 老话 . +Your time is up . 你 的 時間 到 了 . +She accused me of being a liar . 她 罵 我 是 個 騙子 . +He still has not responded to my letter . 他 还 没回 我 的 信 . +My father goes to church on Sunday . 我 爸爸 週日 上 教堂 . +Something strange is happening . 正 有 什么 奇怪 的 事情 发生 着 . +They wanted to know where Tom was . 他們 想 知道 湯姆 在 哪 . +I lost my wallet . 我 掉 了 我 的 钱包 . +Our children like dogs , but I prefer cats . 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +Where is the tourist information office ? 遊客 諮詢 處 在 哪裡 ? +He often walks to school . 他 常常 走路 去 學校 . +His mother sat up all night waiting for her son . 他 的 妈妈 坐 了 一整夜 , 等 她 的 儿子 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Do I know you ? 我 认识 你 吗 ? +Tom has a lot to think about . 汤姆 要 考虑 很多 . +They are kids . 她们 是 孩子 . +I can not believe Tom kissed me . 我 不敢相信 汤姆 亲 了 我 . +He left in the blink of an eye . 他 一转眼 就 跑 了 . +I cannot agree with you on the matter . 在 这件 事 上 , 我 无法 赞同 你 . +How will the weather be tomorrow ? 明天 天氣 怎麼樣 ? +I hope Tom is predictions are wrong . 我 希望 汤姆 的 预测 是 错 的 . +Stop looking for problems , Tom . 别 找事 , 汤姆 . +It is difficult for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +What would you say to Tom ? 你 要 对 汤姆 说 些 什么 ? +I will be able to assist you . 我 能 協助 你 . +Leave the book where it was . 把 书 放在 原处 . +I have difficulty in Japanese . 我 学 日 語 有 困難 . +I am a Japanese high school girl . 我 是 一個 日本 的 高中女生 . +The French lost the battle of Waterloo . 法國 人 在 滑鐵盧 之 役 吃 了 敗仗 . +I know that you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +He hid it behind the door . 他 把 它 藏在 了 门 后 . +He has a test next week . 他 下禮 拜要 考試 . +Where is the stage door ? 请问 剧场 后门 在 哪 ? +I am familiar with this subject . 我 熟悉 這個 主題 . +I want a lot more . 我 要 多 很多 . +His death was a great loss to our firm . 他 的 死 对 我们 公司 是 一个 巨大 的 损失 . +The teacher granted me permission to go home early . 老師 允許 我 提前 回家 . +What have you done with my bag ? 你 用 我 的 袋子 做 了 什麼 ? +She got sick this weekend . 她 周末 病倒 了 . +I bought a pen , but I lost it . 我 买 了 一支 钢笔 , 但 我 把 它 丢 了 . +Do you think I am crazy ? 你 认为 我 疯 了 吗 ? +A thousand yen will do . 1000 日元 足够 了 . +I can not agree with you . 我 无法 同意 你 的 意见 . +He will do whatever you ask him to . 他 會 做 任何 你 要求 他 做 的 事 . +I know I owe you money . 我 知道 我 欠 你 錢 . +Can you help me ? 你 能 幫 我 嗎 ? +If it rains tomorrow , we will stay at home . 如果 明天 下雨 , 我们 就 呆 在家 . +You have to work hard . 你 必须 努力 工作 . +Tom checked the TV schedule to see what was on . 汤姆 检查 电视 时间表 , 看看 在 上映 什么 . +Let is sit on the grass . 我们 坐在 草地 上 吧 . +I wish you 'd slow down . 我 希望 你 慢下 來 . +What is in the closet ? 橱柜 里 有 什么 ? +He can play both tennis and baseball . 他 既 会 打网球 , 又 会 打 棒球 . +Everybody jumped into the pool . 每個 人 都 跳進 了 游泳池 . +You are very early this morning . 你 今天 早上 非常 早 . +Would it be ethical to sacrifice one person to save many ? 为了 救 许多 人 牺牲 一个 人 是否 道德 ? +Tom is swimming . 汤姆 在 游泳 . +This piece is in a major key . 这 首 曲子 是 大调 . +He sells fruit . 他 卖 水果 . +He tried to concentrate on the letter . 他 试图 把 注意力 集中 在 信 上 . +The building is seven stories high . 這棟 建築物 有 七層 樓 高 . +I listen to the radio after dinner . 晚饭 后 我 听 收音机 . +This novel is very difficult to understand . 这部 小说 很 难 读懂 . +What does it mean ? 这 是 什么 意思 ? +The more books you read , the more you will know . 你 看 的 书 越多 , 你 知道 的 越多 . +Tom said he 'd be willing to do this . 汤姆 说 他 乐意 做 这事 . +You have many books . 您 有 很多 书 . +How is it going ? 你們 好 嗎 ? +I have to go to sleep . 我 该 去 睡觉 了 . +I can swim well . 我 游泳 可以 游 得 很 好 . +Tom wants children , but Mary does not . 汤姆 想要 孩子 , 但 玛丽 不想 . +We have no chance against those top players . 我们 没 机会 赢 那些 一流 选手 . +Keep to the left when driving . 車輛 靠左 行駛 . +She cut up the cloth to make bandages . 她 裁布 做 绷带 . +Everyone knows me . 大家 都 認識 我 . +Let is go out and eat dinner together from time to time . 讓 我們 偶爾 出去 一起 吃 晚餐 . +She traveled around Japan . 她 环游 了 日本 . +Tom does not mind helping Mary occasionally . 汤姆 不介意 偶尔 给予 玛丽 帮助 . +You should have helped him with his work . 你 應 該 幫 他 工作 的 . +You may choose any book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +I do hope you will come again . 我 很 希望 你 会 再 来 . +Keep it in a cool place . 保存 在 陰涼 的 地方 . +My leg was bitten by that dog . 我 的 腿 被 那 隻 狗 咬 了 . +I am walking with her . 我 正 跟 她 一起 走 . +Would you like another glass of wine ? 你 想 再 来 杯酒 吗 ? +How are you ? Did you have a good trip ? 你 怎么样 ? 旅游 愉快 吗 ? +My brother takes care of our dog . 我 弟弟 照顧 我們 的 狗 . +Hang on till I get to you . 坚持下去 直到 我 找到 你 . +I awoke to find it snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Each of them was given a prize . 他們 每個 人 都 被 授獎 了 . +This is the time he normally arrives . 他 这个 时候 该 到 了 . +If you hear hoofbeats , do not look for zebras . 不要 听 风 就是 雨 . +I really like him , but not his circle of friends . 我 真的 很 喜歡 他 , 可是 我 不 喜歡 他 周圍 的 朋友 . +They gave a big party for me . 他們 為 我 辦 了 一個 盛大 的 派 對 . +I will wait here till he comes back . 我会 在 这里 等 着 到 他 回来 的 . +Can you imagine walking on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I see a flower on the desk . 我 看见 书桌上 有 朵花 . +The room is full of people . 屋里 挤满 了 人 . +Mary treated her wounded knee . 玛丽 处理 了 膝盖 的 伤口 . +We just wanted to win . 我們 只 想 贏 . +My son is brushing his teeth . 我 儿子 在 刷牙 . +Is it true that you built this house by yourself ? 你 真是 自己 造 了 这栋 房子 吗 ? +If it rains tomorrow , I will not go to the picnic . 如果 明天 下雨 的话 , 我 就 不 去 野餐 了 . +I know how to solve the problem . 我 知道 怎么 解决 这个 问题 . +She always wears black . 她 總 是 穿著 黑色 的 衣服 . +Mother Nature is generous . 大自然 很 慷慨 . +I do not have a bike . 我 沒有 腳踏車 . +The hunter shot the fox dead . 獵人 射 殺 了 狐狸 . +I will get you some coffee . 我 會 給 你 帶 些 咖啡 . +The funeral was yesterday . 葬 禮 是 昨天 . +I thought you said something . 我 觉得 你 说 了 什么 . +The baby was sound asleep in her mother is arms . 孩子 在 母亲 的 怀中 熟睡 . +We have two children . 我們 有 兩個 孩子 . +I paid about fifty dollars . 我 花 了 大約 五十 美元 . +We went halfway up the mountain . 我們 爬 到 了 半山腰 . +I am pleased with his work . 對 於 他 的 工作 我 很 滿意 . +It may freeze next week . 下周 可能 会 结冰 . +I did not call on him because I had a cold . 我 没有 拜访 他 , 因为 我 感冒 了 . +He built a new house for himself . 他 給 自己 蓋 了 一棟 新房子 . +He is capable of teaching Spanish . 他 有 能力 教授 西班牙文 . +The evidence is clear . 证据确凿 了 . +I will buy a new car next month . 我 下个月 买辆 新车 . +I can come , too . 我 也 能 去 +The tsunami alert was cancelled . 海啸 的 警报 解除 了 . +Opinions vary from person to person . 观点 因人而异 . +Wash the dishes . 把 盤子 洗 了 . +She is in the bath . 她 在 浴室 . +I want to be the one who decides . 我 想 成为 决策 的 人 . +He likes to hunt . 他 喜欢 打猎 . +Tom asked us to leave him alone . 汤姆 要 我们 留 他 独自一人 . +She is absent because she is sick . 她 不 在 是因为 病 了 . +The project was a great success . 該 計劃 是 一個 大 成功 . +Scary movies will frighten the children . 恐怖片 會 嚇 到 小孩 . +There are many birds in this forest . 这个 森林 里 有 很多 小鸟 . +I must be leaving now . 我 現在 必須 離開 . +Tom can swim pretty well . 汤姆 能 游 得 很 好 . +Do your best in anything you do . 你 做 任何 事 都 要 尽全力 . +Keep trying . 继续 努力 . +I have a reservation for tonight . 我 有 今晚 的 預訂 . +Does he have any brothers ? 他 有 任何 的 兄弟 嗎 ? +If someone irritates you , it is best not to react immediately . 如果 有人 激怒 你 , 你 最好 不要 立刻 做出 反应 . +He sold his business and retired . 他 賣 掉 了 他 的 事業 並且 退休 . +His sudden appearance surprised us all . 他 的 突然 出现 , 让 我们 都 感到 惊讶 . +When will you leave ? 你 什么 时候 离开 ? +Health is better than wealth . 健康 勝 過 財富 . +They were afraid . 他们 害怕 了 . +Eating fish is good for your health . 吃 鱼 有益于 你 的 健康 . +There is a certain amount of truth in what he is saying . 他 說 的 話 有 一定 的 道理 . +You can not park around here . 你 不能 在 這 附近 停車 . +I am a member of the swimming club . 我 是 游泳 俱樂部 的 會員 . +I guess I will have to leave now . 我 想 我 現在 得 走 了 . +Go at once , otherwise you will be late . 立刻 走 , 否則 你 會 遲 到 . +The colors of the American flag are red , white and blue . 美国 国旗 的 颜色 是 红白 蓝 . +When does that start ? 什么 时候 开始 ? +She is a native speaker of French . 她 的 母語 是 法語 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +He threw a ball over the fence . 他 把 球 扔 過 了 柵欄 . +The fastest way to travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +Tom put his wallet on the desk . 汤姆 把 钱包 放在 了 桌子 上 . +It was truly depressing . 真的 令人 丧气 . +His low salary prevents him from buying the house . 他 的 低 薪水 让 他 买 不了 房 . +Speaking English is very difficult for me . 說 英語 對 我 來說 很困 難 . +Tom had never lied to me before . 湯姆 以前 從 不 向 我 說 謊 . +He has plenty of money in the bank . 他 在 银行 里 有 大量 钱财 . +Tom is thrilled . 汤姆 兴奋不已 . +We can do more than they can . 我們 能比 他們 做 得 多 . +Can you see ? 你 能 看 吗 ? +I know what you meant . 我 知道 你 是 什么 意思 . +Have you ever broken your glasses ? 你 摔坏 过 你 的 眼镜 吗 ? +He is started looking for a job . 他 开始 找 工作 了 . +I had him write it . 我 要 他 寫 . +Do you have something to say ? 你 有 什么 事 要说 吗 ? +There is only one bath towel . 只有 一條 浴巾 . +My son is tired of hamburgers . 我 的 兒子 厭煩 了 漢堡 包 . +Do not walk alone after dark . 不要 一個 人 在 黑暗 中 走 . +Any emotion , if it is sincere , is involuntary . 任何 情绪 , 只要 它 是 真诚 的 , 就 说明 它 是 发自内心 的 自然 流露 . +I am sorry , but I can not answer right away . 我 很 抱歉 , 但 我 無法 立即 回答 . +My father has been in good shape since his operation . 自从 手术 后 , 我 父亲 一直 处于 良好 的 状态 . +How long can I borrow this book ? 这 本书 我 能 借 多久 ? +Tom does not have a dad . 汤姆 没有 父亲 . +Tom doubts whether Mary is honest . 湯姆懷 疑 瑪麗 是否 誠實 . +In general , consumers prefer quantity to quality . 一般 來 說 , 消费者 喜歡 數量 勝 於 質量 . +Pass me the salt . 请 给 我 盐 . +I have not finished this . 我 做不了 這個 . +She is dieting . 她 在 节食 . +I found the work very interesting . 我 覺得 這個 工作 非常 有趣 . +Show me an example . 给 我个 例子 . +" What is going on in the cave ? I am curious . " " I have no idea . " " 山洞 裡 發生 了 什麼 事 ? " 我 很 好奇 . " 我 不 知道 . " +No matter what you say , the answer is " no . " 不管 你 說 什麼 , 答案 就是 " 不 . " +Which one is easier ? 哪 一個 最 簡單 ? +He asked for a drink of water . 他 要 了 水 喝 . +It may not be possible . 不太可能 . +I will take this umbrella . 我 將 拿 這 把 傘 . +Can you read ? 你 能 閱讀 嗎 ? +At first , I thought they were sick . 一 开始 , 我 以为 他 病 了 . +I like movies a lot . 我 很 喜歡 電影 . +It is no good trying to persuade her . 試圖 勸 她 是 沒 有用 的 . +We went to London last year . 我们 去年 去 了 伦敦 . +I asked him many questions about ecology . 我 問 了 他 許多 關 於 生態 環境 的 問題 . +What time was she born ? 她 幾點 出生 的 ? +You should tell the truth . 你 该 把 事实 说 出来 . +Yes , I have student ID . 是 的 , 我 有 學生 證 . +She got married when she was twenty @-@ five . 她 二十五 歲時 結婚 了 . +I remember locking the door . 我 記得 鎖門 了 . +I am going to stay here for a couple of days . 我 將 要 在 這裡 待 幾天 . +The baby is sleeping . 宝宝 正在 睡觉 . +Give me the book . 給 我 這 本書 . +I do not have many friends . 我 朋友 很少 . +Tom is playing the violin now . 湯姆 正在 拉 小提琴 . +Look out for cars when you cross the road . 當 你 過 馬路 的 時候 要 當心 汽車 . +I aimed my gun at the target . 我 把 我 的 手枪 指向 了 目标 . +English is a language spoken all over the world . 英語 是 一種 全世界 通用 的 語言 . +I finally persuaded him to buy it . 我 終 於 說 服 了 他 買 它 . +They are leaving Japan tomorrow . 明天 他們 將 離開 日本 . +The dog is blind in one eye . 這 隻狗的一 隻 眼睛 瞎 了 . +You must be careful of the traffic when you cross the street . 横穿马路 时 你 要 留心 . +He came to my house on the pretext of seeing me . 他 打着 见 我 的 幌子 来 了 我家 . +My brother has become a priest . 我 的 兄弟 已经 成为 了 牧师 . +Are you going to school tomorrow ? 你 明天 要 去 上 學 嗎 ? +It is night . 是 晚上 了 . +The danger is over . 危險 已過 去 . +Do not give in to those demands . 不要 屈服 於 這些 要求 . +I feel like this is not going to end well . 感觉 这 不会 有个 好 结局 . +Man is the only animal that can make use of fire . 人 是 唯一 会 使用 火 的 动物 . +What do you want to know ? 你 想 知道 什麼 ? +Did Tom give any other suggestions ? 汤姆 提出 其他 建议 了 吗 ? +A lot of students around the world are studying English . 世界 上 許多 學生 正在 學習 英語 . +I know life is short . 我 知道 生命 是 短暂 的 . +Did you complete the work ? 你 完成 工作 了 吗 ? +I have got blisters on my feet . 我 的 腳 起水泡 了 . +You can not live like this . 你 不能 這樣 活 . +I studied English when I was there . 當 我 在 那裡 的 時候 , 我 學習 英語 . +Some furniture is put together with glue . 一些 家具 是 用 膠水 黏在 一起 . +I hope people are satisfied . 我 希望 人们 满意 . +That is a shame . 那 是 一個 恥辱 . +Why do people commit suicide ? 为什么 人们 会 自杀 ? +How many pictures did you buy ? 你 買 了 多少 張圖 畫 ? +Tom used to swim a lot when he was younger . 汤姆 年轻 的 时候 经常 游泳 +Happy is the man who is contented . 知足常乐 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +Tom is Mary is uncle . 汤姆 是 玛丽 的 叔叔 . +If two men always have the same opinion , one of them is unnecessary . 如果 两个 人 总是 意见 相同 , 那么 他们 其中 一个 就 没 必要 了 . +She has a dog and six cats . 她 有 一只 狗 和 六只 猫 . +That river flows into the Pacific . 这条 河 汇入 太平洋 . +I had a funny dream last night . 我 昨晚 做 了 一個 有趣 的 夢 . +I could not sleep . 我 睡 不著 . +By the way , did you hear that Mary quit her job ? 话 说 , 你 听说 玛丽 辞职 了 吗 ? +She tends to be late for school . 她 往往 會 上學 遲到 . +We can change if we want to . 如果 我们 想 , 我们 就 能变 . +This is a true story . 这个 故事 是 真的 . +We had a heart @-@ to @-@ heart talk with each other . 我们 促膝谈心 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Her father is Japanese . 她 父親 是 日本 人 . +My father caught three fish yesterday . 昨天 我 爸爸 抓到 了 3 条鱼 . +She is eating an apple . 她 正 吃著 一個 蘋果 . +I threw away my shoes . 我 把 自己 的 鞋子 扔掉 了 . +He does not have any children . 他 沒有 孩子 . +I make it a rule not to watch television after nine o 'clock . 我 规定 自己 在 九点 之后 不 看电视 . +He usually went to bed at eleven . 他 通常 在 十一 點 上床 睡覺 . +Are not you hot ? 你 不 热 吗 ? +Instead of going to Europe , I decided to go to America . 我 决定 去 美国 , 而 不是 欧洲 . +He bumped his head against a post . 他 的 頭 撞 到 了 一根 柱子 . +Did you leave the window open ? 你 讓 窗戶 開著 嗎 ? +I will try to find them for you . 我会 努力 帮 你 找到 他们 . +He even called me an idiot . 他 甚至 骂 我 傻瓜 . +Where is the bathroom ? 廁 所在 哪裡 ? +I can do it without your help . 沒有 你 的 幫忙 我 也 能 做 . +This is a great moment . 这 是 一个 伟大 的 时刻 . +He is very angry . 他 非常 生气 . +They did not act quickly . 他们 没有 立刻 行动 . +Blondes earn 7 % more than women with any other hair color . 金 髮 女郎 比 其他 顏色 頭 髮 的 女人 多 賺 7 % . +Will you accept this job ? 你 会 接受 这份 工作 吗 ? +He is a bit lively . 他 有点 活泼 . +Are you good at mathematics ? 你 数学 好 吗 ? +Oh , no ! My house is on fire ! 哦 , 不 ! 我 的 房子 着火 了 ! +Was Tom watching TV last night ? 湯姆 昨天晚上 在 看電視 嗎 ? +Would you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +The company cancelled the meeting . 公司 取消 了 会议 . +She wrote to her parents at least once a week . 他 给 父母 写信 至少 一周 一次 . +Who are you going with ? 你 和 谁 一起 去 那 ? +" Why are not you going ? " " Because I do not want to . " " 你 为什么 不 去 ? " " 因为 我 不想 去 . " +I am very sad . 我 很 难过 . +I do not drink or smoke . 我 既 不 抽烟 也 不 喝酒 . +He said that it was nine o 'clock . 他 说 九点 了 . +Can you help me a little ? 你 能 帮 我 一点 忙 吗 ? +I think he will come . 我 想 他 会 来 的 吧 . +He is very good at guitar . 他 非常 擅長 吉他 . +I do not know , nor do I care . 我 不 知道 , 也 不想 知道 . +Does it matter to you how much it costs ? 它 花 多少 钱 对 你 很 重要 吗 ? +Tom showed up just in time . 汤姆 刚好 准时 到 了 . +I have something to tell you . 我 有事 要 告訴 你 . +I can not bear this noise any more . 我 无法 再 忍受 那 噪音 了 . +Who are you looking at ? 你 在看 谁 ? +Are oysters in season now ? 现在 牡蛎 当季 吗 ? +I almost drowned . 我 差點 被 淹死 . +You should have come earlier . 你 本 应该 来得 更早 的 . +Tom has just finished eating dinner . Tom 刚 吃 完 晚饭 . +He has a good grasp of English . 他 精通 英文 . +I like instrumental music . 我 喜歡 器樂 . +Tom does not even know how to fry an egg . 汤姆 甚至 连 怎么 煎 鸡蛋 都 不 知道 . +It is rude to laugh at others . 嘲笑 別人 是 無 禮 的 . +Why do not you have a party ? 你 為 什麼 不 舉行 派 對 ? +I am used to staying up late at night . 我 习惯 晚睡 . +He said , " Let is take a short rest . " 他 說 : 「 我們 休息 一下 . 」 +I always keep a dictionary close at hand . 我 总是 在 离手 不远 的 地方 放 一本 字典 . +The house was in flames . 房子 着火 了 . +I was very busy last week . 上星期 我 非常 地 忙 . +She called me many times . 她 打 了 很 多次 電話 給 我 . +We will go when it quits raining . 雨 停 了 我們 就 會 去 . +Tom will go there tomorrow . 湯姆 明天 會 去 那裡 . +He was brought up in Australia . 他 在 澳大利亚 长大 . +The train has arrived . 這 班 火車 已經 到 了 . +It has not been easy for Tom to deal with Mary is health problems . 处理 玛丽 的 健康 问题 对 汤姆 来说 不 容易 . +The car was going forward . 车 往前走 . +I have got a pacemaker . 我 裝 了 個 心臟 起搏器 . +It suddenly started raining . 突然 開始 下雨 . +The meeting ended at 4 : 00 p.m. 會議 於 下午 4 點 結束 . +You do not have to eat . 你 不必 吃 . +How about going out tonight ? 今晚 出去 怎么样 ? +Do you think Tom is wealthy ? 你 認為 湯姆 有 錢 嗎 ? +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +Call an ambulance . 叫 救护车 . +I have got a headache . 我 头痛 . +Someone is been here recently . 有人 刚才 在 这里 . +He went to London in 1970 . 他 1970 年 去 了 伦敦 . +In Hungary they speak Hungarian . 在 匈牙利 說 匈牙利 文 . +I have lost patience with Tom . 我 对 汤姆 失去 了 耐心 . +Do you plan to go abroad ? 你 打算 出国 吗 ? +I seem to be unlucky today . 我 今天 看來 很幸 運 . +We have no reason to feel ashamed . 我们 没理由 害臊 . +Please turn down the radio . 請 把 收音 機關 小聲 一點 . +You do not deserve it . 你 不配 . +I read about him in the newspaper . 我 在 報紙 上 讀到 有關 他 的 消息 . +Mary is very pretty . 瑪麗 很漂亮 . +I opened the box and looked inside . 我 打開 盒子 看看 裡面 . +Are you sure ? 你 确定 ? +It seems so familiar . 这 看起来 似曾相识 . +Write it in pencil . 用 鉛筆 寫 . +Man cannot live forever . 人 无法 长生不死 . +He looked for every possible means of escape . 他 寻找 一切 可能 的 逃生 途径 . +How old are your kids ? 你 的 孩子 多 大 了 ? +She loves Tom . 她 愛 湯姆 . +You should do that soon . 你 應該 很快 那樣 做 . +Tom ate only one sandwich . Tom 吃 了 唯一 一个 三明治 . +I never liked biology . 我 從來 沒 喜歡 過 生物 學 . +Come in , the door is open . 進來 , 門 是 開 的 . +He likes French more than German . 他 喜歡 法語 勝 過 德語 . +I found the key underneath the mat . 我 在 擦鞋 墊 下面 發現 了 這 把 鑰匙 . +I have a good appetite today . 我 今天 的 食 慾 很 好 . +Mutual understanding promotes peace . 相互理解 能 促进 和平 . +Please let me know what you want . 請 讓 我 知道 你 要 什麼 . +Tom forgot to do his homework . 汤姆 忘 了 做作业 . +I have not seen him since then . 從 那時 起 我 就 沒有 看到 他 . +I have not seen her since then . 我 從 那時 起 就 沒有 見 過 她 . +Will you permit me to go there ? 您 允许 我 去 吗 ? +I want much more . 我 要 多 很多 . +My older sister plays the guitar well . 我 姐姐 吉他 弹 得 很 好 . +You will not be happy no matter what I do . 无论 我 做 什么 , 你 都 不 高兴 . +How about going out for lunch ? 出去 吃 午 飯 怎樣 ? +I should have gone to bed earlier last night . 我 昨晚 应该 早点 睡觉 的 . +I know very little about Tom . 我 对 汤姆 知道 得 很少 . +The number of people suffering from heart disease has increased . 遭受 心脏病 困扰 的 人数 增加 了 . +What do you think about it ? 你 認為 如何 ? +Tokyo is the largest city in Japan . 東京 是 日本 最大 的 城市 . +I love my work very much . 我 非常 喜欢 我 的 工作 . +I am busy today . 我 今天 忙 . +You should be careful not to become overconfident . 你 要 注意 不要 太 自信 . +The bread is not fresh . 面包 不 新鲜 . +I think you are ready . 我 認為 你 準備 好 了 . +They like apples . 他们 喜欢 苹果 . +I like rice more than bread . 比起 面包 , 我 更 喜欢 米饭 . +He is bound to notice your mistake . 他 必定 會 覺察 到 你 的 錯誤 . +You 'd better do as the doctor advised you . 你 最好 照着 医生 的 建议 做 . +We enjoyed ourselves very much . 我們 玩 的 很 開心 . +He was afraid of being laughed at . 他 怕 被 嘲笑 . +This flower is beautiful , is not it ? 這 朵花 很 美 , 不是 嗎 ? +How much do you want in terms of salary ? 您 想要 多少 工资 ? +What I hate most of all is having to recite texts from memory . 我 最 讨厌 背诵课文 了 . +A man is responsible for his deeds . 一个 人 要 为 他 的 行为 负责 . +He loves her . She loves him , too . 他 愛 她 . 她 也 愛 他 . diff --git a/TRANSLATE/cmn.txt_train_tokenized.tsv.fast b/TRANSLATE/cmn.txt_train_tokenized.tsv.fast new file mode 100644 index 0000000..d9150d9 --- /dev/null +++ b/TRANSLATE/cmn.txt_train_tokenized.tsv.fast @@ -0,0 +1,19222 @@ +Put on some sunscreen . ||| 涂点 防晒 吧 . +The two nations have strong trade ties . ||| 这 两个 国家 有 强大 的 贸易 关系 . +Excuse me , I am lost . ||| 不好意思 , 我 迷路 了 . +You seem to be prejudiced against ideas that come from foreign countries . ||| 你 似乎 對 來 自 國外 的 想法 有 偏見 . +Do you know what is happened ? ||| 你 知道 发生 了 什么 事情 吗 ? +Our supplies are running out . ||| 我们 的 供给 要用 完 了 . +I am fed up with this weather . ||| 我 受够了 这 天气 . +This is the cheapest store in town . ||| 這 是 鎮 上 最 便宜 的 商店 . +I decided to study every day . ||| 我 決定 每天 用功 讀書 . +We do not care what he does . ||| 我們 不在乎 他 做 什麼 . +What is the purpose of your visit ? ||| 你 此行 的 目的 是 什麼 ? +The school is located within five minutes ' walk of the station . ||| 學校 坐落 於 距離 車站 步行 五分 鐘 的 地方 . +Speech is silver , but silence is golden . ||| 雄 辯 如 銀 , 沉默 如 金 . +My aunt sent me a birthday present . ||| 我 阿姨 送 了 我 一個 生日 禮物 . +After climbing Mt . Fuji , I got the inspiration for a poem . ||| 攀登 富士山 後 , 我 得到 了 一首 詩 的 靈感 . +This will keep you warm . ||| 这个 能 保暖 . +Any bed is better than no bed . ||| 任何 床 都 比 沒有 床 好 . +There were two bridges . ||| 那里 有 两座 桥 . +We get the materials from Malaysia . ||| 我們 從 馬來西亞 得到 材料 . +She asked me a question . ||| 她 問 了 我 一個 問題 . +I am proud of you . ||| 我 以 你 為 榮 . +He told me that he was busy then . ||| 他 告诉 我 他 那时 很忙 . +A computer is a complex machine . ||| 电脑 是 个 复杂 的 机器 . +What should they do in this situation ? ||| 在 这种 情况 下 , 他们 该 做 什么 ? +My mother is busy in the kitchen . ||| 我 的 母親 在 廚房 裡 正忙 著 . +How many rackets do you have ? ||| 你 有 多少 支 球拍 ? +I have always wanted to meet you . ||| 我 一直 想見 你 . +His job is driving a sight @-@ seeing bus . ||| 他 的 工作 是 驾驶 观光 巴士 . +I collect stamps . ||| 我 收集 郵票 . +We know that . ||| 我们 知道 . +There are many ships in the harbor . ||| 港口 內 有 許多 船 . +That was not so hard , was it ? ||| 那 不难 , 是 吧 ? +I objected to his paying the bill . ||| 我 反 對 他 付 帳 單 . +You are allowed to use the hotel is swimming pool . ||| 你 有权 使用 旅馆 的 游泳池 . +I read the book after I had finished my homework . ||| 我 做 完 我 的 功课 后 , 就读 这 本书 . +President Lincoln was what we call a self @-@ made man . ||| 林肯 總統 就是 我們 所謂 白手起家 的 男人 . +Like father , like son . ||| 有其父必有其子 . +The captain is responsible for the safety of passengers . ||| 船长 要 为 乘客 安全 负责 . +When I heard that song , it reminded me of when I was a kid . ||| 我 聽到 那首歌 時 , 它 讓 我 想起 了 我 小 的 時候 . +The clock has stopped . ||| 時鐘 已經 停止 了 . +Even Tom does not do that anymore . ||| 甚至 湯姆 都 不再 做 了 . +At last , she solved the problem . ||| 最 後 , 她 解決 了 這個 問題 . +I visit him every other day . ||| 我 每隔 一天 拜訪 他 . +He works from Monday to Friday . ||| 他 周一 到 周五 上班 . . +Tom knows that I used to live in Boston . ||| 湯姆 知道 我 在 波士 頓 住 過 . +This is the house where I live . ||| 这 是 我 住 的 房子 . +Birds fly . ||| 鳥類 飛行 . +She is always dressed in black . ||| 她 總 是 穿著 黑色 的 衣服 . +Excuse me for opening your letter by mistake . ||| 對 不起 , 我 錯 開 了 你 的 信 . +He was admitted without taking the exam . ||| 他 承認 沒有 參 加考 試 . +He has been dead for ten years . ||| 他 已經 死 了 十年 . +He broke the law . ||| 他 触犯 了 法律 . +Tom likes it hot . ||| 汤姆 喜欢 热 的 . +There is no denying the fact . ||| 這 是 無 可否 認 的 事實 . +He loves her . ||| 他 愛 她 . +Do you get up at six ? ||| 你 六点 起床 吗 ? +I was born on October 10th , 1972 . ||| 我 在 一九七二年 十月十日 出生 . +He flew a kite with his son . ||| 他 和 他 的 儿子 放风筝 了 . +Did you go out last night ? ||| 你 昨天晚上 出去 了 嗎 ? +She found her purse under the desk . ||| 她 在 桌子 底下 找到 了 她 的 錢 包 . +He was killed by a single bullet . ||| 他 被 一顆 子彈 打死 了 . +I am going to get rid of all this stuff . ||| 我 要 摆脱 这 一切 . +I no longer wish to be your wife . ||| 我 不想 做 你 老婆 了 . +Hi . ||| 嗨 . +How is it going at school ? ||| 学校 怎么样 ? +I am just a plain old office worker . ||| 我 只是 一個 普通 的 老式 上班族 . +My name does not appear on the list . ||| 我 的 名字 沒有 出現 在 名單 上 . +A hare raced with a tortoise . ||| 兔子 和 乌龟 赛跑 . +The children were flying kites . ||| 孩子 們 在 放 風箏 . +Is it true or did Tom make that story up ? ||| 這 是 事實 還 是 Tom 編 的 故事 ? +You work as hard as he did at your age . ||| 你 跟 他 在 你 這個 年紀時 一樣 努力 工作 . +I wonder what I should do today . ||| 我 在 想 我 今天 该 干什么 . +That is my final answer . ||| 这 是 我 的 最终 回答 . +I can not fall asleep . ||| 我 睡不着 觉 . +Mind your manners . ||| 规矩 点 . +You do not need to do this . ||| 你 不 需要 做 这事 . +He left ten minutes ago . ||| 他 十分 鐘 前 離開 了 . +Freedom is very , very important . ||| 自由 非常 非常 重要 . +We stayed with them all through the summer . ||| 我们 整个 夏天 都 和 他们 待 在 一起 . +I wish I were younger . ||| 但 願 我 年 輕 一點 . +I overslept . ||| 我 睡 过头 了 . +I do not know what I am going to do next . ||| 我 不 知道 接下来 我 要 做 什么 . +She does not know how to play golf . ||| 她 不 知道 怎麼 打 高爾夫 球 . +He slipped me a note . ||| 他 悄悄地 递给 我 一张 纸条 . +Do not look into my room . ||| 不要 往 我 房间 里 看 . +It is dangerous to fool around with electricity . ||| 隨便 亂 弄 電是 危險 的 . +It is not that easy to learn a new language after fifty . ||| 五十岁 以后 学 一门 新 的 语言 不是 那么 容易 . +Thanks for accepting my friend request on Facebook . ||| 謝謝 你 接受 我 Facebook 的 交友 邀請 . +I have nothing to do with that crime . ||| 这个 犯罪 和 我 一点 关系 都 没有 . +His house was struck by lightning . ||| 他 的 房子 遭到 雷擊 . +I had a vision . ||| 我 有 一个 愿景 . +It was not my fault . ||| 那 不是 我 的 錯 . +Do you know of any good restaurant near here ? ||| 你 知道 这儿 附近 有 什么 好 餐馆 吗 ? +Class does not begin until eight @-@ thirty . ||| 八點半 開始 上課 . +I really enjoyed myself tonight . ||| 今晚 我 玩 得 很 開心 . +That is a nice car you are driving . ||| 你 開 的 那輛 車 很 不錯 . +This is one of the best restaurants I have ever eaten in . ||| 这 是 我 吃 过 的 最好 的 餐馆 之一 . +He is always laughing . ||| 他 总是 在 笑 . +Do not laugh at him for making a mistake . ||| 不要 因为 他 犯 了 一个 错误 就 嘲笑 他 . +There is no need to hurry . ||| 沒有 必要 著急 . +There is a hair in my soup . ||| 我 的 湯 裡 有 一根 頭 髮 . +How about another round ? ||| 再 來 一輪 怎麼樣 ? +I spent twelve hours on the train . ||| 我 在 火车 上待 了 12 小时 . +Are you going or not ? ||| 你 去 還 是 不 去 ? +Get it done as soon as possible . ||| 盡快 把 它 完成 . +I need a stamp . ||| 我 需要 一張 郵票 . +Is there anything else you want ? ||| 还有 什么 想要 的 吗 ? +You 'd better take an umbrella with you . ||| 你 最好 隨身 帶 把 傘 . +I will wait for you in front of the radio station . ||| 我 會 在 電 台前 等 你 . +You are looking tired . ||| 你 看起来 很困 了 . +The teacher assembled the students in the hall . ||| 老師 在 禮堂 把 學生 們 集合 起來 . +It is hardly worth discussing . ||| 這 幾乎 不 值得 討論 . +An army marches on its stomach . ||| 胃 里 如同 千军万马 开过 . +He studied very hard . ||| 他 学习 非常 努力 . +A fly can walk on the ceiling . ||| 蒼蠅 能 在 天花板 上 走 . +She tried to lift the box , but found it impossible to do . ||| 她 試著 舉起 箱子 , 但 發現 不 可能 做到 . +Where have you been ? ||| 你 一直 在 哪里 ? +All the signs are that she is getting better . ||| 所有 迹象 表明 她 好 起来 了 . +He seldom goes to church . ||| 他 很少 去 教堂 . +Do you want anything to eat ? ||| 您 想 吃 点 什么 吗 ? +I like sports . ||| 我 喜歡 運動 . +The accident seemed to have something to do with the heavy snow . ||| 事故 似乎 和 厚厚的 积雪 有关 . +Work harder if you plan to succeed . ||| 如果 你 計劃 要 成功 , 就要 更加 努力 地 工作 . +He stretched out his arm to take the book . ||| 他 伸长 了 手臂 为了 能 拿到 书 . +The teacher made me repeat the sentence . ||| 老師 讓 我 重 複 了 這 句 話 . +It is easy to add 5 to 10 . ||| 5 加 10 很 简单 . +We had lunch at a little coffee shop . ||| 我們 在 一家 小 咖啡店 吃 午 飯 . +I have something to give you . ||| 我 有些 东西 要 给 你 . +He studied abroad . ||| 他 出国 留学 了 . +You can use this car . ||| 你 可以 使用 這輛 車 . +I would like to come with you . ||| 我 想 和 你 一起 走 . +I remember returning the book to the library . ||| 我 记得 我 把 书 还 到 图书馆 了 . +There are noticeable differences between the two . ||| 两者之间 有 显著 的 差别 . +The chicken is undercooked . ||| 雞肉 還 不夠 熟 . +The bus stop is across the street . ||| 公車 站牌 就 在 街 對 面 . +Do you like oranges ? ||| 你 喜歡 橙子 嗎 ? +This store has a variety of spices . ||| 這家 商店 有 各種 香料 . +I get the feeling you are trying to tell me something . ||| 我 感觉 你 想 告诉 我 什么 事 . +She is not at home now . ||| 她 現在 不 在家 . +There was no one in the room besides Tom and Mary . ||| 除了 汤姆 和玛丽 , 房间 里 没有 人 . +He held a package under his arm . ||| 他 把 一個 包裹 挾 在 腋下 . +Tom made his servants eat in the dark . ||| 汤姆 让 他 的 仆人 们 在 黑暗 下 进餐 . +Is your school far from your home ? ||| 你 的 學校 離 你家 很 遠 嗎 ? +Do you know how to play mahjong ? ||| 你 知道 怎麼 打 麻將 嗎 ? +I have lost my wallet . ||| 我 掉 了 我 的 钱包 . +He substituted for his father . ||| 子承父业 . +Tom said he 'd think about my suggestion . ||| 汤姆 说 他 会 考虑 我 的 问题 . +I can not believe that . ||| 我 不能 相信 . +I would do anything for Tom . ||| 我会 为 汤姆 做 任何 事 . +You deserve to succeed . ||| 你 的 成功 是 应得 的 . +Waitress , I would like to order . ||| 服务生 , 我 要 点菜 . +Please give me a call . ||| 请 给 我 打电话 . +He is in the kitchen . ||| 他 在 厨房 . +Where is the longest tunnel in Japan ? ||| 日本 最长 的 隧道 在 哪里 ? +Tom and Mary are very hungry . ||| 汤姆 和玛丽 很 饿 . +You must do it . ||| 你 必須 去 做 . +Everybody but Tom knew he did not need to do that . ||| 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I know him by sight , but not by name . ||| 我 知道 他 的 样子 , 但 不 知道 他 的 名字 . +This river is safe to swim in . ||| 在 这条 河里 游泳 很 安全 . +Perseverance , as you know , is the key to success . ||| 就 像 你们 知道 的 那样 , 毅力 是 成功 的 关键 . +He did the reverse of what I asked . ||| 他 做 的 和 我 要求 的 相反 . +He may come tomorrow afternoon . ||| 他 明天 下午 可能 會來 . +I stay at home on Sundays . ||| 我 星期天 在家 . +You must take his age into account . ||| 你 该 考虑 他 的 年纪 . +We need to make a plan . ||| 我们 需要 做 计划 . +Father recovered his health . ||| 爸爸 恢复 了 健康 . +This towel is so soft and fluffy . It feels good ! ||| 这 条 毛巾 蓬松 又 柔软 , 特别 舒服 . +We must take into account the wishes of all the family in planning a trip . ||| 筹划 旅行 的 时候 , 我们 必须 考虑 到 全家人 的 意愿 . +What subject do you like best ? ||| 你 最 喜歡 哪 一個 科目 ? +I do not think it is going to be easy to find Tom . ||| 我 认为 , 要 找到 汤姆 可不 容易 . +She really wants to lose weight . ||| 她 真的 想 減肥 . +Let is take a look . ||| 讓 我們 看看 吧 . +Tom kissed Mary on the cheek . ||| 汤姆 亲 了 玛丽 脸颊 . +" The phone is ringing . " " I will get it . " ||| “ 电话响 了 . ” “ 我 来 接 . ” +If that were true , what would you do ? ||| 如果 这 是 真的 , 您 要 怎么办 ? +Tom follows orders . ||| 汤姆 服从命令 . +You should not say that kind of thing when children are around . ||| 孩子 们 在 旁边 的 时候 , 你 不 应该 说 那种 事 . +Do you know the meaning of this word ? ||| 您 知道 这个 词 的 意思 吗 ? +Could you tell me where Tom is ? ||| 你 能 告訴 我 湯姆 在 哪裡 嗎 ? +Come on over to have a try . ||| 你 過來 試試 看 . +Would you look after my cat ? ||| 你 可以 照顧 一下 我 的 貓 嗎 ? +He asked me why I was laughing . ||| 他 問 我 為 什麼 在 笑 . +Let is turn back . ||| 我们 掉头 吧 ! +She made me a nice dress . ||| 她 做 了 一件 好看 的 衣服 給 我 . +All the dogs are alive . ||| 所有 狗 都 活着 . +Let is drive to the lake . ||| 讓 我們 開車 到 湖邊 . +Clean your room . ||| 打扫 一下 你 的 房间 . +It is easy to make friends , but hard to get rid of them . ||| 交朋友 很 容易 , 但 擺脫 他們 很 難 . +There are subtle differences between the two pictures . ||| 这 两张 图片 之间 有 细致 的 差异 . +I am innocent . ||| 我 是 清白 的 . +I am not the least bit worried . ||| 我 一點 也 不 擔心 . +She was surprised that he showed up . ||| 她 很 驚訝 他 出現 了 . +Tom came over to my house for dinner yesterday . ||| 汤姆 昨天 来 我家 吃晚饭 . +Stay out of this . ||| 别 插手 . +It is none of your business . ||| 跟 你 没 半 毛钱 关系 . +Here is your tea . ||| 这 是 你 的 茶 . +You will have to play it by ear at the interview . ||| 在 面試 的 時候 你 必須 見 機 行事 . +It is hard to say what the weather will be like tomorrow . ||| 很难说 明天 的 天气 将 会 怎样 . +He wants to work in a hospital . ||| 他 想 在 醫院 工作 . +I am looking for books on Roman history . ||| 我 在 找 关于 古罗马 历史 的 书 . +I am going to play tennis . ||| 我 要 去 打 網球 . +I lost my ticket . What should I do ? ||| 我 丢 了 我 的 票 . 我 該 怎麼 辦 ? +A stitch in time saves nine . ||| 小洞 及時 補 , 免遭 大洞 苦 . +Which do you like better , spring or fall ? ||| 春天 和 秋天 , 你 更 喜欢 哪个 ? +I saw the film in San Francisco last year . ||| 我 去年 在 舊 金山 看 這部 電影 . +You should take care of your sick mother . ||| 你 應該 照顧 你 生病 的 母親 . +Would you give me a hint ? ||| 你 可以 给 我 一个 提示 吗 ? +I know that he was busy . ||| 我 知道 他 忙 . +No matter where you go , I will follow you . ||| 無論 你 去 哪裡 我 都 會 跟著 你 . +Tom asked me to tell you he did not plan on going to Boston with you . ||| 汤姆 让 我 告诉 你 他 没有 计划 和 你 一起 去 波士顿 . +It is your business to take care of them . ||| 照顾 他们 是 你 自己 的 事儿 . +One of them is a spy . ||| 他們 其中 一 人 是 間諜 . +I demand an explanation for this mistake . ||| 我 要求 說明 這個 錯誤 . +His house is across from mine . ||| 他 的 房子 在 我 的 對面 . +Somehow I thought you 'd say that . ||| 我 就 知道 你 会 这么 说 . +When will they arrive ? ||| 他們 何時 抵達 ? +Would you like to leave a message ? ||| 你 要 留言 嗎 ? +I will wait . ||| 我 會 等 . +Tom could not help but smile . ||| 汤姆 帮不了 , 只能 笑笑 . +I do not care all that much . ||| 我 不 那么 在意 . +She came from Canada to see me . ||| 她 從 加拿大 來看 我 . +I am still hungry . ||| 我 还 饿 着 呢 . +My father goes to work by bike . ||| 我 父親 騎 自行 車 去 上班 . +I missed you . ||| 我 想念 你 . +He says he will not come . ||| 他 說 他 不 會 來 . +Both Tom and his wife grew up in Australia . ||| 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +" You talk too much , " he said . ||| “ 你 说 得 太 多 了 , ” 他 说道 . +I want an MP3 player ! ||| 我 想要 一个 MP3 播放器 ! +She lives in New York . ||| 她 住 在 纽约 . +Do you really mean that ? ||| 你 是 认真 的 吗 ? +The warrior is conscious of both his strength and his weakness . ||| 戰士 知道 自己 的 力量 和 弱點 . +Smoking is harmful to your health . ||| 吸烟 有害 健康 . +We just moved in . ||| 我們 才 剛 搬 進來 . +I get a kick out of her cheerful personality . ||| 她 開朗 的 個性 使 我 覺得 快樂 . +Scary , is not it ? ||| 嚇 人 , 不是 麼 ? +Tom just got back from Australia . ||| 汤姆 刚 从 澳大利亚 回来 . +Do you go to a private school ? ||| 你 在 私立学校 读书 吗 ? +I saw a light in the distance . ||| 我 看见 远处 有 灯光 . +I know you are going to say no . ||| 我 知道 你 要 說 不 . +I am not satisfied with my English ability . ||| 我 不 滿意 我 的 英語 能力 . +Tell me what to do . ||| 告訴 我 該 做 什麼 . +She has been sick for three weeks . ||| 她 已經 病 了 三個 星期 了 . +What are you reading ? ||| 你 在 看 什么 ? +We did not expect him to finish the task in so short a time . ||| 我们 没指望 过 他 在 那么 短 的 时间 里 完成 工作 . +I was in Tokyo yesterday . ||| 我 昨天 在 東京 . +I walked in the woods by myself . ||| 我 自己 走進 了 樹林 裡 . +Go get your helmet . ||| 戴 上 你 的 安全帽 . +I am fairly certain Tom lives on Park Street . ||| 我 很 确定 汤姆 住 在 公园 街 . +The old man walked across the road carefully . ||| 老人 小心翼翼 地 过 了 马路 . +Mary is going to help us tomorrow . ||| 玛丽 明天 会来 帮 我们 . +That makes no sense at all . ||| 这 没有 任何 意义 . +I do not think she is happy . ||| 我 觉得 她 不 开心 . +You have got to apologize . ||| 你 應該 道歉 . +They moved here three years ago . ||| 他們 三年 前 搬到 了 這裡 . +You 'd better go home . ||| 你 最好 回家 . +He was a very good skier when he was little . ||| 他 年 輕 時 很 會 滑雪 . +How old is that painting ? ||| 那幅 画 有 多少 年 了 ? +At that time , Tom was sitting between Mary and John . ||| 在 那个 时候 , 汤姆 正 坐在 玛丽和 约翰 中间 . +It was terrible . ||| 真糟糕 . +Tom is the only guy in this class . ||| 汤姆 是 这个 班级 里 唯一 的 男生 . +Perfect ! ||| 完美 ! +We have to put off the game till next Sunday . ||| 我们 不得不 把 游戏 搁到 下 周日 了 . +Translate the passage word for word . ||| 逐字 地 翻譯 這個 段落 . +I have neither seen nor heard of such a thing . ||| 我 没 见 过 也 没 听 过 这样 的 事 . +No one is calling you a thief . ||| 沒 人 叫 你 小偷 . +One must be responsible for one is conduct . ||| 人 要 为 自己 的 行为 负责 . +I work for an oil company . ||| 我 為 一家 石油 公司 工作 . +The Oscar ceremonies are Hollywood is biggest extravaganza . ||| 奥斯卡 颁奖典礼 , 是 好莱坞 最 盛大 的 活动 . +We enjoyed watching TV . ||| 我們 喜歡 看電視 . +Did not you write a letter to him ? ||| 你 沒 寫信 給 他 嗎 ? +I am so fat . ||| 我 好 胖 哦 . +Mary is studying in her room . ||| 瑪麗 在 她 的 房間 裡 讀 書 . +I just got your letter yesterday . ||| 我 昨天 剛 收到 你 的 信 . +How hot is that ? ||| 那個 東西 有 多 熱 ? +Is there life on Mars ? ||| 火星 上 有 生命 嗎 ? +" Shall I have him call you when he gets back ? " " Yes , please . " ||| “ 等 他 回来 , 我 要 让 他 给 你 打电话 吗 ? ” “ 是 的 , 谢谢 . ” +You 'd better go to see your family doctor at once . ||| 你 最好 立刻 去 看 你 的 家庭 醫生 . +Let me introduce you to him . ||| 讓 我 把 你 介紹 給 他 . +Did you push the button ? ||| 你 按了 按 鈕 嗎 ? +That was a month ago . ||| 那 是 一個 月 前 了 . +Tom was very sick . ||| 汤姆 很 虚弱 . +I should not have logged off . ||| 我 不 應該 登出 . +They will be grateful . ||| 他們 會 感激 . +Tom has no siblings . ||| Tom 沒有 兄弟 姊妹 . +Do you believe me ? ||| 你 相信 我 吗 ? +I am very happy . ||| 我 很 幸福 . +Beware of thieves . ||| 注意 小偷 . +Are you Japanese ? ||| 你 是 日本 人 嗎 ? +Some foods make you thirsty . ||| 有些 食物 令人 口渴 . +He picked up a mirror and examined his tongue . ||| 他 拿 了 面 镜子 细看 自己 的 舌头 . +Tom hung his jacket in the hall closet . ||| 汤姆 把 他 的 夹克 挂 在 大厅 衣柜 里 . +We have to fix the date for our trip quickly . ||| 我们 必须 快点 定下 旅游 日期 . +We are special . ||| 我们 很 特别 . +The show was wonderful , but the tickets were too expensive . ||| 这场 秀 棒极了 , 但是 门票 太贵 了 . +Everybody knew Tom was good at French . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +I think you are a really nice guy . ||| 我 認為 你 真的 是 一個 好人 . +Would you like to go abroad ? ||| 你 想 出 國 嗎 ? +All I want is my freedom . ||| 我 只要 自由 . +I will study your report . ||| 我 會 研究 你 的 報告 . +Did Tom not know what to do ? ||| 汤姆 不 知道 该 做 什么 吗 ? +London , the capital of England , is on the Thames . ||| 英国 首都 伦敦 在 泰晤士河畔 . +I ate curry last night . ||| 我 昨晚 吃 了 咖喱 . +She married a rich man . ||| 她 嫁给 了 一个 有钱人 . +Tell me what you did to Shounan . ||| 告诉 我 你 对 湘南 做 了 什么 . +Tom was sitting alone at one of the tables near the door . ||| 湯姆 獨自 坐在 門邊 一個 桌子 旁 . +I wondered if her story was true . ||| 我 想 知道 她 的 故事 是否是 真的 . +You should not have done it . ||| 你 不 應 該 做 的 . +Customs include food , celebrations and dancing . ||| 风俗习惯 包括 食物 , 庆祝 和 舞蹈 . +I am not afraid of dying . ||| 我 不怕死 . +Our mother bought us a puppy . ||| 我們 的 媽媽 買 了一 隻 小狗 給 我們 . +What will you be doing at this time tomorrow ? ||| 你 明天 这个 时候 会 是 在 做 什么 ? +He is very influential in the world of medicine . ||| 他 在 医学界 有 很大 的 影响力 . +Please speak more loudly . ||| 請 說 大聲 一點 兒 . +I understood Tom is point of view . ||| 我 理解 汤姆 的 观点 . +We have less than five minutes to evacuate the whole building . ||| 我们 有 不到 五分钟 来 疏散 整栋 楼 的 人 . +I have never known anyone as hypocritical as you . ||| 我 从来 没有 见 过 谁 像 你 这么 虚伪 的 . +He threw a rock into the pond . ||| 他 扔 了 一塊 石頭 到 池塘 裡 . +I 'd like something to eat . ||| 我 想 吃 点 东西 . +The road is very treacherous . ||| 这 条路 挺 险恶 . +We want a new carpet . ||| 我们 想要 一条 新 毯子 . +Tom did not write back to Mary . ||| 汤姆 没 给 玛丽 写 回复 . +It is pitch black outside . ||| 外面 一片 漆黑 . +I am not sure . ||| 我 不 确定 . +You can use my car if you like . ||| 如果 你 喜歡 你 可以 用 我 的 車 . +This is a stupid design . ||| 这份 设计 很蠢 . +Nobody would listen to me . ||| 沒 有人 會 聽 我 說 . +He arrived after the bell rang . ||| 鈴 響 後 他 就 到 了 . +I said that . ||| 我 是 那樣 說 的 . +Tom is in the living room . ||| 汤姆 在 起居室 里 . +Nice to meet you . ||| 很 高興 認識 你 . +I told Tom what to do . ||| 我 告诉 了 汤姆 要 做 什么 . +When was Tom fired ? ||| 湯姆 什麼 時候 被 解雇 的 ? +She is as busy as Tom . ||| 她 和 湯姆 一樣 忙 . +Cities are exciting places , but also stressful . ||| 城市 是 令人 興奮 的 地方 , 但 也 會 讓 人 產生 壓力 . +It is never too late to make amends . ||| 彌補 永遠 不 會 太晚 . +I can win this time . ||| 我 這 回能 贏 . +Leave the room immediately . ||| 馬 上 離開 房間 . +Turn left . ||| 向左转 . +Jealousy made him do that . ||| 嫉妒 讓 他 那樣 做 . +Who invented that ? ||| 那 是 谁 发明 的 ? +Which translation of this book do you think is better , the French one or the English one ? ||| 你 觉得 这 本书 的 哪个 译本 比较 好 ? 法语 的 还是 英语 的 ? +I am the owner of this house . ||| 我 是 這 房子 的 主人 . +I already talked to this student . ||| 我 已经 和 这个 学生 谈 过 话 了 . +He is often absent from school . ||| 他 经常 翘课 . +Why do not you stay a little while ? ||| 你 為 什麼 不 留下 來 一會兒 ? +I will never forget your kindness . ||| 我 永遠 不 會 忘記 你 的 親切 . +Have you taken your medicine yet ? ||| 您 已经 吃 过 药 了 吗 ? +There is been a death in his family . ||| 他 的 家 不幸 有人 身亡 . +I agreed with her . ||| 我 同意 她 . +Do not move ! ||| 别动 ! +It was beginning to snow . ||| 開始 下雪 了 . +This tunnel is twice as long as that one . ||| 這條 隧道 是 那 條 的 兩倍 長 . +I think you should open an account here . ||| 我 认为 你 应该 在 这里 开 个 账户 . +Do you ever dream about flying through the sky ? ||| 你 曾經 夢想 在 天空 飛翔 嗎 ? +My left eyelid is twitching . ||| 我 的 左 眼皮 在 跳 . +Do I have to do it right away ? ||| 我 必須 立刻 做 嗎 ? +He has not written to us since last February . ||| 他 從 去年 二月 開始 就 沒 寫信 給 我們 . +He is good at driving . ||| 他 擅長 駕駛 . +He may have lost his way . ||| 他 可能 迷路 了 . +We use a lot of water every day . ||| 我們 每天 用 很多 的 水 . +I am playing volleyball now . ||| 我 现在 在 打 排球 . +It is time for dinner . ||| 吃 晚 飯 的 時間 到 了 . +I like mathematics . ||| 我 喜歡 數學 . +That white building is a hospital . ||| 那棟 白色 的 建築物 是 一家 醫院 . +At the time there were no native English speakers teaching in any public school . ||| 當時 沒有 任何 以 英語 為 母語 的 人 在 公立 學校 任教 . +I am glad to have her company . ||| 我 很 高興 有 她 的 陪伴 . +What did you do over the weekend ? ||| 你 整個 週末 做 了 什麼 ? +You stink . ||| 你 身上 发臭 了 . +Do you speak French ? ||| 你 會 講 法語 嗎 ? +I was a high school student at that time . ||| 我 当时 是 高中生 . +It is not important . ||| 这 不 重要 . +I am exhausted . ||| 困死 了 . +I would not sell that at any price . ||| 任何 價格 我 都 不 會 賣 . +I am married . ||| 我 结婚 了 . +I will think it over . ||| 我 會 考慮 一下 . +His little brother is a famous soccer player . ||| 他 弟弟 是 个 有名 的 足球 选手 . +I was scared all the time . ||| 我 一直 很 害怕 . +Tell me what to do with it . ||| 告诉 我 拿 它 做 什么 . +I could answer all the questions . ||| 我 能 回答 所有 的 問題 . +There was a lot of snow last year . ||| 去年 下 了 很多 雪 . +He asked after you . ||| 他 問候 了 你 . +Which book is yours ? ||| 哪 本 是 你 的 书 ? +Are you single ? ||| 你 是 单身 吗 ? +Take a breath and hold it . ||| 深 吸 一口 氣然 後 屏住 氣 . +If I had worked hard in my youth , I would be successful now . ||| 如果 我 年 輕 的 時候 努力 工作 , 我 現在 就 成功 了 . +Tom asked Mary to buy a gift for John . ||| 汤姆 叫 玛丽 买 一份 礼物 给 约翰 . +I am really concerned about your future . ||| 我 真的 很 關心 你 的 未來 . +You are blushing . ||| 你 脸红 了 . +The dolphin and trainer communicated much better than we expected . ||| 海豚 和 驯养 员 交流 得比 我们 所 期望 的 好得多 . +We can rest . ||| 我们 可以 休息 . +I need it as quickly as possible . ||| 我 尽快 需要 . +The strike affected the nation is economy . ||| 罢工 影响 了 国家 经济 . +What are you doing down there ? ||| 你 在 那里 干什么 ? +Prices are going up . ||| 物价上涨 了 . +He is very good at playing guitar . ||| 他 很 擅長 彈 吉他 . +Tom hid himself under the table . ||| Tom 躲 在 桌子 底下 . +She came here as soon as she heard it . ||| 她 一來 這裡 就 聽到 了 . +He made a clean break with them . ||| 他 跟 他们 干脆 地 断绝来往 了 . +Could you recommend another hotel ? ||| 你 能 推薦 另一家 旅館 嗎 ? +Tom is drinking some water . ||| 汤姆 在 喝 点 水 . +How about going to see a movie tonight ? ||| 今晚 看 电影 怎么样 ? +We got behind the car and pushed . ||| 我們 到 車子 後 面 推車 . +You do not need to help me . ||| 你 不用 帮 我 . +She stirred her coffee with a teaspoon . ||| 她 用 茶匙 搅 她 的 咖啡 . +He lived in the center of London . ||| 他 住 在 倫敦 市中心 . +Not a single person arrived late . ||| 沒有 一個 人 遲 到 . +He will be back in a second . ||| 他 很快 就 会 回来 . +Countless stars were twinkling in the sky . ||| 无数 星星 在 天上 闪烁 . +She was able to answer whatever was asked . ||| 不管 问 了 什么 , 她 都 能 回答 . +I will give you whatever you want . ||| 我 會 給 你 任何 你 想要 的 東西 . +She planted roses in the garden . ||| 她 在 花園 裡 種 了 玫瑰 . +It is rude of him not to give me a call . ||| 他 不 打电话 给 我 真是 无礼 . +I will never forget going to Hawaii with her . ||| 我 永远 不会 忘记 那次 跟 她 一起 去 夏威夷 . +My plans failed one after the other . ||| 我 的 計劃 一個 接 一個 的 失敗 了 . +He said , " I want to be a doctor . " ||| 他 說 : 「 我 想成 為 醫生 . 」 +Open your mouth and close your eyes . ||| 张开嘴巴 闭上眼睛 . +Moderate exercise is necessary for good health . ||| 適度 運動 對 身體 健康 是 必要 的 . +Underage drinking is a crime . ||| 未满 年龄 饮酒 是 罪行 . +We bought a pound of tea . ||| 我們 買 了 一磅 的 茶 . +I hope Tom appreciates it . ||| 我 希望 汤姆 欣赏 它 . +Could you bring me some water ? ||| 能 给 我 带 一点 水 来 吗 ? +Can you come for dinner tonight ? ||| 你 今天 晚上 能 來 吃 飯 嗎 ? +Where can I take a bath ? ||| 我 能 在 哪裡 洗澡 ? +That is an interesting piece of information . ||| 这 是 条 有趣 的 信息 . +I have already finished reading this book . ||| 我 已經 讀完 了 這 本書 . +He threw a piece of meat to a dog . ||| 他 朝 狗 扔 了 一块 肉 . +The family is eating breakfast on the balcony . ||| 一家人 在 陽 臺 上 吃 早 飯 . +I will see you again this afternoon . ||| 今天下午 我 會 再 見 到 你 . +Slight inattention can cause a great disaster . ||| 失之毫厘 , 谬之千里 . +I do not want to go alone . ||| 我 不想 独自 前往 . +You should not keep them waiting so long . ||| 你 不该 让 他们 等 那么 久 . +Japan is not rich in natural resources . ||| 日本 並 不 擁有 豐富 的 自然 資源 . +Tom was very scared . ||| 湯姆 非常 害怕 . +Do you think Tom is having fun ? ||| 你 認為 湯姆 玩 得 高興 嗎 ? +He had no luck in finding work . ||| 他 不幸 找 不到 工作 . +Tom said he 'd never been to Boston . ||| 汤姆 说 他 从来 没 去过 波士顿 . +What is your favorite home @-@ cooked food ? ||| 你 最 喜歡 的 家常菜 是 什麼 ? +I am thinking of going to Europe . ||| 我 正在 考慮 去 歐洲 . +I remember mailing the letter . ||| 我 記 得 寄 了 信 . +He failed to answer the letter . ||| 他 沒有 回信 . +I have an urgent message from Tom . ||| 我 收到 汤姆 的 一条 紧急 消息 . +How is your family ? ||| 你 家里人 都 还好 吗 ? +There are too many people there . ||| 那裡 太 多 人 了 . +Although old , he is still very much alive . ||| 虽然 上 了 年纪 , 他 依旧 充满活力 . +Those two are exactly alike . ||| 那 兩個 是 一模 一樣 的 . +Tom says he is not sure if he can do that , but he says he will try . ||| 汤姆 说 他 不 确定 是否 能 做到 , 但是 他 说 会 尝试 . +Kabul is the capital of Afghanistan . ||| 喀布尔 是 阿富汗 的 首都 . +I wish you could have been there . ||| 要是 你 能 在 那裡 就 好 了 . +You had better go to the infirmary . ||| 你 最好 去 一下 医务室 . +It belongs to me now . ||| 它 现在 归 我 了 . +My father has already given up smoking and drinking . ||| 我 爸爸 已经 戒烟 戒酒 了 . +Please tell me what you think . ||| 請 告訴 我 你 的 想法 . +I do not have the address now . ||| 我 沒有 現在 的 地址 . +I noticed a pattern . ||| 我 注意 到 一個 圖案 . +I accompanied her on the piano . ||| 我 為 她 作 鋼琴 伴奏 . +Today is my sister is birthday . ||| 今天 是 我 姊姊 的 生日 . +Can I register for that class ? ||| 我 可以 登記 這 堂 課 嗎 ? +Does Tom drink coffee ? ||| 汤姆 喝咖啡 吗 ? +He lives somewhere about here . ||| 他 住 在 這 附近 某個 地方 . +I had a good dream last night . ||| 昨晚 , 我 做 了 个 好 梦 . +Go straight down this street and turn right at the third light . ||| 沿着 这 条路 直 走 , 到 第三个 红绿灯 的 地方 右转 . +There is something strange going on . ||| 正 有 什么 奇怪 的 事情 发生 着 . +I would not do that if I were you . ||| 如果 我 是 你 , 我 就 不 做 那件事 . +Scotland is famous for its woollen textiles . ||| 蘇格蘭 以 其 羊毛 紡織品 而 著名 . +He broke into a house . ||| 他 闖入 一間 房子 . +What is the name of this tune ? ||| 这歌 叫 什么 名字 ? +I am very thirsty . ||| 我 很渴 . +Tom was able to make himself understood in French when he visited Paris . ||| 在 巴黎 , 沒 有人 能夠 理解 湯姆 的 法文 . +A boy of seventeen is often as tall as his father . ||| 十七 歲 的 男孩 常常 長 得 和 他 父親 一樣 高 . +Put your hands up . ||| 手 举 起来 . +What do you want ? ||| 你 想要 什麼 ? +One can not help many , but many can help one . ||| 一个 人 帮不了 许多 个 , 但 许多 人能 帮助 一个 . +This size is too large for me . ||| 这个 码 对 我 来说 太 大 了 . +You did not write anything . ||| 你 甚麼 也 沒寫 . +My brother seems to enjoy himself at college . ||| 我 弟弟 似乎 在 大学 过 得 很 愉快 . +I have decided . ||| 我 決定 了 . +She bought two pounds of butter . ||| 她 買 了 兩磅 的 奶油 . +May I have a talk with you ? ||| 我 能 和 你 谈谈 吗 ? +This bomb can kill a lot of people . ||| 这个 炸弹 可以 炸死 很多 人 . +You have set a bad example . ||| 你 做 了 个 坏 榜样 . +What is this supposed to mean ? ||| 這 該 是 甚麼 意思 ? +They were frightened . ||| 他們 被 嚇到 了 . +Many of the workers died of hunger . ||| 许多 工人 死 于 饥饿 . +If I were invisible , I would not have to wear anything . ||| 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +He has had a crush on her . ||| 他 一直 暗恋着 她 . +I got up very late this morning . ||| 今天 早上 我 起 得 很 晚 . +Please let me try the game . ||| 請 讓 我 試試 這個 遊戲 吧 . +My father got home late last night . ||| 我 父親 昨晚 很 晚才 回家 . +I was having a bath when the telephone rang . ||| 在 我 洗澡 的 时候 , 电话响 了 . +I will be right with you . ||| 我 馬 上 就 来 . +The deadline is approaching . ||| 期限 近 了 . +Have you read today is paper yet ? ||| 你 看 過 今天 的 報紙 了 嗎 ? +Traffic downtown is all backed up . ||| 市中心 的 交通 都 堵塞 了 . +These dresses are too large . ||| 這些 洋裝 太 大 . +He is a sucker for beautiful women . ||| 他 非常 喜歡 漂亮 的 女人 . +I really like to read . ||| 我 真 喜欢 阅读 . +I tried very hard to put an end to their heated argument . ||| 我 努力 地 平息 他們 不斷 加溫 的 爭執 . +She was elected chairman of the committee . ||| 她 當 選為 委員會 主席 . +Why do you want to die ? ||| 你 为什么 想 死 ? +I really do not know Tom . ||| 我 真不 了解 汤姆 . +My father likes pizza . ||| 我 父親 喜歡 批薩 . +He is wearing gloves . ||| 他 戴 着 手套 . +I do not get what you mean . ||| 我 不 明白 你 的 意思 . +We left the final decision to him . ||| 我們 讓 他 做 最 後 的 決定 . +She was in a hurry to see her father . ||| 她 急于 见 她 的 父亲 . +Beer bottles are made of glass . ||| 啤酒瓶 是 玻璃 做 的 . +We were nearly frozen to death . ||| 我们 几乎 被 冻死 了 . +I do not believe Tom is version of the story . ||| 我 不 相信 汤姆 的 说法 . +They supplied the soldiers with enough food and water . ||| 他们 给 士兵 提供 了 充足 的 食物 和 水 . +Burn this letter after you finish reading it . ||| 看完 这 封信 请 把 它 烧掉 . +I was struck by lightning . ||| 我 被 雷劈 了 . +Here is a book . ||| 這裡 有 一本 書 . +Would you please come again later ? ||| 請 您 稍 後 再 來 好 嗎 ? +Buy Tom a beer . ||| 给 汤姆 买 一瓶 啤酒 . +It is not quite ready yet . ||| 还 没 怎么 准备 好 . +I would like to check out right now . ||| 我 想現 在 結帳 離開 . +In that case , I will change my mind . ||| 这样的话 , 我会 改变 主意 . +You are German , are not you ? ||| 你 是 德国人 , 不是 吗 ? +You have a good sense of humor . ||| 你 很 有 幽默感 . +In addition to English , he speaks German . ||| 除了 英文 , 他 還 說 德文 . +The garden was surrounded by a wooden fence . ||| 花园 被 木 栅栏 围 了 起来 . +She was wearing long boots . ||| 她 穿着 长靴 . +The phone rang . ||| 電話 正在 響 . +My mother took me to the park . ||| 媽媽 帶 我 去 公園 . +Can you solve this problem ? ||| 你 能 解決 這個 問題 呢 嗎 ? +Wait a moment . ||| 等 一下 . +A lot of people came today . ||| 今天 來 了 很多 人 . +Who wrote Hamlet ? ||| 哈姆雷特 是 誰 寫 的 ? +We caught the thief . ||| 我们 抓住 了 小偷 . +You must not go out after dinner . ||| 晚 飯 後 你 不 可以 外出 . +The boy I love does not love me . ||| 我 爱 的 那个 男孩 不 爱 我 . +I think he is something of a poet . ||| 我 觉得 他 有 几分 像 个 诗人 . +The next one is for you . ||| 下 一个 给 你 . +We will stay quiet . ||| 我們 會 保持 安靜 . +I do not blame you for hitting him . ||| 我 不 怪 你 撞 到 他 . +No one comes to visit me anymore . ||| 已经 没人来 拜访 我 了 . +A fox is not caught twice in the same snare . ||| 一只 狐狸 不会 两次 掉入 同一个 陷阱 里 . +What does Tom know about me ? ||| 汤姆 知道 我 的 什么 ? +You should quit smoking . ||| 你 應該 戒菸 . +They say that golf is very popular in Japan . ||| 他们 说 高尔夫 在 日本 很 流行 . +I dislike being alone . ||| 我 不 喜歡 獨處 . +The flash was not working , so he could not take a picture in the dark . ||| 因为 闪光灯 坏 了 , 他 不能 在 黑暗 中 拍照 . +She showed me her album . ||| 她 給 我 看 她 的 相簿 . +I do not have a computer . ||| 我 沒有 電腦 . +How is your wife , Tom ? ||| 你 媳妇 怎么样 , 汤姆 ? +It is not necessary to answer that letter . ||| 沒有 必要 回 那 封信 . +The doctor examined my throat . ||| 醫生 檢查 了 我 的 喉嚨 . +This apple is too small . ||| 這個 蘋果 太小 . +I met Tom for the first time three days ago . ||| 我 三天 前 第一次 见 汤姆 . +I can speak English . ||| 我 會 講 英語 . +If you really want to know , why do not you ask Tom ? ||| 如果 你 真的 想 知道 的话 , 为什么 不问 一下 汤姆 呢 ? +You are always late . ||| 你 总是 迟到 . +It is wrong to tell a lie . ||| 說 謊 是 錯誤 的 . +Prices have reached a 13 @-@ year high . ||| 价格 已经 达到 了 十三年 以来 的 最高点 . +He went to London in 1970 . ||| 他 在 1970 年 前往 倫敦 . +I am looking for an old man . ||| 我 正在 尋找 一位 老人 . +Can you just please go ? ||| 能 請 你 離開 嗎 ? +She thought that I was a doctor . ||| 她 以为 我 是 大夫 . +I do not like either tea or coffee . ||| 我 不 喜歡 茶 也 不 喜歡 咖啡 . +Tom was the first to react . ||| 湯姆 是 最先 作出 反應 的 . +I want you to understand why you have to do this . ||| 我 想 让 你 明白 为啥 你 必须 这么 做 . +I will not need any help . ||| 我 不 需要 任何 帮助 . +The door opened slowly . ||| 门 慢慢 地 开 了 . +I do not get the joke . ||| 我 没 明白 那个 笑话 . +The wall is thirty yards long . ||| 這 堵 牆長 三十 碼 . +I have never gone fishing at night . ||| 我 从没 在 晚上 钓鱼 . +She enjoyed herself at the concert . ||| 她 在 音樂會 上 玩 得 很 開心 . +A rock fell from above . ||| 一块 岩石 从 上面 落下 . +I think that I am intelligent . ||| 我 觉得 我 很 聪明 . +They won . ||| 他们 赢 了 . +Suddenly , it started to rain very hard . ||| 突然 就 下起 了 大雨 . +Throw it away . ||| 扔掉 +She is going to Chiba Stadium . ||| 她 將 去 千葉 球場 . +We know the identity of Tom is killer . ||| 我 㥃 知道 了 湯姆 的 殺手 的 身份 . +Tom will not let you in his house . ||| 汤姆 不会 让 你 进 他 的 屋子 . +Tom looked Mary in the eye . ||| 湯姆 與 瑪麗 對 視 . +Did you have a good time last night ? ||| 你 昨天晚上 過 得 好 嗎 ? +The doctor advised my father to cut down on smoking . ||| 医生 建议 我 父亲 减少 吸烟 . +His ideas are always practical . ||| 他 的 主意 总是 可行 的 . +Cars are expensive . ||| 车子 很贵 . +He put on an air of innocence . ||| 他 摆出 一副 无辜 的 样子 . +What time is it now in Boston ? ||| 波士顿 现在 几点 ? +I promised him that I would come today . ||| 我 答应 他 我 今天 会来 . +I can recommend this book to you . ||| 我 可以 向 你 推薦 這 本書 . +In another two weeks you will be able to get out of the hospital . ||| 再 过 两周 你 就 可以 出院 了 . +Tom needs to be very careful . ||| 湯姆 需要 很 小心 . +It is rare to meet nice people like you . ||| 很少 能 见到 像 你 那么 好 的 人 . +Please replace the empty ink cartridge in the printer . ||| 请 把 打印机 里面 的 空 的 墨粉 鼓 换掉 . +It is an hour is drive from here to there . ||| 从 这里 到 那里 驾车 一 小时 . +You sure were noisy last night . ||| 你 昨晚 確實 很 吵 . +Has anything changed ? ||| 有 任何 事情 改變 了 嗎 ? +You are tired , are not you ? ||| 你 累 了 , 不是 吗 ? +Please sing a song . ||| 請 唱 一首歌 . +Please tell me everything is OK . ||| 請 告訴 我 一切 都 好 . +I eat bread . ||| 我 吃 面包 . +She bit into the apple . ||| 她 咬了一口 蘋果 . +She left here right away . ||| 她 馬 上 離開 了 這裡 . +I expected him to offer some help . ||| 我 期待 他 提供 一些 幫助 . +I went to school in Boston . ||| 我 曾经 在 波士顿 上学 . +I have not eaten anything for days . ||| 我 好多天 没 吃 东西 了 . +I did not hear anyone talking . ||| 我 沒 聽到 任何人 在 說 話 . +You can count on it . ||| 你 可以 依靠 它 . +Let is not talk about it any more . ||| 讓 我們 不要 再 談論 它 了 . +I am so sorry I hurt your feelings . ||| 我 很 抱歉 伤害 了 你 的 感情 . +It is very hard getting a taxi in this city . ||| 在 这个 城市 , 很难 打到 的 . +I phone him every day . ||| 我 每天 都 给 他 打电话 . +Dear Santa , I want a girlfriend for Christmas . ||| 圣诞老人 , 我 想要 一个 女朋友 当 圣诞礼物 . +She is really smart , is not she ? ||| 她 真的 很 聪明 , 不是 吗 ? +Tom is a decent sort of guy . ||| 汤姆 是 个 诚实 的 男孩 . +Mass production reduced the price of many goods . ||| 大量 生產 降低 許多 商品 的 價格 . +Do you have plans for tonight ? ||| 今晚 有 什么 计划 吗 ? +Perhaps he missed the train . ||| 他 可能 错过 了 火车 . +I thought we had found the perfect hiding place , but the police found us . ||| 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +We go fishing once in a while . ||| 我們 偶爾 去 釣 魚 . +This glass contains water . ||| 這個 杯子 裡 有 水 . +I have lost my pen . ||| 我 弄 丟了 我 的 筆 . +I waited for my friend for an hour . ||| 我 等 我 的 一个 朋友 等 了 一 小时 . +I know this is important to you . ||| 我 知道 这 对 您 来说 很 重要 . +Do you often come here ? ||| 您 经常 来 这儿 吗 ? +She wants a new dress badly . ||| 她 很 想要 一条 新 的 连衣裙 . +Here are some interesting links . ||| 這裡 有些 有趣 的 連結 . +I should clean my room . ||| 我 应该 打扫 我 的 房间 . +My dad does not like soccer . ||| 我 爸爸 不 喜欢 足球 . +If time permits , I will visit the museum . ||| 如果 時間 允許 , 我 會 去 參觀 博物 館 . +This is not my car . ||| 這 不是 我 的 車 . +Who is the author of this book ? ||| 這 本書 的 作者 是 誰 ? +He drank a cup of coffee . ||| 他 喝 了 一杯 咖啡 . +I can not understand why you are so critical of him . ||| 我 不 明白 为什么 你 这么 批评 他 . +Pilots communicate with the airport by radio . ||| 飛行員 用 無線電 與 機場 溝通 . +Show me a cheaper one , please . ||| 請 給 我 看看 便宜 一點 的 . +Tom is able to swim well . ||| 湯姆 游泳 可以 游 得 很 好 . +Will you stay at home ? ||| 你 会 待 在家 吗 ? +Sensing danger , he ran away . ||| 他 一 嗅到 风声 不 对 , 就 逃之夭夭 了 . +I was able to find out his address . ||| 我 能 找到 他 的 地址 . +They do not even know why . ||| 他們 甚至 不 知道 為 什麼 . +He owes his success to good luck . ||| 他 將 他 的 成功 歸 於 好 運 . +How much does it cost ? ||| 多少 錢 ? +He will come on foot or by bicycle . ||| 他 走路 或者 骑车 过来 . +Thank you for your patience . ||| 谢谢 你 的 耐心 . +You work hard . ||| 你 工作 努力 . +Do you want to stay any longer ? ||| 你 想 再 待 下去 嗎 ? +He has all kinds of books . ||| 他 有 各种各样 的 书 . +Please open the bottle . ||| 請 打開 瓶子 . +English is just one of over 2,700 languages in the world today . ||| 今天 , 英語 只是 世界 上 超過 2 , 700 種 語言 的 其中 之一 . +He designed the new building . ||| 他 設計 了 新 建筑 . +Elephants live in Asia and Africa . ||| 大象 生活 在 亞洲 和 非洲 . +How about dining out tonight ? ||| 我们 今晚 出去 吃 怎么样 ? +I do not really use Facebook that much . ||| 我 並 沒有 花 那麼 多 時間 在 Facebook 上 . +It is just a cold . ||| 只是 感冒 而已 . +You can use this computer any time . ||| 你 可以 隨時 使用 這 台 電腦 . +I am looking forward to seeing you again . ||| 我 期待 再 見 到 你 . +He knows better than to marry her . ||| 他 聰明 到 不 會 娶 她 . +May I speak with the teacher ? ||| 我 能 和 老师 说话 吗 ? +Why do not you wait here while I finish what I am doing ? ||| 为什么 你 不 在 这里 等到 我 做 完 为止 ? +Love is like oxygen . ||| 爱 就 像 氧气 . +Please show me those pictures . ||| 請 讓 我 看看 那些 圖片 . +We need some more coffee . ||| 我們 需要 多 一點 咖啡 . +He made many excuses for being late . ||| 他 為 遲 到 找 了 很多 的 藉口 . +A wise man would not say such a thing . ||| 一个 聪明人 不会 说 这种 话 . +You should drink a lot of liquid . ||| 你 應該 喝 大量 的 液體 . +I have seen the film before . ||| 我 已经 看过 这部 电影 了 . +We were on the train for ten hours . ||| 我們 在 火車 上 十個 小 時 . +Arabic is read from right to left . ||| 阿拉伯语 要 从 右 往 左 读 . +The students have returned . ||| 学生 们 回来 了 . +I have lost my cap . ||| 我 把 帽子 弄 丟了 . +Who is that guy ? ||| 那家伙 是 谁 ? +Water evaporates when it is heated . ||| 當 水 被 加熱 時 , 水汽 蒸發 . +Choose your favorite racket . ||| 選擇 你 喜歡 的 球拍 . +What is the matter with you ? ||| 你 怎么 了 ? +I am a student at Oxford University . ||| 我 是 牛津大学 的 学生 . +He is not qualified for the job . ||| 他 不 勝任 這份 工作 . +She ran very fast to catch up with the other members . ||| 她 跑 得 很快 是 为了 赶上 其他 成员 . +He is on goods terms with all of his classmates . ||| 他 和 他 所有 的 同学 相处 融洽 . +What is your husband is name ? ||| 你 丈夫 叫 什么 ? +It is the things that we do not possess which seem to us most desirable . ||| 得不到 的 东西 就 最 想得到 . +Tom will paint the fence tomorrow . ||| Tom 明天 將漆 柵欄 . +He has a nice income . ||| 他 收入 可观 . +He studies history at college . ||| 他 在 大学 修读 历史 . +She cooks chicken the way I like . ||| 她 用 我 喜歡 的 方式 烹調 雞肉 . +I have to buy Christmas gifts . ||| 我 必须 要 买 圣诞礼物 了 . +How much is that mountain bike ? ||| 那 辆 山地车 多少 钱 ? +You should study harder . ||| 你 應 該 更 努力 學習 . +She will almost certainly pass the test . ||| 她 幾乎 確定 會 通過 測驗 . +The sea is blue . ||| 大海 是 蓝色 的 . +Are they students ? ||| 他們 是 學生 嗎 ? +You are a student . ||| 您 是 學生 . +She suggested to me that I call off the meeting . ||| 她 建议 我 取消 会议 . +I can not stand that noise any longer . ||| 我 不能 再 忍受 那 噪音 了 . +We go to school by bus . ||| 我們 乘 公共 汽車 去 上 學 . +I went to a park this morning . ||| 今天 早上 我 去 了 公园 . +I get along with my younger brother . ||| 我 與 我 的 弟弟 相處 融洽 . +I wish you had told me the truth then . ||| 但 願 你 那時候 就 告訴 我 真相 . +He wore a mask so that no one could recognize him . ||| 他 戴 著 面具 以至 於 沒 有人 認出 他 . +Do not take things so seriously . ||| 不要 把 事情 看得 這麼 嚴重 . +Let is start the party . ||| 讓 我們 開始 這個 派 對 吧 . +I got her to clean my room . ||| 我 讓 她 清掃 了 我 的 房間 . +Not everyone is smiling . ||| 不是 每個 人 都 在 笑 . +Tom gave me a pen . ||| 湯姆 給 了 我 一枝 筆 . +I was about to leave when you came in . ||| 你 来 的 时候 我 刚好 要 走 . +I am amazed at your audacity . ||| 我 对 你 的 大胆 感到 很 惊讶 . +He must be over sixty . ||| 他 应该 超过 六十岁 了 . +His car is really cool . ||| 他 的 車 真的 很酷 . +Watch out ! ||| 当心 ! +The accident almost cost him his life . ||| 事故 差点 让 他 丢 了 性命 . +She is just a child . ||| 她 只是 個 孩子 . +She was killed in an automobile accident . ||| 她 死 於 一場 汽車 車禍 . +Tom did not wear jeans yesterday . ||| 湯姆 昨天 沒穿 牛仔 褲 . +Our baseball team is very strong . ||| 我們 的 棒球 隊 很 強 . +I want us to do it together . ||| 我 想 讓 我們 一起 做 . +The towel was not useful at all . ||| 毛巾 完全 没起 作用 . +Three months is too short a time to finish the experiment . ||| 要 完成 实验 , 三个 月 太短 了 . +I have been here for a long time . ||| 我 在 這裡 很 長 一段 時間 了 . +I often use SSH to access my computers remotely . ||| 我 经常 使用 SSH 来 远程 连接 到 我 的 电脑 . +You have been late for school more often than before . ||| 你 比 以前 更 容易 上課 遲到 了 . +Your plan seems better than mine . ||| 你 的 計劃 似乎 比 我 的 好 . +I wish I were a little taller . ||| 但 願 我 長 高一 點 . +We buy eggs by the dozen . ||| 鸡蛋 是 论 打买 的 . +That is exactly what he said . ||| 这 就是 他 所说 的 . +I will let you know when I have figured it out . ||| 我 搞 明白 了会 告诉 你 . +You said you were in trouble . How can I help ? ||| 你 说 你 有 困难 . 我 能 帮忙 吗 ? +You do not have to answer quickly . ||| 你 不必 快速 作答 . +He often sits for many hours reading books . ||| 他 常常 坐 着 看书 一连 好几个 小时 . +There are seven continents on the earth . ||| 地球 上 有 七大洲 . +Mary wants to become a teacher . ||| 瑪麗 想成 為 一名 教師 . +Now it is time for the weather forecast . ||| 现在 是 天气预报 的 时间 . +There are many shrines in Kyoto . ||| 京都 有 許多 神社 . +I will attend . ||| 我 會 參加 . +Tom told Mary not to waste her time trying to convince John to help . ||| 汤姆 对 玛丽 说 , 不要 浪费时间 去 说服 约翰 来 帮忙 . +Tom seems nice . ||| 汤姆 看着 是 个 好人 . +We have more customers than we can count . ||| 我們 的 顧客 比 我們 可以 計數 的 更多 . +This hotel does not have a swimming pool . ||| 這個 酒店 沒有 游泳池 . +Call me if you discover anything . ||| 如果 你 發現 什麼 , 請 打 給 我 . +Tom and I are friends . ||| 湯姆 和 我 是 朋友 . +You really are an idiot . ||| 你 真的 是 ( 一 ) 個 笨蛋 . +It is all your fault . ||| 都 是 你 的 错 . +I have never climbed Mt . Fuji . ||| 我 從來 沒有 爬 過 富士山 . +This is the very book you wanted . ||| 這 是 你 非常 想要 的 書 . +Tom was injured in the blast . ||| 汤姆 在 爆炸 中 受伤 . +I wish to see my father . ||| 我 希望 看看 我 的 父親 . +I have just had lunch . ||| 我 剛 吃 過午 飯 . +Your wife is mad at you . ||| 你 太太 在 生 你 的 氣 . +I could not get to sleep . ||| 我 無法 入睡 . +Let is go to a movie . ||| 讓 我們 去 看 電影 . +I intend to become a lawyer . ||| 我 有志 成为 一名 律师 . +She is everything to him . ||| 她 是 他 的 一切 . +He lives just across the road . ||| 他 就 住 在 馬路 對面 . +We could not do that . ||| 我们 做 不到 . +That is no business of his . ||| 那 不關 他 的 事 . +I would like to leave this town and never come back . ||| 我 希望 離開 這個 村子 並且 再也 不要 回來 . +She looked more beautiful than ever . ||| 她 似乎 比 以往 任何 时候 都 漂亮 . +She gets up early every morning . ||| 她 每天 早上 早起 . +When you have finished reading this letter , burn it . ||| 看完 这 封信 请 把 它 烧掉 . +Why should we help ? ||| 为什么 我们 应该 要 帮助 ? +His house was small and old . ||| 他 的 房子 又 小 又 旧 . +I do not think this is correct . ||| 我 觉得 这 不是 真的 . +I like pop music . ||| 我 喜歡 流行 音樂 . +No one can control him . ||| 沒人 管束 或 開導 他 . +I put it in the drawer . ||| 我 把 它 放在 抽屜 裡 . +Tom , Mary and John are all here . ||| 湯姆 、 瑪麗 和 約翰 都 在 這裡 . +The conference is to be held in Tokyo the day after tomorrow . ||| 会议 将 在 后天 于 东京 举行 . +My mother is making a cake . ||| 我 的 母親 在 做 蛋糕 . +I do not trust him any longer . ||| 我 再也 不 相信 他 了 . +Go straight home . ||| 直接 回家 . +Tom is out cold . ||| 汤姆 正 昏迷不醒 . +I saw a horse pulling a cart . ||| 我 看見 一匹 馬拉著 一架 馬車 . +In the light of what you told us , I think we should revise our plan . ||| 根据 你 所说 的话 , 我 认为 我们 应该 重新 审视 我们 的 计划 . +Where did you get the money to buy that dress ? ||| 你 從 哪兒 弄來 的 錢 去 買 那件 衣服 ? +I am still young . ||| 我 還 年輕 . +I spent all day in the library . ||| 我 整天 待 在 图书馆 . +He has a lot of money . ||| 他 有 很多 钱 . +The house burned to the ground before the fire truck arrived . ||| 消防车 到达 之前 , 房子 就 全 烧 了 . +Nearly all Japanese have dark hair . ||| 几乎 所有 的 日本 人 头发 都 是 黑色 的 . +I have missed another chance . ||| 我 又 失去 了 一次 机会 . +Take the pan off the fire . ||| 把 平底 鍋離 火 . +I can see you are good at this . ||| 我 看 你 擅长 做 这事 . +The topic is worth discussing . ||| 這 是 值得 探討 的 話題 . +Many young people in Japan eat bread for breakfast . ||| 許多 日本 的 年 輕 人 吃 麵 包 當 作 早餐 . +How did you find my house ? ||| 你 怎么 找到 我 的 房子 的 ? +This is a good movie . ||| 這 是 一部 好 電影 . +" Is that Tom calling again ? " " Yes . He calls every evening these days . I should not have given him my number . " ||| “ 又 是 汤姆 的 电话 ? ” “ 嗯 . 最近 他 每天晚上 都 会 打 过来 . 当时 就 不该 给 他 我 的 号码 的 . ” +Do what you think is right . ||| 做 你 認為 正確 的 事 . +I was quite annoyed . ||| 我 被 烦死 了 . +I had some calls to make . ||| 我 要 打 几个 电话 . +You can not build buildings on swampy land . ||| 你 不能 在 沼澤 地上 建造 建築物 . +Tom is laughing . ||| 汤姆 在 笑 . +The leaves fell to the earth . ||| 树叶 掉 在 地上 . +Tom slept through the entire movie . ||| 湯姆 在 整場 電影 放映 時 都 在 睡覺 . +I am afraid of dying . ||| 我 怕死 . +My father drives a very old car . ||| 我 的 父親 開 一輛 舊車 . +Are you hiding something ? ||| 你 是不是 瞒 着 我 什么 ? +Stop getting yourself worked up over little things . ||| 不要 让 自己 因为 一些 小事 就 方寸大乱 了 . +Do your best . ||| 盡力 而為 . +Could you please tell me again why you are late ? ||| 你 能 再 向 我 解释 一遍 你 为什么 迟到 了 吗 ? +Does Tom play tennis ? ||| 湯姆 打 網球 嗎 ? +You can not depend on Tom . ||| 你 不能 靠 湯姆 . +Are there any other suggestions ? ||| 還 有 其他 建議 嗎 ? +Would you like to know how I did that ? ||| 你 想 知道 我 怎么 做到 的 吗 ? +What are you learning at school ? ||| 你 在 学校 学 些 什么 呀 ? +Try to make the most of your time . ||| 尽量 试 着 用好 你 的 时间 . +My job is washing dishes . ||| 我 的 工作 是 洗碗 . +The plane made a perfect landing . ||| 這 架 飛機 完美 的 著陸 了 . +Are you feeling better now ? ||| 你 觉得 好些 了 吗 ? +I am glad I could help out . ||| 能够 出 一份 力 太好了 . +Tom nearly died tonight . ||| 汤姆 昨晚 差点 死 了 . +He is as tall as his father . ||| 他 和 他 爸爸 一样 高 . +She had died before I arrived . ||| 她 在 我 到 達 之前 去世 了 . +Do not be afraid to make a mistake . ||| 別 害怕 犯錯 . +You are a wonderful woman . ||| 你 是 位 了不起 的 女性 . +Alcohol consumption is increasing every year . ||| 酒 的 消费 每年 都 在 上升 . +The two teams fought very hard . ||| 两队 打 了 场 硬仗 . +It might snow tonight . ||| 晚上 也许 会 下雪 . +As soon as the door opened , they ran away . ||| 门 一开 , 他们 就 逃走 了 . +Do not you know that ? ||| 你 不 知道 那件事 吗 ? +This does not concern you . ||| 这 不是 你 的 事 . +The weather was so cold that the lake froze over . ||| 天 冷 得 足以 让 湖 结冰 . +" Would you like any more ? " " No , I have had enough . " ||| " 你 想 再 多 吃 點 嗎 ? " " 不 , 我 吃 飽 了 . " +Training will be provided . ||| 会 有 训练 . +He gave it to me for nothing . ||| 他 免費 把 它 給 了 我 . +He is alone . ||| 他 獨自一人 . +While I was reading in bed last night , I fell asleep with the light on . ||| 我 昨晚 在 床上 看书 的 时候 点着 灯 就 睡 了 . +You can buy it at any bookstore . ||| 你 可以 在 任何 一家 書店 買到 它 . +I want something to write on . ||| 我 想要 可以 在 上面 寫 字 的 東西 . +That is what I have to do . ||| 那 是 我 必須 做 的 . +He has been to Hokkaido . ||| 他 曾 去過 北海道 . +She is been working all day long . ||| 她 已經 工作 了 一整天 . +If you want something to be done right , sometimes you have just got to do it yourself . ||| 如果 你 想 做 对 一件 事 , 有时候 你 得 亲力亲为 . +Hippopotamuses love water . ||| 河马 喜欢 水 . +I am a foreigner . ||| 我 是 一個 外國 人 . +Not every country belongs to the U.N. ||| 不是 所有 国家 都 加入 了 联合国 . +This city is cold and lonely without you . ||| 没有 你 , 这 座 城市 寒冷 又 孤寂 . +Was the baby crying then ? ||| 那時 嬰兒 正在 哭 嗎 ? +Spring will be here soon . ||| 春天 快 來 了 . +We saw a funny movie last Sunday . ||| 我們 上 星期天 看 了 一場 很 有趣 的 電影 . +He speaks poor French . ||| 他 讲 不好 法语 . +I wish I could help you . ||| 但 願 我 可以 幫助 你 . +Do you have a fever and a sore throat ? ||| 你 發燒 和 喉嚨 痛 嗎 ? +What he said was over my head . ||| 这人 讲 的 我 完全 听不懂 . +She left her gloves in the car . ||| 她 把 她 的 手套 留在 車 上 了 . +I wish I could speak English . ||| 但 願 我 會 講 英語 . +That is my sole concern . ||| 这 是 我 唯一 关心 的 . +That is impossible . ||| 这 不 可能 . +I have known her for five years . ||| 我 已經 認識 她 五年 了 . +I wish you could come with us . ||| 但 願 你 可以 跟 我們 一起 來 . +You should check it out . ||| 你 應該 檢查 一下 . +That was not the main reason Tom needed to do that . ||| 这 不是 汤姆 要 做 那件事 的 主要 原因 . +She kissed him on the cheek . ||| 她 在 他 的 脸颊 上 吻 了 一下 . +Sleep deprivation increases risk of heart attacks . ||| 睡眠不足 增加 心臟病 發作 的 危險 . +Would you like some salad ? ||| 你 要 來 點 兒 沙拉 嗎 ? +You have to leave . ||| 你 得 走 了 . +Do you live here ? ||| 你 住 這裡 嗎 ? +Tom knows it is over . ||| 湯姆 知道 它 結束 了 . +Were you tired last night ? ||| 昨晚 你 累 了 嗎 ? +She will return home next Sunday , that is , the tenth . ||| 她 下 周日 回家 , 也 就是 10 号 . +What do you have in your bag ? ||| 你 的 袋子 裡 有 什麼 ? +I love you more than you love me . ||| 我 愛 你 多 於 你 愛 我 . +I am blind in the right eye . ||| 我 的 右眼 瞎 了 . +My grandfather is in his nineties . ||| 我 祖父 九十多 歲 了 . +I bought a camera the other day . ||| 我 前 幾天 買 了 一台 照相 機 . +I got arrested . ||| 我 被 逮捕 了 . +She looked away . ||| 她 轉移 了 視線 . +This book is popular with students . ||| 這 本書 受到 學生 的 歡迎 . +Whose book is this ? ||| 這書 是 誰 的 ? +I will not be home next Sunday . ||| 我 下 周日 不 在家 . +I would like to be a guitarist . ||| 我 想要 成为 吉他手 . +She went there yesterday . ||| 她 昨天 去 那裡 . +My sister goes to a university . ||| 我 妹妹 上大學 . +I should be ready by 2 : 30 . ||| 我 应该 在 2 : 30 准备 好 . +I provided him with food . ||| 我 提供 了 他 食物 . +Tom often does not keep his promises . ||| 汤姆 经常 不 守约 . +My family goes skiing every winter . ||| 我 的 家人 每年 冬天 去 滑雪 . +I will keep doing it . ||| 我 要 一直 做 下去 . +I will call for you at eight tomorrow morning . ||| 我 明早 八点 来接 你 . +Your parents did not come , did they ? ||| 你 的 父母 沒來 , 是 嗎 ? +Tom was so drunk that he did not even recognize me . ||| 汤姆 醉 得 连 我 都 认不出来 了 . +Where do you want to go ? ||| 你 想 去 哪裡 ? +There is a picture on the wall . ||| 牆上 有 一幅 畫 . +I like children . That is why I became a teacher . ||| 我 喜欢 孩子 . 这 就是 为什么 我 成为 了 教师 . +I should have gone to Australia with Tom . ||| 我 本该 和 汤姆 一起 去 澳大利亚 . +You will get into trouble if your girlfriend finds out the truth . ||| 如果 你 女朋友 发现 真相 的话 , 你 会 有 麻烦 的 . +I am new at this kind of work . ||| 我 新 接触 這種 工作 . +You should have shown him the device . ||| 你 应该 给 他 看看 这 装置 . +Tom was not as handsome as Mary said he was . ||| 汤姆 并 不是 玛丽 说 得 那样 英俊 . +A little bit of luck sometimes leads to an unexpected success . ||| 一點點 的 運氣 有 時會 導致 意想不到 的 成功 . +Do not be afraid to make mistakes when you speak English . ||| 說 英語 的 時候 不要 怕 犯 錯 . +Are you tired ? ||| 你 累 了 嗎 ? +The room was cleaned by Tom . ||| 這 房間 是 由 湯姆清 掃 的 . +I do not know what Tom saw . ||| 我 不 知道 汤姆 看到 了 什么 . +He has gone to Italy to study music . ||| 他 已經 去 義 大利 學習音 樂 了 . +It is not a dream at all . ||| 它 根本 不是 夢 . +You look bored . ||| 你 看 起來 很 無聊 . +Turn to the left . ||| 向左转 . +The school is on the hill . ||| 学校 在 小丘 上面 . +Tom was with a bunch of strangers . ||| 汤姆 和 一堆 陌生人 在 一起 +I do not have time to play games with you . ||| 我 没 时间 跟 你 玩游戏 . +I will never allow you to do that . ||| 我 絶 不 會 讓 你 去 做 . +I really enjoy your company . ||| 我 非常 享受 你 的 陪伴 . +Mary hid the money in her bra . ||| 瑪麗 把 錢藏 在 了 文胸 裏 . +Swimming at night is dangerous . ||| 夜里 游泳 很 危险 . +What is the tallest mountain in Europe ? ||| 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I have a Facebook account . ||| 我 有 一个 Facebook 的 帐号 . +He has no chance of succeeding . ||| 他 沒有 成功 的 機會 . +Put out the light . ||| 熄灯 . +This writer is Russian . ||| 这个 作家 是 俄罗斯 人 . +I do not have any sisters . ||| 我 没有 姐妹 . +I have not yet watched that video . ||| 我 还 没 看过 那段 视频 . +Lots of people in Japan are indifferent to politics . ||| 很多 日本 人 对 政治 冷淡 . +He is likely to arrive soon . ||| 他 可能 很快 就 到 了 . +There must be some misunderstanding between us . ||| 我们 之间 肯定 有 误会 . +My bicycle has a flat tire . ||| 我 的 腳踏車 輪胎 沒氣 了 . +Tom was all worn out . ||| 湯姆 完全 筋疲力盡 了 . +They helped each other with homework . ||| 他們 互相 幫忙 做功 課 . +Tom got into trouble because of Mary . ||| 湯姆 因為 瑪麗 陷入 了 麻煩 . +She told me that her mother had bought it for her . ||| 她 告诉 我 她 妈妈 买 给 她 了 . +You can ask the child that is playing over there . ||| 你 可以 問問 在 那裡 玩 的 孩子 . +You have to move . ||| 你 得行 動 了 . +Wake me up early tomorrow morning . ||| 明天 早上 早點 叫醒 我 . +My uncle gave me a gift . ||| 我 叔叔 送 了 我 一样 礼物 . +Our teacher comes to school by car . ||| 我們 老師 開車 來 學校 . +The project was a complete failure . ||| 這個 計劃 徹底 的 失敗 了 . +How about another piece of cake ? ||| 要 不要 再 來 一塊 蛋糕 ? +I have no objection to paying a special fee if it is necessary . ||| 如果 必要 的话 , 我 不 反 对付 特别 费用 . +Why do you need this money ? ||| 你 為 什麼 需要 這筆 錢 ? +I had no choice . ||| 那时 我 没有 选择 的 余地 . +What is it like being Tom is girlfriend ? ||| 做 汤姆 的 女朋友 怎么样 ? +Do you have a lot of time to relax ? ||| 你 有 很多 休閒 時間 嗎 ? +JST stands for Japan Standard Time . ||| JST 代表 日本 標準 時間 . +He married an actress . ||| 他 和 一个 女演员 结婚 了 . +I will attend the next meeting . ||| 我会 参加 下次 的 会议 . +There is some water left . ||| 还 剩 一点 水 . +She went over the list to see if her name was there . ||| 她 走 過去 看看 她 的 名字 是否 在 清單 上 . +This city is 1,600 meters above sea level . ||| 这 座 城市 海拔 1600 米 . +He has three sons . ||| 他 有 三个 儿子 . +I am at home . ||| 我 在家 裡 . +Open the door , please . ||| 请 开门 . +I have been wanting to see that movie for a long time . ||| 我 想 看 那 电影 想 好久 了 . +My briefcase is full of papers . ||| 我 的 公事包 裡 裝滿 了 文件 . +Everybody is fine . ||| 每个 人 都 好 . +Turn right at the next intersection . ||| 请 在 下 一个 十字路口 右转 . +Would you like to dance with me ? ||| 你 愿意 和 我 跳舞 吗 ? +Water boils at one hundred degrees . ||| 水 在 攝 氏 100 度沸騰 . +I do not want any milk at all . ||| 我 完全 不要 牛奶 . +She can play the drum . ||| 她 會 打鼓 . +I was angry because he was late . ||| 因為 他 遲到 了 , 所以 我 很 生 氣 . +Both of my sisters are married . ||| 我 的 两个 姐妹 都 结婚 了 . +Mother has a coffee shop . ||| 媽媽 有 一個 咖啡 廳 . +How can I reach you ? ||| 我 怎么 联系 你 ? +Tom fell asleep . ||| 汤姆 睡着 了 . +The dog walked across the street . ||| 這 隻 狗 穿 過 街道 . +Wherever you go , I will follow . ||| 無論 你 去 哪裡 我 都 會 跟著 你 . +It has not been easy . ||| 它 不 容易 . +I was almost hit by a car . ||| 我 幾乎 被 車 撞 到 了 . +You have worked hard for months and have certainly earned a holiday . ||| 你 已經 辛苦 地 工作 好 幾個 月 了 , 當然 可以 休假 . +She drew a circle on a piece of paper with a pencil . ||| 她 用 铅笔 在 纸 上 画 了 一个圈 . +What would you do if you had ten thousand dollars ? ||| 如果 你 有 一 万美元 , 你 想 做 什么 呢 ? +I have plenty of money with me . ||| 我 身上 帶著 很多 錢 . +Sing us a song , please . ||| 請 為 我們 唱首歌 吧 . +Very few people live to be 100 . ||| 很少 人 活到 100 岁 . +Please come . ||| 请来 吧 . +I am just worried about my weight . ||| 我 只是 担心 我 的 体重 . +I will drop you off at the station . ||| 我 載 你 到 車站 . +Let is start right away . ||| 我们 立刻 开始 吧 . +I do not see much of him . ||| 我 不常 見到 他 . +I really am unlucky ! ||| 我 真的 很 倒霉 ! +She has a very quick mind . ||| 她 反應 很快 . +I do not have any children . ||| 我 没有 孩子 . +He has been studying for two hours . ||| 他 学 了 两个 小时 . +What are they saying ? ||| 他們 在 說 什麼 ? +Hey , I may have no money , but I still have my pride . ||| 嗨 , 我 可能 没 钱 , 但 我 一直 有 我 的 骄傲 . +You do not understand the procedure . ||| 你 不 明白 程序 . +Are you being paid for doing this ? ||| 是 有人 花钱 让 你 做 这事 吗 ? +How are your parents getting along ? ||| 你 的 父母 是 如何 相處 的 ? +I liked Tom is first book more than the second . ||| 相比 第二本 , 我 更 喜欢 汤姆 的 第一 本书 . +I could not get the point of his speech . ||| 我 不能 抓到 他 演讲 的 重点 . +We do not have any bread left . ||| 我們 沒 麵 包 了 . +You have to leave . ||| 你們 得 走 了 . +Tom interrupted our conversation . ||| 湯姆 打斷 了 我們 的 談話 . +My father can fly an airplane . ||| 我 的 父親 會 駕駛 飛機 . +Do you remember where we first met ? ||| 你 还 记得 我们 第一次 见面 是 在 哪里 吗 ? +Is this your first time in Korea ? ||| 你 是 第一次 来 韩国 吗 ? +Tom walked out . ||| 湯姆 走 了 出去 . +I can hear you , but I can not see you . ||| 我 听得见 你 , 但 我 看不见 你 . +What is your biggest fear ? ||| 你 最 害怕 的 是 什么 ? +We took a walk along the river . ||| 我們 沿著 河 散步 . +It is not hard to understand . ||| 不 難 理解 . +My mother told us an interesting story . ||| 我 的 媽媽 給 我們 講 了 個 有趣 的 故事 . +I have neither time nor money . ||| 我 沒有 時間 , 也 沒有 錢 . +I am very sorry I came home so late . ||| 我 很 抱歉 那么 晚 回家 . +He painted the ceiling blue . ||| 他 把 天花板 刷成 了 蓝色 . +Tom moves quickly . ||| 汤姆 动 得 好 快 . +He may become a baseball player . ||| 他 可能 成為 一個 棒球 選手 . +See you tomorrow . ||| 明天 见 . +The new Harry Potter movie is pretty lame . ||| 哈利波 特的 新片 十分 差 . +All of a sudden , it became cloudy . ||| 忽然 天氣 轉為 多 雲 . +He has been sick for a week . ||| 他 病 了 一 星期 . +They took our passports . ||| 他們 拿 了 我們 的 護照 . +Do not you play tennis ? ||| 你 不 打 網球 嗎 ? +He graduated from high school this spring . ||| 今年 春天 他 從 高中 畢業 了 . +There are some misprints , but all in all , it is a good book . ||| 雖然 有 一些 印刷 錯誤 , 但 大致 上 說 來 , 這 是 一本 好 書 . +He took me to the station . ||| 他 帶 我 到 車站 . +I learned to drive a car when I was eighteen and got a driver is license . ||| 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +It is no use crying over spilt milk . ||| 為 濺出 的 牛奶 哭 也 沒用 . +There were some boats on the lake . ||| 湖上 有 一些 船 . +Tom wrote that song three years ago . ||| 汤姆 三年 前 创作 了 那首歌 . +I warmed myself in the bath . ||| 我 泡 了 个 澡 身体 暖和 起来 了 . +I am looking forward to Christmas . ||| 我 期待 聖誕節 的 到 來 . +I plan to go there . ||| 我 打算 去 那裡 . +Her husband is an excellent cook . ||| 她 丈夫 是 個 優秀 的 廚師 . +She grew roses . ||| 她種 了 玫瑰 . +She was accused of telling a lie . ||| 她 被 指责 说 了 谎 . +It may never happen . ||| 它 可能 從 沒 發生 過 . +Do not miss the bus . ||| 不要 错过 公车 . +Last year in the Philippines , earthquakes and tidal waves resulted in the deaths of more than 6,000 people . ||| 去年 在 菲律宾 , 地震 和 海啸 造成 了 超过 6000 人 的 死亡 . +I can drive a car . ||| 我会 开车 . +Do you actually believe that ? ||| 你 真 信 吗 ? +Do you like Mozart is music ? ||| 你 喜歡 莫扎特 的 音樂 嗎 ? +I was puzzled about what to do next . ||| 我 对 以后 做 什么 很 迷茫 . +I certainly would not want to be seen with Tom . ||| 我 当然 不想 被 人 看见 跟 汤姆 在 一起 . +You did a good job . ||| 你 干 得 很 好 . +Tom made me do that . ||| 是 汤姆 让 我 做 的 . +That was not the main reason why Tom needed to do that . ||| 这 不是 汤姆 要 做 那件事 的 主要 原因 . +We know this . ||| 我们 知道 . +I feel like I am going to faint . ||| 我 覺得 我 快 昏倒 了 . +Our school is in the center of the town . ||| 我们 学校 在 市中心 . +English is used by many people . ||| 英語 是 被 許多 人 使用 . +Sweet dreams ! ||| 祝 你好 梦 . +The policeman did not tow your car away . ||| 警察 沒有 拖走 你 的 車 . +I suggest that you do not trust Tom too much . ||| 我 建議 你 別 太 相信 湯姆 . +What is my room number ? ||| 我 的 房间 号 是 多少 ? +Leave my car alone . ||| 離 我 的 車 遠 一點 . +Eighty percent of all information on computers around the world is in English . ||| 全世界 百分之八十 電腦 上 的 資訊 都 是 用 英語 寫 的 . +Tom regrets his mistake . ||| 湯姆 為 他 的 錯誤 後 悔 . +I have got to go to the bank . ||| 我 要 去 银行 了 . +This is your book . ||| 這 是 你 的 書 . +Tom is a fat man . ||| 湯姆 是 個 胖子 +Father is watering flowers . ||| 父亲 在 浇花 . +The door is locked at nine o 'clock . ||| 這個 門 在 九點鐘 的 時候 是 鎖著 的 . . +I accepted her invitation . ||| 我 接受 了 她 的 邀請 . +Tom could not decide where to begin . ||| 湯姆 不能 決定 從 哪裡 開始 . +He always left the problem of his children is education to his wife . ||| 他 總是 把 孩子 的 教育 問題 留給 他 的 妻子 . +She took me for my brother . ||| 她 把 我 认作 我 弟弟 了 . +You do not have to answer right away . ||| 你 不用 马上 回答 . +I usually take a shower in the evening . ||| 我 通常 在 晚上 洗澡 . +How about taking a rest ? ||| 休息 一下 怎麼樣 ? +She is leaving for America tonight . ||| 她 今晚 離開 去 美國 . +They have been married two years . ||| 他們 已經 結婚 兩年 了 . +He got down the book from the shelf . ||| 他 從 架上 拿下 書 . +She plays tennis in the morning . ||| 她 早上 打 網球 . +I have two children away at university . ||| 我 有 两个 出去 上 大学 的 孩子 . +I thought Tom would be worried . ||| 我 以为 汤姆 会 感到 担心 . +We know . ||| 我们 知道 . +Do you play soccer ? ||| 你 踢足球 嗎 ? +There is a picture on the wall . ||| 牆上 有 一幅 畫 . +My father is sweeping the garage . ||| 我 父親 正在 清 掃車 庫 . +You must pay attention to his advice . ||| 你 一定 要 注意 他 的 建议 . +I can not put up with this smell . ||| 我 不能 忍受 這種 氣味 . +Do you come here often ? ||| 您 经常 来 这儿 吗 ? +What are you reading now ? ||| 你 現在 在 讀 甚麼 ? +The fire reduced the house to ashes . ||| 房子 被 大火 烧成 了 灰烬 . +Farmers always complain about the weather . ||| 农民 总是 抱怨 天气 . +Where can you get tickets ? ||| 在 哪里 可以 买 到 车票 ? +I could not agree with his opinion . ||| 我 不 同意 他 的 看法 . +They are high school students . ||| 他們 是 高中生 . +Dogs have a keen sense of smell . ||| 狗 的 嗅觉 灵敏 . +Tom has not yet told us what he wants us to buy . ||| 汤姆 还 没 对 我们 说 他 希望 我们 买 什么 呢 . +I 'd be unhappy , but I would not kill myself . ||| 我会 不 高兴 , 但 我 不会 自杀 . +Do not underestimate my power . ||| 不要 小看 我 的 力量 . +Women eat lighter meals when they are eating with a guy . ||| 當 女性 跟 一個 男人 吃 飯 時 , 女性 會 吃 得 比較 少 . +This is not a trivial matter . ||| 这 不是 鸡毛蒜皮 的 小事 . +Will it rain tomorrow ? ||| 明天 会 下雨 吗 ? +They say that old house is haunted . ||| 據 說 老房子 鬧 鬼 . +I think that what you are doing is wrong . ||| 我 觉得 你 正在 做 的 是 错 的 . +He is no fool . ||| 他 没 疯 . +He is proud of having been educated in the United States . ||| 他 对 自己 在 美国 读 过 书 这件 事 感到 很 骄傲 . +I could hardly hear him . ||| 我 幾乎 聽 不到 他 的 聲音 . +Excuse me . ||| 对不起 . +I love drinking tea . ||| 我 很 愛 喝茶 . +Please add my name to the list . ||| 請 在 名單 上 加上 我 的 名字 . +Tom has more books than Mary . ||| 湯姆 的 書 比瑪麗 的 還 多 . +Tom will never do it again . ||| 汤姆 再也 不 做 了 . +They always complain . ||| 他們 總 是 抱怨 . +Tom is the one , is not he ? ||| 湯姆 就是 那 一個 , 不是 他麼 ? +Mary put some flowers in the vase . ||| 玛丽 把 一些 花 放进 了 花瓶 . +I am a free man . ||| 我 是 一個 自由 的 人 . +Do not throw trash here . ||| 别 在 这儿 扔 垃圾 . +I went swimming in the river yesterday . ||| 我 昨天 去 河里 游泳 了 . +You look like a little girl . ||| 你 看来 是 个 小女孩 . +Tom is wrong . ||| 湯姆 錯 了 . +Perhaps it will rain in the afternoon . ||| 也許 下午 會 下雨 . +Why do you have two cars ? ||| 他 為 什麼 有 兩輛 車 ? +You are never satisfied with anything I do . ||| 你 對 我 做 的 任何 事 都 不 滿意 . +I want something to drink . ||| 我 想 喝 點 什麼 . +No more , thank you . I am full . ||| 不 , 谢谢 , 我 饱 了 . +She has a lot of English books . ||| 她 有 很多 英文 書 . +Tom did not tell me his secret . ||| 湯姆 沒有 告訴 我他 的 祕 密 . +You ought not to go out . ||| 你 不 應該 出門 . +A barber is a man who shaves and cuts men is hair . ||| 理 髮 師 是 為 男人 刮 鬍 子 和 剪 頭 髮 的 人 . +" When will you come back ? " " It all depends on the weather . " ||| “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +I am cool . ||| 我 很酷 . +The man sold his soul to the devil . ||| 这 男人 把 他 的 灵魂 卖 给 魔鬼 . +I do not procrastinate as much as I used to . ||| 我 不 像 我 以前 那么 拖延 了 . +What did you do with your camera ? ||| 你 用 你 的 照相机 做 了 什么 ? +I think I can run as fast as Tom . ||| 我 认为 我 能 跑 得 跟 汤姆 一样 快 . +What did you do last night ? ||| 你 昨晚 做 了 什麼 ? +The light is green . ||| 現在 是 綠燈 . +Is there someone that can drive ? ||| 有人 会 开车 吗 ? +The music was very loud . ||| 那 音乐 声音 十分 响 . +I am getting old . ||| 我 在 变老 . +People are more educated now than they used to be . ||| 现在 的 人 教育 程度 比 以前 高 得 多 . +Do not confuse desire with love . ||| 不要 把 欲望 和 爱情 混为一谈 . +It is likely to rain all weekend . ||| 可能 整個 週末 都 下雨 . +Today , many people worry about losing their jobs . ||| 今天 , 許多 人 擔心 失去 工作 . +What is over there ? ||| 那 是 什么 ? +Has he met them today ? ||| 他 今天 見 他們 了 嗎 ? +I should really get some sleep . ||| 我 真該 睡 一 覺 了 . +There is a pub just around the corner . ||| 在 轉角 有 一家 酒吧 . +You made the same mistake as last time . ||| 你 犯 了 跟 上次 相同 的 錯誤 . +They hated Tom . ||| 他們 恨 湯姆 . +I saw you driving your new car . ||| 我 看到 你 開著 你 的 新車 . +I can not deal with this problem anymore . ||| 我 不能 再管 这 问题 了 . +Tom is a true man . ||| 汤姆 是 个 真 男人 . +I am lost . ||| 我 迷失 了 . +I do not plan to stay very long . ||| 我 沒有 打算 停留 太久 . +Tom is here because of me . ||| 因为 我 , 汤姆 在 这里 . +Looking at your Facebook friends ' photos is a waste of time . ||| 在 Facebook 上 瀏覽 朋友 的 照片 是 在 浪費 時間 . +There is no way off the island . ||| 沒有 辦法 離開 這個 島 . +You are really wonderful . ||| 你 真是 太好了 . +I play tennis once in a while . ||| 我 偶爾 打 網球 . +He was ill , so he could not come . ||| 他 病 了 , 所以 他 不能 來 . +It is not a bug , it is an undocumented feature . ||| 这 不是 一个 漏洞 , 而是 一个 没有 写 进 文档 的 特性 . +You should drive at a safe speed . ||| 你 應該 以 安全 速度 駕駛 . +What did you have to eat ? ||| 你 必須 吃 什麼 ? +I have always wanted to be a professional basketball player . ||| 我 一直 想 成为 一名 职业 篮球 运动员 . +The stripes were horizontal . ||| 條紋 是 水平 的 . +Tom looked pretty healthy last night . ||| 汤姆 昨晚 看来 很 健康 . +As far as I am concerned , she is a complete stranger . ||| 她 对 我 来说 是 一个 完全 陌生 的 人 . +I have got things under control . ||| 我 控制 住 了 . +He pretended to be a doctor . ||| 他 假裝 是 一名 醫生 . +Could you please repeat what you just said ? ||| 您 可以 再 重复 一遍 刚才 说 的话 吗 ? +He got a loan from the bank . ||| 他 從 銀行 得到 了 貸款 . +What do you think I should wear on my date tomorrow ? ||| 你 觉得 我 明天 约会 穿 什么 好 呢 ? +I might say yes . ||| 我 可能 会 说 是 . +She said that she had been happy . ||| 她 說 她 以前 很快 樂 . +He has been to Europe many times . ||| 他 去過 歐洲 很 多次 了 . +Tomorrow is my day off . ||| 明天 是 我 的 休息日 . +I bought this book the other day . ||| 我 前 幾天 買 了 這 本書 . +This is not good . ||| 这 不好 . +She was aching all over . ||| 她 全身 都 疼 . +His speech was short and to the point . ||| 他 的 演讲 简短 且 切中要害 . +I often played tennis with her . ||| 我 常常 和 她 打 網球 . +See above . ||| 参见 上 文 . +I am sending you a birthday present by airmail . ||| 我 寄 給 你 一個 航空 郵件 生日 禮物 . +I went there because I wanted to . ||| 我 去 了 那裡 , 因為 我 想 去 . +You will soon get used to speaking in public . ||| 你 很快 就 會 習慣 在 公開場 合 講話 了 . +Can you lend me some money ? ||| 你 可以 借 我 一些 錢 嗎 ? +I am just another man . ||| 我 只是 个 大众 脸 . +I can do it in a week . ||| 我 可以 在 一週 內 做 . +There is food on the desk . ||| 书桌上 有 食物 . +I need some help with my work . ||| 我 在 我 的 工作 上 需要 一些 幫助 . +Can you hear me ? ||| 你 听得见 吗 ? +If you need a pen , I will lend you one . ||| 如果 你 需要 笔 的话 , 我 借 你 一支 . +That is exactly how I feel . ||| 那 就是 我 的 感受 . +He did not accept their invitation . ||| 他 沒有 接受 他們 的 邀請 . +Tom says he left a note . ||| 汤姆 说 他 留 了 张 便条 . +Do we have milk in the fridge ? ||| 我们 冰箱 里 有 牛奶 吗 ? +Do not pay any attention to what your father says . ||| 别 在意 你 父亲 说 的话 . +Maybe you will succeed . ||| 也許 你 會 成功 . +I do not want to fail my exams . ||| 我 不想 挂科 . +Do you have it ? ||| 你们 有 吗 ? +He was playing tennis all day . ||| 他 整天 打 網球 . +We lost it . ||| 我们 失去 了 它 . +I think you went too far . ||| 我 觉得 您 过火 了 . +She has to take a remedial course in English . ||| 她 需要 上 英语 补习班 . +She asked me where I was going . ||| 她 問 了 我 要 去 哪裡 . +It is going to rain this evening . ||| 今天 晚上 會 下雨 . +Get off your high horse , Tom . ||| 别 那么 趾高气扬 , 汤姆 . +He is getting better bit by bit . ||| 他 一點 一點 地 變好 . +I did not recognize anyone in the room . ||| 房子 里面 的 人 我 一个 也 不 认得 . +We should have worked harder . ||| 我們 應該 工作 得 更 努力 . +What is Tom given us ? ||| 汤姆 给 了 我们 什么 ? +How am I going to explain this ? ||| 我 要 怎麼 解釋 ? +It is difficult to understand this novel . ||| 这部 小说 很 难 读懂 . +I relaxed at home last Sunday . ||| 我 上個 星期天 在家 裡 放 輕 鬆 . +I thought my head would explode . ||| 我 觉得 我 的 头 要炸 了 . +It was a lot of fun . ||| 它 很 好玩 . +I have been here a long time . ||| 我 在 這裡 很 長 一段 時間 了 . +I must repay the debt . ||| 我 必须 偿还债务 . +Put the book where you found it . ||| 把 書 放在 你 找到 的 地方 . +I did not see him . ||| 我 没 见到 他 . +You should try to form the habit of using your dictionaries . ||| 你们 该 养成 使用 字典 的 习惯 . +How long have you been abroad ? ||| 你 在 國外 多久 了 ? +It looks like it will rain today , too . ||| 今天 也 好像 會 下雨 . +Are you still living with your parents ? ||| 你 依然 和 父母 住 一起 吗 ? +Please stop that right now . ||| 请 即刻 停止 . +I want to move out of this cramped room as soon as I can . ||| 我 想 尽快 从 这个 不透气 的 屋子里 出去 . +He is rarely in a good mood . ||| 他 很少 心情 很 好 . +I am dripping with sweat . ||| 我 正 流 着 汗 . +It is likely to rain again . ||| 很 有 可能 还 会 下雨 . +My ex @-@ husband no longer lives in this city . ||| 我 前男友 不再 住 在 這個 城市 了 . +He cured my illness . ||| 我 的 病 给 他 治好 了 . +He finally became the president of IBM . ||| 他 最终 成 了 IBM 的 总裁 . +He wants something cold to drink . ||| 他 想 喝 些 冷 飲 . +I would like to sit in the non @-@ smoking section . ||| 我 想 坐在 无烟 区 . +I was offended by his behavior . ||| 他 的 行為 冒犯 了 我 . +He has no house in which to live . ||| 他 没有 房子 住 . +I have got everything that you want . ||| 我 已經 得到 了 一切 你 想要 的 東西 . +She gave me a meaningful look . ||| 她 意味 深長 地 看 了 我 一眼 . +It is not anything like as cold as it was yesterday . ||| 今天 沒有 像 昨天 那麼 冷 . +I think I have found the answer . ||| 我 想 我 找到 答案 了 . +I have never seen him wearing jeans . ||| 我 從來 沒有 看 過 他 穿 牛仔 褲 . +How often do you see him ? ||| 您 多久 见 他 一次 ? +Who is dying ? ||| 誰 要死 了 ? +This will be a good souvenir of my trip around the United States . ||| 这 将 是 我 环绕 美国 旅行 中 一个 很好 的 纪念品 . +Swimming is easy for me . ||| 游泳 對 我 來說 很 容易 . +I like this dog . ||| 我 喜欢 这 只 狗 . +Between you and me , I think our boss is stupid . ||| 我 觉得 我们 老板 很蠢 , 这 我 就 只 跟 你 说 . +Should Tom be worried ? ||| Tom 應該 要 擔心 嗎 ? +I will remember you forever . ||| 我 會 永遠 記住 你 的 . +The clown made a funny face . ||| 小丑 做 了 个 鬼脸 . +I have a proposal . ||| 我 有個 提案 . +He scraped the mud off his boots . ||| 他 刮下 靴子 上 的 泥巴 . +I am a detective . ||| 我 是 个 侦探 . +The house was in flames . ||| 房子 被 火 吞噬 了 . +I know that you are learning French at school . ||| 我 知道 你 在 學校 學法 語 . +That was wrong . ||| 那样 是 错 的 . +May I share this table with you ? ||| 我 可以 跟 你 共用 這 張 桌子 嗎 ? +I met him just as he was coming out of school . ||| 正 當 他 從 學校 回來 的 時候 , 我 遇見 了 他 . +Take care . ||| 照顾 好 自己 . +How was the seminar ? ||| 这 研究会 怎么样 ? +He drank a whole bottle of milk . ||| 他 喝 了 一整瓶 的 牛奶 . +How is it going ? ||| 你們 好 嗎 ? +Are you wearing a watch ? ||| 你 有 戴 手表 吗 ? +Do you have to make dinner ? ||| 你 必须 做 晚饭 吗 ? +Everyone knew Tom was the one who did it . ||| 大家 都 知道 是 汤姆 做 的 +She could not attend that party because she was sick . ||| 她 因 病 不能 出席会议 . +My eyes hurt . ||| 我 的 眼睛 痛 . +There is a photo of Tom on Mary is desk . ||| 在 瑪麗 的 桌上 有 張湯姆 的 照片 . +Kyoto has many places to see . ||| 在 京都 , 有 很多 的 景点 值得一看 . +You will need a special tool to do it . ||| 你 会 需要 一个 特殊 的 工具 来 做 这件 事 . +They made him captain of the team . ||| 他們 要 他 作隊 長 . +He had decided on a new policy . ||| 他 已經 決定 了 新 的 政策 . +We have a great team . ||| 我们 有个 好极了 的 团队 . +These boxes are made of plastic . ||| 這些 箱子 是 由 塑料 製 成 的 . +It is difficult to understand his theory . ||| 他 的 理论 很 难懂 . +You do not need money . ||| 你 不 需要 錢 . +He may be able to come tomorrow . ||| 他 也 許 明天 能來 . +I will be there rain or shine . ||| 風雨無阻 我 都 會 在 那裡 . +There is a cup on the table . ||| 桌上 有個 杯子 . +Tom wanted revenge . ||| 湯姆 想 報仇 . +She made elaborate preparations for the party . ||| 她 精心 籌備 了 這個 派 對 . +I will be your first patient . ||| 我 將 是 你 的 第一 個 病人 . +He must finish his homework today . ||| 他 今天 必須 完成 他 的 功課 . +It was through his influence that she became interested in ecology . ||| 她 开始 对 生态学 感兴趣 , 是 受到 他 的 影响 . +I do not recommend eating in that restaurant . The food is awful . ||| 我 不 推荐 在 那家 餐馆 吃饭 . 食物 糟糕 透 了 . +I study for 3 hours every day . ||| 我 每天 讀書 三個 小 時 . +Who threw a stone at my dog ? ||| 谁 朝 我 的 狗 扔 的 石子 ? +Love makes the world go round . ||| 爱 让 世界 转动 . +It was just a matter of time . ||| 这 只是 时间 上 的 问题 . +Do you know when they will arrive ? ||| 你 知道 他们 什么 时候 到 吗 ? +Someone told me about that . ||| 有人 跟 我 說 這件 事 . +Tom encouraged his son to study French . ||| 汤姆 鼓励 他 儿子 学法语 . +What did you go to Kyoto for ? ||| 你 為 什麼 去 京都 ? +Sometimes things that happen do not make sense . ||| 有时候 , 发生 的 事情 并 不是 合情合理 的 . +Please let me go . ||| 請 讓 我 走 . +Who was here ? ||| 谁 来 了 这里 ? +He has gone abroad by himself . ||| 他 一个 人 去 了 国外 . +By the year 2020 , the population of our city will have doubled . ||| 在 2020 年 以前 , 我們 的 城市 的 人口 將 增加一倍 . +My room is upstairs on the left . ||| 我 的 房間 在 樓上 的 左邊 . +There was little water in the well . ||| 這 口 井裡 的 水 很少 . +It is been ten years since I came to this town . ||| 我 來 這個 鎮有 十年 了 . +The goods arrived undamaged . ||| 货物 毫无 损坏 地 到达 了 . +Generally , Japanese people are shy . ||| 一般而言 , 日本 人 很 害羞 . +She employed a private detective to keep a watch on her husband . ||| 她 僱 了 一個 私人 偵探 看守 她 的 丈夫 . +That is a hard question to answer . ||| 那 是 一個 很 難 回答 的 問題 . +I think you have mistaken me for someone else . ||| 我 想 你 將 我 認成 別人 了 . +He is not my brother . He is my cousin . ||| 他 不是 我 的 兄弟 . 他 是 我 的 表弟 . +Would you like anything to eat ? ||| 您 想 吃 点 什么 吗 ? +That is the chair that I really like . ||| 那 是 我 真的 很 喜歡 的 椅子 . +I am good at soccer . ||| 我 擅長 足球 . +It only costs $ 10.00 ! ||| 只要 十元 ! +I 'd rather not go out this evening . ||| 我 今天 晚上 寧可 不要 出門 . +I ate french fries . ||| 我 吃 了 炸薯 條 . +Tom has lived here since 2003 . ||| 汤姆 自从 2003 年 就 住 在 这里 . +How many days are there in a week ? ||| 一周 有 几天 ? +We expect a lot from him . ||| 我們 對 他 期望 很多 . +He is glad to hear the news . ||| 他 很 高興 聽到 這個 消息 . +Buy some milk on your way home . ||| 回来 的 路上 买点 牛奶 . +I am crazy about you . ||| 我 為 你 瘋狂 . +Would you care for another cup of coffee ? ||| 再 来 一杯 咖啡 怎么样 ? +There are many hotels downtown . ||| 市中心 有 很多 旅馆 . +I am glad Mary is not my wife . ||| 我 很 高兴 玛丽 不是 我 的 妻子 . +Stay out of my kitchen . ||| 别 进 我 的 厨房 . +It is stopped snowing . ||| 雪停了 . +I was the last one to turn in my test . ||| 我 是 最后 交 的 考试卷 . +Are you a practicing physician ? ||| 你 是 执业 医师 吗 ? +She wept the entire night . ||| 她 一 整晚 都 在 哭 . +I can hardly see without my glasses . ||| 沒有 了 我 的 眼鏡 我 幾乎 看不到 . +He is the boy we spoke about the other day . ||| 他 是 前 幾天 我們 談到 的 那個 男孩 . +I saw a girl with long hair . ||| 我 看见 一个 长 头发 的 女生 . +Tom did not need to finish that work by today . ||| 汤姆 不必 今天 就 完成 那 工作 . +Your father is pretty tall . ||| 你 爸爸 很 高 . +You are partially correct . ||| 你 部分 正确 . +Why exactly did you need to do that ? ||| 你 到底 为什么 要 这么 做 ? +Some of them seem to be too difficult . ||| 其中 一些 似乎 太 难 了 . +Do not you want to know why ? ||| 你 不想 知道 为什么 吗 ? +He is a friend of my brother is . ||| 他 是 我 弟弟 的 一個 朋友 . +It is not a watch . ||| 這 不是 手 錶 . +Take as much as you like . ||| 你 爱 拿 多少 就 拿 多少 . +She warmed herself by the fire . ||| 她 在 火 旁邊 讓 自己 暖和 起來 . +Few students could understand what he said . ||| 幾乎 沒有 學生 能 懂 他 所 說 的 話 . +In case of fire , ring the bell . ||| 萬 一 發 生火 災 , 按 鈴 . +We should call the police . ||| 我們 應 該 叫 警察 來 . +Tom is my older brother . ||| Tom 是 我 哥哥 . +I really want to see you . ||| 好 想 見 到 你 +Earthquakes frequently hit Japan . ||| 地震 頻繁 地 襲擊 日本 . +He works in a factory . ||| 他 在 一家 工廠 工作 . +I like grape jelly best . ||| 葡萄 味 的 果凍 是 我 最 喜歡 的 . +How long will this rope hold ? ||| 這條 繩子 能撐 多久 ? +My sister made me a beautiful doll . ||| 我 妹妹 做 了 一個 漂亮 的 娃娃 給 我 . +A ball is floating down the river . ||| 一個 球 正 順流而下 . +What are the origins of the Olympics ? ||| 奥林匹克 的 起源 是 什么 ? +I am sick and tired of hamburgers . ||| 我 吃 膩 了 漢堡 . +I studied English for four years with a native speaker . ||| 我 跟 英语 母语 者 学 了 四年 英语 . +You gain nothing by speaking ill of others . ||| 通过 诋毁 别人 , 你 得不到 什么 . +I would like to introduce you to my parents . ||| 我 想 介紹 你 給 我 父母 認識 . +Tom did not know Mary had a boyfriend . ||| 湯姆 不 知道 瑪麗 有 男朋友 . +Children need loving . ||| 孩子 们 需要 关爱 . +The army forced him to resign . ||| 军队 强迫 他 辞职 . +She must still be in her twenties . ||| 她 一定 還 只是 二十 幾歲 . +He is still very much alive . ||| 他 依旧 充满活力 . +The cat is under the table . ||| 猫 在 桌子 底下 . +Tom begged me to let him go home early . ||| 汤姆 求 我 让 他 早点 回家 . +I go to bed after I study . ||| 我 讀 完 書 之 後 就 去 睡 覺 . +We are finding it difficult deciding on which one to buy . ||| 我们 觉得 很 难 决定 买 哪 一个 . +I bought a camera two days ago . ||| 兩天 前 我 買 了 一台 照相 機 . +Kissing a person who smokes is like licking an ashtray . ||| 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +Tom wondered why there was a dog in his house . ||| 汤姆 奇怪 为什么 他 的 房子 里 有 只 狗 . +I am still angry about that . ||| 我 还是 为 那 生气 . +I just was not paying attention . ||| 我 只是 没 注意 . +Sorry , we do not accept credit cards . ||| 對 不起 , 我們 不 接受 信用卡 . +I hope it will be fine tomorrow . ||| 我 希望 明天 將 是 美好 的 . +Japan imports various raw materials from abroad . ||| 日本 從 國外 進口 各種 原料 . +Tom likes swimming . ||| 湯姆 喜歡 游泳 . +I am going to major in French . ||| 我 將 主修 法文 . +He looked in all directions , but did not see anyone . ||| 他 看 了 看 四周 , 但 沒 看見 任何人 . +Do whatever you think is right . ||| 做 你 認為 正確 的 事 . +What we had to do was really quite simple . ||| 我們 要 做 的 很 簡單 . +He is always worrying about his daughter . ||| 他 一直 很 担心 他 的 女儿 . +I cannot help thinking that my son is still alive . ||| 我 不禁 想 我 的 儿子 一直 都 在 生 . +Tom is French is already rather good . ||| 汤姆 的 发育 已经 很 好 了 . +He is much older than he looks . ||| 他 的 實際 年齡 比 他 看 起來 老 得 多 . +I am not a doctor . ||| 我 不是 醫生 . +He seems to be rich . ||| 他 看 起來 很 有 錢 . +Will you listen to me for a few minutes ? ||| 您 愿意 听 我 说 几分钟 话 吗 ? +They kissed . ||| 他们 亲吻 了 . +A caged cricket eats just as much as a free cricket . ||| 籠子 裡 的 蟋蟀 吃 得 跟 野生 的 蟋蟀 一樣 多 . +I bought two pairs of trousers . ||| 我 买 了 两条 裤子 . +They were all hoarse from shouting . ||| 他們 全都 叫 到 沙 啞 了 . +Who did you talk with ? ||| 你 和 谁 说话 呢 ? +Tom seems to be easygoing . ||| 湯姆 看來 隨 和 . +Coffee will be served after the meal . ||| 咖啡 將 會 在 餐 後 供應 . +I do not like that guy . ||| 我 不 喜欢 那家伙 . +I still love her . ||| 我 仍然 爱 着 她 . +Tom does not have a lot of freedom . ||| 汤姆 没有 很多 自由 . +Tom got ripped off . ||| 汤姆 被 敲竹杠 了 . +Tom puts gas in his car twice a week . ||| 湯姆 每週 幫 車子 加 兩次 油 . +You are cuter than Mary . ||| 你 比 玛丽 可爱 . +He lives alone . ||| 他 一个 人 生活 . +My mother is writing a letter now . ||| 我 母親 現在 正在 寫 一封信 . +He is interested in many things . ||| 他 對 很多 事情 都 有 興趣 . +Our car broke down last night . ||| 我們 的 昨晚 車 拋錨 了 . +Learning French is not difficult . ||| 学法语 不难 . +You can call me anytime you like . ||| 你 喜欢 什么 时候 打给 我 就 什么 时候 打 . +Would you please look over my report ? ||| 你 可以 仔細 檢查 一下 我 的 報告 嗎 ? +A burglar broke into my house while I was away on a trip . ||| 一个 入室 盗窃者 趁 我 去 旅游 的 时候 闯入 了 我家 . +Tom wanted something else . ||| 湯姆 想要 別的 東西 . +This fork is dirty . ||| 這 把 叉子 是 髒 的 . +They insist that he should go . ||| 他们 坚持 让 他 走 . +She spoke scarcely a word of English . ||| 她 几乎 不 说 英语 . +Could I borrow a pencil ? ||| 我 能 借支 铅笔 吗 ? +I suppose you like him . ||| 我 猜想 您 喜欢 他 . +It is much more convenient . ||| 这 方便 得 多 了 . +I am not as tall as you . ||| 我 沒 有 你 高 . +He often eats fish for dinner . ||| 他 晚 飯 經常 吃 魚 . +I ripped my pants . ||| 我 扯掉 了 自己 的 裤子 . +Much of London was destroyed in the seventeenth century . ||| 倫敦 許多 部份 在 十七 世紀時 被 摧毀 . +Why do not we stop arguing over these piddling matters and get to the issues at hand ? ||| 为什么 我们 不 停止 为 细枝末节 的 争吵 而 进入 正题 呢 ? +Let is go as soon as it stops raining . ||| 只要 雨 一停 我们 就 走 . +He often sits by me and listens to music . ||| 他 经常 坐在 我 旁边 听 音乐 . +He is still sitting on the bench . ||| 他 還 坐在 長椅 上 . +I baked some apple pies . ||| 我 烤 了 蘋果 派 . +He is often mistaken for a student . ||| 他 常常 被誤 認為 是 個 學生 . +I have breakfast at seven . ||| 我 在 七點 吃 早 飯 . +Pick up the pencil from the floor . ||| 從 地上 撿 起 這 支 鉛 筆 . +I cannot find fault with him . ||| 我 挑不出 他 的 毛病 . +When did Tom ask you to do that ? ||| 湯姆 是 甚麼 時候 讓 你 去 做 的 ? +What is aspirin made of ? ||| 阿司匹林 是 用 什么 做 的 ? +Will I be the only one going to the party ? ||| 会 不会 只有 我 一个 人 去 聚会 ? +He is taller than his brother . ||| 他 比 他 的 弟弟 高 . +I will do my best . ||| 我 會 盡力 而為 . +How dare you speak like that ? ||| 您 怎么 敢 这样 说话 ? +We know it was you that killed Tom . ||| 我們 知道 昰 你 殺 了 湯 姆 . +I thank you very much for your kindness . ||| 我 十分 感谢 你 的 好意 . +Are you still at home ? ||| 你們 還 在家 裡 嗎 ? +I was just about to come looking for you . ||| 我 剛才 正要 找 你 . +Please come back as soon as possible . ||| 请 尽快 回来 . +We must respect other people is privacy . ||| 我們 必須 尊重 別人 的 私 隱 . +Tom was waiting inside his cabin . ||| 汤姆 在 他 的 小 屋里 等 着 . +These flowers have a unique smell . ||| 這些 花 有 一種 獨特 的 氣味 . +He is able to play the guitar . ||| 他 會 彈 吉他 . +I 'd like a room facing the garden . ||| 我 想要 一間 面 對 花園 的 房間 . +He is a screwball . ||| 他 是 一個 怪人 . +Did Tom tell you it was an emergency ? ||| 你 告诉 汤姆 那 是 紧急情况 了 吗 ? +What is wrong , honey ? ||| 出 什么 事 了 , 宝贝 ? +This is my bicycle . ||| 这 是 我 的 自行车 . +It sounds as if he were to blame for the disaster . ||| 听 起来 好像 他 是 这场 灾难 的 罪魁祸首 . +You 'd better wear a sweater under your jacket . ||| 您 最好 在 外衣 里 穿 一件 套衫 . +Fancy meeting you here ! ||| 想不到 會 在 這裡 遇見 你 ! +Quite a few Americans like sushi . ||| 不少 的 美國 人 喜歡 壽司 . +I am good at singing . ||| 我 唱歌 很 好听 . +I am not picky . I will eat anything . ||| 我 不 挑剔 , 我 什么 都 吃 . +I saw Liz this morning . ||| 今天 早上 我 看到 了利茲 . +Are there any direct flights between Boston and Sydney ? ||| 请问 波士顿 和 悉尼 之间 有 直飞 航班 吗 ? +It is essentially a question of time . ||| 它 本質 上 是 一個 時間 的 問題 . +She took care of the poor little bird . ||| 她 照顾 可怜 的 小鸟 . +Whose idea was it to call the police ? ||| 想 报警 的 是 谁 ? +She had the nerve to speak out . ||| 她 有 膽量 說 出來 . +What vegetables do you like to eat ? ||| 你 喜歡 吃 什麼 菜 ? +He started to speak English . ||| 他 开始 说 英语 了 . +It was very cold yesterday morning . ||| 昨天早上 很 冷 . +Animals are afraid of fire . ||| 动物 怕 火 . +She kept working . ||| 她 继续 工作 . +He played baseball after school . ||| 他 放学 后 打 棒球 . +I feel fine . ||| 我 感觉 很 好 . +We succeeded . ||| 我们 成功 了 . +I saw a helicopter flying overhead . ||| 我 看见 一架 直升飞机 在 头顶 飞 . +Please wrap it like a Christmas present . ||| 請 把 它 包裝 得 像 一個 聖誕 禮物 . +She went down to the fifth floor . ||| 她 下五 樓 去 了 . +Tom works in Boston . ||| 湯姆 在 波士 頓 工作 . +It is just around the corner . ||| 就 在 转角处 . +Will you help me move this desk ? ||| 你 能 幫 我 搬 這 張 桌子 嗎 ? +She studies mathematics . ||| 她 学习 数学 +I think about it often . ||| 我 经常 想着 它 . +He was home alone at the time . ||| 他 当时 一个 人 在家 . +I watched a great movie yesterday . ||| 我 昨天 看 了 部 很棒 的 電影 . +In the U.S. , most people can vote when they reach eighteen years of age . ||| 在 美国 , 大多数 人能 在 十八岁 后 投票选举 . +He married a pretty girl . ||| 他 娶 了 一個 漂亮 的 女孩 . +He participated in the debate . ||| 他 参加 辩论 +I got a bee sting . ||| 我 被 蜜蜂 蛰了 一下 . +Give it back . ||| 还 回去 +They obeyed orders . ||| 他们 服从 了 命令 . +He took her out for a drive . ||| 他 帶 她 出去 兜風 了 . +There is a bus every 20 minutes . ||| 每 20 分钟 有 一 班车 . +She returned the book to the library . ||| 她 把 書 還 給 了 圖書館 . +She cannot do without her car . ||| 沒有 車 她 做不了 事 . +Pass me the salt , would you ? ||| 把 鹽 遞 給 我 好 嗎 ? +I have an umbrella in my car . ||| 我 的 车里 有 伞 . +He is not as intelligent as his brother . ||| 他 沒 有 他 弟弟 聰明 . +What time did you get to bed last night ? ||| 你 昨天 甚麼 時候 睡覺 ? +Humans only live about 70 years . ||| 一个 人 只能 活 七十岁 左右 . +When will we go ? ||| 我們 甚麼 時候 出發 ? +Your assistance is indispensable for us . ||| 您 的 帮助 对 我们 来说 是 必不可少 的 . +Let is begin on page 30 . ||| 讓 我們 從 第 30 頁 開始 . +Tom is happy . ||| 湯姆高興 . +They are leaving in three days , that is to say June 10th . ||| 他們 將 在 三天 後 離開 , 那 也 就是 說 在 六月 十日 . +Tom came to see if Mary needed any help . ||| 汤姆 过来 看看 玛丽 有没有 什么 需要 帮忙 的 . +I think that our living together has influenced your habits . ||| 我 觉得 我 和 你 一起 住 影响 了 你 生活 的 方式 . +We will go on a picnic tomorrow . ||| 我們 明天 要 去 野餐 . +Mail this letter . ||| 把 这 封信 寄 了 . +You can dig dirt from the ground . ||| 你 可以 在 地上 挖土 . +Please tell me . ||| 請 告訴 我 . +I know none of them . ||| 他们 中 的 任何 一位 我 都 不 认识 . +We are still a little confused . ||| 我們 還 是 有 點 疑惑 . +She read an amusing story to the children . ||| 她 给 孩子 们 读 了 个 有趣 的 故事 . +It rained yesterday . ||| 昨天 下雨 了 . +She is asking how that is possible . ||| 她 问 这 怎么 可能 . +Please pass me the salt . ||| 請 把 鹽 遞 給 我 . +Tom told the cops everything . ||| 湯姆 全都 告訴 了 條子 . +Do you have any plans for tonight ? ||| 今晚 有 什么 计划 吗 ? +You are not too late . ||| 你 還 不 太晚 . +Be still . ||| 静静的 , 别动 . +His hobby is collecting old stamps . ||| 他 的 兴趣爱好 是 收集 旧 邮票 . +He said , " I want to be a scientist . " ||| 他 說 : “ 我 想成 為 科學家 . ” +The police will look into the case . ||| 警察 会 调查 这 起 案件 . +Whose is this ? ||| 这 是 谁 的 ? +I should not have logged off . ||| 我 不该 退出 的 . +He has a son and two daughters . ||| 他 有 一個 兒子 和 兩個 女兒 . +We did not see anybody . ||| 我们 谁 也 没 看见 . +I envied his new house . ||| 我 羨慕 他 的 新房子 . +Beer is taxed according to its malt content , so low @-@ malt beer is cheaper . ||| 因为 啤酒 会 根据 麦芽 含量 去 征税 , 所以 发泡 酒会 比较 便宜 . +What are your weekend plans ? ||| 你 週末 有 什麼 計劃 ? +I will miss your cooking . ||| 我 會 想念 你 的 廚藝 . +Look there . ||| 看 那里 . +I love that story . ||| 我 喜欢 那个 故事 . +What is the time in Boston now ? ||| 波士顿 现在 几点 ? +Dentists take x @-@ rays to examine your teeth . ||| 牙医 用 X光 检查 你 的 牙齿 . +It is obvious that he lied . ||| 顯然 地 他 撒 了 謊 . +He dropped in at the bookstore . ||| 他 順道 去 了 這家 書店 . +I felt an impulse to cry out loud . ||| 我 突然 好 想 大叫 . +My aunt gave me an album . ||| 我 姑姑 給 了 我 一本 集郵冊 . +I was very tired last night . ||| 我 昨晚 很 累 了 . +Turn it off . ||| 把 它 关掉 . +He is from France . ||| 他 是从 法国 来 的 . +She knows me . ||| 她 认识 我 . +I promise I will do it . ||| 我 保证 我会 做 的 . +I do not like studying . ||| 我 不 喜欢 学习 . +I went there by bus and train . ||| 我 搭 公車 和 火車 去 那裡 . +They always fight over little things . ||| 他们 总是 为了 小事 吵架 . +Everyone wanted a piece of the cake . ||| 每个 人 都 想 分 一点 蛋糕 . +You have such beautiful , hazel eyes . ||| 你 有 如此 美麗 的 淡褐色 眼睛 . +Can we roller @-@ skate in this park ? ||| 我們 可以 在 這個 公園 裡 玩 四輪 溜冰 嗎 ? +It is human nature . ||| 它 是 人 的 天性 . +He goes to London once a month . ||| 他 一個 月 去 一次 倫敦 . +He is already too far away to hear us . ||| 他 已經 離 得 太 遠 聽 不到 我們 了 . +Your brother got married , did not he ? ||| 你 哥哥 結婚 了 , 不是 嗎 ? +I had a really bad nightmare last night . ||| 昨晚 我 做 了 一个 可怕 的 噩梦 . +She went shopping with her mother . ||| 她 和 她 母親 去 購物 . +What is your phone number ? ||| 你 电话号码 是 多少 ? +This place gives me a really bad vibe . ||| 这 地方 给 我 一个 很差 的 印象 . +Do not step in the mud . ||| 别 走进 泥地 . +To master English is difficult . ||| 精通 英語 是 困難 的 . +We had a lot to drink . ||| 我们 喝 了 很多 . +This is really difficult to deal with . ||| 這件 事 真難 處理 . +I am sorry to put you through that . ||| 很 抱歉 让 你 遭 这 罪 . +She put the magazine on the table . ||| 她 把 雜 誌 放在 桌上 . +When will the world come to an end ? ||| 世界末日 是 什么 时候 ? +That novel is not for children . ||| 那 本小 說 不 適合 兒童 . +Write on every other line . ||| 每隔 一行 寫 . +The teacher let the boy go home . ||| 老師 讓 這個 男孩 回家 . +I learned to drive a car and got a driver is license when I was eighteen . ||| 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +Let me know where you are staying . ||| 讓 我 知道 你 住 在 哪裡 . +I do not like these remarks . ||| 我 不 喜歡 這 番 話 . +I can not go with you because I am very busy . ||| 我 不能 和 你们 一起 去 , 因为 我 很忙 . +I found a beautiful shell on the shore . ||| 我 在 海滩 上 发现 了 一个 漂亮 的 贝壳 . +Please turn off the light before you go to bed . ||| 上床睡觉 之前 请 关灯 . +Tom is lonely and unhappy . ||| 汤姆 又 孤单 又 不幸 . +Have a look at the world map . ||| 来 看看 世界地图 . +Tom and Mary went to the best restaurant in town . ||| 汤姆 和玛丽 去 了 镇上 最好 的 饭店 . +I do not want something like this to happen . ||| 我 不想 这种 事 发生 . +This is the lady who wants to see you . ||| 這位 就是 誰 想 見 你 的 夫人 . +Tom is a student . ||| 湯姆 是 個 學生 . +He was born in Nagasaki . ||| 他 出生 於長崎 . +I am interested in sports . ||| 我 对 运动 感兴趣 . +Do you know which road leads to my house ? ||| 你 知道 哪 一條 路 到 我家 嗎 ? +You 'd better keep your money for a rainy day . ||| 你 最好 未雨绸缪 . +Please be careful not to get hurt . ||| 请 小心 不要 受伤 了 . +You have got something in your teeth . ||| 牙齿 卡 了 点 东西 . +Help yourself to anything you would like to eat . ||| 想 吃 什么 就 吃 什么 吧 . +My mother is a lawyer . ||| 我 妈妈 是 律师 . +Bee stings can be very painful . ||| 蜜蜂 螫人 可以 是 非常 痛苦 的 . +What is in front of you ? ||| 在 你 面前 是 什麼 東西 ? +It rained hard last night . ||| 昨晚 雨 下得 很大 . +He is not an American . ||| 他 不是 美国 人 . +She kept me waiting for 30 minutes . ||| 她 让 我 等 了 半小时 . +I am familiar with this neighborhood . ||| 我 對 這 附近 很 熟悉 . +I saw tears in her eyes . ||| 我 在 她 的 眼睛 裡 看到 淚水 . +Not all aliens are bad . ||| 不是 所有 外星人 都 坏 . +I entered the room and shook hands with him . ||| 我 走進 了 房間 與 他 握手 . +I do not doubt it . ||| 我 没有 疑问 . +Please write with a pen . ||| 请 用 钢笔 写 . +There is no admission fee for children under five . ||| 五岁 以下 的 小孩 票价 全面 . +Did you hear your name called ? ||| 你 聽見 有人 叫 你 的 名字 嗎 ? +Tom finally did something right . ||| 汤姆 最终 做 了 点 正确 的 事 . +I am as old as he is . ||| 我 和 他 同年 . +She has many friends in the United States . ||| 她 有 很多 美国 朋友 . +He lived abroad for much of his life . ||| 他 大半生 都 住 在 国外 . +Where did you go last Sunday ? ||| 上周日 你 去 哪儿 了 ? +None of them could understand what she was implying . ||| 他們 沒 有人 了解 她 暗示 什麼 . +Do you like Indian food ? ||| 你 喜歡 印度 菜 嗎 ? +They wash their hands . ||| 他們 洗手 . +I need your advice . ||| 我 需要 你 的 意见 . +Tom is a hick . ||| 汤姆 是 个 乡巴佬 . +This must be my book . ||| 这 肯定 是 我 的 书 . +Everything matters . ||| 任何 事情 都 是 重要 . +Which do you like better , this or that ? ||| 你 更 喜欢 哪个 , 这个 还是 那个 ? +I thought Tom would win . ||| 我 认为 汤姆 会 赢 . +You 'd better go to bed at once . ||| 你 最好 立马 去 睡觉 . +I will not attend the party . ||| 我 将 不 出席 派对 . +Tom tried to stab me . ||| 汤姆 企图 刺 我 . +Where are the showers ? ||| 浴室 在 哪里 ? +Those apples are big . ||| 那些 蘋果 很大 . +Why were you late this morning ? ||| 今天 早上 你 為 什麼 遲到 了 呢 ? +He showed me the manuscript of his new play . ||| 他 给 我 看 了 他 最新 剧 的 底稿 . +His horse jumped over the fence . ||| 他 的 馬 跳 過 了 柵欄 . +Tom took a step backward . ||| 汤姆 后退 一步 . +The engineer told us how to use the machine . ||| 工程师 告诉 我们 如何 使用 机器 . +I am sorry , I forgot to do my homework . ||| 对不起 , 我 忘 了 作业 这 回事 了 . +Please close the door . ||| 請關 上門 . +My father is suffering from a cold . ||| 我 父親 感冒 了 . +He amazed everyone by passing his driving test . ||| 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 覺得 驚訝 . +She was very proud of her father . ||| 她 為 她 的 父親 感到 非常 驕傲 . +I have nothing to do with the crime . ||| 这个 犯罪 和 我 一点 关系 都 没有 . +Ask your dad to help you . ||| 請 你 父親 幫 你 . +I want to go to school and study hard . ||| 我 想 上学 并 努力学习 . +My daughter is in her late teens . ||| 我 的 女兒 快 二十 歲 了 . +What are you talking about ? ||| 你 说 的 是 什么 ? +What if Tom says no ? ||| 汤姆 说 不行 会 怎样 呢 ? +We will need a head hunting agency to find the right man for this executive position . ||| 我們 需要 人力 仲介公司 幫 我們 找到 合適 的 人 來 擔任 這個 管理 職位 . +It is fairly warm today . ||| 今天 相當 暖和 . +He does not like being punished . ||| 他 不 喜歡 被 懲罰 . +Spring will come soon . ||| 春天 快 來 了 . +I do not eat bread . ||| 我 不吃 面包 . +Tom burst into tears . ||| 汤姆 泪流满面 . +You were late , were not you ? ||| 你 遲到 了 , 不是 嗎 ? +We have some decisions to make . ||| 我们 要 做 些 决定 . +Can you do some shopping for me ? ||| 你 能 幫 我 買 些 東西 嗎 ? +Give him an inch and he will take a yard . ||| 得寸进尺 . +My father became old . ||| 我 爸爸 變 老 了 . +I have had a good sleep . ||| 我 睡 得 很 好 . +How many pens do you have ? ||| 你 有 多少 支 铅笔 ? +The temperature has suddenly dropped . ||| 气温 突然 下降 了 . +We have lots of catching up to do . ||| 我们 要 紧追 . +Tom is divorced and has a daughter . ||| Tom 離婚 了 , 他 有個 女兒 . +Nobody wants you to do that . ||| 没 人 想要 你 那样 做 . +Tom wants a computer small enough to easily carry . ||| 汤姆 想要 个 小 得 易于 携带 的 电脑 . +He amassed a large fortune before he died . ||| 他 死 前 累積 了 龐大 的 財富 . +His brother goes to school by bus . ||| 他 哥哥 搭 公車 去 學校 . +Life is like a box of chocolates . ||| 生活 就 像 一盒 巧克力 . +Which is your book ? ||| 哪 本書 是 您 的 ? +It just gets worse . ||| 它 变 糟 了 . +Hang up your coat , please . ||| 請 把 你 的 外套 掛 起來 . +I often go to the movies . ||| 我 常常 去 看 電影 . +We are going to be here all day . ||| 我們 要 在 這裡 待 一整天 . +Do you like swimming ? ||| 你 喜欢 游泳 吗 ? +I was not scolding you . ||| 我 不是 在 罵 你 . +I am not curious . ||| 我 不 好奇 . +Tom was advised by Mary not to go there by himself . ||| 玛丽 建议 汤姆 不要 独自 去 . +Tom did not know what Mary thought about it . ||| 汤姆 不 知道 玛丽 对 它 怎么 想 . +I am tired of writing . ||| 我 写 腻 了 . +I have just spoken to your French teacher and he says you are doing well in his class . ||| 我 刚 跟 你 的 法语 老师 谈 过 话 , 他 说 你 在 课堂 上 表现 得 很 好 . +Be at the station at 11 o 'clock sharp . ||| 十一点 准时 到 车站 . +Call the police ! ||| 报警 ! +The twins are indistinguishable from each other . ||| 这 双胞胎 没法 区分 . +She succeeded in getting him to tell the truth . ||| 她 成功 地 从 他 口中 得知 了 真相 . +Somebody is eating . ||| 有人 在 吃 东西 . +Is it difficult eating with chopsticks ? ||| 用 筷子 吃饭 难 吗 ? +Tom hid his money under his mattress . ||| 湯姆 把 錢藏 在 床墊 底下 . +I am busy all the time . ||| 我 总是 有事 . +We could do something big . ||| 我们 能 做 点 大事 . +I was very , very lucky . ||| 我 非常 非常 幸运 . +He preferred working to doing nothing . ||| 他 更 愿意 工作 而 不是 无所事事 . +Let is take the children to the zoo . ||| 讓 我們 帶 孩子 們 去 動物園 . +Tom and Mary were tired of waiting . ||| 湯姆 和 瑪麗 等 煩 了 . +It is difficult to understand his theory . ||| 他 的 理论 很 难懂 . +I almost always play baseball after school . ||| 我 幾乎 總是 在 放學 後 打 棒球 . +Do you have Tom is address ? ||| 你 有 汤姆 的 住址 吗 ? +Even chocolate contains vitamins . ||| 連 巧克力 中 也 含有 維 他 命 . +Coal and natural gas are natural fuels . ||| 煤 和 天然 氣 是 天然 燃料 . +These apples look very fresh . ||| 这些 苹果 看起来 很 新鲜 . +Give me your phone number . ||| 给 我 你 的 电话号码 . +Nobody tried to help Tom . ||| 没 人 试图 帮 汤姆 . +The clock stopped . ||| 鐘 停 了 . +I hate studying . ||| 我 讨厌 学习 . +She does not like soccer . ||| 她 不 喜欢 足球 . +We will come back tomorrow . ||| 我们 明天 回来 . +This is not okay . ||| 這個 不行 . +I did not get everything I wanted . ||| 我 沒有 得到 我 所有 想要 的 . +I would not be too surprised if this song became a hit . ||| 如果 这歌 成名 , 我 不会 太 惊讶 . +Please send this by registered mail . ||| 請用 掛 號 寄 這個 . +That fish lives in fresh water . ||| 那 魚 棲息 在 淡 水域 中 . +Do not panic ! ||| 不要 恐慌 ! +Tom is not a fool . ||| 汤姆 不是 傻瓜 . +His clothes always smell bad . ||| 他 的 衣服 總是 很 臭 . +I hate mosquitoes . ||| 我 恨 蚊子 . +Tom fell off his bike . ||| 汤姆 从 他 的 自行车 上掉 了 下来 . +I saw a cottage in the distance . ||| 我 看见 远处 有 一间 小屋 . +This is true . ||| 這 是 真的 . +I met him by chance on the train this morning . ||| 今天 早上 我 在 火车 上 偶遇 他 . +We will continue the meeting after some light refreshments . ||| 茶点 过后 我们 接着 开会 . +Put the box down . ||| 把 箱子 放下 . +How much is this pen ? ||| 这 支 钢笔 要 多少 钱 ? +They arrived late because of the storm . ||| 因为 风暴 , 他们 晚 到 了 . +Is one thousand yen enough ? ||| 1000 日元 够不够 ? +Please show me your stamp album . ||| 請 讓 我 看看 你 的 集郵冊 . +He pressured me . ||| 他 向 我 施压 . +The ceremony began with his speech . ||| 仪式 以 他 的 讲话 开始 . +I guess it depends on the weather . ||| 我 想 這 取決 於 天氣 . +I do not remember much about that woman . ||| 我 对 那位 女士 印象 不 深 . +I did not ask Tom for help . ||| 我 没有 找 Tom 帮忙 . +I do not want to do anything risky . ||| 我 不想 做 任何 冒險 的 事 . +He walks slowly . ||| 他 慢慢 地 走 . +What would you like to do in the future ? ||| 以后 打算 干什么 ? +My father died of a subarachnoid hemorrhage when I was fourteen . ||| 我 十四岁 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +May I see your driver is license , sir ? ||| 先生 , 我 可以 看看 你 的 駕駛 執照 嗎 ? +Tom searched inside the closet . ||| 汤姆 搜查 了 衣柜 里面 . +I want something cold to drink . ||| 我 想 喝 冷 飲 . +He cheated on the biology exam . ||| 他 在 生物 學 考試 時 作弊 . +Could you please talk a bit louder ? I can not hear very well . ||| 你 能 大声 点 讲 吗 ? 我 听 不 太 清 . +A brilliant future lay before him . ||| 大好 的 前途 摆在 他 面前 . +She wore a red dress . ||| 她 穿 了 一条 红色 的 裙子 . +Count me in . ||| 算 我 一个 . +Can you save this seat for me ? ||| 你 可以 幫 我 保留 這個 座位 嗎 ? +I thought the questions were easy . ||| 我 認為 這些 問題 很 容易 . +It cost him 50 dollars to rent a car in Hawaii . ||| 他 花 了 50 美元 在 夏威夷 租 了 一辆 汽车 . +I was surprised . ||| 我 吃惊 了 . +Do not speak unless you have something worth saying . ||| 除非 你 有 什么 值得 说 的话 要说 , 否则 就别 吭声 . +You ought to have come here earlier . ||| 你 應 該 早點 來 的 . +I agree with your opinion . ||| 我 同意 您 的 意見 . +What do tigers eat ? ||| 老虎 吃 什么 东西 ? +Did Tom ever threaten you ? ||| 湯姆 威脅 過 你 嗎 ? +I do not believe it at all . ||| 我 根本 不信 . +That river is long . ||| 那 條 河流 很 長 . +Clean up the room . ||| 收拾 房间 . +I want to be a baseball player . ||| 我 想 成為 一名 棒球 運動員 . +I do not quite agree with you . ||| 我 不 太 同意 你 的 看法 . +May I ask a question ? ||| 我 能 问个问题 吗 ? +Tom has made up his mind to go to Boston to study . ||| 湯姆 已經 下定 決心 要 去 波士 頓 唸 書 . +It is really awesome . ||| 太棒了 . +He told us an interesting story . ||| 他 给 我们 讲 了 一个 有趣 的 故事 . +We do not have any more bread . ||| 我們 沒 麵 包 了 . +What will you use it for ? ||| 你 會 用 它 來 做 什麼 ? +Take off your hat when you enter a classroom . ||| 进 教室 的 时候 请 把 帽子 摘 了 . +I am familiar with the author is name . ||| 我 對 這位 作者 的 名字 很 熟悉 . +What kind of woman do you think I am ? ||| 你 认为 我 是 哪种 女人 ? +You had better read a lot of books while you are young . ||| 你 最好 在 年轻 的 时候 多 读点 书 . +Learning a foreign language is difficult . ||| 學習 外語 是 困難 的 . +When will you come back to school ? ||| 你何 時會 回學校 ? +You look sleepy . ||| 你 看起来 很困 了 . +She banged the table with her fist . ||| 她 用 拳頭 拍 了 桌子 . +I was born in 1988 . ||| 我 生于 1988 年 . +She took full advantage of her stay in London to improve her English . ||| 她 充分利用 她 住 在 伦敦 的 优势 , 提高 英语 . +Here is something very important . ||| 這裡 有些 非常 重要 的 東西 . +You have plenty of time . ||| 你 有 足够 的 时间 . +You have both been very impressive today . I am proud of you . ||| 今天 你们 俩 很 让 人 印象 深刻 . 我 为 你们 感到 骄傲 . +This program is a rerun . ||| 这个 节目 是 重播 . +Tom said that he 'd leave the door open . ||| 汤姆 说 他 打算 让 门 开 着 . +Paper burns quickly . ||| 紙 燒 得 快 . +Are you lost ? ||| 您 迷路 了 吗 ? +You should practice playing the violin every day . ||| 你 應該 每天 練習 拉 小提琴 . +My plan is to spend the New Year is holiday in Australia . ||| 我 打算 在 澳大利亚 过 新年 . +Hard work and dedication will bring you success . ||| 努力 工作 和 敬业精神 使 你 成功 . +Why did you stay at home yesterday ? ||| 你 昨天 為 甚麼 在家 ? +Can you put me up tonight ? ||| 今晚 可以 住 你家 嗎 ? +Tom begged his father to buy him a new bicycle . ||| 湯姆 求 他 父親 給 他 買 新 自行 車 . +You reap what you sow . ||| 種 什麼 因 得 什麼 果 . +This bus will take you to the museum . ||| 這輛 公車 會 載 你 去 博物 館 . +Nobody understands me . ||| 没有 人 理解 我 . +Anyone can do that . ||| 任何人 都 可以 做到 . +This dictionary is mine . ||| 这本 字典 是 我 的 . +The house I am living in is not very large . ||| 我 住 的 房子 不是 太大 . +The problem is been solved . ||| 問題 已 解決 . +My father likes strong coffee . ||| 我 父親 喜歡 濃 咖啡 . +Did she come here to relax ? ||| 她 來 這裡 放 鬆 的 嗎 ? +Are you feeling better , Tom ? ||| 你 感覺 好 點 了 嗎 , 湯姆 ? +They waited for their teacher . ||| 他們 等待 著 他們 的 老師 . +Earth is a planet . ||| 地球 是 一個 行星 . +My mother speaks French better than my father speaks English , so they usually speak to each other in French . ||| 我 母亲 的 法语 比 我 父亲 的 英语 要 好 , 所以 他们 通常 用 法语 交流 . +Tom overslept . ||| 汤姆 睡 过头 了 . +I found a coin on the sidewalk . ||| 我 在 人行道 上 發現 了 一枚 硬幣 . +" Why are not you going ? " " Because I do not want to . " ||| “ 为什么 你 不 来 ? ” “ 因为 我 不想 . ” +We will not go out if it does not stop raining . ||| 雨 不停 , 我们 不会 出去 . +When you are hungry , anything tastes good . ||| 當 你 餓 的 時候 , 任何 東西 都 好吃 . +She seems to be unhappy . ||| 她 看起来 不 幸福 . +I bathe once a day . ||| 我 每天 洗 一次 澡 . +It is been a long war . ||| 这 是 场 长久 的 战争 . +Tom lost his credibility . ||| 湯姆 失去 了 信譽 . +The old man is very kind . ||| 這位 老人家 非常 仁慈 . +Being a good conversationalist does not just mean being a good speaker of English . ||| 作為 一個 良好 的 交談者 , 並 不 只 意味 著作 一個 英語 說 得 好 的 說 話者 . +Can I borrow some money from you ? ||| 我 可以 向 你 借 一些 錢 ? +Those tulips are beautiful . ||| 那些 郁金香 很 美丽 . +You do not have to take an examination . ||| 你 不 需要 考试 . +Tom is going to help us . ||| 汤姆 要 帮助 我们 . +What is the spelling of your family name ? ||| 你 的 姓 怎麼 拼 ? +I need a knife . ||| 我 需要 一把 刀 . +I am starting to dislike her . ||| 我 开始 不 喜欢 她 了 . +Stay put till I get to you . ||| 待 在 原地 , 直到 我 找到 你 . +It is brand new . ||| 这 是 全新 的 . +I do not see why not . ||| 我 看不出 为什么 不 . +I got warm from jogging for an hour . ||| 我 慢跑 了 一个 小时 , 身上 变 暖和 了 . +I can not figure him out . ||| 我 不 了解 他 . +Tom runs fast . ||| 汤姆 跑得快 . +Mary went down to the kitchen . ||| 瑪麗 下 樓 到 廚房 . +We got him to carry our bag . ||| 我們 讓 他 幫 我們 拿 袋子 . +Keep the change ! ||| 不用 找 零钱 了 . +He is drawing a picture . ||| 他 正在 画 一幅 画 . +Tom really needs help now . ||| 湯姆 現在 真的 需要 幫助 . +Tom is room is dirty . ||| 汤姆 的 房间 很脏 . +Would you like to eat something ? ||| 您 想 吃 点 什么 吗 ? +Doing this is a lot of fun . ||| 这样 做 很 有趣 +As soon as she wakes up , we will turn on the music . ||| 她 一醒 , 我们 就 放 音乐 . +Is this your first time in Japan ? ||| 這 是 你 第一次 到 日本 嗎 ? +He gave me a lecture on drinking . ||| 他 因 我 喝酒 而 訓斥 我 . +I thought that I was dreaming . ||| 我 还 以为 我 在 做梦 呢 . +There are exceptions to every rule . ||| 每 條 規則 都 有 例外 . +Does Tom need to stay home today ? ||| 湯姆 今天 需要 留在 家裡 嗎 ? +Please speak in a louder voice . ||| 請 說 話 大聲 一點 . +I looked over my shoulder . ||| 我 回 過 頭 去 . +This is worth one million yen . ||| 這 值 100 萬 日元 . +There is something wrong with my car . ||| 我 的 車子 故障 了 . +Would you mind if I shut the window ? I have a slight cold . ||| 你 不介意 我 关窗 吧 ? 我 有点 着凉 了 . +I would like to reserve a hotel room . ||| 我 想要 订房 . +She works from nine . ||| 她 九点 开始 工作 . +In case it rains , I will not go . ||| 萬一 下雨 , 我 就 不 去 . +He has a lot of books on history . ||| 他 有 很多 历史书籍 . +I had hoped that my mother would live until I got married . ||| 我 曾经 希望 我 妈妈 能 活到 我 结婚 的 时候 . +You are so right . ||| 你 真是太 對了 . +There is no point in trying again . ||| 再 试 也 无济于事 了 . +There is no school during August . ||| 8 月份 没课 . +She used margarine instead of butter . ||| 她 用 人造黄油 代替 了 黄油 . +He has a large family to support . ||| 他 有 一大家子 要養 . +She and I are classmates . ||| 她 和 我 是 同學 . +Can I see that ? ||| 我 能 看看 那个 吗 ? +Come if you can . ||| 如果 你 能 就 來 吧 . +His political career has ended . ||| 他 的 政治 生涯 完蛋 了 . +She did not like her husband drunk . ||| 她 不 喜欢 让 自己 丈夫 喝醉 . +You should set a good example to your children . ||| 你 应该 给 你 的 孩子 们 树立 好 的 榜样 . +It is spring . ||| 春天 了 +He left the house without saying goodbye . ||| 他 沒 說 再 見 就 離開 了 房子 . +What is love ? ||| 愛 是 什麼 ? +You have beautiful lips . ||| 你 的 嘴唇 很漂亮 . +It does not make sense to me . ||| 这 对于 我 来说 没 任何 意义 . +Would you like to eat lunch together ? ||| 要 一起 吃 午餐 吗 ? +It might be a wedding . ||| 這 可能 是 一場 婚禮 . +Check your dictionary . ||| 查 你 的 字典 . +Both my parents are at home now . ||| 我 父母 現在 都 在家 . +Is it always a sin to tell a lie ? ||| 说谎 总是 一种 罪 吗 ? +I have gained weight . ||| 我 增加 了體 重 . +Is it true that Tom can not swim ? ||| 汤姆 真的 不会 游泳 吗 ? +I do not know if I can go to the party . ||| 我 不 知道 我 是否 可以 去 派对 . +I have not seen him in a long time . ||| 我 很久没 见 过 他 了 . +Tom is writing a letter to his best friend . ||| 汤姆 在 给 他 最好 的 朋友 写信 . +I do not know if he would have done it for me . ||| 我 不 知道 他 是否 已经 为 我 做好 了 . +When will it start ? ||| 什么 时候 开始 ? +He is just pulling your leg . ||| 他 只是 跟 你 開 玩笑 . +I shot the horse because it had trouble breathing . ||| 我 枪杀 了 那 匹 马 , 因为 他 已 呼吸困难 . +What are you after ? ||| 你 想要 什麼 ? +Did you get my letter ? ||| 你 收到 了 我 的 信 了 嗎 ? +He was always annoyed in the city by noises of one sort or another . ||| 他 在 城市 里 一直 受到 噪音 或者 其他 的 干扰 . +For the teacher , teaching her was fun . ||| 對 教師 來說 , 教 她 很 有趣 . +Please make the bed . ||| 請 整理 床鋪 . +You are not to leave this room . ||| 你 不 可以 離開 這個 房間 . +Bring me the newspaper , please . ||| 請 把 報紙 拿來 給 我 . +Tom dragged himself out of bed and put on his clothes . ||| 汤姆 从 床上 爬起来 , 穿上 了 衣服 . +It takes me ten minutes to walk to school . ||| 我 走路 10 分钟 能 到 学校 . +He dropped his books on the floor . ||| 他 的 書 掉 在 地板 上 了 . +She lived there about five years . ||| 她 住 在 那裡 大約 5 年 了 . +She likes oranges . ||| 她 喜歡 柳橙 . +Our teacher gives us a lot of homework . ||| 我们 的 老师 给 作业 给得 很多 . +Tom is a very good tennis player . ||| 湯姆 是 一個 非常 好 的 網球 選手 . +My father is very much involved in the stock market now . ||| 我 爸爸 现在 非常 专注 于 股市 . +We moved to New York last fall . ||| 我們 去年 秋天 搬到 了 紐約 . +I got a hole in my jeans . ||| 我 的 牛仔 褲 破 了 一個 洞 . +I saw Tom three hours ago . ||| 我 在 三 小时 前 见 过 汤姆 . +It is not easy to distinguish good from evil . ||| 区分 善恶 不 容易 . +He is one of the greatest artists in Japan . ||| 他 是 日本 最 伟大 的 艺术家 之一 . +I need to exercise more often . ||| 我 需要 更 经常 地 锻炼 . +I like your shoes . ||| 我 喜欢 你 的 鞋子 . +Those dogs are big . ||| 那些 狗 都 很大 . +I do not speak Japanese . ||| 我 不 说 日语 . +Our house is conveniently located . ||| 我們 的 房子 位 於 交通 便利 的 地方 . +He built an observatory to study the stars . ||| 為了 觀測 星象 , 他 建 了 一座 瞭望台 . +Bring me a sheet of paper , please . ||| 请 带 一张 纸 给 我 . +I am not as stupid as you think I am . ||| 我 不 像 你 想 的 那么 傻 . +Do not disappoint him . ||| 别 让 他 失望 . +Tom helped me with the move . ||| 汤姆 帮 我 搬 了 家 . +Children like fruit juice . ||| 孩子 們 喜歡 果汁 . +I did not participate in the conversation . ||| 我 沒有 參與 這個 談話 . +Where is the nearest telephone booth ? ||| 最近 的 電話 亭 在 哪裡 ? +It might rain . ||| 可能 会 下雨 . +What are you writing ? ||| 你 在 寫 什麼 ? +This apple is very red . ||| 这 只 苹果 非常 红 . +It must be done more carefully . ||| 应该 更 谨慎 地 处理 它 . +He looks like a clever boy . ||| 他 看 起來 像是 個 聰明 的 男孩 . +That is a book . ||| 那 是 一本 書 . +This bucket has a hole in it . ||| 這個 桶 有個 洞 . +I ate the apple . ||| 我 吃 了 這個 蘋果 . +There is no use crying over spilt milk . ||| 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Everybody showed sympathy toward the prisoner . ||| 每个 人 都 对 囚犯 表示同情 . +They sued the government for damages . ||| 他們 狀告 政府 賠償 損失 . +Tom said that Mary was probably still studying French . ||| 汤姆 说 玛丽 可能 还 在 学法语 +Tom has been here since 2013 . ||| 湯姆 從 2013 年 起 一直 在 這裡 . +I have nothing to say . ||| 我 没什么 可说 的 . +Two times two is four . ||| 二 乘以 二 等于 四 . +Tom is an excellent father . ||| 汤姆 是 个 杰出 的 爸爸 . +I got along with everybody . ||| 我 和 大家 相處 . +Tom is still uncertain about whether to go to college or not . ||| 汤姆 还 不 清楚 要 不要 上 大学 . +Mary wore a simple white dress . ||| 玛丽 穿 了 一条 朴素 的 白 裙子 . +I do not feel well . ||| 我 感觉 不 舒服 . +The problem is who is going to tell him the truth . ||| 問題 是 誰 要 告訴 他 真相 . +He will be back home soon . ||| 他 很快 就 會 回家 . +I would really like to know why he did something like that . ||| 我 真的 很 想 知道 他 為 什麼 做 了 像 那樣 的 事 . +I have no time to read . ||| 我 没 时间 阅读 . +I was at home then . ||| 那个 时候 , 我 在家 . +Ask him what to do next . ||| 问 他 下 一步 该 做 什么 . +Tom is going to tell Mary he is busy . ||| 汤姆 会 和玛丽 说 他 很忙 . +You got here fast . ||| 你 來 得 很快 . +What is done cannot be undone . ||| 覆水 難收 . +Let is take a bus . ||| 讓 我們 搭 公車 吧 . +He is full of energy . ||| 他 充满活力 . +Have you finished reading that novel ? ||| 你 读完 那 本 小说 了 吗 ? +I am used to it by now . ||| 我 现在 已经 习惯 它 了 . +Is Tom there already ? ||| 汤姆 已经 在 那里 了 吗 ? +It is less muggy today than it was yesterday . ||| 今天 不 比 昨天 悶熱 . +We went on a picnic together . ||| 我們 一起 去 野餐 了 . +How long are you going to stay in Japan ? ||| 你 會 在 日本 多久 ? +My pen is new . ||| 我 的 钢笔 是 新 的 . +That child may have been kidnapped on his way home . ||| 那个 孩子 可能 在 回家 的 路上 被 绑架 了 . +Mary paid five dollars for her lunch . ||| 玛丽 用 5 美元 买 了 午饭 . +He was standing at the door . ||| 他 站 在 了 门口 . +There is nothing I would not do for Tom . ||| 没有 我 不会 给 汤姆 做 的 事 . +I am now rich enough to afford to get anything I want . ||| 我 现在 富 得 能 买 我 想要 的 任何 东西 . +This problem is too difficult for primary school children to solve . ||| 这个 问题 让 小学生 解决 太 难 了 . +I get up at six . ||| 我 六點 起床 . +You 'd better go now . ||| 你 最好 现在 就 走 . +Not everybody can be an artist . ||| 不是 所有人 都 能 当 艺术家 的 . +Mary prefers to dye her hair blonde . ||| 玛丽 更 想 把 头发 染成 金色 . +I do not have time to meet up with you . ||| 我 没 时间 跟 您 碰头 . +I am a good cook . ||| 我 是 个 好 厨师 . +I understand your position perfectly . ||| 我 十分 理解 你 的 立場 . +How many years did Tom spend in Boston ? ||| 汤姆 在 波士顿 呆 了 几年 ? +That is what I want . ||| 那 就是 我 想要 的 . +You should put safety before everything else . ||| 你 應該 把 安全 放在 其他 一切 之上 . +She made a lot of spelling mistakes . ||| 她 犯 了 很多 拼寫 錯誤 . +I am leaving at four . ||| 我 四點 要 離開 . +He remained single all his life . ||| 他 一生 獨身 . +She enjoyed herself a lot at the party . ||| 她 在 聚會 上 玩 得 很 開心 . +I was totally confused . ||| 我 完全 不 懂 了 . +My house is big . ||| 我家 很大 . +The situation went from bad to worse . ||| 情況 越來越 糟糕 . +The tire leaks air . ||| 轮胎 漏气 了 . +With a little more effort , he would have succeeded . ||| 如果 他 当时 再 努力 一点 , 他 就 成功 了 . +You should have kept it secret . ||| 你 應該 保密 的 . +My mother boiled ten eggs . ||| 妈妈 煮 了 十只 蛋 . +I think I am going to go now . ||| 我 认为 我 现在 该 走 了 . +I am in the habit of taking some exercise before breakfast . ||| 我 在 吃 早餐 前有 運動 的 習慣 . +Read this now . ||| 现在 读 这个 . +I am sure you will be interested . ||| 我 确定 你 會 感 興趣 . +" Where is your book ? " " On the table . " ||| 「 你 的 書 在 哪 ? 」 「 在 桌上 . 」 +These scissors do not cut well . ||| 这 把 剪刀 不好 用 . +There was nobody in the garden . ||| 花園 裡 沒 有人 . +I have had a scratchy throat since this morning . I wonder if I have caught a cold . ||| 早上 起来 , 嗓子 变得 很 沙哑 , 我 想 是不是 感冒 了 . +I am not asking you . I am begging you . ||| 我 不是 要求 你 , 我 是 恳请 你 . +This food does not agree with me . ||| 这 食物 不 适合 我 . +We saw him walking across the street . ||| 我們 看見 他 正在 過 馬 路 . . +Please have a look at this book . ||| 请 看 这 本书 . +Grab a hold of the rope . ||| 抓住 繩子 . +Do not make fun of old people . ||| 不要 捉弄 老人家 . +Tom picked up a pencil . ||| 汤姆 拿 起 铅笔 . +Tom is resting at the moment . ||| 汤姆 现在 在 休息 . +He looked around , but he saw no one . ||| 他 看 向 四周 , 但 沒 看到 任何人 . +One hundred years is called a century . ||| 一百年 被 叫做 一个 世纪 . +I do not think he will come . ||| 我 不 認為 他 會 來 的 . +Your shoes are here . ||| 你 的 鞋 在 这儿 . +When did she promise to meet him ? ||| 她 答应 几时 见 他 ? +You can not go outside . ||| 你 不能 到 外面 去 . +What is happened ? ||| 怎么 了 ? +He may not be happy . ||| 他 可能 不 高兴 . +I am going to help you rescue Tom . ||| 我 要 幫 你 營救 湯姆 . +I heard you were injured trying to help Tom . ||| 我 听说 你 在 试图 帮助 汤姆 的 时候 受伤 了 . +Bird watching is a nice hobby . ||| 观察 鸟类 是 个 很好 的 业余爱好 . +The prize will not be given to her . ||| 奖项 是 不会 授给 她 的 . +May I ask you some more questions ? ||| 我 可以 問 你 一些 問題 嗎 ? +Please give me a glass of water . ||| 请 你 给 我 一杯 水 . +Do you have a map ? ||| 你 有 地圖 嗎 ? +Tom is quite drunk now . ||| 汤姆 现在 醉醺醺 的 了 . +She traveled around the world . ||| 她 周遊 世界各地 . +I like rugby , but not as much as I like basketball . ||| 我 喜欢 橄榄球 , 但 不 像 我 喜欢 篮球 那么 喜欢 . +He 'd prefer not to eat that . ||| 他 宁愿 不吃 这个 . +Do you have any free time this weekend ? ||| 這個 週末 你 有 時間 嗎 ? +The skies are clear . ||| 天空 很 晴朗 . +In order to do that , you have to take risks . ||| 要 这么 做 , 你 需要 冒险 . +He is a doctor by profession . ||| 他 的 职业 是 医生 . +A capital letter is used at the beginning of a sentence . ||| 一個 大 寫 字母 被 使用 在 一個 句子 的 開頭 . +I want to participate . ||| 我 想 参加 . +Tom lives near me . ||| 湯姆 住 在 我 的 附近 . +He held a ball . ||| 他 举办 了 一场 舞会 . +I am learning how to type . ||| 我 正在 學 如何 打字 . +I believe he is coming tomorrow . ||| 我 相信 他 明天 會來 . +I do not care if it snows . ||| 我 不在乎 是否 下雪 . +The explorers discovered a skeleton in the cave . ||| 探险家 们 在 洞穴 里 发现 了 骸骨 . +Money cannot buy happiness . ||| 钱 买不到 幸福 . +Playing tennis is fun . ||| 打 網球 很 有趣 . +Air quality has deteriorated these past few years . ||| 这些 年 空气质量 恶化 了 . +I did something really stupid . ||| 我 做 了 很蠢 的 事 . +I did not understand a single word Tom said . ||| 我 不 明白 湯姆 說 了 什麼 . +Good job ! ||| 干 的 好 ! +I hear you passed the entrance exam . Congratulations ! ||| 我 听说 你 通过 了 入学考试 . 恭喜 你 了 ! +A lot of people swim here in the summer . ||| 许多 人 夏天 在 这里 游泳 . +I have to write a letter . Do you have some paper ? ||| 我 要 写 一封信 . 你 有 纸 吗 ? +He consented to help the old lady . ||| 他 同意 幫助 這位 老太太 . +He will never beat me . ||| 他 永远 不会 打败 我 的 . +I wonder if this is love . ||| 我 不 知道 這 是不是 愛 . +You should keep your valuables in a safe place . ||| 你 该 把 你 的 值钱 物品 保存 在 一个 安全 的 地方 . +That toy is made of wood . ||| 这个 玩具 是 木制 的 . +You are not even listening . ||| 你 就 没在 听 . +He treats me like his slave . ||| 他 對待 我 就 像 他 的 奴隸 . +Yesterday is board meeting was a big success . ||| 昨天 的 董事 會會議 是 一個 大 成功 . +Give me something to write on . ||| 給 我 一些 我 可以 在 上面 寫 字 的 東西 . +He used to meditate in the morning . ||| 他 過去 時常 在 早上 的 時候 冥想 . +They won many competitions . ||| 他們 贏 了 許多 比賽 . +I found a taxi , but there was no driver inside . ||| 我 找到 了 一輛 出租 車 , 但 裏 面 卻 沒 有 司 機 . +I am sorry I did not reply to you sooner . ||| 抱歉 , 我 沒有 早點 回覆 你 . +I donate blood every three months . ||| 我 每 三个 月 献 一次 血 . +Tom turned up the TV . ||| 汤姆 把 电视 调 大声 . +Arithmetic deals with numbers . ||| 算数 处理 数字 . +I am glad I could be of service . ||| 能够 出 一份 力 太好了 . +This school was founded in 1970 . ||| 这 所 学校 是 1970 年 建成 的 . +The largest bedroom faces south . ||| 最大 的 卧室 朝南 . +Tom made some mistakes on the test . ||| 湯姆 在 考試 中 犯 了 一些 錯誤 . +The train arrived ten minutes behind time . ||| 列車 晚 到 了 十分 鐘 . +As soon as he saw a policeman , he ran away . ||| 他 一 看见 警察 就 逃走 了 . +Many friends saw him off . ||| 許多 朋友 為 他 送行 . +We bought a round table . ||| 我们 买 了 张 圆桌 . +People in Taiwan work hard . ||| 在 台灣 人們 工作 很 努力 . +What a wonderful family . ||| 多 美好 的 家庭 啊 ! +Are you free on Tuesday ? ||| 周二 你 有空 吗 ? +When I first met Tom , I did not like him much . ||| 我 第一次 見 到 湯姆 時 , 我 不 太 喜歡 他 . +The store can supply us with anything we need . ||| 这家 商店 可以 提供 所有 我们 需要 的 东西 . +He is stronger than you . ||| 他 比 你 強壯 . +My sleep was disturbed by the sound . ||| 那 声音 搅 了 我 的 美梦 . +This ticket is good for three days . ||| 這 張 票 的 有效期 是 三天 . +What about you ? ||| 您 呢 ? +You did not come to school yesterday . ||| 你 昨天 没 来 学校 . +Please sit down . ||| 請 坐下 . +It is almost six . ||| 差不多 六点 了 . +Tom was wearing a bulletproof vest , so the bullet did not kill him . ||| 湯姆 穿著 一件 防彈 衣 , 所以 子彈 沒 把 他 殺 死 . +We ran three kilometers . ||| 我們 跑 了 三 公里 . +I like to travel . ||| 我 喜歡 旅行 . +Tom was at home . ||| 汤姆 在家 的 . +She got on the subway at Ginza . ||| 她 在 銀座 搭乘 了 地鐵 . +The weather is good today . ||| 今天天气 很 好 . +Tom knew when Mary would be arriving . ||| 汤姆 知道 玛丽 什么 时候 来 . +She helped him overcome his sadness . ||| 她 幫助 他 平撫 了 他 的 悲傷 . +I owe Tom some money . ||| 我 欠 湯姆 錢 . +I have already read today is paper . ||| 我 已經 看 過 了 今天 的 報紙 . +Please wake me up at six tomorrow . ||| 請 在 明天 六點 叫 我 起來 . +He drank a lot yesterday . ||| 昨天 他 喝 了 很多 . +I forgot it in the garage . ||| 我 把 它 忘 在 车库里 了 . +Tom does not know where Mary lives . ||| 汤姆 不 知道 玛丽 住 在 哪里 . +I am going to Europe next week . ||| 我 下週 要 去 歐洲 . +Do you know what he said ? ||| 你 知道 他 說 了 什麼 嗎 ? +When the lights went out , Tom lit a candle . ||| 灯灭了 , 汤姆 点 起 了 蜡烛 . +I wrote down that telephone number . ||| 我 寫下 了 那個 電話 號碼 . +She cooked us a delicious dinner . ||| 她 为 我们 煮 了 一顿 美味 的 晚餐 . +Translating this sentence will be very easy . ||| 翻译 这个 句子 会 很 容易 . +She may realize later what I meant . ||| 她 可能 以 後 會 明白 我 的 意思 . +Tom tried to kill Mary . ||| 汤姆 试 着 杀死 玛丽 . +Flying a kite can be dangerous . ||| 放 風箏 可以 是 危險 的 . +Our school is very close to the park . ||| 我们 学校 离 公园 非常 近 . +Why do not you join our party ? ||| 你 為 什麼 不 參加 我們 的 派 對 ? +Can we go back now ? ||| 我們 現在 能 回去 嗎 ? +I have been cheated before . ||| 我 以前 被 騙 過 . +Where is my apple juice ? ||| 我 的 蘋 果汁 在 哪 ? +The war has not ended . ||| 战争 还 没 结束 . +Get away ! ||| 走開 ! +You have done a lot . ||| 你 做 了 很多 . +Can you help us ? ||| 你 能 幫 我們 嗎 ? +She left early in the morning . ||| 她 清晨 離開 了 . +Winter is my favorite season . ||| 冬天 是 我 最 喜欢 的 季节 . +Where is my dad ? ||| 我 父亲 在 哪里 ? +" A rolling stone gathers no moss " is a proverb . ||| “ 滚石 不生 苔 ” 是 一句 谚语 . +A stewardess was rescued from the wreck . ||| 一名 空姐 從 飛機 殘骸 中 被 救出 來 了 . +Putting ideas into practice is difficult . ||| 把 想法 付諸 實踐 是 困難 的 . +I do not trust him any more . ||| 我 不再 相信 他 了 . +He was very busy all day . ||| 他 一整天 都 很忙 . +Do not be too sensitive to criticism . ||| 不要 对 批评 太 敏感 了 . +Right now , we have blueberries , blackberries , cherries , strawberries , peaches and nectarines . ||| 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 草莓 、 桃子 和 油桃 . +What are you laughing at ? ||| 你 在 笑 什么 呢 ? +Everybody wanted to eat . ||| 每个 人 都 想 吃 . +Was this wall built to keep people out or to keep them in ? ||| 建造 这 堵墙 是 为了 把 人 隔 在 外面 还是 把 他们 留在 里面 ? +That is life . ||| 這 就是 生活 . +Is this the train for New York ? ||| 這 班 是 去 紐約 的 火車 嗎 ? +There was nothing left in the fridge . ||| 冰箱 里 什么 都 没 剩下 . +After the accident , Tom decided to stop skating . ||| 事故 过后 , 汤姆 觉得 停止 滑冰 了 . +I do not think anyone can do this . ||| 我 认为 没 人 能 做到 . +My hands were shaking too much to thread the needle . ||| 我 的 手 抖 得 太 厉害 , 没法 穿针 了 . +I would like to go . ||| 我 想要 去 . +He did not hear his name called . ||| 他 没 听见 有人 叫 他 的 名字 . +What if something gets broken ? ||| 要是 有 东西 坏 了 呢 . +He did not know what to do next . ||| 他 不 知道 下 一步 要 做 什麼 . +You must not eat too much . ||| 你 不该 吃 太 多 . +Can you really swim ? ||| 你 真的 會 游泳 嗎 ? +She made jam from the apples . ||| 她 用 蘋果 做 了 果醬 . +How long did you live there ? ||| 你 住 在 那裡 多久 了 ? +How cute ! ||| 多 可爱 啊 ! +I have some pictures to show you . ||| 我 有 一些 照片 給 你 看 . +I will never forget what you told me . ||| 我 將 永遠 不 會 忘記 你 告訴 過 我 的 話 . +The baby is sleeping in the cradle . ||| 嬰兒 正在 搖 籃裡 睡覺 . +Good morning . ||| 早上好 ! +He bought his daughter a dress . ||| 他 買 了 一件 洋裝 給 他 女兒 . +They are much taller than us . ||| 他們 比 我們 高 得 多 . +Do not forget about me . ||| 別 忘 了 我 . +I caught sight of a parade on my way home . ||| 在 回家 的 路上 , 我 看到 一场 阅兵式 . +Do you think that my work is easy ? ||| 你 觉得 我 的 工作 简单 吗 ? +The baby started to cry . ||| 宝宝 开始 哭 了 . +I was very surprised to hear the news . ||| 我 听到 这个 消息 很 惊讶 . +Please show me what to do next . ||| 請 告訴 我 下 一步 該 做 什麼 . +Tom is thirty . ||| 汤姆 今年 三十岁 . +I know I did an awful thing . ||| 我 知道 , 我 做 了 很 可怕 的 事 . +I am proud of my father . ||| 我 为 我 父亲 而 自豪 . +I have just returned from the post office . ||| 我 刚 从 邮局 回来 . +I will stop by your place on my way home . ||| 我 回家路上 会 在 你 那里 停下 . +I am a student of this school . ||| 我 是 这个 学校 的 学生 . +You should not eat here . ||| 你 不该 在 这里 吃饭 . +Tom probably does not know why the picnic was canceled . ||| 湯姆 大概 不 知道 為 什麼 野餐 取消 了 . +I like them . ||| 我 喜欢 他们 . +I have got to stop eating such sweet ice cream . ||| 我 必须 停止 吃 那么 甜 的 冰激凌 . +Why do not you have some sushi ? ||| 为什么 不 尝尝 寿司 ? +He earns his living by writing . ||| 他 靠 寫作 謀生 . +Give me the notebook . ||| 把 筆 記本 給 我 . +In comparison with Tokyo , London is small . ||| 和 东京 比 , 伦敦 很小 . +Is our appointment today or tomorrow ? ||| 我們 約 的 是 今天 還是 明天 ? +How did you get to know each other ? ||| 你们 怎么 互相 认识 的 ? +Tom has no idea what to do with all the junk in his garage . ||| 汤姆 不 知道 拿 他 车库 的 那些 废物 怎么办 . +We still have many other things to discuss . ||| 我们 还有 许多 别的 事情 要 讨论 . +You must not be late for school . ||| 你 上學 不 可以 遲 到 . +Is Tom at school ? ||| 汤姆 在 学校 吗 ? +Did not you hear her speaking French ? ||| 你 沒 聽到 她 說 法語 嗎 ? +Look at that picture on the desk . ||| 看看 桌上 的 那 張 相片 . +Her mother knocked on the door . ||| 她 的 母親 敲門 . +I think we need a doggy bag . ||| 看來 我們 得 打包 了 . +Can you tell silver and tin apart ? ||| 你 能 分辨 銀和錫 嗎 ? +I am a social worker . ||| 我 是 個 社會 工作 人員 . +I will follow you wherever you go . ||| 無論 你 去 哪裡 我 都 會 跟著 你 . +The button came off . ||| 這 顆 鈕扣 脫落 了 . +As far as I know , your letter is under that book . ||| 據 我 所知 , 你 的 信 在 那 本書 下面 . +The Second World War lasted from 1939 to 1945 . ||| 第二次世界大战 从 1939 年 持续 到 1945 年 . +Do not forget to bring a camera . ||| 别忘了 带 个 相机 . +Let is clear up this problem . ||| 把 问题 澄清 一下 . +This may take a while . ||| 这 要 花 时间 . +I will show you around town . ||| 我 會 帶 你 逛逛 這個 鎮 . +She did not need to do that work . ||| 她 不 需要 做 那個 工作 . +My father is free this afternoon . ||| 我 父親 今天下午 有空 . +I just did not want to go to work yesterday . ||| 昨天 我 只是 不想 去 工作 . +Which way is the beach ? ||| 去 海滩 走 哪条 路 ? +It is warm for this time of year . ||| 對 一年 的 這個 時候 來說 , 天氣 很 溫暖 . +The sale prices are written in red ink . ||| 售價用紅 墨水 寫 . +Keep quiet . ||| 保持 安静 ! +I am nearly finished . ||| 我 差不多 完成 了 . +She is not prettier than her mother . ||| 她 没有 比 她 妈妈 更 漂亮 . +I hate chemistry . ||| 我 讨厌 化学 . +Her skin is whiter than snow . ||| 她 的 皮肤 比雪 还 白 . +Tom wears a wig . ||| 湯姆 戴 假 髮 . +They are bitter enemies . ||| 他們 是 仇 敵 . +How long are you going to stay ? ||| 你 准备 待 多久 ? +If I were healthy , I would be happy . ||| 如果 我 很 健康 , 我 會 很快 樂 . +Tom put a cover over his car . ||| 汤姆 给 车盖 上套 . +I am playing baseball . ||| 我 在 打 棒球 . +Do not open your book . ||| 不要 打开 你 的 书 . +Tom is mother is a nurse at the hospital that is across the street from where Mary lives . ||| 汤姆 的 妈妈 是 一名 护士 , 她 所在 的 医院 就 在 玛丽 住 的 那条 街 的 对面 . +I will send a message to Tom . ||| 我会 给 汤姆 发 信息 . +We still do not know why . ||| 我們 仍然 不 知道 為 什麼 . +He is always running short of cash . ||| 他 的 現金 總是 不夠 用 . +I am married and have two children . ||| 我 结婚 了 , 而且 有 两个 孩子 . +Do not tell anyone this . ||| 不要 告訴 任何人 這件 事 . +He is afraid of the dog . ||| 他 怕 那 只 狗 . +I would like your picture . ||| 我 想要 你 的 照片 . +I am engaged to her . ||| 我 跟 她 訂婚 了 . +I bought it at a department store . ||| 我 在 百貨 公司 買 了 它 . +Now it is official . ||| 现在 它 是 官方 的 . +Interest rates and inflation were high . ||| 利率 和 通货膨胀 很 高 . +I expect you to work harder . ||| 我 希望 你 更加 努力 地 工作 . +We had a good time last night . ||| 我們 昨晚 玩 得 很 開心 . +I do not have a cat . ||| 我 没有 猫 . +I like that person . ||| 我 喜欢 那个 人 . +What is wrong with you ? ||| 你 到底 怎么回事 啊 ? +It is not easy to train dogs . ||| 訓練 狗 是 不 容易 的 . +He told me to be kind to others . ||| 他 叫 我 对 别人 好 一点 . +My mother made me a Christmas cake . ||| 母親 做 了 一個 聖誕 蛋糕 給 我 . +Watch out ! There is a big hole there . ||| 小心 ! 在 那裡 有 一個 大洞 . +That was all Greek to me . ||| 我 完全 看不懂 . +I was planning on going to the beach today , but then it started to rain . ||| 我 本来 预备 今天 去 海滩 的 , 但 接着 天 就 开始 下雨 了 . +He devoured his meal . ||| 他 狼吞虎咽 地 吃 了 一顿 . +Our problems are nothing compared to hers . ||| 我们 的 问题 和 她 的 比 起来 不算什么 . +We like music . ||| 我們 喜歡 音樂 . +I just want to be Tom is friend . ||| 我 只 想 做 汤姆 的 朋友 . +Tom vanished . ||| 汤姆 不见 了 . +That boy denies stealing the bicycle . ||| 那个 男孩 否认 偷 了 自行车 . +Stop getting yourself worked up over little things . ||| 不要 让 自己 因为 一些 小事 而 烦躁 了 . +It is wrong to tell lies . ||| 說 謊 是 錯誤 的 . +I waited for him all day long . ||| 我 等 了 他 一整天 . +I had a feeling this might happen . ||| 我 早 有 一種 感覺 這 可能 會 發生 . +Come on , try again . ||| 来 , 再 试试看 . +He always keeps his room clean . ||| 他 總是 把 他 的 房間 保持 乾 淨 . +Take off your socks . ||| 把 襪子 脫掉 . +I doubt if Tom is single . ||| 我 怀疑 汤姆 是 单身 . +When do you practice the piano ? ||| 你 什麼 時候 練 習彈 鋼琴 ? +It is impossible to live without water . ||| 生活 沒有 水是 不 可能 的 . +I am sorry I was so rude . ||| 對 不起 , 我 太 無理 了 . +Come and dance with me . ||| 过来 和 我 跳舞 啊 ! +We found the footprints in the sand . ||| 我們 發現 了 沙灘 上 的 腳印 . +Turn the radio down a little . ||| 把 收音 機 的 聲音 關小 一點 . +We are going downtown to eat pizza . ||| 我們 要 去 市中心 吃 比 薩 . +At what age did you have your first girlfriend ? ||| 你 几岁 交 了 第一个 女朋友 ? +He made me go against my will . ||| 他 讓 我 違背 了 我 的 意願 . +He does not know how to play golf . ||| 他 不 知道 如何 打 高爾夫 球 . +I managed to get there in time . ||| 我 設法 及時 到 那裡 . +He has lots of money . ||| 他 有 很多 钱 . +My grandfather was a policeman . ||| 我 的 祖父 是 警察 . +She did not try to hide the truth . ||| 她 没有 试图 掩盖真相 . +Do you like any of these pictures ? ||| 你 喜歡 這些 照片 裡 的 任何 一張 嗎 ? +Somebody caught me by the arm . ||| 有人 抓住 了 我 的 手臂 . +I thought you were my friend . ||| 我 以为 你 是 我 的 朋友 . +Which way is Central Park ? ||| 中央 公園 在 哪個 方向 ? +This is the man who is suspected by the police . ||| 这 是 被 警察 认为 有 嫌疑 的 男子 . +Do you know what color she likes ? ||| 你 知道 她 喜歡 什麼 顏色 嗎 ? +This guitar is so expensive that I can not buy it . ||| 这 吉他 太贵 了 , 我 没法 买下 . +I washed the dishes after supper . ||| 晚饭 后 我 洗 了 碗碟 . +Admission is $ 3.00 at the door . ||| 入场费 是 3 美元 . +He sang while working . ||| 他 一边 唱歌 一边 工作 . +Who is that woman holding the flowers ? ||| 那个 拿 着 花 的 女人 是 谁 ? +Why did we fail ? ||| 我們 為 甚麼 失敗 了 ? +He has been ill in bed for four days . ||| 他 已 卧病在床 四天 了 . +The minimum wage in Okinawa is 642 yen per hour . ||| 冲绳 的 最低 时薪 是 每 小时 642 日元 . +You should not have eaten so much ice cream . ||| 你 不 應 該 吃 這麼 多 冰淇淋 . +Do you like snow ? ||| 你 喜欢 雪 吗 ? +You are no singer . ||| 你 不是 歌手 . +They killed time playing cards . ||| 他們 玩牌 來 殺 時間 . +I know what his name is . ||| 我 知道 他 叫 什么 名字 . +Everybody talks about the weather , but nobody does anything about it . ||| 每個 人 都 在 談論 天氣 , 但是 沒 有人 為 它 做 任何 事情 . +He gave his children a good education . ||| 他 給 了 他 的 孩子 們 良好 的 教育 . +We are going to have a test today . ||| 我們 今天 將 有 一個 考試 . +Tom did not waste any time , did he ? ||| 湯姆 不 浪費 一點 時間 , 不是 麼 ? +Breathing was difficult . ||| 呼吸 困難 . +He bought me a new dictionary . ||| 他 買 給 我 一本 新 字典 . +I can not understand this at all . ||| 我 一點 也 不 懂 這個 . +What is your house like ? ||| 你 的 房子 如何 ? +A sponge absorbs water . ||| 海绵 吸水 . +We can not force people to do that . ||| 我們 不能 強迫 人 去 做 . +Tom and Mary stayed in a fancy hotel . ||| 汤姆 和玛丽 入住 了 一家 高档 酒店 . +The boat can still be seen . ||| 船 还 能 看见 . +I caught the last bus . ||| 我 趕上 了 最 後 一班 公車 . +Which club do you belong to ? ||| 你 屬 於 哪個 社團 ? +They go to church on Sunday . ||| 他們 禮 拜 天上 教堂 . +Have you eaten your lunch yet ? ||| 你 吃 過午 飯 了 嗎 ? +I have not quite finished eating . ||| 我 還 沒有 完全 吃 完 . +You have a good memory . ||| 你 的 記憶力 很 好 . +That is soft . ||| 这 很 软 . +We will be late if we do not hurry . ||| 再 不 快点 就 迟到 了 噢 . +Please call the fire department . ||| 请 叫 消防员 . +I would like to show you something . ||| 我 有 东西 想 给 你 看看 . +I do not like eggs . ||| 我 不 喜欢 鸡蛋 . +Put on some clothes . ||| 你 穿 點 東西 . +Do you think I am joking ? ||| 你 觉得 我 是 在 开玩笑 吗 ? +My father is in the habit of reading the newspaper before breakfast . ||| 我 父亲 有个 习惯 , 早餐 之前 读 报纸 . +Judging from the look of the sky , it is likely to rain . ||| 看看 天 的 样子 , 要 下雨 了 . +I took the fact for granted . ||| 我 忽略 了 事实 . +You are driving too fast . ||| 你 開 得 太 快 了 . +His father passed away last year . ||| 他 的 父親 去年 過世 了 . +There is no money left in my bank account . ||| 我 的 银行 账户 里 没 留下 钱 . +What Tom said was not true . ||| 湯姆 說 的 不是 真的 . +His life after retirement was unhappy . ||| 他 退休 後 的 生活 不快 樂 . +My front teeth stick out . ||| 我 门牙 突出 . +The simplest way is often the best way to solve a problem . ||| 解决问题 最 简便 的 方法 往往 是 最好 的 办法 . +Tell Tom I am sorry . ||| 告诉 汤姆 我 很 抱歉 . +Make yourself at home . ||| 就 当 在家 一样 . +I thought your parents liked me . ||| 我 認為 你 的 父母 喜歡 我 . +Tom never did that when he was younger . ||| 汤姆 年轻 时 从不 那么 干 . +Tom is got nothing to hide . ||| 汤姆 没有 什么 可 隐藏 . +Do you understand what I mean ? ||| 你 知道 我 的 意思 嗎 ? +Tom went to Boston three years ago . ||| 汤姆 三年 前去 了 波士顿 . +Where is the nearest shopping mall ? ||| 最近 的 大 卖场 在 哪里 ? +My husband reads the newspaper while eating breakfast . ||| 我 丈夫 一边 吃 早餐 一边 读 报纸 . +The cat caught the rats . ||| 猫 抓住 了 老鼠 . +He caught hold of the rope . ||| 他 抓住 了 绳子 . +I do not like to swim in pools . ||| 我 不 喜歡 在 泳池 裡 游泳 . +We will always be friends . ||| 我们 永远 都 会 是 朋友 . +Tom and Mary is home is cluttered . ||| 汤姆 和玛丽 的 家 很乱 . +I am ready to go back home . ||| 我 準備 回家 了 . +Tom heard this and got angry . ||| 聽到 這事 之 後 , 湯姆為 之 色 變 . +Tom takes the bus to the city . ||| 湯姆 搭 公車 去 市區 . +He is coming closer . ||| 他 在 靠近 . +You remind me of myself . ||| 你 让 我 想起 我 自己 . +The moon is the earth is only satellite . ||| 月球 是 地球 唯一 的 卫星 . +You are absolutely right . ||| 你 完全 正確 . +Will this year be different ? ||| 今年 将 会 不同 以往 吗 ? +Everybody wished he had been elected governor . ||| 每個 人 都 希望 他 當選 州長 . +Please show me the green shirt . ||| 請 給 我 看看 這件 綠色 的 襯衫 . +Thank you just the same . ||| 还是 要说 谢谢 的 . +People can not live without air . ||| 没有 空气 , 人 无法 存在 . +We gave our mother a watch . ||| 我們 給 了 母親 一支 手 錶 . +It is just your imagination . ||| 这 只是 你 的 想象 . +Are you free in the afternoon ? ||| 你 下午 有空 嗎 ? +We had a late lunch at two . ||| 我們 在 兩點鐘 吃 了 晚 午餐 . +How long does it take ? ||| 要 花 多久 時間 ? +What did she buy at the shop ? ||| 她 在 店 裡 買 了 什麼 ? +She is busy preparing for the trip . ||| 她 正忙 著 準備 這次 旅行 . +He will come back sooner or later . ||| 他 迟早会 回来 的 . +The people here are accustomed to the cold . ||| 这里 的 人 习惯 了 寒冷 . +You seem to be an honest man . ||| 你 看起来 像 个 老实人 . +My father is a skilled fisherman . ||| 我 爸爸 是 个 钓鱼 高手 . +He refused to shake hands with me . ||| 他 拒绝 跟 我 握手 . +She has gone shopping . ||| 她 去 购物 了 . +I stayed up all night again . ||| 我 又 熬夜 了 . +All of a sudden , three dogs appeared in front of us . ||| 突然 之間 , 三 隻 狗 出 現 在 我 們 面前 . +This desk is designed for children . ||| 這 張 書 桌 是 專門 為 兒童 設計 的 . +The suspect is a caucasian female . ||| 嫌疑人 是 一位 白人 女性 . +I will get there as soon as I can . ||| 我会 尽可能 早 地 到 那儿 . +I am a vegetarian . ||| 我 是 素食主义者 . +The youngest daughter was particularly beautiful . ||| 么 女 長 得 特別 漂亮 . +The plane flew toward the west . ||| 飞机 向西飞 了 . +I bought a dozen pencils today . ||| 我 今天 買 了 一打 鉛筆 . +You are not a coward . ||| 您 不是 个 懦夫 . +I got up early in the morning . ||| 我 早上 很早 起床 . +I will find you a good doctor . ||| 我 會 幫 你 找 個 好 醫生 . +That is what I like . ||| 我 就 喜欢 它 . +Tom set the bird free . ||| Tom 將鳥 放走 . +He is old enough to understand it . ||| 他 已經 到 了 能 瞭解 它 的 年紀 . +I can help you , too . ||| 我 也 能 幫 你 . +Tom is a man of few wants . ||| 汤姆 是 个 寡欲 的 人 . +He wrote down the telephone number . ||| 他 寫下 這個 電話 號 碼 了 . +I have no excuse . ||| 我 没有 借口 . +They gave him up for lost . ||| 他們 為 失敗 放棄 了 他 . +We need you to tell us why you were absent all last week . ||| 我们 要 你 告诉 我们 你 为什么 整个 上周 都 缺勤 . +We defeated the enemy . ||| 我們 戰勝 了 敵人 . +Tom teaches French . ||| 湯姆 教法 語 . +After supper , I washed the dishes . ||| 晚饭 后 我 洗 了 餐具 . +Do you want to get some lunch ? ||| 你 想 吃 点 午饭 吗 ? +Tom says he is tired . ||| 汤姆 说 他 累 了 . +He broke in on our conversation . ||| 他 打斷 了 我們 的 談話 . +She spends a lot of time practicing the piano . ||| 她 花 很多 时间 练 钢琴 . +How is your wife ? ||| 你 太太 怎么样 ? +The accident happened near his home . ||| 事故 發生 在 他家 附近 . +May I be excused from tomorrow is class ? ||| 明天 的 课 我 能 不来 吗 ? +Where does this street lead to ? ||| 這條 街 通到 哪裡 ? +He practiced every day at home . ||| 他 每天 在家 練習 . +Have you ever thought of becoming a nurse ? ||| 你 曾經 想過 當 個護士 嗎 ? +She ironed her shirt . ||| 她 熨 了 衬衫 . +I have a little money . ||| 我 有 一些 錢 . +Tom died in battle . ||| 湯姆 在 戰鬥 中 死 了 . +I prefer tea to coffee . ||| 我 喜歡 茶 勝 過 咖啡 . +She has a husband and two daughters . ||| 她 有 丈夫 和 兩個 女兒 . +Tom did not attend the meeting . ||| 湯姆 沒有 参加 會議 . +I could hear dogs barking all night . ||| 我 整夜 都 能 听到 狗叫 . +There is a cat under the desk . ||| 书桌下 有 一只 猫 . +She gave me several books . ||| 她 給 了 我 幾本 書 . +What is the point in doing that ? ||| 幹 嘛 那麼 麻煩 ? +Tom crushed the garlic . ||| 汤姆 捣碎 了 大蒜 . +Switch on the light . I can not see anything . ||| 把 灯 打开 . 我 什么 都 看不见 了 . +I think you are really amazing . ||| 我 觉得 你 真是 让 人 大吃一惊 . +He dressed up as a woman . ||| 他 打扮 得 像 女人 一樣 . +You can not say no . ||| 你 无法 说 “ 不 ” . +Do you like any of these pictures ? ||| 你 喜歡 這些 畫 裡 的 任何 一幅 嗎 ? +Who is that man ? ||| 那 男人 是 谁 ? +Which do you like better , spring or autumn ? ||| 春天 和 秋天 , 你 更 喜欢 哪个 ? +You are an idiot . ||| 你个 傻子 ! +She saw a young man at the entrance . ||| 她 在 入口 看到 一個 年輕 男人 . +I am really tired . ||| 我 累死 了 . +Take the elevator to the fifth floor . ||| 搭乘 電梯 到 五 樓 . +I looked , but I did not see anything . ||| 我 看 過 了 , 但是 沒 看到 什麼 東西 . +They blamed Tom for causing the accident . ||| 他们 指责 汤姆 造成 了 事故 . +I do not want to eat lunch now . ||| 我 现在 不想 吃 午饭 . +Will you lend me your dictionary ? ||| 把 你 的 字典 借 給 我 好 嗎 ? +One of my bags is missing . ||| 我 的 一個 包包 不見 了 . +He was willing to work for others . ||| 他 願意 為 別人 工作 . +Now they have three children . ||| 现在 他们 有 三个 孩子 . +The weather is unusually cold . ||| 天气 非常 寒冷 . +You and I are good friends . ||| 你 和 我 是 好 朋友 . +Could you turn off the lights ? ||| 你 可以 關燈 嗎 ? +Their eyes met . ||| 他們 目光 相接 . +Take things a little more seriously . ||| 對 事情 比較 正經 嚴肅 . +Answer my question carefully . ||| 仔细 回答 我 的 问题 . +I am feeling fit . ||| 我 覺得 精神 很 好 . +I think it is time for you to grow up . ||| 我 觉得 你 是 时候 该 懂事 了 . +I am very grateful for everything you have done for me . ||| 非常感谢 你 所 做 的 一切 . +I do not think my life is very interesting . ||| 我 不 認為 我 的 人生 很 有趣 . +Stay with us . ||| 和 我们 留在 一起 吧 ! +If I get rich , I will buy it . ||| 如果 我 有钱 , 我 就 会 买 它 . +I have no way of knowing that . ||| 我 无从 知道 . +If there was no sun , all the animals would be dead . ||| 如果 没有 太阳 , 那 所有 生物 都 会 死 . +What language is spoken in America ? ||| 在 美國 的 人 說 什麼 語言 ? +Coal is not always black . ||| 煤 并不一定 都 是 黑 的 . +Let is take it easy . ||| 讓 我們 放 輕 鬆 吧 . +I would rather live by myself than do as he tells me to do . ||| 我 寧願 自己 獨立 生活 也 不要 他 來 指使 我 . +English is difficult to learn . ||| 英語 很 難 學 . +I do not know where he comes from . ||| 我 不 知道 他 從 哪裡 來 . +It is very hot here in the summer . ||| 这里 夏天 非常 炎热 . +His house is somewhere about here . ||| 他家 在 这儿 某处 . +The curtain fell . ||| 谢幕 了 . +He can speak Russian as well . ||| 他 还 会 说 俄语 . +She left the hospital an hour ago . ||| 她 一 小时 前 离开 了 医院 . +I thought you were listening . ||| 我 以为 你 在 听 . +He will succeed to the throne . ||| 他 会 继承 王位 . +I prefer riding to walking . ||| 我 喜歡 騎車 勝 過 走路 . +I am tall . ||| 我 个子 高 . +I bought a hat at the store . ||| 我 在 這家 商店 買 了 一頂 帽子 . +She lives in a huge house . ||| 她 住 在 一個 很大 的 房子 裡 . +What do you want now ? ||| 您 现在 想要 什么 ? +I can help you out . ||| 我 能 幫 你 . +This is all I know . ||| 這 是 我 所 知道 的 . +Would you please have a look at these papers ? ||| 請 你 看看 這些 文件 . +I do not want to quit this job . ||| 我 不想 辞去 这份 工作 . +Let is discuss the problem with them . ||| 让 我们 和 他们 讨论 这个 问题 吧 . +Ask Tom . ||| 去 问 汤姆 . +I am crazy about you . ||| 我 为 你 着迷 . +Which ones are Tom is ? ||| 哪个 是 汤姆 的 ? +I did not hear it . ||| 我 没 听见 . +The boy who lives next door often comes home late . ||| 隔壁 的 男孩 常常 晚 回家 . +I will get some help . ||| 我会 需要 帮助 . +She is a bit naive . ||| 她 有点 天真 . +No one knows . ||| 沒 有人 知道 . +I will give you a prescription . ||| 我会 给 你 开 个 药方 . +Is this everything ? ||| 这 就是 全部 吗 ? +They forgave him for his crimes . ||| 他们 原谅 了 他 的 罪行 . +Do you have any friends who are doctors ? ||| 你 有 朋友 是 醫生 嗎 ? +My hobby is collecting old coins . ||| 我 的 嗜好 是 收集 古錢幣 . +You had better be careful not to overeat . ||| 你 最好 小心 不要 吃 過 量 . +Where were you yesterday morning ? ||| 你 昨天上午 在 哪裡 ? +Do I have to stay in the hospital ? ||| 我 必須 留在 醫院 嗎 ? +Would you lend me your knife ? ||| 你 可以 借 我 你 的 刀 嗎 ? +She graduated from Kobe University . ||| 她 畢業 於 神戶 大學 . +He did not show up at the party . ||| 他 沒有 在 派 對 上 出現 . +I just want you to come . ||| 我 只是 想要 你 来 . +Tom wears a hat every day . ||| Tom 每天 都 戴帽子 . +You continue making the same mistakes time after time . ||| 你 每次 都 继续 犯 同样 的 错误 . +She has a pretty doll . ||| 她 有个 漂亮 的 洋娃娃 . +I just do not want to marry Tom . ||| 我 只是 不想 和 汤姆 结婚 . +I did my best . ||| 我 做得好 到 不能 再 好 了 . +I do not know whether I have time or not . ||| 我 不 知道 我 有 沒有 時間 . +Do not worry about the past . ||| 不要 担心 过去 . +Words express thoughts . ||| 語 言表 達 思想 . +There is a beautiful park near my home . ||| 我家 附近 有个 漂亮 的 公园 . +Step out of the car and place your hands behind your back . ||| 下车 , 把手 放在 背后 . +He rode his bicycle there . ||| 他 是 騎 自行 車 去 的 . +How high can you jump ? ||| 你 能 跳 多 高 ? +He likes anything sweet . ||| 他 喜歡 一切 甜 的 東西 . +I have a daughter . ||| 我 有 一个 女儿 . +They sometimes help us . ||| 他們 有 時 幫 我們 . +I will see you next month . ||| 我 下個 月會 來看 你 . +My uncle has a flower shop near the station . ||| 我 叔叔 在 車站 附近 有 一家 花店 . +Let me die . ||| 让 我 去 死 . +Are you kidding ? ||| 你 在 开玩笑 吗 ? +The vending machines are over there . ||| 自动售货机 在 那边 . +We have the same problem . ||| 你 的 问题 和 我 的 一样 . +I think I now have enough money to buy the car that I want . ||| 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +I am fixing the washing machine . ||| 我 在 修 洗衣 機 . +It is me . ||| 是 我 . +The news made her sad . ||| 这个 消息 让 她 很 伤心 . +I like fish . ||| 我 喜欢 鱼 . +Both of my sisters are not married . ||| 我 的 兩個 姊妹 並非 都 結婚 了 . +Do not leave your work half finished . ||| 别 留 着 一半 工作 没 干 . +What is your favorite type of pizza ? ||| 你 最 喜歡 的 比薩類 型 是 甚麼 ? +What is your name ? ||| 你 叫 什么 名字 ? +It is definite that he will go to America . ||| 他 肯定 要 去 美国 . +I work every day except Sunday . ||| 除了 星期天 我 每 一天 都 工作 . +It was just as I thought . ||| 这 正如 我 想 的 一样 . +Tom stayed home . ||| 湯姆 留在 家裡 . +Have you been fired ? ||| 你 曾經 被 開除 過 嗎 ? +They are about the same age . ||| 他们 年龄 相仿 . +This book was printed in England . ||| 这 本书 在 英国 印刷 . +Are you sure of your facts ? ||| 你 確定 你 的 資料 屬實 嗎 ? +Nobody can know everything . ||| 沒 有人 能 無所 不知 . +She had already gone when I arrived . ||| 當 我 到 的 時候 , 她 已經 走 了 . +Do you like Japanese food ? ||| 你 喜欢 日本 菜 吗 ? +The party ended at ten o 'clock . ||| 派 對 在 十點鐘 結束 . +I am taking care of my grandfather . ||| 我 照顧 我 的 爺爺 . +My uncle made me serve as interpreter . ||| 我 叔叔 讓 我 擔任 翻譯 . +How old are you ? ||| 你 幾歲 ? +I almost forgot all about that . ||| 我 幾乎 忘 了 所有 關於 那件事 . +He amassed a fortune in stock trading during the last boom . ||| 他 在 上个 景气 时期 炒股 攒下 了 一笔 钱 . +I must finish this work first . ||| 我 必須 先 完成 這個 工作 . +He must be about forty . ||| 他 应该 40 岁 左右 吧 . +Hey , what are you doing here ? ||| 嘿 , 你 在 這 做 什麼 ? +Starting tomorrow , it is going to snow for a week . ||| 雪 从 明天 开始 下 , 一直 持续 一个 星期 . +It is cold . ||| 天 很 冷 . +You need a vacation . ||| 你 需要 個 假期 . +How long are you planning to stay ? ||| 你 准备 待 多久 ? +Tom followed Mary into the room . ||| 汤姆 跟着 玛丽 进入 了 房间 . +I was very nervous as the plane took off . ||| 飛機 起飛 的 時候 我 很 緊張 . +This plane flies between Osaka and Hakodate . ||| 這 架 飛機 往返 於 大阪 和 函館 之間 . +They made straight for their destination . ||| 他們 直奔 目的地 . +Tom has something very important to tell Mary . ||| 湯姆 有 很 重要 的 事 要 告訴 瑪麗 . +What time will you have breakfast ? ||| 你 什麼 時候 吃 早餐 ? +There is no possibility of his coming . ||| 他 不 可能 來 . +Tom does not usually eat breakfast . ||| 汤姆 一般 不吃 早饭 . +This table takes up too much space . ||| 這 張 桌子 太 佔 空間 了 . +Tell me how to solve the problem . ||| 告訴 我 如何 解決 這個 問題 . +Now tell us what we want to know . ||| 现在 告诉 我们 我们 想 知道 的 . +Tom is always watching television . ||| 湯姆總 是 在 看電視 . +It is a sheer waste of time . ||| 這 完全 是 浪費 時間 . +Maybe you should study harder next time . ||| 你 下回 可能 该 更 努力学习 . +The world is beautiful . ||| 萬物 真 美好 . +We had a slight difference of opinion . ||| 我們 的 看法 有 一點 不同 . +All the furniture was covered with dust . ||| 所有 的 家具 都 佈 滿 了 灰 塵 . +Come here by ten at the latest . ||| 最晚 十點 前來 這裡 . +He is anxious to see you . ||| 他 急 於 要 見 你 . +I must help her at any cost . ||| 我 必须 不惜一切 代价 帮助 她 . +We should inform them about that . ||| 我们 应该 把 那件 事情 告知 他们 . +He prefers French to German . ||| 他 喜歡 法語 勝 過 德語 . +If you could go back and start your life again , from what age would you like to start ? ||| 假如能 回到 过去 让 人生 再 来 一遍 的话 , 你 希望 能 回到 几岁 的 时候 ? +Pride goes before a fall . ||| 骄傲 使 人 落后 . +You can not do two things at once . ||| 你 不能 一心两用 . +He is old enough to know better . ||| 他 已經 長大 該 懂事 了 . +There is nothing better than taking a nice walk . ||| 没有 什么 比 散步 更好 的 了 . +We are friends . ||| 我们 是 朋友 . +This table is heavy . ||| 这 张 桌子 很重 . +He has written a letter . ||| 他 写 了 一封信 . +Why should anyone be surprised ? ||| 为什么 任何人 应该 感到 惊喜 ? +I spoke with him about the matter . ||| 我 跟 他 談 過 這個 問題 . +We have got to start thinking about recycling . ||| 我們 必須 開始 考慮 回收 . +I do not like anything . ||| 我 什么 都 不 喜欢 . +I hiccup a lot . ||| 我 经常 打嗝 . +Tom tore the ticket to bits . ||| 湯姆 把 票 撕成 碎片 . +I really enjoyed last night . ||| 我 昨晚 真盡 興 . +I let my sister use my new computer . ||| 我 让 我 妹妹 用 我 的 新 电脑 . +I have done bad things that I should be punished for . ||| 我 做 了 該 受罰 的 壞事 . +We got lost in the fog . ||| 我们 在 雾 中 迷了路 . +What did she say ? ||| 她 说 了 什么 ? +There is nothing you can do for Tom . ||| 你 無法 為 湯姆 做 甚麼 . +She has plenty of books . ||| 她 有 大量 的 書 . +The box was not empty . ||| 箱子 不是 空 的 . +Tom is accustomed to getting up early . ||| 汤姆 习惯 早起 . +I feel like going out today . ||| 我 今天 想 出門 . +She will be a famous artist in the future . ||| 她 将来 会 是 一个 有名 的 艺术家 . +I have always wanted to climb Mt . Fuji . ||| 我 一直 想 登 富士山 . +Have you washed the car yet ? ||| 你 洗過 車子 了 嗎 ? +There was nothing on the radio about the accident . ||| 電台 沒有 提到 這個 事故 . +The cottage was clean and tidy . ||| 小屋 干净 又 整洁 . +Take care ! ||| 照顾 好 自己 . +It all depends on the weather . ||| 一切 都 取決 於 天氣 . +The girl was sobbing in the corner of the schoolroom . ||| 女孩 在 教室 的 角落 啜泣 . +" He used to love me , " she answered sadly . ||| 他 以前 愛 我 , 她 傷 心地 回答 . +You only gave me fifty cents . ||| 你 只 給 了 我 五十 美分 . +Send for a doctor at once . ||| 立即 送 醫 . +He acts as if he were a king . ||| 他 做 得 好像 自己 是 国王 一样 . +What is it ? ||| 這 是 什麼 啊 ? +He walks fast . ||| 他 走路 很快 . +In the United States , school buses are yellow . ||| 在 美国 , 校车 是 黄色 的 . +The broccoli today is not very fresh . ||| 今天 的 西藍花 不是 很新 鮮 . +Shake my hand . ||| 和 我 握手 . +Which goes faster , a ship or a train ? ||| 船 和 火车 哪个 跑得快 ? +Mary is tall . ||| 瑪麗 很 高 . +Watch your step . ||| 走路 小心 . +Tom has lost his mind . ||| 湯姆 失去 理智 了 . +Somebody has stolen my hair dryer . ||| 有人 偷 了 我 的 吹 風機 . +I am sore all over . ||| 我 全身 酸痛 . +Six divided by two equals three . ||| 六 除以 二 得 三 . +Please say hello to your family . ||| 带 我 向 你家 人 问好 . +Tom told us this morning that he and Mary were moving to Boston . ||| 汤姆 告诉 我 今天上午 他 和玛丽 要 搬到 波士顿 . +How do I explain that to Tom ? ||| 我 怎麼 跟 湯姆 解釋 ? +What do we want ? ||| 我們 要 什麼 ? +Please get dressed . ||| 请 穿衣服 . +This flower is the most beautiful of all flowers . ||| 这 朵花 是 所有 花 中 最 漂亮 的 . +It is good to be a winner . ||| 做 个 赢家 很 好 . +I think that I now have enough money to buy the car I want . ||| 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Where is the United Airlines check @-@ in counter ? ||| 聯合 航空公司 辦理 登機 手續 的 櫃 檯 在 哪 裡 ? +Will Tom really do that ? ||| 湯姆真 要 做 嗎 ? +The time will soon come when man will be able to travel to the moon . ||| 在 不久 的 将来 人类 会 可以 去 月球 旅游 . +Of course she passed the test . ||| 當然 , 她 通過 了 測驗 . +Tom has a reservation . ||| 汤姆 有 预约 . +You are the one who suggested that we travel together . ||| 你 是 那個 建議 我們 一起 旅行 的 人 . +Their cattle are all fat . ||| 他們 的 牛 都 很 肥 . +He threw a piece of meat to a dog . ||| 他 丢 了 块 肉 给 一条 狗 . +I know what is in the box . ||| 我 知道 盒子 裡 有 什麼 . +I have more money than Tom . ||| 我 比 汤姆 有钱 . +I can hardly understand what he says . ||| 我 幾乎 無法 了解 他 說 的 話 . +I am too sleepy to do my homework . ||| 我 太 累 了 , 做不了 功课 . +Can we stop fighting ? ||| 我们 能 不 打 了 吗 ? +I was somewhere else . ||| 我 在 另 一个 地方 . +Fire is always dangerous . ||| 火 總是 危險 的 . +We have received a lot of applications in answer to our advertisements . ||| 我們 已經 收到 了 很多 回應 我們 廣告 的 申請 . +He said that you had better go . ||| 他 說 你 最好 去 . +That is not Tom is fault . ||| 那 不是 湯姆 的 錯 . +She will be here this evening . ||| 她 今天 晚上 將 在 這裡 . +Does anyone else have any advice ? ||| 有人 還 有 什麼 建議 嗎 ? +She was sitting under a tree . ||| 她 在 一棵树 下 坐 着 . +What languages are spoken in America ? ||| 在 美国 人们 说 哪些 语言 ? +Lie still . ||| 躺 着 不动 . +We climbed the mountain last year . ||| 我們 去年 爬上 了 這 座 山 . +There is not a drop of water left . ||| 沒有 剩下 一滴水 . +Malaria is carried by mosquitoes . ||| 瘧疾 是 由 蚊子 傳染 的 . +I do not like studying in this heat . ||| 我 不 喜歡 在 這麼 熱 的 氣 溫下 唸 書 . +They are not afraid of hard work . ||| 他們 不怕 艱苦 的 工作 . +This is so boring . ||| 这 太 无聊 了 . +I do not like eggs . ||| 我 不 喜欢 吃 鸡蛋 . +He usually goes to work at 8 a.m. ||| 通常 , 他 早上 8 点 去 上班 . +I do not play tennis that well . ||| 我 网球 打 得 不 那么 好 . +I quickly ate lunch . ||| 我 迅速 地 吃 了 午飯 . +I want some potatoes . ||| 我 要 几个 土豆 . +Tom is single and has a three @-@ year @-@ old daughter . ||| Tom 單身 , 他 有個 三歲 的 女兒 . +She refused to do what they wanted . ||| 她 拒絕 做 他們 想要 的 事 . +As long as you keep quiet , you can stay here . ||| 只要 你 保持 安靜 , 你 可以 留在 這裡 . +Hand me my towel . ||| 幫 我 遞 一下 毛巾 . +It is not as hard as you think . ||| 那个 没 你 想象 的 那么 难 . +America is very big . ||| 美洲 很大 . +Why did not you tell Tom that you were married ? ||| 你 为什么 不 告诉 汤姆 你 已经 结婚 了 ? +Who died ? ||| 谁 死 了 ? +I am an optimist by nature . ||| 我 生性 樂觀 . +Everyone likes Tom . ||| 大家 都 喜歡 湯姆 . +Tom covered his face with his hands . ||| 汤姆 用 他 的 手 捂住 了 他 的 脸 . +You can get from Washington to New York by train . ||| 你们 可以 乘火车 从 华盛顿 去 纽约 . +How do you want this handled ? ||| 你 想 怎麼 處理 ? +I 'd like a receipt , please . ||| 麻煩 我 要 一張 收據 . +I can not tell you now . ||| 我 現在 不能 告訴 你 . +I need some good advice . ||| 我 需要 一些 好 的 忠告 . +The answer misses the point . ||| 回答 偏 了 . +Could I get some tea ? ||| 可以 给 我 一些 茶水 吗 ? +He is shorter than Tom . ||| 他 比 湯姆 矮 . +Is there anything that needs to be done ? ||| 有 甚麼 事 要 做 嗎 ? +He was the first to come . ||| 他 是 第一 個 來 的 . +It is up to you to decide . ||| 由 你 來 決定 . +We had an unpleasant experience there . ||| 我們 在 那裡 有 一個 不 愉快 的 經歷 . +He got a master is degree in law . ||| 他 得到 了 法律 碩士 學位 . +We may need some . ||| 我們 可能 需要 一些 . +The patient is in a deep coma . ||| 患者 现在 处于 深度 昏迷 状态 . +I do not like the way you laugh at her . ||| 我 不 喜欢 你 嘲笑 她 的 方式 . +I am going to learn French . ||| 我 要 学法语 . +To make matters worse , he is not even conscious of annoying his neighbors . ||| 让 事情 更 糟糕 的 是 , 他 没有 注意 到 他 打扰到 了 邻居 . +The grass looks nice . ||| 草地 看来 不错 . +What time do you close ? ||| 你们 几点 关门 ? +I borrowed money from my father . ||| 我 向 我 父親 借錢 . +I 'd like you to have an ultrasound . ||| 我 想 讓 你 接受 超聲 檢查 . +Spanish is spoken in twenty countries . ||| 有 二十 個 國家 說 西班牙 語 . +They all laughed at his jokes . ||| 他們 全都 被 他 的 笑話 逗笑 了 . +She invited Tom and me to the party . ||| 她 邀請 我 和 湯姆 去 派 對 . +I would like to have a cup of coffee . ||| 我 想要 一杯 咖啡 . +I wish you a happy birthday . ||| 我 祝 你 生日快乐 . +Tom , I want to have a chat with you . ||| Tom , 我 想 和 你 談談 . +I do not like wearing socks . ||| 我 不 喜歡 穿 襪子 . +Tom headed out the door . ||| 汤姆 向 门 走 去 . +I asked Tom what he was reading . ||| 我 问 了 汤姆 在读 什么 . +She was born in America . ||| 她 生 在 美洲 . +In case the shipment is delayed , we have special delay insurance . ||| 万一 船运 迟 了 , 我们 有 特别 的 迟到 保险 . +Is it really that hard to speak French ? ||| 说 法语 真 有 那么 难 吗 ? +Where is the nearest drugstore ? ||| 最近 的 藥店 在 哪裡 ? +She was making tea . ||| 她 正在 泡茶 . +I like both science and math . ||| 科学 和 数学 我 都 喜欢 . +I want you to take a break . ||| 我 想 讓 你 歇歇 . +Just give me your name and address . ||| 只要 給 我 你 的 姓名 和 住址 . +I had a dream about him . ||| 我 夢 到 了 他 . +We got to be friends . ||| 我们 交 了 朋友 . +Do you like apples ? ||| 你 喜欢 苹果 吗 ? +Whose fault is it ? ||| 是 誰 的 錯 呢 ? +I did not sell Tom my car . ||| 我 没 把 我 的 车 卖 给 汤姆 . +Tom would still be alive if he had been wearing his seat belt . ||| 要是 汤姆 系 上 安全带 的话 , 他 就 不会 死 的 . +You need to pay extra for the batteries . ||| 电池 要 额外 付钱 . +Who touched my gun ? ||| 誰 碰 了 我 的 槍 ? +Tom is afraid to go out alone at night . ||| 汤姆 害怕 晚上 一个 人 出门儿 . +I wish I could buy you everything you wanted . ||| 我 希望 我 能 买下 你 想要 的 所有 东西 . +Send for the doctor at once . ||| 立刻 派 人 去 請 醫生 來 . +I love her and she loves me . ||| 我 愛 她 , 她 也 愛 我 . +Everyone except Tom ate pizza . ||| 所有人 除了 汤姆 都 吃 了 比萨 . +The radio did not mention the incident . ||| 電台 沒有 提到 這個 事故 . +She appears to have many friends . ||| 她 看 起來 好像 有 很多 朋友 . +Tom is my grandfather . ||| Tom 是 我 爺爺 . +Tom is deceitful . ||| 汤姆 是 个 骗子 . +I caught three fish yesterday . ||| 昨天 我 釣 了 三條 魚 . +What is the point in doing that ? ||| 那樣 做 有 什麼 用 ? +I was late for school this morning . ||| 我 今天 早上 上學 遲到 . +I will go by myself . ||| 我 會 自己 走 . +I feel cold . ||| 我 觉得 冷 . +I have been busy writing a short story . ||| 我 一直 忙于 写 一部 短篇小说 . +Why do not you eat pineapple ? ||| 你 為 什麼 不吃 菠蘿 ? +Might I ask your name and address ? ||| 我 能 问 一下 您 的 姓名 和 住址 吗 ? +It cost me a thousand yen to get my bicycle fixed . ||| 修理 我 的 腳踏車 花 了 我 一千 日 圓 . +I did not tell Tom what needed to be done . ||| 我 沒 告訴 湯姆 要 做 甚麼 . +Every cloud has a silver lining . ||| 山 窮水盡疑無路 , 柳暗花明又一村 . +How does this work ? ||| 這 是 怎麼 運行 的 ? +It is hard to quit smoking . ||| 戒烟 难 . +We are Canadians . ||| 我們 是 加拿大人 . +What does he say in his letter ? ||| 他 在 信 上 说 什么 ? +I am glad I could help . ||| 能够 出 一份 力 太好了 . +He was a rugby player . ||| 他 曾 是 个 英式 橄榄球 运动员 . +I will be watching you . ||| 我 會 看著 你 . +No one will see us . ||| 沒 有人 會 看到 我們 . +Please send us more information . ||| 請 給 我們 更 多 訊 息 . +Can I eat this orange ? ||| 我 能 吃 这 只 橙子 吗 ? +There were several rooms still vacant . ||| 还有 几间 空房 . +The time has come when I must tell you the truth . ||| 現在 是 我 必須 告訴 你 真相 的 時候 了 . +You swim better than me . ||| 你 游泳 游得 比 我 好 . +Did the police find any fingerprints ? ||| 警察 找到 指纹 了 吗 ? +You really are tall , are not you ? ||| 你 真的 很 高 , 不是 嗎 ? +I caught a beautiful butterfly . ||| 我 抓到 一 隻 漂亮 的 蝴蝶 . +I want you to be prepared . ||| 我 想 讓 你 準備 好 . +I have worn holes in my socks . ||| 我 把 襪子 穿破 了 . +Do you have a knife ? ||| 你 有 刀 吗 ? +He put the book on the shelf . ||| 他 把 书 放在 了 书架上 . +The last person I told my idea to thought I was nuts . ||| 最后 一个 听 我 说 我 的 主意 的 人 认为 我 疯 了 . +They were always making jokes . ||| 他们 一直 闹笑话 . +Some people do not like to deposit their money in banks . ||| 有些 人 不 喜欢 把 钱 存 银行 . +I feel like everybody is watching me . ||| 我 感觉 大家 都 在 关注 我 . +I have lived here since I was a boy . ||| 我 还是 一个 小男孩 的 时候 就 住 在 这里 . +Traffic is a major urban problem . ||| 交通 是 都市 的 一個 主要 問題 . +You can borrow my car anytime . ||| 你 隨時 可以 借用 我 的 車 . +You are free to go . ||| 你 可以 走 了 . +We work every day but Sunday . ||| 我們 除了 週日 每 一天 都 工作 . +I hope everything will be fine in the end . ||| 我 希望 最后 一切 都 好 . +Who do you want to talk to ? ||| 你 想 跟 誰 說 話 ? +I got the roller skates for nothing . ||| 我 免費 得到 溜冰鞋 . +Enjoy your holidays . ||| 度假 愉快 ! +Open your book to page nine . ||| 打開 你 的 書 到 第九 頁 . +Who did you give it to ? ||| 你 把 它 給 誰 了 ? +The next concert will take place in June . ||| 下一场 音乐会 将 在 六月份 举办 . +She went to the park with him . ||| 她 跟 他 去 公園 了 . +Grab that . ||| 抓住 那个 . +He is hard to get along with . ||| 他 這個 人 很 難相 處 . +How much will it all cost ? ||| 一共 要 多少 錢 ? +Europeans like to drink wine . ||| 歐洲 人 都 愛 喝 葡萄酒 . +Please do not use my name . ||| 請 不要 用 我 的 名字 . +What is your nickname ? ||| 你 的 昵称 是 甚麼 ? +Tom is not interested in Mary at all . ||| 汤姆 对 玛丽 一点 也 不感兴趣 +Is Tom autistic ? ||| 汤姆 有 自闭症 吗 ? +Give me something to eat . ||| 給 我 點 東西 吃 . +I managed to make him understand it . ||| 我 設法 讓 他 明白 了 . +He mistook me for my mother . ||| 他 把 我 誤 認為 是 我 的 母親 . +Tom abstained from voting . ||| 汤姆 投票 弃权 . +I wonder if you are as busy as we are . ||| 我 担心 你 會 跟 我們 一樣 忙 . +Both Tom and Mary can speak French . ||| 汤姆 和玛丽 两个 人 都 会 说 法语 . +How often did you visit Kyoto ? ||| 你 多常 造訪 京都 ? +This is exactly what I wanted . ||| 我 想要 的 就是 这个 . +This blue sweater is very pretty . ||| 這件 藍色 毛衣 很漂亮 . +This message does not make sense . ||| 這個 消息 沒有 道理 . +They changed the system . ||| 他們 改變 了 制度 . +Tom is interested in mountaineering . ||| 湯姆 對 登山 感興趣 . +That is the reason he became angry . ||| 那 就是 他 生气 的 理由 . +The fire was out . ||| 火 熄灭 了 . +He clipped the sheep . ||| 他 為 羊 隻 修剪 羊毛 . +There is no one in the room . ||| 沒 有人 在 房間 裡 . +She will have to cook for everyone . ||| 她 將 必須 為 大家 做飯 . +I plan to never drink again . ||| 我 打算 絕 不再 喝酒 . +The plane was three hours late due to bad weather . ||| 由于 天气 不好 , 飞机 迟到 了 3 小时 . +I will visit him tomorrow . ||| 明天 我 將 拜訪 他 . +Change trains at the next station . ||| 在 下 一站 換 火車 . +We had a conversation about baseball . ||| 我們 交談 了 有關 棒球 的 事 . +Do I have to take off my shoes here ? ||| 在 這裡 我 必須 脫 鞋 嗎 ? +I went there yesterday . ||| 昨天 我 去 了 那裡 . +I hope that Tom has learned his lesson . ||| 我 希望 汤姆 已经 吸取教训 了 . +We have been going out three months . ||| 我們 外出 了 三個 月 . +Lemons are sour . ||| 檸檬 是 酸 的 . +He forgot to turn off the light . ||| 他 忘 了 關燈 . +Could you please repeat that ? ||| 你 能 重复 一遍 吗 ? +Neither Tom nor Mary will do that . ||| 湯姆 和 瑪麗 都 不 會 做 那件事 . +Let is play soccer . ||| 去 踢足球 吧 . +I want a massage . I need to relax . ||| 我 想要 按摩 . 我 需要 放松 . +It is not as easy to do that as people think . ||| 这 并 不 像 一般 人 觉得 的 那么 容易 . +It is bad manners to point at people . ||| 用 手指 点 别人 不 礼貌 . +Can I talk to you privately for a minute ? ||| 我 能 跟 你 私下 谈 一分钟 吗 ? +I gave her a lift to town . ||| 我 載 她 去 城裡 了 . +I do not think Tom will go to Boston next weekend . ||| 我 不 認為 湯姆 下週 會 去 波士 頓 . +The situation has not changed at all . ||| 情况 丝毫 没有 改变 . +How about tomorrow night at nine ? ||| 明天 晚上 九点 怎么样 ? +Tom was excited to go to the concert . ||| 汤姆 为 去 音乐会 而 激动 . +Hey , your dog just bit me . ||| 嘿 , 你 的 狗 刚 咬 了 我 . +Why does not he tell me jokes anymore ? ||| 為 甚麼 他 不再 跟 我 講 笑 話 了 ? +I love jokes about animals . ||| 我 爱 听 有关 动物 的 笑话 . +The armed forces occupied the entire territory . ||| 军队 占领 了 整片 领土 . +This is the room where the body was found . ||| 这 就是 发现 尸体 的 房间 . +It was her little sister that broke her toy . ||| 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +Your name has been crossed off the list . ||| 你 的 名字 已经 从 名单 删除 了 . +I went there many times . ||| 我 去 那裡 很 多次 了 . +He was opposed to monopolies . ||| 他 反对 垄断 . 他 曾经 / 以前 反对 垄断 +Have not I seen you before ? ||| 我 以前 沒見 過 你 嗎 ? +Your behavior is intolerable . ||| 你 的 行为 让 人 无法忍受 . +Fill it up . ||| 把 它 填滿 . +The well has run dry . ||| 這 口 井 乾 涸了 . +That is what I hope . ||| 我 希望 如此 . +I studied for one hour . ||| 我 讀 了 一個 小 時 的 書 . +We almost had Tom convinced . ||| 我们 差不多 说服 Tom 了 . +She waved at me before she got on board the plane . ||| 她 上 飞机 前 , 给 我 招 了 招手 . +Taxi fares will go up next month . ||| 計程 車費 將 在 下 個 月 漲價 . +A Persian cat was sleeping under the table . ||| 波斯猫 在 桌子 下面 睡觉 . +The children washed their feet . ||| 孩子 们 洗 了 他们 的 脚 . +That Japanese word has no equivalent in English . ||| 那个 日文 词汇 没有 对应 的 英文 . +There are a lot of eggs in the box . ||| 这个 盒子 里 有 很多 蛋 . +How is your last name written ? ||| 你 的 姓氏 怎么 写 ? +Where do you have pain ? ||| 你 哪裡 痛 ? +I want to eat some cake first . ||| 我 想 先 吃 點 蛋糕 . +We just want to find Tom . ||| 我們 只是 想 找 Tom . +Are you afraid of dogs ? ||| 你 怕 狗 吗 ? +Let is end this nonsense . ||| 让 我们 结束 这 胡言乱语 . +I feel a lot better today . ||| 我 今天 感觉 好多 了 . +Are we done ? ||| 我们 完成 了 吗 ? +Please turn on the radio . ||| 请 打开 收音机 . +Her birthday party will be held tomorrow evening . ||| 她 的 生日 宴會 將 在 明天 晚上 . +They helped him get to Canada . ||| 他們 幫 他 去 加拿大 . +I could not stop myself from laughing . ||| 我 不能 忍著 不 笑 . +He is highly intelligent . ||| 他 聪明 得 很 . +I weighed myself on the bathroom scales . ||| 我 用 浴室 的 体重 计量 了 体重 . +Can you guess my age ? ||| 你 能 猜到 我 的 年龄 吗 ? +She almost passed out . ||| 她 几乎 喝晕 了 . +I usually get up at 6 : 00 . ||| 我 通常 在 六點鐘 起床 . +I do not like my hair at all . ||| 我 根本 不 喜歡 我 的 頭 髮 . +Is Tom swimming ? ||| 汤姆 在 游泳 吗 ? +They have a very nice veranda . ||| 他们 有 一个 非常 漂亮 的 暖房 . +I do not think Tom trusts many people . ||| 我 不 認為 湯姆 相信 許多 人 . +I got her to clean my room . ||| 我 讓 她 把 我 的 房間 弄乾 淨 . +Please give me a blanket . ||| 請 給 我 送 一塊 毯子 . +Quite by chance , I met my old friend at the airport . ||| 很 幸运地 , 我 在 机场 遇到 了 我 的 老朋友 . +Let me explain it to Tom . ||| 讓 我 跟 湯姆 說明 . +What mountain do you think is the second highest in Japan ? ||| 你 认为 日本 第二 高峰 是 哪 座 山 ? +I am sure Tom will do his best . ||| 我 确定 汤姆 会 尽力去做 . +What did you answer ? ||| 你 回答 了 什么 ? +Tom clenched his teeth . ||| 汤姆 咬紧牙关 . +I can not afford to play tennis . ||| 我 負擔 不 起 打 網球 的 費用 . +Tom has recently become forgetful . ||| Tom 最近 变得 健忘 了 . +Spell your name , please . ||| 请 拼 一下 您 的 名字 . +I was barely able to work . ||| 我 几乎 不能 工作 了 . +Mary is Tom is secretary . ||| 玛丽 是 汤姆 的 秘书 . +Your CV has really impressed me . ||| 你 的 履歷 給 我 留下 深刻 的 印象 . +It was raining when we arrived . ||| 我們 到 的 時候 正在 下雨 . +I have a dog . ||| 我 有 一条 狗 . +Did you call Tom ? ||| 给 汤姆 打 过 电话 了 吗 ? +I need to get some stamps . ||| 我 需要 一些 郵票 . +What do you call this flower ? ||| 這個 花 叫 什麼 名字 ? +My father died four years ago . ||| 我 的 父親 四年 前 去世 了 . +Tom is Mary is ex @-@ boyfriend . ||| 汤姆 是 玛丽 的 前男友 . +The dog chased the rabbit . ||| 狗 追 兔子 . +Do you feel lucky ? ||| 你 觉得 幸运 吗 ? +She got wet to the skin . ||| 她 渾身 濕透 了 . +Tom is friendly to everyone . ||| 汤姆 对 每个 人 都 很 友好 . +English has become an international language . ||| 英语 成为 了 一门 国际 语言 . +You had better not stay up late . ||| 你 最好 不要 熬夜 . +They adopted the little girl . ||| 他们 收养 了 那个 小女孩 . +Why have you been late to school every day this week ? ||| 為 什麼 你 這個 禮 拜 每天 上學 都 遲 到 ? +I was sore for three weeks . ||| 我 难受 三周 了 . +You have good reason to be angry . ||| 你 有 充分 的 理由 生氣 . +Who is that woman in the brown coat ? ||| 那个 穿 棕色 大衣 的 女人 是 谁 ? +I have just been to the post office . ||| 我 剛剛 去 了 郵局 . +No drinkers allowed . ||| 飲酒 者 不准 禁入 . +She wants to move out and find a place of her own . ||| 她 想 搬出去 , 找 個 屬 於 自己 的 地方 . +Here is my baggage . ||| 这 是 我 的 行李 . +The situation is worse than I 'd thought . ||| 情況 比 我 想 的 還壞 . +She knows your mother very well . ||| 她 對 你 的 母親 很 熟悉 . +My dad is busy . ||| 我 爸爸 很忙 . +He used to be an imaginative boy . ||| 他 曾經 是 一個 富有 想像力 的 男孩 . +The cat is watching the fish . ||| 猫 看着 鱼 . +I 'd love to come with you . ||| 我 想 和 你 一起 去 . +She can not play the piano very well . ||| 她 無法 把 鋼琴 彈 得 很 好 . +How do you pronounce your name ? ||| 你 怎 麼 唸 你 的 名字 ? +He disappeared without a trace . ||| 他 消失 了 , 不留 一丝 踪迹 . +Let is discuss the matter right now . ||| 让 我们 马上 讨论 这个 问题 吧 . +If you would move over , there would be room for everyone . ||| 如果 您 移 過 去 一點 , 每個 人 就 可以 有空 間 了 . +I will see to it . ||| 我 會 留意 的 . +What will the results be ? ||| 結果 會 是 甚麼樣 的 ? +I knew this day was coming . ||| 我 知道 這天 要來 . +Meet me there . ||| 在 那裡 見 我 . +I was ten minutes late for school . ||| 我 上學 遲到 了 十分 鐘 . +My uncle gave me a gift . ||| 我 叔叔 给 了 我 一份 礼物 . +The kidnappers showed no sign of giving up . ||| 這些 綁 匪 沒有 放棄 的 跡象 . +He is unable to buy a car . ||| 他 不能 买车 . +Is there central heating in this building ? ||| 这栋 楼 里面 有 中央 暖气 系统 吗 ? +I have a few friends here . ||| 我 在 这儿 有 一些 朋友 . +All our efforts were in vain . ||| 我们 所有 的 努力 都 白费 了 . +Tom hid in the shed . ||| 汤姆 躲 在 棚里 . +We are looking for him . ||| 我们 在 找 他 . +Tom is birthday was yesterday . ||| 汤姆 的 生日 是 昨天 . +You are always as busy as a bee . ||| 你 總是 跟 蜜蜂 一樣 地 忙碌 . +Who is the girl standing over there ? ||| 站 在 那儿 的 女孩 是 谁 ? +Have you had your eyesight checked recently ? ||| 你 最近 检查 视力 了 吗 ? +I love watching talk shows . ||| 我 愛 看 脫口秀 . +Do not play in the street . ||| 別 在 馬 路上 玩 . +Did you hear about the fire yesterday ? ||| 你 聽 說 了 昨天 的 火災 嗎 ? +Tell me again . ||| 重新 告訴 我 . +He objected to his wife working outside . ||| 他 反对 妻子 在外 工作 . +This is ice . ||| 這 是 冰塊 . +Fasten your seat belts . ||| 系上 你們 的 安全带 . +You let me down . ||| 你 让 我 失望 了 . +Tom wondered where Mary had learned French . ||| 汤姆 想 知道 玛丽 在 哪里 学会 了 法语 . +I had to abstain from smoking while I was in the hospital . ||| 在 医院 的 时候 , 我 不得不 戒烟 . +Never be afraid of making mistakes . ||| 不要 害怕 犯錯 . +I do not think he will say yes . ||| 我 不 認為 他 會 同意 . +I suggested that she go alone . ||| 我 建議 她 一個 人 去 . +A map helps us to know where we are . ||| 地图 帮助 我们 知道 所在 的 位置 . +Where did you get your hair cut ? ||| 你 在 哪裡 剪 頭 髮 ? +People who break the law are punished . ||| 觸犯 法律 的 人 受到 懲罰 . +Talking during a concert is rude . ||| 在 音樂會 中 說 話 是 不 禮貌 的 . +He gets tired easily . ||| 他 很 容易 觉得 累 . +I heard a car pull up . ||| 我 听到 一辆车 停 了 下来 . +Her daughter has become a beautiful woman . ||| 她 的 女兒 已經 變成 一個 漂亮 的 女人 . +That book was interesting . ||| 那 本書 很 有趣 . +I was unable to go to his birthday party . ||| 我 那时 没法 去 他 的 生日派对 . +I am not serious . ||| 我 不是 认真 的 . +Short skirts are already out of fashion . ||| 短裙 已經 過時 了 . +Balls are round . ||| 球 是 圆 的 . +Could you exchange rooms with me ? ||| 可以 跟 我 交換 房間 嗎 ? +He likes music very much . ||| 他 非常 喜歡 音樂 . +The doctor gave it to her . ||| 醫生 把 它 給 了 她 . +The picture is hanging on the wall . ||| 畫 掛 在 牆上 . +A beautiful lake lay just beyond the forest . ||| 森林 外 有 一个 美丽 的 湖泊 . +My father often reads the newspaper during meals . ||| 我 父亲 经常 在 吃饭 时 读 报纸 . +The soldiers are ready for battle . ||| 士兵 們 準備 好要 戰鬥 了 . +I will be in my office from ten tomorrow . ||| 我 明天 十点 起会 在 办公室 里 . +Stay there . ||| 留在 这里 别动 . +Tom is living somewhere in Boston . ||| 湯姆 住 在 波士 頓 某地 . +I feel like eating something sweet . ||| 我 想 吃 點 甜 的 東西 . +He is lying through his teeth . ||| 他 明显 在 撒谎 . +Tom is an important person . ||| 湯姆 是 個 重要 的 人 . +We often played chess after school . ||| 我們 常常 在 放學 後 下棋 . +Tom , we have to talk . ||| 汤姆 , 我们 必须 谈谈 . +Bring the key . ||| 帶 鑰匙 來 . +Action speaks louder than words , but not nearly as often . ||| 行胜 于 言 , 但 并 不是 所有 情况 都 是 这样 . +I got my friends to help me . ||| 我 請 我 的 朋友 來 幫助 我 . +We want to spend our honeymoon in Australia . ||| 我们 想 在 澳大利亚 过 蜜月 . +Can I have a few words with you ? ||| 可不可以 和 你 说 几句 ? +They cleared the street of snow . ||| 他們 清理 了 街上 的 積雪 . +I will send it to you tomorrow . ||| 我 明天 把 它 寄给 你 . +Is the snake alive or dead ? ||| 這條 蛇 是 活 的 還 是 死 的 ? +Few students knew his name . ||| 很少 学生 知道 他 的 名字 . +I need something to write with . ||| 我 需要 一些 用來 寫 字 的 東西 . +I want to get a haircut before I go on the trip . ||| 我 想 在 出發 旅行 前 剪 個 頭 髮 . +Tom can write almost like a native speaker , but his pronunciation is terrible . ||| Tom 写作 可以 写 的 像 本国 人 一样 , 可是 他 的 发音 很烂 +She had a vague feeling of guilt . ||| 她 隱約 地 有 一種 的 內疚 感 . +I 'd love to find out why she said so . ||| 我 很 想 找出 她 为什么 这么 说 的 原因 . +Driving on a slippery road can lead to a car wreck . ||| 在 光滑 的 路上 开车 会 导致 车祸 . +He swam across the river . ||| 他 遊 過 了 河 . +Do you know if Tom has spoken to Mary recently ? ||| 你 是否 知道 最近 湯姆 跟 瑪麗 有 沒有 說 過 話 ? +I think I have done enough . ||| 我 認為 我 做 得 夠 了 . +How did you get back so soon ? ||| 你 怎么 回来 得 这么 快 ? +I have a surprise for you . ||| 我 帶 了 一個 驚喜 給 你 . +Have you ever seen Tom when he is angry ? ||| 你 有 看见 过 汤姆生 气 的 时候 吗 ? +Money does not grow on trees . ||| 錢 不 會 從 樹上 長 出來 . +People have two legs . ||| 人 有 两只 脚 . +It is getting lighter outside . ||| 外面 天色 越來越 亮 了 . +The soldiers were guarding the bridge . ||| 士兵 們 守衛 著 這 座 橋 . +Do not let them forget me . ||| 别 让 他们 忘 了 我 . +Tom could have dealt with the problem in a better way . ||| 汤姆 本 可以 用 更好 的 方式 处理 问题 . +He drives very fast . ||| 他 開車 速度 非常 快 . +Where is the next train going ? ||| 下 一列 火車 去 哪裡 ? +Please open the window . ||| 麻煩 你 開 一下 窗 . +I do not like to sing in public . ||| 我 不 喜歡 在 公共 場合 唱歌 . +The baby went to sleep at once . ||| 這個 小 嬰兒 立刻 去 睡覺 了 . +We are just like brothers . ||| 我們 就 像 兄弟 一樣 . +Do not worry . You will make it . ||| 不要 擔心 . 你 辦 得到 的 . +He and I walked together . ||| 我 和 他 一起 走 . +When are you going to quit smoking ? ||| 你 何時 要 戒煙 ? +He knows how to make a radio . ||| 他 知道 如何 做 收音机 . +Do you think animals have a soul ? ||| 你 认为 动物 有 灵魂 吗 ? +I can not find him anywhere . ||| 我 在 哪儿 都 没 找到 他 . +What is your favorite game to play with friends ? ||| 你 最 喜歡 和 朋友 玩 什麼 遊戲 ? +They both cried after hearing the tragic news . ||| 聽到 這件 悲劇 , 他倆 盡 皆 哭泣 . +I was watching TV when the phone rang . ||| 电话响 的 时候 , 我 在 看电视 . +She answered in tears . ||| 她 很 傷 心地 回答 . +She tried to kill herself . ||| 她 企圖 自殺 . +I telephoned her at once . ||| 我 立刻 打 電話 給 她 . +I like playing baseball . ||| 我 喜歡 打 棒球 . +Cats hate vacuum cleaners . ||| 猫 很 讨厌 吸尘器 . +Everyone is laughing . ||| 每個 人 都 在 笑 . +You are a month behind in your rent . ||| 你 的 租金 遲交 了 一個 月 . +Where were you yesterday ? ||| 您 昨天 在 哪儿 ? +While napping , I had a strange dream . ||| 我 睡午觉 的 时候 做 了 个 怪 梦 . +I am able to drive a car . ||| 我会 开车 . +Try some . ||| 试试 吧 . +I am not good at mathematics . ||| 我 的 數學 不好 . +You sound like a politician . ||| 你 说话 像 个 当官 的 . +We accept checks . ||| 我們 接受 支票 . +I wrote this book . ||| 我 写 了 这 本书 . +If she was displeased , she never showed it . ||| 如果 她 不 高興 , 她 從來 不 表現 出來 . +I do not see why I had to come along . ||| 我 不 明白 为什么 我 得 跟着 去 . +We gave blood to help the child . ||| 我們 捐血 來 幫助 這個 孩子 . +That song was written by Tom . ||| 那首歌 是 Tom 寫 的 . +Her oldest daughter got married . ||| 她 的 大 女兒 結婚 了 . +Bring him in . ||| 带 他 进来 . +I am not very good at golf . ||| 我 不 太 擅长 打 高尔夫球 . +I have had enough . ||| 我 已經 吃 飽 了 . +I have a stomachache , doctor . ||| 我 胃痛 , 醫生 . +My strength is all gone . ||| 我 的 力气 耗尽 了 . +Why are you here ? ||| 你 為 什麼 在 這 ? +His scores are always better than mine , even though he does not study very much . ||| 他 的 分数 总 比 我 高 , 尽管 他 学习 得少 一点 . +He asked her to call him later . ||| 他 要求 她 稍 後 打 電話 給 他 . +I listened to some CDs last night . ||| 我 昨晚 了聽 一些 唱片 光碟 . +When will you go out ? ||| 你 什麼 時候 要 出去 ? +The importance of music is underrated . ||| 音乐 的 重要性 被 低估 了 . +Are there any messages for me ? ||| 有 任何 給 我 的 訊息 嗎 ? +Will you give me a light ? ||| 借 個 火 好 嗎 ? +I want this camera . ||| 我 要 這 台 相機 . +Are you still at home ? ||| 你 還 在家 裡 嗎 ? +My car burns a lot of gas . ||| 我 的 車子 很 耗油 . +It is my brother is . ||| 它 是 我 兄弟 的 . +You do not need to call me . ||| 你 不必 打电话 给 我 . +The men is room is on the second floor . ||| 男厕所 在 二楼 . +I am not inflexible . ||| 我 不是 死板 的 . +It is going to get cold tonight . ||| 今晚 天气 会 变冷 . +What is she doing ? ||| 她 在 做 什麼 ? +Do not go above the speed limit . ||| 不要 超速 . +You can watch TV after supper . ||| 晚餐 之 後 你 才 可以 看電視 . +She fell down the ladder . ||| 她 从 梯子 上 摔 了 下来 . +War does not make anybody happy . ||| 战争 不会 使 任何人 幸福 . +I had a good time this evening . ||| 今天 晚上 我 玩 得 很 開心 . +In case of an emergency , get in touch with my agent . ||| 万一 有 紧急情况 , 联系 我 的 代理人 . +Tom has lived in Boston for over a year . ||| 汤姆 住 在 波士顿 已经 一年 多 了 . +I found you , did not I ? ||| 我 找到 你 了 , 没有 么 ? +Would you pass the salt , please ? ||| 請 你 把 鹽 遞 過 來 好 嗎 ? +Do you have a car ? ||| 你 有 车 吗 ? +Who are you ? ||| 你 是 誰 ? +He explained the literal meaning of the sentence . ||| 他 解释 了 句子 的 字面 意思 . +You should begin with easier questions . ||| 你 應 該 先 從 最 簡單 的 問題 開始 . +She is drunk with happiness . ||| 她 陶醉 在 幸福 裡 . +That is perfect . ||| 那 是 完美 的 . +I am sure Tom wanted to come along . ||| 我 确定 汤姆 想来 . +To my astonishment , my money was gone . ||| 令 我 惊讶 的 是 , 我 的 钱 没 了 . +The losses are incalculable . ||| 損失 是 無法 估計 的 . +She was more beautiful than all the others . ||| 她 比 其他人 都 漂亮 . +Do this work by tomorrow if possible . ||| 如果 可能 的话 , 在 明天 前 做好 这个 工作 . +Come if you can . ||| 你 能 来 就 来 ! +He asked me a question . ||| 他 問 了 我 一個 問題 . +It is a risk that Tom and I are not willing to take . ||| 我 和 汤姆 都 不 愿意 冒 这个 险 +As far as I am concerned , this coffee is too strong . ||| 这 咖啡 对 我 来说 太 浓 了 . +China is about twenty @-@ five times as large as Japan . ||| 中国 的 版图 大概 是 日本 的 二十五倍 . +This word comes from Greek . ||| 這個 詞 來 源于 希臘語 . +Tom kept talking all night . ||| 湯姆 整夜 一直 在 說 話 . +Tom is now studying in his room . ||| 湯姆 現在 在 他 的 房間 裡 學習 . +People who will lie for you , will lie to you . ||| 会 为 你 说谎 的 人 , 就 会 对 你 说谎 . +Tom nodded approval . ||| 汤姆 点头 同意 . +Please help yourself to some fruit . ||| 請 你 隨便 吃 點 水果 . +What are you doing tonight ? ||| 你 今晚 在 做 什麼 ? +They say that Venice is a beautiful city . ||| 他們 說 威尼斯 是 個 漂亮 的 城市 . +The soup is thick . ||| 汤 很 稠 . +Tom does not know if Mary is happy or not . ||| 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +The old man lived there by himself . ||| 這個 老人 獨自 住 在 那裡 . +No one was killed in the fire . ||| 沒人死 在 火 裡 . +Tom probably would not do something that stupid . ||| 湯姆 可能 不 會 做 蠢事 . +Where are your things ? ||| 你 的 東西 在 哪裡 ? +I should have declined . ||| 我 本 应 婉拒 . +I came here to thank you . ||| 我 來 感謝 你 . +I am fond of cars . ||| 我 喜歡 車 . +Tom plays the violin well . ||| 汤姆 拉 小提琴 拉 得 很 好 . +My camera was stolen on the train . ||| 我 的 照相机 在 火车 上 被 偷 了 . +I usually walk to school . ||| 一般 我 步行 去 学校 . +Help yourself to whatever you like . ||| 隨 你 喜歡 隨便 吃 . +It is pretty simple . ||| 它 真 簡单 . +The air felt a little cold . ||| 空气 有点 冷 . +Tom could not go to college because his family did not have enough money . ||| 因为 家里 钱 不够 所以 汤姆 没能 念 大学 . +We all chipped in to buy our teacher a birthday present . ||| 我们 所有人 凑份子 给 老师 买 生日礼物 . +It is me that is wrong . ||| 是 我 错 了 . +I have never stopped loving Tom . ||| 我 從 沒 停止 過 愛 湯姆 . +I thought Tom would sleep until noon . ||| 我 认为 汤姆 会 睡到 中午 . +Do you really want me to go there right now ? ||| 你 真 想 让 我 马上 到 那里 去 吗 ? +Let me tell you the reasons that I do not agree with you . ||| 让 我 来 告诉 你 我 不 赞成 你 的 理由 . +I bought a red sports car . ||| 我 買 了 一輛 紅色 的 跑車 . +You should have worked harder . ||| 你 應 該 要 更 努力 的 . +I have not had much sleep lately . ||| 我 最近 没 怎么 睡觉 . +I have just started playing tennis . ||| 我 剛 開始 打 網球 . +My brother is holding a camera in his hand . ||| 我 弟弟 手里 拿 着 一个 摄像机 . +Thank you for inviting me to dinner . ||| 谢谢 你 邀请 我 吃饭 . +All you can do is to wait . ||| 所有 你 能 做 的 就是 等待 . +We must obey the rules . ||| 我们 必须 遵守规则 . +This little girl let the birds escape . ||| 這個 小女孩 讓 小 鳥 脫逃 了 . +Are not you happy about this ? ||| 你 對 此 不 高興 嗎 ? +They will let us know what happens . ||| 他们 会 让 我们 知道 发生 了 什么 . +Tom is quite fussy . ||| 汤姆 相当 挑剔 . +Tom is house has a nice garden . ||| 湯姆 的 住宅 有 一個 不錯 的 花園 . +Industry was growing quickly . ||| 工業 發展 迅速 . +I got it for next to nothing . ||| 我 簡直 不用 花錢 就 買到 了 . +School finishes before noon on Saturdays . ||| 學校 在 星期六 中午 之前 放學 . +Do you have this in a bigger size ? ||| 你 有 比 這個 再 大 一點 的 尺寸 嗎 ? +Can I speak to the head nurse ? ||| 我 能 跟護 士長 說 話 嗎 ? +We used to play in the park . ||| 我们 过去 常 在 公园 玩 . +She stayed there for a moment . ||| 她 在 那裡 留 了 一會 . +" Trust me , " he said . ||| “ 相信 我 . ” 他 说 . +Tom told Mary something she did not want to hear . ||| 湯姆 告訴 了 瑪麗 她 不想 知道 的 事 . +Who is your favorite TV star ? ||| 谁 是 你 最 喜爱 的 电视 明星 ? +Is it tasty ? ||| 好吃 嗎 ? +She warned him not to go alone . ||| 她 警告 了 他 不要 一個 人 去 . +I will not eat ice cream . ||| 我 不 會 吃 冰淇淋 . +I am going to go tell Tom . ||| 我 要 告诉 汤姆 . +I like to play basketball . ||| 我 喜歡 打 籃球 . +What time is it in Boston ? ||| 波士顿 现在 几点 ? +What have you come here for ? ||| 您 来 这儿 干嘛 ? +We will have learned English for five years next year . ||| 到 明年 我们 学 英语 就 有 5 年 了 . +The lecture lasted for two hours . ||| 這場 演講 持續 了 兩個 小 時 . +I heard the door close . ||| 我 听到 门 关了 . +Has anybody here been to Hawaii ? ||| 这儿 有人 去过 夏威夷 吗 ? +You are not coming , are you ? ||| 你 不 會 來 , 是 嗎 ? +I like to watch baseball games . ||| 我 喜歡 看 棒球 比賽 . +Do you know whether or not she can speak English ? ||| 你 知道 她 是否 會 講 英語 嗎 ? +She is going to France next week . ||| 她 下週 要 去 法國 . +I do not like novels without heroes . ||| 我 不 喜欢 没有 英雄 的 小说 . +I am grateful for what Tom did . ||| 我 很 感激 汤姆 所 做 的 . +Be quiet , all of you . ||| 你們 所有 的 人 都 安靜 . +Could you tell me where I can get a bus ? ||| 你 能 告诉 我 能 在 哪里 上 公交车 吗 ? +Where does she want to go ? ||| 她 想 去 哪裡 ? +Lend me your dictionary , please . ||| 请 把 你 的 字典 借给 我 . +Tom put the large picnic basket on the passenger seat next to him . ||| 汤姆 把 那个 大 野餐 篮子 放在 他 旁边 的 乘客 座位 上 . +What is not necessary ? ||| 什麼 是 不必要 的 ? +This word is difficult to pronounce . ||| 這個 字 很 難 發音 . +Can I have some tea ? ||| 可以 给 我 一些 茶水 吗 ? +School begins at half past eight . ||| 學校 八點半 開始 上課 . +Excuse me . Do you speak English ? ||| 對 不起 . 你 會 講 英語 嗎 ? +The girl did not say anything . ||| 這個 女孩 什麼 也 沒 說 . +She hung the calendar on the wall . ||| 她 把 日 曆 掛 在 牆 上 了 . +Do you want to go somewhere ? ||| 你 打算 去 什么 地方 吗 ? +It is just your imagination . ||| 那 只是 你 的 想象 . +You 'd better get away from here at once . ||| 你 最好 立刻 離開 這裡 . +May I go to the restroom ? ||| 我 可以 去 洗手 間 嗎 ? +I am eating rice . ||| 我 在 吃 米饭 . +We have a test tomorrow . ||| 我们 明天 有个 测验 . +They answered their teacher is question with difficulty . ||| 他们 好不容易 才 回答 了 他们 老师 的 问题 . +It is likely to rain tomorrow . ||| 明天 有 可能 會 下雨 . +We enjoyed listening to the music . ||| 我們 喜歡 聽 音樂 . +Ogai is his favorite author . ||| Ogai 是 他 最 喜欢 的 作者 . +She was absorbed in the video . ||| 她 迷上 了 视频 . +He had his head in the clouds in class . ||| 他 在 課 堂上 心不在焉 . +They will not come until tomorrow . ||| 他們 明天 才 會 來 . +She is capable of teaching English . ||| 她 可以 教 英语 . +Japan is in Asia . ||| 日本 在 亚洲 . +What size shoes do you wear ? ||| 你 穿 幾號 的 鞋子 ? +I saw a dirty dog enter the garden . ||| 我 看见 一条 脏 狗 进 了 花园 . +The baby started crying . ||| 宝宝 开始 哭 了 . +Chocolate has more iron than spinach . ||| 巧克力 含有 比 菠菜 更多 的 鐵質 . +She played the guitar and he sang . ||| 她 彈 吉他 , 他 唱歌 . +You are frightening me . ||| 你 在 嚇 我 . +I am playing the piano now . ||| 我 現在 正在 彈 鋼琴 . +I never should have let Tom eat so much candy . ||| 我 不論 甚麼 時候 都 不該 讓 湯姆 吃 那麼 多糖 . +It will cost you more to go by plane . ||| 搭 飛機 將 花 你 比較 多 的 錢 . +You cannot achieve anything without effort . ||| 没有 什么 是 不劳而获 的 . +He is richer than anyone else in this town . ||| 他 比 镇里 的 其他人 都 有钱 . +She remained silent all day . ||| 她 一整天 都 沉默不语 . +My father did not eat much fruit . ||| 我 父親 沒有 吃 很多 的 水果 . +Excuse me , but may I open the window ? ||| 不好意思 , 请问 我 可以 开窗 吗 ? +This article is nonsense . ||| 這 文章 是 胡 說 . +He suddenly became very happy . ||| 他 突然 變得 非常 開心 . +Answer the telephone , will you ? ||| 請 你 接聽 一下 電話 , 好 嗎 ? +Why are not you listening ? ||| 你 為 甚麼 不 聽 ? +Tom is in the other room drinking vodka . ||| Tom 在 別的 房間 喝 伏特加 . +Why is Tom still at school ? ||| 为社么 汤姆 还 在 学校 ? +She speaks a little Arabic . ||| 她 说 一点 阿拉伯语 . +My sister is shorter than you . ||| 我 妹妹 比 你 矮 . +There are many beautiful parks in London . ||| 伦敦 有 很多 漂亮 的 公园 . +We do not like our neighbors , and they do not like us , either . ||| 我們 不 喜歡 我們 的 鄰居 , 而 他們 也 不 喜歡 我們 . +The black telephone costs more than the white . ||| 黑 的 电话 比 白 的 花钱 多 . +I will not see her again . ||| 我 不 會 再 見 她 . +It is impossible to go out now . ||| 現在 不 可能 出去 . +Keep the dog out . ||| 别 让 狗 进来 . +I hid under the table . ||| 我 藏 在 桌子 底下 . +This pencil is better than that one . ||| 這 支 鉛 筆 比那 隻 好 . +Tom should be here soon . ||| 汤姆 应该 很快 就 到 . +Which group do you want to join ? ||| 你 想 加入 哪 一組 ? +I did not get your name . ||| 我 沒 聽 清楚 你 的 名字 . +Put some water into the vase . ||| 在 花瓶 裡 裝 些 水 . +It is better than nothing . ||| 有 比 沒有 好 . +I would like to visit your country someday . ||| 我 想 某 一天 拜访 你 的 国家 . +During the exam , Tom cheated off Mary . ||| 在 考试 的 时候 , 汤姆 作弊 抄 了 玛丽 的 答案 . +We sent out the invitations yesterday . ||| 我们 昨天 发出 了 邀请 . +What is the ultimate purpose of education ? ||| 教育 的 最终 目的 是 什么 ? +Let me think for a minute . ||| 让 我 想想 . +I can make that happen . ||| 我 不能 让 那事 发生 . +The dog followed its master , wagging its tail . ||| 狗 搖著 尾巴 跟著 主人 . +You 'd better check this out . ||| 你 最好 检查一下 这个 . +We are eating apples . ||| 我們 在 吃 蘋果 . +My father has a restaurant . ||| 我 父亲 有家 餐馆 . +The boy eats bread . ||| 這個 男孩 吃 麵 包 . +Tom certainly has a tough job . ||| 汤姆 确实 有个 麻烦 的 工作 . +When does the next train leave ? ||| 下 一班 火車 什麼 時候 開 ? +She looks a lot like her mother . ||| 她 非常 像 她 的 母亲 . +Tom will do that . ||| 湯姆會 做 . +Tom wanted to stay home and relax instead of hiking with his children . ||| 汤姆 想待 在家 休息 而 不是 和 他 的 孩子 们 出去 远足 . +Compared to our house , yours is a mansion . ||| 跟 我们 的 房子 比 , 你 的 就是 个 豪宅 . +We must conform to the rules . ||| 我们 必须 遵守规则 . +All of my software is open source . ||| 我 的 软件 全都 是 开源 的 . +I only want one . ||| 我 只 想要 一件 东西 . +You did not need to come so early . ||| 你 不必 這麼 早來 . +They are breaking down the wall . ||| 他們 正在 拆 這面 牆 . +Maybe they have something . ||| 他们 可能 有点 什么 . +No problem ! ||| 没 问题 ! +None of this makes any sense . ||| 這裡 頭 沒有 一件 事 說 得 通 . +What were you doing in Boston ? ||| 你 在 波士顿 做 了 什么 ? +The boy denied having stolen the bicycle . ||| 那个 男孩 否认 偷 了 自行车 . +The train will probably arrive at the station before noon . ||| 火车 大概 会 在 中午 前 到 站 . +Let is clean our room . ||| 打扫 我们 的 房间 吧 . +Osaka is the center of commerce in Japan . ||| 大坂 是 日本 的 商业中心 . +Tell him to mind his own business . ||| 告訴 他 別 多 管閒 事 . +There are some boys in the park . ||| 公園 裡 有 一些 男孩子 . +Dry wood burns well . ||| 干柴 燒 得 旺 . +I was truly astonished . ||| 我 真是 惊讶 . +Most Americans like hamburgers . ||| 大多 數 的 美國 人 喜歡 漢堡 . +These boxes are heavy . ||| 这些 箱子 是 重 的 . +I borrow money . ||| 我 借 錢 . +I 'd rather die than surrender . ||| 我 寧 死不降 +Tom just wants my money . ||| 湯姆 就是 想要 我 的 錢 . +A doctor told me that eating eggs was bad for me . ||| 一位 医生 告诉 过 我 , 吃 鸡蛋 对 我 的 健康 有害 . +Lake Baikal in Russia is the deepest lake in the world . ||| 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +I wanted to become a philosopher . ||| 我 想 成为 哲学家 . +Could you help us after school ? ||| 你 能 在 放學 後 幫助 我們 嗎 ? +I can come at three . ||| 我 三點鐘 可以 來 . +By the way , my English is absolutely hopeless . ||| 順道 一 提 , 我 的 英語 是 絕對 沒有 希望 了 . +Do you have kids ? ||| 你們 有 小孩 嗎 ? +That is not a cat . It is a dog . ||| 那 不是 猫 . 那 是 狗 . +He will not live a long life . ||| 他 不 會 長壽 . +The sky is clear almost every day . ||| 天空 幾乎 每天 是 晴朗 的 . +Could you please not smoke in this room ? ||| 请问 你 能 不 在 房间 里 吸烟 吗 ? +Tom and Mary switched places on the bench . ||| 汤姆 和玛丽 在 长凳 上 交换 了 位置 . +Today is the hottest day this year . ||| 今天 是 今年 最熱 的 一天 . +What is the matter with you ? ||| 你 怎么 了 ? +Tom wanted to see me . ||| 汤姆 想见 我 . +What time did your friend go home ? ||| 你 朋友 幾點鐘 回家 ? +People need to stop hating . ||| 人们 需要 止住 仇恨 . +You look like you are confused . ||| 你 看 起來 有 困惑 . +The show was very interesting . You should have seen it . ||| 演出 真的 很 有意思 , 你 该 去 看看 的 . +The value of the coins depended on the weight of the metal used . ||| 钱币 的 价值 取决于 所 使用 的 金属 的 重量 . +It is about a ten @-@ minute drive from here . ||| 從 這裡 大約 10 分鐘 車程 . +Would you please lend me some money ? ||| 你 能 借 我些 钱 吗 ? +Tom is not a good worker . ||| 湯姆 不是 個 好 工人 . +Take your hat off when you enter a house of worship . ||| 當 你 進入 禮 拜堂 時 , 把 你 的 帽子 脫 下來 . +How long did that take ? ||| 那 持续 了 多久 了 ? +He is making great progress in English . ||| 他 的 英語 有 很大 的 進步 . +Welcome . ||| 欢迎 . +Actually , I am not suggesting anything . ||| 實際 上 , 我 沒有 建議 甚麼 . +I go to bed late at night . ||| 我 晚上 很晚 就 寢 . +Tom is not the only one here who is a good singer . ||| 汤姆 不是 这里 唯一 的 好 歌手 . +Tom has not given us anything . ||| 汤姆 什么 也 没给 我们 . +Do you mind turning on the TV ? ||| 你 介意 打開 電視 嗎 ? +He became a famous singer . ||| 他 成为 了 著名 的 歌手 . +All you can do is wait . ||| 所有 你 能 做 的 就是 等待 . +Call the police ! ||| 叫 警察 ! +I am going to the park . ||| 我 去 公園 . +I speak English every day . ||| 我 每天 都 说 英语 . +He wiped the sweat from his face . ||| 他 擦 去 了 脸上 的 汗水 . +Could you write it down , please ? ||| 請 你 寫 下來 好 嗎 ? +I hope everything will turn out well in the end . ||| 我 希望 最后 一切 都 好 . +Mary is sitting at the desk . ||| 瑪麗正 坐在 辦公 桌旁 . +How much is this hat ? ||| 这 顶 帽子 多少 钱 ? +She was asked to write her name in ink . ||| 她 被 要求 用 墨水 写下 她 的 名字 . +If you eat that much , you will get a stomachache . ||| 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +The shell of an egg is easily broken . ||| 蛋壳 容易 破碎 . +Is this car your friend is ? ||| 這輛 車 是 你 朋友 的 嗎 ? +There is nothing I can do . ||| 沒有 我 可以 做 的 事 . +I wish Tom were my younger brother . ||| 但 願 湯姆 是 我 的 弟弟 . +Perhaps it will rain tomorrow . ||| 也許 明天 會 下雨 . +Tom ran out of matches so he could not light the fire . ||| 汤姆 用尽 了 火柴 , 不能 点火 了 . +We helped them as well . ||| 我們 也 幫助 他們 . +I bought a book . ||| 我 買 了 一本 書 . +Tom misses Boston . ||| 汤姆 想念 波士顿 了 . +Your reason is very good . ||| 你 的 理由 很 充分 . +Good morning . It is time to wake up . ||| 早安 . 是 該 醒來 的 時候 了 . +I am interested in music . ||| 我 對 音樂 有 興趣 . +This is only one of the things we found . ||| 这 只是 我们 发现 的 东西 之一 . +Let is talk over a cup of coffee . ||| 让 我们 边 喝咖啡 边 谈 . +It is already past five o 'clock . ||| 已經 過 了 五點鐘 . +It is stupid of you to believe in him . ||| 你 相信 他 真是太 愚蠢 了 . +You are a good cook , are not you ? ||| 你 很 會 做菜 , 不是 嗎 ? +Are you a teacher or a student ? ||| 您 是 老师 , 还是 学生 ? +He knows how to play baseball . ||| 他 知道 怎么 玩 棒球 . +This coat fits you perfectly . ||| 這件 大衣 十分 適合 你 . +Tell me what you want . ||| 告訴 我 你 要 什麼 . +We saw the ground covered with snow . ||| 我们 看见 地面 被 雪 覆盖 了 . +Is the customer always right ? ||| 顾客 永远 是 正确 的 吗 ? +Hokkaido is to the north of Honshu . ||| 北海道 在 日本 本州 的 北部 . +I wish Tom were my younger brother . ||| 我 希望 湯姆 是 我 的 弟弟 . +I do not know what you are referring to . ||| 我 不 知道 你 指 的 是 什么 . +Keep it quiet . ||| 保持 安静 +Tom is waiting for everyone to leave . ||| 汤姆 等 着 每个 人 都 离开 . +This shirt costs ten dollars . ||| 這 襯衫 要 十元 . +Would you mind lending me your pen ? ||| 你 介意 把 你 的 筆 借 給 我 嗎 ? +Let me remind you again that March 31st is the due date . ||| 讓 我 再次 提醒 你 3 月 31 日 是 到期日 . +I want to know why I am here . ||| 我 想 知道 我 為 甚麼 在 這裡 . +I do not believe such things exist . ||| 我 不 相信 這樣 的 事情 存在 . +Some boys came into the classroom . ||| 有些 男孩 走進 了 教室 . +I do my homework after school . ||| 我 在 放学 後 做作 業 . +I want to eat out tonight . ||| 我 今晚 想 出去 吃 . +What do you want now ? ||| 你 现在 想要 什么 ? +The flag is up . ||| 旗子 升起 了 . +They always skip school . ||| 他們 總是 逃學 . +She is on a diet . ||| 她 在 节食 中 . +Tom is interested in mathematics . ||| 湯姆 是 對 數學感 興趣 . +He should thank you . ||| 他 應該 感謝 您 . +You will get used to this in three or four weeks . ||| 你 在 三 或 四周 内会 习惯 这个 . +The Smiths live in my neighborhood . ||| 史密斯 夫婦 住 在 我家 附近 . +Keep children away from the pond . ||| 让 孩子 远离 池塘 . +Many people were killed in the war . ||| 很多 人 在 戰爭 中 被 殺 . +Help yourself to a piece of cake . ||| 你们 自己 吃 蛋糕 . +I am counting on you . ||| 我 就 指望 你 了 . +Throughout the five years of painful cancer treatments , he managed to keep a stiff upper lip . ||| 这 五年 痛苦 的 癌症 治疗 他 终于 坚持 下来 了 . +Mary is helping her mother . ||| 瑪麗 正在 幫忙 她 的 母親 . +You can drive a car , can not you ? ||| 你 會 開車 , 不是 嗎 ? +He goes to the office by car . ||| 他 開車 去 辦 公室 . +The rumor was without foundation . ||| 謠言 是 毫無 根據 的 . +I think we should concentrate on other things . ||| 我 想 我们 应 集中 于 另外 的 事情 . +You chose this job yourself , right ? ||| 你 自己 选择 了 这份 工作 , 是 吗 ? +We have plenty of time tonight . ||| 今晚 我们 有 充分 的 时间 . +What is up with you ? ||| 你 怎么 了 ? +He lives somewhere around the park . ||| 他 住 在 公园 周围 的 某个 地方 . +I helped my brother move his desk . ||| 我 幫 我 弟弟 搬 了 他 的 書桌 . +What have you guys done to me ? ||| 你们 到底 对 我 做 了 什么 ? +I can not sleep at all ! ||| 完全 睡不着 . +Which bed do you want to use ? ||| 你 想 睡 哪 張 床 ? +Finishing the report by tomorrow is next to impossible . ||| 在 明天 前 完成 报告 几乎 是 不 可能 的 . +Why did not you dance with him ? ||| 你 為 什麼 不 跟 他 跳舞 呢 ? +Wipe the pan dry with a paper towel . ||| 用 纸巾 把 那 口 锅 擦干 . +Strawberries are in season now . ||| 現在 是 草莓 的 季節 . +Tom has brains . ||| 汤姆 脑子 好使 . +He is not at all afraid of snakes . ||| 他 一點 也 不怕 蛇 . +I like this picture , not just because it is famous , but because it really is a masterpiece . ||| 我 喜欢 这 幅画 , 不仅 是因为 它 的 名气 , 而是 因为 它 真的 是 一个 杰作 . +Tom is a very bad person . ||| 汤姆 是 个 非常 坏 的 人 . +You guys looked mad . ||| 你們 那時候 看 起來 在 生氣 . +He worked last night without taking a break . ||| 他 昨晚 都 在 工作 , 彻夜未眠 . +Did you make this doll by yourself ? ||| 这个 娃娃 是 你 自己 做 的 吗 ? +I will be absent from home in the afternoon . ||| 下午 我 不 在家 . +As he spoke , pictures came into my mind . ||| 他 说 的 时候 , 我 脑 中 浮现 出 了 画面 . +Tom has admitted he was there that night . ||| 汤姆 承认 他 那晚 是 在 那里 . +I heard the children is happy voices . ||| 我 聽到 孩子 們 開心 的 聲音 . +It is warm today , is not it ? ||| 今天 很 溫暖 , 不是 嗎 ? +Is this your car ? ||| 這 是 你 的 車 嗎 ? +You did not need to bring your umbrella . ||| 你 不必 帶 你 的 傘 . +I do not know who he is . ||| 我 不 知道 他 是 谁 . +Prices are high . ||| 价格 高 . +Tom slept until noon . ||| 汤姆 睡 到 中午 . +The volcano has become active again . ||| 這 座 火山 又 開始 活動 了 . +I am on my way . ||| 我 这 就 上路 . +Let is begin with this problem . ||| 从 这个 问题 开始 吧 . +Do you have anything to remove stains ? ||| 你 有 除锈 的 东西 吗 ? +How much is this ? ||| 這 是 多少 ? +You talk too much . ||| 你 說 太 多 了 . +We have two dogs , three cats , and six chickens . ||| 我们 养 了 两只 狗 、 三只 猫 和 六只 鸡 . +Wash your feet . ||| 洗 您 的 脚 . +She extended her stay by five days . ||| 她 多 停留 了 五天 . +I have been learning to drive . ||| 我 一直 在 學開 車 . +Is not this weather just great ! ||| 天氣 真是 太好了 ! +I am not as strong as I used to be . ||| 我 不 跟 以前 一樣 強壯 了 . +What is the matter ? ||| 怎么 了 ? +He is very straightforward . ||| 他 说话 很 直接 . +Let is get together again ! ||| 讓 我們 再 聚在一起 ! +Do you weigh more than Tom ? ||| 你 有 比 湯姆 重 嗎 ? +There is nothing to be afraid of . ||| 没什么 好怕 的 . +He can speak Russian , too . ||| 他 也 會 說 俄語 . +Ask Tom again . ||| 再 问 一下 汤姆 吧 . +Somebody has stolen my suitcase . ||| 有人 偷 了 我 的 行李 . +Tom does not look like his father at all . ||| 汤姆 和 他 的 父亲 长 得 一点 也 不 像 . +She is mad at me . ||| 她 跟 我 生气 了 . +Valuable time has been lost . ||| 宝貴 的 時間 已 失去 . +Thanks for the comment . ||| 谢谢您 的 评论 . +He came . ||| 他 来 了 . +I am bored . ||| 我 覺 得 很 無聊 . +Would you like to eat something ? ||| 你 想 吃 點 東西 嗎 ? +He wrote a letter yesterday . ||| 昨天 他 写 好 了 信 . +I am waiting for him . ||| 我 在 等 他 . +She needs our help . ||| 她 需要 我們 的 幫忙 . +Is there anything in the box ? ||| 盒子 裡 有 任何 東西 嗎 ? +It is dangerous to jump onto a moving train . ||| 跳 上 一列 正在 开 的 火车 是 很 危险 的 . +I just heard something . ||| 我 只是 听到 了 一些 消息 . +Which book is better ? ||| 哪 一本 書 比較 好 ? +I did not know you were going to be here . ||| 我 不 知道 你 要 來 這裡 . +The charge for a front row seat is 5 dollars . ||| 第一排 的 座位 5 美元 . +She forgot to mail the letter . ||| 她 忘 了 寄信 . +Today is Valentine is Day . ||| 今天 是 情人节 +You are very brave . ||| 您 非常 勇敢 . +I wish you success . ||| 祝你成功 . +I am looking for a present for my mother . ||| 我 正在 为 我 的 妈妈 寻找 礼物 . +You are old enough to know better than to act like that . ||| 你 夠 大 了 知道 不要 那樣 做 . +We needed to learn French . ||| 我們 需要 學法 語 . +Generally speaking , the climate of Japan is mild . ||| 总体 上 说 , 日本 的 气候 温和 . +I like grapes , but I can not eat so many . ||| 我 虽然 喜欢 吃 葡萄 , 但是 我 吃 不了 那么 多 . +He still remembers the day his mother found out he was smoking . ||| 他 还 记得 他 妈妈 发现 他 正在 抽烟 的 那天 . +It will not take long to finish the job . ||| 完成 这个 工作 不会 花太 长时间 . +Tom was wrong . ||| 汤姆 错 了 . +He went to New York by airplane . ||| 他 搭 飛機 到 紐約 了 . +I think I will stay . ||| 我 認 我 會 留下 . +He came home late last night . ||| 他 昨晚 很 晚 回家 . +It will soon be time for dinner . ||| 不久 就要 吃 正餐 了 . +She told me that she would go to Paris in August . ||| 她 跟 我 说 八月份 她 会 去 巴黎 . +Be fair . ||| 公平 点 . +That white dress looks good on you . ||| 你 穿 那件 白色 的 衣服 很 好看 . +Kobe is famous for its port . ||| 神戶 是 著名 的 港口 . +She said that she was ill . ||| 她 说 她 病 了 . +My job is to wash the dishes . ||| 我 的 工作 是 洗盤子 . +He was made a fool of by his neighbors . ||| 他 被 他 的 邻居们 愚弄 了 . +She married a rich old man . ||| 她 嫁给 了 个 有钱 老头 . +How much time has passed ? ||| 過 了 多 長 時間 ? +I had my teeth examined at the dentist is . ||| 我 在 牙医 那儿 检查 了 牙齿 . +Tom lives here . ||| 汤姆 住 在 这里 . +What time will you leave the office ? ||| 你 几点 离开 办公室 ? +Let is take a ten @-@ minute break . ||| 讓 我們 休息 10 分鐘 . +We have three kids . ||| 我們 有 三個 孩子 . +I am tired of translating . ||| 我 厭倦 了 翻譯 . +I asked twenty friends to the party . ||| 我 請 了 二十位 朋友 參加 派 對 . +Life would be so much better if you did not care so much . ||| 如果 你 不 计较 太 多 , 生活 会 更 容易 些 . +Can you play the piano ? ||| 你 會彈 鋼琴 嗎 ? +Boil the water . ||| 把 水 燒開 . +Would you please wait for a minute ? ||| 請 你 等 一下 好 嗎 ? +I am glad someone told me . ||| 真 高兴 有人 告诉 我 . +We have plenty of time to spare . ||| 我們 還 剩下 很多 時間 . +I wish I could go to the party with you . ||| 我 希望 我 能 和 你 一起 参加 派对 . +Lincoln was elected President in 1860 . ||| 林肯 在 1860 年 當 選為 美國 總統 . +I am very tired , but I can not get to sleep . ||| 我 很 累 , 但 我 还是 没 办法 入睡 . +I had no idea Tom was not happy . ||| 我 不 知道 汤姆 不 开心 . +I have two sons . ||| 我 有 兩個 兒子 . +Do not stand in front of me . ||| 不要 站 在 我 前面 . +They may have missed the train . ||| 他們 可能 錯 過 了 火車 . +Wash your face and hands . ||| 洗 你 的 臉 和 手 . +He stuck his pencil behind his ear . ||| 他 把 他 的 鉛筆 放在 他 的 耳朵 後 面 . +Run and hide in the mountains . ||| 跑 到 山里 躲起来 . +You are a good driver . ||| 你 开车 很 好 . +I am doubtful whether he will come . ||| 我 怀疑 他 是否 会来 . +There is a fence around the house . ||| 這棟 房子 的 周圍 有 籬笆 . +Do you want some company ? ||| 你 想要 伙伴 吗 ? +She does nothing but complain . ||| 她 什麼 都 不 做 只 會 抱怨 . +Everybody laughs . ||| 每個 人 都 在 笑 . +A crowd gathered on this street . ||| 人群 聚集 在 这条 街上 . +I have not eaten for days . ||| 我 好多天 沒 吃 東西 了 . +When I arrived , it was raining . ||| 當 我 到 達 時 , 天正 下著 雨 . +He arrived after I had left . ||| 我 走 之后 他 到达 了 . +You have to give Tom more time . ||| 你 必須 給 湯姆 更 多 時間 . +I sat by his side . ||| 我 坐在 他 旁边 . +I wrote a letter to my mother . ||| 我 寫 了 一封信 給 我 的 母親 . +Check , please . ||| 請 結帳 . +He suggested that we go for a swim . ||| 他 提议 大家 一起 去 游泳 . +We have got another problem . ||| 我們 又 遇上 問題 了 . +You should give up smoking . ||| 你 應該 戒菸 . +We depend on you . ||| 我们 可 全 指望 你 了 . +This rule does not apply in all cases . ||| 这 条 规则 不是 任何 情况 下 都 奏效 的 . +What should I bring ? ||| 我 该 带 些 什么 ? +Something is wrong with the brakes . ||| 剎車 出 了 問題 . +It is not difficult to speak English . ||| 說 英語 不 難 . +I will be seeing you . ||| 我 會 見 到 你 . +I am too busy to go . ||| 我 太 忙 了 不能 去 . +Were you a soldier ? ||| 你 是 士兵 嗎 ? +Tom heard a shout . ||| 汤姆 听到 了 一声 喊叫 . +The police officers arrested the burglar . ||| 警察 拘捕 了 這個 竊 賊 . +We hope Tom is OK . ||| 我們 希望 湯姆 沒事 . +He looks older than my brother . ||| 他 看 起來 年紀 比 我 的 兄弟 大 . +You may as well tell me all about it . ||| 你 不妨 告訴 我 一切 . +One more bottle of wine , please . ||| 麻煩 再來 一瓶 葡萄酒 . +I know that Tom is hungry . ||| 我 知道 湯姆 餓 了 . +I am still the boss here . ||| 我 仍 是 这里 的 老板 . +Who is this boy ? ||| 这个 男孩 是 谁 ? +It is nothing to worry about . ||| 沒 什麼 好 擔心 的 . +Please drive carefully . ||| 請 小心 駕駛 . +In case of fire , call 119 . ||| 遇到 火灾 打 119. +Tom likes sitting on the floor . ||| 汤姆 喜欢 坐在 地上 . +Our train leaves at eight @-@ thirty . ||| 我們 的 火車 在 八點半 出發 . +It is actually not that difficult . ||| 實際上 沒有 那麼 難 . +Tom laid the newspaper on the table . ||| 汤姆 把 报纸 放在 桌上 . +He is poor . ||| 他 很穷 . +He is not a teacher but a doctor . ||| 他 不是 老師 , 而是 醫生 . +Do you know what I am doing ? ||| 你 知道 我 在 做 什麼 嗎 ? +I had a happy childhood . ||| 我 的 童年 很 快乐 . +Tom wants to know more about Mary is past . ||| 汤姆 想要 知道 更 多 关于 玛丽 的 过去 . +Wonderful ! ||| 很棒 ! +Why did not you call me yesterday evening ? ||| 怎么 你 昨晚 没有 给 我 打电话 ? +What exactly happened there ? ||| 那裡 究竟 發生 了 什麼 事 ? +I am constantly forgetting names . ||| 我 經常 忘記 別人 的 名字 . +He is up to his ears in debt . ||| 他 浑身 是 债 . +Thousands of people wanted to know the answer . ||| 成千上万 的 人 想要 知道 答案 . +I am in a desperate situation . ||| 我 处在 绝境 . +I got a new pair of shoes . ||| 我 得到 了 一雙 新鞋 . +I was about to leave when the doorbell rang . ||| 门铃 响 的 时候 , 我 正 准备 出门 . +It is not that simple . ||| 它 沒有 那麼 簡單 . +At the age of six , I was taken to a circus for the first time . ||| 在 我 六岁 的 时候 , 我 第一次 被 带去 看 马戏 . +Do you speak Chinese ? ||| 你 會 說 中文 嗎 ? +It is totally dark outside . ||| 外面 一片 漆黑 . +Does she know your phone number ? ||| 她 知道 你 的 電話 號碼 ? +Everyone wants to meet you . You are famous ! ||| 大家 都 想 见到 你 , 你 太 有名 了 ! +I will be at home in the morning . ||| 我 早上 會 在家 . +He belongs to the camera club . ||| 他 參加 攝影 社 . +A dog will bark at strangers . ||| 狗会 对 陌生人 叫 . +He earned his living as a teacher . ||| 他 以 教書 為 生 . +The serpent tempted Eve . ||| 蛇 誘惑 了 夏娃 . +My plane leaves at six o 'clock . ||| 我 搭 的 飛機 在 六點鐘 起飛 . +I will get the work done in a week . ||| 我会 一周 内 完成 这个 工作 的 . +Would 9 o 'clock be all right ? ||| 9 點 可以 嗎 ? +Tom wanted Mary to say that she loved him . ||| 汤姆 想 让 玛丽 说 爱 他 . +These are pens . ||| 這些 是 筆 . +To make matters worse , it began snowing . ||| 更 糟糕 的 是 開始 下雪 了 . +I usually have a light breakfast . ||| 我 早餐 通常 吃 得 很 清淡 . +I do not want the present Tom gave me . ||| 我 不 想要 汤姆 给 我 的 礼物 . +Do not let Tom lie on the floor . ||| 别 让 汤姆 躺 在 地板 上 . +" How did you get my phone number ? " " Tom gave it to me . " ||| “ 你 怎么 知道 我 的 电话号码 的 ? ” “ 汤姆 告诉 我 的 . ” +Tom thinks there is hope . ||| 汤姆 认为 有 希望 . +Tom would never have let us go if Mary had not gone with us . ||| 如果 玛丽 不 跟着 我们 , 汤姆 不会 让 我们 走 . +A glass of wine , please . ||| 一杯 葡萄酒 , 謝謝 . +" Thanks , guys . " " Do not mention it . " ||| “ 谢谢你们 . ” “ 不用谢 . ” +She seems rich . ||| 她 看來 有 錢 . +I have heard you have been sick . ||| 我 听说 你 病 了 . +Problems that can be solved with money are not real problems . ||| 錢 可以 解決 的 問題 都 不是 問題 . +Are you aware of how much she loves you ? ||| 你 知道 她 有 多麼 愛 你 嗎 ? +Will you sell your car to me ? ||| 你 可以 把 你 的 車 賣 給 我 嗎 ? +I forgot the date of the meeting . ||| 我 忘 了 會議 的 日期 . +Have you answered that letter yet ? ||| 你 回信 了 嗎 ? +He drives a car , does not he ? ||| 他 開車 , 不是 嗎 ? +Tom laughed for no reason . ||| 湯姆 無 故地 笑 . +Tom taught me French . ||| 汤姆 教 了 我 法语 . +Another bottle of wine , please . ||| 麻煩 再 一瓶 葡萄酒 . +I have been reading this for a few hours . ||| 我 一直 讀 這個 讀 了 幾個 小 時 . +I have never underestimated Tom . ||| 我 从没 低估 汤姆 . +He has a good knowledge of French . ||| 她 很 懂法 語 . +I belong to the sailing club . ||| 我 參加 帆船 社 . +He is a bad driver . ||| 他 是 個 糟糕 的 司機 . +Please ask at the information desk . ||| 請 向 服務台 詢問 . +I want to stay here longer . ||| 我 想 在 这里 再 待 一会 . +Tom does not believe he could do that . ||| 湯姆 不 相信 他 能 做到 . +This movie is worth seeing again . ||| 這部 電影 值得 再 看一遍 . +I am afraid of death . ||| 我 怕死 . +I like going to watch baseball . ||| 我 喜歡 去 看 棒球 . +Tom is living with his uncle now . ||| 湯姆 現在 跟 他 叔叔 住在一起 . +Tom has no intention of asking Mary to the upcoming dance . ||| Tom 没有 意图 去 邀请 Mary 去 即将来临 的 舞会 . +You are joking ! ||| 你 在 開 玩笑 吧 ! +I live in a big city . ||| 我 住 在 一个 大城市 里 . +My eyesight is getting worse . ||| 我 的 视力 正 慢慢 下降 . +No intelligent person drinks and then drives . ||| 沒有 聰 明人 喝了酒 再 開車 . +My father has never been abroad . ||| 我 父親 從來 沒有 出過 國 . +Here is your change . ||| 這 是 你 零 錢 . +I do not know what I am doing . ||| 我 不 知道 我 在 做 甚麼 . +Did you write ? ||| 你 写 吗 ? +I ran as fast as possible to catch up with him . ||| 我 盡力 追趕 他 . +She asked him questions . ||| 她 問 了 他 問題 . +I guess that would be all right . ||| 我 猜 那 應該 可以 的 . +We grow vegetables in our garden . ||| 我們 在 我們 的 花園 裡 種 蔬菜 . +We are going to eat a lot tonight so I hope you are not on a diet . ||| 我们 今晚 会 吃 很多 , 所以 我 希望 你 没有 在 节食 . +I told the policeman what I knew . ||| 我 告訴 了 警察 我 所 知道 的 . +He always keeps his word . ||| 他 总是 遵守 诺言 . +We are a family of five . ||| 我家 有 5 口人 . +He took me to the park yesterday . ||| 昨天 他 帶 我 去 公園 . +Have you seen all these movies ? ||| 你 把 電影 全 看 了 嗎 ? +Listen . ||| 听 着 . +I built an amplifier yesterday . ||| 昨天 我 組裝 了 一個 揚 聲器 . +It is a good start . ||| 这 是 一个 好 的 开端 . +I wish I did not have to work . ||| 我 希望 我 不必 工作 . +Make another appointment at the front desk . ||| 在 服務 台 另外 預約 . +I 'd be grateful to you if you could teach me to do that . ||| 如果 你 能 教 我 怎麼 做 , 我 會 很 感激 . +I will tell Tom tomorrow . ||| 我 明天 告訴 湯姆 . +I believe that he will do fine . ||| 我 相信 他 會 做 得 很 好 . +If you need anything , let me know . ||| 如果 你 需要 任何 東西 , 讓 我 知道 . +Are they all the same ? ||| 他们 都 是 一样 的 吗 ? +Please leave . ||| 請 你 離開 . +I will ask him tomorrow . ||| 我 明天 會 問 他 . +An eye for an eye , a tooth for a tooth . ||| 以眼还眼 以牙还牙 +These containers are airtight . ||| 這些 容器 是 密封 的 . +We ordered Chinese food . ||| 我们 点 了 中餐 . +It is imperative for you to act at once . ||| 你 必须 马上 行动 . +One is Japanese and the other is Italian . ||| 一个 是 日本 人 , 另 一个 是 意大利人 . +She is making progress with her English . ||| 她 的 英語 正在 進步 中 . +I think someone is knocking on the door . ||| 我 想 有人 在 敲门 . +I thought he loved you , but as it is , he loved another girl . ||| 我 以為 他 愛 你 , 但 事實上 , 他 愛 另 一個 女孩 . +The archer killed the deer . ||| 射手 打死 了 鹿 . +Do you eat out often ? ||| 你 常常 外食 嗎 ? +How long is your spring vacation ? ||| 你 春假 放 多久 ? +It does not sound like Tom . ||| 聽 起來 不 像 湯姆 . +Let me see that . ||| 讓 我 看看 . +I did not pay attention to what they were saying . ||| 他们 说 了 什么 , 我 并 不 注意 . +It is nearly six . ||| 差不多 六点 了 . +You can have a ride on my motorcycle . ||| 你 可以 骑 上 我 的 摩托车 去 遛 一圈 . +Do you have a mobile phone ? ||| 你 有 手機 嗎 ? +I think my French is not very good . ||| 我 认为 我 的 法语 不太好 . +Have a nice trip ! ||| 旅途愉快 ! +Let is eat now . I am starving . ||| 咱们 吃 吧 ! 我 饿死 了 . +She was tired , but she kept working . ||| 她 累 了 , 但 她 繼續 工作 . +We do not expect Tom to live much longer . ||| 我们 不 指望 汤姆 能 活 得 更 久 . +Can I help you ? ||| 我 能 幫 你 嗎 ? +I am not your mother . ||| 我 不是 你們 的 媽媽 . +You should have stayed in the car . ||| 你 該 留在 車裡 . +You have to be proactive . ||| 你 必须 积极主动 . +Tom will be there for a few days . ||| 汤姆 会 在 几天 后后 到达 那里 . +The room is fully furnished . ||| 房間 裡 家具 齊 全 . +This is your only chance . ||| 這 是 你 唯一 的 機會 . +This clock is mine . ||| 這 個 錶 是 我 的 . +He is a fast walker . ||| 他 走路 很快 . +We were astonished to hear what had happened . ||| 我们 听到 所 发生 的 事 , 感到 很 惊讶 . +He turned over the matter in his mind . ||| 他 在 心里 反复 思量 这件 事 . +Have you already rung the doorbell ? ||| 你 已經 按門鈴 了 嗎 ? +Have you ever been to America ? ||| 你 去過 美國 嗎 ? +I have never read such a scary novel . ||| 我 从没 读 过 那么 恐怖 的 小说 . +Tom is afraid of heights . ||| 汤姆 恐高 . +I no longer love him . ||| 我 已经 不 爱 他 了 . +Which cap is yours ? ||| 哪 顶 帽子 是 你 的 ? +I have almost no money with me . ||| 我 身上 幾乎 沒有 錢 . +I want some orange juice . ||| 我 想要 一點 柳橙汁 . +Tom did not agree to do it . ||| 汤姆 不 同意 做 . +Tom told me that he 'd be right back . ||| 汤姆 告诉 我 他 会 马上 回来 . +They were both drunk . ||| 他們 兩個 都 喝醉 了 . +It is too big . ||| 它 太 大 了 . +I have already finished the job . ||| 我 已經 完成 了 這項 工作 . +I will call you back . ||| 我会 给 你 回 电话 的 . +One of your tires is flat . ||| 你 的 轮胎 爆 了 一个 . +This desk takes up too much room . ||| 這 張 桌子 太 佔 空間 了 . +I will be back in ten minutes . ||| 我 10 分钟 后 回来 . +I am eating rice . ||| 我 在 吃 米饭 . +He is armed to the teeth . ||| 他 武装 到 牙 齒 . +We have never had this problem before . ||| 我們 從 前 從 沒有 過 這個 問題 . +He is rather hard to please . ||| 取悅 他 很 難 . +I slipped and fell down the stairs . ||| 我 滑了一跤 並 從 樓梯 上 摔 下來 . +I heard the front doorbell ring . ||| 我 聽到 前門 的 門鈴 響 了 . +You may not remember me , but I remember you . ||| 你 可能 不 記得 我 了 , 但 我 記得 你 . +This is a matter of the utmost importance . ||| 这件 事 至关重要 . +They have no idea what is going on . ||| 他們 不 知道 正在 發生 甚麼 . +Tom is not doing what he is supposed to be doing . ||| 湯姆 沒 有 做 他 該 做 的 事 . +I hate you . ||| 我 恨 你 . +She has not phoned since she went to London . ||| 自 她 去 了 倫敦 後 , 就 沒 再 打電話 了 . +Let is go by bus . ||| 讓 我們 坐 公共 汽車 去 . +That boy is running . ||| 这个 男孩子 在 跑步 . +I have decided to shave my head . ||| 我 已经 决定 把 我 的 头发 剃 了 . +Please tell the truth . ||| 请 把 真实 的 情况 说 出来 . +I know the facts . ||| 我 知道 事实 . +Tom is standing in the garden . ||| 汤姆 在 花园里 站 着 . +Mistakes like these are easily overlooked . ||| 这种 错误 很 容易 被 人 忽视 . +They are very big apples . ||| 他們 是 非常 大 的 蘋果 . +Please close the door behind you . ||| 請 隨手 關門 . +They were not listening to music . ||| 他們 沒 在 聽 音樂 . +Do you know how to drive a car ? ||| 你 知道 如何 開車 嗎 ? +You should not have lent the money to such a person . ||| 你 不 應 該 借 錢 給 這樣 的 人 . +I overslept . ||| 我 睡 過頭 了 . +They are having breakfast now . ||| 他們 現在 正在 吃 早 飯 . +Tom did the best he could , but he was not able to get a higher grade than Mary . ||| 汤姆 尽 了 全力 , 但 他 还是 不能 获得 比 玛丽 更 高 的 等级 . +Do you know Tom well ? ||| 你 很 了解 汤姆 吗 ? +I went to the park last Saturday . ||| 上個 星期六 我 去 了 公園 . +The train for Birmingham leaves from platform 3 . ||| 去 伯明翰 的 火车 从 3 号 站台 出发 . +Actions speak louder than words . ||| 行動 比 語言 更 響亮 . +Which shoes are you going to put on ? ||| 你 将 穿 哪 双鞋 ? +He is used to speaking in public . ||| 他 習慣 在 公眾場 合 說 話 . +I go to school . ||| 我 去 学校 . +The moment I held the baby in my arms , it began to cry . ||| 我 一把 孩子 抱 在 手里 , 他 就 开始 哭 了 . +Compare your answers with the teacher is . ||| 把 你 的 答案 和 老师 的 比较 一下 . +They got married and settled near Boston . ||| 他們 結 了 婚 並 定居 在 波士 頓 附近 . +May I have a glass of milk , please ? ||| 请问 能 给 我 一杯 牛奶 吗 ? +Do you have any day tours ? ||| 你 有 任何 一日 遊 的 行程 嗎 ? +I work with her boyfriend . ||| 我 和 她 的 男朋友 在 一起 上班 . +How much money did you spend in Boston ? ||| 你 在 波士顿 花 了 多少 钱 ? +She takes private piano lessons . ||| 她 上 私人 鋼琴 課 . +I took a cab to the station . ||| 我 搭 了 計程 車 到 車站 . +We may be late for school . ||| 我們 上學 可能 會 遲 到 . +I will do whatever you want me to do . ||| 无论 你 要 我 做 什么 , 我 都 会 去 做 的 . +Were you playing tennis yesterday morning ? ||| 你 昨天上午 打网球 了 吗 ? +It is illegal to park your car here . ||| 把 車 停 在 這裡 是 違法 的 . +Tom knew what Mary intended to do . ||| 湯姆 知道 瑪麗 想 做 甚麼 . +I can teach you how to swim . ||| 我 能 教 你 怎样 游泳 . +I agree with your opinion about taxes . ||| 我 同意 你 對 於 稅 的 意見 . +I received your letter . ||| 我 收到 了 您 的 信 . +He is hard to deal with . ||| 他 很 難對 付 . +We have little chance of winning . ||| 我們 獲勝 的 機會 很少 . +I can not wait forever . ||| 我 不能 永远 地 等 . +Can you ride a horse ? ||| 您 会 骑马 吗 ? +Orange juice , please . ||| 柳橙汁 , 麻煩 你 . +Did you actually see the accident ? ||| 你 真的 看到 了 這 起 事故 嗎 ? +December has thirty @-@ one days . ||| 十二月 有 三十 一天 . +He plays baseball every day . ||| 他 每天 都 打 垒球 . +She especially likes music . ||| 她 特別 喜愛 音樂 . +The moon is shining . ||| 月光 在 照耀 著 . +You can come in . ||| 你 可以 進來 . +Tom does not remember where he put his keys . ||| 汤姆 不 记得 他 把 钥匙 放在 哪里 了 . +She told us the road was closed . ||| 她 告訴 我們 道路 被 封閉 了 . +" Have you seen my cell phone ? " " It is on the table . " ||| " 你 有 看到 我 的 手機 嗎 ? " " 它 在 桌子 上 . " +That is a stupid question . ||| 这 是 一个 愚蠢 的 问题 . +World War II lasted from 1939 to 1945 . ||| 第二次世界大战 从 1939 年 持续 到 1945 年 . +What am I to do now ? ||| 怎么办 ? +I am a liar . ||| 我 是 个 骗子 . +Tom died in his kitchen . ||| 汤姆 是 在 自家 厨房 里 死 的 . +More than 40 percent of students go on to university . ||| 40 % 以上 的 学生 去 读 大学 . +He can read well enough . ||| 他 能 讀 得 很 好 . +What subjects are you taking at school ? ||| 你 在 學校 裡 讀 哪些 科目 ? +All of a sudden , it began raining . ||| 突然 開始 下雨 . +Sit beside me . ||| 坐 我 旁边 . +How unfortunate ! ||| 可憐 ! +The man robbed her bag . ||| 這 名 男子 搶走 了 她 的 包包 . +He differs from his brother . ||| 他 和 他 兄弟 不 一样 . +Sales should double this year . ||| 今年 销售 会 翻番 . +It was fun playing in the park . ||| 在 公園 裡 玩 很 有趣 . +My car broke down this morning and will not be repaired until Friday . ||| 我 的 车 今天 早上 坏 了 , 星期五 才能 修好 . +My wife is part @-@ time job brings in a little extra money . ||| 我 太太 兼職 的 工作 賺進 了 一些 額 外 的 錢 . +You gain more than you spend when you go to college . ||| 上大學 的 時候 , 你 得到 的 比 付出 的 還 多 . +I must have caught a cold . ||| 我 肯定 着凉 了 . +I can do it without her help . ||| 沒有 她 的 幫忙 我 也 能 做 . +Tom and I are not friends . We are just coworkers . ||| 湯姆 跟 我 不是 朋友 , 我們 只是 同事 . +A bird is singing in the tree . ||| 一 隻 鳥 正在 樹上 唱歌 . +Be careful not to catch a cold . ||| 小心 不要 感冒 了 . +His father eats there twice a week . ||| 他 爸爸 一週 在 那裡 吃 兩次 . +A great number of citizens went into the army . ||| 許多 老百姓 加入 了 軍隊 . +Whichever route you take , you will get there in time . ||| 不管 你 选 哪条 路 , 你 都 能 按时 到 那里 . +Tom has something else to say . ||| 湯姆 還 有 想 說 的 事 . +You may take anything you like . ||| 你 可以 拿 你 喜歡 的 東西 . +They will get married next month . ||| 他們 將 在 下 個 月 結婚 . +Do not let that happen again ! ||| 不要 再 让 这种 事 发生 了 ! +Tom did not have to thank me . ||| 汤姆 不必 谢 我 . +I went fishing last Monday . ||| 上 个 周一 我 去 钓鱼 了 . +The party has been put off until next Tuesday . ||| 聚会 已经 推迟 到 了 下 周二 . +Could you lend me your bicycle for a couple of days ? ||| 你 能 把 你 的 自行车 借 我 两天 吗 ? +I do not think Tom understands that . ||| 我 不 認為 湯姆 明白 . +I laughed at his joke . ||| 他 的 笑話 讓 我 大笑 了 . +Tom does not pay attention in school . ||| 汤姆 在 学校 里 不 专心 . +Tom did not have dinner last night . ||| 湯姆 昨晚 沒 吃 晚餐 . +I worked hard last month . ||| 我 上個月 很 努力 工作 . +Where will you go for the vacation ? ||| 你 要 去 哪裡 度假 ? +I guess I waited too long . ||| 我 好像 等 太久 了 +You are the best man for the job . ||| 你 是 最 適合 做 這份 工作 的 人 . +Tom is uncle keeps a lot of sheep . ||| 湯姆 的 叔叔 養 了 很多 羊 . +This book is really interesting . ||| 這 本書 真的 很 有趣 . +That film is for children . ||| 那部 電影 是 給 小孩 看 的 . +The rumor turned out to be true . ||| 這個 傳聞 後 來 被 證明 是 真的 了 . +Shut the door , please . ||| 請 關門 . +There was a cottage on the side of the hill . ||| 山坡 上 有 一间 村屋 . +What do you intend to do ? ||| 你 想 做 什麼 ? +He hung a lamp from the ceiling . ||| 他 把 一盏灯 挂在 了 天花板 上 . +I am closing the door . ||| 我 在 關門 . +I do not have much money on me . ||| 我 身上 沒有 很多 錢 . +I want a cellular phone , but I do not have enough money to pay for one . ||| 我 想要 一支 手機 , 但是 我 沒有 足夠 的 錢 買 一支 . +I have never met him . ||| 我 從來 沒有 見 過 他 . +We must make a new start . ||| 我們 必須 重新 開始 . +There is not any milk in the glass . ||| 這個 玻璃杯 裡 沒有 任何 的 牛奶 . +Why would they need to do that ? ||| 为什么 他们 会 需要 那么 做 呢 ? +This is a defibrillator . ||| 这 是 一个 除颤 器 . +I am not very particular about food . ||| 我 對 食物 不是 很 講究 . +He loves traveling . ||| 他 愛 旅行 . +As more paper money came into use , the value fell . ||| 当更 多 的 纸币 投入使用 , 价格 就 下跌 了 . +I left it on the table . ||| 我 把 它 留在 桌上 了 . +Is there a cat on the table ? ||| 桌子 上有 只 猫 吗 ? +There was not a cloud in the sky . ||| 天上 没有 一片 云 . +She was busy with her knitting . ||| 她 忙 着 编织 . +Did you find your contact lenses ? ||| 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Advertisements urge us to buy luxuries . ||| 廣告 慫恿 我們 買 奢侈品 . +He got hurt when he fell down . ||| 他 跌倒 的 時候 受 了 傷 . +Cheese is made from milk . ||| 奶酪 是 用 奶 做成 的 . +She was sick in bed yesterday . ||| 她 昨天 臥病 在 床 . +Tom is lucky he did not get shot . ||| 湯姆 沒 被 射中 真 走 運 . +May I see your claim tags ? ||| 我 可以 看看 你 的 行李 條 嗎 ? +How do you write your last name ? ||| 你 的 姓氏 怎么 写 ? +We must go to school . ||| 我们 必须 去 学校 了 . +They say that love is blind . ||| 人们 说 爱情 是 盲目 的 . +She made out the application for admission . ||| 她 提出 了入 學 申請 . +I am a little tired . ||| 我 有 點累 . +Mary does not usually wear jewelry . ||| 玛丽 通常 不 戴 首饰 . +We took a wrong turn . ||| 我們 拐 錯 彎 了 . +I could hear her sobbing in her bedroom . ||| 我 能 聽見 她 在 她 的 臥室 裡 抽泣 . +Tom is taller than his mother . ||| 湯姆 比 他 的 母親 高 . +Let us go home . ||| 让 我们 回家吧 . +The girl wore a yellow ribbon in her hair . ||| 那 女孩 的 头发 上绑 了 一根 黄 丝带 . +I can not believe my eyes . ||| 我 无法 相信 自己 的 眼睛 . +Do you think we should send for the doctor ? ||| 你 認為 我們 應 該 派 人 去 請 醫生 來 嗎 ? +I stopped smoking for the sake of my health . ||| 為了 健康 , 我 不再 抽 菸 . +He is a reporter for Time magazine . ||| 他 是 时代 杂志 的 记者 . +I did not want this . ||| 我 不 想要 這個 . +Ask at the police box over there . ||| 問 那邊 的 警察 崗 哨 . +How about you ? ||| 你們 呢 ? +What did you come here to do ? ||| 您 来 这儿 干嘛 ? +Tom needs to study more if he hopes to pass this class . ||| 汤姆 如果 想 通过 这 门 课 , 就 需要 加劲 学习 . +Who is playing the piano ? ||| 谁 在 弹钢琴 ? +There are more important things in life . ||| 人生 里 有 更 重要 的 事情 . +Suddenly , everything fell silent . ||| 突然 间 , 鸦雀无声 . +The traffic accident deprived him of his sight . ||| 這場 交通 意外 讓 他 失明 了 . +This chair is made of plastic . ||| 這 把 椅子 是 用 塑 膠 製 成 的 . +I want to clean the house before my parents come . ||| 我 想 在 我 父母 来 之前 收拾 干净 屋子 . +The horse is a useful animal . ||| 马 是 种 很 有用 的 动物 . +Picasso is paintings seem strange to me . ||| 畢加索 的 畫 對 我 來說 似乎 很 奇怪 . +My uncle gave me a book . ||| 我 的 叔叔 給 了 我 一本 書 . +What are you doing that for ? ||| 你 正在 做 的 那個 東西 是 做 什麼 用 的 ? +She decided to resign . ||| 她 決定 辭職 了 . +His behavior never ceases to surprise me . ||| 他 的 所作所为 总是 让 我 惊讶 . +The job offer still stands . ||| 這份 工作 錄取 仍然 有效 . +The pressure was tremendous . ||| 壓力 很 巨大 . +The two sides hold talks this week . ||| 双方 本周 举行会谈 . +Do I have to bring my son to your office ? ||| 我 必須 帶 我 的 兒子 到 你 的 辦 公室 嗎 ? +I do not think she takes after her mother . ||| 我 不 觉得 她 像 她 妈妈 . +I can not do anything but obey him . ||| 我 除了 聽 從 他 之外 什麼 也 不能 做 . +I saw him sawing a tree . ||| 我 看见 他 正在 锯 一棵树 . +What season do you like the best ? ||| 您 最 喜欢 哪个 季节 ? +One of us has to go . ||| 我们 中 的 一个 得 走 . +Which is your book ? ||| 哪 本 是 你們 的 書 ? +He is a professor of biology at Harvard . ||| 他 是 哈佛大学 的 生物学 教授 . +How I have missed you ! ||| 我 多麼 想念 你 ! +I am able to drive a car . ||| 我 會 開車 . +Our friendship was put to the test . ||| 我们 的 友谊 受到 了 考验 . +He lost his eyesight in an accident . ||| 他 在 一次 意外 中 失去 了 他 的 視力 . +Who is in charge of the sales section ? ||| 谁 负责 销售 部门 ? +He likes listening to the radio . ||| 他 喜歡 聽 廣播 . +Tom got out of the jeep . ||| 汤姆 从 吉普车 上 下来 了 . +His voice is pleasant to listen to . ||| 他 的 声音 听 着 很 舒服 . +They have decided to get married next month . ||| 他們 已經 決 定下 個 月 結婚 . +I read an exciting story . ||| 我 讀 了 一篇 精彩 的 故事 . +Chinese is a tonal language . ||| 漢語 是 一個 聲調 語言 . +We take health for granted until illness intervenes . ||| 我們 視 健康 為 理所 當然 , 直到 疾病 侵襲 . +You can keep this one for yourself . ||| 你 可以 把 這個 保留 給 自己 . +Wherever you go , I will follow . ||| 無論 你 到 哪裡 , 我 都 會 跟著 你 . +She was in a hurry . ||| 她 在 趕 時間 . +The birds sang . ||| 鳥兒 歌唱 . +Do you know how to eat with chopsticks ? ||| 你 會 用 筷子 吃 飯 嗎 ? +I do not know where my watch is . ||| 我 不 知道 我 的 手 錶 在 哪 裡 . +You have a really good sense of direction . ||| 你 的 方向感 很 好 . +When and where is breakfast served ? ||| 早饭 在 何时何地 用 ? +I have finished my homework . ||| 我 已經 完成 我 的 作業 . +I will say something about it . ||| 我 會 談 談 它 . +We had a large audience . ||| 我们 有 很多 听众 . +He has no interest in politics . ||| 他 對 政治 沒有 興趣 . +Keep to the right . ||| 靠 右侧 通行 . +Do not go out after dark . ||| 天黑 以 後 不要 出門 . +They are trying to control you . ||| 他們 設法 控制 你 . +English is a Germanic language . ||| 英語 是 一種 日耳曼 語 . +Tom had no intention of giving Mary any money . ||| 汤姆 不想 给 玛丽 一分钱 . +He lives just around the corner . ||| 他 就 住 在 拐角 的 地方 . +She might know that we are here . ||| 她 或许 知道 我们 在 这儿 . +You broke the rule . ||| 你 坏 了 规矩 . +Do you know me ? ||| 你 認識 我 嗎 ? +Tom does not eat red meat . ||| 湯姆 不吃 紅肉 +If you had left home a little earlier you would have been in time . ||| 如果 你 早点 出门 的话 , 你 就 能 赶上 了 . +She was obliged to give up the plan . ||| 她 不得不 放弃 这个 计划 . +His name was on the tip of my tongue , but I could not remember it . ||| 我 都 快要 说出 他 的 名字 了 , 可 就是 记不起来 . +Have you already voted ? ||| 您 已經 投 了 票 了 嗎 ? +It is your turn . ||| 輪到 你 了 . +That is a pencil . ||| 那 是 一支 铅笔 . +I talked to Tom . ||| 我 和 汤姆 说 了 话 . +That is because you are a girl . ||| 那 是 因為 妳是 女生 . +Did Tom respond ? ||| 汤姆 有 回应 了 吗 ? +Tom had no idea Mary was a serial killer . ||| 汤姆 不 知道 玛丽 是 个 连环 杀手 . +Do not put it on my desk . ||| 不要 把 它 放在 我 的 桌子 上 . +May I pay with a credit card ? ||| 我 能 用 信用卡 支付 吗 ? +I have always kept my word . ||| 我 一直 遵守 我 的 諾言 . +The admission is ten dollars a person . ||| 入 會 費 一個 人 十美元 . +I am afraid of dogs . ||| 我 怕 狗 . +I want to become rich . ||| 我 想 變有 錢 . +I will give you a bike for your birthday . ||| 你 生日 的 时候 , 我 送 你 一辆 自行车 . +Her older daughter is married . ||| 她 的 大 女兒 結婚 了 . +There was not a tree in sight . ||| 看不到 任何 一棵 樹 . +I lost my camera the other day . ||| 那天 我 丢 了 我 的 照相机 . +Salt helps to preserve food from decay . ||| 鹽 可以 幫助 保存 食物 避免 腐爛 . +The university was founded by his father twenty years ago . ||| 大学 在 20 年前 由 他 的 父亲 建立 . +I know how to set a trap . ||| 我 知道 怎么 设 陷阱 . +We are both reasonable people . ||| 我们 是 两个 通情达理 的 人 . +He often stays up late at night . ||| 他 經常 在 晚上 熬夜 . +I could not hear you . ||| 我 听不见 你 . +We can not know what the future has in store . ||| 人 不 知道 未來 可能 發生 什麼 事 . +I lost my luggage . ||| 我 的 行李 丢 了 . +I do not know whether to accept or to refuse . ||| 我 不 知道 是否 該 同意 或 拒絕 . +He tiptoed so no one heard him . ||| 他 踮 著 腳 尖 走 , 所以 沒 有人 聽到 他 . +She is determined to become a secretary . ||| 她 下决心 要 成为 秘书 . +I am very interested in French . ||| 我 對 法語 很感 興趣 . +I do not do it anymore . ||| 我 已经 不再 做 这个 了 . +I do not quite understand what he says . ||| 我 不 太 明白 他 说 什么 . +You should not break promises . ||| 你 不该 违背 你 的 诺言 . +Hardly anyone thinks that we are sisters . ||| 几乎 没有 人 认为 我们 是 姐妹 . +English is studied in China , too . ||| 英語 在 中國 也 被 學習 了 . +Sooner or later his luck will run out . ||| 遲早 他 的 運氣 會用 完 . +Tom is older than I am . ||| 湯姆 年紀 比 我 大 . +There was complete silence . ||| 一片 寂静无声 . +She kept the secret to herself . ||| 她 守著 這個 秘密 . +None of your business . ||| 这 不是 你 的 事 . +My room looks out on the street . ||| 從 我 的 房間 望出去 是 街道 . +My father always speaks in a very loud voice . ||| 我 父親 總是 說 話 很大 聲 . +Were you at school at that time ? ||| 那時 你 在 學校 嗎 ? +He will be very busy next month . ||| 下个月 他 会 很忙 . +Tom was afraid to ask for help . ||| 汤姆 不敢 求助 . +We want to go home . ||| 我們 想 回家 . +Tom gave Mary the cold shoulder . ||| 汤姆 给 玛丽 冷 的 肩膀 . +What are you watching ? ||| 你 在 看 什么 ? +Tom sat on that park bench for nearly three hours . ||| 汤姆 在 公园 的 长椅 上 坐 了 将近 三个 小时 . +Why did she come home early ? ||| 為 什麼 她 早 回家 了 ? +This song was written by Foster . ||| 這 首歌曲 是 由 福斯特 所寫 的 . +A wounded whale washed up on the beach . ||| 一条 受伤 的 鲸鱼 在 海滩 边 搁浅 了 . +Smiles do not always indicate pleasure . ||| 微笑 並 不 一定 表示 高興 . +I work best under pressure . ||| 我 在 壓力 之下 工作 表現 最好 . +Tom failed to persuade Mary . ||| 汤姆 没 能 说服 玛丽 . +Fill it with regular , please . ||| 請 定期 填寫 . +You should not eat too much candy . ||| 你 不 應 該 吃 太 多 糖果 . +You do not believe Tom , do you ? ||| 你 不 信任 汤姆 , 对 吗 ? +You look tired . ||| 你 看 起來 很 疲倦 . +This is my friend . ||| 這 是 我 的 朋友 . +Why do you need my help ? ||| 你 為 甚麼 需要 我 幫助 ? +The price of eggs is going up . ||| 蛋 的 價格 正在 上漲 . +I feel comfortable . ||| 我 感觉 很 舒服 . +Were you expecting to win ? ||| 你 打算 赢 吗 ? +The bus leaves in five minutes . ||| 公車 將 在 五分 鐘 後 開動 . +How do you get your children to eat vegetables ? ||| 你 怎样 让 你 的 孩子 们 吃 蔬菜 ? +Why did you try to run away ? ||| 为什么 你 企图 逃走 ? +It looks like Tom won the race . ||| 看 起來 像是 湯姆 贏 得 了 比賽 . +He pressed the button and waited . ||| 他 按 下 按 鈕然 後 等待 著 . +That river is dangerous . ||| 那 條 河 是 危險 的 . +I need to take a shower . ||| 我 需要 洗 个 澡 . +I have not been getting enough sleep lately . ||| 我 最近 一直 睡眠不足 . +Without the slightest hesitation , he sold his own car . ||| 他 毫不犹豫 地 把 自己 的 车 卖 了 . +We were talking about something at that time , but I do not remember what . ||| 我们 那时 在 谈论 事情 , 但 我 不 记得 是 什么 了 . +I was surprised at his strong resemblance to his father . ||| 他 像 极了 他 父亲 , 这 让 我 震惊 . +I really like this story . ||| 我 真 喜歡 這 故事 . +She squeezed the juice from many oranges . ||| 她 榨 了 許多 柳橙汁 . +Tom has a girlfriend in Boston . ||| Tom 有個 在 波士 頓 的 女友 . +Where did you meet Tom ? ||| 你 是 在 哪里 认识 汤姆 的 ? +I avoid discussing personal subjects with my boss . ||| 我 避免 跟 老板 讨论 个人 话题 . +I will make you happy . ||| 我会 让 你 幸福 的 . +What made you so angry ? ||| 什麼 讓 你 這麼 生氣 ? +You should read many books when you are young . ||| 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +Keep Tom safe . ||| 确保 汤姆 安全 . +I 'd like a window seat , please . ||| 請 給 我 靠 窗口 的 位子 . +I still have not found work . ||| 我 還 沒有 找到 工作 . +Someone has taken my shoes by mistake . ||| 有人 穿错 了 我 的 鞋 . +Tom is being held captive . ||| 汤姆 被 囚禁 了 . +She disliked him . ||| 她 不 喜歡 他 . +He likes to cook for his family . ||| 他 喜歡 為 家人 做飯 . +I 'd rather do it by myself . ||| 我 更 願意 自己 做 . +I do not like the taste of tomatoes . ||| 我 不 喜歡 蕃茄 的 味道 . +They made up and became friends again . ||| 他們 和解 了 , 並 再次 成為 了 朋友 . +You did what was necessary . ||| 你 做 了 必要 的 事 . +I was already tired . ||| 我 已经 累 了 . +They are melons . ||| 它们 是 瓜 . +Tom has no friends to play with . ||| 湯姆 沒有 朋友 可以 一起 玩耍 . +Watch him and do the same thing . ||| 看著 他 並且 跟 他 做 同樣 的 事情 . +They came up with a plan after a long discussion . ||| 他们 终于 在 漫长 的 讨论 之后 得出 了 一个 计划 . +I do not understand why pepperoni pizza is so popular . ||| 我 不 懂 為何 義式 辣腸 披 薩 如此 受歡 迎 . +Have you been to London before ? ||| 你 以前 去過 倫敦 嗎 ? +Say it clearly . ||| 說 清楚 . +I knew he would accept . ||| 我 知道 他 会 接受 的 . +Stop gambling . ||| 戒掉 赌博 吧 . +I have a friend whose father is a teacher . ||| 我 有 一個 朋友 , 他 的 父親 是 老師 . +I got up early . ||| 我 起床 早 . +Anything new ? ||| 有 什么 新鲜事 吗 ? +He goes to Karuizawa every year . ||| 他 每年 都 去 輕 井澤 . +Why were you late ? ||| 你 为什么 迟到 ? +Tom was not thirsty . ||| 汤姆 不渴 . +He refused my friend request . ||| 他 拒绝 了 我 加 好友 的 请求 . +He made me a suit . ||| 他 给 我 做 了 套 衣服 . +You should have stayed in the car . ||| 你 該 留在 車裡 . +Whenever I hear that song , I remember my youth . ||| 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +Tom made up his mind to become a newspaperman . ||| 汤姆 决定 做 报业 人士 . +He is no ordinary student . ||| 他 不是 个 普通 的 学生 . +Almost everyone came . ||| 几乎 每个 人 都 来 了 . +Look , it is my problem . ||| 看 , 这 是 我 的 问题 . +I received a letter written in English yesterday . ||| 昨天 , 我 收到 一封 用 英语 写 的 信 . +You did not need to take a taxi . ||| 你 不必 搭計 程車 . +He is so heartless . ||| 他 是 这么 的 无情 . +Please stay as long as you wish . ||| 你 想待 多久 就 待 多久 . +There is no clock in my room . ||| 我 的 房间 里 没有 时钟 . +Have we made progress ? ||| 我們 取得 進步 了 嗎 ? +He took me for an Englishman . ||| 他 误认为 我 是 一个 英国人 . +Do not tell me you did not know . ||| 别跟我 说 你 不 知道 . +That is very handy . ||| 这 很 方便 . +You have put on weight , have not you ? ||| 你 的 體重 增加 了 , 不是 嗎 ? +The bill was passed after a hard fight in the House . ||| 該 法案 在 眾議 院爭議 後 獲得 通過 . +There is no need for you to study . ||| 你 沒有 讀書 的 必要 . +He plays tennis very well . ||| 他 打网球 打 得 很 好 . +Tom has lost weight recently . ||| 湯姆 最近 變 瘦 了 . +Let is play tennis in the afternoon . ||| 今天下午 讓 我們 打 網球 吧 . +Everybody did that . ||| 每个 人 都 做 了 那事 . +Tom listened carefully . ||| 湯姆 仔細 聽 . +It is time to leave . ||| 是 时候 离开 了 . +I found her letter in the mailbox . ||| 我 在 信箱 中 發現 了 她 的 信 . +Switzerland is situated between France , Italy , Austria and Germany . ||| 瑞士 位于 法国 、 意大利 、 奥地利 和 德国 之间 . +First off , I 'd like you to come with me to a department store sale . ||| 首先 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +I 'd rather stay than go . ||| 我 寧願 待 在 這裡 而 不 去 . +They made their way across the river . ||| 他們 渡河 前 進 . +Have you ever traveled by plane ? ||| 你 曾經 坐 飛機 旅行 過 嗎 ? +A ring and some cash are missing . ||| 少 了 一个 戒指 和 一点 现金 . +They are jealous of our success . ||| 他们 嫉妒 我们 的 成功 . +Did you buy her something for Christmas ? ||| 你 聖誕節 買 東西 給 她 了 嗎 ? +Let is eat sushi . ||| 讓 我們 吃 壽司 吧 . +The meeting ended earlier than usual . ||| 會議 比 往常 早 結束 . +Something must be done ! ||| 必須 採取 一些 行動 了 ! +He gave the same answer as before . ||| 他 給 了 跟 以前 一樣 的 回答 . +Spring will come soon . ||| 春天 就要 来 了 . +Children really like playing on the beach . ||| 孩子 们 非常 喜欢 在 海滩 上 玩耍 . +I saw an old woman cross the street . ||| 我 看见 一个 老太太 穿过 了 马路 . +Did they live here ? ||| 他們 從 前 住 這 嗎 ? +Please send me a letter . ||| 請 寄信 給 我 . +Her English is excellent . ||| 她 的 英语 好极了 . +That is my problem . ||| 這 是 我 的 問題 . +What are your influences ? ||| 你 的 影响力 是 什么 ? +Hold your horses , young man . ||| 別 那麼 猴急 , 年 輕 人 . +He wants to kiss her . ||| 他 想 亲 她 . +Tell me where to put these books . ||| 告訴 我 這些 書要 放在 哪裡 . +How many children do you have ? ||| 你 有 幾個 小孩 ? +May we swim here ? ||| 我们 能 在 这里 游泳 吗 ? +I will give you this book . ||| 我会 把 这 本书 给 你 . +He knows how to swim . ||| 他 会 游泳 . +I bought a pair of shoes . ||| 我 買 了 一雙 鞋子 . +Tom watched TV yesterday . ||| Tom 昨天 看 了 电视 . +Life without love is just totally pointless . ||| 没有 爱情 的 生活 毫无意义 . +What Tom said does not apply in this situation . ||| 汤姆 所 言 不符 时局 . +I still need an answer . ||| 我 仍然 需要 一个 答案 . +Which one of the two brothers did you see ? ||| 你 见到 的 是 两 兄弟 中 的 哪 一个 ? +How do you feel now ? ||| 你 现在 感觉 如何 ? +Please fill this bucket with water . ||| 請 把 這個 桶子 裝滿 水 . +He left an hour ago . ||| 他 一 小时 前 走 了 . +I was hoping Tom would come here today . ||| 我 希望 湯姆 有 一天 會來 這裡 . +He was accused of murder . ||| 他 被 控告 杀人罪 . +Everyone noticed . ||| 所有人 都 注意 到 了 . +Tom certainly is an interesting person . ||| 汤姆 这 人 确实 很 有意思 . +The taxi I took was very old and small . ||| 我 打 的 这辆 出租车 很 老 , 也 很小 . +Do you realize what this means ? ||| 你 知道 這 是 甚麼 意思 嗎 ? +He speaks French fluently . ||| 他 说 法语 说 得 很 流利 . +You know too much . ||| 你 知道 得 太 多 了 . +I feel lonely . ||| 我 觉得 很 孤独 . +I do not need anything . ||| 我 不 需要 任何 東西 . +Is Monday OK ? ||| 周一 可以 吗 ? +I will explain it to her . ||| 我会 跟 她 解释 的 . +Someone came . ||| 有人 来 了 . +Do not tell lies . ||| 别 说谎 ! +Shut your eyes . ||| 闭 上 你们 的 眼睛 . +You and Tom must be happy . ||| 你 和 湯姆 一定 很 高興 . +I can not play tennis very well . ||| 我 網球 打 的 不是 很 好 . +The girl is small for her age . ||| 就 她 的 年齡 來說 , 這個 女孩 算是 矮小 的 . +What do you suppose this could be ? ||| 你 认为 这 是 什么 ? +Tom left his umbrella on the bus . ||| 汤姆 把 伞 落在 了 巴士 上 . +Tom felt his heart beating faster . ||| 湯姆 感覺 他 心跳 加快 . +I received a letter three months later . ||| 我 在 三個 月 後 收到 了 一封信 . +Tom was the one that told us about the problem . ||| 湯姆 是 告訴 我們 問題 的 人 . +Can I bring Tom ? ||| 我 可以 带上 汤姆 吗 ? +I accompanied her on a walk . ||| 我 陪 她 散步 . +I can seldom find time for reading . ||| 我 很少 能 抽出 时间 看书 . +Who is that ? ||| 那 是 谁 ? +It is wrong to deceive people , but worse to deceive yourself . ||| 欺騙 別人 是 錯 的 , 但 更糟 的 欺騙 自己 . +The nail tore his jacket . ||| 這個 釘子 撕破 了 他 的 夾克 . +I warned you not to come here . ||| 我 警告 過 你 別 來 這裡 . +I have never told anyone about this . ||| 我 没 跟 任何人 说 过 这个 . +I borrowed this comic from his sister . ||| 我 向 他 的 妹妹 借了 這個 漫畫 . +London , where I live , used to be famous for its fog . ||| 我 住 的 地方 - 倫敦 , 從前 以 霧聞 名 . +He knows almost nothing about that animal . ||| 他 幾乎 對 那個 動物 一無 所知 . +Tom did not give me back my money . ||| 湯姆 沒有 還 我 錢 . +Take whichever you want . ||| 拿 你 想要 的 . +I understand . ||| 我 明白 了 . +Are you going to attend the meeting ? ||| 你 要 參加 會議 嗎 ? +Children often hate spinach . ||| 小孩 一般 都 討厭 菠菜 . +Tom very often takes a nap for an hour after lunch . ||| 汤姆 很 经常 在 午饭 后 小憩 一 小时 . +You have not washed your hands yet , have you ? ||| 你 还 没 洗手 , 不是 吗 ? +May I say something ? ||| 我 可以 說 些 什麼 嗎 ? +I went to sleep about 10 o 'clock . ||| 我 在 10 點 左右 去 睡 覺 . +Everything will be OK . ||| 一切 都 会 好 的 . +We had an earthquake last night . ||| 昨晚 我們 這裡 發生 了 地震 . +I heard a strange sound . ||| 我 聽見 一聲 怪響 . +Do you really want Tom to suffer ? ||| 你 真 想 讓 湯姆 受苦 嗎 ? +My whole body hurts . ||| 我 全身 酸痛 . +There is a bottle of white wine in the refrigerator . ||| 冰箱 里 有 一瓶 白葡萄酒 . +There is not any film in this camera . ||| 這個 相機 裡 沒有 胶卷 . +She lives in a large house . ||| 她 住 在 一棟 大房子 裡 . +We have two examinations during this term . ||| 这个 学期 我们 有 两次 考试 . +It is very expensive to keep up with the latest fashions . ||| 跟上 最近 潮流 时尚 是 件 非常 花钱 的 事儿 . +You look tense . ||| 你 看起来 很 紧张 . +You know I am right . ||| 你 知道 我 是 正确 的 . +Please tell me about your problem . ||| 請 告訴 我 你 的 問題 . +The cause of the fire was unknown . ||| 火災 的 原因 不明 . +Tom has been expecting Mary . ||| 湯姆 預計 瑪莉 會 來 . +I have caught a bad cold . ||| 我 得 了 重感冒 . +I can not stand him . ||| 我 受不了 他 . +I am on my way to the meeting right now . ||| 我 在 前往 会议 的 路上 . +I slept only two hours . ||| 我 祇 睡 了 兩 小 時 . +My cell phone has a built @-@ in digital camera . ||| 我 的 手機 有 內建 的 數位 相機 . +Something is happening in Boston . ||| 在 波士顿 正 发生 着 什么 事 . +I need to complete it as soon as possible . ||| 我 需要 尽快 完成 . +I do not have a prejudice against foreign workers . ||| 我 对 外籍 员工 没有 偏见 . +I asked the doctor some questions . ||| 我 問 了 醫生 一些 問題 . +I am getting off at the next station . ||| 我 下 一站 下车 . +I had some trouble in finding his house . ||| 我 很 難 找到 他 的 房子 . +He often quotes from Shakespeare . ||| 他 經常 引用 莎士比亞 . +Tom dealt the cards . ||| Tom 处理 了 卡片 . +We can seat you soon . ||| 我们 很快 就 可以 安排 您 入座 . +Tom does not even try to help Mary . ||| 汤姆 甚至 没 打算 帮 玛丽 . +As soon as I get to London , I will drop you a line . ||| 我一 到 伦敦 就 会 给 你 留言 的 . +There is a back entrance . ||| 有 后门 . +He kicked the ball into the goal . ||| 他 把 球 踢 進 了 球門 . +My friend is studying Korean . ||| 我 的 朋友 在 學朝 鮮語 . +I have just been to my uncle is house . ||| 我 剛剛 去 了 我 叔叔 家 . +The problem was very difficult . ||| 這個 問題 非常 困難 . +My apartment is on the fourth floor . ||| 我 的 公寓 在 四樓 . +His greatest fault is talking too much . ||| 他 最大 的 缺点 就是 话 太 多 . +I still can not speak French . ||| 我 还是 不会 说 法语 . +We had a welcome party for her . ||| 我們 為 她 舉辦 了 一個 歡迎 會 . +Do not throw out this magazine . I have not read it yet . ||| 这本 杂志 不要 扔 . 我 还 没看 呢 . +You have to get this work finished by noon . ||| 你 必須 在 中午 以前 完成 這個 工作 . +The first thing you have to take into consideration is time . ||| 你 应该 考虑 的 第一件 事 是 时间 . +Unfortunately , it rained . ||| 很 遗憾 , 下雨 了 . +We will have to go back . ||| 我们 还 得 回去 . +Where does it hurt ? ||| 哪裡 疼 ? +I will get you whatever you want . ||| 我 會 給 你 任何 你 想要 的 東西 . +Freedom is not free . ||| 自由 是 有 代价 的 . +Tom saw Mary crying . ||| 湯姆 看見 瑪麗 在 哭 . +I would like to try this on . Where are the fitting rooms ? ||| 我 想 试试 这件 . 请问 哪里 是 试衣间 ? +Can anyone answer my question ? ||| 有人 可以 回答 我 的 問題 嗎 ? +Let me give you some advice . ||| 讓 我 給 你 一些 建議 . +He is beginning to lose his hair . ||| 他 开始 掉头发 了 . +You made the mistake on purpose , did not you ? ||| 你 故意 犯 這個 錯 , 是 嗎 ? +We ran down the hill . ||| 我們 跑 下山 . +What is your job ? ||| 你 做 什麼 工作 ? +May I put it here ? ||| 我 可以 把 它 放在 这儿 吗 ? +The information you gave me is of little use . ||| 你 給 我 的 資料 沒有 多大 的 用處 . +The soccer game is tomorrow . ||| 明天 有 足球 比賽 . +English is a universal language and is used all over the world . ||| 英語 是 一種 世界性 的 語言 , 用 於 世界各地 . +Who told you the story ? ||| 誰 告訴 你 這個 故事 ? +She cried when she heard the news . ||| 當 她 聽到 這個 消息 的 時候 , 她 哭 了 . +Pardon me , do you speak English ? ||| 對 不起 . 你 會 講 英語 嗎 ? +She is a well @-@ known singer . ||| 她 是 一个 著名 的 歌手 . +Quit talking , will you ? ||| 不要 说话 , 好不好 ? +The bucket was full of water . ||| 这桶 装满 了 水 . +Please wait until I come back . ||| 請 等到 我 回來 . +Write your name in capitals . ||| 写下 你 名字 的 大写字母 . +Tom is eyesight is deteriorating . ||| Tom 的 视力 正在 恶化 . +My father is retiring next spring . ||| 我 爸爸 明年 春天 就要 退休 了 . +Your cake is delicious . ||| 你 的 蛋糕 很 美味 . +What is it that Tom wants to eat ? ||| 汤姆 想 吃 的 是 什么 ? +Those are my pants . ||| 那些 是 我 的 褲子 . +I saw him run away . ||| 我 看見 他 逃跑 了 . +The participants were for the most part women . ||| 参与者 大部分 是 女性 . +It is been raining since early morning . ||| 從 清晨 開始 一直 下雨 . +I kept on singing . ||| 我 繼續 唱歌 . +The cat is looking at the fish . ||| 猫 看着 鱼 . +The things he says are not the least bit important . ||| 他 说 的话 根本 毫无意义 . +You could not handle the pressure . ||| 你 不能 处理 压力 . +He introduced me to his parents . ||| 他 把 我 介紹 給 他 的 父母 認識 . +Let me see it . ||| 讓 我 看看 . +Something did happen . ||| 有 什么 事 发生 了 . +Let is go and swim in the river . ||| 讓 我們 去 河裡 游泳 吧 . +The lights in the bathroom are not working . ||| 洗手间 的 灯 坏掉 了 . +Compared to Tokyo , London is small . ||| 和 东京 比 , 伦敦 很小 . +We ran in the park . ||| 我们 在 公园 里 跑 了 步 . +Please do that . ||| 麻煩 您 那樣 做 . +Thanks to both of you . ||| 感谢 你们 两位 . +Children love playing on the beach . ||| 孩子 們 喜歡 在 沙灘 上 玩 . +The whole neighborhood was surprised at the news . ||| 整个 小区 对 这个 消息 很 惊讶 . +It is supper time . ||| 吃 晚 飯 的 時間 到 了 . +You come back soon , OK ? ||| 你 早點 回來 , 行 嗎 ? +I have not eaten for many days . ||| 我 好多天 沒 吃 東西 了 . +Tears filled her eyes . ||| 她 热泪盈眶 . +No problem . ||| 没关系 . +Her father passed away last week . ||| 她 的 父親 上週 去世 了 . +" Are the drinks free ? " " Only for ladies . " ||| “ 酒水 免费 吗 ? ” “ 仅 女士 而已 . ” +He called me a taxi . ||| 他 替 我 叫 了 一部 計程 車 . +I would rather stay at home than go out . ||| 比起 出门 , 我 更 喜欢 待 在家 . +What do you plan to major in at college ? ||| 你 计划 去 大学 后 主修 什么 吗 ? +We are all at risk . ||| 我们 都 在 冒险 . +You will be able to see the difference very easily . ||| 你们 很 容易 就 能 看出 区别 . +You should rewrite this sentence . ||| 你 應該 重寫 這 句 話 . +He is living abroad at the moment . ||| 他 现在 住 在 国外 . +Take as many cookies as you want . ||| 想 吃 多少 饼干 就 吃 多少 . +I would like to pay in cash . ||| 我 想用 現金 支付 . +You are very shy . ||| 你 很 害羞 . +Tom will wait . ||| 湯姆會 等 . +It is fun to travel . ||| 旅行 是 乐事 . +Tom can run fast . ||| Tom 可以 跑 得 很快 . +It is very difficult . ||| 这 很 难 . +You can bank on that . ||| 你 可以 寄希望于 此 . +If it looks like an apple and it tastes like an apple , it is probably an apple . ||| 如果 看起来 像 个 苹果 而且 吃 起来 也 像 苹果 的话 , 可能 就是 苹果 . +She asked how to cook the fish . ||| 她 问 了 怎么 烧鱼 . +Why do not we order pizza ? ||| 为什么 我们 不订 披萨 呢 ? +Tom said that he lost his key . ||| 汤姆 说 他 丢 了 钥匙 . +He gave a nice present to me . ||| 他 送给 我 一份 漂亮 的 礼物 . +It was rather easy for them . ||| 這 是 對 他們 來說 相當 容易 . +He is American . ||| 他 是 美国 人 . +He drank very little of the water . ||| 他 喝 很少 的 水 . +Africa was once called the Dark Continent . ||| 非洲 曾經 被 稱為 黑暗 大陸 . +He does not like to eat fish . ||| 他 不 喜歡 吃 魚 . +" Who is in the car ? " " Tom is . " ||| “ 谁 在 车里 ? ” “ 汤姆 . ” +The senator was censured by the congressional ethics committee . ||| 议员 受到 了 议会 道德 委员会 的 谴责 . +That was years ago . ||| 那 是 好 幾 年前 . +He objected to our plan . ||| 他 反 對 我們 的 計劃 . +Who are your most interesting friends ? ||| 你 最 有趣 的 朋友 是 誰 ? +Where were you ? ||| 之前 你 在 哪里 ? +We do not have time . ||| 我们 没 时间 . +We were worried . ||| 我们 很 担心 . +Poor health prohibited him from traveling . ||| 因为 健康 状况不佳 , 他 没去 成 旅行 . +It is too expensive . ||| 这 太贵 了 . +He went by bicycle . ||| 他 骑 自行车 去 的 . +There is no denying that she is very efficient . ||| 无可否认 她 非常 有 能力 . +She smiled . ||| 她 笑 了 . +Go away . ||| 走開 ! +Tom likes science fiction . ||| 汤姆 喜欢 科幻 . +Yesterday , the weather was very nice . ||| 昨天 天气 非常 好 . +He looks old for his age . ||| 他 看 起來 比 他 的 實際 年齡 大 . +My stomach is full . ||| 我 吃 得 很 飽 . +She is two years older than you . ||| 她 比 你 大 兩歲 . +Do you have a TV ? ||| 你 有 电视 吗 ? +Are you happy ? ||| 你 开心 吗 ? +He looks like a good boy . ||| 他 看 起來 是 個 好 男孩 . +I thought his opinion was relevant . ||| 我 認為 他 的 意見 很 中肯 . +He hid behind the door . ||| 他 藏到 了 门 后 . +Tom can not get over Mary . ||| 汤姆 不能 原谅 玛丽 . +Tom could not get to sleep till after three last night . ||| 汤姆 昨晚 三点 多 才 睡着 . +Tom was not smiling when he entered the room . ||| 汤姆 进 房间 时 没有 微笑 . +I want to eat apple pie . ||| 我 想 吃 苹果派 . +He went to New York on Monday . ||| 他 星期一 去 了 紐約 . +Walk faster , or you will miss the train . ||| 走快 一點 , 不然 你 會 錯 過 火車 . +That is our school . ||| 那 是 我们 的 学校 . +The dog came running to me . ||| 狗 向着 我 跑 了 过来 . +Tom quietly closed the bedroom door . ||| 湯姆 靜靜地 關上 了 臥室 的 門 . +I love this car . ||| 我 愛 這 台 車 . +She was washing the dishes . ||| 那時 她 正在 洗碗 . +Is there a hospital near here ? ||| 這 附近 有 醫院 嗎 ? +Try it once more . ||| 再 試 一次 . +You are always busy . ||| 你 一直 忙 . +I often play soccer after school . ||| 我 常常 在 放學 後 踢足球 . +Did you tell on me ? ||| 你 告发 我 了 吗 ? +Could you please sign the register ? ||| 請 您 在 登記 冊 上 簽名 好 嗎 ? +I suggest we go out on Friday . ||| 我 建议 我们 星期五 出去玩 . +It is too loud . ||| 它 太 大聲 . +Do you plan to stay long ? ||| 你 打算 長 時間 停留 嗎 ? +I will always love you , no matter what happens . ||| 不論 發生 了 什麼 事 , 我 會 永遠 愛 你 . +She set out on a trip last week . ||| 她 上週 去 旅行 了 . +My brother is a first @-@ year student . ||| 我 弟弟 是 個 一年 級 的 學生 . +Tom is insufferable . ||| 汤姆 令人 难以忍受 . +What would you like ? ||| 你 想要 甚麼 ? +Where do you work now ? ||| 你 现在 在 哪里 工作 ? +He is independent of his parents . ||| 他 獨立 於 他 的 父母 . +I would like to have a look at your collection of stamps . ||| 我 想 看看 您 的 邮票 收藏 . +We have to pick a name for the child . ||| 我們 要 給 孩子 起 個 名字 . +I am willing to take your offer . ||| 我 願意 接受 你 的 報價 . +Many people envy Tom is success . ||| 许多 人 嫉妒 汤姆 的 成功 . +Could you turn down the radio ? ||| 您 能 把 收音机 开 小声 一点 吗 ? +Is Tom in a lot of trouble ? ||| 汤姆 是不是 麻烦事 很多 ? +Although he is rich , he is not happy . ||| 虽然 他 很 有钱 , 但 他 不 幸福 . +I think we should be able to go wherever we want to . ||| 我 認為 我們 應 該 能 去 我們 想去 的 地方 . +He made a few grammatical mistakes . ||| 他 犯 了 一些 文法 錯誤 . +Is this Tom is ? ||| 这 是 汤姆 的 吗 ? +You are Tom is friend , are not you ? ||| 你 是 湯姆 的 朋友 , 不是 嗎 ? +What else do you want me to say ? ||| 你 想 让 我 再说 什么 ? +Please remain seated for a few minutes . ||| 请 坐 一会 . +The weatherman says there is a storm on the way . ||| 气象学家 说 会 有暴风雨 . +There is somebody in there . ||| 有人 在 那里 . +I wish I could talk to you . ||| 我 希望 能 与 你 谈话 . +We went swimming at the beach . ||| 我們 去 海邊 游泳 . +I think he will do his best . ||| 我 認為 他 會 盡力 而為 . +We are friends from way back . ||| 我们 是 老朋友 了 . +No words can relieve her deep sorrow . ||| 沒有 什麼 話 語能 減輕 她 深深 的 悲傷 . +I am a member of the tennis club . ||| 我 是 网球 俱乐部 的 会员 . +No , I did not write it . ||| 不 , 我 沒 寫 . +Do you want to come in ? ||| 你 想 进来 吗 ? +I think he will not come . ||| 我 认为 他 不会 来 . +The circumstances did not allow me to go abroad . ||| 情况 不 允许 我 出国 . +See you soon ! ||| 一會兒 見 ! +Do you feel tired ? ||| 你 覺 得 累 嗎 ? +Life cannot exist without water . ||| 水 是 生命 的 源泉 . +It is been ten years since we last met . ||| 我們 離 上次 見 面有 十年 了 . +She keeps a parrot as a pet . ||| 她 養一隻鸚鵡 作 為 寵 物 . +He earns double my salary . ||| 他 的 工资 是 我 的 两倍 . +I belong to the drama club . ||| 我 參加 戲劇 社 . +You do not know who I am . ||| 您 不 知道 我 是 谁 . +Banks charge higher interest on loans to risky customers . ||| 银行 对 风险 客户 收取 较高 的 贷款 利息 . +We will probably be the first ones there . ||| 我們 可能 是 最先 到 那裡 的 . +A computer is an absolute necessity now . ||| 電腦 現在 是 一個 絕對 必要 的 東西 了 . +We went to the mountains to ski . ||| 我們 去 山上 滑雪 . +Will you pick me up at seven tomorrow morning ? ||| 你 明早 7 点 来 接 我 吗 ? +A young girl on crutches asked Tom where he lived . ||| 一个 拄着 拐杖 的 年轻 女孩 问 汤姆 他 住 在 哪里 . +He has just become a principal . ||| 他 剛 成為 一 名校 長 . +Did you just get to know him ? ||| 你 是不是 刚 认识 他 ? +I do not make deals with people like you . ||| 我 不 跟 你 这样 的 人 做生意 . +Do you know how to recover a deleted file ? ||| 你 知道 怎么 恢复 已 删除 的 文件 吗 ? +I need someone to talk with . ||| 我 得 找 人 商量一下 . +I am stuck here in Boston because of the storm . ||| 我 因為 風暴困 在 波士 頓 . +May I borrow your knife ? ||| 我 能 借 一下 你 的 刀 吗 ? +We had a heavy rain last night . ||| 昨晚 下 了 一場 大雨 . +He put the book on the table . ||| 他 把 书 放在 了 桌上 . +Where is the telephone book ? ||| 电话簿 在 哪里 ? +I am very sorry that I came home so late . ||| 我 很 抱歉 那么 晚 回家 . +The old man died from hunger . ||| 這位 老人 死 於 飢餓 . +I do not want to hurt his feelings . ||| 我 並 不想 傷害 他 的 感情 . +Tom does not have a microwave oven . ||| 汤姆 没有 微波炉 . +My house is close to a bus stop . ||| 我 的 房子 靠近 一個 公車 站牌 . +Three months later , Tom was dead . ||| 三個 月 后 , 湯姆 死 了 . +I do not even know if Tom went to college or not . ||| 我 甚至 不 知道 汤姆 有没有 上 过 大学 . +Tom did not have enough time to eat lunch . ||| 湯姆 沒 時間 吃 午 飯 . +What more would you want ? ||| 你 還 想要 什麼 ? +We can hear the ocean from here . ||| 我們 從 這裡 可以 聽到 海 的 聲音 . +She plays golf every weekend . ||| 她 每 周末 都 打 高尔夫球 . +Everybody lies . ||| 每个 人 都 会 说谎 . +He majored in drama at college . ||| 他 在 大學 主修 戲劇 . +She is progressing in Chinese . ||| 她 中文 有 进步 . +I believe in exercising regularly . ||| 我 相信 規律 的 運動 . +Tom is not watching TV now . ||| 湯姆 現在 沒 在 電視 . +I gave Tom one of those . ||| 我 给 了 汤姆 其中 之一 . +I would like to order drinks now . ||| 我 現在 想 點 飲料 . +Tom is out of your league . ||| 汤姆 不 在 你 的 联盟 里 . +Answer the following questions in English . ||| 用 英語 回答 下列 問題 . +The committee consists of four members . ||| 委员会 由 四个 成员 组成 . +Do you have any Japanese magazines ? ||| 你 有 任何 日本 雜 誌 嗎 ? +I am sleepy . ||| 我 困 了 . +It is not always cold in Hokkaido . ||| 北海道 並 不 總是 寒冷 . +What you say makes no sense . ||| 你 說 的 話 沒有 道理 . +Which hat is yours ? ||| 哪 顶 帽子 是 你 的 ? +A famous architect built this house . ||| 一个 有名 的 建筑师 造 了 这个 房子 . +I would like to reserve a single room . ||| 我 想 預訂 一間 單人 房 . +I know what you are doing . ||| 我 知道 你 在 做 什么 . +I did not mean to disturb you . ||| 我 不是 想 打扰 你 . +Let him play your guitar . ||| 讓 他 彈 你 的 吉他 . +Japan is famous for Mt . Fuji . ||| 日本 以 富士山 聞名 . +It is too late to apologize . ||| 现在 道歉 也 迟 了 . +She did not turn up . ||| 她 沒有 出現 . +Computers are certainly playing an important role in our life , whether we like it or not . ||| 无论 我们 是否 喜欢 电脑 , 它 在 我们 的 生活 中 始终 起 着 重要 的 作用 . +I am going to make you a drink . ||| 我 去 弄 飲料 給 你 . +She filled her bag with apples . ||| 她 在 她 的 袋子 裡 裝滿 了 蘋果 . +We import tea from India . ||| 我們 從 印度 進口 茶葉 . +What were the meetings like ? ||| 会议 怎么样 ? +He was watching TV last night . ||| 他 昨晚 在 看電視 . +There are too many things to do ! ||| 要 做 的 事太 多 了 ! +I do not know when he will come again . ||| 我 不 知道 他 什麼 時候 會 再來 的 . +It is time to talk . ||| 到 談話 的 時間 了 . +I have a new car . ||| 我 有 辆 新车 . +Good evening . ||| 晚上 好 ! +Do not worry about this . ||| 別 為 此 擔心 . +Be on time . ||| 要 守时 ! +My aunt made a new skirt for me . ||| 我 阿姨 做 了 一條 新 裙子 給 我 . +When did you come to Japan ? ||| 你 何時 來 日本 的 ? +She says he will not give up smoking . ||| 她 說 他 不 會 戒煙 . +They said the situation was only temporary . ||| 他们 说 情况 只是 暂时 的 . +Now I need you to leave . ||| 現在 我 需要 你 離開 . +I met him while I was coming home . ||| 當 我 回家 時 , 我 遇見 了 他 . +Tom realized that he had lost his wallet . ||| 湯姆 意識 到 他 丢 了 錢 包 . +He plays the guitar very well . ||| 他 吉他 彈 得 很 好 . +Let me get my violin . ||| 让我拿 一下 我 的 小提琴 . +Life is fun . ||| 人生 是 有趣 的 . +What have you been doing recently ? ||| 最近 在 干 些 什么 ? +This is an important event . ||| 这 是 个 重要 事件 . +Please show me your driver is license . ||| 請 讓 我 看看 您 的 駕駛 執照 . +My mother made a sweater for me . ||| 我 媽媽 為 我 做 了 一件 毛衣 . +Close the door , please . ||| 請 關門 . +We must try to break the deadlock . ||| 我们 必须 设法 打破 这个 僵局 . +The bell rings at eight . ||| 鈴聲 在 八點鐘 響起 . +Will you explain the rule to me ? ||| 你 能 帮 我 说明 一下 规则 吗 ? +The bottle smashed to pieces . ||| 瓶子 摔成 了 碎片 . +I am not your mother . ||| 我 不是 你 母親 . +The road is too narrow for cars . ||| 這 條路 對 汽車 來說 太 窄 了 . +That is my toothbrush . ||| 這 把 是 我 的 牙刷 . +The bus was filled to capacity . ||| 這輛 公車 客滿 了 . +How far is it from the airport to the hotel ? ||| 從 機場 到 旅館 多遠 ? +You can probably guess what happens though . ||| 但 你 很 可能 猜得到 会 发生 什么 . +The old man walked with a stick . ||| 這個 老人 拄著 一根 拐杖 走路 . +I am getting off at the next stop . ||| 我 將 在 下 一站 下車 . +He did not listen to music . ||| 他 没有 听 音乐 . +Could you wrap this separately , please ? ||| 請 你 分開 包裝 好 嗎 ? +Is this Tom is ? ||| 这 是 汤姆 的 东西 吗 ? +I am going to stop trying to be friendly with you . ||| 我 不 跟 你 要 好 了 . +She is fond of playing tennis . ||| 她 酷爱 打网球 . +It is fine today . ||| 今天天气 很 好 . +I want a girlfriend . ||| 我 想 找 女朋友 . +He swims better than I do . ||| 他 游泳 比 我 好 . +Movie making is an exciting job . ||| 電 影 製 作 是 一 個 令人 興奮 的 工作 . +Tom has a pretty big mouth . ||| 汤姆 是 一个 大嘴巴 . +It was nice meeting you here . ||| 在 这里 见到 您 真是 太好了 . +Tom is fluent in three languages . ||| 汤姆 掌握 了 三种 语言 . +Would you please look after the children ? ||| 你 可以 照顧 一下 孩子 們 嗎 ? +Champagne , please . ||| 给 我 香槟 , 谢谢 . +Tom used to work here . ||| 汤姆 过去 在 这里 工作 . +I got this vacuum cleaner for nothing . ||| 我 免費 得到 了 這個 吸 塵器 . +She is still dependent on her parents . ||| 她 现在 依然 依靠 父母 生活 . +It is said that she is a well @-@ known actress . ||| 據 說 她 是 個 知名 的 女 演員 . +As you sow , so shall you reap . ||| 种瓜得瓜 , 种豆得豆 . +Do not pry into my private life . ||| 不要 插手 我 的 私生活 . +You are in trouble now . ||| 你 有 麻烦 了 . +Would you care for some tea ? ||| 你 要 喝 點 茶 嗎 ? +Please pick me up at the airport at five . ||| 請 於 五點鐘 到 機場 接 我 . +Where is your bag ? ||| 你 的 包在 哪裡 ? +I have to say no . ||| 我 必须 拒绝 . +Are you the owner of this house ? ||| 你 是 這棟 房子 的 主人 嗎 ? +I think we were well @-@ prepared . ||| 我 認為 我們 準備 好 了 . +She sent me a letter . ||| 她 寄给 我 一封信 . +Tom was the first to arrive and the last to leave . ||| 湯姆 最先 來 , 最 後 走 . +I was the last one to see Tom . ||| 我 是 见 汤姆 的 最后 一个 . +Tom took out his wallet and paid the bill . ||| 湯姆 拿出 錢 包付 了 賬 . +I refuse to be treated like a slave by you . ||| 我 拒绝 被 你 像 奴隶 一样 对待 . +Louder , please . ||| 请 大声 一点 . +My father sometimes goes abroad . ||| 我 父親 偶爾 出國 . +Tom does not know whether Mary is telling the truth or not . ||| 汤姆 不 知道 玛丽 说 的 是 真话 还是 假话 . +He does not have to go to school . ||| 他 不必 上學 . +When was it built ? ||| 它 是 什麼 什麼 時候 蓋 的 ? +I will stand by you whatever happens . ||| 不论 发生 什么 事 , 我 都 会 在 你 身边 . +You do not look so happy . ||| 你 看来 不 大 高兴 . +The man is wanted for murder . ||| 這人 因謀 殺 被 通緝 . +I do not like to socialize . ||| 我 不 喜欢 跟 人 打交道 . +I have got one for you . ||| 我 給 你 帶 了 一個 . +The air conditioner has got out of order . ||| 空调 坏 了 . +Tom wants to be the boss . ||| 湯姆 想 當 老 闆 . +The top of Mt . Fuji was covered with snow . ||| 富士山 顶盖 满 了 雪 . +How did you like the party ? ||| 你 覺得 這個 派 對 如何 ? +Much of what they wrote about never happened . ||| 他們 寫 的 很多 都 沒 發生 . +I do not like to mix business with pleasure . ||| 我 不 喜欢 把 生意 和 快乐 混 在 一起 . +They referred to Chaucer as the father of English poetry . ||| 他們 視 喬叟 為 英 詩 之 父 . +Large , is not it ? ||| 很大 , 不是 嗎 ? +There is no doubt about it . ||| 關於 此事 毫無疑問 . +Why did you quit ? ||| 你 為 什麼 辭職 ? +Cosmetic surgery is not covered by most insurance plans . ||| 大部份 的 保險 計劃 不 包含 整容 手術 . +I took a shower . ||| 我 洗 了 澡 . +People look at things differently depending on whether they are rich or poor . ||| 人們 看待 事情 的 角度 不同 取決 於 他們 是 富裕 或 貧窮 . +I did not know Tom was going to tell us what to do . ||| 我 不 知道 汤姆 会 告诉 我们 该 怎么 做 +As soon as she comes , we will begin . ||| 她 一 到 , 我们 就 开始 . +He answered my question with a " no . " ||| 他 用 一個 " 不 " 回答 了 我 的 問題 . +It was amazingly easy . ||| 这 出乎意料 地 容易 . +You may have been the last person to see Tom . ||| 你 可能 是 最 後 一個 見 湯姆 的 人 . +This diamond is not real . ||| 这 颗 钻石 不是 真的 . +He likes neither baseball nor football . ||| 他 既 不 喜欢 棒球 , 又 不 喜欢 足球 . +I have finished cleaning my room . ||| 我 已經 打掃 完 我 的 房間 了 . +My business has at last gotten on the right track . ||| 我 的 生意 終於 上 了 軌道 . +He asked her seven times to marry him . ||| 他 求 她 跟 他 结婚 七次 . +No one voted against it . ||| 没有 人 投 反对票 . +Tom was never happy . ||| 湯姆 從不 高興 . +I am convinced that things will change for the better . ||| 我 深信 事情 会往 更好 的 方向 转变 . +The Hilton Hotel , please . ||| 请 开到 希尔顿酒店 . +Come along with me . ||| 请 跟我来 . +I was still an amateur at that time . ||| 我 那時 還 是 個 外行 . +Tom is a very good man . ||| 汤姆 是 个 很好 的 人 . +I think we should try it . ||| 我 認為 我們 該 試試 . +May I have something to drink ? ||| 我 可以 喝 點 東西 嗎 ? +My gums are bleeding . ||| 我 的 牙齦 流血 . +Tickets are on sale now . ||| 现在 售票 . +I think skateboards are usually cheaper than rollerblades . ||| 我 觉得 一般 滑板 比 轮滑鞋 便宜 . +He divorced his wife last month . ||| 上個月 他 和 妻子 離婚 了 . +Please return the book by tomorrow . ||| 請 明天 前 還 書 . +You must be joking ! ||| 你 一定 是 开玩笑 ! +They passed by her house yesterday . ||| 他們 昨天 路 過 她家 . +Stay down ! ||| 趴着 ! +We do not get many visitors here . ||| 我们 这里 没有 很多 访客 . +Zip your lips . ||| 闭上 你 的 嘴 . +Haste makes waste . ||| 欲速 則 不達 . +This is not salt . ||| 这 不是 盐 . +I think it was a good day . ||| 我 認為 那 是 個 好日子 . +He is not a high school student . ||| 他 不是 個 高中生 . +They have twelve children . ||| 他们 有 12 个 孩子 . +Tom said he has not decided what needs to be done . ||| 湯姆 說 他 還 沒 決定 要 做 甚麼 . +My brother goes to college in Tokyo . ||| 我 兄弟 在 東京 上大學 . +" Pass me the salt , please . " " Here you are . " ||| “ 请 把 盐 递给 我 . ” “ 拿 着 . ” +I could not convince him of his mistake . ||| 我 没能 让 他 相信 他 的 错误 . +She got very angry with her children . ||| 她 对 她 的 孩子 非常 生气 . +She carried the box under her arm . ||| 她 把 箱子 挾 在 手臂 下 . +He was very patient . ||| 他 非常 有 耐心 . +What a pity ! ||| 太 可惜 了 ! +My house is close to the park . ||| 我 的 房子 靠近 公園 . +There is a telephone in my room . ||| 我 的 房里 有 部 电话 . +Do you want to go on a picnic with me ? ||| 你 想 跟 我 去 野餐 吗 ? +I can not change what happened yesterday . ||| 我 没法 改变 昨天 发生 的 事情 . +We have a little time left . ||| 我們 還 有 一點 時间 . +Why do not you come dancing with me ? ||| 为什么 你 不 来 跟 我 跳舞 ? +Do you have enough money ? ||| 你 的 钱 够 吗 ? +Why are you being so evasive ? ||| 你 为什么 这么 躲躲闪闪 ? +Tom and I were business partners . ||| Tom 跟 我 是 商業 夥 伴 . +It is time to eat lunch . ||| 午餐 時間 到 了 . +He does not speak our language . ||| 他 不 會 說 我們 的 語言 . +We have to do our best . ||| 我们 要 尽力而为 . +Do not you have to work ? ||| 你 不用 工作 吗 +He has over a million dollars in assets . ||| 他 有 超过 一百万美元 的 资产 . +They furnished the library with new books . ||| 他們 在 圖書館 裝備 了 新 的 書籍 . +I do not know what to say . ||| 我 不 知道 说 什么 . +You 'd better not go there again . ||| 你 最好 不要 再 去 那裡 . +We celebrate Christmas every year . ||| 我們 每年 都 慶祝 聖誕節 . +My room is just below . ||| 我 的 房間 就 在 樓下 . +She has an eye for beauty . ||| 她 有 一雙 美麗 的 眼睛 . +I 'd rather stay at home . ||| 我 寧願待 在家 裡 . +I have already told Tom he can not go to Mary is party . ||| 我 已經 告訴 湯姆 他 不能 去 瑪麗 的 聚會 了 . +Tom stayed at this hotel for three weeks . ||| 汤姆 在 这 宾馆 待 了 三周 . +Is the room big enough for you ? ||| 這間 房間 對 你 來說 夠 大 嗎 ? +Could you possibly suggest a way to solve the problem ? ||| 你 能 提出 解决问题 的 方法 吗 ? +He is a professor at the National University . ||| 他 是 国立大学 的 一名 教授 . +It is none of your business . ||| 跟 你 没 半 毛钱 关系 . +If a person has not had a chance to acquire his target language by the time he is an adult , he is unlikely to be able to reach native speaker level in that language . ||| 如果 一個 人 在 成人 前 沒有 機會 習得 目標 語言 , 他 對 該 語言 的 認識 達到 母 語者 程度 的 機會 是 相當 小 的 . +She attempted suicide . ||| 她 企圖 自殺 . +He stopped for a quick cigarette . ||| 他 停下来 抽根 烟 . +Everyone except Tom knew that he did not need to do that . ||| 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom knows how to behave in public . ||| 汤姆 知道 在 公众 场合 怎么样 自处 . +I have seen Tom naked . ||| 我 见 过 汤姆 光着 . +He did not mean to hurt you . ||| 他 不是故意 要 傷害 你 . +The company is going to go bankrupt really soon . ||| 公司 很快 就要 倒闭 了 . +Can she endure a long trip ? ||| 她 能 忍受 長途 旅行 嗎 ? +She is having lunch now . ||| 她 现在 正在 吃 午餐 . +The boy is full of promise . ||| 这个 男孩 很 有 前途 . +How did you get to know him ? ||| 你 是 怎么 认识 他 的 ? +I can not wait to go on a vacation . ||| 我 等不及 要 去 度假 . +It has been raining heavily for three hours . ||| 下 了 三 小 時 大雨 . +Tom does not think this is a coincidence . ||| 汤姆 不 认为 这 是 一个 巧合 . +I will gladly help you . ||| 我 會 很 樂意 幫助 你 . +Every minute counts . ||| 分秒必争 . +How soon can we leave ? ||| 我们 过 多久 才能 离开 ? +You may use this car . ||| 你 可以 使用 這輛 車 . +They were scolded by the teacher . ||| 他们 被 老师 训斥 了 . +His advice counted for little . ||| 他 的 建議 不算 什麼 . +I need your passport and three photographs . ||| 我 需要 你 的 护照 和 三张 照片 . +We had a lot of rain yesterday . ||| 昨天 下 很多 雨 . +Are you students at this school ? ||| 你 是 這 所 學校 的 學生 嗎 ? +I like to eat . ||| 我 喜歡 吃 . +I am sorry to cause you all this trouble . ||| 我 很 抱歉 给 你 惹 来 所有 的 这些 麻烦 . +This is not very stylish . ||| 這 不是 很 流行 . +Why can not you come ? ||| 你 為 什麼 不能 來 ? +Tom gave Mary a ride to Boston . ||| 汤姆 载 玛丽 去 波士顿 . +Many accidents resulted from the icy conditions of the road . ||| 道路 结冰 导致 了 很多 起 事故 . +Weather permitting , we will leave in an hour . ||| 如果 天气 允许 的话 , 我们 1 小时 后 出发 . +He is afraid of death . ||| 他 害怕 死亡 . +There is no rush . ||| 不急 . +I want to play . ||| 我 想 去 玩 . +What do you like to do in your free time ? ||| 您 空闲 时间 喜欢 做 什么 ? +The sky was filled with airplanes . ||| 天上 滿 是 飛機 . +I can not find my wallet . ||| 我 找 不到 我 的 錢 包 了 . +Whose pencil is this ? ||| 这 支 铅笔 是 谁 的 ? +He arrived in Tokyo yesterday . ||| 他 昨天 抵達 東京 . +What time will you leave ? ||| 你 什麼 時候 離開 ? +Where is the nearest train station ? ||| 最近 的 火车站 在 哪里 ? +The doctor advised him to do more exercise . ||| 醫生 建議 他 多 做 運動 . +It all seems so strange . ||| 看起来 全都 太 奇怪 了 . +There is only one store on the island . ||| 在 這個 島上 只有 一家 商店 . +For the other 600 million people , English is either a second language or a foreign language . ||| 對 於 其他 的 六億 人口 而言 , 英語 不是 第二 語言 就是 外語 . +She has a pure heart . ||| 她 有 一颗 纯洁 的 心 . +I thought Tom and Mary were crazy . ||| 我 本 以为 汤姆 和玛丽 疯 了 呢 . +It is dangerous to drive so fast . ||| 車 開得 這麼 快 很 危險 . +I have a high fever . ||| 我 烧 得 很 厉害 . +He has at least one thousand books . ||| 他 至少 有 一千本 書 . +It is difficult to speak three languages . ||| 說 三種 語言 是 很困 難 的 . +Shakespeare is the name of a writer . ||| 莎士比亞 是 一位 作家 的 名字 . +Tom knows how to play mahjong , I think . ||| 汤姆 知道 怎么 玩 麻将 , 我 觉得 . +He died recently . ||| 他 最近 去世 了 . +I like eating fruit . ||| 我 喜歡 吃水果 . +Tom clapped his hands . ||| 湯姆 拍 了 手 . +He cleared his throat . ||| 他 清了清 喉嚨 . +Will you join us ? ||| 你 會 參加 嗎 ? +There are twelve months in a year . ||| 一年 有 十二 個 月 . +Get a grip on yourself . ||| 冷静下来 ! +That is how I learned English . ||| 我 就是 这么 学会 英语 的 . +They did not speak French very well . ||| 他們 說 法語 說 得 不太好 . +I 'd be crazy to do that . ||| 我 做 那事 会 疯 . +We have an elevator in our new house . ||| 我們 的 新家 有一 臺 電 梯 . +We must never confuse the two . ||| 我们 决不能 混淆 两者 . +What is Tom saying ? ||| 湯姆 在 說 甚麼 ? +Her grandmother lived to be 88 years old . ||| 她 的 祖母 活到 了 88 岁 . +I need evidence . ||| 我 需要 證據 . +All you have to do is to take care of yourself . ||| 你 要 做 的 只是 照顾 好 你 自己 . +I think I am going to cry . ||| 我 想 我 要 哭 了 . +What should be done ? ||| 怎么办 ? +What symptoms do you have ? ||| 你 有 什麼 症狀 ? +What time does your plane leave ? ||| 你 的 飛機 什麼 時候 起飛 ? +I want it to be different this time . ||| 我 想 让 这次 变得 不 一样 . +It is free . ||| 它 是 免費 的 . +If you do your best , you will succeed . ||| 如果 你 盡力 而為 , 你 就 會 成功 . +He visited his uncle yesterday . ||| 昨天 他 拜訪 了 他 的 叔叔 . +Mary said she would do her homework . ||| 瑪麗 說 她 會 做 她 的 功課 . +I do not want something bad to happen to us . ||| 我 可不 想要 坏事 发生 在 我们 身上 . +It is sort of strange . ||| 有 點 奇怪 . +We have arrived . ||| 我們 已經 到 了 . +When does Tom eat breakfast ? ||| 汤姆 什么 时候 吃 早饭 ? +Tom could have called the police . ||| 汤姆 本 可以 报警 的 . +He has not yet turned in the report this month . ||| 他 這個 月 還 沒有 提交 報告 書 . +Nobody knows why he turns down my help . ||| 沒 有人 知道 他 為何 拒絕 我 幫 忙 . +I used to play alone when I was a child . ||| 我 小时候 常常 独自 玩耍 . +I hope to retire from work when I am 60 years old . ||| 我 希望 在 六十 歲時 退休 . +Tom gave Mary a nice present . ||| 湯姆 給 了 瑪麗 一個 不錯 的 禮物 . +Tom is about to fall asleep . ||| 湯姆 要 睡著 了 . +We know so little about you . ||| 我們 對 你 知道 得 不 多 . +I walked up the hill . ||| 我 走上 山 了 . +He was too young to live alone . ||| 他 太 年 輕 了 無法獨自 生活 . +Would you please turn off the TV ? ||| 请 把 电视机 关掉 好 吗 ? +I do not think he is truthful . ||| 我 不 觉得 他 很 诚实 . +I am thirsty . ||| 我 渴 了 . +I had a telephone call from her . ||| 我 有 一通 來 自 她 的 電話 . +She can play the piano very well . ||| 她 可以 把 鋼琴 彈 得 很 好 . +I heard him play the piano once . ||| 我 聽 過 一次 他 彈 鋼琴 . +Do you really want it ? ||| 你 真的 想要 嗎 ? +This is where Tom usually parks his car . ||| 汤姆 通常 把 他 的 车 停 在 这里 . +I would like some more water . ||| 请 再 给 我 一些 水 . +I was not aware that Tom was sleeping . ||| 我 不 知道 湯姆 在 睡覺 . +I often went fishing with him . ||| 我 經常 和 他 去 釣 魚 . +Half of these apples are rotten . ||| 這些 蘋果 的 其中 一半 都 爛 了 . +Mary went on a voyage around the world . ||| 玛丽 去 环游世界 了 . +She furnished the room with beautiful furniture . ||| 她 用 漂亮 的 家具 佈 置 了 房 間 . +He was seen to go upstairs . ||| 有人 看見 他 上樓 . +I can not get at the exact meaning of the sentence . ||| 我 抓 不到 句子 的 确切 含义 . +His brother is always watching TV . ||| 他 的 弟弟 總是 在 看電視 . +How much did you bid ? ||| 你 出价 多少 ? +The explosion that followed killed many people . ||| 很多 人 在 随后 的 爆炸 中 死去 . +Maybe my grandchild will be the first person to set foot on Mars . ||| 可能 我 的 孙子 会 是 登陆 火星 的 第一 人 . +This book is beautifully illustrated . ||| 这 本书 有 精美 的 插图 . +She introduced me to her brother . ||| 她 把 我 介紹 給 她 的 弟弟 認識 . +She has a strong objection to my plan . ||| 她 強烈 反對 我 的 計畫 . +Something is really weird here . ||| 這裡 有些 事 真怪 . +I like jazz . ||| 我 喜歡 爵士 樂 . +I have to go to the toilet . ||| 我 要 去 廁所 . +I used to be a forest ranger . ||| 我 以前 是 護林 人 . +My house is near the station . ||| 我家 离 火车站 很 近 . +He continued working all day . ||| 他 繼續 工作 了 一整天 . +Tom knows exactly how I like my hair done . ||| 汤姆 很 清楚 我 喜欢 什么样 的 发型 . +Tom did not tell me her name . ||| 湯姆 沒有 告訴 我 她 的 名字 . +There is something I want to tell you . ||| 有件 事情 我 要 对 你 说 . +Do not you miss anything ? ||| 难道 你 不 想念 什么 吗 ? +Is the party over ? ||| 聚會 結束 了 嗎 ? +Answer my questions . ||| 回答 我 的 問題 . +Have you heard from him recently ? ||| 你 最近 有 他 的 消息 嗎 ? +They do not need a reason . ||| 他们 不 需要 理由 . +I was the second to last person to hear the bad news . ||| 我 是 倒数 第二个 得知 这个 坏消息 的 . +What do you call this bird in English ? ||| 这 鸟 你们 用 英语 怎么 称呼 ? +I do not think she cares very much . ||| 我 不 认为 她 很 在意 . +Please take a look at this . ||| 请 看看 这里 . +I was surprised by his perseverance . ||| 我 对 他 的 坚持 感到 很 惊讶 . +Have there been any changes ? ||| 有 過 任何 改變 嗎 ? +Tom is taller than you . ||| 汤姆 比 你 高 . +I am responsible for that . ||| 我 对此 负有责任 . +I know that it is highly unlikely that anyone knows me . ||| 我 知道 有人 认识 我 的 可能性 微乎其微 . +If you make a mess , clean it up . ||| 如果 你 弄乱 了 , 你 来 打扫 . +He left his son a large fortune . ||| 他 留給 了 他 的 兒子 一大 筆 財富 . +I want you to stay a little longer . ||| 我 想 让 你 再 呆 一会 . +Everyone admires the pictures painted by him . ||| 每個 人 都 很 欣賞 他 所畫 的 圖畫 . +Do you drink coffee ? ||| 你 喝咖啡 嗎 ? +He got thrown out of the house . ||| 他 被 趕出 了 這棟 房子 . +She is far better today than yesterday . ||| 她 今天 比 昨天 要 好 很多 . +At last , it began to rain . ||| 终于 开始 下雨 了 . +If I won the lottery , I 'd buy a new car . ||| 如果 我中 了 彩票 , 我会 买辆 新车 . +He went to stay with his cousin . ||| 他 去 和 他 的 表弟 待 在 一起 了 . +The man was held in police custody . ||| 這個 男人 被 警察 拘留 了 . +Who said that to you ? ||| 是 谁 给 你 说 那个 的 呢 ? +If you are wrong , then I am wrong , too . ||| 如果 你 錯 了 , 那麼 我 也 錯 了 . +I will send my mother a letter . ||| 我会 给 我 的 母亲 寄 封信 . +My grandfather is a carpenter . ||| 我 爺 爺 是 個 木匠 . +Stop meddling . ||| 别 再 插手 . +They water the fruit trees . ||| 他们 给 果树 浇水 . +There is no need to speak so loud . ||| 沒有 必要 說 話 這麼 大聲 . +Computers save us a lot of time and trouble . ||| 电脑 为 我们 节省 了 很多 时间 , 解决 了 很多 问题 . +Turn off the light . ||| 關燈 . +It has nothing to do with you . ||| 跟 你 沒 有 關 係 . +I am hoping that that will happen . ||| 我 希望 那 會 發生 . +Her success made her the target of jealousy . ||| 她 的 成功 让 她 成为 嫉妒心 的 靶子 . +Do you have a larger size ? ||| 你 有 比 較大 的 尺寸 嗎 ? +How many pieces of baggage do you have ? ||| 请问 您 有 多少 件 行李 ? +Mt . Fuji is Japan is tallest mountain . ||| 富士山 是 日本 最高 的 山 . +It is a nice day , is not it ? ||| 美丽 的 一天 , 不是 吗 ? +Tom comes here every now and then . ||| 汤姆 常 来 这里 . +She was frequently late for school . ||| 她 經常 上學 遲到 . +Why do you want to study abroad ? ||| 为什么 你 想到 外国 读书 ? +I did not enjoy it very much . ||| 我 不是 很 喜歡 它 . +What is the weather like there ? ||| 那儿 是 什么 天气 ? +We just have to make sure Tom is planning to be here . ||| 我們 只是 需要 確認 Tom 有 要 來 這 . +That was not the main reason that Tom needed to do that . ||| 这 不是 汤姆 要 做 那件事 的 主要 原因 . +I am breast @-@ feeding my baby . ||| 我 餵 我 的 孩子 母乳 . +Take a deep breath and then relax . ||| 深呼吸 , 然 後 放 鬆 . +I have put all of my energy into this plan . ||| 我 在 这项 计划 上 投入 了 所有 精力 . +I miss you very much . ||| 我 非常 想 你 . +I am looking for my contact lens . ||| 我 在 找 我 的 隱形 眼鏡 . +This rose is beautiful . ||| 這 玫瑰花 很 美麗 . +Freedom is the center of American democracy . ||| 美國 民主 的 中心思想 是 自由 . +Do not forget to put out the fire . ||| 不要 忘 了 熄火 . +For quantities of 20 or more , we can allow you a special discount of 10 % on the prices quoted . ||| 20 个 以上 九折 特惠 . +How strange ! ||| 真 奇怪 . +How often have you been to Europe ? ||| 你 曾 多常 去過 歐洲 ? +I have mislaid my baggage . ||| 我 的 行李 丢 了 . +Do you feel any pain in your stomach ? ||| 你 的 胃會 痛 嗎 ? +Do you know whose handwriting this is ? ||| 你 知道 这 是 谁 的 字 吗 ? +Stockholm is the capital of Sweden . ||| 斯德哥爾摩 是 瑞典 的 首都 . +That place is food is delicious and their prices are low . However , their location is not good . ||| 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 位置 . +There was no money for rebuilding . ||| 沒有 重建 的 錢 . +What can Tom do ? ||| 汤姆 能 做 什么 ? +He had no qualms in doing so . ||| 他 这么 做 , 没有 任何 不安 . +You know quite a lot about Sumo . ||| 你 對 相撲 知道 得 很多 . +She visited the old man in the hospital every day but Sunday . ||| 她 每天 都 去 探視 在 醫院 裡 的 老人 , 除了 星期天 . +I do not really want to live in Australia . ||| 我 不怎么 想住 在 澳大利亚 . +" Where have you been ? " " I have been to the barber is . " ||| 你 去 哪儿 了 ? 我 去 了 理发店 . +This is exactly what I need . ||| 这 正是 我 需要 的 东西 . +You should always do your best . ||| 你 應 該 永遠 盡力 而為 . +The train got in on time . ||| 火车 准时 到 了 . +I tried to call Tom back . ||| 我 試著 叫 湯姆 回來 . +They are already here . ||| 他們 已經 在 這裡 了 . +Let is wait for a while and see how you do . ||| 讓 我們 等 一會兒 看看 你 怎麼 做 . +I work every day but Sunday . ||| 除了 星期天 我 每 一天 都 工作 . +They got out of the car . ||| 他們 下 了 車 . +I will show you how to catch fish . ||| 我会 向 你 展示 怎样 捕鱼 . +We are next @-@ door neighbors . ||| 我们 是 隔 着 墙 的 邻居 . +My father often goes to the United States on business . ||| 我 爸爸 经常 去 美国 出差 . +I feel sad every now and then . ||| 我 常常 覺得 悲傷 . +I am sure Tom will not have any trouble finding us . ||| 我 确定 汤姆 找到 我们 没有 任何 问题 . +I agree with that opinion . ||| 我 同意 那個 意見 . +Has the bell rung ? ||| 钟响 过 了 吗 ? +She did not have any pencils . ||| 她 一支 铅笔 也 没有 . +I disagree with you . ||| 我 不 同意 你 的 看法 . +I would like fruit juice . ||| 我 想要 果汁 . +Make it quick . ||| 快点 . +We have time to spare . ||| 我們 有 多餘 的 時間 . +There is a park near my house . ||| 我家 附近 有 一個 公園 . +I used to play tennis in high school . ||| 我 高中 时 曾 打网球 +Cross out the incorrect words . ||| 划掉 错误 的 单词 . +This table is made of wood . ||| 这 张 桌子 是 木制 的 . +She lived at 56 Russell Square . ||| 她 住 在 罗素 广场 56 号 . +I have an egg . ||| 我 有 一只 蛋 . +Give me the number . ||| 把 那个 号码 给 我 . +People have been buying me drinks all night . ||| 人們 整晚 都 在 給 我 買 飲料 . +Tom finished college last year . ||| 湯姆 去年 上完 了 大學 . +I like your car . ||| 我 喜欢 您 的 车 . +It is for you to decide . ||| 這 由 你 來 決定 . +I did nothing out of the ordinary . ||| 我 沒 做 不 尋常 的 事 . +I invited him to the party and he accepted . ||| 我 邀请 他 去 派对 , 他 接受 了 . +I want to learn French . ||| 我 要 学法语 . +To be very honest with you , I do not think I can do that . ||| 和 你 说句实话 , 我 觉得 我 做 不到 . +I am not used to drinking coffee without sugar . ||| 我 不 习惯 喝 无 糖 咖啡 . +I will see to it . ||| 由 我 来 做 . +Follow me into the room . ||| 跟 我 进 房间 . +Please do not say that . ||| 请 不要 这样 说 . +The capital of Poland is Warsaw . ||| 波蘭 的 首都 是 華沙 . +Time waits for no one . ||| 时间 不 等 人 . +She does not like people who are not punctual . ||| 她 不 喜欢 不 守时 的 人 . +I could not remember ever having met her . ||| 我 不 记得 曾经 见 过 她 . +He was not aware of the danger . ||| 他 沒 有意 識到 自己 有 危險 . +I am sure they can hear us . ||| 我 確定 他們 能 聽見 我們 的 聲音 . +I understand your feelings . ||| 我 明白 你 的 感受 . +You were not here then . ||| 你 那時 不 在 這裡 . +He paid 1,000 yen for this book . ||| 他 花 了 1000 日元 買 這 本書 . +Do you often travel abroad ? ||| 你 经常 去 国外 旅行 吗 ? +It is very kind of you to help me . ||| 你 幫 我 真好 . +A mouse is a timid creature . ||| 老鼠 是 胆小 的 生物 . +I was not busy yesterday . ||| 我 昨天 不忙 . +What did you do last Christmas ? ||| 去年 圣诞节 做 了 什么 了 ? +I have already told you the truth . ||| 我 已經 告訴 你 真相 了 . +There will be snow tomorrow . ||| 明天 會 下雪 喔 ! +There are a lot of books in the library . ||| 圖書館 裡 有 很多 書 . +She is in the restroom . ||| 她 在 上 廁所 . +What do the initials NTT stand for ? ||| NTT 這個 縮寫 是 什麼 意思 ? +Mom , I am hungry . ||| 妈妈 , 我 肚子饿 了 . +The storm caused a lot of damage . ||| 暴風雨 造成 了 很大 的 損害 . +It is my money . ||| 那 是 我 的 钱 . +She loves children . ||| 她 愛 孩子 . +Tom is shy . ||| 汤姆 害羞 . +How can you say that ? ||| 你 怎麼 能 那麼 說 ? +I wish you good luck . ||| 我 祝您 好运 . +Two teas and a coffee , please . ||| 请来 两杯 茶 和 一杯 咖啡 . +I agree with him on that point . ||| 我 在 那 一個 觀點 上 同意 他 . +There is no way to win . ||| 沒有 辦法 贏 . +It is your book . ||| 它 是 你 的 書 . +I had my watch stolen yesterday . ||| 我 的 手 錶 昨天 被 偷 了 . +This question is very simple . ||| 这个 问题 很 简单 . +I thought I was dreaming . ||| 我 还 以为 我 在 做梦 呢 . +Health is above wealth . ||| 健康 比 财富 重要 . +Why are they angry ? ||| 他们 为什么 在 生气 ? +Her father died when she was three . ||| 她 父亲 在 她 三岁时 死 了 . +She has attractive eyes . ||| 她 有 一双 迷人 的 眼睛 . +It seems very interesting . ||| 它 似乎 很 有趣 . +I wake him at six every morning . ||| 我 每天 早上 6 点 叫醒 他 . +Who did you talk to ? ||| 你 和 谁 说话 呢 ? +I thank you from the bottom of my heart . ||| 我 打 心底 里 感激 你 . +We are almost like brothers . ||| 我們 幾乎 像 兄弟 一樣 . +Blenders are nice for people who really like smoothies . ||| 攪拌機 對 真的 喜歡 冰沙 的 人 來說 很 不錯 . +Pace yourself . ||| 量力而行 . +Can you freeze it ? ||| 你 能 冷冻 它 吗 ? +How much will it cost ? ||| 这 要 多少 钱 ? +I was caught in a shower and got drenched to the skin . ||| 我 遇上 了 陣雨 被 淋得 全身 濕透 . +I appreciate your help in clarifying this . ||| 我 感谢 你 帮助 澄清 . +The police will put you behind bars for twenty years . ||| 警方 會 把 你 關 在 牢 裡 二十年 . +Why did you do that ? ||| 你 為 什麼 要 那樣 做 呢 ? +I remember seeing you last year . ||| 我 記得 去年 看 過 你 . +He is leaving Chicago tomorrow . ||| 他 明天 將 離開 芝加哥 . +She knows a lot about the latest fashions . ||| 她 很 了解 最新 的 時尚 趨勢 . +There is not anyone in the room . ||| 房間 裡 沒有 任何人 . +He and his sisters are currently living in Tokyo . ||| 他 和 他 的 姐妹 们 目前 都 住 在 东京 . +I chose the wrong one . ||| 我 選 了 錯 的 那個 . +Get Tom . ||| 找到 汤姆 . +There was a heavy rain last night . ||| 昨晚 下 大雨 . +I need you here . ||| 我 需要 你 在 這裡 . +The pond is 3 meters deep . ||| 这个 池塘 有 三米 深 . +I will be busy tomorrow . ||| 我 明天 会 很忙 . +I suppose he will be back soon . ||| 我 想 他 会 很快 回来 的 . +He invented an excuse for being late . ||| 他 为 他 的 迟到 制造 了 一个 借口 . +The weather forecast says it will be fine tomorrow . ||| 根據 氣象 預報 , 明天 會 是 晴天 . +Tom should be worried . ||| Tom 應該 要 擔心 . +Why do you let Tom treat you that way ? ||| 你 為 甚麼 讓 湯姆 那麼 對待 你 ? +Congratulations ! ||| 祝贺 你 . +I had to change clothes because what I was wearing was not appropriate for the situation . ||| 我 必须 要 换衣服 , 因为 我 现在 穿 的 衣服 不 适合 这个 环境 . +Tom does not need to wear glasses anymore . ||| 汤姆 不 需要 再 戴眼镜 了 . +New stamps will be issued next month . ||| 新 郵票 將 於 下 個 月 發行 . +This is not important . ||| 這個 不 重要 . +What is for dinner tonight ? ||| 今天 晚饭 吃 什么 . +Tomorrow I am going to Paris . ||| 明天 我 去 巴黎 . +He is a famous baseball player . ||| 他 是 一位 著名 的 棒球 選手 . +I need advice . ||| 我 需要 些 建议 . +I will drive you to the airport . ||| 我会 开车 送 你 去 机场 . +I deleted the app . ||| 我 删除 了 这个 应用 . +There is not a drop of water left . ||| 沒有 剩下 一滴水 . +You have to have confidence . ||| 你 必须 得 自信 . +I will give you a ride . ||| 我会 让 你 搭 个 便 车 . +I have too many things on my mind these days . ||| 这 几天 我 脑袋 里 的 事情 太 多 了 . +He does not believe me at all . ||| 他 根本 不 相信 我 . +How old is this zoo ? ||| 這間 動物園 多久 了 ? +Please do not tell this to your parents . ||| 请 不要 告诉 你 父母 . +She went to the Takasu clinic . ||| 她 去 了 高須 診所 . +If the lion is the king of beasts , the eagle is the king of birds . ||| 狮子 是 兽类 之 王 的话 , 鹰 就是 鸟类 之 王 . +How many books does he have ? ||| 他 有 多少 册 图书 ? +I wish I had a better memory . ||| 但 願 我 有 好 一點 的 記憶力 . +How was the interview ? ||| 面試 怎麼樣 ? +When he retired , his son took over the business . ||| 他 退休 的 时候 , 他 儿子 接手 了 他 的 生意 . +Lots of famous people come here . ||| 許 多名 人 來 這裡 . +Tom is worried for his safety . ||| 湯姆 擔心 他 的 安全 . +I wish I could go to Japan . ||| 要是 能 去 日本 就 好 了 . +I 'd like a glass of water . ||| 我 想要 一杯 水 . +Mary likes milk very much . ||| 瑪麗 很 喜歡 牛奶 . +I ate breakfast in my pajamas . ||| 我 穿著 睡衣 吃 早 飯 . +I want to make a pie . ||| 我 想 做 个 派 . +How did you reply ? ||| 你 回答 了 什么 ? +Would you like a cup of coffee ? ||| 来 杯 咖啡 吗 ? +She became a true friend of mine . ||| 她 成為 我 的 一位 真正 的 朋友 . +This is not true love . ||| 這 不是 真實 的 愛情 . +How long do you plan on staying here ? ||| 你 打算 在 这儿 待 多久 ? +I have to take medicine . ||| 我 必须 吃药 . +We have breakfast in the kitchen . ||| 我們 在 廚房 裡 吃 早餐 . +Speaking English is a lot of fun . ||| 說 英語 很 有趣 . +His influence extends all over the country . ||| 他 的 影響 遍及 全國 . +Sumo is a traditional Japanese sport . ||| 相扑 是 日本 传统 的 体育 活动 . +Your bicycle is similar to mine . ||| 你 的 腳踏車 和 我 的 很 相似 . +Is Tom helping Mary ? ||| 汤姆 在 帮 玛丽 吗 ? +My grandfather lived to be ninety . ||| 我 的 祖父 活到 了 九十 歲 . +I recognize that what he says is the truth . ||| 我 承认 他 说 的 是 事实 . +I think it is unlikely that Tom will get elected . ||| 我 觉得 汤姆 不太可能 会 当选 . +You said you had important news . ||| 你 說 你 有 重要 新聞 . +I have lost my pen . ||| 我 弄 丟了 我 的 筆 . +His wife is one of my friends . ||| 他 的 妻子 是 我 的 一個 朋友 . +What is the name of that river ? ||| 這條 河 的 名字 是 什麼 ? +This is my mother . ||| 这 是 我 的 妈妈 . +Do not disturb me while I am studying . ||| 当 我 学习 的 时候 不要 打扰 我 . +They are having a party tomorrow . ||| 明天 他們 將 舉行 派 對 . +Only peace can save the world . ||| 只有 和平 能够 拯救 世界 . +My parents will not let me date . ||| 我 父母 不让 我 和 男生 约会 . +She pretended not to hear him yesterday . ||| 昨天 她 裝作 沒有 聽見 他 . +Do you like to drink wine ? ||| 你 喜歡 喝 紅 酒 嗎 ? +You worry too much about your weight . ||| 你 太 担心 您 的 体重 了 . +She put on her hat . ||| 她 戴 上 了 她 的 帽子 . +Politicians never tell us their inner thoughts . ||| 政治家 从来不 告诉 我们 他们 的 别有用心 . +It turned out that the rumor was false . ||| 谣言 [ 最后 ] 证明 是 假 的 . +He is not as tall as you are . ||| 他 沒 你 高 . +He told me to do it , so I did it . ||| 他 让 我 做 , 我 就 做 了 . +Did something happen ? ||| 發生 了 什麼 事 嗎 ? +I am going to the restroom . ||| 我 去 下 洗手间 . +I remember seeing him . ||| 我 记得 见 过 他 . +Tom told me that I should do that . ||| 湯姆 告訴 我 我 應 該 去 做 . +I will get you something nice . ||| 我会 给 点 你好 东西 . +Tom filled out the application form . ||| 湯姆 填寫 了 申請 表 . +I made some mistakes on the test . ||| 我 在 考试 时 犯 了 些 错 . +Everyone knows the law . ||| 大家 都 知道 這個 法律 . +I have been looking for a new job for a long time . ||| 我 已经 找 了 很久 的 工作 . +Their house is being remodeled . ||| 他們 的 房子 正在 裝潢 . +He asked me questions similar to those asked by many others . ||| 他 和 许多 其他人 一样 问 了 我 同样 的 问题 . +I will call you . ||| 我会 打电话 给 你 . +What is your favorite item of clothing ? ||| 你 最 喜欢 哪类 的 衣服 ? +I am an atheist . ||| 我 是 无神论者 . +His face turned pale . ||| 他 的 脸 失去 了 所有 颜色 . +She takes piano lessons once a week . ||| 她 每周 上 一次 钢琴课 . +You should not waste your time . ||| 你 不该 浪费 你 的 时间 . +She went to the museum by taxi . ||| 她 搭計 程車 去 博物 館 了 . +He is not good at remembering names . ||| 他 不 善于 记人 名 . +Every cloud has a silver lining . ||| 每 朵 雲 都 披著 銀衣 . +Is this edible ? ||| 这个 能 吃 吗 ? +They sell sporting goods . ||| 他们 卖 体育 产品 . +Even with all his money , he is unhappy . ||| 儘 管 他 有 那 麼 多 錢 , 他 並 不快 樂 . +I know where she is . ||| 我 知道 她 在 哪里 . +I do not know what to say to make you feel better . ||| 我 不 知道 该 说 什么 来 安慰 你 . +What you see is what you get . ||| 你 看到 什麼 拿 什麼 . +I felt that the plan was unwise . ||| 我 覺得 這 計畫 不是 很 聰明 . +They are children . ||| 她们 是 孩子 . +I walk my dog in the park every morning . ||| 我 每天 早上 到 公园 里 遛狗 . +She can sing better than anybody else in her class . ||| 她 唱 歌唱 得比 班上 任何 一個 人 好 . +Tom is crying outside right now . ||| 湯姆 現在 正在 外面 哭 . +Everything is going horribly wrong for Tom . ||| 對 湯姆 來說 一切 都 開始 錯 得 離 譜 . +Do not lean against the wall . ||| 别 倚 着 墙 . +Stop talking . ||| 不要 说话 了 . +He has three times as many books as I have . ||| 他 有 我 的 三倍 的 书 . +The clouds are getting darker . ||| 雲 越來越 黑 . +Who are you voting for ? ||| 你 投 给 谁 ? +Is this your first visit to Japan ? ||| 這 是 你 第一次 到 日本 嗎 ? +He gave me whatever help I needed . ||| 他 給 了 我 任何 我 需要 的 幫助 . +This is the cutest puppy I have ever seen . ||| 這 是 我 見 過 最 可愛 的 小狗 . +Now is the time for action . ||| 现在 是 行动 的 时候 了 . +Where do you play tennis ? ||| 你 在 哪裡 打 網球 ? +Tom can swim faster than anyone else I know . ||| 汤姆 是 我 认识 的 人 当中 游泳 最快 的 . +I think we have found what we were looking for . ||| 我 認為 我們 找到 我們 正在 找 的 東西 了 . +Let me take your blood pressure . ||| 讓 我 量量 你 的 血壓 . +You should follow your teacher is advice . ||| 您 應 遵循 你老 師 的 建議 . +He seldom writes to his father . ||| 他 很少 写信给 他 父亲 . +People are counting on us . ||| 人们 正在 依赖 着 我们 . +Are you busy tomorrow afternoon ? ||| 明天 下午 你 忙 嗎 ? +Tom does not have a lot of money . ||| 汤姆 没有 很多 钱 . +Fools rush in where angels fear to tread . ||| 初生 之 犢 不畏 虎 . +I looked around , but saw nobody . ||| 我 環顧 四周 , 卻 沒 看見 任何人 . +They gave us very little trouble . ||| 他們 幾乎 不 給 我們 添 麻煩 . +He has been very busy this week . ||| 他 這個 星期 一直 很 忙碌 . +Is ten thousand yen enough ? ||| 一萬 日元 夠 嗎 ? +You 'd better send for a doctor . ||| 你 最好 派 人 去 請 醫生 來 . +Were you serious ? ||| 你 是 认真 的 吗 ? +It is amazing . ||| 太 神奇 了 . +My watch is five minutes slow . ||| 我 的 錶 慢 了 五分 鐘 . +He went to Paris to study French . ||| 他 到 巴黎 學習法 語 . +I can not afford a car . ||| 我 買 不起 車子 . +Being sick is very boring . ||| 生病 很 無聊 . +Tom can not go home until after 2 : 30 . ||| 汤姆 在 2 : 30 之后 才能 回家 . +His doctor advised him to quit smoking . ||| 他 的 医生 建议 他 戒烟 . +That scandal cost him his reputation . ||| 丑闻 让 他 付出 了 失去 声誉 的 代价 . +He has a brother and two sisters . ||| 他 有 一个 兄弟 和 两个 姐妹 . +It began to snow . ||| 開始 下雪 了 . +The dog is blind in one eye . ||| 那 狗 一只 眼 是 瞎 的 . +The taxi picked up two passengers . ||| 這輛 計程 車 載 了 兩名 乘客 . +You may use my new car . ||| 你 可以 使用 我 的 新車 . +I do not blame you . ||| 我 不 怪 你 . +We have got to go . ||| 我们 必须 走 了 . +Tom and Mary were both born in Boston . ||| 湯姆 和 瑪麗 都 生 在 波士 頓 . +I am sure they will win . ||| 我 確定 他們 會 贏 . +I visited my friend Tom yesterday . ||| 我 昨天 拜訪 了 我 的 朋友 湯姆 . +He gave me 10,000 yen . ||| 他 给 了 我 1 万日元 . +I could answer all the questions . ||| 我 可以 回答 所有 问题 . +You do not like love stories , do you ? ||| 你 不 喜歡 愛情 故事 , 是 嗎 ? +She is Tom is older sister . ||| 她 是 Tom 的 姐姐 . +They flunked their exams . ||| 他們 考試 不及格 . +He sipped the hot coffee slowly . ||| 他 慢慢 地 啜飲 熱 咖啡 . +Do you like rap ? ||| 你 喜欢 说唱 音乐 吗 ? +Are you here on business ? ||| 你 来 这里 出差 的 ? +They go to church every Sunday . ||| 他們 每個 星期天 上 教堂 . +The court declared him innocent on the charge of murder . ||| 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +A light bulb gives light . ||| 灯泡 发光 . +He saw a dog near the door . ||| 他 在 門 附近 看到 了一 隻 狗 . +You owe me something . ||| 你 欠 我 點 東西 . +I run every day . ||| 我 每天 跑步 . +Hollywood is not what it used to be . ||| 好 萊塢 不是 以前 的 樣子 了 . +Pizza is my favorite food . ||| 比薩 是 我 最 喜歡 的 食物 . +They stepped a few paces forward . ||| 他們 前進 了 幾步 . +You have not changed at all . ||| 你 真的 一点 没变 . +Tom knew he should help Mary . ||| 湯姆 知道 他 該 幫 瑪麗 . +I have no doubt about it . ||| 我 没有 疑问 . +Tom is not accustomed to walking barefooted . ||| 汤姆 不 习惯 赤脚 漫步 . +He was disappointed that things did not turn out as he 'd hoped . ||| 事情 没能 如他 所 愿 让 他 感到 失望 . +Please hurry . ||| 请 抓紧时间 . +Do not rely too much on others . ||| 别 老 依赖 别人 . +There are no hats in that store that fit me . ||| 那個 店 裡 沒 有合 我 尺寸 的 帽子 . +When can we eat ? ||| 我們 什麼 時候 可以 吃 ? +I was surprised to see a lion . ||| 我 很 驚訝 竟然 看到 了 獅子 . +This sentence is ambiguous . ||| 此句有 歧義 +Lake Towada is famous for its beauty . ||| 十 和田 湖 以 它 的 美麗 聞名 . +Tom is probably still studying French . ||| 汤姆 可能 还 在 学法语 . +I have something interesting to tell you that you might find surprising . ||| 我 有点 有趣 的 事 要 告诉 你 , 你 可能 会 吃惊 . +We grow a variety of crops . ||| 我們 種植 各種 的 作物 . +Does this bus go to the beach ? ||| 這輛 公車 去 海灘 嗎 ? +The taxi has arrived . ||| 出租车 到 了 . +If you sing , we will sing with you . ||| 如果 你 唱 , 我們 就 跟著 唱 . +Mary helped her mother with the cooking . ||| 瑪麗幫 她 母親 做飯 . +Just say no . ||| 只要 說不 . +This carpet is superior to that one in quality . ||| 这 地毯 在 质量 上比 那个 好得多 . +Would you like a little more salad ? ||| 请问 您 要 多 来 点儿 沙拉 吗 ? +What are you after ? ||| 你 想要 什么 ? +That patient may die at any time . ||| 病人 随时 会 死 . +The birds flew to the south . ||| 群鸟 南翔 . +His advice is always very sensible . ||| 他 的 忠告 总是 很 明智 . +Grandpa bought it for me ! ||| 爷爷 买 给 我 的 ! +We have not thought about it . ||| 我们 还 没 考虑 . +I feel like another beer . ||| 我 想 再 来 一杯 啤酒 . +Do you have a lot of pens ? ||| 你 有 很多 笔 吗 ? +It was a calm winter evening . ||| 这 是 个 静谧 的 冬夜 . +Tom is laughing . ||| 汤姆 在 笑 . +It is easy to swim . ||| 游泳 很 簡單 . +We enjoyed watching the baseball game . ||| 我們 喜歡 看 棒球 比賽 . +The policeman took the thief by the arm . ||| 警察 抓著 小偷 的 胳膊 . +Half a million children still face malnutrition in Niger . ||| 尼日尔 仍然 有 50 万 孩子 面临 着 营养不良 . +You can not do anything about that . ||| 你 什么 也 做不了 . +He looks kind of pale . ||| 他 有点 苍白 . +Take the first street to the right . ||| 第一 條街 右 轉 . +The old man gave the child shelter . ||| 這位 老人 收容 了 這個 孩子 . +Tom was too afraid to do anything . ||| Tom 太 胆小 了 以至于 做不了 任何 事 +The coffee is cold . ||| 咖啡 是 冷 的 . +The prosecutor asked me a leading question . ||| 检察官 问 了 我 一个 引导性 的 问题 . +Tom is wearing the same clothes he wore yesterday . ||| 汤姆 穿着 跟 昨天 穿 的 衣服 . +I like running . ||| 我 喜欢 跑步 . +These shoes are too big for me . ||| 这 双鞋 对 我 来说 太 大 了 . +Do I have to go to the party ? ||| 我 需要 去 派 對 嗎 ? +Wait ! ||| 等等 ! +You know I have no choice , do not you ? ||| 你 知道 我 沒法 選擇 , 不是 麼 ? +I think you are sitting in my seat . ||| 我 想 你 坐到 我 的 座位 了 . +Let is get divorced . ||| 我们 离婚 吧 . +Tom is a very generous man . ||| 湯姆 是 個 大方 的 人 . +Please answer my question . ||| 請 回答 我 的 問題 . +I met a friend of Mary is . ||| 我 遇到 了 瑪麗 的 一位 朋友 . +Is this ladder strong enough to bear my weight ? ||| 这个 梯子 是否 足够 坚固 以 承受 我 的 重量 ? +Who is the author of this story ? ||| 这本 小说 的 作者 是 谁 ? +I am the one you want . ||| 我 就是 你 要 找 的 人 . +Tom is still in Boston . ||| 汤姆 还 在 波士顿 . +An opportunity like this only comes along once in a lifetime . ||| 一辈子 只 会 出现 一次 像 这样 的 机会 . +I , too , have been to Boston many times . ||| 我 也 去过 波士顿 很 多次 . +We saw the children enter the room . ||| 我們 看到 了 孩子 們 進入 這個 房間 . +Do not judge a man by his clothes . ||| 不要 以 穿著 來 判斷 一個 人 . +I have discovered something interesting . ||| 我 發現 了 一些 有趣 的 東西 . +She is very pretty . ||| 她 很 可爱 . +Will he come tomorrow ? ||| 他 明天 会 来 吗 ? +My body aches all over . ||| 我 全身 酸痛 . +Could you say that one more time ? ||| 你 能 再 說 一次 嗎 ? +You have to follow the rules . ||| 你 必须 遵守规则 . +This vending machine is not working . ||| 這 台 自動 販賣 機 故障 了 . +He has just left home . ||| 他 刚 离开 家 . +She is good at getting around rules . ||| 她 擅 於 逃避 規則 . +I had to get my tattoo removed . ||| 我 必須 把 文身 去掉 . +You are not at all wrong . ||| 你 并 不 完全 错误 . +Do not touch my camera . ||| 不要 碰 我 的 相機 . +Tom looked at the photograph . ||| 汤姆 看 了 看 照片 . +Tom is our starting quarterback . ||| 汤姆 是 我们 的 首发 四分 卫 . +We are in a hurry . ||| 我們 很急 . +He said that he wanted some money . ||| 他 說 他 要 一些 錢 . +She lost her way and on top of that it began to rain . ||| 她 迷路 了 , 紧接着 天 开始 下雨 了 . +He pretended to be my friend . ||| 他 假装 是 我 的 朋友 . +Have you ever had any serious illness ? ||| 你 曾经 得 过 重病 吗 ? +She talked as she walked . ||| 她 邊 走 邊 談 . +Look around . ||| 四处 看看 . +I will show you some pictures . ||| 我 會 給 你們 看 些 照片 . +My father made me wash the car . ||| 我 父親 要 我 洗車 . +English is spoken in many countries . ||| 許多 國家 的 人 說 英語 . +Why is the sky blue ? ||| 为什么 天 是 蓝 的 ? +Was Tom asleep ? ||| 汤姆 睡着 了 吗 ? +I do not know when he came back from France . ||| 我 不 知道 他 是 什么 时候 从 法国 回来 的 . +I know what I am doing . ||| 我 知道 我 在 做 什么 . +The monkey climbed up a tree . ||| 猴子 爬上 了 树 . +Put some more wood on the fire . ||| 再 往 火 裡 添 些 木柴 . +I wish you were close to me . ||| 我 希望 你 在 我 身边 . +Tom is very angry now . ||| 汤姆 现在 很 生气 . +Tom is on good terms with John . ||| 汤姆 和 约翰 关系 很 好 . +Help yourself to more potato chips . ||| 隨意 多 吃 點 洋芋片 吧 . +The situation is worse than I thought . ||| 情況 比 我 想 的 還壞 . +He is a good guy . ||| 他 是 個 好人 . +They appointed him as a director . ||| 他们 任命 他 为 经理 . +The earth is similar to an orange in shape . ||| 地球 的 外形 和 橙子 相似 . +Tom drank some juice . ||| Tom 喝 了 些 果汁 . +Tom has decided to become a monk . ||| 汤姆 ( Tom ) 决定 出家 为 僧 . +I met the prince himself . ||| 我 见到 了 王子真 人 . +I will show you the picture . ||| 我会 给 你 看 图片 . +They made me really angry . ||| 他们 让 我 很 生气 . +She is eager to live in Australia . ||| 她 渴望 住 在 澳洲 . +I think it was wrong . ||| 我 认为 它 错 了 . +When I was young , I used to climb trees a lot . ||| 我 年 輕 時 經常 爬 樹 . +She turned down every proposal . ||| 她 拒绝 了 每一项 提议 . +What should I do ? ||| 我 该 做 什么 ? +My father told me where to go . ||| 我 爸爸 告诉 我 去 哪儿 . +Tom might be here by 2 : 30 , but then , maybe not . ||| tom 两点 半 可能 会 到 , 不过 , 也 可能 不会 +I have ten pens more than you do . ||| 我 比 你 多 10 支 钢笔 . +The days are getting longer and longer . ||| 白天 变得 越来越 长 . +I can not bear the pain . ||| 我 無法 忍受 這個 痛苦 . +If you want a pencil , I will lend you one . ||| 如果 你 需要 铅笔 , 我 借 你 一支 . +Please give me some advice on what I should do . ||| 请 给 我 提提 建议 , 我 该 做 什么 . +There was a big gold star on the door . ||| 在 門上 有 一個 大大的 金色 星星 . +It is on the house . ||| 这 是 免费 的 . +He just arrived . ||| 他 刚 到 . +He always wanted to study Japanese . ||| 他 一直 想學日語 . +My train left at 7 and arrived in New York at 10 . ||| 我 乘 的 火车 7 点 出发 , 10 点 到 了 纽约 . +I bought this camera yesterday . ||| 我 昨天 買 了 這 台 相機 . +That was three days ago . ||| 这 是 三天 之前 了 . +I asked each boy three questions . ||| 我 問 了 每個 男孩 三個 問題 . +I think Tom is good . ||| 我 觉得 Tom 人 很 好 . +I do not like winter . ||| 我 不 喜欢 冬天 . +What he said would happen has happened . ||| 他 說 會 發生 的 事情 已經 發生 了 . +Tell me when to begin . ||| 告诉 我 什么 时候 开始 . +She was in America last month . ||| 她 上 個 月 在 美國 . +Your answer is wrong . ||| 你 的 回答 是 错 的 . +I wish we had won the game . ||| 但 願 我們 贏 了 這場 比賽 就 好 了 . +That was really boring . ||| 那 真是 無聊 . +I do not know if Tom can help us . ||| 我 不 知道 湯姆 能 不能 幚 我 們 . +Who wrote these poems ? ||| 这 是 谁 写 的 诗 ? +He works with me at the office . ||| 他 跟 我 在 這間 辦 公室 一起 工作 . +How do you spell your name ? ||| 你 怎麼 拼 你 的 名字 的 ? +I am translating a book . ||| 我 在 翻譯 一本 書 . +I confessed to stealing the money . ||| 我 承認 偷 了 錢 . +What is the price of this cap ? ||| 这 顶 帽子 多少 钱 ? +America was discovered by Columbus in 1492 . ||| 美國 在 1492 年 被 哥倫布 發現 . +Would you mind opening the window ? ||| 你 介意 打開 窗戶 嗎 ? +I love parties . ||| 我 愛 派 對 . +He promised me he would be here at six . ||| 他 答應 我 六點鐘 的 時候 他 會 在 這裡 . +The patient is steadily recovering . ||| 這個 病人 正在 穩定 地 康 復 中 . +How can I get in touch with you ? ||| 我 怎么 联系 你 ? +She has been absent since last Wednesday . ||| 从 上周三 起 , 她 一直 缺席 . +She sells flowers . ||| 她 卖花 . +Are you speaking to me ? ||| 你 在 跟 我 说话 吗 ? +I have to stay home . ||| 我 得 留在 家 . +She does not like the way I speak . ||| 她 不 喜欢 我 说话 的 方式 . +His hobby is painting pictures of flowers . ||| 他 的 爱好 是 画 有 花 的 图 . +He is afraid of snakes . ||| 他 怕 蛇 . +She sent this book to me . ||| 她 寄 這 本書 給 我 . +I still do not understand what is going on . ||| 我 還 是 不 明白 出 了 什麼 事 . +These people hate all foreigners . ||| 这些 人 讨厌 所有 的 外国人 . +She had an appointment with the doctor . ||| 她 跟 醫生 預約 看診 了 . +Can this be eaten ? ||| 这个 能 吃 吗 ? +What a good idea ! ||| 多 好 的 主意 啊 ! +Could you send me a brochure ? ||| 你 能 寄 宣傳冊 給 我 嗎 ? +Christmas is soon , is not it ? ||| 聖誕節 很快 就 到 了 , 不是 嗎 ? +She saddled him with the work . ||| 她 強迫 他 做 這個 工作 . +I would like to go to the movies . ||| 我 想 去 看 電影 . +Is there a hotel around here ? ||| 附近 有 酒店 吗 ? +Tom says he is not feeling any better . ||| Tom 说 他 感觉 不 舒服 . +I do not worry about the risk . ||| 我 不 担心 风险 . +Where is Tom is classroom ? ||| 湯姆 的 教室 在 哪裡 ? +It is dangerous to swim in this river . ||| 在 這條 河裡 游泳 很 危險 . +I am too drunk to do that . ||| 我 喝醉 了 , 做 不到 . +Let is go to the picnic . ||| 讓 我們 去 野餐 . +Tom smiled at Mary , and she smiled back . ||| 汤姆 对 玛丽 笑了笑 , 她 也 笑 着 回应 了 . +Where is your dog ? ||| 你 的 狗 在 哪里 ? +She hated him . ||| 她 恨 他 . +I am currently a teacher at this school . ||| 我 现在 在 这 所 学校 任教 . +I had her sweep my room . ||| 我 讓 她 打掃 了 我 的 房間 . +My father likes pizza very much . ||| 我 父親 非常 喜歡 披 薩 . +Tell Tom I will be there in a minute . ||| 告诉 Tom 我 将 在 一分钟 内 到达 这里 . +How many times have you seen this ? ||| 你 看 这 看 了 多少 次 ? +Old dogs can learn new tricks . ||| 老 的 犬 可以 学 新 的 诡计 . +Edison invented the electric lamp . ||| 愛迪生 發明 了 電燈 . +The dog is dead . ||| 这条 狗 死 了 . +I won ! ||| 我 赢 了 . +I heard her singing . ||| 我 听见 她 唱歌 了 . +Did you plan to eat all of that yourself ? ||| 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +I know that I know it , but I can not remember it . ||| 我 知道 我 知道 它 , 但 我 想不起 來 了 . +Algebra is my favorite subject . ||| 代數 是 我 最 喜歡 的 科目 . +Are you a college student ? ||| 你 是 大学生 吗 ? +Tom clenched his fists . ||| 汤姆 握紧 了 他 的 拳头 . +Why are you so smart ? ||| 为什么 你 的 脑袋 那么 聪明 呢 ? +I have already considered that possibility . ||| 我 已经 考虑 过 那种 可能性 了 . +Please add my name to the list . ||| 請 把 我 的 名字 加在 名單 上 . +I 'd like another beer . ||| 我 想 再 来 一杯 啤酒 . +I am the one who has to do this . ||| 我 是 必須 去 做 這事 的 人 . +Should not you be studying ? ||| 你 不 应该 在 学习 吗 ? +I have a lot of regrets . ||| 我 觉得 太 遗憾 了 . +Everything is normal . ||| 一切正常 . +Doctors refused to perform a second operation . ||| 医生 们 拒绝 做 第二次 手术 . +Let is see what is in the box . ||| 看看 我 會 在 盒子 裡 找到 什麼 ? +He made me his own assistant . ||| 他 让 我 做 他 的 助理 . +I tried to change her mind , but I could not . ||| 我 試著 改變 她 的 心意 , 但 我 沒有 辦法 . +Where is the problem ? ||| 哪裡 有 問題 ? +I would like to buy half a cake . ||| 我 想 买 半个 蛋糕 . +Hi . ||| 你好 . +I work for a shipping company . ||| 我 為 一家 船運 公司 工作 . +I wish I had a car . ||| 但 願 我 有 一輛 車 . +Why do you resent me ? ||| 你 为什么 恨 我 ? +Raspberries are very expensive . ||| 覆盆子 很貴 . +You seem to ask Tom a lot of questions . ||| 你 看來 問 了 湯姆 很多 問題 . +Today , I am feeling a lot better . ||| 我 今天 感觉 好多 了 . +I still have a question . ||| 我 還 有 个 問題 . +I need you . ||| 我 需要 你 . +What is your favorite radio station ? ||| 你 最 喜歡 的 電台 是 什麼 ? +Would you mind if I used your car ? ||| 如果 用 了 你 的 車 , 你 會 介意 嗎 ? +Be friendly . ||| 友好 点 . +That is exactly what I have been telling Tom . ||| 那 就是 我 告诉 汤姆 的 . +Turn back , please . ||| 请 回来 . +I can not bend my right arm . ||| 我 無法 彎曲 我 的 右 手臂 . +This has nothing to do with you . ||| 跟 你 没 半 毛钱 关系 . +She is my older sister . ||| 她 是 我 的 姐姐 . +There is a church near my house . ||| 我家 附近 有 一座 教堂 . +He is afraid of snakes . ||| 他 害怕 蛇 . +Is there anybody who can drive a car ? ||| 有人 会 开车 吗 ? +He was almost hit by a car . ||| 他 差點 被 一輛 汽車 撞上 了 . +Please turn off the lights . ||| 請 關燈 . +Do you like this book ? ||| 你 喜欢 这 本书 吗 ? +I am fairly confident I can do that . ||| 我 相当 有 自信 我 能 做到 这 一点 . +Who are you waiting for ? ||| 你 在 等 誰 ? +I think I know who did it . ||| 我 認為 我 知道 是 誰 做 的 . +Tom has already hired a new lawyer . ||| 湯姆 已經 雇 了 新律 師 . +I feel very sorry for your sister . ||| 我 對 你 姐姐 感到 非常 遺憾 . +I want you out of my room . ||| 我 想 讓 你 離開 我 的 房間 . +Tom did not tell me he did not know how to swim . ||| 汤姆 没有 告诉 我 他 不会 游泳 . +I am so happy . ||| 我 好 高興 . +Let him in . ||| 让 他 进来 . +I need a lot of books . ||| 我 需要 很多 書 . +She continued with the work . ||| 她 繼續 工作 . +He blamed me for the accident . ||| 他 為 這個 意外 指責 我 . +Do you know why she is so angry ? ||| 你 知道 她 為 什麼 這麼 生氣 嗎 ? +The mechanic assembled the engine . ||| 這 名 技師 組裝 了 這 台 引擎 . +You need not have taken an umbrella with you . ||| 你 其实 没 必要 带 伞 . +She achieved great success in her business . ||| 她 在 她 的 事業 上 取得 了 巨大成功 . +Would you like to have a drink before dinner ? ||| 晚饭 前 您 想 喝一杯 吗 ? +A cat came out from under the desk . ||| 一 隻 貓 從 桌 底下 出來 . +As for me , I have nothing to say . ||| 以 我 之 见 , 我 无话可说 . +You are not a doctor . ||| 您 不是 医生 . +Beginners should learn spoken English first . ||| 初學者 應 先學 習口 說 英語 . +He is not what he used to be . ||| 他 不再 是 以前 的 那个 他 了 . +You can not use this washing machine . ||| 你 不能 用 這 臺 洗衣 機 . +Hey , can you turn the lights off ? ||| 喂 , 你 能 把 灯 关掉 吗 ? +I had a pleasant dream last night . ||| 我 昨晚 作 了 一個 好 夢 . +She plays tennis every Sunday . ||| 她 每個 星期天 打 網球 . +When did it begin to rain ? ||| 什么 时候 开始 下雨 的 ? +I wish to go to Hawaii . ||| 我 希望 去 夏威夷 . +Where will you have lunch today ? ||| 你 今天 將 在 哪裡 吃 午餐 ? +I asked her a difficult question . ||| 我 問 了 她 一個 難題 . +We will fly there in 50 minutes . ||| 50 分鐘 之內 我們 將 飛到 那裡 . +Hunger is the best sauce . ||| 饑 餓 是 最好 的 調味品 . +Bread is made from flour . ||| 面包 是 面粉 做 的 . +His lie got him into trouble when his boss discovered the truth . ||| 当 他 老板 发现 真相 的 时候 , 谎言 给 他 带来 了 麻烦 . +His speech inspired all the boys . ||| 他 的 演說 激勵 了 所有 的 男孩 . +This has been the driest six months in thirty years . ||| 這 是 三十 年代 以來 最 乾旱 的 六月 . +Do not lie to Tom and me . ||| 不要 对 我 和 汤姆 撒谎 . +She has very nice @-@ looking handwriting . ||| 她 的 筆跡 很美 . +She decided to quit her job . ||| 她 決定 辭去 工作 . +She has had to stay here . ||| 她 不得不 待 在 这儿 . +I like shopping with Tom . ||| 我 喜歡 跟 湯姆 購物 . +People still think Tom is a liar . ||| 人们 仍然 认为 汤姆 说谎 . +Say hello to your father for me . ||| 代 我 向 你 父親 問 好 . +They will not tell us anything . ||| 他們 甚麼 也 不 會 告訴 我們 . +We must cancel our trip to Japan . ||| 我們 必須 取消 我們 去 日本 的 旅行 . +Cut the chit @-@ chat and get to work . ||| 別 閒 聊 了 , 開始 工作 . +You can hold my hand . ||| 你 能握 我 的 手 . +Turtles are reptiles . ||| 海龟 是 爬行动物 . +They have the same habits . ||| 他們 有 相同 的 嗜好 . +Go on with your work . ||| 繼續 工作 ! +He had to stay in bed . ||| 他 得 卧床 休息 . +If it happened to Tom , it could happen to you . ||| 如果 那 發生 在 Tom 身上 , 也 可能 會 發生 在 你 身上 . +I have just finished breakfast . ||| 我 剛 吃 完 了 早 飯 . +I will arrange for someone to pick you up at your home . ||| 我会 安排 一下 , 叫 个人 去 你家 接 你 . +She pulled him out of the mud . ||| 她 把 他 从 烂泥 中 拽 出来 了 . +Traffic lights work all the time . ||| 紅綠燈 一直 在 運作 . +Tom took a step back and fell . ||| 湯姆 後 退一步 跌倒 了 . +Do you subscribe to any magazines ? ||| 你 有訂 閱 任何 雜 誌 嗎 ? +I have some English books . ||| 我 有 一些 英文 書 . +The old man got in her way . ||| 這個 老人 擋 了 她 的 路 . +It is important to help each other . ||| 重要 的 是 要 互相 幫助 . +Tom wrote Mary a long letter , but he did not send it to her . ||| 汤姆 给 玛丽 写 了 封 长信 , 可是 没有 寄给 她 . +I like winter better than summer . ||| 我 喜歡 冬天 勝 過 夏天 . +That is all I know about him . ||| 这 就是 我 关于 他 知道 的 一切 . +Would you like another beer ? ||| 再 来 一杯 啤酒 怎么样 ? +Iron the inside of collars first , and then the outside . ||| 先 熨烫 领子 的 里面 , 然后 是 外面 . +I helped my father yesterday . ||| 昨天 我 帮 了 我 爸爸 . +I can place the palms of my hands on the floor without bending my knees . ||| 我 不用 曲 膝 就 能 把 我 的 手掌 放到 地上 . +I paid two thousand yen for the book . ||| 我 用 两千 日元 买 了 这 本书 . +Above all , be patient . ||| 尤其 是 要 有 耐心 . +It is not mine . ||| 不是 我 的 . +I think the train will come soon . ||| 我 想 火車 很快 就 會 來 了 . +Doctors have discovered some startling facts . ||| 医生 发现 了 一些 令人吃惊 的 事实 . +Her son is a genius . ||| 她 儿子 是 个 天才 . +I am looking for a place to sit . ||| 我 正在 找 个 地方 坐下 . +Do you have a non @-@ smoking section ? ||| 你們 有 非吸 煙區 嗎 ? +Tom did not tell me much about it . ||| 汤姆 没 跟 我 说 太 多 关于 它 的 事 . +He may be jogging around the park . ||| 他 可能 在 公園 周圍 慢跑 . +Have you ever written a blog ? ||| 你 写 过 博客 吗 ? +He devoted the last years of his life to writing his autobiography . ||| 他 晚年 致力 於 寫 自 傳 . +When I came home , I felt very hungry . ||| 我 回到 家 的 时候 , 感觉 非常 饿 . +I think you are stupid . ||| 我 认为 你 傻 . +I want to marry a girl like her . ||| 我 想 和 一个 像 她 那样 的 女孩 结婚 . +I am afraid I have offended you . ||| 我 怕 我 冒犯 了 你 . +I am not married to Tom . ||| 我 没 跟 汤姆 结婚 . +I asked her out on a date . ||| 我 請 她 出去 約 會 . +Turn right . ||| 向右转 . +He left without saying goodbye . ||| 他 不辭而別 . +What did you find out ? ||| 你 發現 了 甚麼 ? +I miss you . I need to see you . Could I come over ? ||| 我 想 你 . 我 需要 见 你 . 我 能 来 吗 ? +Without the sun , there would be no life . ||| 沒有 太陽 就 沒有 生命 . +Go when you want . ||| 你 想 走 的 时候 就 走 吧 . +I am not so brave . ||| 我 没 那么 勇敢 . +Tom was not going to do anything to you . ||| 汤姆 不 打算 给 你 做 任何 事 . +She plays tennis every day . ||| 她 每天 都 打网球 . +You can not live without water . ||| 沒有 水 你 不能 生活 . +There is no sugar . ||| 没有 糖 . +I ran a race with him . ||| 我 和 他 比賽 跑步 . +They all looked for the lost child . ||| 他們 都 在 尋找 這個 失 蹤 的 孩子 . +The bell rings at noon . ||| 正午 時分 鐘聲 響起 . +How was your weekend ? ||| 你 週末 過 得 怎麼樣 ? +Rome is a city worth visiting . ||| 羅馬 這個 城市 值得 一 遊 . +I do not like science . ||| 我 不 喜欢 科学 . +Let is play tennis this afternoon . ||| 讓 我們 今天下午 打 網球 . +I was expecting it ! ||| 我 一直 在 期待 着 ! +One of your buttons has come off . ||| 你 的 一個 按鈕 脫落 了 . +We must keep up the family traditions . ||| 我们 必须 保持 家庭 传统 . +This is all he has to do . ||| 這 是 所有 他 必須 做 的 事 . +I grew up near a river . ||| 我 在 一條 河 的 附近 長大 . +I am a loser . ||| 我 是 個 不成器 的 人 . +It is about to rain . ||| 天 快要 下雨 了 . +Do you think Tom will show up ? ||| 你 認為 湯姆會 出現 嗎 ? +Where are the strawberries ? ||| 草莓 在 哪裡 ? +We are looking for a nice house to live in . ||| 我们 在 找 一个 漂亮 的 屋子 住 . +Summers are very hot in Kyoto . ||| 京都 的 夏天 很 热 . +Speaking English is difficult . ||| 說 英語 很 難 . +I do not like big dogs . ||| 我 不 喜歡 大 狗 . +This is a very important meeting . ||| 這 是 個 很 重要 的 會議 . +You look as healthy as ever . ||| 你 看 起來 健康 如昔 . +You do not have to work so hard . ||| 你 不必 這麼 辛苦 地 工作 . +There is enough light to read by . ||| 有 足夠 的 光線 讀書 . +Yes , of course . ||| 是 的 , 當然 . +He is old enough to drive . ||| 他 夠 開車 的 年紀 了 . +She is hiding the truth from us . ||| 她 不让 我们 知道 真相 . +Someone is watching you . ||| 有人 在 看著 你 . +How is the weather there ? ||| 那儿 是 什么 天气 ? +You do not need to carry lunch with you . ||| 你 不 需要 隨身 帶著 午餐 . +This chair has to be fixed . ||| 这 张 椅子 需要 修理 . +We have only got one chance . ||| 我们 只有 一次 机会 . +You will exist but you will never know what it is to live . ||| 你 活着 , 但是 却 不 知道 为什么 活着 . +How many teams are there ? ||| 那里 有 多少 队伍 ? +She waited for you for two hours . ||| 她 等 了 你 兩個 小 時 . +He will play baseball tomorrow . ||| 他 明天 將 打 棒球 . +She put sheets on her bed . ||| 她 在 她 的 床上 鋪 了 床單 . +You get up early , do not you ? ||| 你 很早 起床 , 不是 嗎 ? +I hate being alone on Valentine is Day . ||| 我 讨厌 在 情人节 一 人 独处 . +Tom might be able to attend the meeting . ||| 汤姆 可能 能 参加 会议 . +You can no longer hurt me . ||| 你 不再 能 伤害 到 我 了 . +Hello ! ||| 你好 . +It is going to rain soon . ||| 天 快要 下雨 了 . +Japanese office workers work very hard . ||| 日本 上班族 工作 得 非常 辛苦 . +Tom is certain to come on time . ||| 汤姆 一定 会 准时 来 的 . +This car is easy to handle . ||| 這輛 車 很 容易 操控 . +I will show you some pictures . ||| 我 會 讓 你 看 照片 . +Move over . ||| 腾 一下 地方 . +I am very busy this week . ||| 这周 我 非常 忙 . +She asked me if anything was the matter . ||| 她 问 我 是不是 发生 了 什么 事 . +Are you a high school student ? ||| 你 是 高中生 嗎 ? +He made his way through the crowd . ||| 他 設法 穿 過 了 人群 . +The skies are clear . ||| 天空 很 清朗 . +We will only consent on that condition . ||| 我们 只 会 在 那样 的 条件 下 同意 . +I am going out this afternoon . ||| 今天下午 我 會 外出 . +She is getting better day by day . ||| 她 一天 一天 地好 轉 . +Tom can not swim . ||| 汤姆 不会 游泳 . +Now is the time to act . ||| 现在 是 行动 的 时候 了 . +This is considered to be a matter of great importance . ||| 这 被 认为 是 一件 大事 . +I have already changed my clothes . ||| 我 已經 換 了 我 的 衣服 . +She tossed me grapes and I tried to catch them with my mouth . ||| 她 朝 我 丢 葡萄 , 我 试 着 用 嘴 接住 它们 . +Do not let me down . ||| 别 让 我 失望 . +Stop worrying . ||| 别 担心 了 . +His record is a new world record in the 100 @-@ meter dash . ||| 他 刷新 了 百米 短跑 的 世界 紀錄 . +This box is too bulky to carry . ||| 這個 箱子 太 笨重 了 無法 攜帶 . +I have done enough already . ||| 我 已经 做够 了 . +Tom has many cats . ||| 湯姆 有 很多 貓 . +If I have misjudged you , I am terribly sorry . ||| 如果 我 对 你 产生误解 , 我 实在 抱歉 . +I told her what should be done . ||| 我 告诉 了 她 应该 做 什么 . +Do not waste your time . ||| 别 浪费时间 . +How do I get my dog to eat dog food ? ||| 怎么样 才能 让 我 的 狗 吃 狗 粮 ? +We are going to stay in Boston all month . ||| 我們 整個 月 都 要 待 在 波士 頓 . +I bet Tom forgot . ||| 我 打 賭 湯姆 忘 了 . +Please make three copies of each page . ||| 请 把 每 一页 复印 三份 . +She loves chocolate , too . ||| 她 也 喜欢 巧克力 . +They treat me like a child . ||| 他们 把 我 当 小孩 . +Go outside and play now . ||| 現在 出去 玩吧 . +I have a friend whose father is a famous novelist . ||| 我 有 一位 父亲 是 著名 小说家 的 朋友 . +I agree . ||| 我 同意 . +Why do not you talk to him ? ||| 你 為 甚麼 不 跟 他 講 ? +I gave you a book . ||| 我 给 了 你 一 本书 . +Tom did not know exactly what it was that Mary wanted him to do . ||| 汤姆 不 知道 玛丽 到底 让 他 做 什么 . +Do not be late for school again . ||| 不要 再上 學遲 到 了 . +I saw you kissing Tom . ||| 我 看到 了 你 在 吻 汤姆 了 . +He forgot that he bought her a present . ||| 他 忘记 给 她 买 过 一个 礼物 了 . +He is my brother , not my father . ||| 他 是 我 哥哥 , 不是 我 爸爸 . +They are children . ||| 他们 是 孩子 . +Have you all eaten ? ||| 你們 吃飯 了 嗎 ? +What is going on with you ? ||| 你 怎么 了 ? +She and I have nothing in common . ||| 我 和 她 沒有 共同 之處 . +What are you doing ? ||| 你 做 什麼 ? +I helped him with his homework . ||| 我 幫 他 做 他 的 家庭 作業 . +I am from Boston . ||| 他 來 自 波士 頓 . +I do not think I really have a problem . ||| 我 不 認為 我 真的 有 問題 . +Read this book . ||| 看 这 本书 . +This was the most interesting book that she had ever read . ||| 這 是 她 讀 過 最 有趣 的 書 . +Next time I will come earlier . ||| 下 一次 我 會 早 一點 到 . +There is nothing I can do about it . ||| 我 对此 无能为力 . +How high can you jump ? ||| 您 能 跳 多 高 ? +" I will do it tomorrow . " " You said that yesterday ! " ||| “ 我 明天 再 做 . ” “ 这话 你 昨天 就 说 过 了 ! ” +I am sorry I do not agree with you on that matter . ||| 很 抱歉 那个 问题 我 不 赞成 你 . +It has nothing to do with me . ||| 它 跟 我 没关系 . +There is a computer on the table . ||| 桌子 上有一 臺 電 腦 . +Tom put his hand over the microphone . ||| 汤姆 把手 放在 麦克风 上 . +I 'd be thrilled to do that . ||| 我 很 乐意 这么 做 . +My brother gave me a cute doll . ||| 我 哥哥 給 了 我 一個 可愛 的 娃娃 . +The cost of living has risen . ||| 生活 費 升高 了 . +He told me to wash my face . ||| 他 叫 我 洗脸 . +There were a lot of people in the park . ||| 公园 里 有 很多 人 . +When I opened the door , I broke the lock . ||| 我 开门 的 时候 弄坏了 锁 . +A Japanese would not do such a thing . ||| 日本 人 不 會 做 這種 事 . +The telephone rang several times . ||| 電話 響 了 好 幾次 . +What time does the train for New York depart ? ||| 去 纽约 的 火车 几点 出发 ? +I have so many clothes I do not know what to wear tomorrow . ||| 我 有 那么 多 衣服 , 以至于 我 不 知道 明天 穿 什么 了 . +She looks young . ||| 她 看起来 很 年轻 . +Study hard . ||| 好好学习 . +Do I have to take this medicine ? ||| 我 必須 吃 這個 藥 嗎 ? +I lent Tom my camera . ||| 我 把 我 的 相機 借給 了 湯姆 . +I began playing golf years ago . ||| 幾 年前 我 開始 打 高爾夫 球 . +I do not mind if it is hot and spicy . ||| 辣 点儿 没关系 . +This T @-@ shirt is too small for me . ||| 這件 T 卹 太小 了 . +You are probably smarter than you think . ||| 你 可能 比 你 想 的 更 聪明 . +I got up early as usual . ||| 我 和 往常 一样 起得 很早 . +A cornered rat will bite a cat . ||| 窮鼠 囓狸 . +He asked her to marry him , and she accepted . ||| 他 向 她 求婚 , 而 她 同意 了 . +You disappointed me . ||| 你 让 我 失望 了 . +You are too drunk to drive . ||| 你 酒 喝 得 太 醉 了 不能 開車 . +I have always been proud of you . ||| 我 一直 以 您 为 荣 . +He sang some old songs . ||| 他 唱 了 些 老歌 . +I am sure that it will be fun . ||| 我 确定 它 将 会 很 有趣 +He is crazy about soccer . ||| 他 酷爱 足球 . +You were late for work . ||| 你 上班 迟到 了 . +He selected a Christmas gift for her . ||| 他 給 她 選 了 件 聖誕 禮物 . +What do you think should be done about it ? ||| 你 觉得 对此 该 做 什么 ? +Let me think for a while . ||| 讓 我 思考 一下 . +It is almost midnight here . ||| 這裡 已經 是 午夜 了 . +I , for one , am for the plan . ||| 就 個 人 而言 , 我 贊同 這個 計劃 . +He interrupted our conversation . ||| 他 打断 了 我们 的 谈论 . +I called her up . ||| 我 叫 她 起来 . +How long did it take you to translate this book ? ||| 你 用 了 多少 时间 来 翻译 这 本书 ? +He does not eat raw fish . ||| 他 不吃 生鱼 . +How tall is your youngest brother ? ||| 你 最小 的 弟弟 身高 多 高 ? +He knows how to captivate his audience . ||| 他 知道 如何 去 吸引 他 的 聽眾 . +I will take him . ||| 我会 去 接 他 的 . +Why are you asking me ? ||| 你 為 什麼 問 我 ? +I will help you escape . ||| 我会 帮 你 逃跑 的 . +We will play soccer after school . ||| 我們 放學 後 會 去 踢足球 . +You should not tell him anything about her . ||| 你 不 應該 告訴 他 任何 關於 她 的 事 . +Soccer is more popular than tennis . ||| 足球 比 網球 更 受歡 迎 . +All you can do is trust one another . ||| 你们 除了 信任 对方 , 没什么 要 做 的 了 . +The road is too narrow for cars . ||| 這 條路 太 窄 汽車 無法 通行 . +We got an interesting piece of information . ||| 我們 得到 了 一份 有趣 的 情報 . +It was impossible to find an answer . ||| 不 可能 找 得到 答案 . +You are a good person . ||| 您 是 一個 好人 . +She was busy with household work . ||| 她 忙 於 家務 . +No one thinks Tom will win the race . ||| 沒人 認為 湯姆賽 跑 會 贏 . +The strong wind indicates that a storm is coming . ||| 強 風 暗示 著 即 將 到 來 的 暴雨 . +Sometimes I can not help myself . ||| 有时候 我 帮不了 自己 . +The police assembled a lot of evidence against him . ||| 警察 收集 了 很多 对 他 不利 的 证据 . +I have nothing more to do today . ||| 我 今天 沒有 更 多 的 事 要 做 的 了 . +He had the right idea . ||| 他 的 想法 是 对 的 . +Tom hoped that Mary would not die . ||| 汤姆 希望 玛丽 别 死 . +Tom admitted to spilling the red wine . ||| Tom 承认 了 他 摔 了 红酒 . +Did you know that some foxes lived on this mountain ? ||| 你 知道 有些 狐狸 住 在 這 座 山上 嗎 ? +Is everybody ready ? ||| 所有人 都 准备 好了吗 ? +She left here in a hurry . ||| 她 匆忙 地 離開 了 這裡 . +The criminal has not been caught yet . ||| 那個 犯人 還 沒 被 抓到 . +The village has no electricity . ||| 村里 没 通电 . +My father has five brothers and sisters . ||| 我 父親 有 五個 兄弟姐妹 . +Do you have any smaller sizes ? ||| 你 有 任何 比較 小 的 尺寸 嗎 ? +Let is try it out . ||| 我们 试试 . +We need one more spoon . ||| 缺 一把 勺子 . +We gave the car a push . ||| 我們 推 了 車 . +You know what I want to hear . ||| 你 知道 我 想 聽 甚麼 . +What woke you up ? ||| 什麼 吵醒 你 了 ? +I like to ride on trains . ||| 我 喜歡 乘坐 火車 . +A card was attached to the gift . ||| 一張 卡片 被 附在 了 禮物 上 . +On the whole , the event was successful . ||| 整體 而言 , 這個 事件 是 成功 的 . +I am very sleepy . ||| 我 非常 困 . +I am really bad at this . ||| 我 实在 不 擅长 这个 . +Tom is quite thin , is not he ? ||| 汤姆 真瘦 , 不是 么 ? +Lawyers are all liars . ||| 律师 都 是 骗子 . +I can not stand that noise . ||| 我 不能 忍受 那個 噪音 . +Tom turned right when he should have turned left . ||| 汤姆 本该 往 左转 却往 右转 了 . +Crocodiles have sharp teeth . ||| 鳄鱼 有 尖利 的 牙齿 . +I usually go to school by bus . ||| 我 經常 搭 公車 上 學 . +Tom is a very talented writer . ||| 汤姆 是 个 很 有 才华 的 作家 . +True love never grows old . ||| 真 愛 不 會 變 老 . +My mom gets out of bed before me . ||| 我 媽媽 比 我 早起 . +Please shut the door behind you . ||| 請 隨手 關門 . +This is the worst hotel in town . ||| 這 是 城裡 最 糟糕 的 旅館 . +I got to the station this morning . ||| 我 今天上午 到 了 車站 . +We elected her chairperson . ||| 我們 選 她 為 主席 . +Take good care of yourself . ||| 照顾 好 你 自己 . +I think so . ||| 我 想 是 這樣 的 . +My room is very small . ||| 我 的 房間 很小 . +His uncle died five years ago . ||| 他 的 叔叔 五年 前 去世 了 . +Man is the only animal that talks . ||| 人类 是 唯一 彼此 交谈 的 动物 . +Please put those chairs away . ||| 請 把 那些 椅子 放好 . +That is a good question . ||| 那 是 一個 很好 的 問題 . +It appears that she had a nice time at the party . ||| 看來 她 似乎 在 派 對 上 玩 得 很 開心 . +I have been coming to work one train earlier lately . ||| 我 已經 搭 了 最近 比較 早 一點 的 火車 來 上班 . +Let is stop at the next gas station . ||| 我们 在 下 个 加油站 停 一下 . +Maybe we should talk . ||| 大概 我们 需要 交谈 . +You can stay as long as you like . ||| 你 想要 待 多久 就 待 多久 . +Your English is improving . ||| 你 的 英語 正在 進步 . +Tom hugged Mary . ||| 汤姆 拥抱 了 玛丽 . +Neither Tom nor I did that . ||| 汤姆 和 我 都 没有 那么 做 . +They know nothing . ||| 他們 什麼 都 不 知道 . +He went to the dentist . ||| 他 去 看 牙医 了 . +All the flowers in the garden withered . ||| 所有 花園 裡 的 花朵 都 枯萎 了 . +Thank you very much for everything . ||| 非常 感謝 你 所 做 的 一切 . +Can you tell me how to get to the train station ? ||| 你 可以 告訴 我 如何 到 火車 站 嗎 ? +She followed him home to find out where he lived . ||| 她 跟 他 到 家 , 以 知道 他 住 哪 . +Their wedding is tomorrow . ||| 他們 明天 舉行 婚禮 . +Spring is just around the corner . ||| 春天 就要 来 了 . +You are lucky to have such a good job . ||| 你 很 幸運 能有 這麼 好 的 工作 . +I remember meeting her somewhere . ||| 我 記得 我 在 某個 地方 見 過 她 . +My brother is small but strong . ||| 我 哥哥 雖然 矮小 可是 很 強壯 . +Do you really need a car ? ||| 你 真的 需要 车 吗 ? +We woke up very early in order to see the sunrise . ||| 我们 起得 很早 为了 看到 日出 . +I do not sleep well . ||| 我 睡 不好 . +Do you like spinach ? ||| 你 喜歡 菠菜 嗎 ? +How do you want your hair cut ? ||| 你 想 將 頭 髮 剪成 怎樣 ? +I am in trouble . ||| 我 有 麻煩 了 . +What time does the first train leave ? ||| 第一班 火车 什么 时候 出发 ? +I have heard nothing from him yet . ||| 我 沒 有 他 的 任何 消息 . +Tom disappeared . ||| 汤姆 不见 了 . +She climbed down from the roof . ||| 她 从 屋顶 上 下来 了 . +Water turns into steam when it is boiled . ||| 水 沸腾 后 变为 蒸汽 . +I would like to help you . ||| 我 愿意 帮 你 . +I do not like her . ||| 我 不 喜歡 她 . +They grow strawberries in their greenhouse . ||| 他們 在 他們 的 溫室 裡 種 植 草莓 . +He can swim very fast . ||| 他 能 游 得 很快 . +You have no right to do that . ||| 你 無權 那麼 做 . +We are having lunch . ||| 我們 在 吃 午餐 . +We need your help . ||| 我們 需要 你 的 幫忙 . +He traveled around the country . ||| 他 周遊 全國 各地 . +The leaves fell . ||| 叶子 落 了 . +Visitors to Switzerland admire the Alps . ||| 遊客 到 瑞士 欣賞 阿爾 卑斯山 . +I told you to get out . ||| 我 告诉 过 你 出去 . +Would you like me to take a look ? ||| 你 能 让 我 看看 吗 ? +Let is go back to lesson three . ||| 让 我们 回到 第三课 . +He has a good appetite . ||| 他 的 胃口 很 好 . +Tom is our oldest son . ||| 汤姆 是 我们 最大 的 儿子 . +Thank you for drawing a bird for me . ||| 謝謝 你 為 我 畫 鳥 . +Can you wake me up at seven o 'clock tomorrow morning ? ||| 你 明天 早上 七點 可不可以 叫 我 起床 . +She gave me whatever help I needed . ||| 她 給 了 我 任何 我 需要 的 幫助 . +I wish I had not said that at the party . ||| 我 希望 我 在 聚會 上 沒 說 過 那話 . +What time does it start ? ||| 什么 时候 开始 ? +He himself did it . ||| 是 他 自己 做 的 . +Tell me when to stop . ||| 告訴 我 甚麼 時候 停下 . +What were you up to last night ? ||| 你 昨天晚上 做 什麼 ? +Tell me again where you live . ||| 再 跟 我 說 一次 , 你 住 哪 ? +Our eyes take time to adjust to the dark . ||| 我们 的 眼睛 需要 时间 来 适应 黑暗 . +A man must work . ||| 男人 应该 工作 . +Does Tom have a girlfriend ? ||| 湯姆 有 女朋友 嗎 ? +Better late than never . ||| 迟 做 总比 不 做好 . +Does not Tom go to Australia every month ? ||| 汤姆 不是 每个 月 都 去 澳大利亚 吗 ? +Who told you that Tom and I are dating ? ||| 谁 告诉 你 我 和 汤姆 在 交往 的 ? +It seems as if I am the only person here capable of doing it . ||| 看来 我 是 这里 唯一 有 能力 做 这件 事 的 人 . +I do not like this idea . ||| 我 不 喜歡 這個 主意 . +The train is due to arrive at noon . ||| 火車 該 在 中午 到 . +The sheet is on the bed . ||| 床单 在 床上 . +I really need a drink now . ||| 我 现在 真 需要 来 杯 喝 的 . +The couple had a son . ||| 这 对 夫妇 生 了 个 儿子 . +Tom needs to see you in ten minutes . ||| 湯姆 需要 在 十分 鍾 內 見 到 你 . +I go into town every weekend . ||| 我 每 周末 都 会 去 市区 . +He told us an interesting story . ||| 他 告訴 了 我們 一個 有趣 的 故事 . +Put the gun on the table . ||| 把 槍 放在 桌子 上 . +The museum is open from Monday to Friday . ||| 博物馆 周一 到 周五 开门 . +Yes , I have a good idea . ||| 是 的 , 我 有 一個 好 主意 . +I borrowed Tom is phone this morning . ||| 我 今天 早上 跟 Tom 借手 機 . +I thought it best to remain silent . ||| 我 想 最好 還是 保持沉默 . +What newspaper do you subscribe to ? ||| 你 訂閱 了 什麼 報紙 ? +The law is not always fair . ||| 法律 並 不 總是 公平 的 . +War broke out in 1941 . ||| 战争 于 1941 年 爆发 . +Tom is not a good person . ||| 湯姆 不是 好人 . +I have never been this happy before . ||| 我 从未 这么 高兴 . +She cut the apple with a knife . ||| 她 用 刀子 切 蘋果 . +We accept your challenge . ||| 我們 接受 你們 的 挑戰 . +I do not like this jacket . ||| 我 不 喜歡 那件 夾克 . +Do not underestimate my power . ||| 不要 低估 我 的 力量 . +Everyone is here except for him . ||| 除了 他 每個 人 都 在 這裡 . +Fur coats are on sale . ||| 毛 皮大衣 在 打折 . +I want to drink something cold . ||| 我 想 喝 冷 飲 . +I am going to propose to her . ||| 我 打算 向 她 求婚 . +We could see nothing but fog . ||| 除了 雾 我 看不见 任何 东西 . +Where is the nearest police station ? ||| 最近 的 警察局 在 哪里 ? +What did you open it with ? ||| 你 用 什么 打开 的 ? +What do you usually do after dinner ? ||| 你 通常 晚 飯 後 做 什麼 ? +My father neither smokes nor drinks . ||| 我 的 父親 不 抽 菸 也 不 喝酒 . +Drive carefully . ||| 安全 地 駕駛 . +Tom suddenly looked concerned . ||| 湯姆 突然 看 起來 在 擔心 . +The project is ongoing . ||| 该 项目 正在 进行 中 . +I found it easy to speak English . ||| 我 發覺 說 英語 很 簡單 . +He cleaned his room on Sunday . ||| 他 在 週日 打掃 他 的 房間 . +Fish cannot live out of water . ||| 魚離 開水 就 無法 生存 . +Some of my friends can speak English well . ||| 我 的 一些 朋友 英语 说 得 很 好 . +I would do it if I could . ||| 我 如果 能 做 就 做 了 . +He will be a good husband to my sister . ||| 他 会 是 我 妹妹 的 好 丈夫 的 . +I want to see a movie . ||| 我 要 去 看 電影 . +I take a bath every day . ||| 我 每天 洗 一次 澡 . +I am your partner . ||| 我 是 你 的 夥 伴 . +What is Tom so angry about ? ||| 湯姆 為 了 甚麼 生氣 ? +I let Tom watch a little TV after he finished his homework . ||| 我 让 Tom 在 做完作业 后 看 一点 电视 . +Bring it to me . ||| 把 它 带给 我 . +My job is washing dishes . ||| 我 的 工作 是 洗盤子 . +Tom should have known better . ||| 汤姆 应该 更 清楚 . +She is my daughter . ||| 她 是 我 女儿 . +Do you know what I mean ? ||| 你 知道 我 的 意思 嗎 ? +I have no intention of resigning . ||| 我 無意 辭職 . +I know why you are happy . ||| 我 知道 你 为什么 高兴 . +The tablecloth is in the cabinet . ||| 桌布 在 櫥櫃 裡 . +My legs are smaller than yours . ||| 我 的 腿 比 你 的 小 . +Tom does not trust the police . ||| 湯姆 並 不 信任 警察 . +He was born on July 28th , 1888 . ||| 他 出生 於 1888 年 7 月 28 日 . +The fire alarm rang . ||| 火警 警报 响 了 . +What happened here ? ||| 这儿 发生 了 什么 事 ? +It really comes in handy . ||| 這 真的 能派 上 用場 . +I wish I could swim . ||| 我 希望 我 會 游泳 . +No problem at all ! ||| 没有 任何 问题 ! +Is breakfast included ? ||| 包括 早饭 吗 ? +I want to be as tall as Tom . ||| 我 想 和 Tom 一樣 高 . +Not everyone who lives here is rich . ||| 並 不是 每個 住 在 這裡 的 人 都 是 富有 的 . +Tomorrow , he will land on the moon . ||| 明天 他 会 在 月球 降落 . +Did you notice anything strange ? ||| 你 注意 到 奇怪 的 地方 了 嗎 ? +You should run for city council . ||| 你 应该 去 竞选 城市 委员会 . +If you do not behave , Santa will not come . ||| 你 一旦 不 做 个 乖孩子 , 圣诞老人 就 不会 来 噢 . +I know you are upset . ||| 我 知道 你 难过 . +At night , she gazed at the moon . ||| 她 在 夜晚 望著 月亮 . +She is neither rich nor famous . ||| 她 既 没钱 , 也 不 出名 . +You will understand someday . ||| 你 有 一天 會 明白 . +A fire broke out in my neighborhood last night . ||| 昨晚 我 领 居家 着火 了 . +What language is spoken in Egypt ? ||| 在 埃及 说 什么 语言 ? +Smoking is not allowed here . ||| 这里 不 允许 抽烟 . +He applied himself to the study of music . ||| 他 潛心 研究 音樂 . +Your dog is very big . ||| 你 的 狗 非常 胖 . +What does this mean ? ||| 这 是 什么 意思 ? +Do you have a garage ? ||| 你 有 車庫 嗎 ? +The teacher lined the children up in order of height . ||| 老师 按照 身高 给 孩子 们 排队 . +Can we lock this door ? ||| 我們 能 鎖 門 嗎 ? +Did you go anywhere during the summer vacation ? ||| 这个 暑假 你 有 去 哪儿 玩 吗 ? +Can I borrow your car tonight ? ||| 我 今晚 可以 借 一下 你 的 车 吗 ? +Tom will never see you again . ||| 汤姆 再也不会 见 你 了 . +I have eight brothers and sisters . ||| 我 有 八個 兄弟姐妹 . +You look very dignified . ||| 你 看 起來 很 威嚴 . +He realized his dream of becoming an artist . ||| 他 實現 了 當 兿 術 家 的 梦想 . +I hope you have sweet dreams . ||| 祝 你好 梦 . +Keep away from the electrical equipment . ||| 遠離 電器 設備 . +I got him to polish my shoes . ||| 我 要 他 擦亮 我 的 皮鞋 . +This is never going to end . ||| 這個 永遠 結束 不了 . +Would you like some more gravy ? ||| 你 想 再 來 些 醬汁 嗎 ? +Do you plan to go overseas ? ||| 你 打算 出國 嗎 ? +We will know the truth before long . ||| 我們 不久 將 知道 真相 . +I just said something very stupid . ||| 我 刚 说 了 很蠢 的话 . +Do not talk to me like this . ||| 不要 这样 对 我 讲话 . +Are you busy now ? ||| 現在 您 忙 嗎 ? +I had lost my pen . ||| 我 弄 丟了 我 的 筆 . +I can only speak for myself . ||| 我 只能 代表 我 自己 講 話 . +He lives in a village near Osaka . ||| 他 住 在 大阪 附近 一座 鎮 上 . +Listen and listen carefully . ||| 听 而且 听 仔细 . +I want more detailed information . ||| 我 要 更多 詳細 的 訊息 . +When did you begin playing golf ? ||| 你 什麼 時候 開始 打 高爾夫 球 ? +I am going to take a bath . ||| 我 打算 洗 个 澡 . +Do you feel like going swimming ? ||| 你 想 去 游泳 嗎 ? +Would you like to go ? ||| 你 想 去 嗎 ? +Clean the window with a damp cloth . ||| 用 濕布 清潔 窗戶 . +Switzerland is a beautiful country . ||| 瑞士 是 一個 美麗 的 國家 . +Tom has been wounded . ||| Tom 负伤 了 . +I feel as if I have woken up from a nightmare . ||| 我 覺得 我 好像 從 惡 夢 中 驚醒 . +She is now eighty @-@ one years old . ||| 她 現在 八十一 歲 了 . +It does not matter . ||| 没关系 . +I think this medicine will do you good . ||| 我 想 这 药会 对 您 有 好处 的 . +Agriculture consumes a great amount of water . ||| 农业 需要 消耗 的 大量 水 . +How will we protect ourselves ? ||| 我們 怎麼 保護 自己 ? +I like to take a walk after meals . ||| 我 喜欢 饭后 散步 . +Tom began to learn French about three years ago . ||| 汤姆 大约 三年 前 开始 学法语 . +There are many endangered species . ||| 有 許多 瀕 危 物种 . +Once he had written the letter , he sent it . ||| 信 一 写 好 , 他 就 把 它 寄 了 . +Hang on ! ||| 等 一下 ! +I just knew you would say that . ||| 我 就 知道 你 会 这么 说 . +He wants to be a tennis player . ||| 他 想 成為 一名 網球 選手 . +What were you doing this morning ? ||| 今天 早上 你 在 做 什么 ? +I can play Chopin . ||| 我 會 彈 蕭邦 . +Tom is very good at doing things with his hands . ||| 汤姆 善于 动手 做事 . +He was late for school yesterday . ||| 他 昨天 上学 迟到 了 . +You just saved me a lot of time . ||| 你 省 了 我 好多 時間 . +Keep on smiling . ||| 保持 微笑 . +How many plates do we have ? ||| 我們 有 多少 個盤子 ? +He does not have a job . He is retired . ||| 他 没有 工作 , 他 退休 了 . +I belong to a tennis club . ||| 我 是 网球 俱乐部 的 会员 . +I intend to study abroad next year . ||| 我 打算 明年 出國留學 . +I still live at my dad is place . ||| 我 還 住 在 我 父親 的 房子 裏 . +A friend of mine came to see me during the day . ||| 我 的 一個 朋友 在 白天 的 時候 來看 我 . +I have got time . ||| 我 有 时间 . +I am glad to see you again . ||| 很 高興 再次 見 到 你 . +I thought Tom would want to know about that . ||| 我 本 以为 汤姆 愿意 了解 这件 事 . +He is doing his best . ||| 他 在 全力以赴 . +I want to see him very much . ||| 我 非常 想 见到 他 . +Tom looks very happy . ||| 汤姆 看起来 非常 开心 . +My cats will love this . ||| 我 的 猫会 爱 上 这个 . +I am worried about Tom . ||| 我 在 為 湯姆 擔心 . +This noise is driving me crazy . ||| 這個 噪聲 快 把 我 逼 瘋 了 . +I want you to open the window . ||| 我 要 你 把 窗戶 打開 . +The visitor sat across from me . ||| 訪客 坐在 我 的 對面 . +Were you serious about that ? ||| 你 对 那 是 认真 的 吗 ? +Tom is never going to cry . ||| 汤姆 永远 不会 哭 . +She dreamed that she was a princess . ||| 她 梦见 她 是 一个 公主 . +My mother did nothing but weep . ||| 我 的 母亲 只是 默默地 哭泣 . +There are seven men and four women in my section . ||| 在 我 的 部门 里 有 七 男 四女 . +Whose book is this ? ||| 這 是 誰 的 書 ? +Tom is parents were not particularly pleased . ||| 汤姆 的 父母 不是 特别 高兴 . +This is what Tom would want me to do . ||| 這 是 湯姆會 想 讓 我們 做 的 . +My aunt made me a new skirt . ||| 我 嬸嬸 做 了 一條 新 裙子 給 我 . +I wanted to show it to you . ||| 我 想 把 它 給 你 看 . +I will give you a ring . ||| 我会 打电话 给 你 . +Politics leaves him cold . ||| 他 對 政治 沒有 興趣 . +He and I were inseparable friends during our time together in school . ||| 我 和 他 在 學生 時代 是 分不開 的 朋友 . +I almost did not meet her . ||| 我 幾乎 沒有 遇見 她 . +Can you guess what I have here ? ||| 你 能 猜到 我 有 什么 吗 ? +You make life worth living . ||| 你 讓 生命 值得 活下去 . +Fill the bucket with water . ||| 把 水裝 滿 桶子 . +Keep your eyes open . ||| 睜 大 你 的 眼睛 . +The child had no overcoat on although it was very cold . ||| 尽管 天气 很 冷 , 孩子 却 没有 大衣 穿 . +I am developing an Android application . ||| 我 正在 开发 一个 安卓 应用 . +The dog was sleeping on the mat . ||| 狗 在 地毯 上 睡觉 . +Look what happened . ||| 看看 發生 了 什麼 . +Turn on the radio , please . ||| 请 打开 收音机 . +It is a pity they are getting divorced . ||| 很 遗憾 他们 离婚 了 . +Why are not you married yet ? ||| 你 为啥 还 不 结婚 ? +I plan to spend the New Year is holiday in Australia . ||| 我 打算 在 澳大利亚 过 新年 . +He played tennis all day long . ||| 他 整天 打 網球 . +Tom went down the hill . ||| 汤姆 走 下 山坡 . +You 'd better take an umbrella with you in case it rains . ||| 以防 下雨 你 最好 带 把 伞 . +They went in opposite directions . ||| 他們 往 相反 的 方向 去 . +Where did you go yesterday ? ||| 你 昨天 去 哪裡 了 ? +How can I get to the police station ? ||| 我 怎么 去 警察局 ? +Is it all there ? ||| 全都 在 那裡 嗎 ? +The boy was naked to the waist . ||| 男孩 赤裸 着 上身 . +Could you tell me what my choices are ? ||| 你 能 告訴 我 我 的 選項 是 甚麼 嗎 ? +I would like mine rare . ||| 我 的 牛排 要生 的 . +It is not good for a scientist to get emotional . ||| 對 一個 科學家 來說 , 情緒 化 是 不好 的 . +Tom likes hot curry . ||| 湯姆喜 歡辣 咖哩 . +I forgot to telephone him today . ||| 我 今天 忘 了 打 電話 給 他 . +Mary placed her baby in a car seat for the flight . ||| 航程 中瑪麗 把 她 的 寶寶 放在 嬰兒 汽車 座椅 上 . +Are you a bachelor ? ||| 你 是 单身 吗 ? +This should be a lot of fun . ||| 這 應 該 很 有意思 . +What are you doing there ? ||| 你 在 那里 做 什么 呢 ? +He had his socks on inside out . ||| 他 将 袜子 的 里外 穿反 了 . +She made faces at that woman . ||| 她 對 那個 女人 做 了 鬼 臉 . +It seems to me that she is a little selfish . ||| 我 觉得 她 有点 自私 . +I thought that Tom would enjoy the party . ||| 我 以为 汤姆 会 喜欢 这个 聚会 . +A trip to America was equivalent to a two @-@ year salary for her . ||| 去 美国 旅行 一次 相当于 她 两年 的 工资 . +The cab driver was not seriously injured . ||| 出租车 司机 没有 受 重伤 . +That is a lot of cash . ||| 那 是 很多 錢 . +Ca not you stay a little longer ? ||| 你 不能 待 久 一點 嗎 ? +Tom closed his eyes and began to count sheep . ||| 汤姆 闭上 了 眼睛 开始 数羊 . +We are heroes . ||| 我們 是 英雄 . +Mary plays the piano . ||| 瑪麗彈 鋼琴 . +You should always tell the truth . ||| 你 應 該 永遠 說 實話 . +My dad died before I was born . ||| 我 出生 前 , 我 父亲 就 死 了 . +Has not Tom told you anything ? ||| 汤姆 什么 都 没 告诉 你 吗 ? +She scolded her son for being lazy . ||| 她 罵 她 的 兒子 懶惰 . +A Mexican taught him Spanish . ||| 一個 墨西哥人 教 了 他 西班牙文 . +Which is heavier , lead or gold ? ||| 哪個 比較 重 , 鉛 還 是 黃金 ? +What is learned in the cradle is carried to the tomb . ||| 幼年 時學 的 東西 , 一輩子 不 會 忘 記 . +When he was a child , he would go fishing on Sundays . ||| 他 小时候 , 星期天 会 去 钓鱼 . +Tom is Mary is former husband . ||| 湯姆 是 瑪麗 的 前夫 . +I think that it is unlikely Tom will get elected . ||| 我 觉得 汤姆 不太可能 会 当选 . +Do not interrupt our conversation . ||| 不要 打斷 我們 的 談話 . +You should be a diplomat . ||| 你 应该 做 一个 外交官 . +She usually sleeps for eight hours . ||| 她 通常 睡 八個 小 時 . +I will go to Hokkaido tomorrow . ||| 我 明天 要 去 北海道 . +When she saw that they had no schools , she started one . ||| 当 她 发现 他们 还 没有 学校 , 她 就 办 了 一个 . +The sun went below the horizon . ||| 太陽 落到 地平線 下 了 . +I am a citizen of the world . ||| 我 是 世界 公民 . +I want you to help us find out who killed Tom . ||| 我 想 讓 你 幫 我們 查出 來 誰 殺 了 湯姆 . +Do you have a red pencil ? ||| 你 有 紅色 的 鉛 筆 嗎 ? +Tom can not sleep without a light on . ||| Tom 没 办法 在 没有 亮灯 的 时候 入睡 . +I think exams ruin education . ||| 我 认为 考试 破坏 教育 . +Tom just got divorced , too . ||| 湯姆 也 剛 離婚 . +I woke up at five this morning . ||| 我 今天 早上 五點 醒來 . +Reporters do not hesitate to intrude into people is privacy . ||| 记者 没有 犹豫 地 去 干涉 了 人们 的 私生活 . +Tom was already at work . ||| 湯姆 已經 在 上班 了 . +She won many competitions . ||| 她 贏 了 許多 比賽 . +I have a very sore arm where you hit me . ||| 你 打 在 我 手臂 上 的 地方 超级 痛 . +I took off my hat and entered the church . ||| 我 摘下 帽子 进 了 教堂 . +Tom was buried Monday . ||| 汤姆 在 周一 被 埋 了 . +Has Tom gone insane ? ||| Tom 瘋 了 嗎 ? +Would you please turn the TV off ? ||| 请 把 电视机 关掉 好 吗 ? +We sometimes meet them . ||| 我們 有 時會 見到 他們 . +What grade is your sister in ? ||| 你 的 妹妹 唸 幾 年 級 ? +I do not like summer . ||| 我 不 喜欢 夏天 . +I can call Tom if you want . ||| 如果 你 想要 的话 , 我 可以 打电话 给 汤姆 . +Is the door open ? ||| 門 開著 嗎 ? +They will tear down the old building in two days . ||| 他們 將 在 兩天 內 拆除 這棟 舊 的 建築物 . +Tom lied . ||| 汤姆 说谎 了 . +Fasten your seat belt , please . ||| 請 繫 好 安全 帶 . +My father is too busy to take a walk . ||| 我 父親 太 忙 而 無法 去 散步 . +She liked tennis and became a tennis coach . ||| 她 喜欢 网球 并 成为 了 一个 网球 教练 . +Let is go ! ||| 我們 走 吧 ! +In a crisis , you must get in touch with your teacher . ||| 在 危險 的 時候 你 必須 跟 你 的 老師 聯 繫 . +She always looked happy , but never was . ||| 她 總是 看 起來 很快 樂 , 但 實際 上 從來 不快 樂 . +Merry Christmas ! ||| 聖誕 快樂 . +You must return the book to him . ||| 这 本书 你 该 还给 他 . +I am quite satisfied with my life . ||| 我 对 我 的 人生 很 满意 . +I do not mind if you go to bed before I get home . ||| 我 不介意 你 在 我 回到 家 之前 先 去 睡觉 . +Do you believe in God ? ||| 你 相信 上帝 吗 ? +Something may have happened to him . ||| 他 可能 發生 了 什麼 事情 . +He will be back in ten minutes . ||| 他 十分 鐘 後 會 回來 . +He got engaged to my cousin . ||| 他 和 我 的 堂姊妹 订婚 了 . +Look out for pickpockets . ||| 小心 扒手 . +A friend in need is a friend indeed . ||| 患難 見 真情 . +Is this snake safe to touch ? ||| 摸 這條 蛇 安全 嗎 ? +You make me feel so guilty . ||| 你 讓 我 感到 很 內疚 . +You can not keep a secret . ||| 你 不能 有 秘密 . +I want to go to see a movie . ||| 我 要 去 看 電影 . +Graham Greene is a favorite author of mine . ||| 格雷厄姆 葛林 是 我 最 喜歡 的 作家 之一 . +She makes herself up every morning . ||| 她 每天 早上 自己 起床 . +It is easy for monkeys to climb trees . ||| 猴子 爬树 容易 . +Look back ! ||| 回头 看 ! +It is pretty heavy . ||| 它 真 重 . +I could have told you that . ||| 我 應該 告訴 過 你 了 . +He accomplished his mission . ||| 他 完成 了 他 的 使命 . +You want to remain anonymous . ||| 你 想 保持 匿名 身份 . +Tom is wearing gloves . ||| 汤姆 戴 着 手套 . +She will care for you from now on . ||| 从 现在 开始 , 由 她 来 照顾 你 . +Wires are used to convey electricity . ||| 電線 被 用來 運送 電力 . +Tom will not be able to do that job . ||| 汤姆 做不了 那 项 工作 +With your approval , I would like to offer him the job . ||| 如果 您 同意 , 我 想 給 他 這份 工作 . +Do not put anything on top of the box . ||| 盒子 上面 不要 放 任何 東西 . +Do you really think that Tom will not come ? ||| 你 真的 认为 汤姆 不会 去 吗 ? +She made room for an old lady . ||| 她 讓 座 給 一位 老太太 . +I just wanted to prove to myself that I could do this . ||| 我 只 想 向 自己 证明 我 可以 做到 . +I told you not to talk about the matter in her presence . ||| 我 跟 你 说 过 她 在 的 时候 不要 说 这件 事 . +We must not break our promise . ||| 我們 不能 違背 我們 的 承諾 . +I will not be here tomorrow . ||| 我 明天 不 在 这儿 . +Can I try this on ? ||| 我 能 试一下 吗 ? +Please speak more clearly . ||| 请 说 得 更 清楚 些 . +I washed the dishes after supper . ||| 晚饭 后 我 洗 了 餐具 . +He is a DJ . ||| 他 是 一个 DJ . +She will be the first Japanese woman astronaut . ||| 她 將 會 成為 日本 第一 個 女性 太空 人 . +None of the telephones are working . ||| 所有 的 電話 都 不通 . +My uncle lives near the school . ||| 我 叔叔 住 在 学校 附近 . +Get them before they get us . ||| 先下手为强 , 后 下手 遭殃 . +Mom is getting dinner ready . ||| 媽媽 快 把 晚餐 準備 好 了 . +Tom has an old car . ||| 湯姆 有 輛 舊車 . +I hope he will be able to come ! I would like to see him . ||| 我 希望 他 能 來 ! 我 想 見 他 . +Approximately thirty young people attended . ||| 约 有 三十个 年轻人 到 了 . +Can you help me find a job ? ||| 你 能 幫 我 找 一個 工作 嗎 ? +Please tell me your name . ||| 請 告訴 我 你 的 名字 . +I stood waiting for a bus . ||| 我 站著 等 公車 . +Have you checked our supplies recently ? ||| 你 最近 检查 我们 的 补给 了 吗 ? +If it is not too expensive , I will do that . ||| 如果 不是 太贵 的话 , 我会 买 的 +Speak clearly . ||| 講 清楚 . +This is by far the best novel that has been published this year . ||| 这 显然 是 今年 出版 的 最好 的 小说 . +You can trust him to keep his word . ||| 你 可以 相信 他 会 信守诺言 . +Do you want to hear what I think ? ||| 你 想 聽 聽 我 是 怎麼 想 的 嗎 ? +Stay out of the rain . ||| 躲雨 . +Tom can not tell Mary his real feelings . ||| 汤姆 不能 把 他 的 真实 感受 告诉 玛丽 . +She is a middle @-@ aged fat woman . ||| 她 是 個 中年 胖女人 . +To the man who only has a hammer in the toolkit , every problem looks like a nail . ||| 对 工具箱 里 只有 一把 榔头 的 人 来说 , 所有 的 问题 都 像 钉子 . +Tom wanted to see Mary is room . ||| 湯姆 想 看看 瑪麗 的 房間 . +I know it is time to go , but I want to stay longer . ||| 我 知道 該 走 了 , 但 我 想 留 久 一點 . +My mother gets up early every morning . ||| 我 媽媽 每天 早上 早起 . +I will treat you to dinner . ||| 晚饭 我 请客 . +Dinner will be ready by six @-@ thirty . ||| 晚餐 將 在 六點 半前 開飯 . +My team is always losing . ||| 我们 队 总是 输 . +He was unsure how he would get there , and when . ||| 他 不 确定 他 怎么 到 哪里 , 以及 什么 时候 . +She thought of a good solution . ||| 她 想到 了 一个 好 的 解决办法 . +I do not know whether she will come . ||| 我 不 知道 她 是否 會來 . +She has always lived in Otaru . ||| 她 一直 住 在 小 樽 . +This is the real world . ||| 這 是 真實 的 世界 . +You will have to wait and see . ||| 你 得 等一等 看 . +Are you saying you do not want to go to Tom is party ? ||| 你 的 意思 是 你 不想 去 汤姆 的 派对 ? +I worry about him . ||| 我 擔心 他 . +I have been looking for my tripod . ||| 我 一直 在 找 我 的 三腳 架 . +We are going to set up shelters . ||| 我们 要 建立 避难所 . +I met her on campus yesterday . ||| 我 昨天 在校 園裡 遇到 了 她 . +They want this . ||| 他們 想要 這個 . +Why are we wasting time with this ? ||| 为什么 我们 在 这 上面 浪费时间 ? +I need it ASAP . ||| 我 尽快 需要 . +Is eating with chopsticks difficult ? ||| 用 筷子 吃 飯 難 嗎 ? +He has dozens of English books . ||| 他 有 幾 十本 的 英文 書籍 . +I am willing to share . ||| 我 乐意 分享 . +Tom asked me if I liked chocolate . ||| 汤姆 问 我 是否 喜欢 巧克力 . +That dog is big . ||| 這 隻 狗 很大 . +He left high school at seventeen . ||| 他 十七 歲 的 時候 離開 了 高中 . +Please give me a break . ||| 饶 了 我 吧 ! +Are you free tomorrow ? ||| 你 明天 有空 吗 ? +I do not mind lending you the money provided you pay it back within a month . ||| 假如能 一个月 之内 还 上 的话 , 我 可以 把 钱 借给 你 . +Can you lend me 10,000 yen ? ||| 你 能 借 給 我 10000 日元 ? +Tom lied to the others . ||| 汤姆 向 其他人 撒谎 了 . +What happened ? The car is slowing down . ||| 發生 了 什麼 事 ? 車子 慢下 來 了 . +Do not blame Tom for what Mary did . ||| 别 为 玛丽 犯 的 错 责备 汤姆 . +That is a pheasant . ||| 那 是 一 隻 野 雞 . +I have seen that . ||| 我 見 過 . +That is weird , is not it ? ||| 那 真 奇怪 , 不是 么 ? +They will understand that . ||| 他們 會 明白 . +Fire is always dangerous . ||| 火 是 非常 危險 的 . +I met him on his way home . ||| 在 他 回家 的 路上 我 遇見 了 他 . +Please forgive me . ||| 请原谅 我 . +You 'd better put on a raincoat . ||| 您 最好 穿 一件 雨衣 . +It takes time . ||| 这 需要 时间 . +Can you guess what I have ? ||| 你们 能 猜到 我 有 什么 吗 ? +Do you study every day ? ||| 您 每天 都 讀 書 嗎 ? +Are you and Tom leaving together ? ||| tom 和 你 一起 離開 嗎 ? +Tom is the one that has been waiting the longest . ||| 汤姆 是 等 了 最长 时间 的 人 . +I would rather not go there alone . ||| 我 寧可 不要 單獨 去 那裡 . +I will alert Tom . ||| 我会 警告 汤姆 . +Millions were affected that day . ||| 那天 有 數百萬 人 受 影響 . +That architect builds very modern houses . ||| 那个 建筑师 创建 了 非常 现代 的 房屋 . +Thank you very much for the wonderful dinner last night . ||| 非常 感謝 您 昨晚 美妙 的 晚餐 . +They are eating apples . ||| 他們 正在 吃 蘋果 . +I would like to go skiing with her . ||| 我 想 和 她 去 滑雪 . +I am a high school student . ||| 我 是 个 高中生 . +Will you use this ? ||| 你 要 用 這個 嗎 ? +He raised his hand . ||| 他 舉起 他 的 手 . +I would like to see your father . ||| 我 想 去 看 你 的 父親 . +Tom came back . ||| 湯姆 回來 了 . +He studied hard . ||| 他 努力 學習 . +We bought a comfortable new armchair . ||| 我們 買 了 張 舒適 的 扶手椅 . +Do not translate English into Japanese word for word . ||| 不要 逐字逐句 的 把 英文 翻譯 成 日文 . +Have you finished reading the book ? ||| 你 讀 完 這 本書 了 嗎 ? +I can not remember . ||| 我 想不起 來 . +You 'd better not smoke while on duty . ||| 當 你 值勤 時 最好 不要 抽煙 . +What do you think I have been doing ? ||| 你 觉得 我 之前 在 做 什么 ? +Would you like to have some coffee ? ||| 你 要 喝 點 咖啡 嗎 ? +She said something to him . ||| 她 對 他 說 了 些 話 . +Are you going to come back ? ||| 你 要 回來 嗎 ? +We should sit down . ||| 我們 應該 坐下 . +I was absent from the party . ||| 我 沒 去 派 對 . +Which way should we go ? ||| 我们 应该 往 哪个 方向 走 ? +Tell us what to do next . ||| 告訴 我們 下 一步 該 怎麼 做 . +I will dream about you . ||| 我会 梦 到 你 的 . +They are afraid of us . ||| 他們 害怕 我們 . +She asked him to open the window . ||| 她 要求 他 打開 窗戶 . +She used to play tennis on Sunday . ||| 她 以前 在 週日 打 網球 . +I did not know you did not know how to swim . ||| 我 不 知道 你 不 會 游泳 . +It is not easy to learn a foreign language . ||| 学会 一门 外语 不 容易 . +His mother is an English teacher . ||| 他 的 母親 是 一位 英語 教師 . +He has a good reading knowledge of French . ||| 他 能 很好 地 读懂 法语 . +All of my attempts have failed . ||| 我 所有 的 尝试 都 失败 了 . +There was no water in the river . ||| 這條 河 的 水 乾 了 . +The baby has finally stopped crying . ||| 婴儿 终于 不 哭 了 . +His house is not far from this store . ||| 他家 离 这间 商店 不远 . +I need a bigger box . ||| 我 需要 個 更 大 的 箱子 . +Tom wants to tell you about Mary . ||| 汤姆 想 跟 你 说 玛丽 的 事 . +All lawyers are liars . ||| 律师 都 是 骗子 . +It is not practical . ||| 这 不 实用 . +She cannot do without her car . ||| 她 離 不開 她 的 車 . +We should have taken the schedule into consideration . ||| 我们 本该 考虑一下 行程 . +The rain is letting up . ||| 雨 变小 了 . +Do not you want to go out ? ||| 你 不想 出去 嗎 ? +He went back to the store . ||| 他 回 店里 去 了 . +They burst into tears . ||| 他們 突然 哭 了 . +Can I ask you a question ? ||| 我 能 问 您 一个 问题 吗 ? +Her look says that she loves you . ||| 她 的 樣子 在說 她 愛 你 . +We do not think it is serious . ||| 我们 认为 这 不 严肃 . +I did not trust Tom and he did not trust me , either . ||| 我 不 信任 汤姆 而且 汤姆 也 不 信任 我 . +These paintings are beautiful . ||| 這些 畫 很美 . +I have to go to bed . ||| 我 该 上床 了 . +Tom watched in horror . ||| 汤姆 惊恐 地 盯 着 . +I think he is happy . ||| 我 想 他 很快 樂 . +Did you have a good rest ? ||| 休息 好 嗎 ? +Does your school have a library ? ||| 你 的 学校 有 图书馆 吗 ? +He was determined to go abroad . ||| 他 下定 決心 要 出國 了 . +What are you guys going to do ? ||| 你们 这些 家伙 想 去 干什么 ? +Nobody is too old to learn . ||| 活到老 學到 老 . +Tom enjoyed himself at the party . ||| 汤姆 在 晚会 玩 的 很 开心 . +My friends do not play tennis . ||| 我 的 朋友 不 打 網球 . +Apart from on rainy days , I always ride my bike to work . ||| 除了 雨天 , 我 都 是 骑车去 上班 的 . +The bus does not always come on time . ||| 巴士 不 总是 能 准点 到达 . +Did not I tell you so ? ||| 我 不是 告訴 過 你 了 嗎 ? +Happy New Year ! ||| 新年 快 樂 ! +I feel sick . ||| 我 有点 恶心 . +I do not go to school on Sunday . ||| 我 周日 不 去 学校 . +Grab this . ||| 抓住 这个 . +My legs still hurt . ||| 我 的 腿 还是 很痛 . +We are all looking forward to seeing you and your family . ||| 我们 都 期待 看到 你 和 你 的 家人 . +Who is she ? ||| 她 是 谁 ? +I accept the offer . ||| 我 接受 了 报价 . +Your dog is very big . ||| 您 的 狗 非常 胖 . +She did not want to speak to anyone . ||| 她 不想 跟 任何人 說 話 . +What are you punishing them for ? ||| 您 为什么 惩罚 他们 ? +What is it that you want ? ||| 你 想要 什麼 ? +He is had many unhappy experiences . ||| 他 有 许多 不 愉快 的 经历 . +I think this book is easy . ||| 我 觉得 这 本书 很 简单 . +They tried very hard to gain an advantage over one another . ||| 他們 很 努力 地 超過 對方 獲得 優勢 . +Tom lost . ||| 汤姆 输 了 . +Do you want to be an actor in a movie ? ||| 你 想 成為 一名 電影 演員 嗎 ? +My father grows rice . ||| 我 爸种 水稻 . +They can not hear me either . ||| 他們 也 不能 聽見 我 說 話 . +He suspects me of telling a lie . ||| 他 懷疑 我 說 謊 . +She is fond of taking pictures . ||| 她 喜欢 拍照片 . +I can cook . ||| 我会 做饭 . +It was very cold this morning . ||| 今天 早上 很 冷 . +Do not sign the contract in pencil . ||| 别 用 铅笔 签合同 . +What is that building ? ||| 那栋 建筑 是 什么 呢 ? +English is not easy , but it is interesting . ||| 英语 不 简单 , 但是 很 有趣 . +This is just between you and me . ||| 这 只是 我们 之间 的 秘密 . +Examine this . ||| 调查 下 这个 . +While I was reading , I fell asleep . ||| 當 我 讀 書 的 時候 , 我 睡著 了 . +There was a large crowd in the park . ||| 公园 里 有 一大群 人 . +I am the tallest in our class . ||| 我 在 班里 是 最高 的 . +I see her sweeping the room . ||| 我 看见 她 在 打扫 房间 . +I will never forget the day when I first met him . ||| 我 永远 不会 忘记 那天 我 第一次 与 他 见面 . +Could you come up here ? ||| 你 能 来 这里 吗 ? ? +That red dress looks good on her . ||| 她 穿 那件 紅色 的 衣服 很 好看 . +If I had the money , I 'd buy a new house . ||| 如果 我 有 錢 , 我 會 買 一個 新房子 . +Do not leave me here alone . ||| 別 把 我 一個 人 留在 這裡 . +We should run some tests . ||| 我们 应该 进行 测试 . +Why are your ears so big ? ||| 為 什麼 你 的 耳朵 這麼 大 ? +Tom comes home almost every weekend . ||| 湯姆 幾乎 每個 週末 都 回家 . +I do not understand this sentence . ||| 我 不 明白 這 句 話 . +The reservation is already made . ||| 预订 好 了 . +He is old enough to drive . ||| 他 年 紀夠 大 可以 開車 . +I study French after dinner every day . ||| 我 每天 吃 过 晚饭 后 都 会 学法语 . +Tom wants to pay back the money he owes . ||| 汤姆 想去 还 欠 的 钱 . +My grandfather is fond of taking a walk early in the morning . ||| 我 的 爷爷 喜欢 大清早 的 散步 . +I always eat before going to school . ||| 我 总是 在 上学 前 先 吃饭 . +The boat was piloted safely into harbor . ||| 船 被 安全 地 领入 港口 . +This is my business address . ||| 这 是 我 的 公司地址 . +He acted as my guide . ||| 他 擔 任我的 嚮 導 . +I expect her back by six o 'clock . ||| 我 希望 她 六點 前 回來 . +I found the boy fast asleep . ||| 我 发觉 男孩儿 酣然 入睡 了 . +It is so hard . ||| 太 难 了 . +Tom is in the house . ||| 湯姆 在家 裡 . +You are your own worst enemy . ||| 你 是 你 自己 最大 的 敌人 . +Do it when you have time . ||| 你 有 时间 再 做 吧 . +" Is he going to swim tomorrow ? " " Yes , he is . " ||| " 他 明天 會去 游泳 嗎 ? " " 是 的 , 他 會 . " +The cargo ship arrived four hours early . ||| 货船 早 到 了 四 小时 . +I have been here for many years . ||| 我 在 這裡 已經 很多年 了 . +No security system is foolproof . ||| 沒有 防傻 的 安全 系統 . +The rain prevented me from going . ||| 雨 大 得 让 我 不能 走 . +Did anyone call me while I was out ? ||| 我 出去 的 时候 有人 打 我 电话 吗 ? +She gave us a present . ||| 她 給 了 我們 一個 禮物 . +I think we should reduce the price . ||| 我 觉得 我们 得 调低 价格 . +We are looking forward to seeing you and your family . ||| 我们 很 期待 见到 您 和 您 的 家人 . +Tom left a note for Mary on her desk . ||| 湯姆 給 瑪麗 在 她 桌上 留 了 便條 . +I got something nice for you . ||| 我 给你个 好 东西 . +You may as well come with me . ||| 你 不如 跟 我 一起 來 . +None of my friends drink coffee . ||| 我 的 朋友 都 不 喝咖啡 . +I got scolded severely by that teacher . ||| 我 被 那位 老師 嚴厲 斥責 了 . +The number of people who go abroad has been increasing . ||| 出国 的 人数 一直 在 增加 . +Watch your step . ||| 小心 脚下 . +Money talks . ||| 金钱万能 . +He poured cold water over himself . ||| 他 往 他 自己 身上 潑 了 一盆 冷水 . +I do not like her face . ||| 我 不 喜歡 她 的 臉 . +You used to smoke , did not you ? ||| 你 以前 吸煙 , 不是 嗎 ? +We will ask Tom and see what he thinks . ||| 我們 要 問 問 湯姆 , 看看 他 怎麼 想 . +He was an honest man . ||| 他 以前 是 个 诚实 的 人 . +That smells bad . ||| 那 不好 聞 . +I do not want to wait . ||| 我 不想 等 . +How many kids do you have ? ||| 你 有 幾個 孩子 ? +The meeting lasted until 5 . ||| 會議 一直 持續 到 5 點 鐘 . +He is doing very well considering he lacks experience . ||| 考虑 到 他 缺乏经验 , 他 做 得 [ 已经 ] 非常 好 了 . +Have you seen all these movies ? ||| 你 把 這些 電影 全 看 了 嗎 ? +Who told you that ? ||| 是 谁 给 你 说 那个 的 呢 ? +I feel like a rest . ||| 我 想 休息 一下 . +I made a bet that she would win the game . ||| 我 賭 她 贏 這 比賽 . +We can see Mt . Fuji clearly today . ||| 今天 我們 可以 清楚 地 看到 富士山 . +Can we do it ? ||| 我们 能 做到 吗 ? +This is the house I lived in when I was young . ||| 这 是 我 年轻 时候 住 的 房子 . +He really likes baseball . ||| 他 非常 喜欢 棒球 . +I did not meet anyone there . ||| 我 在 那裡 沒 遇見 任何人 . +He is always forgetting things . ||| 他 總是 忘記 事情 . +Everybody knows his name . ||| 每個 人 都 知道 他 的 名字 . +We understand . ||| 我们 明白 . +The bus will take you to the center of the city . ||| 巴士 会 把 你们 带到 市中心 . +I would like to go home now . ||| 我 現在 想 回家 了 . +Everyone but Tom knew that he did not need to do that . ||| 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I will finish my homework by nine . ||| 我 會 在 九點 前 完成 我 的 作業 . +Tom , you have got to get up . ||| 湯姆 , 你 必須 起床 了 . +Do you have a cough ? ||| 你 咳嗽 嗎 ? +Tom never should have tried doing that by himself . ||| 汤姆 从来不 应该 尝试 自己 一个 人 做 那些 . +Have a pleasant journey . ||| 旅途愉快 ! +I think that you ought to apologize to her . ||| 我 認為 你 應該 跟 她 道歉 . +He lives across the street from us . ||| 他 住 在 我們 街 對 面 . +You 'd better not go . ||| 你 最好 不要 去 . +I took it for granted that she would come to our wedding . ||| 我 理所当然 地 认为 她 会 参加 我们 的 结婚典礼 . +She is not as young as she looks . ||| 她 没 她 看上去 那么 年轻 . +Are you over 18 ? ||| 你 有 18 歲 了 嗎 ? +Tom took off his wedding ring . ||| 汤姆 拿掉 了 他 的 婚戒 . +Are those two going out ? ||| 那 兩個 要 出去 嗎 ? +I trust him . ||| 我 信赖 他 . +Tom , I want you to handle this one . ||| 汤姆 , 我 想要 你 来 操作 这 一个 . +The leaves of the trees in the garden have turned completely red . ||| 花园里 树上 的 叶子 已经 完全 变红 了 . +Do you know much about art ? ||| 你 對 藝術 知道 得 多 嗎 ? +I am not afraid of dying . ||| 我 不怕死 . +There is a cat in the kitchen . ||| 廚房 裡有一 隻 貓 . +I go to bed at eleven . ||| 我 十一点 上床 . +Tom asked Mary to stop the car . ||| 湯姆 讓 瑪麗 停住 車 . +I can not find my ticket . ||| 我 找 不到 我 的 票 . +Mother was busy getting ready for dinner . ||| 母親 正忙 著 準備 晚餐 . +Have a good Christmas . ||| 祝您 有 一個 愉快 的 聖誕節 . +I have won first prize ! ||| 我 贏 得 了 第一名 ! +What is new ? ||| 有 什么 新鲜事 吗 ? +Many TV programs have a bad influence on children . ||| 許多 電視 節目 對 兒童 有 不良 的 影響 . +Can you name one of their songs ? ||| 你 能够 说出 一首 他们 的 歌 的 名字 吗 ? +If you are happy , I am happy . ||| 如果 你 高興 , 我 就 高興 . +I think we should lower the price . ||| 我 觉得 我们 得 调低 价格 . +He would not agree to our proposal . ||| 他 不 同意 我們 的 建議 . +English is by far the most widely @-@ spoken language in the world . ||| 英語 是 目前 在世界上 使用 最 廣泛 的 語言 . +Tom says Mary was not tired . ||| 湯姆 說 瑪麗 不累 . +I have a bad headache today . ||| 今天 我 头痛 欲裂 . +I am sure Tom can not swim . ||| 我 确定 汤姆 不会 游泳 . +He believes that he can prove it . ||| 他 相信 他 能 证明 它 . +Do you have a cell phone ? ||| 你 有 手機 嗎 ? +Welcome to our home . ||| 欢迎 来到 我们 家 . +He acted like a lunatic . ||| 他 表现 的 像 个 疯子 . +I saw Tom . ||| 我 看見 湯姆 了 . +She seemed to have been ill . ||| 好像 她 病 了 . +I have to go to the toilet . ||| 我 要 去 上 廁所 . +I will reconsider the matter . ||| 我 會 重新 考慮 此事 . +I can not remember any of it . ||| 我 对 这些 都 没有 印象 . +I will fight to the death . ||| 我会 战斗 至死 . +Do you have younger brothers ? ||| 你 有 弟弟 嗎 ? +He talks as if he knows everything . ||| 他 說 起 話 來 好像 他 什麼 都 知道 . +I 'd like an aisle seat , please . ||| 請 給 我 靠 走道 的 位子 . +Tom told me not to open the envelope until my birthday . ||| 汤姆 告诉 我 , 到 我 生日 那天 我 才能 打开 信封 . +We have many rainy days in June . ||| 六月 下 了 很多 天 的 雨 . +I trust that I can see you again . ||| 我 相信 我 能 再 見 到 你 . +Do you miss me ? ||| 你 想 我 了 ? +I do not like living in the country . ||| 我 不 喜歡 住 在 鄉下 . +She was busy with housework . ||| 她 忙 於 家務 . +I grew up in Boston . ||| 我 在 波士 頓 成長 . +Wherever she goes , she is well liked . ||| 無論 她 去 哪裡 , 她 都 是 惹 人 喜愛 的 . +Do you believe there are ghosts ? ||| 你 相信 鬼 存在 吗 ? +I got a shave and a haircut . ||| 我 刮 了 鬍 子 並 理 了 髮 . +I hung the calendar on the wall . ||| 我 把 日 曆 掛 在 牆 上 . +I wish he had attended the meeting . ||| 要是 他 有 參加 這場 會議 就 好 了 . +Can I rest a bit ? ||| 我 能 休息 一会儿 吗 ? +She ordered the book from London . ||| 她 从 伦敦 订 了 这 本书 . +I keep the master copy under lock and key . ||| 我 妥善 保管 原版 拷貝 . +Tom has a twin brother . ||| Tom 有個 雙 胞胎 兄弟 . +I am the fastest runner . ||| 我 是 最快 的 跑者 . +I belong to the swimming club . ||| 我 是 游泳 社 的 成員 . +My problem is I do not trust you . ||| 我 的 问题 是 我 不 信任 你 . +Tom needs to speak to Mary . ||| 湯姆 需要 跟 瑪麗 說 話 . +How long did it take you to finish reading that book ? ||| 你 看 完 這 本書 要 多少 時間 ? +This is a pencil . ||| 這 是 一支 鉛筆 . +You are a real friend . ||| 你 是 個 真正 的 朋友 . +Is this your daughter ? ||| 這 是 你 的 女兒 嗎 ? +The man reading a paper over there is my uncle . ||| 在 那儿 看 报纸 的 男人 是 我 叔叔 . +Tom and Mary stayed at a fancy hotel . ||| 汤姆 和玛丽 入住 了 一家 高档 酒店 . +Birds sing . ||| 鳥兒 歌唱 . +Their meeting was inevitable . ||| 他們 的 相遇 是 必然 的 . +My mother gets up earlier than anyone else . ||| 妈妈 起得 比 谁 都 早 . +There is a man at the door who wants to see you . ||| 门口 有个 男人 想见 你 . +Tom did not show me anything . ||| 湯姆 甚麼 也 沒 給 我 看 . +We are out of stock now . ||| 我们 现在 缺乏 库存 . +Everyone knows of his affection for that dog . ||| 每个 人 都 知道 他 对 那 狗 的 感情 . +Tom is drinking juice . ||| Tom 正在 喝 果汁 . +I have put on two kilograms this summer . ||| 这个 夏天 我 胖 了 两 公斤 . +He does not like tennis . ||| 他 不 喜欢 网球 . +Tom is extremely romantic . ||| 汤姆 非常 的 浪漫 . +I am reading a book now . ||| 我 現在 正在 讀 一本 書 . +Everything is ready . ||| 一切 就绪 . +Tom does not want to come . ||| 汤姆 不想 来 . +I expect you to be punctual . ||| 我 期待 你 能 準 時 . +I am fed up with English . ||| 我 受够 英文 了 . +English is not easy , but it is interesting . ||| 英语 不 容易 , 但 很 有意思 . +The police broke up the fight . ||| 警察 驅散 了 這場 鬥 毆 . +I did not go to school yesterday . ||| 昨天 你 没有 去 学校 . +There is no film in this camera . ||| 這個 相機 裡 沒有 胶卷 . +Where is the vodka ? ||| 伏特加 在 哪里 ? +Something must be wrong with the machinery . ||| 這個 機器 一定 有什麼 地方 不 對 勁 . +Let is play baseball ! ||| 讓 我們 來 打 棒球 吧 ! +Is anybody there ? ||| 那边 有人 吗 ? +I had difficulty in solving this problem . ||| 我 在 解決 這個 問題 上 有 困難 . +I do not know why you are here . ||| 我 不 知道 你 為 甚麼 在 這裡 . +They have been married for ten years . ||| 他們 已經 結婚 十年 了 . +Turn off the gas . ||| 把 煤气 关 了 ! +I think that would be fun . ||| 我 認為 那 會 很 有意思 . +Do you know what PKO stands for ? ||| 你 知道 PKO 是 什么 意思 吗 ? +You can have this watch for nothing . ||| 你 可以 免費 擁有 這 支 手 錶 . +I was embarrassed by what she said . ||| 她 說 的 話 讓 我 覺 得 很 尷尬 . +Can I borrow your digital camera tonight ? ||| 我 今晚 能 借 你 的 数码相机 吗 ? +Smoking is not permitted on the train . ||| 不 允許 在 火車 上 吸煙 . +I like eggplant . ||| 我 喜歡 茄子 . +Lonely people tend to be afraid of meeting others , which ensures they will always be lonely . ||| 孤獨 的 人會 孤獨 , 是 因為 他 畏懼 他人 . +Can I carry this on the plane ? ||| 我 能 把 这个 东西 带到 飞机 上 吗 ? +I took the children to school . ||| 我 帶 孩子 們 去 上 學 . +He wants affection . ||| 他 要 愛 . +I heard Tom was captured . ||| 我 听说 汤姆 被捕 了 . +That was the best day of my life . ||| 那 是 我 生命 中 最美 的 一天 . +My mother is reading a magazine . ||| 我 媽媽 正在 讀 一本 雜 誌 . +Tom probably knows someone who can teach us French . ||| 湯姆 應該 知道 有 誰 可以 教 我們 法文 . +She is very thoughtful and patient . ||| 她 非常 周到 和 耐心 . +Follow that car . ||| 跟上 那辆车 . +I had a nightmare . ||| 我 做 噩梦 了 . +This is just for you . ||| 這 是 只 給 你 的 . +I am not stupid . ||| 我 不是 笨蛋 . +He is lazy . ||| 他 很 懒 . +Are you picking me up at 7 tomorrow morning ? ||| 你 明早 7 点 来 接 我 吗 ? +My sister is older than my brother . ||| 我 姐姐 比 我 哥哥 大 . +She asked me for help . ||| 她 向 我 求助 . +What is your hobby ? ||| 你 的 爱好 是 什么 ? +He lost everything he owned . ||| 他 失去 了 他 擁有 的 一切 . +I am so stupid . ||| 我 真蠢 . +She has three brothers . ||| 她 有 三个 兄弟 . +Some people felt that Tom is behavior was inappropriate . ||| 一部分 人 感觉 Tom 的 行为 举止 不 太 合适 . +It makes no difference to me whether he comes or not . ||| 他 来 不来 对 我 来说 没 区别 . +Tom is not dumb . ||| 汤姆 不 傻 . +You should have done it earlier . It can not be helped now . ||| 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +What happened in the park ? ||| 公園 裡 發生 了 甚麼 ? +That bicycle is too small for you . ||| 那輛 腳 踏 車 對 你 來說 太小 了 . +Are your eyes open ? ||| 你 睜 著 眼 嗎 ? +I am amazed at your audacity . ||| 我 对 你 的 厚颜无耻 感到 惊讶 . +Maybe next time . ||| 也许 下 一次 吧 . +Imagination affects every part of our lives . ||| 想像力 影响 着 我们 生活 的 各个方面 . +The area was quiet . ||| 這 地區 很 安靜 . +Tom has lost his keys . ||| 湯姆 遺失 了 他 的 鑰匙 . +A rabbit has long ears and a short tail . ||| 兔子 有 长耳朵 和 短 尾巴 . +Tom knew what Mary had done . ||| 湯姆 知道 瑪麗 做 了 甚麼 . +Tom says he is very rich . ||| 湯姆 說 他 很 有 錢 . +May I ask how old you are ? ||| 请问 您 老人家 高寿 ? +Why do not you go to sleep ? ||| 你 怎么 不 睡觉 呢 ? +I am listening to music . ||| 我 正在 听 音乐 . +She has been to Paris . ||| 她 去过 巴黎 . +I am telling you the truth . ||| 我 在 告訴 你 真相 . +The plane flew over the mountain . ||| 這 架 飛機 飛越 了 這 座 山 . +You are always criticizing me ! ||| 你 总是 批评 我 ! +I am making dinner . ||| 我 准备 晚餐 . +Close your mouth . ||| 闭上 你 的 嘴 . +This is my first time to visit Australia . ||| 这 是 我 第一次 来 澳大利亚 +The students were for the most part from the West Coast . ||| 大部分 的 學生 來 自 西海岸 . +They work really hard . ||| 他们 工作 的 很 辛苦 . +You have not even asked me what I think . ||| 你 甚沒 問 過 我 怎麼 想 . +You are a mean old man . ||| 你 这个 吝啬 的 老头 . +He makes a living as a salesman . ||| 他 當 推銷員 為 生 . +How many times a day do you look at yourself in the mirror ? ||| 你 一天 照 几次 镜子 ? +You will get used to living here in no time . ||| 你 很快 就 会 习惯 住 在 这里 . +I agree to your proposal . ||| 我 同意 你 的 建議 . +How much is the tour per person ? ||| 一個 人 的 旅費 多少 錢 ? +I do not drink coffee at all . ||| 我 一点 咖啡 也 不 喝 . +Did he go to see Mary ? ||| 他 去 看 瑪麗 了 嗎 ? +He grew up in a little village . ||| 他 在 一個 小村 莊裡 長大 . +I will come back . ||| 我会 回来 的 . +What a bizarre story ! ||| 多么 荒唐 的 故事 ! +He swims better than I do . ||| 他 游泳 游得 比 我 好 . +Why are you so worried ? ||| 你 這麼 擔心 做 什麼 ? +I stayed with my uncle last week . ||| 我 上週 跟 我 叔叔 住在一起 . +The train should be on time . ||| 火车 应当 准点 到 . +We spent the entire day on the beach . ||| 我們 一整天 在 沙灘 上 . +To live without air is impossible . ||| 沒 有空 氣 生活 是 不 可能 的 . +It worried me that she looked pale . ||| 她 虚弱 的 样子 让 我 捏了一把汗 . +What do you want it for ? ||| 你 要 它 干什么 ? +Did you watch TV tonight ? ||| 你 今晚 看電視 了 嗎 ? +We enjoy reading books . ||| 我们 喜欢 阅读 书籍 . +Tom did not want to do that . ||| 湯姆 不想 去 做 那件事 . +It is getting cloudy . It may rain soon . ||| 雲 愈來愈 多 , 可能 快 下雨 了 . +The boy enjoyed painting a picture . ||| 這個 男孩 喜歡 繪畫 . +I am thinking of going abroad . ||| 我 在 考慮 出國 . +I have been in Japan for two months . ||| 我 在 日本 已經 兩個 月 了 . +It is not as difficult as you think . ||| 那个 没 你 想象 的 那么 难 . +Is this book yours ? ||| 這 是 你 的 書 嗎 ? +I have to cook dinner today . ||| 我 今天 要 准备 晚饭 . +I do not remember seeing the letter , but perhaps I read it . ||| 我 不 記得 我 看 過 這 封信 , 但 或許 我 讀 過 它 . +Any student can answer that question . ||| 任何 學生 都 可以 回答 這個 問題 . +Do you need help ? ||| 你 需要 帮助 吗 ? +Would you mind closing the window ? ||| 你 介意 我 關窗 戶 嗎 ? +May I try it on ? ||| 我 能 试一下 吗 ? +What goes up must come down . ||| 会 起 必 会 落 . +Let me make you some tea . ||| 讓 我 給 你 沏茶 . +He was willing to help others . ||| 他 願意 幫助 別人 . +Prices have been climbing steadily . ||| 價格 一直 在 穩定 地 攀升 . +Why can not we go and see Tom ? ||| 為 甚麼 我們 不能 去 看 湯姆 ? +I have always fed my dogs in the early evening . ||| 每个 傍晚 我 都 会 喂 我 的 狗狗 们 . +How did your journey begin ? ||| 你 的 旅行 是 怎么 开始 的 ? +I like potatoes . ||| 我 喜歡 土豆 . +Did you bring them ? ||| 你 把 它们 带来 了 么 ? +Tom studied French . ||| 汤姆 学习 了 法语 . +Mom , can I go swimming ? ||| 妈妈 , 我 能 去 游泳 吗 ? +I have a thorn in my finger . ||| 我 的 手指 頭 有 一根 刺 . +I watched TV this morning . ||| 我 今天 早上 看 了 电视 . +From now on , try harder . ||| 從 現在 起 , 更加 努力 . +Is there anything you can not do ? ||| 有 你 不能 做 的 事 吗 ? +It is difficult to give up smoking . ||| 戒烟 难 . +Well , let is get going ! ||| 好 吧 , 讓 我們 出發 吧 ! +I often slept on that bench when I was homeless . ||| 当 我 无家可归 的 时候 , 我 常 在 那 张 长椅 上 睡觉 . +They only sell women is shoes here . ||| 这里 只 卖 女鞋 . +Grammar is a very complex thing . ||| 语法 是 很 复杂 的 . +Write it down before you forget it . ||| 在 你 忘 記 之前 把 它 寫 下來 . +Wo not you come over to my place ? ||| 你 不 會 來 我家 嗎 ? +We have almost finished our work . ||| 我們 幾乎 完成 了 我們 的 工作 . +My apartment is near here . ||| 我 的 公寓 在 這 附近 . +I arrived in London . ||| 我 到 達 倫敦 了 . +The letter was written by Tom . ||| 這 信 是 湯姆 寫 的 . +Tom is working on a new novel . ||| 汤姆 正 致力于 一部 新 小说 . +How much do you love me ? ||| 你 有 多 爱 我 ? +I almost laughed out loud . ||| 我 差點 大聲 笑 了 出來 . +Mary arrived at the hospital . ||| 瑪麗 到 了 醫院 . +I wrote a letter asking him to return a bit earlier . ||| 我 写 了 封信 , 叫 他 早点 回 . +Why is he here ? ||| 为什么 他 在 这儿 ? +Please show your ticket . ||| 请 出示 您 的 票子 . +You guys looked mad . ||| 你们 疯 了 吧 +What do you want for Christmas ? ||| 想要 什么样 的 圣诞节 礼物 呢 ? +My father made me a delicious lunch . ||| 我 父親 為 我 做 了 一頓 美味 的 午餐 . +Do you mind if I turn off the light ? ||| 您 介 不介意 我 把 灯 关了 ? +I want to retire soon . ||| 我 想 早點 退休 . +She kept various kinds of pets . ||| 她 养 各种 不同 的 宠物 . +I saw a dog swim across the river . ||| 我 見 過 狗 游泳 渡河 . +Please remind me to mail the report tomorrow . ||| 请 提醒 我 明天 把 报告 寄 了 . +Do you know the boy in the picture ? ||| 你 认识 画 里面 的 男孩 吗 ? +Who was playing ? ||| 誰 在 玩 ? +What on earth are you talking about ? ||| 你 到底 在 談 什麼 ? +The price of rice has fallen . ||| 米价 下跌 了 . +I knew I was going to win . ||| 我 知道 我会 赢 . +I am only thinking of you . ||| 我 只 想到 你 . +Carelessness can lead to a serious accident . ||| 粗心大意 可能 導致 嚴重 的 事故 . +Hemingway enjoyed big game hunting in Africa . ||| 海明威 喜歡 在 非洲 的 大狩 獵 . +I would like to talk about your situation . ||| 我 想 談 談 你 的 情況 . +Foreigners are interesting , are not they ? ||| 外国人 真 有意思 , 不是 吗 ? +See you again next Monday . ||| 下週 一再 見 . +" What should I do ? " I said to myself . ||| “ 我 该 做 什么 呢 ? ” 我 自言自语 道 . +He wrote to his parents . ||| 他 寫信 給 他 的 父母 . +Give this book to whoever wants it . ||| 把 這 本書 給 想要 的 人 . +Please close the door quietly . ||| 請 安靜 地 關門 . +I have not finished my homework yet . ||| 我 还 没 做完作业 . +I go to the library two or three times a week . ||| 我 一週 去 圖書館 兩 、 三次 . +We had a chat for a while . ||| 我們 聊 了 一會兒 . +Do it as soon as possible . ||| 尽早 做 . +My father is shaving in the bathroom . ||| 我 爸爸 正在 浴室 裡 刮 鬍 子 . +He is just my age . ||| 他 和 我 同岁 . +I really do not sing . ||| 我 真的 不会 唱 . +Our eyes take time to adjust to the darkness . ||| 我们 的 眼睛 需要 时间 来 适应 黑暗 . +Tom laughed . ||| 汤姆 笑 了 . +When was she born ? ||| 她 是 什么 时候 出生 的 ? +He likes math , but I do not . ||| 他 喜欢 数学 , 但 我 不 喜欢 . +Do you hate me ? ||| 你 讨厌 我 吗 ? +I should stop procrastinating . ||| 我 做事 该 果断 . +I wish I were a good singer . ||| 但愿 我 是 一个 好 歌手 . +He does not like us . ||| 他 不 喜欢 我们 . +The most logical place to keep your shoes is near the door . ||| 最 合 逻輯 的 放 鞋 處 是 門口 附近 . +What are you looking at ? ||| 你 在 看 什么 ? +This medicine does not have side effects . ||| 这 药 没有 副作用 . +I am seeing her this evening . ||| 我 打算 今晚 和 她 约会 . +I really agree with you . ||| 我 非常 同意 你 . +He found the box under the table . ||| 他 在 桌子 底下 發現 了 這個 盒子 . +I want to ask you some questions about Tom . ||| 我 想 问 你 一些 关于 汤姆 的 问题 . +I came to warn you not to do that . ||| 我 来 警告 你 别 那样 做 . +My parents objected to my studying abroad . ||| 我 父母 反對 我 出 國留學 . +Why do not you give it another try ? ||| 你 為 什麼 不再 試 一次 ? +I want to travel around the world . ||| 我 要 環遊 世界 . +She insisted that I should see the doctor . ||| 她 坚持 让 我 去 看 医生 . +I will call you up tomorrow . ||| 明天 我 給 你 打 電話 . +I take my health seriously . ||| 我 重視 自身 的 健康 . +She wants to attend the party . ||| 她 想 參加 這個 派 對 . +Tom bought a camera at a store not too far from here . ||| Tom 在 离 这里 不远 的 一家 商店 里 买 了 一台 相机 . +You have got to be joking ! ||| 你 一定 是 开玩笑 ! +I did not notice the light turn red . ||| 我 沒有 注意 到 燈 變 紅色 了 . +I go by the nickname " Itch . " ||| 我 用 我 的 暱 稱 " Itch " . +I did not expect to see you at a place like this . ||| 我 都 没 想 过 会 在 这里 碰见 你 . +I work every day except for Sundays . ||| 除了 星期天 我 每 一天 都 工作 . +How much is your monthly gas bill ? ||| 你 每個 月 的 瓦斯 費 多少 錢 ? +I think I know who stole your watch . ||| 我 認為 我 知道 是 誰 偷 了 你 的 手 錶 . +She is not as old as Mary . ||| 她 沒 有 瑪麗 年紀 大 . +I had a good sleep last night . ||| 我 昨晚 睡 得 很 好 . +I majored in philosophy at my university . ||| 我 在 大學 主修 哲學 . +What are you going to do today ? ||| 你 今天 要 做 什麼 ? +Tom is a violin teacher . ||| 湯姆 是 小提琴 教師 . +We had a mild winter last year . ||| 去年 冬天 很 暖和 . +I have lost one of my folders . ||| 我 丢 了 我 的 一个 文件夹 . +Give me that book . ||| 把 书 给 我 . +I should not have sold my house . ||| 我 不该 把 我 的 房子 卖 了 的 . +I am very hungry now . ||| 我 現在 非常 餓 . +I fell asleep while reading a book . ||| 我 看书 的 时候 睡着 了 . +You do not need to be there . ||| 你 不必 去 那裡 . +Here is your bag . ||| 你 的 袋子 在 這裡 . +Who are those guys ? ||| 那些 家伙 是 谁 ? +What are you reading ? ||| 你 在看 什麼 ? +She went for a walk . ||| 她 去 散步 了 . +I feel like going to the movies . ||| 我 想 去 看 電影 . +My father likes traveling by air . ||| 我 父親 喜歡 搭 飛機 旅行 . +Let me help you with your luggage . ||| 讓 我 幫 您提 行李 . +See you tomorrow at school . ||| 明天 在 學校 見 . +It will not make any difference . ||| 这 没有 任何 区别 . +Tom can do so much better than me . ||| 湯姆 可以 比 我 做得好 很多 . +Are you able to play organ ? ||| 你 能 演奏 管风琴 吗 ? +Stop bothering me . ||| 不要 烦 我 . +Tom waved . ||| 汤姆 挥手 了 . +What are you eating ? ||| 在 吃 什么 呢 ? +There is nothing more painful than losing one is child . ||| 沒有 比 失去 孩子 更 讓 人 悲傷 的 事 . +Something weird is going on . ||| 正 有 什么 奇怪 的 事情 发生 着 . +Do not let her go out after dark . ||| 天黑 後 不要 讓 她 出門 . +I do not want Tom seeing this . ||| 我 不想 讓 湯姆 看見 這個 . +He might change his mind . ||| 他 可能 會 改變 心意 . +It is not polite to point at others . ||| 用 手指 別人 是 不 禮貌 的 . +Fools rush in where angels fear to tread . ||| 天使 畏懼 處 , 愚人 敢 闖入 . +He was accused of stealing money . ||| 他 被 指控 偷 錢 . +My notebook is pink . ||| 我 的 笔记本 是 粉色 的 . +She helped me to clear snow away . ||| 她 幫 我 清除 積雪 . +My cholesterol is high . ||| 我 的 胆固醇 很 高 . +He was able to solve the problem . ||| 他 能 解決 這個 問題 . +I thought that Tom and Mary were crazy . ||| 我 本 以为 汤姆 和玛丽 疯 了 呢 . +I 'd bought it the week before . ||| 我 一周 前 已經 買 了 . +I go to church on Sunday . ||| 周日 我 去 做礼拜 . +A couch potato is something that I do not want to be . ||| 我 不想 成為 整天 泡 在 沙發 上 看 電視 的 人 . +He is old enough to understand it . ||| 他 年 紀夠 大 可以 瞭解 它 . +Optimists see opportunities in disasters while pessimists find disasters in every opportunity . ||| 樂 觀者 在 災禍 中 看到 機會 , 悲觀 者 在 機會 中 看到 災禍 . +I attempted to solve the problem . ||| 我 試圖 解決 這個 問題 . +I have not changed . ||| 我 没 改变 . +I think we should not let Tom do that again . ||| 我 認為 我們 不該 讓 湯姆 再 那麼 做 . +What is so fun about taking pictures of trains ? ||| 拍 火车 的 照片 什么 的 , 有 什么 好玩 的 呀 ? +Tom knows Mary was here . ||| 湯姆 知道 瑪麗 在 這裡 . +Wait for me . ||| 等等 我 . +Children like chocolate . ||| 孩子 们 喜欢 巧克力 . +Do not think about it now . ||| 現在 別 想 這事 . +How soon can they be delivered ? ||| 它们 什么 时候 能 被 送到 ? +My vacation went by quickly . ||| 我 的 假期 一下 就 過 完 了 . +Have you already eaten supper ? ||| 你 已经 吃晚饭 了 吗 ? +I guess I have not made myself clear . ||| 我 想 我 沒有 把 話 說 清楚 . +I want another beer . ||| 我 想 再 来 一杯 啤酒 . +I get two hour is exercise every day . ||| 我 每天 做 兩個 小 時 的 運動 . +Keep in mind that you must die . ||| 你 要 想到 你 必须 死 . +I am just about done . ||| 我 差不多 完成 了 . +After the revolution , France became a republic . ||| 革命 之 後 , 法國 成為 了 一個 共和 國 . +He has a cold . ||| 他 着凉 了 . +Tomorrow I have to go shopping . ||| 明天 我 得 购物 . +The table is covered with powder . ||| 桌上 布满 了 粉末 . +Somebody was murdered . ||| 有人 被 謀殺 了 . +I got lost in the forest . ||| 我 在 树林 里 迷路 了 . +He made his way to the minister . ||| 他 設法 當上 了 部長 . +The warnings were ignored . ||| 警告 被忽视 . +Are you talking to me ? ||| 你 在 跟 我 说话 吗 ? +She plays the violin very well . ||| 她 小提琴 演奏 得 非常 好 . +Is anyone absent today ? ||| 今天 有人 缺席 嗎 ? +I would like to meet your older sister . ||| 我 想 認識 你 姐姐 . +Tom can not go out because he has a lot of homework . ||| 汤姆 因为 有 很多 作业 不能 外出 . +We have got to get you some help . ||| 我们 不得不 给 你 一点 帮助 了 +What do you eat for breakfast ? ||| 你 早餐 吃 什麼 ? +Your letter made me happy . ||| 你 的 來 信使 我 快樂 . +We promised to stand by him in case of trouble . ||| 我們 承諾 萬一 他 有 麻煩 的 時候 支持 他 . +Tom wished he had not won . ||| 汤姆 希望 他 没有 赢 . +My camera can shoot high @-@ definition video . ||| 我 的 录像机 可以 拍 高清 视频 . +Money rules the world . ||| 金钱万能 . +This is Tom is car . ||| 這 是 湯姆 的 車 . +She is wearing a hat . ||| 她 戴 著 一頂 帽子 . +I need to take notes . ||| 我 需要 作筆 記 . +You lied to me , did not you ? ||| 你 對 我 說 了 謊 , 沒有 嗎 ? +I made my way through the crowd . ||| 我 穿 過 了 人群 向前走 . +I am amazed at his rapid progress in English . ||| 我 被 他 英语 的 快速 进步 惊呆 了 . +I found the test difficult . ||| 我 觉得 这个 测试 很 难 . +The child has a case of chicken pox . ||| 这 孩子 有 水痘 的 症状 . +I wish you the best of luck . ||| 祝 你好 運 . +It is not too late for you . ||| 对 你 来说 还 不 太晚 . +Those trains run every three minutes . ||| 這些 火車 每 三分 鐘 發車 . +What do you make of his attitude towards us these days ? ||| 你 做 了 什麼 讓 他 這些 日子 用 這種 態度 對待 我們 ? +My grandfather sometimes talks to himself when he is alone . ||| 我 祖父 一个 人 的 时候 , 有时 会 自言自语 . +Long time , no see . I hear that you have changed your job again . ||| 好久不见 . 听说 你 又 换 工作 了 ? +Being late is always better than not showing up at all . ||| 迟到 总 比 不到 好 . +She was appointed chairperson . ||| 她 被 任命 為 主席 . +How much does this watch cost ? ||| 这 只 表 多少 钱 ? +Hey , relax . ||| 嘿 , 放松 点 . +This chair is uncomfortable . ||| 这个 椅子 坐 着 不 舒服 . +Swimming strengthens the legs . ||| 游泳 使 腿部 强健 . +I am cold . ||| 我 冷 . +There are only three women in this class . ||| 這個 班 只有 三個 女生 . +I need to find out when we need to be there . ||| 我 需要 知道 我们 什么 时候 需要 到 那里 . +You are not a coward . ||| 你 不是 个 懦夫 . +I just talked to the person in charge . ||| 我 刚 跟 主管 人 谈 过 . +I am here to help you . ||| 我 來 這裡 幫 你 . +Tell Tom I need to borrow his car . ||| 告訴 湯姆 我 需要 借 他 的 車 . +The longer I stayed in Paris , the more I liked it . ||| 在 巴黎 待 得 越 久 , 我 就 越 喜欢 巴黎 . +I am very happy . ||| 我 很快 樂 . +Do you belong to any clubs ? ||| 您 隶属 哪家 俱乐部 吗 ? +He began to feel afraid . ||| 他 开始 害怕 了 . +I would not buy that for Tom . ||| 我 不 會 給 湯姆 買 那 東西 . +Tom has low blood pressure . ||| 汤姆 有 低血压 . +Would you please open the door ? ||| 請 你 開門 好 嗎 ? +I do not think that it is necessary . ||| 我 想 没 这个 必要 . +These apples are very big . ||| 这些 苹果 很大 . +Have you ever shaved your legs ? ||| 你 剃 过 腿毛 吗 ? +If you need my advice , I 'd be glad to give it to you . ||| 如果 你 需要 我 的 建议 , 我 很 愿意 告诉 你 . +I got up at seven this morning . ||| 我 今天 早上 7 点 起床 . +Tom does not want to talk about it . ||| 汤姆 不想 谈 这件 事 . +People usually do not like what they do not understand . ||| 人们 通常 不 喜欢 他们 不 理解 的 事物 . +I think Tom is a bit too impatient . ||| 我 觉得 汤姆 有些 过于 性急 了 . +Rabbits have long ears and short tails . ||| 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +It took us half an hour to set up the tent . ||| 搭 帳 篷 花 了 我們 半 小 時 . +The matter is all settled . ||| 這個 問題 都 被 解決 了 . +Please send it to me by fax . ||| 请 把 它 传真 给 我 . +All you have to do is say the word , and I will leave . ||| 你 只要 说句话 , 我 就 走 . +This is Tom is umbrella . ||| 這 是 湯姆 的 雨 傘 . +He made himself heard across the room . ||| 他 讓 對面 的 房間 都 能 聽到 他 的 聲音 . +We got to the station at six . ||| 我們 六點鐘 到 了 車站 . +Are you Tom is mother ? ||| 你 是 湯姆 的 母親 嗎 ? +I will get in touch with you soon . ||| 我 會 很快 跟 你 聯絡 . +Like it or not , we have to attend that meeting . ||| 不管 喜 不 喜歡 , 我們 都 得 參加 那個 會議 . +Here is your book . ||| 這 是 你 的 書 . +Please send me your photo . ||| 請 把 您 的 照片 發給 我 . +Ten teams competed for the prize . ||| 十支 隊伍 競逐 獎項 . +She is more pretty than beautiful . ||| 說 她 美 不如 說 她 可愛 . +Tom sat on a tree trunk . ||| 汤姆 坐在 了 树干 上 . +He became more obstinate as he grew older . ||| 他 年紀 越 大 變 得 越 頑固 . +It rarely snows in this area . ||| 这 片 区域 很少 下雪 . +Do you take pride in your work ? ||| 你 为 你 的 工作 感到 自豪 吗 ? +A man can not escape his past . ||| 人 無法 逃避 過去 . +We have a special connection . ||| 我們 有 特殊 聯 繫 . +That is an interesting idea . ||| 那 是 个 有趣 的 主意 . +I know who lives in this house . ||| 我 知道 谁 住 在 这 房子 里 . +They will not find Tom . ||| 他们 不会 找到 汤姆 . +This is my younger sister . ||| 这 是 我 的 妹妹 . +God helps those who help themselves . ||| 自助 者 天助 . +I do not mind being criticized when I am wrong . ||| 要是 我 说 错话 被 人 议论 , 我 是 不管 的 . +Take your time . There is no rush . ||| 慢慢 來 , 不急 . +I asked for my father is help . ||| 我 請 我 父親 幫忙 . +In a way you are right , but I still have doubts . ||| 在 某种程度 上 你 是 对 的 , 但 我 还是 有 疑问 . +Are you going outside ? ||| 你 去 外面 吗 ? +No problem . ||| 没 问题 . +Since he is old , this task must be difficult for him . ||| 他 老 了 , 所以 这 任务 对 他 来说 一定 很 难 . +Everyone deserves a second chance . ||| 每個 人 都 值得 被 給予 第二次 機會 . +Can I do anything to help ? ||| 我 能 幫 上 忙 嗎 ? +Maybe you are right . ||| 也许 您 有 道理 . +I want to breathe some fresh air . ||| 我 想 呼吸 一下 新鮮 空氣 . +Australia is smaller than South America . ||| 澳洲 比 南美洲 小 . +Tom likes to knit . ||| 湯姆 喜歡 編織 . +I saw it with my own eyes . ||| 我 親 眼看 見 了 . +Call the police . ||| 报警 ! +I wonder if what I wrote was correct . ||| 我 在 想 我 寫 的 對不對 . +The smell of food made me hungry . ||| 食物 的 味道 讓 我 餓 了 . +The apple does not fall far from the tree . ||| 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Maybe you are working too hard . ||| 可能 你 工作 得 太 拼命 ? +You need to register by Monday . ||| 你 需要 在 星期一 前 註 冊 . +You can always count on Tom . ||| 你 可以 永遠 信賴 湯姆 . +She got through her work before five . ||| 她 在 五點鐘 前 做 完 了 她 的 工作 . +How did you enjoy the party ? ||| 你 在 派 對 上 玩 得 開心 嗎 ? +When we started out , our band could only find small clubs in small cities that would hire us . ||| 当 我们 起步 时 , 我们 的 乐队 只能 找 小 城市 里 的 小 俱乐部 雇 我们 . +You will be answering the phones . ||| 你 要 接 電話 . +I do not know how to express my thanks . ||| 我 不 知道 如何 表達 我 的 謝意 . +She was satisfied with the new dress . ||| 那条 新 裙子 让 她 很 满意 . +Do you know why spring rolls are called spring rolls ? ||| 你 知道 春卷 为什么 叫 春卷 吗 ? +He often plays the guitar . ||| 他 常常 彈 吉他 . +She took my hand . ||| 她 握住 我 的 手 . +I am not at all tired . ||| 我 根本 不累 . +My grandfather gets up early . ||| 我 的 祖父 早起 . +Tom is now a software engineer . ||| 湯姆 現在 是 軟體 工程 師 . +I can not put up with the heat any longer . ||| 我 受不了 这 大热天 了 . +Do you know what happened ? ||| 你 知道 发生 了 什么 事情 吗 ? +She taught me how to write a poem . ||| 她 教我如何 写诗 . +The old man breathed his last . ||| 老人 咽下 了 最后 一口气 . +She is going to Sendai this spring . ||| 她 今年 春天 要 去 仙台 . +They made us work all night . ||| 他們 要 我們 整夜 工作 . +She is proud that her son has become a doctor . ||| 她 为 自己 的 儿子 成为 医生 而 自豪 . +What is your problem ? ||| 你 有 什么 问题 ? +She gave us some useful information . ||| 她 給 了 我們 一些 有用 的 訊息 . +My mom does not speak English very well . ||| 我 妈妈 英语 说 得 不太好 . +He could not run very fast . ||| 他 無法 跑 得 非常 快 . +It is difficult to quit smoking . ||| 戒烟 难 . +How are things at school ? ||| 学校 怎么样 ? +A few years ago , our room had little furniture in it . ||| 幾 年前 , 我們 的 房間 裡 沒有 什麼 家具 . +All their efforts were in vain . ||| 他們 的 努力 都 白 費 了 . +Tom turned red . ||| 汤姆 脸红 了 . +Tom is a very good person . ||| 汤姆 是 个 很好 的 人 . +A nurse took my temperature . ||| 一個 護士 量 了 我 的 體溫 . +After a storm comes a calm . ||| 暴風 過 後 是 寧靜 . +India gained independence from Britain in 1947 . ||| 印度 於 1947 年 脫離 英國 獲得 獨立 . +My uncle gave me the watch . ||| 我 叔叔 給 了 我 這 支 錶 . +I got a good night is sleep . ||| 我 睡 了 个 好 觉 . +She was crying as she answered . ||| 她 邊 哭 邊 回答 . +Do not intrude on her privacy . ||| 不要 侵犯 她 的 隐私 . +We know what we are doing . ||| 我們 知道 我們 在 做 什麼 . +He disguised himself as a woman . ||| 他 把 自己 化裝 成 一個 女人 . +May I go out to play ? ||| 我 可以 出去玩 嗎 ? +I worked on the farm all day . ||| 我 整天 在 農場 上 工作 . +We divided the money between us . ||| 我們 平分 這筆 錢 . +How should I know ? ||| 我 怎麼 知道 ? +Please take your seat . ||| 请 坐 . +I have never lived on a farm , but both of my parents grew up on farms . ||| 我 从 没有 住 在 农场 , 但 我 的 父母 都 在 农场 长大 . +She took care of my dog . ||| 她 照顧 了 我 的 狗 . +We are anxious about her safety . ||| 我们 为 她 的 安全 担忧 . +Do not touch these . ||| 不要 碰 這些 . +We ate curry rice last night . ||| 我們 昨晚 吃 了 咖哩 飯 . +Are you a student ? ||| 你 是 學生 嗎 ? +Is there any mail for me today ? ||| 今天 有 給 我 的 郵件 嗎 ? +Tom made a list of places he wants to visit . ||| 汤姆 把 他 想去 的 地方 列成 了 一张 清单 . +How long do you plan on staying in this country ? ||| 你 打算 在 这个 国家 待 多久 ? +I am watering the flowers . ||| 我 在 澆 花 . +On hearing the news , she fainted . ||| 听到 消息 , 她 晕倒 了 . +I was not busy last week . ||| 我 上周 不忙 . +We are both here for the same reason . ||| 我們 來 這裡 是 為了 同一 個 原因 . +Tom gritted his teeth . ||| 汤姆 咬紧牙关 . +This river is dangerous for children to swim in . ||| 孩子 在 这条 河里 游泳 太 危险 了 . +I am 30 years old now . ||| 我 现在 30 岁 了 . +Many workers were laid off at that plant . ||| 那个 工厂 开除 了 很多 工人 . +Tom sat beside Mary . ||| 汤姆 坐在 玛丽 旁边 . +You must get this homework finished by the day after tomorrow . ||| 你 必須 在 後 天 以前 完成 回家 作業 . +Mary set the basket on the table . ||| 瑪麗 把 籃子 放在 桌子 上 了 . +If I had known that you were here , I would have come at once . ||| 如果 我 早 知道 你 在 这儿 的话 , 我 马上 就 来 了 . +He is sleeping like a baby . ||| 他 正 睡着 , 像 个 婴儿 一样 . +I will lend you this dictionary . ||| 我 會 借 給 你 這 本 字典 . +Should I help you ? ||| 我 该 帮 你 吗 ? +" What is going on in the cave ? I am curious . " " I have no idea . " ||| “ 洞 里 发生 了 什么 ? 我 很 好奇 . ” “ 我 一点 也 不 知道 . ” +That car is quite new . ||| 那辆车 十分 新 . +We had a heavy rainfall last night . ||| 昨晚 雨勢 很大 . +I did not think Tom would be scared . ||| 我 没想到 汤姆 会 害怕 . +The world is changing every minute . ||| 世界 每一分 鐘 都 在 改變 . +I am a man . ||| 我 是 个 男人 . +Tom made fun of me . ||| 汤姆 拿 我 开心 . +They were so young . ||| 他們 是 那麼 年輕 . +Tom did not understand what Mary really meant . ||| 汤姆 不 知道 玛丽 真实 的 意思 . +Tom has no time . ||| 汤姆 没有 时间 . +The victim died at a hospital in Boston . ||| 受害者 在 醫院 裡 死去 了 . +He spoke for one hour . ||| 他 讲 了 一 小时 . +She is getting married this fall . ||| 她 今年 秋天 要 結婚 . +He is very kind . ||| 他 非常 親切 . +She refused my offer to help her . ||| 她 拒絕 讓 我 幫助 她 . +Tom says it is quite important . ||| 汤姆 说 它 十分 重要 . +Could I see you a minute , please ? ||| 讓 我 看 你 一會兒 好 嗎 ? +Did you play tennis yesterday ? ||| 你 昨天 打网球 了 吗 ? +Would you like tea or something ? ||| 你 需要 茶 或者 别的 什么 吗 ? +Whose turn is it ? ||| 輪到 誰 了 ? +This room has two closets for clothing . ||| 這 房間 有 兩個 衣櫥 . +He has seven sons . ||| 他 有 七个 儿子 . +Look what I made for you . ||| 看 我 为 你 做 了 什么 . +What are you going to do this weekend ? ||| 你 這個 週末 要 做 什麼 ? +Do you know whether or not it will rain tomorrow ? ||| 您 是否 知道 , 明天 会 不会 下雨 ? +That job paid well . ||| 这份 工作 工资 很 高 . +Tom has no money . ||| Tom 沒有 錢 . +I will wait a day or two . ||| 我 會 等 一兩天 . +He regrets not having worked harder at school . ||| 他 后悔 在校 时 没 用功读书 . +Tom wanted to see Mary . ||| 湯姆 想 見 瑪麗 . +I found a good place to buy fruit a couple of days ago . ||| 前 几天 我 发现 了 一个 买 水果 的 好 地方 . +It is easy to answer the question . ||| 这个 问题 很 容易 回答 . +She gave me this compact disc . ||| 她 給 了 我 這個 光碟 . +I am sorry to trouble you . ||| 我 很 抱歉 給 你 添 麻煩 了 . +He could not get the job . ||| 他 無法 得到 這份 工作 . +I do not know anything about his past . ||| 我 不 知道 任何 有關 他 過去 的 事 . +I did not mean that . ||| 我 沒有 那個 意思 . +You 'd better go back home now . ||| 你 現在 最好 回家 . +Can I try on this jacket ? ||| 我 可以 試穿 這件 外套 嗎 ? +Who will take care of the baby ? ||| 誰 將 照顧 這個 嬰兒 ? +He set fire to the school building . ||| 他 放火 燒 了 校舍 . +Please put the book on the shelf . ||| 請 把 書 放在 架子 上 . +My brother will not be at home tomorrow . ||| 我 的 兄弟 明天 不 在家 . +I lost my notebook today . ||| 今天 我 的 筆記 本 掉 了 . +My father put a fence around the garden . ||| 我 父亲 在 花园 边上 装 了 篱笆 . +That is an exception . ||| 那 是 例外 . +I am never at home on Sundays . ||| 我 周日 从来 都 不 在家 . +That is mine . ||| 那 是 我 的 . +He relies on his wife financially . ||| 他 经济 上 依靠 他 的 太太 . +My aunt brought me some flowers . ||| 我 阿姨 給 我 帶來 了 一些 花 . +More often than not , she had to go in person . ||| 很多 時候 她 要 親自 去 . +Tom had a decision to make . ||| 湯姆 要 做 個 決定 . +I appreciate your cooperation . ||| 我 感謝 您 的 合作 . +These machines are not working now . ||| 这些 机器 目前 不 运转 . +I am very tired right now . ||| 我 現在 很 累 . +Tom said he wanted to eat Chinese food . ||| 湯姆 說 他 想 吃 中國 菜 . +I 'd like you to have a blood test . ||| 我 希望 你 做 血液 檢查 . +You make me happy . ||| 你 讓 我 快樂 . +He can drive a car . ||| 他 會 開車 . +I can not explain it either . ||| 我 也 无法解释 . +My whole family is from Boston . ||| 我 全家 來 自 波士 頓 . +Everyone knows that Bell invented the telephone . ||| 任何人 都 知道 贝尔 发明 了 电话 . +He is afraid of his own shadow . ||| 他 怕 自己 的 影子 . +He is opposed to racial discrimination . ||| 他 反对 种族歧视 . +She is already sleeping . ||| 她 已经 睡下 了 . +Half a loaf is better than none . ||| 聊勝於無 、 有 比 沒有 好 . +Shortly after the accident , the police came . ||| 事故 發生 後 不久 , 警察 來 了 . +I wish I had not bought this . ||| 我 希望 我 沒 買 這 東西 . +I want a good dictionary . ||| 我 想要 本好 词典 . +I made a paper plane . ||| 我 造 了 架 纸飞机 . +Real friendship is more valuable than money . ||| 真正 的 友谊 比 金钱 更 有 价值 . +See you at the party . ||| 在 派 對 上見 . +Put your weapon down . ||| 把 你 的 武器 放下 . +During the Depression in the 1930 is , many wealthy people lost everything in the stock market crash . ||| 在 十九世纪 三十 年代 的 大 萧条 时期 , 许多 富人 在 股市 崩盘 中 失去 了 一切 . +What fruit do you like the best ? ||| 您 最 喜歡 什麼 水果 ? +What is the population of India ? ||| 印度 的 人口 有 多少 ? +She acknowledged that my statement was true . ||| 她 承認 我 的 聲明 是 真實 的 . +The soldier gave water to me . ||| 士兵 給 了 我 水 . +We do what we want to do . ||| 我們 做 我們 想 做 的 . +That should not be hard for you . ||| 那 对 你 来说 应该 不难 . +She gave me access to her records . ||| 她 允許 了 我 對 她 的 訪問 紀錄 . +How rude of you ! ||| 你 真 粗 魯 ! +You must be back by 10 o 'clock . ||| 你 必須 在 10 點 前 回來 . +You certainly play the piano well . ||| 你 一定 鋼琴 彈 得 很 好 . +I am getting off at the next station . ||| 我 會 在 下 一站 下車 . +Do you want this job or not ? ||| 你 想 不 想要 這 工作 ? +The old houses were torn down to make room for a supermarket . ||| 這棟 老房子 被 拆除 了 , 以 騰出 空間 給 超級 市場 . +While reading a book , I fell asleep . ||| 我 看书 的 时候 睡着 了 . +Tom is plastered . ||| 汤姆 醉 了 . +I think that is awful . ||| 我 看 那 糟透了 . +Are you still cold ? ||| 你 还 冷 吗 ? +How much money do you owe Tom ? ||| 你 欠 湯姆 多少 錢 ? +When did you buy it ? ||| 你 甚麼 時候 買 的 ? +Did you find anything interesting ? ||| 你 找到 有趣 的 東西 了 嗎 ? +One language is never enough . ||| 一種 語言 是 永遠 不夠 的 . +You are absolutely right . ||| 你 完全 正確 . +As we went around the corner , the lake came into view . ||| 当 我们 走 到 转角处 , 湖 就 映入 了 眼帘 . +The school will provide tents for us . ||| 学校 会 提供 帐篷 给 我们 . +Cuff him . ||| 把 他 铐 上 . +Are they actually friends ? ||| 他們 真是 朋友 嗎 ? +I can not find my umbrella anywhere . ||| 我 任何 地方 都 找 不到 我 的 傘 . +I vowed that I would never speak to her again . ||| 我 發誓 再也 不 跟 她 說話 了 . +Do you have plans tonight ? ||| 今晚 有 什么 计划 吗 ? +Please lock the door . ||| 請 把 門鎖 上 . +Do not pry into the affairs of others . ||| 不要 探听 别人 的 事 . +Tom is a native speaker of French . ||| 汤姆 是 法语 母语 者 . +It cost me ten thousand yen to have my television set repaired . ||| 把 我 的 電視機 修好 花 了 我 一萬 日元 . +It snowed from Monday to Friday . ||| 雪 从 周 一下 到 周五 . +What is the total amount of money you spent ? ||| 你 一共 花 了 多少 钱 ? +I went swimming in the river . ||| 我 去 了 河裡 游泳 . +What do you call this insect in English ? ||| 这种 昆虫 在 英语 中 叫 什么 ? +We hardly have time to eat breakfast . ||| 我们 几乎 没空 吃 早饭 . +He is giving me a hard time . ||| 他 跟 我 過不去 . +I arrived here yesterday . ||| 我 昨天 到 這裡 的 . +She said she had been happy . ||| 她 說 她 以前 很快 樂 . +I want to have this letter registered . ||| 我 想要 用 掛 號 寄 這 封信 . +Dark clouds are a sign of rain . ||| 乌云 是 下雨 的 征兆 . +I have so many ideas . ||| 我 有 那麼 多 的 主意 . +Do not make fun of people . ||| 不要 取笑 人 . +The school was established in 1650 . ||| 这 所 学校 建于 1650 年 . +He is terrible at math . ||| 他 的 数学 很 不好 . +He lost his way in the woods . ||| 他 在 森林 中 迷了路 . +Come to my house this afternoon . ||| 今天下午 到 我家 来 一趟 . +I barely escaped being hit by the truck . ||| 我 差點 被 卡車 撞 上 . +Do you have any idea when the bank closes ? ||| 你 知道 银行 什么 时候 关门 吗 ? +They have been here for an hour . ||| 他們 已經 在 這裡 一個 小 時 了 . +I will give you this pendant . ||| 我 會 給 你 這個 墜飾 . +Hold on . ||| 坚持 . +She gave birth to a healthy baby . ||| 她 生下 了 一個 健康 的 嬰兒 . +My children are twins . ||| 我 的 孩子 是 雙 胞胎 . +Tom can not remember anything . ||| 汤姆 什么 都 记不住 . +I will go by taxi . ||| 我 坐 出租 車 去 . +Take a book and read it . ||| 拿 本书 读 ! +How do you feel about the issue ? ||| 你 對 這個 問題 有 甚麼 感受 ? +This book was easy . ||| 這 本書 很 容易 . +Tom and Mary even always wear the same color clothes . ||| 汤姆 和玛丽 甚至 经常 穿 同样 颜色 的 衣服 . +She felt like taking a walk . ||| 她 想 去 散步 . +Please remember to mail the letter . ||| 請 記得 把 信 寄出去 . +We need to leave . ||| 我们 必须 走 了 . +There is a hole in your sock . ||| 你 的 袜子 破 了 一个 洞 呀 . +Tom said he loved me . ||| 汤姆 说 他 爱 我 . +Birds lay eggs . ||| 鳥 下蛋 . +They are all innocent children . ||| 他们 都 是 无辜 的 孩子 . +Tom is serving a life sentence . ||| 汤姆 正在 服 无期徒刑 . +How much is this handkerchief ? ||| 请问 这个 手帕 多少 钱 ? +Please show me around . ||| 請 帶 我 到 處 看看 . +Why did not you turn up on Saturday ? ||| 你 為何 週六 沒來 ? +Tom asked Mary who her boyfriend was . ||| 汤姆 问 玛丽 她 的 男朋友 是 谁 . +She gave me a book for Christmas . ||| 她 給 了 我 一本 的 書作 為 聖誕 禮物 . +My birthday falls on Sunday . ||| 我 的 生日 在 星期日 . +That was the most interesting novel that I had ever read . ||| 这 是 我 所 读 过 的 最 有趣 的 小说 . +Do not ask me anything . ||| 什麼 都 別 問 我 . +She walked very carefully . ||| 她 小心翼翼 地 走 . +I have eaten one apple . ||| 我 吃 了 一個 蘋果 . +English is spoken in Australia . ||| 在 澳洲 的 人 說 英語 . +What did you guys go see ? ||| 你们 去 看 啥 了 ? +May I go to the movies tonight ? ||| 我 今晚 可以 去 看 電影 嗎 ? +Tom did not have enough money to pay the rent . ||| 汤姆 没有 足够 的 钱 付 租金 . +It is not good for a scientist to get emotional . ||| 對 一個 科學家 來說 , 多愁善感 是 不好 的 . +The admission is ten dollars a person . ||| 入場費 一個 人 10 美元 . +It is very cold . ||| 非常 冷 . +My favorite sport is baseball . ||| 我 最 喜歡 的 運動 是 棒球 . +Did you go to school yesterday ? ||| 你 昨天 去 上 學 了 嗎 ? +It is difficult to give up smoking . ||| 戒煙 很 難 . +What are your names ? ||| 你們 叫 什麼 名字 ? +He is studying in the library now . ||| 他 現在 在 圖書館 讀書 . +This is the only book I have . ||| 这 是 我 仅 有 的 一 本书 . +They arrived here safely yesterday . ||| 他們 昨天 平安 抵達 這裡 . +The fire alarm sounded . ||| 火警 警报 响 了 . +We went swimming in the river . ||| 我們 去 河裡 游泳 . +Would you care for more coffee ? ||| 你 想 再 喝 點 咖啡 嗎 ? +Tom was bullied . ||| 汤姆 被 欺负 了 . +I am staying home . ||| 我 在家 裡 待著 . +Who did you speak with ? ||| 你 和 谁 说话 呢 ? +I still do not know your name . ||| 我 到 現在 還 是 不 知道 你 的 名字 . +" Is he going to swim tomorrow ? " " Yes , he is . " ||| “ 他 明天 去 游泳 吗 ? ” “ 没错 ” +Children do not like to go out in the dark . ||| 孩子 們 不 喜歡 摸黑 外出 . +This work is not necessarily easy . ||| 这项 工作 未必 容易 . +He speaks both English and French . ||| 他 會 講 英語 和法語 . +This zipper does not zip smoothly . ||| 這 拉 鍊 卡卡 的 . +Tsunamis swept through rice fields and flooded the towns . ||| 海嘯席 捲 稻田 , 淹沒 了 城鎮 . +Is there anything that I should not eat ? ||| 有 什么 东西 是 我 不该 吃 的 吗 ? +He is a good lad . ||| 他 是 個 好人 . +What do you say to taking a walk in the park ? ||| 去 公园 散步 你 觉得 怎么样 ? +We will deal with this problem in Chapter 3 . ||| 我们 在 第三章 讨论 这个 问题 . +The dog went away . ||| 這 隻 狗 跑 走 了 . +You ought to have come to see me yesterday . ||| 你 昨天 應該 來看 我 的 . +I doubt if he will come to school today . ||| 我 懷疑 他 今天 是否 會來 上學 . +Listen carefully . ||| 仔细听 着 . +Sorry , but can you show me the way to the next village ? ||| 能 不能 麻烦 你 告诉 我 去 邻村 怎么 走 ? +Let is not discuss it . ||| 我们 不要 讨论 它 . +My father will kill me . ||| 我 爸会 杀 了 我 的 . +You used to be able to see the church from here . ||| 你 以前 可以 從 這裡 看到 教堂 . +The Eiffel Tower is in the same city as the Louvre Museum . ||| 埃菲尔铁塔 和 卢浮宫 在 同 一座 城市 . +I think that it is unlikely that Tom will get elected . ||| 我 觉得 汤姆 不太可能 会 当选 . +Get out of bed ! ||| 起床 ! +I am watching TV now . ||| 我 正在 看电视 . +I need to know tomorrow . ||| 我 明天 需要 知道 . +I was tired today so I went to bed early . ||| 我 今天 累 , 所以 我 睡 得 早 . +I heard an unusual sound . ||| 我 聽到 一個 不 尋常 的 聲音 . +An uncle of mine gave me some useful advice . ||| 我 的 一个 叔叔 给 我 了 一些 有用 的 建议 . +This gives me renewed hopes . ||| 这 给 了 我 新 的 希望 . +Have you heard from Tom ? ||| 汤姆 那里 有 联系 过 你 吗 ? +He painted the door over white . ||| 他 把 門 漆成 了 白色 . +How many books do you think you have read so far ? ||| 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +Come and see me tomorrow . ||| 明天 来 看看 我 . +You are quite forgetful . ||| 你 很 健忘 . +I walked along the river . ||| 我 沿着 河 走 了 段 路 . +If you hurry , you will catch up with him . ||| 如果 你 快 一点 , 还 能 赶上 他 . +Even his servants despised him . ||| 連 他 的 僕人 都 鄙視 他 +When do you want to go ? ||| 你 什麼 時候 要 去 ? +I walked as far as the station . ||| 我們 走到 跟 火車 站 那樣 遠 的 地方 . +He climbed Mt . Fuji . ||| 他 爬 上 了 富士山 . +She laughed at the sight of his hat . ||| 看到 他 的 帽子 , 她 笑 了 . +Did Tom break something again ? ||| 汤姆 又 弄坏了 什么 东西 吗 ? +Are you meeting someone here ? ||| 你 在 这里 是 要 见 谁 吧 ? +The surrounding area was very quiet . ||| 周圍 的 地區 非常 安靜 . +I have been on vacation . ||| 我 在 休假 . +I do not take any responsibility at all . ||| 我 完全 不负 任何 责任 . +Tom did not actually see what happened . ||| 湯姆 沒有 真正 看見 發生 了 甚麼 . +Do you deny that you went there ? ||| 你 否認 你 去 了 那裡 嗎 ? +Scotland can be very warm in September . ||| 蘇格蘭 在 9 月 可以 變 的 很 溫暖 . +Tom is not lying . ||| 湯姆 沒有 說謊 . +You are very resourceful . ||| 你 鬼点子 真多 . +We are all looking forward to seeing you and your family . ||| 我们 都 期待 看到 你 和 你 的 家人 . +The movie received mixed reviews . ||| 影片 得到 的 评价 褒贬不一 . +Bring the water to a boil . ||| 把 水 燒開 . +His office is past the bank on your left . ||| 经过 银行 , 左边 就是 他 的 办公室 了 . +Flowers bloom . ||| 鮮花盛 開 . +You do not have to hide . ||| 你 不用 藏著 . +Tom showed interest in the plan . ||| 湯姆 對 這個 計劃 有 興趣 . +She does not care how she dresses . ||| 她 不在乎 她 的 穿著 . +I am new here . ||| 我 是 新來 的 . +Good luck . ||| 祝你好运 . +Let is begin . ||| 讓 我們 開始 吧 . +It never rains but it pours . ||| 禍 不單 行 . +How do you feel ? ||| 你 感觉 如何 ? +This job pays 10,000 yen a day . ||| 這個 工作 一天 有 10 , 000 日 圓 的 報酬 . +Can I have it ? ||| 可以 给 我 吗 ? +You must go to bed now . ||| 你 現在 必須 上床 睡覺 . +What are you reading ? ||| 你 在 看 什么 ? +He could not remember my address . ||| 他 不 記得 我 的 地址 了 . +Tom visits Mary every time he goes to Boston . ||| 湯姆 每次 去 波士 頓都 去 看 瑪麗 . +The wind is blowing from the north . ||| 风 从 北边 来 . +Tom is a good friend of Mary is . ||| 汤姆 是 玛丽 的 一个 好 朋友 . +I do not want to participate in the ceremony . ||| 我 不想 参加 典礼 . +Tom studies philosophy at college . ||| 汤姆 在 大学 里学 的 是 哲学 . +I have missed so much . ||| 我 错过 了 太 多 . +You are here . ||| 你 在 这里 . +Her father is an excellent pianist . ||| 她 的 父親 是 一位 優秀 的 鋼 琴家 . +Have you eaten dinner ? ||| 你 吃 晚 飯 了 嗎 ? +There is a soccer match tomorrow . ||| 明天 有 一場 足球 比賽 . +You can not buy this medicine without a prescription . ||| 那个 药 的话 没有 处方 是 买不到 的 . +He ate a box of chocolates . ||| 他 吃 了 一盒 巧克力 . +Tom is leaving Boston tomorrow . ||| 湯姆 明天 離開 波士 頓 . +The policemen arrested the burglar . ||| 警察 逮捕 了竊 賊 . +We must take into account the fact that he is young . ||| 我们 必须 考虑 到 他 很 年轻 . +Tom and Mary can both speak French . ||| 汤姆 和玛丽 两个 人 都 会 说 法语 . +This is a picture of my family . ||| 這 是 一張 我 全家 的 照片 . +His son wants to be a lawyer . ||| 他 儿子 想 当 律师 . +It was so still that you would have heard a pin drop . ||| 安靜 到 連 針 掉 在 地上 的 聲音 你 都 會 聽 得到 . +I am looking forward to seeing you . ||| 我 期待 著見 到 你 . +He did not answer the phone , so I sent him an email . ||| 他 没有 接电话 , 所以 我 给 他 发 了 封 邮件 . +He does not know much about Japan . ||| 他 不是 很 了解 日本 . +She is a girl , but she is brave . ||| 她 是 個 女孩 , 但 她 勇敢 . +It is by no means certain . ||| 这 根本 不是 确定 的 . +Should we be worried ? ||| 我們 應 該 要 擔心 嗎 ? +Do not you like baseball ? ||| 你 不 喜欢 棒球 吗 ? +This is my friend . ||| 這個 是 我 的 朋友 . +Tom was the only boy in the entire class . ||| 汤姆 是 班里 唯一 的 男生 . +Can you swim ? ||| 你 會 游泳 嗎 ? +Maybe you could draw me a picture . ||| 你 可以 给 我 画 张 画 . +Tom has gone back home to Boston . ||| 湯姆 回波 士頓 的 家 去 了 . +I paid him five dollars . ||| 我 付 了 他 五塊 美元 . +He is the chief of my department . ||| 他 是 我 部門 的 主管 . +He is a friend of my brother is . ||| 他 是 我 哥哥 的 朋友 . +We got a good price for that . ||| 我們 得到 了 一個 很好 的 價格 買 那個 東西 . +I saw him wash the car . ||| 我 看見 他 洗車 . +He was playing the piano and she was singing . ||| 他 彈 鋼琴 , 她 唱歌 . +He sat next to the stream . ||| 他 坐在 河边 . +She fooled him . ||| 她 愚弄 了 他 . +I put some cream in my coffee . ||| 我 在 我 的 咖啡 裡 放 了 一些 奶油 . +I am prepared to accept the consequences . ||| 我 准备 好 了 承担 后果 . +It was love at first sight . ||| 那 是 一见钟情 . +When was the last time you spent time on Facebook ? ||| 你 上 一次 用 Facebook 是 什麼 時候 ? +This book of his is not interesting at all . ||| 他 的 这 本书 一点 意思 也 没有 . +That is too bad . ||| 太 可惜 了 ! +He has to take two science classes . ||| 他 必須 上 兩堂 理化 課 . +That is the man who lives next door . ||| 那 是 住 在 隔壁 的 男人 . +I wish she had come last night . ||| 但 願 她 昨晚 來 就 好 了 . +Tom was the only one who was punished . ||| 湯姆 是 唯一 受罰 的 人 . +Clint Eastwood was elected mayor of Carmel . ||| 克林伊 斯威特 當 選為 卡梅爾市 市長 . +That hotel was very near the lake . ||| 這家 旅館 非常 靠近 湖 . +Sorry to be late . ||| 對 不起 我 來 晚 了 . +We are almost broke . ||| 我們 快 破產 了 . +There is no reason that I should give up my plan . ||| 沒有 理由 让 我 放弃 我 的 计划 . +Tom will now be proud of me . ||| 汤姆 现在 会 以 我 为 傲 . +He has a large farm in Colorado . ||| 他 在 科羅拉多州 有 一個 大 農場 . +It is ten minutes before eleven . ||| 還 有 十分 鐘 就 十一 點 . +It makes me feel sad . ||| 这 让 我 感到 沮丧 . +He has no choice but to resign . ||| 他 沒有 選擇 , 只能 辭職 . +I take full responsibility for the action . ||| 我 會 為 這次 行動 負起 全責 . +Somebody is playing the piano . ||| 有人 正在 彈 鋼琴 . +Please translate the sentence below . ||| 请 把 下面 的 句子 翻译 一下 . +I still have not finished my homework . ||| 我 还 没 完成 作业 . +This tape recorder is not new . ||| 这个 磁带 录音机 不是 新 的 . +He had hoped to succeed , but he did not . ||| 他 本 希望 可以 成功 , 但是 他 没有 . +Has something happened ? ||| 發生 了 什麼 事 嗎 ? +Do not be silly . I can not do it . ||| 别 犯傻 . 我 能 做到 . +Be quiet , or the baby will wake up . ||| 安靜 , 否則 嬰兒 會 醒來 . +He will play golf next Sunday . ||| 他 下 週日 將 打 高爾夫 球 . +I do not feel like eating anything . ||| 我 不想 吃 任何 東西 . +Do you keep in contact with your high school classmates ? ||| 你 还 和 你 的 高中同学 保持联系 吗 ? +Thanks for your reply . ||| 谢谢 你 的 答复 . +I 'd better go home . ||| 我 回家 比較 好 . +I want a new shirt . What do you want ? ||| 我 要 一件 新 衬衫 . 你 想要 什么 ? +This hotel was built last year . ||| 這家 旅館 是 去年 蓋 的 . +I agree with that . ||| 我 同意 . +Tom was hiding something . ||| 湯姆 在 藏 甚麼 . +I could not agree with you more . ||| 我 非常 同意 你 . +He loses his temper quite easily . ||| 他 很 容易 發脾氣 . +Tom is not planning to stay . ||| 湯姆 不 打算 留下 . +Tom seems to know how . ||| 湯姆 看來 知道 那 是 怎樣 . +Does anyone want some more pie ? ||| 有人 想要 更多 的 餡餅 嗎 ? +I can not find my pen . ||| 我 找 不到 我 的 筆 . +Tom did not let me answer Mary is question . ||| 湯姆 沒 有 讓 我 回答 瑪莉 的 問題 . +Can you tell us a bit more about that ? ||| 能 再 告诉 我 一点 吗 ? +May I introduce myself ? ||| 我 可以 自我 介紹 嗎 ? +I will do it tomorrow . ||| 我 明天 再 做 . +Stick another stamp on the envelope . ||| 把 另 一張 郵票 貼 在 信封 上 . +Tom is thirty . ||| 汤姆 今年 三十岁 . +Tom has been sick in bed for three weeks . ||| 汤姆 已经 因 病 卧床 三周 了 . +That bicycle is mine . ||| 那 自行车 是 我 的 . +She studied abroad in order to brush up her English . ||| 她 在 國外 學習 以便 提升 她 的 英語 . +Can you please tell me your name once more ? ||| 请问 你 能 再 告诉 我 一遍 你 的 名字 吗 ? +I usually go to school by bicycle . ||| 我 通常 騎 自行 車 去 上 學 . +Something is wrong with my watch . ||| 我 的 錶 出 了 毛病 . +How important can it be ? ||| 它 能 有 多 重要 ? +We think Tom will be back soon . ||| 我們 認為 湯姆會 很快 回來 . +If I were you , I would not do it . ||| 如果 我 是 你 , 我 就 不 做 那件事 . +I have not seen you around here before . ||| 我 以前 在 这里 没见 过 你 . +I intend to go there . ||| 我 打算 去 那裡 . +I have already finished reading this book . ||| 我 已經 讀完 了 這 本書 . +He has all but finished the work . ||| 他 幾乎 已經 完成 這個 工作 了 . +This coffee is too strong for me . ||| 這個 咖啡 對 我 來說 太 濃 了 . +Does Tom still like jazz ? ||| 湯姆 還 喜歡 爵士 樂 嗎 ? +That man stole my wallet . ||| 那 男人 偷 了 我 的 钱包 . +Tom is in danger . ||| 湯姆 有 危險 . +He loved to laugh and enjoy life . ||| 他 爱 笑 以及 享受 生活 . +I am disappointed that I was not able to go with her . ||| 我 很 失望 我 沒能 和 她 一起 去 . +I remember giving him the key . ||| 我 記得 給 了 他 鑰匙 . +Is this your apple ? ||| 這 是 你們 的 蘋果 嗎 ? +Tom thought he had a chance to make a lot of money on the stock market . ||| 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +Tell me more about Tom . ||| 告诉 我 汤姆 的 情况 . +What are we having for dinner ? ||| 我们 晚饭 吃 什么 ? +This is the end . ||| 這 是 結束 . +Are you free right now ? ||| 你 現在 有空 嗎 ? +What did you hear ? ||| 您 听到 什么 了 ? +Fortune smiled on him . ||| 好运 向 他 露出 了 笑容 . +These pictures are really very beautiful . ||| 这些 照片 真美 . +The entire sales staff has worked around the clock for a week . ||| 全体 销售 人员 通宵达旦 地 工作 了 一周 . +Is that all you have to do ? ||| 这些 都 是 你 不得不 做 的 吗 ? +They are very big . ||| 他們 非常 大 . +The boy has learned to read . ||| 男孩 學會 了 閱讀 . +He saw her and blushed . ||| 他 看到 她 就 臉 紅 了 . +Cancer can be cured easily if it is found in its first phase . ||| 癌症 如果 在 第一阶段 被 发现 的话 是 很 容易 治愈 的 . +You have a way with women . ||| 你 对 女人 有 一套 . +It was before dawn that they got the fire under control . ||| 他们 在 黎明前 控制 住 了 火势 . +He is just gone on leave . ||| 他 剛 請 假 走 了 . +I envy the friendship Tom and Mary have . ||| 我 羨慕 Tom 和 Mary 之間 的 友誼 . +They are talking about music . ||| 他们 在 谈 音乐 . +He went to New York on business . ||| 他 去 紐約 出差 了 . +I hope that you will get well soon . ||| 我 希望 您 快 就 会 好 起来 . +Tom is thrilled . ||| 汤姆 兴奋不已 . +Nice timing . ||| 好时机 . +It was our secret . ||| 它 是 我們 的 秘密 . +Tom is eyes are blue . ||| 汤姆 的 眼睛 是 蓝色 的 . +She got married against her father is will . ||| 她 違背 了 她 父親 的 意願 結 了 婚 . +How well do you know Tom ? ||| 你 了解 汤姆 多少 ? +She insisted that it was my fault . ||| 她 坚持 认为 那 是 我 的 错 . +In my opinion , he is correct . ||| 在我看来 , 他 是 有 道理 的 . +We were attacked from both sides . ||| 我們 被 兩面 夾擊 了 . +What a beautiful flower ! ||| 多 漂亮 的 花 啊 ! +You 'd better not go out today . ||| 你 今天 最好 不要 出門 . +Two thirds of the employees of this company are engineers . ||| 这个 公司 二分 之三 的 雇员 是 工程师 . +She went into her room to change her dress . ||| 她 进 了 她 的 房间 换 裙子 . +Did you get the package I sent you ? ||| 你 收到 我 寄 給 你 的 包裹 了 嗎 ? +Nobody had ever heard of it . ||| 从 没有 人 听说 过 这件 事 . +You can not understand this sentence , can you ? ||| 你 不 懂 这 句句 子 , 不是 吗 ? +Does she speak English ? ||| 她 會 說 英語 嗎 ? +You must be at the station by 5 o 'clock . ||| 五點 以前 你 必須 在 車站 . +Wait here till he comes back . ||| 在 这儿 等到 他 回来 为止 . +Where is the closest pharmacy ? ||| 最近 的 藥房 在 哪裡 ? +This is a small town . ||| 这 是 个 小镇 . +Let is just eat . ||| 我們 吃 吧 . +The Seine flows through Paris . ||| 塞纳河 穿越 了 巴黎 . +A dolphin is a kind of mammal . ||| 海豚 是 一種 哺乳 動物 . +Mary looks like her mother . ||| 瑪麗 長 得 像 她 媽媽 . +Write your name in capitals . ||| 把 你 的 名字 用 大 写写 下来 . +How about Thai food ? ||| 泰国菜 怎么样 ? +How about playing chess tonight ? ||| 今晚 下棋 怎麼樣 ? +He could not understand the sentence . ||| 他 無法 理解 這 句 話 . +My blood pressure is low . ||| 我 的 血压 很 低 . +I will not stay silent . ||| 我 不 會 保持沉默 的 . +Look out ! ||| 当心 ! +I will be flying to Boston . ||| 我 将要 飞 到 波士顿 去 . +Everything seems OK . ||| 一切 看上去 正常 . +He likes to sing in the bathtub . ||| 他 喜歡 在 浴缸 裡 唱歌 . +Just put yourself in my shoes . ||| 你 站 在 我 的 立場 上 考慮 看看 . +How do you make a box ? ||| 你 怎么 做 箱子 ? +The motel can accommodate as many as 400 guests . ||| 汽车旅馆 可以 接待 多达 400 名 客人 . +I would like to speak with Tom alone . ||| 我 想 和 汤姆 单独 谈一谈 . +Learning English is hard work . ||| 學習 英語 很 辛苦 . +My room is very small . ||| 我 的 房間 非常 小 . +This watch is broken . ||| 这个 手表 坏掉 了 . +She said she was happy . ||| 她 说 了 她 很 幸福 . +What does your aunt do ? ||| 你 姑姑 是 做 什麼 的 ? +How about a drink after the game ? ||| 比賽 結束 後 喝一杯 怎麼樣 ? +Did you do this on your own ? ||| 這 是 你 自己 做 的 嗎 ? +Tom does not want to lose Mary . ||| 汤姆 不想 失去 玛丽 . +You are drunk ! ||| 你 喝醉 了 ! +I am bleeding . ||| 我 在 流血 . +Do you want to be rich ? ||| 你 想 致富 嗎 ? +I do not feel like studying English today . ||| 我 今天 不想 学习 英语 . +I have never seen you so happy . ||| 我 从没 见 过 你 这么 高兴 . +I think this is true . ||| 我 想 这 是 真的 . +Tom did better this time than he did last time . ||| 汤姆 这次 做 得 比 上次 好 . +I will have another beer . ||| 我会 再 喝一杯 啤酒 . +I think that Tom is photogenic . ||| 我 觉得 汤姆 很 上 镜 . +What is your mother tongue ? ||| 你 的 母语 是 什么 ? +They never tell a lie . ||| 他们 从不 说谎 . +You may be late for school . ||| 您 上學 可能 會 遲 到 . +I often visit my relatives . ||| 我 常常 访问 我 的 亲戚 . +I played tennis with my brother . ||| 我 和 我 的 兄弟 打 網球 . +Tom was mistaken . ||| 汤姆 错 了 . +My camera is different from yours . ||| 我 的 相機 跟 你 的 不同 . +I need a friend . ||| 我 需要 个 朋友 . +I am sure that he will succeed . ||| 我 相信 他 會 成功 . +As long as you are here , I will stay . ||| 只要 你 在 這兒 , 我 就 會 留下 來 . +Should we have some lunch ? ||| 我們 該 吃 午飯 了 吧 ? +Someone is calling you . ||| 有人 在 叫 你 . +Do you know where I live ? ||| 你 知道 我 住 哪 吗 ? +Something strange is going on . ||| 正 有 什么 奇怪 的 事情 发生 着 . +I know those girls . ||| 我 認識 那些 女孩 . +The lake was frozen . ||| 湖 冻冰 了 . +I did not mean to do that . ||| 我 没 想 那样 做 的 . +How much longer will you stay in Boston ? ||| 你 在 波士顿 再 待 多久 ? +Tom likes chocolate cake a lot . ||| 汤姆 很 喜欢 巧克力 蛋糕 . +I have brown hair . ||| 我 的 头发 是 褐色 的 . +His clothes are out of fashion . ||| 他 的 衣服 過時 了 . +Food should be chewed before being swallowed . ||| 食物 在 吞咽 前要 经过 咀嚼 . +You seemed surprised . ||| 你 看起来 很 吃惊 . +Since I was sick , I did not go to school . ||| 由于 我 生病 了 , 我 便 没去 上学 . +Shut up ! ||| 閉嘴 ! +I did everything by myself . ||| 我 全 靠 自己 . +I know nothing about her . ||| 我 对 她 一无所知 . +We do not have any secrets . ||| 我們 沒有 秘密 . +She tried . ||| 她 试 过 了 . +She is not a full @-@ time employee of this company . ||| 她 不是 這間 公司 正式 的 職員 . +The fish in this restaurant is delicious . ||| 這家 餐廳 的 魚 很 好吃 . +She rushed home with the good news . ||| 她 急忙 帶著 好消息 跑 回家 . +I introduced Mary to my parents . ||| 我 把 玛丽 介绍 给 我 的 父母 了 . +He came to see you yesterday . ||| 他 昨天 來看 你 . +Where do the airport buses leave from ? ||| 机场 大巴 从 哪里 出发 ? +I felt comfortable . ||| 我 感觉 很 舒服 . +I am asking you what you think . ||| 我 问 你 你 在 想 什么 . +Pass me the salt , please . ||| 请 给 我 盐 . +There is something strange happening . ||| 正 有 什么 奇怪 的 事情 发生 着 . +I want you to stay here until I get back . ||| 我 想 你 待 在 这里 直到 我 回来 . +Tom put his keys in his pocket . ||| 湯姆 把 他的鈅匙 放在 他 的 口袋 裡 . +I have hiccups . ||| 我 打嗝 了 . +Why do not you come visit us ? ||| 为什么 你 不 来看 我们 ? +We got up after midnight . ||| 我们 在 午夜 之后 起床 . +This is my property . ||| 這 是 我 的 財產 . +Lansing is the state capital of Michigan . ||| 蘭辛 是 密西根州 的 首府 . +He behaves as if he were insane . ||| 他 表现 得 像 疯 了 一样 . +I met him at the station . ||| 我 在 車站 遇見 他 . +It is a waste of time and money . ||| 这 是 在 浪费时间 和 金钱 . +Kyoto and Boston are sister cities . ||| 京都 和 波士顿 是 姐妹 城市 . +Who do you suggest we talk to ? ||| 你 建議 我們 跟 誰 講 話 ? +Please let me take your picture . ||| 請 讓 我 為 你 拍照 . +Thanks for the updates . ||| 谢谢 提供 新 消息 . +I had my bicycle stolen last night . ||| 昨晚 我 的 自行车 被 偷 了 . +Do you live with your parents ? ||| 你 和 你 的 父母 同住 嗎 ? +She usually gets up early . ||| 她 通常 很早 起床 . +The path zigzagged up the steep slope . ||| 蜿蜒 的 小路 爬上 了 陡坡 . +Mary closed the door quietly . ||| 瑪麗 悄悄地 關上 了 門 . +Was Tom surprised ? ||| 汤姆 吃惊 吗 ? +Close the door on your way out . ||| 出去 的 时候 把门 关上 . +The rope broke under the strain . ||| 繩子 被 拉斷 了 . +Is it going to rain tomorrow ? ||| 明天 会 下雨 吗 ? +I support you whole @-@ heartedly . ||| 我 全心全意 地 支持 你 . +Tom also has one . ||| 汤姆 也 有 一个 . +He had his car stolen last night . ||| 昨晚 他 的 車 被 偷 了 . +This is a post office and that is a bank . ||| 这 是 邮局 , 那 是 银行 . +Tom is friendly to me . ||| 湯姆 對 我 友好 . +Tom does not eat pork . ||| 湯姆 不吃 猪肉 . +Watch my camera for me . ||| 幫 我 看著 我 的 相機 . +Monopoly is a popular game for families to play . ||| 大富翁 是 一個 家庭 玩 的 熱門 遊戲 . +I helped my father with the work . ||| 我 幫 我 父親 做 這個 工作 . +They speak English in New Zealand . ||| 他們 在 紐西蘭 講 英語 . +It is still fresh in my memory . ||| 我 仍然 記憶 猶新 . +This is a great day . ||| 真是 美好 的 一天 . +Tom is coach likes him . ||| 汤姆 的 教练 喜欢 他 . +It is worth the wait . ||| 它 是 值得 等待 的 . +I am not sure Tom would help . ||| 我 不 確定 湯姆 能 不能 幫忙 . +We are not scared of anybody . ||| 我们 谁 都 不怕 . +What time does the movie start ? ||| 電影 什麼 時候 開始 ? +It does not really matter . ||| 那 不 真的 重要 . +I got a phone call from him just as I was about to go to bed . ||| 我 正要 上床 的 時候 接到 了 他 打來 的 電話 . +Keep your eyes wide open before marriage , half shut afterwards . ||| 婚前 張開眼 , 婚 後 半閉眼 . +Let is get our photograph taken . ||| 讓 我們 來 拍照 吧 . +They told me that I would feel a little better if I took this medicine . ||| 他們 告訴 我 吃 完 這個 藥 我 就 會 覺得 舒服 一點 . +We have run short of money . ||| 我们 缺钱 了 . +My grandfather lived to be 90 years old . ||| 我 的 祖父 活 到 九十 歲 . +It stopped snowing an hour ago . ||| 一個 小 時 前 雪停了 . +He leaves for school at seven . ||| 他 七點鐘 去 學校 . +That is the same story as I heard when I was a child . ||| 那 跟 當 我 是 個 孩子 時所 聽到 的 是 同樣 的 故事 . +I would like to talk to Tom alone . ||| 我 想 和 汤姆 单独 谈一谈 . +In my room , there are no clocks . ||| 我 的 房间 里 没有 时钟 . +We went all out to get the job done . ||| 我们 全力以赴 来 完成 工作 . +What is the purpose of your visit ? ||| 您 此行 的 目的 是 什麼 ? +Deal us the cards . ||| 發牌 給 我們 . +He wants to go to Africa . ||| 他 想要 去 非洲 . +Do you have one ? ||| 你 有 嗎 ? +I could not bear to look at her . ||| 我 无法忍受 看着 她 . +I did not want to listen to Tom singing . ||| 我 不想 聽 湯姆 唱歌 . +There is nobody in the building now . ||| 現 在建 築 裡 沒 人 . +I promise that I will come . ||| 我 保证 我会 来 . +He is a teacher . ||| 他 是 教师 . +Please write to me about conditions at your school . ||| 请 写信 告诉 我 你们 学校 的 情况 . +What kind of sandwich do you want ? ||| 你 要 什麼樣 的 三明治 ? +She got first prize in the eating contest . ||| 她 在 吃 东西 比赛 里 得 了 一等奖 . +We had a kid just last year . ||| 就 在 去年 我們 有 了 一個 孩子 . +I am doubling my prices . ||| 我 正在 把 价格 涨 一倍 . +My father has been engaged in foreign trade for many years . ||| 我 父亲 经营 外贸 多年 . +Tom was like a member of our family . ||| 湯姆 像是 我們 家庭 的 一員 . +The friend who I thought would pass the exam failed it . ||| 那个 我 认为 会 通过 考试 的 朋友 失败 了 . +The sun gives us light and heat . ||| 太陽 提供 我們 光 和 熱 . +Not everything can be bought with money . ||| 不是 所有 的 東西 都 可以 用 金錢 買到 . +Tom did not say a single word . ||| 湯姆 甚麼 也 没 說 . +What did you tell your boss ? ||| 你 跟 你 的 老板 说 什么 了 ? +Nobody is going to shed any tears if that old building gets torn down . ||| 没有 人会 为 这个 旧 建筑物 的 拆除 而 落泪 . +She is at work right now . ||| 她 现在 正在 工作 . +You are quite right . ||| 你 是 對 的 . +There is a bank in front of the station . ||| 车站 前 有个 银行 . +Declarations of variables are extremely important in C and C + + . ||| 变量 的 声明 在 C 和 C++ 中 极其重要 . +I paid ten dollars for this cap . ||| 我 付 了 十美元 買 這 頂 帽子 . +I will never speak to you again . ||| 我 再也不会 跟 你 说话 了 . +I will bring one more towel . ||| 我 再 拿 块 毛巾 过来 . +Are you and Tom working together ? ||| 你 跟 湯姆 一起 工作 嗎 ? +Tom did not say where he was planning to go . ||| 湯姆 沒 說 他 打算 去 哪裡 . +Good night . ||| 晚安 . +You should have started by now . ||| 你 早就 該 開始 了 . +Is it true Tom can not read or write ? ||| 汤姆 真的 不会 读 也 不会 写 吗 ? +I agreed with him on that point . ||| 我 在 那 一點 上 同意 他 . +Can he speak English ? ||| 他 會 講 英語 嗎 ? +He took care of the business after his father is death . ||| 在 他 父亲 死 后 , 他 接管 了 公司 . +You could have answered that question . ||| 你 本 可以 回答 那 问题 . +Sentences begin with a capital letter . ||| 句子 以 一個 大 寫 字母 開頭 . +I heard the telephone ringing . ||| 我 听到 电话响 了 . +He skis in Hokkaido every winter . ||| 他 每年 冬天 在 北海道 滑雪 . +You will soon get used to Japanese food . ||| 你 很快 就 会 习惯 吃 日本料理 了 . +She is as beautiful as her mother . ||| 她 跟 她 媽媽 一樣 漂亮 . +Quit gambling . ||| 戒掉 赌博 吧 . +I should not have done it . ||| 我 本 不 应该 做 的 . +We have seen no one . ||| 我们 谁 也 没 看见 . +I saw a woman in black . ||| 我 看见 一个 穿 黑衣服 的 女人 . +He began to eat his breakfast . ||| 他 開始 吃 他 的 早餐 了 . +I hope Tom loses . ||| 我 希望 湯姆 輸 . +I am going out for a while . ||| 我 出去 一会儿 . +I am sorry to bother you so often . ||| 一直 打扰 你 不好意思 . +Be patient . ||| 耐心 等 着 . +I filled the bucket with water . ||| 我 在 桶子 裡 裝滿 了 水 . +Maybe he will not become famous . ||| 也許 他 不 會 成名 . +Finally , it is Friday . ||| 終於 星期五 了 . +She visited her husband in prison . ||| 她 探望 了 她 在 監 獄裡 的 丈夫 . +You are not fast enough . ||| 你 不够 快 . +Tom translated the document into French . ||| 汤姆 把 文档 译成 法语 . +He is a thief . ||| 这 是 一个 小偷 . +He stayed there for three days . ||| 他 在 那裡 待 了 三天 . +Stop making a fool of yourself . ||| 停止 愚弄 你 自己 . +The school is on top of the hill . ||| 學校 在 山丘 頂上 . +She was beautiful when she was young . ||| 她 年轻 时 很 美丽 . +She got out of the car . ||| 她 从 车里 出来 了 . +I have to go shopping . I will be back in an hour . ||| 我 该 去 买 东西 了 , 我 一 小时 后 回来 . +I should have gone home earlier . ||| 我 該 早點 回家 . +If you heard her speak English , you would take her for an American . ||| 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 美国 人 呢 . +He cannot have done such a thing . ||| 他 不 可能 做 那種 事 . +They were all dressed in uniforms . ||| 他們 全部 穿 制服 了 . +May I come and see you tomorrow ? ||| 我 明天 可以 來看 你 嗎 ? +I want to drive . ||| 我 想 開車 . +Suppose you had a thousand dollars , what would you do with it ? ||| 假如 你 有 1000 美元 , 你 会 用 它 做 什么 呢 ? +Why should I go to school ? ||| 为什么 我 应该 去 上学 ? +Mary has a bad back . It is hard for her to lift things . ||| 瑪麗 的 背 不好 , 她 很 難 把 東西 舉起 來 . +I hope Tom has learned his lesson . ||| 我 希望 汤姆 已经 吸取教训 了 . +This is my dictionary . ||| 这 是 我 的 字典 . +This is typical . ||| 这 是 典型 的 . +I asked him to wait here . ||| 我 請 他 在 這裡 等 . +Tom certainly is good at baseball . ||| 汤姆 打 棒球 打 的 非常 好 . +She is a clerk in the supermarket . ||| 她 在 超市 做 秘书 . +I had a little fever this morning . ||| 今天上午 我 有 一點 兒 發燒 . +He caught a cold . ||| 他 着凉 了 . +He was kind enough to lend me some money . ||| 他 够 大方 , 借了 我 一点 钱 . +She is on a diet . ||| 她 在 节食 . +He came to my rescue . ||| 他 拯救 了 我 . +I will provide you with all the necessary information . ||| 我 會 給 你 所有 必要 的 信息 . +There is no water . ||| 沒有 水 . +You are too young to retire . ||| 你 太 年輕 , 不能 退休 . +I am afraid of dogs . ||| 我 怕 狗 . +The planets revolve around the sun . ||| 行星 繞著 太陽 轉 . +Do you believe that God exists ? ||| 你 相信 神 存在 嗎 ? +I am interested in Asian history . ||| 我 对 亚洲 的 历史 很感兴趣 . +This is my wife . ||| 这 是 我 的 妻子 . +Did you lock the door ? ||| 你 有 關門 嗎 ? +A little knowledge is a dangerous thing . ||| 只有 一點點 的 知識 是 危險 的 事 . +It looks like it is going to snow . ||| 看起 來 快 下雪 了 . +He is fluent in Chinese . ||| 他 能 說 流利 的 中文 . +My father helped me with my homework . ||| 我 爸爸 幫 我 做作 業 . +She was ashamed of her children is behavior . ||| 她 为 自己 孩子 的 行为 感到 羞耻 . +Water boils at 100 degrees . ||| 水 在 攝 氏 100 度沸騰 . +I noticed she was wearing a new hat . ||| 我 注意 到 她 当时 戴 了 顶 新 帽子 . +Please do not speak so fast . ||| 請 不要 說 得 這麼 快 . +She is correct for sure . ||| 她 的 確是 正確 的 . +He bought a small house in Kyoto . ||| 他 在 京都 買 了 一個 小 房子 . +Do you like music ? ||| 你 爱 音乐 吗 ? +The doctor called him back . ||| 医生 把 他 叫 了 回来 . +Tom was not in bed . ||| 湯姆 不 在 床上 . +Did you bring a hair dryer ? ||| 你 有 帶 吹 風機 嗎 ? +He was standing at the street corner . ||| 他 站 在 街角 . +I am not ashamed of my father being poor . ||| 我 父亲 很穷 并 不让 我 觉得 丢脸 . +He accused me of having stolen his watch . ||| 他 指控 我 偷 了 他 的 手表 . +Her mother will continue to work . ||| 她 母亲 将 继续 工作 . +He hit the ball with his racket . ||| 他 用 他 的 球拍 擊球 . +That is a huge challenge . ||| 这 是 一个 巨大 的 挑战 . +I brought you a little something . ||| 我 给 你 带 了 点 东西 . +Has the mailman already come ? ||| 郵差 已經 來 過 了 嗎 ? +I know this area pretty well . ||| 我 很 瞭解 這 地方 . +Do not start without me . ||| 我 不 在 就别 开始 . +He is not at home . ||| 他 不 在家 . +I made a few changes . ||| 我 做 了 点 改动 . +I can not stay . ||| 我 不能 留下 . +I hope he has not had an accident . ||| 我 希望 他 沒發 生意 外 . +I did not need to paint the fence . ||| 我 不 需要 粉刷 圍牆 . +It was one of the best nights I have had . ||| 这 是 我 度过 的 最好 的 夜晚 之一 . +He is no fool . ||| 他 不是 傻子 . +This book is quite difficult . ||| 这 本书 很 难读 . +This desk is mine . ||| 這 張 書 桌 是 我 的 . +I am not writing a letter . ||| 我 不是 正在 寫信 . +He lives in that house over there . ||| 他 住 在 那邊 的 那間 房子 . +You should have attended the meeting . ||| 你 應該 參加 這個 會議 的 . +The ship went up in flames . ||| 船 起 了 火 . +He is a promising student . ||| 他 是 一位 有 前途 的 学生 . +I caught a cold two days ago . ||| 我 兩天 前 感冒 了 . +Tom was a bit puzzled by Mary is answer . ||| 汤姆 被 玛丽 的 回答 困惑 了 一下 . +Please shut the door . ||| 請 關門 . +Where do you live now ? ||| 你 现在 住 在 哪里 ? +Tom learned how to do that from his grandfather . ||| 汤姆 从 他 祖父 那里 学会 了 怎么 做 . +I have a pair of shoes . ||| 我 有 一双 鞋 . +He ran as fast as he could . ||| 他 跑 得 能 有 多快 就 有 多 快 . +None of the teachers could solve the problem . ||| 所有 的 老师 都 无法 解决 这个 问题 . +It is not something I am very good at . ||| 这 不是 我 所 擅长 的 事 . +I only want to know the facts . ||| 我 只 想 知道 事实 . +Tom should have handled the situation differently . ||| 汤姆 应该 用 别的 方式 处理 这 状况 . +The best hairdressers are gay . ||| 最好 的 理发师 是 同性恋 . +She is my classmate . ||| 她 是 我 的 同學 . +You should have come yesterday . ||| 你 昨天 應該 來 的 . +Let me give you a lift as far as the station . ||| 讓 我 送 你 到 車 站 吧 . +How did your test go ? ||| 你 的 测验 怎么样 ? +Can you please shut up ? ||| 你 可以 閉 嘴 嗎 ? +I felt good tonight . ||| 我 今晚 感觉良好 . +What is the weather like today ? ||| 今天天气 怎么样 ? +A face with too much make up looks strange . ||| 化妆 太 浓 的话 脸会 看着 很 奇怪 . +Are you taking any medicine regularly ? ||| 你 經常 服用 任何 藥物 嗎 ? +There was only one warden on duty when the riot started . ||| 暴動 開始 時 只有 一位 監獄 長 值班 . +The rich are not always happier than the poor . ||| 有钱人 未必 比 穷人 幸福 . +Tom has not forgiven anybody . ||| 汤姆 没 原谅 过 任何人 . +I need a cab . ||| 我 需要 一輛 出租 車 . +There was no money left in my wallet . ||| 我 钱包 里 没钱 了 . +My room is twice as big as his . ||| 我 的 房間 是 他 的 兩倍 大 . +I wish more people felt the same way . ||| 我 希望 更 多 人 以 相同 的 方式 来 感受 . +The hawk caught a mouse . ||| 這 隻 鷹 抓 到 一 隻 老鼠 . +She was almost late for school . ||| 她 上學 幾乎 遲到 . +He did not agree to my proposal . ||| 他 不 同意 我 的 建議 . +I like reading . ||| 我 喜欢 阅读 . +These things are not mine ! ||| 这些 东西 不是 我 的 ! +The river flows under the bridge . ||| 河 從 橋 下流 過 . +He whistled as he walked . ||| 他 邊 走 邊 吹口哨 . +I advertised my house in the newspaper . ||| 我 在 报纸 上 刊登 了 我 的 房子 的 广告 . +He returned from China . ||| 他 从 中国 回来 了 . +A thousand dollars is a large sum . ||| 1000 美元 是 个 大 数目 . +You should be kind to others . ||| 对 其他人 你 应该 和善 一点 . +Do you like flying ? ||| 你 喜歡 坐 飛機 嗎 ? +She kissed him on the cheek . ||| 她 亲吻 他 的 脸颊 . +Even children can read this book . ||| 即使 是 小孩 也 能讀 這 本書 . +There is no scientific basis for these claims . ||| 這些 主張 沒有 科學 的 根據 . +We cannot overestimate the value of health . ||| 我们 不能 高估 健康 的 价值 . +It is impossible to predict earthquakes . ||| 預測 地震 是 不 可能 的 . +Tom has apparently done that already . ||| 很 明顯 , 湯姆 已經 做 完 了 . +I have not made much progress . ||| 我 还 没有 取得 那么 大 的 进展 . +Is this the bus to Oxford ? ||| 这 是 去 牛津大学 的 车 吗 ? +My hobby is playing the piano . ||| 我 的 嗜好 就是 彈 鋼琴 . +What are you looking at ? ||| 你 在看 什麼 ? +School starts next Monday . ||| 下周一 开学 . +We will get a phone call from him tonight for sure . ||| 今晚 我們 肯定 會 接到 他 的 電話 . +I do not know . ||| 我 一无所知 . +I have no idea who she is . ||| 我 不 知道 她 是 谁 . +Tom is doing what he loves . ||| 汤姆 在 做 他 喜欢 做 的 事 . +She quit smoking . ||| 她 停下 來 抽煙 . +He has not come already , has he ? ||| 他 並 沒有 來 , 不是 嗎 ? +Unfortunately , there was no one around . ||| 很 不幸 , 没有 人 在 身边 . +How do you spell your family name ? ||| 你 的 姓 怎麼 拼 ? +This desk is better than that one . ||| 這 張 書桌 比 那 張 好 . +Volleyball is a lot of fun . ||| 排球 很 有意思 . +Please help me . ||| 請 幫 我 . +Can you jump rope ? ||| 你 能 跳绳 吗 ? +Why do not we have lunch together ? ||| 為 什麼 我們 不 一起 吃 午 飯 呢 ? +I am getting off at the next station . ||| 我 下 一站 下车 . +Tom said hi . ||| 汤姆 打了个 招呼 . +I can see the light . ||| 我 能 看到 光線 . +He is about your age . ||| 他 跟 您 年纪 差不多 . +Tom is the only guy in this class . ||| 汤姆 是 这个 班级 里 唯一 的 男生 . +These are cakes that she baked herself . ||| 這些 是 她 自己 烤 的 蛋糕 . +She graduated from high school last year . ||| 去年 她 從 高中 畢業 了 . +Tom visited Boston last year . ||| 湯姆 去年 去 了 波士 頓 . +He tried to speak French to us . ||| 他 試著 跟 我們 講法 語 . +This job does not pay . ||| 这份 工作 不 付钱 的 . +I think I should get right to work . ||| 我 認為 我 該 馬 上去 工作 . +You are always late . ||| 你 总是 迟到 . +You should learn to control your emotions . ||| 你 應該 學會 控制 自己 的 情緒 . +It was raining when we left , but by the time we arrived , it was sunny . ||| 我们 走 的 时候 下着雨 , 到 的 时候 有 太阳 . +I carried the box on my shoulder . ||| 我 把 盒子 扛 在 肩上 . +Tom wished he had not borrowed the book from Mary . ||| 汤姆 希望 他 没有 从 玛丽 那里 借书 . +I 'd like for you to go . ||| 我 希望 你 去 . +I can not adjust myself to the climate here . ||| 我 不能 讓 自己 適應 這裡 的 氣候 . +All of you did good work . ||| 你們 所有 的 人 都 做 得 很 好 . +I would like to make an overseas call . ||| 我 想 打 個 國際 電話 . +Tom and Mary admired the scenery as they held hands . ||| 汤姆 和玛丽 手牵着 手 , 一起 欣赏 风景 . +He visited many countries in Asia . ||| 他 訪 問 過 許多 亞洲 國家 . +I prefer rice to bread . ||| 比起 面包 , 我 更 喜欢 米饭 . +Tom was conservative . ||| 汤姆 过去 很 保守 . +You are in a safe place . ||| 您 在 一个 安全 的 地方 . +You can not speak English , can you ? ||| 你 不会 说 英语 , 是 吗 ? +He shaved his mustache off . ||| 他 刮 了 他 的 胡子 . +We have not seen anyone . ||| 我们 谁 也 没 看见 . +The city was destroyed by fire . ||| 這個 城市 毀 於 火災 . +I am tired of homework . ||| 我 厭倦 了 功課 . +The blanket is still wet . ||| 这个 毯子 还是 湿 的 . +It was only a partial success . ||| 那 只是 部分 的 成功 . +No man can serve two masters . ||| 没有 人 可以 共侍 二 主 . +The clock gains five minutes a day . ||| 那个 钟 每天 都 快 了 五分钟 . +You are liable for the debt . ||| 你 有 义务 还债 . +I need to study math . ||| 我 需要 学习 数学 . +Are you afraid of Tom ? ||| 你 會 怕 Tom 嗎 ? +I studied for a while this morning . ||| 我 今天 早上 讀 了 一會兒 書 . +I can not stand the noise . ||| 我 不能 忍受 這個 噪音 . +Have you ever been in jail ? ||| 你 去过 监狱 吗 ? +Will it snow tonight ? ||| 今晚 会 下雪 吗 ? +I will attend the meeting . ||| 我 將 參加 這個 會議 . +Mom , can I go swimming ? ||| 媽 , 我 可以 去 游泳 嗎 ? +He looks old , but he is still in his twenties . ||| 他 看上去 老 , 但 他 还 不到 30 岁 . +They were carelessly unaware of the danger . ||| 他们 粗心大意 , 还 没 意识 到 危险 . +One thousand dollars will cover all the expenses for the party . ||| 1000 美元 将 负担 聚会 的 全部 费用 . +All of them agreed to the proposal . ||| 他們 所有 的 人 都 同意 這項 建議 . +He is not breaking the law . ||| 他 没 违法 . +CDs have taken the place of records . ||| CD 已经 取代 了 胶木 唱片 . +We did not break in . ||| 我们 没有 打断 . +Did you buy a nice bicycle ? ||| 你 買 了 輛 好 自行 車 嗎 ? +She appears to have a lot of friends . ||| 她 看 起來 好像 有 很多 朋友 . +It is dangerous to drink too much . ||| 酒 喝 太 多 很 危险 . +Have you gone to see a doctor ? ||| 你 去 看过 医生 了 吗 ? +There were many people at the concert . ||| 音乐会 上 有 很多 人 . +You think I am mad , do not you ? ||| 你 認為 我 瘋 了 , 不是 麼 ? +Tom can not find Mary . ||| 汤姆 找 不到 玛丽 . +She asked him to mail that letter . ||| 她 請 他 寄 那 封信 . +This happens all the time . ||| 這 是 常有 的 事 . +Life has been very hard . ||| 生活 很 艰苦 . +I missed you . ||| 我 想 你 . +I am a student . ||| 我 是 个 学生 . +You and I have the same idea . ||| 你 和 我 有 相同 的 想法 . +It makes no sense at all . ||| 这 没有 任何 意义 . +Is that your car ? ||| 那 是 你 的 車 嗎 ? +Her parents can not help worrying about her injuries . ||| 她 的 父母 不能不 担心 她 的 伤势 . +His new novel is worth reading . ||| 他 的 新小 說 值得 一 讀 . +I will not allow you to use my pen . ||| 我 不 允许 你 用 我 的 钢笔 . +Can you translate this song for me ? ||| 你 能 为 我 翻译 这 首歌 吗 ? +He has been teaching for 20 years . ||| 他 已經 教 了 20 年 . +I am too excited to eat anything . ||| 我 興奮 得 吃不下 任何 東西 . +Come on . I want to show you something . ||| 来 吧 . 我 想 让 你 看点 东西 . +She cried . ||| 她 哭 了 . +Please turn on the radio . ||| 请 将 收音机 打开 . +Drive on . ||| 往前 开 . +I wonder why he did that . ||| 我 不 知道 他 為 什麼 那樣 做 ? +Put on some clothes . ||| 穿 上 點 衣服 . +I got on the wrong bus . ||| 我 上 錯車 了 . +How much is this umbrella ? ||| 這 把 傘 多少 錢 ? +How much money do you have hidden under your bed ? ||| 你 在 你 的 床 下面 藏 了 多少 钱 ? +This is a picture of my sister . ||| 這 是 我 姊姊 的 照片 . +Get out ! ||| 出去 ! +I have run out of money . ||| 我 錢 已經 用完 了 . +She was reading a gardening manual . ||| 她 正在 讀 一本 園藝 手冊 . +Stop swearing , please . ||| 请 别 再 发誓 了 . +Both you and I are men . ||| 你 和 我 都 是 男人 . +Why is snow white ? ||| 为什么 雪 是 白色 的 呢 ? +The speaker is comments were highly offensive . ||| 发言人 的 评论 极 有 攻击性 . +I will never be able to live this down . ||| 我 以 後 不能 在 這 鎮 上 生活 了 . +How many things did you buy ? ||| 你 買 了 多少 東西 ? +Is he still interested ? ||| 他 還 有 興趣 嗎 ? +We are going out tonight . ||| 我们 今晚 出去 . +Who drew it ? ||| 誰 畫 的 ? +Obey your teachers . ||| 要 听 老师 的话 . +I gave my cold to him . ||| 我 的 感冒 传染 了 他 . +It is not easy to master English . ||| 要 精通 英語 不 容易 . +Tom is happy here . ||| 湯姆 在 這裡 很 高興 . +Are you also from Boston ? ||| 你 也 是 從 波士 頓來 的 嗎 ? +She decided to resign from her job . ||| 她 決定 辭去 她 的 工作 . +She is a mere child . ||| 她 只是 個 孩子 . +Let is talk about what you did in Boston . ||| 让 我们 谈谈 你 在 波士顿 做 的 事 . +I want to write an article . ||| 我 想 写 篇文章 . +The boy is playing with his toy soldiers . ||| 男孩 在 玩 玩具兵 . +Would you like a tour ? ||| 你 想 去 旅游 嗎 ? +I wish I were a good singer . ||| 但 願 我 是 一個 好 歌手 . +I knew what Tom was doing . ||| 我 知道 汤姆 在 做 什么 . +We suspected him of lying . ||| 我们 怀疑 他 说谎 了 . +This book is too difficult for you to read . ||| 这 本书 对 你 来说 读 起来 太 难 了 . +Do not forget to take a camera . ||| 别忘了 带 个 相机 . +" Why are you going to Japan ? " " To attend a conference in Tokyo . " ||| “ 你 去 日本 干嘛 ? ” “ 去 东京 参加 一个 会议 . ” +Is Tom a common name in your country ? ||| 在 你们 国家 , 汤姆 是 个 常见 的 名字 吗 ? +I erased the blackboard for the teacher . ||| 我 为 老师 擦 黑板 . +There is no cause for complaint . ||| 没有 理由 抱怨 . +He admonished them for being noisy . ||| 他 告誡 他們 不要 吵鬧 . +The nurse will tell you how to do it . ||| 护士 会 告诉 你 怎么 做 . +This novel is boring . ||| 這 本小 說 很 無聊 . +He lost his eyesight in that accident . ||| 他 在 那次 意外 中 失去 了 他 的 視力 . +Let is shake hands . ||| 讓 我們 握手 吧 . +I work under her . ||| 我 在 她 手下 工作 . +You should have woken me . ||| 你 应该 叫醒 我 . +He lives by himself . ||| 他 独自 生活 . +She bit him . ||| 她 咬 了 他 . +Mary tied an apron around her waist and then took the turkey out of the oven . ||| Mary 试图 把 围裙 围 在 腰 上 , 然后 把 烤鸡 从 炉子 里 拿 出来 . +Tom does not think that will do any good . ||| 汤姆 认为 那 没有 好处 . +He works at the welfare office . ||| 他 在 福利 辦事 處 上班 . +I want to see your mother . ||| 我 想 看看 你 的 母親 . +Are you really willing to help ? ||| 你 是 真的 很 樂意 幫忙 嗎 ? +Please wait till he comes back . ||| 請 等到 他 回來 . +He shook hands with his friend . ||| 他 和 他 的 朋友 握手 . +Let is get started . ||| 让 我们 开始 吧 . +This dog eats almost anything . ||| 這 隻 狗 幾 乎 吃 任何 東西 . +Would you please give me some more tea ? ||| 你 能 再 给 我 点 茶 吗 ? +It is time to take a bath . ||| 是 时候 洗 个 澡 了 . +Where are you planning to spend the night ? ||| 你 打算 去 哪儿 过夜 ? +They consider it impolite to disagree with someone they do not know very well . ||| 他们 认为 , 去 反驳 一个 不 认识 的 人 有些 不 礼貌 . +He began to shout . ||| 他 開始 喊叫 . +He is old enough to drive a car . ||| 他 的 年紀 可以 開車 了 . +You have three minutes to surrender . ||| 限 你 三分 鐘 內 投降 +He spends lots of money on clothes . ||| 他 在 衣服 上 花 了 很多 錢 . +We will meet again . ||| 后会有期 . +I am sick . ||| 我 生病 了 . +That is so perfect . ||| 那 是 完美 的 . +I can not live without you . ||| 沒有 你 我 活不下去 . +The food is not very good here . ||| 這裡 的 食物 不是 很 好 . +I am still sleepy . ||| 我 还 很困 . +He acted like a madman . ||| 他 表现 的 像 个 疯子 . +Our team scored the first goal . ||| 我们 队 进 了 第一个 球 . +I hope I can see you at Christmas . ||| 我 期望 能 在 圣诞节 见到 你 . +Tom wore ripped jeans . ||| 汤姆 穿 了 破洞 牛仔裤 . +I am not a witch . ||| 我 不是 巫婆 . +It goes without saying that health is important . ||| 不用说 , 健康 是 重要 的 . +It would be crazy to do that again . ||| 再 来 一次 就 真是 发疯 了 . +The crane , unlike the dog , has never dreamed of flying . ||| 不 像 狗 , 這 隻 鶴 從 來 沒 有 夢 想 過 飛 翔 . +He told me the story of his life . ||| 他 给 我 讲述 了 他 的 一生 . +I am so excited . ||| 我 很 激动 . +Time for dinner . ||| 吃饭时间 到 了 . +There is no chair to sit upon . ||| 沒有 椅子 坐 . +Keep it . ||| 留 着 吧 . +Radio is been replaced by the TV . ||| 电视 代替 了 收音机 . +Tom has lost his interest in studying French . ||| 汤姆 已经 对 学法语 不感兴趣 了 . +I kept singing . ||| 我 继续 唱歌 . +What I want is not tea , but coffee . ||| 我 要 的 不是 茶 , 而是 咖啡 . +The cat caught a mouse . ||| 猫 抓住 了 老鼠 . +They tasted the bread . ||| 他們 嚐了 麵 包 . +He may have taken the wrong train . ||| 他 可能 搭錯 火車 了 . +Although I enjoy bowling , I have not gone bowling recently . ||| 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I can not shake off my cold . ||| 我 的 感冒 怎麼 也 不 會 好 . +This is a secret just between you and me , so do not let it slip out . ||| 这 只是 你 和 我 之间 的 秘密 , 所以 不要 让 它 流出去 . +There was a shortage of fuel . ||| 燃料 短缺 . +Where is the checkout counter ? ||| 結帳 櫃台 在 哪裡 ? +They have announced their engagement . ||| 他們 已經 宣布 訂婚 了 . +He comes here every three days . ||| 他 每 三天 來 這裡 一次 . +We want candy . ||| 我們 想要 糖 . +She was at a loss for words to express her feeling . ||| 她 已经 无法 用 语言表达 她 的 感觉 了 . +I can not sleep at all . ||| 完全 睡不着 . +I have heard that name somewhere before . ||| 我 在 别处 听 过 那个 名字 . +There is a book here . ||| 這裡 有 一本 書 . +Switzerland is a neutral country . ||| 瑞士 是 一个 中立 的 国家 . +You should come back immediately . ||| 你 应该 马上 回来 . +She decided to marry him . ||| 她 决定 和 他 结婚 . +Turn off the TV . ||| 关闭 电视机 +I saw him crossing the road . ||| 我 看见 他 穿过 了 马路 . +Only six people were present at the party . ||| 只有 六個 人 參加 了 派 對 . +How many different kinds of pizzas are on the menu ? ||| 菜單 上 有 多少 種比薩 ? +I may have made a mistake . ||| 我 可能 犯 了 个 错 . +I had a vision . ||| 我 有 一个 设想 . +Tom can not have done what you think he did . ||| 汤姆 还 不能 做 完 你 认为 他 能 的 事 . +Sorry it took me so long to write to you . ||| 對 不起 , 我 過 了 這麼 長 的 時間 才 回 你 的 信 . +Three bulbs have burned out . ||| 三个 灯泡 烧坏 了 . +Let is take a rest . ||| 我们 休息 一下 吧 . +I got a letter from her today . ||| 我 今天 收到 了 她 的 信 . +Just then , the bus stopped . ||| 就 在 那时 , 公交车 停住 了 . +You could count to ten when you were two . ||| 在 你 兩歲 時 , 你 可以 數 到 十 . +" When will you be back ? " " It all depends on the weather . " ||| “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +The telephone rang a few minutes later . ||| 几分钟 后 , 电话响 了 . +She told me to open the window . ||| 她 告訴 我 把 窗戶 打開 . +The top of the mountain is covered in snow . ||| 山顶 被 雪 覆盖 了 . +Please take off your coat . ||| 請 脫下 您 的 外套 . +She has not heard the news yet . ||| 她 还 没 听到 这个 消息 . +I want to eat something that is not sweet . ||| 我 想 吃 点 不甜 的 东西 . +I slept on the bus . ||| 我 在 公交车 上 睡觉 了 . +I will leave that to you . ||| 我 會 留 給 你 . +Some people like summer , and others like winter . ||| 有人 喜歡 夏天 , 有人 喜歡 冬天 . +I do not care what he does . ||| 我 不在乎 他 做 什麼 . +Have you ever seen a UFO ? ||| 你 看 過 飛 碟 嗎 ? +Tom has changed his mind again . ||| 汤姆 又 改变 了 他 的 主意 . +The town was full of activity . ||| 小镇 充满 了 活力 . +I need more time . ||| 我 需要 更 多 时间 . +Will you live in Sasayama next year ? ||| 你 明年 會 住 在 筱 山 嗎 ? +It makes me feel good . ||| 它 讓 我 感覺 很 好 . +Did you show it to your parents ? ||| 你 給 你 父母 看 了 嗎 ? +He looked like a doctor . ||| 他 看 起來 像 個 醫生 . +He behaved like a madman . ||| 他 表现 的 像 个 疯子 . +Let me in . ||| 让 我 进去 . +Tom did not know what he 'd done was against the rules . ||| 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +Can I catch a taxi near here ? ||| 我 能 在 這 附近 打車 嗎 ? +Tom is the tallest in his family . ||| 湯姆 是 他家 裡 最高 的 . +I will take your suitcase to your room . ||| 我 會 把 你 的 手提箱 拿到 你 的 房間 . +Is it near your house ? ||| 它 在 你家 附近 嗎 ? +There is no way to know . ||| 沒有 辦法 知道 . +I want him to play the guitar . ||| 我 要 他 彈 吉他 . +She thinks of everything in terms of money . ||| 她 對 任何 事 都 用 錢 的 角度 來看 . +We kept quiet . ||| 我们 保持 了 沉默 . +Tom told Mary he had a lot of money . ||| 湯姆 告訴 瑪麗 他 有 很多 錢 . +She gave me these old coins . ||| 她 給 了 我 這些 舊 硬幣 . +Which countries have you visited ? ||| 你 去过 哪些 国家 ? +He was late because of the snow . ||| 他 因為 下雪 所以 遲 到 了 . +The number of people on Facebook is greater than the population of the United States . ||| Facebook 的 用戶 比美 國 人口 還 多 . +I thought that I told you to stay away from my computer . ||| 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +In this kind of weather , it is best to stay home and not go outside . ||| 这种 天气 下 最好 待在家里 不要 外出 . +Thank you for the wonderful dinner . ||| 為 這 美好 的 晚餐 謝謝 你 . +I look forward to your next visit . ||| 我 期待 著 您 的 再次 光臨 . +Wash your hands before eating . ||| 進食 前 先 洗手 . +Tom and I were not the ones who complained . ||| 汤姆 和 我 不是 抱怨 的 人 . +Many books have been stolen . ||| 很多 书 被盗 了 . +I got acquainted with him in France . ||| 我 在 法國 認識 了 他 . +I returned the book to the library . ||| 我 把 書 還 給 圖書館 . +These shoes do not fit my feet . ||| 這些 鞋 不合 我 的 脚 . +You have to study more . ||| 你 该 学 得 更 多 . +I took Highway 58 . ||| 我 走 58 號 高速公路 . +Tom bought a pair of black leather shoes . ||| 汤姆 买 了 一双 黑色 皮鞋 . +He should apologize for being rude to the guests . ||| 他 应该 为 自己 对 客人 的 粗鲁无礼 而 道歉 . +He runs as fast as you . ||| 他 跑 得 跟 你 一樣 快 . +Sooner or later , we will know the truth . ||| 我們 遲早 會 知道 真相 . +Could you please drive me home ? ||| 你 可以 載 我 回家 嗎 ? +Have you ever eaten a banana pie ? ||| 你 吃 过 香蕉 派 吗 ? +What is for supper ? ||| 我们 晚饭 吃 什么 ? +Does Tom live in Boston ? ||| 汤姆 住 在 波士顿 吗 ? +He likes Disney . ||| 他 喜欢 迪士尼 . +How did you do on your exam ? ||| 考得 如何 ? +This is a low @-@ budget movie . ||| 這 是 一部 低成本 的 電影 . +He would not look at my proposal . ||| 他 不 會 考慮 我 的 建議 . +Where were you last night ? ||| 昨天晚上 你 在 哪裡 ? +This is all the money I have on me . ||| 這 是 我 身上 所有 的 錢 . +Her hair grew back . ||| 她 的 頭 髮 長 回 來 了 . +You can delete that now . ||| 你 现在 可以 删除 它 . +Tom gave Mary half of the apple . ||| 汤姆 给 玛丽 半个 苹果 . +I am not quite sure if we can meet your requirements . ||| 我 不 太 確定 我們 是否 能夠 滿足 你 的 要求 . +I want something to read . ||| 我 要 些 讀 的 東西 . +I do not know what time it is . ||| 我 不 知道 現在 幾點鐘 . +I have already had lunch . ||| 我 已經 吃 過 午餐 了 . +Did you go to school ? ||| 你 去 學校 了 嗎 ? +Do not get involved with that guy . ||| 別 和 這個 人 打交道 . +They accused me of having broken my promise . ||| 他们 指责 我 没有 信守诺言 . +He will come back . ||| 他 会 回来 的 . +All the apple trees were cut down . ||| 所有 苹果树 都 被 砍倒 了 . +We both know why I am here . ||| 我們 都 知道 我 為 甚麼 在 這裡 . +Is this a river ? ||| 這 是 一條 河 嗎 ? +Should not somebody be helping Tom ? ||| 难道 不该 有人 帮 汤姆 吗 ? +She hired him as a programmer . ||| 她 聘請 他 作 程式 設計 師 . +I can not stand this noise any longer . ||| 我 無法 再 忍受 這個 噪音 了 . +I can not put up with it . ||| 我 无法忍受 它 了 . +His father dedicated his life to science . ||| 他 的 父親 把 一生 奉 獻給 了 科學 . +I still can not believe I did it . ||| 我 仍旧 无法 相信 我 居然 做 了 这种 事 . +I am looking for a part @-@ time job . ||| 我 正在 找 一份 兼職 的 工作 . +Two months have passed since he left for France . ||| 自从 他 离开 去 法国 , 已经 有 两个 月 了 . +I have never heard of Tom . ||| 我 從 沒聽 說 過 湯姆 . +Can I get you something to drink ? ||| 我 可以 帶喝 的 東西 給 你 嗎 ? +When are you leaving ? ||| 你 什么 时候 离开 ? +Keep off the grass . ||| 不要 踩 草地 . +I am amazed at your fluency in English . ||| 你 流利 的 英语 让 我 很 吃惊 . +What is that big building in front of us ? ||| 我们 面前 的 这幢 高楼 是 什么 ? +We captured the thief . ||| 我们 抓住 了 小偷 . +I am sick . ||| 我 病 了 . +I have two sons . One is in Tokyo and the other is in Nagoya . ||| 我 有 两个 儿子 , 一个 在 东京 , 另 一个 在 名古屋 . +I will be back at seven o 'clock . ||| 我 會 在 七點鐘 回來 . +What did you do to make Tom cry ? ||| 你 做 了 甚麼 事 把 湯姆 惹 哭 了 ? +I did it myself . ||| 我 自己 做 的 . +I am not afraid to die . ||| 我 不怕死 . +Did he tell you what to do ? ||| 他 告訴 過 你 要 做 什麼 嗎 ? +She divorced her husband . ||| 她 與 丈夫 離婚 . +I get two hour is exercise every day . ||| 我 每天 做 兩個 小 時 的 練習 . +Do you have a steady boyfriend ? ||| 你 有 一个 固定 的 男朋友 吗 ? +I might make a mistake . ||| 我 可能 犯 了 個 錯 . +She told him she wanted a divorce . ||| 她 告诉 他 说 , 她 想要 离婚 . +Whether you like it or not does not matter . ||| 你 喜不喜欢 没关系 . +They skip school all the time . ||| 他們 總是 逃學 . +See you around . ||| 再见 ! +How much does a kilogram of pineapples cost ? ||| 菠蘿 一 公斤 多少 錢 ? +Tom is no longer a member of this club . ||| 汤姆 不再 是 俱乐部 的 成员 了 . +Let me explain it to you . ||| 讓 我 給 你 說 明 . +I am the best . ||| 我 是 最好 的 . +You will be able to drive a car in a few days . ||| 幾天 之 後 你 就 可以 開車 了 . +Tell them we are coming . ||| 告诉 他们 我们 要来 了 . +She is a quiet person . ||| 她 是 個 安靜 的 人 . +The policeman grabbed the boy is arm . ||| 警察 抓住 了 那个 男孩 的 手臂 . +We help each other out . ||| 我們 互相 幫忙 . +Ignorance is bliss . ||| 無知 就是 幸福 . +A dog followed me to my school . ||| 一 隻 狗 跟 著 我 到 我 的 學 校 . +I do not know when she will come back . ||| 我 不 知道 她 什么 时候 会 回来 . +Tom has been struck by lightning three times . ||| 湯姆 被 閃電擊 中 過 三次 . +He will be here around four o 'clock . ||| 他 会 在 四点 左右 到达 这里 . +The boy can count to ten . ||| 这 小男孩 能数 到 十 . +She is good at speaking English . ||| 她 擅長 說 英語 . +I need to go to the toilet . ||| 我 要 去 廁所 . +I am just writing a letter to my girlfriend . ||| 我 只是 在 写 一封信 给 我 的 女友 . +Tom told me what to say . ||| 汤姆 告诉 我 该 说 什么 . +You are a beautiful young woman . ||| 你 是 一个 美丽 的 女人 . +We have to come to some agreement . ||| 我们 要 达成 一些 协定 . +I have always kept my promises . ||| 我 一直 信守 我 的 諾言 . +I want you to tell me the truth . ||| 我 想 你 把 真相 告诉 我 . +We have ordered Chinese food . ||| 我们 点 了 中餐 . +That is right ! ||| 對了 ! +The Japanese have dark eyes . ||| 日本 人 有 黑色 的 眼睛 . +If you do not leave , I will sic my dogs on you . ||| 如果 你 不 离开 , 我 就 放狗 出来 咬 你 . +You 'd better do it soon . ||| 你 最好 尽快 去 做 . +I played tennis . ||| 我 打 網球 了 . +Let me try another one . ||| 让 我 试试 别的 . +It will be cloudy . ||| 天要 变 多云 了 . +I will open the window a bit . ||| 我 把 窗户 打开 一点 . +What is this ? ||| 這 是 什麼 ? +There is no need to hail a taxi . ||| 没 必要 叫 出租车 . +Yesterday is board meeting was a big success . ||| 昨天 的 董事 會會議 非常 成功 . +There was no one left but me . ||| 除了 我 没有 人 離開 . +My bike was stolen last night . ||| 昨晚 我 的 自行车 被 偷 了 . +Could you say that in plain English ? ||| 你 會 說 簡單 的 英語 嗎 ? +She managed to drive a car . ||| 她 成功 地 開車 了 . +The sky was clear when I left home . ||| 当 我 离开 家 的 时候 天空 很 明朗 . +The Swiss consume a large amount of beer . ||| 瑞士人 消耗 不少 啤酒 . +Tom got a late start this morning . ||| 汤姆 今早 出发 晚 了 . +Let me ask a stupid question . ||| 我 来 问 个 有点 傻 的 问题 . +He picked flowers for her . ||| 他 为 她 摘 了 些 花 . +I think it is dangerous to climb a mountain on a day when it is stormy . ||| 我 認為 在 有 風暴 的 時候 裡 登山 很 危險 . +There was a big earthquake last night . ||| 昨晚 有 一場 大 地震 . +You must study more . ||| 你 该 学 得 更 多 . +That mountain is easy to climb . ||| 那 座 山 很 容易 爬 . +It is never too late to learn . ||| 活到老 , 学到老 . +Do not try to do this by yourself . ||| 别 想 靠 你 自己 做 这事 . +I do not have to clean my room . ||| 我 不用 打扫 房间 . +I owe ten dollars to her . ||| 我 欠 她 10 美元 . +We have decided not to fire you . ||| 我们 决定 不 开除 你 . +I can not shut it down . ||| 我 不能 關掉 它 . +She cooked us a wonderful meal . ||| 她 為 我們 煮 了 豐盛 的 一餐 . +Not knowing what to do , I asked the teacher for advice . ||| 因为 不 知道 做 什么 , 所以 我 向 老师 寻求 建议 . +Nobody watches her . ||| 谁 也 没在 看 她 . +That is none of your business . ||| 那 不關 你 的 事 . +Turn right at the next corner . ||| 在 下 一個 轉角 右 轉 . +Tom has Mary is address . ||| 汤姆 有 玛丽 的 地址 . +We easily figured out the password . ||| 我们 毫不费力 地 想出 了 密码 . +Summer is over . ||| 夏天 过去 了 . +Would you like another apple ? ||| 你 要 再 來 顆 蘋果 嗎 ? +I am going to bed . Good night . ||| 我 要 睡 了 . 晚安 . +Tom often reads when his children are not at home . ||| 汤姆 经常 在 孩子 们 不 在家 时 阅读 . +We have spent too much time here . ||| 我們 在 這裡 花 了 太 多 時間 . +No one can keep me from going there . ||| 没 人 能 阻止 我 去 那儿 . +She has a cottage by the sea . ||| 她 在 海边 有 一间 小屋 . +That is quite meaningless . ||| 这 毫无意义 . +I know him by name , but not by sight . ||| 我 知道 他 的 名字 , 但 不 知道 他 长 什么样 . +All those things are true . ||| 那些 事 都 是 真的 . +The box is too heavy to carry . ||| 這個 箱子 太重 了 無法 攜帶 . +Try this . ||| 试试 这个 . +How much do I owe you ? ||| 我 欠 您 多少 ? +What did you major in at college ? ||| 你 大學 時 主修 什麼 ? +Do you want to die here ? ||| 你 想 死 在 這裡 嗎 ? +I am tired of working a nine @-@ to @-@ five job . ||| 我 厭倦 了 做 朝九晚五 的 工作 . +Tom knows many French songs . ||| 汤姆 知道 许多 法语歌 . +I should not have eaten the whole bag of potato chips . ||| 我 不该 把 一整 包 薯片 都 吃 完 的 . +Can we trust them ? ||| 我们 能 信任 他们 吗 ? +Tom fell off his bicycle . ||| 汤姆 从 他 的 自行车 上掉 了 下来 . +People grow more cynical with age . ||| 人會 隨著 年齡 的 增長 而 更加 地 玩世不恭 . +He wants a book to read . ||| 他 想 找 本書 來讀 . +Is there a discount if you pay in cash ? ||| 用現 金付 的 話 會 有 折扣 嗎 ? +Tom can change . ||| 湯姆 能 改變 . +I do not care what color ink , just bring me a pen . ||| 颜色 无所谓 , 给 我 一支 笔 就行了 . +Come here quickly . ||| 快 來 這裡 . +I do not understand what you are saying . ||| 我 不 了解 你 在 說 什麼 . +I really need to read all this . ||| 我 真的 需要 把 这 都 读 了 . +There is an urgent message for you . ||| 你 有 一個 緊急 的 訊息 . +I have lost my umbrella . ||| 我 丢 了 我 的 伞 . +They had to work all year round . ||| 他們 一 整年 都 必須 工作 . +The world is running out of oil . ||| 世界 上 的 石油 快用 完 了 . +There is a book about dancing on the desk . ||| 桌子 上 有 一本 关于 舞蹈 的 书 . +Tom called the police . ||| 汤姆 叫 了 警察 . +Tom was the only boy in the class . ||| 汤姆 是 班里 唯一 的 男生 . +You ought to tell Tom that you will likely be late . ||| 你 应该 告诉 汤姆 你 可能 会 迟到 . +I am anxious to see you . ||| 我 渴望 見 到 你 . +Turn up the TV . ||| 把 电视 声音 调大 点儿 . +I guess that is how Tom found me . ||| 我 猜 那 就是 汤姆 找到 我 的 方法 . +This tie does not go with my suit . ||| 這條 領帶 跟 我 的 西裝 不配 . +Do you know where Tom is waiting for us ? ||| 你 知道 汤姆 在 哪里 等 我们 吗 ? +I do not think that he is sincere . ||| 我 不 相信 他 是 真心 的 . +What book are you reading ? ||| 你 在读 哪 本书 ? +Tom did a very good job today . ||| 湯姆 今天 做 得 非常 好 . +We had bad weather yesterday . ||| 昨天 天氣 很糟 . +I asked Tom a few questions . ||| 我 问 了 汤姆 几个 问题 . +They know what happened . ||| 他们 知道 发生 了 什么 . +At last , we reached our destination . ||| 我们 终于 达到 了 我们 的 目标 . +Do not make a fool of me . ||| 别 把 人家 当 傻瓜 . +I am almost finished reading this book . ||| 我 就要 读完 这 本书 了 . +When was this temple built ? ||| 这个 寺庙 是 何时 造 的 ? +I am not going to do anything to you . ||| 我 不 會 對 你 做 任何 事 . +Come here , all of you . ||| 你们 全都 过来 . +You must look over the contract before you sign it . ||| 你 在 签字 前 必须 察看 这 合同 . +When did you change your address ? ||| 你 什麼 時候 更改 了 你 的 地址 ? +Do you believe what he said ? ||| 你 相信 他 說 的 話 嗎 ? +I am buying a new car . ||| 我 在 买 一辆 新车 . +The population of London is much greater than that of any other British city . ||| 倫敦 的 人口 遠遠 多 於 其他 英國 城市 的 人口 . +His memory amazes me . ||| 他 的 记忆力 使 我 惊讶 . +Here is a pan without handles . ||| 这 是 个 没有 柄 的 平锅 . +Tom and I have known each other for a long time . ||| 湯姆 和 我 相識 很 久 了 . +A hundred years is called a century . ||| 一百年 被 叫做 一个 世纪 . +I can not give up smoking . ||| 我 無 法戒 煙 . +He is lacking in common sense . ||| 他 缺乏 常识 . +You will not need it . ||| 你 不 會 需要 它 . +I got your fax the other day . ||| 我 前 幾天 收到 了 你 的 傳真 . +He asked me two questions . ||| 他 問 了 我 兩個 問題 . +There was no water in the well . ||| 這 口 井裡 沒有 水 . +He reluctantly agreed to my proposal . ||| 他 不 情愿 地 同意 了 我 的 提案 . +She usually goes to bed at nine . ||| 她 经常 九点 睡觉 . +I 'd very much like to go . ||| 我 非常 想 离开 . +I can not sleep at night . ||| 我 有 失眠症 . +Is it safe to eat cockroaches ? ||| 吃 蟑螂 安全 吗 ? +Stop shooting . ||| 停止 射击 . +It is awfully hot today . ||| 今天 非常 熱 . +He was invited to be the chairman of the club . ||| 他 受邀 做 俱乐部 的 主席 . +The day after tomorrow is Tom is birthday . ||| 後 天 是 湯姆 的 生日 . +What is today is date ? ||| 今天 幾號 ? +What is your name ? ||| 叫 什麼 名字 ? +Winners do not use drugs . ||| 優勝者 不 使用 藥物 . +Tom glanced at the clock on the wall . ||| 湯姆 瞥 了 墻 上 的 表 一眼 . +We ran short of money . ||| 我们 缺钱 了 . +A bottle of red wine , please . ||| 請來 瓶紅 酒 . +If it rains on that day , the game will be postponed until the next fine day . ||| 如果 那天 下雨 , 比赛 会 顺延 至 下 一个 晴天 . +Tom is perfect , is not he ? ||| 湯姆 是 完美 的 , 不是 麼 ? +Watch yourself . ||| 自己 当心 啊 . +They made him sign the contract . ||| 他們 讓 他 簽約 了 . +You have got to set the alarm clock before you go to bed . ||| 在 你 上床 睡覺 之前 , 你 必須 把 鬧 鐘 設定 好 . +I met a friend at the airport . ||| 我 在 机场 见 了 个 朋友 . +Are you angry with Tom ? ||| 你 在 生 汤姆 的 气 吗 ? +Traffic was blocked by a landslide . ||| 交通 被 山崩 所 阻斷 . +Get me a ticket , please . ||| 請 給 我 一張 票 . +Tom is not stupid . ||| 汤姆 不 傻 . +They do not have to know . ||| 他們 不 需要 知道 . +Put the book on the bottom shelf . ||| 把 這 本書 放在 架子 的 底部 . +Money can not buy everything . ||| 金钱 不能 买 到 所有 的 东西 . +I can not remember . ||| 我 記 不得了 . +The President spoke to the nation on TV . ||| 总统 在 电视 上 对 国民 讲话 . +You should have told me a long time ago . ||| 很久以前 你 就 應該 告訴 我 的 . +I do not know and neither does he . ||| 我 不 知道 , 他 也 不 知道 . +There are many stores in this area . ||| 這個 區域 有 很多 商店 . +We have so many things left to do . ||| 我们 有 许多 未 完成 的 事 . +Tom used a fire extinguisher to try and put the fire out . ||| 湯姆 試著 用滅 火器 把 火 撲 滅 . +He is always smiling . ||| 他 总是 在 笑 . +He is as smart as any other boy in the class . ||| 他 和 班上 其他 男生 一样 聪明 . +Quit smoking if you do not want to die early . ||| 如果 你 想 活 得 久 一点 就 戒烟 . +I am satisfied with his progress . ||| 我 對 他 的 進步 感到 很 滿意 . +I want your love . ||| 我 要 你 的 愛 . +Tom is going to be proud of you . ||| 湯姆 要 以 你 為 傲 了 . +I love my wife . ||| 我 爱 我 的 妻子 . +Please do not tell your parents this . ||| 请 不要 告诉 你 父母 . +What do you want to tell me ? ||| 你 想 跟 我 说 什么 ? +He eats lunch at a cafeteria . ||| 他 在 自助餐 廳 吃 午餐 . +We go out together every weekend . ||| 我們 每個 週末 都 一起 出去 . +He hurried to the station so he would not miss the train . ||| 为了 不错 过 火车 , 他 匆匆 赶往 了 车站 . +I will write or phone you next week . ||| 下周 我会 给 你 写信 或 打电话 的 . +Best wishes from all of us . ||| 我们 所有人 都 祝福 你 . +I found the secret compartment quite by accident . ||| 我 完全 是 在 偶然 的 情况 下 发现 了 密室 . +He caught a cold . ||| 他 感冒 了 . +Please take off your shoes . ||| 請 脫掉 你 的 鞋子 . +They announced that a storm was coming . ||| 他們 宣布 了 暴風雨 即將 來臨 . +You can see a lot of stars in the sky . ||| 你 能 看到 天空 中 的 繁星 . +Tom needed to wash his car . ||| 湯姆 需要 洗 他 的 車 . +Give some meat to the dog . ||| 給 這 隻 狗 一些 肉 . +My father goes jogging every morning . ||| 我 父親 每天 早上 去 慢跑 . +London is famous for its fog . ||| 倫敦 以 霧 著名 . +I think I lost my keys . ||| 我 觉得 我 把 钥匙 丢 了 . +He will not be able to do the work . ||| 他 没 能力 做 这个 工作 . +I bought her a nice Christmas present . ||| 我 給 她 買 了 一個 不錯 的 聖誕 禮物 . +We reached the top of the mountain . ||| 我們 到 達 了 山頂 . +When listening to a lecture , you should be quiet . ||| 听 讲座 时 , 你 应该 保持 安静 . +Tom wants a glass of water . ||| 汤姆 想要 一杯 水 . +I like to read . ||| 我 喜欢 阅读 . +You must keep your eyes open . ||| 你 得 留意 一下 . +Why did you come here ? ||| 你 為 什麼 來 這裡 ? +Tom fell down . ||| 湯姆 摔倒 了 . +It is absolutely impossible for me to go on like this . ||| 让 我 像 这样 继续下去 是 绝对 不 可能 的 . +It is the right thing to do . ||| 這 是 正確 的 事情 . +The bread is not fresh . ||| 面包 不 新鲜 . +Thou shalt not kill . ||| 不可 殺 人 . +One plus two equals three . ||| 一加二 等于 三 . +I do not think you ought to . ||| 我 認為 你 不 應該 . +Trouble began immediately . ||| 麻烦 说来 就 来 . +I do not agree with you . ||| 我 不 同意 你 的 看法 . +He snored loudly while he slept . ||| 他 睡着 的 时候 , 打呼声 很 响 . +Did you hear about what is happened to Tom ? ||| 你 有没有 听说 汤姆 出 了 什么 事 ? +Lips that touch liquor shall not touch mine . ||| 碰 過 酒 的 嘴唇 就別 想 碰 我 的 唇 . +Would you lend me a pencil ? ||| 能 借 我 支 铅笔 吗 ? +What is your schedule for tomorrow ? ||| 你 明天 的 行程 安排 是 什麼 ? +That child has few friends . ||| 那 孩子 沒有 什麼 朋友 . +Some abstract art is difficult to understand . ||| 一些 抽象 藝術 是 很 難 理解 的 . +She kept me waiting for 30 minutes . ||| 她 让 我 等 了 30 分钟 . +I wish I were rich . ||| 但 願 我 很 有 錢 . +Father named me after his aunt . ||| 父親 以 他 姑姑 的 名字 為 我 命名 . +Do not underestimate your own strength . ||| 不要 低估 自己 的 实力 . +You do not have a fever . ||| 你 没 发烧 . +I did not expect it to be that big . ||| 我 没想到 它 有 那么 大 . +We are not stupid . ||| 我們 不 傻 . +Be sure to drop us a line as soon as you get to London . ||| 别忘了 一 到 伦敦 就 给 我们 留言 啊 . +Nagoya is to the east of Kyoto . ||| 名古屋 在 京都 的 東方 . +I will personally visit you . ||| 我 會 親自 拜訪 您 . +He saluted the lady . ||| 他 向 那位 女士 问好 . +Man is mortal . ||| 人 固有 一 死 . +I plan to catch the 10 : 30 train . ||| 我 打算 搭 十點 三十分 的 火車 . +If you won a million yen , what would you do ? ||| 如果 你 中 了 一百万 日元 的 奖 , 你 会 怎么 做 ? +You should have completed it long ago . ||| 你们 很久 前 就 应该 完成 了 . +The guy with a beard is Tom . ||| 长胡子 的 是 汤姆 . +They all looked for the lost child . ||| 他們 都 在 尋找 這個 走失 的 孩子 . +Do you want to drink some water ? ||| 你 要 喝水 嗎 ? +Put your hat on . ||| 戴 上 你 的 帽子 . +She is poor , but she is happy . ||| 她 很 窮 , 但是 她 很快 樂 . +He is getting along well with all of his classmates . ||| 他 和 他 所有 的 同学 相处 融洽 . +The bookcase is level with the table . ||| 书架 和 桌子 齐平 . +I must have mistyped the number . ||| 我 一定 是 打 錯號 碼 了 . +Did you see yesterday is eclipse ? ||| 你 看 了 昨天 的 月 蝕 了 嗎 ? +His grandmother looks healthy . ||| 他 祖母 看 起來 很 健康 . +I have no particular reason to do so . ||| 我 没有 特别 的 理由 去 做 . +Feel free to stay . ||| 歡迎 留下 來 . +Will he be able to come tomorrow ? ||| 他 明天 能来 吗 ? +I warned him , but he ignored the warning . ||| 我 警告 過 他 , 但 他 不理 會 警告 . +You do not seem to like Tom . ||| 你 看來 不 喜歡 湯姆 . +Tom spoke about the problem with Mary . ||| 汤姆 跟 玛丽 说 了 这 问题 . +Is that the railroad station ? ||| 这 是 火车站 吗 ? +Please remember what he said . ||| 請 記住 他 說 的 話 . +That is very sweet of you . ||| 您 真是 太好了 . +Stay out of my room . ||| 别 进 我 的 房间 . +It is nothing serious . ||| 這 沒 什麼 要 緊 的 . +Tom or somebody said that . ||| 汤姆 或 某人 说 了 那事 . +Salmon lay their eggs in fresh water . ||| 三文 魚 在 淡水 中產 卵 . +I did not have time to watch TV yesterday . ||| 我 昨天 沒時間 看電視 . +Great progress has been made . ||| 已经 取得 巨大 进展 . +Tom hit a triple . ||| 湯姆 擊出 三壘 安打 . +The dog always barks at me . ||| 狗 總是 對著 我 嚎叫 . +I wanted red shoes . ||| 我 要 紅色 的 鞋子 . +He asked that we be silent . ||| 他 要求 我們 安靜 . +I have no knife to cut with . ||| 我 沒有 刀子 可用 來 切 . +Which book is yours ? ||| 哪 本書 是 你們 的 ? +How much does this hat cost ? ||| 这 顶 帽子 多少 钱 ? +Someone has been here . ||| 有人 來 過 這裡 . +The boy entered by the back door . ||| 那個 男生 從 後 門 進來 了 . +Tom is sloshed . ||| 汤姆 醉 了 . +She married him . ||| 她 嫁给 了 他 . +Wait for me downstairs . ||| 在 楼下 等 我 +Pride goes before a fall . ||| 骄傲 是 失败 的 先行者 . +Did they buy the juice ? ||| 他們 有 買 果汁 嗎 ? +I can not find my suitcase . ||| 我 找 不到 我 的 手提箱 . +Do you want some more tea ? ||| 你 想 再 要点 茶 吗 ? +I just do not want to marry you . ||| 我 就是 不想 嫁 給 你 . +Will you please explain the meaning of this sentence to me ? ||| 您 能 为 我 解释 这 句句 子 的 意思 吗 ? +The bottle is filled with water . ||| 這個 瓶子 裝滿 了 水 . +There were no more free seats . ||| 没有 更 多 免费 座位 了 . +Luckily , we found an escape route . ||| 幸運 的 是 , 我們 找到 了 逃生 通道 . +Let is get off here . ||| 我们 在 这里 下车 吧 . +You remind me of a boy I used to know . ||| 你 让 我 想起 我 过去 认识 的 一个男孩 . +You should wear a coat . ||| 你 應 該 穿 一件 大衣 . +Tom is a racist . ||| 汤姆 是 种族主义者 . +Bring me a bucket of water . ||| 給 我 一桶 水 . +Other than Sundays , I work every day . ||| 除了 星期天 我 每 一天 都 工作 . +Are you looking for work ? ||| 你 是 在 找 工作 吗 ? +Are you sure Tom can do that ? ||| 你 確定 湯姆 能 做 嗎 ? +Put in a little more sugar . ||| 多 放 一點 糖 . +I will give you a call tomorrow . ||| 明天 我 給 你 打 電話 . +He did not give me much advice . ||| 他 没 给 我 多少 建议 . +You 'd better go by bus . ||| 你 最好 坐 公共 汽車 去 . +I took the elevator to the third floor . ||| 我 乘 电梯 上三楼 . +I did not mean to keep it secret . ||| 我 不是 有意 要 保密 的 . +My brother is not as tall as I was two years ago . ||| 我 弟弟 没 我 两年 前 高 . +We enjoyed singing songs together . ||| 我們 喜歡 一起 唱歌 . +Pale ale is a low @-@ alcohol beer . ||| 淡 啤酒 是 一種 酒精 含量 低 的 啤酒 . +That feels good . ||| 感觉良好 . +Do not worry about it . ||| 不要 擔心 它 . +Can I make a reservation for golf ? ||| 我 能 预定 一下 打 高尔夫球 吗 ? +I saw a strange woman there . ||| 我 看见 那儿 有个 奇怪 的 女人 . +Is not Tom from Australia ? ||| 汤姆 不是 澳洲 来 的 吗 ? +I got acquainted with him last night . ||| 我 昨晚 認識 了 他 . +You are a celebrity now . ||| 你 现在 是 名人 了 . +The handyman was supposed to arrive at twelve noon , but got stuck in a traffic jam for a few hours . ||| 這個 工人 本來 應該 在 中午 十二 點 到 達 , 但 他 被 交通堵塞 困住 了 幾個 小 時 . +You are your own worst enemy . ||| 你 是 你 自己 最大 的 敌人 . +We are very disappointed in you . ||| 我们 对 你 很 失望 . +Dutch is closely related to German . ||| 荷蘭語 與 德語 關 係 密切 . +I think Tom lied to us . ||| 我 觉得 汤姆 对 我们 撒谎 了 . +This hotel does not serve lunch . ||| 這家 旅館 不 提供 午餐 . +Interest rates are still low . ||| 利率 还是 低 . +This is the best pizza I have ever eaten . ||| 這 是 我 吃 過 的 最好 的 比薩 . +I think Tom is talented . ||| 我 認為 湯姆 有 才能 . +Remember to cross your t is . ||| 记得 在 字母 t 上画 上 横 . +They fell into the conversation immediately . ||| 他们 很快 就 聊起来 了 . +Please bring us two cups of coffee . ||| 請 給 我們 來 兩杯 咖啡 . +Tom found new evidence . ||| 汤姆 发现 了 新 的 证据 . +My father was no less affectionate and tender to me than my mother was . ||| 我 爸爸 对 我 的 爱和 照顾 不 比 我 妈妈 少 . +Tom has been uncooperative . ||| 湯姆 不 合作 . +There were few people on the beach . ||| 沙灘 上 的 人 非常少 . +Let me read the paper when you have finished with it . ||| 报纸 看完 后 借 我 看下 . +You will have to start at once . ||| 你 必须 马上 开始 . +Tom does not pay much attention to how he dresses . ||| Tom 没有 花费 精力 去 打扮 自己 . +We have to do something , Tom . ||| 汤姆 , 我们 必须 要 做 点 什么 . +If you do not understand , ask . ||| 如果 你 不 懂 , 那 就 问 . +He got injured in a traffic accident . ||| 他 在 一場 交通 意外 中 受 了 傷 . +He is not going to buy a camera . ||| 他 不 打算 买 一个 摄像机 . +She slept for a few hours . ||| 她 睡 了 几小时 . +Do not ask me for money . ||| 不要 問 我 要 錢 . +I could not leave Tom . ||| 我 不能 離開 湯姆 . +Tom is an unknown artist . ||| Tom 是 個 不 知名 的 藝術家 . +I will be happy to attend your party . ||| 我 很快 樂能 參加 你 的 派 對 . +She has no enemies . ||| 她 没有 敌人 . +You look really nervous . ||| 你 看起来 真的 很 紧张 . +Watch him and do what he does . ||| 看著 他 並 跟著 他 做 . +My mother is not at home . ||| 我 媽媽 不 在家 . +I asked her for a date . ||| 我 向 她 提出 約 會 的 請求 . +I will treat you . ||| 我 請 你 . +Bright ideas never occur to me . ||| 我 總 想不出 什麼 好 點子 . +I was the one who had to tell Tom . ||| 该 由 我 告诉 汤姆 . +Can you speak English ? ||| 你們 會 說 英語 嗎 ? +Her father devoted his life to science . ||| 她 父亲 把 一生 都 贡献 给 科学事业 了 . +I sometimes watch TV . ||| 我 有 時 看 電視 . +The children were playing in the dirt . ||| 孩子 们 在 尘土 里 游戏 . +She assigned him to the job . ||| 她 指派 他 做 這個 工作 . +I ran as fast as possible . ||| 我 盡 可能 地 跑 快 一點 . +Perhaps you are right . ||| 也许 您 有 道理 . +Someone pushed me inside . ||| 有人 推 我 到 裡面 . +Who can say what will happen in the future ? ||| 谁 能 说 将来 会 发生 什么 呢 . +This extension cord is too short . ||| 這條 延長 線 太短 了 . +I rejected the offer . ||| 我 拒绝 了 报价 . +I asked a policeman for directions . ||| 我 向 一個 警察 問路 . +Do you know my name ? ||| 你 知道 我 的 名字 嗎 ? +The swimmers were numb with cold . ||| 游泳 選手 們 凍僵 了 . +He visited his hometown for the first time in ten years . ||| 他 10 年 中 第一次 访问 他 的 故乡 . +Is anybody in there ? ||| 那边 有人 吗 ? +Is there a zoo in the park ? ||| 公园 里 有 动物园 吗 ? +This table is reserved . ||| 这个 桌子 被 预约 了 . +I have chapped lips . ||| 我 的 嘴 裂开 了 . +Do you think the weather will be fine tomorrow ? ||| 你 觉得 明天 天气 会 变 好 吗 ? +Well , girls , it is time to go . ||| 那么 , 女孩 们 , 是 时候 出发 了 . +Her father made her tell him everything . ||| 她 的 父親 要 她 告訴 他 一切 . +I do forgive Tom . ||| 我 真的 原谅 汤姆 . +When does it begin ? ||| 什么 时候 开始 ? +America likes to claim that it is a " classless " society . ||| 美国 是 一个 自称 没有 社会阶层 的 国家 . +I usually walk to school . ||| 我 通常 走 去 学校 . +Eat and drink . ||| 吃 吧 , 喝 吧 . +They say love is blind . ||| 人们 说 爱情 是 盲目 的 . +Are you free this afternoon ? ||| 你们 今天下午 有空 吗 ? +This is delicious . ||| 很 美味 . +You ought to ask him for advice . ||| 你 应该 向 他 征求意见 . +I go to bed very early . ||| 我 很 早就 去 睡 覺 . +Banks open at nine o 'clock . ||| 銀行 九點 開門 +I saw your brother the other day . ||| 前 幾天 我 看到 了 你 哥哥 . +Why do you want to study abroad ? ||| 为什么 您 想到 外国 读书 ? +These days it snows quite a lot . ||| 这些 天下 了 好多 雪 . +Even though I studied English for 6 years in school , I am not good at speaking it . ||| 尽管 我 在 学校 学 了 6 年 英语 , 我 还是 说 不好 . +He was the first person to arrive . ||| 他 是 第一 個 到 達 的 人 . +I was awfully confused by his question . ||| 我 對 他 的 問題 感到 非常 困惑 . +I can understand what she is saying . ||| 我 能 了解 她 在 說 什麼 . +This could hurt our business . ||| 这 会 打击 我们 的 生意 . +I hear they are pretty good . ||| 我 听说 他们 挺 好 . +My sister resembles my mother . ||| 我 妹妹 很 像 我 妈妈 . +I am as hungry as a horse . ||| 我 餓 得 像 匹馬 . +I am not turning back . ||| 我 不 回去 . +Tom stayed in Australia for three years . ||| 汤姆 在 澳大利亚 呆 了 三年 . +Let me introduce my mother to you . ||| 讓 我 向 你 介紹 我 的 母親 . +Remember Tom is advice . ||| 记住 汤姆 的 建议 . +Tom probably does not know how to do that as well as Mary . ||| 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Roll the ball to me . ||| 把 球 传给 我 . +He is a head taller than me . ||| 他 比 我 高 一个头 . +I do not care . ||| 我 无所谓 . +The boy came running into the room . ||| 小男孩 跑 進 了 房間 . +My father works at a factory . ||| 我 父亲 在 工厂 工作 . +A gentleman would not do such a thing . ||| 一个 绅士 是 不会 做 这种 事 的 . +Tom does not want to let Mary go . ||| Tom 不想 让 Mary 走 +I do not know what I should do now . ||| 我 不 知道 现在 应该 做 什么 . +Are you interested in politics ? ||| 你 对 政治 感兴趣 吗 ? +And everyone has the ability to contribute . ||| 每个 人 都 有 能力 作贡献 . +Sorry , but I can not hear you very well . ||| 對 不起 , 但 我 聽 不 清 你 說 的 話 . +I should be studying English , but I want to watch a movie . ||| 我 真的 應該 學 英語 , 但是 我 想 看 電影 . +She felt insecure about her future . ||| 她 對 她 的 未來 感到 沒有 安全感 . +Tom waited outside . ||| 湯姆 在 外面 等 . +Do you understand ? ||| 你 明白 了 嗎 ? +As for me , I have no objection . ||| 对于 我 , 我 不 反对 . +He plays baseball tomorrow . ||| 他 明天 將 打 棒球 . +How could things get worse ? ||| 事情 怎麼 變 糟 的 ? +I have to get to sleep ! I have got classes tomorrow . ||| 我 必须 去 睡觉 了 ! 我 明天 早上 有 课 . +Think about tomorrow . ||| 請 思考 一下 明天 . +Do not come into my room . ||| 不要 進入 我 的 房間 . +What do you think of those Japanese writers ? ||| 你 觉得 那些 日本 作家 怎么样 ? +It seems to me that she has a tendency to exaggerate . ||| 在 我 看來 , 她 有 一種 誇張 的 傾向 . +Maybe we should open it now . ||| 我們 現在 可能 該 打開 它 . +I want to brush up my English . ||| 我 要 溫習 一下 我 的 英文 . +It soon began to rain very hard . ||| 很快 就 會 開始 大雨 了 . +The revolution has brought about many changes . ||| 这场 革命 已经 带来 了 很多 改变 . +Tom worked hard to get the work done on time . ||| 汤姆 努力 工作 按时 完成 工作 . +Since he has ambitions , he works hard . ||| 因為 他 有 野心 , 他 很 努力 地 工作 . +This is too expensive ! ||| 这 太贵 了 . +I have to say this . ||| 我 得 说 这事 . +She is busy now and can not speak to you . ||| 她 现在 忙 , 不能 跟 你 说话 . +It is your favorite song . ||| 它 是 你 最 喜歡 的 歌 . +He convinced me of his innocence . ||| 他 让 我 相信 他 是 无辜 的 . +He has more than five dictionaries . ||| 他 有 五本 以上 的 字典 . +All I really want to do is talk to Tom . ||| 我 真正 想 做 的 就是 跟 湯姆 說 話 . +My uncle is company launched a new product last month . ||| 舅舅 的 公司 上个月 推出 了 一项 新 产品 . +I am glad I was there . ||| 我 很 高興 我 在 那裡 . +Leave this to me . ||| 把 这个 留给 我 吧 . +Please wait until the end of this month . ||| 本月 结束 之前 请 等待 . +Only six people came to the party . ||| 只有 六個 人 參加 了 派 對 . +Come along with us . ||| 跟 我們 一起 來 吧 . +That was really unfair . ||| 那 真不 公平 . +You are not authorized to enter there . ||| 你 无权 进入 那里 . +She is not afraid of anything . ||| 她 不 害怕 任何 東西 . +The paint was coming off the wall . ||| 油漆 從 牆上 脫落 . +She kept on working . ||| 她 繼續 工作 . +She must have done it yesterday . ||| 她 昨天 一定 已經 做 過 了 . +A big tree fell in the storm . ||| 一棵 大樹 在 暴風 中 倒下 . +I look forward to seeing you again . ||| 我 期待 著 再次 見 到 你 . +Why are you wearing that scarf ? ||| 你 为什么 戴 那条 围巾 ? +I asked him to open the window . ||| 我 請 他 把 窗戶 打開 . +I have not smoked for ages . ||| 我 很久没 有 抽烟 了 . +I agree with him . ||| 我 同意 他 . +We will continue . ||| 我们 要 继续下去 . +What time shall I pick you up ? ||| 我 該 幾點 去 接 你 ? +I will let you know in advance . ||| 我会 让 你 提前 知道 . +I only know him by name . ||| 我 只 知道 他 的 名字 . +May I help you ? ||| 我 能 幫 你 嗎 ? +Do you have a lot of money on you ? ||| 你 身上 有 很多 钱 吗 ? +Can you do that by yourself ? ||| 你 自己 一個 人 能 做 嗎 ? +Other than Sundays , I work every day . ||| 我 除了 星期天 外 每天 都 上班 . +The policeman arrested him for drunken driving . ||| 警察 因 酒 後 駕駛 逮捕 了 他 . +I like shopping on Ebay . ||| 我 喜欢 在 eBay 上 购物 . +This is a bad thing . ||| 這 是 件 壞 事 . +They broke into the jewelry shop . ||| 他們 闖進 了 珠寶 店 . +I eat meat three times a week . ||| 我 每週 吃 肉 三次 . +I go to church on Sundays . ||| 周日 我 去 做礼拜 . +The conflict between blacks and whites in the city became worse . ||| 在 这个 城市 , 白人 和 黑人 间 的 争端 愈演愈烈 . +They hugged . ||| 他们 拥抱 . +They trust Tom . ||| 他们 信任 汤姆 . +Mother prepared lunch for me . ||| 妈妈 为 我 准备 了 午饭 . +Speaking English is not easy . ||| 說 英語 是 不 容易 的 . +I was in London last month . ||| 上個月 我 在 倫敦 . +Get me the newspaper . ||| 去 拿 一下 报纸 . +It is ten minutes ' walk to the station . ||| 步行 到 車 站 要 花 十分 鐘 . +It is not good for anybody . ||| 这 对 任何人 都 不好 . +I have always trusted your judgment . ||| 我 一直 都 相信 你 的 判断 . +Where is the kitchen ? ||| 厨房 在 哪 ? +I was very relaxed . ||| 我 很 放 鬆 . +Write your name and address on this envelope . ||| 把 你 的 姓名 和 地址 寫 在 這個 信封 上 . +He likes to watch baseball games on TV . ||| 他 喜歡 看 電視 上 的 棒球 比賽 . +I heard our dog barking all night . ||| 我 聽到 我們 的 狗叫 了 一整夜 . +She fainted when she saw blood . ||| 她 看见 血 就 晕 了 . +I was not alone then . ||| 我 当时 不 孤单 . +I have no friends to help me . ||| 我 没 朋友 帮 我 . +I asked him for a favor . ||| 我 請 他 幫 忙 . +He makes good use of his talents . ||| 他 善用 他 的 天赋 . +I just want to be happy . ||| 我 只 想 高兴 . +She is going to Mount Tate . ||| 她 將 去 立山 . +He told me an interesting story . ||| 他 告訴 了 我 一個 有趣 的 故事 . +I do not like being the one who always has to milk the cow . ||| 我 不 喜欢 做 那个 总是 挤 牛奶 的 人 +He placed the book on the shelf . ||| 他 把 书 放在 了 书架上 . +I know that life is short . ||| 我 知道 生命 是 短暂 的 . +I am just playing the devil is advocate . ||| 我 在 给 魔鬼 当 辩护士 . +What is your opinion on that ? ||| 关于 那个 你 有 什么 看法 ? +I got on the train for London . ||| 我 登上 去 伦敦 的 火车 . +Something is changing . ||| 有些 東西 在 變化 . +English is studied all over the world . ||| 世界各地 都 讀 英語 . +A cold front swept over Europe . ||| 一股 寒流 侵袭 了 欧洲 . +He is getting along with his neighborhood . ||| 他 和 他 的 邻居 相处 . +Please speak a little more slowly . ||| 請 講 慢 一點 . +He parked his car in front of the building . ||| 他 把 车 停 在 大楼 前 . +Foxes eat hens . ||| 狐狸 吃 母鸡 . +The explanation is by no means satisfactory . ||| 這個 解釋 不是 很 令人 滿意 . +Can you feel the difference ? ||| 你 能 感受 到 不同 之處 嗎 ? +I am looking forward to seeing him . ||| 我 期待 再次 見 到 他 . +This coffee is too hot for me to drink . ||| 这 咖啡 热 得 我 没 办法 喝 . +I will never see him again . ||| 我 永遠 不 會 再 看到 他 . +I like chocolate . ||| 我 喜歡 巧克力 . +He was scared you would shoot him . ||| 他 害怕 你 會 開 槍 打 他 . +I am not tired at all . ||| 我 根本 不累 . +She poured brandy into the glasses . ||| 她 把 白蘭 地 倒 進 玻璃杯 裡 . +She is very clever . ||| 她 很 聰明 . +That is Tom is mother . ||| 那 是 汤姆 的 妈妈 . +See you later . ||| 再见 . +What if Tom is still alive ? ||| 如果 汤姆 还 活着 呢 ? +I also had a very good time . ||| 我 也 过 得 很 愉快 . +Those records are not accessible to the public . ||| 這些 記錄 不 對 公眾 開放 . +Nobody knows when the earthquake will occur . ||| 没有 人 知道 地震 何时 会来 . +After they argued , they did not speak to each other for a week . ||| 他们 争吵 后 , 一周 都 没有 再 说话 . +What is this ? ||| 這 是 什麼 啊 ? +She gave birth to a daughter yesterday . ||| 她 昨天 生 了 一個 女兒 . +Do not put your elbows on the table . ||| 不要 把 你 的 手肘 放在 桌子 上 . +Do you think he is good for the position ? ||| 你 认为 他 适合 这个 职位 吗 ? +I turned the doorknob . ||| 我 轉動 了 門 把 . +Tom is looking for someone to take Mary is place . ||| Tom 正在 找 其他人 代替 Mary . +I canceled my hotel reservation . ||| 我 取消 了 我 旅館 的 預訂 . +Let is have a few drinks tonight . ||| 讓 我們 今晚 喝 幾杯 . +Tom is a very good singer . ||| 汤姆 是 个 很好 的 歌手 . +I can not find fault with him . ||| 我 挑不出 他 的 毛病 . +It is not a road , but a path . ||| 它 不是 一條 路 , 而是 一條 小徑 . +My mother opened the door very carefully . ||| 我 妈妈 小心翼翼 地 打开门 . +What have I got to lose ? ||| 我 要 失去 什么 ? +Could I park my car here ? ||| 我 能 把 我 的 车 停 在 这儿 吗 ? +Do you have a fever ? ||| 你 發燒 了 嗎 ? +May I borrow your bike ? ||| 我 能 借 一下 您 的 自行车 吗 ? +Put it back on the desk . ||| 把 它 放回 桌子 上 . +She is a noted singer . ||| 她 是 一个 著名 的 歌手 . +You are not going in the right direction . ||| 你 要 南辕北辙 了 . +What did he ask you ? ||| 他 問 你 什麼 ? +She has blue eyes . ||| 她 有 蓝色 的 眼睛 . +Everybody looks up to Tom . ||| 每个 人 都 看 向 汤姆 . +There is a basket under the table . ||| 桌子 底下 有 一個 籃子 . +He accepted her gift . ||| 他 接受 了 她 的 礼物 . +I asked him point @-@ blank . ||| 我 直接 地 問 了 他 . +I play volleyball a lot . ||| 我 常 打 排球 . +Let is eat while the food is warm . ||| 讓 我們 趁 熱 吃 吧 . +Tom is asleep on the couch . ||| 汤姆 在 长沙 发 上 睡着 了 . +This wine tastes great . ||| 這 葡萄酒 非常 好喝 . +He is a man of ability . ||| 他 是 个 能干 的 男人 . +I speak Swedish . ||| 我 说 瑞典语 . +There is something I want you to see . ||| 我 有 东西 想 给 你 看看 . +It is my job . ||| 這 是 我 份 內 的 事 . +Feel this . ||| 来 感受一下 这个 . +That is a great poem . ||| 這 是 一首 很棒 的 詩 . +Tom is a French teacher . ||| 汤姆 是 法语 老师 . +I have not seen you for ages . ||| 我 已經 有 很 長 的 時間 沒有 見到 你 了 . +In some countries , the punishment for treason can be life in prison . ||| 在 一些 國家 , 叛國 罪 的 懲罰 可以 是 終身 監禁 . +He is three years older than her . ||| 他 比 她 大 三岁 . +I do not understand any French . ||| 我 一点 法语 都 不 懂 . +Riding double on a bicycle is dangerous . ||| 腳踏車 雙載 是 危險 的 . +Tom is as tall as his father . ||| 湯姆 跟 他 爸爸 一樣 高 . +Where is the pain ? ||| 哪裡 痛 ? +I am busy . ||| 我 很忙 . +Are we allowed to take pictures here ? ||| 这里 允许 拍照 吗 ? +What did you get for Christmas ? ||| 你 耶 誕節 得到 了 什麼 ? +We got permission to park here . ||| 我們 有 在 這裡 停車 的 許 可 . +He came home three hours later . ||| 他 三個 小 時 後 回家 了 . +She proceeded with the work . ||| 她 继续 工作 . +I have a computer . ||| 我 有 一台 电脑 . +You will never be alone . ||| 你 永远 不会 一个 人 的 . +He rescued a boy from drowning . ||| 他 救 了 一个 溺水 的 男孩 . +I think we are ready to do that . ||| 我 认为 我们 准备 好 了 . +We all like cycling . ||| 我们 都 喜欢 骑 自行车 . +She used to live with him . ||| 她 以前 和 他 住 一起 . +Are you for real ? ||| 你 是 认真 的 吗 ? +I do not feel very well . I should go home . ||| 我 感覺 不太好 , 我 該 回家 . +I was not quite sure what to say . ||| 我 不 太 確定 要 說 什麼 . +I do not understand at all . ||| 我 完全 不 懂 . +Tom was fired . ||| 湯姆 被 解僱 了 . +That movie is for children . ||| 那部 電影 是 給 小孩 看 的 . +The river is on the other side of the hill . ||| 河 在 山丘 的 另一端 . +I have finished reading the book . ||| 我 看 完 了 这 本书 . +Tom could not conceal his disappointment . ||| 汤姆 不能 掩饰 他 的 失望 . +Why are you burning these pictures ? ||| 为什么 你 要 烧 这些 图片 呢 ? +Give me the report . ||| 给 我 报告 . +The dog barked at the mailman . ||| 狗 對著 郵差 叫 . +What does this word mean ? ||| 这个 词 是 什么 意思 ? +He is studying at his desk . ||| 他 正在 他 的 書 桌旁 讀書 . +He had to clean his room . ||| 他 不得不 打扫 了 他 的 房间 . +Tom was a teacher for nearly thirty years . ||| 汤姆 当 教师 约 三十年 了 . +I suggest we move to a safer location . ||| 我 建議 我們 去 個 更 安全 的 地方 . +It is said that treasure is buried in this area . ||| 据说 这个 区域 埋 着 财宝 . +Nobody knows where he has gone . ||| 沒 有人 知道 他 去 了 哪裡 . +He was wet all over . ||| 他 从头到脚 都 湿 了 . +He patted me on the shoulder . ||| 他 拍拍 我 的 肩膀 . +He is a learned man . ||| 他 是 个 有 教养 的 人 . +Tom is hope was to win first prize . ||| 湯姆 希望 贏 得 第一名 . +The wind blew too hard for them to play in the park . ||| 风 刮得 太猛 , 他们 没法 在 公园 里 玩 了 . +This is my book . ||| 这 是 我 的 书 . +I admire you for your courage . ||| 我 佩服 你 的 勇氣 . +Can you use a computer ? ||| 您 会 使用 计算机 吗 ? +I regret eating those oysters . ||| 我 後 悔 吃 了 那些 牡蠣 . +The sky grew darker and darker . ||| 天空 变得 越来越 暗 了 . +I solved the problem easily . ||| 我 很 容易 地 解決 了 這個 問題 . +Tom let Mary go home . ||| 湯姆 讓 瑪麗 回家 . +We will change trains at the next station . ||| 我們 會 在 下 一站 換 火車 . +Do not read while walking . ||| 不要 边走边看 书 . +You should have told me yesterday . ||| 你 昨天 就 该 告诉 我 了 . +Tom does not like people who smoke in no smoking areas . ||| 汤姆 讨厌 在 禁烟 区 吸烟 的 人 . +Mary had to go to school . ||| 瑪麗 必須 去 上 學 . +I ate your strawberries . ||| 我 吃 了 你 的 草莓 . +He is new in town . ||| 他 刚来 这 镇上 . +I am a vegetarian . ||| 我 是 素食主义者 . +Let is go to the beach . ||| 讓 我們 去 海邊 吧 . +Tom does not want to go alone . ||| 汤姆 不想 一个 人 走 . +The problem is Tom . ||| 問題 是 湯姆 . +Every time he comes here , he orders the same dish . ||| 每次 他 来 这里 点 一样 的 菜 . +Tom yawned . ||| 汤姆 打哈欠 了 . +Are you serious ? ||| 你 是 认真 的 吗 ? +He came to Japan seven years ago . ||| 他 七年 前來 日本 . +She made a man of him . ||| 她 使 他 長大 成人 . +Please let us know . ||| 請 讓 我們 知道 . +He had no luck in finding work . ||| 他 找 工作 不 走 運 . +He lived to be eighty years old . ||| 他 活到 了 八十 歲 . +I am trying to think of a better plan . ||| 我 试 着 考虑 更好 的 计划 . +I stayed home because of the rain . ||| 因為 下雨 , 所以 我 待 在家 裡 . +Where is the nearest travel agency ? ||| 最近 的 旅行社 在 哪裡 ? +I saw him cross the street . ||| 我 看见 他 穿过 了 马路 . +How tall is your brother ? ||| 你 的 兄弟 多 高 ? +I like to do my homework . ||| 我 喜歡 做 我 的 作業 . +I am very lonely . ||| 我 很 寂寞 . +He arrived in time . ||| 他 准时 来 了 . +I did not see anything . ||| 我什麼 都 沒 看見 . +What is your favorite way to cook potatoes ? ||| 你 最 喜歡 用 什麼 方式 煮 馬鈴薯 ? +You must start immediately . ||| 你 必须 马上 开始 . +Tom gave Mary a flashlight . ||| 汤姆 给 了 玛丽 一把 手电筒 . +He crossed the river in a small boat . ||| 他 乘 小船 過河 . +He gave me authority to fire them . ||| 他 授權 給 我 解僱 了 他們 . +I think Tom has a crush on Mary . ||| 我 觉得 汤姆 爱 上 玛丽 了 . +There was a steady increase in population . ||| 人口 穩定 地 增加 . +Admission is free for children . ||| 儿童 免费入场 . +Tom blushed . ||| 汤姆 脸红 了 . +Do not throw away this magazine . ||| 不要 丟掉 這 本 雜 誌 . +My wife is afraid to drive my new car . ||| 我 的 妻子 害怕 开 我 的 新车 . +I am not a child , but sometimes you talk to me as if I were a child . ||| 我 不是 小孩子 , 但 有时 你 跟 我 说话 就 好像 我 是 小孩子 一样 . +Tom is busy now and can not talk with you . ||| 湯姆 現在 忙 , 不能 跟 你 講 話 . +It snowed a lot last year . ||| 去年 下 了 很多 雪 . +He asked me if I was busy . ||| 他 问 我 是否 很 忙 ? +He tried to unify the various groups . ||| 他 試著 統一 不同 的 團體 . +He likes to smoke in the toilet . ||| 他 喜欢 在 厕所 里 吸烟 . +You are taller than most of Tom is friends . ||| 你 比 汤姆 的 大部分 朋友 都 高 . +I have three cameras . ||| 我 有 三台 攝影 機 . +I know an English teacher who comes from Canada . ||| 我 认识 一个 加拿大 来 的 英语 教师 . +The door was kicked open . ||| 门 被 踢开 了 . +Tom and I are teammates . ||| 湯姆 和 我 是 隊友 . +Let me go alone . ||| 讓 我 一個 人 去 . +This time it is different . ||| 這次 不 一樣 . +The bridge will be completed by the end of this year . ||| 大橋 將 在 年底 完工 . +He started going bald quite young . ||| 他 很年 輕 就 開始 禿頭 了 . +Tom deserves to be blamed . ||| 汤姆 应当 被 责备 . +I do not understand German . ||| 我 不 懂 德语 . +Do you have any plans for tomorrow ? ||| 明天 你 有 什么 安排 没有 ? +I am hungry , so I am going to get something to eat . ||| 我 餓 了 , 所以 我 要 吃 東西 . +I am as hungry as a horse . ||| 我 饿 得 跟 饿虎扑羊 似的 . +Will you have another slice of pie ? ||| 你 要 再 來 一塊 餡餅 嗎 ? +I share a bedroom with my sister . ||| 我 跟 我 姐姐 共用 同一 間 臥房 . +Let me have a look at those photos . ||| 让 我 看看 那些 照片 . +Have you seen any movies lately ? ||| 最近 看 了 什么 电影 没有 ? +They love each other . ||| 他們 彼此 相愛 . +I will pick you up at your home . ||| 我会 去 你家 接 你 . +My papers were in that box . ||| 我 的 文件 在 那個 箱子 裡 . +I accompanied her on the piano . ||| 我 彈 鋼琴 為 她 伴奏 . +They dropped out of school . ||| 他們 輟學 了 . +This is smaller than that . ||| 这个 比 那个 更 小 . +His brazen act of defiance almost cost him his life . ||| 他 怀疑 的 无耻 行为 差点 要 了 他 的 命 . +We are sorry we can not help you . ||| 我们 很 遗憾 没 能 帮助 你们 . +Our school is fifty years old . ||| 我們 學校 有 五十年 的 歷史 了 . +That is just your imagination . ||| 这 只是 幻想 而已 . +He called me up almost every day . ||| 他 幾乎 每天 打 電話 給 我 . +I used to swim in this river . ||| 我 以前 在 這條 河裡 游泳 . +Where did you guys go ? ||| 你们 这些 家伙 去 哪儿 了 ? +Tom waved at Mary from the helicopter . ||| 湯姆 在 直升 機上 向 瑪麗揮 手 . +I am a little confused . ||| 我 有 一点 困惑 了 . +There is one apple on the desk . ||| 桌上 有个 苹果 . +I do not like reading at all . ||| 我 一点 都 不 喜欢 阅读 . +I hope you will call again . ||| 我 希望 你 會 再 打 一次 電話 . +Tom sat at his desk working . ||| 湯姆 在 他 的 桌邊 工作 . +We should tell children how to protect themselves . ||| 我们 应该 告诉 孩子 怎么 保护 自己 . +Hand me the remote . ||| 把 遥控器 递给 我 . +I do not want to lose you . ||| 我 不想 失去 你 . +What are you looking at ? ||| 你 在 看 什么 ? +He is mean . ||| 他 很 凶 . +You have the same racket as I have . ||| 你 的 球拍 跟 我 的 一樣 . +Tom works at a fast @-@ food restaurant . ||| 汤姆 在 一家 快餐店 工作 . +The boy feared the dark . ||| 这个 男孩 害怕 黑夜 . +I always have to wear a tie because of my job . ||| 因為 這份 工作 的 關 係 , 我 總是 要 打 領帶 . +Please come whenever you like . ||| 請 你 想 什麼 時候 來 都 可以 . +Do you know who he is ? ||| 你 知道 他 是 誰 嗎 ? +That child resembles his father . ||| 那 孩子 和 他 父亲 很 像 . +How many friends do you have ? ||| 你 有 多少 朋友 ? +She understands you now . ||| 她 现在 了解 你 . +I do not mind if the weather is hot . ||| 天气 热点 儿 没关系 . +Are you busy on Sunday afternoon ? ||| 你 週日 下午 忙 嗎 ? +Why am I still here ? ||| 为什么 我 还 在 这里 ? +Tom opened the blinds and looked out the window . ||| 汤姆 打开 百叶窗 , 向 窗外 望去 . +I do not trust businessmen . ||| 我 不 相信 商人 . +Your manners are not very good . ||| 你 的 禮貌 不是 很 好 . +I can not do anything . ||| 我 不会 做 任何 事 . +You and I are the same age . ||| 你 和 我 同龄 . +All their secrets have been revealed . ||| 他們 所有 的 秘密 都 已經 被 揭曉 了 . +It was very far . ||| 它 很遠 . +Is she your mother ? ||| 她 是 你 媽 媽 嗎 ? +His shirt was stained with sauce . ||| 他 的 衬衫 被 酱汁 弄脏了 . +Would you like more coffee ? ||| 你 想 再 喝 點 咖啡 嗎 ? +Stop talking loudly . ||| 停止 大声 说话 . +I study about two hours every day . ||| 我 每天 讀書 大約 兩個 小 時 . +We know that all men are mortal . ||| 我們 知道 人 皆 難免 一死 . +Please keep an eye on my suitcase . ||| 請 留神 看著 我 的 手提箱 . +She whispered something into his ear . ||| 她 在 他 耳邊 低聲 說 話 . +You could run . ||| 你 能 跑 . +Tom really does not like you . ||| 汤姆 真的 不 喜欢 你 . +In this case , the adjective goes before the noun . ||| 在 这种 情况 下 , 形容词 放在 名词 前面 . +He does not come here every day . ||| 他 不是 每天 都 來 這 . +I helped my father wash his car . ||| 我 幫 我 父親 洗 他 的 車 . +Tom still can not read . ||| 汤姆 还是 不能 读书 . +Give me the same , please . ||| 请 给 我 同样 的 东西 . +Why are you so mean to me ? ||| 你 为什么 对 我 这么 小气 ? +Who built it ? ||| 这 是 谁 建 的 ? +Some people believe in ghosts . ||| 有些 人 相信 鬼 . +This desk is made of wood . ||| 这 张 书桌 是 木制 的 . +Tom is consoling Mary . ||| 汤姆 在 安慰 玛丽 . +I wrote the wrong address on the envelope . ||| 我 在 信封 上 写错 了 地址 . +Not a star was to be seen . ||| 星星 沒有 被 看到 . +The audience was very large . ||| 观众 人数 庞大 . +Europeans like to drink wine . ||| 欧洲人 喜欢 喝酒 . +I do not like this one . ||| 我 不 喜欢 这个 . +His company did not survive the crisis . ||| 他 的 公司 沒有 從 危機中 倖 存 . +There was nothing left in the refrigerator . ||| 冰箱 里 什么 都 没 剩下 . +Tom has not finished his lunch yet . ||| 湯姆 還 沒 吃 完 他 的 晚飯 . +Do not you want to use mine ? ||| 你 不想 用 我 的 嗎 ? +If you 'd listen a little more carefully to what the teacher says , you 'd probably be able to understand . ||| 假如 你 在 老师 讲课 的 时候 再 集中 一点 去 听讲 的话 , 你 应该 就 能 弄 明白 了 . +We want to be on the first bus tomorrow morning . ||| 我们 想 乘 明天 早上 第一班 公交车 . +He will make a good team captain . ||| 他 會 成為 一個 好 隊長 . +I do not want it anymore . ||| 我 再也 不 想要 了 . +I have been to Australia three times . ||| 我 去過 澳洲 三次 . +People should do their best . ||| 人們 應該 盡力 而為 . +He is getting along with his employees . ||| 他 和 他 的 員工 相處 . +I am asking what your opinion is . ||| 我 在 問 你 的 選擇 是 甚麼 . +He shook his head up and down . ||| 他 上下 晃 了 晃头 . +Would you like another cup of tea ? ||| 你 想 再 要 杯 茶 吗 ? +He changed schools last year . ||| 去年 他 转校 了 . +Please come back home as soon as you can . ||| 请 尽快 回家 . +I have to go to the bank . ||| 我 必须 到 银行 去 . +Tom will never willingly go there by himself . ||| 汤姆 绝不会 愿意 独自 去 那里 . +I do not have any change . ||| 我 没 任何 零钱 . +A person views things differently according to whether they are rich or poor . ||| 每 一個 人 對 事情 的 看法 不同 是 依據 他們 是 富有 還是 貧窮 . +I think you will find it convenient to put a short @-@ cut on the desktop . ||| 我 想 你 迟早会 知道 在 桌面 建立 一个 快捷方式 是 有 多 方便 . +A fox is not caught twice in the same snare . ||| 狡兔三窟 . +I am lost . Can you help me , please ? ||| 我 迷路 了 , 能 不能 请 您 帮 我 一下 ? +Attack is the best form of defense . ||| 進攻 是 最好 的 防禦 . +The system worked . ||| 系统 运行 起来 了 . +My mother is a good woman . ||| 我 媽媽 是 個 好 女人 . +He checked in at a good hotel . ||| 他 入住 了 一間 很好 的 旅館 . +Tomorrow there is a high probability it will rain . ||| 明天 很 有 可能 下雨 . +Let is get to work . ||| 干活 吧 . +I think you are quite right . ||| 我 認為 你 說 得 很 對 . +I like summer the best . ||| 我 最 喜歡 夏天 . +He was named after his grandfather . ||| 他 以 他 祖父 的 名字 被 命名 . +You should get your car fixed . ||| 你 應該 把 你 的 車 修好 . +Nagoya is between Tokyo and Osaka . ||| 名古屋 在 東京 和 大阪 之間 . +Mary succeeded in her studies . ||| 玛丽 在 研究 上 成功 了 . +Tom had a hunch that Mary was seeing someone else . ||| 汤姆 预感 到 玛丽 在 见 别人 . +You do not have to kick yourself . ||| 你 不要 自甘堕落 . +Please take good care of yourself . ||| 請 好好 照顧 你 自己 . +One year has twelve months . ||| 一年 有 十二 個 月 . +Could you turn it down ? ||| 你 可以 轉 小聲 一點 嗎 ? +Carrots cost three dollars . ||| 胡萝卜 要 三 美元 . +I am free tonight . ||| 我 今晚 有空 . +He is younger than me . ||| 他 比 我 年轻 . +I did not know that he was Japanese . ||| 我 不 知道 他 是 日本 人 . +Tom said that he wanted to eat Chinese food . ||| 湯姆 說 他 想 吃 中國 菜 . +The boy actually was going to do it . ||| 這個 男孩 實際 上 是 要 去 做 . +Tom and I are in the same class . ||| 湯姆 和 我 在 同一 個 班 裡 . +Is this a duty @-@ free shop ? ||| 這 是 一間 免稅 商店 嗎 ? +Why are you angry ? ||| 你 为什么 生气 ? +I do not like learning irregular verbs . ||| 我 不 喜欢 学习 不规则 动词 . +I graduated from high school last year . ||| 去年 我 從 高中 畢業 了 . +What would the world be like without women ? ||| 没有 女人 的话 , 世界 会 是 什么样 ? +This guidebook might be of use to you on your trip . ||| 这本 导游 册子 或许 会 对 你 的 旅行 有 帮助 . +I will only buy the car if they repair the brakes first . ||| 除非 他们 事先 修好 刹车 , 我 才 会 买 车子 . +The ticket is good for three days . ||| 這 張 票 的 有效期 是 三天 . +He dropped the cup and broke it . ||| 他 把 杯子 掉 到 地板 上 打碎 了 . +Let me do that . ||| 让 我 去 做 . +Tom passed away October 20 , 2013 . ||| 汤姆 逝世 于 2013 年 10 月 20 日 . +He studied English history . ||| 他 学 了 英国 历史 . +Suddenly , it began to rain . ||| 突然 開始 下雨 . +I still have not found anything . ||| 我 还 什么 都 没 找到 呢 . +My wife wants to adopt a child . ||| 我 妻子 想 收养 一个 孩子 . +We all have secrets . ||| 我們 都 有 秘密 . +We had a good conversation . ||| 我们 谈 得 不错 . +He had his shirt on inside out . ||| 他 把 他 的 襯衫 穿反 了 . +Who will be elected chairman ? ||| 谁 将 当选 主席 呢 ? +I would like to dance . ||| 我 想要 跳舞 . +We gazed at the beautiful scenery . ||| 我們 望著 這 美麗 的 風景 . +That could not have gone any worse . ||| 再 糟糕 不过 了 +I have nothing to say with regard to that problem . ||| 对于 这个 问题 我 无可奉告 . +I just can not believe it . ||| 我 真是 不能 相信 . +The old man made out his will . ||| 這位 老先生 立 了 他 的 遗嘱 . +I thought that we had found the perfect hiding place , but the police found us . ||| 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +Are you saying Tom is hiding something from us ? ||| 你 说 Tom 对 我们 隐藏 了 一些 事情 ? +Cheers ! ||| 乾杯 ! +I am first . ||| 我 是 第一 . +He left the book on the table . ||| 他 在 桌子 上 留下 了 這 本書 . +I need to go to the toilet . ||| 我 要 去 上 廁所 . +I am ill . ||| 我 生病 了 . +He ate all of the apple . ||| 他 把 整个 苹果 都 吃 了 . +What is your name ? ||| 您 叫 什么 名字 ? +Being rejected is painful . ||| 被 拒絕 是 痛苦 的 . +Tom is not dumb . ||| 汤姆 不 傻 . +Could you help me find my dog ? ||| 你 能 幫 我 找到 我 的 狗 嗎 ? +There is no mistake . ||| 没有 错误 . +Please help me with my homework . ||| 請 幫 我 做 我 的 家庭 作業 . +He was not able to open the box . ||| 他 沒有 能力 打開 箱子 . +His new car is wonderful . ||| 他 的 新車 很棒 . +I could barely get out of bed yesterday . ||| 我 昨天 幾乎 下 不了 床 . +Come whenever you want . ||| 什么 时候 想来 就 过来 吧 . +English is spoken in Canada . ||| 在 加拿大 的 人 說 英語 . +I do not know where he lives . ||| 我 不 知道 他 住 在 哪裡 . +You will not be able to catch the train . ||| 你 將 無法 趕 上火 車 . +The police are checking their bags . ||| 警察 正在 检查 他们 的 包 . +Give me a bottle of wine . ||| 給 我 一瓶 葡萄酒 . +Breathe through your nose . ||| 用 你 的 鼻子 呼吸 . +She cried her heart out . ||| 她 哭 得 肝腸寸斷 . +I am fixing the washing machine . ||| 我 在 修 洗衣 機 . +Do you want something to drink ? ||| 你 想要 什么 喝 的 吗 ? +Do not you have any feelings for me at all ? ||| 你 对 我 完全 没有 感觉 吗 ? +The market is big . ||| 市場 很大 . +May I go to the bathroom ? ||| 我 可以 去 洗手 間 嗎 ? +I like tea . ||| 我 喜欢 茶 . +I am talking about my friend . ||| 我 在 談 我 的 朋友 . +The petals are floating on the water . ||| 花瓣 浮 在 水面 上 . +We must finish our homework first . ||| 我們 必須 先 完成 我們 的 功課 . +You are so stupid . ||| 你 真傻 . +The police are after him . ||| 警察 在 跟著 他 . +The little cabin was bathed in moonlight . ||| 小木屋 沐浴 在 月光 之中 . +Where did you go that night ? ||| 那天 晚上 你 在 哪裡 ? +Tom could not see anybody . ||| 汤姆 看不到 任何人 . +Tom is not used to walking barefooted . ||| 汤姆 不 习惯 光 着 脚 漫步 . +Please copy this . ||| 麻煩 拷貝 這個 . +You must keep quiet for a few days . ||| 你 该 安静 几天 . +A strange feeling came over me . ||| 我 觉得 不 舒服 . +A hungry pig dreams of acorns . ||| 飢餓 的 豬 夢 到 橡樹子 . +There is a spoon missing . ||| 缺 一把 勺子 . +My father made a shelf for me . ||| 我 父親 為 我 做 了 個 架子 . +Do you know how to drive this thing ? ||| 你 知道 怎么 驾驶 这 玩意儿 吗 ? +Will you show me what you bought ? ||| 你 愿意 给 我 看看 你 买 了 什么 吗 ? +I was just about to leave the house when the telephone rang . ||| 我 正要 离开 家 的 时候 电话响 了 . +Did Tom say who ? ||| 汤姆 说 是 谁 了 吗 ? +Can you tell me where the nearest bus stop is ? ||| 你 能 把 最近 的 公车站 指给 我 看 吗 ? +I could not find his house . ||| 我 找 不到 他 的 家 . +I fell asleep while reading . ||| 我 看书 的 时候 睡着 了 . +I bought that car . ||| 我 買 了 那輛 車 . +He is gone to Nagoya on business . ||| 他 因公 出差 到 名古屋 . +Why are you being so secretive ? ||| 你 為 什麼 這麼 神秘 ? +I will not be getting married this year . ||| 我 今年 不 結婚 . +I will be back late . ||| 我 會晚 一點 回來 . +Tom made a choice . ||| 汤姆 做出 了 选择 . +What was that meeting about ? ||| 那场 会议主题 是 什么 ? +He thanked me for coming . ||| 他 感謝 我 的 到 來 . +He passed the entrance examination . ||| 他 通過 了 入學 考試 . +You should not go out . ||| 你 不 應該 出去 . +How do you view this matter ? ||| 您 怎麼 看 這個 問題 ? +I almost won . ||| 我 几乎 赢 了 . +They have elected a new government . ||| 他們 選出 了 新政府 . +Do you want to have sushi tonight ? ||| 你 今晚 想 吃 壽司 嗎 ? +I think you are lying . ||| 我 觉得 你 在 撒谎 . +The death penalty had been done away with in many states in the USA . ||| 死刑 在 美国 的 很多 州 都 被 废除 了 . +I have lost my watch . ||| 我 把 我 的 表 丢 了 . +He sleeps during the day and works at night . ||| 他 白天 睡觉 , 晚上 工作 . +They have many friends . ||| 他们 有 很多 朋友 . +Rice is grown in rainy regions . ||| 人們 在 多 雨 地區 種植 水稻 . +The flood water reached the level of the windows . ||| 洪水 涌到 了 窗户 的 高度 . +I can not blame Tom for not waiting . ||| 我 不能 怪 湯姆 不 等著 . +I have done everything necessary . ||| 我 做 完 了 所有 重要 的 事 . +I agree with you absolutely . ||| 我 完全 赞同 你 . +Two men are checking on what is wrong with the car . ||| 两个 男人 在 检查 汽车 出 了 什么 故障 . +Tom helped us all . ||| 湯姆 幫 了 我們 . +Try to have a positive attitude about everything . ||| 试 着 用 积极 的 态度 去 面对 任何 事情 . +Let is split the reward fifty @-@ fifty . ||| 讓 我們 平分 這個 報酬 吧 . +I am disgusted with him . ||| 我 厌恶 他 . +People like you should not be here . ||| 你 這樣 的 人 不該 在 這裡 . +That is the part I liked best . ||| 那 是 我 最 喜歡 的 部分 . +Do you think they noticed ? ||| 你 认为 他们 注意 了 吗 ? +I do not want him to touch me . ||| 我 不想 被 他 感动 . +It is not something anyone can do . ||| 这 不是 任何人 都 能 做 的 事 . +He compared his car to the new model . ||| 他 拿 他 的 車 和 新款 車作 比較 . +Have you ever seen such a nice film ? ||| 你 看过 这么 好看 的 电影 吗 ? +He went to the store . ||| 他 去 了 商店 . +If her temperature goes up , send for the doctor . ||| 如果 她 的 體溫 上升 , 派 人 去 請 醫生 來 . +What kind of work will you do ? ||| 你 將 做 什麼樣 的 工作 ? +The precise time of their arrival is not known . ||| 他們 到 逹 的 確 切 時 間 還 不 知道 . +I do not understand German at all . ||| 我 完全 不 懂 德语 . +Tom sits at his computer eight hours a day . ||| Tom 每天 在 電腦 前 工作 八 小 時 . +I want a guitar . ||| 我 想要 一把 吉他 . +Will you be at home this afternoon ? ||| 你 今天下午 会 在家 吗 ? +Tom turned on the car is fog lights . ||| 湯姆 打開 了 車 的 霧 燈 . +She is a wonderful woman . ||| 她 是 個 很棒 的 女人 . +When can we eat , I wonder . ||| 我 不 知道 我們 什麼 時候 可以 吃 . +He turned to his friends for help . ||| 他 尋求 他 的 朋友 的 幫助 . +Get dressed . ||| 你 穿 點 東西 . +Please pardon me for coming late . ||| 抱歉 那么 晚来 . +I am Hungarian . ||| 我 是 匈牙利人 . +I want you to not go to Boston with Tom . ||| 我 要 你 別 和 湯姆 去 波士 頓 . +We are preparing to do so . ||| 我们 准备 去 做 . +New York is on the Hudson River . ||| 紐約 位 在 哈得遜 河 . +The door clicked shut . ||| 门 咔哒 一声 关上 了 . +Could you come and see me tomorrow ? ||| 你 明天 可以 來看 我 嗎 ? +There is a small garden in front of my house . ||| 我家 前面 有个 小 庭院 . +I am glad you were right . ||| 很 高兴 你 是 对 的 . +Everybody thinks so . ||| 大家 都 是 这样 想 的 . +You have changed so much that I can hardly recognize you . ||| 你 变 了 那么 多 , 以至于 我 几乎 认不出 你 了 . +I am very ashamed of myself about what I have done . ||| 我 對 自己 的 作為 很 內疚 . +I wish I were an only child . ||| 我 要是 个 独子 就 好 了 . +I would like to know her name . ||| 我 想 知道 她 的 名字 . +I was bored with his old jokes . ||| 我 厌倦 了 他 的 老 笑话 . +I began running . ||| 我 開始 跑 . +You might have heard of it . ||| 你 可能 听说 过 . +I go to school by subway . ||| 我 搭 地铁 上学 . +People rely too much on phones these days . ||| 現代 人 太 仰賴 手機 . +Skating is one of my hobbies . ||| 溜冰 是 我 的 嗜好 之一 . +There is something strange about Tom today . ||| 今天 汤姆 有点 奇怪 . +Their contract is to run out at the end of this month . ||| 他们 的 合同 在 这个 月底 到期 . +You told Tom you could do that , did not you ? ||| 你 告诉 汤姆 你 可以 做到 , 是 吗 ? +My parents will not let me go out with boys . ||| 我 父母 不让 我 和 男生 约会 . +Pork does not agree with me . ||| 猪肉 不 适合 我 . +I cannot speak Mandarin well . ||| 我 的 中文 說 得 不好 . +I can not go with you today because I am very busy . ||| 今天 我 太 忙 了 , 没法 和 你 一起 去 . +He did not know that . ||| 他 不 知道 . +School begins on April the tenth . ||| 學校 在 四月 十日 開學 . +She borrowed a saw from the farmer . ||| 她 向 農夫 借 了 一把 鋸子 . +I can do without his help . ||| 沒有 他 的 幫助 我 也 能 做 . +My mother is in the hospital now . ||| 我 媽媽 現在 在 醫院 . +Spring is coming soon . ||| 春天 就要 来 了 . +My throat feels dry . ||| 我 喉咙 很 干 . +Respect for law is fundamental to our society . ||| 尊重 法律 是 我們 社會 的 基礎 . +I have to iron my shirt . ||| 我 必須 熨 我 的 襯衫 . +My plan is to buy a car . ||| 我 打算 買輛 車 . +He has no eye for women . ||| 他 對 女人 沒有 眼光 . +They are jealous of our success . ||| 她们 嫉妒 我们 的 成功 . +The economy is picking up . ||| 经济 在 复苏 之中 . +Mary has beautiful brown eyes . ||| 玛丽 的 褐色 眼睛 很美 . +All of the milk was spilled . ||| 所有 的 牛奶 都 灑 出去 了 . +He runs . ||| 他 跑 . +Having a slight headache , I went to bed early . ||| 因為 我 有 點 頭 疼 , 所以 我 早早 上床 睡覺 . +He gave correct answers to the questions . ||| 他 對 這個 問題 給 了 正確 的 答案 . +Speaking in French is fun . ||| 说 法语 很 有趣 . +They say she and her husband can not agree on anything . ||| 他們 說 她 和 她 的 丈夫 不 可能 對 任何 事 達成 協議 . +Tomorrow , he will land on the moon . ||| 明天 , 他 将 登上 月球 . +They are in danger . ||| 他們 有 危險 . +I want to become a singer . ||| 我 想 當 歌手 . +Her house is at the foot of a mountain . ||| 她家 在 一座 山 的 山脚下 . +He gave me food and money as well . ||| 他 给 了 我 食物 和 钱 . +I am a university student . ||| 我 是 个 大学生 . +Tom claims he does not remember . ||| 湯姆聲 稱 他 不 記得 了 . +Is ten thousand yen enough ? ||| 一 万日元 够 吗 ? +What do you usually do on Sundays ? ||| 你 週日 通常 做 什麼 ? +My sister has a nice piano . ||| 我 妹妹 有 架 漂亮 的 钢琴 . +What is the idea behind that ? ||| 那 背后 是 什么 意思 ? +The typhoon caused the river to flood . ||| 颱 風 造成 了 河水 氾 濫 . +Tom has never been willing to help us before . ||| 湯姆 以前 從 不 這樣 願 意 幚 我 們 . +The crow flew away . ||| 這 隻 烏鴉 飛 走 了 . +I think Tom is still alive . ||| 我 認為 湯姆 還 活著 . +Where are the shoes ? ||| 鞋子 在 哪儿 ? +You can not use this washing machine . ||| 您 不能 使用 這 台 洗衣 機 . +It was really special . ||| 它 真 特別 . +We arrived at a small town in Hokkaido . ||| 我们 到达 了 北海道 的 一个 小镇 . +I will not be fooled . ||| 我 不会 上当 的 . +You should know that is impossible . ||| 你 应该 知道 这 是 不 可能 的 . +It came to nothing . ||| 这 没有 结果 . +Are they all like this ? ||| 他们 都 像 这 一样 吗 ? +The family eats breakfast on the balcony . ||| 一家人 在 陽 臺 上 吃 早 飯 . +Luckily he had enough money to pay the bill . ||| 幸运 的 是 他 有 足够 的 钱 来 付账 . +This is a book about stars . ||| 这 是 本 关于 星星 的 书 . +Some of the bluest water in the world is found in Crater Lake . ||| 一些 世界 上 最 藍 的 水 在 火山湖 . +My uncle comes to see me from time to time . ||| 我 叔叔 偶爾 來看 我 . +I can not make an exception . ||| 我 不能 破例 . +My parents live in Australia . ||| 我 的 父母 住 在 澳大利亚 +Something is wrong with my camera . ||| 我 的 相機 壞 了 . +Please buy a tube of toothpaste . ||| 請買 條 牙膏 吧 . +There is nothing to forgive . ||| 没什么 可 原谅 的 . +Our library is on the third floor . ||| 我們 的 圖書館 在 三 樓 . +I did not even know Tom had left . ||| 我 甚至 不 知道 湯姆 離開 了 . +He traveled on business . ||| 他 旅行 洽商 . +Do you know who they are ? ||| 你 知道 他們 是 誰 嗎 ? +J.F. Kennedy was buried in Arlington Cemetery . ||| 约翰 甘迺迪 被 安葬 在 阿靈頓 公墓 . +I thought she was going to kill me . ||| 我 認為 她 要 殺 我 . +I can not remember his name . ||| 我 不 記得 他 的 名字 . +I wonder what she really means . ||| 我自 問 她 真正 的 意思 是 什麼 . +I should have chosen a shorter username . ||| 我 该 用 短 一点 的 用户名 的 . +My canary was killed by a cat . ||| 我 的 金絲雀被一 隻 貓 殺 死 了 . +Looks like today will be a long day . ||| 看来 今天 会 是 漫长 的 一天 啊 . +I am here to assist you . ||| 我 來 協助 你 . +The teacher has a great influence on his pupils . ||| 这个 教授 对 他 的 学生 有 很大 的 影响力 . +Tom is in the hospital waiting room . ||| 汤姆 在 医院 的 等候 室 . +Would you please wait for a few minutes ? ||| 请 您 等 几分钟 好 吗 ? +Why can not we have pizza ? ||| 为什么 我们 不能 要 比萨 ? +Let is be realistic . ||| 現實 點 吧 . +I am humble . ||| 我 是 谦虚 的 . +I could not make myself understood . ||| 我 無法 讓 別人 了解 我 的 意思 . +This theory is very controversial . ||| 这个 理论 很 有 争议 . +As you sow , so will you reap . ||| 种瓜得瓜 , 种豆得豆 . +How was the meeting yesterday ? ||| 昨天 的 会议 怎么样 ? +The children are having fun in the park . ||| 孩子 們 在 公 園 裏 玩耍 . +Children depend on their parents for food , clothing and shelter . ||| 孩子 们 的 衣食住行 靠 的 是 他们 的 父母 . +A fire broke out last night and three houses were burnt down . ||| 昨晚 發生 了 一場 火災 , 三棟 房屋 被 燒毀 了 . +We still have more time . ||| 我們 仍然 有 更 多 的 時間 . +Tom will not be coming . ||| 汤姆 不会 来 了 . +You seem like a very smart person . ||| 你 看起来 像 一个 聪明人 . +Are not you happy ? ||| 你 不快 樂 嗎 ? +Compared with her sister , she is not very punctual . ||| 與 她 的 妹妹 相比 , 她 不是 很 準 時 . +We have no reason to be ashamed . ||| 我们 没理由 害臊 . +We 'd better talk . ||| 我们 谈谈 比较 好 . +I paid the bill . ||| 我 买 了 单 . +What kind of meal did you eat ? ||| 您 吃 了 什麼樣 的 膳食 ? +We have one of your friends here with us . ||| 你 的 一个 朋友 在 我们 这里 . +Did Tom actually say that ? ||| 汤姆 真的 那么 说 了 吗 ? +I could not enter because the door was closed . ||| 我 因為 門 關著 進不去 . +I know him , but I do not know his name . ||| 我 認識 他 但是 我 不 知道 他 的 名字 . +Actually , it was pretty boring . ||| 实际上 , 我 非常 无聊 . +I found this in your desk drawer . ||| 我 在 你 的 桌子 抽屉 里 找到 了 这个 . +My nephew is allergic to eggs . ||| 我 侄子 對 雞蛋 過敏 . +Help yourself to whatever you like . ||| 你 想 吃 什麼 就 吃 什麼 . +My stomach is full . ||| 我 的 胃 是 脹 滿 的 . +You will have to wait and see . ||| 你 得 等一等 看 . +This book is for students whose native language is not Japanese . ||| 這 本書 是 給 母語 不是 日語 的 學生 的 . +He passed his property on to his son . ||| 他 把 他 的 财产 传给 了 他 儿子 . +I do not like this . ||| 我 不 喜欢 . +Can you give me some money ? ||| 你 能 給 我 一些 錢 嗎 ? +He had a large family to support . ||| 他 要 養活 一個 大家庭 . +Where is your dog ? ||| 你 的 狗 在 哪里 ? +Austria is one of the largest producers of electricity in Europe . ||| 澳大利亚 在 欧洲 是 最大 的 电能 生产国 之一 . +Tom is taller than I am . ||| 湯姆 比 我 高 . +He began to look for work . ||| 他 开始 找 工作 了 . +Tom did nothing . ||| 汤姆 什么 都 没 做 . +I will not allow you to do that . ||| 我 不会 让 你 做 那事 . +The knife is not sharp . ||| 這 刀不鋒利 . +Did you bring your family with you ? ||| 你 帶著 家人 一起 來 嗎 ? +The plane is ready . ||| 飞机 准备 好 了 . +The Sahara is a vast desert . ||| 撒哈拉沙漠 广袤 无垠 . +Was that what Tom said ? ||| 那 就是 汤姆 说 的 吗 ? +She finished her work an hour in advance . ||| 她 提前 一 小时 完成 了 工作 . +Tom likes football . ||| 汤姆 喜欢 足球 . +I said to myself , " That is a good idea . " ||| 我 对 自己 说 , “ 那 是 个 好 主意 . ” +No one understands me . ||| 没有 人 理解 我 . +What just happened ? ||| 刚刚 发生 了 什么 ? +I will give you a little tip . ||| 我会 给 你些 提示 . +The meeting will be held tomorrow . ||| 會議 將 於 明天 舉行 . +I can not believe that you were the smartest kid in your class . ||| 我 不敢相信 你 是 你们 班 里面 最 聪明 的 孩子 . +I like the cold . ||| 我 喜歡 寒冷 . +I hit him in the belly . ||| 我 打 了 他 的 肚子 . +Will I see you tomorrow ? ||| 我 明天 能 见到 你 吗 ? +Pigs share certain characteristics with human beings . ||| 豬 與 人類 的 一些 特性 相同 . +That was not my intention . ||| 这 不是 我 的 初衷 . +He has not come yet . ||| 他 還 沒來 . +My father has been dead for ten years . ||| 我 爸爸 去世 有 10 年 了 . +English is spoken in America . ||| 在 美国 说 英语 . +The job looked quite simple , but it took me a week . ||| 這份 工作 看 起來 很 簡單 , 但 它 花 了 我 一個 星期 . +She is leaving the country in six months . ||| 她 半年 后 就要 出国 了 . +There were no mistakes . ||| 没有 错误 . +We knew no one . ||| 我們 誰 也 不 認識 . +Give me a cigarette . ||| 给 我 支 香烟 吧 . +The audience was deeply affected . ||| 观众 深受感动 . +It is lunch time . ||| 午餐 時間 到 了 . +I no longer love Tom . ||| 我 不再 愛湯姆 了 . +Tom does not like to wear a watch . ||| 汤姆 不 喜欢 戴 手表 . +He asked me to speak more slowly . ||| 他 要求 我 講 慢 一點 . +She went to the movies by herself . ||| 她 獨自 去 看 了 電影 . +What are you staring at ? ||| 你 在看 什麼 ? +With just a little more effort , he would have succeeded . ||| 如果 他 再 努力 一点 , 就 可能 已经 成功 了 . +These tools are used for building a house . ||| 这些 工具 是 用来 造 房子 的 . +He is apt to be late . ||| 他 很 容易 遲 到 . +She kept on working . ||| 她 继续 工作 . +The girl brought me a red and a white rose . ||| 女孩 给 我 了 一枝 红玫瑰 和 一枝 白玫瑰 . +Gold is much heavier than water . ||| 金子 比水 重得 多 . +I asked for my father is help . ||| 我 向 我 父親 求助 . +I hear my uncle died of cancer . ||| 我 聽到 我 叔叔 死 於 癌症 的 消息 . +Tom slept . ||| 汤姆 睡 了 . +This place has a mysterious atmosphere to it . ||| 这个 地方 的 气氛 很 神秘 . +In the Edo period , moon @-@ viewing parties were very popular . ||| 在 江戶 時代 賞 月 的 宴會 非常 受歡 迎 . +Green suits you . ||| 綠色 適合 你 . +He always quarrels with his wife . ||| 他 總是 與 他 的 妻子 吵架 . +I would have liked to come with you , but I did not have time . ||| 我 想 和 你 一起 去 , 但是 我 没有 时间 . +She tore the letter into pieces . ||| 她 把 信成 碎片 . +The car is waiting at the gate . ||| 車 在 門口 等著 . +Let is walk . ||| 我们 走走 吧 . +Do not run risks . ||| 不要 冒险 . +I will gladly pay you anytime . ||| 我 隨時 樂意 付錢 給 你 . +Can you tell me a little about yourself ? ||| 你 能 稍微 告诉 我 关于 自己 的 事情 吗 ? +Do not let that happen again . ||| 不要 再 让 这种 事 发生 了 ! +Tom is not accustomed to walking barefooted . ||| 汤姆 不 习惯 光 着 脚 漫步 . +It is good to see you . ||| 见到 你 真好 . +The shop is open from Monday to Saturday . ||| 这家 店 从 星期一 到 星期六 都 营业 . +Let is drink coffee while we talk . ||| 让 我们 边 喝咖啡 边 谈 . +This city is cold and lonely without you . ||| 没有 你 这个 城市 孤单 又 冷清 . +They were very excited . ||| 他们 非常 兴奋 . +I thought that Tom had a soccer game tonight . ||| 我 以为 汤姆 今晚 有 足球比赛 . +I am OK . ||| 我 沒事 . +Do you know this song ? ||| 你 知道 這 首歌 嗎 ? +I do not have the address with me . ||| 我 身上 沒 帶 這個 地址 . +We watch TV every day . ||| 我们 每天 看电视 . +I miss you so much . ||| 我 如此 想念 你 . +He was playing the piano . ||| 他 那時 正在 彈 鋼琴 . +She spread the butter on the bread . ||| 她 把 奶油 塗 在 麵 包 上 . +Can you do bookkeeping ? ||| 你 會 記 帳 嗎 ? +I did not want to get up early . ||| 我 不想 很早 起床 . +He is known as a great poet . ||| 他 以 一個 偉大 的 詩人 聞名 . +She stabbed him in the back . ||| 她 在 他 的 背上 戳 了 一下 . +I do not know when she got married . ||| 我 不 知道 她 是 什么 时候 结婚 的 . +There are some eggs in the box . ||| 盒子 裡 有 一些 蛋 . +Tom is not nearly as smart as he thinks he is . ||| 汤姆 并 不 像 他 自 认为 的 那么 聪明 . +My father takes a bath before supper . ||| 我 的 父親 在 晚 飯前 洗澡 . +Frankly speaking , I do not agree with you . ||| 实话 说 , 我 不 赞成 你 . +Where did you go for vacation ? ||| 你 去 哪裡 度假 了 ? +We took strong measures to prevent it . ||| 我们 采取 了 强有力 的 预防措施 . +Do not you want to know the reason ? ||| 你 不想 知道 原因 吗 ? +You ask me to do the impossible . ||| 你 让 我 做 不 可能 做到 的 事情 . +What time is it ? ||| 几点 了 ? +Tom should have plenty of time . ||| 汤姆 应该 有 很多 时间 . +They adopted the orphan . ||| 他们 收养 了 那个 孤儿 . +Tom and I see each other every day at school . ||| 汤姆 和 我 每天 都 在 学校 见面 . +You nearly poked me in the eye with your pencil . ||| 你 的 鉛筆 差點 戳 到 我 的 眼睛 了 . +My job is to wash dishes . ||| 我 的 工作 是 洗碗 . +I do not remember any of it . ||| 我 对 这些 都 没有 印象 . +Generally , men run faster than women . ||| 一般 來 說 , 男人 比 女人 跑得快 . +Did I leave my umbrella here ? ||| 我 把 雨伞 落 在 这里 了 吗 ? +Because our kids got married , we are now in @-@ laws . ||| 我們 成親 家 了 , 因為 我們 的 孩子 們 結婚 了 . +I do not like your smile . ||| 我 不 喜欢 你 的 微笑 . +Did you get up early ? ||| 你 起床 早 嗎 ? +How come you know so much about Japanese history ? ||| 你 為 什麼 知道 這麼 多 的 日本 歷史 ? +He was hurt in a car accident . ||| 他 在 一次 車禍 中 受傷 了 . +The exhibition is now open . ||| 展览 现在 已经 开放 . +I have been reading the book all afternoon . ||| 我 整个 下午 都 在读 这 本书 . +They are typical youngsters . ||| 他们 是 典型 的 年轻人 . +Some people questioned his honesty . ||| 有些 人 質疑 他 的 誠實 . +He likes to read newspapers . ||| 他 喜欢 看 报纸 . +Tom never saw her again . ||| 湯姆 沒 再 見 過 她 . +According to the radio , it will snow tomorrow . ||| 据 广播 里 讲 , 明天 会 下雪 . +Tom is a strange person . ||| 湯姆 是 個 怪人 . +His opinions are not worth listening to . ||| 他 的 意見 不 值得 聽 . +I got him to repair my car . ||| 我 讓 他 修理 我 的 車子 . +The Internet is an invaluable source of information . ||| 互联网 是 一种 无法估量 的 信息 资源 . +Due to the worsening weather , the departure was delayed . ||| 由于 天气 变差 , 出发 延迟 了 . +Can I do anything for you ? ||| 我 能 為 你 做 點 甚麼 嗎 ? +We often associate black with death . ||| 我们 常 把 黑色 跟 死亡 联系 起来 . +Take any train on track 5 . ||| 到 5 号 轨道 乘 随便 什么 火车 . +My hometown is very pretty . ||| 我 的 家乡 非常 漂亮 . +It seems obvious that he is sick . ||| 似乎 很 明顯 他 病 了 . +He has no children . ||| 他 沒有 孩子 . +I need to go home . ||| 我 该 回家 了 . +I have got a lot more to learn . ||| 我 要 学 很多 . +I may be unsociable , but it does not mean I do not talk to people . ||| 我 或许 不 善于 社交 , 但 这 并 不 意味 我 不 和 别人 交谈 . +This is a strange sentence . ||| 這 是 一個 奇怪 的 句子 . +Tom wants to learn boxing , but his mother thinks it is too dangerous . ||| 汤姆 想 学 拳击 , 但 他 妈妈 觉得 这 太 危险 了 . +Do not let the dog come in . ||| 别 让 狗 进来 . +I was talking about something else . ||| 我 在 說別 的 事 . +The magician had the children is attention . ||| 魔术师 吸引 了 孩子 们 的 注意 . +He regrets what he did . ||| 他 对 他 所 做 的 一切 感到 后悔 . +I tried not to wake you up . ||| 我 设法 不让 你 醒 . +No matter how often I tell her , she keeps making the same mistake . ||| 不管 我 跟 她 说 了 多少 次 , 她 还是 继续 犯 同样 的 错误 . +You should try to be more polite . ||| 你 應該 試著 更 有 禮貌 . +Why should I apologize to you ? ||| 为什么 我 要 向 你 道歉 ? +Open your book to page nine . ||| 翻開 你 的 書 到 第九 頁 . +She feels at ease in their home . ||| 她 在 他们 家里 感觉 很 放松 . +He can read English easily . ||| 他 能 轻松 地 读 英语 . +There is a letter for you . ||| 你 有 一封信 . +We were friends . ||| 我们 是 朋友 . +Thanks for calling me . ||| 谢谢 你 给 我 打电话 . +She used to visit me regularly . ||| 她 以前 定期 來看 我 . +I am four months pregnant . ||| 我 怀孕 四个 月 了 . +He made good use of the money . ||| 他 好好 的 使用 了 ​ ​ 這筆 錢 . +Who is your favorite character in this book ? ||| 你 最 喜歡 這 本書 中 的 哪個 角色 ? +I think you are dumb . ||| 我 认为 你 傻 . +He is not always at home on Sundays . ||| 他 星期日 並 不 總是 在家 . +This is kind of interesting . ||| 這 真是 有趣 . +There is a car coming . ||| 有 車 來 了 . +I received your letter yesterday . ||| 我 昨天 收到 了 你 的 信 . +My dictionary is very useful . ||| 我 的 字典 非常 有用 . +Thanks for your quick answer . ||| 谢谢您 的 迅速 回复 . +Tom has no brothers or sisters . ||| Tom 沒有 兄弟 也 沒有 姊妹 . +This is a very interesting book . ||| 這 是 一本 非常 有趣 的 書 . +I can not believe your parents let you come here by yourself . ||| 我 不敢相信 你 父母 让 你 自己 过来 . +Are you guys free this afternoon ? ||| 你们 今天下午 有空 吗 ? +He did not appear until about noon . ||| 直到 快要 中午 前 他 都 沒 出現 . +This clock loses three minutes a day . ||| 这个 钟 每天 慢 三分钟 . +She came to Tokyo at the age of 18 . ||| 她 18 岁 的 时候 来到 东京 . +According to the newspaper , he committed suicide . ||| 據 報紙 上 說 , 他 自殺 了 . +May I be the first to offer my congratulations . ||| 或许 我 是 第一个 给 你 祝贺 的 人 . +Help us . ||| 帮帮 我们 吧 ! +Would you please explain the rules to me ? ||| 請 你 為 我 解釋 規則 好 嗎 ? +Father always has the tailor make his suits . ||| 父親 總是 讓 這位 裁縫師 為 他 做 西裝 . +My sister became a college student . ||| 我 妹妹 成為 了 一個 大學 生 . +Tom did not have a fever this morning . ||| 湯姆 今天 早上 沒有 發燒 . +I had no feeling in my fingers . ||| 我 的 手指 没有 感觉 . +That is crazy . ||| 那 是 瘋狂 的 . +I wonder if you have something to write with . ||| 我 懷疑 你 是否 有 東西 可寫 . +Tom is intoxicated . ||| 汤姆 醉 了 . +They were worried . ||| 他们 担心 . +My wallet and passport are missing . ||| 我 的 錢包 和 護照 不見 了 . +I do not really read newspapers . ||| 我 不 太 看 报纸 . +Do not be so careless ! ||| 别 这么 粗心 ! +It is healthy to breathe deeply . ||| 深呼吸 有益健康 . +Being a teacher is very hard work . ||| 做 教師 很 辛苦 . +He knows a lot of people . ||| 他 认识 很多 人 . +I will let Tom tell you . ||| 我会 让 汤姆 告诉 你 . +Where was this picture taken ? ||| 这 张 照片 在 哪儿 照 的 ? +Your tripod is in my office . ||| 你 的 三腳 架 在 我 的 辦 公室 裏 . +He sometimes watches TV . ||| 他 有 時 看 電視 . +Breakfast is the most important meal of the day . ||| 早饭 是 一天 中 最 重要 的 一顿饭 . +Will you stay at home tonight ? ||| 你 今晚 會 待 在家 裡 嗎 ? +The library is on the 4th floor . ||| 圖書館 在 四樓 . +Only one third of the members turned up at the meeting . ||| 仅 三分之一 的 成员 出席 了 会议 . +The boy went to bed with his socks on . ||| 男孩 穿着 袜子 就 上床睡觉 了 . +When does the movie start ? ||| 電影 什麼 時候 開始 ? +Big fish eat little fish . ||| 大鱼吃小鱼 . +Please show me another one . ||| 请 给 我 看看 其他 的 . +He made fun of me in public . ||| 他 在 公共 場合 取笑 了 我 . +I will see you a week from today . ||| 我 下星期 的 今天 會 和 你 見 面 . +Where is the book ? ||| 那本书 在 哪儿 ? +Kyoto is visited by many tourists . ||| 很多 游客 赴 京都 旅游 . +I know your brother very well . ||| 我 和 你 哥哥 很熟 . +If you do not have this program , you can download it now . ||| 假如 你 没有 这个 程序 , 你 现在 就 可以 去 下载 . +I need more money . ||| 我 需要 更多 的 錢 . +She has been dead for ten years . ||| 她 已經 死 了 十年 了 . +He studies English , but he is also studying German . ||| 他 学 英语 , 但 他 也 学 德语 . +We will not go out unless it stops raining . ||| 除非 雨 停 了 , 我们 才 会 出去 . +I think you need to spend a little more time on your homework . ||| 我 觉得 你 应该 多 花点 时间 在 作业 上 . +What happened to you yesterday ? ||| 你 昨天 發生 了 什麼 事 ? +Her book is very interesting . ||| 她 的 書 非常 有趣 . +My friends all call me Tom . ||| 我 的 朋友 都 叫 我 湯姆 . +Tom told them not to do that . ||| 湯姆 告訴 他們 不要 去 做 那事 . +Who do you think they were ? ||| 你 认为 他们 是 谁 ? +What is your telephone number ? ||| 你 电话号码 是 多少 ? +Some bugs were fixed . ||| 一些 程式 錯誤 被 改正 了 . +He did everything he could for his child . ||| 他 為 自己 的 孩子 能 做 的 都 做 了 . +When I heard the news , I cried . ||| 當 我 聽到 這個 消息 , 我 哭 了 . +I am a night owl . ||| 我 是 個夜 貓子 . +He is out now . ||| 他 现在 出去 了 . +I am on my way to meet Tom at the station right now . ||| 我 现在 在 去 车站 见 汤姆 的 路上 . +I learned to live without her . ||| 我 学会 了 不靠 她 生活 . +He lives in a world of fantasy . ||| 他 住 在 一個 奇幻 世界 裡 . +He is a tennis player . ||| 他 是 个 网球 球手 . +I am sorry for the delay in responding . ||| 我 很 抱歉 這麼 遲 才 回 復 . +Nothing remained in the refrigerator . ||| 冰箱 里 什么 都 没 剩下 . +Is Tom going to dump Mary ? ||| 汤姆 要 甩 了 玛丽 吗 ? +Please move the desk to the left . ||| 请 把 桌子 向 左移 . +I kept the $ 20 I found in the street . ||| 我 留 着 在 街上 发现 的 20 美元 . +Two for the lunch buffet , please . ||| 兩 人份 自助 午餐 , 謝謝 . +I must catch the first train . ||| 我 必须 赶上 头班 火车 . +Tom does not like women who wear too much makeup . ||| 汤姆 不 喜欢 妆化 太 浓 的 女人 . +She hates carrots . ||| 她 討厭 胡蘿 蔔 . +The summer is over . ||| 夏天 过去 了 . +My brother is a high school student . ||| 我 哥哥 是 個 高中生 . +She goes to school on foot . ||| 她 走路 去上 學 . +You are an idiot . ||| 你 是 一個 笨蛋 . +Let is meet again soon . ||| 讓 我們 很快 地 再次 見面 . +I do not know either of them . ||| 他们 中 的 任何 一位 我 都 不 认识 . +Almost everyone in our village is related to one another . ||| 我们 村里 所有 的 村民 几乎 彼此 都 是 亲戚 . +Please forgive me for being late . ||| 請 原諒 我 遲到 . +The plane crash was only last week . ||| 上個 星期 這 架 飛機 墜毀 了 . +There is a post office close by . ||| 附近 有 一間 郵局 . +I was shy . ||| 我 害羞 . +Who found my bag ? ||| 誰 找到 了 我 的 包 ? +He is not interested in art at all . ||| 他 對 藝術 一點 也 不感 興趣 . +People live only about 70 years . ||| 一个 人 只能 活 七十岁 左右 . +What do you think of Tom is cooking ? ||| 你 覺得 Tom 的 廚藝 如何 ? +She is old enough to know better . ||| 她 年 紀夠 大 該 懂事 了 . +Two beers , please . ||| 请来 两杯 啤酒 . +The wind calmed down . ||| 风停了 . +Try and do better next time . ||| 嘗試 在 下 一次 做 得 更好 . +We were caught in a storm . ||| 我们 被 暴风雨 袭击 了 . +Tom is waiting for you in the conference room . ||| 汤姆 在 会议室 等 你 . +I 'd like three of these . ||| 这 我 要 三个 . +It is almost six o 'clock . ||| 差不多 六点 了 . +Do you take MasterCard ? ||| 可以 用 万事达 信用卡 吗 ? +There are many shantytowns in Mexico . ||| 在 墨西哥 有 很多 貧民窟 . +I want to have my own room . ||| 我 想要 有 我 自己 的 房间 . +We are in the era of atomic energy . ||| 我們 身 在 原子能 時代 . +While you are reading to me , I can do my sewing . ||| 你 读 给 我 听 的 时候 , 我 就 可以 做 缝纫 了 . +Everyone comes to Tom for advice . ||| 每個 人 都 請 教 湯姆 . +Please tell me Tom is OK . ||| 请 告诉 我 汤姆 很 好 . +I was taking a bath when the telephone rang . ||| 在 我 洗澡 的 时候 , 电话响 了 . +I want something sweet to eat . ||| 我 想要 吃甜 的 東西 . +I owe you ten dollars . ||| 我 欠 你 10 美元 . +I have just finished eating breakfast . ||| 我 剛 吃 完 了 早 飯 . +I like red wine better than white wine . ||| 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +It is really different from what I expected . ||| 這 真的 跟 我 所 預期 的 不同 . +She and I are in the same class . ||| 她 和 我 同班 . +My brother died of cancer last year . ||| 我 弟弟 去年 死 於 癌症 . +Let is take advantage of the long weekend . ||| 来 好好 利用 大 周末 吧 . +Tom saw everything that happened . ||| 汤姆 见证 了 所有 发生 的 事情 . +I have had enough , so my stomach is full . ||| 我 吃 飽 了 , 所以 我 的 胃 都 滿 了 . +I refused , of course . ||| 我 當然 拒 絶 了 . +The most important thing in the Olympic Games is not winning but taking part . ||| 奥运会 最 重要 的 不是 获胜 , 而是 参与 . +I think Tom is going to be pretty mad when he finds out that the painting he bought is a fake . ||| 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +Tom is name was on the list . ||| 湯姆 的 名字 在 名單 上 . +Is it true that Tom wants to paint his house green ? ||| 汤姆 想 把 房子 漆成 绿色 , 是 真的 吗 ? +Remember to admire her new dress . ||| 記得 稱 讚 她 的 新洋 裝 . +She was advised by him to go to the police . ||| 他 勸 她 去 報警 . +Children of six and above should attend school . ||| 六岁 及 以上 的 小孩 应该 上学 . +You are the prisoner . ||| 你 是 囚犯 . +May I have a road map , please ? ||| 請 給 我 一張 路 線 圖 . +I will stay here for a bit . ||| 我 在 这 待 一会 . +We met her by accident . ||| 我们 偶然 碰到 了 她 . +The police will put you in prison . ||| 警方 將 把 你 關 在 監 獄裡 . +He is concerned about his father is illness . ||| 他 担心 他 父亲 的 身体 . +I believe this was unnecessary . ||| 我 相信 這 是 不必要 的 . +It is imperative for you to act at once . ||| 您 必须 马上 行动 . +She lost her father when she was three years old . ||| 她 父亲 在 她 三岁时 死 了 . +Can you wait about an hour ? ||| 能 麻烦 您 等 一个 小时 左右 吗 ? +You should tell him the truth . ||| 你 该 告诉 他 真相 . +You can not allow Tom to do that anymore . ||| 你 不能 再 允許 湯姆 那麼 做 了 . +Half a loaf is better than none . ||| 半 個 麵 包 總 比 沒 有 好 . +Where can I catch a bus ? ||| 我 可以 在 哪裡 搭 公車 ? +You are working hard . ||| 你 工作 努力 . +When are you leaving ? ||| 你 什麼 時候 離開 ? +He wrote a letter . ||| 他 写 了 一封信 . +Their goods are of the highest quality . ||| 他们 的 货品 有着 最高 的 品质 . +A burglar broke into his house . ||| 一個 竊 賊 闖進 了 他 的 房子 . +Please give me a cup of water . ||| 請 給 我 一杯 水 . +Mary dyed her hair blue . ||| 瑪麗 把 她 的 頭 髮 染成 藍色 . +All of us like you very much . ||| 我们 都 非常 喜欢 你 . +This water tastes good . ||| 這 水 很 好喝 . +I am happy if you are happy . ||| 如果 你 開心 , 我 也 就 開心 . +What fruit do you like the best ? ||| 你們 最 喜歡 什麼 水果 ? +Tom broke some bones in his arm and hand . ||| 湯姆 的 手臂 和 手斷 了 些 骨頭 . +You should have refused his offer . ||| 你 應該 拒絕 他 的 提議 的 . +Would you like me to help you ? ||| 你 要 我 幫 你 嗎 ? +She loved me in the same way that I loved her . ||| 她 愛 我 就 像 我 愛 她 一樣 . +This is not salt . ||| 这 不是 盐 . +Please close the door . ||| 請 關門 . +Please bring us two cups of tea and one cup of coffee . ||| 请来 两杯 茶 和 一杯 咖啡 . +I looked at my notes . ||| 我 看 了 自己 的 笔记 . +Who is going to believe that ? ||| 谁 会 信 呢 ? +Without you , I am nothing . ||| 沒有 你 , 我 甚麼 也 不是 . +Were you at home yesterday ? ||| 昨天 你 不 在家 嗎 ? +Can I ask you a question ? ||| 我 可以 问 你个 问题 吗 ? +Tom can not tie a tie . ||| 汤姆 不会 系 领带 . +I do not like the way you talk to me . ||| 我 不 喜歡 你 和 我 說 話 的 口氣 . +My hobby is taking pictures of wild flowers . ||| 我 的 业余爱好 是 拍 野花 的 照片 . +Do you still have my phone number ? ||| 你 還 有 我 的 電話 號碼 嗎 ? +No one answered my question . ||| 沒人 回答 我 的 問題 . +Tom usually does not make mistakes . ||| 汤姆 通常 不 犯错 . +Mother bakes cookies on Sundays . ||| 妈妈 周日 烤 曲奇 . +He asked for some money . ||| 他 要 了 一些 錢 . +Thank you in advance for your cooperation . ||| 提前 感謝 你們 的 合作 . +Tom forgot to sign his name . ||| 汤姆 忘记 签名 了 . +Tom and Mary have three sons and a daughter . ||| Tom 和 Mary 有 三個 兒子 和 一個 女兒 . +He arrived in time . ||| 他 及時 趕到 . +He ran into the room . ||| 他 跑 进 房间内 . +I play the tenor saxophone . ||| 我 吹 次 中音 薩 克斯 風 . +My grandson is still a baby . ||| 我 的 孫子 還 是 個 嬰兒 . +The matter has not been settled yet . ||| 问题 还 没有 解决 . +Tom told Mary that she should stop pretending to be intoxicated . ||| 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +When did your father come home ? ||| 你 爸爸 什麼 時候 回家 ? +Tom made a bet with Mary . ||| 湯姆 跟 瑪麗 打 了 個 賭 . +This milk will not keep till tomorrow . ||| 這 牛奶 放到 明天 會 壞 的 . +I can comfort her . ||| 我 可以 安慰 她 . +We had an early lunch at school . ||| 我們 在 學校 有 一個 早 午餐 . +I will return at 6 : 30 . ||| 我 六點半 回來 . +I make a point of being punctual . ||| 我 重視準 時 . +He introduced his daughter to me . ||| 他 把 他 的 女兒 介紹 給 我 認識 . +She went upstairs . ||| 她 上樓 了 . +He sat next to the stream . ||| 他 坐在 溪流 旁邊 . +I do not feel like eating sushi . ||| 我 不想 吃 壽司 . +He is also very famous in Japan . ||| 他 在 日本 也 很 有名 . +We discussed the plan yesterday . ||| 昨天 我們 討論 了 這個 計劃 . +I have a cough . ||| 我 咳嗽 . +He said nothing , which made her angry . ||| 他 什么 也 没 说 , 这 让 她 很 生气 . +The rocket was launched into space . ||| 火箭 發射 進入 太空 . +May I eat this orange ? ||| 我 可以 吃 這個 柳橙 嗎 ? +He has been in Hokkaido before . ||| 他 以前 曾 在 北海道 . +I have got something you have got to see . ||| 我 有个 东西 您 该 看看 . +Did he propose to you ? ||| 他 向 你 求婚 了 嗎 ? +Should I go to college ? ||| 我 該 上 大學 嗎 ? +Tom works in a bank now . ||| 湯姆 現在 在 銀行 上班 . +Who do you live with ? ||| 你 和 誰 住在一起 ? +Do not underestimate me . ||| 别 低估 我 . +That is not a cat . That is a dog . ||| 那 不是 猫 . 那 是 狗 . +Did you see the rainbow this morning ? ||| 你 见到 今天 早上 的 彩虹 了 吗 ? +It is because of you that we were late . ||| 因为 你 我们 才 迟 了 . +The apple tree has a beautiful blossom . ||| 苹果树 上 挂 着 美丽 的 花朵 . +I had to take shelter under a tree . ||| 我 不得不 在 树下 躲雨 . +I am absolutely elated . ||| 我 真是 欣喜若狂 . +I ran as fast as I could , but I missed the train . ||| 我 用盡 全力 跑 , 但 我 還 是 沒趕 上火 車 . +This book is hard for me to read . ||| 这 本书 对 我 来说 很 难读 . +Can you solve this puzzle ? ||| 你 能 解開 這個 謎 嗎 ? +Tom hates spiders . ||| 汤姆 恨 蜘蛛 . +Tell me how to use the washing machine . ||| 告訴 我 洗衣 機 怎麼 用 . +I said I would make her happy . ||| 我 说 我会 让 她 幸福 的 . +Tom is fluent in French . ||| 湯姆 的 法語 說 的 很 流暢 . +The train is 10 minutes late today . ||| 火車 今天 晚 了 十分 鐘 . +We should stop seeing each other . ||| 我们 不该 再 对视 了 . +The length of this ship is 30 meters . ||| 这 艘 船 的 长度 是 30 米 . +Tom is working the night shift . ||| 湯姆 上 夜班 . +Do you want to come along ? ||| 你 想 不想 一起 去 ? +I recognized your voice right away . ||| 我 立刻 認出 了 你 的 聲音 . +I just need you to come with me . ||| 我 只要 你 跟我来 . +He extended his right arm . ||| 他 伸长 了 他 的 右手 . +Sensing danger , he ran away . ||| 他 感覺 到 危險 就 逃跑 了 . +I grew up in the country . ||| 我 在 鄉下 長大 . +He turned down my offer . ||| 他 拒絕 了 我 的 提議 . +There is nobody here . ||| 這裡 沒 人 . +They have jobs . ||| 他們 有 工作 . +I have a headache . ||| 我 头痛 . +This shirt does not go with that tie at all . ||| 這件 襯衫 跟 那條 領帶 不 搭 . +If you see a mistake , then please correct it . ||| 如果 你 发现错误 , 那 就 请 你 纠正 它 . +We swam in the lake . ||| 我们 在 湖里 游 了 泳 . +We postponed the meeting . ||| 我们 推迟 了 会议 . +Tom is not as old as you . ||| 湯姆 的 年紀 不 比 你 大 . +He may have missed the train . ||| 他 可能 错过 了 火车 . +This is the worst book I have ever read . ||| 这 是 我 读 过 的 书 里面 写 的 最差 的 一本 了 . +I have to go meet with Tom . ||| 我 必須 去 見 湯姆 . +Do you drink green tea ? ||| 您 喝 绿茶 吗 ? +Tom drove the car . ||| 汤姆 开 的 车 . +They talked over the plan for hours . ||| 他们 谈 计划 谈 了 几个 小时 . +You need a car if you live in the suburbs . ||| 要住 在 郊区 的话 , 汽车 是 必需 的 . +What would you all like to eat ? ||| 你們 想 吃 什麼 ? +It is sometimes difficult to make yourself understood in public . ||| 有時 很 難 在 公眾 場合表 達 你 自己 的 意思 . +Mary carries pepper spray in her purse . ||| 玛丽 的 包里 有 胡椒 喷剂 . +The rich sometimes despise the poor . ||| 富人 有时 会 看不起 穷人 . +Will you mail this letter for me ? ||| 你 可以 幫 我 寄 這 封信 嗎 ? +This makes me angry . ||| 這 讓 我 憤怒 . +May I open the windows ? ||| 可以 开窗 吗 ? +I know that you are right . ||| 我 知道 你 是 對 的 . +It is our duty to obey the law . ||| 遵守 法律 是 我們 的 義務 . +I am acquainted with him . ||| 我 和 他 认识 . +I do not know what is worse . ||| 我 不 知道 什么 更 糟糕 . +He decided not to go to the party . ||| 他 決定 不要 去 派 對了 . +A stay of execution was ordered at the eleventh hour . ||| 缓期 执行 在 最后 关头 决定 了 下来 . +I 'd like my coffee after the meal . ||| 我 想 吃 完飯 再 喝咖啡 . +I am afraid she will not accept my explanation . ||| 我 怕 她 不 會 接受 我 的 解釋 . +I got fired from the company , but since I have a little money saved up , for the time being , I will not have trouble with living expenses . ||| 虽然 我 被 公司 解雇 了 , 但是 我 还 有点 存款 , 所以 目前 不用 担心 生计 问题 . +She is working on the problem . ||| 她 在 处理 问题 . +What are my responsibilities ? ||| 我 的 责任 是 什么 ? +Tom is going to a concert this evening . ||| 汤姆 今晚 会 去 演唱会 . +Tom has a lot of experience in computers . ||| 汤姆 对 电脑 有 很多 经验 . +What did you do with my glasses ? ||| 你 用 我 的 眼鏡 做 了 什麼 ? +He admitted his guilt . ||| 他 承認 他 有罪 . +Tom is quite sarcastic . ||| 汤姆 真 会 挖苦 人 . +It is very hot today , is not it ? ||| 今天 非常 熱 , 不是 嗎 ? +Have you ever seen Tom mad ? ||| 你 有 看见 过 汤姆生 气 的 时候 吗 ? +That will not ever happen . ||| 那 从 不会 发生 . +He told me he would go to Venice . ||| 他 告诉 过 我 他 会 去 威尼斯 . +All subscriptions must be paid before the end of this year . ||| 所有 訂購 必須 在 今年年底 前 支付款 項 . +You do not like gambling , do you ? ||| 你 不 喜歡 賭博 , 是 嗎 ? +I ate breakfast in my pajamas . ||| 我 穿著 我 的 睡衣 吃 早餐 . +I got my notebook stolen . ||| 有人 把 我 的 筆記本 電腦 偷掉 了 . +Excuse me , where are the eggs ? ||| 请问 鸡蛋 在 哪里 ? +He is a waiter in a seaside restaurant . ||| 他 是 一家 海滨 餐厅 的 服务员 . +I have just eaten lunch . ||| 我 剛 吃 過午 飯 . +Tom bent down and picked up a handful of sand . ||| 汤姆 弯 下腰 , 捧起 了 一把 沙子 . +Will the fine weather keep up till tomorrow ? ||| 好 天气 能 持续 到 明天 吗 ? +I can not believe you are giving up . ||| 我 不能 相信 你 在 放弃 . +My grades are above average . ||| 我 的 成績 高 於 平均水平 . +Tom is not easily satisfied . ||| Tom 不 容易 被 滿足 . +He has gone mad . ||| 他 疯 了 . +Hey , what are you guys looking at ? ||| 嘿 , 你们 这些 家伙 看 什么 呢 ? +Tom told Mary that she was right . ||| 汤姆 告诉 玛丽 她 是 对 的 . +I admit that I was careless . ||| 我 承认 我 大意 了 . +I love you . ||| 我 爱 您 . +Tom does not seem to think so . ||| 汤姆 似乎 不 这么 认为 . +As for me , I am satisfied . ||| 就 我 而言 , 我 很 满意 . +What is the tallest mountain in Europe ? ||| 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I am going on vacation next week . ||| 我 下週 要 去 度假 . +The garden was filled with flowers . ||| 花園 裡 充滿 了 花朵 . +My younger brother really likes to take photos of mountains . ||| 我 弟弟 很 喜欢 拍山 的 照片 . +What are you after ? ||| 你 想要 什麼 ? +He is studying law at Harvard . ||| 他 在 哈佛 大學學 習 法律 . +I am almost finished . ||| 我 差不多 完成 了 . +You are our only hope . ||| 你 是 我们 唯一 的 希望 . +I am writing a draft of the speech . ||| 我 在 寫 演講 的 草稿 . +I followed the deer is tracks . ||| 我 跟着 鹿 的 踪迹 . +The number of cars is on the increase . ||| 汽车 的 数量 在 增长 . +She used to work for our company . ||| 她 以前 在 我們 公司 工作 . +My cat looks sad . ||| 我 的 猫 看上去 很 悲伤 . +His house is across the street . ||| 他 的 房子 在 街 對 面 . +All our teachers were young and loved teaching . ||| 我們 所有 的 老師 都 很 年輕 並且 喜愛 教學 . +Maybe I should just tell Tom the truth . ||| 可能 我 就 該 告訴 湯姆 真相 . +This really is a masterpiece . ||| 这 真是 个 杰作 . +Democracy is the worst form of government , except all the others that have been tried . ||| 除了 那些 我们 尝试 过 的 政府 形态 , 民主 是 最差 的 那种 了 . +I crossed the river by boat . ||| 我 乘船 过 了 河 . +I do not know why they are fighting . ||| 我 不 知道 他們 為 什麼 在 打架 . +Please let me know as soon as it is decided . ||| 决定 好 的话 请 第一 时间 告诉 我 . +I was quite thirsty and wanted to drink something cool . ||| 我 很渴 , 想 喝 点 冷饮 . +I wish to climb Mt . Fuji again . ||| 我 希望 再 爬 一次 上 富士山 . +In the winter , many older people slip on ice and fall down . ||| 在 冬天 , 很多 老人 在 冰上 滑倒 . +It will be spring soon . ||| 春天 快 來 了 . +Evidently , it is going to rain tomorrow . ||| 明天 肯定 会 下雨 . +All of these books are mine . ||| 这些 书 都 是 我 的 . +Tom was not apologetic . ||| Tom 并 不 觉得 抱歉 . +She walked slowly so she would not slip . ||| 她 慢慢 地 走 , 這樣 她 就 不 會 滑倒 了 . +I must think over the matter before giving my answer . ||| 我 在 回答 之前 必须 考虑 周全 . +What is your favorite fruit ? ||| 你 最 喜爱 的 水果 是 什么 ? +Give us two knives and four forks , please . ||| 请 给 我们 两把 刀 和 四把 叉 . +He wrote it down in his notebook . ||| 他 把 这 记 在 他 的 笔记本 上 . +She was amazed to hear the news . ||| 她 听到 那个 消息 后 惊呆 了 . +He could not stand the bitterness of the coffee . ||| 他 受不了 咖啡 的 苦味 . +It is too dark to play tennis now . ||| 現在 太暗 了 不能 打 網球 . +Would three o 'clock be all right ? ||| 三點鐘 可以 嗎 ? +He talks as if he were a teacher . ||| 他 说话 就 像 一位 老师 . +This plant is indigenous to Canada . ||| 这种 植物 原产 于 加拿大 . +I have got to go now . ||| 我 現在 得 走 了 . +The doctor cured him of his cancer . ||| 醫生 治好 了 他 的 癌症 . +I will not be at home next Sunday . ||| 我 下 周日 不 在家 . +We are going to climb that mountain . ||| 我們 將 要 去 爬 那 座 山 . +I speak French , too . ||| 我 也 说 法语 . +I have no idea what I am going to wear . ||| 我 不 知道 穿 甚麼 好 . +The city was full of starving soldiers . ||| 城市 裡 充滿 了 飢餓 的 士兵 . +Come on , touch it . ||| 来 吧 , 摸 一下 . +They will not allow us to enter the garden . ||| 他们 不会 允许 我们 进 花园 的 . +I want something cold to drink now . ||| 我 想現 在 喝 冷 的 東西 . +I think we are in trouble . ||| 我 认为 我们 有 麻烦 . +You 'd better do what they say . ||| 你 最好 照 他們 所 說 的 做 . +I will explain everything to you . ||| 我会 向 你 全部 解释 清楚 的 . +You are a good person . ||| 您 是 一個 好人 . +I will be taking a vacation next month . ||| 我 下 個 月 要 休假 . +Tom does not want to talk to anybody . ||| 汤姆 不想 跟 任何人 说话 . +I did not know what to do then . ||| 那時 我 不 知道 該 怎麼 辦 . +Between you and me , I am going to quit my present job soon . ||| 我 只 跟 你 说 , 我 很快 就要 辞掉 我 现在 的 工作 了 . +After two days our food gave out . ||| 过 两天 我们 的 食物 就 发完 了 . +I prefer milk to juice . ||| 比起 果汁 , 我 比較 喜歡 牛奶 . +The bride seems to be very pretty . ||| 新娘 好像 非常 漂亮 . +There used to be a store right here . ||| 这里 以前 有个 商店 . +I have a large collection of stamps . ||| 我 收集 很多 郵票 . +I can not resist sweet things . ||| 我 抵抗 不了 甜食 的 诱惑 . +We have no choice but to risk it . ||| 我们 别无选择 只能 冒着危险 . +Have you ever been stuck in an elevator ? ||| 你 有 沒有 被困 在 電梯 裡 過 ? +The library is in the middle of the city . ||| 图书馆 位于 城市 中心 . +I am losing my grip . ||| 我 失去 了 控制 . +I can not follow his logic . ||| 我 无法 理解 他 的 逻辑 . +I hope the economy picks up soon . ||| 我 希望 经济 很快 复苏 起来 . +She said that she gets up at six every morning . ||| 她 说 她 每天 早上 六点 起床 . +Do you offer any all @-@ day tours ? ||| 你 提供 任何 全日 遊 嗎 ? +That is terrible . ||| 这 太 可怕 了 . +Go away ! ||| 走開 ! +Where is Tom ? ||| 汤姆 在 哪儿 ? +I came to Tokyo three years ago and have been living here ever since . ||| 三年 前 我 来到 东京 并 一直 住 在 这儿 . +Tom is in the bathroom now . ||| 湯姆 現在 在 衛生間 . +You are on the right track . ||| 你 的 想法 是 對 的 . +Tom has many friends living in Boston . ||| 湯姆 有 很多 朋友 住 在 波士 頓 . +The number of traffic accidents seems to be on the increase . ||| 交通事故 的 数量 似乎 在 增长 . +She is not as patient as you . ||| 她 没 像 你 那样 有 耐心 . +I want you to stay here longer . ||| 我 希望 你 留在 這兒 久 一點 . +How could it be Tom is fault ? ||| 它 怎麼 能 是 湯姆 的 錯 ? +I hear that you play the piano . ||| 我 听说 你 弹钢琴 . +I am content with my job . ||| 我 對 我 的 工作 感到 滿意 . +I did not participate in the dialog . ||| 我 没有 参与 对话 . +We should always obey laws . ||| 我们 总 要 遵守 法律 . +The polar bears are dying . ||| 北极熊 正在 死去 . +I have written a letter . ||| 我 写 了 一封信 . +I do not feel like working today . ||| 我 今天 不想 上班 . +She makes all her own clothes . ||| 她 的 衣服 全部都是 她 自己 做 的 . +I want something cold to drink . ||| 我 想 喝 點 冷 飲 . +He won everything . ||| 他 赢得 一切 了 . +Remember to mail this letter . ||| 記得 要 去 寄 這 封信 . +Do not worry . ||| 别 擔心 . +I can not believe Tom was able to do this all by himself . ||| 没法 相信 , 汤姆 没 人 帮助 自己 一个 人 就 做到 了 这些 . +I have no idea . ||| 我 一无所知 . +Why are you alone ? ||| 你 为什么 一个 人 ? +The phone is ringing . ||| 電話 正在 響 . +My stomach hurts . ||| 我 胃痛 . +I decided not to go to Europe . ||| 我 决定 不 去 欧洲 了 . +Tom is not wrong . ||| 湯姆 沒有 錯 . +This guy looks like a fox . ||| 这 家伙 像 个 狐狸 . +Help me peel the potatoes . ||| 幫 我 削 一下 土豆 . +Turn the key to the right . ||| 往右 邊 轉動 鑰匙 . +We have got too much work to do . ||| 我們 要 做 的 工作 太 多 了 . +Foxes are wild animals . ||| 狐狸 是 野生动物 . +America is a country of immigrants . ||| 美國 是 一個 移民 國家 . +Tom will be a teacher someday . ||| 湯姆 有 一天 會 成為 教師 . +We are not the ones getting married . ||| 我们 不是 结了婚 的 人 . +I am a citizen of Sapporo . ||| 我 是 札幌 的 市民 . +He even called me an idiot . ||| 他 甚至 叫 你 傻瓜 . +He did not give me anything to eat . ||| 他 沒有 給 我 任何 東西 吃 . +Basho was the greatest poet . ||| Basho 是 最 偉大 的 詩人 . +My pen is not as good as yours . ||| 我 的 钢笔 不 像 你 那 支 那么 好 . +I did not know the city , and what is more , I could not speak a word of the language . ||| 我 不 知道 这个 城市 , 而且 我 一点 都 不 懂 那里 的 语言 . +You may depend on him to help you . ||| 你 或许 可以 依靠 他 来 帮助 你 . +To tell the truth , I completely forgot . ||| 說實話 , 我 完全 忘 了 . +If I had taken that plane , I would be dead now . ||| 要是 我 坐 了 那 架飞机 的话 , 我 现在 早就 死 了 . +The storm developed into a typhoon . ||| 暴風雨 發展 成 了 一 個 颱 風 . +That factory makes toys . ||| 那家 工廠 生產 玩具 . +Should not someone be helping Tom ? ||| 难道 不该 有人 帮 汤姆 吗 ? +He has a brother who lives in Tokyo . ||| 他 有个 住 在 东京 的 兄弟 . +I wanted to go to the concert . ||| 我 本 想 去 参加 音乐会 的 . +He is gone to Nagoya on business . ||| 他 去 名古屋 出差 . +One of my suitcases is missing . ||| 我 的 其中 一个 行李 不见 了 . +I am afraid of spiders . ||| 我 怕 蜘蛛 . +Tom is a fluent speaker of Japanese . ||| 湯姆日語 說 得 很 流利 . +What kind of wine do you have ? ||| 您 有 什麼樣 的 葡萄酒 ? +Please tell me about it . ||| 请 告诉 我 它 的 事情 . +What a wonderful night ! ||| 多 美妙 的 夜晚 啊 ! +It is a good thing to read good books when you are young . ||| 年轻 的 时候 多 看点 好书 是 件 好事 . +Divide the pizza in three . ||| 把 披薩 分成 三份 . +Water is very important . ||| 水 非常 重要 . +We have no classes on Wednesday afternoons . ||| 我们 周三 下午 没课 . +The boy remained silent . ||| 男孩 依旧 沉默不语 . +Do you have anything for a cold ? ||| 你 有 任何 治感冒 的 東西 嗎 ? +I usually eat out . ||| 我 通常 在 外面 吃饭 . +One of the dogs is alive . ||| 這些 狗 中 的 其中 一 隻 是 活 的 . +Let me have a try at it . ||| 让 我 试试 . +She speaks Chinese . ||| 她 讲 中文 . +Is that paper ? ||| 那 是 紙 嗎 ? +He said hello to the woman . ||| 他 向 那位 女士 问好 . +Zimbabwe was once a colony of Britain . ||| 津 巴布 韋 曾經 是 英國 的 殖民地 . +Tom finally quit smoking . ||| 汤姆 终于 戒烟 了 . +I can verify that that is the truth myself . ||| 我 自己 能够 证实 那 是 真的 . +The world does not revolve around you . ||| 世界 不是 围着 你 转 的 . +I clapped . ||| 我 拍手 . +I am being patient . ||| 我 很 有 耐心 . +Please wrap it up . ||| 請 包起 來 . +It was sensible of you to follow her advice . ||| 你 聽 從 她 的 忠告 是 明智 的 . +You 'd better eat something . ||| 你 最 好吃 点 东西 +Can I sit here ? ||| 我 能 坐 这里 吗 ? +I tried to convince Tom to come home . ||| 我 试 着 说服 汤姆 回家 . +He took a quick look at the magazine . ||| 他 迅速 瞥 了 一眼 杂志 . +I know that you did your best . ||| 我 知道 你 盡力 了 . +I just want to sleep . ||| 我 只 想 睡觉 . +Oh ! That is too bad . ||| 哦 ! 那 太 糟糕 了 . +I have already been working here for several hours . ||| 我 已经 在 这里 工作 几个 小时 了 . +Let me know if I need to change . ||| 让 我 知道 我 是否 需要 改变 . +It is not necessary for us to attend this lecture . ||| 我們 沒有 必要 出席 這個 講 座 . +It seems that no one knew the truth . ||| 貌似 没有 人 知道 真相 . +She opened the letter quickly . ||| 她 很快 地 打開 了 信 . +No matter how much I think about it , I do not understand it . ||| 无论 怎么 去 想 我 都 搞不清楚 . +I would like to go to the concert with you . ||| 我 想 和 你 一起 去 音乐会 . +I hired someone today . ||| 我 今天 雇 了 个人 . +Get serious . ||| 认真 点 . +Mary does not wear as much makeup as Alice . ||| 玛丽 没有 化 爱丽丝 那样 浓 的 妆 . +Ultraviolet rays can cause skin cancer . ||| 紫外 線 可 導致 皮膚 癌 . +Everyone in his family is tall . ||| 他家 的 每個 人 都 很 高 . +We are traveling on a tight budget . ||| 我們 用少 的 預算 旅行 . +There are four seasons in one year . ||| 一年 有 四季 . +Did you have any difficulty in finding my house ? ||| 你 找 我 的 房子 有 困難 嗎 ? +Who is next ? ||| 下 一个 是 谁 ? +You know that is not right . ||| 你 知道 不是 那样 的 . +The money you give them will be put to good use . ||| 你 给 他们 的 钱 会 用到 好处 . +You will miss me when I am gone . ||| 我 走 了 你 会 想 我 . +You ought to know better at your age . ||| 在 你 這個 年紀 你 應 該 要 更 懂事 . +She hurt her foot when she fell off her bicycle . ||| 她 在 从 自行车 上 摔下来 时伤 到 了 脚 . +They gave a series of concerts . ||| 他們 辦 了 一系列 的 音樂會 . +Your bicycle is better than mine . ||| 你 的 腳踏車 比 我 的 好 . +I tried to tell you . ||| 我 試著 要 告訴 你 . +I will wait until she comes . ||| 我会 等到 她 来 . +I am glad that they fixed the heating system , but now it is too hot . ||| 我 很 高興 他們 修 復 了 暖 氣 系 統 , 但 現在 太 熱 了 . +Tom was full . ||| 汤姆 饱 了 . +We will talk about it tomorrow . ||| 我們 明天 討論 它 . +She teaches us French . ||| 她 教 我们 法语 . +You could be right , I suppose . ||| 我 猜想 你 可能 是 对 的 . +It is already time to go home . ||| 已经 是 时候 回去 了 . +What do you do ? ||| 你 的 職業 是 什麼 ? +You do not look so well . ||| 你 看上去 不太好 . +She cooked herself a good meal . ||| 她 為 自己 煮 了 好吃 的 一餐 . +I always rely on him in times of trouble . ||| 我 在 困難 時 總是 依賴 他 . +How is school ? ||| 学校 怎么样 ? +Who is your most interesting friend ? ||| 你 最 有趣 的 朋友 是 誰 ? +Nothing is as precious as love . ||| 沒有 什麼 東西 是 跟愛 一樣 珍貴 的 . +Do you like it ? ||| 你 喜欢 吗 ? +I have not seen him for years . ||| 我 有些 年 没见 过 他 了 . +Are we finished ? ||| 我们 完成 了 吗 ? +If you are busy , I will help you . ||| 如果 你 忙 , 我 會 幫 你 . +She may not come here tomorrow . ||| 她 明天 可能 不 會 來 這裡 . +What do you two do for fun ? ||| 你们 两个 做 了 什么 有趣 的 事情 呢 ? +I have to stay in bed all day . ||| 我 不得不 一整天 都 待 在 床上 . +My wife buys vegetables from a supermarket nearby . ||| 我 老婆 在 附近 的 超市 买 蔬菜 . +He is not as smart as his older brother . ||| 他 不 像 他 的 兄长 那样 聪明 . +Is the work hard ? ||| 工作 困難 嗎 ? +Let is play baseball after school . ||| 讓 我們 放學 後 打 棒球 . +Everything is ready . ||| 一切 就绪 . +I would like to have a cup of coffee . ||| 我 想 喝一杯 咖啡 . +You cannot purchase this medicine without a prescription . ||| 那个 药 的话 没有 处方 是 买不到 的 . +Do not show your face around here again . ||| 你 不要 再 出現 在 這裡 了 . +It was just a joke . ||| 我 这么 说 只是 开 个 玩笑 . +Am I wrong ? ||| 我 錯 了 嗎 ? +We played poker the entire day . ||| 我们 用 了 一整天 打扑克 . +Tom and his wife both grew up in Australia . ||| 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +Weeds sprang up in the garden . ||| 花園 裡 雜草 叢生 . +Only 3 out of the 98 passengers survived . ||| 98 名 乘客 只有 3 人生 还 . +I am not responsible for what Tom did . ||| 我 不必 對 湯姆 所 做 的 事負責任 . +She always studies while listening to music . ||| 她 總是 邊 聽 音 樂邊 唸 書 . +Thanks for returning my call . ||| 感謝 您 的 回電 . +The lights are not on . ||| 灯 没有 亮 着 . +Do not bother . ||| 不用 麻烦 了 . +The pen is on the desk . ||| 笔 在 桌上 . +Everyone knows Tom speaks good French . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom knows what he has to do . ||| 湯姆 知道 他 該 做 什麼 . +Time flies . ||| 时间 匆匆 走过 . +What are you cooking ? ||| 你 在 煮 什麼 ? +A new difficulty has arisen . ||| 出现 了 新 困难 . +You ought to be ashamed of yourself . ||| 你 應該 為 你 自己 感到 羞恥 . +I do not want to lose you again . ||| 我 不想 再 失去 你 . +I had a strange dream last night . ||| 我 昨晚 做 了 一個 奇怪 的 夢 . +I had sore legs the next day . ||| 第二天 我 的 腿 很酸 . +I hope he will wait for me . ||| 我 希望 他 會 等 我 . +We will not get paid extra for doing this . ||| 我们 做 这事 没有 额外 报酬 . +The police will put you behind bars . ||| 警察 會 把 你 關 在 牢 裡 . +Fresh fruits and vegetables are good for your health . ||| 新鮮 水果 和 蔬菜 有益健康 . +The watch on the desk is mine . ||| 桌上 的 手表 是 我 的 . +Sydney is the largest city in Australia . ||| 雪梨 是 澳洲 最大 的 城市 . +There is a possibility that you will have to do that . ||| 你 有 可能 不得不 那么 做 . +We will talk later . ||| 我们 过 一会 再 谈 . +I saw him swim across the river . ||| 我 看見 他 游 過 了 河 . +Stay calm . ||| 保持 冷靜 . +I have a car . ||| 我 有 一辆车 . +That is too bad . ||| 多 遗憾 啊 ! +I know where he comes from . ||| 我 知道 他 来自 哪里 . +He could not swim . ||| 他 不能 游泳 . +I am not used to speaking in public . ||| 我 不 習慣 在 公眾場 合 說 話 . +Who wrote this story ? ||| 谁 写 了 这个 故事 ? +What are you punishing them for ? ||| 你 為 什麼 懲罰 他們 ? +We have nothing in common . ||| 我們 沒有 任何 共同 之處 . +I buy donuts every Sunday after church . ||| 我 每个 星期日 礼拜 完 都 买 甜甜 圈 . +Tom says he feels a little better . ||| 汤姆 说 他 感觉 好 点 了 . +Did you go to the book fair ? ||| 你 去 書展 了 嗎 ? +I did not sleep a wink last night . ||| 我 昨晚 一夜 沒 闔眼 . +There is a book about dancing on the desk . ||| 桌子 上 有 一本 关于 舞蹈 的 书 . +He will be a good doctor . ||| 他 会 成为 一个 好 的 医生 的 . +You need to attach your photo to the application form . ||| 你 必须 把 你 的 照片 贴 在 申请书 上 . +Who invented the telephone ? ||| 谁 发明 了 电话 ? +How was your weekend ? ||| 你 的 周末 是 怎么 过 的 ? +She drew out the money from the bank . ||| 她 从 银行 取 了 钱 . +Do you want to eat this ? ||| 你 想 吃 這個 嗎 ? +Few people live to be 100 years old . ||| 很少 人 活到 100 岁 . +Tom has no friends who are willing to help him . ||| 汤姆 没有 愿意 帮助 他 的 朋友 . +It is going to be cold tonight . ||| 今晚 會 很 冷 . +I have no idea . ||| 我 一无所知 . +I think Tom will likely like this movie . ||| 我 認為 湯姆 很 可能 會 喜歡 這部 電影 . +Tom wants me to stay away from him . ||| Tom 要 我 離 他 遠 一點 . +Tom is quite likely to be late . ||| 湯姆 很 可能 遲 到 . +I am looking forward to seeing you next Sunday . ||| 我 期待 下 周日 能 见到 你 . +I drank a cup of water . ||| 我 喝 了 一杯 水 . +Theory and practice should go hand in hand . ||| 理论 得 联系实际 . +Tom sat down . ||| 汤姆 坐下 了 . +They will kill you . ||| 他們 要 殺 你 . +I want something to drink now . ||| 我 現在 想要 喝 點 東西 . +We should go to sleep . ||| 我 该 去 睡觉 了 . +That was not my intention . ||| 那 不是 我 的 本意 . +Tom lived in a small fishing village . ||| 汤姆 住 在 一个 小 渔村 . +The dog is dying . ||| 這 隻 狗 快要 死 了 . +You are a beautiful woman . ||| 你 是 个 美 人 . +Tom attached the string to the kite . ||| 湯姆 把 繩子 加在 了 這個 風箏 上 . +He is ashamed of his failure . ||| 他 为 他 的 失败 感到 羞耻 . +I am satisfied with my work . ||| 我 很 滿意 我 的 工作 . +Hi ! Do you work here ? ||| 嗨 ! 你 在 这儿 工作 吗 ? +I know you think I am crazy . ||| 我 知道 你 覺得 我 瘋 了 . +Tom has short hair . ||| 汤姆 ( Tom ) 留 短发 +She always dresses in black . ||| 她 總 是 穿著 黑色 的 衣服 . +Cows are eating grass in the meadow . ||| 牛 吃 牧草 . +Tom told me he was Canadian . ||| 汤姆 告诉 我 他 是 加拿大人 . +He did not go and I did not either . ||| 他 沒 有 去 , 我 也 沒去 . +You will soon hear from him . ||| 你 很快 就 會 收到 他 的 信 . +She backed her car into the garage . ||| 她 倒 車 進車 庫 . +You are the man I have been looking for . ||| 你 就是 我 一直 要 找 的 人 . +Turn the TV off . ||| 把 電視 關了 . +We talked and talked until the day broke . ||| 我們 一直 聊天 直到 天明 . +At last , he came . ||| 最终 , 他 来 了 . +We did not have much rain last month . ||| 上個月 我們 這兒 沒有 下 很多 雨 . +She takes care of my children . ||| 她 照顧 我 的 孩子 . +The air is thin at the top of a high mountain . ||| 山頂 上空 氣 稀薄 . +Your manners are not very good . ||| 你 的 舉止 不是 很 好 . +I would like to tell you something . ||| 我 想 告訴 你 一些 事情 . +Tom turned on the electric fan . ||| 湯姆 打開 了 電風 扇 . +What are your plans for the weekend ? ||| 你 週末 有 什麼 計劃 ? +Tom does not like any kind of spicy food . ||| 汤姆 不 喜欢 任何 辣 的 食物 . +Nobody is too old to learn . ||| 沒 有人 會 因為 太 老 而 不能 學習 . +Can you tell me what this is ? ||| 你 能 告诉 我 这 是 什么 吗 ? +She did not tell me her secret . ||| 她 沒有 告訴 我 她 的 秘密 . +People must love one another . ||| 人 要 爱 他人 . +I really think we should do this . ||| 我 真的 认为 我们 该 做 这个 . +I found a good Mexican restaurant . ||| 我 发现 一家 很好 的 墨西哥 餐厅 . +This dress cost me over 40,000 yen . ||| 這件 衣服 花 了 我 40000 日元 . +Is there anything I must do ? ||| 有 什么 事 是 我 该 做 的 吗 ? +He told me his life is story . ||| 他 跟 我 讲 了 他 的 人生 故事 . +Only one person survived the accident . ||| 只有 一 人 倖 免 於 難 . +They congratulated us on our victory . ||| 他們 祝賀 我們 的 勝利 . +It is okay to go . ||| 你 可以 走 了 . +How long have you been in here ? ||| 你 来 这里 多久 了 ? +Does this letter have to be written in English ? ||| 這 封信 必須 用 英文 寫 嗎 ? +My sister is cooking in the kitchen . ||| 我 妹妹 正在 厨房 做饭 . +Tom realized he had lost his wallet . ||| 湯姆 意識 到 他 丢 了 錢 包 . +Learning French is not hard . ||| 学法语 不难 . +I climbed in through the window . ||| 我 从 窗口 爬 进来 的 . +Tom picked up the jar and read the label . ||| 汤姆 拿 起 罐子 读 标签 . +Father would often read detective stories in his spare time . ||| 父亲 常常 在 空闲 时间 读 侦探小说 . +Nothing much has changed . ||| 沒有 多少 改變 . +The board unanimously decided to appoint her as CEO . ||| 董事会 一致 决定 任命 她 为 执行 总裁 . +Why not ? ||| 为什么 不 ? +Nothing happened . ||| 什麼 事 都 沒有 發生 . +Let me help you . Your bag looks very heavy . ||| 让 我 来 帮 你 吧 . 你 的 包 看起来 很重 . +He said , " I am from Canada . " ||| 他 说 : “ 我 是 加拿大 来 的 . ” +He is washing his car . ||| 他 正在 洗 他 的 车 . +I was tired , but I could not sleep . ||| 我 累 了 , 但是 我 睡 不著 . +This makes me sad . ||| 這 讓 我 難過 . +This is surprising . ||| 這 是 令人 吃驚 的 . +I bought a new television . ||| 我 买 了 台 新 电视机 . +Is it right for a doctor to decide when someone should die ? ||| 由 医生 来 决定 某人 何时 该死 是 对 的 吗 ? +Tom has a veterinary background . ||| Tom 有 獸 醫 背景 . +I will be seventeen next year . ||| 我 明年 17 岁 . +Can Tom buy that for us ? ||| 湯姆 能 給 我們 買 嗎 ? +Everybody knows her . ||| 每個 人 都 認識 她 . +He is a pleasant person . ||| 他 是 个 好脾气 的 人 . +My father runs a restaurant . ||| 我 的 父親 經營 一家 餐館 . +Stop gawking . ||| 别 再 傻 看着 . +It has been three months since he left Japan . ||| 自從 他 離開 日本 已經 有 三個 月 了 . +I am almost sure of it . ||| 我 幾乎 能 確定 . +No matter what I do , she says I can do better . ||| 不管 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I was trying to kill time . ||| 我 试 着 消磨 时间 . +See you tomorrow in the library . ||| 明天 图书馆 见 . +An apple fell to the ground . ||| 一個 蘋果 落到 了 地上 . +An old man broke into our conversation . ||| 一位 老人 打斷 了 我們 的 談話 . +I am always busy with my homework . ||| 我 總是 忙 於 功 課 . +What is that ? ||| 那 是 什么 ? +Tom criticized Mary in front of everyone . ||| 汤姆 在 所有人 面前 批评 了 玛丽 . +It has always been a pleasure to work with you . ||| 跟 你 共事 总是 很 愉快 . +My father had already finished breakfast when I got up this morning . ||| 我 今早 起床 时 , 我 爸 已经 吃 过 早饭 了 . +You must be joking . ||| 你 一定 是 开玩笑 ! +When does it start ? ||| 什么 时候 开始 ? +Fish and red wine do not go together . ||| 鱼 和 红酒 不 相配 . +School begins at 8 : 30 a.m. ||| 学校 8 点 半 开始 上课 . +He is afraid of that dog . ||| 他 怕 那 只 狗 . +That would be relevant . ||| 那 会 有 关系 . +Could you tell me how to get there ? ||| 请问 我 该 怎么 去 那里 ? +Have a good weekend . ||| 周末 愉快 . +I did not want this to happen . ||| 我 不想 这种 事 发生 . +They did not keep their promise . ||| 他們 沒有 信守 諾 言 . +The house I bought is pretty far from downtown . ||| 我 買 的 房子 離 市中心 比較 遠 . +Our school is near the station . ||| 我們 學校 在 車站 的 附近 . +I visited my grandmother is house . ||| 我 拜訪 了 我 祖母 的 房子 . +It rains a lot in June in Japan . ||| 在 日本 , 6 月 的 时候 会 下 很多 雨 . +You can take your time . ||| 你 可以 慢慢来 . +He likes hunting . ||| 他 喜欢 打猎 . +It is really not important . ||| 真的 不 重要 . +Please take a look at this picture . ||| 請 看看 這 張 照片 . +I am hers and she is mine . ||| 我 是 她 的 , 而 她 是 我 的 . +The clock is above the fireplace . ||| 時鐘 在 壁爐 的 上方 . +I know the real reason you do not want go . ||| 我 知道 你 不想 去 的 真实 原因 . +Keep going . ||| 继续 吧 . +It is about time to start . ||| 差不多 该 开始 了 . +This is a friend of mine . ||| 這個 是 我 的 朋友 . +The hunter shot and killed the fox . ||| 猎人 射死 了 狐狸 . +I was waiting for something to happen . ||| 我 在 等 事情 發生 . +Walk ahead of me . ||| 在 我 前面 走 . +Speaking English is useful . ||| 说 英语 很 有用 . +You are now an adult . ||| 你 现在 是 大人 了 . +My brother and I shared the room . ||| 我 哥哥 和 我 共用 這間 房間 . +You really are lucky , are not you ? ||| 你 真的 很 幸運 , 不是 嗎 ? +She is not a regular employee of this company . ||| 她 不是 這間 公司 正式 的 職員 . +I do not want there to be any misunderstanding . ||| 我 不想 有 任何 误会 . +That was fabulous . ||| 那 真是 极好 的 . +She was aching from head to foot . ||| 她 浑身 酸痛 . +He bored us with his long stories . ||| 他 長長 的 故事 讓 我們 覺得 厭煩 了 . +I have already finished this book . ||| 我 已經 讀完 了 這 本書 . +She has a gift for prophecy . ||| 她 有 预言 的 能力 . +My brother bought an electric guitar . ||| 我 的 兄弟 買 了 電子 吉他 . +You need protection . ||| 你 需要 保護 . +She is a frequent visitor to this country . ||| 她 经常 来 这个 国家 . +Prices are double what they were two years ago . ||| 價格 是 兩 年前 的 兩倍 . +I like to eat apples . ||| 我 喜欢 吃 苹果 . +Tom refused to help Mary do her homework . ||| 湯姆 拒 絶 幫 瑪 麗 做 她 的 作 業 . +This is the house where he lived . ||| 這 是 他 住 的 房子 . +She cooked vegetable soup for us . ||| 她 為 我們 煮 了 蔬菜 湯 . +I do not have the slightest intention of retiring . ||| 我 没有 一点 退休 的 念头 . +This plan will be very expensive to carry out . ||| 这 计划 执行 起来 花销 会 很大 . +This is not what I ordered . ||| 這 不是 我 點 的 食物 . +He founded the school five years ago . ||| 他 在 五年 前 創立 了 這 所 學校 . +I often go swimming in the river . ||| 我 常常 在 河裡 游泳 . +You can do whatever you want to . ||| 你 可以 做 任何 你 想 做 的 事 . +Work slowly . ||| 干活 慢点 . +They come from the south of France . ||| 他们 是从 法国 南部 来 的 . +Anything that can be misunderstood will be . ||| 任何 事 都 可以 被 誤解 . +He traveled around the world . ||| 他 周遊 世界各地 . +Hurry up ! We will be late . ||| 快點 ! 我們 要 遲 到 了 . +She likes all kinds of sports . ||| 她 喜歡 各種 運動 . +It is quite difficult to master French in 2 or 3 years . ||| 很 难 在 2 、 3 年内 掌握 法语 . +You can use my dictionary . ||| 你 可以 用 我 的 字典 . +His parents expect too much of him . ||| 他 父母 对 他 期望 过 高 . +The lake is deep here . ||| 这个 湖 在 这个 地方 很 深 . +He rescued the dog at the risk of his own life . ||| 他 冒 着 生命危险 救 了 那条 狗 . +Tom finally understood it . ||| 汤姆 最终 明白 了 . +I think I am intelligent . ||| 我 觉得 我 很 聪明 . +I will go back home with you . ||| 我 會 跟 你 一起 回家 . +Do not forget to take the first @-@ aid kit . ||| 别忘了 带上 急救箱 . +I want to see you again . ||| 我 希望 再次 見 到 你 . +The flowers in the garden need to be watered . ||| 花园里 的 花 需要 浇水 . +Tom does not have any friends who like camping . ||| 汤姆 没有 喜欢 露营 的 朋友 . +I can not make any sense of this . ||| 我 完全 不 明白 . +How many apples do you want ? ||| 你 要 多少 個 蘋果 ? +I do not like you anymore . ||| 我 再也 不 喜欢 你 了 . +Let is keep in touch . ||| 让 我们 保持 联络 . +I almost forgot my lunch . ||| 我 快 把 我 的 午饭 忘 了 . +What does this pen cost ? ||| 這 支筆 多少 錢 ? +What time does the play begin ? ||| 演出 什么 时候 开始 ? +I am a teacher . ||| 我 是 個 老師 . +He is at home today . ||| 他 今天 在家 . +I do not want to miss the exam . ||| 我 不想 错过 考试 . +Time is the most precious thing in the world . ||| 时间 是 世界 上 最 宝贵 的 东西 . +Go back to the office . ||| 回辦 公室 去 . +She can sing and dance beautifully . ||| 她 會 唱歌 而且 舞 跳 得 很美 . +She plays the piano very well . ||| 她 鋼琴 彈 得 很 好 . +I feel unwell . ||| 我 感觉 不 舒服 . +But you are not there . ||| 但 你 不 在 那裡 . +It was Tom that saved the girl . ||| 是 湯姆 救 了 這個 小女孩 . +Both French and English are spoken in Canada . ||| 在 加拿大 的 人 說 法語 和 英語 . +She lived a lonely life . ||| 她 的 生活 很 寂寞 . +We will go on a picnic next Sunday . ||| 我們 下週 六 將 去 野餐 . +Will it be necessary for us to buy a book for this class ? ||| 我们 有 必要 为 上 这 门 课 买 本 教材 吗 ? +Mary is carrying a watermelon . ||| 瑪麗婭 抱著 一個 西瓜 . +I am sorry . I have another appointment . ||| 很 抱歉 , 我 还有 另 一个 约会 . +The road is under construction . ||| 路 正在 建 . +Are you saying my life is in danger ? ||| 你 在 说 我 有 生命危险 吗 ? +We depend on you . ||| 我们 可 全 靠你了 . +This is the church where we got married . ||| 這裡 是 我們 結婚 的 教堂 . +Children need a lot of sleep . ||| 孩子 們 需要 大量 的 睡眠 . +My mother made me a white dress . ||| 我 媽媽 為 我 做 了 一件 白色 的 洋裝 . +There are 50 members in the club . ||| 這個 俱樂部 有 50 位 成員 . +Will you wait a minute ? ||| 麻煩 您 等 一下 . +She is just a child . ||| 她 只是 個 孩子 . +I was invited to their wedding . ||| 我 被 邀請 參加 他們 的 婚禮 . +He stepped on my foot on purpose . ||| 他 故意 踩 我 的 腳 . +Tom was ready to work . ||| 湯姆 準備 去 工作 . +We let him keep the dog . ||| 我們 讓 他 養 狗 . +Wine helps with digestion . ||| 葡萄酒 幫 助消化 . +Tom says that he is a creature of habit . ||| 汤姆 说 他 是 习惯 的 产物 . +I have had a headache for three days and I can not get rid of it . ||| 我 已经 头疼 三天 了 , 还 没 摆脱 它 . +Some of them are healthy , but others are not . ||| 他们 中 的 一些 人 身体健康 , 但是 其他人 不是 . +I have a friend whose father is a famous writer . ||| 我 有個 朋友 的 父親 是 知名 的 作家 . +I can not speak English at all . ||| 我 一点 英文 都 不会 说 . +Ask for what you want . ||| 要 你 想要 的 ! +Tom looked well . ||| 汤姆 看上去 很 精神 . +Our country must develop its natural resources . ||| 我們 國家 必須 開發 自然 資源 . +It is two @-@ hour drive from here to my uncle is house . ||| 从 这里 坐车 , 要 花 两个 小时 才能 到 我 叔叔 家 . +I have always been smart . ||| 我 一直 聪明 . +When I came home , Tom was studying . ||| 當 我 回家 的 時候 , 湯姆 正在 讀書 . +Let me have a look at it . ||| 讓 我 看看 它 . +The whole class is present once a week . ||| 全班同学 每周 出席 一次 . +I have two nieces . ||| 我 有 两个 外甥女 . +Tom hit me first . ||| 汤姆 先 打 了 我 . +Do not ask questions . Just follow me . ||| 别 问 问题 . 跟着 我 就 行 . +Do you want more ? ||| 你 想要 更 多 嗎 ? +This month was kind of difficult . ||| 这个 月 我 过得 有点 艰难 . +Only then did he realize he had been deceived . ||| 直到 那时 , 他 才 意识 到 他 已经 上当受骗 . +You should obey your parents . ||| 你 该 听 你 父母 的话 . +He invited me to his house . ||| 他 邀请 我 去 他家 . +He has not answered my letter yet . ||| 他 还 没回 我 的 信 . +Shut the door . ||| 关门 . +Mars has two natural moons . ||| 火星 有 兩個 天然 衛星 . +She becomes drowsy after dinner . ||| 晚 飯 後 她 變得 昏昏欲睡 . +What does this pen cost ? ||| 这 支 钢笔 要 多少 钱 ? +I did not go to school last Monday . ||| 上周 一 我 没 去 上学 . +The company went bankrupt . ||| 公司 破产 了 . +Some people like sports , and others do not . ||| 有些 人 喜欢 运动 , 有些 人 不 喜欢 . +Do you have any money with you ? ||| 你 身上 有 錢 嗎 ? +There are many beautiful castles in northern Germany . ||| 在 德國 北部 有 很多 美麗 的 城堡 ? +How much money do you have ? ||| 你 有 多少 錢 ? +The vase was shattered . ||| 花瓶 被 打碎 了 . +I have not seen him in a long time . ||| 我 好久不见 他 了 . +I do not know if there is time . ||| 我 不 知道 有没有 时间 . +I believe in you . ||| 我 相信 你 . +It is started raining again . ||| 又 开始 下雨 了 . +I have to get some sleep . ||| 我 必須 睡 一下 覺 . +Tom does not want to talk to anyone . ||| 汤姆 不想 跟 任何人 说话 . +How long will the train stop here ? ||| 火车 要 在 这里 停 多久 ? +It is a beautiful painting . ||| 是 一幅 漂亮 的 畫 . +Who took the money ? ||| 誰 拿 了 錢 ? +It is evident that he has made a mistake . ||| 很 明顯 的 是 他 犯 了 錯 . +Why do not you eat vegetables ? ||| 为什么 你 不吃 蔬菜 ? +Could you please pass me the salt ? ||| 請 你 把 鹽 遞 給 我 好 嗎 ? +Tom is by far the tallest boy in our class . ||| 汤姆 远 比 我们 班 其他 男孩 高 . +I went to three funerals last month . ||| 上个月 我 参加 了 三场 葬礼 . +I wish I could stop hiccuping . ||| 我 希望 我 能 停止 打嗝 . +They live across the river . ||| 他們 住 在 河對面 . +Is there a supermarket near here ? ||| 這 附近 有 超市 嗎 ? +How about playing tennis ? ||| 打 網球 怎麼樣 ? +I do not think I can help you very much . ||| 我 不 認為 我 能 幫 你 很多 . +One hundred years is called a century . ||| 一百年 称为 一个 世纪 . +Australia is the world is fifth @-@ largest coal producer . ||| 澳大利亚 是 世界 第五 大 煤炭 产地 . +I sometimes play tennis with her . ||| 有時 我 會 跟 她 打 網球 . +He occasionally visited me . ||| 他 偶尔 会 来 拜访 我 . +Tom and Mary are in the same class . ||| 汤姆 和玛丽 在 同一个 班级 . +Do you have a coat and a hat ? ||| 你 有 外套 和 帽子 嗎 ? +Tom was wearing jeans . ||| 湯姆 穿著 牛仔 褲 . +Tom finally gave up smoking . ||| 汤姆 终于 戒烟 了 . +There is enough time for a quick snack . ||| 有 足夠 的 時間 很快 地 吃 一下 點 心 . +They rescued the boy from drowning . ||| 他們 救 了 這個 男孩 , 使 他 免 於 淹死 . +I do not want to go there . He does not want to go either . ||| 我 不想 去 那儿 , 他 也 不想 . +I gave my sister a dictionary . ||| 我 給 了 我 妹妹 一本 字典 . +He has strange ideas . ||| 他 有着 奇妙 的 想法 . +She has an agreeable voice . ||| 她 的 声音 令人 愉快 . +When did your baby start talking ? ||| 你 的 寶寶 , 什麼 時候 開始 說 話 的 ? +Tom used to drink like a fish . ||| Tom 過去 喝 很多 酒 . +We need to get some help . ||| 我们 需要 人 帮忙 . +She got her daughter a personal computer . ||| 她 給 她 的 女兒 買 了 一台 個 人 電腦 . +They left one after another . ||| 他们 一个 接着 一个 地 离开 了 . +Fill in your name and address . ||| 填上 你 的 姓名 和 地址 . +He makes three times more money than I do . ||| 他 赚 的 钱 比 我 多三倍 . +They got into the train . ||| 她們 上 了 火車 . +He read the letter over and over . ||| 他 把 信读 了 一遍 又 一遍 . +The boat is going against the current . ||| 船 逆流 航行 . +By the way , have you seen him lately ? ||| 顺便 说 一句 , 你 最近 见 过 他 吗 ? +She made me a cake . ||| 她 为 我 做 了 一个 蛋糕 . +He who laughs last laughs best . ||| 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +She was hit by a car . ||| 她 被 車 撞 了 . +I believe you will get over it soon . ||| 我 相信 你 很快 就 能 复原 . +Would you please write with a ballpoint pen ? ||| 你 能 用 圆珠笔 写 吗 ? +The two of us are students . ||| 我們 兩個 是 學生 . +My French is not good enough . ||| 我 的 法语 说 得 不够 好 . +What color is your hair ? ||| 您 的 头发 是 什么 颜色 的 ? +Stop joking around . ||| 別 開 玩笑 了 . +Do you want to eat something else ? ||| 你 想 吃 點 別的 嗎 ? +I do not know what Tom is plan is . ||| 我 不 知道 湯姆 的 計劃 是 甚麼 . +He thought that it was like a bird cage . ||| 他 认为 这 像 个 鸟笼 . +You must put an end to this foolish behavior . ||| 你 该 结束 这种 愚蠢 的 行为 了 . +He graduated from Harvard University with honors . ||| 他 光榮 地 從 哈佛 大學 畢業 了 . +Your memory is not too good . ||| 您 记性 不太好 . +These peaches are not very sweet . ||| 這些 桃子 不是 很甜 . +It is very simple . ||| 这 很 简单 . +Tom ate a slice of pizza . ||| 湯姆 吃 了 一片 比薩餅 . +You can swim , can not you ? ||| 你 會 游泳 , 不是 嗎 ? +Rome has a lot of ancient buildings . ||| 罗马 有 很多 古建筑 . +I am extremely grateful to you . ||| 我 無法 表達 我 對 你 的 感謝 . +Tom is a good person . ||| 湯姆 是 個 好人 . +Tom did not want to come . ||| 汤姆 不想 来 . +Tom started running towards the house . ||| 湯姆 開始 向 房子 跑 去 . +He had kept the secret to himself . ||| 他 保守 著 這個 秘密 . +Tom asked Mary some questions , but she refused to answer them . ||| 汤姆 问 了 玛丽 一些 问题 , 但是 她 拒绝 回答 . +How long ago did the bus leave ? ||| 這輛 公車 多久 前 離開 的 ? +I am using Twitter . ||| 我 用 Twitter . +This bus will take you to the airport . ||| 这辆 公交车 能载 你 去 机场 . +Tom never wanted to try it . ||| 湯姆 從 不想 試試 . +Your behavior leaves much to be desired . ||| 你 的 行为 离 要求 的 太 远 了 . +Tom did not go . ||| 汤姆 没 走 . +How large is your family ? ||| 你 的 家庭 有 多 大 ? +Fear quickly turned into anger . ||| 恐惧 很快 变成 愤怒 . +Are you dating anybody ? ||| 你 跟 人 約 會 過 嗎 ? +Tom joined the discussion . ||| 汤姆 参加 了 讨论 . +I can work with anyone . ||| 我 能 跟 任何人 工作 . +He has a few pens . ||| 他 有些 鋼筆 . +The tiger cub looked like a large kitten . ||| 小老虎 看起 來 像 隻 大 貓 . +Tom will not likely be grumpy again today . ||| 汤姆 今天 脾气 不太可能 会 那么 坏 了 . +Do not forget me . ||| 別 忘 了 我 . +I took a day off last week . ||| 上週 我 休 了 一天 的 假 . +This swallow is wings are broken . ||| 这 只 燕子 的 翅膀 受伤 了 . +I stayed at his place yesterday . ||| 我 昨天 住 在 他家 . +She lived up to our expectations . ||| 她 没有 辜负 我们 的 期望 . +It is difficult to keep secrets . ||| 守住 秘密 很 难 . +She may be a nurse . I am not sure . ||| 她 可能 是 护士 . 我 不 太 肯定 . +That boy used to drop in on me . ||| 那 男孩儿 来访 过 我家 . +My blood type is A positive . ||| 我 的 血型 是 A型 血 阳性 . +He is just a business associate . ||| 他 只是 個 事業 合夥人 . +What do you want to be when you grow up ? ||| 你 长大 后 想 成为 什么 ? +Would you like some sugar in your tea ? ||| 红茶 里 要 加糖 吗 ? +Do you have siblings ? ||| 你 有 兄弟姐妹 吗 ? +It seems that you are not having a good time here . ||| 好像 你们 在 这儿 玩 得 不 愉快 啊 . +He lived here for a time . ||| 他 在 这儿 住 了 有 一段时间 了 . +Tom said Mary is shy . ||| 湯姆 說 瑪麗 害羞 . +You should stay away from Tom . ||| 你 应该 离 汤姆 远 点儿 . +There are four people in my family . ||| 我家 有 四個 人 . +We talked about yesterday is test . ||| 我們 談到 了 昨天 的 測驗 . +He occasionally reads detective novels . ||| 他 偶尔 会 阅读 一些 侦探小说 . +I have no doubts . ||| 我 没有 疑问 . +Tom happened to meet Mary at the supermarket . ||| 汤姆 在 超市 偶遇 玛丽 . +Is it all right to take pictures in this building ? ||| 我们 可以 在 大楼 里 拍照 吗 ? +Is it serious ? ||| 严重 吗 ? +The incident made everyone feel more embarrassed . ||| 這件 事 弄 得 大家 都 比較 尷尬 . +I asked him to help me . ||| 我 請 他 幫 我 . +An old man was resting in the shade of the tree . ||| 一個 老人 在 樹蔭 下 休息 . +I must help my mother . ||| 我 必須 幫忙 我 母親 . +I will give you a book . ||| 我 會 給 你 一本 書 . +My camera does not need to be fixed . ||| 我 的 照相 機 不 需要 修理 . +I can start anytime . ||| 我 随时 可以 开始 . +What do you think would happen if the earth stopped spinning ? ||| 如果 地球 停止 自传 , 你 认为 会 发生 什么 ? +My father had me wash the car . ||| 父亲 让 我 洗 汽车 . +This is the best book that I have ever read . ||| 這 是 我 讀 過 的 最好 的 書 . +Tom helped Mary buy everything she needed . ||| 湯姆幫 瑪麗 買 了 她 所有 需要 買 的 東西 . +Who do you want to speak to ? ||| 你 想 跟 誰 說 話 ? +I hid in the tall grass . ||| 我 躲 在 高 草丛里 了 . +You said that you 'd help me . ||| 你 说 过 你 会 帮 我 的 . +Children generally have a higher body temperature than adults . ||| 小孩 的 体温 一般 比 大人 的 要 高 . +He quickly went out of the room . ||| 他 很快 地 走出 了 房間 . +I worked in a post office during the summer vacation . ||| 暑假 期间 , 我 在 邮局 工作 . +I will obey . ||| 我会 听从 指示 . +Come home . ||| 回家吧 . +I have a high opinion of this book . ||| 我 對 這 本書 評價 很 高 . +You must have been asleep . ||| 你 一定 睡著 了 . +He does not like fish . ||| 他 不 喜歡 吃 魚 . +Tom is escaping . ||| 湯姆 在 逃跑 . +I have tried to contact Tom . ||| 我 试 过去 联系 汤姆 . +I owe everything to Tom . ||| 我 什么 都 欠 汤姆 的 . +I will get started right away . ||| 我 會 立刻 開始 . +Mix the flour with two eggs . ||| 把 麵 粉 和 兩 顆 雞 蛋 混合 . +He was tired , but he kept working . ||| 他 累 了 , 但是 他 繼續 工作 . +Tom says he does not know how to swim . ||| 汤姆 说 他 不 知道 怎么 游泳 . +I forget where I put my hat . ||| 我 忘 了 我 把 我 的 帽子 放在 哪裡 了 . +I hear that he sold his house . ||| 我 聽 說 他 賣 掉 了 房子 . +Do not depend too much on others . ||| 不要 太 过于 依赖 别人 . +Please fill this bottle with water . ||| 請 把 這個 瓶子 裝滿 水 . +Do not laugh at him for making a mistake . ||| 不要 笑 他 犯 了 错误 . +Are not you going to go with me ? ||| 你 不要 跟 我 一起 走 嗎 ? +Tom was caught driving without a license . ||| Tom 被 抓到 無照 駕駛 . +He is not able to buy a car . ||| 他 不能 买车 . +Do you go to church on Christmas Day ? ||| 你 在 圣誕節 去 教堂 嗎 ? +My boss assigned the hard job to me . ||| 我 老板 把 艰巨 的 任务 指派 给 了 我 . +It is not necessary for you to quit the job . ||| 你 没 必要 辞掉 工作 . +He went bankrupt . ||| 他 破产 了 . +I prefer being poor to being rich . ||| 我 更 愿意 贫穷 而 不是 富裕 . +I hate silent movies . ||| 我 讨厌 无声电影 . +I respect the elderly . ||| 我 尊敬 长辈 . +It is impossible to master English in a short time . ||| 不 可能 短时间 内 学会 英语 . +Tom went over and sat down next to Mary . ||| 汤姆 来 了 , 坐到 了 玛丽 的 边上 . +You should read a lot of books while you are young . ||| 应该 趁 年轻 多 读点 书 . +The boat was tied with a short line . ||| 船 被 用 短 繩 繫 著 . +What was it we were talking about ? ||| 我们 那个 时候 讨论 的 是 什么 ? +Can I borrow your car ? ||| 我 能 借 你 的 车 吗 ? +I have looked everywhere , but I can not find my book . ||| 我什麼 地方 都 找 過 了 , 但 卻 找 不到 我 的 書 . +She substituted margarine for butter . ||| 她 用 人造黄油 代替 了 黄油 . +Were you able to do it ? ||| 你 有 能力 去 做 这个 吗 ? +Can I get my money back ? ||| 我 是不是 能 收回 我 的 钱 ? +It is very cold . ||| 天气 非常 寒冷 . +He likes to travel by himself . ||| 他 喜歡 獨自 旅行 . +His intelligence and experience enabled him to deal with the trouble . ||| 他 的 智慧 和 經驗 使 他 能 處理 這個 麻煩 . +We can not let them do that . ||| 我们 不能 让 他们 那么 做 . +Have you traveled anywhere recently ? ||| 你 最近 去 哪裡 旅遊 了 嗎 ? +I have changed my website is layout . ||| 我 改 了 一下 我 网站 的 版面设计 . +Is this your notebook ? ||| 這 是 你 的 筆記 本 嗎 ? +She will cry even when no one is looking . ||| 没 人 盯 着 她 的 时候 , 她 甚至 会 哭 . +It is not as hard as you think . ||| 那个 没 你 想象 的 那么 难 . +Nobody can stop me ! ||| 没 人 能 阻止 我 ! +What happened to your computer ? ||| 你 的 電腦 怎麼 了 ? +He came here ten minutes ago . ||| 他 十分 鐘 前 到 這裡 . +Are you happy now ? ||| 你 现在 高兴 吗 ? +Tom has spent the past three years in prison . ||| 湯姆 在 監 獄裡 待 了 三年 . +I do not think he is sincere . ||| 我 不 相信 他 是 真心 的 . +Have you ever seen such a beautiful sunset ? ||| 你 看 過 這麼 美的 夕陽 嗎 ? +Go to the patio . ||| 去 露台 . +I listen to the radio every night . ||| 我 每晚 都 听 收音机 . +I had hoped to meet you there . ||| 我 曾 希望 在 那裡 遇見 你 . +He gave us not only clothes but some money . ||| 他 不仅 给 了 我们 衣服 , 还有 一点 钱 . +It is hard for me to understand French when it is spoken quickly . ||| 法语 说 得 快 , 我 就 难以 理解 . +She eats nothing but vegetables . ||| 她 只 吃 蔬菜 . +Tom needs a change of scenery . ||| 汤姆 需要 换换 风景 . +Do not speak to anyone . ||| 你們 別 和 任何人 說 . +Is it something I said ? ||| 是 我 說 的 嗎 ? +Why do you need to read such a book ? ||| 为什么 你 要读 这样 一 本书 ? +Why are not you coming with us ? ||| 你 为什么 不 和 我们 一 起来 ? +Why do not we have dinner ? ||| 為 甚麼 我們 不吃 晚 飯 ? +He majors in English literature . ||| 他 主修 英國 文學 . +You have made progress . ||| 你 进步 了 . +I am a new student . ||| 我 是 个 新生 . +He has a car . ||| 他 有 辆车 . +You are as tall as I am . ||| 你 和 我 一样 高 . +Children should keep away from the river . It is dangerous . ||| 儿童 应该 远离 河流 . 有 危险 . +Could you take me to a movie ? ||| 你 帶 我 去 看 電影 好 嗎 ? +It would be ridiculous to spend all their money . ||| 花光 他們 所有 的 錢 會 很 荒謬 . +It is only a matter of time . ||| 這 只是 時間 的 問題 . +You are very talkative , are not you ? ||| 你 很 健谈 , 不是 吗 ? +Is that better ? ||| 那 更好 吗 ? +He put his hands in his pockets . ||| 他 把手 插進 口袋 裡 . +This is your dog . ||| 这 是 你 的 狗 . +Are you sure you do not want to sleep on it ? ||| 你 確定 你 不想 睡 在 它 上面 嗎 ? +I will go with you if necessary . ||| 如果 必要 的 話 , 我 會 和 你 一起 去 . +Abraham Lincoln , the 16th president of the United States , was born in a log cabin in Kentucky . ||| 伯 拉罕 · 林肯 , 美国 第 16 任 总统 , 生于 肯塔基州 的 一个 简陋 的 小 屋里 . +No one will talk . ||| 没人会 讲 . +This tea tastes good . ||| 這 茶 味道 不錯 . +Will you all be here tomorrow ? ||| 明天 你 一整天 都 會 在 這裡 嗎 ? +Please call me at my hotel later . ||| 等 一下 請 打 電話 到 我 住 的 旅館 . +I felt my hands tremble . ||| 我 感覺 到 我 的 手 在 震動 +They were alone in the library . ||| 他們 獨自 在 圖書館 裡 . +A truck was standing in the middle of the road . ||| 路 中间 有 一辆 卡车 . +She is as beautiful as Snow White . ||| 她 像 白雪公主 一樣 漂亮 . +Tom is living in Boston now . ||| 汤姆 现在 住 在 波士顿 . +Tom paid me back the money he owed me . ||| 汤姆 把 欠 我 的 钱 还给 我 了 . +Everybody will die . ||| 人 固有 一 死 . +Tom is a bit snobbish . ||| 汤姆 有 一点 势利 . +It can not be ! ||| 不 可能 ! +She is almost the same height as you . ||| 她 差不多 和 你 一样 高 . +You must not jump to conclusions . ||| 你 不 可以 妄下 結論 . +Tom was questioned by the police . ||| 汤姆 被 警察 盘问 . +A lot of houses were washed away by the flood . ||| 许多 房屋 被 洪水 冲走 了 . +It makes sense . ||| 那样 说 得 通 . +Read Lesson 10 from the beginning . ||| 從 第十 課 的 開頭 讀起 . +Tom said he is glad he could do that . ||| 湯姆 說 他 很 高興 他 能 做 . +I will try my best today , too . ||| 今天 我 也 会 努力 的 . +Draw a line from A to B. ||| 请 画 一条 从 A 到 B 的 线 . +If it rains tonight , I am not going to go out . ||| 如果 今晚 下雨 , 我 就 不 出去 . +Do not change your mind . ||| 不要 改變 你 的 心意 . +I think we should change the topic . ||| 我 認為 我們 該 換 個題 目 . +Do not forget smoking is bad for your health . ||| 不要 忘记 吸烟 对 你 的 健康 有害 . +Tom did not let his children go to Mary is party . ||| 湯姆 沒 有 讓 他 的 孩子 們 去 瑪莉 的 派 對 . +We were very sorry that we could not help them . ||| 我們 很 遺憾 無法 幫助 他們 . +The price of meat dropped . ||| 肉价 下跌 了 . +You have got to be joking . ||| 你 一定 是 开玩笑 ! +Choose the color you like the best . ||| 選 你 最 喜歡 的 顏色 . +I walked to school . ||| 我 走路 到 學校 . +All of the milk was spilled . ||| 所有 的 牛奶 都 溢出 去 了 . +How long is this visa good for ? ||| 這個 簽證 的 有效期限 是 多久 ? +We like to play soccer . ||| 我們 喜歡 踢足球 . +Water poured from the broken pipe . ||| 水 從 破裂 的 水管 傾瀉 而 出 . +I got him to fix my bicycle . ||| 我 讓 他 修理 了 我 的 腳踏車 . +Tom has been driving all day . ||| 汤姆 整天 都 在 开车 . +I do not know if I have the time . ||| 我 不 知道 我 有 沒有 時間 . +Spring has come . ||| 春天 到 了 . +I would like to change yen to dollars . ||| 我 想 把 日元 換成 美元 . +Afraid of hurting his feelings , I did not tell him the truth . ||| 怕 傷害 了 他 的 感情 , 我 沒有 告訴 他 真相 . +We kept them quiet . ||| 我們 讓 他們 保持 安靜 . +I did not know what to say . ||| 我 不 知道 該 說 些 什麼 . +Sorry , I do not have any change . ||| 不好意思 , 我 没 零钱 . +She asked him for help . ||| 她 向 他 求助 . +Tell me the correct answer . ||| 告诉 我 正确 的 答案 . +We went to the races . ||| 我们 去 看 了 比赛 . +They set out on a picnic . ||| 他们 出发 去 野餐 了 . +Tom followed . ||| 汤姆 跟着 . +You have lost weight , have not you ? ||| 你 减肥 了 , 不是 么 ? +Karaoke is good for reducing stress . ||| 卡拉 OK 對 減輕 壓力 有益 . +Good luck on the test ! ||| 祝 考试 好运 ! +I hear you , but I do not see you . ||| 我 听得见 你 , 但 我 看不见 你 . +You are in better shape than I am . ||| 你 的 體型 比 我 的 好 . +Tom never forgets to give his wife flowers on their wedding anniversary . ||| 汤姆 从没 忘记 在 婚礼 周年 纪念日 送给 他 妻子 花 . +Did you enjoy yourself yesterday ? ||| 你 昨天 玩 得 開心 嗎 ? +My father often goes to America on business . ||| 我 爸爸 经常 去 美国 出差 . +The man ate bread . ||| 這個 男人 吃 了 麵 包 . +It is already nine o 'clock . ||| 已经 9 点 了 . +She calmed down . ||| 她 冷靜 下來 . +The family ate dinner together . ||| 家裡 人 一起 吃 了 晚 飯 . +You should not have gone there . ||| 你 不 應 該 去 那裡 的 . +He invited me to dinner . ||| 他 邀請 我 吃 晚 飯 . +The rumor turned out to be false . ||| 谣言 [ 最后 ] 证明 是 假 的 . +Is Tom Canadian ? ||| Tom 是 加拿大人 嗎 ? +One after another , the animals died . ||| 動物 一個 接 一個 的 死亡 . +Is it next Monday that Tom returns ? ||| 汤姆 是 在 下个星期 一 回来 吗 ? +No arrests were ever made . ||| 根本 就 没 实施 过 逮捕 行动 . +I got over the difficulty with my characteristic tenacity . ||| 我 凭 韧性 克服 了 困难 . +Printing ink is in short supply . ||| 油墨 快没了 . +Can I eat my lunch here ? ||| 我 能 在 這裡 吃 午 飯 嗎 ? +I screwed up the very first note . ||| 我 搞砸 了 第一 個 音符 . +He is a tennis player . ||| 他 是 个 网球 球手 . +Are you the one who did that ? ||| 你 就是 做 那事 的 人 嗎 ? +The room smelled of tobacco . ||| 房里 有 股 烟味 . +A doctor was sent for at once . ||| 醫生 立刻 被 請來 了 . +You have been had . ||| 您 被 骗 了 . +She gave me a present . ||| 她 給 了 我 一件 禮物 . +One who has everything can lose everything . ||| 拥有 一切 的 人 可能 会 失去 一切 . +Tom complained that Mary never helped him . ||| 汤姆 埋怨 玛丽 从来不 帮 他 . +I have a home . ||| 我 有 一个 家 . +Take it . ||| 拿走 吧 . +He had an accident at work . ||| 他 在 工作 中 出 了 意外 . +Has she finished her work yet ? ||| 她 完成 了 她 的 工作 嗎 ? +Stop whining . ||| 别 再 埋怨 了 . +They helped one another to make the school festival a success . ||| 他们 互帮互助 , 把 校庆 搞 得 很 成功 . +Man is the only animal that can speak . ||| 人 是 唯一 会 说话 的 动物 . +I am leaving for Tokyo tomorrow . ||| 我 明天 要離 開去 東京 . +He was run over by a car . ||| 他 被 車 輾過 了 . +The universe is limitless . ||| 宇宙 浩瀚 無邊 . +The baby is playing with some toys . ||| 這個 小 嬰兒 正在 玩 一些 玩具 . +I have to take a test tomorrow . ||| 明天 我 必須 參 加考 試 . +Which do you like better , rock music or classical music ? ||| 你 比較 喜歡 哪 一個 , 搖滾樂 還 是 古典 音樂 ? +Please knock before you come in . ||| 进来 之前 请 敲门 . +What is the exchange rate today ? ||| 今天 的 匯率 是 多少 ? +I want to go to America some day . ||| 有 一天 我 要 去 美國 . +A good cook does not throw out yesterday is soup . ||| 一個 好 的 廚師 不 會 丟掉 昨天 的 湯 . +From what school did you graduate ? ||| 您 是从 哪个 学校 毕业 的 ? +Tom seems to really enjoy being in Boston . ||| 湯姆 看來 真喜 歡待 在 波士 頓 . +Let is take a trip to New York . ||| 去 纽约 旅行 吧 ! +You can not say that . ||| 你 不能 这么 说 . +I can still remember the time when we went on a picnic together . ||| 我 还 记得 我 和 你 一起 去 野餐 的 时候 . +We can not go outside because it is raining . ||| 因为 下雨 , 我们 不能 出去 . +I live too far away . ||| 我 住 得 太 遠 了 . +Is there anything in the box ? ||| 箱子 裡 有 任何 東西 嗎 ? +I like walking alone . ||| 我 喜歡 獨 自行 走 . +I am positive that he has finished . ||| 我 確信 他 已經 完成 了 . +We watched them play baseball . ||| 我們 看著 他們 打 棒球 . +He entered the army . ||| 他 加入 了 陸軍 . +Everyone knows that Tom speaks good French . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +All participants must be registered . ||| 所有 的 參加者 都得 註 冊 . +Getting started was difficult . ||| 开始 很 难 . +I have never seen Tom so angry . ||| 我 从没 见 过 汤姆 那么 生气 . +I have a black and a white dog . ||| 我 有 一只 黑狗 和 一只 白狗 . +Tom undressed and got into bed . ||| 汤姆 脱光 睡觉 了 . +I owe my success to him . ||| 我 把 我 的 成功 歸功 於 他 . +It is strange that he should say so . ||| 他 这么 说 很 奇怪 . +This is not the type that I like . ||| 这 不是 我 喜欢 的 类型 . +They say that she was born in Germany . ||| 他们 说 她 是 在 德国 出生 的 . +I remember this map . ||| 我 記得 這 張 地圖 . +You are a good cook . ||| 你 是 个 好 厨师 . +How did he find us ? ||| 他 怎麼 找到 我們 的 ? +He does not have any friends . ||| 他 没有 朋友 . +Could you call a doctor , please ? ||| 你 能 請 個 醫生 來 嗎 ? +Riding a horse is really thrilling . ||| 騎馬 真的 很 令人 興奮 . +The boy grew up to be a great statesman . ||| 这个 孩子 长大 后 成为 了 一个 伟大 的 政治家 . +Only a fool would do something like that . ||| 傻瓜 才 会 那么 干 . +We enjoyed swimming in the lake . ||| 我们 尽情 在 湖里 游泳 . +I can play soccer . ||| 我 會 踢足球 . +The firm went under due to lack of capital . ||| 公司 由于 缺乏 资本 倒闭 了 . +Do you study English ? ||| 你 学 英语 吗 ? +I have an opinion . ||| 我 有 一個 意見 . +I ran away in a hurry . ||| 我 趕快 跑 走 了 . +I still have not heard from him . ||| 我 還 沒 收到 他 的 信 . +Tom loves flowers . ||| 湯姆 熱愛 花卉 . +He comes here twice a week . ||| 他 一周 来 这儿 两次 . +This is not my key . ||| 這 不是 我 的 鑰匙 . +Many moons orbit around Saturn . ||| 許多 衛星 繞著 土星 運行 . +I have not had time to look for what you wanted . ||| 我 没 时间 找 你 想要 的 东西 . +They love that . ||| 他们 喜欢 那个 +The island is a paradise for children . ||| 这个 岛 是 孩子 们 的 天堂 . +He has a large family . ||| 他 有 一個 大家庭 . +The ice on the lake is too thin to bear your weight . ||| 湖上 的 冰 太薄 了 , 承受 不了 你 的 重量 . +Tom seems to be a fairly successful businessman . ||| 汤姆 看来 是 个 很 成功 的 商人 . +She gets good marks in English . ||| 她 英语 成绩 很 好 . +If the car breaks down , we will walk . ||| 如果 車子 壞 了 , 我們 就 走路 . +What happened to him ? ||| 他 發生 了 什麼 事 ? +We are adults . ||| 我们 已 是 成年人 了 . +This makes me happy . ||| 這 讓 我 開心 . +See you tonight . ||| 今晚 見 . +What have you done with my pen ? ||| 你 把 我 的 筆 怎麼 了 ? +The dog was hit by a truck . ||| 狗 被 卡車 撞 了 . +Come home before six . ||| 六点 之前 要 回家 . +I agree with you to some extent . ||| 我 在 一定 程度 上 同意 你 的 意見 . +I will go to the meeting . ||| 我 将要 去 参加 会议 . +I always enjoy listening to classical music when I have some free time . ||| 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +I heard it on the radio . ||| 我 從 收音 機 聽到 它 . +You 'd better start now . ||| 你 最好 現在 就 開始 . +If you are tired , just let me know . ||| 困 了 的话 就 说 哦 . +Let is continue the game after supper . ||| 讓 我們 在 晚 飯 后 繼續 這個 遊戲 . +He is much younger than Tom . ||| 他 比 Tom 年轻 得 多 . +She decorated her room with roses . ||| 她 用 玫瑰花 装饰 了 她 的 房间 . +You should emphasize that fact . ||| 你 應該 重視 那個 事實 . +This is the cheaper of the two . ||| 這 是 兩件 裡 便宜 的 那個 . +I will be staying here for another three days . ||| 我会 在 这儿 再 待 上 三天 . +There is a knife missing . ||| 少 一把 刀 . +Tom sent me an interesting text . ||| 汤姆 给我发 了 一条 有趣 的 短信 . +Do you have something to say ? ||| 您 有 什么 事 要说 吗 ? +Tom worries a lot about money . ||| 汤姆 很 担心 钱 的 问题 . +I have found a place to live . ||| 我 找到 了 个 住处 . +Three cubed is twenty @-@ seven . ||| 三 的 立方 是 二十七 . +I have not finished reading this book yet . ||| 我 還 沒讀 完 這 本書 . +The young should respect the old . ||| 年轻人 应该 尊敬 老人 . +I heard a knock at the door . ||| 我 聽到 了 敲門聲 . +The life span of a butterfly is short . ||| 蝴蝶 的 寿命短 . +I do not like science . ||| 我 不 喜欢 科学 . +He did not know what to say . ||| 他 不 知道 说 什么 好 . +I like red roses . ||| 我 喜歡 紅色 的 玫瑰 . +They all envied my new car . ||| 他们 都 羡慕 我 的 新车 . +Halley is Comet will come back in 2061 . ||| 哈雷彗星 將 在 2061 回來 . +I did not mean to be selfish . ||| 自私 不是 我 的 本意 . +I want to talk to him . ||| 我 想 跟 他 說 話 . +I like tennis very much . ||| 我 非常 喜歡 網球 . +This is a very beautiful flower . ||| 這 是 一朵 非常 美麗 的 花 . +How much did you pay ? ||| 您 付 了 多少 钱 ? +Why are you busy today ? ||| 你 今天 为什么 忙 ? +That person does not want to do anything . ||| 那人 甚麼 也 不想 做 . +Tom does not quite get it . Could you explain it to him again ? ||| 汤姆 不 大 明白 . 你 能 再 跟 他 解释 一遍 吗 ? +This turkey tastes good . ||| 这 只 火鸡 味道 很 好 . +No one else was hurt . ||| 没有 别的 人 受伤 . +We went to the movies last night . ||| 我們 昨晚 去 看 電影 了 . +What did Tom say ? ||| 汤姆 说 了 什么 ? +I understand it more or less . ||| 我 大概 懂 了 . +It seems that he knows everything . ||| 他 似乎 什麼 都 知道 . +I listened , but I did not hear anything . ||| 我 听 了 , 但 什么 也 没 听到 . +Did you buy juice ? ||| 你 買 果汁 了 嗎 ? +Can you put some suntan lotion on my back ? ||| 你 能 在 我 的 背上 涂 些 防晒霜 吗 ? +We are fighting against time . ||| 我們 在 跟 時間 鬥爭 . +The price of rice has come down . ||| 米价 下跌 了 . +Do not let anyone press this button . ||| 別 讓 任何人 按 這個 按 鈕 . +What time is it ? ||| 幾點 了 ? +The taller the tree , the more likely it is to be struck by lightning . ||| 树 高 遭雷击 . +He is like his father . ||| 他 像 他 父亲 . +My pulse is fast . ||| 我 的 脉搏 很快 . +After supper , she cleared the table . ||| 晚 飯 後 她 清理 了 桌子 . +I have nowhere to go now . ||| 我 现在 无处可去 . +My house has a small yard . ||| 我 的 房子 有 一個 小 院子 . +We are eating apples . ||| 我們 正在 吃 蘋果 . +I must go now . ||| 我 現在 必須 走 了 . +She made a mess of the work . ||| 她 把 工作 弄 得 一團糟 . +I would like to have this meat dish with your best white wine . ||| 我 想 在 吃 这 肉 喝 你 最好 的 白酒 . +Do you have any other questions ? ||| 你 有 任何 其他 的 問題 嗎 ? +Give me a glass of water , please . ||| 請 給 我 一杯 水 . +I do not for a moment think you are wrong . ||| 我 从没 认为 你 错 了 . +You need to know . ||| 你 有 必要 了解 . +Does anyone know Tom ? ||| 有人 認識 湯姆 嗎 ? +He disregarded my advice . ||| 他 不 顧 我 的 忠告 . +He gave her a piece of advice . ||| 他 給 了 她 一個 忠告 . +Asia is roughly four times the size of Europe . ||| 亚洲 的 大小 约 四倍 于 欧洲 . +This letter is wrongly addressed . ||| 这 封信 寄错 地方 了 . +I do not eat chicken skin . ||| 我 吃不下 鸡皮 . +I always kept my promises . ||| 我 一直 遵守 我 的 諾言 . +We were kids then . ||| 我们 那时 是 孩子 . +You do not need to speak so loud . ||| 你 不必 這麼 大聲 說 話 . +Tom apologized for what he did . ||| 湯姆 為 他 所 做 的 事 道歉 . +I will finish it by tomorrow afternoon . ||| 明天 下午 之前 我会 把 它 完成 . +I need help . ||| 我 需要 帮助 . +Tom did a good job predicting who would win the election . ||| 汤姆 预测 胜选者 做得好 . +I have a frog in my throat . ||| 我 的 喉嚨 裡有一 隻 青蛙 . +You are one of my best friends . ||| 你 是 我 最好 的 朋友 之一 . +Demand for occupational therapy has surged in recent years . ||| 这 几年 对 作业 疗法 的 需求 在 迅速 增长 . +The parking lot is free of charge . ||| 停车场 是 免费 的 . +Tom told me he 'd give me that book if I wanted it . ||| 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Do not open this door , please . ||| 請 不要 打開 此 門 . +We have not finished eating the watermelon yet . ||| 我們 還 沒 吃 完 這個 西瓜 . +I want to eat pizza tonight . ||| 我 今晚 想 吃 些 批 萨 . +When I entered the room , she was playing the piano . ||| 当 我 进入 那个 房间 的 时候 , 她 正在 弹钢琴 . +I have not seen him for a long time . ||| 我 很久没 见 过 他 了 . +My baby began crying , asking for milk . ||| 我 的 宝宝 开始 哭 了 , 他 想要 吃奶 . +I do not think that he will come . ||| 我 不 認為 他 會 來 . +Reading books is interesting . ||| 看书 很 有意思 . +In theory , there is no difference between theory and practice . But , in practice , there is . ||| 理论 上 说 , 理论 和 实践 没有 区别 . 但 实践 上 说 , 是 有 的 . +All things considered , I think you should go back home and take care of your parents . ||| 全盤 考慮 後 , 我 覺得 你 應該 回家 , 照顧 你 的 父母 . +You can come with me . ||| 你 可以 跟 我 來 . +Turn the flame down low . ||| 把 火 轉小 一點 . +Tom , your life is in danger . ||| 湯姆 , 你 的 生命 有 危險 . +I can not understand why Tom does not want to go with us . ||| 我 不 理解 为什么 汤姆 不想 和 我们 一起 走 . +Tom is an electrical engineer . ||| 湯姆 是 一個 電子 工程 師 . +I would like to see a doctor . ||| 我 要 看病 . +My father will come home at seven . ||| 我 爸爸 會 在 七點鐘 回家 . +This suit seems really expensive . ||| 这 西装 好像 真的 很贵 . +I am not sick . ||| 我 没 生病 . +That was Tom is choice . ||| 那 是 汤姆 的 选择 . +She really wants to go . ||| 她 特别 想去 . +I want you to meet my parents . ||| 我 想 讓 你 見 見 我 的 父母 . +The only difference between a bad cook and a poisoner is the intent . ||| 一個 差 勁 的 廚師 和 下毒 者 唯一 的 不同 在 於 他們 的 意圖 . +I was in school yesterday morning . ||| 昨天上午 我 在 學校 . +Please find a solution to the problem . ||| 请 找到 问题 的 解决 方法 . +Do people in your country eat rice ? ||| 在 您 國家 的 人 是 吃 米 飯 的 嗎 ? +I do not like rock music . ||| 我 不 喜欢 摇滚乐 . +My sister takes piano lessons twice a week . ||| 我 妹妹 每周 上 两次 钢琴课 . +This is just what I wanted . ||| 我 想要 的 就是 这个 . +I helped him yesterday . ||| 昨天 我 帮 了 他 . +Please knock on the door . ||| 请 敲门 . +If it rains tomorrow , I will just stay at home . ||| 如果 明天 下雨 , 我 就 待 在家 . +Will six o 'clock suit you ? ||| 六點鐘 你 方便 嗎 ? +I will be busy this afternoon . ||| 我 今天下午 會 很忙 . +I have done my best . ||| 我 已经 尽力 了 . +It is so early . ||| 太 早 了 . +I will study English at home . ||| 我 将 在家 学习 英语 . +Did you find the book interesting ? ||| 你 覺得 這 本書 有趣 嗎 ? +You must make up for the loss . ||| 您 必须 弥补 损失 . +We consider it a blessing . ||| 我们 把 它 当作 恩惠 . +Where are your things ? ||| 您 的 東西 在 哪裡 ? +I need a lawyer . ||| 我 需要 一名 律師 . +I am thinking about you . ||| 我 突然 想到 你 . +The conference ended at five . ||| 會議 在 五點鐘 結束 . +She called me many a time . ||| 她 叫 了 我 很 多次 . +You should not talk back to your parents like that . ||| 你 不 應該 對 你 父母 那樣 頂 嘴 . +The library is in the center of the city . ||| 图书馆 位于 城市 中心 . +All my friends will be there . ||| 我 所有 的 朋友 都 会 到 那儿 . +Will you please hold this edge ? ||| 能 不能 请 你 拿 着 这 端 ? +Tom is a good person . ||| Tom 是 一個 好人 . +I am positive that he is wrong . ||| 我 確定 他 是 錯 的 . +It is all you can really do . ||| 这 是 你 所 能 做 的 一切 了 . +Edison invented many useful things . ||| 愛迪生 發明 了 許多 有用 的 東西 . +A fire broke out at the inn where they were staying . ||| 火警 發生 在 他們 住 的 旅館 . +We want to know the facts . ||| 我们 想 知道 真相 . +Are you all listening to me ? ||| 你们 在 听 我 说 吗 ? +They are all the same size . ||| 他們 都 是 一樣 的 大小 . +Four hundred million people speak English as their first language . ||| 四億 人 以 英語 作為 他們 的 第一 語言 . +He appears to be strong and healthy . ||| 他 看起来 健康 强壮 . +Do you have any light beer ? ||| 你 有 任何 淡 啤酒 嗎 ? +I have never felt better . ||| 我 从来 没 感觉 那么 好 过 . +This is a dangerous mission . ||| 這 是 個 危險 的 任務 . +I will eat it here . ||| 我 會 在 這裡 把 它 吃 了 . +How many CDs do you have ? ||| 你 有 多少 张 CD ? +Tom does not know whether Mary is happy or not . ||| 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +I was just talking about Tom . ||| 我 仅仅 是 在 和 Tom 交谈 . +Would you lend me your bicycle ? ||| 你 可以 借 我 你 的 腳踏車 嗎 ? +A plastic dish will melt on the stove . ||| 塑料 盘子 在 烤箱 里 会化 的 . +Please have a seat and wait until your name is called . ||| 请 在 被叫 到 名字 之前 坐在 椅子 上 等候 . +It was not a very interesting novel . ||| 這 不是 一個 很 有趣 的 小 說 . +There was a big fire last night . ||| 昨晚 發生 了 一場 很大 的 火災 . +I work long hours . ||| 我 工作 數 小 時 . +Nothing is achieved without effort . ||| 没有 什么 是 不劳而获 的 . +A swarm of hornets attacked the children . ||| 一 窩 黃蜂 襲擊 了 孩子 們 . +I wish we had won the game . ||| 要是 我們 贏 了 這場 比賽 就 好 了 . +Jesus loves you . ||| 耶穌 愛 你 . +Hey , you ! What are you doing ? ||| 嘿 , 你 ! 你 在 幹 什麼 ? +Rio de Janeiro is perfectly safe as long as you stay out of the dangerous areas . ||| 如果 你 远离 危险 区域 , 里约热内卢 就是 完全 安全 的 . +I am sorry , I do not have change . ||| 不好意思 , 我 没 零钱 . +Do not worry about it . It is not your problem . ||| 不要 在意 , 不是 你 的 问题 . +News of the recent blast is all over the radio . ||| 收音 機 廣播 充斥 著有 關 最近 爆炸 的 新聞 . +I do not have money now . ||| 我 现在 没有 钱 . +That is not my line . ||| 这 不是 我 拿手 的 . +All men are created equal . ||| 人 人生 来 平等 . +I had intended to go there . ||| 我 本來 打算 去 那裡 . +I had no idea Tom was not happy . ||| 我 不 知道 汤姆 不 开心 . +We are in a hurry . ||| 我們 很 匆忙 . +She spent a good deal of money on her vacation . ||| 她 休假 期间 花 了 一大笔钱 . +I do not expect that they will support my view . ||| 我 不 期望 , 他们 能够 支持 我 的 观点 . +I do not know anybody here . ||| 我 不 認識 這裡 的 任何人 . +He has spent ten years in jail for murder . ||| 他 因為 謀殺 案 在 牢 裡 待 了 十年 . +Where are those posters now ? ||| 那些 海报 现在 都 到 哪里 去 了 ? +It is a secret . ||| 它 是 個 秘密 . +You are not even paying attention . ||| 你 根本 沒有 注意 . +Please pick up my dry cleaning . ||| 請 取回 我 乾 洗 的 衣服 . +It is our pleasure . ||| 这 是 我们 的 荣幸 . +I understand how to solve the problem . ||| 我 知道 怎么 解决 这个 问题 . +You 'd better have your hair cut at once . ||| 你 最好 立刻 剪 頭 髮 . +Are you available tonight ? ||| 今晚 有空 嗎 ? +Please shuffle the cards carefully . ||| 请 仔细 洗牌 . +I received a letter from her . ||| 我 收到 了 她 的 來信 . +In a sense , she is right , too . ||| 从 某种意义 上 来说 , 她 也 是 对 的 . +Do you want to get married first or have a child first ? ||| 你 想 我们 先 结婚 还是 先生 孩子 ? +The policeman grabbed the robber is arm . ||| 警察 抓著 小偷 的 胳膊 . +We plan to climb that mountain . ||| 我們 計劃 去 爬 那 座 山 . +These three pretty girls are all nieces of mine . ||| 这 三个 漂亮 的 女孩 都 是 我 的 侄女 . +Wash your feet . ||| 洗 你 的 脚 . +Say it in English . ||| 用 英语 说 . +Can you walk ? ||| 你 能 走 嗎 ? +We have been here before . ||| 这里 我们 以前 来 过 . +I like this color , too . ||| 我 也 喜歡 這個 顏色 . +I do not want to talk about myself . ||| 我 不想 談 我 自己 . +I am doing my homework . ||| 我 正在 做 我 的 作业 . +He has recovered from his bad cold . ||| 他 从 重感冒 中 恢复 了 过来 . +I suspect that they water down the beer in that pub . ||| 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +It is about time to go to school . ||| 差不多 该 去 学校 了 . +When did you begin studying English ? ||| 你 什么 时候 开始 学 英语 的 ? +We got there at the same time . ||| 我們 在 同一 時間 到 了 那裡 . +He was too drunk to drive home . ||| 他 喝酒 醉無法 開車 回家 . +You 'd better go to bed at once . ||| 你 最好 马上 去 睡觉 . +He earned his living as a teacher . ||| 他 以 當 老師 為 生 . +I will never leave you . ||| 我 永远 不会 离开 您 的 . +Who is the girl in this picture ? ||| 這 張 照片 裡 的 女孩 是 誰 ? +Do you have enough food ? ||| 你 有 足够 的 食物 吗 ? +He is very brave . ||| 他 很 勇敢 . +Tom knows that I do not like him . ||| 汤姆 知道 我 不 喜欢 他 . +He was snoring loudly while he slept . ||| 他 睡着 的 时候 , 打呼声 很 响 . +You are so beautiful ! ||| 你 太漂亮 了 ! +I can not help admiring his talent . ||| 我 不禁 欣賞 他 的 才華 . +He took a picture of the koala . ||| 他 為 無 尾 熊 拍照 . +Tom is speaking French . ||| 汤姆 在 说 法语 . +I have no idea what to wear . ||| 我 不 知道 要 穿 什麼 . +I want to go with you . ||| 我 想 和 你 一起 走 . +The capital of Brazil is Brasilia . ||| 巴西 的 首都 是 巴西利亚 . +He does not altogether trust me . ||| 他 並 不 完全 信任 我 . +That book is a new book . ||| 那 本書 是 一本 新書 . +We had a short vacation in February . ||| 2 月 我们 有个 短期 休假 . +I do not want to cause any more trouble . ||| 我 不想 再 惹事 了 . +Are not you Tom ? ||| 你 不是 湯姆 嗎 ? +Ask her when she comes back . ||| 等 她 回来 的 时候 问问 她 . +I am very busy these days . ||| 我 最近 很忙 . +Would you like anything else ? ||| 还有 什么 想要 的 吗 ? +How do you say " I love you " in French ? ||| “ 我爱你 ” 用 法语 怎么 讲 ? +What have you done with my pen ? It was here a minute ago . ||| 你 把 我 的 鋼筆 怎麼 了 ? 一分 鐘 前 它 還 在 這裡 . +You are very brave . ||| 你 非常 勇敢 . +She has a bit of a bad temper . ||| 她 脾气 有点 坏 . +You owe me an apology for that . ||| 关于 那件事 你 欠 我 一个 道歉 . +Please wish me luck . ||| 請祝 我 好 運 . +Yesterday I spent the whole day working . ||| 昨天 我 一整天 都 在 工作 . +He thought that he was a genius . ||| 他 認為 他 是 個 天才 . +According to the newspaper , there was a big fire last night . ||| 根據 報導 , 昨晚 有 一場 很大 的 火災 . +These fireworks are spectacular ! ||| 这些 焰火 真 壮观 ! +Why do not you grow up ? ||| 你 为什么 长不大 呢 ? +AI stands for artificial intelligence . ||| AI 代表 人工智能 . +I passed the city hall on my way to the station . ||| 我 去 車站 的 路上 路 過 了 市政 廳 . +He bought her a sweater . ||| 他 買 了 一件 毛衣 給 她 . +Would you lend me some money ? ||| 你 可以 借 我 一些 錢 嗎 ? +Are you coming tomorrow ? ||| 你 明天 要 來 嗎 ? +He froze with fear when he saw the snake . ||| 他 看 見 蛇 就 嚇 得 不動 了 . +Now let is get down to work . ||| 現在 讓 我們 開始 工作 . +See you . ||| 再见 ! +He is always been living in Tokyo . ||| 他 一直 住 在 東京 . +A boat suddenly appeared out of the mist . ||| 一艘船 突然 从 雾 中 出现 . +Do you have a soup bowl ? ||| 你 有 湯 碗 嗎 ? +I want you to go . ||| 我 要 你 去 . +I do not know if that is what Tom wants or not . ||| 我 不 知道 那 是不是 汤姆 想要 的 . +You can park here . ||| 这里 可以 停车 . +He does not have any friends to play with . ||| 他 没有 任何 朋友 玩 . +The other day I discovered a book written by my father . ||| 前 几天 我 发现 了 一本 我 父亲 写 的 书 . +Help yourself to anything you like . ||| 喜歡 什麼 就 隨便 吃 吧 . +I am sorry , I did not hear you . ||| 对不起 , 我 没有 听见 你 说话 . +We saw monkeys at the zoo . ||| 我們 在 動物 園裡 看到 了 猴子 . +I did not want to mislead anyone . ||| 我 不想 誤導 任何人 . +He is popular with the students . ||| 他 受到 學生 的 歡迎 . +You can not count on their help . ||| 你 不能 指望 他们 的 帮助 . +I am lost . ||| 我 迷失 了 . +I do not know what I should be doing right now . ||| 我 不 知道 , 我 现在 应该 做 什么 . +There is no salt . ||| 没有 盐 . +Because his salary is low , he can not buy that house . ||| 因為 他 的 薪水 太 低 , 他 買 不起 那棟 房子 . +Who is the man playing the violin ? ||| 那個 正在 拉 小提琴 的 男人 是 誰 ? +Tom could have called the police . ||| 汤姆 本 可以 叫 警察 的 . +Will you lend me your CD player for an hour ? ||| 你 能 借 我 你 的 CD 播放 機 一小 時 嗎 ? +Come and see me at eleven o 'clock . ||| 十一 點 鐘 來看 我 . +I rode my bicycle to the store . ||| 我 騎 了 我 的 自行 車 去 商店 . +Nobody understood why the elephant suddenly turned on its owner . ||| 没有 人 明白 为什么 大象 突然 攻击 了 它 的 主人 . +They had a rest for a while . ||| 他們 休息 了 一會兒 . +I will follow you wherever you go . ||| 無論 你 去 哪裡 我 都 會 跟著 你 . +Are you listening to English ? ||| 你 在 聽 英語 嗎 ? +Your book is on the desk . ||| 你 的 書 在 書 桌上 . +There were so many things I wanted to ask Tom . ||| 我 有 很多 事想问 汤姆 . +The x @-@ ray showed two broken fingers . ||| X光 片 显示 两根 手指 断 了 . +I have a lot of cats . ||| 我 有 很多 狗 . +Is there any coffee in the kitchen ? ||| 廚房 裡 有 咖啡 嗎 ? +You will not be able to catch the train . ||| 你 將 無法 趕 上火 車 . +She was accepted to Harvard . ||| 她 被 哈佛 大學 錄取 了 . +He is one of my neighbors . ||| 他 是 我 的 一個 鄰居 . +I wish you had come with us . ||| 要是 你 和 我們 一起 來 就 好 了 . +I am feeling much better today . ||| 我 今天 感觉 好多 了 . +This train leaves at nine o 'clock . ||| 這 班 火車 九點鐘 發車 . +They are required to work eight hours every day . ||| 他们 每天 必须 工作 8 小时 . +Their plan sounds interesting to me . ||| 他们 的 计划 对 我 来说 很 有意思 . +I can not do any better . ||| 我 做得好 到 不能 再 好 了 . +Do we have enough chairs ? ||| 我們 的 椅子 夠 嗎 ? +He was absent from school yesterday . ||| 他 昨天 没 来 上学 . +What is this smell ? ||| 这 是 什么 气味 ? +I got a letter from her . ||| 我 收到 她 的 來信 . +We are not short of oil in this country . ||| 我们 国家 不 缺 石油 . +Publication of the article was timed to coincide with the professor is birthday . ||| 文章 的 发表 被 预定 在 教授 生日 那天 . +He is a doctor . ||| 他 是 医生 来 的 . +Why was not Tom arrested ? ||| 為 甚麼 湯姆 沒 被捕 ? +Please turn off the television . ||| 請 把 電視 關掉 . +That was the first time that I 'd seen Tom so angry . ||| 那 是 我 第一次 见到 汤姆 如此 生气 . +I am sick . ||| 我 生病 了 . +This piano has probably not been tuned for years . ||| 这 台 琴 应该 好多年 没调 过音 了 . +I will call you every night . ||| 我 每晚 都 給 你 打 電話 . +They are fake . ||| 它们 是 假 的 . +We will deal with it tomorrow . ||| 我们 明天 解决 它 . +Do you mind if I open the door ? ||| 你 介意 我 開門 嗎 ? +I always dreamed of being a billionaire . ||| 我 總 是 梦想 著成 為 億萬 富翁 . +They make good use of their rooms . ||| 他們 好好 地 利用 他們 的 房間 . +You are mine . ||| 你 是 我 的 . +I suggest that we go out on Friday . ||| 我 建议 我们 星期五 出去玩 . +I am a bit drunk . ||| 我 有 點 醉 了 . +The news of his death spread around . ||| 他 去世 的 消息 傳遍 各地 . +The kettle is boiling . ||| 茶 壺 沸 了 . +He raised his hands . ||| 他 舉起 了 他 的 手 . +Who is the woman dressed in pink ? ||| 那個 穿 粉 紅色 衣服 的 女人 是 誰 ? +The ship made slow progress against the strong wind . ||| 這 艘 船 逆風而行 緩慢 前進 . +I would like to know the exact time . ||| 我 想 知道 確切 的 時間 . +You remember it better than I do . ||| 你 比 我 记得 好 . +The enemy launched an attack on us . ||| 敌人 对 我们 发起 了 攻击 . +Can I borrow your pencil for a bit ? ||| 我 能 用 一下 你 的 铅笔 吗 ? +I was able to succeed because of your advice . ||| 我 因為 有 你 的 建 議 纔 能 成功 . +We are on strike because the company has not improved our wages . ||| 我們 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +How much does this pen cost ? ||| 这 支 钢笔 要 多少 钱 ? +This factory manufactures CD players . ||| 这家 工厂 生产 CD机 . +The situation is getting worse by the day . ||| 情况 一天 比 一天 差 . +You must stop smoking . ||| 你 必须 停止 吸烟 . +It is very simple . ||| 这 很 简单 . +Pick up the phone . ||| 接 一下 电话 . +I swim once a week . ||| 我 每周 游 一次 泳 . +He was held in captivity . ||| 他 被 囚禁 了 . +Here is how we do it . ||| 以下 是 我们 怎么 做 的 . +We met in front of the school . ||| 我們 在 學校 前面 見面 了 . +I found the field trip very educational . ||| 我 發現 實地 考察 很 有 教育 意義 . +There is always something happening here . ||| 這裡 總 有 一些 事情 在 發生 . +My uncle made a will last year . ||| 我 叔叔 去年 立下 了 遺囑 . +Actinium was discovered by André @-@ Louis Debierne in 1899 . ||| 锕 在 1899 年 被 他 发现 . +English is spoken by more people than any other language . ||| 說 英語 的 人比 說 任何 其他 語言 的 人 多 . +Have you ever seen Mt . Fuji ? It is beautiful beyond description . ||| 你 看 過 富士山 嗎 ? 它 美 得 無法 形容 . +Islam first reached China about the middle of the 7th century . ||| 伊斯 蘭教 大約 在 七 世纪 中 傳到 中國 . +You are an optimist . ||| 你 是 个 乐观主义 者 . +Your memory is good . ||| 你 的 記憶力 很 好 . +The cancer has spread to her stomach . ||| 癌細胞 已經 擴散 到 她 的 胃 . +I was feeling blue all day . ||| 我 一整天 都 觉得 很 消沉 . +She is not yet heard the news . ||| 她 还 没 听到 这个 消息 . +He tried to sleep on the floor . ||| 他 試著 在 地板 上 睡覺 . +I despise you . ||| 我 鄙视 你 . +Tom is a grumpy old man . ||| 汤姆 是 个 脾气 暴躁 的 老人 . +I know that she has been busy . ||| 我 知道 她 一直 很忙 . +He is a bit energetic . ||| 他 有点 活泼 . +Do we know you ? ||| 我们 认识 你么 ? +I will drive you home . ||| 我 開車 送 你 回家 . +You are stepping into dangerous territory . ||| 你 進入 了 危險 區 . +I took an art class last year . ||| 我 去年 上 了 一堂 藝術 課 . +The Mona Lisa has an enigmatic smile . ||| 蒙娜丽莎 有着 神秘 的 微笑 . +Tom was hiding under the table . ||| Tom 躲 在 桌子 底下 . +Hurry up . ||| 趕快 ! +Kyoto is famous for its old temples . ||| 京都 以 古廟 有名 . +This airplane is capable of carrying 40 passengers at a time . ||| 这 架飞机 一次 可以 携带 40 名 乘客 . +The negotiation is off . ||| 谈判 中止 了 . +I think it will not rain tomorrow . ||| 我 認為 明天 不 會 下雨 . +He reads a good deal . ||| 他 读 很多 书 . +Tom does not drive as carefully as I do . ||| 汤姆 不 像 我 这样 开车 小心 . +Is it poisonous ? ||| 它 有毒 嗎 ? +Can you drive a car ? ||| 您 会 开车 吗 ? +My hobby is collecting old bottles . ||| 我 的 嗜好 是 收集 舊 瓶子 . +We postponed our departure because of the storm . ||| 我們 因為 風暴 推遲 了 起程 . +Were your mother and father home ? ||| 你 父母 親 在家 嗎 ? +Please come in . ||| 請 進來 . +We like you . ||| 我们 喜欢 你们 . +My sister usually walks to school . ||| 我 妹妹 通常 走路 去 學校 . +Does this book belong to you ? ||| 這 是 你 的 書 嗎 ? +I am not a university student , but I am brighter than them . ||| 我 不是 一個 大學 生 , 但 我 比 他們 更 聰明 . +God knows we did everything we could . ||| 上帝 知道 我们 做 了 我们 所能 做 的 事 . +It is almost three o 'clock . ||| 將近 三點 了 . +The thief got in without being noticed . ||| 小偷 在 沒有 被 發現 的 情況 下 進去 了 . +The Rhine flows between France and Germany . ||| 萊茵 河流 經 法國 和 德國 國界 . +We gave him up for dead . ||| 我們 為 死者 放棄 了 他 . +What is the problem with your computer ? ||| 你 的 电脑 有 什么 问题 ? +I will be leaving for Australia next month . ||| 我 下個月 將 去 澳洲 . +They granted his request . ||| 他們 批准 了 他 的 請求 . +This is the most massive structure I have ever seen . ||| 这 是 我 所 见 过 的 最 大型 的 构造 了 . +Tom does not have the time . ||| 汤姆 没有 时间 . +Tom never turned up again . ||| 湯姆 沒有 再 出現 . +I do not want to drink anything . ||| 我 什么 都 不想 喝 . +Do you not understand basic logic ? ||| 你 不 懂 基本 逻辑 吗 ? +I study Chinese every day . ||| 我 每天 讀 中文 . +Do not throw rocks into the river . ||| 不要 往 河裡 扔 石頭 . +Is Tom home ? ||| 汤姆 在 家里 吗 ? +I am really sorry about what happened last night . ||| 我 对 昨天晚上 发生 的 事情 感到 非常 的 抱歉 . +He set a precedent . ||| 他 開 了 先河 . +Most boys like computer games . ||| 大多数 男生 喜欢 电脑游戏 . +Germany adopted a social security system in the 1880 is . ||| 德国 在 1880 年代 采取 了 一种 社会保障 制度 . +I can eat anything but onions . ||| 除了 洋葱 我 什么 都 可以 吃 . +Tom is coughing again . ||| 汤姆 又 在 咳嗽 了 . +Do you still buy lottery tickets ? ||| 你 還 買 彩票 嗎 ? +You are a friend of Tom is , are not you ? ||| 你 是 湯姆 的 一個 朋友 , 不是 嗎 ? +We are going to paint the wall . ||| 我们 准备 刷墙 . +Never say never . ||| 永远 不要 说 永远 . +He often goes with her to watch movies . ||| 他 常 和 她 一起 去 看 电影 . +You can do it , can not you ? ||| 你 可以 做到 , 不是 嗎 ? +There are some boys under the tree . ||| 樹下 有 一些 男孩 . +Tom is not smiling . ||| 汤姆 没在 笑 . +He should have the right to decide for himself . ||| 他 应该 有 权利 去 自己 做 决定 . +I lost my umbrella . ||| 我 丢 了 我 的 伞 . +I see a woman wearing black . ||| 我 看见 一个 穿 黑衣服 的 女人 . +I have nothing better to do . ||| 我 没有 其他 更好 的 事情 去 做 . +Do as I say . ||| 按 我 說 的 做 . +I used to eat like a pig . ||| 我 曾经 像 猪 一样 吃 . +We suggest raising the fees . ||| 我們 建議 提高 收費 . +Are you studying English ? ||| 你 在 研讀 英語 嗎 ? +Lift your right arm . ||| 舉起 你 的 右臂 . +I have no objection to your plan . ||| 我 不 反 對 你 的 計劃 . +How far away is your school ? ||| 你 的 学校 有 多 远 ? +I had no idea it would put you to so much trouble . ||| 我 一点 都 不 知道 这 会 给 你 带来 那么 多 问题 . +I will be back at ten . ||| 我 十点 回来 . +You can buy it for a thousand yen or so . ||| 你 能 以 大约 1000 日元 买下 它 . +Do we have enough food ? ||| 我们 有 足够 的 食物 吗 ? +It says in the Bible , " Man shall not live on bread alone . " ||| 圣经 里 有 一句 话 , 叫做 “ 人 不能 只 靠 面包 生活 ” . +You are not invited . ||| 你 没 受到 邀请 . +Do not beat around the bush . ||| 不要 拐彎抹角 . +I went to the park last Sunday . ||| 上個 星期天 我 去 了 公園 . +This system has obvious defects . ||| 這個 系統 有些 明顯 的 缺陷 . +One of the children left the door open . ||| 其中 一個 孩子 讓 門 開著 . +Tom took the clock apart . ||| 汤姆 把 钟 拆开 了 . +She liked him right off . ||| 她 立刻 喜歡 上 他 了 . +I can not believe you love me . ||| 我 不能 相信 你 愛 我 . +Did your uncle let you drive his car ? ||| 你 叔叔 让 你 开 他 的 车 了 吗 ? +Jupiter is the largest planet in the Solar System . ||| 木星 是 太陽系 中 最大 的 行星 . +Not every child likes apples . ||| 不是 每 一个 孩子 喜欢 吃 苹果 . +I would like to go to London . ||| 我 想要 去 伦敦 . +We are having fun . ||| 我们 在 高兴 地玩 . +Einstein loved playing the violin . ||| 愛 因斯 坦 喜歡 拉 小提琴 . +Our baby cannot talk yet . ||| 我家 宝宝 还 不会 说话 . +Read as much as possible . ||| 盡 可能 地 多 閱讀 書籍 . +Let is play baseball ! ||| 我們 去 打 棒球 吧 . +How far away is the airport ? ||| 到 机场 有 多 远 ? +The pirates boarded the ship . ||| 海盜 們 上 了 船 . +If we were supposed to talk more than listen , we would have been given two mouths and one ear . ||| 如果 我們 應 該少 聽 多 說 話 , 那麼 我們 應該 得到 兩個 嘴巴 一 隻 耳朵 才 是 . +If he had taken his doctor is advice , he might still be alive . ||| 如果 他 听 了 他 医生 的 建议 , 他 可能 还 活着 . +I do not have any experience . ||| 我 什么 经验 都 没有 . +I like dogs , but my sister likes cats . ||| 我 喜歡 狗 , 但 我 姊 喜歡 貓 . +It can not be true . ||| 那 不 可能 是 真的 . +When did you learn to swim ? ||| 你 什么 时候 学会 游泳 的 ? +He seems to be ill . ||| 他 好像 病 了 . +We have to look into the disappearance of the doctor . ||| 我们 必须 调查 医生 的 失踪案 . +I can read Spanish easily . ||| 我 能 很 輕 鬆 地 讀 西班牙文 . +Tom remained standing as the others sat down . ||| 别人 都 坐下 了 , 汤姆 还 站 着 . +He is the man you met the other day . ||| 他 是 前 几天 和 你 见过面 的 那个 人 . +I would like to go to the mall . ||| 我 想 去 商场 . +I am reading . ||| 我 在 读书 . +I took it for granted that he would pass the exam . ||| 我 理所当然 地 觉得 , 他 会 通过 考试 . +I do not think I will ever meet him . ||| 我 不 認為 我 會 再 跟 他 見 面 . +You do not have to help me . ||| 你 不用 帮 我 . +The space race was an exciting time in history . ||| 太空 跑步 是 历史 上 激动人心 的 时刻 . +Few people think so . ||| 很少 人 这么 认为 . +I can not look at this painting without thinking of my mom . ||| 我 無法 看著 這 幅畫 而 不 想起 我 母親 . +Why do you think I am thinking about you ? ||| 你 为什么 会 认为 我 在 想 你 ? +He got accustomed to the new way of living . ||| 他 适应 了 新 的 生活 方式 . +I agree with you on this issue . ||| 我 同意 你 對 這 問題 的 看法 . +My boss made me work overtime . ||| 我 的 老 闆 要 我 加班 . +What do you think of it ? ||| 你 認為 如何 ? +It is freezing . ||| 天氣 好 冷 . +Tom sat at his desk , pretending to study . ||| 湯姆 坐在 桌前 , 装作 在 學習 . +She gave birth to a baby boy . ||| 她 生下 了 一個 男 嬰 . +It may be that he likes his job . ||| 他 可能 喜欢 他 的 工作 . +Tom has not talked to Mary in years . ||| 汤姆 多年 没有 和玛丽 说话 了 . +I do not like early morning meetings . ||| 我 不 喜歡 在 清晨 開 的 會議 . +My house is old and ugly . ||| 我 的 房子 又 舊 又 難 看 . +Do you believe in fairies ? ||| 你 相信 神話傳說 嗎 ? +I would like to send this package to Japan . ||| 我 想 把 這個 包裹 寄 到 日本 . +Are you mad ? ||| 您 生气 了 吗 ? +Can you help me ? ||| 您 能 帮 我 吗 ? +I feel comfortable in his company . ||| 我 在 他 的 公司 裡 覺得 很 舒服 . +I want that bag . ||| 我 想要 那個 袋子 . +Tom does not know how to have fun . ||| 汤姆 不 知道 怎样 玩 得 开心 . +Would you carry my luggage upstairs ? ||| 你 可以 把 我 的 行李 拿到 樓上 嗎 ? +You gave me only fifty cents . ||| 你 只 給 了 我 五十 美分 . +Do you think Tom will let us do that ? ||| 你 認為 湯姆會 讓 我們 做 嗎 ? +That is an imitation . ||| 那 是 一個 仿造品 . +Do you deliver on Sundays ? ||| 你们 周日 送货 吗 ? +I can not work for this company anymore . ||| 我 没法 再 在 这家 公司 里面 工作 了 . +I just had dinner with some of Tom is friends . ||| 我 刚 跟 汤姆 的 一些 朋友 吃 了 晚饭 . +Could you show me that necktie ? ||| 你 能 給 我 看看 這條 領帶 嗎 ? +You have many books . ||| 你 有 许多 书 . +Will you please turn down the radio ? ||| 請 你 把 收音 機關 小聲 一點 好 嗎 ? +He is my youngest brother . ||| 他 是 我 最 年轻 的 兄弟 . +I hope that you are very well . ||| 我 希望 你 很 健康 . +It is food . ||| 它 是 食物 . +I am not the boss . ||| 我 不是 老 闆 . +I worked a lot this week . ||| 我 这周 干 了 很多 活 . +Tom blew out all the candles on the cake . ||| 汤姆 吹灭 了 蛋糕 上 的 所有 蜡烛 . +They will not pass ! ||| 他們 不 會 通過 的 ! +The dictionary comes in two volumes . ||| 那 本词典 分为 两卷 . +One good friend is better than ten relatives . ||| 一个 好友 胜过 十个 亲戚 . +This matter is very urgent . ||| 這件 事 非常 緊急 . +Are those new shoes ? ||| 那 是 新 买 的 鞋子 吗 ? +I am not particularly thirsty right now . ||| 我 现在 不 特别 渴 . +He showed interest in the plan . ||| 他 對 這個 計劃 表示 了 興趣 . +It is bad manners to point at people . ||| 用 手指 点 别人 不 礼貌 . +You 'd better not go today . ||| 你 今天 最好 不要 去 . +Tom and Mary own a small organic farm . ||| 汤姆 和玛丽 拥有 一个 小型 的 有机 农场 . +My phone was out of order . ||| 我 的 電話 壞 了 . +I did not pass . ||| 我 没 通过 . +Several dozen young people participated in the demonstration . ||| 几十个 年轻人 参加 了 示威游行 . +I cannot afford to buy a car . ||| 我 買 不 起 一輛 車 . +He runs in the park every day . ||| 他 每天 都 在 公园 中 跑步 . +The baby fell asleep in the cradle . ||| 宝宝 在 摇篮 里 入睡 了 . +I would like to retract my previous statement . ||| 我 想 撤回 我 之前 的 陈述 . +I do not feel much like talking . ||| 我 不太想 說 話 . +Tom wrote postcards to us . ||| Tom 寫 明信片 給 我們 . +When would you like to see him ? ||| 你 想要 什麼 時候 見 他 ? +I do not remember where I bought it . ||| 我 记不起来 我 在 哪里 买 的 了 . +He flatly refused to let me in . ||| 他 斷然 地 拒絕 讓 我 進去 . +Tom helped me fix my watch . ||| 汤姆 帮 我 修好 了 我 的 手表 . +He is very smart , and he is handsome too . ||| 他 很 聪明 , 而且 他 很 帅 . +I am on the roof now . ||| 我 现在 在 屋顶 上 . +Graham Greene is my favorite author . ||| 格雷厄姆 格林 是 我 最 喜歡 的 作家 . +I found it best to say nothing about the matter . ||| 我 觉得 什么 都 不 说 是 最好 的 . +He swam until he could swim no more . ||| 他 游到 不能 游 为止 . +He must love you . ||| 他 一定 很 愛 你 . +Clean the room . ||| 打掃 房間 . +She wrote 5 novels in 5 years . ||| 她 在 5 年 里 写 了 5 本 小说 . +Mary asked her son to behave himself . ||| 瑪麗 要求 她 的 兒子 守 規矩 . +I went there yesterday . ||| 我 昨天 去 那儿 了 . +I have to get my computer repaired . ||| 我 必須 把 我 的 電腦 拿去 給 人家 修理 . +Tom does not like this color . ||| 汤姆 不 喜欢 这种 颜色 . +I do not want either of them . ||| 它们 中 没有 我 要 的 . +I have just finished eating . ||| 我 刚刚 吃 完 . +My uncle made me serve as interpreter . ||| 我 舅舅 讓 我 擔任 翻譯 . +I did not go to school last month . ||| 我 上 個 月 沒上 學 . +Open fire ! ||| 开火 ! +The roof was damaged by the storm . ||| 屋頂 被 暴風雨 損壞 了 . +A foreign language can not be mastered in a year or so . ||| 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +Do not move , or I will shoot you . ||| 別動 , 不然 我 就 開 槍 射 你 . +You should take up golf . ||| 你 应该 开始 从事 高尔夫 . +You owe me money . ||| 你 欠 我 钱 . +I know New York like the back of my hand . ||| 我 对 纽约 了如指掌 . +This is a miracle . ||| 这 是 一个 奇迹 . +You should keep your promise . ||| 你 應該 信守 諾 言 . +What is Tom doing ? ||| 汤姆 在 做 什么 ? +Kill them . ||| 殺 了 他們 +The company invested a lot of money in this project . ||| 該 公司 在 這個 企劃 中 投入 了 很多 錢 . +The medicine worked marvels . ||| 这 药 创造 了 奇迹 . +April showers bring May flowers . ||| 四月 春雨 , 五月花 . +I am always here . ||| 我 一直 在 這裡 . +She had her handbag stolen . ||| 她 的 手提包 被 偷 了 . +She gave me a shy smile . ||| 她 給 了 我 一個 靦腆 的 笑容 . +I advertised my car for sale . ||| 我 登廣 告賣 我 的 車 . +There is a big supermarket in my neighborhood . ||| 在 我 的 邻近 区域 有 一个 大 超市 . +He is a good person . ||| 他 是 个 好人 . +Refugees poured in from all over the country . ||| 难民 从 整个 国家 涌来 . +What do you think about this plan ? ||| 你 覺得 這個 計劃 怎麼樣 ? +How much is the rent per month ? ||| 一個 月 的 租金 多少 ? +I will not talk to him anymore . ||| 我 不 會 再 跟 他 說話 了 . +No comment . ||| 无可奉告 . +Did you bring an umbrella with you ? ||| 你 有 帶 雨 傘 嗎 ? +Thousands of candles illuminated the church during the ceremony . ||| 数以千计 的 蜡烛 点亮 了 仪式 中 的 教堂 . +I will have to think about it . ||| 我 将 考虑 考虑 . +Tom still drinks , but not as much as he used to . ||| 汤姆 还是 喝 , 但 不 像 以前 那么 多 了 . +Tom can swim almost as fast as I can . ||| 汤姆 几乎 能 游 得 跟 我 一样 快 . +Yes , it is such a nice evening . ||| 是 的 , 今天 晚上 很 愉快 . +The doctor told her that she should take a rest . ||| 医生 告诉 她 要 静养 . +Do you know how to ride a horse ? ||| 你 会 骑马 吗 ? +My job is to wash dishes . ||| 我 的 工作 是 洗盤子 . +In the summer I wear short @-@ sleeved shirts . ||| 夏天 我 穿 短袖 衬衫 . +Tom did not have any family . ||| 过去 汤姆 没有 家 . +I 'd wear a helmet . ||| 我 要 戴 頭盔 . +Tom speaks French fluently . ||| 湯姆 的 法語 說 的 很 流暢 . +I am interested in English . ||| 我 对 英语 感兴趣 . +It is just what I expected . ||| 它 正是 我 所 期待 的 . +I went on reading . ||| 我 继续 阅读 . +I played tennis after school . ||| 放学 后 我 打 了 网球 . +You are barking up the wrong tree . ||| 你 白費力 氣 了 . +She is Tom is sister . ||| 她 是 Tom 的 姐妹 . +Tom is a good golfer . ||| 汤姆 是 个 不错 的 高尔夫球 手 . +Mary is the prettiest girl in her class . ||| 玛丽 是 班 里面 长 得 最 漂亮 的 女孩 . +Things are totally different now . ||| 現在 全都 不 一樣 了 . +All good things must come to an end . ||| 天下 无不 散 之 筵席 . +I think I have found something of yours . ||| 我 認為 我 找到 一些 你 的 東西 了 . +I am going to the store now . ||| 我 現在 要 去 這家 商店 . +We watched a baseball game on television . ||| 我們 看 了 電視 上 的 棒球 比賽 . +This is the only camera I have got . ||| 這 是 我 唯一 的 相機 . +She assigned the work to him . ||| 她 把 這個 工作 派 給 他 做 . +I will finish it as quickly as I can . ||| 我会 尽快 完成 的 . +Tom looked around , but saw no one . ||| Tom 看 了 看 周圍 , 但 沒 看到 任何人 . +I felt lonely . ||| 我 觉得 很 孤独 . +The large crowd roared in approval as Mark Knopfler played the first few bars of " Money for Nothing " . ||| 就 像 马克 · 诺弗勒 早期 演唱 的 歌曲 《 金钱 无用 》 一样 , 绝大多数 的 人 依然 高呼 赞成 “ 金钱 无用论 ” . +I told Tom that I thought his house needed to be painted . ||| 我 告诉 汤姆 我 认为 他 的 房子 要 刷漆 . +He is very handsome . ||| 他 很 英俊 . +I do not have a lot of work , but it is enough to keep me in the office this week . ||| 其实 我 工作 并不多 , 但 足以 让 我 这周 在 办公室 里 忙 着 了 . +I am not finding anything . ||| 我 甚麼 也 沒 找到 . +Please turn off the light . ||| 請 關燈 . +I can not imagine life without you . ||| 我 無法 想像 沒有 你 的 生活 . +Are you carrying a lot of money ? ||| 你 身上 有 很多 钱 吗 ? +Do not play baseball here . ||| 不要 在 這裡 打 棒球 . +Pay the cashier on the way out . ||| 在 出口 處 的 收银台 付款 . +The poor man has no relatives . ||| 窮 人 無 親戚 . +Your question has no answer . ||| 你 的 问题 没有 答案 . +You were at my wedding . ||| 你 出席 了 我 的 婚礼 . +Playing cards is very interesting . ||| 打牌 很 有意思 . +I expect that he will help us . ||| 我 期望 他 會 幫助 我們 . +Tom started the engine . ||| 湯姆 發動 了 引擎 . +That hat cost around fifty dollars . ||| 那 頂 帽子 花費 了 大約 五十 美元 . +They came all the way from Brazil . ||| 他们 从 巴西 远道而来 . +Tom is studying to become a marine biologist . ||| 汤姆 正在 学习 以 成为 海洋 生物学家 . +We must reduce energy demand . ||| 我们 必须 降低 能源需求 . +Thank you for your translation . ||| 謝謝 你 的 翻譯 . +Which one do you think is correct ? ||| 你 認為 哪 一個 是 正確 的 ? +It happened at a quarter past eleven . ||| 它 發生 在 十一 點 一刻 . +Tom was completely exhausted . ||| 湯姆 完全 筋疲力盡 了 . +There are a lot of people in the park . ||| 公园 里 有 很多 人 . +There is narrow road to the village . ||| 到 村 莊 有 條 窄路 . +The teacher pointed her finger at me and asked me to come with her . ||| 教师 用 手指 指着 我 , 要 我 跟 她 走 . +I finished the work in less than an hour . ||| 我 用 不到 一 小时 就 完成 了 这个 工作 . +The only thing I want to do is go fishing . ||| 我 唯一 想 做 的 是 去 釣 魚 . +I will take you for a swim . ||| 我 會 帶 你 去 游泳 . +I met Mary yesterday . ||| 昨天 我 遇見 了 瑪麗 . +Come with me now . ||| 现在 就 跟我来 . +Let is not fool ourselves . ||| 我们 别自 骗自 了 . +His office is on the eighth floor . ||| 他 的 辦 公室 在 八樓 . +We are against working on Sundays . ||| 我们 反对 星期日 工作 . +Even if I knew the answer , I would not tell you . ||| 即使 我 知道 答案 , 我 也 不会 告诉 你 . +It is very important to get enough rest . ||| 充足 的 休息 十分 重要 . +I have wine . ||| 我 有 酒 . +What are you laughing at ? ||| 你 笑 什么 呢 ? +It is close to eleven . It is about time we went to bed . ||| 快 11 点 了 . 我们 该 上床睡觉 了 . +Tom was crying . ||| 汤姆 当时 在 哭 . +Tom needed treatment . ||| 汤姆 需要 接受 治疗 . +Tom was fired in October . ||| 湯姆 在 十月 被 解雇 了 . +Who were you speaking with ? ||| 你 和 谁 说话 呢 ? +I could not have done it without you . Thank you . ||| 没有 你 我 无法 做到 , 谢谢 . +This dictionary is not the most recent version . ||| 這 本 字典 不是 最新版 的 . +Where is your dog ? ||| 你 的 狗 在 哪儿 ? +The dress that Mary is wearing looks expensive . ||| 玛丽 穿 的 衣服 看起来 价格不菲 . +He glanced at his watch . ||| 他 看 了 一眼 他 的 表 . +Where am I ? ||| 這 是 什麼 地方 ? +That is the point . ||| 这 正是 问题 的 关键 . +Well done ! ||| 做得好 ! +That is very rare . ||| 那 太 稀少 了 . +They got thoroughly wet in the rain . ||| 他們 在 雨 中 被 淋得 全身 都 濕 了 . +Her hair is streaked with gray . ||| 她 的 頭 髮 中 夾 有 白 髮 . +We took turns driving the car . ||| 我們 輪流 開車 . +Do you have school on Saturdays ? ||| 你 星期六 要 上 學 嗎 ? +My parents live in the country . ||| 我 父母 住 在 鄉下 . +He jumped onto the table . ||| 他 跳 上 了 桌子 . +If it is fine tomorrow , we will go on a picnic . ||| 如果 明天 天气 好 , 我们 就 去 野餐 . +Tom is a Vietnam veteran . ||| 汤姆 是 一个 越军 退役军人 . +Come inside . ||| 进来 . +There is something I have to say . ||| 有些 事 我 必須 說 . +Tom is indispensable . ||| 汤姆 是 必不可少 的 . +We receive many telephone calls from abroad . ||| 我們 接到 許多 來 自 國外 的 電話 . +I will swim . ||| 我 要 游泳 . +She looks unhappy . ||| 她 看 起來 不快 樂 . +He is sure to succeed . ||| 他 一定 会 成功 . +She is good at handling children . ||| 她 對 孩子 很 有 一套 . +What do you think about it ? ||| 关于 那个 你 有 什么 看法 ? +She gave birth to twin girls . ||| 她 生 了 雙 胞胎 女兒 . +I would like to purchase some boots . ||| 我 想 买 些 靴子 . +" When will you come back ? " " It all depends on the weather . " ||| “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +I have been in prison . ||| 我 進過 監獄 . +He went to London , where he stayed for a week . ||| 他 去 了 伦敦 , 并 在 那儿 待 了 一周 . +She was busy doing her homework . ||| 她 忙 著 做 她 的 功課 . +I am the tallest one in the class . ||| 我 在 班里 是 最高 的 . +Another Scotch and water , please . ||| 麻煩 再來 一杯 威士忌 和 加水 . +I prefer to travel by air . ||| 我 寧願 搭 飛機 旅行 . +He seldom , if ever , goes to church . ||| 他 很少 , 如果 有 的 話 , 去 教堂 . +I have already done my homework . ||| 我 已經 做 了 我 的 家庭 作業 . +The boys kept quiet . ||| 男孩子 們 保持 安靜 . +Stop reading . ||| 别 再 念 了 . +You need to shed some pounds . ||| 你 需要 甩掉 几磅 . +He walks his dog every morning . ||| 他 每天 早晨 溜 狗 . +I am a student , but he is not . ||| 我 是 個 學生 , 但 他 不是 . +Have you turned in your report ? ||| 你 交報 告 了 嗎 ? +Have not I met you before ? ||| 我 以前 沒見 過 你 嗎 ? +Why did you cry so much ? ||| 你 為 甚麼 哭 得 這麼 厲害 ? +We made pancakes for breakfast . ||| 我们 早餐 做 了 煎饼 . +The weather was not only cold , it was also damp . ||| 天气 又 冷 又 湿 . +I think Tom probably likes you a lot . ||| 我 認為 湯姆 可能 很 喜歡 你 . +You will soon get accustomed to this cold weather . ||| 你 很快 就 會 習慣 這種 冷天 氣 . +There is still no end in sight . ||| 還是 看 不見盡頭 . +We need to find Tom as quickly as we can . ||| 我們 要 盡快 找到 湯姆 . +Thank you for your cooperation . ||| 謝謝 您 的 合作 . +She believes whatever he says . ||| 她 相信 他 說 的 任何 事 . +His mother was a school teacher . ||| 他 的 母親 是 一名 學校 老師 . +What time is it in Boston now ? ||| 波士顿 现在 几点 ? +Not being tall is not a disadvantage . ||| 长 不 高 不是 坏事 . +Are you certain this is what you want ? ||| 你 确定 这 就是 你 想要 的 吗 ? +What will you have for lunch today ? ||| 你 今天 午餐 吃 什么 ? +He is not a hero . ||| 他 不是 英雄 . +This is difficult . ||| 这 很 难 . +An unforgettable event occurred . ||| 一场 令人难忘 的 事件 发生 了 . +Our fridge is broken . ||| 我們 的 冰箱 壞 了 . +You 'd better hurry . ||| 你 最好 快点 . +I am incredibly tired . ||| 我 累死 了 . +They left . ||| 他们 离开 了 . +I am not busy now . ||| 我 現在 不忙 . +I still do not understand what is happening . ||| 我 還 是 不 明白 出 了 什麼 事 . +Would you like to drink anything ? ||| 你 想 喝 點 什麼 嗎 ? +This book is easy enough for them to read . ||| 这 本书 他们 读 起来 够 简单 了 . +Make sure you get plenty of rest . ||| 你 務 必要 好好 地 休息 . +We immediately became friends . ||| 我們 馬 上 成為 了 朋友 . +Tom heard Mary is voice . ||| 汤姆 听见 了 玛丽 的 声音 . +Yesterday was my seventeenth birthday . ||| 昨天 是 我 17 岁 生日 . +Let them decide . ||| 讓 他們 決定 . +The two of us do not belong here . ||| 我们 俩 不 属于 这儿 . +He decided to become a pilot . ||| 他 決定 成為 一名 飛行員 . +I continued singing . ||| 我 繼續 唱歌 . +He felt in his pocket for his wallet . ||| 他 在 口袋 里 摸 着 找 他 的 钱包 . +I do not think he is sincere . ||| 我 不 觉得 他 很 诚实 . +Everybody has weaknesses . ||| 谁 都 有 弱点 . +My grandfather lived a long life . ||| 我 的 祖父 很 長 壽 . +He applied for the scholarship . ||| 他 申請 了 獎學金 . +Thanks for your advice . ||| 谢谢 你 的 建议 . +He is used to traveling . ||| 他 習慣 了 旅行 . +I love my life . ||| 我 爱 我 的 生活 . +" How old are you ? " " Sixteen years old " . ||| 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He could not come because of his serious illness . ||| 他 因為 生 重病 不能 來 . +I have always been proud of you . ||| 我 一直 为 您 骄傲 . +I will call you as soon as I can . ||| 我会 尽快 给 你 打电话 的 . +Do you have a gift shop here ? ||| 你們 這裡 有 禮品 店 嗎 ? +She looks as if she were drunk . ||| 她 看 起來 好像 喝醉 了 . +No student went to the party . ||| 没有 学生 去 参加 派对 . +Mary did not recognize her ex @-@ husband . ||| 玛丽 没有 认出 她 的 前夫 . +He married a stewardess . ||| 他 娶 了 一位 空姐 . +My father is busy . ||| 我 爸爸 很忙 . +Do not look down on others . ||| 不要 看不起 別人 . +Of course ! ||| 當然 ! +I filled up the vase with water . ||| 我 倒水 進去 花瓶 裡 . +Let is get to work on that problem . ||| 我们 研究 这个 问题 吧 . +Rome was not built in a day . ||| 罗马不是 一天 建成 的 . +Should not Tom be doing this , too ? ||| Tom 也 需要 做 这件 事 吗 ? +That company is managed by a foreigner . ||| 這家 公司 由 一個 外國人 經營 . +I was a student at that time . ||| 我 当时 是 学生 . +Do you think Tom is already retired ? ||| 你 認為 湯姆 退休 了 嗎 ? +Tom came to Boston three years ago . ||| 汤姆 三年 前去 了 波士顿 . +After several delays , the plane finally left . ||| 經過 數次 延遲 之 後 , 飛機 終 於 離開 了 . +What are you doing there ? ||| 你 在 那里 做 什么 呢 ? +The bus stopped suddenly in the middle of the street . ||| 公車 突然 在 路 中央 停下 來 . +I prefer working to doing nothing . ||| 我 寧願 工作 也 不 願 閒著 . +She has to look after her mother . ||| 她 必須 照顧 她 的 母親 . +Are you brushing your teeth properly ? ||| 你 正確 地 刷牙 嗎 ? +I did not like beer at that time . ||| 那 时候 我 不 喜欢 啤酒 . +I am going to lose . ||| 我 要 输 了 . +I bet ten dollars on that horse . ||| 我 在 那 匹 馬 下 十美元 的 賭注 . +I am a good guy . ||| 我 是 一个 好人 . +The river is water level has risen . ||| 河 的 水位 上升 了 . +My father gave me a game . ||| 我 爸爸 给 我 了 游戏 . +Her mother made her a new dress . ||| 她 的 媽媽 給 她 做 一件 新 衣服 . +What did you do with your shoes ? ||| 你 把 你 的 鞋 怎么 了 ? +" He would like to have a coffee after work . " " I would too . " ||| " 他 想 在 下班 後 喝杯 咖啡 . " " 我 也 想 . " +I should not have told you anything . ||| 我 本 不该 告诉您 什么 的 . +We require your help . ||| 我們 需要 你 的 幫助 . +How long has it been since you saw your girlfriend ? ||| 你 跟 你 的 女朋友 见面 以来 有 多久 了 ? +I am sure you will be back before long . ||| 我 确定 你 不久 就 回来 . +You reap what you sow . ||| 种瓜得瓜 , 种豆得豆 . +They ruined my life . ||| 他们 毁 了 我 的 生活 . +Tom can swim as fast as you . ||| 湯姆 游泳 可以 游得 跟 你 一樣 快 . +I know what to say . ||| 我 知道 要说 什么 . +He cannot swim . ||| 他 不 會 游泳 . +I am glad to hear that . ||| 我 很 高興 聽到 這個 消息 . +There is no knowing what he will do next . ||| 没有 人 知道 他 接下来 会 干什么 . +This medicine will make you feel better . ||| 这 药会 让 你 好受 点 . +A fire broke out after the earthquake . ||| 地震 之 後 發生 了 火災 . +I caught him stealing the money . ||| 我 抓到 他 偷 錢 . +I heard her singing in her room . ||| 我 聽到 她 在 她 的 房間 裡 唱歌 . +I am behind him . ||| 我 在 他 後 面 . +Mary is a very pretty girl . ||| 瑪麗 是 一個 非常 漂亮 的 姑娘 . +She is busy now and can not speak to you . ||| 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +It was a great shock to me . ||| 這 對 我 是 很大 的 震撼 . +You have beautiful eyes . ||| 你 的 眼睛 真 漂亮 . +I am going to call you tomorrow . ||| 明天 我 給 你 打 電話 . +It is exactly what I wanted . ||| 我 想要 的 就是 这个 . +Someone has taken my shoes by mistake . ||| 有人 拿错 了 我 的 鞋 . +The experiment confirmed his theory . ||| 实验 证明 了 他 的 理论 . +The offer is too good to be turned down . ||| 此 提議 好 得 令人 難以 拒絕 . +This is just a hypothesis . ||| 这 只是 个 假设 . +Where is my newspaper ? ||| 我 的 报纸 在 哪里 ? +The bill amounted to 100 dollars . ||| 帐单 金额 高达 100 美元 . +Tom may be able to come tomorrow . ||| 汤姆 可能 能 在 明天 来 . +Please turn off the TV . ||| 请 关闭 电视机 . +They were going to lose . ||| 他們 要 輸 了 . +Who is the girl in a yellow raincoat ? ||| 穿 黃色 雨衣 的 女孩 是 誰 ? +She took the entrance exam yesterday . ||| 她 昨天 參加 了 入學 考試 . +Wash your hands before meals . ||| 饭前 要 洗手 . +Did you vote yet ? ||| 您 已經 投 了 票 了 嗎 ? +The game will probably be called off . ||| 這場 比賽 將 可能 被 取消 . +You have made the very same mistake again . ||| 你 又 犯 了 相同 的 錯誤 . +Someone is knocking at the door . ||| 有人 在 敲門 . +I went to the hospital yesterday . ||| 我 昨天 去 了 醫院 . +This radio is no bigger than a matchbox . ||| 这 收音机 不 比 火柴盒 大 . +Is that a coyote ? ||| 那 是 丛林 狼 吗 ? +I am looking for my pen . ||| 我 在 找 我 的 鋼筆 . +Why should I hire Tom ? ||| 为什么 我 要 雇佣 Tom ? +He has not been to France . ||| 他 从没 去过 法国 . +What sound does a giraffe make ? ||| 长颈鹿 是 怎么 叫 的 ? +Tom has been quite cooperative . ||| 汤姆 很 合作 . +I have lost my pencil . ||| 我 的 鉛筆 掉 了 . +This house belongs to my uncle . ||| 這棟 房子 屬 於 我 的 叔叔 . +She still has not heard this news . ||| 她 还 没 听到 这个 消息 . +Talking in the library is not allowed . ||| 不准 在 圖書館 裡 談話 . +I feel like my head is going to explode . ||| 我 感 覚 我 的 頭 要 炸 了 . +He was hit by a car and died instantly . ||| 他 被 車 撞 了 之 後 便 過世 了 . +You are the one with all the money . ||| 你 是 有 所有 錢 的 人 . +There is a television in this room . ||| 这个 房间 里 有个 电视机 . +There was a cold wind blowing from the north . ||| 有 一阵 从 北边 吹来 的 冷风 . +For what purpose ? ||| 為了 什麼 目的 ? +Tom hurt himself . ||| 湯姆 弄 傷 了 自己 . +Does Tom have to be there ? ||| 湯姆 必須 在 那裡 嗎 ? +Who discovered radium ? ||| 誰 發現 了 鐳 ? +I am tired of watching television . ||| 我 厌倦 了 看电视 . +Give me your telephone number . ||| 给 我 你 的 电话号码 . +Did you notice Tom is hair ? ||| 你 注意 到 湯姆 的 頭 髪 了 嗎 ? +If we do not hurry , we will be late . ||| 再 不 快点 就 迟到 了 噢 . +Stay out of my business . ||| 别管 我 的 事 . +He was laughed at by his friends . ||| 他 被 他 的 朋友 們 取笑 了 . +I like spring the best of the seasons . ||| 春天 是 我 最 喜歡 的 季節 . +The bell rang . ||| 铃响 了 . +He did not come to the last meeting . ||| 他 最 後 一場 會議 沒來 . +I can not drink milk . ||| 我 不能 喝牛奶 . +I wake up at eight . ||| 我 八點 起床 . +How are you going to get home ? ||| 你 打算 怎麼 回家 ? +I always study hard . ||| 我 總 是 用功 讀書 . +I have a bicycle . ||| 我 有 一輛 自行 車 . +Tom demanded an explanation . ||| 汤姆 要求 有人 解释 . +I have lost my umbrella somewhere in the park . I have to buy one . ||| 我 的 雨傘 遺失 在 公園 裡 某個 地方 . 我 必須 再 買 一把 . +There are no clouds in the sky . ||| 天上 没有 云 . +My first day in the university was rather boring . ||| 我 大学 里 的 第一天 相当 没意思 . +She did not have much money . ||| 她 沒有 很多 錢 . +I play the guitar after school . ||| 我 放學 後 彈 吉他 . +The sky is clear . ||| 天空 很 晴朗 . +What did you name your son ? ||| 你 给 你 儿子 起 什么 名字 ? +She rides a motorcycle well . ||| 她 骑 摩托车 的 技术 不错 ! +She came to Japan for the purpose of studying Japanese . ||| 她 為了 學習 日文 來到 日本 . +That incident made him famous . ||| 這 起 事件 使 他 一舉 成名 . +Anybody can make a mistake . ||| 谁 都 会 犯错 . +" Where have you been ? " " I have been to the station to see a friend off . " ||| “ 你 去 哪儿 了 ? ” “ 我 去 了 火车站 送 我 的 一个 朋友 . ” +I remember the way you used to dance . ||| 我 记得 你 以前 跳舞 的 方式 . +An eight @-@ year @-@ old car is almost worthless . ||| 一輛 車齡 八年 的 車子 幾乎 是 毫無價值 的 . +She made room for an old lady . ||| 她 讓 出 個 空間 給 一位 老太太 . +Tom probably does not know how to do that as well as Mary does . ||| 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Do you like to eat fruit ? ||| 你 喜歡 吃水果 嗎 ? +This car sells well . ||| 这辆 车 卖 得 好 . +How long is the Rainbow Bridge ? ||| 彩虹 橋 有 多 長 ? +I will never forget your kindness . ||| 我 永遠 不 會 忘記 你 的 好意 . +The telephone was invented by Bell . ||| 电话 是 由 贝尔 发明 的 . +Tom did not want Mary to know he did not know how to do that . ||| 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +How can I reach you ? ||| 我 怎樣 才能 連絡 到 你 ? +Mom is preparing a meal in the kitchen . ||| 媽媽 正在 廚房 裡 做 飯 . +Sometimes I have to read boring novels . ||| 有时候 , 我 不得不 读 一些 无聊 的 小说 . +I could not answer all of the questions . ||| 我 不能 回答 所有 的 問題 . +Tom thinks I am missing this great opportunity . ||| 汤姆 认为 我 失去 了 这 绝佳 机会 . +I am grateful to you for your kindness . ||| 谢谢您 的 好意 . +I have not eaten anything since yesterday . ||| 我 從 昨天 起 沒有 吃 任何 東西 . +I have to explain this to Tom . ||| 我 必須 向 Tom 解釋 這個 . +I forgot to bring my I.D. card . ||| 我 忘 了 帶 我 的 身份 證 . +Do you commute to school by bus ? ||| 你 搭 公車 上下 學 嗎 ? +She gave me a strange look . ||| 她 奇怪 地 看 了 我 一眼 . +She continued with the work . ||| 她 继续 工作 . +She cannot be over thirty . ||| 她 不 可能 超过 30 岁 了 . +Tom shut his eyes . ||| 汤姆 闭上 了 眼睛 . +May I leave now ? ||| 我 现在 能 走 了 吗 ? +Please leave right away . ||| 請 馬 上 離開 . +The cat arched its back and stretched itself . ||| 猫 弓起 背 , 伸 了 个 懒腰 . +I am not busy . ||| 我 没 在 忙 . +I got my hair cut . ||| 我 把 我 的 頭 髮 剪 了 . +Goodbye ! ||| 再见 ! +I have a dim memory of my grandmother . ||| 我 对 祖母 的 记忆 很 模糊 . +Weather permitting , I will start tomorrow . ||| 天气 允许 , 我 明天 就 开始 . +I knocked on the door , but nobody answered . ||| 我 敲门 , 但是 没有 人 回应 . +Who is your favorite actor ? ||| 你 最 喜歡 的 演員 是 誰 ? +Look behind you . ||| 瞧 你身 後 . +I did not play tennis yesterday . ||| 我 昨天 沒有 打 網球 . +Tom and Mary ended 30 years of marriage . ||| 汤姆 和玛丽 结束 了 三十年 的 婚姻 . +I did not know what to do . ||| 我 不 知道 該 怎麼 辦 . +These flowers are beautiful , are not they ? ||| 這些 花 很美 , 不是 嗎 ? +The accident happened on Sunday at about 3 : 00 . ||| 此 事故 发生 在 周日 3 点 左右 . +The bus stop is near our school . ||| 巴士站 離 我們 的 學校 近 . +We should work faster . ||| 我們 的 工作 應該 要 加快 . +One of the girls was left behind . ||| 這些 女孩 當中 其中 一個 被 留下 來 了 . +None of this is your money . ||| 這些 都 不是 你 的 錢 . +They are both artists . ||| 他们 都 是 艺术家 . +I love music . ||| 我 爱 音乐 . +She made a series of medical discoveries . ||| 她 提出 了 一連 串 的 醫學 發現 . +It is rude to make fun of your boss in public . ||| 在 公開場 合開 你老 闆 的 玩笑 是 無 禮 的 . +That tree is on Tom is property . ||| 那 樹 是 湯姆 的 財 産 . +What does this stand for ? ||| 这 是 什么 意思 ? +Now , what do you want to see ? ||| 現在 , 你 想 看 甚麼 ? +Spanish is her native language . ||| 西班牙语 是 她 的 母语 . +Get down ! ||| 趴下 ! +I look forward to it . ||| 我 很 期待 哦 . +I have never been to my uncle is house . ||| 我 没 去过 我 叔叔 的 房子 . +Tom is going out this afternoon with Mary . ||| 今天下午 汤姆 和玛丽 会 一起 出去 . +The United States is abundant in natural resources . ||| 美国 的 自然资源 很 丰富 . +If it is at all possible , I 'd like you to take part in the next meeting . ||| 如果 可能 的 話 , 我 希望 你 參加 下 一次 的 會議 . +Tom always makes me laugh . ||| 湯姆總 是 讓 我 笑 . +Tom is used to getting up early . ||| 汤姆 习惯 早起 . +It is a new book . ||| 那 本書 是 一本 新書 . +She picked flowers in the garden . ||| 她 在 花園 裡 摘花 . +I asked her to wait a minute . ||| 我 让 她 等 了 一分钟 . +Which fruit do you like the best ? ||| 你 最 喜爱 的 水果 是 什么 ? +Try it again . ||| 再 試 一次 . +We were born to die . ||| 我们 是 为了 死亡 而 诞生 的 . +She does not have any friends . ||| 她 一个 朋友 都 没有 . +I have never seen a live whale . ||| 我 從來 沒有 見 過 一條 活生生 的 鯨魚 . +I had a wonderful time . ||| 我 玩 得 很 愉快 . +A rolling stone gathers no moss . ||| 滚石 不生 苔 . +Do you want to hear it ? ||| 您 想 听 它 吗 ? +He advised her to stop drinking . ||| 他 建議 她 戒酒 . +I wrote down his phone number . ||| 我 寫 下 他 的 電話 號 碼 了 . +Do not step on the broken glass . ||| 不要 踩 在 碎玻璃 上 . +Do not forget us . ||| 别忘了 我们 . +The bodyguard was wearing an earpiece . ||| 保镖 戴 着 耳机 . +How do we find it ? ||| 我们 怎样才能 找到 它 ? +Is anything bothering you ? ||| 有 什么 事 让 你 烦心 吗 ? +I enjoyed talking with him at the party . ||| 聚会 上 我 和 他 谈 得 很 愉快 . +This does not concern you . ||| 跟 你 没 半 毛钱 关系 . +He does speak well . ||| 他 真的 說 得 很 好 . +She was very embarrassed when her child behaved badly in public . ||| 當 她 的 孩子 在 公共 場合行 為 表現 不好 的 時候 , 她 覺 得 很 尷尬 . +No one man could do it . ||| 沒有 一個 人 能 做到 這 一點 . +How about eating out this evening for a change ? ||| 你 说 今晚 改变 一下 , 去 外面 吃晚饭 怎么样 ? +He has long hair . ||| 他 有 長 頭 髮 . +I will go to America tomorrow . ||| 我 明天 會去 美國 . +I can not say . ||| 我 不能 说 . +There are many fish in this lake . ||| 這個 湖裡 有 很多 魚 . +I want to keep my car there . ||| 我 想 把 我 的 車 停放 在 那裡 . +I have not done that since high school . ||| 高中毕业 之后 我 就 没 那样 做 过 了 . +I 'd really like to go to Boston with you . ||| 我 不想 跟 你 去 波士 頓 . +Could you please speak a little bit more slowly ? ||| 能否 請 你 說 慢 一點 ? +There is one apple on the desk . ||| 书桌上 有 一个 苹果 . +We sat talking about the remote past . ||| 我们 坐 着 谈 很久以前 的 事 . +The situation is improving , so cheer up ! ||| 情況 正在 改善 , 所以 振作起 來 ! +I ache all over . ||| 我 全身 酸痛 . +All you have to do is to wait . ||| 所有 您 要 做 的 , 就是 等待 . +Both of Tom is parents passed away when he was quite young . ||| 汤姆 很小 的 时候 父母 就 都 去世 了 . +My underpants are wet . ||| 我 的 內褲 是 濕 的 . +What steps should we take ? ||| 我们 应该 走出 什么样 的 步伐 . +Any comments are welcome . ||| 欢迎 作 任何 评论 . +You are an idiot . ||| 你个 呆瓜 ! +I plan to go to France next year . ||| 我 想 明年 去 法国 . +Can I open the window ? ||| 可以 开窗 吗 ? +In those days , a cup of coffee cost 200 yen . ||| 那 时候 一杯 咖啡 要 200 日元 . +I made his son a new suit . ||| 我 給 他 的 兒子 做 了 一套 新西 裝 . +To my surprise , the door was unlocked . ||| 令 我 驚訝 的 是 , 門 沒 上鎖 . +Tom burned the letter . ||| 汤姆 烧掉 了信 . +You should not go alone . ||| 你 不 應 該 一個 人 去 . +We have decided to remain silent . ||| 我們 決定 要 保持沉默 . +She is busy now and can not speak to you . ||| 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Give me a dozen oranges . ||| 給 我 一打 橘子 . +He is lazy . ||| 他 很 懒 . +She aspired to become an actress . ||| 她 立志 成為 一名 演員 . +My brother became an engineer . ||| 我 哥哥 成 了 一名 工程 師 . +I will be here for a while . ||| 我 在 这 待 一会 . +Allow me to introduce myself . ||| 請 允許 我 自我 介紹 一下 . +It is rude to stare at someone . ||| 盯著 別人 看 是 不 禮貌 的 . +OK . I agree . ||| 好 . 我 同意 . +She refused to accept the money . ||| 她 拒絕 接受 這筆 錢 . +Wo not you have some tea with me ? ||| 你 不 和 我 一起 喝 点 茶 吗 ? +He was late for the 7 : 30 bus . ||| 他 错过 了 7 点 30 分 的 车 . +I have just come back from school . ||| 我 刚 从 学校 回来 . +I am folding my dress . ||| 我 在 叠 我 的 连衣裙 . +This is just wrong . ||| 這 就是 錯 的 . +Do you wish to complain ? ||| 你 想 抱怨 嗎 ? +I thanked Mary for her help . ||| 我 对 玛丽 的 帮助 表示 了 感谢 . +Eating too much is bad for your health . ||| 吃 得 太 多 对 健康 不好 . +He came to my office yesterday . ||| 他 昨天 來 我 的 辦 公室 . +I do not feel like eating out this evening . ||| 今晚 我 没 心情 出去 吃饭 . +I suggest you turn around and go back home . ||| 我 建議 你 轉身 回家 . +What are you doing ? ||| 搞 什么 啊 ? +Your dress is very nice . ||| 你 的 穿著 非常 好 . +These toys are suitable for girls . ||| 這些 玩具 適合 女生 . +I am pretty tall . ||| 我 相当 高 . +My underwear is dirty . ||| 我 的 內 衣 髒 了 +I am sure you will love what we have on the menu tonight . ||| 我 肯定 你 会 喜欢 我们 今晚 的 菜肴 . +Sometimes you get lucky . ||| 你 有 時候 真 走 運 . +The children have not studied division yet . ||| 孩子 們 還 沒上 過 除法 . +Who picked you for this mission ? ||| 谁 选 你 来 做 这个 任务 ? +Go home quickly . ||| 赶快 回家 . +I will leave when she comes back . ||| 當 她 回來 的 時 後 , 我 就 離開 . +Tom swims very fast . ||| 湯姆 游泳 游得 非常 快 . +I am glad that I was able to help . ||| 能够 出 一份 力 太好了 . +I have a cough and a little fever . ||| 我 咳嗽 , 还 有点 发烧 . +The result confirmed my hypothesis . ||| 这 一 结果 证实 了 我 的 猜想 . +Tom is almost six feet tall . ||| 湯姆 差不多 有六 呎 高 . +My sister got married in her teens . ||| 我 妹妹 在 她 十幾歲 時 就 結婚 . +Tom asked for Mary is permission to leave early . ||| 汤姆 请 玛丽 允许 他 早 走 . +Hot and humid weather makes us lazy . ||| 炎熱 潮濕 的 天氣 使 我們 變得 懶散 . +I studied in the morning during the summer vacation . ||| 我 在 暑假 里 早晨 学习 . +I can not take the place of her as an English teacher . ||| 我 无法 取代 她 做 英语老师 . +Tom should have been ready . ||| 汤姆 本该 已经 准备 好 了 . +I have a stupid question . ||| 我 有 一个 挺蠢 的 问题 . +I am a stranger here myself . I am afraid I can not help you . ||| 我 對 這裡 不熟 . 恐怕 我 不能 幫 你 . +Tom can keep a secret . ||| 汤姆 会 保密 . +I wanted to surprise her . ||| 我 想 給 她 一個 驚喜 . +The world is beautiful . ||| 世界 真 美好 . +Knowledge is power . ||| 知识 就是 力量 . +They did not like you . ||| 他们 不 喜欢 你 . +Tom does not care about money . ||| 汤姆 不 关心 钱 . +Would you mind shutting the door ? ||| 請 你 把 門關 上 好 嗎 ? +I am so proud of my boys . ||| 我 為 我 的 孩子 們 感到 很 驕傲 . +He kept his promise . ||| 他 信守 了 他 的 承诺 . +Is it necessary for me to explain the reason to him ? ||| 我 有 必要 向 他 解释 原因 吗 ? +You idiot ! ||| 蠢货 ! +The box is almost empty . ||| 盒子 几乎 是 空 的 . +Why are you so good at cooking ? ||| 为什么 你 做饭 那么 拿手 呢 ? +How much was your new computer ? ||| 这 台 电脑 你 用 多少 钱 买 的 ? +He calls her up every night . ||| 他 每天晚上 打 電話 給 她 . +I am glad to see you back . ||| 很 高兴 再 见到 您 . +Tom has not complained yet . ||| 湯姆 還 沒有 抱怨 . +Let me try . ||| 让 我 试试 . +I was so cold . ||| 我 很 冷 . +It is an endangered species . ||| 这 是 一个 濒临灭绝 的 物种 . +I 'd like a glass of water , please . ||| 請 給 我 一杯 水 . +Is there anything you can do ? ||| 有 什么 事 是 你 能 做 的 吗 ? +Where is the bathroom ? ||| 洗手 間 在 哪裡 ? +I am just looking , thank you . ||| 我 只是 看看 , 謝謝 你 . +Last night there was a full moon . ||| 昨晚 是 满月 . +It was the only way to go . ||| 那 是 唯一 的 出路 . +Where does your uncle live ? ||| 你 叔叔 住 在 什麼 地方 ? +We are badly in need of food . ||| 我们 非常 需要 食物 . +We make milk into cheese and butter . ||| 我們 把 牛奶 製 成 乳酪 和 奶油 . +She remained single all her life . ||| 她 终生 未婚 . +She shut herself up in her room . ||| 她 把 自己 关 在 房里 . +This company is listed on the Paris stock exchange . ||| 这家 公司 在 巴黎 证券 交易所 上市 了 . +He asked me whether I was busy . ||| 他 问 我 是否 很 忙 ? +Take a deep breath , please . ||| 請 深呼吸 . +She made the same mistake again . ||| 她 又 犯 了 同樣 的 錯 誤 了 . +You need to get ready . ||| 你 需要 做好 准备 . +Let is rest here . ||| 在 这里 稍微 休息 一下 吧 . +Could you please repeat it once again ? ||| 請 您 再 說 一遍 好 嗎 ? +You do not have to talk so loud . ||| 你 不必 這麼 大聲 說 話 . +Have you ever tried scuba diving ? ||| 你 曾 試 過 用水 肺潛水 嗎 ? +I made a few modifications . ||| 我 做 了 点 改动 . +Perhaps I will be able to help you . ||| 我 可能 能 幫 你 . +It is impossible to do the sights of Tokyo in a day or two . ||| 一两天 是 没 办法 逛 完 东京 的 . +I 'd be happy to help you . ||| 我 愿意 帮 你 . +I am glad to see you back . ||| 很 高兴 再 见到 你 . +The acid ate into the metal . ||| 酸性 腐蚀 了 金属 . +How come Mary is going on a picnic with him ? ||| 为什么 玛丽和 他 去 野餐 ? +He is used to speaking in public . ||| 他 習慣 在 公眾場 合 說 話 . +Tell her that I am watching the news . ||| 跟 她 說 我 正在 看 新聞 . +I always kept my promises . ||| 我 一直 信守 我 的 諾言 . +We had a heavy rain yesterday . ||| 昨天 下 大雨 . +Did you borrow it ? ||| 你 借 它 了 吗 ? +Do you plan to eat all of that yourself ? ||| 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +She looked after the children . ||| 她 照顧 孩子 . +I wonder where Tom is planning to go to college . ||| 我 想 知道 汤姆 计划 去 哪里 上 大学 . +Is there any salt left ? ||| 还有 多余 的 盐 吗 ? +Please wait a moment . ||| 请稍等 一会 . +Please drive the car more slowly . ||| 請 開車 開慢 一點 . +I am learning English . ||| 我 學 英文 . +Would you mind saying that once more ? ||| 你 可以 再 說 一次 嗎 ? +She can swim further than I can . ||| 她 能 遊 得 比 我 遠 . +I was quite satisfied . ||| 我 真是 满意 . +Be respectful to your superiors , if you have any . ||| 如果 你 有 上司 的话 , 学会 尊敬 他 ( 她 ) . +He would not look at my proposal . ||| 他 對 我 的 提議 不屑 一顧 . +I lent him a CD . ||| 我 借给 他 一盘 CD . +Tom speaks French a little . ||| 汤姆 会 说 一点 法语 . +Tom left his umbrella on the bus . ||| 汤姆 把 他 的 雨伞 忘在 了 公交车 上 . +We had a lecture on environmental pollution . ||| 我们 有 一节 关于 环境污染 的 讲座 . +He drinks too much beer . ||| 他 喝 太 多 啤酒 . +We should abolish the death penalty . ||| 我们 应该 废除 死刑 . +He went away without saying a word . ||| 他 沒 說 一句 話 就 離開 了 . +I want to cry . ||| 我 想 哭 . +Take me home . ||| 带 我 回家 . +Give me a ring tomorrow . ||| 明天 打电话 给 我 . +The king crushed his enemies . ||| 國王 摧毀 了 他 的 敵人 . +Are you studying ? ||| 您 学习 吗 ? +The drug problem is international . ||| 毒品 是 国际性 的 问题 . +Boston is a great place to raise kids . ||| 波士 頓是 養 小孩 的 好 地方 . +He told me that I looked pale and asked me what the matter was . ||| 他 跟 我 说 我 很 苍白 , 并 问 我 怎么 了 . +I have things to take care of . ||| 我 有些 事 . +Tom changed clothes . ||| 湯姆 換 了 衣服 . +We managed to get some foreign stamps . ||| 我們 設法 得到 一些 外國 的 郵票 . +He is afraid to fly in an airplane . ||| 他 怕 坐飞机 . +I wanted to smack you . ||| 我 想 过 扇 你 一巴掌 . +My sister is playing with a doll . ||| 我 妹妹 正在 玩 洋娃娃 . +Not even one taxi stopped . ||| 甚至 沒有 一輛 計程 車 停下 來 . +You look stupid . ||| 你 看上去 很傻 . +My sister is twenty @-@ one years old and a college student . ||| 我 妹妹 21 岁 , 是 个 大学生 . +I buy tapes . ||| 我 買 磁帶 . +I can not play tennis that well . ||| 我 不 那麼 會 打 網球 . +He could not wait to try out his new surfboard . ||| 他 迫不及待 地想 试一下 他 的 新 冲浪板 . +The talks will last three days . ||| 这场 谈话 将要 持续 三天 . +He is a student at Harvard . ||| 他 是 一個 哈佛 的 學生 . +She left for London yesterday . ||| 她 昨天 離開 去 倫敦 . +You may sit wherever you like . ||| 你 喜欢 坐 哪儿 就 坐 哪儿 . +They all searched for the lost child . ||| 他們 都 在 尋找 這個 走失 的 孩子 . +The mountain has a beautiful shape . ||| 這 座 山 有 一個 美麗 的 外形 . +Please give me a glass of water . ||| 請 給 我 一杯 水 . +English is an international language . ||| 英語 是 國際 語言 . +I can not believe that you love me . ||| 我 不能 相信 你 愛 我 . +It is difficult for me to answer the question . ||| 这个 问题 对 我 来讲 很 难 回答 . +Everyone loves that place . ||| 每 一個 人 都 喜歡 那個 地方 . +I can hear you . ||| 我 听 得到 . +These products are of the same quality . ||| 这些 产品质量 同等 . +My dog follows me wherever I go . ||| 無論 我 去 哪裡 , 我 的 狗 都 跟著 我 . +It will soon be three o 'clock . ||| 很快 就要 三點鐘 了 . +It is not polite to stare at people . ||| 盯著 人 看 是 不 禮貌 的 . +Tom was dressed like a pirate . ||| Tom 穿 得 像 个 海盗 . +He often goes abroad on business . ||| 他 經常 出國 洽商 . +It is clear that you are wrong . ||| 很 明顯 地 你 錯 了 . +Your second button is coming off . ||| 你 的 第二 顆鈕 扣快 掉 了 . +The end does not always justify the means . ||| 為了 正當 目的 並非 總是 可以 不擇 手段 . +I am hers and she is mine . ||| 我 是 她 的 , 而 她 是 我 的 . +I ran as fast as possible . ||| 我 跑 得 尽可能 快 . +I hear that she is a famous actress . ||| 我 聽 說 她 是 個 有名 的 演員 . +Marriage is the main cause of divorce . ||| 婚姻 是 造成 離婚 的 主因 . +Say no to drugs . ||| 對 毒品 說不 . +Speak clearly and make yourself heard . ||| 講 清楚 並 大聲 地 讓 別人 聽到 你 說 話 . +Why can not he play tennis today ? ||| 為 什麼 他 今天 不能 打 網球 呢 ? +He is a dentist by profession . ||| 他 是 一位 专职 牙医 . +Waiter , I would like to order . ||| 服务生 , 我 要 点菜 . +He agrees with my opinion . ||| 他 同意 我 的 意見 . +It is possible that Tom lied to you . ||| 汤姆 有 可能 对 你 撒谎 了 . +Shut all the doors and windows . ||| 關閉 所有 的 門 和 窗戶 . +Were you right ? ||| 你 是 对 的 吗 ? +This place has a mysterious atmosphere . ||| 这个 地方 有 一种 神秘 的 气氛 . +I do not have a desk in my bedroom . ||| 我 的 臥室 裡 沒有 桌子 . +Cats do not eat bananas . ||| 猫 不吃 香蕉 . +He was very good at playing tennis . ||| 他 网球 打 得 很 好 . +It is just what I wanted . ||| 我 想要 的 就是 这个 . +Do it now . ||| 現在 就 做 . +I do not sleep in a bed . ||| 我 不 在 床上 睡觉 . +I can hardly walk . ||| 我 幾乎 不能 走路 . +Why did you come here so early ? ||| 你 為 什麼 這麼 早來 這裡 ? +She caught colds often . ||| 她 常常 感冒 . +Dad is in an impatient mood today . ||| 爸爸 今天 很 不耐烦 . +It is unlikely that he did anything wrong . ||| 他 看來 沒有 做錯 甚麼 . +I like to eat meat . ||| 我 喜歡 吃 肉 . +He should have been more careful . ||| 他 本 應 該 更 小心 的 . +It is not as easy to do that as people think . ||| 这 并 不 像 一般 人 觉得 的 那么 容易 . +She came home very late . ||| 她 很 晚 回家 . +Do you think we will have good weather ? ||| 你 认为 我们 会 遇到 好 天气 吗 ? +I won the lottery . ||| 我 中奖 了 . +Do not write in red ink . ||| 別 用 紅 墨水 寫 . +Are you mad at Tom ? ||| 你 在 生 汤姆 的 气 吗 ? +You underestimate your charisma . ||| 你 低估 了 你 的 魅力 . +I miss you . ||| 我 想念 你 . +He is a teacher . ||| 他 是 老师 . +I am glad I was able to help . ||| 能够 出 一份 力 太好了 . +That will not change anything . ||| 這樣 做 的 話 什麼 都 不 會 改變 的 . +I am taller than you . ||| 我 比 你 高 . +Many students like to study in the morning . ||| 许多 学生 喜欢 在 早上 学习 . +I have quit drinking beer . ||| 我 已經 不 喝啤酒 了 . +Where is Tom ? ||| 汤姆 在 哪儿 ? +Tom put his money in the safe . ||| 汤姆 把 他 的 钱 放在 保险柜 里 . +I finally found a job . ||| 我 終于 找到 工作 了 . +I live near here . ||| 我 住 在 這 附近 . +The rain is beating against the windows . ||| 雨点 打着 窗户 . +I felt quite relieved after I had said all I wanted to say . ||| 说 了 所有 我 要说 的话 后 , 我 感觉 很 轻松 . +Could you put my name on the waiting list ? ||| 你 能 把 我 的 名字 加 到 等候 批准 的 申请人 名单 上 吗 ? +Tom climbed down from the tree . ||| 汤姆 从 树上 爬 了 下来 . +I study English and Japanese . ||| 我 学习 英语 和 日语 . +He was listening to music . ||| 他 正在 聽 音樂 . +Tom and Mary could not help me do that . ||| 湯姆 和 瑪麗 不能 幫 我 去 做 . +She kept him waiting half an hour . ||| 她 讓 他 等 了 半 小 時 . +He may have left for Kyoto . ||| 他 可能 已經 離開 京都 了 . +We have four French classes a week . ||| 我們 一週 有 四堂 法語 課 . +The medicine did not do me any good . ||| 這 藥 對 我 沒有 任何 好 處 . +It may snow in the afternoon . ||| 下午 可能 會 下雪 . +Her socks are gray . ||| 她 的 襪子 是 灰色 的 . +He came in person . ||| 他 亲自 来 了 . +I have not finished breakfast yet . ||| 我 還 沒 吃 完 早 飯 . +She is a glamorous girl . ||| 她 是 个 迷人 的 女孩子 . +I remember my mother teaching me the alphabet . ||| 我 记得 我 母亲 教 我 认字 . +His speech captured our attention . ||| 他 的 演講 吸引 了 我們 的 注意 . +She is qualified as a nurse . ||| 她 是 个 合格 的 护士 . +I am sure we will find a solution . ||| 我 确信 我们 会 找到 解决办法 的 . +Turn left at the first light . ||| 在 第一 個 紅 綠燈 左 轉 . +The bike parked over there is my brother is . ||| 那邊 停著 的 那輛 自行 車 是 我 哥哥 的 . +He acts quickly . ||| 他 行动 迅速 . +I miss my children . ||| 我 想念 我 的 孩子 . +I 'd like three pounds of chicken . ||| 我 要 三磅 的 雞肉 . +Did you understand what he said ? ||| 你 听懂 他 说 的 了 吗 ? +Tom smiled . ||| 汤姆 笑 了 . +I prefer hardwood floors to carpet . ||| 我 喜歡 硬 木地板 勝 過 地毯 . +Bring me the magazines . ||| 把 那 本 雜 誌 拿 來 給 我 . +I am willing to help him . ||| 我 願意 幫 湯姆 . +The man behind them is playing the piano . ||| 在 他們 身 後 的 男人 正在 彈 鋼琴 . +He does not understand me . ||| 他 不 理解 我 . +This is the last time I will ask you to do anything for me . ||| 这 是 我 最后 一次 让 你 为 我 做点事 了 . +I have been going out with her for months . ||| 我 和 她 交往 幾個 月 了 . +The trees are green . ||| 树 是 绿 的 . +I have no more time to talk with you . ||| 我 没 时间 再 跟 你 说话 了 . +The man is loading the moving truck on his own . ||| 這個 男人 獨自 把 東西 搬上 搬家 卡車 上 . +Why do you need it ? ||| 你 為 什麼 需要 它 ? +What is your favorite drink ? ||| 你 最 喜欢 的 饮料 是 什么 ? +He will be back by five o 'clock . ||| 他 五點 左右 會 回來 . +He may be on the next train . ||| 他 可能 在 下 一班 火車 上 . +I deleted my Facebook account . ||| 我 刪 除了 我 的 Facebook 帳號 . +He catches colds very easily . ||| 他 很 容易 感冒 . +Queen Elizabeth I passed away in 1603 . ||| 女王 伊麗莎 白 一世 於 1603 年 去世 . +Turn around . ||| 转过 来 . +Are you going to be in Boston this weekend ? ||| 你 這 週末 在 波士 頓過 嗎 ? +She happened to know his address . ||| 她 恰巧 知道 他 的 地址 . +It is high time you were in bed . ||| 你 早该 睡 了 . +Look at me when I talk to you ! ||| 我 跟 你 说话 的 时候 看着 我 ! +I am all ears . ||| 我 洗耳 恭 聽 . +He is giving his whole attention to that . ||| 他 全神贯注 . +I grew up in a poor family . ||| 我 出身 贫寒 . +Where are you now ? ||| 你 现在 在 哪里 呢 ? +Have you finished doing your homework yet ? ||| 你 做 完 回家 作業 了 嗎 ? +I should put on more clothes . ||| 我 应该 多 穿 点 衣服 了 . +Nothing is really guaranteed . ||| 沒有 甚麼 是 真正 有 保證 的 . +I sure hope this is a dream . ||| 我 当然 希望 这 是 一个 梦 . +Please pass me the butter . ||| 请 把 黄油 递给 我 . +Tom told Mary that she should quit pretending to be intoxicated . ||| 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +It is really cheap . ||| 它 真的 很 便宜 . +Smoking is prohibited . ||| 禁止 吸烟 . +Is it cheaper to call after 9 : 00 ? ||| 九點 以 後 打 電話 比較 便宜 嗎 ? +What you said about Tom is not true . ||| 你 说 的 关于 汤姆 的话 不是 真的 . +Do not look a gift horse in the mouth . ||| 不要 對 人家 送 的 禮物 挑 三 揀 四 , 嫌東 嫌西 的 . +My father lives in the country . ||| 我 父親 住 在 鄉下 . +This is mine . ||| 这 是 我 的 . +Every door in the house is locked . ||| 這 房子 裡 的 每 一扇 門 都 被 鎖上 了 . +I do not have a car . ||| 我 沒有 汽車 . +I do not know where my crutches are . Have you seen them ? ||| 我 不 知道 把 拐杖 放 哪 去 了 , 你 有 看到 嗎 ? +It seems that I have lost my keys . ||| 我 好像 丢 了 我 的 钥匙 . +I am going to the bank . ||| 我 要 去 银行 了 . +I do not sleep well . ||| 我 睡 不好 . +Did you get my letter ? ||| 你 收到 了 我 发 的 邮件 了 吗 ? +I do not know what this symbol stands for . ||| 我 不 知道 這個 符號 代表 什麼 意思 . +She wears a lot of makeup . ||| 她 化 着 浓妆 . +He would often come to see us when I was a child . ||| 當 我 還 是 個 孩子 時 , 他 經常 來 看望 我們 . +I wish you had been there . ||| 但 願 你 去過 那裡 . +Tom said he 'd wait . ||| 湯姆 說 他 會 等 . +We ate breakfast at seven . ||| 我们 7 点 吃 了 早饭 . +I usually stay indoors on Sunday . ||| 星期天 我 通常 待 在家 裡 . +Does it sound like I am in love ? ||| 聽 起來 像是 我 戀愛 了 嗎 ? +Seen from the moon , the earth looks like a ball . ||| 从 月球 上看 的话 , 地球 看起来 像 个 皮球 . +Tom went swimming in the river , but when he got out , his clothes had been stolen . ||| 汤姆 去 河里 游泳 , 但当 他 出来 时 , 他 的 衣服 被 偷 了 . +I like traveling . ||| 我 喜歡 旅行 . +I do not expect anything from you . ||| 我 不 指望 从 你 身上 得到 什么 . +Please excuse me for being rude . ||| 請 原諒 我 的 魯莽 . +Could you bring my breakfast to room 305 ? ||| 你 可以 把 我 的 早餐 送到 305 房间 吗 ? +She asked us several questions . ||| 她 问 了 我们 好几个 问题 . +Do you want something to eat ? ||| 您 想 吃 点 什么 吗 ? +Words express thoughts . ||| 語詞 表達 思想 . +I once wanted to be an astrophysicist . ||| 我 曾經 想 過 當個 太空 物理 學家 . +He has dozens of books about Japan . ||| 他 有 幾 十本 關於 日本 的 書 . +There was a lot of snow last winter . ||| 去年 冬天 下 了 好多 雪 . +I think that Tom has a crush on Mary . ||| 我 觉得 汤姆 爱 上 玛丽 了 . +Beauty is in the eye of the beholder . ||| 美 驻留 在 看 的 那个 人 的 眼里 . +Your friendship means a lot to me . ||| 你 的 友誼 對 我 來說 意義 重大 . +I will not do it again . ||| 下次 我 不 做 了 . +He hit his head against a rock . ||| 他 的 頭 撞 到 了 一塊 岩石 . +We do not have too much time . ||| 我们 没有 太 多 时间 . +There is only one book on the desk . ||| 桌子 上 只有 一 本书 . +I am reading a book about animals . ||| 我 正在 讀 一本 關於 動物 的 書 . +This store is currently selling vegetables . ||| 这家 店 在 卖 蔬菜 . +Tom drank my apple juice . ||| Tom 喝 我 的 蘋 果汁 . +You are such an idiot . ||| 你 真是 個 傻瓜 ! +She is busy now and can not talk with you . ||| 她 现在 忙 , 不能 跟 你 说话 . +I tried to hit Tom , but he ducked . ||| 我 要 去 打 汤姆 , 但是 他 避开 了 . +He seems not to be aware of the conflict between my father and me . ||| 他 似乎 不 知道 我 父亲 和 我 之间 的 纠葛 . +I thought Tom would enjoy the party . ||| 我 以为 汤姆 会 喜欢 这个 聚会 . +I would like to join your group . ||| 我 想 加入 你们 的 团 对 . +Tom went out for a walk with his dog . ||| 湯姆 帶 他 的 狗 出去 走 . +I do not think any more students want to come . ||| 我 觉得 不会 有 更 多 学生 想来 了 . +They made us work all day long . ||| 他們 讓 我們 工作 了 一整天 . +I want some fresh eggs . ||| 我 想要 一些 新鲜 的 鸡蛋 . +What movies are playing this week ? ||| 这周 放 什么 电影 ? +I am going to school . ||| 我 去 学校 了 . +I am waiting for the store to open . ||| 我 正 等著 這家 店 開門 . +Please accept my sincere apologies . ||| 請 接受 我 誠摯 的 歉意 . +His advice did not help at all . ||| 他 的 建议 完全 没用 . +The soldier groaned with pain . ||| 這 名 士兵 痛苦 地 呻吟 . +Teachers also make mistakes . ||| 老师 也 会 犯错 . +Tom says they need more time . ||| 汤姆 说 他们 需要 更 多 时间 . +He wears Chinese @-@ style clothes . ||| 他 穿 中式 服裝 . +I can not think of any other way of getting him to accept our proposal . ||| 我 看不出 有 其他 方法 能 让 他 接受 我们 的 提议 . +I talked with Tom . ||| 我 和 汤姆 说 了 话 . +I dreamt about you . ||| 我 梦 到 你 了 . +Do you want to speak to Tom ? ||| 你 想 跟 汤姆 说话 吗 ? +I am out of time . ||| 我 没 时间 了 . +If Tom is really alive , where is he ? ||| 如果 汤姆 真的 活着 , 他 在 哪里 ? +I will leave this work to you . ||| 我 會 把 這個 工作 留給 你 . +How can Tom not understand that ? ||| 湯姆 怎麼 能 不 懂 ? +The police held him in custody . ||| 警方 拘留 了 他 . +They gave in to my opinion . ||| 他們 屈服 於 我 的 看法 了 . +She taught me how to swim . ||| 她 教我如何 游泳 . +How are you ? ||| 你們 好 嗎 ? +Tom thanked me for the gift . ||| 湯姆 為 這個 禮物 感謝 我 . +I am not feeling well . ||| 我 感觉 不 舒服 . +We do not speak French . ||| 我們 不 講 法語 . +The living room adjoins the dining room . ||| 客廳 緊 鄰著 餐廳 . +I bought a good camera . ||| 我 買 了 一台 不錯 的 照相 機 . +She has a daughter who is a pianist . ||| 她 有 一个 钢琴家 女儿 . +I decided not to study French . ||| 我 決定 不學法 語 . +Can I see the menu , please ? ||| 麻煩 給 我 菜 單 . +Turn left at the next corner . ||| 下 一个 街角 左转 . +She laid the work on him . ||| 她 派 他 去 工作 了 . +He thought of a good solution . ||| 他 想到 了 一個 解決 的 好 辦法 . +To put it briefly , I do not agree . ||| 简而言之 , 我 不 同意 . +They called him a coward . ||| 他們 稱 他 膽 小鬼 . +I wonder what the weather will be like tomorrow . ||| 不 知道 明天 天气 会 怎么样 呢 ? +I had no trouble finding his office . ||| 我 毫不 费劲 就 找到 他 的 公司 . +I will see you later . ||| 等 會 兒 見 . +Do not bother calling security . ||| 别 麻烦 保安 了 . +We must execute his orders . ||| 我们 必须 执行 他 的 命令 . +He gave her a piece of paper . ||| 他 給 了 她 一張 紙 . +I do not want to buy a newspaper today . ||| 我 今天 不想 买 报纸 . +I am not sure , but I think I know where to go . ||| 我 不 确定 , 但 我 认为 我 知道 要 去 哪里 . +Do not be terrified . ||| 別 被 嚇壞 了 . +She ought to have arrived by now . ||| 她 現在 應該 已經 到 了 . +He spared no pains to help me . ||| 他 不 遺餘力 幫助 我 . +I am looking over his report . ||| 我 在 阅读 他 的 报告 . +We have only one chance . ||| 我们 只有 一次 机会 . +I am never coming back here again . ||| 我 不会 再 回来 了 . +Sit tight . ||| 耐心 等 着 . +Red is out of fashion . ||| 红色 不 流行 了 . +They laughed at my idea . ||| 他們 嘲笑 我 的 想法 . +We were very sorry we could not help them . ||| 我們 很 遺憾 無法 幫助 他們 . +This is the house where I used to live when I was young . ||| 这 是 我 年轻 时候 住 的 房子 . +I have a dictionary . ||| 我 有個 字典 . +People used to laugh at us . ||| 人们 以前 笑话 我们 . +If a sick person folds one thousand paper cranes , her wish will come true . ||| 如果 一個 病人 折 一千 隻 紙 鶴 , 她 的 願望 就 會 成 真 . +Anything you say can be used against you in court . ||| 你 所说 的 一切 都 将 成为 呈 堂 证供 . +My sister can play the piano better than I can . ||| 我 妹妹 鋼琴 可以 彈 得 比 我 好 . +I thought we were going to do this together . ||| 我 認為 我們 要 一起 做 . +He asked me if I liked mathematics . ||| 他 問 我 喜 不 喜歡 數學 . +This is going to be a great trip . ||| 這 會 是 個 絕好 的 旅行 . +How many prefectures are there in Japan ? ||| 日本 有 多少 個 縣 ? +Tom wanted to go to Australia . ||| 汤姆 想 去 澳大利亚 . +I am sure of his success . ||| 我 肯定 他 会 成功 的 . +I like each of them . ||| 我 喜欢 他们 每 一个 . +This is Mary is dog . ||| 這 是 瑪麗 的 狗 . +She showed the visitor her baby . ||| 她 给 客人 看 了 她 的 宝宝 . +This might not be a genuine diamond . ||| 這 可能 不是 真的 鑽石 . +She is now staying at her uncle is house . ||| 她 现在 正待 在 她 叔叔 家 . +I wish I knew where he was ! ||| 但 願 我 知道 他 在 哪裡 . +Rather than cutting down on cigarettes , why do not you just give them up ? ||| 比起 少 抽 菸 , 你 何不 直接 把 菸 戒 了 ? +It is none of your concern . ||| 这 不关 你 的 事 . +No students were absent . ||| 沒有 學生 缺席 . +Stop putting off finding a job . ||| 不要 拖延 去 找 工作 的 事 . +Is that black bag yours ? ||| 那個 黑色 提包 是 你 的 嗎 ? +He is busy with his homework now . ||| 他 現在 正忙 著做 他 的 家庭 作業 . +There are not many books on these shelves . ||| 这些 书架上 没有 很多 书 . +He is going to run for mayor . ||| 他 將 競選 市長 . +How is everyone ? ||| 大家 好 嗎 ? +Let is assume that will happen . ||| 讓 我們 假定 那 會 發生 . +Tom seems to be completely lost . ||| 湯姆 看來 完全 輸 了 . +An electric current can generate magnetism . ||| 電流 可以 產生 磁性 . +That is Mary is husband . ||| 那 是 玛丽 的 丈夫 . +Let is ask if it is true . ||| 让 我们 来 问问 这 是不是 真的 . +He got wet from the waist to the knees . ||| 他 從 腰部 到 膝 蓋 都 濕 了 . +I will write to you soon . ||| 我 會 盡快 寫信 給 你 . +You look very pale . ||| 你 看上去 很 苍白 . +When have you ever done anything for me ? ||| 你 什么 时候 给 我 做事 ? +Tom told me that I should not go out alone at night . ||| 汤姆 跟 我 说 我 不 应该 晚上 一个 人 出门 . +She must be over eighty . ||| 她 肯定 超过 80 岁 了 . +I just want to know what actually happened . ||| 我 只 想 知道 实际上 发生 了 什么 . +I am blessed with good health . ||| 上帝 賜予 我 健康 的 身體 . +Lie down and make yourself comfortable . ||| 躺 下來 讓 自己 舒服 一點 . +Suddenly it began to rain . ||| 突然 開始 下雨 . +I am getting more and more gray hair . ||| 我 的 白 髮 越 來 越 多 . +I like to listen to music , especially jazz . ||| 我 喜歡 聽 音樂 , 特別 是 爵士 音樂 . +My boss made me work last Sunday . ||| 上週 日 我 的 老 闆 要 我 工作 . +I anticipate that there will be trouble . ||| 我 預料 會 有 麻煩 . +Did somebody hit Tom ? ||| 有人 打 汤姆 了 吗 ? +An argument may be logically sound without being true . ||| 不 正确 的 命题 听 起来 可能 符合 逻辑 . +Popcorn is my favorite snack . ||| 爆米花 是 我 最 喜欢 的 零食 . +Sir , can we quickly inspect your luggage please ? ||| 先生 , 我們 可以 檢查 一下 您 的 行李 嗎 ? +It is a waste of time . ||| 这 是 浪费时间 . +These must be fake . ||| 這些 一定 是 假 的 . +Nobody knows the truth . ||| 没有 人 知道 真相 . +Tom currently resides in Boston . ||| 汤姆 现在 住 在 波士顿 . +He was involved in the trouble . ||| 他 被 卷进 了 是非 中 . +She did not appear to recognize me . ||| 她 好像 没 认出 我 . +I was always good at English . ||| 我 的 英文 一直 都 不錯 . +Am I a good teacher ? ||| 我 是 一個 好 老師 嗎 ? +They do not like me . ||| 他們 不 喜歡 我 . +He owes his success both to working hard and to good luck . ||| 他 的 成功 要 归结 于 他 的 辛勤工作 和 好运气 . +The waves crashed against the rocks . ||| 浪 拍 在 岩石 上 . +I am wet . ||| 我 濕 了 . +I do not know whether I have time or not . ||| 我 不 知道 有没有 时间 . +I went to Disneyland yesterday . ||| 昨天 我 去 了 迪士尼 樂園 . +I am not a beggar . ||| 我 不是 乞丐 . +We can do nothing . ||| 我们 什么 都 做不了 . +A boy is walking across the street . ||| 一个男孩 正 沿着 街 走 . +The date of manufacture is shown on the lid . ||| 生产日期 在 盖子 上 . +He ran faster than his brother did . ||| 他 跑 得 比 他 哥哥 快 . +Please feel free to ask questions . ||| 歡迎 隨時 提問 . +We had to go there together . ||| 我们 必须 一起 去 . +A true scientist would not approach the question this way . ||| 真正 的 科学家 不会 这样 去 思考 . +Tom is always absent . ||| 汤姆 总是 旷课 . +We can not deny the fact that he is honest . ||| 我们 无法 否认 , 他 确实 是 很 诚实 的 人 . +I have been there a couple of times . ||| 我 去過 那裡 幾次 . +We should try to avoid imposing our own beliefs on others . ||| 我們 應該 盡量 避免 把 我們 自己 的 信念 強加 在 別人 身上 . +According to TV news , there was a plane crash in India . ||| 根据 电视新闻 , 一架 飞机 在 印度 坠毁 了 . +How many boys are there in this class ? ||| 这个 班 有 多少 男生 ? +If you have something to say , just say it . ||| 如果 你 想 说 , 就 说 . +I was born in Kyoto . ||| 我 生于 京都 . +Time passes quickly when we are doing something we like . ||| 在 做 喜欢 的 事情 的 时候 时间 过去 得 很快 . +You can go to the ballpark on this bus . ||| 坐 這個 公車 可以 到 球場 . +What you said left a deep impression on me . ||| 你 说 的话 给 我 留下 了 很 深刻 的 印象 . +He wants you to stay here . ||| 他 要 你 留在 這裡 . +Mary came home from school in tears because her friends had teased her . ||| 玛丽 哭 着 从 学校 跑 回 了 家里 , 因为 她 的 朋友 捉弄 了 她 . +I got acquainted with the chief executive . ||| 我 認識 了 這位 行政 長 官 . +He is a tall boy . ||| 他 是 一个 高大 的 男孩 . +They do not always obey their parents . ||| 他们 并 不 总是 服从 父母 . +She does not have as much patience as you do . ||| 她 没 像 你 那样 有 耐心 . +Tom has not done anything . ||| 汤姆 什么 都 没 做 . +No , thank you . I am just looking around . ||| 不 , 謝謝 你 . 我 只是 四處 看看 . +" More coffee ? " " No , thanks . " ||| “ 还要 咖啡 吗 ? ” “ 不了 , 谢谢 . ” +She declared that she was not guilty . ||| 她 声称 自己 没罪 . +You may come if you like . ||| 如果 你 想 , 你 可以 來 . +Are you going out tomorrow ? ||| 你 明天 出去 吗 ? +I can not go . ||| 我 不能 走 . +He will have to go to the station . ||| 他 该 去 火车站 了 . +Volcanic ash disrupted air travel . ||| 火山灰 阻礙 航運 . +He has an eye for antiques . ||| 他 对 古董 很 有 鉴赏力 . +I know you are richer than me . ||| 我 知道 你 比 我 有 錢 . +Cows give milk . ||| 牛 可 产奶 . +Did you get your wish ? ||| 你 如 願 以償 了 嗎 ? +I asked him where he was going . ||| 我 問 了 他 要 去 哪裡 . +You do not understand . ||| 你 不 了解 . +I am getting too old for this job . ||| 对于 这份 工作 来说 , 我 的 年龄 太 老 了 . +I like to go fishing with my father . ||| 我 喜欢 和 父亲 一起 去 钓鱼 . +Tom has accumulated a lot of junk . ||| 湯姆屯 了 很多 垃圾 . +Do you have any idea what is been going on ? ||| 你 知道 現在 正在 發生 甚麼 嗎 ? +The news confirmed my suspicions . ||| 这 一 消息 证实 了 我 的 怀疑 . +The explosion may have been caused by a gas leak . ||| 這場 爆炸 有 可能 是 瓦斯 外 洩 引起 的 . +Come and see me whenever you like . ||| 你 隨時 都 可以 來看 我 . +He worked very hard . ||| 他 工作 很 努力 . +Probably you are allergic to pollen or dust . ||| 你 可能 对 花粉 或 灰尘 过敏 . +You will fail . ||| 你 會 失敗 . +They went to the station by car . ||| 他們 坐 車 去 車站 . +Tom wants to talk . ||| 汤姆 想 说话 . +Why did you buy such an expensive dictionary ? ||| 为什么 你 买 了 一本 那么 贵 的 词典 ? +Tom is a bus driver . ||| 汤姆 是 个 公交车 司机 . +What I want is some peace and quiet . ||| 我 所 想要 的 是 一点 平和 和 安静 . +We lost our cat and Tom found it for us . ||| 我們 弄 丟了 車 , Tom 幫 我們 找 了 回來 . +Some gum stuck to his shoes . ||| 口香糖 粘到 他 的 鞋子 上 了 . +Who were you talking to ? ||| 你 和 谁 说话 呢 ? +" Shall I take a message ? " " No , thank you . " ||| “ 需要 我 为 您 留 个 口信儿 吗 ? ” “ 不用 了 , 谢谢 . ” +We will do that . ||| 我們 會 去 做 . +An angle of 90 degrees is called a right angle . ||| 90 度 的 角 叫 直角 . +Between you and me , what is your opinion of her ? ||| 你 就 只 告诉 我 一个 人 , 你 对 她 的 意见 如何 ? +Tennis is my favorite sport . ||| 网球 是 我 最 喜欢 的 运动 . +When I woke up , it was snowing . ||| 當 我 醒 來 時 , 天正 下著 雪 . +Whose glass is this ? ||| 这 是 谁 的 杯子 ? +Would you like to go to the zoo this afternoon ? ||| 今天下午 你 想 去 動物園 嗎 ? +You should be able to manage it . ||| 你 应该 能 解决 . +According to newspaper reports , there was an airplane accident last evening . ||| 根據 報載 , 有 一架 飛機 昨天晚上 發生 了 意外 . +I had to work overtime yesterday . ||| 我 昨天 必須 加班 . +Why do you want to be a nurse ? ||| 你 为什么 想 成为 护士 呢 ? +I was born in the winter . ||| 我 在 冬天 出生 . +My attitude towards him changed . ||| 我 对 他 的 态度 变 了 . +I will stay home . ||| 我 會 待 在家 裡 . +He is been to the stadium . ||| 他 去過 體育館 . +Please do not forget to put a stamp on the letter before mailing it . ||| 请 不要 忘记 寄信 前 要 在 上面 贴 邮票 . +He left his daughter a great fortune . ||| 他 留给 他 女儿 一大笔 财产 . +Have you been eating ? ||| 你 在 吃 东西 吗 ? +Gravity brings everything down to Earth . ||| 重力 将 一切 带 下 地球表面 . +My parents have gone to the airport to see my uncle off . ||| 我 父母 去 机场 送 我 叔叔 了 . +Tom has his own problems . ||| 汤姆 有 他 自己 的 问题 . +After asking for my key at the front desk , I took the elevator to my floor . ||| 我 到櫃檯拿了鑰匙 , 然 後 就 乘 電梯 去 了 我 房間 的 樓層 . +How many hours a day do you sleep ? ||| 你 每天 睡 几个 小时 ? +Do not bite on the right side . ||| 不要 從 右邊 咬 . +I know Tom . ||| 我 认识 汤姆 . +I am going to see Tom in the morning . ||| 我 早上 去 見 湯姆 . +He caught her by the arm . ||| 他 抓住 了 她 的 胳膊 . +Sorry to have kept you waiting . ||| 對 不起 讓 你 一直 等 . +Tom always speaks in such a low voice that I can barely understand what he says . ||| 汤姆 总是 说话 声音 太小 , 我 几乎 听不懂 他 在 说 什么 . +They were forced to kill and eat several of their horses . ||| 他们 被迫 杀掉 他们 的 几匹马 来 吃 . +Her birthday party will be tomorrow evening . ||| 她 的 生日 宴會 將 在 明天 晚上 . +The storm did not abate for several hours . ||| 风暴 几个 小时 没有 减弱 了 . +You may take this . ||| 您 可以 拿 着 这个 . +There is an apple on the desk . ||| 书桌上 有 一个 苹果 . +You are in my way . ||| 你 擋住 了 我 的 路 . +We have to find out what Tom wants . ||| 我们 要 明白 汤姆 想要 什么 . +Asia is much larger than Australia . ||| 亚洲 比 澳洲 大 很多 . +His brother is a famous soccer player . ||| 他 弟弟 是 个 有名 的 足球 选手 . +It is likely that she will succeed . ||| 她 很 有 可能 会 有所 成就 . +Tom knows what we are doing . ||| 汤姆 知道 我们 在 做 什么 . +His brother studies very hard . ||| 他 的 哥哥 很 用功 讀書 . +Have you handed in your homework ? ||| 你 交功課 了 嗎 ? +Do you understand ? ||| 你们 懂吗 ? +I was abducted by aliens . ||| 我 被 外星人 绑架 了 . +Tom has started studying karate . ||| 汤姆 已经 开始 学习 空手道 了 . +He lives next door to us . ||| 他 住 在 我們 隔壁 . +It takes 165 years for Neptune to orbit around the sun . ||| 海王星 繞行 太陽 一周 要 花 一百六十五 年 . +Excuse me , how much is this sweater ? ||| 请问 下 , 这件 毛衣 要 多少 钱 ? +I want you guys to do me a favor . ||| 我 想要 大家伙 帮 我个 忙 . +This is not a sentence . ||| 这 不是 一句 话 . +Smoking is strictly prohibited . ||| 严禁吸烟 . +He said that it would probably rain . ||| 他 說 很 可能 會 下雨 . +This book is not interesting at all . ||| 這 本書 一點 也 不 有趣 . +It is all Greek to me . ||| 我 对此 一窍不通 . +I have to get up quite early tomorrow . ||| 我 明天 得 早起 . +His son was expelled from school . ||| 他 的 兒子 被 學校 開 除了 . +Is Tom living in Boston ? ||| 汤姆 住 在 波士顿 吗 ? +Nothing is as important as peace . ||| 没有 什么 和 和平 一样 重要 . +What time do you wake up on Sundays ? ||| 你 星期天 幾點 起床 ? +Tom is still upset . ||| 湯姆 還 是 不安 . +I kept singing . ||| 我 繼續 唱歌 . +This car is very economical on gas . ||| 这辆 车 很 省油 . +I wake him up at 6 every morning . ||| 我 每天 早上 6 点 叫醒 他 . +Will it take long to recover ? ||| 要 很 長 的 時間 才能 恢 復 嗎 ? +I found the new magazine very interesting . ||| 我 發現 這 本新 雜 誌 非常 有趣 . +I am afraid the job I have got for you will not be easy . ||| 我 恐怕 我 給 你 找 的 工作 不 輕 鬆 . +She was holding an umbrella . ||| 她 握 着 一把 伞 . +They did not pay me . ||| 他们 没付 我 钱 . +Do not begin without me . ||| 我 不 在 就别 开始 . +She helped her father with the work in the garden . ||| 她 帮 她 爸爸 干 了 花园里 的 活 . +They will not come until tomorrow . ||| 他們 直到 明天 前 不 會 來 . +It is up to you . ||| 这 就要 看 您 了 . +She hit him . ||| 她 打 了 他 . +How can I get to the station ? ||| 我 怎樣 才能 到 火車 站 ? +I think I am going crazy . ||| 我 认为 我 快 疯 了 . +My team is always losing . ||| 我们 队 从来 就 没 赢 过 . +I want to go for a swim . ||| 我 想 去 游泳 . +I enjoy taking pictures . ||| 我 喜欢 拍照 . +This ticket is valid for three days . ||| 这 张 票 三日 有效 . +You will be able to see the difference very easily . ||| 您 很 容易 就 能 看出 区别 . +I am happiest when I am reading . ||| 當 我 閱讀 的 時候 , 我 最快 樂 . +It looks like today will be a long day . ||| 看来 今天 会 是 漫长 的 一天 啊 . +Tom heard nothing . ||| 汤姆 什么 也 没 听见 . +Let is not argue . ||| 我們 別 吵 了 . +It is impossible for me to explain it to you . ||| 要 我 解释 给 你 听 是 不 可能 的 . +You may choose whichever you want . ||| 你 可以 选择 任何 你 想要 的 . +You like rain , do not you ? ||| 你 喜欢 雨 对 吧 ? +We need to go . ||| 我们 必须 走 了 . +Turn off the light , please . ||| 請 關燈 . +Your watch is more expensive than mine . ||| 你 的 手表 比 我 的 贵 . +How are you doing today ? ||| 你 今天 怎么样 ? +It is already 7 : 00 . ||| 已经 是 早上 七点 了 . +She greeted us with a smile . ||| 她 面帶 微笑 向 我們 打招呼 . +Only a few TV programs are worth watching . ||| 只有 为数不多 的 几个 电视节目 值得 关注 . +We will have to wait and see . ||| 你 得 等一等 看 . +Is this fish still alive ? ||| 这条 鱼 还是 活 的 吗 ? +You are the one who suggested that we sing together . ||| 你 是 那個 建議 我們 一起 唱歌 的 人 . +I have to say goodnight to Tom . ||| 我 必须 跟 汤姆 说 晚安 . +Read this . ||| 念 这个 . +We waited in the park for a long time . ||| 我们 在 公园 等 了 好久 . +If you bite me , I will bite back . ||| 如果 你 咬 我 , 我 就 咬 回来 . +We have got lots of time . ||| 我們 有 很多 時間 . +We found the boy fast asleep . ||| 我們 發現 這個 男孩 睡 得 很沉 . +I wonder whether we have enough money to buy Tom the painting he wanted . ||| 我 想 知道 咱们 是否 有 足够 的 钱 给 汤姆 买 他 想要 的 这 幅画 +I 'd better get back home . ||| 我 回家 比较 好 . +They grow flowers in the garden . ||| 他們 在 花園 裡 種花 . +He has been to London three times . ||| 他 去過 倫敦 三次 . +I bumped into him at the station . ||| 我 在 車站 碰到 他 . +It looks like snow , does not it ? ||| 看起 來 要 下雪 了 , 不是 嗎 ? +He admitted his mistakes . ||| 他 承认 了 自己 的 错误 . +I am calling from a cell phone . ||| 我 正在 用 手机 打电话 . +Tom is bicycle was stolen yesterday . ||| 湯姆 的 自行 車 昨天 被 偷 了 . +He is a high school student . ||| 他 是 一名 高中 學生 . +I am actually doing quite well . ||| 我 其實 做 得 很 好 . +I know the boy who is sitting closest to the door . ||| 我 认识 那个 坐 得 最靠近 门 的 男孩 . +They waited for him for hours . ||| 他們 等 了 他 好 幾個 小 時 . +Tom got here before sunrise . ||| 汤姆 天亮 前 就 到 这 了 . +The cat was scared by an unfamiliar noise . ||| 猫 被 陌生 的 噪音 惊吓 了 . +Stay off the grass . ||| 不要 走 在 草地 上 . +Tom does not work here . ||| 湯姆 不 在 這裡 工作 . +Let is forget it for now . ||| 讓 我們 現在 忘 了 它 吧 . +Tom has to speak French every day at work . ||| 汤姆 每天 都 要 在 工作 时说 法语 . +It is self @-@ evident . ||| 這 是 不證 自明 的 . +I do not want to hear your theories . ||| 我 不想 听 你 的 理论 . +I want something sweet . ||| 我 要 一些 甜 的 東西 . +Nature is full of mysteries . ||| 自然 充满 了 神秘 . +I have had a lot of work to do lately . ||| 我 最近 有 很多 事情 要 做 . +Should I cancel the call ? ||| 我 该 取消 通话 吗 ? +I am afraid of earthquakes . ||| 我 怕 地震 . +How did you get there ? ||| 你 怎麼 到 那 的 ? +I do not like that . ||| 我 不 喜欢 . +What have you done with my pen ? ||| 你 用 我 的 筆 做 了 什麼 ? +Tom was there physically , but not mentally . ||| 汤姆 人 在 心 不 在 . +I think you should make the deal . ||| 我 看 你 该 做 这 交易 . +There is a path through the fields . ||| 有 条 小路 穿过 农田 . +He was very busy all day . ||| 他 忙 了 一整天 . +I was terribly confused by his question . ||| 我 對 他 的 問題 感到 非常 困惑 . +I can see Tom . ||| 我 看得见 汤姆 . +" Are you tired ? " " No , not at all . " ||| “ 你 累 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +Tom is speech was good . ||| 汤姆 的 演讲 很 精彩 . +I will be seeing Mary this afternoon . ||| 我 今天下午 會 看到 瑪麗 . +I am really looking forward to summer vacation . ||| 我 真的 非常 期待 暑假 . +Would you please show me that skirt ? ||| 请 你 给 我 看 一下 这 条 裙子 好 吗 ? +Nothing is missing . ||| 什么 也 没少 . +His explanation is not clear . ||| 他 的 說明 並 不 清楚 . +That is right . ||| 对 ! +You want to be excused from doing that , do not you ? ||| 你 想 通过 做 那件事 而 得到 原谅 是 吗 ? +Who do you think I am ? ||| 你 把 我 当 什么 啦 ? +Do you have children ? ||| 你 有 孩子 嗎 ? +Please have someone else do it . ||| 請 讓 別人 去 做 . +I go to school here , too . ||| 我 也 在 这儿 上学 . +The days are getting longer and longer . ||| 白天 越來越 長 了 . +How many apples do you want ? ||| 你 要 幾個 蘋果 ? +He is always running short of cash . ||| 他 總是 缺錢 . +Tom denied having stolen the money . ||| Tom 否认 偷 了 钱 . +Help me lift the package . ||| 帮 我 抬起 这 包裹 . +I heard someone come in . ||| 我 聽到 有人 進來 了 . +I am concerned about Tom . ||| 我 在 為 湯姆 擔心 . +The two young girls smiled happily . ||| 兩個 年輕 的 女孩 高興 地 微笑 了 . +Tom did not want to talk to anyone . ||| 汤姆 不想 跟 任何人 说话 . +He is good at football . ||| 他 擅長 足球 . +Tom drank heavily . ||| 湯姆 喝 得 很多 . +I had my brother repair my bicycle . ||| 我 讓 我 的 哥哥 修理 我 的 腳踏車 . +She was very happy with my gift . ||| 她 對 於 我 送 的 禮物 感到 很 開心 . +I was watching television when the telephone rang . ||| 电话响 的 时候 , 我 在 看电视 . +Long time , no see . ||| 好久 不見 . +They are trying to keep costs down . ||| 他们 正 努力 降低成本 . +He is really angry . ||| 他 非常 生气 . +Step inside . ||| 进来 . +Pass me the salt , please . ||| 请 把 盐 递给 我 . +English is a hard language to learn . ||| 英語 是 一種 難學 的 語言 . +My watch is very accurate . ||| 我 的 手 錶 很 準 . +He is likely to be late again . ||| 他 可能 又 遲 到 了 . +Everyone except me was invited . ||| 除了 我 , 每个 人 都 受到 了 邀请 . +I can not explain it either . ||| 我 也 無法 解釋 . +I like summer better than winter . ||| 我 喜歡 夏天 勝 於 冬天 . +He used to get up early . ||| 他 以前 很早 起床 . +I do not understand . ||| 我 不 懂 . +Do not put anything in the bag . ||| 不要 把 所有 东西 都 放到 包 里面 . +We gather here once a week . ||| 我们 每周 在 这儿 聚 一次 . +He is old enough to travel alone . ||| 他 够 大 了 , 可以 独自 旅行 了 . +My room is a pigsty . ||| 我 房间 是 个 猪 窝 . +When to start is the main problem . ||| 什么 时候 开始 是 主要 问题 . +The weather report says we will get three inches of snow . ||| 天气预报 说 会 下 三 英寸 雪 . +Someone must have stolen your watch . ||| 一定 是 有人 偷 了 你 的 手 錶 . +I owe it you that I am still alive . ||| 多亏 了 你 , 我 还 活着 . +Mathematics is basic to all sciences . ||| 數學 是 所有 科學 的 基礎 . +How many people work there ? ||| 有 多少 人 在 那里 工作 ? +You always work hard . ||| 你 一直 努力 工作 . +I want to become a teacher of Japanese . ||| 我 想 成为 日语 老师 . +Water is a liquid . ||| 水 是 液体 . +I do not often do that by myself . ||| 我 不 經常 自己 去 做 . +I smell something here . ||| 我 在 这里 闻见 了 什么 . +My ear was bleeding this morning . ||| 今天 早上 我 耳朵 流血 了 . +I will not see him any more . ||| 我 不会 再见 他 了 . +I ran into my aunt by chance in Europe . ||| 我 在 欧洲 偶遇 了 姑母 . +She really does like animals . ||| 她 确实 喜欢 动物 . +He is the father of two children . ||| 他 是 兩個 孩子 的 父親 . +I am Tom is assistant . ||| 我 是 湯姆 的 助手 . +Do not leave ! ||| 別 走 ! +Grandmother sent us a box of apples . ||| 奶奶 送 了 我們 一箱 蘋果 . +I was late for the appointment . ||| 我 約 會 遲 到 了 . +Industry as we know it today did not exist in those days . ||| 我们 今天 所 认识 的 工业 在 那个 时代 不 存在 . +I got a good grade in English . ||| 我 的 英文 成績 很 好 . +I am fed up with eating in restaurants . ||| 我 受夠 了 在 餐館 吃 飯 . +Fasten your seat belt . ||| 系上 您 的 安全带 . +You have got a great memory . ||| 你 的 記憶力 很 好 . +Let is meet at the station at eight tomorrow morning . ||| 明早 八点 车站 见 . +I have always kept my promises . ||| 我 一直 遵守 我 的 諾言 . +We have many goals . ||| 我們 有 許多 目標 . +She likes music very much . ||| 她 非常 喜欢 音乐 . +You can stay here if you like . ||| 你 要是 願意 就 留在 這裡 . +We are having a party this evening . ||| 我們 今天 晚上 將 舉行 派 對 . +Were you happy ? ||| 你 开心 吗 ? +How long does it take to walk to the station ? ||| 走 着 去 火车站 要 多久 ? +Tom does not have any shoes on . ||| 汤姆 没 穿鞋 . +Let is clear up this problem . ||| 让 我们 来 澄清 一下 这个 问题 . +Do all of you speak French ? ||| 你們 都 講 法語 嗎 ? +You should read many books when you are young . ||| 应该 趁 年轻 多 读点 书 . +She does not live there any more . ||| 她 不再 住 在 那裡 了 . +What made her do that ? ||| 为什么 她 要 做 这种 事情 呢 ? +I am not disagreeing with you . ||| 我 没有 反对 你 . +Tom is trying to figure out how to do that now . ||| 汤姆 现在 正在 想 办法 去 做 那件事 +This dam supplies us with water and electricity . ||| 这个 水坝 给 我们 提供 水 和 电 . +This is a very tall tree . ||| 这 是 棵 很高 的 树 . +Kyoto is not as large as Osaka . ||| 京都 不如 大阪 大 . +Our garden was full of weeds . ||| 我们 的 花园 布满 了 杂草 . +All of them are good teachers . ||| 他们 都 是 好 老师 . +Of course . ||| 当然 了 . +What do you do before breakfast ? ||| 早餐 前 你 做 什麼 ? +I noticed that Tom was smiling . ||| 我 注意 到 汤姆 在 笑 . +Will you have time to have lunch with me ? ||| 你 有 时间 跟 我 吃 午饭 吗 ? +You are selling him short . ||| 你 別 小看 了 他 . +He spent the morning reading a book . ||| 他 整個 上午 都 在 看書 . +I like football . ||| 我 喜歡 足球 . +My neighbor renovated her house completely . ||| 我 的 鄰居 把 她 的 屋子 翻新 了 一遍 . +Mary can dance well . ||| 瑪麗舞 跳 得 很 好 . +We play football every Saturday . ||| 我們 每個 星期六 踢足球 . +Tom took Mary to the hospital on the back of his motorcycle . ||| 汤姆 把 玛丽 放到 他 的 摩托车 背上 送到 医院 . +Be nice to others . ||| 对 他人 要 友善 . +I did not even think of it . ||| 我 連 想都不想 . +I bought two tickets for a concert . ||| 我 买 了 两张 音乐会 的 票 . +I would like to live in New York . ||| 我 想住 在 紐約 . +The law is full of ambiguities . ||| 法律 有 很多 不 明确 的 地方 . +What languages do you speak ? ||| 你 會 說 什麼 語言 ? +Why did you come here this morning ? ||| 今天 早上 你 為 什麼 來 這裡 ? +A bird can fly . ||| 鸟会 飞 . +How long have you been working here ? ||| 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +He told his son an interesting story . ||| 他 給 他 兒子 講 了 一個 有趣 的 故事 . +Do you know how to do that ? ||| 你 知道 怎么 做 吗 ? +Our school library is small , but new . ||| 我们 学校 的 图书馆 很小 , 但是 是 新 的 . +It will rain soon . ||| 天 快要 下雨 了 . +Tom has known Mary since childhood . ||| 汤姆 从小 就 认识 玛丽 了 . +He wants to go to America . ||| 他 想 去 美國 . +You are drinking out of my cup . ||| 你 正在 把 我 杯子 里 的 东西 喝掉 . +The Rhine runs between France and Germany . ||| 萊茵 河流 經 法國 和 德國 國界 . +Take your time . ||| 你 可以 慢慢来 . +This is my page on Facebook . ||| 這 是 我 的 Facebook 頁面 . +The average height of girls in this class is over 155 centimeters . ||| 这个 班 的 女生 平均 身高 超过 了 155 公分 . +He erased his speech from the tape . ||| 他 把 他 的 那段 话 从 磁带 里 删除 了 . +You do have choices . ||| 你 有 选择 . +She is busy preparing supper now . ||| 她 現在 正忙 著 準備 晚飯 . +Will you be there ? ||| 你 会 在 那里 吗 ? +I can not believe anyone anymore . ||| 我 再也 无法 相信 任何人 了 . +She will be back within a week . ||| 她 一週 之內 會 回來 . +It is too early to get up . ||| 時間 還 早 不用 起床 . +What is the daily fee ? ||| 每天 费用 多少 ? +It is very hot in the summer in Japan . ||| 日本 的 夏天 很 热 . +Call me at six tomorrow morning . ||| 明天 早上 6 点 给 我 打电话 . +Please do not cry . ||| 请 你 不要 哭 . +He asked his friends for help . ||| 他 尋求 他 的 朋友 的 幫助 . +I cheered myself up by listening to music . ||| 我 藉由 聽 音樂 來 鼓舞 我 自己 . +Do you still want to talk to me ? ||| 你 还 想 跟 我 谈 吗 ? +Tom probably knows how to get to Mary is house . ||| 湯姆 大概 知道 要 怎麼 去 瑪莉 家 吧 . +Fluency in English is a must . ||| 流利 的 英語 是 必須 的 . +I do not like children . ||| 我 不 喜欢 小孩 . +She was wearing pumps . ||| 她 穿著 舞鞋 . +In a few minutes we will be landing at New Tokyo International Airport . ||| 我们 将 于 几分钟 内 降落 在 新 东京国际 机场 . +I am taking an exam in January . ||| 我 一月份 要 参加考试 . +Software is constantly evolving . ||| 软件 正在 不断 进化 . +Which is your book ? ||| 哪 本 是 您 的 書 ? +Follow him . ||| 跟著 他 走 . +My hand was burned . ||| 我 的 手 烧伤 了 . +Tom died in a traffic accident . ||| 湯姆死 於 交通事故 . +Have you found your ticket yet ? ||| 你 找到 你 的 票 了 吗 ? +The animals died one after another . ||| 動物 一個 接 一個 的 死亡 . +They do not seem to be Americans . ||| 他們 似乎 不是 美國 人 . +Do not worry about such a thing . ||| 不要 擔心 這樣 的 事情 . +I am three years younger than you . ||| 我 比 你 小 三歲 . +My daughter wants a kitten . ||| 我 女儿 想要 一只 小猫 . +She married her classmate . ||| 她 跟 她 的 同學 結婚 了 . +Could I have a pillow and blanket ? ||| 給 我 一個 枕頭 和 毛毯 好 嗎 ? +Where is the police station ? ||| 警察局 在 哪里 ? +Where is the hammer ? ||| 锤子 在 哪里 ? +Is this your pen ? ||| 這 是 你 的 筆 嗎 ? +I made an abstract of a book . ||| 我 為 一本 書 寫 了 內容 提要 . +They sell candy . ||| 他們 賣 糖果 . +She was only frightened , not injured . ||| 她 只是 被 嚇到 了 並 沒有 受傷 . +You made me laugh . ||| 我 被 你 逗乐 了 . +I take the train to work every day . ||| 我 每天 搭 火車 上班 . +My fingers are so numb with cold that I can not play the piano . ||| 我 的 手指 冻僵 了 , 以至于 无法 弹钢琴 了 . +Tom will not even know what you did until it is over . ||| 汤姆 不到 最后 不会 知道 你 做 了 什么 . +I arrived later than usual . ||| 我 比 平常 晚 到 . +Can you find it ? ||| 你 能 找到 它 嗎 ? +I went camping with my family . ||| 我 和 家人 去 露營 . +Needless to say , fundamental human rights should be respected . ||| 無須 多 言 , 基本 人權 應當 被 尊重 . +I was out of town on vacation . ||| 我 出 城 度假 了 . +There is always someone talking . ||| 總是 會 有人 談論 . +Please fill out this form first . ||| 請 先 填寫 這 張 表格 . +This smells great ! What are you cooking ? ||| 聞 起來 好 香 喔 . 你 在 煮 什麼 ? +He went out in spite of the rain . ||| 尽管 下着雨 , 他 还是 出去 了 . +We are special . ||| 我们 是 特别 的 . +Tell her to come at noon . ||| 让 她 中午 过来 . +I will send a letter to my mother . ||| 我会 给 我 的 母亲 寄 封信 . +I looked for him in the supermarket . ||| 我 在 超級 市場 裡 找 他 . +How did you know all that ? ||| 你 怎麼 全都 知道 ? +They buried him in the graveyard by the church . ||| 他們 把 他 埋葬 在 教堂 旁 的 墓園 . +I wish I could live near your house . ||| 我 希望 住 在 你家 附近 . +Let is fly a kite . ||| 讓 我們 放 風箏 . +I got up at seven . ||| 我 7 点 起床 了 . +He was born in Africa . ||| 他 出生 在 非洲 . +How do you like your eggs done ? ||| 您 要 什麼樣 的 蛋 ? +Why do you even care about this ? ||| 你 怎麼 還 關心 這個 ? +I am feeling blue today . ||| 我 今天 的 心情 不好 . +Is the bank open ? ||| 銀行 開著 嗎 ? +When he shouted , the veins in his neck stood out clearly . ||| 当 他 咆哮 时 , 他 脖子 上 青筋 暴起 . +Did you phone Tom ? ||| 给 汤姆 打 过 电话 了 吗 ? +Tom told me where he lived . ||| 湯姆 告訴 我 他 住 在 哪裡 . +It is exactly as you say it is . ||| 它 跟 你 說 的 完全 一樣 . +Where do you suppose you will spend your vacation ? ||| 你 认为 你 会 到 哪儿 度假 ? +The vacation is over now . ||| 现在 假期 结束 了 . +The first attack missed the target . ||| 第一次 攻击 错过 了 目标 . +Do you have any brothers ? ||| 你 有 兄弟 吗 ? +Every dog has his day . ||| 凡人 皆 有 得意 时 . +That is the reason I bought this book . ||| 那 是 我 買 這 本書 的 原因 . +You took the wrong key . ||| 你 拿 错 钥匙 了 . +Tom put a lot of honey on his toast . ||| 汤姆 往 他 的 吐司 上放 了 许多 蜂蜜 . +Today is the 3rd . ||| 今天 三號 . +How did you spend your winter vacation ? ||| 你 的 寒假 怎么 过 的 ? +I asked him about the accident . ||| 我 問 他 關 於 這個 意外 的 事 . +You are very brave , are not you ? ||| 你 很 勇敢 , 不是 嗎 ? +She gave the door a gentle push . ||| 她 輕輕地 推 了 門 . +I have been busy repairing things . ||| 我 一直 在 忙 着 修 东西 . +My father bought me a new bicycle . ||| 父親 買 了 一輛 新 自行 車 給 我 . +I think this book is worth reading . ||| 我 覺得 這 本書 值得 一 讀 . +I really have to go . ||| 我 真的 得 走 了 . +I generally walk to school . ||| 我 通常 走 去 学校 . +I like walking at night . ||| 我 喜歡 在 夜晚 走路 . +After walking for an hour , we stopped to take a rest . ||| 走 了 一個 小 時 後 , 我們 停下 來 休息 . +I got it free . ||| 我 是 免費 得到 的 . +I told you never to come here again . ||| 我 告诉 过 你 不要 再 来 这里 了 . +English is useful in diplomacy and tourism . ||| 英語 在 外交 和 旅遊 業 方面 很 有用 . +I respect Tom . ||| 我 尊敬 湯姆 . +I know that it is hard to believe . ||| 我 知道 , 要 相信 这件 事 很 难 . +My father has been to Australia twice . ||| 我 父親 曾經 去過 澳洲 兩次 . +I am determined to be a scientist . ||| 我 決心 要成 為 一名 科學家 . +Nobody should be worried . ||| 沒人應 該 擔心 . +I am having some problems compiling this software . ||| 我 编译 这个 程序 有些 困难 . +It is more polite to say thin than skinny . ||| 说 苗条 比 说 瘦 更 有 礼貌 . +There is a long wait between trains . ||| 在 火车 的 间隔 中 有 漫长 的 等待 . +I have no idea of what is going on in there . ||| 我 不 清楚 這裡 發生 了 什麼 事 ? +He was an excellent scientist , and what is more , was a great poet . ||| 他 是 一位 優秀 的 科學家 , 更是 一位 偉大 的 詩人 . +I have never been to New York , and my sister has not , either . ||| 我 从没 去过 纽约 , 我 妹妹 也 没有 . +I gave careful consideration to the problem . ||| 我 仔細 地 考慮 了 這個 問題 . +I was watching TV when the telephone rang . ||| 电话响 的 时候 , 我 在 看电视 . +When you pose a question , you expect an answer . ||| 當 你 提出 一個 問題 , 你 期望 得到 答案 . +The boy lay listening to the radio . ||| 男孩 躺 着 听 收音机 . +Please eat some cake . ||| 请吃 点 蛋糕 . +Basketball is a lot of fun . ||| 篮球 可 真是 有意思 . +A cup of tea , please . ||| 请 给 我 一杯 茶 . +You might not like this beer at first . It is an acquired taste . ||| 剛 開始 的 時候 你 可能 不 會 喜歡 這個 啤酒 . 這 是 需要 多次 品嚐 去 習慣 它 的 口味 . +Tom will probably be there . ||| 湯姆 可能 會 去 那裡 . +He wrote the report . ||| 他 寫 了 這份 報告 . +Tom has a 13 @-@ year @-@ old daughter . ||| Tom 有個 十三 歲 的 女兒 . +It is a good idea . ||| 这 是 个 好 主意 . +We had a late lunch at two . ||| 我們 在 兩點鐘 很 晚 才 吃 午餐 . +This is a wooden table . ||| 这 是 张 木桌 . +Who does the cooking in your home ? ||| 你 家里 谁 做饭 ? +Can you pass me the milk ? ||| 可以 把 牛奶 递给 我 吗 ? +He heard a shout . ||| 他 聽到 了 叫 聲 . +I stayed up late last night . ||| 我 昨晚 睡得 晚 . +I have not yet finished my homework . ||| 我 还 没 做完作业 . +I usually get up at 6 : 00 . ||| 我 一般 六点 起床 . +I wish they would stop fighting . ||| 我 希望 他們 會 停止 戰鬥 . +They looked as if they would cry . ||| 他們 看 起來 好像 要 哭 了 . +Please turn off the TV . ||| 請 把 電視 關掉 . +Tom studies hard . ||| 汤姆 努力学习 . +I can not stand it . ||| 我 不能 忍受 . +Tom is in Boston on business . ||| 汤姆 因为 工作 现在 在 波士顿 . +I am not going to give up . ||| 我 不会 放弃 的 . +Tom did not have time to finish his report . ||| 湯姆 沒 時間 完成 報告 . +Release him . ||| 放开 他 . +He went to America to study medicine . ||| 他 去 美国 学医 了 . +Tom is a Boston native . ||| 湯姆 是 波士 頓 本地人 . +Do not stay in the sun too long . ||| 不要 在 陽光 下 逗留 太久 . +I overslept because my alarm did not go off . ||| 因为 闹铃 没有 响 , 所以 我 继续 睡下去 了 . +Do not let children play in the road . ||| 别 让 孩子 们 在 马路 中间 嬉戏 . +I do not want any bananas at all . ||| 我 一點 也 不要 香蕉 . +Check Tom is pulse again . ||| 再 检查一下 汤姆 的 脉搏 . +I will never tell anyone where I have hidden the treasure . ||| 我 不 會 告訴 任何人 我 藏宝 的 地方 . +He absconded with the money . ||| 他 携款 潜逃 . +They are arriving here soon from Hong Kong . ||| 他们 就快 从 香港 抵达 了 . +You forgot to turn off the light . ||| 他 忘 了 關燈 . +Who were you talking to ? ||| 你 跟 誰 說 話 呢 ? +Would you like tea or coffee ? ||| 您 想要 茶 还是 咖啡 ? +I do not speak Japanese . ||| 我 不 說 日 語 . +An eye for an eye , a tooth for a tooth . ||| 以 眼 還 眼 , 以 牙 還 牙 . +I am grateful for that . ||| 我 对 那事 很 是 感激 . +Will you excuse us for a moment ? ||| 你 会 暂时 原谅 我们 吗 ? +We talked over the phone . ||| 我們 電話 裡 說 . +The earthworm wriggled when I touched it . ||| 我 碰 蚯蚓 的 时候 , 它 扭动 起来 . +I am playing volleyball now . ||| 我 现在 在 打 排球 . +Sorry , that was none of my business . ||| 對 不起 , 那 不關 我 的 事 . +Tom told me that he will not come to school tomorrow . ||| 汤姆 告诉 我 他 明天 不 来 上学 . +I do not meet him so often . ||| 我 不常 見到 他 . +The well ran dry . ||| 這 口 井 乾 涸了 . +That is the village I was born in . ||| 这 就是 我 出生 的 村庄 . +The girl resembles her mother . ||| 這個 女孩 酷似 她 的 母親 . +She is giving a party tonight . ||| 她 今晚 舉行 派 對 . +This book is really old . ||| 這 本書 真的 很舊 . +Tell me what happened . ||| 告訴 我 發生 了 什麼 事 . +She is not afraid of death . ||| 她 不怕死 . +Everyone , say cheese . ||| 所有人 , 都 请 说 cheese . +He did not study at all . ||| 他 根本 就 没有 学习 . +Please pull over . ||| 请 把 车 停下来 . +I need a good pair of sunglasses . ||| 我 需要 一副 好 的 太陽 眼鏡 . +The beach is an ideal place for children to play . ||| 海滩 是 一个 供 孩子 们 玩乐 的 理想 场所 . +She is sitting on the bench . ||| 她 坐在 長椅 上 . +Are you all ready ? ||| 你們 都 準備 好 了 嗎 ? +Can I ask you some questions ? ||| 我 能 問 你們 一些 問題 嗎 ? +He is unfit to be a teacher . ||| 他 不 适合 当 老师 . +I expect your help . ||| 我 期待 你 的 幫助 . +Is this really worth it ? ||| 这样 真的 值得 吗 ? +The bathtub was filled with hot water and flower petals . ||| 浴缸 裡 滿 是 熱水 和 花瓣 . +I am tall . ||| 我 个子 高 . +You are responsible for the result . ||| 你 要 对 结果 负责 . +I had no choice but to accept the offer . ||| 除了 接受 报价 , 我 别无选择 . +This is my bag . ||| 那 是 我 的 包 . +I believe Tom is right . ||| 我 相信 湯姆 是 對 的 . +My brother can drive a car . ||| 我 哥哥 會 開車 . +I did not mean to wake you . ||| 我 沒 打算 叫醒 你 . +That is not Tom is fault . ||| 那 不是 湯姆 的 錯 . +I love her so much that I can not leave her . ||| 我 如此 地 愛 她 所以 我 無法 離開 她 . +I like oranges better than apples . ||| 我 喜歡 橘子 勝 過 蘋果 . +There was not a soul in sight . ||| 一個 人影 也 看不到 . +It was my duty to do that . ||| 做 那事 是 我 的 责任 . +He had a book on physics published . ||| 他 有 一本 關於 物理 學 的 書 被 出版 了 . +That is not important , is it ? ||| 那 不 重要 , 不是 么 ? +I am not sure what I was thinking . ||| 我 不 确定 当时 我 正在 想 什么 . +I will give you a bicycle for your birthday . ||| 你 生日 的 时候 , 我 送 你 一辆 自行车 . +I waste a lot of time daydreaming . ||| 我 浪費 了 很多 時間 作 白日 夢 . +Step aside . ||| 让开 . +I am not really sure what Tom meant . ||| 我 不 清楚 湯姆 是 甚麼 意思 . +My aunt made me a new skirt . ||| 我 姑姑 做 了 一條 新 裙子 給 我 . +I was in the garden all afternoon . ||| 我 整个 下午 都 在 花园里 . +Tom freed the bird . ||| Tom 將鳥 放走 . +Tom was just as excited as Mary . ||| 汤姆 就 和玛丽 一样 兴奋 . +Several cottages have been isolated by the flood water . ||| 好几间 小屋 被 洪水 孤立 起来 了 . +I have never thought of that . ||| 我 從來 沒有 想到 這 一點 . +I can not live without TV . ||| 没有 电视 , 我 无法 生活 . +The problem is that solar energy costs too much . ||| 問題 是 , 太陽 能 太 貴 了 . +She came back an hour later . ||| 一个 小时 后 , 她 返回 了 . +All I want now is a little sleep . ||| 我 现在 只 想 睡 点 觉 . +It is obvious . ||| 它 是 明顯 的 . +Kobe is famous as a port city . ||| 科比 是 一個 著名 的 港口城市 . +I could not control my anger . ||| 我 不能 控制 我 的 愤怒 . +Long skirts are out of fashion now . ||| 現在 長裙 過時 了 . +That requires careful consideration . ||| 這 需要 慎重 考慮 . +I will take care of it . ||| 我 會 關照 它 的 . +Your time is running out . ||| 你 的 时间 快用 完 了 . +What would you like for dessert ? ||| 你 要 什麼 甜點 ? +I do not wash my hair in the morning . ||| 我 早上 不 洗头 . +Please take more care in the future . ||| 以后 请 注意 点 . +He is two years older than you . ||| 他 比 你 大 兩歲 . +My mother was an alcoholic . ||| 我 母亲 是 个 酒鬼 . +They are plotting to kill the king . ||| 他們 正密 謀要 殺害 國王 . +Tom has always been a bachelor . ||| 汤姆 一直 都 是 单身汉 . +It is been snowing all night . ||| 雪 下 了 一整夜 . +How annoying ! ||| 真 烦人 . +If you stay at a big hotel , you can use their swimming pool . ||| 若 你 住 到 的 是 大 的 旅館 , 就 能 使用 他們 的 游泳池 . +Do you know why it is happening ? ||| 你 知道 为什么 它 正在 发生 吗 ? +She was listening to music . ||| 她 听 着 音乐 . +She went to Italy to learn Italian . ||| 她 到 意大利 學習 意大利 語 . +Do you have children already ? ||| 你 已經 有 孩子 了 嗎 ? +I know that you are learning French at school . ||| 我 知道 你 在 學校 學法 語 . +I broke the lock opening the door . ||| 我 开门 的 时候 弄坏了 锁 . +What were you doing at that time ? ||| 當時 你 在 做 什麼 ? +She did not visit me on Sunday but on Monday . ||| 她 沒有 在 星期天 來 找 我 , 而是 星期一 . +I am going to drop in on her next week . ||| 下禮 拜 我 要 去 拜訪 她 一下 . +Who is your teacher ? ||| 谁 是 你 老师 ? +Tomorrow is going to be a big day . ||| 明天 是 个 大 日子 . +Wake me up at seven . ||| 七点 叫醒 我 . +Your plan sounds great . ||| 你 的 計劃 聽 起來 很 不錯 . +I am afraid I can not help you . You must ask someone else . ||| 我 担心 可能 帮不了 你 , 你 需要 找 其他人 帮忙 . +We talked about a variety of topics . ||| 我們 談 了 各種 話題 . +Come whenever you want to . ||| 什么 时候 想来 就 过来 吧 . +Give me something to do . ||| 给 我 点 事 做 . +Not a star was to be seen . ||| 沒 看到 任何 一顆 星星 . +It is up to you . ||| 由 你 來 決定 . +Where did it come from ? ||| 它 从 哪里 来 ? +Classes begin next week . ||| 课程 下周 开始 . +Christmas is a special holiday . ||| 聖誕節 是 一個 特別 的 節日 . +The dog growled at a little boy . ||| 這 隻 狗 對 著 一 個 小男孩 咆哮 . +After supper , I washed the dishes . ||| 晚饭 后 我 洗 了 碗碟 . +Mt . Fuji can be seen from here . ||| 從 這裡 可以 看到 富士山 . +There used to be a lot of frogs in this pond . ||| 以前 在 這個 池塘 裡 有 許多 青蛙 . +His letter makes me uneasy . ||| 他 的 来信 让 我 不安 . +I gave Mary a book . ||| 我 給 了 瑪麗 一本 書 . +He is old enough to drive a car . ||| 他 的 年紀 可以 開車 了 . +If her nose were a little shorter , she would be quite pretty . ||| 若 她 的 姿態 能 再 低 一點 就 更 完美 了 . +Is your family doing well ? ||| 你 的 家人 好 么 ? +She tried to commit suicide . ||| 她 企圖 自殺 . +I had hardly left home when it began to rain heavily . ||| 當雨 開始 下得 很大 的 時候 , 我 幾乎 不能 出門 了 . +The sun was shining , yet it was cold . ||| 虽然 有 阳光 照射 , 但 还是 很 冷 . +Tom bought some flowers for Mary . ||| 湯姆 給 瑪麗 帶 了 些 花 . +She will love her husband forever . ||| 她 會 永遠 愛 她 的 丈夫 . +The only sound to be heard was the ticking of the clock . ||| 唯一 能 听到 的 声音 是 钟 的 滴答声 . +I can not focus on two things at the same time . ||| 我 不能 同時 注意 两件事 . +Tom lost his only son in a car accident . ||| 汤姆 在 一场 车祸 中 失去 了 他 的 独子 . +He placed emphasis on the importance of education . ||| 他 强调 了 教育 的 重要性 . +This book is full of mistakes . ||| 這 本書 充滿 了 錯誤 . +Here we are ! ||| 我們 到 了 ! +Everyone is waiting for Tom . ||| 每個 人 都 在 等 湯姆 . +That bag is mine . ||| 那 是 我 的 包 . +What do you like to do in your free time ? ||| 你 空闲 时间 喜欢 做 什么 ? +You have to go to the hospital . ||| 你 必須 去 醫院 . +I want to stay in a hotel near the airport . ||| 我 想住 在 機場 附近 的 旅館 裡 . +That is our house . ||| 那 是 我們 的 房子 . +I know that feeling . ||| 我 知道 那種 感覺 . +The thunder scared the children . ||| 雷聲 嚇到 孩子 了 . +Which book is yours ? ||| 哪 本書 是 您 的 ? +Sir , that CD is available only by special order . ||| 先生 , 那 盘 CD 需要 预定 才 有 . +A drunk driver was responsible for the car accident . ||| 喝醉 的 驾驶员 对 车祸 有 责任 . +I am not a junior high school student . ||| 我 不是 個 初中生 . +Thank you for coming to meet me . ||| 謝謝 你 來 跟 我 見 面 . +Everything went black . ||| 一切 都 變成 了 黑色 . +Tom decided to stay with Mary . ||| 汤姆 决定 陪 玛丽 在 一起 . +May I open my eyes now ? ||| 我 現在 能 睜 眼 嗎 ? +Tom took over after I left . ||| 我 走 了 后 汤姆 接手 了 . +Cool down . ||| 冷静 点 . +What will tomorrow is weather be like ? ||| 明天 天氣 怎麼樣 ? +You are working too hard . Take it easy for a while . ||| 你 工作 太 勤奋 了 . 休息 一会 吧 . +Tom is able to come to our party tomorrow . ||| 汤姆 明天 能 来 我们 的 聚会 . +Shall we walk ? ||| 我们 该 步行 吗 ? +It is not a cat . It is a dog . ||| 它 不是 猫 . 它 是 狗 . +I do not know for certain when he will come . ||| 我 不 知道 他 来 这里 的 确切 时间 . +I am sad without you . ||| 沒有 你 我 很 悲傷 . +Was there anyone in the room ? ||| 房间 里 有人 吗 ? +Are there problems at home ? ||| 在家 裡 有 問題 嗎 ? +There was no one there besides me . ||| 那儿 除了 我 , 一个 人 都 没有 . +Lots of companies have implemented an eight @-@ hour working day . ||| 很多 公司 實行 8 小 時 工作制 . +That was the first time I 'd seen Tom so angry . ||| 那 是 我 第一次 见到 汤姆 如此 生气 . +I hope you will soon get well . ||| 我 希望 您 快 就 会 好 起来 . +I see a book . ||| 我 看到 一本 書 . +I use this . ||| 我 使用 这个 . +What is this ? ||| 這 是 什麼 啊 ? +She gave out a sigh of relief . ||| 她 鬆 了 一口 氣 . +I am sure you will never regret it . ||| 我 確定 你 永不 後 悔 . +Put the chair in front of the desk . ||| 把 椅子 放在 桌子 前面 . +His sad story touched my heart . ||| 他 悲伤 的 故事 触动 了 我 的 心 . +If he is fluent in English , I will hire him . ||| 如果 他 說 得 一口 流利 的 英文 , 我 就 請 他 為 我 工作 . +This sofa takes up too much space . ||| 這 張沙 發占 了 太 多 空間 . +Everybody knows that he is honest . ||| 大家 都 知道 他 是 誠實 的 . +He worked in a big city hospital . ||| 他 在 一間 很大 的 市立 醫院 工作 . +I love nature . ||| 我 愛 大自然 . +How was your trip ? ||| 你 的 旅行 怎么样 ? +He is familiar with Japanese culture . ||| 他 熟悉 日本 文化 . +Is she Japanese ? ||| 她 是 日本 人 嗎 ? +It will definitely rain . ||| 绝对 将要 下雨 . +This ticket is good for three days . ||| 这 张 票 三日 有效 . +I will be at the meeting . ||| 我会 出席会议 的 . +Get into your car . ||| 进 你 的 车里 . +I know that money is not everything . ||| 我 知道 金钱 不 代表 一切 . +Where do you want to go today ? ||| 你 今天 想 去 哪儿 呀 ? +Wood floats . ||| 木头 会 漂浮 . +This clock is not working . ||| 这 表不走 了 . +My mother likes tea very much . ||| 我 媽媽 很 喜歡 茶 . +The students all laughed . ||| 學生 都 笑 了 . +I told you to stop , did not I ? ||| 我 告訴 了 你 停下 來 , 不是 嗎 ? +Although I was tired , I did what I was able to do . ||| 雖然 我 很 累 , 但是 我 已經 做 了 我 能 做 的 了 . +Do not complain . You have to go . ||| 別 抱怨 了 . 你 必須 去 . +I found out where she was . ||| 我 弄清楚 她 在 哪儿 了 . +I will ask him tomorrow . ||| 明天 我会 问 他 的 . +What is the last thing you remember ? ||| 你 能 记 起来 的 最后 一件 事 是 什么 ? +Would you do me a favor ? ||| 你 能 幫 我 一個 忙 嗎 ? +Come on , trust me . ||| 来 吧 , 相信 我 . +Prices depend on supply and demand . ||| 價格 取決 於 供給 和 需求 . +Where is your house ? ||| 你們 家 在 哪 ? +I love you more than anyone else . ||| 我爱你 胜过 其他 任何 一个 人 . +I bought her a new car . ||| 我 给 她 买 了 辆 新车 . +We got up at dawn to avoid a traffic jam . ||| 我们 黎明 时 起床 以 避开 交通堵塞 . +He is not an idiot . ||| 他 不是 傻 的 . +I am listening to the radio . ||| 我 在 聽 收音 機 . +Tom and Mary have been here for three hours . ||| 湯姆 和 瑪麗 已經 在 這裡 待 了 三個 小 時 . +Where can I go to get a map of Europe ? ||| 去 哪里 可以 买 到 欧洲 的 地图 ? +She died on a cold night in December . ||| 她 在 一个 寒冷 的 十二月 晚上 死 了 . +I will not know until I talk to Tom . ||| 我 不 跟 湯姆 說 就 不 知道 . +I really appreciate what you have done . ||| 我 真的 很 感激 你 所 做 的 一切 . +Where does it hurt ? ||| 哪裡 痛 ? +This is where Tom wants to live . ||| 这 就是 汤姆 想住 的 地方 . +Tom is married to a Canadian named Mary . ||| 汤姆 和 一个 叫 玛丽 的 加拿大人 结婚 了 . +He entered my room without permission . ||| 他 未經 允許 進 了 我 房間 . +This is my notebook . ||| 這 本 是 我 的 筆記 本 . +I hope that Mary passes the examination . ||| 我 希望 瑪麗 通過 考試 . +Would you mind lending me your car ? ||| 你 介意 把 你 的 車 借 給 我 嗎 ? +Prices are double what they were ten years ago . ||| 价钱 是 10 年前 的 2 倍 . +It is easy for a monkey to climb a tree . ||| 对 猴子 来说 , 爬树 很 容易 . +He fell down on the floor . ||| 他 摔倒 在 地 . +I do not go to school by bus . ||| 我 不 乘 公交 去 学校 . +Let is wait till he comes back . ||| 等到 他 回来 吧 . +I was waiting for a taxi . ||| 我 等 着 出租车 . +Do you know him ? ||| 你 认识 他 吗 ? +I always take a bath before going to bed . ||| 我 睡觉 前 总要 洗 个 澡 . +There is a kite flying above the tree . ||| 有 一只 风筝 在 树上 . +He sometimes makes dinner for us . ||| 他 有 時 煮 晚 飯 給 我們 吃 . +Tom wondered why Mary was crying . ||| 汤姆 奇怪 为什么 玛丽 哭 . +You win . ||| 算你狠 . +Give me an orange . ||| 給 我 一個 橙子 . +Tom is from Australia and Mary is from New Zealand . ||| 汤姆 来自 澳大利亚 , 玛丽 来自 新西兰 . +How do you heat the house ? ||| 您 怎么 让 屋子 暖 起来 ? +She kept working . ||| 她 不停 地 工作 . +You do not have to work on Sundays . ||| 你 週日 不必 工作 . +God created the heaven and the earth . ||| 上帝 創造 了 天地 . +I want a boat . ||| 我 想要 一艘船 . +Nobody asked . ||| 没 人 问 过 . +We ought to obey the law . ||| 我们 必须 遵纪守法 . +Can you really not swim ? ||| 你 真的 不 會 游泳 嗎 ? +It took me more than two hours to translate a few pages of English . ||| 翻译 几页 英文 花 了 我 2 个 多 小时 . +How is the weather ? ||| 天氣 怎樣 ? +The law is quite clear . ||| 法律 很 清楚 . +You had better go to the dentist is . ||| 你 最好 去 看 牙 醫 . +Who will provide capital for the venture ? ||| 谁 来 为 风险投资 提供 资金 ? +Tom has never been in prison . ||| 湯姆 從 沒進 過 監獄 . +Let me see . ||| 让 我 想一想 . +Why can not Tom come to us ? ||| 為 甚麼 湯姆 不能 來 我們 這裡 ? +The toilet does not flush properly . ||| 厕所 冲水 不 正常 . +Maybe I should go help Tom . ||| 或許 我 該 去 幫 湯姆 . +They can not see me . ||| 他們 看 不 見 我 . +There is too much salt in this soup . ||| 这 汤 里 盐 放多 了 . +What exactly does Tom do ? ||| 汤姆 究竟 在 做 什么 ? +It would appear that you are wrong . ||| 你 似乎 错 了 . +Why do not you sit down and relax ? ||| 你 為 什麼 不 坐下 來 放 鬆 一下 . +You have nice skin . ||| 你 的 皮膚 真好 . +He failed in his attempt to swim across the river . ||| 他 试图 游 过河 , 但是 失败 了 . +I go to work every day . ||| 我 每天 去 上班 . +Mary came in . ||| 瑪麗 進來 了 . +The police arrested the suspect . ||| 警方 逮捕 了 嫌疑人 . +There are two zeros in the number " 2010 . " ||| 2010 这个 数字 里 有 两个 零 . +I forgot to ask him . ||| 我 忘 了 問 他 . +I like to travel alone . ||| 我 喜欢 独自 旅行 . +Why do you want to leave today ? ||| 你们 为什么 想 今天 走 ? +If you have a question , please raise your right hand . ||| 如果 有 问题 , 请 举起 你 的 右手 . +Give me some milk , too . ||| 也 給 我 一些 牛奶 . +I hate terrorist organizations . ||| 我 痛恨 恐怖主义 组织 . +What were Tom and Mary doing here ? ||| 湯姆 和 瑪麗 在 這裡 做 了 甚麼 ? +I bought a few eggs and a little milk . ||| 我 买 了 几个 鸡蛋 和 一点 牛奶 . +He received quite a few letters this morning . ||| 今天 早上 他 收到 好多 信 . +Tom no longer trusts Mary . ||| 湯姆 不再 相信 瑪麗 了 . +Do not let Tom leave . ||| 别 让 汤姆 走 了 . +We have two ears . ||| 我們 有兩 隻 耳朵 . +Sometimes adults behave like children . ||| 有时候 成人 表现 得 像 儿童 . +Let them learn from us . ||| 让 他们 向 我们 学习 . +There was a cottage on the side of the hill . ||| 山坡 上 有 一个 茅屋 . +It is time to go . ||| 該 走 了 . +Today is one of my friends ' birthday . ||| 今天 是 我 一个 朋友 的 生日 . +I want to get rid of it . ||| 我 想 擺脫 它 . +At least tell me where you are going . ||| 至少 告诉 我们 你 要 去 哪里 . +I was alone in the classroom . ||| 我 独自 待 在 教室 里 . +Tom , you 'd better stay here . ||| 湯姆 , 你 留在 這裡 比較 好 . +I guess that would be all right . ||| 我 想 那 應 該 沒 關 係 的 . +Tom went back to his bedroom . ||| 汤姆 回到 了 他 的 卧室 . +She was arrested by the police . ||| 她 被 警方 逮捕 了 . +I am ready to do anything for you . ||| 我 甘心 为 你 做 任何 事 . +She made the doll for me . ||| 她 為 我 做 了 這個 娃娃 . +I was not drunk . ||| 我 沒醉 . +The city has a large population . ||| 这个 城市 人口众多 . +I hope Tom is not angry . ||| 我 希望 湯姆 不生 氣 . +Do you feel any better today ? ||| 你 今天 感覺 好多 了 嗎 ? +You are really useless . ||| 你 真 沒用 . +Tom is not paying attention . ||| 汤姆 在 开小差 . +I have a new red car . ||| 我 有 一輛 新 的 紅色 汽車 . +My mother gets up early in the morning . ||| 我 妈妈 早上 早起 . +That goes without saying . ||| 不言而喻 . +We climbed Mt . Fuji last summer . ||| 去年 夏天 我們 爬 了 富士山 . +I have never been abroad before . ||| 我 以前 从没 去过 国外 . +We must follow the rules . ||| 我们 必须 遵守规则 . +There is a military base near here . ||| 這 附近 有 一個 軍事 基地 . +Is this bag yours or his ? ||| 那个 包是 你 的 还是 他 的 ? +There are many different people in Europe . ||| 在 欧洲 有 许多 不同 的 人 . +After a storm comes a calm . ||| 否極 泰 來 . +Stand up . ||| 起立 . +I give up . ||| 我 放弃 . +Tom was in Boston last weekend . ||| 湯姆 上 週末 在 波士 頓 . +Tom was there this morning . ||| 汤姆 早上 去过 那里 . +Am I overreacting ? ||| 我 反应 过度 了 吗 ? +Can I speak with the teacher ? ||| 我 能 和 老师 说话 吗 ? +The man is naked . ||| 那人 沒 穿衣服 . +I think what you are doing is wrong . ||| 我 觉得 你 正在 做 的 是 错 的 . +The sun is larger than the moon . ||| 太陽比 月亮 大 . +It is really dark here . I can not see anything . ||| 這裡 真的 很 暗 , 我什麼 都 看不到 . +When I hear that song , I remember my younger days . ||| 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +The book is here . ||| 那本书 在 这里 . +We are sorry we are unable to accept your request . ||| 很 抱歉 , 我们 不能 接受 你 的 要求 . +" Will you have some more coffee ? " " No , thanks . I have had enough . " ||| “ 你 想 再来点 咖啡 吗 ? ” “ 不 , 谢谢 . 我 够 了 . ” +If you hurry you can still make the train . ||| 如果 你 抓紧 , 你 还 能 赶上 火车 . +Tom is hiding a terrible secret . ||| 汤姆 隐藏 着 一个 可怕 的 秘密 . +You can not drink seawater because it is too salty . ||| 你 不能 喝 海水 , 因为 它 太 咸 了 . +I got there in time for the train . ||| 我 准时 赶上 了 火车 . +Let is go to the hospital now . ||| 我们 现在 就 去 医院 吧 . +Let is meet in front of the theater . ||| 讓 我們 在 戲院 前面 碰面 . +The dog attacked the little boy . ||| 這 隻 狗 攻 擊 了 這 個 小男孩 . +Spring is just around the corner . ||| 春天 快 來 了 . +You have to be patient . ||| 你 必須 有 耐心 . +What are you saying ? ||| 你 在 說 什麼 ? +See how high you can jump . ||| 看看 你 能 跳 多 高 . +What time does boarding begin ? ||| 什麼 時候 開始 登機 ? +There must be some way to solve this . ||| 一定 有 解決 的 辦法 . +I do not need to do anything . ||| 我 什么 都 不用 做 . +I want to go wherever you are going . ||| 我 想 去 你 要 去 的 地方 . +My grandmother lives by herself . ||| 我 祖母 獨自 生活 . +She got to the station at seven . ||| 她 七點鐘 到 車站 . +We are encouraged to use our imagination . ||| 我們 被 鼓勵 使用 想像力 . +Please knock before entering . ||| 进来 之前 请 敲门 . +France is to the south of England . ||| 法國 在 英國 的 南邊 . +Put the book back where it was . ||| 把 書 放回 它 原來 的 地方 . +She is older and wiser now . ||| 她 現在 更加 年 長 也 更加 有 智慧 . +Please leave everything to me . ||| 請 把 所有 的 東西 留給 我 . +Tom is coming to our school tomorrow . ||| 湯姆 明天 會來 我們 的 學校 . +Tom tried to return the swimsuit for a larger size , but the clerk told him that was not allowed . ||| 汤姆 试过 还 回 泳衣 来 换成 更 大 一号 的 , 但是 员工 告诉 他 那 是 不 被 允许 的 . +He was sitting between Mary and Tom . ||| 他 坐在 瑪麗 和 湯姆 之間 . +Social customs vary from country to country . ||| 国家 不同 , 习俗 各异 . +You should make good use of this opportunity . ||| 你 要 好好 把握 這個 時機 . +You are working too hard . Take it easy for a while . ||| 你 工作 得 太 辛苦 了 . 放 輕 鬆 一下 . +Stop , or I will shoot . ||| 停止 , 不然 我 就 開槍 了 . +This book is small . ||| 这 本书 小 . +He is used to getting up early . ||| 他 習慣 早起 . +Do you have a soup bowl ? ||| 你 有 碗 盛 湯 嗎 ? +It is a pity that you can not join us . ||| 你 不能 和 我們 一起 來 真 可惜 . +She is weak by nature . ||| 她 天生 体弱 . +Draw a circle . ||| 画 一个圈 . +Trees do not grow on prairies . ||| 樹 不 會 長 在 草原 上 . +Shouting at your computer will not help . ||| 對 你 的 電腦 吼 一點 幫助 也 沒有 . +We watched the children play . ||| 我们 看着 这 孩子 玩耍 . +We have to obey the rules . ||| 我们 必须 遵守规则 . +His room was covered with dust . ||| 他 的 房間 佈 滿 了 灰 塵 . +She has a round face . ||| 她 有 张 圆脸 . +I only wanted to do some good . ||| 我 只 想 做好事 . +The ticket is good for three days . ||| 这 张 票 三日 有效 . +The house is haunted . ||| 這 房子 鬧 鬼 . +Please conduct yourself with dignity . ||| 请 自重 . +The assignment took me longer than I had expected . ||| 我 用 了 比 我 预期 更 长 的 时间 来 完成 作业 . +How about you ? ||| 那 你 呢 ? +I dislike big cities . ||| 我 不 喜歡 大城市 . +I no longer love you . ||| 我 不再 爱 你 了 . +We will have lived here for two years next April . ||| 到 明年 四月 我们 住 在 这儿 就 满 两年 了 . +I do not know if you feel the same as I do . ||| 我 不 知道 你 是否 和 我 有 一样 的 感觉 . +Tom is clean . ||| 湯姆 是 干净 的 . +I want to eat ice cream . ||| 我 想 吃 冰 淇 凌 . +He was in good spirits . ||| 他 精神 很 好 . +He put his hand gently on her shoulder . ||| 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +We enjoyed swimming in the river . ||| 我們 喜歡 在 河裡 游泳 . +I did not know that he was there . ||| 我 不 知道 他 在 那裡 . +She showed him to his seat . ||| 她 領 他 到 他 的 座位 上 . +I believed you . ||| 我 信过 你 . +Tom is three years younger than Mary is . ||| 汤姆 比 玛丽 小 三岁 . +That is really a great idea . ||| 真是 个 好 主意 ! +Can I pay by credit card ? ||| 我 可以 用 信用卡 付 帳 嗎 ? +Your tie looks good . ||| 你 的 領帶 不錯 . +Her speech moved the audience . ||| 她 的 演说 感动 了 听众 . +She looked after the children . ||| 她 照顧 孩子 們 . +It was foolish of you to accept his offer . ||| 你 真笨 去 接受 他 的 提議 . +Everyone who knew him admired him . ||| 每 一個 認識 他 的 人 都 愛慕 他 . +I ate apples . ||| 我 吃 了 蘋果 . +I hate when other people make me wait a long time . ||| 我 讨厌 别人 让 我 等 很久 . +English is useful in commerce . ||| 英語 在 商業 中 很 有用 . +Did you grade the tests ? ||| 你 給 測驗 評分 了 嗎 ? +Are you busy ? ||| 你 忙 嗎 ? +I saw a beautiful waterfall there . ||| 我 看见 那儿 有个 很 美的 瀑布 . +Could you teach me how to play the piano ? ||| 您 能 教 我 弹钢琴 吗 ? +I was brought up by my grandmother . ||| 我 被 我 的 祖母 撫養 長大 . +Please keep this secret . ||| 請 保守 這個 秘密 . +This is my new guitar . ||| 这 是 我 的 新 吉他 . +Singing is her strong point . ||| 唱歌 是 她 的 强项 . +This is a kind of watermelon . ||| 这 是 一种 西瓜 . +Tom was puzzled by what Mary said . ||| 汤姆 被 玛丽 说 的话 给 难倒 了 . +Are there any English magazines in this library ? ||| 這間 圖書館 有 任何 英語 雜 誌 嗎 ? +Tom only wears a suit on special occasions . ||| 湯姆 只 在 特殊 場 合穿 西裝 . +A great number of books are published every year . ||| 每年 都 有 大量 新书 出版 . +He is studying . ||| 他 在 讀書 . +I would like to buy a house . ||| 我 想 买 套 房子 . +He asked the man to help him . ||| 他 叫 那个 男人 帮助 他 . +Do you like school ? ||| 你們 喜歡 學校 嗎 ? +I have numerous books on my bookshelf . ||| 我 有 大量 的 书 在 我 的 书架上 . +I am staying with a friend . ||| 我 和 一位 朋友 住在一起 . +Could you translate this sentence ? ||| 你 能 翻译 这个 句子 吗 ? +Do you like Japanese food ? ||| 你 喜歡 日本料理 嗎 ? +Is his pulse regular ? ||| 他 的 脈搏 正常 嗎 ? +He was very old . ||| 他 很 老 . +Dad gave me a book , and my little brother gave me a pen . ||| 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 一枝 筆 . +I have to take the book back to the library today . ||| 我 今天 必須 把 書 還 給 圖書館 . +He was paid 10,000 dollars . ||| 有人 付给 他 10000 美元 . +Hunger is the best sauce . ||| 对于 一个 饥饿 的 人 来说 , 任何 食物 都 是 美味 . +How would you like your eggs ? ||| 请问 鸡蛋 要 什么 做法 ? +Married people sometimes wish they were single . ||| 已婚 的 人 有 時候 希望 他們 是 單身 , . +It happens occasionally . ||| 它 偶尔 会 发生 . +The old man sat down . ||| 老人 坐 了 下来 . +Tom got angry at the children . ||| 湯姆 對 孩子 們 生氣 . +Skating is one of my hobbies . ||| 滑冰 是 我 的 嗜好 之一 . +Tom , what would you like to have for dinner ? ||| 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +I am not guilty . ||| 我 没有 罪 . +Tom did not take his shoes off . ||| 汤姆 没 脱鞋 . +The police officer arrested the burglar . ||| 警官 逮捕 了竊 賊 . +I love her . ||| 我 愛 她 . +Tom probably wanted to go swimming . ||| 湯姆 可能 想 去 游泳 . +Tom needs the money . ||| 湯姆 需要 錢 . +Do what you think is best . ||| 做 你 所 想 的 是 最好 的 . +Something is wrong with my typewriter . ||| 我 的 打字 機 好像 有什麼 問題 . +Back in high school , I got up at 6 a.m. every morning . ||| 以前 讀 高中 的 時候 ﹐ 我 每天 早上 六點 起床 . +Bears can climb trees . ||| 熊会 爬树 . +He looks young . ||| 他 看起来 很 年轻 . +Tom said he will ask Mary to do that . ||| 湯姆 說 他 會 讓 瑪麗 去 做 . +Maybe he will be a good teacher . ||| 也許 他 會 是 一個 很好 的 老師 . +Take the road on the right . ||| 走 右邊 的 道路 . +Would you please wait for a few minutes ? ||| 能 不能 请 你 等 几分钟 ? +Stars began to appear in the sky . ||| 星星 開始 在 天空 中 出現 . +This story is true . ||| 这个 故事 是 真的 . +How do you want your hair cut ? ||| 你 想 怎麼 剪 你 的 頭 髮 ? +How about going to the movies ? ||| 我们 去 电影院 怎么样 ? +I was bitten by a mosquito . ||| 我 被 蚊子 叮 了 . +Maybe I am just a fool . ||| 可能 我 就是 個 傻子 . +I am not writing a letter . ||| 我 沒 在 寫信 . +You are blushing . ||| 你 脸红 了 . +Did he look like a doctor ? ||| 他 看 起來 像 個 醫生 嗎 ? +Hop in . ||| 跳进来 . +My father goes jogging every morning . ||| 我 父親 每天 早上 都 跑步 . +I work here . ||| 我 在 這裡 工作 . +Will you drive me home ? ||| 你 會 開車 送 我 回家 嗎 ? +What sports do you like ? ||| 你 喜歡 什麼 運動 ? +Tom is car has been stolen . ||| 汤姆 的 汽车 被 偷 了 . +He came from a tiny mountain town . ||| 他 來 自 一個 小 山城 . +The word is unfamiliar to me . ||| 我 对 这个 单词 不熟 . +Many attended his funeral . ||| 很多 人 都 参加 了 他 的 葬礼 . +I wish to visit Egypt someday . ||| 我 希望 有 一天 去 埃及 . +She took care of the children . ||| 她 照顧 孩子 們 . +I will try it again . ||| 我 會 再 試 一次 . +Do you go often ? ||| 您 经常 去 吗 ? +My brother is good at mathematics . ||| 我 哥哥 擅長 數學 . +Are they both the same ? ||| 他们 都 是 一样 的 吗 ? +He does not have any knowledge about American democracy . ||| 他 一点 都 不 知道 美国 的 民主 . +He abandoned all hope . ||| 他 放弃 了 所有 希望 . +I am tired of your complaints . ||| 我 已經 厭倦 了 你 的 投訴 . +That man grabbed the young girl is wrist . ||| 那個 男人 抓住 了 這個 年輕 女孩 的 手腕 . +Welcome home . ||| 欢迎 回家 . +Do not shoot . ||| 停火 . +I worked as a piano tuner for many years . ||| 我 做 钢琴 调音师 很多年 了 . +The police seem to know exactly where we are . ||| 警察 看來 很 清楚 我們 在 哪裡 . +It is delicious . ||| 很 美味 . +What do you usually do in your free time ? ||| 你 在 閒暇 的 時候 一般 做 什麼 ? +I got your letter yesterday . ||| 我 昨天 收到 了 你 的 信 . +Who buys this type of art ? ||| 谁 买 这种 艺术品 ? +I take a walk every day except when it rains . ||| 除了 雨天 我 每天 都 散步 . +He has access to the American Embassy . ||| 他 有权 出入 美国大使馆 . +Would you mind saying that once more ? ||| 請 你 再 說 一次 好 嗎 ? +She eyed the stranger suspiciously . ||| 她 盯著 可疑 的 陌生人 看 . +He was in time for the appointment . ||| 他 及時 赴約 了 . +We live in the United States . ||| 我們 住 在 美國 . +I know he is watching me . ||| 我 知道 他 在 看著 我 . +We failed due to a lack of preparation . ||| 我們 因 缺乏 準備 而 失敗 了 . +I do not know her , nor do I want to . ||| 我 不 认识 她 , 也 不想 认识 . +I agree completely . ||| 我 完全同意 . +Put handcuffs on him . ||| 把 他 铐 上 . +Excuse me , I have to get off at the next stop . ||| 对不起 , 我 要 在 下 一站 下 . +The moon was full last night . ||| 昨晚 月亮 满 了 . +I would like to try on this dress . ||| 我 想 試穿 這件 衣服 . +Please give me a cup of water . ||| 请 你 给 我 一杯 水 . +Why blame Tom ? ||| 为什么 责备 汤姆 ? +Do you read French every day ? ||| 你 每天 读 法语 吗 ? +Tom knows my number . ||| Tom 知道 我 的 號碼 . +Who teaches you French ? ||| 谁 教 你们 法语 ? +I am near the station . ||| 我 在 車站 附近 . +My grandmother has a green thumb . ||| 我 祖母 是 個園 藝 巧手 . +She graduated in 1996 . ||| 她 在 1996 年 畢業 . +Would you like some cream in your coffee ? ||| 你 要 在 咖啡 上加 些 奶油 嗎 ? +He was scared when the monkey jumped at him . ||| 猴子 跳到 他 身上 的 时候 , 他 受到 了 惊吓 . +They are not dead . ||| 他們 沒死 . +Tom is life was changed forever . ||| 湯姆 的 生活 被 彻底 改變 了 . +What did you do last night ? ||| 你 昨天晚上 做 什麼 ? +I 'd do anything for Tom . ||| 我会 为 汤姆 做 任何 事 . +Are you doing anything special ? ||| 你 在 做 什麼 特別 的 事 嗎 ? +He promised to come , but he did not come . ||| 他 保证 过会 来 却 没有 来 . +I do not approve your decision . ||| 我 不 同意 你 的 決定 . +Were you in Boston last summer ? ||| 你 上个 夏季 在 波士顿 吗 ? +Wait for a moment outside the room . ||| 在 房間 外面 等待 片刻 . +May I borrow your car ? ||| 我 可以 借用 你 的 車 嗎 ? +What would you think if I did that ? ||| 如果 我 那么 做 你 会 怎么 想 ? +It must be around here somewhere . ||| 我 想 應該 在 這 附近 . +You seem to be a little under the weather . ||| 你 看上去 不太好 . +She accused me of making a mistake . ||| 她 指責 我 犯 了 錯 . +It is a matter of life and death . ||| 这 是 一个 生 和 死 的 问题 . +Please take a deep breath . ||| 请 深 吸 一口气 . +The moon is already out . ||| 月亮 已經 出來 了 . +Tom could be Canadian . ||| 汤姆 可能 是 加拿大人 . +Tom wanted Mary is phone number , but she refused to give it to him . ||| 汤姆 想要 玛丽 的 电话号码 但是 被 拒绝 了 . +Their father is a taxi driver . ||| 他們 的 父親 是 一個 計程 車司 機 . +The early bird catches the worm . ||| 早起 的 鸟儿 有 虫 吃 . +I have just been to the post office . ||| 我 剛剛 去 了 郵局 . +What have you come here for ? ||| 你们 来 这儿 干嘛 ? +Who is that man ? ||| 那 男人 是 谁 ? +Only a few people understood me . ||| 只有 一些 人 了解 我 . +Not knowing what to say , he remained silent . ||| 因為 不 知道 該 說 什麼 , 他 保持沉默 . +Do not cry . ||| 别哭 . +Ever since she fell in the kitchen , she has not been all there . ||| 自從 她 在 廚房 裡 摔倒 後 , 她 不曾 再 到 那裡 . +Believe it or not , she has three children . ||| 她 有 三个 孩子 , 信不信 由 你 . +Your work is below average . ||| 你 的 工作 表現 低 於 平均水平 . +Call me at 9 : 00 tomorrow . ||| 明天 九点 打电话 给 我 吧 . +He neglected his duties . ||| 他 怠忽 職 守 了 . +Tom is not foolish . ||| 汤姆 不 傻 . +He was completely engrossed in the book . ||| 他 完全 沉浸 在 書裡 . +What will you make ? ||| 你 會 做 什麼 ? +I want to travel with you . ||| 我 想 和 你 去 旅行 . +I do not know how to handle children . ||| 我 不 知道 如何 對待 孩子 . +The doctors are looking at an x @-@ ray . ||| 医生 在 观察 X光 片 . +As far as I know , there is nothing wrong with his plan . ||| 據 我 所知 , 他 的 計畫 沒有 出差 錯 . +How dare you say that ! ||| 你 怎么 敢 那么 说 . +I will tell Tom you said that . ||| 我 會 告訴 湯姆 你 說 了 那話 . +Stock prices plunged to a record low . ||| 股票 價格 跌 至 歷史 新低 . +You will not be late , will you ? ||| 你 不 會 遲 到 , 是 嗎 ? +When the cat is away , the mice will play . ||| 貓兒 不 在 , 老鼠 玩 的 輕 鬆 自 在 . +Where is my father ? ||| 我 父亲 在 哪里 ? +This car handles very easily . ||| 这 车 容易 开 . +I think you should get more rest . ||| 我 觉得 你 应该 多 休息 一会儿 . +Is this something you want ? ||| 这 是 你 要 的 吗 ? +Each student has a locker . ||| 每個 學生 都 有 一 櫃子 . +I wish I could give up smoking . ||| 我 希望 能够 戒烟 . +She likes cooking for her family . ||| 她 喜欢 为 她 的 家人 做饭 . +Can you speak French well ? ||| 你 法语 说得好 吗 ? +Tom can not get his car started . ||| 汤姆 没法 发动 他 的 车 . +Are you friends ? ||| 你們 是 朋友 嗎 ? +Let me have a look . ||| 讓 我 看看 . +This book is easy to read . ||| 這 本書 很 容易 讀 . +I can not help feeling sorry for him . ||| 我 不禁 為 他 感到 難 過 . +Spanish is her mother tongue . ||| 西班牙语 是 她 的 母语 . +Someone is watching . ||| 有人 在 监视 . +I gave it to the little boy . ||| 我 把 它 給 這個 小男孩 . +Come on in . ||| 进来 . +It was lucky for you that you found it . ||| 你 很 幸運 找到 了 它 . +He is going to be an engineer . ||| 他 將 成為 一名 工程 師 . +It is no use your begging him for help . ||| 你 求 他 帮忙 没有 用 . +There are three of us . ||| 我們 是 三個 人 . +With a firm goal in mind , you will do well . ||| 有 了 坚定 的 目标 , 你 会 做 得 很 好 . +I want to go and change into that shirt I bought yesterday . ||| 我 想 去 換 我 昨天 買 的 這件 襯衫 . +The building is one hundred meters high . ||| 該 建築 高 一百 公尺 . +She is on a diet . ||| 她 在 节食 . +He collected bits of information . ||| 他 收集 了 一些 訊息 . +I get a kick out of life . ||| 我 為 人生 感到 很 開心 . +Be careful not to fall . ||| 小心 别 摔倒 了 . +I am sorry , but it is impossible . ||| 我 很 抱歉 , 但 它 是 不 可能 的 . +Tom was a nurse . ||| 汤姆 是 个 护士 . +What subjects do you like the best ? ||| 你 最 喜歡 什麼 科目 ? +You did not protect me . ||| 你 没有 保护 我 . +The barber gave him a haircut . ||| 理 髮 師 為 他 理 了 頭 髮 . +Does that belong to Tom ? ||| 这 是 汤姆 的 东西 吗 ? +Let me check your ticket . ||| 讓 我 看 一下 你 的 票 . +He has gone to London . ||| 他 去 了 伦敦 . +Oh no ! ||| 不会 吧 . +Have you ever climbed Mt . Yari ? ||| 你 曾 爬 過 槍 岳 嗎 ? +I waited for her for a really long time . ||| 我 真的 等 了 她 很 長 一段 時間 . +I did not expect that result . ||| 我 没有 期望 得到 这样 的 结果 . +Choose whichever you like . ||| 選 你 喜歡 的 . +My car is at your disposal . ||| 你 可以 随便 用 我 的 车 . +Today was fun . ||| 今天 很 有趣 . +She had two accidents within a year . ||| 她 一年 裡 遇到 了 兩次 事故 . +I am able to speak . ||| 我 能 说 . +He got his meaning across to me . ||| 他 把 他 的 意思 對 我 講 清楚 了 . +Were you able to do everything you wanted to get done ? ||| 你 是不是 有 能力 做到 你 想要 完成 的 所有 事情 呢 ? +He said it merely as a joke . ||| 他 这么 说 就是 为了 开玩笑 . +Tom disassembled the clock . ||| 汤姆 把 钟 拆开 了 . +I want to learn how to swim . ||| 我 想 学习 如何 游泳 . +It seems that most people only barbeque in the summer . ||| 人們 似乎 只 在 夏天 烤肉 . +She can never keep a secret . ||| 她 永远 也 做 不到 保守 秘密 . +Tom cares about you . ||| 汤姆 关心 你 . +I would like to make a call to Tokyo , Japan . The number is 3202 @-@ 5625 . ||| 我 想要 打 个 电话 到 日本 东京 , 号码 是 3202 - 5625. +Paper was invented by the Chinese . ||| 紙 是 由 中國 人 發明 的 . +No fewer than 50 passengers were killed . ||| 不下 50 个 乘客 死 了 . +I am accustomed to working hard . ||| 我 习惯 辛勤努力 地 工作 . +I am on my way back to Boston . ||| 我 在 回 波士顿 . +He is going to have a heart attack . ||| 他 的 心臟病 要 發作 了 . +This diamond is not real . ||| 这 颗 钻石 不是 真的 . +My parents are not old yet . ||| 我 父母 还 不 老 . +She does not have any enemies . ||| 她 没有 敌人 . +It is on the sofa . ||| 它 在 沙發 上 . +After running up the hill , I was completely out of breath . ||| 跑 上山 後 , 我 完全 喘 不 過 氣 來 . +Florence is the most beautiful city in Italy . ||| 佛罗伦萨 是 意大利 最 美丽 的 城市 . +He confessed to the murder . ||| 他 供认 了 杀人 的 罪行 . +Wait just a moment . ||| 就 等 一會兒 . +I do not think that she will come . ||| 我 不 認為 她 會 來 . +If I were to tell you all I know , you would be amazed . ||| 要是 我 告诉 你 我 所知 的 一切 , 你 会 被 惊呆 的 . +Tom bought a car . ||| 湯姆 買 了 輛 車 . +Is this the right bus for Boston ? ||| 這輛 是 去 波士 頓 正確 的 巴士 嗎 ? +It makes no difference to me . ||| 這 對 我 沒 什麼 差別 . +Do you play any instruments other than the piano ? ||| 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I wish that Tom would agree to do that . ||| 我 希望 湯姆 能 同意 . +Maybe you should just fire Tom . ||| 或许 你 就 应该 把 汤姆 开 除掉 . +I truly do not understand the question . ||| 我 真的 不 懂 这个 问题 . +I have some money . ||| 我 有 一些 錢 . +You are terrible . ||| 你 真 壞 . +I can not afford to pay so much . ||| 我 付不起 這麼 多 錢 . +He always gets bullied at school . ||| 他 在 學校 老 是 被 人 欺負 . +Tom asked for food . ||| 汤姆 要 食物 . +I was afraid I 'd be late . ||| 我 怕 我 會 遲 到 . +He made his way to the room . ||| 他 走進 了 房間 . +Every one of his songs was a hit . ||| 他 的 每首歌 都 长期 备受 欢迎 . +That is a good plan . ||| 那 是 一個 很好 的 計劃 . +Tom did a lot of great things . ||| 汤姆 做 了 许多 大事 . +Do you guys want to go with me ? ||| 你們 要 和 我 一起 去 嗎 ? +I am not saying that what she did was right . ||| 我 不是 說 她 做 的 是 對 的 . +The huge explosion killed six people . ||| 大 爆炸 致死 六 人 . +Are you laughing at me ? ||| 你 在 嘲笑 我 吗 ? +I prefer red wine to white . ||| 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +Is it true you are trying to do that ? ||| 你 真的 要 试 着 那样 做 吗 ? +We have a warrant to search your apartment . ||| 我们 有权 搜查 你 的 公寓 . +Which cup is yours ? ||| 哪个 杯子 是 你 的 ? +She got on a bus for Harajuku . ||| 她 搭上 了 去 原宿 的 巴士 . +It had to be Tom that did that . ||| 一定 是 汤姆 做 的 . +All of a sudden , the enemy bombs came down on us like rain . ||| 突然 间 , 敌人 的 炸弹 像 雨点 一样 落向 我们 . +You are free to go home . ||| 你 隨時 可以 回家 . +There are five patients in the waiting room . ||| 等候 室里 有 五位 患者 . +All of the students were present . ||| 所有 學生 都 出席 了 . +How soon do you need it ? ||| 你 多久 后 需要 它 ? +The weather was not only cold , but also wet . ||| 天气 又 冷 又 湿 . +The weather turned better . ||| 天氣 轉好 了 . +This stuff is worth its weight in gold ! ||| 這個 東西 很 有 價值 . +It seems that Tom is lying . ||| 看來 湯姆 在 說謊 . +I am trying to save room for dessert . ||| 我 尽量 留 着 胃 吃 甜点 . +Everybody says I look like my father . ||| 每個 人 都 說 我 看 起來 像 我 爸爸 . +I will give you a call as soon as I get home . ||| 我 一 回到 家 就 打电话 给 你 . +Would you like some scrambled egg ? ||| 你 想要 來 些 炒蛋 嗎 ? +Sunday is not a workday for me . ||| 星期天 不是 我 的 工作日 . +Look at that tall building . ||| 看 那棟 高樓 . +It is dangerous ! ||| 它 是 危險 的 ! +He was wounded in the shoulder . ||| 他 伤 了 肩膀 . +Could you take this , please ? ||| 請 你 拿 這個 好 嗎 ? +How do I change my cell phone is ringtone ? ||| 我 要 怎麼 換 我 的 手機 鈴 聲 呢 ? +I think I understand . ||| 我 想 我 懂 了 . +I have a stupid question . ||| 我 有 一個 愚蠢 的 問題 . +I will make you happy . ||| 我会 让 你 幸福 的 . +I have never seen that guy before . ||| 我 從 沒看 過 那個 人 . +We are fed up with your complaining . ||| 我們 受夠 了 你 的 抱怨 . +I have forgotten his name . ||| 我 已经 忘 了 他 的 名字 . +I do not smoke weed . ||| 我 不 吸 大麻 . +By the way , are you free tonight ? ||| 顺便 问 一句 , 你 今晚 有空 吗 ? +I am willing to attend the meeting . ||| 我 願意 參加 這場 會議 . +How old do you think Tom is ? ||| 你 觉得 汤姆 有 多 大 ? +My income has decreased ten percent . ||| 我 的 收入 減少 了 百分之十 . +Tom stood up from his chair . ||| 汤姆 从 椅子 上 站 了 起来 . +Go away before they see you here . ||| 在 他们 看见 你 之前 离开 这儿 . +We had a lot of visitors yesterday . ||| 我們 昨天 有 許多 訪客 . +I always lock my room . ||| 我 總是 鎖 上 我 的 房間 . +I do not like it . ||| 我 不 喜欢 . +She woke up on her own . ||| 她 自己 起床 的 . +She made him a new suit . ||| 她 為 他 做 了 一套 新 衣服 . +I am a professor . ||| 我 是 大学教授 . +What is your marital status ? ||| 能 告诉 我 你 的 婚姻状况 吗 ? +Do not look at Tom . Look at me . ||| 不要 看 湯姆 . 看著 我 . +Tom owns a yellow sports car . ||| 汤姆 有 一辆 黄色 跑车 . +This is an exception to the rule . ||| 这 是 一个 例外 . +Perhaps you are right . ||| 也许 您 有 道理 . +My sister resembles my grandmother . ||| 我 的 姐姐 就 像 我 的 祖母 . +I am the only one who can do that . ||| 我 是 唯一 能 做到 那个 的 人 . +Give me a light , would you ? ||| 借 個 火 , 好 嗎 ? +Any one of us could do it . ||| 我們 之中 任何 一個 都 能 做到 . +I am not really prepared . ||| 我 沒有 真的 準備 好 . +Life begins when we realize who we really are . ||| 当 我们 明白 真正 的 自己 时 , 生活 开始 了 . +He gave in . ||| 他 让步 了 . +Behave yourself . ||| 规矩 点 . +They are proud of their daughter . ||| 他們 以 他們 的 女兒 為 榮 . +Tom told me he had a right to see it . ||| 汤姆 告诉 我 他 有权 看 它 . +Do not pull my leg ! ||| 不要 拉 我 的 腿 ! +I do not understand much about it . ||| 这 里面 我 有 很多 不懂 的 . +I did not tell them . ||| 我 沒 告訴 他們 . +That flower smells sweet . ||| 那 花闻 起来 很 香 . +You may leave your bag here . ||| 你 可以 把 你 的 袋子 留在 這裡 . +The teacher cannot have said such a thing . ||| 老师 不 可能 说 过 这样 的 事 . +He has poor eyesight . ||| 他 的 视力 不 佳 . +The children ran down the hill . ||| 孩子 們 跑 下 了 山丘 . +She does not get outdoors much . ||| 她 沒 有常 到 戶外 . +She hated her husband . ||| 她 恨 她 的 丈夫 . +I do not care as long as you are happy . ||| 只要 你 开心 就行了 . +From the look of the sky , it may rain in the afternoon . ||| 從 天色 看 起來 , 下午 可能 會 下雨 . +Drunk driving is a serious problem . ||| 酒 驾 是 个 严重 的 问题 . +It is getting warmer day by day . ||| 天 日渐 回暖 . +They were good . ||| 他们 不错 . +Do you get along with your boss ? ||| 你 跟 老板 合得来 吗 ? +It seems that he is happy . ||| 看來 , 他 很快 樂 . +I would like to attend the party . ||| 我 想要 出席 排队 . +I do not think that she looks like her mother . ||| 我 不 觉得 她 像 她 妈妈 . +That house is the place where I was born . ||| 那 房子 是 我 出生 的 地方 . +Tennis is very popular among students . ||| 网球 在 学生 中 非常 流行 . +Tom wants to sleep on it . ||| 汤姆 想 在 它 上面 睡觉 . +I spent last Sunday reading a novel . ||| 我 上週 日 花 時間 看 了 一本 小 說 . +I hugged him tightly and cried . ||| 我 緊緊 地 抱著 他 哭 . +I did nothing during the holidays . ||| 在 假期 中 我 無所 事事 . +Entering the house , I tripped over the mat . ||| 进 家门 后 , 我 被 垫子 绊倒 了 . +Are there reserved seats on the train ? ||| 火車 上 有 預訂 的 座位 嗎 ? +I dreamed about you . ||| 我 梦 到 你 了 . +This is none of your business . ||| 跟 你 没 半 毛钱 关系 . +Please take more care in the future . ||| 请 你 将来 注意 点 . +Put your hands up ! ||| 手 举 起来 . +I am very happy to hear about the party . ||| 我 听到 聚会 的 事 很 高兴 . +Cherry blossoms are very beautiful . ||| 櫻花 非常 漂亮 . +Please give me something hot to drink . ||| 請 給 我 一些 熱 的 東西 喝 . +Your mother must have been beautiful when she was young . ||| 你 母親 年輕 的 時候 一定 很美 . +There are many more students in the classroom today than yesterday . ||| 今天 教室 裡 的 學生 比 昨天 還 要 多 . +I resign . ||| 我 放弃 . +Japanese history is my favorite subject . ||| 日本 歷史 是 我 最 喜歡 的 科目 . +Are you interested in foreign languages ? ||| 你们 对 外语 感兴趣 吗 ? +How did you feel about that ? ||| 关于 那件事 你 之前 怎么 想 的 ? +It is a dead end . ||| 这 是 个 死胡同 . +That medicine is not going to help . ||| 那 药 不会 管用 . +What was that you just said ? ||| 你 刚 说 了 什么 ? +Tomorrow I am going to Shanghai . ||| 我 明天 要 去 上海 . +Could you shut the door ? ||| 你 能 把 門關 上 嗎 ? +There were only six people at the party . ||| 只有 六個 人 參加 了 派 對 . +I did not like it . ||| 我 没有 喜欢 过 . +I do not want to get a suntan . ||| 我 不想 晒黑 . +I wish you had told me the truth . ||| 我 希望 你 告訴 我 真相 了 . +I hope everything goes well . ||| 我 希望 万事如意 . +She gave him a lot of money . ||| 她 给 了 他 很多 钱 . +He went to London via Paris . ||| 他 经由 巴黎 去 了 伦敦 . +Daddy loves to say funny things . ||| 爹 地 喜歡 講 有趣 的 事 . +Eating habits differ from country to country . ||| 各國 有 不同 的 飲食 習慣 . +He looked young beside his brother . ||| 他 在 他 弟弟 旁边 显得 很 年轻 . +There are a lot of hot springs in Japan . ||| 日本 有 很多 温泉 . +Who exactly is responsible ? ||| 究竟 谁 要 负责 ? +He has made little progress in his English . ||| 他 的 英语 有 了 小小的 进步 . +You should not talk to Tom that way . ||| 你 不該 那樣 跟 湯姆 講 話 . +There is a bag on the desk . ||| 书桌上 有 一个包 . +He is a DJ . ||| 他 是 一个 DJ . +Tom knew Mary would not let him down . ||| 汤姆 知道 玛丽 不会 让 他 失望 . +I do not understand its significance . ||| 我 没有 领会 这个 意义 . +He is lacking in experience . ||| 他 缺乏 經驗 . +The girl was gazing at the doll . ||| 女孩 凝视着 洋娃娃 . +Why did you cry ? ||| 你 为什么 哭 ? +Nothing is worse than war . ||| 没有 什么 比 战争 更糟 的 了 . +It is against the law to carry weapons . ||| 攜帶 武器 是 違法 的 . +Add a tiny pinch of salt . ||| 加 一丁 點 鹽 . +Call home ! ||| 打电话 回家 ! +I was a little bit nervous . ||| 我 有点 紧张 . +Tom brought Mary some juice . ||| Tom 幫 Mary 買 了 點 果汁 . +This beach is a paradise for surfers . ||| 这个 海滩 是 冲浪者 的 天堂 . +There is no time for explanation . ||| 没 时间 解释 . +She cried as she read the letter . ||| 她 一邊 讀 這 封信 一邊 哭 . +I can not believe Tom just did that . ||| 我 不敢相信 汤姆 那么 做 了 . +I do not believe that ghosts exist . ||| 我 不 相信 鬼魂 存在 . +Take off your socks , please . ||| 請 脫下 你 的 襪子 . +I will be a doctor someday . ||| 我 有朝一日 会 成为 一名 医生 . +I hope he will wait for me . ||| 我 希望 他 會 等 我 . +You can get a loan from a bank . ||| 你 可以 从 银行贷款 . +That is not fair . ||| 這 不 公平 . +I still prefer to write letters by hand . ||| 我 更 喜欢 用 手 写信 . +Everyone should bring their own lunch . ||| 每個 人 都 應 該 帶 自己 的 午餐 . +The things he says are entirely inconsequential . ||| 他 说 的话 根本 毫无意义 . +He will be my deputy while I am away . ||| 我 不 在 的 时候 , 他 将 是 我 的 代理人 . +I can not tell you how to pronounce the word . ||| 我 不 知道 怎么 告诉 你 这个 词 的 发音 . +We have to find out where Tom is . ||| 我们 必须 查明 汤姆 在 哪里 . +We are still vulnerable . ||| 我们 还是 脆弱不堪 . +You are bound to fail . ||| 你 注定 失败 . +Felicja likes to watch TV . ||| Felicja 喜歡 看電視 . +What did you say your name was ? ||| 你 說 你 叫 什麼 名字 ? +I think Tom is sleeping . ||| 我 以為 湯姆 在 睡覺 . +I would like to go with you . ||| 我 想 和 你 一起 走 . +Hurry up , or you will miss the train . ||| 快点 , 不然 你 就要 错过 火车 了 . +You have to go . ||| 你們 得 走 了 . +I am not always free on Sundays . ||| 我 星期日 並 不 總是 有空 . +I am stuck in my job . ||| 我 被 工作 困住 了 . +Such a thing can not happen in Japan . ||| 這樣 的 事情 不 可能 在 日本 發生 . +I have no home to return to . ||| 我 無家 可回 . +Does any other country fan the flames of patriotism as much as America ? ||| 有没有 一个 国家 比 美国 更 提倡 爱国主义 ? +You will never know the truth . ||| 你 永远 不会 知道 真相 . +You should go . ||| 你 應 該 去 . +Do not talk in the classroom . ||| 別 在 教室 裡 說 話 . +She gave him a sweater . ||| 她 给 他 一件 毛衣 . +I have been told Tom is going to be fired . ||| 有人 告訴 過 我 湯姆 要 被 開除 . +He who laughs last , laughs best . ||| 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +How many languages can you speak ? ||| 你 會 說 多少 種 語言 ? +She is a stubborn girl . ||| 她 是 个 倔强 的 女孩 . +I was in the bathroom . ||| 我 当时 在 卫生间 . +Thousands of foreigners visit Japan every year . ||| 每年 有 成千上万 的 外国人 访问 日本 . +Do not let him play with your phone . ||| 別 讓 他 玩 你 的 手機 . +The main problem with Tom is that he has no sense of humor . ||| 汤姆 的 主要 问题 是 他 一点 幽默感 都 没有 +Where did you get your camera repaired ? ||| 你 在 哪儿 修 的 照相机 ? +The sky is full of dark clouds . ||| 天空 乌云密布 . +His work is washing cars . ||| 他 的 工作 是 洗車 . +The old man starved to death . ||| 這位 老人 餓死 了 . +The ages of the two children put together was equivalent to that of their father . ||| 两个 孩子 的 年龄 加 起来 和 他们 的 父亲 相当 . +She felt herself being lifted up . ||| 她 覺得 自己 好像 被舉 起來 了 . +He betrayed her secret to his friends . ||| 他 把 她 的 秘密 告诉 了 他 的 朋友 . +Do you know how far it is from the station to city hall ? ||| 你 知道 从 火车站 到 市政府 有 多 远 ? +Can I use your pen ? ||| 我 可以 用 你 的 筆 嗎 ? +When does the movie start ? ||| 电影 什么 时间 开始 ? +Tom encouraged Mary to learn how to speak French . ||| 汤姆 鼓励 玛丽 学 着 说 法语 . +Where is the bank ? ||| 银行 在 哪里 ? +Every time I went to his place , he was studying . ||| 每次 我 去 他 住 處 , 他 都 在 讀書 . +If you pass this test , you could graduate next month . ||| 如果 你 通過 這個 考試 , 你 下個月 就 可以 畢業 了 . +I need a taxi . ||| 我 需要 一輛 出租 車 . +Do not you ever clean your room ? ||| 你 從 不 清 掃 你 的 房間 嗎 ? +Do not tell anyone our plan . ||| 不要 把 我们 的 计划 告诉 任何人 . +Swimming is easy . ||| 游泳 很 容易 . +I am not a native speaker . ||| 我 不是 个 母语 者 . +Yes . That is right . ||| 是 的 . 沒錯 . +May I have a napkin , please ? ||| 請 給 我 一張 餐巾 紙 好 嗎 ? +Did you buy juice ? ||| 你 有 買 果汁 嗎 ? +I will go there even if it rains . ||| 即使 下雨 我 也 會 去 那裡 . +They must really hate me . ||| 他们 一定 很 恨 我 . +There is no place like home . ||| 金窩 銀窩 不如 自己 的 狗 窩 . +The map is on the wall . ||| 地图 挂 在 墙上 . +You need to seek help . ||| 你 需要 尋求 協助 . +A cooking course should be mandatory in schools . ||| 烹饪 课程 应该 作为 学校 的 必修课 . +Tom has just returned from the post office . ||| 湯姆剛 從 郵局 回來 . +Well , let is get the ball rolling . ||| 那麼 , 讓 我們 開始 進行 吧 . +We want to know . ||| 我們 想 知道 . +It is true . ||| 這 是 真的 . +It is impolite to stare at people . ||| 盯著 人 看 是 不 禮貌 的 . +He is determined to go to England . ||| 他 决心 去 英国 . +Are those explosives ? ||| 那些 是 爆炸物 嗎 ? +My house is fully insured . ||| 我 的 房子 绝对 保险 . +Drink this juice . ||| 喝 這 果汁 . +I think Tom is athletic . ||| 我 认为 汤姆 好 运动 . +Which of these rackets is yours ? ||| 這些 球拍 中 哪 一支 是 你 的 ? +No matter how much I think about it , I can not understand it . ||| 无论 怎么 去 想 我 都 搞不清楚 . +Tom has visited Boston . ||| 汤姆 去过 波士顿 . +May I open the window ? ||| 可以 开窗 吗 ? +After Tom lost his job , he started to gamble to cope with his depression . ||| 湯姆 失業 後 , 為了 排遣 鬱悶 的 心情 而 開始 了 賭博 . +One out of 455 women does not realize she is pregnant until the twentieth week of pregnancy . ||| 455 名婦 女 中會 有 一名 直到 懷孕 第二十 週前 沒 有意 識到 自己 懷孕 . +I do not know what I 'd do without you . ||| 我 不 知道 如果 沒 了 你 我 還 能 做 什麼 . +He can not swim . ||| 他 不 會 游泳 . +Could you come to tomorrow is meeting ? ||| 你 能 来 参加 明天 的 会议 吗 ? +He is scared of that dog . ||| 他 怕 那 只 狗 . +They studied English yesterday . ||| 他們 昨天 學習 英語 . +We want two taxis . ||| 我們 要 兩輛 出租 車 . +She dived into the swimming pool . ||| 她 跳入 了 游泳池 . +What is your native language ? ||| 你 的 母语 是 什么 ? +His voice is pleasant to listen to . ||| 他 的 声音 很 悦耳 . +I work every day except for Sundays . ||| 我 除了 星期天 外 每天 都 上班 . +Who wrote these stories ? ||| 誰 寫 了 這些 故事 ? +How long does it take to get from here to your house on foot ? ||| 从 这里 步行 到 你家 要 多长时间 ? +I do not think Tom is going to be too much help . ||| 我 认为 汤姆 帮不上 大忙 . +I saw a strange woman there . ||| 我 看见 一位 陌生 女人 在 那儿 . +I am sorry I did not call . ||| 我 很 抱歉 我 没有 打电话 . +You look very good . ||| 你 看上去 很 好 . +He does not know how to write a letter in English . ||| 他 不 知道 如何 用 英语 写信 . +We loaded a lot of luggage into the car . ||| 我們 往 車裡 装 了 很多 行李 . +The population of the city is about 100,000 . ||| 这 座 城市 的 人口 约 有 100 000. +Do you know how many people in the world starve to death every year ? ||| 你 知不知道 全世界 每年 有 多少 人 饿死 呀 ? +Tom is a good friend . ||| 汤姆 是 个 好 朋友 . +I am dying for a cold drink . ||| 我 迫切需要 冷饮 . +Nobody believed what I said . ||| 没有 人 相信 我 说 的话 . +It was a very stupid decision . ||| 这 是 一个 十分 愚蠢 的 决定 . +The old man lived by himself . ||| 老人 独自 生活 . +He looks strong . ||| 他 看 起來 很 強壯 . +Stay right here and relax . ||| 待 在 這里 , 放 鬆 . +I have more experience than Tom . ||| 我 比 汤姆 更 有 经验 . +You are not too bad @-@ looking . ||| 你 看 起來 不 難 看 . +There is an orange on the table . ||| 桌上 有 一只 橙子 . +I want a dozen cream puffs . ||| 我 要 一打 奶油 泡芙 . +My parents usually speak to each other in French , even though my mother is a native English speaker . ||| 我 父母 通常 用 法语 对话 , 即使 我 母亲 的 母语 是 英语 . +I am very interested in languages . ||| 我 对 语言 很感兴趣 . +I saw him looking at me . ||| 我 看見 他 在看 我 . +Those were difficult times . ||| 那 是 困难 时期 . +Should I buy something for him ? ||| 我 應 該 買 些 東西 給 他 嗎 ? +You 'd better not have driven my car . ||| 你 最好 不要 開 了 我 的 車 . +The fish he caught yesterday is still alive . ||| 他 昨天 抓住 的 鱼 一直 还 活着 . +A foreign language cannot be mastered in a year or so . ||| 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +My aunt made a new skirt for me . ||| 我 舅母 做 了 一條 新 裙子 給 我 . +Almost everybody was invited . ||| 幾乎 每個 人 都 被 邀請 了 . +At last , the bus stopped . ||| 公车 最终 停 了 下来 . +My father always said that heaven helps those who help themselves . ||| 我 父親 總是 說 天助 自助 者 . +What are your strong points ? ||| 你 的 强项 是 什么 ? +I am very interested in these stories . ||| 我 对 这些 故事 很感兴趣 . +" The phone is ringing . " " I will get it . " ||| “ 电话响 了 . ” “ 我 去 接 . ” +He lives alone . ||| 他 独自 生活 . +Where is the city hall ? ||| 市政府 在 哪裡 ? +He speaks too fast . ||| 他 说话 太 快 了 . +I will stay with Tom until you get back . ||| 你 回来 之前 我会 跟 汤姆 在 一起 . +I started thinking about Tom . ||| 我 开始 想起 汤姆 . +The mountain was covered with snow . ||| 這 座 山 被 雪 覆蓋 著 . +I can not stand that kind of politician . ||| 我 不能 忍受 那種 政治家 . +Who cares ? ||| 爱 谁 谁 . +We want to hear it . ||| 我们 想 听听 . +She went on working . ||| 她 继续 工作 . +I do not want to talk to you . ||| 我 不想 跟 你 说 ! +Your family is waiting for you . ||| 你 的 家人 在 等 你 . +Tom does not like doing homework . ||| 汤姆 不 喜欢 做作业 . +I have to go to the bathroom . ||| 我 要 去 廁所 . +He meets his girlfriend on Saturdays . ||| 他 每 週六 和 他 的 女朋友 見面 . +I do not want to have an operation . ||| 我 不想 接受 手術 . +We are a family . ||| 我們 是 個 家庭 . +Mary is an exceptionally beautiful girl . ||| 瑪麗 是 一個 非常 漂亮 的 姑娘 . +I will go shopping tomorrow . ||| 我 明天 要 去 购物 . +By the way , what is your address ? ||| 对 了 , 你 的 地址 是 什么 ? +All of his family work on a farm . ||| 他 全家 都 在 农场 工作 . +Did Tom talk to Mary ? ||| 汤姆 跟 玛丽 说话 了 吗 ? +She raised her voice . ||| 她 提高 了 她 的 嗓音 . +He felt his heart beating fast . ||| 他 覺得 他 的 心跳 加速 . +I feel hopeful about the future . ||| 我 對 未來 感到 有 希望 . +A baby is sleeping in the cradle . ||| 一個 嬰兒 在 搖籃 裡 睡覺 . +Compare your translation with his . ||| 比較 你 和 他 的 翻譯 . +We were disappointed to hear that Tom could not get a visa . ||| 我们 很 遗憾 地 听说 , 汤姆 没 能 拿到 签证 . +We knew it all along . ||| 我们 一 开始 就 知道 . +You are a beautiful young woman . ||| 你 是 一个 美丽 的 女孩 . +My father is far from artistic . ||| 我 父親 一點 也 不 懂 藝術 . +What prevented you from coming earlier ? ||| 為 什麼 你 不能 早點 來 ? +I do not even want to think about what could happen . ||| 我 甚至 不想 去 想 會 發生 什麼 . +Give me something to write with . ||| 給 我些 可以 寫 字 的 東西 . +Do not believe what she says . ||| 不要 相信 她 說 的 話 . +It is later than you think . ||| 時間 比 你 想 的 還 要 晚 . +The old cottage has a certain charm about it . ||| 旧村 屋 有 它 自己 一定 的 魅力 . +Do you have tinnitus ? ||| 你 耳鸣 吗 ? +Do not you know what happened yesterday ? ||| 你 不 知道 昨天 發生 什麼 事 嗎 ? +One hundred and fifty people entered the marathon race . ||| 150 个人 参加 了 马拉松 比赛 . +I am studying at the University of Hyogo . ||| 我 在 兵库县 立 大学 学习 . +I think Tom is very cool . ||| 我 認為 湯姆 很酷 . +She was afraid to cross the road . ||| 她 怕 過 馬 路 . +He likes traveling and so do I. ||| 他 喜欢 旅行 . 我 也 是 . +Can I use your dictionary for a minute ? ||| 我 能 用 一下 你 的 字典 吗 ? +Tom should wait until Monday . ||| 汤姆 应该 等到 星期一 . +That red car hit the blue van . ||| 那輛 紅色 汽車 撞到 了 藍 色 麵 包 車 . +Tom wrung out the towel and hung it up to dry . ||| 汤姆 拧干 毛巾 挂 起来 晾干 . +Facts are stubborn things , but statistics are pliable . ||| 事实 是 倔强 的 , 但 统计 是 柔顺 的 . +I like candy . ||| 我 喜歡 甜食 . +Tom is speech was excellent . ||| 湯姆 的 演講 非常 好 . +Tom and Mary have three cats and two dogs . ||| Tom 和 Mary 有三隻貓和兩 隻 狗 . +Money has changed his life . ||| 金钱 改变 了 他 的 生活 . +You ask too many questions . ||| 你 问题 太 多 了 +I like beans . ||| 我 喜欢 豆子 . +Tom is a good friend of yours , is not he ? ||| 湯姆 是 你 的 好 朋友 , 不是 麼 ? +We need assistance . ||| 我們 需要 幫助 . +Do not you think so ? ||| 你 不 这么 认为 吗 ? +Tom continued his investigation . ||| 湯姆 繼續 他 的 調查 . +He is married to an American lady . ||| 他 和 一个 美国 女人 结婚 了 . +We will go when the rain stops . ||| 當雨 停 了 , 我們 就 會 去 . +I told them to send me another ticket . ||| 我 請 他們 再寄 給 我 一張 票 . +Now I remember . ||| 现在 我 想 起来 了 . +He once knew her , but they are no longer friends . ||| 他 过去 认识 她 , 但 他们 现在 不再 是 朋友 了 . +Kiss me . ||| 吻 我 . +We have got to have determination . ||| 我們 要 下 決心 了 . +The poet expressed his burning passion for the woman he loved . ||| 詩人 對 他 愛 的 女人 表達 了 他 火熱 的 激情 . +Please wash my back . ||| 請 幫 我 洗 背 . +Please help me . ||| 請 幫助 我 . +I did not expect to hear back from Tom so soon . ||| 我 沒 想到 這麼 快 就 收到 湯姆 的 回信 . +The present time is a good time . ||| 现在 正是 好 时候 . +I met him on my way home . ||| 我 在 回家 的 路上 遇見 了 他 . +Those houses are 500 years old . ||| 那些 房子 有 500 年 了 . +I had a good night is sleep . ||| 我 睡 了 一整夜 的 好觉 . +It is likely to be fine tomorrow . ||| 明天 天氣 可能 很 好 . +You have got a lot of guts . ||| 你 膽子 很大 . +What would you do if you had a million dollars ? ||| 你 有 100 万美元 的话 , 你 会 做 什么 ? +The policeman captured the man who was running . ||| 警察 抓 了 正在 跑 的 那個 男人 . +There is a castle in the background of the picture . ||| 图片 的 背景 是 一座 城堡 . +A penny saved is a penny earned . ||| 省 下 了 一分 錢 , 就 等 於 賺 了 一分 錢 . +He made the most of his opportunity . ||| 他 盡力 地 利用 了 這個 機會 . +Give me your location . ||| 给 我 你 的 位置 . +I do not understand why Tom brought you here . ||| 我 不 知道 為 甚麼 湯姆 把 你 帶到 這裡 . +Subtract three from eight and you get five . ||| 八 减去 三 就 能 得到 五 . +His words gave me hope . ||| 他 的 話 給 了 我 希望 . +I have recently given up smoking . ||| 我 最近 戒烟 了 . +The dog barked at the stranger . ||| 這 隻 狗 對 著 陌生人 叫 . +I stayed up till very late last night . ||| 我 昨晚 睡 得 很 晚 . +I need many books . ||| 我 需要 很多 書 . +No matter how hard the training was , she never cried . ||| 不管 训练 多么 艰苦 , 她 都 没有 哭 过 . +It was really cheap . ||| 它 真的 很 便宜 . +Life is not all fun and games . ||| 生活 並 不 都 是 輕 鬆 愉快 的 . +The cat meowed . ||| 猫叫 . +I am a hero . ||| 我 是 個 英雄 . +The girl greeted me with a smile . ||| 這個 女孩 面帶 微笑 向 我 打招呼 . +I spoke to Tom last night . ||| 昨晚 我 和 汤姆 说话 了 . +Give it to them . ||| 把 它 给 他们 . +He has no sense of right and wrong . ||| 他 是非不分 . +Tom told me he was nervous . ||| 湯姆 告訴 我他 緊張 . +The airplane took off on time . ||| 這 班 飛 機準 時 起 飛 . +Did you hear my show last night ? ||| 你 听 了 我 昨天晚上 的 节目 吗 ? +My father works at the factory . ||| 我 父亲 在 工厂 工作 . +Restart your computer . ||| 重新启动 你 的 电脑 . +The party was put off for a week . ||| 派对 延期 了 一周 . +Have a look . ||| 请 看一看 . +The price is not reasonable . ||| 这个 价格 不合理 . +You can take today off . ||| 你 今天 可以 休假 一天 . +Can you eat this ? ||| 这个 能 吃 吗 ? +I had difficulty working out the problem . ||| 我 很 難 解決 這個 問題 . +I did not think this was your seat . ||| 我 不 認為 這 是 你 的 座位 . +He attributes his success to good luck . ||| 他 将 他 的 成功 归功于 好运 . +I do not want to miss my train . ||| 我 不想 错过 我 的 火车 . +He will travel abroad next year . ||| 明年 他 要 去 国外 旅游 . +He arrived at the station at seven . ||| 他 7 点 到 了 火车站 . +You drink too much coffee . ||| 你 咖啡 喝 得 太 多 了 . +Did you buy cat food ? ||| 你 买 猫 粮 了 吗 ? +I am not a student . ||| 我 不是 學生 . +Let is go ahead and eat . ||| 咱们 去 吃饭 吧 . +He wrote a book about a jungle adventure . ||| 他 写 了 一本 关于 丛林 冒险 的 书 . +The doorbell rang . ||| 门铃 儿 响 了 . +Keep an eye on the child for me for a moment . ||| 帮 我 看 会儿 孩子 . +He married a very pretty girl . ||| 他 娶 了 一個 很漂亮 的 女孩 . +I am not a teacher . ||| 我 不是 個 老師 . +There were risks . ||| 有 風險 . +He lived a moral life . ||| 他 以 君子 之 道 生活 . +Do not worry ! Even if I drink , it does not have an effect on my driving . ||| 別 擔心 ! 即使 我 喝酒 了 , 它 對 我 的 駕駛 沒有 影響 . +How long do you plan to stay in this country ? ||| 你 打算 在 这个 国家 待 多久 ? +I do not remember mailing the letter . ||| 我 不 記 得 寄 過信 了 . +He made no mention of her request . ||| 他 沒有 提到 她 的 請求 . +Tom did not give me what I asked him for . ||| 汤姆 没给 我 我 跟 他 要 的 . +We know him . ||| 我們 認識 他 . +Please do not say that . ||| 请 你 不要 说 这个 . +If you want to , you can use my car . ||| 如果 你 愿意 , 你 可以 用 我 的 车 . +He does not care much for baseball . ||| 他 不 太 关注 棒球 . +Do not enter the room without permission . ||| 未經 允許 請 勿 進入 這個 房間 . +He made the best of the opportunity . ||| 他 善用 了 這個 機會 . +The youngest daughter is exceptionally beautiful . ||| 么 女 長 得 特別 漂亮 . +I do not read newspapers much . ||| 我 不 太 看 报纸 . +Are you busy ? ||| 您 在 忙 吗 ? +Everyone is anxious to know what has become of the former champion . ||| 大家 都 渴望 知道 前 冠军 得主 发生 了 什么 . +Let me say one thing . ||| 讓 我 說 一件 事情 . +Everyone inside the building felt the earthquake . ||| 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +You really are rude , are not you ? ||| 你 真的 很粗 魯 , 不是 嗎 ? +Please give me something to eat . ||| 請 給 我 點 東西 吃 . +Do you think he did the job on his own ? ||| 你 认为 他 是 自己 独立 完成 这份 工 的 吗 ? +I invited them to the party . ||| 我 邀請 了 他們 參加 派 對 . +I promise it will not happen again . ||| 我 保證 它 不 會 再 發生 . +You said you 'd help me . ||| 你 说 过 你 会 帮 我 的 . +How do we get out of here ? ||| 我们 该 怎么 从 这里 出去 . +Tom explained it to Mary very carefully . ||| 汤姆 仔细 地 给 玛丽 解释 . +I do not want Tom to see this . ||| 我 不想 讓 湯姆 看見 這個 . +Can you describe to me the difference between black tea and green tea ? ||| 你 能 告诉 我 红茶 和 绿茶 的 区别 吗 ? +Tom is check bounced . ||| 汤姆 的 支票 被 退票 了 . +What time are you leaving ? ||| 你 什么 时候 走 ? +I remember meeting you before . ||| 我 記得 以前 見 到 你 . +The train was crowded with people . ||| 火车 挤满 了 人 . +We are glad to have you in our class . ||| 我们 很 高兴 你 加入 了 我们 班 . +This is the cheapest shop in town . ||| 這 是 鎮 上 最 便宜 的 商店 . +Tom and I know each other quite well . ||| 湯姆 和 我 互相 很 了解 . +I am undressing . ||| 我 脱衣服 . +I only spent three dollars . ||| 我 只 花 了 三 美元 . +We are neighbors . ||| 我們 是 鄰居 . +He is out now . ||| 他 现在 出去 了 . +Let is eat now . I am dying of hunger . ||| 咱们 吃 吧 ! 我 饿死 了 . +Did you forget to lock the door last night ? ||| 你 昨天晚上 忘 了 鎖 門 嗎 ? +The problem is being discussed now . ||| 这 问题 正在 被 讨论 . +Do not kid around . ||| 別 開 玩笑 了 . +He played baseball after school . ||| 他 放學 後 打 棒球 . +How many forks do we need ? ||| 我們 需要 多少 把 叉子 ? +She went to the hospital yesterday . ||| 她 昨天 去 了 醫院 . +The police think the burglar entered through a basement window . ||| 警察 认为 窃贼 从 地下室 窗口 进入 . +She spoke through an interpreter . ||| 她 透過 傳譯員 發言 . +I am really glad you are here . ||| 你 能 来 我 真 高兴 . +I do not know if today is Tuesday or Wednesday . ||| 我 不 知道 今天 是 星期二 還是 星期三 . +You must not yield to temptation . ||| 你 不 應該 屈服 在 誘惑 之下 . +I do not believe the child came to Tokyo alone . ||| 我 不 相信 孩子 能 独自 到 东京 . +The storm abated . ||| 风暴 减弱 了 . +Let is discuss it . ||| 来 商量 吧 . +I am not a bit tired . ||| 我 一點 也 不累 . +Tom will never see you again . ||| 汤姆 以后 再也不会 见 你 了 . +Tom often goes cross @-@ country skiing . ||| Tom 经常 滑雪 穿过 城市 . +Tom walks very slowly . ||| 汤姆 走 得 很慢 . +Were you playing tennis yesterday morning ? ||| 你 昨天早上 在 打网球 吗 ? +We will have guests tomorrow . ||| 我們 明天 會 有 客人 . +That was pretty neat . ||| 那 真 整潔 . +He cannot afford to buy a car , much less a house . ||| 他 买不起 一辆 汽车 , 更 不要 说 一套 房子 了 . +The dress suits you very well . ||| 这 条 裙子 很 适合 你 . +I do not really like him , in fact , I hate him . ||| 我 不 太 喜欢 他 , 其实 我 讨厌 他 . +I am not a student . ||| 我 不是 學生 . +How long have you two been together ? ||| 你们 两个 在 一起 多久 了 ? +The old man was almost hit by a car . ||| 老人 幾乎 被 車 撞 上 . +You 'd better tell us what is going on . ||| 你 最好 告诉 我们 发生 了 什么 . +Tom says that Mary definitely will not accept the job . ||| 湯姆 說 瑪麗 絕不 會 接受 這 工作 . +He is afraid that he might be late . ||| 他 担心 他 可能 会 迟到 . +Have a nice day , Tom . ||| 汤姆 , 希望 你 今天 玩 得 开心 . +This job does not pay . ||| 这个 工作 没有 酬劳 . +Mary said that she loved me , but I did not believe her . ||| 玛丽 说 她 爱 我 , 但是 我 并 不 相信 她 所说 的话 . +Do you want some rice ? ||| 你們 要 米 飯 嗎 ? +Please feel free to call me up . ||| 請 隨時 都 可以 打 電話 給 我 . +I can not drink milk . ||| 我 不 可以 喝牛奶 . +Tom put the vase on the table . ||| 湯姆 把 花瓶 放在 桌上 . +She is proficient in French . ||| 她 精通 法語 . +The investigation is under way . ||| 相關 調查 正在 進行 中 . +We must not laugh at the poor . ||| 我们 不能 嘲笑 穷人 . +Feel this . It is really soft . ||| 来 摸摸 这个 感觉 一下 . 真的 很 柔软 啊 . +Tom arrived here before sunrise . ||| 汤姆 天亮 前 就 到 这 了 . +It is a pity you did not come last night . ||| 您 昨晚 沒來 真是太 可惜 了 ! +It is too dark to play baseball now . ||| 現在 太暗 無法 打 棒球 . +Her eyes shone with joy when she saw that her mother was not mad at her . ||| 當 她 看到 媽媽 沒 在 生 她 的 氣 , 她 的 雙眼 因為 幸福 而 閃爍 了 . +I discovered that speaking English was pretty easy . ||| 我 發覺 說 英語 很 簡單 . +I will be at home all day tomorrow . ||| 明天 我 一整天 都 在家 . +May I put it down here ? ||| 我 可以 把 它 放在 这儿 吗 ? +London is on the Thames . ||| 倫敦 在 泰 唔 士河 旁 . +I just do not want to lose you . ||| 我 只是 不想 失去 你 . +Roll up your right sleeve . ||| 捲 起 你 右 邊 的 袖子 . +How long did it take you to write this report ? ||| 你 写 这份 报告 花 了 多长时间 ? +Eat your soup before it gets cold . ||| 趁 汤 没 凉 之前 喝 下 . +They did not know what to do first . ||| 他們 不 知道 先 做 什麼 . +The teacher demonstrated the idea with an experiment . ||| 这位 老师 用 试验 论证 了 这个 想法 . +There is a TV in this room . ||| 这个 房间 里 有个 电视机 . +I had curry last night . ||| 我 昨晚 吃 了 咖喱 . +Just pull the door shut . It will lock by itself . ||| 只要 推门 就 好 了 . 它 自己 会 锁上 的 . +We will begin tomorrow morning . ||| 我們 明天 上午 開始 . +I will be free all day tomorrow . ||| 明天 我 一整天 都 有空 . +I feel no sympathy for Tom . ||| 我 不 同情 湯姆 . +The enemy attacked us at night . ||| 敵人 在 夜間 攻擊 了 我們 . +Why do not you take the day off ? ||| 你 為 什麼 不 請 一天 假 ? +I want to study abroad next year . ||| 我 明年 想 出国 留学 . +I hope I am not disturbing you . ||| 我 希望 没 打扰到 你 吧 ? +Does your father get home early ? ||| 你 爸爸 很早 回家 嗎 ? +Can I help ? ||| 我 可以 幫忙 嗎 ? +What you said is not true . ||| 你 说 的 不是 真的 . +If a man had 11 sheep and all but 9 died , how many sheep would he have left ? ||| 如果 一个 人 有 11 只 羊 , 除了 9 只 之外 , 其他 全部 死 了 , 那么 他 还 剩下 几只羊 呢 ? +Please help yourself to the cake . ||| 你 自己 拿 蛋糕 吃 吧 . +Father takes the 7 : 00 subway to work . ||| 爸爸 乘 早上 7 点 的 地铁 去 上班 . +Is it about ten o 'clock ? ||| 大約 十點鐘 嗎 ? +Tom has come up with a good plan . ||| 湯姆 想到 了 個 好 計劃 . +No one can help me . ||| 没有 人 能 帮 我 . +She is nothing but a child . ||| 她 只是 個 孩子 . +More than 40 percent of the students go on to university . ||| 40 % 以上 的 学生 去 读 大学 . +I think Tom is photogenic . ||| 我 觉得 汤姆 很 上 镜 . +You should not share too much private information on the social networks . ||| 你 不 应该 在 社交 网络 上 分享 过 多 私人 信息 . +It is difficult to speak Chinese well . ||| 很 難 把 中文 說 得 好 . +Tom does everything he can to save money . ||| 湯姆盡 全力 省 錢 . +The manager approved our plan . ||| 經理 批准 了 我們 的 計劃 . +He has no house to live in . ||| 他 没有 房子 住 . +Hide in the closet . ||| 你 藏進 櫃子 裡 去 . +I want ten plates . ||| 我 要 十個 盤子 . +We have to turn in our reports by the end of this month . ||| 这个 月底 前 , 我们 必须 交 报告 . +Please answer my question . ||| 请 回答 我 的 问题 . +Selling cars is my job . ||| 賣車 是 我 的 工作 . +Are not you thirsty ? ||| 你 不 渴 嗎 ? +Do you believe in ghosts ? ||| 你 相信 有 鬼魂 吗 ? +I sell clothing online . ||| 我 在 網 路上 賣 衣服 . +Only four horses competed in the race . ||| 只有 四匹 馬 參加 了 比賽 . +I spilled my coffee on the carpet . ||| 我 把 咖啡 倒 翻 在 地毯 上 了 . +He will wait for you . ||| 他 會 等 你 . +You made an error . ||| 你 犯 了 个 错误 . +I will give you the money tomorrow . ||| 我 明天 會 給 你 錢 . +There is no telling what he will do next . ||| 没有 人 知道 他 接下来 会 干什么 . +We were just about to enter the room . ||| 我们 正要 进 房间 . +You 'd better go home at once . ||| 你 最好 立刻 回家 . +Tom told me that he does not like carbonated drinks . ||| 汤姆 告诉 我 他 不 喜欢 碳酸 饮料 . +We need to talk about that as soon as possible . ||| 我們 需要 盡早 談論 那件事 . +We made it out of there . ||| 我們 從 那裡 逃 了 出來 . +Why do not you go home early today ? ||| 你 今天 為 什麼 不 早點 回家 呢 ? +I belong to the swimming club . ||| 我 參加 游泳 社 . +He married a stewardess . ||| 他 娶 了 一个 空姐 . +His parents are saving for his college education . ||| 他 的 父母 為 他 的 大學 教育 存錢 . +No one will bother you here . ||| 這裡 沒 人會 打擾 你 . +I do not write letters anymore . ||| 我 不再 写信 了 . +That is mine . ||| 那 是 我 的 . +He made his son a chair . ||| 他 做 了 一把 椅子 給 他 兒子 . +This method is sure to work . ||| 這個 方法 一定 會 成功 . +This dictionary is my sister is . ||| 這 本 字典 是 我 妹妹 的 . +I can not recall the last time we met . ||| 我 想不起 來 我們 上次 見面 的 情况 了 . +Do not put anything on top of the box . ||| 不要 放 任何 東西 在 箱子 上面 . +I know her address . ||| 我 知道 她 的 地址 . +Wipe your eyes . ||| 擦擦 你 的 眼睛 . +How are you , Tom ? ||| 你好 嗎 , 湯姆 ? +She asked about my school . ||| 她 問 了 關 於 我 學校 的 事 . +He works for an advertising agency . ||| 他 為 一家 廣告 公司 工作 . +What would you like to eat for dinner ? ||| 你 想 吃 什麼 作 晚餐 ? +Tom robbed a bank . ||| 湯姆 搶 了 家銀行 . +Who does the book belong to ? ||| 這 本書 是 誰 的 ? +Who is this , please ? ||| 請 問 這 是 誰 ? +If you buy me an ice cream , I will give you a kiss . ||| 如果 你 買 給 我 冰淇淋 , 我 就 親 你 一下 . +Who did you give that to ? ||| 你 把 東西 交給 誰 了 ? +Follow us . ||| 请 跟着 我们 . +I left my umbrella in the cab . ||| 我 把 我 的 傘 忘 在 計程車 上 了 . +We can not afford to make mistakes . ||| 我們 承擔 不了 犯錯 的 後 果 . +It was not long before we met again by chance . ||| 没多久 , 我们 又 碰巧 遇到 了 . +I 'd like you to go there . ||| 我 希望 你 去 那裡 . +We took turns with the driving . ||| 我們 輪流 駕駛 . +Let is wait here until he comes back . ||| 讓 我們 在 這裡 等 他 直到 他 回來 . +Do not leave the TV on . ||| 不要 让 电视机 开 着 . +I was fired without cause . ||| 我 被 无故 辞退 了 . +I have not eaten lunch yet . ||| 我 现在 还 没有 吃 过 午饭 . +Tom is going to run for mayor . ||| 汤姆 要 竞选 市长 . +Blood was everywhere . ||| 到处 都 是 血 . +We can see more and more swallows . ||| 我們 能 看到 越來越 多 的 燕子 . +Marriage frightens some people . ||| 有些 人 害怕 婚姻 . +There is no doubt . ||| 毫无疑问 . +Turn on the light , please . ||| 麻煩 開燈 一下 . +You seem to know everything . ||| 你 看起来 什么 都 知道 . +I am not as optimistic as you . ||| 我 不 像 你 那么 乐观 . +I can see through your lies . ||| 我 能 看穿 你 的 謊言 . +I am afraid to go alone . ||| 我 害怕 一個 人 去 . +I would like to invite you to the party . ||| 我 想 请 你 参加 派对 . +How are you ? ||| 你好 嗎 ? +Everything comes to those who wait . ||| 成功 屬 於 耐心 等待 的 人 . +Yesterday , an explosion occurred at the fireworks factory . ||| 昨晚 , 烟花 厂 发生 了 爆炸 . +Tom watched Mary draw a picture . ||| 汤姆 看 玛丽 画 一幅 画 . +Why do you say that ? ||| 你 為 什麼 那樣 說 ? +Tom , wake up . ||| 汤姆 , 快 起来 ! +He never speaks unless spoken to . ||| 除非 有人 跟 他 說 話 , 他 從來 不 說 話 . +My father graduated from Harvard University . ||| 我 爸爸 是 哈佛大学 毕业 的 . +Can you get up ? ||| 你 能 起床 嗎 ? +She hung the picture upside down . ||| 她 把 画 挂反 了 . +Is it OK to take pictures here ? ||| 这里 允许 拍照 吗 ? +I have not done very much this year . ||| 我 今年 沒 做 多少 事 . +What time does the movie start ? ||| 电影 什么 时间 开始 ? +What happened that night ? ||| 这个 晚上 发生 了 什么 ? +The library is on the second floor . ||| 圖書館 在 二 樓 . +There are several ways to measure speed . ||| 测速 的 方法 有 很多 . +I can not keep up with you . ||| 我 無法 跟上 你 . +Three people were killed in the explosion . ||| 这场 爆炸 中 有 三 人 丧生 . +We need more . ||| 我們 需要 更多 . +Tom told me I should not do that . ||| 湯姆 告訴 我 我 不該 去 做 . +Do not try to stop me . ||| 别 想 阻止 我 . +Drive slowly . ||| 开车 慢点 . +You can not fight a good fight with such a defeatist attitude . ||| 抱著 失敗 主義 的 態度 你 無法 打 一場 漂亮 的 仗 . +He is doing very well at school . ||| 他 在 學校 的 表現 很 好 . +I used to have a friend named Tom . ||| 我 曾 有 个 朋友 叫 汤姆 . +We should not expect too much help from Tom . ||| 我們 不該 期望 從 Tom 那 得到 太 多 幫助 . +Do you know how to dance ? ||| 你 會 跳舞 嗎 ? +I agree with what you say to some extent . ||| 在 某种程度 上 , 我 认同 你 所说 的 . +I would like to swim in this river . ||| 我 想 在 這條 河裡 游泳 . +The price does not include the box . ||| 這個 價格 不 包含 這個 箱子 . +What is become of your dog ? ||| 你 的 狗 怎麼 了 ? +The car is ready . ||| 汽车 准备 好 了 . +When did you begin studying English ? ||| 你们 什么 时候 开始 学 英语 的 ? +I have got a lot of questions . ||| 我 有 许多 问题 . +How about taking a walk with us ? ||| 跟 我們 一起 散步 怎麼樣 ? +Do not let him down . ||| 别 让 他 失望 . +Ca not you get by on your salary ? ||| 靠 你 的 收入 你 不能 過 活 嗎 ? +If you do not hurry , you will miss the train . ||| 如果 你 不 抓紧 的话 , 你 就 会 赶不上 火车 . +He would not listen to my advice . ||| 他 不 聽 我 的 勸告 . +Tom has not said a word all morning . ||| 汤姆 整整 一个 上午 一句 话 也 没 说 . +She is a good dancer . ||| 她 是 一個 很好 的 舞者 . +I know how to make beef stroganoff . ||| 我 知道 怎麼 做 俄式 炒 牛肉 片 . +I 'd rather be with you . ||| 我 更 愿意 跟着 你 . +Do not forget to lock up when you leave . ||| 当 你 出门时 , 别忘了 锁门 . +You will go to school tomorrow . ||| 你 明天 去 學校 . +Lend me some money , if you have any . ||| 你 有钱 的话 , 借 我 一些 . +Could you drive Tom home ? ||| 你 能載 湯姆 回家 嗎 ? +Do not move . ||| 不要 动 . +She helped me pack my suitcase . ||| 她 幫 我 打包 我 的 手提箱 . +I can not put up with his arrogance . ||| 我 不能 忍受 他 的 傲慢 . +Boys , as a rule , are taller than girls . ||| 一般来说 , 男生 会 比 女生 高 一些 . +I got up early enough to catch the first train . ||| 我 起 了 个 大早 为了 赶 第一班 火车 . +I understand how to solve the problem . ||| 我 明白 怎么 解决问题 . +Thank you for the pleasant evening . ||| 謝謝 你 讓 我 度 過 一個 愉快 的 晚上 . +He is a baseball player . ||| 他 是 个 棒球 手 . +I love the sound of children laughing . ||| 我 喜歡 孩子 們 笑 的 聲音 . +A friend is coming over tomorrow . ||| 一個 朋友 明天 要過 來 . +Do not do this to me again . ||| 別 再 對 我 做 這事 了 . +I do not want everyone to think I am stupid . ||| 我 不想 讓 任何人 認為 我 傻 . +The cat is not dead . ||| 那 猫 没死 . +Hug Tom . ||| 请 抱紧 汤姆 . +I remember seeing her . ||| 我 記得 我 看 過 她 . +He told us a lie . ||| 他 對 我們 說 了 一個 謊 . +Tom is on his way here . ||| 湯姆 正在 來 這里 . +I am not like Tom . ||| 我 跟 汤姆 不 一样 . +He tried to kill himself . ||| 他 試圖 自殺 . +It is difficult to do that . ||| 那麼 做 很 難 . +Call me . ||| 联系 我 . +Tell me Tom is email address . ||| 告诉 我 汤姆 的 邮箱地址 吧 . +It is a sunflower . ||| 那 是 一朵 向日葵 . +Do you have a bicycle ? ||| 你 有 自行 車 嗎 ? +Whoever said money can not buy happiness simply did not know where to go shopping . ||| 那些 说 钱 不能 买来 幸福 的 人 , 只是 不 知道 上 哪里 去 买 而已 . +I do not know for certain . ||| 我 不 太 確定 . +Be happy for me . ||| 为 我 感到高兴 吧 . +I ate caviar . ||| 我 吃 了 魚子 醬 . +He knows how to brush his teeth . ||| 他 知道 怎么 刷牙 . +He is at home . ||| 他 在家 裡 . +Have you finished reading that book ? ||| 你 读完 那本书 了 吗 ? +The red dress suited her . ||| 這件 紅色 的 洋裝 適合 她 . +It took me a little more time than usually to fall asleep . ||| 我 花 了 比 平常 多 一點 的 時間 入睡 . +I am praying . ||| 我 在 祈禱 . +I think he is a great writer . ||| 我 认为 他 是 位 伟大 的 作家 . +Do you like strawberries ? ||| 你 喜歡 草莓 嗎 ? +That is a face I have seen before . ||| 這 張 臉 我 以前 見 過 . +I thought Tom was going to hurt me . ||| 你 認為 湯姆 要 傷害 我 . +He always takes sides with her . ||| 他 總 是 支持 她 . +I am not certain about that . ||| 对于 那个 , 我 不 确信 . +I am not very good at swimming . ||| 我 不是 很 擅長 游泳 . +It is a lot of fun to drive a car . ||| 開車 很 好玩 . +He returned home for the first time in ten years . ||| 他 十年 中 第一次 回家 . +Bringing up a baby is hard work . ||| 养 大 一个 宝宝 是 一项 艰难 的 工作 . +We have French third period . ||| 我們 第三 節 是 法語 課 . +Tom is spending more and more time in Boston . ||| 汤姆 在 波士顿 待 得 越来越 久 . +The old church by the lake is very beautiful . ||| 河边 的 老 教堂 很漂亮 . +He knows how to read Chinese . ||| 他 看得懂 中文 . +Tom studies French as well . ||| 湯姆 也 學 法語 . +Where will we go afterwards ? ||| 我们 以后 往 哪 走 ? +I hope no one saw me dancing . ||| 我 希望 沒人 看見 我 跳舞 . +She is not a child . ||| 她 不是 小孩 . +Tom threw in the towel . ||| 汤姆 不 干 了 . +I felt like crying . ||| 我 想 哭 . +Visiting a foreign country must be expensive . ||| 到 外國 一定 很貴 . +Tom had a lot of problems at the school . ||| 汤姆 在 学校 遇到 了 很多 问题 . +I am able to swim . ||| 我 會 游泳 . +Do you think I am beautiful ? ||| 你 認為 我 美 嗎 ? +Everyone except Tom knew he did not need to do that . ||| 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +This medicine will decrease your pain . ||| 这种 药会 减轻 你 的 疼痛 . +I was asked to wait here . ||| 我 被 要求 在 这里 等 . +Switzerland is famous for its scenic beauty . ||| 瑞士 以 它 的 風景 優美 而 聞名 . +Your shirt button is coming off . ||| 你 衬衣 的 纽扣 快 掉 了 . +You may injure yourself if you do not follow safety procedures . ||| 如果 你 不 按照 安全 手续 来 的话 , 你 可能 会 受伤 的 . +Were you working last night ? ||| 你 昨晚 在 工作 吗 ? +What do you have ? ||| 您 有 什么 ? +All I want to do is go fishing . ||| 我 唯一 想 做 的 是 去 釣 魚 . +What made her so angry ? ||| 什麼 事 讓 她 這麼 生氣 ? +She gave up her plans against her will . ||| 她 違背己願 放棄 了 她 的 計畫 . +It is OK not to eat it . ||| 你 不吃 沒 關 係 . +They arrived in Osaka at the beginning of May . ||| 他们 五月 初 到 了 大阪 . +Stop yelling ! ||| 别 再 喊叫 了 ! +We are happy . ||| 我們 很快 樂 . +You should have introduced yourself . ||| 你 本來 應該 介紹 自己 的 . +I do not want it . ||| 我 不要 . +" I like traveling . " " So do I. " ||| “ 我 喜欢 旅游 . “ ” 我 也 是 . “ +How long does it take to walk to your house from here ? ||| 从 这里 步行 到 你家 要 多长时间 ? +Tom had a pain in his chest , so he went to the hospital . ||| 汤姆 胸痛 , 所以 去 了 医院 . +You people are no fun at all . ||| 你们 这帮 人 真 没意思 . +What is it about ? ||| 它 是 關 於 什麼 ? +All you have to do is take advantage of this rare opportunity . ||| 你 所要 做 的 便是 好好 把握 這 千載難逢 的 機會 . +A group of young men are playing handball in the playground . ||| 一群 年 輕 人 在 操場 上 打 手球 . +I found your letter in the mailbox . ||| 我 在 信箱 中 發現 了 你 的 信件 . +I should not have said that . ||| 我 不该 说 那个 . +Many people only speak one language . ||| 許多 人 只 說 一種 語言 . +I am going to go there with Tom . ||| 我 要 和 汤姆 去 那里 . +We kept our fingers crossed . ||| 我们 试图 让 手指 互相 交错 . +I sometimes break the rules . ||| 我 有时候 打破 规矩 . +Tom cut down the tree that was in front of his house . ||| 湯姆 砍 了 他 門前 的 樹 . +He is too drunk to drive home . ||| 他 喝酒 醉無法 開車 回家 . +I am just a plain office worker . ||| 我 只是 一個 普通 的 上班族 . +How old do you think she is ? ||| 你 认为 她 多 大 ? +He made an important discovery . ||| 他 有 了 一個 重要 的 發現 . +Ca not you speak English ? ||| 你 不 會 說 英語 嗎 ? +I am very interested in these stories . ||| 我 对 这些 故事 很感兴趣 . +I want to show you something in my office . ||| 我 想 给 你 看看 我 办公室 里 的 一些 东西 . +Do you need to buy anything ? ||| 你 有 什么 需要 买 的 吗 ? +May I go to the toilet ? ||| 我 可以 去 廁所 嗎 ? +The problem was that I had nothing to say to him . ||| 问题 是 我 没什么 要 跟 他 说 的 . +It is obvious that she is sick . ||| 顯然 地 她 生病 了 . +I am an optimist by nature . ||| 我 天生 是 一個 樂觀 主義 者 . +The child missed his mother very much . ||| 這 孩子 非常 想念 他 的 母親 . +The light was on . ||| 灯 亮 着 . +This is Uncle Tom is farm . ||| 這 是 湯姆 叔叔 的 農場 . +I do not know your reasons for not liking Tom . ||| 我 不 知道 你 不 喜欢 汤姆 的 理由 . +He should have arrived by now . ||| 现在 他 应该 已经 到 了 . +Be careful . It is very sharp . ||| 小心 點 , 它 很 锋利 . +Drive carefully . ||| 开车 小心 点 . +I found the book interesting . ||| 我 觉得 这 本书 很 有意思 . +Every time it rains , the roof leaks . ||| 每次 下雨 屋頂 就 漏水 . +Your opinion matters . ||| 你 的 觀點 是 重要 的 . +She testified that she saw the man . ||| 她 作證 說 她 看見 了 這 名 男子 . +He gave us the signal to begin . ||| 他 給 了 我們 信號 讓 我們 開始 . +Tom worked very hard and earned a lot of money . ||| 汤姆 努力 工作 挣 了 好多钱 . +Mary showed the letter to me . ||| 瑪麗 給 我 看 了 這 封信 . +Tom seems a little confused . ||| 湯姆 看來 有 點 困惑 . +She is good at playing tennis . ||| 她 擅長 打 網球 . +You are very courageous . ||| 您 非常 勇敢 . +We are having difficulty locating Tom . ||| 我们 难以 找到 汤姆 . +Where is my seat ? ||| 我 的 位子 在 哪儿 ? +I heard her singing a song . ||| 我 聽到 她 唱歌 . +I am afraid that there is not any coffee left . ||| 恐怕 已經 沒有 咖啡 了 . +The bus will take time . ||| 乘 公交车 费时 . +Do you want to eat noodles or rice ? ||| 你 要 吃 麵 條 還 是 吃 米 飯 ? +His doctor ordered him to rest . ||| 他 的 医生 命令 他 休息 . +Tom has not missed any of Mary is concerts . ||| 汤姆 没有 错过 一场 玛丽 的 音乐会 . +The quickest means of travel is by plane . ||| 旅行 最快 的 方式 是 乘飞机 . +May I use this ? ||| 我 可以 用 嗎 ? +Ca not we work this out ? ||| 我们 做 不成 吗 ? +I could not think of anything to say . ||| 我 想不到 要 說 什麼 話 . +I feel weak . ||| 我 感到 虚弱 . +A typhoon is approaching Japan . ||| 颱 風 正 接近 日本 . +The papers blew off . ||| 文件 被 风 刮起来 . +She gave the children two apples each . ||| 她 給 孩子 們 每人 兩個 蘋果 . +He was elected mayor . ||| 他 被选为 市长 . +She lived for a long time . ||| 她 活 了 很久 . +It is been raining since last night . ||| 從 昨晚 起 一直 下雨 . +Because of the typhoon , my parents ended their trip one day early . ||| 因为 台风 的 关系 , 我 的 父母 提早 一天 结束 了 旅行 回到 家 . +I had a lot of fun . ||| 我 玩 得 很 開心 . +Please wait a little while longer . ||| 請 稍 等 一會兒 . +Take this medicine every six hours . ||| 每 六個 小 時 吃 一次 這個 藥 . +This book belongs to the library . ||| 這 本書 是 圖書館 的 . +Show me your passport , please . ||| 请 给 我 看看 您 的 护照 . +Let is go to the club . ||| 讓 我們 去 俱 樂 部 吧 . +Hang in there . ||| 坚持 . +I do not agree with him . ||| 我 不 同意 他 . +She is still dependent on her parents . ||| 她 是 啃老族 . +I have to ask you something . ||| 我 得 问 你 点 事 . +These flowers bloom earlier than others do . ||| 這些 花 比別 的 花 早 開花 . +She translated the letter from Japanese into French . ||| 她 把 信 从 日语 译成 法语 . +Many conservationists fear the continuing slaughter of whales is pushing these animals towards extinction . ||| 许多 自然环境 保护主义者 担心 持续 屠杀 鲸鱼 正 推动 这些 动物 走向 灭绝 . +The sky became darker and darker . ||| 天空 变得 越来越 暗 了 . +Sales fell off in the third quarter . ||| 在 第三季 時 銷售 跌 了 下來 . +It is becoming warmer day by day . ||| 一天天 热 起来 了 . +He got off the bus . ||| 他 下 了 公車 . +We have got a situation . ||| 我们 有 情况 了 . +There is nothing to prevent you from going . ||| 没什么 能 阻止 你 出发 了 . +Nice to see you . ||| 见到 你 真好 . +It rained hard yesterday morning . ||| 昨天上午 下 大雨 . +I can not locate the source of the problem . ||| 我 无法 找到 问题 的 根源 . +That white parasol is hers . ||| 那 把 白色 阳伞 是 她 的 . +They came all the way from Brazil . ||| 他們 從 巴西 遠 道 而 來 . +Please put on your shoes . ||| 請 穿 上 你 的 鞋子 . +Do you like black cats ? ||| 你 喜歡 黑色 的 貓 嗎 ? +Why are you still unmarried ? ||| 你 為 甚麼 還 不 結婚 ? +This chair is light . ||| 这 把 椅子 很轻 . +I think we should not allow Tom to do that . ||| 我 認為 我們 不 應該 允許 湯姆 去 做 . +He is careless about money . ||| 他 不 關心 錢 . +This is an old building . ||| 这 是 幢 老楼 . +We enjoyed playing baseball . ||| 我們 喜歡 打 棒球 . +I work too much . ||| 我 工作 得 太 多 了 . +He reads a lot of books . ||| 他 读 很多 书 . +The meat has gone bad . ||| 這 肉 已經 壞 了 . +I am not the only one who thinks Tom is overweight . ||| 觉得 汤姆 肥 的 人 不止 我 一个 . +He lives in a cozy little house . ||| 他 住 在 一個 舒適 的 小 房子 裡 . +We all wondered why she had dumped such a nice man . ||| 我們 都 想 知道 她 為 什麼 甩 了 這麼 好 的 一個 男人 . +They made me go there alone . ||| 他們 讓 我 獨自 去 了 那裡 . +Many children die of starvation in Africa . ||| 在 非洲 有 许多 孩子 死 于 饥饿 . +My mother is quite angry . ||| 我 母亲 十分 生气 . +I want to die . ||| 我 想 死 +Playing tennis is a lot of fun . ||| 打 網球 很 有趣 . +Would you like some more beef ? ||| 你 想 再 來 些 牛肉 嗎 ? +Diplomats are allowed various privileges . ||| 外交官 有 多种 特权 . +I do not love you anymore . ||| 我 不再 爱 你 了 . +Only adults may watch that film . ||| 只有 成人 可以 看 那种 电影 . +What kind of stone is this ? ||| 这 是 什么 石头 ? +Some people never grow up . ||| 有些 人 永远 也 长不大 . +I am at home . ||| 我 在家 . +He must have missed the train . ||| 他 一定 是 錯 過 了 這 班 火車 . +It could be just a coincidence . ||| 可能 只是 巧合 . +He can not be ill . ||| 他 不 可能 生病 了 . +Run like your life depends on it ||| 拼命 地 跑 +You should make an effort to stop smoking . ||| 你 應該 努力 去 戒煙 . +Hopefully , we will enjoy our China trip . ||| 希望 我們 會 喜歡 我們 的 中國 之 旅 . +The king governed the country . ||| 國王 統治 了 這個 國家 . +They are talking with each other . ||| 他们 在 互相 交谈 . +He lives by himself in the woods . ||| 他 獨自 住 在 森林 裡 . +Creationism is a pseudo @-@ science . ||| 创造 主义 是 一种 伪科学 . +I can not do any more than this . ||| 我 無法 再 做 下去 了 . +Do not leave the door open . ||| 不要 把门 开 着 . +I want to go there once more . ||| 我 想 再 去 那裡 一次 . +Lunch is on . ||| 午餐 送到 了 . +It was not until I reached home that I missed my purse . ||| 那 是 在 我 到 家 以后 , 我 才 不见 了 我 的 钱包 . +The value of the painting was estimated at several million dollars . ||| 这 幅画 被 估价 数百万元 . +They are peace @-@ loving people . ||| 他们 是 热爱 和平 的 人 . +I am an only child . ||| 我 是 獨 生子 . +I am going to see him today . ||| 今天 我 要 去 看 他 . +Would you like a drink ? ||| 你 想 喝 點 什麼 嗎 ? +May I see the wine list ? ||| 我 可以 看 一下 酒單 嗎 ? +English is studied in China , too . ||| 在 中國 的 人 也 研讀 英語 了 . +He stopped reading the newspaper . ||| 他 停止 了 读报 . +What is your opinion on this matter ? ||| 关于 那个 你 有 什么 看法 ? +They are having a chat . ||| 他們 正在 聊天 . +You look just like your older brother . ||| 你 和 你 哥哥 长 得 一模一样 . +On Mondays , he is always at home . ||| 他 星期一 總是 在家 . +Such a plan is bound to fail . ||| 這樣 的 計劃 注定 會 失敗 的 . +I miss you badly . ||| 我 非常 想 你 . +I got a good grade in English . ||| 我 的 英文 得到 了 好 成績 . +She took my joke seriously . ||| 她 把 我 的 玩笑 当真 了 . +Could you please lend me thirty dollars ? ||| 請 問 你 能 借 給 我 三十 美 圓 嗎 ? +Everybody is supposed to know the law , but few people really do . ||| 每 一个 人 都 应该 知法 懂法 , 但是 真正 能 做到 的 人 却 很少 . +I got up at six this morning . ||| 我 今天 早上 六點 起床 . +I can not put up with him . ||| 我 受不了 他 . +Please tell us what to do next . ||| 請 告訴 我們 下 一步 要 做 什麼 . +I succeeded in getting what I wanted . ||| 我 成功 地 得到 了 我 想要 的 . +I am hearing that a lot lately . ||| 我 最近 听说 了 不少 . +This book will do . ||| 這 本書 就行了 . +I was happy to see him . ||| 我 很 高兴 见到 他 . +Tom ate half the cake by himself . ||| 湯姆 獨自 吃 了 半個 蛋糕 . +He was supposed to come . ||| 他 應 該 來 的 . +Shine your shoes before going out . ||| 出門 前 把 你 的 鞋子 擦亮 . +What is the forecast for tomorrow ? ||| 明天 的 天气预报 怎么 说 ? +Tom refused to even listen to my suggestions . ||| 汤姆 甚至 拒绝 听 我 的 建议 . +Have a good weekend ! ||| 周末 愉快 . +I forgot to ask Tom . ||| 我 忘 了 问 汤姆 . +Once in a while , we should take a step back and think . ||| 有时候 , 我们 应该 后退 一步 想一想 . +Tom swam . ||| Tom 游泳 . +The town was destroyed by the flood after the storm . ||| 小镇 被 暴风雨 后 的 洪水 摧毁 了 . +I can not see you . ||| 我 看 不 見 你 . +Two detectives followed the suspect . ||| 两个 侦探 跟着 嫌疑人 . +Who is the boss of this company ? ||| 这家 公司 的 老板 是 谁 ? +You 'd better not have eaten the cake . ||| 你 最好 不要 吃 了 蛋糕 . +Why were you there ? ||| 你 為 什麼 在 那裡 ? +Admission to the museum is thirty dollars . ||| 博物 館入 場費 是 三十 美元 . +I guess I am never going to get married . ||| 我 想 我会 一辈子 单身 . +See you then . ||| 到 時候 見 . +We forgive you . ||| 我們 原諒 你 . +I wonder how many Canadians live in Boston . ||| 我 在 想有 多少 加拿大人 住 在 波士 頓 . +I do not think you need to change . ||| 我 不 認為 你 該 改變 . +Wild animals live in the forest . ||| 野生 動物 住 在 森林 裡 . +If you do not want to do it , you do not have to . ||| 如果 你 不想 的话 也 没 问题 . +I mistook him for his brother . ||| 我 把 他 誤 認為 是 他 的 兄弟 . +The blouse costs twelve libras . ||| 这件 衬衫 卖 十二 英镑 . +These glasses are cool . ||| 這些 眼鏡 真酷 . +Never look a gift horse in the mouth . ||| 獲 人 贈 馬 , 休看 馬口 . +You should be good to your neighbors . ||| 你 应该 对 邻居 好 点 . +I dislike eggs . ||| 我 不 喜欢 鸡蛋 . +It depends on the context . ||| 这 得 看 情况 . +My shoulder hurts . ||| 我 肩膀 痛 . +He continued reading the book . ||| 他 繼續 看書 . +He went to some place or other . ||| 他 去 了 某个 地方 . +I have a lot of problems at the moment . ||| 目前 我 问题 很多 . +He put away his toys . ||| 他 收起 了 他 的 玩具 . +It will be fine this afternoon . ||| 今天下午 天氣 會 很 好 . +Anniversaries are important . ||| 週年 紀念 很 重要 . +How was the fishing ? ||| 釣魚 怎麼樣 ? +Take a taxi to the hotel . ||| 打 的 去 旅馆 吧 . +Tom loves you . ||| 汤姆 爱 你 . +I do not like you . ||| 我 不 喜欢 你 . +Who is your English teacher ? ||| 你 的 英語 老師 是 誰 ? +They never give up . ||| 他们 永不言弃 . +That is no business of yours . ||| 这 不关 你 的 事 . +She does not like to sing sad songs . ||| 她 不 喜欢 唱 悲伤 的 歌 . +This sentence does not make sense . ||| 这 句 话 没意思 . +Sydney is far from here . ||| 悉尼 离 这里 很远 . +Get lost ! ||| 滾 ! +Do not talk to others during the class . ||| 上 課 中 不要 跟 別人 講 話 . +Whose is this bicycle ? ||| 这辆 自行车 是 谁 的 ? +Fantastic ! ||| 很棒 ! +He is not likely to succeed . ||| 他 不 可能 成功 . +My sister and I went to the castle . ||| 我 和 妹妹 去 了 城堡 . +She is a very interesting person . ||| 她 是 一個 非常 有趣 的 人 . +I found what I was looking for . ||| 我 找到 了 我 正在 找 的 東西 . +Beats me . ||| 我 一无所知 . +My album is here . ||| 我 的 相簿 在 這裡 . +Young children are often fascinated by science . ||| 小孩 常常 对 科学 很 有 热情 . +That is not wine . It is grape juice . ||| 這 不是 葡萄酒 , 是 葡萄汁 . +We often eat fish raw in Japan . ||| 我們 在 日本 常常 吃 生魚 . +I did not sleep a wink last night . ||| 我 昨晚 沒睡 . +Put the book on the top shelf . ||| 把 書 放在 最 上面 的 架子 上 . +I did not know about your plan . ||| 我 不 知道 你 的 計畫 . +What does PTA stand for ? ||| PTA 代表 什么 意思 ? +Tom and I sat on a bench in the park and talked while we fed pigeons . ||| 我 和 汤姆 在 公园 的 长椅 上 坐 着 , 一边 聊天 一边 喂 着 鸽子 . +I like L.A. better . ||| 我 更 喜欢 洛杉矶 . +Everyone knew that Tom could speak French well . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +He goes to bed at eight o 'clock . ||| 他 八點 上床 睡覺 . +That is awesome , right ? ||| 很棒 , 不是 吗 ? +Is Tom well ? ||| 汤姆 还好 吧 ? +Ask Tom if you have any doubt . ||| 你 如果 有 疑问 , 就 问 汤姆 吧 . +Tom would like to see you . ||| 汤姆 想见 你 . +She is good at handling children . ||| 她 善 於 處理 兒童 . +Tom will return home tomorrow . ||| 汤姆 明天 回家 . +I have always wanted to learn how to swim . ||| 我 一直 想 学习 如何 游泳 . +I am a student . ||| 我 是 个 学生 . +You do not go to school on Sunday , do you ? ||| 你 週日 不 上學 , 對 嗎 ? +His advice did not help much . ||| 他 的 忠告 没 起到 太 大 的 作用 . +We worked on a farm last summer . ||| 我們 去年 夏天 在 一個 農場 上 工作 . +Running is good for your health . ||| 跑步 對 你 的 健康 有益 . +If you need a dictionary , I can lend you my old one . ||| 如果 你 需要 字典 , 我 就 把 我 旧 的 借给 你 . +Please open the door . ||| 請 把 門 打開 . +I guess it was our bad luck . ||| 我 猜 这 是 我们 的 运气 坏 . +What will actually happen is anyone is guess . ||| 誰 也 說 不準 實際 上 將 會 發生 什麼 事 . +I can not bear to deal with her anymore . ||| 我 再也 忍受 不了 她 了 ! +We agreed to start early the next morning . ||| 我们 同意 了 第二天 一早 开始 . +What is your favorite beverage ? ||| 你 最 喜欢 的 饮料 是 什么 ? +We laughed . ||| 我们 笑 了 . +Prices went up . ||| 物價 上漲 . +Why do that now ? ||| 为什么 现在 做 那个 ? +When was this university founded ? ||| 这 所 大学 是 什么 时候 建 的 ? +I am expecting a letter from her . ||| 我 期待 她 的 來信 . +He likes to watch TV . ||| 他 喜歡 看電視 . +I have already eaten dinner . ||| 我 已經 吃 晚 飯 了 . +Tom is a magician . ||| 汤姆 是 魔法师 . +Tom did not even notice Mary had gone . ||| 湯姆 甚至 沒 注意 到 瑪麗 走 了 . +It is not that far . ||| 不是 那么 远 . +What do you do on Sundays ? ||| 你 星期天 都 做 什麼 ? +Please get me a scrap of paper . ||| 請 給 我 一張 廢紙 . +The light is on . ||| 灯 亮 着 . +She always speaks in a low voice . ||| 她 總是 低聲 地 說 話 . +Tom had no idea that Mary was a serial killer . ||| 汤姆 不 知道 玛丽 是 个 连环 杀手 . +I do not know anything . ||| 我 什么 都 不 知道 . +A bridge was built across the river . ||| 人 們 修 了 一座 橋 過 河 . +What is the name of this river ? ||| 這條 河 叫 什麼 名字 ? +Tom does not like being treated like a child . ||| 汤姆 不 喜欢 被 当作 小孩 . +" How do you feel ? " he asked . ||| “ 你 感觉 怎么样 ? ” 他 问 . +I know that she is Spanish . ||| 我 知道 她 是 西班牙人 . +I have already visited Australia . ||| 我 已经 游览 过 澳大利亚 了 . +I know where he lives . ||| 我 知道 他 住 哪儿 . +I am too tired to walk any further . ||| 我 累得 再也 走 不動 了 . +I have lost a little weight . ||| 我 瘦 了 一點 . +How much will it cost you to go by air ? ||| 坐 飛機 將 花 你 多少 錢 ? +Being rich is not enough . ||| 有钱 还 不够 . +We usually walk to school . ||| 我们 通常 步行 去 学校 . +We gladly accept your offer . ||| 我们 很 高兴 接受 你 的 提议 . +Tom rolled down his window . ||| 湯姆拉 下 了 他 的 窗戶 . +Something is better than nothing . ||| 聊胜于无 . +I will treat you to sushi . ||| 我 會 請 你 吃 壽司 . +The shooting started around noon . ||| 槍 擊 是 在 中午 十二 時 左右 開始 的 . +You can start right now . ||| 你 现在 可以 开始 了 . +She was promoted . ||| 她 晉升 了 . +What shall we eat for breakfast ? ||| 我們 早 飯 吃 什麼 ? +A new branch will be opened in Chicago next month . ||| 新 的 分店 下个月 在 芝加哥 开张 . +Please speak more loudly . ||| 請 說 話 大聲 一點 . +What have you been doing this week ? ||| 你 這個 星期 一直 在 做 什麼 ? +You will have to leave now . ||| 你 现在 必须 离开 . +Tom admitted that he had killed Mary . ||| 汤姆 承认 他 杀死 了 玛丽 . +This is not for you . ||| 這 不是 給 你 的 . +Please say it once more . ||| 請 再 說 一次 . +The door is locked at nine o 'clock . ||| 九點鐘 鎖門 . +A huge monster is coming down the mountain . ||| 从 山上 走来 一只 巨大 的 怪物 . +He is very afraid of his mother . ||| 他 非常 怕 他 的 母親 . +What is your favorite season of the year ? ||| 一年 之中 , 你 最 喜欢 哪个 季节 ? +The rivers were flooded by the heavy rain . ||| 大雨 使 河水 泛滥 . +This is a hospital . ||| 这 是 医院 . +Except for one person , everybody went home . ||| 除了 一 人 , 大家 都 回家 了 . +I think Tom is awake . ||| 我 想 Tom 已经 醒 了 . +She has hundreds of books . ||| 她 有 幾百本 書 . +He got angry . ||| 他 生气 了 . +My father takes a walk every morning . ||| 我 父親 每天 早上 去 散步 . +I have been looking for a new job for a long time . ||| 我 找 工作 已经 很 久 了 . +Many Asians have English as a common language . ||| 許多 亞洲 人 以 英語 作為 共用 的 語言 . +He is afraid of snakes . ||| 他 害怕 蛇 . +Thank you very much for your gift . ||| 非常 谢谢 你 的 礼物 . +No one escaped alive . ||| 沒有 人生 還 . +She says she will call you later . ||| 她 說 她 晚 一點 會 打 電話 給 你 . +She is evidently sick . ||| 她 明顯 生病 了 . +I have nothing in common with her . ||| 我 和 她 沒有 共同 之處 . +There is a map on the wall . ||| 墙上 有 张 地图 . +This is the town where he was born . ||| 这 是 他 出生 的 城市 . +I found this at the risk of my life . ||| 我 冒著 生命 危險 找到 了 這個 . +Tom made me do it . ||| 是 汤姆 让 我 做 的 . +Nothing ever makes him angry . ||| 沒有 什麼 事 曾 讓 他 憤怒 . +When did Tom get here ? ||| 湯姆 是 甚麼 時候 來到 這裡 的 ? +Tom died three months ago . ||| 湯姆 三個 月前 死 了 . +I think it is unlikely Tom will get elected . ||| 我 觉得 汤姆 不太可能 会 当选 . +Collect your thoughts before you begin your work . ||| 工作 之前 先 收好 思绪 . +Cross out the incorrect words . ||| 把 错误 的 单词 划掉 . +I think his opinion is very important . ||| 我 認為 他 的 意見 非常 重要 . +The fire has gone out . ||| 火 已經 灭 了 . +Judging from the look of the sky , it may rain this afternoon . ||| 從 天色 上 判斷 , 今天下午 可能 會 下雨 . +We sometimes swim in the lake . ||| 我們 偶爾 在 湖裡 游泳 . +You are suitable for the job . ||| 你 很 適合 這份 工作 . +She is asking for the impossible . ||| 她 在 无理取闹 . +Tom seems to be very happy . ||| 汤姆 看起来 非常 开心 . +The sky is clear and full of stars . ||| 天空 晴朗 , 布满 了 星辰 . +My whole body is sore . ||| 我 全身 酸痛 . +Who do you usually go to the movies with ? ||| 你 一般 和 誰 去 看 電影 ? +Do you have anything to eat ? ||| 你 有 东西 吃 吗 ? +Let your uncle think about it . ||| 讓 你 叔叔 想一想 . +He has a wife and two young children to provide for . ||| 他 有 一个 妻子 和 两个 孩子 要 养活 . +I do not particularly like her . ||| 我 特别 不 喜欢 她 . +I am surprised that your family has a Japanese car . ||| 我 很 惊讶 , 你家 居然 有 辆 日本 车 . +Who gave them to you ? ||| 谁给了 你 这些 东西 ? +Please go to the bank . ||| 請去 銀行 . +Open the box . ||| 打開 箱子 . +Wolves scare me . ||| 狼 嚇 到 了 我 . +Has he finished his homework yet ? ||| 他 完成 他 的 功課 了 嗎 ? +The French Revolution began in 1789 . ||| 法国 大革命 1789 年 开始 . +She mistook me for my brother . ||| 她 把 我 誤 認為 是 我 的 兄弟 . +Tom is a native French speaker . ||| 汤姆 是 法语 母语 者 . +She spends her leisure time making dolls . ||| 她 利用 空闲 时间 做 布娃娃 . +You may make use of his library . ||| 你 可以 利用 他 的 图书馆 . +Everything is bad . ||| 一切 都 很 糟糕 . +One is new , and the other is old . ||| 一个 是 新 的 , 另 一个 是 旧 的 . +This is the biggest car in the world . ||| 这 是 世界 上 最大 的 车 . +You do not have to go to the party unless you want to . ||| 除非 你 想 去 , 否則 你 不必 去 這個 派 對 . +Tom will not stop . ||| 湯姆 不 會 停 . +She sat on the bench . ||| 她 坐在 長椅 上 . +I will definitely vote for Tom . ||| 我 一定 要 給 湯姆 投票 . +Tom is a politician . ||| 汤姆 是 位 政治家 . +He is not from Hokkaido . ||| 他 不是 來 自 北海道 . +I think you have done this before . ||| 我 想 你 以前 做 过 这个 . +How did you make this soup ? ||| 这 汤 怎么 做 的 ? +You 'd better not go out . ||| 你 最好 不要 出門 . +I have to stop procrastinating . ||| 我 不能 再 拖延 了 . +Tom and Mary spoke on the phone . ||| 湯姆 和 瑪麗 在 電話 裡 交流 . +I want to go with you . ||| 我 想 和 你 一起 去 . +Clean your room . ||| 清 掃 你 的 房間 . +I called him up yesterday . ||| 我 昨天 打 電話 給 他 . +Where did you have your picture taken ? ||| 你 从 哪里 照 的 相 ? +Do not touch it . ||| 別 碰 它 . +I intend to go to the barbershop . ||| 我 打算 去 理 髮 店 . +Better late than never . ||| 迟到 总 比 不到 好 . +I really like puppies . ||| 我 非常 喜欢 小狗 . +Please speak as slowly as possible . ||| 请 尽量 慢点 说 . +That is a strange sentence . ||| 那 是 一個 奇怪 的 句子 . +Could you send it to this address ? ||| 你 能 把 它 送到 這個 地址 嗎 ? +Tom is not as innocent as he seems . ||| 汤姆 不 像 他 看上去 的 那样 无辜 . +Thank you , I have had enough . ||| 謝謝 你 , 我 吃 飽 了 . +It is up to you to decide whether we will go there or not . ||| 该 由 你 来 决定 我们 去不去 那儿 . +He complained about the noise . ||| 他 抱怨 這個 噪音 . +Can we talk in private ? ||| 我们 能 私下 谈谈 吗 ? +Can you please give me something to do ? ||| 请问 你 能 给 我 点 事 做 吗 ? +That only happens occasionally . ||| 这 只是 偶发事件 . +We toured all the major cities . ||| 我们 游览 了 所有 主要 城市 . +My mother happened to be there when the fire broke out . ||| 着火 的 时候 我 妈妈 恰好 在 那 . +Today is even busier than normal . ||| 今天 比 平时 还 忙 . +She and I are brother and sister . ||| 她 和 我 是 姐弟 . +Do you want to know ? ||| 你 想 知道 嗎 ? +He is always at home on Sundays . ||| 他 星期日 總是 在家 裡 . +Were they serious ? ||| 他们 是 认真 的 吗 ? +I just wish we could leave this horrible place . ||| 我 只是 希望 我们 能 离开 这个 可怕 的 地方 . +One of my pleasures is watching TV . ||| 我 的 一個 樂趣 是 看 電視 . +I can not believe Tom is really planning to do this . ||| 我 无法 相信 汤姆 真的 打算 做 这 事儿 . +I find it hard to get up early on cold mornings . ||| 我 覺得 在 寒冷 的 早晨 很 難 早起 . +My baggage is missing . ||| 我 的 行李 丢 了 . +Tom died recently . ||| 汤姆 最近 死 了 . +Let is play baseball . ||| 我們 去 打 棒球 吧 . +I am here , so do you want to chat ? ||| 我 在 这 , 你 想 聊天 吗 ? +Sociopaths rarely display remorse or feelings of guilt for their crimes . ||| 反 社会 者 极少 为 他们 的 罪行 显露 懊悔 或 有 罪恶 的 感觉 . +Have any letters arrived for me ? ||| 到 的 有 我 的 信 吗 ? +What is on the desk ? ||| 桌子 上 有 什么 ? +Get lost . ||| 滚 . +So , what happened this time ? ||| 那么 , 这次 发生 了 什么 ? +Finally , he attained his goal . ||| 他 终于 达到 了 自己 的 目标 . +Both Tom and Mary can not speak French . ||| 汤姆 和玛丽 都 不 说 法语 . +That car is really expensive . ||| 那 辆 汽车 真的 很贵 . +Be careful on your way back home . ||| 回家 的 路上 注意安全 . +Tom frowned . ||| 湯姆 皺著 眉頭 . +Is it large enough ? ||| 這麼 大 的 夠用 嗎 ? +We will take part in the marathon . ||| 我们 将 参加 马拉松 . +They were left speechless . ||| 他们 惊 得 目瞪口呆 . +We did not get an apology . ||| 我们 没有 收到 过 道歉 . +I hope so . ||| 我 希望 如此 . +He came all the way from Chicago . ||| 他 從 芝加哥 遠 道 而 來 了 . +Nowadays nobody believes in ghosts . ||| 現在 沒 有人 相信 有鬼 . +Please allow me to go . ||| 請 允許 我 去 . +I feel much better today . ||| 我 今天 感觉 好多 了 . +Men should work . ||| 男人 应该 工作 . +Are you a student of a private high school ? ||| 你 在 私立高中 读书 吗 ? +I really like my coworkers . ||| 我 确实 喜欢 我 的 同事 . +The woman glared at us . ||| 女人 瞪 了 我們 . +Tom certainly is a good teacher . ||| 湯姆 確實 是 位 好 老師 . +Tom was embarrassed to have to ask for help . ||| 汤姆 很 不好意思 去求 帮忙 . +Tom was my first boyfriend . ||| 汤姆 是 我 第一个 男朋友 . +Tom has not called Mary yet . ||| 湯姆 還 沒 打 給 瑪莉 . +This whisky is too strong . ||| 这种 威士忌 太烈 了 . +I could tell Tom the truth , I suppose . ||| 我 覺得 我 能 告訴 湯姆 真相 . +That is too bad . ||| 那 太 糟糕 了 . +She is not always happy . ||| 她 不 總是 高興 . +You look very tired . ||| 你 看上去 非常 累 . +This doghouse was built by Tom . ||| 这 狗 屋 是 汤姆 建 的 . +Could we go somewhere and talk ? ||| 我们 能 去 别的 地方 谈谈 吗 ? +His wife gave birth to twin boys . ||| 他 的 妻子 生下 了 一對 雙 胞胎 男孩 . +Tom is not a very nice guy . ||| 湯姆 不是 個 多 好 的 人 . +He is a person who never cuts corners . ||| 他 是 个 绝对 不会 偷工减料 的 人 . +I want the other one . ||| 我 想要 另 一個 . +What is the weather like ? ||| 天氣 怎麼樣 ? +The novel ends with the heroine is death . ||| 小说 以 女主角 的 死 告终 . +She left home ten minutes ago . ||| 她 十分 鐘 前 離家 . +Life does not always go the way we want it to . ||| 生活 并 不 总是 如 我们 所愿 . +I do not have a dog . ||| 我 没有 狗 . +I understand how you feel . ||| 我 明白 你 的 感受 . +My father is out . ||| 我 父亲 出门 了 . +You have been deceived . ||| 你 被 騙 了 . +Could you stop saying that ? ||| 你 能 不 说 那个 了 吗 ? +I want to just focus on the positive . ||| 我 只 想 注意 积极 方面 . +Do I need to transfer ? ||| 我 需要 换乘 吗 ? +I would like to see it . ||| 我 想 看看 它 . +What do you call this bird ? ||| 這 隻 鳥 叫作 什麼 ? +This is the dictionary I use every day . ||| 这 是 我 每天 都用 的 字典 . +Put on your good shoes . ||| 穿 上 你 的 好鞋 . +I have brothers . ||| 我 有 兄弟 . +Place it wherever you like . ||| 你 想 放在 哪裡 就 放在 哪裡 . +I continued working . ||| 我 繼續 工作 . +Tom is my brother . ||| Tom 是 我 哥哥 . +Environmental pollution is causing abnormal weather conditions . ||| 環境 污染 正 造成 異常 的 天氣 情況 . +Can I take pictures here ? ||| 我 能 在 这里 拍照 吗 ? +The bus is full . You will have to wait for the next one . ||| 這 班 公車 客滿 了 . 你 必須 等下 一班 . +I saw my reflection in the window . ||| 我 在 窗户 上 看見 了 我 的 映像 . +Jazz fusion is a combination of rock and jazz . ||| 融合 爵士 是 搖滾樂 與 爵士 樂 的 融合 . +I will show you around the town . ||| 我 會 帶 你 逛逛 這個 鎮 . +I can not stand this noise . ||| 我 不能 忍受 這個 噪音 . +Tears rolled down my cheeks . ||| 泪水 沿着 我 的 面颊 流 了 下来 . +Broccoli is one of the healthiest vegetables . ||| 西藍花 是 最 健康 的 蔬菜 之一 . +Feel free to ask any questions . ||| 隨時 問 任何 問題 都 可以 . +No one lives in this building . ||| 没有 人 住 在 这栋 楼里 . +Is death the only way out ? ||| 死 是 唯一 的 解脱 吗 ? +That is the man whose kids are so nice . ||| 那个 男人 , 就是 他 的 孩子 很 友好 的 那个 . +I can not do without her help . ||| 沒有 她 的 幫助 我 做 不到 . +I have always distrusted Tom . ||| 我 一直 不 信任 湯姆 . +He studies contemporary literature . ||| 他 学习 现代文学 . +I ate lunch in a hurry . ||| 我 匆忙 地 吃 了 午飯 . +We are here in the name of Jesus Christ and King Charles . ||| 我們 這裡 以 耶穌 基督 和 查理斯 國王 之 名 . +He does not seem to be an American . ||| 他 似乎 不是 美國 人 . +Tom had a drink in his hand . ||| 汤姆 手里 拿 着 饮料 . +My grandfather died when I was a boy . ||| 當 我 是 個 小男孩 的 時候 , 我 的 祖父 就 過世 了 . +She is a doctor . ||| 她 是 医生 . +We are hiding . ||| 我们 在 藏 着 . +The population of Japan is larger than that of New Zealand . ||| 日本 的 人口 比 新西兰 多 . +He gave me a nice Christmas present . ||| 他 给 了 我 一个 很棒 的 圣诞礼物 . +My TV has quit working . ||| 我 的 電視 已經 壞 了 . +I take a bath every night . ||| 我 每晚 洗澡 . +About how much will I have to pay for all the treatments ? ||| 所有 的 医药费 我 大概 要 付 多少 ? +Is there anything you want that you do not have ? ||| 有 什么 你 想要 但是 没有 的 东西 吗 ? +He can also speak Russian . ||| 他 也 會 說 俄語 . +He shaves every day . ||| 他 每天 刮 鬍 子 . +That is flammable . ||| 那 是 可燃 的 . +My older sister often drinks tea with milk . ||| 我 的 姐姐 经常 就 着 牛奶 喝茶 . +Can I ask you a question ? ||| 我 可以 問 您 一個 問題 嗎 ? +I am not as optimistic as you are . ||| 我 没有 你 那么 乐观 . +I went to the hospital to have my eyes tested . ||| 我 到 醫院 去 檢查 了 眼睛 . +Nothing seems to grow in this soil . ||| 這個 土壤 似乎 長 不出 任何 東西來 . +I know all your secrets . ||| 我 知道 你 所有 的 秘密 . +You are really brave , are not you ? ||| 你 很 勇敢 , 不是 嗎 ? +You run . ||| 你 跑 . +I like playing the piano . ||| 我 喜欢 弹钢琴 . +He worked too hard , and became sick . ||| 他 工作 得 太 多 , 病倒 了 . +I wish he were here now . ||| 我 希望 他 現在 在 這裡 . +Nothing is as important as peace . ||| 没有 什么 和 和平 一样 重要 . +Over @-@ sleeping is no excuse for being late . ||| 睡 过头 不是 迟到 的 理由 . +Let is leave as soon as he arrives . ||| 他 一 到 , 咱們 就 走 了 吧 . +Tom is watching a video . ||| 湯姆 在 看 影片 . +He earns three times more than me . ||| 他 赚 的 比 我 多三倍 . +These questions are easy to answer . ||| 這些 問題 太 容易 回答 了 . +I feel sad . ||| 我 很 难过 . +He is good at baseball . ||| 他 垒球 打 得 很 好 . +This is what I want . ||| 这 就是 我 想要 的 . +Tom was very scared . ||| 湯姆 當時 非常 害怕 . +You 'd better consult the doctor . ||| 你 最好 请教 一下 医生 . +He used to be a nice boy . ||| 他 以前 是 個 好 男孩 . +I am almost done . ||| 我 差不多 完成 了 . +Are you sure that Tom is in Australia now ? ||| 你 确定 汤姆 现在 在 澳洲 吗 ? +They were afraid of the big dog . ||| 他們 怕 這 隻 大 狗 . +I was amazed at his courage . ||| 我 對 他 的 勇氣 感到 驚訝 . +He is a good person . ||| 他 是 個 好人 . +We are very skeptical . ||| 我们 非常 怀疑 . +Tomorrow is my birthday . ||| 明天 是 我 生日 . +Would you care for another glass of beer ? ||| 再 来 一杯 啤酒 怎么样 ? +Do not make stupid jokes . ||| 开 什么 国际 玩笑 . +It is not a watch . ||| 這 不是 手 錶 . +She bought a toy for her child . ||| 她 買 了 一個 玩具 給 她 的 孩子 . +People can not live forever . ||| 人 无法 长生不死 . +I can not wait for you . ||| 我 不能 等 你 . +Let them have their fun . ||| 讓 他們 鬧 去 . +I am making a movie . ||| 我 在 製 作 電 影 . +That is a nice coat . ||| 那 是 一件 不錯 的 大衣 . +Tom was unsatisfied with the results . ||| 汤姆 对 结果 不满 . +I really do not need any help . ||| 我 真的 不 需要 幫助 . +Keep this lesson in mind . ||| 记好 了 这 教训 . +The barometer is falling . It is going to rain . ||| 气压计 下降 了 - 要 下雨 了 . +I was worried about his health . ||| 我 担心 他 的 健康 . +You should make better use of your free time . ||| 你 要 更好 地 利用 闲暇 时间 . +The program starts at nine o 'clock . ||| 這個 節目 九點 開始 . +You made a mistake . ||| 你 犯 了 个 错误 . +You seem very nervous . ||| 你 看起来 很 紧张 . +I do not think this is Tom is umbrella . ||| 我 認為 這 不是 湯姆 的 傘 . +As long as you are here , we might as well begin . ||| 既然 你 在 這裡 , 那 我們 就 開始 吧 . +We enjoyed watching the fireworks on a bridge last summer . ||| 去年 夏天 , 我们 在 桥上 看 焰火 看 得 很 过瘾 . +She does not seem to be an American . ||| 她 似乎 不是 美國 人 . +He told us to keep quiet . ||| 他 告訴 我們 要 保持 安靜 . +That is a good idea ! ||| 真是 个 好 主意 ! +We got on the bus there . ||| 我們 在 那裡 上 了 公共 汽車 . +You and I have something in common . ||| 你 和 我 有 一些 共同点 . +Is this for sale ? ||| 这 是 要卖 的 东西 吗 ? +I can speak Chinese , but I can not read Chinese . ||| 我 會 說 中文 , 但是 我 不 會 讀 中文 . +He is not here because he is ill . ||| 他 不 在 这儿 , 因为 他 病 了 . +I am waiting for you to help me . ||| 我 等 着 你 帮 我 . +What is the worst @-@ case scenario ? ||| 最 坏 的 情境 是 什么 ? +He threw a stone at the dog . ||| 他 朝着 狗 扔 了 块 石头 . +She was accepted by Harvard . ||| 她 被 哈佛 錄取 了 . +I wonder whether or not Tom can speak French . ||| 我 不 知道 湯姆會 不 會 說 法語 . +I treated her as my own daughter . ||| 我 把 她 當成 是 我 自己 的 女兒 一樣 對待 . +That toy is made of wood . ||| 這個 玩具 是 用 木頭 做 的 . +He will be at home tomorrow . ||| 他 明天 会 在家 . +Tom used to eat a lot of junk food . ||| 汤姆 以前 经常 吃 很多 垃圾 食品 . +You have to study Japanese harder . ||| 你 必須 更 努力 學習 日 語 . +Take your time . ||| 慢慢来 . +I hurried in order to catch the first train . ||| 我 匆匆忙忙 , 为的是 能 赶上 第一班 火车 . +You have to leave home at six . ||| 你 必須 在 六點 鐘 時 從 家中 出發 . +Tom is late as usual . ||| 汤姆 像 往常 一样 来晚 了 +He is good at dealing with children . ||| 他 擅長 應付 小孩子 . +I cannot bring myself to do such a thing . ||| 我 不能 让 自己 做 这样 的 事 . +Please be careful when crossing the street . ||| 过 马路 时 请 小心 . +It is extremely hot and humid in Bali in December . ||| 12 月份 巴厘岛 极其 炎热 和 潮湿 . +I subscribe to two newspapers . ||| 我 訂閱 了 兩份 報紙 . +How many people know about us ? ||| 有 多少 人 知道 我們 ? +A beautiful sunset , is not it ? ||| 美麗 的 夕陽 , 不是 嗎 ? +This is difficult to believe . ||| 這 讓 人 難以 置信 . +I wonder what will happen . ||| 我 不 知道 會 發生 甚麼 . +He is in the kitchen . ||| 他 在 厨房 . +There is a letter for you . ||| 你 有 一封信 . +Could you lend me the book ? ||| 你 能 借 我 这 本书 吗 ? +Tom studies at Harvard . ||| 汤姆 在 哈佛 学习 . +Talk is cheap . ||| 說 得 簡單 . +I have a bad toothache . ||| 我 牙痛 得 厲害 . +I know what you mean . ||| 我 知道 你 的 意思 . +The meal satisfied his hunger . ||| 這 頓 飯 讓 他 充 饑 解 餓 了 . +Only Takeuchi did not accept the invitation . ||| 只有 竹 內 沒有 接受 邀請 . +We are confident of victory . ||| 我們 有 信心 獲勝 . +When did you learn how to swim ? ||| 你 什么 时候 学会 游泳 的 ? +I heard him coming downstairs . ||| 我 聽 見 他 下樓 的 聲音 . +She never wears green . ||| 她 從來 不 穿 綠色 的 衣服 . +I was not drunk . ||| 我 沒醉 . +We will be here for three more days . ||| 我們 還 要 在 這里 待 三天 . +Do not touch this with your dirty hands . ||| 别 用 你 的 脏手 碰 这个 . +Actions speak louder than words . ||| 坐 而言 不如 起 而 行 . +I do not feel like studying . ||| 我 没有 强烈 的 欲望 去 学习 . +I am not guilty of anything . ||| 我 没有 对 任何 事 感到 有罪 . +She is sitting on the bench . ||| 她 坐在 長椅 上 . +Tom has been learning French for a few years . ||| 汤姆 学 了 几年 法语 . +I visited him a week ago today . ||| 我 在 一周 前 的 今天 拜訪 了 他 . +He has lost his job . ||| 他 已經 失去 了 他 的 工作 . +Everything went well . ||| 一切 都 很 顺利 . +I do not know if I can do it . ||| 我 不 知道 我 能 不能 做 . +She visits us every other day . ||| 她 每 兩天 探訪 我們 . +How did you draw this picture ? ||| 你 怎么 画 这 幅画 ? +I thought you said you did not see anything . ||| 我 記得 你 說 你 甚麼 也 沒 看見 . +You 'd better relax a bit . ||| 你 最好 休息 一下 . +Is that our problem ? ||| 那 是 我們 的 問題 嗎 ? +I was not implying anything . ||| 我 沒有 暗示 甚麼 . +Tom and Mary have a daughter and a son . ||| Tom 和 Mary 有個 女兒 和 兒子 . +You like elephants . ||| 你 喜欢 大象 . +Tom is writing a letter to his best friend . ||| 汤姆 正 给 他 的 好友 写信 . +He must have said so without giving it much thought . ||| 他 一定 没有 多 考虑 就 说 了 . +Love does not exist . ||| 愛 不 存在 . +I still can not believe you are married . ||| 我 仍然 無法 相信 你 結婚 了 . +I have not watched that video yet . ||| 我 还 没 看过 那段 视频 . +I can not see anything without my glasses . ||| 我 没 带 眼镜 就 什么 都 看不到 . +I will go on ahead . ||| 我 會 繼續 前 進 . +He painted a dog . ||| 他 畫 了一 隻 狗 . +A couple of flights were delayed on account of the earthquake . ||| 一些 航班 由 於 地震 被 延誤 了 . +I am a college student . ||| 我 是 个 大学生 . +You are the one who must decide . ||| 你 是 要 做 決定 的 人 . +I saw Tom having an argument with Mary . ||| 我 见 汤姆 跟 玛丽 争论 . +I do not know if he can come tonight . ||| 我 不 知道 他 今晚 會 不 會 來 . +That is logical . ||| 那 符合 逻辑 . +Mary , I love you . ||| 玛丽 , 我 喜欢 你 ! +I have nothing to do with the affair . ||| 我 跟 這件 事 無關 . +She is wearing a white dress today . ||| 她 今天 穿著 白色 的 衣服 . +Tom said he was not sure what Mary wanted to do . ||| 汤姆 说 他 不 确定 玛丽 想 做 什么 . +Shut the door , please . ||| 請關 上門 . +I can not predict what will happen . ||| 我 不能 預言會 發生 甚麼 . +If anything should happen , please let me know . ||| 如果 发生 了 什么 , 请 让 我 知道 . +Which country are you from ? ||| 你 是从 哪个 国家 来 的 ? +I wish that I could speak French better . ||| 我 希望 我 能 说 法语 说 得 更好 . +Get me some towels from the bathroom . ||| 给 我 从 浴室 拿 几条 毛巾 来 . +It is really bad for your eyes . ||| 它 对 你 的 眼睛 有害 . +I like dogs and my sister likes cats . ||| 我 喜欢 狗 , 我 妹妹 喜欢 猫 . +She must be angry with me . ||| 她 一定 在 生 我 的 氣 . +Are you two ready ? ||| 你们 两个 人 都 准备 好了吗 ? +May I eat something ? ||| 我 可以 吃 點 什麼 嗎 ? +This bridge was built two years ago . ||| 這 座 橋 是 在 兩 年前 建造 的 . +He drove the truck to Dallas . ||| 他 開 卡 車 到 達 拉斯 . +She identified him as the murderer . ||| 她 確認 他 是 殺 人 兇 手 . +The whole family was sick in bed . ||| 全家 都 病倒 了 . +Tom is obese , is not he ? ||| 汤姆 很胖 , 是 吧 ? +I am coming . ||| 我 來 了 . +Everyone will die . ||| 人 固有 一 死 . +Do not worry about me . ||| 不要 擔心 我 . +He has gone to Britain . ||| 他 已经 去 了 英国 . +This is my bedroom . ||| 這 是 我 的 臥室 . +You must be careful not to make him angry . ||| 你 要 小心 別 惹 他 生氣 . +Stick a stamp on the envelope . ||| 把 郵票 貼 在 信封 上 . +She asked a very good question . ||| 她 問 了 一個 非常 好 的 問題 . +Eat a lot of vegetables . ||| 多 吃 点 蔬菜 . +You have cute eyes . ||| 你 有 一双 很 可爱 的 眼睛 . +The baby tore up a ten @-@ dollar bill . ||| 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Where is the dining room ? ||| 餐厅 在 哪里 ? +Tom got ready for bed . ||| 湯姆 準備 睡覺 . +You need to leave . ||| 你 必須 離開 . +What he says is total nonsense . ||| 他 说 的话 根本 毫无意义 . +Tom put his wallet on the table . ||| 汤姆 把 钱包 放在 了 桌子 上 . +How many students are there in your school ? ||| 你们 学校 有 多少 学生 ? +I am tired of him bawling me out . ||| 我 厭煩 了 他 對 我 說 教 . +What do you have for breakfast ? ||| 你 早餐 吃 什么 ? +She has a rose in her hand . ||| 她 手里 拿 着 一 朵玫瑰 . +You may go anywhere . ||| 您 可以 随便 去 哪儿 . +I bought a book online . ||| 我 在 網上 買 了 一本 書 . +He wanted to get his shirts washed . ||| 他 想要 把 他 的 襯衫 洗 乾 淨 . +What do you need this money for ? ||| 你 需要 這些 錢 做 什麼 ? +We think that he is honest . ||| 我們 認為 他 誠實 . +The TV remote control is under the couch . ||| 电视 遥控器 在 沙发 下面 . +It is great . ||| 真是 太好了 . +I have a sore throat . ||| 我 喉嚨 痛 . +Tom owes us a favor . ||| 汤姆 欠 我们 个情 . +You are going to be a mommy . ||| 你 要 當 媽 了 . +I am thinking about that matter . ||| 我 在 想 那個 問題 . +It is not a watch . ||| 這 不是 手 錶 . +It will be finished in a day or two . ||| 一兩天 內 就 能 結束 . +We have our own problems to solve . ||| 我们 有 自己 的 问题 要 解决 . +Why are you so mad ? ||| 你 為 什麼 這麼 生氣 ? +I was about to go look for you . ||| 我 剛才 正要 找 你 . +My mother was up late last night . ||| 我 母亲 昨天 很晚 还 醒 着 . +Please give me your permanent address . ||| 請 給 我 你 的 永久 地址 . +It is two miles from here to the park . ||| 從 這裡 到 公園 距離 兩 英里 . +Others are less optimistic . ||| 其他人 不 那么 乐观 . +She married him for his money . ||| 她 为了 他 的 钱 嫁给 了 他 . +It took me three hours to do my homework . ||| 我 花 了 3 小时 做作业 . +Will you please show me the way ? ||| 請 您 給 我 指 一 指路 好 嗎 ? +Ask her when she will come back . ||| 问问 她 什么 时候 回来 . +I like to run . ||| 我 喜欢 跑步 . +She showed us a beautiful hat . ||| 她 給 我們 看 了 一頂 漂亮 的 帽子 . +Tom is hair was disheveled . ||| 湯姆頭 發 蓬亂 . +Can you drive a manual transmission ? ||| 你 會 開手 排車 嗎 ? +Tom had never seen Mary so busy . ||| 汤姆 从没 见 过 玛丽 这么 忙 . +I am not so sure Tom is wrong . ||| 我 不 太 確定 湯姆 錯 了 . +He graduated from Tokyo University . ||| 他 畢業 於 東京 大學 . +Have a nice day . ||| 祝 你 一天 过 得 愉快 . +Do not worry about others . ||| 不用 担心 其他人 . +I am single . ||| 我 单身 . +The meeting lasted two hours . ||| 這個 會議 持續 了 兩個 小 時 . +There were lots of people . ||| 有 很多 人 . +I like Tom , too . ||| 我 也 喜歡 湯姆 . +I like to listen to the radio . ||| 我 喜歡 聽 廣播 . +Ten minutes later , our car ran out of gas . ||| 我们 的 车 再 过 十分钟 就 没油 了 . +This medicine will give you some relief . ||| 这 药会 让 你 舒服些 . +What will you give Tom ? ||| 你 会 给 汤姆 什么 ? +We have had this discussion before . ||| 我們 以前 討論 過 . +What is the name of this tune ? ||| 這 首 曲子 叫 什麼 名字 ? +The books here are mine . ||| 這兒 的 書 是 我 的 . +Be realistic ! ||| 现实 点 ! +I invited my neighbor to breakfast . ||| 我 請 我 的 鄰居 來 吃 早 飯 . +You are a good person . ||| 你 是 一個 好人 . +We have to get through this . ||| 我们 要 了结 此事 . +Tom did not doubt that there would be a lot of people there . ||| 汤姆 确定 那里 会 有 很多 人 . +Are you angry at Tom ? ||| 你 在 生 汤姆 的 气 吗 ? +I do not fear death . ||| 我 不怕死 . +She should have been more careful . ||| 她 本來 應該 更 小心 的 . +Fish is cheap today . ||| 今天 魚 很 便宜 . +Tom was not surprised to see me . ||| 汤姆 见到 我 并 没有 惊讶 . +I think it is a really good thing . ||| 我 認為 它 真是 好事 . +I wish I were taller . ||| 我 希望 我 比較 高 . +He put a hand gently on her shoulder . ||| 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +Tom did not try to hide the truth . ||| 湯姆 並 沒有 試著 要 隱瞞 實情 . +I thought he was my brother . ||| 我 以为 他 是 我 弟弟 . +It is just big enough for Tom . ||| 这 尽够 汤姆 的 . +Tom is a rabbi . ||| 汤姆 是 个 拉比 . +I want some cake . ||| 我 想要 点 蛋糕 . +I used to play tennis . ||| 我 以前 打网球 . +Eating raw eggs could be bad for you . ||| 吃 生蛋 可能 是 危險 的 . +We can deliver it this evening . ||| 我們 今天 晚上 可以 運送 它 . +Why should I care what you think ? ||| 為 什麼 我 應該 在乎 你 怎麼 想 ? +Were you busy ? ||| 您 当时 在 忙 吗 ? +He sometimes comes to see me . ||| 他 有时 会 来看 我 . +Tom did not want to work in Boston . ||| 汤姆 不想 在 波士顿 工作 . +Iceland used to belong to Denmark . ||| 冰島 以前 屬 於丹麥 . +This man is not reliable . ||| 这个 人 靠不住 的 . +According to my calculation , she should be in India by now . ||| 根據 我 的 估計 , 她 現在 應該 在 印度 了 . +It is none of your business . ||| 這 不關 你 的 事 . +This is a very hard mattress . ||| 這個 床墊 很 硬 . +The jet landed at Tokyo . ||| 這 架 客機 降落 在 東京 了 . +We talked over the plan with him . ||| 我們 和 他 談 了 這個 計劃 . +This is the house where she used to live . ||| 这 是 她 曾经 住 过 的 房子 . +I know him . ||| 我 認識 他 . +Tom and Mary are studying together in the library . ||| 湯姆 和 瑪麗 在 圖書館 一起 學習 . +Whose bike is this ? ||| 这辆 自行车 是 谁 的 ? +I am delighted to see you . ||| 我 很 高兴 见到 你 . +He behaved as if he were crazy . ||| 他 表现 的 像 个 疯子 . +Lake Baikal in Russia is the deepest lake in the world . ||| 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +You or I will be chosen . ||| 你 或者 我会 被 选中 . +I know why Tom is studying French . ||| 我 知道 為 甚麼 湯姆學法語 . +The rear gate was open . ||| 后门 曾 开 着 . +Do you think that he is equal to the task ? ||| 你 认为 他 能够 胜任 这个 任务 吗 ? +She said that she was happy . ||| 她 说 了 她 很 幸福 . +The pain has started to ease now . ||| 痛 开始 减轻 了 . +I met her late in the evening . ||| 我 在 深夜 遇見 了 她 . +Can we go now , please ? ||| 请问 我们 现在 能 走 吗 ? +We got together in the park . ||| 我們 在 公園 裡 聚在一起 . +They tied the thief to the tree . ||| 他们 把 小偷 绑到 了 树上 . +Let is start with Lesson Ten . ||| 我们 从 第十课 开始 吧 . +It is my birthday soon . ||| 我 的 生日 就 快 到 了 . +They became close friends . ||| 他們 成 了 密友 . +I was late to school . ||| 我 上学 迟到 了 . +The bicycle under the tree is mine . ||| 那 輛 在 樹下 的 自行 車 是 我 的 . +His teeth are yellow from smoking too much . ||| 他 的 牙齿 被 烟熏 黄 了 . +Tom tried to catch up with Mary , but he could not . ||| 汤姆 试图 去 追上 玛丽 , 但是 他 没 成功 . +Was his story true ? ||| 他 的 故事 是 真的 吗 ? +Do you know how to do this ? ||| 你 知道 怎么 做 吗 ? +Where are we going to meet ? ||| 我们 在 哪里 见面 ? +It is over there . ||| 在 那里 . +Tom has absolutely no enemies . ||| 汤姆 绝 没有 敌人 . +Give me some paper to write on . ||| 給 我 一些 紙 來 寫 字 . +He is no longer a boy . ||| 他 不再 是 个 男孩 . +Is Tom eating ? ||| 汤姆 在 吃饭 吗 ? +I was not yelling . ||| 我 沒有 在 吼 . +I need an assistant who speaks French . ||| 我 需要 一個 會 說 法語 的 助理 . +I am such an unlucky guy . ||| 我 真是 不 走运 的 家伙 . +The Colombian government demanded more money . ||| 哥伦比亚政府 要 了 更 多 的 钱 . +Everyone knows that Tom is French is good . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +I have a lot of friends living in Boston . ||| 我 有 很多 朋友 住 在 波士顿 . +For here , or to go ? ||| 內用 還 是 外帶 ? +You should set a good example for your children . ||| 你 应该 给 你 的 孩子 们 树立 好榜样 . +There is an orange on the table . ||| 桌上 有 一只 橙子 . +He did nothing but cry . ||| 他 只是 哭 . +She gave him the car . ||| 她 给 了 他 车 . +Bring your student ID card . ||| 帶上 你 的 學生卡 . +I do not like to swim in the pool . ||| 我 不 喜歡 在 泳池 裡 游泳 . +Tom did not know that what he 'd done was against the rules . ||| 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +My grandfather is photograph is on the wall . ||| 我 祖父 的 照片 在 墙上 挂 着 . +He showed me his photograph album . ||| 他 給 我 看 了 他 的 影集 . +Without water , we cannot exist . ||| 没有 水 , 我们 无法 生存 . +The city was soon occupied by the soldiers . ||| 很快 , 城市 就 被 士兵 占领 了 . +I can not find anything wrong with his theory . ||| 我 在 他 的 理論 中 找 不到 任何 問題 . +The train came on time . ||| 火车 准时 到 了 . +Tom passed away on October 20th , 2013 . ||| 汤姆 逝世 于 2013 年 10 月 20 日 . +You do not need to work on Sundays . ||| 星期天 的 時候 , 你 不用 工作 . +I was impressed with her work . ||| 她 的 作品 給 我 留下 了 深刻印象 . +What would you like to be in the future ? ||| 你 以后 想 当 什么 呢 ? +I am on a diet . ||| 我 在 節食 . +I love passion fruit juice . ||| 我 愛 百香果汁 . +He is very angry . ||| 他 非常 生气 . +I am just a regular office worker . ||| 我 只是 一個 普通 的 上班族 . +He is married with two children . ||| 他 已婚 並 育有 兩個 孩子 . +Please answer all the questions . ||| 請 回答 所有 問題 . +I really have to be going . ||| 我 真的 得 走 了 . +I can open the window . ||| 我 可以 打開 這 扇 窗 . +I want you to work harder . ||| 我 希望 你 更加 努力 地 工作 . +This is your key . ||| 這 是 您 的 鑰匙 . +I wonder if they will get divorced . ||| 我 不 知道 他們 是否 會 離婚 . +Tom does not seem to be a Canadian . ||| 湯姆 看來 不是 加拿大人 . +How do you make your money ? ||| 你 怎麼 賺 錢 ? +" Do you think he will come ? " " I hope not . " ||| " 你 認為 他 會 來 嗎 ? " " 我 希望 不 會 . " +Is there any chance that he will resign ? ||| 他 有 可能 辭職 嗎 ? +Do not pay any attention to Tom . ||| 千万别 理 汤姆 . +Do you often hear from him ? ||| 你 常常 收到 他 的 音訊 嗎 ? +I think you are going to want to sit down . ||| 我 觉得 你 想 坐下 . +The Prime Minister is speech was calculated to anger the opposition parties . ||| 總理 的 發言 估計 激怒 了 在野 黨 . +You should go . ||| 你 最好 去 . +You spend too much money . ||| 你 花 太 多 钱 了 . +Cows provide us with milk . ||| 奶牛 为 我们 提供 牛奶 . +She always gets her own way . ||| 她 總是 隨心 所欲 . +That mountain is covered with snow . ||| 這 座 山 被 雪所覆蓋 . +Close the door . ||| 关门 . +You have to clean your room . ||| 你 该 打扫 你 的 房间 . +Call Tom and Mary this evening . ||| 今晚 给 汤姆 和玛丽 打电话 . +As soon as she opened the door , a cat ran out . ||| 她 一開 門 , 一 隻 貓 就 跑 了 出 來 . +She is a famous singer . ||| 她 是 一个 著名 的 歌手 . +Love blinded him to her faults . ||| 愛情 讓 他 盲目 到 看不到 她 的 錯 . +We started at six . ||| 我們 六點 開始 . +I am sure Tom would approve . ||| 我 確定 湯姆會 同意 . +I am not at all satisfied with this result . ||| 我 對 這個 結果 一點 兒 也 不 滿意 . +What do you want to do ? ||| 你 想 做 什麼 ? +He got away disguised as a policeman . ||| 他 偽裝 成 警察 逃跑 了 . +Can you wake me up at 7 : 00 tomorrow ? ||| 你 明天 早上 七點 可不可以 叫 我 起床 . +No one believed what I said . ||| 没有 人 相信 我 说 的话 . +This is not difficult . ||| 這個 不 難 . +There is no need to get so angry . ||| 沒有 必要 這麼 生氣 . +You have everything . ||| 您 全都 有 . +His pictures were hung on the wall . ||| 他 的 画 被 悬挂 在 墙上 . +Have you finished it ? ||| 你 做 完 了 嗎 ? +I continued singing . ||| 我 继续 唱歌 . +This lake is deepest at this point . ||| 这里 是 湖 最深 的 地方 . +I think this machine is in need of repair . ||| 我 认为 这 机器 需要 修理 . +It has been raining since last Thursday . ||| 從 上週 四 開始 一直 下雨 . +I am scared of wild animals . ||| 我 怕 野兽 . +I think you are jealous . ||| 我 觉得 你 妒忌 了 . +We had a lot of snow last year . ||| 去年 下 了 很多 雪 . +You must be mentally exhausted . ||| 你 肯定 脑子 糊掉 了 . +Are you absolutely certain about this ? ||| 你 絶 對 確 定 這 事 嗎 ? +Study hard so you do not fail . ||| 努力 學習 , 這樣 你 就 不 會 失敗 . +She has broken the toaster again . ||| 她 再次 弄壞 了 烤 麵 包 機 . +He lives just around the corner . ||| 他 就 住 在 附近 . +I do not care if it is a bit cold . ||| 稍微 冷 点儿 不要紧 . +I was very confused by his questions . ||| 我 對 他 的 問題 感到 非常 困惑 . +Good afternoon . ||| 下午 好 . +Tom bought new gloves . ||| 湯姆 買 了 新 手套 . +What kind of movie do you want to watch ? ||| 你 想 看 哪种 类型 的 电影 ? +Dinosaurs became extinct a very long time ago . ||| 恐龍 在 很久以前 滅 絶 了 . +I cut myself shaving this morning . ||| 我 今天 早上 刮 鬍 子 的 時 候 把 自己 弄 傷 了 . +Tomorrow is weather should be sunny with occasional rain . ||| 明天 天气 晴 转 阵雨 . +I want a few potatoes . ||| 我 要 幾個 土豆 . +Everybody laughed . ||| 大家 笑 了 . +Please phone me before you come . ||| 請 你 來 之前 打 電話 給 我 . +You are too sensitive to criticism . ||| 你 對 批評 太 敏感 了 . +I have a certain amount of money on me . ||| 我 有些 钱 . +I do not know what to open it with . ||| 我 不 知道 用 什么 能 打开 它 . +It is hard to predict what the weather will be like tomorrow . ||| 很难说 明天 的 天气 将 会 怎样 . +He wants more . ||| 他 想要 更多 . +He got injured in the traffic accident . ||| 他 在 這場 交通 意外 中 受 了 傷 . +His absence gave birth to all sorts of rumors . ||| 他 的 缺席 导致 了 各种 谣言 的 产生 . +They serve excellent food here . ||| 他們 這裡 提供 一流 的 美食 . +The smell of roses filled the room . ||| 玫瑰 香水 的 味道 充满 了 房间 . +My hands and legs are swollen . ||| 我 的 手 和 腳 都 腫 了 . +He is your friend . ||| 他 是 你 的 朋友 . +I can not swim at all . ||| 我 一点 也 不会 游泳 . +I do not like sushi . ||| 我 不 喜欢 寿司 . +Ask him where he parked his car . ||| 問 問 他 把 他 的 車 停 在 那裡 . +Tom is the tallest in his class . ||| 湯姆 是 班上 最高 的 . +She squeezed the juice from many oranges . ||| 她 用 了 許多 柳橙 來 榨汁 . +He went to Nagoya on business . ||| 他 到 名古屋 洽談 業務 . +I arrived at the station on time . ||| 我 準 時 到 達 了 車站 . +This is all that I know about him . ||| 这 就是 我 关于 他 知道 的 一切 . +Tom might have missed the last train . ||| 汤姆 可能 错过 了 最后 一班 列车 . +She seems to be in love with my brother . ||| 她 似乎 喜歡 上 了 我 哥哥 . +Welcome back . ||| 欢迎 回来 . +That is very big . ||| 那 是 很大 的 . +Tom and I are almost done . ||| 湯姆 和 我 要 做 完 了 . +A stranger spoke to me on the bus . ||| 在 公车上 , 一个 陌生人 和 我 说 了 话 . +I am cooking dinner . ||| 我 准备 晚餐 . +Let is not discuss the matter today . ||| 今天 讓 我們 不要 討論 這件 事 . +I am as tall as you . ||| 我 跟 你 一樣 高 . +Can you distinguish silver from tin ? ||| 你 能 分辨 銀和錫 嗎 ? +What is this ? ||| 這 是 什麼 ? +Take off your socks . ||| 把 你 的 袜子 脱 了 . +It is not easy to distinguish good from evil . ||| 区分 善恶 不 容易 . +It looks like your dog is thirsty . ||| 你 的 狗 看起来 口渴 了 . +Visiting all the tourist sights really wore me out . ||| 參觀 所有 觀光勝 地 累壞 了 我 . +She may be late , in which case we will wait . ||| 她 可能 迟到 , 然后 我们 就要 等 . +Tom says he hopes Mary can do that . ||| 汤姆 说 他 希望 玛丽 能 做到 . +You should put your coat on . ||| 你 應該 把 大衣 穿 上 . +I will take you to the bus stop . ||| 我会 带 你 到 公交车站 . +You are irresistible . ||| 你 令人 难以 抗拒 . +I like you . ||| 我 喜欢 你 . +Tom was replaced by Mary . ||| 汤姆 被 玛丽 替换 下来 . +I think I am right . ||| 我 想 我 是 對 的 . +Every day I waited for her at the bookstore after school . ||| 我 每天 放学 后在 书店 那里 等 她 . +The sky turned dark . ||| 天暗 了 下来 . +Europe has a smaller population than Asia . ||| 欧洲 的 人口 比 亚洲 少 . +I have eight siblings . ||| 我 有 八個 兄弟姐妹 . +We studied English . ||| 我们 学 了 英语 . +There were two pieces of cake . ||| 那 有 两块 蛋糕 . +Let me handle this . ||| 讓 我 來 處理 . +I want a boat that will take me far away from here . ||| 我 想要 一艘船 带 我 远离 这里 . +I think that Tom is a bit too impatient . ||| 我 觉得 汤姆 有些 过于 性急 了 . +I want to keep moving . ||| 我 想 继续 走 . +He comes to Tokyo once a year . ||| 他 一年 來 東京 一次 . +Tom has not taken a bath in a long time . ||| 汤姆 很 长时间 没 洗澡 了 . +I can do it by myself . ||| 我 可以 自己 做 . +I handed the mike to him . ||| 我 把 麥克風 遞 給 他 . +Will you be here tomorrow ? ||| 你 明天 在 这里 吗 ? +I was vaccinated against the flu . ||| 我 接种 了 流感疫苗 . +That should make you happy . ||| 那 该 让 你 高兴 . +I want to know where she went . ||| 我 想 知道 她 去 哪儿 了 . +It is fun to travel . ||| 旅行 是 令人 快乐 的 . +I believe in love . ||| 我 相信 爱情 . +He wore a dark sweater . ||| 他 穿 了 一件 深色 毛衣 . +Tom should thank me . ||| 汤姆 应该 感谢 我 . +I can not do it . ||| 我 做 不到 . +I called Tom up . ||| 我 打 電話 給 湯姆 了 . +I do not think he can help you . ||| 我 覺得 他 不能 幫 你 . +I like to travel by train . ||| 我 喜歡 搭 火車 旅行 . +Mathematics is difficult for me . ||| 數學 對 我 來說 很 難 . +How much is the commission ? ||| 手续费 是 多少 ? +Did you check all the items on the shopping list ? ||| 你 检查 购物单 上 所有 的 项目 了 吗 ? +Can you copy this for me ? ||| 你 能 替 我 拷貝 這個 嗎 ? +Tom has calmed down . ||| 汤姆 冷静下来 了 . +Tom has his own bedroom . ||| 湯姆 有 他 自己 的 房間 . +We are waiting for Tom . ||| 我们 在 等 汤姆 . +She was very proud of her father . ||| 她 非常 地 以 她 父親 為 榮 . +All horses are animals , but not all animals are horses . ||| 所有 的 马 都 是 动物 , 但 并非 所有 的 动物 都 是 马 . +The teacher asked me which book I liked . ||| 老師 問 我 我 喜歡 哪 本書 . +Do you know where they come from ? ||| 你 知道 他们 来自 哪里 吗 ? +His methods are not scientific . ||| 他 的 方法 不 科学 . +I can not stand his arrogance . ||| 我 受不了 他 的 傲慢 . +Here is the book you are looking for . ||| 你 正在 找 的 書 在 這裡 . +A stitch in time saves nine . ||| 防微 杜漸 . +A dog can run faster than a man can . ||| 狗 跑 得 比 人 快 . +I ate an apple . ||| 我 吃 了 一個 蘋果 . +The glass is dirty . ||| 玻璃 髒 了 . +We will stay here until Sunday . ||| 星期天 前 我們 將 會 待 在 這裡 . +I will pay . ||| 我 來付 錢 . +You should seriously consider working here . ||| 你 应该 认真 考虑 在 这里 工作 的 事 . +I made her angry . ||| 我 讓 她 生氣 . +I am leaving for Canada tomorrow . ||| 我 明天 要離 開去 加拿大 . +Have you ever seen Tom when he is mad ? ||| 你 有 看见 过 汤姆生 气 的 时候 吗 ? +It is already eleven . ||| 已经 是 11 点 了 . +Most people think I am crazy . ||| 大部份 的 人 覺得 我 瘋 了 . +I wash my hands before eating lunch . ||| 我 在 吃 午 饭前洗手 . +He could not answer that question . ||| 他 無法 回答 這個 問題 . +You look like you have just lost your best friend . ||| 你 看上去 就 像是 刚刚 失去 了 自己 最好 的 朋友 似的 . +He is an Italian . ||| 他 是 義 大利 人 . +You have to start somewhere . ||| 你 必须 有 一个 出发点 . +I have met so many new people . ||| 我 遇見 了 許多 新 的 人 . +I will play tennis this afternoon . ||| 我 今天下午 會 去 打 網球 . +I applied for a summer internship . ||| 我 應徵 了 一個 暑期 實習 . +Many kinds of birds live in Japan . ||| 許多種 鳥類 住 在 日本 . +I know what it is like to lose someone . ||| 我 知道 这 看起来 像是 失去 了 某人 . +Tom abandoned hope . ||| 湯姆 放棄 了 希望 . +Is Tom really a nice guy ? ||| 汤姆 是 个 好人 吗 ? +I do not want any bananas at all . ||| 我 一個 香蕉 也 不要 . +These are the new ones . ||| 這些 是 一些 新 的 . +This medicine will help you . ||| 這個 藥會 幫助 你 . +I do not eat as much as I used to . ||| 我 比 以前 吃 得 少 了 . +He could not hold his temper any longer . ||| 他 再也 忍不住 气 了 . +I am okay . ||| 我 沒事 . +How was the food ? ||| 食物 怎麼樣 ? +He has made the same mistake twice . ||| 他 犯 了 兩次 相同 的 錯誤 . +He is writing a long letter . ||| 他 写 长信 . +Open your eyes , please . ||| 请 睁开眼睛 . +What do you usually do in your spare time ? ||| 你 在 閒暇 的 時候 一般 做 什麼 ? +Is there anything you want to eat ? ||| 有 什么 想 吃 的 吗 ? +Tom is a scumbag . ||| 湯姆 是 個 无賴 . +I built a new house . ||| 我 盖 了 栋 新房子 . +I have finished writing the letter . ||| 我 已經 寫 完信 了 . +I wrote a letter . ||| 我 写 了 一封信 . +I have no energy today . ||| 今天 我 沒有 精神 . +Raise your hands . ||| 手 举 起来 . +I can sing well . ||| 我 唱歌 很 好听 . +I do not know when he will come . ||| 我 不 知道 他 什么 时候 来 . +I made up my mind to go there . ||| 我 决定 去 那里 . +I must help her . ||| 我 必須 幫助 她 . +She abandoned her children . ||| 她 抛弃 了 她 的 孩子 . +Chocolate has more iron than spinach . ||| 巧克力 的 鐵質 含量 比 菠菜 還 要 多 . +You should have warned him sooner . ||| 你 應 該 要 更快 警告 他 的 . +Strictly speaking , the earth is not round . ||| 嚴格 來說 , 地球 不是 圓 的 . +I really do not understand this problem . ||| 我 真的 不 懂 这个 问题 . +Dad bought me a camera . ||| 爸爸 给 我 买 了 一个 照相机 . +I felt that my honor was at stake . ||| 我 覺得 我 的 名譽 受到 了 威脅 . +How about going to the movies ? ||| 去 看 電影 怎樣 ? +Do you want to know what I see ? ||| 你 想 知道 我 看见 什么 了 吗 ? +You may go anywhere you like . ||| 你 喜欢 去 哪儿 就 可以 去 哪儿 . +With the T.V. on , how can you keep your mind on your studies ? ||| 你 开 着 电视 怎么 能 安心 学习 呢 ? +I think it will turn out fine . ||| 我 觉得 没 问题 . +Wait till the light turns green . ||| 等到 指示 燈 變成 綠色 . +Perhaps she will come tomorrow . ||| 也許 她 明天 會來 . +I wish I were in Paris now . ||| 但 願 我 現在 在 巴黎 . +You hate Tom , do not you ? ||| 你 恨 湯姆 , 不是 麼 ? +I can read without glasses . ||| 没 眼镜 我 可以 读 . +Things are getting out of control . ||| 事情 要 失控 了 . +Tom gave a different answer . ||| 湯姆 給出 了 不同 的 答案 . +Are you following me ? ||| 你 在 跟著 我 嗎 ? +She discovered that she had run out of salt . ||| 她 发现 她 已经 断盐 了 . +She killed herself yesterday . ||| 她 昨天 自杀 了 . +What did he say ? ||| 他 说 了 什么 ? +If it rains tomorrow , I will not go . ||| 如果 明天 下雨 , 我 就 不 去 . +Did you play baseball yesterday ? ||| 你 昨天 打 棒球 了 没有 ? +Wait a moment . ||| 請 稍 等 . +My father is hobby is fishing . ||| 我 父親 的 嗜好 是 釣 魚 . +Why are you guys so angry ? ||| 你們 為 什麼 這麼 生氣 ? +I live near the sea so I often go to the beach . ||| 我 住 在 海边 所以 经常 去 海滩 . +Did she show you the picture ? ||| 她 給 你 看 過 照片 了 嗎 ? +There must be a way to arrive at a diplomatic solution . ||| 必须 有 外交 解决 的 途径 . +I do not know her . ||| 我 不 認識 她 . +Mary can speak Japanese . ||| 瑪麗會 講 日 語 . +Why would she lie ? ||| 她 為 甚麼 要 說 謊 ? +That is my dictionary . ||| 那 是 我 的 字典 . +I as well as you was late for school yesterday . ||| 我 跟 你 一样 昨天 上学 迟到 了 . +Tom should not have been here today . ||| Tom 今天 不該 在 這 . +" I never thought Tom would win . " " Me neither . " ||| “ 我 没想到 汤姆 会 赢 . ” “ 我 也 是 . ” +Tell Tom that I do not need his help . ||| 告诉 汤姆 我 不 需要 他 的 帮助 ! +He lives by himself . ||| 他 一个 人 生活 . +You should do that as often as you can while you are still young . ||| 趁 你 还 年轻 的 时候 , 你 应该 尽可能 经常 地 这样 做 . +I know that you are busy , too . ||| 我 知道 , 您 也 很忙 . +Where is the Japanese Embassy ? ||| 日本 大使 館 在 哪裡 ? +Tom said that he 'd never been to Boston . ||| 汤姆 说 他 从来 没 去过 波士顿 . +You remind me of your brother . ||| 你 讓 我 想起 你 的 兄弟 . +I do not know if she wants to go with me . ||| 我 不 知道 她 想 不想 和 我 一起 去 . +What time do you go home ? ||| 你 几点 回家 ? +Is that pure gold ? ||| 那 是 純金 嗎 ? +He is something of a scholar . ||| 他 有 几分 像 学者 . +There is no doubt about it . ||| 關於 此事 毫無疑問 . +Wear whatever you want to wear . ||| 穿 你 想 穿 的 . +Tom does not write to me anymore . ||| 汤姆 不再 给 我 写信 了 . +Which do you prefer , dogs or cats ? ||| 狗 和 猫 你 更 喜欢 哪 一个 ? +I know this has not been easy for you . ||| 我 知道 這 對 於 你 不 容易 . +He did not eat anything yesterday . ||| 他 昨天 沒有 吃 任何 東西 . +He told me when to say yes . ||| 他 告诉 我 什么 时候 该 说 是 . +Cash donations will be accepted . ||| 接受 现金 捐赠 . +Do you have something to say to me ? ||| 你 有事 想 对 我 说 吗 ? +My friends invited me to dinner . ||| 我 的 朋友 邀請 我 去 吃 晚 飯 . +They do not always obey their parents . ||| 他們 並 不 總是 服 從 他們 的 父母 . +It took a long time to take in what she was saying . ||| 花 了 很久 才能 听懂 她 在 说 什么 . +I have already eaten breakfast . ||| 我 已经 吃 过 早饭 了 . +Everyone was surprised . ||| 所有人 都 很 吃惊 . +If you do not have anything nice to say , do not say anything at all . ||| 如果 你 没 好话 说 , 那 就 什么 都 别说 . +They do not know each other very well . ||| 他們 不 太 認識 對 方 . +Where are you going ? ||| 你们 去 哪里 ? +I do not lie . ||| 我 不 說 謊 . +Tom put down his paintbrush . ||| 湯姆 放下 了 他 的 畫筆 . +All of the cookies are in the shape of stars . ||| 所有 餅 乾 都 是 星星 的 形狀 . +What are you laughing at ? ||| 你 在 笑 什么 呢 ? +Everything is normal . ||| 一切正常 . +I like spring better than fall . ||| 我 喜歡 春天 勝 過 秋天 . +There is something we need to talk about . ||| 我们 有些 事 要 谈 . +Tom is a high school student . ||| 湯姆 是 個 高中生 . +That is good , is not it ? ||| 那 太好了 , 不是 嗎 ? +My aunt grows tomatoes in her garden . ||| 我 阿姨 在 她 的 花園 種 蕃茄 . +Will you take a personal check ? ||| 你 收 私人 支票 嗎 ? +Tom waited for Mary in front of the warehouse . ||| 湯姆 在 倉庫 前 等 瑪麗 . +He took a walk before breakfast . ||| 他 在 早餐 之前 散步 . +I need my boots . ||| 我 需要 我 的 靴子 . +She married again in her mid @-@ forties . ||| 她 在 四十多 歲 的 時候 再次 結婚 . +That tie goes well with your shirt . ||| 那條 領帶 很 適合 你 的 襯衫 . +Are you finished with your work ? ||| 你 完成 你 的 工作 了 嗎 ? +She despised him . ||| 她 看不起 他 . +She burned her left hand . ||| 她 的 左手 被 燙到 了 . +It is unfortunately true . ||| 可惜 这 是 真的 . +I heard it on the radio . ||| 我 從 廣播 中 聽到 它 . +Tom could not see anyone . ||| 汤姆 看不到 任何人 . +I do not want to take such a risk . ||| 我 不想 承担 这样 一个 风险 . +Tom is coming , too . ||| 汤姆 也 来 . +We can not stay in here very long . ||| 我們 不能 在 這裡 待 很 長 時間 . +I do not know whether it is good or not . ||| 我 不 知道 它 是 好 是 坏 . +He moved into my neighborhood . ||| 他 搬到 了 我家 附近 . +We are eating bread . ||| 我们 在 吃 面包 . +The class begins at 8 : 30 . ||| 課程 八點半 開始 . +I can not follow Tom is logic . ||| 我 跟不上 汤姆 的 逻辑 . +Tom got so absorbed in his work that he forgot to eat . ||| 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 吃饭 . +He painted a picture of roses . ||| 他 畫 了 一幅 玫瑰 的 畫 . +He has three older sisters . ||| 他 有 三个 姐姐 . +None of the money is yours . ||| 這些 錢 都 不是 你 的 . +Tom had to sell his house . ||| 湯姆 必須 賣 了 他 的 房子 . +Do you know where to find Tom ? ||| 你 知道 去 哪 找 汤姆 吗 ? +I want to sing a song . ||| 我 想 唱 個 歌 . +That meat is chicken . ||| 那個 肉 是 雞 肉 . +I spent my vacation at the beach . ||| 我 在 海邊 度假 . +He keeps his room clean . ||| 他 保持 他 的 房間 乾 淨 . +You must answer these questions . ||| 你 必須 回答 這些 問題 . +Tom clapped . ||| 湯姆 拍 了 手 . +Would you mind my opening the door ? ||| 你 介意 我 開門 嗎 ? +They now have three kids . ||| 现在 他们 有 三个 孩子 . +I will be there at once . ||| 我 會 立刻 到 那裡 . +We want one . ||| 我們 要 一個 . +I do not mind waiting for a while . ||| 我 不介意 等 一會兒 . +This book is worth reading twice . ||| 這 本書 值得 讀 兩遍 . +The young girl burst into tears . ||| 這個 年輕 的 女孩 淚流 滿面 . +Can you hold on a second ? ||| 你 能 等 一下 嗎 ? +They kept on walking . ||| 他们 继续 走 . +I am an actress , not a model . ||| 我 是 演员 , 不是 模特 . +I consider fruit to be the healthiest food . ||| 我 將 水果 視為 最 健康 的 食物 . +Let me try it . ||| 让 我 试试 . +You have a choice of black tea , coffee , or milk . ||| 你 可以 选择 红茶 , 咖啡 或 牛奶 . +The plan was carried out . ||| 计划 被 执行 了 . +It is taking a little longer than I expected . ||| 我 花 了 比 預期 更 多 的 時間 . +This is not a tiger . ||| 这 不是 老虎 . +He seldom gives his wife presents . ||| 他 很少 給 他 的 妻子 禮物 . +We have to stop the bleeding . ||| 我們 必須 止血 . +There was a cottage on the side of the hill . ||| 山坡 上 有 一间 小屋 . +I was born on April 3 , 1950 . ||| 我 出 生于 1950 年 4 月 3 日 . +Could you show me this bag ? ||| 你 能 給 我 看看 這個 包 嗎 ? +The landlord says he wants to raise the rent . ||| 地主 说 他 要 提高 租金 . +Have you ever seen him swimming ? ||| 你 曾 看 過 他 游泳 嗎 ? +I did not mean to do that . ||| 我 不是故意 那樣 做 . +She almost drowned . ||| 她 差点 就 溺水 了 . +That shop sells newspapers and magazines . ||| 那家 店 卖 报纸 和 杂志 . +That was the part that Tom and I were most confused about . ||| 这 是 我 和 汤姆 最 困惑 的 部分 . +Hokkaido is to the north of Sendai . ||| 北海道 在 仙台 的 北方 . +Everyone attacked my opinion . ||| 每個 人 都 抨擊 我 的 意見 . +Soccer is the most popular of all sports . ||| 足球 是 所有 体育运动 中 最 受欢迎 的 . +I will see you whenever it suits you . ||| 只要 你 方便 , 我什麼 時候 都 可以 跟 你 見 面 . +Turn on the computer . ||| 打開 電腦 . +There is a strike . ||| 有 罢工 . +Clearly you are mistaken . ||| 顯然 的 , 你 錯 了 . +We found that everyone was asleep . ||| 我們 發現 每個 人 都 睡著 了 . +I do not want to take the chance . ||| 我 不想 冒 這個 險 . +Actions speak louder than words . ||| 行動勝 於雄辯 . +He ignored his father is advice . ||| 他 不 顧 他 父親 的 忠告 . +I am surprised that you do not know about their marriage . ||| 我 很 惊讶 , 你 竟然 不 知道 他们 结婚 . +I want him to read this . ||| 想 让 他 读 这个 . +Let is draw lots to decide who goes first . ||| 来 抽签 决定 谁 先 走 吧 . +I hate Mondays . ||| 我 讨厌 星期一 . +My uncles come to see me from time to time . ||| 我 的 叔叔 們 ( 舅舅 們 ) 有時 會 來 探望 我 . +The sky is full of stars . ||| 天空 中 繁星点点 . +Keep your voice down . ||| 你 说话 小点声 . +I need a Japanese @-@ English dictionary . ||| 我 需要 一本 日 英 字典 . +Marriage is the main cause of all divorces . ||| 结婚 是 所有 离婚 的 主要 原因 . +There was scarcely any money left . ||| 几乎 没 剩下 钱 . +Will you please show me the way ? ||| 請 你 告訴 我路 怎麼 走 好 嗎 ? +Do you have this jacket in different colors ? ||| 你 有 不同 顏色 的 外套 嗎 ? +I want everyone to help me clean the house . ||| 我 希望 所有人 都 来 帮 我 打扫 房子 . +My daughter graduated from the university today . ||| 我 女兒 今天 大學 畢業 . +I bought the book for myself , not for my wife . ||| 我 給 我 自己 買 了 書 , 不是 給 我 妻子 . +How would you like your steak ? ||| 您 的 牛排 要 几分 熟 ? +It was very kind of you to lend me an umbrella . ||| 你 借给 我 伞 真好 . +She is looking for her car keys . ||| 她 在 找 她 的 車 鑰匙 . +Get out ! ||| 滾 出去 ! +That red dress suited her . ||| 那件 紅色 的 洋裝 適合 她 . +Tom was a little late . ||| Tom 迟到 了 一小 段时间 . +I do not think this is a good idea . ||| 我 觉得 这 主意 不行 . +He ran . ||| 他 跑 了 . +There is nothing good on television . ||| 電視 上 沒有 什麼 好事 . +Are you writing a letter ? ||| 你 在 寫信 嗎 ? +Tom thought that he had a chance to make a lot of money on the stock market . ||| 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +He married an air hostess . ||| 他 娶 了 一个 空姐 . +I left my briefcase on the bus . ||| 我 把 我 的 公事包 留在 公車 上 了 . +Who were you talking with ? ||| 你 和 谁 说话 呢 ? +We are just about finished here . ||| 我們 快要 結束 了 . +She thanked us for our help . ||| 她 感謝 我們 的 幫助 . +The company abandoned that project . ||| 公司 放弃 了 那个 项目 . +That does not make sense . ||| 这 没有 任何 意义 . +I am looking forward to your visit . ||| 我 期待 著 您 的 光臨 . +Tom is more famous than you . ||| 湯姆 比 你 有名 . +Tom could not think of a good place to hide it . ||| 湯姆 想不到 個 好 地方 藏 它 . +He is likely to win the game . ||| 他 有 可能 赢得 比赛 . +There is a cottage beyond the bridge . ||| 桥 对面 有 一间 小屋 . +Accuracy is important in arithmetic . ||| 准确性 在 计算 中 很 重要 . +You should have introduced yourself to the girl . ||| 你 應該 向 那個 女孩 自我 介紹 的 . +Save it on the external hard drive . ||| 把 它 保存 在 外接式 硬碟 . +I caught a cold last month . ||| 上個月 我 感冒 了 . +That student runs fast , does not he ? ||| 那个 学生 跑 得 很快 , 不是 吗 ? +Why did not Tom need to go to Boston ? ||| 为什么 汤姆 不 需要 去 波士顿 +I am afraid you will have to go in person . ||| 我 恐怕 您 必须 亲自 去 . +It may sound strange , but what she said is true . ||| 聽 起來 或許 有 點怪 , 但 她 說 的 是 真的 . +I hope I make a good first impression . ||| 我 希望 我 能 留下 個 好 的 第一印象 . +As long as we love each other , we will be all right . ||| 只要 我們 彼此 相愛 , 我們 會 沒事 的 . +There is not a cloud in the sky . ||| 天上 没有 云 . +I will give you anything that you want . ||| 我 會 給 你 任何 你 想要 的 東西 . +Would you like some coffee ? ||| 你 要 喝咖啡 吗 ? +It will cost about 10,000 yen . ||| 它 將 花 費大 約 10 , 000 日元 . +Those pictures were painted by him . ||| 那些 圖畫 是 他 畫 的 . +Excuse me , where is the train station ? ||| 抱歉 , 火車 站 在 哪裡 ? +He has a good command of English . ||| 他 有 很好 的 英語 能力 . +Everybody needs to calm down . ||| 大家 需要 冷静下来 . +They do not talk to us anymore . ||| 他們 不再 跟 我們 談 了 . +What are you after ? ||| 你 想要 什么 ? +I can not bear the sight of him . ||| 我 受不了 他 的 視線 . +He always tells the truth . ||| 他 總是 說 實話 . +The orange left a strange taste in my mouth . ||| 橙子 在 我 嘴里 留下 了 一种 奇怪 的 味道 . +She resembles her aunt . ||| 她 长 得 像 她 姑姑 . +Please turn up the AC a little bit . ||| 请 你 把 冷气 调 高点 . +Let is take turns rowing the boat . ||| 讓 我們 輪流 划船 . +Do you really think that I look like Tom ? ||| 你 真的 觉得 我 长 得 像 汤姆 吗 ? +She went to Mexico by herself . ||| 她 独自一人 去 了 墨西哥 . +She went either to London or to Paris . ||| 她 不是 去 了 伦敦 就是 巴黎 . +We were not able to find Tom . ||| 我們 找 不到 湯姆 . +He caught them stealing apples . ||| 他 抓到 了 他們 在 偷 蘋果 . +Because of its origins , Canadian English has features of both American and British English . ||| 由 於 它 的 起源 , 加拿大 英語 具有 美國 英語 和 ​ ​ 英國 英語 兩者 的 特色 . +I need a new pair of shoes . ||| 我 需要 一双 新鞋 . +You 'd better go in person . ||| 你 最好 親自 去 . +Tom fed his leftovers to his dog . ||| 湯姆 把 他 的 廚餘 餵 給 他 的 狗 吃 . +Japan depends on imports for raw materials . ||| 日本 依賴 進口 原料 . +Let is divide this money between you and me . ||| 这 钱 你 和 我 分 了 吧 . +I got lost in the woods . ||| 我 在 树林 里 迷路 了 . +I am sorry , I can not stay long . ||| 对不起 , 我 不能 待 很久 . +Give her the book . ||| 把 这 本书 给 她 . +Tom said he wanted to try riding a unicycle . ||| 湯姆 說 他 想 試試 騎 獨輪車 . +That did occur to me . ||| 那 就 發生 在 我 身上 . +I do not know anything about their plan . ||| 我 對 他們 的 計劃 一無 所知 . +He sat there with his legs crossed . ||| 他 翹著 二郎腿 坐在 那裡 . +I have no place to sleep tonight . ||| 我 今晚 沒 地方 睡覺 . +I miss Boston . ||| 我 想念 波士 頓 . +I passed by her house yesterday . ||| 我 昨天 經過 她家 . +I got this CD player for free . ||| 我 免費 得到 這個 CD 播放 機 . +Is it far from here ? ||| 离 这儿 远 吗 ? +We go to school to study . ||| 我們 去 學校 學習 . +I love the people here . ||| 我 爱 这里 的 人们 . +How did you get out of your room ? ||| 你 怎么 从 你 的 房间 里 出来 ? +It is this window that he broke . ||| 他 砸坏 的 是 这 扇 窗 . +There are a lot of things you do not know about my personality . ||| 我 的 个性 还有 很多 方面 是 你 不 了解 的 . +Is there anything else you want to say ? ||| 你 還 有 甚 麽 想 說 的 ? +I admit that I was a little drunk . ||| 我 承認 當時 是 有 點 醉 . +He is acquainted with my wife . ||| 他 是 我 太太 认识 的 一个 人 . +After the hurricane , their house was a wreck . ||| 暴风雨 过后 , 他们 的 房子 成 了 废墟 . +He shot at me . ||| 他 槍擊 了 我 . +That was you , was not it ? ||| 那 就是 你 , 不是 么 ? +My mother made me take some medicine . ||| 我 媽媽 讓 我 吃 點 藥 . +It is already past ten o 'clock . ||| 已經 過 了 十點鐘 了 . +It was not very hot last night . ||| 昨晚 不是 很 熱 . +Could you tell me the Wi @-@ Fi password ? ||| 能 不能 請 你 告訴 我 Wi - Fi 的 密碼 呢 ? +How about going out to eat tonight ? ||| 今晚 出去 吃 怎么样 ? +I have lost my ticket . ||| 我 把 票 弄 丟了 . +Tom is the one I want . ||| 汤姆 是 我 想要 的 人 . +We will have to do that , too . ||| 我们 也 不得不 做 +He turned the key . ||| 他 转动 钥匙 . +Charles Lindbergh made the first solo flight across the Atlantic Ocean in 1927 . ||| Charles Lindbergh 於 1927 年 成功 完成 了 第一次 獨自 飛越 大西洋 . +He wishes to erase bad memories . ||| 他 希望 抹 去 不好 的 记忆 . +My foot hurts . ||| 我 的 脚痛 . +There are a lot of new buildings here now . ||| 这里 现在 有 了 许多 新 建筑 . +I can only give you ten minutes . ||| 我 只能 给 你 十分钟 . +He is a good fellow . ||| 他 是 個 好人 . +My father will often read the newspaper during meals . ||| 我 父亲 常 在 吃饭 时 看 报纸 . +I agree on an emotional level , but on the pragmatic level I disagree . ||| 我 感情 上 支持 , 但是 理性 上 反对 . +We lost sight of the man in the crowd . ||| 在 人群 中 , 我们 失去 了 那个 男人 的 踪影 . +I have ten pens . ||| 我 有 十支 筆 . +I came to Japan from China . ||| 我 從 中國 到 日本 . +Tom is answer was very evasive . ||| 汤姆 的 回答 很 含糊不清 . +I enjoyed watching TV yesterday . ||| 昨天 我 很 開 心地 看電視 . +The buildings look so tiny . ||| 大楼 看上去 那么 寒酸 . +He earned as much money as possible . ||| 他 能 赚 多少 就 赚 多少 . +What does this key unlock ? ||| 这 钥匙 能 打开 什么 ? +Remember to brush your teeth . ||| 别忘了 刷牙 . +He is not religious . ||| 他 不 信教 . +When did you graduate from high school ? ||| 你 什麼 時候 中學 畢業 ? +Tom does not enjoy tennis and never has . ||| 汤姆 不 喜欢 网球 , 从来不 . +I am looking for some regular work . ||| 我 在 找 一些 固定 工作 . +If Tom does not do what he is supposed to do , please let me know . ||| 如果 汤姆 没有 做 他 应当 做 的 事 , 请 让 我 知道 . +This is a crucial point . ||| 这 是 一个 关键点 . +We managed to get there on time . ||| 我們 總算準 時 到 那裡 了 . +Tom does not have a good French @-@ English dictionary . ||| Tom 沒有 一本 好 的 法 英 字典 . +What is my room number ? ||| 我 的 房间 号 是 多少 ? +Are you speaking to me ? ||| 你 是 在 对 我 说 吗 ? +She is good at playing the piano . ||| 她 擅長 彈 鋼琴 . +I am already full , thank you . ||| 我 已经 吃饱 了 , 谢谢 . +What is that ? ||| 那 是 什么 ? +She was asked to convince him to get his son or someone else to paint the house . ||| 她 被 要求 去 说服 他 以 让 他 或者 他 的 儿子 或者 是 别的 人 来 粉刷 屋子 . +The phone rang when I was having lunch . ||| 當 我 正在 吃 午餐 時 , 電話 響 了 . +Did you check this ? ||| 你 检查 这个 了 吗 ? +I thought that you were listening . ||| 我 以为 你 在 听 . +We study music . ||| 我们 学习 音乐 . +How come you did not say anything ? ||| 你 怎麼 什麼 話 也 沒 說 ? +She was asked to convince him to paint the house . ||| 她 被 要求 说服 他 油漆 房子 . +I ordered some books from London . ||| 我 從 倫敦 訂購 了 一些 書 . +Fight like a man ! ||| 像 男人 一样 战斗 ! +Will you please let me go now ? ||| 可否 请 你 现在 让 我 走 ? +Everything is changing . ||| 一切都在 变 . +I gave her just what she needed . ||| 我 給 她 的 正是 她 所 需要 的 . +I am counting on you . ||| 我 指望 你 了 . +The thief got away with the money . ||| 小偷 帶著 錢 逃跑 了 . +Tom came a little earlier today than he usually does . ||| 汤姆 今天 来得 比 往常 要 早 一些 . +I like jazz music . ||| 我 喜歡 爵士 樂 . +I am busy today . ||| 我 今天 忙 . +He can pull strings for you . ||| 他 能 为 你 暗箱 操作 . +Thank you for everything . ||| 为 一切 感谢 你 . +It looks like Tom has bought a new bicycle . ||| 看來 湯姆 借 了 輛 自行 車 . +Give the cat some meat . ||| 給 猫 喂 點 肉 . +What is the weather like now ? ||| 现在 的 天气 怎么样 了 ? +He has to repair the clock . ||| 他 必須 修理 這個 時鐘 . +I want to be a lawyer . ||| 我 要 當 律師 . +She is my type . ||| 她 是 我 的 菜 . +Harvard was founded in 1636 . ||| 哈佛 始建 于 1636 年 . +Hang your coat on the hook . ||| 把 你 的 外套 掛 在 鉤子 上 . +Excuse me for interrupting you . ||| 對 不起 , 打擾 你 了 . +The rumor is not true . ||| 傳聞 不是 正確 的 . +I have never met such a kind man . ||| 我 从没 遇到 过 那么 好心 的 男人 . +It is hot out here . ||| 这里 够 热 . +I wanted to go there . ||| 我 想 去 那裡 . +This data is not accurate at all . ||| 這個 數據 一點 也 不 準確 . +I said shut up ! ||| 我 说 过 了 , 闭嘴 ! +Does not that change things ? ||| 那 能 改变 甚麼 嗎 ? +He was moved to tears when he heard the news . ||| 当 他 听到 那个 新闻 的 时候 , 他 感动 得 哭 了 . +She knit him a sweater . ||| 她 给 他 织 了 件 毛衣 . +Tom does not talk much . ||| 汤姆 说话 不多 . +I think you should take the test again . ||| 我 的 意见 是 , 你 该 再次 参加 测试 . +A woman visited us while you were sleeping . ||| 你 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Karuizawa is famous as a summer resort . ||| 輕 井澤 是 著名 的 避暑 勝地 . +It is difficult to satisfy everyone . ||| 众口难调 . +Tom did not know how to translate the word " computer " because the people he was talking to had never seen one . ||| 汤姆 不知 如何 翻译 “ 计算机 ” 一 词 , 因为 同 他 谈话 的 人 从未见过 一台 . +Tom is boss was really angry . ||| 汤姆 的 上司 真的 非常 生气 . +Give Tom back his money . ||| 把 汤姆 的 钱 还给 他 . +Could you bring me some water ? ||| 你 能 帶 給 我 一些 水 嗎 ? +You should begin right away . ||| 你 應該 立即 開始 . +If I had one million yen now , I would buy a car . ||| 如果 我 现在 有 100 万日元 , 我会 买 辆车 . +You should look after the children from time to time . ||| 你 應 該 偶爾 照顧 孩子 . +I am accustomed to getting up early . ||| 我 習慣 早起 . +The United States borders Canada . ||| 美国 与 加拿大 相邻 . +Look into my eyes . ||| 看著 我 的 眼睛 . +I have never heard of this actor . ||| 我 从 没听说过 这个 演员 . +Did you do your homework by yourself ? ||| 你 自己 做 回家 作業 的 嗎 ? +He is accustomed to traveling . ||| 他 習慣 了 旅行 . +When I was a child , I used to swim in that pond . ||| 当 我 还是 个 孩子 的 时候 , 我 在 这个 泳池 里游 过泳 . +The message was in French . ||| 这 条 消息 是 法语 写 的 . +What do you make ? ||| 你 做 什麼 ? +I am glad that the thief was caught . ||| 抓 到 小偷 真是 太好了 . +Tom studied hard so he could get into college . ||| 汤姆 努力学习 以 进入 大学 . +She will not be back till five . ||| 她 五點鐘 才 會 回來 . +All three of you are very lucky . ||| 你們 三個 很 走 運 . +You are just a coward . ||| 你 就是 胆小鬼 . +Tom would not let anyone else in the room . ||| 汤姆 不让 任何人 进 房间 . +I did not have to study yesterday . ||| 我 昨天 不必 讀書 . +He took off his overcoat . ||| 他 脫掉 了 大衣 . +She gave him a tender kiss . ||| 她 給 了 他 一個 溫柔 的 吻 . +I am as tall as my father . ||| 我 跟 我 父親 一樣 高 . +It would take me too much time to explain to you why it is not going to work . ||| 给 你 解释 这 为什么 行不通 要 花 很多 时间 . +It is not easy to distinguish good from evil . ||| 区分 善恶 不 容易 . +Tom runs very fast . ||| 湯姆 跑得快 . +Come and have tea with me . ||| 来 跟 我 喝茶 吧 . +She was too short to see over the fence . ||| 她 太矮 了 , 看不到 围墙 外面 . +She needs a coat . ||| 她 需要 一件 外套 . +Where are those people from ? ||| 那些 人 从 哪 来 的 ? +Mercury is the smallest planet in our solar system . ||| 水星 是 我們 的 太陽系 中 最小 的 行星 . +It is your move . ||| 該 你 走 了 . +Tom is old enough to go to school . ||| 汤姆 年纪 足够 去 上学 了 . +She is doing her homework now . ||| 她 現在 正在 做 她 的 功課 . +Tom is ecstatic . ||| 汤姆 兴奋不已 . +They work together . ||| 他们 在 一起 工作 . +How much does this cost ? ||| 多少 錢 ? +How do I sign up ? ||| 我 怎样 报名 参加 呢 ? +Something might have happened to her . ||| 她 可能 出 什么 事 了 . +This has nothing to do with you . ||| 這 與 你 無關 . +When will it be ready ? ||| 这 什么 时候 能 准备 好 ? +She was often late for school . ||| 她 經常 上學 遲到 . +Let is get started . ||| 讓 我們 開始 吧 . +I do not want to be involved in that matter . ||| 我 不想 被 牵扯 到 这件 事 里 . +They smiled at each other . ||| 他們 曾 彼此 微笑 . +The court acquitted him of the charge of murder . ||| 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +They are gone . ||| 他们 离开 了 . +He spoke very loudly . ||| 他 说 得 很 大声 . +She is only a child . ||| 她 只是 個 孩子 . +I am the fastest runner . ||| 我 是 跑 得 最快 的 人 . +This dog was born two months ago . ||| 這 隻 狗 是 兩 個 月 前 出生 的 . +He ordered a cup of tea . ||| 他 點 了 一杯 茶 . +Would you like to listen ? ||| 你 想 聽 嗎 ? +The children were well looked after . ||| 孩子 们 被 照顾 得 很 好 . +He fell to the floor . ||| 他 摔倒 在 地 . +We have to sing at an old folks home today . ||| 我们 今天 得去 养老院 唱歌 . +Although the government refuses to admit it , its economic policy is in ruins . ||| 尽管 政府 拒绝 承认 , 它 的 经济 政策 还是 失败 了 . +I am considering studying in America next year . ||| 我 在 考虑 明年 去 美国 学习 . +Most Americans do not object to my calling them by their first names . ||| 大多数 美国 人 似乎 不 反对 我 直呼其名 . +I did not know what to do . ||| 我 不 知道 要 做 什麼 . +I just could not say no . ||| 我 就是 不能 说不 . +It is no use trying to escape . ||| 試圖 逃跑 是 沒 有用 的 . +I have a few friends who speak French well . ||| 我 有 一些 法语 说得好 的 朋友 . +She can not write or read . ||| 她 不会 读书 写字 . +I attended the meeting yesterday . ||| 昨天 我 出席 了 會議 . +Can you get it repaired ? ||| 你 能 不能 修理 它 ? +He is now either in Rome or in Paris . ||| 他 不是 在 羅馬 , 就是 在 巴黎 . +He was aware that I was around , but did not come to greet me . ||| 他 注意 到 我 在 場 , 但是 沒向 我 打招呼 . +Are you students ? ||| 您們 是 學生 嗎 ? +Breakfast is ready . ||| 早饭 准备 好 了 . +You 'd better consult your doctor . ||| 你 最好 請 教 你 的 醫生 . +Can you skate ? ||| 你 会 溜冰 吗 ? +Who do you think broke the window ? ||| 你 認為 是 誰 打破 了 窗戶 ? +He finally got his wish . ||| 他 終 於 如 願 以償 了 . +Where did you come from ? ||| 你 從 哪裡 來 ? +Did Tom use to be a teacher ? ||| 湯姆 以前 是 教師 嗎 ? +Everyone knows that I do not like Tom . ||| 每個 人 都 知道 我 不 喜歡 湯姆 . +My purse was stolen . ||| 我 的 錢 包被 搶 了 . +I have a slight headache today . ||| 我 今天 有 輕微 的 頭痛 . +I am sick and tired of hamburgers . ||| 我 對 漢堡 感到 厭煩 了 . +Do you have a book written in English ? ||| 你 有 一本 用 英文 寫 的 書 嗎 ? +I got five hours sleep last night . ||| 我 昨晚 睡 了 五小时 . +You have only to ask for it . ||| 你 只要 问 就 好 了 . +He turned a deaf ear to their request . ||| 他 对 他们 的 请求 置若罔闻 . +He does nothing but read comics . ||| 他 什麼 都 不 做 只是 看漫 畫 . +May I ask a few questions ? ||| 我 能 问 一些 问题 吗 ? +I am sure of his success . ||| 我 肯定 他 会 成功 的 . +You should have done so . ||| 你 本 應該 這樣 做 的 . +We need to buy a new TV . ||| 我们 需要 买新 电视机 . +Help us reach our goal . ||| 幫助 我們 達成 目標 . +He is going to be a doctor when he grows up . ||| 他 长大 了会 成为 一名 医生 . +He was mad because he was not invited . ||| 他 因为 没有 被 邀请 而 气 得 快 疯 了 . +This is gibberish . ||| 這 是 胡 說 . +We heard a voice from the bedroom . ||| 我们 听到 卧室 里 有 声音 . +My father takes a walk every day . ||| 我 父親 每天 散步 . +Do not interfere in my affairs . ||| 不要 插手 我 的 事 . +He is poor at chemistry . ||| 他 的 化学 很 差 . +I met him on the street . ||| 我 在 街上 遇到 他 . +You are on the right track . ||| 你 在 正確 的 軌道 上 . +Your problem is similar to mine . ||| 你 的 问题 类似 于 我 的 . +These cameras are made in Japan . ||| 這些 照相 機是 在 日本 製 造 的 . +That hurts . ||| 真疼 . +When were you planning on telling Tom about what happened ? ||| 你 准备 啥时候 告诉 Tom 发生 了 什么 +Do you want anything to eat ? ||| 你 想要 吃 任何 東西 嗎 ? +Are you through with your homework ? ||| 你 把 功課 做 完 了 嗎 ? +I usually wear jeans on Sunday . ||| 我 星期天 通常 穿 牛仔 褲 . +Tom seems to hardly ever get his homework done on time . ||| Tom 似乎 没 办法 准时 完成 他 的 作业 . +She always buys expensive clothes . ||| 她 總是 買 昂貴 的 衣服 . +My father does not eat much fruit . ||| 我 父親 沒有 吃 很多 的 水果 . +I can walk to school in 10 minutes . ||| 我 走路 10 分钟 能 到 学校 . +He is playing in his room . ||| 他 在 自己 房里 玩 . +Tom wants to see you . ||| 汤姆 想见 你 . +Some of the money was stolen . ||| 一部分 钱 被 偷 了 . +Do you know the answer ? ||| 你 知道 答案 嗎 ? +She lives just across from us . ||| 她 就 住 在 我們 對 面 . +I 'd like some more water . ||| 请 再 给 我 一些 水 . +What have you come here for ? ||| 你 为什么 来 这儿 ? +Everybody plays the game of love . ||| 大家 都 玩 爱情 游戏 . +Tom and I are good friends . ||| 湯姆 和 我 是 好 朋友 . +Washing clothes is my work . ||| 洗衣服 是 我 的 工作 . +Tom lost his balance and fell down . ||| 汤姆 失去 了 平衡 摔 落下来 . +I would like to change my reservation . ||| 我 想 更改 我 的 預訂 . +The tigers escaped from the zoo . ||| 老虎 從 動物園 中 逃出 來 了 . +I threw a stone at the bird . ||| 我 扔 了 块 石头 打向 鸟儿 . +There is been an accident . ||| 曾經 有 一個 意外 . +I am the one who is sick . ||| 我 就是 那个 生病 的 人 . +I hung my hat on the peg . ||| 我 把 我 的 帽子 掛 在 掛鉤 上 . +He writes Arabic . ||| 他 写 阿拉伯文 . +My father neither drinks nor smokes . ||| 我 爸爸 既 不 喝酒 也 不 抽烟 . +Children are our future . ||| 孩子 是 我们 的 未来 . +Are you saying that you give up ? ||| 你 是 说 你 放弃 了 吗 ? +We have to try to communicate with them . ||| 我们 要 设法 跟 他们 交流 . +I had never seen a windmill until I visited the Netherlands . ||| 在 我 去 荷兰 之前 , 我 从没 见 过 风车 . +Tom closed his eyes . ||| 汤姆 闭上 了 眼睛 . +Who is that boy running toward us ? ||| 那个 朝 我们 跑过来 的 男孩 是 谁 ? +When do you eat turkey ? ||| 你 什麼 時候 吃 火雞 ? +You may go anywhere . ||| 你 可以 随便 去 哪儿 . +How much time do you spend on Facebook ? ||| 你 花 多少 時間 在 Facebook 上 ? +I am pretty busy . ||| 我 挺 忙 . +She is walking . ||| 她 在 行走 . +I want to play the guitar . ||| 我 想彈 吉他 . +I got a lot of mosquito bites . ||| 我 被 很多 的 蚊子 叮 了 . +This car needs to be washed . ||| 这辆 车 需要 清洗 . +This really is great weather . ||| 這 真的 是 個 好 天氣 . +Do you like music ? ||| 你 喜欢 音乐 吗 ? +India is a developing country . ||| 印度 是 发展中国家 . +I want beef , too . ||| " 我 也 要 牛肉 . " +The balloon was caught in the tree . ||| 這 顆 氣球 被 樹絆 住 了 . +It is clear what must be done . ||| 顯然 地 勢 必要 做 些 什麼 . +Always do right . This will gratify some people and astonish the rest . ||| 坚持 做对 的 事情 . 这 会 满足 一部分 人 同时 使 另 一部分 人 感到 惊讶 . +Keep it up ! ||| 坚持 . +Please turn off the television . ||| 请 关闭 电视机 . +He was caught cheating in the exam . ||| 他 在 考試 中 作弊 時 被 抓到 了 . +She thought that he was wasting electricity . ||| 她 認為 他 是 在 浪費 電 . +There is insufficient light to take pictures . ||| 拍照片 光线 不够 亮 . +Tom knew Mary would come . ||| 湯姆 知道 瑪麗會 來 . +Every one of her songs was a hit . ||| 她 的 每首歌 都 长期 备受 欢迎 . +Was he still here when you arrived ? ||| 當 你 到 達 的 時候 他 還 在 這裡 嗎 ? +Monday is Tom is thirtieth birthday . ||| 星期一 是 Tom 的 三十 歲 生日 . +I will wait here till he comes . ||| 我 會 在 這裡 等 直到 他 來 . +She fumbled with a piece of paper . ||| 她 摸索 著 一張 紙 . +What is your favorite movie ? ||| 你 最 喜歡 的 電影 是 哪部 ? +The shooting started around noon . ||| 拍攝 是 在 中午 十二 時 左右 開始 . +She was a genius in mathematics . ||| 她 是 个 数学 天才 . +The dictionary is of great use to me . ||| 这本 字典 对 我 很 实用 . +We will be ready in time . ||| 我们 会 及时 准备 好 . +Did you visit the Tokyo Tower ? ||| 您 参观 过 东京 塔 吗 ? +She disappeared . ||| 她 消失 了 . +I saw him playing baseball . ||| 我 看到 他 在 打 棒球 . +I object to her going there alone . ||| 我 不 同意 她 一个 人 去 那儿 . +I do not mind if I get wet . ||| 我 不介意 被 弄 濕 . +Stop resisting ! ||| 停止 抵抗 ! +She would not let up until I agreed to go to the movies with her . ||| 她 不 愿 松开 我 , 直到 我 同意 和 她 去 电影院 . +I knew that something was wrong . ||| 我 知道 有些 事 不 對 . +Tom is working hard . ||| 汤姆 在 努力 工作 . +He likes oranges . ||| 他 喜欢 橙子 . +Why did you cry ? ||| 你 為 什麼 哭 ? +Tom can not afford this . ||| 汤姆 买不起 这个 东西 . +Today is Thursday . ||| 今天 是 礼拜四 . +Women tend to live longer than men . ||| 女人 往往 比 男人 活得 更 長 . +I like short poems . ||| 我 喜歡 短 詩 . +We really enjoyed ourselves . ||| 我們 真的 玩 得 很 開心 . +Do not be afraid of making mistakes when you speak English . ||| 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I am counting how many people there are . ||| 我 正在 算有 多少 人 在 那裡 . +The bus was ten minutes late . ||| 公车 晚 了 十分钟 . +This is the best . ||| 这 是 最好 的 . +I even made Tom laugh . ||| 我 甚至 讓 湯姆 笑 了 . +What souvenir do you think she would like most ? ||| 你 觉得 她 最 想要 什么 纪念品 ? +Tom is a clever kid . ||| 汤姆 是 聪明 的 孩子 . +We invited him to our house . ||| 我們 邀請 了 他 到 我們 家 . +A glass of cold water is very refreshing in hot weather . ||| 一杯 冷水 在 暑热 的 天气 里 十分 提神 . +I want to be a computer programmer . ||| 我 想 做 一个 程序员 . +I lost face . ||| 我 丢臉 了 . +We were just about to leave when it rained . ||| 我們 正要 離開 的 時候 下雨 了 . +My knowledge of Japanese is rather poor . ||| 我 對 日文 不 大 了解 . +We could not keep from crying . ||| 我們 止不住 哭泣 . +They grow oranges in California . ||| 他们 在 加利福尼亚 种 橙子 . +Take a picture with your phone . ||| 用 你 的 手机 拍 一张 照片 . +I will show you the way . ||| 我 會 為 你 帶 路 . +Tom can not decide whether to buy a Toyota or a Ford . ||| 汤姆 不能 决定 买 丰田 还是 福特 . +She stood in front of the mirror . ||| 她 站 在 镜子 前 . +Tom was sobbing . ||| 汤姆 在 啜泣 . +It is said the house is haunted . ||| 据说 这 房子 是 个 鬼屋 . +I am staying at my aunt is . ||| 我 住 在 我 姑姑家 . +I missed the opening ceremony of the Olympics . ||| 我 错过 了 奥运会 的 开幕式 . +Tom suggested that I change the lock on my door . ||| 汤姆 建议 我 换 我 的 门锁 . +She freshened herself up before supper . ||| 她 在 晚 飯前 把 自己 梳洗打扮 了 一下 . +These pants fit me well . ||| 这些 裤子 我 穿 起来 很 合身 . +It is boring to stay at home . ||| 呆 在 家里 很 无聊 . +I think I have a question . ||| 我 覺 的 有 一個 問題 . +Tom was absent yesterday . ||| 湯姆 昨天 缺席 了 . +Could I try this on ? ||| 我 能 試 一下 這個 嗎 ? +A friend of mine is studying abroad . ||| 我 有 一位 朋友 在 國外 留學 . +Lie on your right side . ||| 躺 在 你 右邊 . +Tom is out of his mind . ||| 湯姆 失去 理智 了 . +I am glad we hired you for this job . ||| 我 很 高兴 我们 录用 了 你 来 担任 这份 工作 . +Tell me about it ! ||| 跟 我 讲讲 那件事 . +Bread is made from flour , water and yeast . ||| 面包 是 用 面粉 、 水 和 发酵粉 做 的 . +How could I be a robot ? Robots can not dream . ||| 我 怎么 可能 是 机器人 呢 ? 机器人 不会 做梦 . +She was scared to cross the road . ||| 她 怕 過 馬 路 . +An aging population will require more spending on health care . ||| 老龄化 的 人口 需要 更 多 医疗保健 支出 . +Everyone in the class climbed the hill . ||| 班上 每個 人 都 爬 上 了 這個 山坡 . +Father is going to undergo an operation . ||| 父亲 将 会 接受 手术 . +My husband is not in town . ||| 我 丈夫 没 在 城里 . +She gave the blouse a quick wash . ||| 她 很快 地 把 襯衫 洗 一 洗 . +She told him that she believed in astrology . ||| 她 告诉 了 他 自己 相信 占星术 . +I want this work completed by two o 'clock tomorrow afternoon . ||| 明天 下午 2 点 以前 , 我 希望 这 工作 完成 了 . +You are welcome . ||| 您 不必 感谢 我 . +Love your neighbors . ||| 与 邻居 相亲相爱 . +The plane is about to land . ||| 飛機 就要 降落 了 . +I advised her to come by 9 : 00 . ||| 我 建議 她 九點 前來 . +Indigenous Australians have eaten kangaroos for millennia . ||| 澳大利亚 土著 已经 吃 了 上千年 袋鼠 . +Would you mind closing the door ? ||| 你 介意 關上 門 嗎 ? +He stayed at his aunt is house . ||| 他 呆 在 他 阿姨 家 . +Tom is funeral will be this weekend . ||| 湯姆 的 葬 禮 訂 在 這 週末 . +He hit his head against a rock . ||| 他 的 头 撞倒 了 一块 岩石 . +He came several times . ||| 他 来 了 很 多次 了 . +I had a nice chat with her . ||| 我 和 她 聊得 很 愉快 . +I was not yet married at that time . ||| 那個 時候 我 還 沒有 結婚 . +You must have been surprised to meet your teacher in such a place . ||| 在 那种 地方 碰到 你 的 老师 , 你 应该 很 惊讶 吧 . +What have I ever done to Tom ? ||| 我 对 汤姆 做 了 什么 ? +Tom does not know the difference between Iraq and Iran . ||| 汤姆 不 知道 伊拉克 和 伊朗 有 什么 区别 . +My room faces the garden . ||| 我 的 房間 面向 花園 . +He has more books than I do . ||| 他 拥有 的 书 比 我 的 多 . +It is ten degrees below zero now . ||| 現在 是 零下 十度 . +She does not speak Japanese at home . ||| 她 在家 不 說 日 語 . +I can not let you give me your last ten dollars . ||| 我 不能 讓 你 給 我 你 最 後 十美 圓 . +Whose ring is that ? ||| 那 是 谁 的 环 ? +I made it myself . ||| 我 自己 做 的 . +You should read a lot of books while you are young . ||| 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +The physician prescribed his patient some medicine . ||| 医生 给 他 的 病人 开 了 一些 药 . +I do not love him any longer . ||| 我 已经 不 爱 他 了 . +I watch television in the evening . ||| 我 在 晚上 看電視 . +You people can not help yourselves . ||| 你们 这些 人 帮不了 自己 . +I will go with you as far as the bridge . ||| 我会 跟着 你 走 到 桥 那里 . +He pretends to be deaf . ||| 他 装 听不见 . +I think I have found something better . ||| 我 認為 我 找到 了 更好 的 . +Who is the man playing the piano ? ||| 那個 正在 彈 鋼琴 的 男人 是 誰 ? +I saw it in the newspaper . ||| 我 在 报纸 上 看到 了 它 . +Where are you going to eat lunch ? ||| 你 要 去 哪裡 吃 午 飯 ? +This is a Turkish tradition . ||| 這 是 個 土耳其 的 傳統 . +Do not leave the room . ||| 别 离开 房间 . +How many pictures did you buy ? ||| 你 買 了 多少 張 照片 ? +He risked losing all his fortune . ||| 他 冒 着 失去 所有 财产 的 危险 . +One man is meat is another man is poison . ||| 對 某人 有利 的 對 另外 的 人 未必 有利 . +She paid me a visit yesterday . ||| 她 昨天 来 见 我 了 . +He is pale because he is sick . ||| 他 病 了 , 所以 脸色 显得 苍白 . +He was very friendly to everybody . ||| 他 對 每個 人 都 非常 友善 . +Boston is a wonderful city . ||| 波士顿 是 一座 非常 好 的 城市 . +Tokyo is a big city . ||| 东京 是 一个 很大 的 城市 . +I am fine now . ||| 已经 没事 了 . +You can lie to everyone else , but you can not lie to yourself . ||| 你 可以 向 别人 撒谎 , 但 你 不会 向 自己 撒谎 . +He is looking forward to it . ||| 他 对此 很 期待 . +Where is your hat ? ||| 你 帽子 在 哪儿 ? +Water freezes at 0 degrees Centigrade . ||| 水 在 攝 氏 0 度 時 結成 冰 . +What did you do yesterday evening ? ||| 你 昨天晚上 做 了 什麼 ? +Tom never felt comfortable expressing his own opinion . ||| 汤姆 在 表达 自己 的 意见 的 时候 总是 很 慌张 . +My uncle gave me a camera . ||| 我 叔叔 給 了 我 一個 照相 機 . +Tom teaches me French twice a week . ||| 汤姆 每周 两次 教 我 法语 . +He is likely to be late for school . ||| 他 上学 很 可能 会 迟到 . +All that I know is that he gave up the plan . ||| 我 所 知道 的 是 他 放棄 了 這個 計劃 . +He went on reading the book as if nothing had happened . ||| 他 繼續 讀書 , 好像 什麼 事 也 沒有 發生 . +I eat breakfast every morning . ||| 我 每天 早上 吃 早餐 . +There was not anyone in the room . ||| 房間 裡 沒 有人 . +He has a round face . ||| 他 有 一張 圓 臉 . +The train leaves in ten minutes . ||| 火車 十分 鐘 後 離開 . +While we were discussing the problem , I hit upon a good idea . ||| 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 好 主意 . +This camera was made in Germany . ||| 这个 照相机 是 德国 制造 的 . +Do not throw away this magazine . I have not read it yet . ||| 这本 杂志 不要 扔 . 我 还 没看 呢 . +I have always wondered what it 'd be like to have siblings . ||| 我 总是 想 有 兄弟姐妹 会 怎么样 . +What number bus do I take to get to Waikiki ? ||| 我 乘 几路 车 去 怀基基 ? +Many people work in industrial towns . ||| 许多 人 在 工业 城市 工作 . +She wants to work at the hospital . ||| 她 想 在 医院 工作 . +I usually go to bed before ten . ||| 我 通常 在 十點 前 上床 睡覺 . +I want to become an engineer . ||| 我 想要 成為 一位 工程 師 . +I prefer apples to oranges . ||| 比起 橘子 , 我 更 喜欢 苹果 . +" I will be back , " said Tom . ||| “ 我会 回来 , ” 汤姆 说 . +He looks a bit tired , does not he ? ||| 他 看 起來 有 點累 , 不是 嗎 ? +Tom has high blood pressure . ||| 汤姆 有 高血压 . +You have got something stuck in your teeth . ||| 牙齿 卡 了 点 东西 . +I paid him a visit yesterday . ||| 我 昨天 去 见 他 了 . +I want to know how long it will take . ||| 我 想 知道 这 需要 用 多久 时间 . +The weather has been unusual this year . ||| 今年 的 天氣 一直 異常 . +Every time I read the Bible , I am deeply moved . ||| 每次 我 读 圣经 都 会 被 深深地 感动 . +He took us back in his car . ||| 他 开车 送 我们 回来 的 . +He looked after the baby . ||| 他 照顧 孩子 . +I often catch colds . ||| 我 常常 感冒 . +Keep listening . ||| 继续 听 . +Tom and I have decided to go to Australia next summer . ||| 汤姆 和 我 决定 下 个 夏天 去 澳大利亚 +I will try harder next time . ||| 下次 我 會 更加 努力 . +Both of them are in the room . ||| 他們 兩個 人 都 在 房間 裡 . +I 'd like some tea , please . ||| 請 給 我 一杯 茶 . +Doing the laundry is my job . ||| 洗衣服 是 我 的 工作 . +We are staying at our uncle is . ||| 我们 待 在 舅舅家 . +I love to make people laugh . ||| 我 喜歡 逗人 笑 . +He knows how to play the piano . ||| 他 知道 如何 彈 鋼琴 . +By the way , did you find the umbrella you said you 'd lost the other day ? ||| 对 了 , 前些时 间 你 说 伞 不见 了 , 现在 找到 了 吗 ? +The boy is wearing glasses . ||| 這個 男孩 戴著 眼鏡 . +I am using Twitter . ||| 我 在 用 Twitter . +A DNA test showed he was innocent . ||| DNA 检测 表明 , 他 是 无辜 的 . +To what extent can he be trusted ? ||| 可以 相信 他 到 什麼 程度 ? +Tom goes to school on foot . ||| 湯姆 走路 去上 學 . +Tom wanted to comfort Mary . ||| Tom 是 想着 去 安慰 Mary 的 . +He is a strange character . ||| 他 的 性情 古怪 . +Tom helped Mary move the furniture . ||| 汤姆 帮 玛丽 移动 家具 . +Let is start . ||| 我们 开始 吧 . +It seems less crowded during the week . ||| 平日 似乎 比較 不 擁擠 . +I sometimes just do not want to get out of bed in the morning . ||| 我 有时 早上 不想 下床 . +That is enough money to cover the expenses . ||| 那些 錢 足夠 支付 費用 . +I had nothing to hide . ||| 我 没什么 可 隐藏 . +He kept a diary during the trip . ||| 他 旅行 期间 , 写 了 旅游 日记 . +I need you to help me find Tom . ||| 我 需要 你 幫 我 找 湯姆 . +You should bring your passport to the bank . ||| 你 应该 带 护照 去 银行 . +This place still looks the same as it did a long time ago . ||| 這裡 就 像 在 古 時候 一樣 . +Why do not you want to tell us the truth ? ||| 為 甚麼 你 不想 告訴 我們 真相 ? +Tom has plenty of friends to help him . ||| 汤姆 有 很多 朋友 去 帮助 他 +Tom had a heart attack last year . ||| 汤姆 去年 得 了 心脏病 . +The train leaves at six . ||| 火车 6 点 出发 . +She talked childishly . ||| 她 说话 幼稚 . +That is a nice tie you are wearing . ||| 你 打 了 一條 不錯 的 領帶 . +My mother took my temperature . ||| 我 媽 媽量 了 我 的 體溫 . +Compare your answer with Tom is . ||| 比較 你 和 湯姆 的 答案 . +What I am about to say is strictly between you and me . ||| 我 要 告訴 你 的 只能 你 我 知道 . +That store sells newspapers and magazines . ||| 那家 店 卖 报纸 和 杂志 . +Tom tricked Mary into doing his work for him . ||| 汤姆 哄 玛丽 做 他 的 作业 . +He slept well last night . ||| 他 昨晚 睡 得 很 好 . +I have to take the test again . ||| 我 必須 再 考 一次 試 . +The car is not worth repairing . ||| 這車 不 值得 修 了 . +Who are the two women over there ? ||| 那边 的 两位 女士 是 谁 ? +Tom is at school , is not he ? ||| 湯姆 在 學校 裡 , 不是 麼 ? +Tom is so hot . ||| 汤姆 非常 性感 . +Tom knew that Mary was upset . ||| 汤姆 知道 玛丽 不 高兴 . +Whose car is this ? ||| 這 台汽 車 是 誰 的 ? +If you had a million dollars , what would you do ? ||| 你 有 100 万美元 的话 , 你 会 做 什么 ? +She was brought up by her grandmother . ||| 她 是 由 她 的 祖母 带大 的 . +I do not think we 'd have any chance of winning . ||| 我 认为 我们 没有 机会 赢 . +What made you come here so early ? ||| 什麼 原因 讓 你 這麼 早來 這裡 ? +Tom plays chess better than me . ||| 汤姆 下 国际象棋 比 我 好 . +There will be a math test tomorrow . ||| 明天 有 一個 數學 測驗 . +She left her son a lot of money . ||| 她 留 了 很多 钱 给 她 儿子 . +She has an eye for antiques . ||| 她 看 古董 的 眼光 很 好 . +Nothing is going his way . ||| 什么 都 没 按 他 的 路子走 . +He is the richest man on earth . ||| 他 是 世界 上 最 有 錢 的 人 . +The reporter criticized the politician . ||| 記者 批評 了 政治家 . +Why did you buy a Japanese car ? ||| 你 為 甚麼 買 日本 車 ? +I am busy looking for an apartment . ||| 我 正忙 著找 公寓 . +I am writing a letter . ||| 我 正在 寫 一封信 . +I wish I had a better memory . ||| 希望 我 的 記憶力 能 好 一點 . +Thank you very much . ||| 非常感谢 ! +He can speak French , and obviously English . ||| 他 能 说 法语 , 很 明显 还有 英语 . +There are no problems . ||| 沒有 問題 . +Will I have a scar ? ||| 我会 留 疤 吗 ? +I asked him what his name was . ||| 我 問 了 他 叫 什麼 名字 . +I always enjoy listening to classical music in my free time . ||| 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +Forewarned is forearmed . ||| 凡事 要 預先 準備 好 . +School begins at 8 : 30 a.m. ||| 學校 在 上午 八點 三十分 開始 上課 . +Tom had no reason to be angry . ||| 汤姆 没有 动怒 的 理由 . +You are still young . ||| 你 仍然 很年 輕 . +Look at the sky . ||| 看 天上 . +I do not want to hear any more of your complaining . ||| 我 不想 再 听 你 抱怨 了 . +You should go in person . ||| 你 應 該 親自 去 . +He is in charge of the department . ||| 他 負責 這個 部門 . +Which is better , red thread or white thread ? ||| 哪个 更好 , 红线 呢 还是 白线 ? +I hope that is not the case . ||| 我 希望 事情 並非 如此 . +Tom loves doing this . ||| 湯姆 喜歡 做 這事 . +I got acquainted with her in France . ||| 我 在 法國 認識 了 她 . +I explained the process to him . ||| 我 向 他 解釋 了 這個 過程 . +Choose the one you like . ||| 選 一個 你 喜歡 的 . +I am not going anywhere on Sunday . ||| 我 週日 哪裡 也 不 去 . +How long are you going to be in Boston ? ||| 你 要 在 波士顿 留 多久 ? +They climbed Mt . Fuji last week . ||| 上個月 他們 爬 了 富士山 . +It is high time you were in bed . ||| 你 早该 睡 了 . +She made the same mistake as before . ||| 她 犯 了 和 以前 同樣 的 錯誤 . +This booklet is free of charge . ||| 這本 小冊子 是 免費 的 . +Few people know how to do it . ||| 很少 有人 知道 怎么 做 . +The accident happened the day before yesterday . ||| 事故 发生 在 前天 . +I am saving up to buy a new car . ||| 我 在 省钱 买 新车 . +I live on the outskirts of Tokyo . ||| 我 住 在 東 京郊 區 . +Please call a taxi for this lady . ||| 请为 这位 女士 叫 辆 出租车 . +Tom wrote two books . ||| 汤姆 写 了 两本书 . +You are not a doctor . ||| 您 不是 医生 . +He is a friendly person . ||| 他 是 一個 友善 的 人 . +He may have missed the last train . ||| 他 可能 錯 過 了 最 後 一班 火車 . +What you said does not make sense . ||| 你 說 的 沒有 道理 . +Is not that mine ? ||| 那 是 我 的 吗 ? +Did you go to see a doctor ? ||| 你 去 看过 医生 了 吗 ? +Thank you in advance for your help . ||| 我 先 谢谢 你 的 帮忙 . +I support political reform . ||| 我 支持 政治 改革 . +Our teacher likes his new car . ||| 我們 的 老師 喜歡 他 的 新車 . +It is easy to answer this question . ||| 回答 這個 問題 很 容易 . +You should have done it earlier . It cannot be helped now . ||| 你 應 該 早點 做 的 . 現在 沒 人 可以 幫 你 . +He told me that whatever might happen , he was prepared for it . ||| 他 告诉 我 不论 发生 什么 , 他 都 准备 好 了 . +What do you say we go skiing ? ||| 我们 去 滑雪 怎么样 ? +He is very angry with you . ||| 他 對 你 非常 生氣 . +If only I could speak English ! ||| 我 要是 会 说 英语 就 好 了 . +He enjoys watching baseball games on TV . ||| 他 喜歡 看 電視 上 的 棒球 比賽 . +I can not stand this pain . ||| 我 無法 忍受 這個 痛苦 . +I can play tennis . ||| 我 會 打 網球 . +I made an apple pie for you . ||| 我 做 了 一個 蘋果 派 給 你 . +Would you mind my moving your car ? ||| 你 介意 我 移動 你 的 車 嗎 ? +Neptune is the eighth planet of the solar system . ||| 海王星 是 太阳系 第八个 行星 . +We still have plenty of time left . ||| 我們 還 剩下 很多 時間 . +It is cold there even in the summer . ||| 那裡 連 夏天 也 冷 . +Hurry up . ||| 快点 ! +Something is wrong with my camera . ||| 我 的 相機 有 毛病 . +Please bring me my bill . ||| 請 把 帳單 給 我 . +I have already finished my homework . ||| 我 已經 完成 了 我 的 作業 . +We do not want anything from you . ||| 我们 不想 从 你 身上 要 任何 东西 . +I do not know whether Tom will eat with us or not . ||| 我 不 知道 Tom 是否 和 我们 一起 吃饭 . +I came to this country for the purpose of studying music . ||| 我 來 這個 國家 的 目的 是 學習 音樂 . +The entire world desires peace . ||| 整个 世界 都 需要 和平 . +Are you finished ? ||| 你 结束 了 吗 ? +I am at home . ||| 我 在家 . +Where are you ? ||| 你 在 哪儿 ? +I have a job for you . ||| 我 有 工作 給 你 . +The truck is gone . ||| 貨車 走 了 . +Trust me . ||| 相信 我 . +May I speak to you a minute ? ||| 我 可以 和 你 講 一下 話 嗎 ? +I do not agree with you at all . ||| 我 完全 不 赞成 你 的 意见 . +Were you on time for work today ? ||| 你 今天 準 時 上班 了 嗎 ? +Tom is drinking apple juice . ||| Tom 正在 喝 蘋 果汁 . +Do you think this thing is cute ? ||| 你 覺得 這個 東西萌 嗎 ? +I succeeded in getting what I wanted . ||| 我 赢得 了 我 想要 的 . +Everybody knew she could speak English well . ||| 大家 都 知道 她 的 英语 说 得 很 好 . +Do you run every day ? ||| 你 每天 都 跑步 吗 ? +The tourists were fascinated with the exquisite scenery . ||| 觀光客 被 獨特 的 景致 所 吸引 . +Some scientists believe that the greenhouse effect is imaginary . ||| 有 的 科學家 認為 溫室 效應 是 虛構 的 . +Close your eyes . ||| 闭上 你 的 眼睛 . +The sky was completely dark . ||| 天空 完全 变黑 了 . +Here is a big map of Germany . ||| 这儿 有 张 德国 的 大 地图 . +I have heard the story . ||| 我 听说 过 那个 故事 . +How do you account for that ? ||| 你 怎么 解释 那个 ? +Bring me a dry towel . ||| 給 我 一條 乾 毛巾 . +He is the same age as me . ||| 他 和 我 同岁 . +Both brothers are musicians . ||| 两 兄弟 都 是 音乐家 . +What is the average height of the players ? ||| 选手 们 的 平均 身高 是 多少 ? +I do not know . What do you think ? ||| 我 不 知道 . 你 怎麼 想 ? +You should have been more careful . ||| 你 應 該 要 更 小心 的 . +I want to go there . ||| 我 想 去 那裡 . +Is there any chance that you will go to Australia next month ? ||| 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +My opinion is similar to yours . ||| 我 的 觀點 和 你 的 類似 . +I do not know when he will come . ||| 我 不 知道 他 什么 时候 会来 . +The law should not be violated . ||| 法律 不應 受到 侵犯 . +I can take care of myself . ||| 我 可以 照顧 自己 . +He knows a lot about foreign affairs . ||| 他 知道 很多 外國事務 . +Did Tom send you ? ||| 湯姆 派出 了 你們 嗎 ? +Only one little boy survived the traffic accident . ||| 这次 交通事故 中 只有 一个 小男孩 幸存 了 下来 . +The poor people were at the mercy of the cruel dictator . ||| 可憐 的 人民 任 憑 殘暴 的 獨裁者 處置 . +I like having breakfast with you . ||| 我 喜欢 和 你 一起 吃 早餐 . +Do you have any idea where Tom could be ? ||| 你 知道 湯姆 能 在 哪裡 嗎 ? +Who told you the news ? ||| 誰 告訴 了 你 這個 消息 ? +We have a lot of rain in June and July . ||| 六七 月份 雨 很多 . +I wanted to thank you for what you did today . ||| 我 想 为 你 今天 所 做 的 事 感谢 你 . +I signed the lease today . ||| 我 今天 签 了 租约 . +Hang on ! ||| 坚持 . +Modern ships only need a small crew . ||| 現 代船 隻 只 需要 一小 組 的 船員 . +Rome was not built in a day . ||| 罗马不是 一天 建成 的 . +Why do you want to become a nurse ? ||| 你 为什么 想 成为 护士 呢 ? +The taxi is here . ||| 出租车 到 了 . +This is a picture of my family . ||| 這 是 一張 我 的 全家福 照片 . +It is not as difficult as you think . ||| 那个 没 你 想象 的 那么 难 . +Mission accomplished . ||| 任务 完成 . +Tom saw you . ||| 湯姆 看見 你 了 . +I swear I did not do anything . ||| 我 发誓 我 什么 也 没 做 . +The patient is steadily recovering . ||| 该 病人 正 逐步 康复 . +I am thinking of going abroad next year . ||| 我 在 考虑 明年 去 国外 . +I think Tom might not want to do that . ||| 我 认为 汤姆 可能 不想 那样 做 . +Why did they turn down your proposal ? ||| 他們 為 什麼 否決 了 你 的 建議 呢 ? +This chair is ugly . ||| 這 把 椅子 很 難 看 . +I 'd like a room with a good view . ||| 我 喜欢 视野 好 的 房子 . +My aunt gave me an album . ||| 我 姑姑 給 了 我 一張 唱片 專輯 . +Tom did not go there yesterday . ||| 汤姆 昨天 没 去 那里 . +I know who you all are . ||| 我 知道 你們 都 是 誰 . +Science begins when you ask why and how . ||| 為何 如何 ? 你 疑問 的 當下 就是 科學 的 開端 . +Sulfur burns with a blue flame . ||| 硫磺 燃 燒著 藍色 的 火焰 . +Allow me to go . ||| 請 允許 我 去 . +The only thing I have now are memories . ||| 我 现在 仅 有 的 东西 就是 我 的 记忆 了 . +We are having a serious talk about your future . ||| 我们 在 严肃 地 谈论 你 的 未来 . +I am afraid I have to go now . ||| 恐怕 我 现在 得 走 了 . +Ca not you discount it a little ? ||| 你 不能 打 一點 折 嗎 ? +I am glad the thief was caught . ||| 抓 到 小偷 真是 太好了 . +Let is play tennis after school . ||| 讓 我們 放學 後 打 網球 . +She wore a beautiful dress . ||| 她 穿著 漂亮 的 洋裝 . +You have gained weight , have not you ? ||| 你 的 體重 增加 了 , 不是 嗎 ? +We have not lost much . ||| 我們 沒有 失去 太多 . +I wish that Tom would go home . ||| 我 希望 湯姆 回家 . +She made coffee for all of us . ||| 她 為 我們 所有 的 人 煮 咖啡 . +I know you are busy , too . ||| 我 知道 , 您 也 很忙 . +When I was your age , Pluto was a planet . ||| 當 我 在 你 這個 年紀時 , 冥王星 是 行星 . +I stayed at home last night . ||| 我 昨晚 待 在家 裡 . +Take off your hat when you enter a classroom . ||| 进 教室 时 请 脱下 帽子 . +You are not as smart as me . ||| 你 没有 我 聪明 . +Tom jumped up from his chair . ||| 湯姆 從 他 的 椅子 上 跳 了 起來 . +The old church on the hill dates back to the twelfth century . ||| 山上 的 老 教堂 的 歷史 可以 追溯到 12 世紀 . +He is going to leave tomorrow afternoon . ||| 他 將 在 明天 下午 離開 . +Unbelievable ! ||| 難以 置信 ! +Tom put down his pencil . ||| 汤姆 放下 他 的 铅笔 . +He got hurt in the game yesterday . ||| 他 昨天 在 這場 比賽 中 受 了 傷 . +He had a second helping of soup . ||| 他 又 喝 了 一碗 湯 . +The bank was held up a week ago . ||| 這家 銀行 一 週前 被 搶劫 . +Do you have a better explanation ? ||| 你 有 更好 的 理由 嗎 ? +I seem to have a temperature . ||| 我 好像 发烧 了 . +The teacher said that the earth is round . ||| 老師 說 地球 是 圓 的 . +She gets good marks in English . ||| 她 取得 了 優異 的 英語 成績 . +Tom says he is willing to help . ||| 汤姆 说 他 愿意 帮忙 . +Tom and Mary have a lot in common . ||| 汤姆 和玛丽 有 很多 共同点 . +Even if I were rich , I would not give him money . ||| 就算 我 富有 , 我 也 不会 给 他 钱 . +Which team are you a fan of ? ||| 你 是 哪 一隊 的 迷 ? +Write something . ||| 寫點 什麼 . +Wait here till I come back . ||| 在 這兒 等著 , 直到 我 回來 . +Who solved the hard problem ? ||| 誰 解決 了 這個 難題 ? +I live in this neighborhood . ||| 我 住 在 這 附近 . +I woke up at 2 : 30 . ||| 我 在 2 : 30 起床 . +Sunday is not a workday for me . ||| 我 在 星期日 不 工作 . +He never drinks alcohol . ||| 他 從 不 喝酒 . +Stand back from the rope . ||| 退到 繩子 後 面 . +She was always quarreling with her parents . ||| 她 总和 她 父母 吵架 . +Tom is on the bus to the city . ||| 湯姆 搭 公車 去 市區 . +I live in this area . ||| 我 住 在 这区 . +Tickets are available now . ||| 现在 有票 . +I looked around me . ||| 我 看 了 看 周圍 . +It is fun to ride a motorcycle . ||| 騎 摩托 車 很 有趣 . +What language is this ? ||| 這 是 什麼 語言 ? +She went out to buy some food . ||| 她 出去 買 些 食物 了 . +He is leaving for China tomorrow . ||| 他 明天 出发 去 中国 . +Why do not you quit Facebook ? ||| 你 為 什麼 不 戒掉 Facebook ? +I would like to be alone if you do not mind . ||| 如果 你 不介意 的话 , 我 想 一个 人 呆 着 . +Everyone in her class likes her . ||| 她 班上 的 每個 人 都 喜歡 她 . +What is new ? ||| 有 什么 新鲜事 吗 ? +Somebody had drowned her in the bathtub . ||| 有人 把 她 淹死 在 浴缸 裡 . +The horse stopped and refused to go any further . ||| 馬 停 了 下來 , 而且 拒絕 移動 . +I arrived at Narita Airport this morning . ||| 我 今天 早上 抵達 了 成田 機場 . +I knew you 'd find Tom . ||| 我 知道 你 会 找到 汤姆 . +We are having an office party tomorrow . ||| 我們 明天 有個 辦 公室 派 對 . +She is watering the flowers . ||| 她 正在 澆 花 . +I returned the knife which I had borrowed . ||| 我 把 我 借来 的 刀 还 了 . +She is Tom is sister . ||| 她 是 Tom 的 姐姐 . +Your proposal is a bit extreme . ||| 你 的 建議 有 點 極 端 . +Do not make me stand here . ||| 別 讓 我 一直 站 在 這裡 . +Can I use my medical insurance ? ||| 我 可以 使用 我 的 醫療 保險 嗎 ? +I asked Tom why he was not here yesterday . ||| 我 问 汤姆 为什么 他 昨天 没 在 这里 +Thank you for yesterday . ||| 昨天 的 事 真的 要 谢谢您 了 . +We will die sooner or later . ||| 我們 早晚 要死 . +I must sell my house . ||| 我 得卖 我 的 房子 . +Tom found a skeleton in the cave . ||| 汤姆 在 洞穴 里 找到 了 一具 骨架 . +Our native language is Japanese . ||| 我們 的 母語 是 日 語 . +Acid rain is not a natural phenomenon . ||| 酸雨 不是 自然 现象 . +Is your school in this town ? ||| 你 的 学校 在 这个 城市 吗 ? +What is the matter with you ? ||| 你 到底 怎么回事 嘛 +He threw a stone into the pond . ||| 他 扔 一塊 石頭 到 池塘 裡 . +" Where were you ? " " I was at a friend is house . " ||| “ 你 在 哪里 ? ” “ 我 在 一个 朋友家 . ” +I do not have that kind of time . ||| 我 可 沒有 那 閒 空 . +What do you do for a living ? ||| 您 做 什麼 工作 為 生 ? +She has put on weight recently . ||| 她 最近 增加 了體 重 . +I admit this may not be the best way of doing it . ||| 我 承认 这 可能 不是 最好 的 方法 . +I warned him not to be late . ||| 我 警告 了 他 不要 遲 到 . +Why did not you lock the door ? ||| 你 為 甚麼 不 鎖 門 ? +Why do not you stay here ? ||| 你 为什么 不 留在 这里 ? +I need your advice on what I should do next . ||| 我 需要 你 指導 我 接下 來 該 做 甚麼 . +I grew up in this small town . ||| 我 在 這個 小鎮 上 長大 的 . +I hope to see Tom soon . ||| 我 希望 能 早点 看到 汤姆 . +He gave us the signal to begin . ||| 他 給 了 我們 開始 的 信號 . +He reads a great deal . ||| 他 读 很多 书 . +The meaning of this sentence is obscure . ||| 这 句句 子 意思 模糊 . +He is my Mr. Right . ||| 他 是 我 的 如意郎君 . +This toy is made of wood . ||| 這 玩具 是 用 木頭 做 的 . +I do not have a pencil . ||| 我 沒 鉛 筆 . +Ask him his name . ||| 问 他 一下 他 的 名字 . +I would like to speak English fluently . ||| 我 想 講 一口 流利 的 英語 . +The prisoner was brought before a judge . ||| 這個 囚犯 被 帶到 法官 面前 . +That book is over here . ||| 那本书 在 这里 . +Tom and Mary both know who you are . ||| 湯姆 和 瑪麗 都 知道 你 是 誰 . +I talked to Tom last night . ||| 昨晚 我 和 汤姆 说话 了 . +This ticket is valid for three days . ||| 這 張 票 的 有效期 是 三天 . +I am here on business . ||| 我 在 這裡 出差 . +Do you have a temperature ? ||| 你 發燒 了 嗎 ? +I will bring wine . ||| 我会 带酒 来 . +Finally , he achieved his goal . ||| 他 终于 达到 了 自己 的 目标 . +Put the book there . ||| 把 書 放在 那裡 . +We want Tom . ||| 我们 想要 汤姆 . +He is three years older than she is . ||| 他 比 她 大 三岁 . +Patience is sometimes the most effective weapon . ||| 耐心 有时候 是 最 有效 的 武器 . +English is studied in Japan . ||| 在 日本 的 人 學習 英語 . +I think I can . ||| 我 想 我 可以 . +I will be back tomorrow . ||| 我 明天 回來 . +Just relax . ||| 放松 点 吧 . +He proposed a reform in the educational system . ||| 他 提议 对 教育 系统 进行 改革 . +There is an apple on the table . ||| 桌上 有个 苹果 . +Can you lend me your bicycle ? ||| 你 能 把 你 的 自行车 借给 我 吗 ? +How much is four times six ? ||| 6 乘以 4 是 多少 ? +Where do I pay for the gas ? ||| 我 该 在 哪儿 付 煤气费 ? +" Who is it ? " " It is your mother . " ||| “ 是 谁 ? ” “ 是 你 妈妈 . ” +I do not understand . ||| 我 不 懂 . +I know where I am going next . ||| 我 知道 我 接下 來 去 哪裡 . +Write your name in capital letters . ||| 写下 你 名字 的 大写字母 . +I know you are learning French at school . ||| 我 知道 你 在 學校 學法 語 . +Remember that I outrank you . ||| 记住 我 的 级别 在 你 的 之上 . +Doing that will not take long . ||| 做起 來 不 會 很久 . +She gets up late on Sunday mornings . ||| 她 每 週日 早上 很 晚 起床 . +Who is your favorite DJ ? ||| 谁 是 你 最 喜爱 的 DJ ? +This cat does not chase mice . ||| 这 只 猫 不 抓 老鼠 . +Tom is an extraordinary man . ||| 汤姆 是 个 不 寻常 的 人 . +I have not seen him for a long time . ||| 我 很久没 见 过 他 了 . +Watch out for cars when you cross the street . ||| 當 你 過 馬路 的 時候 要 當心 汽車 . +Do you have an extra English dictionary by any chance ? ||| 您 碰巧 有 一本 額 外 的 英文 字典 嗎 ? +I have changed my website is layout . ||| 我 改 了 一下 我 的 网站 的 布局 . +If you get sleepy , let me know . ||| 困 了 的话 就 说 哦 . +I would like to finish the work on my own . ||| 我 想 自己 把 工作 做 完 . +That movie is worth seeing . ||| 那 部 电影 值得一看 . +It is as cold as ice . ||| 它 冷 得 像 冰 一樣 . +We took strong measures to prevent it . ||| 我们 使用 了 强大 的 措施 来 预防 . +Tom will likely never do that again . ||| 湯姆 不 太 會 再 去 做 那事 了 . +I am already full , thank you . ||| 我 已经 很饱 了 , 谢谢 . +Do you go to school on Saturday ? ||| 你 星期六 去 上 學 嗎 ? +I noticed Tom was smiling . ||| 我 注意 到 汤姆 在 笑 . +Tell me what you have in your hand . ||| 告诉 我 你 手里 有 什么 . +Here comes the train . ||| 火車 來 了 . +Are you a wizard ? ||| 你 是 个 术士 吗 ? +Wine is made from grapes . ||| 葡萄酒 是 用 葡萄 做成 的 . +How old is your son ? ||| 你 兒子 幾歲 ? +My sister married her high school classmate . ||| 我 的 姐姐 嫁給 了 她 的 高中 同學 . +Even though I enjoy bowling , I have not gone bowling recently . ||| 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I consider you one of my closest friends . ||| 我 把 你 视为 我 最 要 好 的 朋友 之一 . +He is at her side . ||| 他 在 她 的 旁邊 . +What do you plan to do ? ||| 你 打算 怎麼 辦 ? +I received an invitation . ||| 我 收到 了 一张 请帖 . +I was learning . ||| 我 在 學習 . +He narrowly escaped being killed . ||| 他 險 些 被 殺害 . +I met a Smith at the party . ||| 我 在 聚会 上见 了 史密斯 . +You look just like your older brother . ||| 你 看起来 很 像 你 的 哥哥 . +I am an honest person . ||| 我 是 个 老实人 . +Tom is a real good man . ||| 汤姆 是 个 很好 的 人 . +Cherry trees are now in bloom in Washington . ||| 华盛顿 的 樱花 现在 开放 . +My mother has good handwriting . ||| 我 母親 的 筆跡 很 好看 . +May I have some more coffee ? ||| 我 可以 再 要 些 咖啡 嗎 ? +I feel like crying . ||| 我 想 哭 . +It is all my fault . ||| 都 是 我 的 错 . +We were just talking about you when you called . ||| 當 你 打 電話 來 時 , 我們 正在 談論 你 . +I believed you . ||| 我 相信 了 你 . +You can come at any time . ||| 你 隨時 可以 來 . +Suddenly , I heard shouting . ||| 突然 , 我 听到 了 一声 喊叫 . +If possible , I would like to travel around the world . ||| 如果 可能 的话 , 我 想 环游世界 . +The pianist played two encores . ||| 這位 鋼 琴家 演奏 了 兩首 安 可曲 . +That is rather unexpected . ||| 这 真是 很 意外 . +I saw him reading a book . ||| 我 看見 他 在 讀 一本 書 . +Vote for Tom . ||| 投票 給 湯姆 . +Let is go and see as many things as we can . ||| 我们 走 , 尽可能 多 看点 东西 . +The truth is that nothing is totally true or false . ||| 真相 是 沒有 甚麼 完全 正確 或 錯誤 . +You are the only one who can protect them . ||| 你 是 唯一 能 保护 他们 的 . +Tom could not control himself . ||| 汤姆 不能自已 . +This is not important . ||| 这 不 重要 . +I am sorry , but I can not hear you well . ||| 對 不起 , 但 我 聽 不 太 清楚 你 說 話 . +I always catch colds in the winter . ||| 我 在 冬季 總是 感冒 . +How is work ? ||| 工作 怎么样 ? +There is a spoon missing . ||| 少 了 一把 勺子 . +The days are getting longer and longer . ||| 白天 漸漸 地 越來越 長 . +Do you have anything to declare ? ||| 你 有 任何 要 申報 的 東西 嗎 ? +Were you in Boston for a long time ? ||| 你 在 波士顿 待 了 很久 吗 ? +I have to call Tom . ||| 我 得 给 汤姆 打电话 . +I saw something strange in the sky . ||| 我 看见 天上 有 奇怪 的 东西 . +A lot of trees were cut down . ||| 很多 树 被 砍倒 . +He can not help you . ||| 他 不能 幫 你 . +What horrible weather ! ||| 多么 糟糕 的 天气 啊 ! +I am no longer your assistant . ||| 我 不再 是 你 的 助手 了 . +The policeman told me that the last bus leaves at ten . ||| 警察 告诉 我 巴士 的 末班车 在 十点 出发 . +I have no secrets from you . ||| 我 對 你 毫無隱瞞 . +She got all dolled up for her big date . ||| 为了 她 的 重要 约会 , 她 精心 打扮 了 一下 . +Tom studied French for three years . ||| 汤姆 学 了 三年 法语 . +Is the bath clean ? ||| 浴室 干净 吗 ? +I wrote it all down . ||| 我 全 写 下来 了 . +It is already eleven . ||| 已经 是 11 点 了 . +When was it finished ? ||| 是 什么 时候 完成 的 ? +Will you send for a doctor ? ||| 你 會 派 人 去 請 醫生 來 嗎 ? +Did you go anywhere for the summer ? ||| 你 夏天 去 了 任何 地方 嗎 ? +People should be dancing . ||| 人們 應該 在 跳舞 . +I have a lot of friends to help me . ||| 我 有 很多 朋友 帮 我 . +There are so many people at this concert . ||| 這場 演唱 會 的 人 真多 . +I like taking walks . ||| 我 喜欢 散步 . +This camera is cheap . ||| 这个 相机 很 便宜 . +Please let me off at the next stop . ||| 请 在 下 一站 让 我 下车 . +We do not do it very often . ||| 我们 不常 做 . +We had a good time playing cards . ||| 我們 打牌 玩 得 很 開心 . +I am an honest person . ||| 我 是 个 老实人 . +After a long argument , I finally persuaded her to go camping . ||| 經過 長久 的 爭論 , 我 終 於 說 服 了 她 去 露營 . +Did you hear the news ? ||| 你 听到 新闻 了 吗 ? +I do not like the way he speaks . ||| 我 不 喜歡 他 說 的 話 . +Do you believe there are ghosts ? ||| 你 相信 有 幽灵 吗 ? +I want to lose weight . ||| 我 想 减肥 . +I will telephone you every night . ||| 我 每晚 都 給 你 打 電話 . +Tom is girlfriend threatened to leave him . ||| 汤姆 的 女朋友 威胁 要 离开 他 . +Have you finished writing the letter yet ? ||| 你 信 寫 完 了 嗎 ? +She is a pretty girl . ||| 她 是 一個 漂亮 的 女孩 . +It is next to impossible to finish it in a day . ||| 在 一天 之内 完成 它 几乎 是 不 可能 的 . +His room is always tidy . ||| 他 的 房間 總是 很 整齊 . +You must hurry up . ||| 您 要 赶快 些 . +She finds it a little distasteful . ||| 她 发现 这 有点 令 她 不快 . +She applied her mind to her new job . ||| 她 专注 在 她 的 新 工作 上 . +Education begins at home . ||| 教育 从 家庭 开始 . +I am really sorry to hear that . ||| 听到 这样 的 消息 我 真的 很 难过 . +They are kids . ||| 他们 是 孩子 . +He decided to quit smoking . ||| 他 決定 戒菸 了 . +Do not be afraid of barking dogs . ||| 別 怕 吠 犬 . +She made a mess of the work . ||| 她 工作 做 得 亂 七八 糟 . +Tom began talking . ||| 汤姆 开始 说话 . +My father is going for a walk in the park . ||| 我 父親 要去 公園 裡 走 . +Please show me your injured arm . ||| 請 讓 我 看看 你 受傷 的 手臂 . +I interpreted her silence as a refusal . ||| 我 認為 她 的 沉默 就是 表示 拒絕 . +She likes oranges . ||| 她 喜欢 橙子 . +What are you going to do tonight ? ||| 你 今晚 要 做 什麼 ? +I almost did not visit Australia . ||| 我 差点 没 去 澳大利亚 +Have you done all your homework ? ||| 你 做 了 所有 的 功課 嗎 ? +Please tell me where to go next . ||| 請 告訴 我 下 一步 去 哪裡 . +Better luck next time . ||| 祝 你 下 一次 好运 . +He probably will not come . ||| 他 可能 不会 来 了 . +She said she had a cold . ||| 她 說 她 感冒 了 . +Tom says he has a plan . ||| 汤姆 说 他 有个 计划 . +She lived a long life . ||| 她 活 了 很久 . +What time do you wake up every day ? ||| 你 每天 幾點 起床 ? +He was very good at playing tennis . ||| 他 打网球 打 得 很 好 . +They wash their hands with soap . ||| 他们 用 肥皂 洗手 . +I found the bed quite comfortable . ||| 我 覺得 這 張 床 相當 地 舒適 . +My aunt gave me a camera . ||| 我 的 阿姨 給 了 我 一台 攝影 機 . +Stop fooling around . ||| 不要 隨便 開 玩笑 . +Put away your books and notebooks . ||| 把 你 的 書 和 筆記 本 收起 來 . +He denied having written to me . ||| 他 否認 曾 寫信 給 我 . +Someone is standing behind the wall . ||| 有人 站 在 墙后 . +Everyone knew that Tom is French was good . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +Winter is over and spring has come . ||| 冬天 結束 了 春天 已經 來 了 . +You must choose . ||| 你 必须 选择 . +Do not be afraid of making mistakes when you speak English . ||| 說 英語 的 時候 不要 怕 犯 錯 . +People of all ages like this song . ||| 这 首歌 老少皆宜 . +The room originally had no furniture . ||| 本来 这 间 房间 里 没有 家具 . +Here is your dog . Where is mine ? ||| 这 是 你 的 狗 . 我 的 呢 ? +I can barely see you . ||| 我 幾乎 看不見 你 . +Your team is stronger than ours . ||| 你們 的 隊伍 比 我們 的 強 . +Swimming is good for your health . ||| 游泳 對 你 的 健康 很 好 . +Car exhaust causes serious pollution in towns . ||| 汽车尾气 在城镇 里 造成 了 严重 的 污染 . +She complained that my salary was low . ||| 她 抱怨 我 的 薪水 很 低 . +She is good at speaking English . ||| 她 擅長 說 英文 . +You are a good painter , are not you ? ||| 你 是 個 很棒 的 畫家 , 不是 嗎 ? +Do you believe in ghosts ? ||| 你 相信 有 幽灵 吗 ? +The lion is stalking its prey . ||| 狮子 在 跟踪 它 的 猎物 . +I do not know which button to push . ||| 我 不 知道 要 按 哪個 按 鈕 . +Tom passed away last night . ||| 汤姆 在 昨晚 去世 了 . +I know your older brother quite well . ||| 我 跟 你 哥哥 很熟 . +It is improved . ||| 它 有 改善 了 . +Call me , please . ||| 请 给 我 打电话 . +Tom got first prize , did not he ? ||| 湯姆 得 了 第一名 , 不是 嗎 ? +Why do you study every day ? ||| 为什么 你 每天 都 学习 呢 ? +Are you still at the office ? ||| 你 還 在 辦 公室 裡 嗎 ? +How long have you been here ? ||| 你 在 這裡 多久 了 ? +Could you put it in plain language ? ||| 您 可以 简单 点儿 说 吗 ? +I am at home . ||| 我 在家 裡 . +The total comes to 3,000 yen . ||| 总共 是 3000 日元 . +He ate the whole apple . ||| 他 把 整个 苹果 都 吃 了 . +You will need their help . ||| 你 会 需要 他们 的 帮助 . +The gang was planning a robbery . ||| 這 夥 人 計劃 搶劫 . +He is getting along with his neighborhood . ||| 他 與 他 的 鄰居 相處 . +Tom went to Boston to buy a painting . ||| 湯姆 去 波士 頓 買 一幅 畫 . +He was leaning against the wall . ||| 他 靠著 牆 . +He will reach Hakodate tonight . ||| 他 今晚 將 抵達 函館 . +I noticed a note on my desk , but I do not know who wrote it . ||| 我 發現 了 我 辦 公 桌上 有 張 字 條 , 但是 我 不 知道 是 誰 寫 的 . +Are you sure ? ||| 你 确定 吗 ? +There was nothing that I could do at that time . ||| 当时 我 什么 都 不能 做 . +Do not eat like a pig . ||| 别 像 猪 一样 猛吃 东西 . +He got 90 % in English . ||| 他 英文 得到 了 九 十分 . +I do not want to have this fight . ||| 我 不想 打 这 架 . +My memory failed me . I just could not remember his name . ||| 我 的 記性 不好 . 我 簡直 不 記得 他 的 名字 了 . +Tom needs Mary is help . ||| 湯姆 需要 瑪麗 的 幫助 . +May I pay with a travelers ' check ? ||| 我 可以 用 旅行支票 支付 嗎 ? +I took it for granted that he would keep his word . ||| 我 理所 當然 地 認為 他 會 履行 諾 言 . +I am not wearing pants . ||| 我 没 穿 裤子 +Wait ! ||| 等 一下 ! +Tom was a little overweight when he was a child . ||| 湯姆 在 小时候 有 點 超重 . +No other mountain in the world is as tall as Mt . Everest . ||| 世界 上 任何 山峰 都 达 不到 珠穆 朗 瑪峰 的 高度 . +Can you help me wash these dishes ? ||| 你 能 幫 我 洗 這些 碗 盤 嗎 ? +We get together once a year . ||| 我們 一年 聚 一次 . +The talks will deal with the problem of pollution . ||| 这场 谈论 即将 对 污染 问题 展开讨论 . +I really liked the gift you gave me . ||| 我 真 喜歡 你 給 我 的 禮物 . +Long time , no see . ||| 真是 好久不见 啊 +I am not afraid of death . ||| 我 不怕死 . +She must have studied very hard . ||| 她 一定 很 用功 讀書 . +You ought to have come to our party . ||| 你 應 該 到 我們 的 派對 的 . +I lost my job and I have no money . I am at my wit is end . ||| 我 失業 又 沒錢 . 真 不知 該何 去 何 從 . +The man must work . ||| 男人 应该 工作 . +She is what we call a bookworm . ||| 她 就是 所谓 的 书虫 . +We ordered too much food . ||| 我們 點 太 多 食物 了 . +I arrived two weeks ago . ||| 我 在 兩 週前 到 了 . +It seems that the only time he is not eating is when he is sleeping . ||| 看来 他 只有 在 睡觉时 不吃 东西 . +Neither of those two students passed the test . ||| 兩個 學生 都 沒 通過 考試 . +Many of the user reviews on Amazon are fake . ||| 亚马逊 网站 上 的 许多 用户 评论 都 是 虚假 的 . +Second semester has ended . ||| 第二 學期 結束 了 . +The food tasted slightly of garlic . ||| 這個 食物 嚐 起 來 有 一 點 大蒜 味 . +She is got a good eye for paintings . ||| 她 對 繪畫 有 很好 的 鑑賞 力 . +Why did you run away ? ||| 你 為 什麼 逃走 ? +How did Tom talk Mary into babysitting his children ? ||| 汤姆 是 怎么 说服 玛丽 照顾 他 的 小孩 的 呢 ? +We are not as young as Tom . ||| 我们 不再 像 汤姆 那样 年轻 . +There are no comments yet . ||| 還 沒有 任何 評論 . +Unbelievable ! ||| 难以置信 ! +Tom pulled Mary out of the water . ||| Tom 把 Mary 拉 出水 +We are not afraid of death . ||| 我们 不怕死 . +I do not mind hot weather . ||| 我 不在乎 炎熱 的 天氣 . +Would you like a cup of coffee ? ||| 你 要 來 杯 咖啡 嗎 ? +Shut the door . ||| 不要 把门 开 着 . +I have class tomorrow . ||| 我 明天 有 课 . +Why are you not doing it ? ||| 你 为什么 不 做 ? +Fresh food is wonderful . ||| 新鮮 的 食物 最 棒 了 . +I do not know what you mean . ||| 我 不 懂 你 什么 意思 . +Are you sure Tom is happy ? ||| 你 確定 湯姆 高興 嗎 ? +I am completely exhausted . ||| 我 完全 地筋 疲力 盡 了 . +I hope I will see you again soon . ||| 我 希望 我 會 很快 再 見 到 你 . +Anything you say may be held against you in a court of law . ||| 你 所说 的 一切 都 将 成为 呈 堂 证供 . +Tom , are you okay ? ||| 汤姆 , 你 还好 吧 ? +Am I supposed to help Tom ? ||| 我 该 帮 汤姆 吗 ? +She made a point of visiting me . ||| 她 特地 來 拜訪 我 . +Tom clapped his hands together . ||| 湯姆 拍 了 手 . +You are about three days late . ||| 你 大 約 遅 了 三天 . +He listened with his ear to the door . ||| 他 把 耳朵 貼 在 門上 聽 . +Get down on the floor ! ||| 趴在 地上 ! +I have had to do everything by myself . ||| 我 必须 靠 自己 做 所有 事 . +" Do you know when they will arrive ? " " At eleven @-@ thirty this evening . " ||| 你 知道 他们 什么 时候 到 吗 ? 今晚 11 点 半 . +He brought me to the bus stop . ||| 他 帶 我 到 車站 . +You made it . ||| 你 做到 了 . +He brought his lunch today . ||| 他 今天 带 了 午饭 . +Her toy was broken by her little sister . ||| 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +I paid $ 200 in taxes . ||| 我 付 了 兩 百元 含稅 . +What is your name ? ||| 你 叫 什么 名字 ? +Ostriches can not fly . ||| 鴕鳥 不 會 飛 . +I told her not to let go of the rope , but she did . ||| 我 叫 她 不要 松开 绳子 , 但是 她 做 了 . +I am in love with her . ||| 我 愛 上 她 了 . +He put on the black coat . ||| 他 穿 上 了 黑色 的 外套 . +We found the front door locked . ||| 我們 發現 前門 被 鎖上 了 . +I saw the sunrise . ||| 我 看 了 日出 . +He spent the night at his uncle is place . ||| 他 在 他 舅舅 那 裏 過 夜 . +They built a bridge across the river . ||| 他們 建 了 一座 橫 跨 河流 的 橋 . +Do Japanese people eat sushi every day ? ||| 日本 人 每天 都 会 吃 寿司 吗 ? +He is to blame for the failure . ||| 失败 的 责任 在 他 . +Prepare yourself for the future . ||| 为 将来 做 准备 吧 . +The school is five kilometers from my home . ||| 學校 離 我家 有 五公里 遠 . +Tom said that he is considered quitting his job . ||| 汤姆 说 他 考虑 辞职 . +I love sports . ||| 我 喜歡 運動 . +Who is your girlfriend ? ||| 你 女朋友 是 谁 ? +Let is stay here tonight . ||| 讓 我們 今晚 留在 這裡 吧 . +This is the place where the battle took place . ||| 这 是 战斗 发生 的 地方 . +Maybe Tom just got nervous . ||| 可能 汤姆 紧张 了 . +How much does this umbrella cost ? ||| 這 把 傘 多少 錢 ? +Eating lunch with you would make me happy . ||| 跟 你 一起 吃 午 飯 會 讓 我 高興 . +Put this jacket on , and you will be much warmer . ||| 穿 上 外套 吧 ! 你 會 暖 一些 . +She broke the window on purpose . ||| 她 故意 把 窗戶 弄壞 了 . +She has a good command of English though she was brought up in Japan . ||| 雖然 她 在 日本 被 撫養 長大 , 但是 她 精通 英語 . +Tom is on the go day and night . ||| 汤姆 日夜兼程 . +He is in London on business now . ||| 他 現在 在 倫敦 洽 公 . +Tom saw the file . ||| 湯姆 看 了 文件 . +Later he wrote to the president . ||| 他 后来 写信给 总统 . +Tom knows the difference . ||| 湯姆 知道 不同 之處 . +He is about the same age as you . ||| 他 跟 您 年纪 差不多 . +Someone called . ||| 有人 打電話來 . +I do not want to go to school . ||| 我 不想 去 学校 . +My father is an office worker . ||| 我 父親 是 一名 辦 公室 職員 . +I am telling you this confidentially . ||| 这个 我 只 和 你 说 哦 . +I do not want any bananas at all . ||| 我 一個 香蕉 也 不要 . +You should not have paid the bill . ||| 你 本來 不 應該 付賬 的 . +I am on the balcony . ||| 我 在 陽 臺 上 . +The boy is kind . ||| 他 是 个 好孩子 . +They decided to build a bridge . ||| 他們 決定 建 一座 橋 . +These flowers you see are roses . ||| 你 看到 的 這些 花 是 玫瑰 . +Tom planted three apple trees in his yard . ||| 汤姆 在 他 的 院子 里 种 了 三棵 苹果树 . +Let is hope she comes . ||| 讓 我們 祈盼 她 會 來 . +This house is not for sale . ||| 这 房子 不 出售 . +Tom looked around and realized he was lost . ||| 汤姆 环顾四周 , 发现自己 迷路 了 . +We just need a plan . ||| 我們 只是 需要 個 計畫 . +I did not get along with her . ||| 我 沒有 和 她 相處 過 . +That will not make any difference . ||| 这 没有 任何 区别 . +He wishes to become a doctor . ||| 他 希望 成為 一名 醫生 . +We are in the era of atomic energy . ||| 我們 身處 核能 時代 . +Yesterday was the last day of school . ||| 昨天 是 最后 一天 上学 . +I got up early yesterday . ||| 昨天 我 很早 起床 . +We watched the soccer game on TV . ||| 我們 看 了 電視 上 的 足球 比賽 . +Why did not you follow my advice ? ||| 你 為 什麼 不 聽 我 的 忠告 ? +Tom is going crazy . ||| 汤姆 要 发疯 . +There is something that I want to tell you . ||| 有件 事情 我 要 对 你 说 . +Let bygones be bygones . ||| 既往不咎 . +It is great ! You will laugh for sure . ||| 太棒了 ! 你 一定 會 笑 的 . +I do not understand what he said . ||| 我 不 明白 他 说 的话 . +The bus is running about ten minutes late . ||| 公交 車 晚 點 了 十分 鐘 . +I miss him . ||| 我 想念 他 . +How do you pronounce this word ? ||| 你们 怎么 读 这个 词 ? +Tom wants to spend more time with his family . ||| 汤姆 想 多把 时间 花 在 他 的 家庭 上 . +She wants to know who sent the flowers . ||| 她 想 知道 是 谁 送 的 花 . +The family is watching a movie together . ||| 这 一家人 一起 看 电影 . +The Amazon is fed by a large number of tributaries . ||| 亚马逊河 有 很多 支流 . +Do not be so childish . ||| 不要 那么 幼稚 . +I have problems , just like everybody else . ||| 我 有 问题 , 就 像 其他人 一样 . +Did you go to the art exhibition ? ||| 你 去 看 藝術 展覽 了 嗎 ? +Tom could have dealt with the problem in a better way . ||| 汤姆 本 可以 用 更好 的 方式 处理 问题 . +I am thrilled . ||| 我 激動 不已 . +Go up the stairs . ||| 上楼 . +How is the weather there ? ||| 那里 的 气候 怎么样 ? +I hope you will get well soon . ||| 我 希望 你 很快 就 會 好 . +Are you certain ? ||| 你 确定 ? +Please come back home . ||| 請 回家 . +More and more people are moving to urban areas . ||| 越來越 多 的 人 遷往 鄉村 . +I am busy getting ready for tomorrow . ||| 我 正忙 著為 明天 作 準備 . +Are there any questions ? ||| 有 什么 问题 吗 ? +I thought Tom had heard us . ||| 我 觉得 汤姆 听说 过 我们 . +You are turning red . ||| 你 脸红 了 . +I have to write a letter . Do you have some paper ? ||| 我 需要 写 一封信 . 你 有 纸 吗 ? +We tried to stop you . ||| 我們 試著 阻止 你 . +We are boys . ||| 我們 是 男孩 . +Tom picked up the book . ||| 汤姆 捡起 了 书 +I changed trains at Tokyo Station . ||| 我 在 東京 站換 火車 . +Tom is waiting for Mary to come back . ||| 汤姆 正在 等 着 玛丽 回来 . +I use Twitter . ||| 我 用 Twitter . +I am sixteen years old . ||| 我 16 岁 了 . +Do not give up ! ||| 不要 放棄 ! +Can your brother drive a car ? ||| 你 弟弟 會 開車 嗎 ? +Where is the nearest telephone box ? ||| 最近 的 電話 亭 在 哪裡 ? +He does not have any friends . ||| 他 一个 朋友 都 没有 . +Did you enjoy the party yesterday ? ||| 昨天 的 派 對 你 玩 得 開心 嗎 ? +She gave me plenty to eat . ||| 她 給 了 我 很多 吃 的 東西 . +May I take your picture ? ||| 我 可以 幫 你 照相 嗎 ? +He played the piano and she sang . ||| 他 彈 鋼琴 , 她 唱歌 . +I am going to watch TV this evening . ||| 今天 晚上 我 打算 看电视 . +Bring me the dictionary . ||| 把 那本 詞典 遞 給 我 . +He was jealous of my success . ||| 他 嫉妒 我 的 成功 . +My father will retire at the age of sixty . ||| 我 父亲 六十岁 就要 退休 了 . +I can not remember the meaning of the word that I looked up yesterday . ||| 我 记不起 昨天 查 的 那个 词 的 意思 了 . +It will clear up in the afternoon . ||| 今天下午 天氣 將 轉 晴 . +Tom does not think so . ||| 汤姆 可不 这么 认为 . +Will you drive me to the hospital ? ||| 你 可以 載 我 去 醫院 嗎 ? +I advise you to change clothes . ||| 我 建議 你 換 衣服 . +I made efforts to improve my grades . ||| 我 努力 的 改善 我 的 成績 . +I need some medicine to kill the pain . ||| 我 需要 用药 来 镇痛 . +You do not have to do it immediately . ||| 你 没 必要 马上 去 做 . +They now have three children . ||| 现在 他们 有 三个 孩子 . +I consider myself fairly fluent in French . ||| 我 认为 自己 的 法语 相当 流利 . +My older brother is a teacher . ||| 我 哥哥 是 一名 教師 . +That is true . ||| 這 是 真的 . +What is it you want to know ? ||| 你 想 知道 什麼 ? +Tom speaks without thinking . ||| 汤姆 不假思索 脱口而出 . +Everyone said that I was wrong . ||| 大家 都 說 我 是 錯 的 . +True friendship is based on mutual trust . ||| 真正 的 友谊 建立 在 彼此 信任 的 基础 上 . +She began crying . ||| 她 开始 哭泣 . +She was always quarreling with her brothers . ||| 她 一直 和 她 的 兄弟 争吵 . +I am interested in this story . ||| 我 對 這個 故事 感興趣 . +The situation is getting worse and worse day by day . ||| 情况 一天 比 一天 差 . +Turn the knob and open the door . ||| 轉動 門 把 , 把 門 打開 . +We are ready to leave . ||| 我們 準備 離開 . +I do not care if you trust me or not . ||| 我 不 關心 你 是否 信任 我 . +Do you really need to ask the question to know the answer ? ||| 你 真的 需要 提 问题 来 知道 答案 吗 ? +I could hardly keep from laughing . ||| 我 忍不住 要 大笑 . +My aunt made a new skirt for me . ||| 我 姑姑 做 了 一條 新 裙子 給 我 . +Thanks for adding me as a friend . ||| 谢谢 你 把 我 加为好友 . +Lincoln died in 1865 . ||| 林肯 於 1865 年 去世 . +I should have tried out this electric shaver before buying it . ||| 我 本该 在 买下 这个 电动 剃须刀 之前 试一下 的 . +Are you planning to be at Tom and Mary is wedding ? ||| 你 打算 参加 汤姆 和玛丽 的 婚礼 吗 ? +Tom did not return my phone calls . ||| 湯姆 沒 有 回 我 的 電話 . +More than twenty boys went there . ||| 超過 二十 個 男孩 去 了 那裡 . +We apologize for the delay and regret any inconvenience it may have caused . ||| 我们 对 这次 的 延迟 表示 抱歉 , 并 对 可能 造成 的 不便 表示遗憾 . +In March , many flowers come out . ||| 許多 花 在 三月份 綻放 . +Tom does not have to thank me . ||| 湯姆 不 需要 謝 我 . +There is no one in your bedroom . ||| 你 的 卧室 里 没有 人 . +It is your turn . ||| 輪到 您 了 . +How do you spell your last name ? ||| 你 的 姓 怎麼 拼 ? +I suppose I 'd better phone Tom . ||| 我 想 我 给 汤姆 打电话 比较 好 . +I sat next to him . ||| 我 坐在 他 旁边 . +They are very close friends . ||| 他們 是 非常 親密 的 朋友 . +The rope was not strong enough to support him . ||| 绳子 不够 牢固 , 撑不住 他 . +We just have enough time to eat breakfast . ||| 我们 刚好 有 时间 吃 早饭 . +He retired at the age of 65 . ||| 他 65 岁 退 了 休 . +I am afraid of heights . ||| 我 恐 高 . +Hi ! How are you ? ||| 嗨 ! 你好 嗎 ? +I did not tell anyone what time I 'd be arriving . ||| 我 沒 跟 別人 說 過 我什麼 時候 會 到 . +The doctor examined the patients . ||| 醫生 檢查 了 病人 . +Can I drive the tractor ? ||| 我 能 開 拖拉 機 嗎 ? +Tom told him . ||| 汤姆 告诉 了 他 . +Five gallons of regular , please . ||| 請照 平常 一樣 五加 侖 . +I am going to check . ||| 我 正要 去 签到 . +Can I ask a question ? ||| 我 能 问个问题 吗 ? +The students are talking about language and culture . ||| 学生 们 在 探讨 语言 和 文化 . +Tom said Mary was hungry . ||| 汤姆 说 玛丽 饿 了 . +Having lived in Tokyo , I know the city well . ||| 因为 住 过 东京 , 我 对 这个 城市 非常 了解 . +Do not forget your money . ||| 不要 忘记 您 的 钱 . +Tom is careful , is not he ? ||| 湯姆 很 仔細 , 不是 麼 ? +Everything depends on it . ||| 全都 靠 它 了 . +He has been secretly in love with her . ||| 他 一直 暗恋着 她 . +Awesome ! ||| 好 棒 ! +She took a taxi to the hospital . ||| 她 搭計 程車 去 醫院 了 . +Who is in charge of this section ? ||| 谁 负责 这个 部门 ? +These pants fit me well . ||| 我 穿 這條 褲子 很 合身 . +It is on this point that our opinions differ . ||| 是 在 这点 上 我们 的 意见 有 分歧 . +He borrowed money from his friend . ||| 他 向 他 的 朋友 借錢 . +Let me try . ||| 让 我 来 . +Our teacher has a wonderful sense of humor . ||| 我们 的 老师 非常 有 幽默感 . +At last , she gave in to him and told him the secret . ||| 最 後 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +Tom and Mary were smiling . ||| 汤姆 和玛丽 正 微笑 着 . +Is that the station ? ||| 那 是 車 站 嗎 ? +Mt . Fuji as seen from Suruga Bay is beautiful . ||| 從駿 河灣 看 , 富士山 很 美麗 . +Do not go out after it gets dark . ||| 天黑 以 後 不要 出門 . +I am yours and you are mine . ||| 我 是 你 的 , 而 你 是 我 的 . +I have got to try to find Tom . ||| 我 试图 找到 Tom . +Tom does not share Mary is enthusiasm . ||| 汤姆 没有 感受 到 玛丽 的 热情 . +English is not difficult to learn . ||| 英語 並 不 難 學 . +She must have been sick . ||| 她 一定 是 生病 了 . +I am feeling good this morning . ||| 我 今天 早晨 感觉良好 . +I got sick from drinking too much . ||| 因為 喝酒 喝 太 多 , 所以 我 生病 了 . +She answered my letter right away . ||| 她 立刻 回信 給 我 . +Tom was sent back to Boston . ||| 汤姆 被 送回 了 波士顿 +When will it be convenient for you ? ||| 什麼 時候 對 你 來說 是 方便 的 ? +His decision to retire surprised all of us . ||| 他 要 退休 的 決定 讓 我們 都 感到 吃 驚 . +I need to go to work . ||| 我 得去 工作 了 . +Bring Tom here . ||| 把 汤姆 带到 这里 来 . +Let is take a trip to New York . ||| 去 纽约 吧 ! +Bush followed Reagan as president . ||| 布什 继 里根 之后 当上 了 总统 . +I do not want to play anymore . ||| 我 不想 再 玩 了 . +We need money . ||| 我們 需要 錢 . +Anything else ? ||| 还有 别的 吗 ? +I got home at seven . ||| 我 七點 回到 家 . +He is difficult to get along with . ||| 他 這個 人 很 難相 處 . +He hurt his left foot when he fell . ||| 當 他 跌倒 時 , 他 傷 了 他 的 左腳 . +Have you ever seen Tokyo Tower ? ||| 你 曾 看 過 東京 鐵塔 嗎 ? +He is as tall as her . ||| 他 和 她 一样 高 . +It looks like an orange . ||| 它 看 起來 像 橙子 . +Their apples are not as good as our apples . ||| 他們 的 蘋果 沒有 我們 的 好 . +Everyone is talking about Tom . ||| 每个 人 都 在 谈论 汤姆 . +I am having my house painted next month . ||| 我 下 個 月 刷 我 的 房子 . +Beauty is but skin deep . ||| 美貌 只是 表面性 的 东西 . +They were only interested in selling books . ||| 他们 只 对 卖书 有 兴趣 . +Tom quit smoking cold turkey . ||| 汤姆 突然 戒烟 了 . +Was it all an illusion ? ||| 那 全是 幻觉 吗 ? +I wonder which way is the shortest . ||| 我 想 知道 哪 一條 路 是 最短 的 . +Not all of the passengers escaped injury . ||| 並非 所有 的 乘客 都 免 於 受傷 . +Somebody must care for the patient . ||| 一定 要 有人 照顧 病人 . +How about calling it a day ? ||| 今天 就 做到 這裡 如何 ? +Tom is very kind . ||| 汤姆 人 很 好 . +I fed the leftovers to my dog . ||| 我 把 剩下 的 东西 给 我 的 狗 吃 . +She will give her photo to whoever wants it . ||| 她 会 把 她 的 照片 给 想要 的 人 . +My mother never gets up early . ||| 我 的 母親 從 不 早起 . +Why do you ask ? ||| 你 問 這個 幹 什麼 ? +I want you to tell me the truth . ||| 我 想要 你 把 真相 告诉 我 . +Mars is a planet . ||| 火星 是 一顆 行星 . +What did she say ? ||| 她 說 了 什麼 ? +He plays the guitar well . ||| 他 吉他 彈 得 很 好 . +My office is on the fifth floor . ||| 我 的 辦 公室 在 五 樓 . +Everybody likes to goof off . ||| 所有人 都 喜欢 偷懒 . +He lives alone in an apartment . ||| 他 一個 人 住 在 公寓 裡 . +Are these all your books , Tom ? ||| 汤姆 , 这些 全都 是 你 的 书 吗 ? +She managed to keep up appearances . ||| 她 設法 保住 面子 . +He taught himself French . ||| 他 自 學法 語 . +Her dream is to visit Paris . ||| 她 的 梦想 是 参观 巴黎 . +Tom swam . ||| 汤姆 游泳 了 . +She always believes me . ||| 她 一直 都 相信 我 . +Tom does not know what he should do now . ||| 汤姆 不 知道 他 现在 应该 做 什么 . +I am proud of my son . ||| 我 为 我 儿子 感到 骄傲 . +In London , the police are always worried about finding a bomb on the train or subway . ||| 在 倫敦 , 警察 總是 擔心 在 列車 上 發現 炸彈 . +What nonsense are you talking now ? ||| 你 胡说 什么 呢 ? +Let is make some more . ||| 我們 做 多一點 . +He works hard all the year round . ||| 他 一年 到 頭 努力 工作 . +Are there any apples in the box ? ||| 箱子 裡 有 蘋果 嗎 ? +The flood caused a lot of damage . ||| 洪水 造成 了 很大 的 損害 . +My best friend dances really well . ||| 我 最好 的 朋友 舞 跳 得 很 好 . +She respects her homeroom teacher a lot . ||| 她 很 尊重 她 的 導師 . +A good idea occurred to him . ||| 他 想到 一个 好 主意 . +He is good at rugby . ||| 他 很 擅長 橄欖球 . +She took a bite of the apple . ||| 她 咬了一口 蘋果 . +He had a shower before breakfast . ||| 他 在 早餐 前 洗 了 个 澡 . +Tom got rid of his old books . ||| 汤姆 扔掉 了 他 的 旧书 . +I need to search for my pen . ||| 我 得 查找 一下 我 的 笔 . +My parents taught me to respect my elders . ||| 我 的 父母 教育 我 应该 尊敬 老人 . +Let is take the bus . ||| 讓 我們 坐 公共 汽車 去 . +You have three cars , do not you ? ||| 你 有 三辆 车 对 吗 ? +I did nothing out of the ordinary . ||| 我 沒 做 什麼 與 眾 不同 的 事 . +Tom just never should have done that . ||| 汤姆 就 不该 做 那事 . +That makes no difference . ||| 这 没有 任何 区别 . +They made their way through the crowd . ||| 他們 從 人群 中 擠 過 去 了 . +I do not remember anything about the incident . ||| 我 不 记得 事故 的 情况 . +You have not changed at all . ||| 你 一点 都 没变 . +My brother likes horror movies . ||| 我 哥哥 喜歡 恐怖 電影 . +Clothes make the man . ||| 人要 衣裝 . +They closed their eyes . ||| 他们 闭上眼睛 . +Some people like volleyball , others enjoy tennis . ||| 有些 人 喜欢 排球 , 其他人 喜欢 网球 . +He became a member of this club five years ago . ||| 他 在 五年 前 成為 了 這個 俱樂部 的 成員 . +He threatened to make it public . ||| 他 威胁 要 公开 . +Tom is happy . ||| 湯姆高興 . +You must always keep your hands clean . ||| 您 应该 一直 让 手 保持 干净 . +The car crashed into the truck . ||| 汽車 撞上 了 卡車 . +These shoes are hers . ||| 這些 鞋 是 她 的 . +Tom says he does not feel like going out . ||| 汤姆 说 他 不想 出去 . +I ran across an old friend near the bank . ||| 我 在 银行 附近 碰见 老朋友 . +We caught some large fish there . ||| 我們 在 那裡 抓 了 一些 大魚 . +Have you washed your hands yet ? ||| 你 洗 過 你 的 手 了 嗎 ? +She is looking for her missing wallet . ||| 她 正在 找 她 不 見 了 的 皮夾 . +You are not to leave this room . ||| 你 不 應該 離開 這個 房間 . +He knows better than to marry her . ||| 他 不 會 傻 到 去 娶 她 . +He has no manners at all . ||| 他 一點 禮貌 也 沒有 . +Tom will be able to swim soon . ||| 湯姆 將 很快 就 會 游泳 了 . +I was at home most of the day yesterday . ||| 我 昨天 大部分 时间 在家 . +There are a few shops next to my house . ||| 我家 旁边 有 几家 商店 . +We can not keep this a secret forever . ||| 我們 不能 永遠 把 它 當 秘密 守住 . +She will give her picture to whoever wants it . ||| 她 会 把 她 的 照片 给 想要 的 人 . +Turn on the light , please . ||| 請 開燈 . +I changed my address last month . ||| 上個月 我 換 了 我 的 地址 . +The dog is sitting by the bowl . ||| 狗 坐在 碗 旁边 . +Oil is extracted from olives . ||| 油 是从 橄榄 中 提炼 出来 的 . +He hid himself behind the door . ||| 他 藏到 了 门 后 . +My daughter caught a cold . ||| 我 的 女儿 感冒 了 . +Hey , look what I found . ||| 嘿 , 看 我 找到 了 什么 . +There is something weird happening . ||| 正 有 什么 奇怪 的 事情 发生 着 . +Show it to me . ||| 给 我 看下 它 吧 . +I played with the baby on my knee . ||| 我 在 膝蓋 上 跟 嬰兒 玩 . +I think that I now have enough money to buy the car that I want . ||| 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Let is wait until it stops raining . ||| 我们 等 雨 停 吧 . +She does not have many friends in Kyoto . ||| 她 在 京都 沒有 很多 朋友 . +I do not discriminate . ||| 我 不 歧视 人 . +Do you want to go to the station with me ? ||| 要 不 一起 到 车站 去 ? +This is not safe . ||| 这 不 安全 . +I would like to work at the cafeteria . ||| 我 想 在 餐廳 工作 . +Tom can not cross the border . ||| Tom 没 办法 穿过 边界 . +May I ask some questions ? ||| 我 可以 問 一些 問題 嗎 ? +If I were you , I 'd want to know what Tom is doing right now . ||| 如果 我 是 你 , 我 不会 想 去 知道 Tom 现在 正在 做 什么 . +I have caught a terrible cold . ||| 我 得 了 一種 可怕 的 感冒 . +I am sorry I did not make myself clear . ||| 對 不起 , 我 沒 講 清楚 . +Tell us more . ||| 告訴 我們 多一點 . +We got all the materials together . ||| 我們 把 所有 的 材料 放在 一起 . +This school has many students . ||| 这个 学校 有 很多 学生 . +Tom was a real hero . ||| 汤姆 是 个 真 英雄 . +Your hair is pretty . ||| 你 的 头发 很漂亮 . +Write your address here . ||| 在 這裡 寫下 你 的 地址 . +Are you for or against his idea ? ||| 您 赞成 还是 反对 他 的 想法 ? +I will drive you to the airport . ||| 我会 开车 送 你们 去 机场 . +The accident is only survivor was a baby . ||| 这场 灾难 的 唯一 幸存者 是 一个 婴儿 . +It is more blessed to give than to receive . ||| 赠与 比 接受 更让人 觉得 幸福 . +Move quietly . ||| 轻轻地 移动 . +Tom is very much alone . ||| 汤姆 非常 孤单 . +I 'd never done it before . ||| 我 以前 從未 過 它 . +My father often washes the dishes . ||| 我 爸爸 常常 洗碗 . +Tom has not talked to Mary about that yet . ||| 汤姆 还 没 跟 玛丽 谈 那事 . +The murmur of the brook lulls me to sleep . ||| 溪流 潺潺 , 催 我 入眠 . +English is not spoken here . ||| 這裡 的 人 不 說 英語 . +How long does it take to go from here to the Hilton Hotel ? ||| 從 這裡 到 希爾頓 飯 店 要 花 多久 時間 ? +She likes chocolate , too . ||| 她 也 喜欢 巧克力 . +She can speak English , of course . ||| 她 會 講 英語 , 當然 . +If you do not go , I will not , either . ||| 如果 你 不 去 , 那 我 也 不 會 去 . +I asked him to mend my shoes . ||| 我 請 他 修理 我 的 鞋子 . +I went to the station to see my friend off . ||| 我 去 车站 为 我 朋友 送行 . +I remember having seen her somewhere . ||| 我 记得 好像 在 哪里 见 过 她 . +I thought pizza was what you wanted to eat . ||| 我 認為 你 想 吃 的 是 比 薩 . +I suppose you are hungry . ||| 我 猜想 您 饿 了 . +I am right . ||| 我 是 對 的 . +I remember you . We met three years ago . ||| 我 記得 你 . 三年 前 我們 見 過 面 . +I wish I could go to Japan . ||| 我 非常 希望 能够 去 日本 . +Old people get up very early . ||| 老人 們 很 早就 起床 . +Call me at the office . ||| 打 電話 到 我 辦 公室 來 . +I did not know she was married . ||| 我 不 知道 她 结婚 了 . +How far is it to the station ? ||| 到 火車 站 有 多 遠 ? +Who would want to hire Tom ? ||| 誰 會 想 雇 湯姆 ? +Tom put a lot of honey on his toast . ||| 汤姆 往 他 的 面包片 上放 了 许多 蜂蜜 . +He is very good at playing violin . ||| 他 非常 擅 長拉 小提琴 . +I do not like to use liquid laundry detergent . ||| 我 不 喜歡 用 洗衣 液 . +Tom came home early yesterday . ||| 湯姆 昨天 提早 回來 了 . +Will you switch seats with me ? ||| 您 愿意 跟 我 换 座位 吗 ? +Is it still far from here ? ||| 离 这里 还 远 吗 ? +Will you put down that paper and listen to me ? ||| 你 能 放下 文件 聽 我 說 嗎 ? +I will be very happy if I can serve you . ||| 能 为 你 服务 我会 感到 非常高兴 . +I am sorry . ||| 对不起 . +He died of lung cancer . ||| 他 死 於 肺癌 . +Tom could have figured that out without any help . ||| 汤姆 能 不 依靠 任何 帮助 解决 那事 . +Where are we meeting ? ||| 我们 在 哪里 见面 ? +This door is locked from the inside . ||| 這 門 從 裡面 被 反鎖 了 . +How did you meet Tom ? ||| 你 是 怎麼 見 到 湯姆 的 ? +How can you do this to me ? ||| 你 怎么 这样 对 我 ? +Where did you live last year ? ||| 你 去年 住 在 哪儿 ? +That is mine . I do not know where yours is . ||| 那个 是 我 的 . 我 不 知道 你 的 在 哪里 . +It is not a suitable topic for discussion . ||| 它 不是 一個 適合 討論 的 主題 . +Tom played with his dog . ||| 汤姆 和 他 的 狗 玩 . +They failed the exam . ||| 他們 考試 失敗 了 . +What are you reading right now ? ||| 你 在 看 什么 ? +He studies Chinese as well . ||| 他 也 学习 汉语 . +The train was late this morning . ||| 今天 早上 火車 來遲 了 . +Come in . ||| 进来 . +That boy over there is probably Tom is brother . ||| 那边 的 那个 男孩 可能 是 汤姆 的 兄弟 . +He knows New York inside out . ||| 他 对 纽约 了如指掌 . +How much does the wooden chair cost ? ||| 那 张 木椅 要 多少 钱 ? +Tom is used to getting up early in the morning . ||| 汤姆 习惯 早起 . +Their traditional life style no longer exists . ||| 他们 传统 的 生活 方式 不再 存在 . +I must go home . ||| 我 该 回家 了 . +You are lying , are not you ? ||| 你 在 撒謊 , 不是 嗎 ? +It began to snow . ||| 开始 下雪 了 . +I am really looking forward to seeing Tom again . ||| 我 真 想 再 見 見 湯姆 . +I do not know any of them . ||| 他们 中 的 任何 一位 我 都 不 认识 . +We hope a solution is found . ||| 我们 希望 找到 解决 方法 . +Skip it . ||| 不管 它 . +Tom is a professional magician . ||| 汤姆 是 个 专业 的 魔术师 . +Can you explain the exact meaning of this word ? ||| 你 能否 說出 這個 詞 的 精確 意思 ? +I suppose I felt a little jealous . ||| 我 想 我 感到 有 點 嫉妒 . +I am just going for a walk . ||| 我 只是 去 散散步 . +What is that ? ||| 那 是 什么 啊 ? +We should have been more careful . ||| 我們 應 該 更 小心 的 . +It is all Tom is fault . ||| 全 是 湯姆 的 錯 . +A slip of the tongue is sometimes fatal to a politician . ||| 有时候 口误 对 政治家 来说 是 致命 的 . +I look forward to hearing from you . ||| 我 期待 收到 你 的 來信 . +You would not believe me if I told you . ||| 我 告诉 你 , 你 也 不会 信 . +This is not a good idea . ||| 這 不是 好 主意 . +It is nearly six o 'clock . ||| 差不多 六点 了 . +Please contact us . ||| 请 联系 我们 . +Wait here for a while . ||| 在 这儿 等 一会儿 . +I do not know whether it is good or not . ||| 我 不 知道 它 是 好 是 坏 . +I am playing a TV game . ||| 我 在 玩電視 遊樂器 . +This is none of your business . ||| 这 不是 你 的 事 . +I am tired of watching television . ||| 我 看 電視 看到 厭煩 了 . +I approved it . ||| 我 同意 它 . +How long would it take ? ||| 要 多长时间 ? +Tom took his wedding ring off . ||| 汤姆 拿掉 了 他 的 婚戒 . +Close the door , please . ||| 請關 上門 . +He insured himself . ||| 他 給 自己 投 了 保險 . +I bought a VCR at that store for a low price . ||| 我 在 上 商店 花 低价 买 了 录像机 . +Could I see you in private ? ||| 我 能 私下 見 你 嗎 ? +We are not looking . ||| 我們 沒有 看著 . +When you hurt others , you also hurt yourself . ||| 你 若 是 傷害 別人 , 你 也 會 傷 害到 自己 . +You do not want to be an editor ? ||| 你 不想 做 编辑 ? +I bought a camera for 30 dollars . ||| 我 花 30 美元 買 了 一台 照相 機 . +Just at that time , the bus stopped . ||| 就 在 那时 , 巴士 停住 了 . +He rescued the child from the fire . ||| 他 從 火場 中 救 了 這個 孩子 . +What did you do ? ||| 你 做 了 什么 ? +Do not use computer translation . ||| 别用机 翻 . +How much sugar do you use ? ||| 你 用 多少 糖 ? +Did you hear the click ? ||| 你 聽到 了 點擊 聲 嗎 ? +He quarrelled with his brother . ||| 他 和 他 弟弟 吵 了 起来 . +Tom is still sitting in the waiting room . ||| 汤姆 还 在 等候 室里 坐 着 . +I am coming home , Tom . ||| 我 在 回家 , 湯姆 . +Tom says he did not know what to do . ||| 汤姆 说 他 不 知道 要 做 什么 . +I am tired of listening to Tom . ||| 我 厌倦 了听 汤姆 说话 . +I talked with her for an hour . ||| 我 跟 她 談 了 一個 小 時 . +Four is an unlucky number in Japanese . ||| 4 在 日本 是 一个 不幸 的 数字 . +Are you on the committee ? ||| 你 是 委員會 中 的 成員 嗎 ? +How long will you stay here ? ||| 你 会 在 这儿 待 多久 ? +Tom knows you better than he knows anyone else . ||| 湯姆 對 你 的 瞭解 比對 其他人 都 清楚 . +English and German are two related languages . ||| 英語 和德語 是 兩種 相關 的 語言 . +Did you meet Tom ? ||| 你 见 过 汤姆 了 吗 ? +Tom slipped out of the classroom . ||| 湯姆 溜出 了 教室 . +All the desk drawers were empty . ||| 所有 的 办公桌 抽屉 都 是 空 的 . +He told me not to tell lies . ||| 他 告訴 我 不要 說 謊 . +She went from London to Paris . ||| 她 从 伦敦 去 了 巴黎 . +I would like to go with Tom . ||| 我 想 跟 湯姆 走 . +What did you have for lunch ? ||| 你们 午饭 吃 了 什么 ? +The water turned to ice . ||| 水 结成 冰 了 . +I hope I am not boring you . ||| 希望 我 没有 烦 到 你 . +He likes to listen to the radio . ||| 他 喜歡 聽 廣播 . +Your bag is open . ||| 你 的 包开 着 . +It is too bad that you could not come . ||| 你 不能 來 真是太 糟糕 了 . +I can not explain it now . ||| 我 现在 不能 解释 . +He was drowned . ||| 他 被 淹死 了 . +Why should I thank Tom ? ||| 我 為 甚麼 該 感謝 湯姆 ? +It was not as expensive as I expected . ||| 它 沒 有 我 想像 的 那麼 貴 . +I am very proud of my father . ||| 我 非常 以 我 的 父親 為 榮 . +I have no time for reading . ||| 我 没 时间 阅读 . +Her mother always accompanies her . ||| 她 母亲 一直 陪 着 她 . +I feel we are going to get better . ||| 我 感覺 我們 將 要 變得 更好 . +He was sleeping under the tree . ||| 他 在 樹下 睡覺 . +We made friends with them . ||| 我們 與 他們 交朋友 了 . +Today , I was supposed to study at the library but I woke up around 12 o 'clock . ||| 今天 , 我 本 打算 在 图书馆 学习 但 到 12 点 左右 才 醒 . +I took a taxi from the station to the hotel . ||| 我 從 車站 搭 了 一班 到 旅館 的 計程 車 . +My mother plays the piano well . ||| 我 的 母親 鋼琴 彈 得 很 好 . +How long will you be staying ? ||| 你 会 待 多长时间 ? +The Tigers lost the game , which was a surprise to us . ||| 我們 覺得 很 驚訝 老虎 隊 竟然 輸掉 了 比賽 . +The Cold War ended when the Soviet Union collapsed . ||| 冷战 以 苏联 解体 结束 . +We found out that he was her father . ||| 我们 发现 他 是 她 的 父亲 . +This case might not get resolved for a while . ||| 這個 案件 可能 不 會 在 短 時間 內 就 解決 . +Tom is door is open . ||| 湯姆 的 門 開著 . +Keep next Sunday free . ||| 把 下 周日 空 出来 . +Did you enjoy your winter holidays ? ||| 你 寒假 過 得 愉快 嗎 ? +The dress is made of a thin fabric . ||| 這件 衣服 是 由 薄織 物 製 成 的 . +He likes geography and history . ||| 他 喜欢 地理 和 历史 . +The price of the book was $ 5 . ||| 这 本书 的 价格 是 5 美元 . +Do you usually have tea for breakfast ? ||| 你 經常 早餐 喝茶 嗎 ? +He hid himself behind a large rock . ||| 他 藏到 一个 大石头 后面 了 . +No one could solve the puzzle . ||| 没人 解得 了 这个 谜题 . +We live together . ||| 我們 住在一起 . +He looked over my report . ||| 他 仔細 看 了 我 的 報告 . +I am going to attend the meeting . ||| 我 將 出席 這個 會議 . +I am so tired . ||| 我 好累 . +How dare you speak to me like that ! ||| 你 怎么 敢 这样 跟 我 说话 ! +Tom has been under a great deal of strain lately . ||| 汤姆 最近 压力 特别 大 . +I go to school by bus . ||| 我 乘车 去 学校 . +Hurry up , and you will be in time for the bus . ||| 快点 , 你 就 能 准时 搭 上 公交车 了 . +My watch has stopped . ||| 我 的 錶 停 了 . +I forgot . ||| 我 忘 了 . +How much is this camera ? ||| 这部 相机 多少 钱 ? +Bring your children along . ||| 把 你 的 孩子 带来 . +Tom has only a week to decide . ||| 湯姆 只有 一週 時間 做 決定 . +This book has a lot of pictures . ||| 這 本書 有 很多 圖片 . +You are too generous . ||| 你 太 大方 了 . +Did you feed the dog this morning ? ||| 你 今天 早上 喂 过 狗 了 吗 ? +This is quite good . ||| 这 可 真好 . +He put on the red jacket . ||| 他 穿 上 了 紅色 的 外套 . +Open your eyes . ||| 睁开眼睛 . +There was nothing I could do at that time . ||| 当时 我 什么 都 不能 做 . +Whose house is across from yours ? ||| 你家 對面 的 房子 是 誰 的 ? +My parents are divorced . ||| 我 父母 离婚 了 . +Who can tell what will happen in the future ? ||| 谁 能 说 将来 会 发生 什么 呢 . +She passed away peacefully in her sleep . ||| 她 在 睡眠 中 安详 地 去世 了 . +My brother goes to college in Kobe . ||| 我 弟弟 在 神戶 上 大學 . +I would like to leave this town and never come back . ||| 我 希望 離開 這個 村子 並且 再也 不要 回來 . +I do not want to fail my exams . ||| 我 不想 考试 失败 . +I can not tolerate this noise any longer . ||| 我 不能 再 忍受 這個 噪音 了 . +Can anyone believe you ? ||| 誰 會 相信 你 ? +He must have taken the wrong train . ||| 他 一定 是 搭錯 火車 了 . +The batteries in my calculator are dead . ||| 我 計算機 的 電池 沒電 了 . +We managed to swim across the river . ||| 我們 成功 地游 過 了 河 . +Do not forget to take out the garbage . ||| 别忘了 把 垃圾 拿出 去 . +Tom was making French fries . ||| 汤姆 想 做 炸薯条 . +Do not be shy . ||| 不要 害羞 . +Apart from some fruit , he has not eaten anything . ||| 除了 水果 , 他 什么 都 没 吃 . +He went there instead of his father . ||| 他 代替 他 的 父親 去 . +She showed him the photo . ||| 她 把 照片 给 他 看 . +Please do not interrupt me . ||| 请 不要 打断 我 . +There seem to be several reasons for his failure . ||| 他 的 失败 看来 有 几个 原因 . +Just let Tom speak . ||| 就 讓 湯姆 說 吧 . +Tom is hands are shaking . ||| 汤姆 的 手 在 颤动 . +Did you kill Tom ? ||| 是 你 杀 了 汤姆 吗 ? +I do not have the strength to keep trying . ||| 我 没 力气 继续 尝试 了 . +You should apologize for your rudeness . ||| 您 该 为 您 的 粗鲁 道歉 . +She gave up everything for her children . ||| 為了 孩子 們 她 放棄 了 一切 . +You are not old enough to get a driver is license . ||| 你 还 没到 可以 拿 驾驶执照 的 年龄 . +I got some sand in my eye . ||| 我 的 眼睛 進 了 些 沙 . +Back off . ||| 往 后退 点 . +What kind of a person is Tom ? ||| 汤姆 是 个 什么样 的 人 ? +I like short hair . ||| 我 喜欢 短发 . +Where does your grandfather live ? ||| 你 爺 爺 住 在 哪裡 ? +Do you have a camera ? ||| 你 有 照相机 吗 ? +We meet here once a week . ||| 我们 每周 在 这儿 聚 一次 . +I like playing sports . ||| 我 喜歡 運動 . +The policeman arrested the burglar . ||| 警察 逮捕 了 小偷 . +This car is not worth repairing . ||| 這輛 車 不 值得 修理 . +The missing cat has not been found yet . ||| 失踪 的 猫 还 没 被 找到 . +She cleaned her room in a hurry . ||| 她 急忙 地 清掃 了 她 的 房間 . +The song reminds me of my home . ||| 这 首歌 让 我 想家 了 . +He is strong . ||| 他 很 強壯 . +My daughter wants a piano . ||| 我 女儿 想要 架 钢琴 . +I am curious . ||| 我 很 好奇 . +Let me come in . ||| 让 我 进去 . +He was elected captain of the team . ||| 他 被 選為 團隊 的 隊長 . +Let is take a break now . ||| 现在 , 让 我们 休息 一会儿 吧 . +All you have to do is to write your name and address here . ||| 你 只要 在 这里 写下 你 的 姓名 和 地址 就行了 . +You should not wait here . ||| 你 不 應該 在 這裡 等 . +People can not keep quiet . ||| 人們 無法 保持沉默 . +What is in the living room ? ||| 客廳裏有什 麼 ? +It is very easy to sound natural in your own native language , and very easy to sound unnatural in your non @-@ native language . ||| 你 很 容易 把 母语 说 得 通顺 流畅 , 却 很 容易 把 非 母语 说 得 不 自然 . +Bring me today is paper , please . ||| 請 幫 我 把 今天 的 報紙 帶來 . +He went by bicycle . ||| 他 騎 腳 踏 車 去 . +It does not matter what he said . ||| 他 說 的 不 重要 . +She was almost hit by a car . ||| 她 幾乎 被 車 撞 到 . +The truth can be more painful than a lie . ||| 真相 可能 比 谎言 更 令人 痛苦 . +He looks like an honest man . ||| 他 看起来 忠厚老实 . +Tom is the richest guy I know . ||| 汤姆 是 我 所 知道 的 最 有钱 的 家伙 . +Tom said he thought he should study French . ||| 湯姆 說 他 認為 他 該 學法 語 . +Are you sure you do not want me to say anything ? ||| 你 确定 要 我 什么 都 不 说 ? +We played basketball yesterday . ||| 我們 昨天 打 籃球 . +It is no use telling me anything . ||| 對 我 說 什麼 都 是 沒用 的 . +Where are you from ? ||| 你 從 哪裡 來 ? +Tom wants popcorn . ||| 湯姆 要 爆米花 . +Foreign investors withdrew their money from America . ||| 外国 投资者 从 美国 收回 他们 的 钱 . +I wish I could buy a motorcycle . ||| 但 願 我 能 買 一輛 摩托 車 . +An elephant has a long nose . ||| 大象 有 長 鼻子 . +I can recommend this restaurant . ||| 我 推荐 这个 餐厅 . +It was not very cold yesterday . ||| 昨天 不是 很 冷 . +How long are you going to stay in Japan ? ||| 你 會 待 在 日本 多久 ? +This watch is waterproof . ||| 這 手 錶 是 防水 的 . +He is allergic to house dust . ||| 他 對 室內 灰塵 過敏 . +We have got to get you out of here . ||| 我們 必須 把 你 带走 . +Acid rain is not a natural phenomenon . ||| 酸雨 不是 自然 现象 . +My shoulder really aches . ||| 我 的 肩膀 很 痠 . +Do not let the dog in . ||| 别 让 狗 进来 . +We set a trap to catch a fox . ||| 我们 设 了 个 陷阱 来 抓 狐狸 . +He painted all the walls green . ||| 他 把 所有 的 牆壁 漆成 了 綠色 . +He is angry with you . ||| 他 在 生 你 的 氣 . +Your English has improved a lot . ||| 你 的 英語 進步 了 很多 . +What do you do after school ? ||| 你 放学 以后 干什么 ? +I often play tennis on Sunday . ||| 我 常常 在 週日 打 網球 . +She is dieting . ||| 她 在 节食 中 . +Are not you the one who saved me ? ||| 你 不是 救 了 我 的 人 嗎 ? +After a couple of drinks , the guy was feeling no pain . ||| 喝 了 幾 杯酒 後 , 這 個 傢 伙 就 感 覺 不 痛 了 . +The problem is , he has no money . ||| 问题 是 他 没钱 . +Give a thief enough rope and he will hang himself . ||| 多行不义必自毙 . +We never gave up . ||| 我們 從不 放棄 . +I did not want to surprise you . ||| 我 没 想 吓唬 你 . +I am tired of dancing . ||| 我 厭倦 了 跳舞 . +It is almost time to go to bed . ||| 差不多 是 就 寢 的 時間 了 . +You work too hard . ||| 你 工作 太 努力 了 . +What do you do here ? ||| 你 在 這裡 做 甚麼 ? +All you need is ignorance and confidence and the success is sure . ||| 要 想 成功 只 需要 无知 和 自信 . +Please tell me your address . ||| 请 告诉 我 你 的 地址 . +Nobody knows . ||| 谁 也 不 知道 . +Take it easy . ||| 放 輕 鬆 . +Mary helped her mother cook . ||| 瑪麗幫 她 媽媽 做飯 +It was a terrible day . ||| 這 是 糟糕 的 一天 . +I am really looking forward to it . ||| 我 很 期待 哦 . +I just wanted to speak to Tom . ||| 我 只 想 跟 汤姆 说话 . +My father began jogging last month . ||| 我 父親 上 個 月 開始 慢跑 . +I broke my arm . ||| 我 的 手臂 斷 了 . +What is the name of that river ? ||| 這條 河 叫 什麼 名字 ? +This is the house where he lives . ||| 這 是 他 住 的 房子 . +There are more clouds today than yesterday . ||| 今天 的 雲比 昨天 的 多 . +I can not get away from work now . ||| 我 現在 上班 無法 離開 . +Please fill the teapot with boiling water . ||| 請用 開水 把 茶壺 灌滿 . +I enjoyed talking with him . ||| 我 和 他 谈 得 很 愉快 . +I read a book last night . ||| 我 昨晚 讀書 . +This boy is lazy . ||| 这个 男孩子 很 懒 . +I asked Tom to wait here . ||| 我 讓 湯姆 在 這裡 等 . +I am seeing my uncle tomorrow . ||| 我 明天 要 去 看 我 叔叔 . +You will never see that again . ||| 你 以后 再也不会 看到 它 了 . +Anyway , you will never know . ||| 不管 怎樣 , 你 永遠 不 會 知道 . +He drove the car , listening to music on the radio . ||| 他 一面 開車 一面 聽 收音 機 的 音樂 . +She plays tennis after school . ||| 她 放学 后 打网球 . +She gets up at seven . ||| 她 早上 7 点 起床 . +It is 3 : 30 . ||| 3 点 半 了 . +She promised not to go out alone . ||| 她 答應 不單 獨 外出 . +That was a beautiful moment . ||| 那 是 個 美好 的 瞬間 . +To distinguish right from wrong is difficult . ||| 要 分清是非 是 困難 的 . +Please tell me when to go . ||| 請 告訴 我什麼 時候 該 走 . +I am afraid of dying . ||| 我 怕死 . +Christmas is soon . ||| 聖誕節 快 到 了 . +He teaches English to his friend . ||| 他 對 他 的 朋友 教 英語 . +May I use your toilet ? ||| 我 能 用 一下 你们 的 厕所 吗 ? +He traveled all over the world . ||| 他 周遊 世界各地 . +That is the office where he works . ||| 那 是 他 工作 的 辦 公室 . +Tom drinks juice . ||| Tom 喝 果汁 . +Does he go to school on foot or by bicycle ? ||| 他 走路 去 学校 还是 骑车去 学校 ? +You do not seem to be as afraid as Tom seems to be . ||| 你 似乎 并 不 像 汤姆 看起来 那样 害怕 +We have to pull the weeds . ||| 我們 必須 拔除 雜草 . +Do not fear the unexpected , but be prepared for it . ||| 不要 害怕 意外 , 但要 有 準備 . +Science is fun . ||| 科學 好玩 . +Write everything down . ||| 把 所有 東西 寫 下來 . +Tom knew how to do that . ||| 汤姆 知道 怎么 做 那事 . +There is a television in the room . ||| 房里 有个 电视机 . +May I see your boarding pass , please ? ||| 請 讓 我 看看 您 的 登機 證好 嗎 ? +My grandfather is very healthy . ||| 我 的 祖父 非常 健康 . +He is afraid of getting lung cancer . ||| 他 怕 得到 肺癌 . +I can read German , but I can not speak it . ||| 我 能看懂 德语 , 但 不会 说 . +She said that he was handsome . ||| 她 說 他 很 英俊 . +Almost no one believes her . ||| 几乎 没 人 相信 她 . +He is unsociable . ||| 他 太 不 合群 . +We had a great relationship . ||| 我們 的 關 係 非常 好 . +Do you like it ? ||| 你 喜歡 嗎 ? +Do it somewhere else . ||| 到 别处 去 做 . +Smoking is not permitted here . ||| 这里 不 允许 抽烟 . +Do you know how to use a computer ? ||| 您 会 使用 计算机 吗 ? +This is a book . ||| 这 是 一 本书 . +I can not thank you enough . ||| 我 無法 表達 我 對 你 的 感謝 . +I cannot follow your logic . ||| 我 跟不上 你 的 逻辑 . +I am never at home on Sundays . ||| 我 周日 从不 在家 . +Tom had a heat stroke . ||| 汤姆 中暑 了 . +I ordered a book from London . ||| 我 從 倫敦 訂購 了 一本 書 . +I will come earlier next time . ||| 我 下次 會 早點 來 . +Please help yourself to the cake . ||| 你们 自己 吃 蛋糕 . +When I was a child , I spent most of my time indoors reading . ||| 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 阅读 . +My parents have just arrived at the station . ||| 我 的 父母 剛剛 到 達 車站 . +A rabbit has long ears and a short tail . ||| 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +I do not know where she lives . ||| 我 不 知道 她 住 在 哪裡 . +Some say that China was like a Russian colony . ||| 有人 說 中國 像是 俄國 的 殖民地 . +I am clearly missing something here . ||| 我 确实 在 这里 丢 了 东西 . +He prefers football to baseball . ||| 他 喜歡 足球 勝 過 棒球 . +I have got a boat . ||| 我 有 一艘 小船 . +That was my mistake . ||| 那 是 我 的 錯 . +Tom was able to go to college thanks to a scholarship . ||| 因為 一份 獎學金 , Tom 得 以上 大學 . +They are watching a movie . ||| 他們 在 看 一部 電影 . +Tom told me Mary is leaving tomorrow . ||| 汤姆 和 我 说 明天 玛丽 会 离开 . +Someone has brought us some grapes . ||| 有人 帶 了 一些 葡萄 給 我們 . +Take it easy . ||| 別 緊張 . +What else have you figured out ? ||| 你 还 发现 什么 了 ? +What is the purpose of your trip ? ||| 你 旅行 的 目的 是 什麼 ? +I can not concentrate on my work because of the noise . ||| 由于 噪音 , 我 无法 集中精力 工作 了 . +Could you please pass me the pepper ? ||| 請 你 把 胡椒 遞 給 我 好 嗎 ? +What is the matter with your car ? ||| 你 的 車子 怎麼 了 ? +What is it ? ||| 它 是 什么 ? +Are you ready ? ||| 你们 准备 好了吗 ? +Tom sold Mary his car . ||| 汤姆 把 他 的 汽车 卖给 了 玛丽 . +We have got plenty of time . ||| 我們 有 充足 的 時間 . +Our baby can not talk yet . ||| 我家 宝宝 还 不会 说话 . +He really wants to meet you . ||| 他 真的 想見 你 . +We are all longing for peace in the world . ||| 谁 都 希望 世界 和平 . +Tom was on the list . ||| 湯姆 在 名單 上 . +Many English words are derived from Latin . ||| 許多 英文 單字 源自 於 拉丁文 . +He is fond of adventure . ||| 他 喜欢 冒险 . +My father loves pizza . ||| 我 父親 愛 吃 比 薩 . +What is going on with Tom ? ||| 汤姆 出 什么 事 了 ? +His pronunciation is far from perfect . ||| 他 的 发音 远非 完美 . +My house is here . ||| 我家 在 這裡 . +The company is competitive edge will be eroded if system engineers continue to leave . ||| 如果 系统 工程师 继续 离开 , 公司 的 竞争 优势 将 会 被 削弱 . +How dare you say that to me ! ||| 你 怎麼 能 這麼 對 我 說 話 ! +What did Tom expect Mary to do ? ||| 汤姆 打算 让 玛丽 做 什么 ? +Please take off your hat . ||| 请 您 摘下 您 的 帽子 . +Let me know if you need any help . ||| 你 需要 帮助 就让 我 知道 . +Well , the night is quite long , is not it ? ||| 夜晚 很 长 , 不是 吗 ? +She will be getting married next year . ||| 她 明年 將 要 結婚 . +I think Tom should go on a diet . ||| 我 觉得 汤姆 需要 减肥 了 . +I was right behind you . ||| 我 就 在 你 后面 . +The bus should be coming soon . ||| 公車 應該 很快 就 會 來 了 . +That is quite obvious . ||| 那 很 明顯 . +I am dead tired . ||| 我 累死 了 . +This is a well @-@ written article . ||| 這 是 篇 寫 得 很好 的 文章 . +Your cake is delicious . ||| 您 的 蛋糕 很 美味 . +What time is it by your watch ? ||| 你 表上 是 几点 ? +My watch has been stolen . ||| 我 的 表 被 偷 了 . +That is his house . ||| 那 是 他家 . +Do you know anyone who is not on Facebook ? ||| 你 有 認識 沒 有用 Facebook 的 人 嗎 ? +Tom does not want anything to drink . ||| 汤姆 什么 都 不想 喝 . +I am single . ||| 我 單身 . +Now shake hands and make up . ||| 现在 握 个 手 和解 吧 . +Iron is a useful metal . ||| 铁 是 个 有用 的 金属 . +This song makes me homesick . ||| 这 首歌 让 我 想家 了 . +I was the happiest man on earth . ||| 我 曾 是 世界 上 最 幸福 的 男人 . +He really loves beer and gets drunk every day . ||| 他 喜歡 喝爱 啤酒 , 而且 每天 都 喝醉 . +What is the meaning of this phrase ? ||| 這個 片語 是 什麼 意思 ? +The train arrived on time . ||| 火车 准时 到 了 . +Ouch ! My finger got caught in the door . ||| 好 痛 ! 被 门 夹到 手指 了 ! +What do you base your theory on ? ||| 你 的 理論 是 以 什麼 為 基礎 ? +Someone ate all my cupcakes . ||| 某人 把 我 的 杯形 蛋糕 吃 完 了 . +They kissed each other . ||| 他们 亲吻 了 . +Tom has to do that again . ||| 湯姆 必須 再 做 一遍 . +How much is four times six ? ||| 6 的 4 倍 是 多少 ? +I could smell the alcohol on his breath . ||| 我 能 闻到 他 呼吸 中 的 酒精 味 . +Breakfast is from seven to nine . ||| 早餐时间 在 七点 到 九点 . +A full moon can be seen tonight . ||| 今晚 能 看到 满月 . +I wish he would write more often . ||| 我 希望 他 来信 更 勤 些 . +I have got a few friends . ||| 我 有 一些 朋友 . +Why did you paint the bench red ? ||| 为什么 你 把 长凳 漆成 红色 了 ? +He grew up in Germany . ||| 他 在 德國 長大 . +They let me go . ||| 他們 讓 我 走 . +I am seeing you in a new light . ||| 我 对 你 刮目相看 了 . +I did not feel bad . ||| 我 没 觉得 不好 . +He began to look for a job . ||| 他 开始 找 工作 了 . +You need not do it at once . ||| 你 没 必要 马上 去 做 . +Tom seems tough . ||| 汤姆 看来 难缠 . +I do not have any friends to help me . ||| 我 没 朋友 帮 我 . +It is difficult to play the piano . ||| 彈 鋼琴 很困 難 . +Tom poured cold water over himself to wake himself up . ||| 汤姆 给 自己 浇 凉水 以 清醒过来 . +I wonder what this phrase means . ||| 我 想 知道 这 句 话 的 意思 . +I think that she knows the truth . ||| 我 覺得 她 知道 真相 . +I love watching soccer games . ||| 我 爱看 足球 . +It is an artificial flower . ||| 這 是 朵 人造花 . +Nobody was injured . ||| 沒 有人 受傷 . +You should have known better than to take an examination without preparing for it . ||| 你 應該 知道 要為 考 試作 準備 . +We were able to catch the last train . ||| 我们 能 赶上 最后 一班 火车 . +Make sure to turn off all the lights before going out . ||| 出去 之前 确认 一下 所有 的 灯 都 关了 . +Grab Tom . ||| 抓住 汤姆 . +Are you sure Tom will come back ? ||| 你 確定 湯姆會 回來 嗎 ? +Tom also talked . ||| 湯姆 也 說話 了 . +I have no regrets about what I did . ||| 我 對 我 做 過 的 事 不 後 悔 . +I do not need you or anybody else . ||| 我 不 需要 你 或 别的 人 . +It does not matter what you do . ||| 你 做 什么 都 无所谓 . +He sent me some American magazines . ||| 他 送 給 我 一些 美國 雜 誌 . +The house stood out because of its unusual shape . ||| 那 房子 因为 其 少有 的 形状 被 突显 出来 . +This makes me so angry . ||| 這 讓 我 非常 憤怒 . +I watch my weight very carefully . ||| 我 非常 注意 我 的 體重 . +My passport has expired . ||| 我 的 護照 過期 了 . +She is practicing the violin now . ||| 她 現在 正在 練習 拉 小提琴 . +That fox must have killed the hen . ||| 那 隻 狐狸 殺 了一 隻 母 雞 . +The boy is eating bread . ||| 这个 男孩子 在 吃 面包 . +I was always good at English . ||| 我 一直 都 擅長 英文 . +I am a Hyogo University student . ||| 我 是 個 兵庫 大學 的 學生 . +I have three million dollars . ||| 我 有 三百 萬美圓 . +I can not put up with that noise any longer . ||| 我 无法 再 忍受 那 噪音 了 . +When water freezes it becomes ice . ||| 水 結凍 後 , 變成 冰 . +I think Tom is optimistic . ||| 我 認為 湯姆樂 觀 . +I tried to change the subject . ||| 我 試圖 改變 話題 . +I gave you my word . ||| 我 和 你 保证 . +He played the part of Hamlet . ||| 他 扮演 哈姆雷特 的 角色 . +I will ask him about it tomorrow . ||| 我 明天 會 問 他 . +I only do what I am paid to do . ||| 我 祇 做 別 人 付 錢 讓 我 做 的 事 . +I will tell you the truth . ||| 我 會 告訴 你 真相 . +When will your new store open ? ||| 你 的 新 商店 什么 时候 开张 ? +Tom was admiring my new car at the time the truck crashed into it . ||| 在 湯姆欣 賞 我 的 新車 的 同時 , 一輛 卡車 撞 了 過來 . +The building has 20 floors . ||| 大楼 有 20 层 . +No one likes war . ||| 没有 人 喜欢 战争 . +He seems to have told a lie . ||| 他 似乎 已經 說 了 謊 . +Who else knows about it ? ||| 還 有 誰 知道 它 ? +There is bamboo growing in the garden . ||| 花園 裡 有 竹子 在 生長 . +Break it up ! ||| 停手 ! +She hopes to become a designer . ||| 她 希望 成為 一名 設計 師 . +Did you accomplish your goals ? ||| 你 達成 你 的 目標 了 嗎 ? +Whose is this car ? ||| 這輛 汽車 是 誰 的 ? +Is there a doctor on board ? ||| 船上 有 醫生 嗎 ? +He made the most of his opportunities . ||| 他 盡力 地 利用 了 他 的 機會 . +Why does Tom call me Mary ? ||| 为什么 汤姆 叫 我 玛丽 ? +I like snow a lot . ||| 我 很 喜歡 雪 . +I go to the office by bicycle except on rainy days . ||| 除了 雨天 , 我 都 是 骑车去 上班 的 . +You have got to wake up . ||| 你 必須 醒醒 . +He is responsible for the accident . ||| 他 為 這個 事故 負責 . +I have to clean the bathroom . ||| 我 要 清理 廁所 了 . +I should obey . ||| 我 應 該 服 從 . +The neighborhood was silent . ||| 社區 是 安靜 的 . +Strange to say , he did not know the news . ||| 说来 奇怪 , 他 不 知道 这个 消息 . +She has a flower in her hand . ||| 她 手上 有 一朵花 . +How to overcome the high value of the yen is a big problem . ||| 如何 克服 日元 升高 是 个 大 问题 . +Tom is not afraid of anything . ||| 湯姆 對 甚麼 都 不怕 . +You will be punished if you break the law . ||| 如果 你 違反 了 法律 , 你 將 受到 懲罰 . +Tom enjoys gardening . ||| 汤姆 享受 园艺 . +He has not come yet . He must have missed the bus . ||| 他 还 没来 . 他 肯定 错过 公交车 了 . +This car was so cheap that he could afford it . ||| 這車 便宜 得 讓 他 能 買 得 起 . +I do not like school . ||| 我 不 喜欢 学校 . +I have to help my mother . ||| 我 必須 幫忙 我 母親 . +You might meet him . ||| 你 可能 會 見 到 他 . +I was brought up in the country . ||| 我 在 鄉下 被 撫養 長大 . +I was wondering if you were going to show up today . ||| 我 在 想 你 今天 会 不会 来 . +What does it contain ? ||| 它 包含 了 什么 ? +Do you know anything about Tom is parents ? ||| 你 知道 任何 关于 汤姆 父母 的 事 吗 ? +It is on the tip of my tongue . ||| 它 在 我 的 舌尖 上 . +I can not find my glasses . ||| 我 的 眼鏡 不 見 了 . +Today , the weather is very nice . ||| 今天天气 很 好 . +Language is the means by which people communicate with others . ||| 语言 是 人们 与 他人 交流 的 手段 . +Who did you hang out with last weekend ? ||| 你 上 週末 跟 誰 閒逛 了 ? +Who else in Boston do you know ? ||| 你 还 認識 波士 頓 的 誰 ? +My brother is now in Australia . ||| 我 哥哥 現在 在 澳洲 . +That is what Tom requested . ||| 那 就是 汤姆 想要 的 . +I could not make him understand it . ||| 我 無法 讓 他 明白 . +Call us . ||| 联系 我们 . +Could I borrow your gray suit ? ||| 我 可以 借 你 的 灰色 西装 吗 ? +What about having fish for dinner ? ||| 晚餐 吃 魚 怎麼樣 ? +Teachers must understand children . ||| 教師 必須 了解 孩子 . +Professional writers do not have a regular income . ||| 專職 作家 沒有 固定 的 收入 . +Our team won the game . ||| 我們 這隊 贏 得 了 比賽 . +Someone locked me in the room . ||| 有人 把 我 鎖 在 這 房間 裡 . +You are wanted on the phone . ||| 有 你 的 電話 . +He likes sleeping . ||| 他 喜欢 睡觉 . +Can you put up with the way he behaves ? ||| 你 能 容忍 他 做事 的 方式 么 ? +Soldiers must carry out their orders . ||| 軍人 必須 履行 他們 的 命令 . +There are many earthquakes in Japan . ||| 日本 有 许多 地震 . +I have no clue . ||| 我 一无所知 . +Which book are you reading ? ||| 你 在读 哪 本书 ? +Did you rent an apartment ? ||| 你 租房子 了 吗 ? +Tom was too scared to say anything . ||| 汤姆 吓 得 说不出 话 . +Maybe you 'd better come with us . ||| 也許 你 最好 和 我們 一起 來 . +Animals cannot exist without air and water . ||| 動物 離不開 空氣 和 水 . +You are too old to be doing this kind of thing . ||| 你老 得 做不了 这种 事 了 . +Modern technology has made our lives more comfortable . ||| 现代 科学技术 让 我们 的 生活 更加 舒适 . +That nurse is very kind and polite . ||| 那个 护士 人 很 好 , 又 有 礼貌 . +He carried six boxes at a time . ||| 他 一次 搬 6 个 箱子 . +What country are you from ? ||| 你 是从 哪个 国家 来 的 ? +I got the information from him directly . ||| 我 直接 從 他 那裡 得到 訊息 . +Is it going to snow tonight ? ||| 今晚 会 下雪 吗 ? +I work for a bank . ||| 我 為 一家 銀行 工作 . +You and he are both very kind . ||| 你 和 他 都 很 友好 . +Do you want me to make coffee ? ||| 你 要 我 煮 咖啡 嗎 ? +The school needed a new teacher . ||| 學校 需要 一個 新 的 老師 . +The lake is deepest at this point . ||| 这 是 湖 的 最深处 . +" Can somebody help me ? " " I will . " ||| " 誰 可以 來 幫 我 一下 ? " " 我 幫 你 . " +I would like to become a poet . ||| 我 想要 成為 詩人 . +How about going out for a walk ? ||| 出去 散步 怎麼樣 ? +Tom asked Mary to help . ||| 湯姆 向 瑪麗 求助 . +That means a lot to me . ||| 那 对 我 来说 意义 重大 . +I can teach you how to drive . ||| 我会 教 你 怎么 开车 . +Where is the boss ? ||| 老 闆 在 哪 裡 ? +I have been looking for you . ||| 我 一直 在 找 你 . +He decided to marry her . ||| 他 決定 娶 她 . +Have a good flight . ||| 飞行 愉快 ! +They are young , but they have experience . ||| 他們 還 年輕 , 但 他們 有 經驗 . +Tom asked a few questions . ||| 湯姆 問 了 幾個 問題 . +I got off at the wrong station . ||| 我 在 錯誤 的 車站 下車 . +He comes here almost every day . ||| 他 几乎 每天 都 来 . +I am bad at sports . ||| 我 不 擅長 運動 . +I heard that Tom attempted suicide . ||| 我 聽 說 湯姆 試圖 自殺 . +I bought them each a present . ||| 我 買給 了 他們 每人 一份 禮物 . +I was supposed to go to school . ||| 我 该 去 上学 . +Other people is expectations affect how we behave . ||| 其他人 的 期望 會 影響 我們 的 行為 . +Tom seems to speak French better than before . ||| 汤姆 讲 法语 看来 比 以前 好 . +You had better not start until they arrive . ||| 你 最好 不要 在 他們 來 之前 開始 . +I lost my way in the woods . ||| 我 在 树林 里 迷路 了 . +I admitted that I did not know how to do that . ||| 我 承認 我 不 知道 怎麼 做 . +Is that what it is called ? ||| 那 就是 它 的 叫法 嗎 ? +Be calm . ||| 冷静 点 . +If I were you , I 'd do the same . ||| 如果 我 是 你 , 我 也 会 这么 做 . +I lost my money . ||| 我 丢 了 我 的 钱 . +He painted his bicycle red . ||| 他 把 他 的 自行车 刷成 红色 . +It will be spring soon . ||| 春天 快 來 了 . +Do you want to know why I lied to Tom ? ||| 你 想 知道 为什么 我 对 Tom 说话 吗 ? +You should do your homework now . ||| 你 應該 現在 做功 課 . +The boy got his hands dirty . ||| 這個 男孩 把 他 的 手 弄 髒 了 . +This is a beautiful flower . ||| 这 是 一朵 美丽 的 花 . +Did you already eat at home ? ||| 你 在家 吃 过 了 吗 ? +I did not get the point of his speech . ||| 我 没有 抓到 他 演讲 的 重点 . +Let me know the result as soon as you can . ||| 尽早 让 我 知道 结果 . +Tom died . ||| 汤姆 去世 了 . +He is a meth addict . ||| 他 是 个 吸毒 男 . +After reading his books I feel I can construct a house . ||| 讀完 他 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I want to go with a friend to Hokkaido next month . ||| 我 想 下个月 和 一个 朋友 去 北海道 . +I am almost 180 centimeters tall . ||| 我 差不多 180 公分 高 . +My father retired at the age of 65 . ||| 我 的 父亲 65 岁 的 时候 退休 了 . +I saw a group of foreigners on my way to school this morning . ||| 今天 早上 在 去 学校 的 路上 , 我 看到 了 一群 外国人 . +There is a school near my house . ||| 我家 附近 有 一所 學校 . +Unfortunately , she is absent . ||| 不幸 的 是 , 她 不 在 . +She whispered something to him . ||| 她 對 他 小聲 說 了 些 什麼 . +Tulips will bloom soon . ||| 鬱金香 很快 將 盛開 . +They fine you in Singapore if you throw trash in the streets . ||| 在 新加坡 的 街道 上 扔 垃圾 会 被 罚款 . +She was pleased with the new dress . ||| 那条 新 裙子 让 她 很 满意 . +He is fluent in French . ||| 他 说 法语 说 得 很 流利 . +Are you staying at this hotel ? ||| 你 住 在 這家 旅館 嗎 ? +The doctor may have said so . ||| 医生 可能 说 过 . +I can not find my keys anywhere . ||| 我 到处 都 找 不到 我 的 钥匙 . +This room is too small . ||| 這個 房間 太小 了 . +He likes taking care of the garden . ||| 他 喜歡 照顧 花園 . +What exactly happened to you ? ||| 你 到底 怎麼 回事 啊 ? +I think that they will be late . ||| 我 想 他們 會 遲 到 . +Have you eaten lunch ? ||| 你 吃 過午 飯 了 嗎 ? +Who was the letter written to ? ||| 信是 写给 谁 的 ? +Tom needs encouragement . ||| 湯姆 需要 鼓勵 . +I picked up a pretty shell at the seaside . ||| 我 在 海边 捡了个 漂亮 贝壳 . +Is somebody there ? ||| 那边 有人 吗 ? +It is necessary for you to go there . ||| 你 有 必要 到 那里 去 . +It will take a long time . ||| 我 要 花 很 长时间 . +He will be back tomorrow . ||| 明天 他 會 回來 . +You should use a deodorant . ||| 你 应该 用 一下 除臭剂 . +He plays very well . ||| 他 玩 得 很 好 . +This time it is different . ||| 这 一次 不 一样 . +He leaned on his elbows . ||| 他 把 身子 靠 在 胳膊 上 . +The picture is hanging on the wall . ||| 那幅 图 挂 在 墙上 . +She does not want to talk about it . ||| 她 不想 提 了 . +I can usually tell when someone is hiding something from me . ||| 我 常常 能 分辨 出来 一个 人 是不是 瞒 着 我 什么 事情 . +I will call Tom back . ||| 我会 叫 汤姆 回来 . +This is the tallest tower in Japan . ||| 這 是 日本 最高 的 塔 . +I have not started anything yet . ||| 我 还 没 开始 做 任何 事 . +I applied for membership in the association . ||| 我 申請 成為 協會 會員 . +I wanted to see Tom is room . ||| 我 就 想 看看 汤姆 的 房间 . +She looked out of the window . ||| 她 看 了 窗外 . +I am never late for school . ||| 我 從來 沒有 上學 遲到 . +Your opinion is similar to mine . ||| 你 的 意見 跟 我 的 相似 . +She does not have a driver is license . ||| 她 没有 驾照 . +We headed for the mountain cottage . ||| 我们 向 山间 小屋 走去 . +I can wait for you . ||| 我 可以 等 你 . +I understand that you feel uneasy , but do not worry . ||| 我 知道 你 不自在 , 但 别急 . +Can you tell those twins apart ? ||| 你 可以 分出 那 對 雙 胞胎 中 誰 是 誰 嗎 ? +Somebody came . ||| 有人 来 了 . +Do not be so pessimistic . ||| 不要 感觉 那么 悲观 . +You ought to thank him . ||| 你 应该 感谢 他 . +Are any seats still available ? ||| 還 剩 座位 嗎 ? +I believe Tom will do that . ||| 我 相信 汤姆 会 去 做 . +Ten years is a long time . ||| 十年 是 很 長 的 時間 . +She gave away all her dolls . ||| 她 把 她 所有 的 娃娃 送給 了 別人 . +I am in favor of your proposal . ||| 我 贊成 你 的 建議 . +I used to go out with friends every weekend . ||| 我 曾经 每 周末 都 和 朋友 外出 . +Here is the bill . ||| 这 是 账单 . +I will prove it to you . ||| 我会 给 你 证明 的 . +A capital letter is used at the beginning of a sentence . ||| 一個 句子 以 一個 大 寫 字母 開始 . +We have two daughters . ||| 我们 有 两个 女儿 . +I do not know what day he will come . ||| 我 不 知道 他 星期 幾會 來 . +You will understand later . ||| 你 晚一 會 就 能 明白 . +Mary is pregnant with twins . ||| 玛丽 怀 了 双胞胎 . +The church is at the foot of a mountain . ||| 教堂 位于 山脚 . +I am very glad to see you again . ||| 我 很 高興 再次 見 到 你 . +She wrapped herself in a blanket . ||| 她 用 一條 毯子 把 自己 裹起 來 . +I have never been so proud of you . ||| 我 从没 这么 以 你 为 豪 . +How about going for a drive ? ||| 去 開車 兜風 怎樣 ? +Do you know how the accident happened ? ||| 你 知道 這個 意外 是 如何 發生 的 嗎 ? +He got to school just in time . ||| 他 刚好 准时 到校 . +We have issues we have to deal with . ||| 我們 有 我們 必須 解決 的 問題 . +There is a good chance that gasoline prices will go up . ||| 油价 上涨 的 可能性 很 高 . +What do you need the money for ? ||| 你 要 这 钱 干嘛 ? +That furniture is my mother is . ||| 那個 家具 是 我 母親 的 . +I must decline . ||| 我 必须 拒绝 . +I will make you a new suit . ||| 我 會 給 你 做一套 新 衣服 . +They made him do the work again . ||| 他們 要 他 再 做 一次 這個 工作 . +I know you do not want to talk to me . ||| 我 知道 你 不想 跟 我 说话 . +I stayed home all day long reading novels . ||| 我 全天 在家 讀 小 說 . +He never said that . ||| 他 從來 沒 說 過 那個 . +Turn on the radio , please . ||| 請 打開 收音 機 . +The room smelled of tobacco . ||| 房里 闻 起来 有 股 烟味 . +They refused . ||| 他們 拒絕 了 . +Tom is waiting for Mary to return . ||| 汤姆 正在 等 着 玛丽 回来 . +If he were a little younger , he would be eligible for the post . ||| 如果 他 年轻 一点 , 他 将 很 适合 这个 职位 . +My aunt made a new skirt for me . ||| 我 嬸嬸 做 了 一條 新 裙子 給 我 . +Do you have a lot of money with you ? ||| 你 身上 有 很多 钱 吗 ? +The man finally confessed . ||| 那个 男人 最终 供认 了 他 的 罪行 . +Tom found out where Mary lives . ||| 湯姆 找到 了 瑪麗 的 住處 . +I want you to grow up . ||| 我 希望 你 能 长大 . +I was unable to complete the task . ||| 我 無法 完成 這個 任務 . +I will lend you the book as soon as I am done reading it . ||| 我 一把 这 本书 读完 了 就 借给 你 . +She walked around looking for him . ||| 她 走來 走去 地 找 他 . +This machine is out of order . ||| 这个 机器 出 故障 了 . +Give me an apple . ||| 給 我 一個 蘋果 . +Russia is facing great financial difficulties . ||| 俄罗斯 面临 着 严重 的 财政困难 . +English is taught in most countries . ||| 大部份 的 國家 都 教 英語 . +Tom returned to his hometown to visit his parents during the summer break . ||| 汤姆 在 夏休 回乡 看望 父母 . +Tom whispered something to Mary and she smiled . ||| 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 笑 了 . +Tom knows we are not happy . ||| 湯姆 知道 我們 不 高興 . +What is the difference between this and that ? ||| “ 这 ” 和 “ 那 ” 有 什么 区别 ? +Does anybody have a pencil ? ||| 有 谁 有 铅笔 吗 ? +I can not sleep well . ||| 我 睡 不好 . +How many people are in this room ? ||| 在 這個 房間 裡 有 多少 人 ? +Will you hold this seat for me ? ||| 您 能 給 我 留 這個 座 嗎 ? +When people meet , first impressions determine more than 50 percent of whatever happens next . ||| 在 人际交往 中 , 第一印象 决定 着 将要 发生 的 事情 内容 的 百分之五十 以上 . +Nowadays many people travel by car . ||| 現在 很多 人 開車 去 旅行 . +Are these your daughters ? ||| 這些 是 你 的 女兒 嗎 ? +The sky today is the bluest that I have ever seen it . ||| 今天 的 天空 是 我 看 過 最藍 的 天空 . +Life today is fast @-@ moving and complex . ||| 今日 的 生活 是 迅息 萬變和 複 雜 的 . +I have finished reading that book . ||| 我 讀 完 了 那 本書 . +The boat passed under the bridge . ||| 船 從 橋下 通過 . +He is the same age as me . ||| 他 和 我 同岁 . +What do you want to be ? ||| 您 想 成为 什么 ? +Let is take a break now . ||| 现在 休息 一下 . +Everybody wants to sit beside her . ||| 大家 都 想 坐在 她 旁边 . +I listened to some records last night . ||| 我 昨晚 聽 了 一些 唱片 . +We elected her captain of our team . ||| 我们 选 她 为 我们 队 的 队长 . +Why do not you go see Tom ? ||| 你 為 甚麼 不 去 看 湯姆 ? +May I ask you a question ? ||| 我 可以 问 你个 问题 吗 ? +He likes fishing . ||| 他 喜歡 釣魚 . +Here is where they usually have dinner . ||| 这儿 是 他们 通常 吃晚饭 的 地方 . +She put on her hat to go out . ||| 她 戴 上 了 帽子 准备 出去 . +After dinner , I did my homework . ||| 吃 完 晚 飯 後 , 我 做作 業 . +You are still too young to get a driver is license . ||| 你 還 太 年輕 無法 取得 駕駛 執照 . +How many boys are in this class ? ||| 这个 班 有 多少 男生 ? +Would you like to eat with us ? ||| 你 想 和 我們 一起 吃 嗎 ? +Tom took the hammer away from Mary . ||| 汤姆 从 玛丽 那里 拿走 了 锤子 . +Can you forgive me ? ||| 可以 原谅 我 吗 ? +Why are you awake ? ||| 你 为什么 醒 着 ? +Everyone hoped that she would win . ||| 每個 人 都 希望 她 會 獲勝 . +Do not leave the lights on when you leave the room . ||| 离开 房间 时 , 不要 留灯 . +Elephants are the largest land animals alive today . ||| 大象 是 如今 现存 的 陆生动物 里 最大 的 . +Old people often talk to themselves . ||| 老人 時 常自言 自語 . +Their wedding will be tomorrow . ||| 他们 的 婚礼 将 在 明天 举行 . +I have never seen Tom laugh . ||| 我 從 沒見 湯姆笑 . +I did not want to humiliate you . ||| 我 不是 想要 羞辱 你 . +He does not have any friends . ||| 他 没有 任何 朋友 . +They worked jointly on this project . ||| 他们 一起 为 这个 项目 工作 过 . +I think my right arm is broken . ||| 我 想 我 的 右 手臂 斷 了 . +I know that you like sports . ||| 我 知道 你 喜欢 体育运动 . +Tom does not even have a driver is license . ||| 湯姆 甚至 沒有 駕駛 證 . +He made remarkable progress in English . ||| 他 的 英語 有 了 顯著 的 進步 . +It is hard to believe Tom was not aware that Mary was in love with him . ||| 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +Tell me how you solved the problem . ||| 告訴 我 你 如何 解決 了 這個 問題 . +I am under so much pressure , I just want to cry . ||| 我 壓力 好大 , 我 真 想 哭 . +There is a hole in your sock . ||| 你 的 袜子 上 有 个 洞 . +What time does the train arrive at Yokohama ? ||| 火车 什么 时候 到 横滨 ? +She does not like sushi . ||| 她 不 喜欢 寿司 . +He lived abroad for many years . ||| 他 居住 在 國外 多年 . +Is this really real ? ||| 这 真是 真的 吗 ? +Shakespeare is too hard to read . ||| 莎士比亞 的 作品 太 難讀 了 . +Really ? ||| 你 确定 ? +Do not distract me while I am studying . ||| 当 我 学习 的 时候 不要 打扰 我 . +I have got no friends . ||| 我 没有 朋友 . +I have many abilities . ||| 我 有 很多 才能 . +All Americans have to pay their taxes . ||| 所有 美国 人 都 需要 缴税 . +Tom is hammered . ||| 汤姆 醉 了 . +Welcome to your new home . ||| 歡迎 來到 你 的 新家 . +I am Finnish , but I speak also Swedish . ||| 我 是 芬兰人 , 但 我 也 说 瑞典语 . +I will wait here till he comes back . ||| 我会 等 在 这儿 直到 他 回来 . +We often talk about the weather . ||| 我们 经常 讨论 天气 . +This piano is really cheap . ||| 這 鋼琴 真 便宜 . +My dad keeps a journal every day . ||| 我 爸爸 每天 都 记日记 . +By the way , I have got to tell you something . ||| 我 得 順便 給 你 講件 事 . +Some people do not know that . ||| 有些 人 不 知道 那件事 . +It is raining . ||| 下雨 了 . +Tom lit his cigar . ||| 湯姆 點 了 雪茄 . +I know all my neighbors . ||| 我 认识 我 所有 的 邻居 . +That woman is much older than I am . ||| 那 女人 比 我 老 很多 . +This car needs washing . ||| 这辆 车 需要 清洗 . +Hope is not a strategy . ||| 希望 不是 一种 策略 . +This is how I made it . ||| 这 就是 我 的 办法 . +I am shorter than you . ||| 我 比 你 矮 . +You have no right to interfere in other people is affairs . ||| 你 沒有 干涉 他 人事 務 的 權力 . +I have no books to read . ||| 我 没书 可读 . +You have got a big hole in your sock . ||| 你 的 袜子 上 有个 大洞 . +Does she like oranges ? ||| 她 喜歡 柳橙 嗎 ? +You are in my way . ||| 你 擋住 了 我 的 路 . +I spent no more than three dollars . ||| 我 只 花 了 三 美元 . +You should apologize to Dad for not coming home in time for supper . ||| 你 應該 為 你 沒有 及時 回家 吃 晚餐 向 你 父親 道歉 . +School will start next Monday . ||| 下周一 开学 . +He is a very thoughtful person . ||| 他 是 個 很 體貼 的 人 . +Let is go to the movies . ||| 我们 去 看 电影吧 ! +I would like to meet your older sister . ||| 我 想 見 你 姐姐 . +She visits the dentist on a regular basis , so she seldom gets toothaches . ||| 她 定期 去 看 牙医 , 所以 她 很少 牙痛 . +What is missing ? ||| 少 了 什么 ? +Tom has lost his keys . ||| 湯姆 弄 丟了 他 的 鑰匙 . +Do not drop this cup . ||| 不要 掉 了 这个 杯子 . +We should all sleep easier now . ||| 我們 現在 都 該 早點 睡 . +Tom did not get much sleep . ||| 汤姆 没 怎么 睡 . +Are you going to come tomorrow ? ||| 你 明天 要 來 嗎 ? +How did Tom get out of jail ? ||| 汤姆 是 如何 出狱 的 ? +I paid five dollars for the book . ||| 我 花 了 五元 買 這 本書 . +He has lived here for one week . ||| 他 已經 住 在 這裡 一個 星期 了 . +It is believed that whales have their own language . ||| 人们 相信 鲸 有 他们 自己 的 语言 . +He climbed the stairs . ||| 他 爬 上 了 樓梯 . +I wanted to stop Tom . ||| 我 想 阻止 湯姆 . +Of course she can speak English . ||| 她 當然 會 講 英語 . +We have been warned . ||| 我们 被 警告 过 了 . +Are you working ? ||| 你 在 上班 嗎 ? +My mother does not like watching TV . ||| 我 母親 不 喜歡 看電視 . +I lived abroad for ten years . ||| 我 住 在 國外 十年 了 . +My uncle lived abroad for many years . ||| 我 叔叔 住 在 國外 很多年 了 . +What prevented you from coming earlier ? ||| 什麼 阻止 你 早點 來 了 ? +Tom is very courageous , is not he ? ||| 汤姆 非常 勇敢 , 不是 么 ? +No one ran ahead of him . ||| 没有 人 跑 在 他 前面 . +He did it for money . ||| 他 做 这个 是 为了 钱 . +Continue working . ||| 繼續 工作 ! +You do not have to tell Tom if you do not want to . ||| 如果 你 不想 , 那 你 便 没有 这个 必要 去 告诉 汤姆 . +Go get your passport . ||| 去 拿 你 的 护照 . +I always think of him when I am alone . ||| 我 孤单 的 时候 总会 想起 他 . +Do not bug me . ||| 别 来 烦 我 . +All of you are familiar with the truth of the story . ||| 你們 所有 的 人 都 熟悉 這個 故事 的 真相 . +Do you think Tom is retired already ? ||| 你 認為 湯姆 退休 了 嗎 ? +Tom , have you eaten anything ? ||| 汤姆 , 你 吃 过 东西 了 吗 ? +He intruded on her privacy . ||| 他 侵犯 了 她 的 隐私 . +That is your responsibility . ||| 这 是 您 的 义务 . +What disease do I have ? ||| 我 得 了 什麼 病 ? +I can not get my tractor started . ||| 我 發動 不了 我 的 拖拉 機 . +Everybody had a hard time . ||| 每个 人 都 遇到 过 困难 . +Tom will go . ||| 湯姆 要 走 . +I will do it tomorrow . ||| 我 明天 再 做 . +Let us know when you will arrive . ||| 讓 我們 知道 你 什麼 時候 會 到 . +I do not know if I still have it . ||| 我 不 知道 我 还有 没有 . +Do you know how to use this ? ||| 你 知道 怎么 使用 吗 ? +We should have been more careful . ||| 我們 應 該 更 小心 的 . +That child can count to twenty . ||| 这 孩子 能数 到 20. +I can not say for sure . ||| 我 不 太 確定 . +Tom often fails to keep his word . ||| 汤姆 经常 不 守约 . +I wish I had more money . ||| 我 希望 我 有 更 多 錢 . +Walk two blocks , and turn left . ||| 走 過 兩個 街區 , 然 後 左 轉 . +Please sing . ||| 请 唱歌 . +They waited in line for the bus . ||| 他們 排隊 等 公車 . +Umbrellas sell well . ||| 雨伞 卖 得 好 . +Tom is testing me . ||| 汤姆 在 试探 我 . +He is a teacher at our school . ||| 他 是 我們 學校 的 老師 . +This paragraph is vague . ||| 這 一個 段落 是 模糊不清 的 . +You can count on her . ||| 你 可以 相信 她 . +He knows many people . ||| 他 认识 很多 人 . +The police have been searching for the stolen goods for almost a month . ||| 警察 大概 从 一个月 前 就 开始 找 被 偷 物品 了 . +The ship was flying the American flag . ||| 這 艘 船 掛著 美國國旗 . +Mathematics is an easy subject for me . ||| 數學 對 我 來說 是 一個 容易 的 科目 . +I will be gone for a while . ||| 我 要 暂时 离开 . +I prefer red wine to white wine . ||| 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +I am very worried about my weight . ||| 我 很 擔心 我 的 體重 . +Children should obey their parents . ||| 孩子 應該 服 從 他們 的 父母 . +I can not hear very well . ||| 我 聽 不 太 清楚 . +He wrote one letter . ||| 他 写 了 一封信 . +The end justifies the means . ||| 為了 正當 目的 可以 不擇 手段 . +Can you show me on the map ? ||| 可以 在 地图 上 展示 给 我 看 吗 ? +He is afraid of dogs . ||| 他 怕 狗 . +You have no fever . ||| 你 没 发烧 . +They guaranteed regular employment to their workers . ||| 他們 對 他們 的 員工 保證 就業 . +Strawberries sell for a high price in the winter . ||| 草莓 在 冬天 售價高 . +I would like to exchange this shirt I bought yesterday . ||| 我 想 去 換 我 昨天 買 的 這件 襯衫 . +He filled the bottle with water . ||| 他 用水 装满 了 瓶子 . +No problem at all ! ||| 一点 问题 都 没有 ! +We had a heated discussion about it . ||| 我們 激烈 的 討論 了 這個 問題 . +Keep the money in a safe place . ||| 把 錢 保存 在 安全 的 地方 . +In Switzerland , spring comes in May . ||| 在 瑞士 , 春天 在 五月 来临 . +I am a stranger here . ||| 我 是 這裡 的 外地人 . +My son does not obey me . ||| 我 儿子 不 听 我话 . +I know that this is important to you . ||| 我 知道 这 对 您 来说 很 重要 . +It grew larger and larger . ||| 它 变得 越来越 大 . +She is collecting material for a book . ||| 她 为 一 本书 收集 材料 . +He postponed leaving for Hokkaido until next month . ||| 他 延遲 到 下 個 月 去 北海道 . +What is the name of that bird ? ||| 那 隻 鳥 叫什 麼 名字 ? +Tom is smashed . ||| 汤姆 醉 了 . +I shave every morning . ||| 我 每天 早上 刮 鬍 子 . +Carrots contain a lot of vitamin A. ||| 胡蘿 蔔 中 含有 大量 的 維生素 A . +Tom and Mary are close friends . ||| Tom 和 Mary 是 親密 的 朋友 . +What an idiot I am ! ||| 我 真是 個 白痴 ! +See you again . ||| 再见 ! +We met in 2008 . A year later , we got married . ||| 我們 在 2008 年 相遇 . 一年 後 , 我們 結婚 了 . +She succeeded in drawing the truth from him . ||| 她 成功 地 从 他 口中 得知 了 真相 . +I made him carry the suitcase . ||| 我 要 他 提 行李箱 . +You are no longer a mere child . ||| 你 不再 只是 一个 孩子 了 . +That can not be Mary . She is in the hospital now . ||| 那 不 可能 是 玛丽 , 她 现在 在 医院 . +How is the apple ? ||| 這個 蘋果 怎麼樣 ? +He came to pick me up . ||| 他 來 接 我 走 . +He will not listen to me . ||| 他 不 會 聽 我 的 . +She is already sleeping . ||| 她 已经 睡下 了 . +I do not need anyone . ||| 我 谁 也 不 需要 . +Maybe you should just give up . ||| 可能 你 应该 放弃 . +My driving instructor says I should be more patient . ||| 我 的 駕駛 教練 說 我 應 該 更 有 耐心 一點 . +I am glad you guys are here . ||| 我 很 高兴 你们 都 在 . +I would like to cash a travelers ' check . ||| 我 想 兌換 旅行支票 . +Do not shout . ||| 不许 大叫 . +Kissing a smoker is like licking an ashtray . ||| 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +The students of this school are kind . ||| 这个 学校 的 学生 很 友好 . +What subject do you think he is interested in ? ||| 你 觉得 他 会 对 什么 主题 感兴趣 ? +Germany was once allied with Italy . ||| 德国 曾 是 意大利 的 同盟国 . +I am sorry , I forgot my homework . ||| 很 抱歉 我 忘 了 寫 作業 . +I smell gas . ||| 我 聞到 瓦斯 味 . +She got the ticket for nothing . ||| 她 免費 得到 這 張 票 . +I thought he would come . ||| 我 以为 他 会 来 的 . +This table is made out of wood . ||| 这 张 桌子 是 木 的 . +Banks open at nine o 'clock . ||| 银行 九点 开门 . +The man tried to install his own antenna . ||| 这 男人 试 着 安装 他 自己 的 天线 . +Were you out last night ? ||| 昨晚 你 出去 了 嗎 ? +They called in a doctor because the child was ill . ||| 他們 打 電話 給 醫生 因為 這個 孩子 生病 了 . +I can not tell you how much I will miss Tom . ||| 我 不会 告诉 你 我 有 多 想念 汤姆 . +Waste not , want not . ||| 不 浪費 則 不 匱乏 . +Promises are not enough . ||| 承諾 是 不夠 的 . +It is a whole new ball game for me . ||| 這 對 我 來說 是 個 全新 的 球類 遊戲 . +There is only a little milk left . ||| 只 剩下 一點點 牛奶 了 . +I stayed home all day instead of going to work . ||| 我 没有 去 工作 , 在 家里 待 了 一整天 . +Why should you think that ? ||| 为什么 你 对于 这个 有 这样 的 想法 ? +She will not be back till five . ||| 她 五點 前 不 會 回來 . +Tom is three years older than Mary is . ||| 汤姆 比 玛丽 大 三岁 . +Can I have a bottle of red wine ? ||| 請來 瓶紅 酒 . +I need to get a stamp . ||| 我 需要 一張 郵票 . +He found me a good seat . ||| 他 幫 我 找到 了 一個 好 位子 . +Yesterday was my birthday . ||| 昨天 是 我 的 生日 . +Most people brush their teeth at least two times a day . ||| 多数 人 每天 至少 刷 两次 牙 . +This book says that elephants live to be over 100 years old . ||| 这 本书 上写 , 大象 能 活过 一百岁 . +He was born in the 19th century . ||| 他 生于 19 世纪 . +Please send me a reply as soon as you receive this mail . ||| 收到 此 邮件 后 请 尽快 给 我 答复 . +The meeting has been postponed until tomorrow . ||| 会议 已经 被 延迟 到 明天 了 . +Tom clenched the shovel . ||| 汤姆 握紧 了 铲子 . +Your driver is license has expired . ||| 你 的 駕駛 執照 已經 過期 了 . +He is not stupid . ||| 他 不是 傻子 . +A string of disasters struck the region . ||| 一連 串 的 災難 襲擊 這個 地區 . +I have got to shave before leaving . ||| 離開 前 我 必須 刮 鬍 子 . +He arrived in time for the meeting . ||| 他 及時 趕到 了 會議 . +The lid will not open . ||| 這 蓋子 打不開 . +Why can not we talk now ? ||| 为什么 我们 现在 不能 讲 ? +I did not know who Tom was at first . ||| 我 一 开始 不 知道 汤姆 是 谁 . +We love each other . ||| 我們 彼此 相愛 . +I felt so sleepy that I could hardly keep my eyes open . ||| 我 感觉 困 得 几乎 不能 睁开 我 的 眼睛 了 . +Do not put books on the table . ||| 不要 把 書 放在 那 張 桌子 上 . +We just do not have enough time . ||| 我们 没有 足够 的 时间 了 . +I am having lunch with my sister right now . ||| 現在 正 和 妹妹 吃 午 飯 中 . +You will never achieve anything if you do not study harder . ||| 如果 你 不 更加 努力 地學 習 , 你 將 永遠 不 會 有所 成就 . +She does not smile for me anymore . ||| 她 已经 不 向 我 微笑 了 . +The boy was shirtless . ||| 男孩 赤裸 着 上身 . +There is a large supermarket . ||| 有 一個 大型超市 . +You are not afraid of ghosts , are you ? ||| 你 不怕 鬼 , 不是 麼 ? +We help the poor . ||| 我們 幫助 窮人 . +Get lost ! ||| 滚 . +You might want to discuss it with Tom . ||| 你 或许 想 和 汤姆 讨论一下 . +Tom told me that he would like to become a doctor . ||| 汤姆 告诉 我 他 想 当 医生 . +Goodbyes are always sad . ||| 离别 总是 让 人 悲伤 . +She did nothing but cry all the while . ||| 她 一直 哭哭啼啼 . +We will go on a picnic if it is fine tomorrow . ||| 如果 明天 天气 好 , 那么 我们 就 去 野餐 . +Why is change so hard ? ||| 為 什麼 改變 那麼 難 ? +I do not do that as well as I used to . ||| 我 不如 以前 做得好 了 . +There was no furniture in that room . ||| 那個 房間 裡 沒有 家具 . +Mary bought a skirt and a blouse . ||| 玛丽 买 了 一件 衬衫 和 一条 连衣裙 . +Would you lend me your pencil ? ||| 你 可以 借 我 你 的 鉛 筆 嗎 ? +We had a heavy frost this morning . ||| 今天 早上 下 厚 霜 了 . +Put it out of your mind . ||| 別 去 想 它 . +He is getting better day by day . ||| 他 一天 一天 地好 轉 . +Would you like to be my friend ? ||| 你 想 做 我 的 朋友 嗎 ? +Have you given Tom everything ? ||| 你 全都 给 汤姆 了 吗 ? +My business has at last gotten on the right track . ||| 我 的 生意 终于 走上 了 正轨 . +Are you good at math ? ||| 你 数学 好 吗 ? +I was just going to write a letter . ||| 我 正要 去 写 一封信 . +Have you ever heard of such a thing ? ||| 你 听说 过 这样 的 事 吗 ? +She wore a white dress . ||| 她 穿 了 一件 白色 的 洋裝 . +Tell me the truth . ||| 告訴 我 真相 . +He could no longer stand the pain . ||| 他 再也 無法 忍受 這種 痛苦 . +There is no use crying over spilled milk . ||| 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Can you please close that window ? ||| 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +Compared with yours , my car is small . ||| 和 你 的 车比 起来 , 我 的 车 很小 . +We are going to have to change our plans . ||| 我們 快要 到 必須 改變 我們 計畫 的 時候 了 . +You have done a perfect job . ||| 你 做 了 一项 完美 的 工作 . +Tom wrote a letter to Mary this morning . ||| Tom 今天 早上 寫 了 封信 給 Mary . +With her help , my French improved little by little . ||| 在 她 的 帮助 下 , 我 的 法语 逐渐 进步 了 . +Do not forget to put a stamp on your letter . ||| 别忘了 在 你 的 信 上 贴 张 邮票 . +There is a lot of trash on the far bank of the river . ||| 河對岸 有 很多 的 垃圾 . +Tom broke the window . ||| 湯姆 打破 了 窗戶 . +Tom is stingy . ||| 汤姆 很小 气 . +There was hardly anyone in the room . ||| 房間 裡 幾乎 沒 有人 . +We have ample time to catch our train . ||| 我们 有 充裕 的 时间 赶上 火车 . +Do you think I am stupid ? ||| 你 認為 我 傻 嗎 ? +We traveled to Mexico by plane . ||| 我們 搭 飛機 去 墨西哥 旅行 . +We should study English every day . ||| 我们 应该 每天 都 学 英语 . +Mary tied an apron around her waist and then took the turkey out of the oven . ||| 玛丽 把 围裙 系 在 她 的 腰 上 , 然后 把 火鸡 从 烤箱 里 拿 出来 了 . +Fish and red wine do not go well together . ||| 魚 和 紅酒 不合 . +I do not remember your name . ||| 我 不 记得 你 的 名字 了 . +She is sure to succeed . ||| 她 理所当然 的 取得 了 胜利 . +Can you give me an example ? ||| 你 可以 给 我 举 个 例子 吗 ? +In the morning , I write in the park . ||| 我 每天 早上 在 公園 寫作 . +Trim the fat off the meat . ||| 切除 這塊 肉 的 脂肪 . +These dogs are big . ||| 這些 狗 很大 . +Tom is always playing video games . ||| 湯姆總 是 在 玩電視 遊樂器 . +He will be back soon . ||| 他 很快 就 会 回来 的 . +What are you doing here ? ||| 你 在 這裡 做 什麼 ? +He is learning how to drive a car . ||| 他 正在 学 怎么 开车 . +We are going to eat now . ||| 我們 現在 就要 吃 飯 . +You did not eat much lunch , did you ? ||| 你 午饭 吃 的 不多 , 不是 吗 ? +It was a quiet winter evening . ||| 这 是 个 静谧 的 冬夜 . +English is spoken in Singapore . ||| 在 新加坡 的 人 說 英語 . +Facebook is blocked in China . ||| Facebook 在 中國 是 被 封鎖 的 . +I made sure no one was following me . ||| 我 確定 沒人 跟踪 我 . +Could you take a picture of us ? ||| 您 能 好好 给 我们 照 一张 相吗 ? +I have never heard Tom speaking French before . ||| 我 以前 從 沒聽 過 湯姆 講 法語 . +Have you ever seen the man in this photo ? ||| 你 见 过 这 张 照片 上 的 男人 吗 ? +Tom has lost interest in studying French . ||| 湯姆 已經 失去 學習 法語 的 興趣 . +Be punctual . ||| 要 守时 ! +The sun always rises in the east . ||| 太陽 總 是 從 東方 升起 . +My watch gains five minutes a day . ||| 我 的 手表 每天 走 快 五分钟 . +I prefer to remain seated . ||| 我 更 想 繼續 坐著 . +I did not mean it . ||| 我 不是 这个 意思 . +Can I see this one ? ||| 我 能 看看 這個 嗎 ? +Hope to see you again next year . ||| 希望 明年 再次 見 到 你 . +She was run over by a car . ||| 她 被 車子 輾過 了 . +He shot an arrow at the deer . ||| 他 射 了 鹿一箭 . +I have known her for a long time . ||| 我 已經 認識 她 很 久 了 . +Is there anything else you can tell me ? ||| 你 還 能 告訴 我 甚麼 ? +No student is allowed to enter the room . ||| 學生 不准 進入 這個 房間 . +Summer has ended . ||| 夏天 已經 結束 . +I remember the first time . ||| 我 记得 第一次 . +Do you need help carrying anything ? ||| 你 需要 幫 忙 拿 東西 嗎 ? +They decided to get married next month . ||| 他們 決定 在 下 個 月 結婚 . +Mastering a foreign language is difficult . ||| 掌握 一门 外语 很 难 . +Tom wanted to know if Mary had a boyfriend . ||| 汤姆 想 知道 玛丽 是否 有 男朋友 ? +I would like to put some things in the hotel safe . ||| 我 想 在 酒店 的 保险柜 里 存点 东西 . +I play in a band . ||| 我 在 一個 樂團 裡 演奏 . +Thank you for your attention . ||| 谢谢您 的 关注 . +The railroad is parallel to the road . ||| 铁路 与 公路 平行 . +Some people relax by reading . ||| 一些 人 通过 阅读 来 放松 . +I can not believe he did that . ||| 我 不能 相信 他 做到 了 . +Everyone was invited , except for me . ||| 除了 我 每個 人 都 被 邀請 了 . +Once again . ||| 再 一次 . +I want to buy a few pairs of sunglasses . ||| 我 想 買 幾副 墨鏡 . +This cake tastes like it has cheese in it . ||| 这块 蛋糕 尝 起来 有 奶酪 的 味道 . +She should have arrived home by now . ||| 她 现在 应该 已经 到 家 了 . +Will he be able to catch the train ? ||| 他 能 趕 上火 車 嗎 ? +Do you want to know why I quit ? ||| 您 想 知道 为什么 我 要 离开 吗 ? +It would be helpful if you could do that for me . ||| 您 那样 做 的话 , 可 就 帮到 我 了 . +Tom mopped the floor . ||| 汤姆 擦 了 地板 . +You were treated unfairly . ||| 你 被 不公平地 對待 . +He used to read at night . ||| 他 以前 都 在 夜晚 看書 . +I will drop by the post office on the way home . ||| 我会 在 回家 的 路上 顺便去 邮局 . +The post office is down the street . ||| 郵局 在 街 那 頭 . +What is this ? ||| 那 是 什么 ? +You have too many books on the shelf . ||| 你 書 架上 的 書太 多 了 . +He somewhat resembles his father . ||| 他 有点像 他 的 父亲 . +Up to now , how many books do you think you have read ? ||| 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +I do not like kids . ||| 我 不 喜欢 小孩 . +Wet clothes stick to your skin . ||| 濕 衣服 貼著 你 的 皮膚 . +I know those tall girls quite well . ||| 我 跟 那些 高 個子 的 女孩 很 熟稔 . +Put down your weapons . ||| 放下 你们 的 武器 . +The prince fell in love with a woodcutter is daughter . ||| 王子 愛 上 了 一個 樵夫 的 女兒 . +Tom arrived after I left . ||| 汤姆 在 我 走 后 到 了 . +He left the house without so much as saying goodbye . ||| 他 甚至 没 说 再见 就 离开 了 家 . +She did not like him . ||| 她 不 喜歡 他 . +Please let me go . ||| 請 允許 我 去 . +My premonition turned out to be right . ||| 我 的 预感 被 证明 是 正确 的 . +I understand the concept . ||| 我 明白 这 概念 . +Despite his riches , he is not contented . ||| 尽管 他 很 富有 , 他 还是 不 满足 . +Do not forget that Tom is allergic to peanuts . ||| 不要 忘记 汤姆 对 花生 过敏 . +We have to have a plan . ||| 我們 必須 有 計畫 . +I went there recently . ||| 我 刚 去过 那里 . +Can you hurry up a bit ? ||| 快 一点 好 吗 ? +Do they love each other ? ||| 他們 彼此 相愛 嗎 ? +What was the cause of the explosion ? ||| 爆炸 的 原因 是 什么 ? +I want your opinion . ||| 我 想要 聽 聽 你 的 意見 . +My girlfriend is a good dancer . ||| 我 的 女朋友 跳舞 跳 得 很棒 . +I agree with his opinion . ||| 我 同意 他 的 觀點 . +Have you worked the puzzle out ? ||| 你 解开 谜团 了 吗 ? +She is popular , not because she is beautiful , but because she is kind to everyone . ||| 她 受歡 迎 不是 因為 她 的 美麗 , 而是 因為 她 親切 地 對待 每個 人 . +Suddenly , the light went out . ||| 灯 突然 灭 了 . +I have been feeling a little restless . ||| 我 有 點 不安 . +I was at the theater . ||| 我 在 劇場 . +Do you have a child ? ||| 你 有 孩子 嗎 ? +No less than three hundred dollars was needed for the work . ||| 这个 工作 需要 不 低于 300 美金 . +I do not think he will say yes . ||| 我 不 認為 他 會 說 好 . +It is true that she is pretty , but she is selfish . ||| 她 确实 很漂亮 , 但 她 很 自私 . +Man is the only animal that can talk . ||| 人类 是 唯一 能够 彼此 交谈 的 动物 . +How can you afford a place like this ? ||| 我們 怎麼 付得 起 這種 地方 的 錢 ? +Fantastic ! ||| 好 棒 ! +I know that you know that I know . ||| 我 知道 你 知道 我 知道 . +I 'd buy a new house if I had the money . ||| 如果 我 有 錢 , 我 會 買 一個 新房子 . +She gave me some good advice . ||| 她 給 了 我 一些 很好 的 建議 . +I baked cookies . ||| 我 烤 了 曲奇 . +You look just like Tom . ||| 你 看起来 就 像 湯姆 . +I am thinking of going abroad next year . ||| 我 在 考虑 明年 去 国外 . +I think you should eat a ham sandwich . ||| 我 认为 你 该 吃 火腿三明 治 . +The robot went out of control . ||| 這個 機器 人 失控 了 . +Is not it black ? ||| 它 不是 黑色 的 嗎 ? +Feel free to ask any questions . ||| 尽管 提问 . +I am sorry , I do not have change . ||| 對 不起 , 我 沒有 零 錢 . +It seems interesting to me . ||| 在我看来 很 有意思 ! +It is an endangered species . ||| 这 是 一个 濒临 消失 的 物种 . +I bought it for about twelve dollars . ||| 我 用 12 美元 买 的 . +I have mixed feelings about this . ||| 我 對 這件 事 百感交集 . +Have you finished your lunch yet ? ||| 你 吃 完 你 的 午飯 了 嗎 ? +Tom did not understand what the teacher said . ||| 汤姆 没 明白 老师 说 了 什么 . +She had just come home when I called . ||| 我 打电话 的 时候 , 她 刚回到 家 . +I have seen a lot of him recently . ||| 我 最近 常看到 他 . +It seems we are in the same boat . ||| 看起来 我们 是 在 一条 船上 . +Maybe you should move . ||| 你 可能 該 動 一動 . +I held my breath and waited . ||| 我 屏住 了 呼吸 等待 着 . +We both won . ||| 我們 都 贏 了 . +I am not sure of the exact date . ||| 我 不 知道 確切 的 日期 . +Who does this suitcase belong to ? ||| 這個 手提箱 是 誰 的 ? +She grew up to be a veterinarian . ||| 她 長 大 後 成為 了 一名 獸 醫 . +It is a clear day . ||| 它 是 一個 晴朗 的 日子 . +I was so homesick . ||| 我 很 想 家 . +She studied Japanese after dinner . ||| 晚 飯 後 她 讀 日 語 . +Do you study every day ? ||| 你 每天 都 学习 吗 ? +She put the dirty dishes in the sink . ||| 她 把 脏 盘子 放进 水池 里 . +Are you busy now ? ||| 現在 你們 忙 嗎 ? +It is only your imagination . ||| 那 只是 你 的 想象 . +There are a few apples on the tree , are not there ? ||| 树上 有些 苹果 , 不是 吗 ? +I hear that you play the piano . ||| 我 聽 說 你 彈 鋼琴 . +Beware of pickpockets . ||| 小心 扒手 . +Are you afraid of bugs ? ||| 你 怕 虫子 吗 ? +Tom has loved Mary for a long time . ||| 汤姆 爱 玛丽 很 久 了 . +I met him at the barber is . ||| 我 在 理发店 碰到 了 他 . +Tom pushed his way through the crowd . ||| 汤姆 从 人群 中 拥 出来 . +We are going by train . ||| 我们 要 乘火车 去 . +Long skirts are out of fashion now . ||| 現在 長裙 不 流行 了 . +He has a lot of original ideas . ||| 他 有 很多 獨到 的 見解 . +This bomb can kill many people . ||| 这个 炸弹 可以 炸死 很多 人 . +I have no intention of asking him . ||| 我 不想 問 他 . +He drives his own car . ||| 他 開 他 自己 的 車 . +I asked him to go there tomorrow . ||| 我 要求 他 明天 去 那裡 . +Tom is taking a day off . ||| 汤姆 在 休 一天 假 . +Ask me something easier . ||| 问 我 简单 些 的 . +You did not tell me Mary was so beautiful . ||| 你 没 告诉 我 玛丽 这么 漂亮 . +The bill will never go through . ||| 該 法案 將 永遠 不 會 通過 . +You will bounce back . ||| 你 会 东山再起 的 . +I am a junior high school student . ||| 我 是 個 國中 生 . +Your view is too optimistic . ||| 你 的 看法 過 於 樂觀 . +I am married . ||| 我 已婚 . +I helped her wash dishes . ||| 我 幫 她 洗碗 . +Perhaps Tom is too old to do this kind of thing . ||| 也許 Tom 年紀 太 大 , 不 適合 做 這件 事 . +She made a serious mistake . ||| 她 犯 了 一個 嚴重 的 錯誤 . +Let is go out and have some fun tonight . ||| 我们 今晚 一起 出去 找 乐子 吧 . +I do not love her , not even if she loves me . ||| 即使 她 愛 我 , 我 也 不 愛 她 . +His memory never ceases to astonish me . ||| 他 的 记忆力 总 让 我 吃惊 . +I know what can happen here . ||| 我 知道 这里 会 发生 什么 . +How are things at work ? ||| 工作 怎么样 ? +She could not answer the question . ||| 她 無法 回答 這個 問題 . +May I pay by check ? ||| 我 可以 用 支票 付 吗 ? +Tom talked about his school . ||| 湯姆 談 了 他 的 學校 . +Rome is famous for its ancient architecture . ||| 羅馬 以 其 古代 建築 而 聞名 . +I am hoping that will happen . ||| 我 希望 那 會 發生 . +The town was defended by a large army . ||| 城市 由 一支 大军 守卫 . +She turned eighty @-@ one . ||| 她 八十一 歲 了 . +Two glasses of apple juice , please . ||| 请 给 我 两杯 苹果汁 . +I almost never watch TV nowadays . ||| 现在 我 几乎 不 看电视 . +You do your part and I will do the rest . ||| 你 做 你 的 部份 , 其他 的 我 來 做 . +There is no need to apologize . ||| 沒有 必要 道歉 . +She is absorbed in rock music . ||| 她 沉迷于 摇滚乐 . +He said he did not know the man , which was a lie . ||| 他 說 他 不 認識 那個 男人 , 這 是 一個 謊言 . +He got tired of reading . ||| 他 厌倦 了 读书 . +He grasped the rope with two hands . ||| 他 用 兩 隻 手 抓住 了 繩子 . +Each year Hamamatsu has a kite festival . ||| 每年 濱松 有 風箏 節 . +I work for three hours every Sunday morning . ||| 我 每个 周末 早上 工作 三 小时 . +The boy jumped into the water . ||| 這個 男孩 跳入 了 水中 . +Please call the police . ||| 叫 警察 . +After he had graduated from the university , he taught English for two years . ||| 從 他 大學 畢業 以 後 , 他 教 了 兩年 的 英語 . +I am looking for you . ||| 我 在 找 你 . +My dog goes everywhere with me . ||| 我 的 狗 總是 跟著 我 . +Let is leave . ||| 走 吧 . +What is your favorite way to cook trout ? ||| 你 最 喜欢 怎么 烧 鲑鱼 ? +Please buy a tube of toothpaste . ||| 請買 一支 牙膏 . +We felt the house shake a little . ||| 我們 感覺 到 房子 搖動 了 一下 . +Will you tell me how to get to Shinjuku ? ||| 请问 你 可以 告诉 我 如何 可以 到达 新宿 吗 ? +Who won ? ||| 谁 赢 了 ? +This is the best restaurant that I know . ||| 这 是 我 所 知道 的 最好 的 餐厅 . +It was so cold yesterday that I stayed home . ||| 昨天 太冷 了 , 我 只好 待在家里 . +She gave us a vague answer . ||| 她 給 了 我們 一個 模糊 的 答案 . +You are the only one that can help us . ||| 你 是 唯一 一个 能 帮助 我们 的 人 . +Who would want to live here ? ||| 誰 會 想住 在 這裡 ? +Is he Japanese ? ||| 他 是 日本 人 吗 ? +By the way , what is your address ? ||| 对 了 , 你 的 地址 是 什么 ? +This book sells well . ||| 那 本書 賣 得 很 好 . +Tom is good at cooking . ||| 湯姆 擅長 烹飪 . +I graduated from Kyoto University . ||| 我 畢業 於 京都 大學 . +Do not look a gift horse in the mouth . ||| 獲 人 贈 馬 , 休看 馬口 . +Life is beautiful . ||| 生活 是 美丽 的 . +You have got to learn to hold your tongue . ||| 你 應該 學著 閉上 你 的 嘴 . +We have had a most delightful day . ||| 我們 過 了 最 愉快 的 一天 . +Whether he comes or not , the result will be the same . ||| 他 来 还是 不 来 , 结果 是 一样 的 . +He wrote me a letter . ||| 他 给 我 写 了 封信 . +Tom knows him . ||| 湯姆 認識 他 . +Tom told me that he 'd give me that book if I wanted it . ||| 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Tom swims . ||| Tom 游泳 . +I think that fact is very important . ||| 我 認為 事實 非常 重要 . +Someone is knocking on the door . ||| 不知 是 谁 在 敲门 . +You swim better than I do . ||| 你 游泳 游得 比 我 好 . +What are you doing ? ||| 搞 什么 啊 ? +I feel like taking a bath now . ||| 我 現在 想 洗澡 . +I actually agree with you . ||| 我 确实 同意 你 . +It is under the table . ||| 它 在 桌下 . +This is old news to me . ||| 這 對 我 來說 是 舊 聞 了 . +What is wrong with my legs ? ||| 我 的 腿 有 什么 毛病 ? +Where are you going ? ||| 你 去 哪儿 ? +When is breakfast ? ||| 早餐 是 從 幾點 到 幾點 ? +She traveled all over the world . ||| 她 周遊 世界各地 . +He is an excellent brain surgeon . ||| 他 是 一個 優秀 的 腦 外科 醫生 . +I want to talk to your uncle . ||| 我 想 和 你 的 舅舅 谈一谈 . +The park is filled with children . ||| 公園 裡 都 是 孩子 . +You are so bad . ||| 你 真 壞 . +I will be free tomorrow afternoon . ||| 我 明天 下午 有空 . +Tom waved his hand . ||| 汤姆 挥手 了 . +Mathematics is my favorite subject . ||| 數學 是 我 最 喜歡 的 科目 . +He plays very well . ||| 他 弹 得 很 好 . +Where is the nearest subway station ? ||| 最近 的 地鐵 站 在 哪裡 ? +Tom needs to update his website . ||| 汤姆 需要 更新 他 的 网站 . +I have two cats . ||| 我 有 两只 猫 . +Where is nearest American Express office ? ||| 最近 的 美國 運通 辦 公室 在 哪裡 ? +School starts in September in Europe . ||| 歐洲 的 學校 在 九月 開學 . +A permanent job is better than a temporary one . ||| 正式工 比 临时工 要 好 . +I encountered a problem . ||| 我 遇到 了 故障 . +Taking the group of children to the library was no problem . ||| 带 孩子 团体 去 图书馆 一点 问题 都 没有 . +Are we going to lose ? ||| 我们 将 会 输 了 吗 ? +Have some more . ||| 你 該 多 吃 點 . +Where can I find toothpaste ? ||| 在 哪儿 我 能 找到 牙膏 ? +Lake Biwa is the largest lake in Japan . ||| 琵琶湖 是 日本 最大 的 湖 . +Do you have an extra key ? ||| 你 有 多余 的 钥匙 吗 ? +I dialed Tom is number . ||| 我 拨打 了 Tom 的 号码 . +I advise you never to live beyond your income . ||| 我 建议 你 永远 不要 入不敷出 . +He asked me what I had bought . ||| 他 问 我 买 了 什么 . +We go to the same school . ||| 我們 上 同一 所學校 . +Are you free now ? ||| 现在 有空 吗 ? +I would not try that again . ||| 我 不会 再 试 了 . +She has kept a diary for 3 years . ||| 她 已經 寫 了 三年 的 日記 . +That is a good idea . ||| 那 是 一個 好 主意 . +Tom climbed over the wall . ||| 湯姆 爬 上 了 墙 . +It is very normal . ||| 它 很 正常 . +I did not believe him at first . ||| 起初 我 不 相信 他 . +Should not you still be in bed ? ||| 你 不 該 還 在 床上 嗎 ? +Where is the nearest station ? ||| 最近 的 車站 在 哪裡 ? +That is not what I told Tom . ||| 那 不是 我 對 湯姆 說 的 . +He pretended not to be listening . ||| 他 假装 听不见 . +We have all we need for now . ||| 我们 现在 拥有 了 所有 我们 想要 的 . +Because of his wealth , he was able to become a member of that club . ||| 由 於 他 的 財富 , 他 能夠 成為 這個 俱樂部 的 成員 . +Do you guys want something to eat ? ||| 你們 想要 吃 些 什麼 嗎 ? +The car he is driving is not his . ||| 這輛 他 正在 開 的 車 不是 他 的 . +They do not pay me enough . ||| 他們 給 我 錢 沒 給夠 . +Studying abroad is very common now . ||| 現在 出國 留學 是 很 常見 的 了 . +My mother looked at me with tears in her eyes . ||| 我 妈妈 眼 含着泪 看 我 . +She introduced me to her father . ||| 她 把 我 介紹 給 她 父親 . +That is avoidable . ||| 那 是 可 避免 的 . +We are expecting a good harvest this year . ||| 我們 期望 今年 豐收 . +Would you please lock the door ? ||| 請 你 鎖 門 好 嗎 ? +I got off at the wrong station . ||| 我 下錯 了 車站 . +We were crowded into the small room . ||| 我们 挤进 了 那间 小房间 里 . +Tom walks slowly . ||| 汤姆 走 得 很慢 . +It is going to rain soon . ||| 天 快要 下雨 了 . +It turned out that I was right . ||| 結果 證明 我 是 對 的 . +Mt . Fuji was covered with snow . ||| 富士山 被 雪所覆蓋 . +I have just washed all the dishes . ||| 我 剛 洗 了 所有 的 碗盤 . +Ukrainian girls are the prettiest in the world . ||| 乌克兰 姑娘 是 全世界 最 漂亮 的 姑娘 . +Please take me to the hospital . ||| 請 帶 我 去 醫院 . +This park reminds me of my childhood . ||| 来到 这个 公园 会 让 我 想起 自己 的 童年 . +I am a college student . ||| 我 是 个 大学生 . +I wish it would stop raining . ||| 我 希望 雨會 停 . +Where do you want to go ? ||| 你 要 去 哪裡 ? +I should have left earlier . ||| 我 應 該 要 早點 出發 的 . +I saw a lot of buses . ||| 我 看見 了 很多 大巴 車 . +It did not cross my mind . ||| 这 不是 我 的 想法 . +When his food supply ran short , he had to look for a new place to live . ||| 他 的 食物 供给 不足 的的 时候 , 他 不得不 去 找 新 的 地方 居住 . +It is impossible . ||| 這 是 不 可能 的 . +He should have done it that way . ||| 他 该 那样 做 完 了 . +That is not my wife . ||| 这 不是 我 的 妻子 . +I want to talk with your uncle . ||| 我 想 跟 你 叔叔 談談 . +I heard someone calling my name . ||| 我 聽見 有人 叫 我 的 名字 . +It does not mean anything . ||| 这 什么 都 说明 不了 ! +Can you swim underwater ? ||| 你 能 潜水 吗 ? +We work in a factory . ||| 我们 在 一个 工厂 工作 . +Please get me hotel security . ||| 请 帮 我 叫 宾馆 保安 . +How much money do you need ? ||| 你 需要 多少 钱 ? +I hope that your brother is better . ||| 我 希望 你 弟弟 好 点 了 . +She looks unhappy . ||| 她 看起来 不 幸福 . +It is easy to read this book . ||| 這 本書 很 容易 讀 . +Are you off tonight ? ||| 你 今天 晚上 有 沒有 要 上班 ? +I know a lot about ships . ||| 我 知道 很多 關於船 的 知識 . +Flying is the quickest way to travel . ||| 搭 飛機 是 最快 的 旅行 方式 . +They married when they were young . ||| 他們 在 還 很 年輕 的 時候 就 結婚 了 . +I know that money is not everything . ||| 我 知道 金钱 不是 万能 的 . +Hey you ! Please wait . ||| 嘿 , 你 ! 請 稍候 . +I have no friends . ||| 我 没有 朋友 . +You ought to ask for your teacher is permission . ||| 你 應該 請求 你 的 老師 允許 . +Tom was completely worn out . ||| 湯姆 完全 筋疲力盡 了 . +No one came . ||| 没有 人 来 了 . +You have to study hard to catch up with your class . ||| 你 必須 用功 讀書 趕上 同 學 . +Summer vacation begins next Monday . ||| 暑假 從 下 星期一 開始 . +How was your test ? ||| 你 的 测验 怎么样 ? +Tom took the concert ticket Mary offered him . ||| 汤姆 拿 了 玛丽 给 他 的 音乐会 票 . +Always be true to yourself . ||| 永遠 要 對 自己 誠實 . +You may choose whichever you want . ||| 你 可以 選擇 任何 你 想要 的 . +A dog was run over by a truck . ||| 一条 狗 被 卡车 碾过 . +You 'd better go . ||| 你 最好 走 . +Tom is there already . ||| 湯姆己 經 在 那裡 了 . +Tom says he hopes Mary is able to do that . ||| 汤姆 说 他 希望 玛丽 能 做到 . +How could so many people go along with this ? ||| 怎么 会 有 这么 多 的 人 同意 呢 ? +Did you murder Tom ? ||| 是 你 杀 了 汤姆 吗 ? +His wife is in the hospital because she was injured in a car crash . ||| 他 的 妻子 在 醫院 裡 因為 她 在 一場 車禍 中 受傷 了 . +Wow ! It is been a long time . ||| 哇 ! 好久 不見 了 . +Is Tom an actor ? ||| 汤姆 是 演员 吗 ? +I will provide you all the necessary information . ||| 我会 把 所有 有用 的 信息 给 你 的 . +What time will you get to the station ? ||| 你 几点 会 到 车站 ? +You are too suspicious about everything . ||| 你 对 什么 都 太 怀疑 了 . +Apples were served as the dessert . ||| 蘋果 被 當作 甜點 . +Run . ||| 你 用跑 的 . +I know that some people value my work . ||| 我 知道 有些 人 看重 我 的 工作 . +She went to Shanghai by train . ||| 她 是 坐 火車 去 上海 的 . +It is time to go . ||| 是 該 離開 的 時候 了 . +Tom probably knew who I was . ||| 汤姆 可能 知道 我 是 谁 . +You did not need to buy the book . ||| 你 沒有 必要 買 這 本書 . +Here is an even better one . ||| 这里 有个 更好 的 . +I am not accustomed to such treatment . ||| 我 不習 慣 這樣 的 待遇 . +Could you put this coat somewhere ? ||| 您 能 把 這件 大衣 放在 某個 地方 ? +You should have a doctor take a look at it . ||| 你 应该 让 个 医生 看看 . +She gave it her personal attention . ||| 她 親自 過問 了 此事 . +It is cruel of him to say such things to her . ||| 他 跟 她 说 这样的话 真是太 残忍 了 . +Tom prepared his speech very carefully . ||| 湯姆 很 認真 地 準備 他 的 演講 . +His bag is right here , so he cannot have gone to school yet . ||| 他 的 包 就 在 这儿 , 所以 他 不 可能 已经 去 了 学校 . +Everyone knew Tom could speak French well . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom promised to try again . ||| 湯姆 答應 再 試 一次 . +He hid his friend from the police . ||| 他 把 他 的 朋友 藏 了 起來 不 讓 警察 知道 . +I have not seen you for ages . Do you remember when I saw you last ? ||| 好久不见 了 . 记得 上次 我 什么 时候 看见 你 的 吗 ? +I had difficulty in solving this problem . ||| 我 很 難 解決 這個 問題 . +Do not forget where you put it . ||| 不要 忘記 你 放在 哪裡 . +He gave him a book . ||| 他 給 了 他 一本 書 . +I think that Tom should go on a diet . ||| 我 觉得 汤姆 需要 减肥 了 . +They had a baby last week . ||| 上週 他們 生 了 一個 孩子 . +I have always kept my word . ||| 我 一直 信守 我 的 諾言 . +I am sorry . I got the wrong number . ||| 對 不起 , 我 拿 錯 了 號碼 . +I have just arrived at the airport . ||| 我 剛剛 抵達 了 機場 . +He has been sick since last Sunday . ||| 他 從 上週 日 開始 就 生病 了 . +What is the biggest difference ? ||| 最 不 一样 的的 是 什么 ? +She was in trouble because she lost her passport . ||| 她 遇到 了 麻煩 , 因為 她 弄 丟了 她 的 護照 . +When she was thirteen , she ran away from home . ||| 她 十三岁 的 时候 离家出走 了 . +My brother would often stay up all night reading novels . ||| 我 哥哥 經常 熬夜 看 小 說 . +What is the fare from Osaka to Akita ? ||| 从 大阪 到 秋田 的 车费 是 多少 ? +We need a hero . ||| 我們 需要 英雄 . +You should give up smoking and drinking . ||| 你 该 戒烟 戒酒 了 . +I gave up smoking for a year . ||| 我 戒 煙 一年 了 . +I have lost my pencil . ||| 我 的 鉛筆 掉 了 . +Stay here with Tom . ||| 留在 这 和 汤姆 在 一起 . +He likes baseball very much . ||| 他 非常 喜欢 棒球 . +Do you have a table on the patio ? ||| 你 院子 裡 有 桌子 嗎 ? +Whose is this car ? ||| 這 台汽 車 是 誰 的 ? +It is six o 'clock already . ||| 已經 六點鐘 了 . +I had a slight headache last night . ||| 我 昨晚 有 輕微 的 頭痛 . +Between you and me , I do not like our new team captain . ||| 我 就 只 告诉 你 , 我 不 喜欢 我们 的 新 队长 . +She likes going to the library . ||| 她 喜欢 去 图书馆 . +Everybody is alive . ||| 所有人 都 是 活着 的 . +This is my sister . ||| 这 是 我 的 妹妹 . +Everybody was singing except me . ||| 除 我 以外 每個 人 都 在 歌唱 . +She always cared about my health . ||| 她 總是 關心 我 的 健康 . +He will be glad to see you . ||| 他 會 很 高興 見到 你 . +You can not blame Tom for getting angry . ||| 你 不能 怪 汤姆生 气 了 . +Tom said he is considered quitting his job . ||| 汤姆 说 他 考虑 辞职 . +I am not absolutely sure . ||| 我 不 完全 肯定 . +Did you enjoy yourself at the party last night ? ||| 你 在 昨晚 的 聚會 上 盡 興 了 嗎 ? +How is the weather there ? ||| 那里 的 气候 怎么样 ? +He is a student at this college . ||| 他 是 這 所 大學 的 學生 . +The pain has gone . ||| 疼痛 消失 了 . +Is there anything you want to add to what I just said ? ||| 我 刚才 说 的 内容 , 你 想 补充 么 ? +Are you sad ? ||| 你 傷心 嗎 ? +Thanks anyway . ||| 还是 要说 谢谢 的 . +I will keep that book for myself . ||| 我 要 把 这 本书 留给 自己 . +How long have you worked with Tom ? ||| 你 跟 湯姆 工作 了 多 長 時間 ? +Shame on you . ||| 你 真 丢脸 ! +Tom will not be here long . ||| 湯姆 不 會 在 這裡 久留 . +I want Tom to win . ||| 我 想 让 汤姆 赢 . +Whose is it ? ||| 这 是 谁 的 ? +Father makes sure that all the lights are off before he goes to bed . ||| 父親 確定 所有 的 燈 都 關 了 後 才 去 睡 覺 . +I always keep my promises . ||| 我 總 是 信守 我 的 承諾 . +He was forced to work overtime . ||| 他 被迫 加班 . +He died soon after the accident . ||| 他 在 事故 後 不久 就 去世 了 . +She believes that he is innocent . ||| 她 相信 他 是 無辜 的 . +Look at that house . ||| 看 那个 房子 . +Have you already fed the horses ? ||| 你 喂 过 马 了 吗 ? +What did you do with my luggage ? ||| 你 把 我 的 行李 放到 哪裡 去 了 ? +Their baby is able to walk already . ||| 他們 的 小 嬰孩 已經 會 走路 了 . +She found a ball in the garden . ||| 她 在 花園 裡 發現 了 一顆 球 . +I usually have breakfast at seven . ||| 我 通常 七點 吃 早餐 . +I do not have time to read . ||| 我 没 时间 阅读 . +He makes friends with everybody he meets . ||| 他 跟 所有 他 遇見 的 人 交朋友 . +He is a bit like his father . ||| 他 有点像 他 的 父亲 . +So what will you do in the afternoon ? ||| 您 下午 做 啥 呢 ? +We visited the museum last week . ||| 我們 上週 參觀 了 博物 館 . +How lovely ! ||| 多 可爱 啊 ! +Mt . Aso is an active volcano . ||| 阿蘇山 是 一座 活火山 . +Congratulations ! ||| 恭喜 ! +Give the book to whomever wants it . ||| 这 本书 谁 想要 就 给 谁 吧 . +The man kept talking for an hour . ||| 這個 男人 連續 說 了 一個 小 時 的 話 . +Please write back soon . ||| 请 快点 回信 . +Why do not you do it ? ||| 你 为什么 不 做 ? +My heart was filled with happiness . ||| 我 心里 充满 着 快乐 . +Hurry . Please lend me a hand . ||| 快點 . 請 幫 幫 我 . +Tom is unlikely to do that again . ||| 湯姆 不太可能 再 那麼 做 了 . +Tom has a tattoo of a skull on his chest . ||| 湯姆 在 胸上 有 個 頭 骨 文身 . +I was unable to finish my homework . ||| 我 無法 完成 我 的 作業 . +If you want to know , just ask . ||| 如果 您 想 知道 , 直接 问 就是 了 . +A fire broke out the day before yesterday . ||| 前天 發生 了 火災 . +Last month our twenty @-@ year @-@ old daughter gave birth to a baby girl . ||| 上个月 , 我们 20 岁 的 女儿 生 了 个 女孩 . +I hardly ever go to museums . ||| 我 几乎 不 去 博物馆 . +He helped me to get over the difficulties . ||| 他 帮助 我 克服 了 困难 . +She is an obstinate girl . ||| 她 是 个 倔强 的 女孩 . +I have not met her . ||| 我 没有 遇见 她 . +To my knowledge , she has not married yet . ||| 據 我 所知 , 她 還 沒 結婚 . +Tom told me that he did not want to go with us . ||| 湯姆 告訴 我他 不想 跟 我們 走 . +Where is the coffee shop ? ||| 這家 咖啡 館 在 哪裡 ? +I do not know if I will have time to do it . ||| 我 不 知道 我 是否 有 时间 做 . +I recognized some of the tunes that Tom played . ||| 我 认出 了 些 汤姆 演奏 的 调子 . +He sometimes goes to work by car . ||| 他 有 時 開車 去 上班 . +He sent a card to Mary . ||| 他 送 了 一張 卡片 給 瑪麗 . +Tom is very important to me . ||| 汤姆 对 我 来说 很 重要 . +I am very busy today . ||| 我 今天 很忙 . +I can not guarantee that that is going to happen . ||| 我 不能 确保 这 一切 会 发生 . +The company spends a lot of money on advertising . ||| 那 家 公司 在 广告 上 花 了 很多 钱 . +Birds build nests . ||| 鸟儿 筑巢 . +You never get a second chance to make a first impression . ||| 你 永遠 沒有 第二次 機會 去 打造 第一印象 . +This letter is addressed to you . ||| 這 封信 是 寄 給 你 . +Winter is just around the corner . ||| 冬季 快 來 了 . +I bought a watch . ||| 我 買 了 一只 手 錶 . +I will never stop . ||| 我 絕不 會 停 . +Anybody would be better than nobody . ||| 不管是谁 总 比 没人好 . +We are still nervous . ||| 我們 還 是 緊張 . +A true gentleman never betrays his friends . ||| 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +I am learning how to drive . ||| 我 正在 學習 如何 駕駛 . +Our friendship will last a long time . ||| 我們 的 友情 會長 久 留存 . +She was buried in her hometown . ||| 她 被 安葬 在 她 的 家鄉 . +I will not go to school tomorrow . ||| 我 明天 不 會 去 學校 . +Tom is in the living room , sleeping on the couch . ||| 汤姆 在 客厅 , 躺 在 长沙 发 上 睡觉 . +He showed me her picture . ||| 他 給 我 看 了 她 的 照片 . +Are not you free tonight ? ||| 你 今天 晚上 沒 空 嗎 ? +Tom did it again . ||| 汤姆 又 做 了 一次 . +It is the only thing I can think of . ||| 这 是 我 唯一 能 想到 的 事 了 . +If not now , when ? ||| 如果 不是 现在 , 那 是 什么 时候 ? +I have not seen her since last month . ||| 我 從 上 個 月 開始 就 沒有 看到 她 了 . +What is the minimum wage in your country ? ||| 你 的 国家 的 最低工资 是 多少 ? +I like you . ||| 我 喜歡 你 . +I was terribly confused by his question . ||| 我 對 他 的 問題 感到 非常 迷惑 . +Texting while driving is dangerous . ||| 開車 時 打字 是 危險 的 . +Tom is looking for a new job . ||| 湯姆 在 找 新 工作 . +My sister sometimes makes our dinner . ||| 我 的 妹妹 有時 為 我們 做 晚餐 . +Thank you for the present you gave my son . ||| 谢谢 你 送给 我 儿子 礼物 . +Call me tomorrow . ||| 明天 打电话 给 我 . +My father participated in a cooking contest and came in first . ||| 我 爸爸 参加 了 料理 竞赛 并得 了 第一名 . +I play the guitar after dinner . ||| 我 晚 飯 後 彈 吉他 . +We know our rights . ||| 我们 知道 我们 的 权利 . +Did you know that before ? ||| 你 之前 知道 那個 嗎 ? +I am in trouble . ||| 我 遇到 困難 了 . +The meeting was called off . ||| 会议 取消 了 . +Can you guess what I have ? ||| 你 能 猜到 我 有 什么 吗 ? +We should always try to help others . ||| 我們 應該 盡力 幫助 他人 . +My father stopped drinking . ||| 父亲 戒酒 了 . +My son is going to leave for France next week . ||| 我 儿子 下周 要 去 法国 了 . +Did not you lock up your car ? ||| 你 没有 把 你 的 车上 锁 吗 ? +Can you make it on time ? ||| 你 能 准时 做好 吗 ? +They must work 8 hours a day . ||| 他们 每天 必须 工作 8 小时 . +There is no water . ||| 沒有 水 . +If you want to , call me this afternoon . ||| 如果 你 想 的话 , 今天下午 给 我 打电话 . +You will get lost . ||| 你 会 迷路 的 . +I worked three years as Tom is assistant . ||| 我 给 汤姆 当 了 三年 助手 . +I 'd like orange juice . ||| 我 想要 橙汁 . +He asked me whether I like math . ||| 他 问 我 喜不喜欢 数学 . +Would you mind lending me your pen ? ||| 你 介意 借 我 你 的 筆 嗎 ? +Tom quit . ||| 汤姆 不 干 了 . +We live in the suburbs . ||| 我们 住 在 郊区 . +Tom is overweight . ||| 汤姆 超重 了 . +Tom picked up the knife . ||| 汤姆 拿起 了 刀 . +Turn off the television . I can not concentrate . ||| 把 電視 關掉 . 我 無法 專心 . +Excuse me , do you speak English ? ||| 對 不起 . 你 會 講 英語 嗎 ? +Lightning is usually followed by thunder . ||| 閃 電 常常 伴隨 著 雷鳴 . +Can you imagine walking around on the moon ? ||| 你 可以 想象 在 月球 上 行走 吗 ? +I thought that Tom would want to know about that . ||| 我 本 以为 汤姆 愿意 了解 这件 事 . +He was discovered unconscious on the floor of the kitchen . ||| 他 被 人 发现 倒 在 厨房 的 地板 上 , 不省人事 . +We had no secrets . ||| 我們 沒有 秘密 . +I will give you anything but this . ||| 除了 這個 之外 我 會 給 你 任何 東西 . +Thank you very much for your present . ||| 非常 谢谢 你 的 礼物 . +The importation of rare wild animals to this country is strictly prohibited . ||| 该国 严禁 进口 稀有 野生动物 . +She devoted her life to working among the poor . ||| 她 一生 致力于 为 穷人 工作 . +Tom is used to cooking on a campfire . ||| 湯姆 習慣 用營 火 做菜 . +He held a package under his arm . ||| 他 挾著 一個 包裹 . +Go with these men . ||| 跟 這些 人 走 . +You can rely on him . ||| 你 可以 依靠 他 . +They would never meet again . ||| 他们 不会 再见面 了 . +Does anyone here speak Japanese ? ||| 这儿 有人 说 日语 吗 ? +I am not doing that anymore . ||| 我 不再 做 那事 了 . +Stir the soup . ||| 搅 一下 汤 . +Did you learn that from Tom ? ||| 你 從 湯姆 那裡 學到 了 嗎 ? +I have heard this joke before . ||| 我 以前 聽 過 這 笑 話 . +Cover your head when you are in the sun . ||| 當 你 在 陽光 下 的 時候 , 遮住 你 的 頭 . +The stew smells delicious . ||| 這 鍋 墩 湯聞 起來 真 美味 . +I usually got to bed about eleven . ||| 我 通常 約 十一 點 鐘 上床 睡覺 . +I sat between Tom and John . ||| 我 坐在 汤姆 和 约翰 中间 . +A soccer team consists of eleven players . ||| 一个 足球队 由 十一个 球员 组成 . +Can we take care of this tomorrow ? ||| 这个 我们 明天 能 解决 吗 ? +He just got home . ||| 他 刚回到 家 . +I agreed to the proposal . ||| 我 同意 這項 建議 . +I finished writing the letter by noon . ||| 我 中午 前 寫 完 這 封信 了 . +My friends invited me to supper . ||| 我 朋友 邀 我 共赴 晚餐 . +My grandfather died five years ago . ||| 我 祖父 五年 前 去世 了 . +The police were able to find the criminal . ||| 警方 能夠 找到 罪犯 . +I am going to tell you the truth . ||| 我 要 告诉 你 真相 . +Light the candle . ||| 把 蠟燭 點燃 . +She has many friends in Hong Kong . ||| 她 在 香港 有 很多 朋友 . +School begins at eight @-@ thirty . ||| 学校 8 点 半 开始 上课 . +The economy of the island is dependent on the fishing industry . ||| 这个 岛 的 经济 依靠 的 是 渔业 . +We should call the police . ||| 我们 该 报警 . +Tom does not usually dress like that . ||| 湯姆平 時 不 那樣 穿衣服 . +Tom is reading an essay . ||| 湯姆 在 讀 一篇 短文 . +Whose is that notebook ? ||| 這 臺 筆 記 本 電 腦 是 誰 的 ? +I signed the document . ||| 我 簽 了 文件 . +My neck still hurts . ||| 我 的 脖子 还 疼 . +This is atrocious weather . ||| 惡劣 的 天氣 . +You can shut up now . ||| 你 現在 可以 住口 了 . +This is a wig . ||| 这 是 假发 . +A good idea suddenly came to me . ||| 我 的 大 腦 裏 突然 出現 了 一個 很好 的 想法 . +That is thirty meters long . ||| 那個 長 30 米 . +I looked after him for a period of time . ||| 我 看 了 他 一段时间 . +You do not need to study today . ||| 你 今天 不必 讀書 . +That young lady is a nurse . ||| 这个 年轻 女孩 是 护士 . +I think that Liszt is " Forgotten Waltz No.3 " is a hidden masterpiece . ||| 我 觉得 李斯特 的 《 被 遗忘 的 圆舞曲 第三首 》 是 个 被 埋没 的 名曲 . +UFO stands for unidentified flying object . ||| UFO 代表 不明 飛行 物體 . +My friend is father is a doctor . ||| 我 朋友 的 爸爸 是 個 醫生 . +I went shopping last Saturday . ||| 上週 六 我 去 購物 . +Do not forget Tom is allergic to peanuts . ||| 不要 忘记 汤姆 对 花生 过敏 . +In case of emergency , call the police . ||| 在 緊 急情 況下 , 打 電話 報警 . +Where was it published ? ||| 它 发表 在 哪里 ? +Has Tom broken something again ? ||| 汤姆 又 弄坏了 什么 东西 吗 ? +Would you like some more beer ? ||| 你 想 再 喝 些 啤酒 嗎 ? +You 'd better wait until the police come . ||| 你 最好 等到 警察 前来 . +He is very tall . ||| 他 很 高 . +Is it safe to skate on this lake ? ||| 在 這個 湖上 滑冰 安全 嗎 ? +She filled the glass with wine . ||| 她 在 玻璃杯 裡 裝滿 了 酒 . +Tom did not seem that happy . ||| 汤姆 看来 不 高兴 . +Please send me your picture . ||| 請 把 您 的 照片 發給 我 . +Our house has three bedrooms . ||| 我們 家 有 三個 臥室 . +Few students could understand what he said . ||| 很少 有學 生能 了解 他 說 的 話 . +She held her baby in her arms . ||| 她 把 她 的 孩子 抱 在 懷裡 . +He will be busy tomorrow . ||| 他 明天 會 很忙 . +I will not work overtime today . ||| 今天 我 不 加班 . +Are you still collecting stamps ? ||| 你 還 在 收集 郵票 嗎 ? +No , thank you . I have had enough . ||| 不 , 謝謝 你 . 我 已經 吃 飽 了 . +Do we have anything I can snack on ? ||| 我們 有 任何 我 可以 當 零食 吃 的 東西 嗎 ? +I confess that I am tired . ||| 我 承认 我 很 累 . +You will soon get used to speaking in public . ||| 你 很快 就 会 习惯 在 大庭广众 说话 了 . +She hung a curtain over the window . ||| 她 把 窗簾 掛 在 窗戶 上 . +We owe you an apology . ||| 我们 欠 你个 道歉 . +He does not know the difference between right and wrong . ||| 他 好坏不分 . +The plane took off . ||| 飛機 起飛 了 . +She made tea for me . ||| 她 给 我 沏 了 茶 . +The principal wants to talk to you . ||| 校长 想 跟 你 谈话 . +What kind of shampoo do you use ? ||| 你 用 哪種 洗 髮 水 ? +Is this the right train for Tokyo ? ||| 這 是 開往 東京 正確 的 火車 嗎 ? +I am fully convinced of your innocence . ||| 我 完全 相信 你 是 清白 的 . +If I were invisible I would not have to dress myself . ||| 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +I do not like green onions . ||| 我 不 喜欢 葱 . +You are a better skier than me . ||| 你 滑雪 比 我 好 . +Tom is just a crazy old man . ||| 湯姆 只是 一個 瘋老 頭 . +She felt blue . ||| 她 感到 闷闷不乐 的 . +Tom just does not understand . ||| 汤姆 就是 不 懂 . +May I see your driver is license ? ||| 我 可以 看看 你 的 駕駛 執照 嗎 ? +Have you chosen a major yet ? ||| 你 选好 专业 了 吗 +I am counting on your help . ||| 我 指望 你 的 帮助 . +Remember to mail this letter tomorrow morning . ||| 明天 早上 記得 去 寄 這 封信 . +Do not forget to take a camera with you . ||| 别忘了 带 个 相机 . +Can you speak French ? ||| 你 會 講 法語 嗎 ? +His story sounds true . ||| 他 的 故事 聽 起來 是 真的 . +I lost my key somewhere around here . ||| 我 的 钥匙 就是 在 这 附近 丢失 的 . +Which do you prefer , tea or coffee ? ||| 你 比較 喜歡 哪 一個 , 茶 還 是 咖啡 ? +The baby seemed to be fast asleep . ||| 那個 嬰兒 似乎 在 熟睡中 . +Tom does not have to go to Boston next week . ||| Tom 下星期 不用 去 波士 頓 . +Tom told Mary to help John . ||| 湯姆 讓 瑪 麗 幚 約 翰 . +Have you cleaned your room yet ? ||| 你 打掃 你 的 房間 了 嗎 ? +I like taking walks in the woods . ||| 我 喜歡 在 樹林 裡 散步 . +Sometimes I still miss her . ||| 有 時候 , 我 還 是 會 想起 她 . +In life there are ups and downs . ||| 生活 中 有 高低 起伏 . +I had to stay at home . ||| 我 得 留在 家裡 . +All you need to do is just sit here . ||| 你 要 做 的 只是 坐在 这儿 . +Tom could not swim . ||| 汤姆 不会 游泳 . +She picked up one of the glass vases . ||| 她 拿 了 其中 一个 玻璃 花瓶 . +She was holding a small parasol in her hand . ||| 她 手里 握 着 一把 小 阳伞 . +She looks like a teacher . ||| 她 看起来 像 老师 . +Sometimes I see him at the club . ||| 我 偶尔 会 在 俱乐部 碰到 他 . +I appreciate good music . ||| 我 欣賞 好 音樂 . +These pictures were painted by him . ||| 這些 畫 是 他 畫 的 . +It took us a long time to decide what we really wanted to do . ||| 我們 花 了 很 長 時間 決定 我們 真正 想 的 事 . +She was a tall , thin girl with long , soft brown hair . ||| 她 是 個 又 高 又 瘦 , 留著 一頭 又 長 又 軟 的 褐色 頭 髮 的 女孩 . +The coral reef is the region is prime attraction . ||| 珊瑚礁 是 这个 地区 的 主要 景点 . +The moonlight is really beautiful . ||| 月光 真美 . +Children should drink milk every day . ||| 孩子 们 应该 每天 喝牛奶 . +I ate bread and butter this morning . ||| 今天 早上 , 我 吃 了 面包 夹 黄油 . +I trust his executive ability . ||| 我 相信 他 的 执行 能力 . +Where are you planning to stay ? ||| 你 打算 在 哪裡 留宿 ? +I should tell Tom what I have to do . ||| 我 應該 告訴 湯姆 我 該 做 甚麼 . +I am daydreaming . ||| 我 在 做 白日梦 . +You should eat more vegetables . ||| 你 應 該 多 吃 蔬菜 . +I like both dogs and cats . ||| 我 喜歡 狗 和 貓 . +Wearing a suit , he stood out . ||| 他 穿著 西裝 站 了 出來 . +I do not know right now . ||| 我 现在 不 知道 . +I am on the right . ||| 我 在 右邊 . +I often eat chicken . ||| 我 經常 吃 雞 . +Are you sure that is what you want ? ||| 你 確定 那 是 你 想要 的 嗎 ? +Let is synchronize our watches . ||| 讓 我們 校 對 一下 錶 吧 . +Tom is not very strict about it . ||| 湯姆 對 此 不 嚴格 . +It is my treat . ||| 我 請 客 . +I will come , weather permitting . ||| 如果 天气 允许 的话 , 我 就 去 . +The picture looks better at a distance . ||| 这 幅画 远 看 更好 . +It is a surprise . ||| 这 是 一个 惊喜 . +Is it really possible ? ||| 真的 是 可能 的 嗎 ? +Everybody was confused . ||| 每个 人 都 很 困惑 +She wrote him a long letter , but he did not read it . ||| 她 给 他 写 了 一封 长信 , 但是 他 没有 看 . +Tom likes tea better than coffee . ||| 湯姆 喜歡 茶 勝 過 咖啡 . +I do not need anything . ||| 我 什么 都 不 需要 . +I was very impressed by his story . ||| 他 的 故事 給 我 留下 了 很 深 的 印象 . +I am interested in history . ||| 我 對 歷史 有 興趣 . +He is afraid of snakes . ||| 他 怕 蛇 . +It was a bag that I lost in the room yesterday . ||| 它 是 我 昨天 遺失 在 房裡 的 包 . +That responsibility is a burden to him . ||| 那个 责任 对 他 是 个 负担 . +I think it will not succeed . ||| 我 認為 它 不 會 成功 . +The streets in Tokyo are full on Saturdays . ||| 週六 , 東京 街上 人 滿為 患 . +My father is a doctor . ||| 我 父亲 是 个 大夫 . +Please be quiet . ||| 請 安靜 . +She seems to be unhappy . ||| 她 看 起來 不快 樂 . +I am thirty years old . ||| 我 三十 歲 . +He is already a man . ||| 他 已经 是 个 男人 了 . +The boy who lives next door often comes home late . ||| 住 在 隔壁 的 男孩 常常 很 晚 回来 . +I do not believe you . You are always telling lies . ||| 我 不 相信 你 . 你 总是 说谎 . +She was susceptible to colds . ||| 她 易 患感冒 . +Which credit cards can I use ? ||| 我 可以 用 哪些 信用卡 ? +Japan is now very different from what it was twenty years ago . ||| 相比 二十年 前 的 日本 , 现在 的 日本 有 了 翻天覆地 的 变化 . +I have not seen Tom lately . ||| 我 最近 沒 看到 湯姆 . +Tom fell into a vat of sulfuric acid . ||| Tom 摔倒 进 一桶 硫酸 中 +If I lost my key , I would not be able to lock the door . ||| 如果 我 弄 丟了 我 的 鑰匙 , 我 就 無法 鎖門 了 . +There is something I have been meaning to discuss with you . ||| 有件事 我 一直 想 跟 你 商量 . +What browser are you using ? ||| 你 用 什么 浏览器 ? +I have finally got the whole set ! ||| 我 終 於 擁有 了 一整套 ! +Tom knows that I want to leave as soon as possible . ||| 湯姆 知道 我 想 盡早 離開 . +Our team lost the first match . ||| 我們 隊 輸 了 第一 場 比賽 . +I am busy all the time . ||| 我 總 是 忙碌 . +We did not stay home yesterday . ||| 我們 昨天 沒 有待 在家 裡 . +Tom does not even know my name . ||| 汤姆 甚至 不 知道 我 的 名字 . +I have time . ||| 我 有 时间 . +Could we have a table outside ? ||| 我們 在 外面 可以 有 一張 桌子 嗎 ? +When did you get here ? ||| 你 是 什麼 時候 來的 ? +She asked him to open the window . ||| 她 請 他 打開 窗口 . +Her only pleasure is listening to music . ||| 她 唯一 的 樂趣 就是 聽 音樂 . +It is safe to say so . ||| 這麼 說 是 安全 的 . +We had a rest in the shade . ||| 我們 在 樹蔭 下 休息 . +Hokkaido is very far , is not it ? ||| 北海道 很遠 , 不是 嗎 ? +She went to Italy to study music . ||| 她 去 了 意大利 學習 音樂 . +Hurry home . ||| 赶快 回家 . +Hundreds of buffaloes moved toward the lake . ||| 數以百計 的 水牛 走向 湖邊 . +I expect a lot from him . ||| 我 對 他 期望 很 高 . +Could you solve the problem ? ||| 你 能 解決 這個 問題 嗎 ? +I can not stand this pain any more . ||| 我 不能 再 忍受 這種 痛苦 了 . +The blue lines on the map represent rivers . ||| 地图 上 的 蓝线 代表 河流 . +Excess of politeness is annoying . ||| 禮貌 過度 是 煩人 的 . +She is the one who feeds our dog . ||| 她 是 喂 我們 的 狗 的 人 . +He does not like coffee . ||| 他 不 喜歡 喝咖啡 . +Christmas is definitely my favorite holiday . ||| 圣诞节 绝对 是 我 最 喜欢 的 节日 . +You do not have to eat it . ||| 你 不必 吃 . +To err is human , to forgive divine . ||| 人 皆 有錯 , 唯 聖者 能 恕 . +Use it or lose it . ||| 使用 它 或 失去 它 . +I was quite hungry . ||| 我 很 饿 . +I also heard a similar story . ||| 我 也 听 过 一个 类似 的 故事 . +We have a problem here . ||| 我们 现在 有 了 麻烦 . +They moved ahead slowly . ||| 他們 慢慢 地 向前 進 . +My car cost more than yours did . ||| 我 的 车子 的 开销 比 你 的 要 多 . +My mother never punishes me . ||| 我 母親 從來 沒有 懲罰 過 我 . +Now is a great time to buy one of those . ||| 现在 是 买 它 的 最好 时机 . +All that glitters is not gold . ||| 光 看 表面 是 不足 夠 的 . +How far is it from here ? ||| 离 这儿 有 多 远 ? +Tom is there alone . ||| Tom 獨自 在 那 . +The eight o 'clock bus was early today . ||| 8 点 那 班车 今天 早 到 了 . +I do not like the way he talks . ||| 我 不 喜歡 他 講 話 的 樣子 . +I can not bear this pain . ||| 我 無法 忍受 這個 痛苦 . +Who likes beans ? ||| 谁 喜欢 豆子 ? +I do not know what to believe anymore . ||| 我 再也 不 知道 該 信 甚麼 了 . +It is time to get some work done . ||| 到 了 做 點 事 的 時候 了 . +I have no idea of what to do . ||| 我 不 知道 该 怎么办 . +I like the way you walk . ||| 我 喜欢 你 走路 的 方式 . +I would like to speak with you in private . ||| 我 想 跟 你 私下 说话 . +I am from Portugal . ||| 我 来自 葡萄牙 . +It is almost six o 'clock . ||| 快要 六點 了 . +Is he tall ? ||| 他 长 得 高 吗 ? +When I heard the news , I wanted to cry . ||| 当 我 听到 这个 消息 时 , 我 想 哭 . +Japan is an extremely noisy country . ||| 日本 是 一個 非常 嘈雜 的 國家 . +They will arrive a week from today . ||| 他們 將 於 下 個 星期 的 今天 抵達 . +I hope you will get better soon . ||| 我 想 你 快点 好 . +I know how we can help . ||| 我 知道 我們 要 怎麼 幫忙 . +I am going to my room , where I can study . ||| 我 要 回 房间 了 , 在 那儿 我 可以 学习 . +That could be too late . ||| 那 可能 太晚 了 . +You 'd better not speak . ||| 你 最好 不要 說 . +You should pay your rent in advance . ||| 你 应该 提前 付 租金 . +Tom is tired . ||| 湯姆 累 了 . +Tom did it the same way I did . ||| 汤姆 我 按 我 做 的 办法 做 了 . +I think I mistakenly deleted that file . ||| 我 觉得 我 是 误删 了 这个 文件 . +Scientists have not found a cure for cancer yet . ||| 科学家 们 还 没有 找到 癌症 的 治疗 方法 . +Her mother is writing a letter . ||| 她 的 母親 正在 寫信 . +Is there a zoo in Boston ? ||| 波士顿 有 动物园 吗 ? +I believed that he would keep his promise . ||| 我 相信 他 会 信守诺言 . +Tom has two children . ||| Tom 有 兩個 孩子 . +The design itself is flawed . ||| 設計 本身 有 問題 . +She is eating . ||| 她 吃 . +I will let you decide . ||| 我 让 你 来 决定 . +I am a professor . ||| 我 是 大学教授 . +I have no problem with my boss . ||| 我 和 老 闆 沒 有 問 題 . +The telephone was invented in 1876 by Bell . ||| 電話 於 1876 年 由 貝爾 所 發明 . +I am happy to have so many good friends . ||| 我 很 高 興有 這麼 多 好 朋友 . +How long will this rain go on ? ||| 雨会 下 多久 ? +You can not achieve anything without effort . ||| 没有 什么 是 不劳而获 的 . +Thousands of people died of hunger . ||| 數千 人 死 於 飢餓 . +Who does the gun belong to ? ||| 這 把 槍 是 屬 於 誰 的 ? +He made his son a wealthy man . ||| 他 使 他 儿子 成 了 个 有钱人 . +I can not finish the job in so short a time . ||| 我 無法 在 這麼 短 的 時間 內 完成 這份 工作 . +He accelerated . ||| 他 提速 了 . +Let is not watch TV . ||| 我們 不要 看電視 吧 . +It is going to rain , for sure . ||| 要 下雨 了 , 我 敢肯定 . +According to the weather forecast , it will snow tomorrow . ||| 天气预报 说 明天 会 下雪 . +Everyone but Tom knew he did not need to do that . ||| 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom likes to make paper airplanes . ||| 汤姆 喜欢 折纸 飞机 . +Accidents happen . ||| 事故 發生 . +Tom has a beautiful car . ||| Tom 有 台 靓车 . +I do not care a bit about the future . ||| 我 不在乎 将来 . +Last year , he spent three months at sea . ||| 去年 他 在 海上 度過 了 三個 月 . +Swimming makes your legs strong . ||| 游泳 使 腿部 强健 . +He threw a stone into the pond . ||| 他 扔 了 一塊 石頭 到 池塘 裡 . +She goes to aerobics once a week . ||| 她 每星期 去 作 一次 健美操 . +Who is worried about Tom ? ||| 谁 担心 汤姆 ? +Here is the map you are looking for . ||| 你 正在 找 的 地圖 在 這裡 . +I will not make that mistake again . ||| 我 不 會 再犯 那 錯 了 . +This old house is haunted . ||| 这个 老房子 闹鬼 . +What you are saying does not make sense . ||| 你 说 的 没有 意义 . +They all burst out laughing . ||| 他们 都 哈哈大笑 起来 . +God exists . ||| 上帝 存在 . +The young man is a doctor . ||| 这个 年轻人 是 医生 . +I had nothing in common with them . ||| 我 同 他们 没有 过 共同之处 . +Was that too much ? ||| 那 太 多 了 吗 ? +How do you know that belongs to Tom ? ||| 你 怎麼 知道 那 是 湯姆 的 ? +Now , wait a second . ||| 現在 等 一下 . +Can we save the planet ? ||| 我们 能 拯救 这 颗 星球 吗 ? +This is impossible . ||| 这 不 可能 . +When Dad finds out what you have done , he is going to hit the roof . ||| 当 爸爸 发现 你 做 了 什么 的 时候 , 他 会 发疯 的 . +He lost his eyesight in the accident . ||| 他 在 意外 中 失明 了 . +I have just finished my homework . ||| 我 剛剛 完成 我 的 作業 . +He dried his wet clothes by the fire . ||| 他 在 火 旁 烘干 他 的 湿 衣服 . +Do not shout at me . ||| 別 對著 我 吼 . +I am looking forward to hearing from you soon . ||| 我 期待 很快 就 能 收到 你 的 信 . +Tom hung the calendar on the wall . ||| 湯姆把日 曆 挂 在 墙上 . +She made me wait for half an hour . ||| 她 让 我 等 了 半小时 . +Who else uses this room ? ||| 还有 谁 用 这个 房间 ? +He taught us that Columbus discovered America . ||| 他 教導 我們 說 , 哥倫布 發現 了 美洲 . +Where in Turkey do you live ? ||| 你 在 土耳其 哪儿 生活 ? +The lady tolerated the man . ||| 那 女士 容忍 了 那 男人 . +I used to smoke a lot , but now I have quit . ||| 我 以前 常 抽 菸 , 但 現在 我 戒掉 了 . +You dropped your pencil . ||| 你 把 你 的 铅笔 弄掉 了 . +Tom has a plan . ||| 湯姆 有個 計畫 . +He rarely stays home on Sunday . ||| 他 很少 週日 待 在家 裡 . +He does not like traveling by air . ||| 他 不 喜歡 搭 飛機 旅行 . +Your tie has come undone . ||| 你 的 領 帶 鬆 了 . +I wonder why karaoke is so popular . ||| 我 不 知道 為 什麼 卡拉 OK 如此 受歡 迎 . +We made the most of the opportunity . ||| 我們 盡力 地 利用 了 這個 機會 . +If you sang , they 'd kick you out of the bar . ||| 如果 你 唱歌 了 , 他们 就 会 把 你 踢 出 酒吧 +Would you like me to explain it ? ||| 我 為 你 解釋 一下 好 嗎 ? +I study at school . ||| 我 在 学校 读书 . +He walked in the park yesterday . ||| 他 昨天 在 公園 裡 散步 . +I was lonely without her . ||| 她 不 在 , 我 很 孤独 . +Our music teacher advised me to visit Vienna . ||| 我們 的 音樂 老師 建議 我 去 維也納 看看 . +This job pays pretty well . ||| 这 工作 报酬 很 高 . +When the cat is away , the mice will play . ||| 山上 无 老虎 , 猴子 称 大王 . +I will think it over carefully . ||| 我会 深思熟虑 . +She bought two pairs of socks . ||| 她 買 了 兩雙 襪子 . +Please do not get me wrong . ||| 千万 别误会 我 的 意思 . +Hurry up , or you will miss the bus . ||| 快點 , 否則 你 會 錯 過 公車 . +We must get up at dawn . ||| 黎明 時 我們 必須 起床 . +Take care of yourself . ||| 照顾 好 自己 . +What are you eating ? ||| 在 吃 什么 呢 ? +His daughter has become a pretty woman . ||| 他 的 女兒 已經 成為 了 一個 漂亮 的 女人 . +Is this your first trip abroad ? ||| 這 是 你 第一次 出國 嗎 ? +Keep them . ||| 留 着 吧 . +I accepted the offer . ||| 我 接受 了 报价 . +Are you Tom ? ||| 你 是 汤姆 吗 ? +Do not fail to mail this letter . ||| 不要 忘 了 寄 這 封信 . +They are armed . ||| 他們 有 帶 武器 . +You do not have to buy me anything . ||| 你 不必 为 我 买 什么 . +I hate myself sometimes . ||| 偶尔 我会 讨厌 我 自己 . +When do you have to go to bed ? ||| 你 甚麼 時候 必須 去 睡 覺 ? +Not all Germans like to drink beer . ||| 不是 所有 的 德国人 都 喜欢 喝啤酒 . +We did not know what to do next . ||| 我們 不 知道 下 一步 要 做 什麼 . +Do you really believe that story ? ||| 你 真的 相信 那 故事 嗎 ? +I can not do any more than this . ||| 我 無法 做 比 這 更 多 的 了 . +That is his house . ||| 那 是 他家 . +What do you want me to do , Tom ? ||| 你 想 讓 我 做 甚麼 , 湯姆 ? +My joints ache when it gets cold . ||| 當天 氣變 冷 的 時候 , 我 的 關節 疼痛 . +The moonlight is beautiful . ||| 月光 真美 . +I have a lot of homework . ||| 我 有 很多 功課 . +It is hard to say . ||| 難 講 喔 . +I am going to register at a gym . ||| 我 去 註 冊 一家 健身房 . +English is easy to learn . ||| 英語 簡單 易學 . +I had a wonderful time . ||| 我 度 過 了 美好 的 時光 . +She always takes care of her children . ||| 她 毫無間斷 地 照顧 自己 的 孩子 . +What do you think of that ? ||| 你 認為 如何 ? +I will be free in ten minutes . ||| 我 十分钟 后 有空 . +This medicine will do you good . ||| 这 药 对 你 有 好处 . +She disliked her husband . ||| 她 不 喜歡 她 的 丈夫 . +My neighbor is dog is dead . ||| 我 鄰居 的 狗 死 了 . +They got to the hotel after dark . ||| 天暗 後 他們 到 了 酒店 . +This is not a sentence . ||| 這 不是 一個 句子 . +I am no quitter . ||| 我 不 輕易 放棄 . +That is a pretty big assumption . ||| 那 是 个 很大 的 设想 . +I do not care what they say . ||| 我 不在乎 他們 說 什麼 . +It never rains but it pours . ||| 不下雨 則 矣 , 一下 一定 是 傾盆 大雨 . +The student handed the examination papers in to the teacher . ||| 該 學生 把 考試 卷 交給 了 老師 . +We 'd like another bottle of wine . ||| 我們 想 再 來 一瓶 葡萄酒 . +I am full . ||| 我 吃 飽 了 . +What does he want to do ? ||| 他 到底 想 干嘛 ? +We ate sandwiches for breakfast . ||| 我們 早餐 吃 了 三明治 . +Any child can do that . ||| 任何 小孩 都 能 做到 . +We love Tom . ||| 我们 爱 汤姆 . +His cottage is on the coast . ||| 他 的 村屋 在 海岸 上 . +I am going to change my shirt . ||| 我 要 去 換 我 的 襯衫 . +How much sugar should I put in your coffee ? ||| 我 应该 往 你 的 咖啡 里 放 多少 糖 呢 ? +What happened here was unavoidable . ||| 这里 发生 的 不可避免 . +Tom is not happy at all . ||| 汤姆 根本 不 高兴 . +He found a ball in the garden . ||| 他 在 花園 裡 找到 了 一顆 球 . +I have not eaten for many days . ||| 我 好多天 没 吃 东西 了 . +I am thinking about you . ||| 我 正 考慮 到 你 . +Whose shirt is this ? ||| 這 是 誰 的 襯衫 . +Drinking lots of water is good for you , sure , but one can not drink that much water at once . ||| 虽然 喝 多点 水 对 身体 有 好处 , 但是 一次性 喝 太 多 水 也 是 不好 的 . +Did you drive her home last night ? ||| 昨晚 你 把 她 送 回家 了 吗 ? +Tom thanked Mary for coming . ||| 汤姆 感谢 玛丽 的 光临 . +Although he was exhausted , he had to keep working . ||| 尽管 他 累 极了 , 他 还 必须 工作 . +I asked her to wait a moment . ||| 我 請 她 等 一會兒 . +We have no electricity . ||| 我們 沒有 電 . +I have been to Rome . ||| 我 去过 罗马 . +Tom can not afford that . ||| 汤姆 负担 不起 . +I have nothing to fall back on . ||| 我 没什么 可 依靠 的 了 . +I have the same trouble as you have . ||| 我 有 跟 你 同樣 的 麻煩 . +There used to be a prison here . ||| 這裡 以前 有 一座 監獄 . +Would you like to come ? ||| 你 愿意 来 吗 ? +Bring me a glass of water . ||| 给 我 一杯 水 . +I had a phone call from him . ||| 我 接到 了 他 打來 的 電話 . +It is no use talking with him . ||| 跟 他 說 話 沒用 . +I can not lift my right arm . ||| 我 無法 舉起 我 的 右 手臂 . +" Will he pass the examination ? " " I am afraid not . " ||| " 他 會 通過 考試 嗎 ? " " 我 怕 是 不 會 . " +Where are your things ? ||| 你們 的 東西 在 哪裡 ? +He came to see me . ||| 他 來看 我 了 . +Tom is not an elected official . ||| 湯姆 不是 選 出來 的 官員 . +I have many discs . ||| 我 有 许多 唱片 . +I can not tell if you are joking . ||| 我 無法 分辨 你 是否 在 開 玩笑 . +We are going to leave tomorrow . ||| 我們 明天 要 離開 . +I feel very sick . ||| 我 覺得 我 病 得 很 厲害 . +Finally , he reached his goal . ||| 他 终于 达到 了 自己 的 目标 . +He came back not because he was homesick , but because he was running short of money . ||| 他 不是 因為 想 家 , 而是 因為 沒錢 才 回來 的 . +Who do you think we are ? ||| 你 认为 我们 是 谁 ? +Have you eaten your dinner already ? ||| 你 吃 過 晚 飯 了 嗎 ? +I wish I could have spoken Spanish . ||| 要是 我 會 說 西班牙 語 就 好 了 . +He had his sister help him paint the wall of his room . ||| 他 让 妹妹 帮 他 涂 他 房间 的 墙 . +Do you study at a private school ? ||| 你 在 私立学校 读书 吗 ? +His hat is not on straight . ||| 他 的 帽子 没戴 正 . +He got his wife to mend his shirt . ||| 他 让 他 的 妻子 补好 衬衫 . +I spent 10 dollars on it . ||| 我 在 这 东西 上 花 了 十美元 . +I sometimes still think about her . ||| 有 時候 , 我 還 是 會 想起 她 . +I believe in what they said . ||| 我 相信 他們 說 的 話 . +It all depends on you . ||| 这 都 取决于 你 . +Let me cut the carrots . ||| 讓 我 來 切 胡蘿 蔔 . +The cough syrup has a licorice flavoring . ||| 咳嗽 糖浆 有 股 甘草 的 味道 . +I am very happy . ||| 我 很 快乐 . +I wish that we could spend more time together . ||| 我 希望 我们 有 更 多 时间 呆 在 一起 . +Mary has just come home . ||| 瑪麗剛 剛 回家 . +The street was crowded with people . ||| 街道 上 擠滿 了 人 . +Are not there any qualified applicants ? ||| 没有 合格 的 申请人 吗 ? +I am not as optimistic as you . ||| 我 没有 你 那么 乐观 . +This novel is difficult to understand . ||| 这部 小说 很 难 读懂 . +I know that can not really happen . ||| 我 知道 那 不 會 真的 發生 . +I come from a large family . ||| 我 从 一个 大家庭 来 . +Our friend finished the race in second place . ||| 我们 的 朋友 完成 了 比赛 , 得 了 第二名 . +Why do you think that I am thinking about you ? ||| 你 为什么 会 认为 我 在 想 你 ? +Smoking is not allowed here . ||| 这里 不 允许 抽烟 . +That affair made him famous . ||| 那 件 事情 使 他 一舉 成名 . +I am blessed with good health . ||| 我 很 幸運 有 健康 的 身體 . +The train has already gone . ||| 列车 已经 出发 . +We are supposed to know the rules . ||| 我们 应该 了解 相应 的 规则 . +The potato was so hot that it burned my mouth . ||| 土豆 太 热 , 以至于 烫 到 了 我 的 嘴 . +Ignore Tom . ||| 别理 汤姆 . +She glanced briefly at the newspaper . ||| 她 很快 地 瞟 了 一眼 報紙 . +A new team was formed in order to take part in the boat race . ||| 为了 参加 划船 比赛 , 一支 新 的 队伍 组成 了 . +I just need a break . ||| 我 只 想 休息 一下 +Stuff happens . ||| 事情 难免会 发生 . +It is OK . ||| 没关系 . +It is an hour is walk to the station . ||| 步行 到 車 站 要 一小 時 . +It may or may not be true . ||| 這 可能 是 真的 , 也 可能 不是 . +Tom seems to be much happier than me . ||| 汤姆 看来 比 我 高兴 . +When the phone rang , I was watching TV . ||| 电话响 的 时候 , 我 在 看电视 . +You should see a doctor . ||| 你 應 該 去 看 醫生 . +Your dog is very fat . ||| 你 的 狗 非常 胖 . +Do not let appearances deceive you . ||| 不要 被 外貌 蒙蔽 了 . +Winter is coming . ||| 冬季 快 來 了 . +How about you ? ||| 你 怎麼樣 ? +They knocked down a part of the wall . ||| 他們 拆掉 了 一部分 牆 . +Tom could not hold back his anger . ||| 汤姆 没法 压抑 自己 的 怒火 了 . +The runner jumped over the hole in the ground . ||| 那个 赛跑 运动员 跃过 了 地面 上 的 洞 . +Please tell me about your trip . ||| 請 告訴 我 有 關 你 旅行 的 事 . +They are at lunch . ||| 他们 在 吃 午饭 . +There is always someone talking . ||| 總是 會 有人 說 話 . +He knocked on the door . ||| 他 敲 了 門 . +The princess begged forgiveness from the emperor . ||| 公主 向 皇帝 请求 饶恕 . +He played tennis . ||| 他 打 了 网球 . +I caught the man stealing the money . ||| 我 抓到 了 這個 男人 正在 偷 錢 . +This song is very popular in Japan . ||| 這 首歌曲 在 日本 很 受歡 迎 . +I have decided to carry on the work . ||| 我 决定 继续 工作 . +My opinion is different from yours . ||| 我 的 看法 跟 你 的 不同 . +You must clear the table . ||| 你 必须 把 桌子 清理 干净 . +What do you really want to say ? ||| 你 实际上 想 说 什么 ? +This sentence is grammatically correct . ||| 这个 句子 在 语法 上 是 正确 的 . +You must get up a little earlier . ||| 你 该 早 一点 起床 . +I grow tomatoes and onions in my garden . ||| 我 在 花园 种 了 番茄 和 洋葱 . +He is very busy writing stories . ||| 他 忙于 写 故事 . +I have a slight headache now . ||| 现在 我 有 些许 头痛 . +Taking off is easier than landing . ||| 起飛 比 降落 容易 . +I am not good at carpentry . ||| 我 不 擅長 做 木工 . +I said it might rain . ||| 我 说 了 可能 要 下雨 . +I think it will be hot today . ||| 我 觉得 今天 会 很 热 . +Tom likes me the most . ||| Tom 最 喜欢 我 . +Do you know which deity this temple is dedicated to ? ||| 您 知道 这 座 庙宇 供奉 的 是 哪个 神 吗 ? +I am alarmed by your irresponsible attitude . ||| 我 对 你 不负责任 的 态度 感到 惊讶 . +I am young . ||| 我 還 年輕 . +The fish tasted like salmon . ||| 這 魚 吃著 像 三文 魚 . +I have a bad headache . ||| 我 頭 疼 得 厲害 . +He is the chairman of the committee . ||| 他 是 委員會 主席 . +She is dieting . ||| 她 在 节食 . +I am home . ||| 我 在家 裡 . +She used to go to the movies on Sundays . ||| 她 從 前 會 在 星期天 去 看 電影 . +I will not do this again . ||| 我 不想 再 做 這個 了 . +He invested his money in stocks . ||| 他 把 錢 投資 於 股票 . +We have to continue to do our jobs . ||| 我们 要 继续 我们 的 工作 . +I agreed with him on the plan . ||| 對 於 這個 計劃 我 同意 他 的 意見 . +Tom hurried so he would not miss the train . ||| 汤姆 加紧 步伐 以 不错 过 火车 . +The same thing is happening here in Boston . ||| 同樣 的 事 在 這 - 波士 頓 發生 . +Are you planning to help them ? ||| 你 打算 幫助 他們 嗎 ? +She mistook my brother for me . ||| 她 把 我 哥哥 誤認 為 我 . +" Will you be at my party tomorrow night ? " " I will try to be there . " ||| “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 尽量 来 . ” +There is nothing else we can do . ||| 没有 我们 能 还 做 的 事 . +Perhaps it was worth it . ||| 可能 是 值得 的 . +You are impatient . ||| 你 缺乏 耐心 . +He might not be happy . ||| 他 可能 會 不 高興 . +How often does the bus run ? ||| 公共汽车 多久 发车 一次 ? +Tom can not drive a bus . ||| 湯姆 不能 開 巴士 . +We had to live together . ||| 我們 要 在 一起 生活 . +Why did you not tell me the truth ? ||| 为什么 你 不 告诉 我 真相 ? +My father bought me a bicycle . ||| 我 父亲 给 我 买 了 一辆 自行车 . +Tom stopped me from entering the bank . ||| 汤姆 阻止 我 进 银行 . +He is staying at his aunt is . ||| 他 呆 在 他 阿姨 家 . +My eyes are watering . ||| 我 在 流眼淚 . +We had a heavy frost this morning . ||| 今天 早上 天氣 嚴寒 . +Do not hesitate to ask questions . ||| 不要 猶豫 去 問 問題 . +This book is yours . ||| 這 本書 是 你 的 . +Take your time . There is no hurry . ||| 慢慢来 , 没 那么 急 . +You do not seem happy . ||| 你 看起来 不 高兴 . +Please say it more loudly . ||| 請 說 更 大聲 一點 . +What I am about to say is strictly between you and me . ||| 我 要说 的 只能 是 你 知 我 知 . +He always mistakes me for my sister . ||| 他 老 是 把 我 和 我 姐姐 搞错 . +A green carpet will not go with this blue curtain . ||| 绿色 的 毯子 和 这条 蓝色 的 帘子 不配 . +I am ready to leave . ||| 我 准备 好 出发 了 . +He told the truth . ||| 他 說 了 實話 . +I have had enough . ||| 我 已經 受夠 了 . +He has a lot of hobbies . ||| 他 有 很多 兴趣爱好 . +My back still hurts . ||| 我 的 背 還 在 痛 . +Can I see that one ? ||| 我 能 看 那個 嗎 ? +It is a good deal . ||| 这 是 一笔 不错 的 交易 . +Tom gave us nothing . ||| 汤姆 什么 也 没给 我们 . +The cost of living has gone up . ||| 生活 費 提高 了 . +How many cats do you have ? ||| 您 有 几只 猫 ? +That house belongs to him . ||| 這棟 房子 是 屬 於 他 的 . +Let Tom live . ||| 給 湯姆 活路 ! +He threw the ball . ||| 他 把 球 扔 了 . +Where are we eating breakfast ? ||| 我們 在 哪裡 吃 早餐 ? +The third quarter GNP growth was 1 % over the preceding quarter . ||| 第三季 國 民生 產總值 較 上 一季 成長 了 1 % . +Is this your book ? ||| 這 是 你 的 書 嗎 ? +I have been careful my whole life . ||| 我 一生 都 谨慎 行事 . +Do not exceed the speed limit . ||| 不要 超速 . +Try resting for now . ||| 现在 休息 一下 . +Can Tom help us ? ||| 汤姆 可以 帮 我们 吗 ? +He wanted to reduce the tax on imports . ||| 他 想要 减少 进口品 的 税 . +He was killed in a car accident . ||| 他 死 於 一場 車禍 . +I am looking for a warm , woolen skirt . ||| 我 想 找 一件 溫暖 的 羊毛 裙 . +You must come back before it gets dark . ||| 你 必须 在 天黑 前 回来 . +She put her CDs in a row on the shelf . ||| 她 把 她 的 CD 在 書 架上 排成 一排 . +I guess they really were not so happy . ||| 我 猜 他們 真的 不 太 高興 . +He works from nine to five @-@ thirty . ||| 他 從 早上 九點 工作 到 下午 五點半 . +The area of the factory is 1,000 square meters . ||| 工厂 的 面积 是 1000 平方米 . +He arrived in Tokyo yesterday . ||| 他 昨天 到 了 东京 . +I even work on Sundays . ||| 我 甚至 在 週日 工作 . +Our new home has an elevator . ||| 我們 的 新家 有一 臺 電 梯 . +You are not special . ||| 您 不 特別 . +She gave in to the temptation . ||| 她 屈服 於 誘惑 了 . +Could you do me a favor ? ||| 請 你 幫 我 一個 忙好 嗎 ? +I gave up all hope of survival . ||| 我 放棄 了 所有 生存 的 希望 . +Tom slept with his shoes on . ||| 汤姆 穿着 鞋 睡 了 . +He is rotten to the core . ||| 他 壞 透 了 . +They are sure to fall in love . ||| 他们 肯定 会 相恋 的 . +You are irresistible . ||| 你 令人 难以 抗拒 . +I did it . ||| 我 做到 了 ! +There was not anybody in the house . ||| 沒 有人 在家 . +Whose cup is this ? ||| 这 是 谁 的 杯子 ? +She is a very good teacher . ||| 她 是 个 非常 好 的 老师 . +It will be snowing when we arrive at Shiga Heights . ||| 我们 到达 志 贺 高原 时会 下雪 . +Is Tom ready for that ? ||| 汤姆 准备 好了吗 ? +The artist who illustrated this book is very good . ||| 給 這 本書 畫 插畫 的 畫家 很 好 . +I bought this book at Maruzen Bookstore . ||| 我 在 书商 Maruzen 那里 买 了 这 本书 . +She does not have a ticket . ||| 她 沒 有 票 . +You should have done it earlier . It cannot be helped now . ||| 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +We probably should have left early . ||| 我們 可能 應該 早點 走 . +How often do the buses depart ? ||| 公共汽车 多久 发车 一次 ? +Edison was not a bright student . ||| 爱迪生 不是 个 优秀 的 学生 . +I do not want to wait that long . ||| 我 不想 等 那么 久 . +It would take forever for me to explain everything . ||| 要 都 解释 的话 , 需要 一辈子 的 时间 . +I will teach you how to drive a car . ||| 我会 教 你 怎么 开车 . +This really is a nice surprise . ||| 真是 个 惊喜 ! +Are you ready ? ||| 您 准备 好了吗 ? +I am playing football now . ||| 我 現在 正在 踢足球 . +Had he known what was about to happen , he would have changed his plan . ||| 要是 他 知道 会 发生 什么 , 他 就 会 改变 计划 . +Tom is comment was inappropriate . ||| 湯姆 的 評論 不合 適 . +Is something wrong ? ||| 有 什么 不对 吗 ? +Please do not look at me like that . ||| 請 不要 那樣 看 我 . +I could not agree with you more . ||| 我 再 同意 你 不 過 了 . +I have climbed Mt . Fuji twice . ||| 我 爬 過 兩次 富士山 . +Tell me how you are feeling . ||| 告訴 我 你 的 感受 . +For some reason the microphone did not work earlier . ||| 剛才 我 的 麥克風 沒起 作用 , 不 知道 為 什麼 . +He is on the radio . ||| 他 上 电台 了 . +He got a good grade in mathematics . ||| 他 數學 得 了 一個 好 成績 . +I had my composition corrected by the teacher . ||| 我 把 我 的 作文 拿 給 老師 訂正 . +Can you lower the price ? ||| 可以 便宜 點 嗎 ? +The policeman was drunk . ||| 警察 醉 了 . +She spent all afternoon cooking . ||| 她 花 了 整個 下午 作飯 . +Please come as soon as possible . ||| 请 尽快 过来 . +How long did you stay ? ||| 你 待 了 多久 ? +Let is hope you do not need it . ||| 希望 你 用不着 它 . +I can only see it getting worse . ||| 我 只 看见 它 变得 更糟 了 . +She stayed at home by herself . ||| 她 獨自 留在 家裡 . +Tom is standing in the corner of the room . ||| 汤姆 正 站 在 房间 的 角落 . +That music is worth listening to many times . ||| 这 音乐 值得 听 许多次 . +I was deeply impressed by the scenery . ||| 我 被 这 景色 深深 迷住 了 . +We took part in the discussion . ||| 我們 參加 了 討論 . +Today is my birthday . ||| 今天 是 我 的 生日 . +Tom started singing . ||| 湯姆 開始 唱歌 . +Experience is the best teacher . ||| 經驗 是 最好 的 老師 . +The countryside has many trees . ||| 乡间 有 很多 树 . +He predicted there would be rain . ||| 他 预测 会 下雨 . +He tends to be late for meetings . ||| 他 開會 往往 會 遲 到 . +Put some salt into the boiling water . ||| 放 點 鹽 到 滾 水裡 . +This train stops at every station . ||| 這 班 火車 每站 都 停 . +Parents teach their children that it is wrong to lie . ||| 父母 教育 他们 的 孩子 说谎 是 不好 的 . +That changed everything . ||| 那 改变 了 一切 . +I know it is hard to believe . ||| 我 知道 , 要 相信 这件 事 很 难 . +Every rose has its thorns . ||| 沒有 不 帶刺 的 玫瑰 . +This shirt needs ironing . ||| 这 衬衫 需要 熨 . +What do you plan to sell ? ||| 你 計劃 賣 甚麼 ? +We all miss you very much . ||| 我们 都 非常 想 你 . +Let is go ! ||| 走 吧 . +I do not like tea , so I generally drink coffee for breakfast . ||| 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 喝咖啡 . +That really whets my appetite . ||| 那 很 開 胃 . +I am a member of the tennis club . ||| 我 是 网球 俱乐部 的 会员 . +War must be avoided at all costs . ||| 戰爭 必須 不惜一切 代價 地 去 避免 . +Is there any possibility of his resigning ? ||| 他 有 可能 辭職 嗎 ? +Are you sure Tom is in Australia now ? ||| 你 确定 汤姆 现在 在 澳洲 吗 ? +We are all hungry . ||| 我們 都 餓 了 . +I tried to escape . ||| 我 试图 逃跑 . +We ran after the cat . ||| 我們 追著 貓 . +He gave me a smile of recognition . ||| 他 給 了 我 一個 認可 的 微笑 . +There is something odd going on . ||| 正 有 什么 奇怪 的 事情 发生 着 . +It was not me who told you not to do that . ||| 不是 我 告訴 你 不要 去 做 的 . +I am amazed at your audacity . ||| 我 对 你 的 厚颜无耻 感到 惊讶 . +Tom failed . ||| 汤姆 失败 了 . +Everyone was happy . ||| 每個 人 都 高興 . +Have you finished your homework ? ||| 你 做 完 作業 了 嗎 ? +Watching TV is a passive activity . ||| 看電視 是 一種 被動 的 活動 . +I wonder why Tom is so excited . ||| 我 奇怪 為 甚麼 湯姆 那麼 激動 . +Well , have you decided ? ||| 那麼 , 你 決定 好 了 嗎 ? +My dog often lies on the grass . ||| 我家 的 狗 經常 躺 在 草地 上 . +Come on , hurry up . ||| 来 吧 , 快 一点 . +I am going to go sit down . ||| 我 要 坐下 . +I like strawberry ice cream . ||| 我 喜歡 草莓 味 的 冰淇淋 . +I ordered those books from Germany . ||| 我 從 德國 訂購 了 那些 書 . +Please wait for me at the station . ||| 請 在 車站 等 我 . +I tried to listen to him carefully . ||| 我 試著 仔細 地 聽 他 說 話 . +You will never be alone . ||| 你们 永远 不会 一个 人 的 . +It cost me 50 dollars to have my watch fixed . ||| 我 花 了 五十 美元 修好 了 手表 . +Now who is going to help you ? ||| 現在 誰 要 幫 你 ? +Have you made your decision ? ||| 你 决定 好了吗 ? +She knows how to do the crawl . ||| 她 知道 怎麼 游 自由式 . +Where am I ? ||| 我 在 哪裡 ? +I received her letter yesterday . ||| 昨天 我 收到 了 她 的 信 . +If you do not know the way , ask a policeman . ||| 要是 不知 道路 的话 去 问 警察 吧 . +Can you tell me how to get to the train station ? ||| 你 可以 告訴 我 要 怎麼 去 火車 站 嗎 ? +The light suddenly went out . ||| 灯 突然 灭 了 . +When does it arrive ? ||| 它 什么 时候 到 ? +Tom is not here yet , but we expect him soon . ||| 湯姆 還 不 在 這裡 , 但 我們 期待 他 很快 就 來 . +How about another cup of coffee ? ||| 要 不要 再來 一杯 咖啡 ? +She always smiles at me . ||| 她 總是 對 我 微笑 . +Tom stood behind me . ||| 汤姆 站 在 我 后面 . +I like being on the team . ||| 我 喜欢 在 队伍 里 . +I saw him crossing the street . ||| 我 看见 他 穿过 了 马路 . +Get out of here . ||| 離開 這裡 . +Speak softly . ||| 你 说话 小点声 . +He can scarcely write his name . ||| 他 很 难 写 他 的 名字 . +They live in peace . ||| 他们 过 着 和平 的 生活 . +Spring is the best season to visit Kyoto . ||| 春天 是 访问 京都 最好 的 季节 . +That is just what I wanted . ||| 我 想要 的 就是 这个 . +I was at home . ||| 我 刚才 在家 . +There were few children in the room . ||| 房间 里 没 几个 小孩子 . +Tom donates half his salary to his favorite charity . ||| 汤姆 捐 一半 他 的 薪水 给 他 最 喜欢 的 慈善机构 . +You can eat whatever you like . ||| 你 可以 吃 你 喜歡 的 東西 . +I can not hear you . ||| 我 听不见 你 . +The mother occasionally reread her son is letter . ||| 这位 母亲 偶尔 会 重温 她 的 儿子 的 信件 . +If we knew what we were doing , it would not be called research , would it ? ||| 如果 我们 知道 我们 在 做 什么 , 那么 这 不能 称之为 研究 , 是 吗 ? +He missed the last train . ||| 他 错过 了 最后 一班 火车 . +She needed some money to buy something to feed her dog . ||| 她 需要 一些 钱 来 买点 东西 喂 她 的 狗 . +You have no need to be ashamed . ||| 你 不 需要 害羞 . +I believe the actions that he took were right . ||| 我 相信 我们 采取 的 行动 是 对 的 . +What is the title of your new book ? ||| 你 新書 的 書名 是 什麼 ? +You do not like sashimi , do you ? ||| 你 不 喜 歡生 魚片 , 是 嗎 ? +He had a smile on his face . ||| 他 面帶 笑容 . +It is obvious why his stomach hurts . ||| 他 為 什麼 會 胃痛 的 原因 很 明顯 . +He lost a book . ||| 他 弄 丟了 一本 書 . +He stole money from her wallet . ||| 他 從 她 的 錢 包 偷 了 錢 . +Who is the girl in this picture ? ||| 這 張 照片 裡 的 女孩 是 誰 ? +My son is taller than I am . ||| 我 兒子 比 我 高 . +His name is not on the list . ||| 他 的 名字 不 在 名单 里 . +What is Tom is blood type ? ||| 湯姆 的 血型 是 甚麼 ? +She is going to wash the bike this afternoon . ||| 她 下午 会 洗 自行车 . +You must not stay in bed . ||| 你 不能 待 在 床上 . +Why do you want to know what I am thinking ? ||| 為 什麼 你 想 知道 我 在 想 什麼 ? +That is a bad day for me . ||| 那天 我 不行 . +I made the decision by myself . ||| 我 自己 做 了 决定 . +I give you my word . ||| 我 向 你 保证 . +The hunters aimed at the elephant . ||| 猎 人们 用 枪 瞄准 了 大象 . +She stooped to pick up a pebble . ||| 她 撿 起 了 一塊 鵝 卵石 . +If you are not listening to the radio , turn it off . ||| 要是 你 不 在 听 广播 的话 , 就 关掉 它 . +We were unable to make contact with them until it was too late . ||| 我们 联系 上 他们 已经 为时已晚 . +It is nearly three o 'clock . ||| 將近 三點 了 . +Do not let your feelings show . ||| 不要 流露 你 的 感情 . +Tom was the last one off the bus . ||| 湯姆 是 最 後 下 巴士 車 的 人 . +He is sitting at an empty table . ||| 他 坐在 一张 空 桌旁 . +He carried a rifle on his shoulder . ||| 他 把 步槍 背 在 他 的 肩上 . +He is an agreeable person . ||| 他 是 个 好脾气 的 人 . +She took the book back to the library . ||| 她 把 书 带回 了 图书馆 . +I 'd like your help . ||| 我 想 請 你們 幫 個 忙 . +I planted a peach tree in my yard . ||| 我 在 我 的 院子 里 种 了 棵 桃树 . +Tom was sick in bed last Sunday . ||| 湯姆 上 週日 臥病 在 床 . +It is hard to maintain one is reputation . ||| 維持 一個 人 的 聲譽 是 很 難 的 . +I will buy this . ||| 我 要 買 這個 . +I met her on a certain winter day . ||| 冬天 的 某日 , 遇到 了 她 . +The dog was hit by a car . ||| 狗 被 車 撞 了 . +I put the money into the safe . ||| 我 把 錢 放入 保險櫃 裡 . +Please wait for me at the entrance of the building . ||| 请 在 建筑 的 入口处 等 我 . +We are good friends . ||| 我們 是 好 朋友 . +It was not interesting at all . ||| 一点 也 不好玩 . +I will bring it to you tomorrow . ||| 我 明天 带给 你 . +How far away are we ? ||| 我们 有 多 远 了 ? +The girl was afraid to jump down from the roof . ||| 小女孩 害怕 从 屋顶 上 跳下来 . +I have absolute trust in you . ||| 我 絕對 信任 你 . +He turned pale with fright . ||| 他 嚇 得 臉色 發白 . +My home is far away . ||| 我家 很远 . +You are the new secretary , are not you ? ||| 您 是 新来 的 秘书 吧 , 不是 吗 ? +I will show you my room . ||| 我 會 帶 你 看看 我 的 房間 . +Where is your house ? ||| 你家 在 哪裡 ? +Do you happen to know his name ? ||| 你 說 不定 知道 他 的 名字 ? +All that Jack does is sleep . ||| 所有 傑克 做 的 事 就是 睡覺 . +I went into the navy . ||| 我 加入 了 海軍 . +What a pity ! ||| 多 遗憾 啊 ! +You do not need to hurry . ||| 你 不必 著急 . +Mother Teresa was given the Nobel prize . ||| 特蕾 莎 修女 被 授予 諾貝爾獎 . +I am too short . ||| 我 太矮 了 . +Are you afraid of being fired ? ||| 你 害怕 被 解雇 吗 ? +Let me have a try . ||| 让 我 试试 . +He always plans a thing out carefully before he does it . ||| 他 每件事 做 之前 都 會 細心 計劃 . +Are you sure that you want to go there ? ||| 你 确定 你 要 去 那儿 吗 ? +He does not always come late . ||| 他 不是 总来晚 . +You are taller than she is . ||| 你們 比 她 高 . +If it had not been for your help , I could not have completed the work . ||| 如果 不是 因为 有 你 的 帮助 , 我 不 可能 完成 了 这个 工作 . +This is Room 839 . ||| 这 是 839 号 房间 . +She likes taking pictures . ||| 她 喜欢 拍照片 . +I ordered several books from England . ||| 我 从 英国 订 了 好几 本书 . +Tom wants to sit down . ||| 汤姆 想 坐下 . +The dog saved the girl is life . ||| 這 隻 狗 救 了 這 個 小女孩 的 命 . +My mother bought two bottles of orange juice . ||| 我 母亲 买 了 两瓶 橙汁 . +I think you should do that before you go home today . ||| 我 認為 你 該 在 今天 回家 前 做 . +What do you think I was doing before ? ||| 你 觉得 我 之前 在 做 什么 ? +Turn on the radio . ||| 打开 收音机 . +He took it literally . ||| 他 按照 字面上 的 意思 . +Her hair is long and beautiful . ||| 她 的 頭 髮 長 而 美 麗 . +We have to do our best . ||| 我们 应该 做到 最好 . +Tom took out his key and opened the door . ||| 汤姆 掏出 钥匙 开了门 . +He came at three in the afternoon . ||| 他 在 下午 三點鐘 的 時候 來 了 . +I have two cars . ||| 我 有 两辆车 . +May I play the piano ? ||| 我 可以 彈 鋼琴 嗎 ? +I am free today . ||| 我 今天 有空 . +Are you looking for something ? ||| 您 在 找 什么 吗 ? +At first , I had no idea why . ||| 起初 我 不 知道 為 什麼 . +Do not make noise when you eat soup . ||| 當 你 喝 湯 的 時候 不要 發出 聲音 . +Do you have your driver is license ? ||| 你 有 駕駛 執照 嗎 ? +We all fell asleep . ||| 我们 都 睡着 了 . +It is so different now . ||| 现在 真是 不 一样 了 . +Is there anything else you 'd like ? ||| 还有 什么 想要 的 吗 ? +What do you want ? ||| 你 想要 什么 ? +He had his hair cut short . ||| 他 把 头发 剪短 了 . +Leaves begin to fall in October . ||| 樹葉 在 十月 開始 掉落 下來 . +He is a good tennis player . ||| 他 是 个 网球 高手 . +He has made a fortune through hard work . ||| 他 通过 努力 挣 了 大笔 钱 . +Beware of the dog ! ||| 小心 狗 ! +It will not take much time . ||| 不 會 花 很多 時間 的 . +His mother did not want to do it . ||| 他 的 母親 不想 做 . +I made him paint the house . ||| 我 讓 他 刷 房子 . +Why did you say such a thing ? ||| 你 為 什麼 說 了 這樣 的 事 ? +Please be ready in fifteen minutes . ||| 请 在 15 分钟 内 准备 好 . +I was afraid I might be late . ||| 我 怕 我 可能 遲 到 了 . +He tries . ||| 他 来 试试 . +I can swim very fast . ||| 我 游泳 可以 游得 很快 . +We went down a river by canoe . ||| 我們 乘著 獨 木舟 向河 的 下游 而 行 . +Tom drank his orange juice . ||| Tom 喝 了 他 的 柳橙汁 . +I will join you all later . ||| 我 晚会 加入 你们 . +Turn the radio up a little . ||| 把 收音 機 開 大聲 一點 . +Tom looks pale . ||| 湯姆 看 起來 很 蒼白 . +Tom is miserly . ||| 汤姆 很小 气 . +My father will come home at the end of this week . ||| 我 爸爸 会 在 这 周末 回家 . +If you get sleepy , just tell me . ||| 困 了 的话 就 说 哦 . +Tell me how he got it . ||| 告诉 我 他 怎么弄 到 的 . +He likes to listen to the radio . ||| 他 喜歡 聽 收音 機 . +Do you think I am made of money ? ||| 你 以为 我 造钱 啊 ? +Are you coming next week ? ||| 你 下週 來 嗎 ? +She gave me a watch . ||| 她 給 了 我 一支 手 錶 . +Throw the ball back to me . ||| 把 球 丟 還 給 我 . +Books are for people who wish they were somewhere else . ||| 書 是 為了 那些 希望 自己 在 另 一個 地方 的 人 . +Close your eyes . ||| 闭 上 你们 的 眼睛 . +They live on the other side of the road . ||| 他們 住 在 路 對 面 . +How is everything at work ? ||| 工作 怎么样 ? +Did you have a good time yesterday ? ||| 你 昨天 玩 得 開心 嗎 ? +I heard Tom muttering something in French . ||| 我 听到 汤姆 在 用 法语 嘀咕 些 什么 . +He did not get up early . ||| 他 没有 早起 . +Is it far ? ||| 遠 嗎 ? +No matter what happens , I am prepared . ||| 不管 發生 什麼 事 , 我 都 準備 好 了 . +What do you think of Japanese food ? ||| 你 覺得 日本料理 怎麼樣 ? +I know the truth . ||| 我 知道 真相 . +Do not put the cart before the horse . ||| 不要 把 馬車 放在 馬 的 前面 . +Ladies and gentlemen , due to an accident at the airport , our arrival will be delayed . ||| 女士们 , 先生 们 , 由于 机场 的 意外 情况 , 我们 的 着陆 将 被 推迟 . +I want to buy a pair of pants . ||| 我 想 買 條 褲子 . +Tom cleared his throat and continued to speak . ||| 汤姆 咳嗽 了 一下 然后 接着 讲 . +How did you know that was my favorite one ? ||| 你 怎麼 知道 那 是 我 最 喜歡 的 ? +I am an electrician . ||| 我 是 一名 電工 . +Can you stay for a while ? ||| 你 能待 一会 吗 ? +What type of food do you like ? ||| 你 喜欢 什么样 的 食物 ? +We have not done well . ||| 我们 没有 做好 . +They had their houses destroyed by a strong earthquake . ||| 他們 的 房屋 被 強烈 地震 摧毀 了 . +A day without laughter is a day wasted . ||| 没有 笑声 的 一天 肯定 是 最为 虚度 的 一天 . +I am not sure what is going on . ||| 我 不 清楚 發生 了 甚麼 . +She will make him a good wife . ||| 她 会 是 他 的 好 妻子 . +I could not afford to buy a bicycle . ||| 我 买不起 自行车 . +You will succeed if you try . ||| 如果 你 尝试 的话 , 你 会 成功 的 . +Please think about it . ||| 請 你 考慮 考慮 . +I worked all this week . ||| 这周 我 一直 在 工作 . +Let is find out who sent this to us . ||| 讓 我們 查查 誰 送 給 我們 這個 . +He accepted my idea . ||| 他 接受 了 我 的 主意 . +Look at me with your books closed . ||| 把 你 的 書 閤 起 來 看 著 我 . +I have been busy since yesterday . ||| 我 從 昨天 開始 一直 忙著 . +I want you to sleep on it . ||| 我 想要 你 睡 在 它 上边 . +We will be in Boston for another three weeks . ||| 我們 還 會 在 波士 頓待 三個 月 . +Thanks for telling me the truth . ||| 感谢 告诉 我 真相 . +How much is the bus fare ? ||| 公車 票價 多少 錢 ? +I do not think he will be able to do it by himself . ||| 我 不 觉得 他 自己 一个 人会 做到 . +We will wait and see what happens . ||| 我們 要 等等 看會 發生 甚麼 . +They should all be fired . ||| 他們 全部 都 應該 被 開除 . +Please show me what to do next . ||| 請 讓 我 看看 下 一步 該 做 什麼 . +I am curious . ||| 我 很 好奇 . +The bell has not rung yet . ||| 钟 还 没响 . +About how long will it take to get there by bus ? ||| 搭 公車 到 那裡 大約要 花 多久 的 時間 ? +Tom will never see you again . ||| 汤姆 永远 也 不会 见 你 了 . +I think that it is true . ||| 我 認為 這 是 真的 . +What is the climate there like ? ||| 那里 的 气候 怎么样 ? +I talked to him on the telephone yesterday night . ||| 我 昨晚 跟 他 通电话 了 . +Keep your mouth shut and your eyes open . ||| 闭嘴 看着 . +I would like to get married to someone like you . ||| 我 想 跟 你 这样 的 人 结婚 . +She looks blue for some reason . ||| 由于 某些 原因 , 她 看起来 很 忧伤 . +I may have made a mistake . ||| 我 可能 搞错 了 . +My father insisted that I should go to see the place . ||| 我 爸爸 坚持 要 我 去 那 地方 看看 . +My brother is a professor . ||| 我 哥哥 是 教授 . +Next time it will be my turn to drive . ||| 下次 该轮 到 我 开车 了 . +Tom did not deny he did that . ||| 汤姆 没有 否认 他 做 的 事情 . +Tom thinks I am too young . ||| 汤姆 认为 我 太 年轻 . +This bike needs to be repaired . ||| 这辆 自行车 需要 修理 . +Let me show you around our house . ||| 讓 我 帶 你 四處 看看 我們 的 房子 . +Gold is far heavier than water . ||| 金子 比水 重得 多 . +We are going to do that right away . ||| 我們 馬 上 就 去 做 . +Tom has written to me . ||| 汤姆 写给 我 了 . +I do not think that he is right . ||| 我 不 認為 他 是 對 的 . +Please wash it . ||| 请 清洗 它 . +He went there ten years ago . ||| 他 十年 前去 了 那 ‘ 里 . +Someone yelled for help . ||| 有人 呼救 . +Do you trust her ? ||| 你 相信 她 嗎 ? +I did not catch your last name . ||| 我 没 听到 您 的 姓 . +This amount includes tax . ||| 这个 价格 含 了 税 . +She is always at the bottom of the class . ||| 她 总是 在 班上 拿 倒数 第一 . +I managed to repair my car by myself . ||| 我 自己 搞定 , 修好 了 我 的 车 . +How was your summer vacation ? ||| 暑假 過 得 如何 ? +My grandmother made me a new dress . ||| 我 的 祖母 做 了 一套 新 衣服 給 我 . +Will it be much longer ? ||| 還要 很 久 嗎 ? +Give it to me , please . ||| 請 把 它 給 我 . +I found it by chance . ||| 我 偶然 找到 了 它 . +Can you move this desk by yourself ? ||| 你 能 自己 搬 這 張 桌子 嗎 ? +I bought her a watch . ||| 我 買 了 一支 手 錶 給 她 . +It is a pity when somebody dies . ||| 有人 死 了 的 时候 真是 遗憾 . +Tom does not like to discuss his work . ||| 汤姆 不 喜欢 谈论 他 的 工作 . +We must observe the rules . ||| 我们 必须 遵守规则 . +Do you like playing volleyball ? ||| 你 喜歡 打 排球 嗎 ? +My mother washes clothes every day . ||| 我 媽媽 每天 洗衣服 . +There is not a moment to waste . ||| 一刻 也 不 浪費 . +The mouse ran into the hole . ||| 這 隻 老鼠 跑 進 洞 裡 . +I understood everything Tom said . ||| 我 明白 湯姆 所 說 的 一切 . +Do you know where Tom lives ? ||| 你 知道 汤姆 住 哪儿 吗 ? +Tom wanted to follow in his father is footsteps . ||| 汤姆 想 追随 他 父亲 的 脚步 . +You must build up your courage . ||| 你 一定 要 鼓起勇气 . +How about something cold to drink ? ||| 喝 點 冷 飲 怎樣 ? +I still do not think I am wrong . ||| 我 還 是 不 認為 我 錯 了 . +Please divide the pizza into three parts . ||| 請 把 披薩 分成 三份 . +I bathe every day . ||| 我 每天 都 洗澡 . +Are they treated fairly ? ||| 他们 受到 公正 对待 了 吗 ? +Which team do you think will win ? ||| 你 覺得 哪 支球 隊會 贏 ? +I have had just about enough of her . ||| 我 真的 受夠 了 她 . +May I go now ? ||| 我 现在 能 去 了 吗 ? +The children slid down the bank . ||| 孩子 們 滑下 岸邊 . +Give my love to your kids . ||| 替 我 向 你 的 孩子 們 問 好 . +I had a feeling this might happen . ||| 我 早就 有感 覺到 這 可能 會 發生 . +He told us such a funny story that we all laughed . ||| 他 给 我们 讲 了 一个 有趣 的 故事 , 我们 都 笑了起来 . +I found this book interesting . ||| 我 觉得 这 本书 很 有意思 . +I do not want to look stupid . ||| 我 不想 看起 來 傻 . +I am not greedy . ||| 我 不 貪婪 . +Spring is my favorite season . ||| 春天 是 我 最 喜歡 的 季節 . +The girl playing the piano is my sister . ||| 弹钢琴 的 女孩 是 我 妹妹 . +I want you to read this letter . ||| 我 想 你 读 一下 这 封信 . +The service here is awful . ||| 這裡 的 服務 很 糟糕 . +Is this your family ? ||| 这 是 你 的 家人 吗 ? +He likes to build model planes . ||| 他 喜歡 建造 模型 飛機 . +Tom is a good cook . ||| 汤姆 是 个 好 厨师 . +My daughter loves jumping rope . ||| 我 女兒 喜歡 跳 繩 . +I must hand in the report today . ||| 我 今天 必須 交報 告 . +History is not his major subject . ||| 历史 不是 他 的 主修 课 . +Am I allowed to use this ? ||| 能 让 我 用 这个 吗 ? +He is afraid of the dog . ||| 他 怕 那 只 狗 . +Your pen is better than mine . ||| 你 的 笔 比 我 的 好 . +I am sorry , I left my homework at home . ||| 抱歉 , 我 把 作业 落 在 家里 了 . +This has nothing to do with me . ||| 此事 与我无关 . +He should have bought a used car . ||| 他 應 該 買 一輛 二手 車 的 . +Are you free tomorrow afternoon ? ||| 你 明天 下午 有空 吗 ? +I asked Tom to close the door . ||| 我 要求 湯姆 關門 . +The carpenter brought his tools along . ||| 木匠 带著 他 的 工具 . +She was out of Japan last year . ||| 去年 她 离开 了 日本 . +I know everything that you have done . ||| 我 知道 你 做 的 所有 事 . +Africa is a continent , but Greenland is not . ||| 非洲 是 一個 大陸 , 而 格陵蘭 不是 . +Dead men tell no tales . ||| 死 人 不 會 告密 . +There is little water in the pond . ||| 這個 池塘 裡 的 水 很少 . +That actually makes a lot of sense . ||| 那个 相当 能 说 得 通 . +Did you miss me ? ||| 你 想 我 了 ? +She looked sad . ||| 她 看上去 很 伤心 . +She was very surprised at the news . ||| 她 对 那个 消息 非常 惊讶 . +I ran into Mary at a party last week . ||| 上星期 在 一次 派 對 中 我 遇到 了 瑪麗 . +Kuala Lumpur is worth visiting . ||| 吉隆坡 值得 一 遊 . +Frankly speaking , he is wrong . ||| 坦率地 说 , 他 错 了 . +A hundred people were hurt in a train wreck . ||| 一百多个 人 在 一个 火车 事故 中 受了伤 . +People in the United States speak English . ||| 在 美國 的 人 說 英語 . +Ask him if he will attend the meeting . ||| 问 他 会 不会 来 参加 会议 . +There is a clock on the wall . ||| 牆 壁上 掛著 一個 時鐘 . +I do not have much time . ||| 我 时间 不多 . +He is not very good at mathematics . ||| 他 不是 很 擅長 數學 . +I like jogging . ||| 我 喜欢 跑步 . +Are you done ? ||| 你 做好 了 嗎 ? +Tom is good , but not good enough . ||| 汤姆 好 , 但 不够 好 . +How tall are you ? ||| 你 多 高 ? +Beethoven was a great musician . ||| 貝多芬 是 一個 偉大 的 音樂家 . +I am used to staying up late . ||| 我 习惯 晚睡 . +She goes to night school . ||| 她 上 夜校 . +He already knew about it . ||| 他 已经 意识 到 它 了 . +I do not know anything about him . ||| 我 不 知道 任何 有關 他 的 事 . +I love elderberry juice . ||| 我 愛 接骨木 果汁 . +I was not aware that Tom was sick . ||| 我 還 不 知道 湯姆 生了病 . +Languages are not his forte . ||| 语言 不是 他 的 强项 . +Do you like school ? ||| 您 喜歡 學校 嗎 ? +He is sometimes absent from school . ||| 他 偶爾 逃學 . +I want to go home . ||| 我 要 回家 . +You should prepare for the worst . ||| 你 应该 作 最 坏 的 准备 . +What will you have ? ||| 你 将 拥有 什么 ? +When will you leave ? ||| 你 什麼 時候 離開 ? +Would you like me to explain it ? ||| 你 要 我 解釋 一下 嗎 ? +I am afraid you have the wrong number . ||| 我 恐怕 您 打错 电话 了 . +We bought some vegetables and fish at the market . ||| 我们 在 市场 上买 了 些 蔬菜 和 鱼 . +I want to go abroad next year . ||| 我 明年 想去 國外 . +We missed you . ||| 我們 想 你 . +Will you play tennis after school ? ||| 你 放學 後 會 去 打 網球 嗎 ? +Please wait on him first . ||| 請 先 等 他 . +The children go to school in the morning . ||| 孩子 们 早上 去 学校 . +It is an easy victory . ||| 這 是 一個 輕 鬆 取得 的 勝利 . +You can go or stay , as you wish . ||| 你 走 或 留 , 随 你 高兴 . +Fish is sold by the pound here . ||| 魚 在 這裡 是 以 磅 為 單位 來 出售 . +He made a journey around the world . ||| 他 環遊 世界 旅行 . +Do not play in the road . ||| 別 在 馬 路上 玩 . +We can not escape . ||| 我們 逃不出 去 . +When do you eat dinner ? ||| 你 几点 吃 的 晚饭 ? +I always try to tell the truth . ||| 我 總是 試著 說實話 . +I saw five men . ||| 我 看到 了 五個 男人 . +Tom goes for a walk every morning . ||| Tom 每天 早上 去 散步 . +Are you crying ? ||| 你 在 哭 嗎 ? +I want to go to Africa someday . ||| 有 一天 我 要 去 非洲 . +Have you ever been hit by a car ? ||| 你 被车撞 过 吗 ? +I could hear birds singing outside my window . ||| 我 能 听见 鸟 在 窗外 歌唱 . +There were not any roses in the garden . ||| 花園 裡 沒有 任何 玫瑰 . +Let me know when you need me again . ||| 再 需要 我 就 告诉 我 . +Could you tell me ? ||| 您 会 告诉 我 吗 ? +Come again next week . ||| 下周 再來 . +I have decided to go a little further . ||| 我 准备 再 前进 一点 . +Tom told Mary she could not do that . ||| 湯姆 告訴 瑪麗 她 不能 做 那件事 . +How complex is it ? ||| 它 有多 複 雜 ? +No matter what happens , I am not changing my mind . ||| 無論 如何 , 我 不 會 改變 我 的 想法 . +You did not need to hurry . ||| 你 不 需要 著急 . +He sat on the bench . ||| 他 坐在 長 凳 上 . +I had a long talk with her . ||| 我 和 她 有 一段 長 談 . +My dream is to become a teacher . ||| 我 的 夢 想 是 成為 一名 教師 . +Why are you just sitting there ? ||| 你 为什么 就 站 在 这里 ? +Why worry about Tom ? ||| 為 什麼 要 擔心 Tom ? +Where is the ticket window ? ||| 售票 窗口 在 哪裡 ? +Where are my books ? ||| 我 的 書 在 哪 ? +I believe you . ||| 我 相信 你 . +My grandfather usually eats breakfast at six . ||| 我 的 祖父 通常 在 六點鐘 吃 早餐 . +My right hand is numb . ||| 我 的 右手 麻 了 . +We hope you will enjoy the show . ||| 我們 希望 你 喜歡 這個 表演 . +We were granted the privilege of fishing in this bay . ||| 我们 得到 了 在 这个 海湾 内 捕鱼 的 特权 . +He is out taking a walk . ||| 他 出去 散步 . +I think that Tom might not want to do that . ||| 我 认为 汤姆 可能 不想 那样 做 . +The ambulances carried the injured to the nearest hospital . ||| 救护车 把 伤者 送往 了 最近 的 医院 . +The legal system in America is the world is finest . ||| 美國 的 司法制度 是 世界 上 最好 的 . +They wanted a wedding picture in front of the Eiffel Tower . ||| 他們 想 在 艾菲爾 鐵塔 前面 拍張 結 婚照 . +I do not think I like this game very much . ||| 我 觉得 我 不 太 喜欢 这 游戏 . +Are you still winning ? ||| 你 還 在 贏 嗎 ? +I know you are not comfortable . ||| 我 知道 你 不 舒服 . +His lectures are very long . ||| 他 的 講座 很 長 . +It is too large . ||| 它 太 大 了 . +How come you did not say anything ? ||| 你 為 什麼 都 不 說 話 ? +Try it . ||| 试试 吧 . +Let is leave the decision to Tom . ||| 讓 我們 留給 他 作 決定 . +This is the worst movie I have ever seen . ||| 这 是 我 看过 的 最 差劲 的 电影 了 . +The leaves will turn red in two or three weeks . ||| 再 过 两 三周 , 树叶 就 会 变 红 吧 . +It is my CD , is not it ? ||| 這 是 我 的 CD , 不是 嗎 ? +He leaves for China tomorrow . ||| 他 明天 出发 去 中国 . +You are really beautiful . ||| 你 真的 很漂亮 . +I do not want to hear about it again . ||| 我 不想 再 聽到 這事 . +I do not think that he is sincere . ||| 我 不 觉得 他 很 诚实 . +What time do you open ? ||| 你们 什么 时候 开始 营业 ? +How many people can do that ? ||| 有 多少 人 能 做 ? +Tom avoids Mary whenever possible . ||| 湯姆 盡量 避開 瑪麗 . +Mary is very cute . ||| 玛丽 非常 可爱 . +Tom will try and stop me for sure . ||| 汤姆 一定 会试 着 阻挡 我 . +A lot of soldiers were killed here . ||| 許多 士兵 在 這裡 陣亡 . +She played a tune on the piano . ||| 她 在 鋼琴 上彈 了 一首 曲子 . +Are you allergic to any medicine ? ||| 你 對 任何 藥物 過 敏 嗎 ? +Give me my beer . ||| 把 我 的 啤酒 給 我 . +I remember writing to her . ||| 我 记得 给 她 写过信 . +Do not be afraid to make mistakes when speaking English . ||| 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I have not finished breakfast yet . ||| 我 還 沒 吃 完 早 飯 . +An apple sits on the table . ||| 桌上 有个 苹果 . +I do not want to go to Tom is birthday party . ||| 我 不想 去 汤姆 的 聚会 . +You are good . ||| 你 很 好 . +Tom sells T @-@ shirts at a 30 percent discount . ||| 汤姆 以 七折 销售 T恤 . +What is the weight of your suitcase ? ||| 你 的 行李 多重 ? +He is not an American . ||| 他 不是 美国 人 . +I am glad that I did not buy something like this . ||| 我 很 高兴 没有 买 这样 的 东西 . +I will phone you every night . ||| 我 每晚 都 給 你 打 電話 . +The bird was covered with white feathers . ||| 鸟儿 身上 铺满 了 白色 的 羽毛 . +I had my wallet stolen . ||| 我 的 钱包 被 偷 了 . +Does the letter need to be written in English ? ||| 這 封信 需要 用 英文 寫 嗎 ? +Please feed the dog every day . ||| 请 每天 喂 一下 狗 . +That is no big deal . ||| 那 没什么 大不了 的 . +I think you should leave as soon as you can . ||| 我 觉得 你 应该 赶紧 走 . +He is a very imaginative writer . ||| 他 是 非常 有 想像力 的 作家 . +I have to study for the test . ||| 我 必須 讀書 準備 考試 . +He was busy with his homework . ||| 他 忙 於 做功 課 . +To tell you the truth , this is a little too spicy for me . ||| 说实话 , 这 对 我 来说 有点 太 辣 了 . +My mother made me a sweater . ||| 我 媽媽 為 我 做 了 一件 毛衣 . +Tell me your story . I am all ears . ||| 告訴 我 你 的 故事 . 我 會 注意 聽 . +He committed suicide . ||| 他 自杀 了 . +This one is still alive . ||| 這 一個 還 活著 . +Your plan requires a large amount of money . ||| 你 的 计划 需要 一大笔钱 . +Call me if you need anything . ||| 需要 什么 就 给 我 打电话 . +The wind is cold today . ||| 今天 刮 冷风 . +Why did you get up so early ? ||| 你 為 什麼 這麼 早起 ? +The train arrived on schedule . ||| 火车 准时 到 了 . +People should understand that the world is changing . ||| 人 应该 明白 世界 在 变 . +I wish I could figure out how to disable comments on my blog . ||| 但愿 我 能 找到 在 我 的 博客 上 屏蔽 评论 的 办法 . +They are discussing the problem . ||| 他們 正在 討論 這個 問題 . +He is an old friend of mine . ||| 他 是 我 的 一位 老朋友 . +Tom is the only boy in our class . ||| 湯姆 是 我們 班裡 唯一 的 男孩 . +You have made a mistake . ||| 你 犯 了 个 错误 . +Do you like pirate movies ? ||| 你 喜欢 盗版 电影 吗 ? +I know people think I am odd . ||| 我 知道 人們 認為 我 古怪 . +He took the wrong bus by mistake . ||| 他 搭错 了车 . +Furniture made of good materials sells well . ||| 用 优质 材料 做 的 家具 卖 得 很 好 . +I did not really feel like going out . ||| 我 不是 很 想 出去 . +Who were they talking about ? ||| 他们 在 讨论 谁 ? +She greeted him waving her hand . ||| 她 揮著 手 向 他 打招呼 . +Was this letter written by Mary ? ||| 这 封信 是 玛丽 写 的 吗 ? +This decision is final . ||| 这 是 最终 决定 . +I hope that you give this book a read . ||| 我 希望 你 讀讀 這 本書 . +He has his own room . ||| 他 有 自己 的 房间 . +He visited her house the other day . ||| 他 前 幾天 拜訪 了 她家 . +Money makes the world go round . ||| 金钱万能 . +Are you going to visit any other countries ? ||| 你 会 去 访问 其他 国家 吗 ? +I got this bicycle for nothing . ||| 我 免費 得到 這輛 自行 車 . +Do you really believe in ghosts ? ||| 你 真的 相信 鬼 嗎 ? +There is no fire without smoke . ||| 沒有 不 冒 煙 的 火 . +Terrific ! ||| 很棒 ! +I am sorry for the late response . ||| 我 很 抱歉 回复 晚 了 . +You should make notes . ||| 你 应该 做 笔记 . +If it is raining tomorrow , we will go there by car . ||| 如果 明天 下雨 , 我们 就 坐车去 那儿 . +I suspect they water down the beer in that pub . ||| 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +He plays golf every weekend . ||| 他 每個 週末 打 高爾夫 球 . +There are fifty members in this club . ||| 这个 俱乐部 里 有 50 个 会员 . +I prefer cats to dogs . ||| 與 狗 相比 , 我 更 喜歡 貓 . +This is a good book , but that one is better . ||| 這 是 本 好 書 , 但 那 本 更好 . +Is everything going OK at work ? ||| 工作 一切顺利 吗 ? +He came to Tokyo at the age of three . ||| 他 三岁 就 到 东京 了 . +How far is it to the airport ? ||| 到 机场 有 多 远 ? +The girl made an awkward bow . ||| 這個 女孩 做 了 一把 很 難 使用 的 弓 . +Is that true ? ||| 真的 ? +I just wanted somebody to help me . ||| 我 只是 想 有 个人 来 帮助 我 . +This boat has six oars . ||| 這 艘 船 有 六個 槳 . +He said he was tired , so he would go home early . ||| 他 说 他 累 了 , 所以 他 想 早点 回家 . +I am sick of eating fast food . ||| 我 受够 吃快餐 了 . +It is possible that you do not know this . ||| 你 有 可能 不 知道 这事 . +It is very hot in this room . ||| 這間 房裡 很 熱 . +English has now become the common language of several nations in the world . ||| 英语 现已 成为 世界 上 许多 国家 的 通用 语言 了 . +You know as well as I do that Tom hates Mary . ||| 你 我 都 知道 湯姆 恨 瑪麗 . +He is not here yet . ||| 他 還 沒到 這裡 . +Go on home . ||| 回家吧 . +I thought that Tom would sleep until noon . ||| 我 认为 汤姆 会 睡到 中午 . +I will give you a ride . ||| 我 會 載 你 一程 . +How about some more roast beef ? ||| 再 多一些 烤牛肉 怎麼樣 ? +The firemen soon put out the fire . ||| 消防 隊員 很快 就 把 火 撲 滅 了 . +I do not know where you want to go . ||| 我 不 知道 你 要 去 哪 . +It is a piece of cake . ||| 小菜一碟 . +To my surprise , he easily came up with a plan . ||| 令 我 吃惊 的 是 , 他 很 容易 就 想出 了 一个 方案 . +I admit that he is right . ||| 我 承认 他 是 对 的 . +When will that new school open ? ||| 那 是 新 学校 什么 时候 开学 ? +Here is a photograph of my family . ||| 這裡 有 一張 我 全家 的 照片 . +He finally became the president of IBM . ||| 他 終 於 成 了 IBM 的 總 經理 . +Is it OK for me to come in now ? ||| 我 现在 进来 方便 么 ? +We happened to get on the same bus . ||| 我们 恰巧 上 了 同 一辆 公交车 . +Let me think about it . ||| 让 我 想一想 . +Comb your hair before you go out . ||| 在 你 出門 之前 , 把 你 的 頭 髮 梳 一 梳 . +For the time being , my sister is an assistant in a supermarket . ||| 目前 , 我 妹妹 在 一家 超市 当 收银员 . +He takes a walk every morning . ||| 他 每天 早上 都 散步 . +Sammy Davis was an excellent singer . ||| 山米 戴維斯 是 一個 優秀 的 歌手 . +Leave me . ||| 让 我 一个 人 呆 会儿 . +I think I made a mistake . ||| 我 认为 我 犯 了 个 错 . +Students generally like a teacher who understands their problems . ||| 通常 学生 们 喜欢 理解 他们 问题 的 老师 . +I did not get the joke . ||| 我 没 明白 那个 笑话 . +There was a minute of silence and then everybody started screaming . ||| 有 一分钟 的 沉默 , 然后 每个 人 都 开始 尖叫 . +I had a neighbor who was blind . ||| 我 有個 盲鄰 居 . +It happened a long time ago . ||| 这 事 发生 在 很多年 以前 . +Our refrigerator is not working . ||| 我們 的 冰箱 壞 了 . +If he is innocent , then his wife is guilty . ||| 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +Wo not you have some coffee ? ||| 你 不要 點 咖啡 嗎 ? +I bought two loaves of bread . ||| 我 買 了兩條 麵 包 . +I know who likes Tom . ||| 我 知道 谁 喜欢 汤姆 . +No matter how hard I try , I can not do it any better than she can . ||| 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Let me know . ||| 讓 我 知道 . +Tom might be a vegetarian . ||| 湯姆 可能 是 素食者 . +Almost all the students like English . ||| 幾乎 所有 的 學生 喜歡 英語 . +Tom should be fired . ||| 湯姆 應 該 要 被 開除 . +She complained about my low salary . ||| 她 抱怨 我 的 工資 低 . +I saw five men . ||| 我 看见 五个 男人 . +I will not stay here for long . ||| 我 不会 在 这里 呆 很久 . +I wish I could go . ||| 我 希望 我 可以 去 . +Thank you all the same . ||| 同样 感谢 你 . +You should know it . ||| 你 應該 知道 的 . +I always walk to school . ||| 我 總 是 走路 到 學校 . +I waited an hour for my friend . ||| 我 等 我 的 一个 朋友 等 了 一 小时 . +It looks like Tom will do what we have asked him to do . ||| 看來 湯姆會 按 我們 要求 的 去 做 . +I feel like getting some fresh air . ||| 我 想要 呼吸 一些 新鮮 空氣 . +He has three brothers . ||| 他 有 三名 兄长 . +I do not agree with you on this point . ||| 这 一点 我 不 赞成 你 . +The game ended at nine o 'clock . ||| 比賽 在 九點鐘 結束 . +I will miss you when you are gone . ||| 你 走 後 , 我 會 想念 你 的 . +Could you do it ? ||| 你 能 做到 嗎 ? +I advise you to give up drinking . ||| 我 勸 你 戒酒 . +Tom bought a ticket . ||| 汤姆 买 了 张 票 . +I go to church every day . ||| 我 每天 上 教堂 . +It looks like an apple . ||| 看起来 像 个 苹果 . +Why do I have to do that ? ||| 我 为什么 一定 要 那么 做 ? +I am waiting for you to finish your homework . ||| 我 等 你 把 作業 做 完 . +He was arrested for drunken driving . ||| 他 因 酒 後 駕駛 而 被捕 . +I need glue . ||| 我 需要 胶水 . +You are drunk . ||| 你 喝醉 了 ! +You have to come with me . ||| 你 必須 跟 我 來 . +The camera will cost at least $ 500 . ||| 這 台 相機 至少 要 花費 500 美元 . +I am sorry , but I really have to go . ||| 我 很 抱歉 , 但 我 必須 走 了 . +Not a day passes without traffic accidents . ||| 交通事故 没有 一天 是 不 在 发生 的 . +Can you tell me where the nearest antique shop is ? ||| 你 能 告诉 我 最近 的 古玩店 在 哪里 吗 ? +It is cool this morning , is not it ? ||| 今天上午 很 涼爽 , 不是 嗎 ? +The girl made an awkward bow . ||| 這個 女孩 做 了 一把 不 稱手 的 弓 . +She may have missed the 7 : 00 train . ||| 她 可能 錯 過 了 七點 的 火車 . +We know everything . ||| 我们 什么 都 知道 . +My father went fishing . ||| 我 父親 去 釣魚 了 . +How long have you been in Japan ? ||| 你 去 了 日本 多久 ? +Would you close the window ? ||| 請 您 把 窗戶 關起 來 好 嗎 ? +Ten houses were burned down . ||| 十間 房屋 被 燒毀 了 . +Bear his advice in mind . ||| 牢 記 他 的 建議 . +Tom looks a bit sick . ||| 湯姆 看來 有 點 不適 . +That man died of lung cancer a week ago . ||| 那个 男人 在 一周 前 死于 肺癌 . +I refuse to be treated like a child . ||| 我 拒绝 被 像 一个 孩子 般 对待 . +How is your work coming along ? ||| 你 的 工作 進行 得 怎麼樣 ? +We sometimes see them . ||| 我們 有 時會 看見 他們 . +Tom is a lot younger than Mary is . ||| 汤姆 比 玛丽 年轻 许多 . +All plants need water and light . ||| 所有 的 植物 都 需要 陽光 和 水 . +Tom saw the exhibits . ||| 汤姆 看 了 展览会 . +He called me a cab . ||| 他 替 我 叫 了 一部 計程 車 . +She recognized the brooch as the one she had lost a few months before . ||| 她 认出 那 枚 胸针 是 她 几个 月 前 丢失 的 . +Swimming makes your legs stronger . ||| 游泳 使 腿部 强健 . +When it stops raining , let is go for a walk . ||| 等 雨 停 了 , 我们 去 散步 吧 . +He was laughed at by his friends . ||| 他 被 他 的 朋友 嘲笑 了 . +Tom lived in Japan for ten years . ||| 湯姆 住 在 日本 十年 了 . +After you have read it , give the book back to me . ||| 在 你 讀 完 後 , 把 書 還 給 我 . +Tom used to live near Mary . ||| 汤姆 以前 跟 玛丽 住 得 近 . +They give good service at that restaurant . ||| 那家 餐館 提供 良好 的 服務 . +All we need is water . ||| 我们 需要 的 只有 水 . +I wonder if Tom can help us . ||| 我 不 知道 湯姆 能 不能 幚 我 們 . +I have nothing to complain about . ||| 我 沒有 什麼 可 抱怨 的 . +I did not know where it came from . ||| 我 不 知道 它 是从 哪里 来 的 . +There is something in your hair . ||| 你 头发 上 粘着 什么 东西 . +He is eligible for the presidency . ||| 他 有 資格 當選 總統 . +She carried that habit to her grave . ||| 她 到 死 都 改不了 那個 習慣 . +I do not think that it is going to be easy to find Tom . ||| 我 认为 , 要 找到 汤姆 可不 容易 . +Where can we make a phone call ? ||| 我們 能 在 哪裡 打 電話 ? +I talked to her . ||| 我 跟 她 谈 了 话 . +I do not think that this is a good idea . ||| 我 觉得 这 主意 不行 . +I do not care for eggs . ||| 我 不 喜欢 鸡蛋 . +I played catch with my father . ||| 我 和 我 爸爸 玩 接球 . +We were surprised to hear the news . ||| 我們 聽到 這個 消息 很 驚訝 . +The snow was knee deep . ||| 積 雪深 及 膝蓋 . +All this is new to me . ||| 这 对 我 来说 全 是 新 的 . +We took turns driving . ||| 我們 輪流 開車 . +She has the large house to herself . ||| 她 給 自己 一間 大房子 . +You are the only person I can trust . ||| 你 是 我 唯一 可以 信任 的 人 . +Do you know Tom is address ? ||| 你 有 汤姆 的 住址 吗 ? +Have you seen my glasses anywhere ? ||| 你 曾 在 哪裡 看到 過 我 的 眼鏡 嗎 ? +No one was late . ||| 没有 人 迟到 . +She went to the hospital by taxi . ||| 她 搭計 程車 去 醫院 了 . +Please show me your bag . ||| 請 讓 我 看看 你 的 袋子 . +Are you writing a letter ? ||| 你 在 写信 吗 ? +He seldom comes to see me . ||| 他 很少 来看 我 . +He is always a little irritable in the morning . ||| 他 早上 总是 有点 脾气 暴躁 . +There is no more salt . ||| 沒有 再 多 的 鹽 了 . +This is a present for you . ||| 這 是 給 你 的 禮物 . +Tom would not dare show his face around here again . ||| 汤姆 不敢 再 到 这里 露面 . +In Esperanto there are only 16 grammar rules . ||| 世界 語 只有 16 個 語法 規則 . +What are your thoughts on this ? ||| 你 觉得 这个 怎么样 ? +It is better to teach someone how to fish than to give someone a fish . ||| 授 之 以 鱼 , 不如 授 之 以 渔 . +I feel a whole lot better today . ||| 我 今天 感觉 好多 了 . +My dream is to become a pilot . ||| 我 的 梦想 是 成为 一名 飞行员 . +The company suffered a loss of one billion yen last year . ||| 那 家 公司 去年 亏损 了 10 亿日元 . +Do not ever touch my things again . ||| 不要 再 碰 我 的 东西 . +I did not know he drank so much . ||| 我 不 知道 他 喝 那么 多 酒 . +I retired last year . ||| 我 去年 退休 了 . +The room has a seating capacity of 200 . ||| 这个 房间 能 容纳 200 人 . +Can you guess how old I am ? ||| 你 能 猜到 我 的 年龄 吗 ? +It is a basic human right . ||| 它 是 基本 人权 . +The fox and the bear lived together . ||| 這 隻 狐狸 和 這 隻 熊 一起 生活 了 . +It is still too early to get up . ||| 時間 還 早 不必 這麼 早 起床 . +There are fifty states in the United States . ||| 美国 有 50 个 州 . +I will call you tomorrow . ||| 明天 我 給 你 打 電話 . +Who is in charge of the office while the boss is away ? ||| 在 主任 不在 的 时候 , 办公室 由谁来 负责 ? +The stars are shining very brightly in the sky tonight . ||| 今晚 的 夜空 星光 非常 明亮 . +They must have had an accident . ||| 他們 一定 發生 了 意外 . +A good many people have told me to take a holiday . ||| 很多 人 都 跟 我 說 要 我 休假 . +I kept on singing . ||| 我 继续 唱歌 . +Tom loves to sing . ||| 湯姆愛 唱歌 . +There is a path through the wood . ||| 有 一個 穿 過 樹林 的 小路 . +That is my younger sister is photograph . ||| 那 是 我 妹妹 的 照片 . +I heard him go down the stairs . ||| 我 聽見 了 他 下樓 . +In Japan , the new school year begins in April . ||| 日本 的 新學 年 在 四月 開始 . +What made her do so ? ||| 为什么 她 要 做 这种 事情 呢 ? +Tom should be happy . ||| 汤姆 应该 高兴 . +Those are my trousers . ||| 那些 都 是 我 的 褲子 . +Tom does not want our help . ||| 湯姆 不想 讓 我們 幫忙 . +He was standing behind the door . ||| 他 站 在 門 後 . +Bern is the capital of Switzerland . ||| 伯恩 是 瑞士 首都 . +How long did it take to do that ? ||| 你 做 那事 用 了 多久 ? +Helen Keller was blind , deaf and dumb . ||| 海倫 凱勒 眼盲 , 耳聾 , 又 啞 . +I am going to change my clothes . ||| 我 要 去 换衣服 . +She considered his offer carefully . ||| 她 仔细 考虑 了 他 的 提议 . +That is what I always say . ||| 那 是 我 經常 說 的 . +I will come and see you one of these days . ||| 这些 天 我会 抽 一天 来看 你 的 . +I guess you are right . ||| 我 猜 你 是 對 的 . +Preventive measures are much more effective than the actual treatment . ||| 预防措施 比 真正 的 治疗 更 有效 . +Many of the immigrants changed their names . ||| 许多 移民 改 了 名字 . +Did anybody ask you to come here ? ||| 有人 叫 你 來 這 嗎 ? +He mistook me for an Englishman . ||| 他 誤以 為 我 是 一個 英國 人 . +How much is this watch ? ||| 这 只 表 多少 钱 ? +No way ! ||| 没门 ! +This rug is handmade . ||| 这块 地毯 是 手工 制作 的 . +What have you been doing recently ? ||| 最近 在 干 些 什么 ? +Mary is very cute , is not she ? ||| 马力 很 可爱 , 不是 么 ? +Tom went there to learn French . ||| 汤姆 去 那里 学法语 . +My brother and I are in the same class . ||| 我 的 兄弟 和 我 在 一个 班级 . +How many Chinese characters can you write ? ||| 你 會 寫 多少 漢字 ? +Tom has no one to turn to for help . ||| 汤姆 没有 能 求助 的 人 . +They settled in Canada . ||| 他们 在 加拿大 安家落户 . +I never played golf . ||| 我 从没 玩 过 高尔夫 . +Taiwanese food is milder than Indian food . ||| 台灣 菜 比 印度 菜 口味淡 . +Maternal love is greater than anything else . ||| 母爱 比 任何 别的 东西 都 伟大 . +You should think before you speak . ||| 你 在 说话 前 应该 先 思考 . +Here goes nothing . ||| 毫無 希望 , 白費 心思 . +In Japan , it rains quite a bit during our rainy season which is from mid @-@ June until mid @-@ July . ||| 在 日本 , 在 我们 的 雨季 常常 下雨 , 雨季 一般 在 六月 中旬 至 七月 中旬 . +He does not come here every day . ||| 他 不是 每 一天 都 來 這裡 . +I do not think Tom is serious . ||| 我 不 覺得 湯姆 是 認 真的 . +You are irresistible . ||| 你 是 不可 抗拒 的 . +He likes tea . ||| 他 喜歡 茶 . +There is no reason to get angry . ||| 沒有 生气 的 理由 . +God bless America . ||| 上帝保佑 美国 . +He acknowledged his faults . ||| 他 得知 了 他 的 错误 . +Can we speak in the hall ? ||| 我們 能 在 走廊 裡 說 話 嗎 ? +It became quiet again in the forest . ||| 森林 裡 又 再 變 得 安靜 下來 了 . +She is only a child . ||| 她 只是 個 孩子 . +Tom carried the chairs to the next room . ||| 汤姆 把 椅子 拿到 了下 个 房间 . +May I come in ? ||| 我 可以 進來 嗎 ? +You have given me good advice . ||| 你 給 了 我 很 好 的 建議 . +Tom bought a mobile phone . ||| 汤姆 买 了 个 手机 . +A dolphin is a mammal . ||| 海豚 是 哺乳 動物 . +Have you found your contact lenses ? ||| 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Tom knows a lot of stuff about Mary . ||| 汤姆 知道 玛丽 的 很多 事 . +This is my first time . ||| 這 是 我 的 第一次 . +We will leave as soon as you are ready . ||| 你 一 准备 好 , 我们 就 走 . +Tom wanted to be a better teacher . ||| 汤姆 想 做 个 更好 的 教师 . +They forced me out . ||| 他们 迫使 我 出来 . +I lent my friend some money . ||| 我 借给 了 朋友 一些 钱 . +Do you smoke ? ||| 您 吸烟 吗 ? +You are lying . ||| 你 在 撒谎 . +Do you have medical insurance ? ||| 你 有 醫療 保險 嗎 ? +Do I have to answer all of the questions ? ||| 我 需要 回答 所有 問題 嗎 ? +It is been an amazing experience . ||| 这 是 奇妙 的 体验 . +Tom died in an accident . ||| 湯姆 在 一場 意外 中 喪生 . +So , what will you give me ? ||| 那 你 会 给 我 什么 ? +Do not let this information leak out . ||| 不要 让 这些 信息 泄露 出去 . +To tell the truth , I do not agree with you . ||| 实话 说 , 我 不 赞成 你 . +I do not have a cat . ||| 我 没有 猫 . +It is about the size of an egg . ||| 它 的 大小 就 像 雞 蛋 . +I remember seeing her somewhere . ||| 我 記得 在 哪兒 見 過 她 . +Tom applied for the job . ||| 湯姆申 請 了 這份 工作 . +I gather that they will agree with us . ||| 我 猜想 他們 會 同意 我們 的 . +She got out of the car . ||| 她 下 了 車 . +May I have a bus schedule ? ||| 我 可以 有 張 公車 的 時刻 表嗎 ? +I am interested in sports . ||| 我 对 运动 感兴趣 . +Iceland belonged to Denmark . ||| 冰岛 曾 属于 丹麦 . +She will be glad if you go to see her in person . ||| 如果 你 單獨 去 看 她 , 她 會 很 高興 的 . +I arrived at the village before dark . ||| 我 天黑 之前 到达 了 村庄 . +They are 30 minutes behind schedule . ||| 他們 的 進度 較 預期 慢 30 分鐘 . +It is hot today , is not it ? ||| 今天 很 熱 , 不是 嗎 ? +You should talk directly to Tom . ||| 你 应该 直接 跟 汤姆 说 . +The teacher gave us homework . ||| 老师 给 我们 布置 了 家庭作业 . +After winning the Nobel prize , she remained as modest as ever . ||| 獲得 諾貝爾獎 後 , 她 仍 謙虛 如昔 . +It is very uncomfortable . ||| 它 真是 不 舒服 . +I felt hungry after the long walk . ||| 長途 步行 後 我 覺得 餓 了 . +Like a good wine , he improves with age . ||| 就 像 上 好 的 红酒 一样 , 他 随着 年龄 的 增长 变得 越来越 好 . +The room was illuminated with red lights . ||| 這個 房間 被 紅色 的 燈 照亮 了 . +Tom would accept . ||| 湯姆會 接受 . +It is our job to help you . ||| 帮助 你 是 我们 的 工作 . +You have never had a girlfriend , have you ? ||| 你 从 没有 女朋友 , 不是 么 ? +I will boil the potatoes for you . ||| 我 為 你 煮 馬鈴薯 . +He wishes he had gone to the theater last night . ||| 昨晚 他 希望 他 去 了 剧场 . +I think you should see a doctor . ||| 我 覺得 你 應 該 去 看 醫生 . +I love my yellow sweater . ||| 我 很 喜欢 我 的 黄色 套衫 . +The monkey fell from the tree . ||| 猴子 從 樹上 掉 了 下來 . +Astronomy deals with the stars and planets . ||| 天文 學 涉及 恆星 和 行星 . +Do you hear what I am saying ? ||| 你 在 听 我 说 吗 ? +Will you marry me ? ||| 你 愿意 嫁给 我 吗 ? +She smiled at her baby . ||| 她 對著 她 的 孩子 微笑 . +The telephone operator asked the caller to hold on until a connection was made . ||| 电话 运营商 提示 来电 人 等候 接通 . +I am not frightened of anything . ||| 我 不 害怕 任何 東西 . +Your glasses fell on the floor . ||| 你 的 眼镜 掉 在 地上 了 . +I often look up words in that dictionary . ||| 我 经常 用 那 本词典 找 单词 . +He lived to be seventy years old . ||| 他 活到 了 70 歲 . +She was obliged to marry the old man . ||| 她 不得不 和 这个 老 男人 结婚 . +I wish that she would stop smoking . ||| 我 希望 她 戒 煙 . +English is a means of communication . ||| 英語 是 一種 溝通 的 手段 . +Tom has been spending time with Mary . ||| 汤姆 在 玛丽 身上 花 时间 . +I 'd like an orange juice . ||| 我 想要 一杯 柳橙汁 . +If you get sleepy , tell me . ||| 困 了 的话 就 说 哦 . +Tomorrow is Mother is Day . ||| 明天 是 母 親節 . +Why did you stay ? ||| 你 为什么 留下 ? +They welcomed me warmly , so I felt at home . ||| 他们 这么 热情 的 欢迎 我 , 让 我 感觉 家人 一样 . +Come and see me at eleven o 'clock . ||| 您 十一点 时 来看 我 吧 . +He was just on the verge of going to sleep . ||| 他 快要 睡 了 . +He was appointed ambassador to Britain . ||| 他 被 任命 為 駐 英國 大使 . +Tell me about some of the places you have visited . ||| 给 我 说 说 你 去过 的 一些 地方 . +I am not well . ||| 我 身体 不适 . +There is a library in every city in America . ||| 美国 的 每个 城市 都 有 一个 图书馆 . +Are you going to sing ? ||| 你 要 唱歌 嗎 ? +I wonder if he will come tonight . ||| 我 不 知道 他 今晚 會 不 會 來 . +Has Tom come back already ? ||| 汤姆 已经 回来 了 吗 ? +The old man got off the bus . ||| 這位 老人 下 了 公車 . +What do you want for breakfast ? ||| 你 早餐 想要 吃 什麼 ? +The boy made his parents happy . ||| 這個 男孩 讓 他 的 父母 高興 . +Can I go swimming this afternoon ? ||| 我 今天下午 可以 去 游泳 嗎 ? +The cup is on the table . ||| 杯子 在 桌上 . +I wish that I could stop hiccuping . ||| 我 希望 我 能 停止 打嗝 . +Your dog is here . ||| 你 的 狗 在 這 . +Tom still does not know the truth . ||| 汤姆 还是 不 知道 真相 . +Did you make that mistake on purpose ? ||| 你 故意 犯 那個 錯 的 嗎 ? +She came into the room . ||| 她 进 了 房间 . +Everybody is immune to smallpox nowadays . ||| 現今 每個 人 都 對 天花 免疫 了 . +I do not remember . ||| 我 不 記得 了 . +I am cold . ||| 我 冷 . +Everybody knew Tom could speak French well . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +A parrot can mimic a person is voice . ||| 鸚鵡會 模仿 人 的 聲音 . +Monkeys can learn a lot of tricks . ||| 猴子 能學會 很多 把 戲 . +I am looking forward to hearing from you . ||| 我 期待 收到 您 的 來信 . +His words surprised me . ||| 他 的 話 讓 我 吃 驚 . +How interesting ! ||| 多么 有趣 啊 ! +I need a raise . ||| 我 需要 加薪 . +He is the manager of the marketing department . ||| 他 是 营销部 的 负责人 . +He is flying to Paris tomorrow . ||| 他 明天 將 飛往 巴黎 . +He never gave up hope that he would reach that goal . ||| 他 從 沒 放棄 達成 那個 目標 的 希望 . +Not everyone can be a poet . ||| 不是 每個 人 都 能 成為 詩人 . +Please answer this question for me . ||| 請 回答 我 這個 問題 . +She turned a page of her book . ||| 她 翻 了 一页 书 . +Stop staring . ||| 别 再 盯 着 了 . +Tom likes to sit on the floor . ||| 汤姆 喜欢 坐在 地上 . +Did I say something I should not have ? ||| 我 說 了 什麼 我 不 應 該 說 的 嗎 ? +He crashed his car because someone tampered with the brakes . ||| 他 撞车 是因为 有人 在 刹车 上 做 了 手脚 . +Yesterday I met Mary on the street . ||| 昨天 我 在 街上 遇見 了 瑪麗 . +I plan to buy him a pen . ||| 我 打算 給 他 買 一支 鋼筆 . +How much does a kilo of bananas cost ? ||| 一 公斤 香蕉 多少 錢 ? +Do not be afraid to make mistakes when you speak English . ||| 當 你 說 英語 的 時候 不要 怕 犯 錯 . +That coat may have cost a lot of money , but it is worth it . ||| 那 大衣 可能 花 了 很多 錢 , 但 它 值得 . +Did you see the eclipse yesterday ? ||| 你 看 了 昨天 的 月 蝕 了 嗎 ? +Water is important for people . ||| 水 對 人 是 很 重要 的 . +Could you keep this luggage until 3 p.m. ? ||| 你 可以 保管 這個 行李 直到 下午 三點 嗎 ? +He catches colds easily . ||| 他 很 容易 感冒 . +I have not seen you for a while . ||| 我 好 一陣子 沒 看到 你 了 . +Paris is one of the largest cities in the world . ||| 巴黎 是 世界 上 最大 的 城市 之一 . +I promise that I will do it . ||| 我 保证 我会 做 的 . +Tom , be careful ! ||| 汤姆 , 小心 ! +Tom has a good head on his shoulders . ||| 汤姆 脑子 好使 . +Save yourself . ||| 拯救 你 自己 . +I have two dogs . One is white and the other black . ||| 我 有 两条 狗 . 一条 是 白色 的 , 另 一条 是 黑色 的 . +They are always complaining . ||| 他們 總 是 抱怨 . +Tom learned to ride a bike when he was ten . ||| 汤姆 在 10 岁 的 时候 就学 骑 了 自行车 . +Are you ready ? ||| 你 准备 好了吗 ? +Time flies . ||| 時光 飛逝 . +She resented being called a coward . ||| 她 對 被 稱為 懦夫 很 反感 . +I wrote her a letter every day . ||| 我 一天 又 一天 地 给 她 写信 . +What are you laughing at ? ||| 在 笑 什么 呢 ? +The police accused him of murder . ||| 警方 指控 他 謀殺 . +I should have known better than to call him . ||| 早 知道 我 不 應 該 打 電話 給 他 . +Drive safely . ||| 安全 地 駕駛 . +She would often go to the theater when she was in London . ||| 她 在 伦敦 的 时候 , 曾 经常 去 剧院 . +I have to go to bed . ||| 我 该 去 睡觉 了 . +It is like looking for a needle in a haystack . ||| 这 好比 大海捞针 . +I will go to the library with you tomorrow . ||| 我 明天 要 跟 你 去 圖書館 . +There is also a park there . ||| 那里 也 有 个 公园 . +World War II ended in 1945 . ||| 第二次 世界 大戰 結束 於 1945 年 . +All of them are not present . ||| 他們 所有 的 人 都 沒有 出席 . +Please sit on the sofa and relax . ||| 請 坐在 沙發 上 放 輕 鬆 . +Can you imagine what the 21st century will be like ? ||| 你 能 想象 21 世紀 會 是 甚麼樣 嗎 ? +He did not respond to my question . ||| 他 沒有 回答 我 的 問題 . +I will call you on Monday . ||| 我 會 在 星期一 給 你 打 電話 . +Where is your house ? ||| 您 的 家 在 哪 ? +I do not want to spoil the ending for you . ||| 我 不想 把 結局 提前 透露 給 你 . +I saw a cat running after the dog . ||| 我 见 一只 猫 追 着 狗 跑 . +I must make up for the loss . ||| 我 必须 弥补 损失 . +Tom did not sound too worried . ||| 湯姆聽 起來 不 太 擔心 . +Do you have a bike ? ||| 你 有 自行 車 嗎 ? +Do not forget to sign your name . ||| 不要 忘記 簽上 你 的 名字 . +Why do you need change ? ||| 你 為 什麼 需要 零 錢 ? +She twisted her ankle while she was doing exercise . ||| 她 锻炼 时 扭伤 了 脚踝 . +I can not believe Tom is getting married . ||| 我 不能 相信 汤姆 要 结婚 了 . +I have a dictionary . ||| 我 有 一個 字典 . +I do not know any of the five ladies . ||| 这 五个 女人 我 一个 都 不 认识 . +That looks like blood . ||| 那 看起来 像 血 . +Rain prevented us from taking a walk . ||| 雨 讓 我們 沒有 辦法 去 散步 . +I really did not even notice . ||| 我 真的 根本 沒 注意 到 . +It is fun to learn slang words in foreign languages . ||| 学习外语 里 的 俚语 很 有趣 . +What are those numbers ? ||| 那些 数字 是 什么 ? +I heard someone in the crowd outside the station call my name . ||| 我 聽到 車站 外 的 人群 中 有人 在 叫 我 的 名字 . +Did you come here alone ? ||| 你 是 一个 人 来 这儿 的 吗 ? +Tom had a strange dream . ||| 汤姆 做 了 个 奇怪 的 梦 . +I fell in love with her . ||| 我 爱 上 了 她 . +Do you play any instrument other than the piano ? ||| 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +Her garden is a work of art . ||| 她 的 花园 是 一件 艺术作品 . +Let is get together again next year . ||| 讓 我們 明年 再 相聚 . +That is nonsense . Nobody but a fool would believe it . ||| 那 是 無稽之談 . 只有 傻瓜 才 會 相信 . +Where was the mistake ? ||| 錯 在 哪裡 ? +We are traveling on a tight budget . ||| 我們 很節 省地 旅行 . +I am a man . ||| 我 是 个 男人 . +I 'd like the sauce on the side . ||| 我 想要 醬料 放在 旁邊 . +Can you eat raw oysters ? ||| 你 能生 吃 牡蠣 嗎 ? +How about eating out this evening ? ||| 今天 晚上 出去 吃 怎樣 ? +Are not you coming to pick me up tomorrow morning ? ||| 你 明天 早上 不来 接 我 吗 ? +What fruit do you like the best ? ||| 你 最 喜欢 什么 水果 ? +They must be waiting for you . ||| 他們 一定 在 等 你 . +It was discovered by Tom . ||| 它 是 由 湯姆 發現 的 . +You two should get married . ||| 你们 两个 应该 结婚 . +I have a stomachache . ||| 我 胃痛 . +We try . ||| 我们 来 试试 . +How long does it take to get to the train station ? ||| 去 火车站 要 多久 ? +What is her name ? ||| 她 叫 什麼 ? +Tom says that he is willing to help . ||| 汤姆 说 他 愿意 帮忙 . +They obtained a yield of 8 percent on their investment . ||| 他們 在 這次 的 投資 中 得到 百分之八 的 收益 . +Tom fell asleep sitting up in the chair . ||| 汤姆 坐在 椅子 上 睡着 了 . +There is a telephone in the hall . ||| 在 大廳 裡 有 一支 電話 . +Where is my wife ? ||| 我 的 妻子 在 哪裡 ? +He is the tallest boy . ||| 他 是 最高 的 男生 . +That is your opinion . ||| 那 是 你 的 想法 . +Do not disturb me while I am studying . ||| 我 学习 的 时候 不要 打扰 我 . +The book was published in 1689 . ||| 这 本书 出版 于 1689 年 . +He came out from behind the curtain . ||| 他 从 窗帘 后 出来 了 . +I opened the door . ||| 我 開 了 門 . +My father made me what I am . ||| 我 父親 讓 我 知道 了 我 自己 是 誰 . +I am old enough to live by myself . ||| 我 年 紀夠 大 了 可以 自己 一個 人 住 . +Thanks for coming over tonight . ||| 謝謝 您 今晚 的 光臨 . +Tom was afraid of you . ||| 湯姆 怕 你 . +I do not want to swim . ||| 我 不想 游泳 . +I do not like homework . ||| 我 不 喜欢 作业 . +Keep going straight . ||| 繼續 直行 . +Where in Australia did you grow up ? ||| 你 在 澳洲 的 哪裡 長大 ? +Exercise is good for your health . ||| 做 运动 有利于 健康 . +The bridge is being repainted . ||| 這 座 橋 正 被 重新 油漆 . +We do not trust Tom . ||| 我们 不 相信 汤姆 . +I do not think that any more students want to come . ||| 我 觉得 不会 有 更 多 学生 想来 了 . +My house is just across the street . ||| 我 的 房子 就 在 對 街 . +The traveler was delighted at the sight of a light in the distance . ||| 发现 了 远处 的 灯光 的 旅行者 欢喜 不已 . +" What time is it ? " " It is ten @-@ thirty . " ||| " 几点 了 ? " " 10 点 半 了 . " +Are these your things ? ||| 這些 是 你 的 東西 嗎 ? +He is very good at playing baseball . ||| 他 垒球 打 得 很 好 . +My laptop crashed . ||| 我 的 笔记本电脑 发生 故障 了 . +She took care of the children . ||| 她 照顧 孩子 . +I can neither confirm nor deny that . ||| 我 即 不能 确认 也 不能 否定 . +Tom has not lost his confidence . ||| 湯姆 還 沒有 失去 信心 . +I study Korean . ||| 我 学 韩语 . +I think she will divorce him . ||| 我 想 她 會 和 他 離婚 . +You did not tell me you worked for Tom . ||| 你 沒 告訴 我 你 為 湯姆 工作 . +Imagine that you have a time machine . ||| 想象 一下 , 假如 你 有 一台 时光 机 . +You live and learn . ||| 你 一面 生活 一面 學習 . +The older we become , the worse our memory gets . ||| 我们 越 老 , 记忆力 就 越 差 . +A blast of cold air swept through the house . ||| 冷 空氣 疾風 席 捲 整 棟 房子 . +Is the post office still closed ? ||| 邮局 还 关 着 门 吗 ? +I hope to see you . ||| 我 希望 能 见到 你 . +She can speak three languages . ||| 她 會 講 三種 語言 . +He is confined to bed now . ||| 他 现在 卧床不起 . +Never give up . ||| 决不 放弃 . +It is business . ||| 公事 公辦 . +I am suffering from a bad cold . ||| 我 患上 了 重感冒 . +My father is in his room . ||| 我 父親 在 他 的 房間 裡 . +Catch him . ||| 抓住 他 . +I think it is time for me to buy a house . ||| 我 想 我 該 是 時候 買間 房子 了 . +That is my money . ||| 那 是 我 的 钱 . +Tom had to go himself . ||| 汤姆 不得不 自己 去 . +I thought you 'd be full after eating that big steak . ||| 我 觉得 吃 完 那块 大 牛排 你 就 饱 了 . +Opinion is divided on this point . ||| 在 這 一點 上意 見 不 一 . +Where did all that self @-@ confidence come from ? ||| 哪 来 那么 大 的 自信 啊 ? +Boys , do not make any noise . ||| 男孩 們 , 不要 製 造 任何 噪音 . +What is your home address ? ||| 你家 的 地址 是 什麼 ? +He studied hard in order to get into college . ||| 他 努力学习 , 为的是 能够 考上 大学 . +You should be more careful . ||| 你 應 該 要 更 小心 . +Tell Tom what you heard . ||| 把 你 听到 的 告诉 汤姆 . +What is learned in the cradle is carried to the tomb . ||| 搖籃裡學 的 帶到 墳墓 . +It was not until I had a baby myself that I knew what mother is love is . ||| 直到 我 自己 有 了 孩子 我 才 明白 了 什么 是 母爱 . +Tom has been on the wanted list for three years . ||| 汤姆 已经 上 通缉令 三年 了 . +I felt a drop of rain on my head . ||| 我 感觉 有 滴雨 落 在 头上 . +It is too noisy in here . ||| 這兒 太 吵 了 . +I am afraid I would not be very good company . ||| 我 恐怕 不是 个 很好 的 伙伴 . +He is afraid of his own shadow . ||| 他 是 个 胆小鬼 . +Do not listen to her . ||| 別 聽 她 的 . +He confused us . ||| 他 把 我們 弄 糊塗 了 . +He does not come here every day . ||| 他 不是 每 一天 都 來 這裡 . +Hug Tom . ||| 抱抱 汤姆 ! +He thinks he is so great . ||| 他 以為 自己 很 了不起 . +Is it love ? ||| 那 是 愛 嗎 ? +It is a very serious illness . ||| 这 是 很 严重 的 病 . +He took off his glasses . ||| 他 摘下 了 眼鏡 . +No one came except Tom . ||| 除了 汤姆 没有 人 来 . +You are not satisfied , are you ? ||| 你 并 不 满意 , 对 吧 ? +We met at the church . ||| 我们 在 教堂 里 遇到 . +You should go and brush your teeth . ||| 你 該 去 洗牙 了 . +He graduated from Cambridge with honors . ||| 他 以 优异 的 成绩 毕业 于 剑桥大学 . +Is someone knocking on the door ? ||| 有人 敲门 吗 ? +You sing like an angel . ||| 你 唱歌 像 天使 . +People can easily tell the difference between them . ||| 人們 可以 很 容易 地 看出 其中 的 差別 . +I tried not to cry . ||| 我 努力 忍住 哭 . +Japan is now very different from what it was twenty years ago . ||| 现在 的 日本 与 二十年 前 大不相同 . +The scenery was beautiful beyond description . ||| 這 風 景美 得 無法 形容 . +Tom should be here any minute . ||| 湯姆 應 該 隨時 就 會 到 這裡 . +He bought a Honda . ||| 他 賣 了 一台 豐田 的 車 . +We talked until two in the morning . ||| 我們 聊到 凌晨 兩點 . +I am afraid there is not any coffee left . ||| 恐怕 已經 沒有 咖啡 了 . +Do not go to extremes . ||| 别 走极端 . +When I awoke , it was snowing . ||| 當 我 醒 來 時 , 天正 下著 雪 . +What do you think of this plan ? ||| 你 覺得 這個 計畫 如何 ? +Are you guys crying ? ||| 你們 在 哭 嗎 ? +Please do not open the windows . ||| 请 不要 开窗 . +Why do you want to kill me ? ||| 你 為 什麼 想 殺 我 ? +I have always wanted to do that . ||| 我 一直 都 想 做 . +You should try this . ||| 你 应该 试试 这个 . +We know that this is impossible . ||| 我們 知道 這 是 不 可能 的 . +What is her job ? ||| 她 做 什么 工作 ? +I want to ride a horse . ||| 我 想 騎 馬 . +I could see that . ||| 我 能 看見 . +" Let is go , " he said to me . ||| " 咱們 走 吧 , " 他 對 我 說 . +He is making preparations for a trip . ||| 他 正在 籌備 一次 旅行 . +A friend of mine asked me to send her a postcard . ||| 我 的 一位 朋友 要求 我 寄 給 她 一張 明信片 . +People love to talk . ||| 人們 就是 愛 說 話 . +It sounds like a good idea . ||| 它 聽 起來 是 個 好 主意 . +He is an aggressive person . ||| 他 是 个 咄咄逼人 的 的 人 . +I could hear doors slamming . ||| 我 可以 聽見 門 砰砰 作響 . +The prisoner was given his freedom . ||| 囚犯 重獲 自由 . +I was going to work here all day . ||| 我 要 在 這裡 工作 一整天 . +I do not have a good feeling about this . ||| 我 觉得 这 没什么 好 . +I wish I had seen her . ||| 但 願 我 見 過 她 . +The doctor will be here in a minute . ||| 醫生馬 上 就 來 . +She spent the weekend by herself . ||| 她 獨 自度 過 了 週末 . +I might not see Tom today . ||| 我 今天 可能 見 不到 湯姆 了 . +We are still doing well . ||| 我们 依然 做 得 很 好 . +Can you ride a horse ? ||| 你 会 骑马 吗 ? +It is expensive to live in Japan . ||| 生活 在 日本 很 昂貴 . +There goes our bus . ||| 我们 的 车 走 了 . +The sun sets earlier in the winter . ||| 在 冬天 , 太阳 下山 比 往常 更早 . +Do you know each other ? ||| 你們 認識 嗎 ? +The boy took the radio apart . ||| 这个 男孩 把 收音机 折 散架 了 . +Do you still want to give me a hug ? ||| 你 還 想 給 我 一個 擁抱 嗎 ? +Do not ever mention that again . ||| 永远 别 再 提 它 了 . +It was difficult for him to hide his pride in his success . ||| 他 很 难 掩饰 对 自己 成功 的 骄傲 . +You have got a strong will . ||| 你 的 意志力 很 強 . +Are you lost ? ||| 你 迷路 了 吗 ? +You can tell us . ||| 你 能 告诉 我们 . +I do not have time for reading . ||| 我 没 时间 阅读 . +The man got away from the city . ||| 這 名 男子 逃離 了 這個 城市 . +OK , you two , follow me . ||| 好 , 你們 兩個 , 跟著 我 . +He helped an old lady get up from her seat . ||| 他 幫 忙 一位 老太太 從 位子 上 站 起來 . +Give Tom any help you can . ||| 给予 汤姆 一些 你 力所能及 的 帮助 . +I look after my grandfather . ||| 我 照顧 我 的 爺爺 . +He helped the lady into the car . ||| 他 幫助 這位 女士 上車 . +This is the best restaurant I know of . ||| 这 是 我 知道 的 最好 的 餐馆 . +I can not afford that . ||| 我 买不起 那个 . +I brush my teeth twice a day . ||| 我 一天 刷 兩次 牙 . +I feel sad every now and then . ||| 我 不時 地 覺得 難過 . +Here is the bill . ||| 这 是 账单 . +I generally agree with her . ||| 我 大致 上 同意 她 . +This is a new experience for Tom . ||| 这 对于 汤姆 是 新体验 . +Hold your horses , young man . ||| 握住 你 的 馬 , 年 輕 人 . +I have a boat . ||| 我 有 一艘 小船 . +Water freezes at 32 degrees Fahrenheit . ||| 水 在 華氏 32 度 結成 冰 . +I guess most of them went home . ||| 我 猜 他們 大多 數 回家 了 . +I should be happy . ||| 我 該 高興 . +He studies much harder than before . ||| 他 比 以前 学 得 更 努力 了 . +Please come over if you have time . ||| 如果 你 有 時間 的 話 , 請 過來 一趟 . +She always gets lost . ||| 她 总是 迷路 . +His speech lasted three hours . ||| 他 的 演讲 持续 了 三个 小时 . +Whether you succeed or not depends on your own efforts . ||| 你 成功 与否 取决于 你 自身 的 努力 . +Will you lend your dictionary to me ? ||| 把 你 的 字典 借 給 我 好 嗎 ? +After I talked with my teacher , I decided to work hard . ||| 跟 我 的 老師 談 過 後 , 我 決定 認真 努力 . +I would like to go to France one day . ||| 我 想 有 一天 能 去 法国 . +This stone is too heavy to lift . ||| 這塊 石頭 太重 了 無法 抬起 來 . +I am tired of eating fast food . ||| 我 受够 吃快餐 了 . +The world is full of incompetent doctors . ||| 社会 上满 是 不称职 的 医生 . +She was on the verge of crying . ||| 她 要 哭 出来 了 . +How much money do I owe you ? ||| 我 欠 你 多少 錢 ? +We met in a coffee shop near the campus . ||| 我們 在校 園 附近 的 咖啡 廳 碰面 . +We want to clear up this problem . ||| 我们 像 澄清 这个 问题 +We had a history quiz this morning . ||| 我們 今天 早上 有 歷史 小考 . +What I am saying is true . ||| 我 說 的 是 真的 . +I need a bag . Will you lend me one ? ||| 我 需要 个 包 . 你 能 借 我 一个 吗 ? +That is a little hard to believe . ||| 那 有点 难以置信 . +You should speak with Tom . ||| 你 應該 和 Tom 說 . +He may have been ill . ||| 他 可能 病 了 . +It exploded with a loud noise . ||| 它 發出 巨響 爆炸 了 . +I will ask him about it tomorrow , then . ||| 那 我 明天 会 问 他 的 . +I have known her for two years . ||| 我 认识 她 两年 了 . +I have two brothers and three sisters . ||| 我 有 两个 兄弟 和 三个 姐妹 . +He likes mathematics , but I do not . ||| 他 喜欢 数学 , 但 我 不 喜欢 . +I am sorry that I did not reply to you sooner . ||| 抱歉 , 我 沒有 早點 回覆 你 . +Mother made a doll for me . ||| 妈妈 给 我 做 了 一个 洋娃娃 . +Tom has been gone for ages . ||| 汤姆 年纪 大 去世 了 . +I drive everywhere . ||| 我 去 哪里 都 开车 . +Does he study English every day ? ||| 他 每天 研讀 英語 嗎 ? +Tom is the tallest man I know . ||| 湯姆 是 我 所 知道 的 最高 的 人 . +Water freezes at zero degrees Celsius . ||| 水 在 攝 氏 零度 時 結冰 . +Do not trust anyone here . ||| 你 在 這 別 相信 任何人 . +When did she break the window ? ||| 她 什麼 時候 打破 了 窗戶 ? +It is no use worrying about it . ||| 擔心 它 是 沒 有用 的 . +If Tom can not tell me , then no one can . ||| 如果 湯姆 不能 告訴 我 , 就 沒 人 能 了 . +A female friend of mine loves to go to gay bars with me . ||| 我 的 一个 女性朋友 喜欢 跟 我 一起 去 同志 酒吧 . +No one supported his motion . ||| 沒人 支持 他 的 動議 . +Tom understands what it takes to survive . ||| 汤姆 明白 生存 的 代价 . +We must intervene . ||| 我们 必须 介入 . +The two men were business partners . ||| 这 两个 男人 是 生意 上 的 合作伙伴 . +Tom is absent . ||| 湯姆 缺席 . +How should I know ? ||| 我 怎麼 知道 ? +Would you like to wait ? ||| 你 愿意 等 吗 ? +Tom began laughing . ||| 湯姆 開始 笑 了 . +As soon as she heard the bell ring , she answered the telephone . ||| 她 一 聽到 鈴響 , 就 接 了 電話 . +How much is it ? ||| 多少 錢 ? +Tom loves dogs . ||| 汤姆 喜欢 狗 . +He still has not answered my letter . ||| 他 还 没回 我 的 信 . +We have got to do something about this problem soon . ||| 我们 要 快点 处理 这 问题 . +Are you a doctor ? ||| 你 是 医生 吗 ? +The risk is too great . ||| 风险 太大 . +Cookie is mother died of cancer . ||| Cookie 的 母親 死 於 癌症 . +She sang better than him . ||| 她 唱 得 比 他 好 . +Do not ask Tom any questions about his job . ||| 别 问 汤姆 他 的 工作 的 问题 . +No one had anything left to say . ||| 沒 有人 有 話 可 說 . +She hugged him . ||| 她 抱 了 他 . +He comes back from Sydney today . ||| 他 今天 從 雪梨 回來 . +Mary came on her own . ||| Mary 自己 一個 人 來 . +We have a big supermarket . ||| 我們 有 一個 大 超市 . +I go to the country every summer . ||| 我 每年 夏天 都 去 鄉 下 . +I am staying at the Hilton Hotel . ||| 我 留在 希尔顿 宾馆 . +Tom lost his job . ||| 湯姆 丟了 工作 . +Tom is three years younger than Mary . ||| 汤姆 比 玛丽 小 三岁 . +Leaving something unfinished is the worst thing you can do . ||| 半途而废 是 你 所 能 做 的 最 糟糕 的 事情 . +Do not be sad . ||| 别 伤心 . +There is a possibility you will have to do that . ||| 你 有 可能 不得不 那么 做 . +Do you know if she can speak English ? ||| 你 知道 她 会 说 英语 吗 ? +It is really time for us to go . ||| 这 真是 我们 该 走 的 时候 了 . +I think this coat should fit you . ||| 我 认为 这 外套 应该 适合 你 . +You are always watching TV . ||| 你 總是 在 看電視 . +Can you give me a ride to the office on Wednesday ? ||| 周三 你 可以 载 我 到 办公室 吗 ? +More money for education will spur economic growth . ||| 更多 投資 在 教育 的 錢 將 會 刺激 經濟 成長 . +What do you usually do with your friends ? ||| 你 一般 和 朋友 一起 做 什麼 ? +Tom shot himself in the head . ||| 汤姆 拿 枪 射 自己 的 头 . +She might come . ||| 她 也許 會 來 . +Scientists can easily compute the distance between planets . ||| 科學家 們 可以 很 容易 地計 算出 行星 之間 的 距離 . +Do not ask me what it was . ||| 别 问 我 这 是 什么 东西 ! +She called up her mother on the phone . ||| 她 给 她 妈妈 打电话 . +Have fun . ||| 玩 得 開心 . +It is almost time for the train to arrive . ||| 現在 差不多 是 火車 要到 的 時間 . +She got a new CD player yesterday . ||| 她 昨天 得到 了 一個 新 的 CD 播放 機 . +It is so secret that even I do not know what it is all about . ||| 这 太 秘密 了 , 连 我 都 不 知道 它 是 关于 什么 的 . +There is no membership fee for joining . ||| 參加 不用 會員費 . +Some people like red wine and some people like white wine . ||| 有人 喜歡 紅酒 , 有人 喜歡 白酒 . +She likes to listen to music . ||| 她 喜欢 听 音乐 . +You are free to do as you please with your money . ||| 你 可以 隨 你 高興 的 用 你 的 錢 . +You can buy stamps at any post office . ||| 你 在 任何 一家 邮局 都 能 买到 邮票 . +Good luck on your test . ||| 考试 加油 ! +I wrote down the address for you . ||| 我 給 你 寫下 了 地址 . +I am not used to spicy food . ||| 我 不習 慣 辛辣 的 食物 . +You may choose what you like . ||| 你 可以 選擇 你 喜歡 的 . +How many books are on the shelf ? ||| 櫃子 上 有 幾本 書 ? +She glanced shyly at the young man . ||| 她 羞怯 地 看 了 一眼 那個 年 輕 人 . +The boy has an apple in his pocket . ||| 这 男孩 的 口袋 里 有个 苹果 . +Are you sad ? ||| 你 在 难过 吗 ? +Her argument was not based on facts . ||| 她 的 观点 没有 基于 事实 . +I am not feeling well . ||| 我 身体 不适 . +Do you still love Tom ? ||| 你 依然 爱 汤姆 吗 ? +I think your basic theory is wrong . ||| 我 認為 你 的 基本 理論 是 錯 的 . +Tom and Mary went camping in the mountains . ||| 湯姆 和 瑪麗 去 山裡 露營 . +They nominated Calvin Coolidge for vice president . ||| 他们 提名 卡尔文 • 柯立芝 为 副 总统 . +My fountain pen is new . ||| 我 的 钢笔 是 新 的 . +That is all I could find . ||| 那 是 我 所有 能 找到 的 . +I do not need anybody . ||| 我 谁 也 不 需要 . +I am just looking . ||| 我 只是 隨便 看看 . +Whose idea was it ? ||| 这 是 谁 的 主意 ? +I would like to see you tomorrow . ||| 明天 我 想见 你 . +It is okay to take it easy sometimes . ||| 有時 可以 放 輕 鬆 一下 . +Tom comes here three or four times a month . ||| 汤姆 一个月 来 这里 三四次 . +We have to go by the rules . ||| 我们 必须 遵守规则 . +There was not any furniture in that room . ||| 那個 房間 裡 沒有 任何 傢 俱 . +He is three inches taller than I am . ||| 他 比 我 高三 英寸 . +Who can do this work ? ||| 谁 能 做 这件 工作 ? +Tom declined to give details . ||| 汤姆 拒绝 提供 详细信息 . +If we do not keep walking we will be late . ||| 再 不 走 就 迟到 了 . +Apparently , there is nothing that cannot happen today . ||| 显然 , 今天 什么 事 都 有 可能 发生 . +I want to meet your older sister . ||| 我 想 認識 你 姐姐 . +Please stay here till I get back . ||| 請待 在 這裡 直到 我 回來 . +Everybody knew that Tom could speak French well . ||| 每个 人 都 知道 汤姆 的 法语 很 好 . +He told the students to be quiet . ||| 他 告訴 了 學生 要 安靜 . +How heavy is your suitcase ? ||| 您 的 行李箱 有 多重 ? +We should do our best . ||| 我们 应该 做到 最好 . +This book is new . ||| 这 本书 是 新 的 . +Japan is confronted with severe economic problems . ||| 日本 正面 臨著 嚴重 的 經濟 問題 . +Do not you agree ? ||| 您 不 同意 吗 ? +I do not know how to use it . ||| 我 不 知道 如何 使用 它 . +What do you think I was doing ? ||| 你 觉得 我 在 干吗 呢 ? +A drunken man was sleeping on the bench . ||| 一個 醉 了 的 男人 在 長椅 上 睡觉 . +I am really cold . ||| 我 真的 冷 . +I like the way she laughs at my jokes . ||| 我 喜欢 她 因 我 的 笑话 而 欢笑 的 样子 . +He was forced to sign the document . ||| 他 被迫 在 文件 上 簽字 . +I could not understand his ideas . ||| 我 無法 理解 他 的 想法 . +I wrote it myself . ||| 我 自己 写 了 它 . +Are not you Tom ? ||| 你 不是 湯姆 嗎 ? +You may not come in . ||| 你 不能 進來 . +We need competent leaders . ||| 我们 需要 称职 的 领导人 . +The tie does not go with my suit . ||| 领带 和 我 的 西装 不配 . +There were a lot of people at the concert . ||| 音乐会 上 有 很多 人 . +The plan was executed . ||| 计划 被 执行 了 . +You should know better than to ask a lady her age . ||| 你 應該 知道 不要 問 小姐 的 年齡 . +The students are all at their desks now . ||| 学生 们 现在 都 坐在 桌前 . +We enjoyed watching the TV . ||| 我們 喜歡 看電視 . +Do you need this book ? ||| 你 需要 这 本书 吗 ? +Even when I was a child , I was able to swim well . ||| 我 很小 的 时候 就 游 得 很 好 了 . +There is a telephone in the hall . ||| 走廊 裡 有 一部 電話 . +The prisoner was behind bars for two months . ||| 那個 囚犯 在 牢 裡 待 了 兩個 月 . +I seem to have a fever . ||| 我 好像 发烧 了 . +Are you sure you know how to do this ? ||| 你 真的 知道 这个 怎么 做 吗 ? +The sum of 5 and 3 is 8 . ||| 五 和 三 的 總 和 是 八 . +You look just like your mother . ||| 你 看 起來 就 像 你 的 母親 . +She found her purse under the desk . ||| 她 發現 她 的 錢 包在 桌子 底下 . +Tom never did what we asked him to do . ||| 我们 叫 汤姆 做 什么 , 他 从来不 做 . +I could not understand anything that he said . ||| 我 不 了解 他 所 說 的 事情 . +It depends on the context . ||| 这 要 看 情况 . +She gave me a smile of recognition . ||| 她 給 了 我 一個 認可 的 微笑 . +Do you have other family ? ||| 你 有 其他 家人 吗 ? +That was not my intention . ||| 那 不是 我 故意 的 . +I have a brother in Boston . ||| 我 有个 在 波士顿 的 兄弟 . +What you said is baloney . ||| 你 说 的 东西 是 胡扯 . +Humor me . ||| 你 就 随 了 我 的 意吧 . +I miss her so much . ||| 我 那么 想念 她 . +Most boys like baseball . ||| 大部分 男生 喜欢 棒球 . +The old man passed away this morning . ||| 老 男人 今天 早上 去世 了 . +I do not work like that . ||| 我 不 像 那樣 工作 . +Can I have something to eat ? ||| 我 能 些 吃 的 東西 嗎 ? +This could be fun . ||| 這 可能 很 好玩 . +The address on this parcel is wrong . ||| 這個 包裹 上 的 地址 是 錯 的 . +We have your size , but not in that color . ||| 我们 有 你 的 尺寸 , 但是 没有 那个 颜色 . +The big tree was struck by lightning . ||| 這 棵 大樹 遭到 雷擊 . +I discovered the truth . ||| 我 發現 了 真相 . +I wonder if Tom likes me . ||| 我 不 知道 湯姆 是否 喜歡 我 . +Tom goes to work by motorcycle . ||| 湯姆騎 摩托 車 上班 . +He got into this school in September last year . ||| 他 去年 九月 进 了 这 所 学校 . +Are not you cold ? ||| 你 不 冷 吗 ? +Why me ? ||| 为什么 是 我 ? +I have been requested to help you . ||| 有人 请 我 帮 你 . +The birds were flying in a group . ||| 鸟儿 成群 飞 着 . +She is fond of singing old songs . ||| 她 喜歡 唱 老歌 . +I do not think I have ever made any serious mistakes . ||| 我 认为 我 没犯 任何 严重 的 错误 . +I generally walk to school . ||| 一般 我 步行 去 学校 . +Tom pretty much forgot about the meeting . ||| 汤姆 差不多 忘 了 开会 的 事儿 . +I saw what Tom did . ||| 我 看到 湯姆 做 什麼 了 . +Let is all pray together . ||| 大家 来 一起 祈祷 吧 . +Please make yourself at home . ||| 請 不要 客氣 . +He was happy at the news of her success . ||| 听到 她 成功 的 消息 , 他 很 高兴 . +I should have taken the money . ||| 我 應 該 拿 那些 錢 的 . +It is very easy to learn how to swim . ||| 学 游泳 非常简单 . +Outside the school , she saw people with no homes living in cardboard boxes . ||| 在 校外 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +Buy milk on your way home . ||| 回来 的 路上 买点 牛奶 . +Everyone is tired of hearing that story . ||| 每个 人 都 听腻 了 那个 故事 . +Do you understand French ? ||| 你 會 法語 ? +I love my life . ||| 我 爱 我 的 生命 . +He runs a supermarket in the town . ||| 他 在 這個 鎮 上 經營 一家 超級 市場 . +There were two cakes . ||| 那 有 两块 蛋糕 . +Maybe I will go , and maybe I will not . ||| 也許 我 會 去 , 也許 我 不 會 . +You may use my dictionary . ||| 你 可以 用 我 的 字典 . +He did all he could to protect his son . ||| 他 做 了 一切 能 做 的 去 保護 他 的 兒子 . +Will six o 'clock suit you ? ||| 六点 您 行 吗 ? +I have never climbed Mt . Fuji . ||| 我 從來 沒有 爬 過 富士山 . +Close the door when you leave . ||| 出去 的 时候 把门 关上 . +Does Tom speak French better than Mary ? ||| 湯姆 說 法語 比瑪麗 好 嗎 ? +I wonder why I should not do that . ||| 我 纳闷 我 为什么 不该 那样 做 +I do not know the meaning of this word . ||| 我 不 知道 这个 词 的 意思 . +Do you have a pen on you ? ||| 你 身上 有 铅笔 吗 ? +Were you in America last month ? ||| 你 上 個 月 在 美國 嗎 ? +I have not heard that she will come . ||| 我 沒 聽 說 她 會 來 . +What a strong wind ! ||| 多麼 強 的 風 啊 ! +It is a pity that you could not come . ||| 很 遺憾 你 不能 來 . +Tom snickered at Mary . ||| 汤姆 暗中 笑 玛丽 . +This will not help you . ||| 這 幫 不了 你 . +Why did you come home so late ? ||| 你 為 什麼 這麼 晚 回家 ? +Tom wasted time . ||| 湯姆浪 費 時間 . +I do not play the piano . ||| 我 不彈 鋼琴 . +Neither Tom nor Mary has found anything valuable . ||| 汤姆 和玛丽 都 没有 发现 什么 有 价值 的 东西 +Let is go indoors . ||| 我們 進屋 吧 . +I was mistaken for a salesman . ||| 我 被 誤 認為 是 推 銷員 . +Keep the window closed . ||| 让 窗子 关着 . +Why are you still at school ? ||| 你 为什么 还 在 学校 ? +I need to ask you a silly question . ||| 我 必须 问 你 一个 蠢 问题 . +I am a professional photographer . ||| 我 是 專業 攝影師 . +I studied around the clock . ||| 我 夜以繼日 地 讀 書 . +Do you often have fish for dinner ? ||| 你 常常 晚餐 吃 魚 嗎 ? +Today is Saturday and tomorrow is Sunday . ||| 今天 是 周六 , 明天 是 周日 . +Part of his story is true . ||| 他 的 故事 一部分 是 真的 . +Is there someone who could help me ? ||| 有 誰 可以 幫 我 嗎 ? +I have a shower every night . ||| 我 每晚 洗澡 . +I do not have the time or the money . ||| 我 沒有 時間 , 也 沒有 錢 . +We did it ourselves . ||| 我们 自己 做 的 . +You can stay here till the snow stops . ||| 你 可以 在 這裡 等到 雪 停 . +Did you hear what I said ? ||| 你 聽 見 我 說 的 了 嗎 ? +Tom is afraid of everyone . ||| 湯姆 害怕 每個 人 . +I just thought I should double check . ||| 我 只 覺得 我 應 該 再 檢查 一遍 . +May I come and see you now ? ||| 我 現在 可以 來 看看 你 嗎 ? +Have you ever dyed your hair ? ||| 你 染 過 頭 髮 嗎 ? +She cried all night . ||| 她 一 整晚 都 在 哭 . +Why are you crying ? ||| 你 為 什麼 哭 ? +I like mathematics . ||| 我 喜欢 数学 . +Did you visit the Tower of London ? ||| 你 參觀 倫敦 塔 了 嗎 ? +My computer is acting strange . ||| 我 的 电脑 好 诡异 . +According to the guidebook , this is the best restaurant around here . ||| 根據 指南 , 這 是 這 附近 最好 的 餐館 . +What do you think Tom is waist size is ? ||| 你 认为 汤姆 的 腰围 是 多少 ? +Tom put some salt on his eggs . ||| 湯姆 在 他 的 蛋 上 撒 鹽 . +An honest man never steals money . ||| 誠實 的 人 從 不 偷 錢 . +They are still in Boston . ||| 他們 還 在 波士 頓 . +Do you know the difference between a microscope and a telescope ? ||| 你 知道 显微镜 和 望远镜 的 差别 吗 ? +Eat a live frog every morning , and nothing worse will happen to you the rest of the day . ||| 每天 早上 吃一 隻 活 青蛙 , 那麼 你 一天 中 其他 的 時間 就 不 會 發生 什麼 更 糟糕 的 事 了 . +I did not catch what he said . ||| 我 没 听懂 他 说 的话 . +You look like a monkey . ||| 你 看着 像 猴 . +I have lost my watch . ||| 我 把 我 的 表 丢 了 . +It is rude to stare at strangers . ||| 盯著 陌生人 看 是 不 禮貌 的 . +It is especially hot today . ||| 今天 特別 熱 . +They went to America last month . ||| 他們 上 個 月 去 美國 . +As far as I know , he did nothing wrong . ||| 据我所知 , 他 没 做 错 任何 事 . +I love apple juice . ||| 我 愛 蘋 果汁 . +I do not mind walking in the rain . ||| 我 不介意 在 雨 中 漫步 . +I can not forget what happened that day . ||| 我 无法 忘记 那天 发生 了 什么 . +You are very alert . ||| 你 真是 警惕 . +He is a liar . ||| 他 是 個 騙子 . +I am not used to walking long distances . ||| 我 不習 慣 走 很 長 的 路 . +Get on the horse . ||| 上马 . +I do not feel like eating anything today . ||| 我 今天 不想 吃 东西 . +Tom has three cats . ||| Tom 有三 隻 貓 . +Can you pass me the salt , please ? ||| 請 你 把 鹽 遞 給 我 好 嗎 ? +Stop joking around . ||| 不要 隨便 開 玩笑 . +I do not want Tom to do that alone . ||| 我 不想 讓 湯姆 自己 做 . +Tom is out cold . ||| 汤姆 正 昏迷不醒 . +When will you be free ? ||| 你 什麼 時候 有空 ? +You should do the honorable thing and resign . ||| 你 應該 光榮 地 辭職 . +Do not you agree ? ||| 你 不 同意 吗 ? +Leave my car alone . ||| 不要 碰 我 的 車 . +I would like to see him tomorrow afternoon . ||| 我 想 明天 下午 見 他 . +Her skin is smooth . ||| 她 的 皮膚 光滑 . +I will write to you soon . ||| 我 會 盡快 寫信 給 你 . +Is there enough food for everyone ? ||| 有 足夠 的 食物 給 大家 嗎 ? +Tom did not think that anybody would recognize Mary . ||| 汤姆 不 认为 有人 会 认出 玛丽 . +When we are told not to come , we become all the more eager to go . ||| 让 我们 别 来 , 我们 就 更 想来 了 . +This room is cleaned by Tom . ||| 這 房間 是 由 湯姆清 掃 的 . +I can speak Chinese , but I can not read it . ||| 我 會 說 中文 , 但是 我 不 會 讀 中文 . +It is as smooth as a baby is bottom . ||| 它 像 婴儿 的 屁股 一样 光滑 . +Which one are you referring to ? ||| 你 指 的 是 哪个 ? +He is bound to forget . ||| 他 准会 忘 . +She gives me a nasty look every time she sees me . ||| 她 每次 看見 我 都 給 露出 厭惡 的 眼神 . +I am very interested in jazz . ||| 我 對 爵士 樂 很 有 興趣 . +I do not think Tom will like this place . ||| 我 不 认为 汤姆 喜欢 这个 地方 . +She did not feel like eating lunch . ||| 她 不想 吃 午 飯 . +Is she a taxi driver ? ||| 她 是 出租车 司机 吗 ? +Drivers should wear seat belts . ||| 司機 應該 繫 安全 帶 . +He changed his mind . ||| 他 改变 想法 了 . +China is twenty times as large as Japan . ||| 中国 是 日本 的 20 倍 大 . +There was a car accident yesterday . ||| 昨天 發生 了 一場 車禍 . +I know the boy standing over there . ||| 我 知道 站 在 那裡 的 那個 男孩 . +The television does not work . ||| 电视机 坏 了 . +How did your weekend go ? ||| 你 的 周末 是 怎么 过 的 ? +Everybody is laughing . ||| 每個 人 都 在 笑 . +You are such a jerk . ||| 你 真是 個 傻子 . +She is giving the baby a bath . ||| 她 正在 給 嬰兒 洗澡 . +He is a big boy . ||| 他 是 個 大 男孩 . +Life is full of ups and downs . ||| 人生 充滿 了 高低 起伏 . +I am not always free on Sundays . ||| 我 星期日 並 不 總是 有空 . +This is not a tiger . ||| 这 不是 老虎 . +The policeman aimed his gun at the man . ||| 警察 瞄准 了 那个 男人 . +Are you here to see Tom ? ||| 你 是 來 見 湯姆 的 嗎 ? +Let is go home . ||| 让 我们 回家吧 . +Mary wanted to marry a man with ambition . ||| 以前 , 玛丽 想 和 一位 有 雄心壮志 的 男人 结婚 . +Someone stole my laptop computer . ||| 有人 把 我 的 筆記本 電腦 偷掉 了 . +Are you feeling under the weather ? ||| 你 感觉 不 舒服 吗 ? +Do not be fooled . ||| 別 被 騙 了 . +It looks as if it is going to rain . ||| 天 看起来 要 下雨 了 . +I am a little bit concerned . ||| 我 有点 担心 . +Why do not you hug me ? ||| 你 為 甚麼 不 抱 我 ? +There is something wrong with my car . ||| 我 的 車子 有 問題 . +There is no chance of rain today . ||| 今天 不 可能 下雨 . +I can read German , but I can not speak it . ||| 我 能 看 德语 , 但是 不能 说 . +There is a hole in this bucket . ||| 這個 桶子 上 有 個 洞 . +The strike affected the nation is economy . ||| 罢工 妨碍 了 国家 经济 . +Why did you marry Tom ? ||| 你 為 甚麼 跟 湯姆 結婚 ? +He is always at home on Mondays . ||| 他 星期一 總是 在家 . +He had barely enough to eat . ||| 他 仅 有够 糊口 的 吃 的 . +It is likely to snow this evening . ||| 今天 晚上 可能 會 下雪 . +I booked a seat . ||| 我 訂 了 一個 位子 . +Please move your bicycle out of here . ||| 請 將 您 的 自行 車 移出 這裡 . +She handed him the key . ||| 她 遞給 了 他 鑰匙 . +Something has happened to my car . ||| 我 的 车 出 了 点 事 . +You do not need a gun . ||| 你 不 需要 枪 . +That is what Tom promised . ||| 那 是 汤姆 承诺 的 . +The train was delayed because of heavy snowfall . ||| 火车 因 大雪 被 耽搁 了 . +Travel agencies ' profits soared . ||| 旅行社 的 利润 猛涨 . +It belongs to my brother . ||| 它 屬 於 我 兄弟 . +My brother is a college student . ||| 我 哥哥 是 個 大學 生 . +He likes taking a walk by himself . ||| 他 喜欢 独自 散步 . +President Lincoln accepted the invitation . ||| 林肯 总统 接受 了 邀请 . +I am sorry my pronunciation is not very good . ||| 不好意思 我 发音 不太好 . +English is studied in Japan . ||| 英語 在 日本 被 學習 . +We made every effort to help him . ||| 我們 盡 了 一切 努力 來 幫助 他 . +We surrender . ||| 我們 投降 . +I always feel blue on Mondays . ||| 我 每個 星期一 都 覺 得 很 憂鬱 . +The police did not find any clues . ||| 警方 沒有 發現 任何 線索 . +I like your room . ||| 我 喜欢 你 的 房间 . +I finished reading the book last night . ||| 我 昨晚 看完 了 這 本書 . +We did not bring it back . ||| 我们 没 把 它 带 回来 . +Tom promised that he 'd come , but he did not . ||| 湯姆 答應 他 會 來 , 但 他 沒來 . +I always have to wear a tie because of my job . ||| 因為 我 這份 工作 的 緣故 , 我 總是 要 打 領帶 . +Have you heard from him ? ||| 你 收到 他 的 音訊 了 嗎 ? +She is about the same age as I am . ||| 她 大約 跟 我 同年 紀 . +I returned the books I borrowed from the library , and I borrowed some new ones . ||| 我 还 了 从 图书馆 借 的 书 , 又 借 了 些 新 的 . +Thank you for telling me the truth . ||| 謝謝 你 告訴 我 真相 . +He went to Italy for the purpose of studying music . ||| 他 去 義 大利 的 目的 是 學習 音樂 . +How long do you plan to stay ? ||| 你 准备 待 多久 ? +Tom came up with an answer to our problem . ||| 汤姆 给 我们 的 问题 想出 了 个 答案 . +He will be coming to the party . ||| 他 會 來 參加 派 對 . +I have not yet finished my supper . ||| 我 還 沒 吃 完 晚 飯 . +How about you ? ||| 您 呢 ? +I went for a walk in the park . ||| 我 去 公园 散 了 步 . +I could not answer all the questions . ||| 我 无法回答 所有 问题 . +I can not make out what he wants . ||| 我 不 明白 他 想要 什么 . +Are you mad ? ||| 你 生气 了 吗 ? +Our school is across the river . ||| 我們 學校 在 河 的 對面 . +He pushed the emergency button . ||| 他 按 下 了 緊急 按 鈕 . +I am the laziest person I know . ||| 我 是 据我所知 最懒 的 人 . +I forgot what his name was . ||| 我 忘记 他 叫 什么 名字 了 . +He does not live there anymore . ||| 他 不再 住 在 這裡 了 . +This house is mine . ||| 這 房子 是 我 的 . +Please give me a glass of milk . ||| 請 給 我 一杯 牛奶 . +I am very , very sorry . ||| 我 非常 , 非常 抱歉 . +You need to let me handle this . ||| 你 要 让 我 来 解决 . +He changed schools last year . ||| 去年 他 换 了 学校 . +These two words are easily confused . ||| 这 两个 词 容易 混淆 . +Lunch is ready . ||| 午餐 好 了 . +Tom does not know who he can trust anymore . ||| 湯姆 不 知道 他 還 能 再 信任 誰 . +What is your phone number ? ||| 你 电话号码 是 多少 ? +I will be back in a jiffy . ||| 我 马上 就 回来 . +It is an advantage to be able to use a computer . ||| 會 用 電腦 是 一個 好 處 . +Tom is crying , too . ||| 湯姆 也 在 哭 . +Where is the phone book ? ||| 电话簿 在 哪里 ? +She is been absent from school for five days . ||| 她 已经 五天 不 上学 了 . +I wonder if I can do it again . ||| 我 不 知道 我 能 不能 再 做 一次 . +May I have the check , please ? ||| 請 把 帳單 給 我 好 嗎 ? +Our math teacher drew a circle on the blackboard . ||| 我们 的 数学老师 在 黑板 上 画 了 一个 圆 . +It is already 11 . ||| 已经 是 11 点 了 . +We are on the third floor . ||| 我们 在 三 楼 . +I gave Tom a going @-@ away present . ||| 我 送给 汤姆 一份 临别 礼物 +We have a door between our offices . ||| 我們 的 辦 公室 之間 有 扇 門 . +I can not believe you bought this . ||| 我 不信 你 買 了 這個 東西 . +Smoke appeared . ||| 烟雾 出现 了 . +I competed with him for the championship . ||| 我 和 他 競爭 冠軍 . +I am always forgetting people is names . ||| 我 總是 忘記 別人 的 名字 . +Drop the knife ! ||| 把 刀 放下 ! +He came back from America . ||| 他 從 美國 回來 了 . +I had an accident at work . ||| 我 出 了 工伤 . +His bicycle is blue . ||| 他 的 自行车 是 蓝色 的 . +We have to think about it . ||| 我們 必須 考慮 它 . +I do not like the food at that deli . ||| 我 不 喜欢 那 家 熟食店 里 的 食物 . +I never thought that would happen . ||| 我 从来 没想到 会 发生 那种 事 . +He was severe with his children . ||| 他 对 自己 的 孩子 很 严格 . +Make it smaller . ||| 把 它 弄 小 一點 . +I wonder what else Tom wants . ||| 我 想 知道 汤姆 还要 别的 什么 . +Be careful not to drive the wrong way on a one @-@ way street . ||| 小心 不要 在 单行道 逆向行驶 . +How do you pronounce this word ? ||| 这个 词 怎么 发音 ? +I find it difficult to express my meaning in words . ||| 我 覺 得 很 難用言語 表達 我 的 意思 . +I like my coffee without sugar . ||| 我 喜欢 喝咖啡 不 加糖 . +Pizza is the kind of food that fits into today is life style . ||| 比萨 是 种 适合 现在 的 生活 方式 的 食物 . +I heard the song sung in French . ||| 我 听 过 这 首歌 的 法语 版 . +" Did you watch TV last week ? " " No , I did not . " ||| “ 上周 你 看电视 了 吗 ? ” “ 没有 , 我 没 看 . ” +They like to sing . ||| 他们 都 喜欢 唱歌 . +I am not as optimistic as you are . ||| 我 不 像 你 那么 乐观 . +France is running a welfare state it can no longer afford . ||| 法國 是 一個 福利 國家 , 但 它 卻 不再 能夠 負擔 得起 了 . +The baby smiled at me . ||| 宝宝 对 我 笑 了 . +You must pay in advance . ||| 您 必须 预先 付钱 . +The man you saw yesterday was my uncle . ||| 你 昨天 看到 的 那个 男人 是 我 叔叔 . +Calm down . ||| 冷静 点 . +You ought not to make fun of them . ||| 你 别 嘲弄 他们 . +We can begin . ||| 我們 能 開始 . +I like dragon fruit . ||| 我 喜欢 火龙果 . +Is that for sale ? ||| 这个 卖 不卖 ? +Why do people not always tell the truth ? ||| 为什么 人们 不 总是 讲 真话 ? +I will do the shopping for her birthday . ||| 我 要 去 给 她 生日 买点 东西 . +What do you want me to do ? ||| 你 要 我 做 什麼 ? +He broke the window on purpose . ||| 他 故意 打破 了 窗戶 . +Their losses reached one million yen . ||| 他們 的 損失 到 達 了 一百 萬日 圓 . +Do you take part in any community activities ? ||| 你 参加 社团活动 吗 ? +I do not know where Tom was going . ||| 我 不 知道 汤姆 往 哪 去 了 . +How did you accomplish this ? ||| 你 怎么 完成 的 ? +Those flowers have died . ||| 那些 花 已經 枯死 了 . +How is your project coming along ? ||| 你 的 项目 进展 得 怎么样 ? +Who can tell the difference ? ||| 谁 能 说 清 不同点 ? +There is the train at 10 o 'clock . ||| 十點鐘 有 一班 火車 . +My head hurts . ||| 我 头痛 . +She boiled the eggs . ||| 她 煮 了 蛋 . +He lied to us . ||| 他 欺騙 了 我們 . +Ebola is one of the most virulent viruses known to man . ||| 埃 博拉 是 人类 已知 的 最 致命 的 病毒 之一 . +She was wearing dark brown shoes . ||| 她 穿著 深褐色 的 鞋子 . +Do you understand what I am saying ? ||| 你 明白 我 的 意思 嗎 ? +Tom runs faster than me . ||| 汤姆 跑 得 比 我 快 . +Where else should we go ? ||| 我们 要 去 其他 的 什么 地方 ? +I am sorry to hear it . ||| 我 听 了 感到 抱歉 . +He is three years older than me . ||| 他 比 我 大三 歲 . +Friends are like flowers in the garden of life . ||| 朋友 就 像 生命 之 园里 的 花朵 . +What time is the next performance ? ||| 下 一場 表演 在 幾點鐘 ? +I felt something moving on my back . ||| 我 感到 背上 有 东西 动 . +I do not want to fail my exams . ||| 我 不想 落榜 . +What a surprise ! ||| 太 惊喜 了 ! +I thought I had all the answers . ||| 我 認為 我 有 所有 的 答案 . +We got lost in the snow . ||| 我們 在 雪地 裡 迷了路 . +" The good die young " is an old saying which may or may not be true . ||| “ 好人 不 长命 ” 是 句 或 真 或 假 的 老话 . +Your time is up . ||| 你 的 時間 到 了 . +She accused me of being a liar . ||| 她 罵 我 是 個 騙子 . +He still has not responded to my letter . ||| 他 还 没回 我 的 信 . +My father goes to church on Sunday . ||| 我 爸爸 週日 上 教堂 . +Something strange is happening . ||| 正 有 什么 奇怪 的 事情 发生 着 . +They wanted to know where Tom was . ||| 他們 想 知道 湯姆 在 哪 . +I lost my wallet . ||| 我 掉 了 我 的 钱包 . +Our children like dogs , but I prefer cats . ||| 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +Where is the tourist information office ? ||| 遊客 諮詢 處 在 哪裡 ? +He often walks to school . ||| 他 常常 走路 去 學校 . +His mother sat up all night waiting for her son . ||| 他 的 妈妈 坐 了 一整夜 , 等 她 的 儿子 . +She is busy now and can not talk with you . ||| 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Do I know you ? ||| 我 认识 你 吗 ? +Tom has a lot to think about . ||| 汤姆 要 考虑 很多 . +They are kids . ||| 她们 是 孩子 . +I can not believe Tom kissed me . ||| 我 不敢相信 汤姆 亲 了 我 . +He left in the blink of an eye . ||| 他 一转眼 就 跑 了 . +I cannot agree with you on the matter . ||| 在 这件 事 上 , 我 无法 赞同 你 . +How will the weather be tomorrow ? ||| 明天 天氣 怎麼樣 ? +I hope Tom is predictions are wrong . ||| 我 希望 汤姆 的 预测 是 错 的 . +Stop looking for problems , Tom . ||| 别 找事 , 汤姆 . +It is difficult for me to understand French when it is spoken quickly . ||| 法语 说 得 快 , 我 就 难以 理解 . +What would you say to Tom ? ||| 你 要 对 汤姆 说 些 什么 ? +I will be able to assist you . ||| 我 能 協助 你 . +Leave the book where it was . ||| 把 书 放在 原处 . +I have difficulty in Japanese . ||| 我 学 日 語 有 困難 . +I am a Japanese high school girl . ||| 我 是 一個 日本 的 高中女生 . +The French lost the battle of Waterloo . ||| 法國 人 在 滑鐵盧 之 役 吃 了 敗仗 . +I know that you think I am crazy . ||| 我 知道 你 覺得 我 瘋 了 . +He hid it behind the door . ||| 他 把 它 藏在 了 门 后 . +He has a test next week . ||| 他 下禮 拜要 考試 . +Where is the stage door ? ||| 请问 剧场 后门 在 哪 ? +I am familiar with this subject . ||| 我 熟悉 這個 主題 . +I want a lot more . ||| 我 要 多 很多 . +His death was a great loss to our firm . ||| 他 的 死 对 我们 公司 是 一个 巨大 的 损失 . +The teacher granted me permission to go home early . ||| 老師 允許 我 提前 回家 . +What have you done with my bag ? ||| 你 用 我 的 袋子 做 了 什麼 ? +She got sick this weekend . ||| 她 周末 病倒 了 . +I bought a pen , but I lost it . ||| 我 买 了 一支 钢笔 , 但 我 把 它 丢 了 . +Do you think I am crazy ? ||| 你 认为 我 疯 了 吗 ? +A thousand yen will do . ||| 1000 日元 足够 了 . +I can not agree with you . ||| 我 无法 同意 你 的 意见 . +He will do whatever you ask him to . ||| 他 會 做 任何 你 要求 他 做 的 事 . +I know I owe you money . ||| 我 知道 我 欠 你 錢 . +Can you help me ? ||| 你 能 幫 我 嗎 ? +If it rains tomorrow , we will stay at home . ||| 如果 明天 下雨 , 我们 就 呆 在家 . +You have to work hard . ||| 你 必须 努力 工作 . +Tom checked the TV schedule to see what was on . ||| 汤姆 检查 电视 时间表 , 看看 在 上映 什么 . +Let is sit on the grass . ||| 我们 坐在 草地 上 吧 . +I wish you 'd slow down . ||| 我 希望 你 慢下 來 . +What is in the closet ? ||| 橱柜 里 有 什么 ? +He can play both tennis and baseball . ||| 他 既 会 打网球 , 又 会 打 棒球 . +Everybody jumped into the pool . ||| 每個 人 都 跳進 了 游泳池 . +You are very early this morning . ||| 你 今天 早上 非常 早 . +Would it be ethical to sacrifice one person to save many ? ||| 为了 救 许多 人 牺牲 一个 人 是否 道德 ? +Tom is swimming . ||| 汤姆 在 游泳 . +This piece is in a major key . ||| 这 首 曲子 是 大调 . +He sells fruit . ||| 他 卖 水果 . +He tried to concentrate on the letter . ||| 他 试图 把 注意力 集中 在 信 上 . +The building is seven stories high . ||| 這棟 建築物 有 七層 樓 高 . +I listen to the radio after dinner . ||| 晚饭 后 我 听 收音机 . +This novel is very difficult to understand . ||| 这部 小说 很 难 读懂 . +What does it mean ? ||| 这 是 什么 意思 ? +The more books you read , the more you will know . ||| 你 看 的 书 越多 , 你 知道 的 越多 . +Tom said he 'd be willing to do this . ||| 汤姆 说 他 乐意 做 这事 . +You have many books . ||| 您 有 很多 书 . +How is it going ? ||| 你們 好 嗎 ? +I have to go to sleep . ||| 我 该 去 睡觉 了 . +I can swim well . ||| 我 游泳 可以 游 得 很 好 . +Tom wants children , but Mary does not . ||| 汤姆 想要 孩子 , 但 玛丽 不想 . +We have no chance against those top players . ||| 我们 没 机会 赢 那些 一流 选手 . +Keep to the left when driving . ||| 車輛 靠左 行駛 . +She cut up the cloth to make bandages . ||| 她 裁布 做 绷带 . +Everyone knows me . ||| 大家 都 認識 我 . +Let is go out and eat dinner together from time to time . ||| 讓 我們 偶爾 出去 一起 吃 晚餐 . +She traveled around Japan . ||| 她 环游 了 日本 . +Tom does not mind helping Mary occasionally . ||| 汤姆 不介意 偶尔 给予 玛丽 帮助 . +You should have helped him with his work . ||| 你 應 該 幫 他 工作 的 . +You may choose any book you like . ||| 你 可以 選擇 任何 你 喜歡 的 書 . +I do hope you will come again . ||| 我 很 希望 你 会 再 来 . +Keep it in a cool place . ||| 保存 在 陰涼 的 地方 . +My leg was bitten by that dog . ||| 我 的 腿 被 那 隻 狗 咬 了 . +I am walking with her . ||| 我 正 跟 她 一起 走 . +Would you like another glass of wine ? ||| 你 想 再 来 杯酒 吗 ? +How are you ? Did you have a good trip ? ||| 你 怎么样 ? 旅游 愉快 吗 ? +My brother takes care of our dog . ||| 我 弟弟 照顧 我們 的 狗 . +Hang on till I get to you . ||| 坚持下去 直到 我 找到 你 . +I awoke to find it snowing . ||| 當 我 醒 來 時 , 天正 下著 雪 . +Each of them was given a prize . ||| 他們 每個 人 都 被 授獎 了 . +This is the time he normally arrives . ||| 他 这个 时候 该 到 了 . +If you hear hoofbeats , do not look for zebras . ||| 不要 听 风 就是 雨 . +I really like him , but not his circle of friends . ||| 我 真的 很 喜歡 他 , 可是 我 不 喜歡 他 周圍 的 朋友 . +They gave a big party for me . ||| 他們 為 我 辦 了 一個 盛大 的 派 對 . +I will wait here till he comes back . ||| 我会 在 这里 等 着 到 他 回来 的 . +Can you imagine walking on the moon ? ||| 你 可以 想象 在 月球 上 行走 吗 ? +I see a flower on the desk . ||| 我 看见 书桌上 有 朵花 . +The room is full of people . ||| 屋里 挤满 了 人 . +Mary treated her wounded knee . ||| 玛丽 处理 了 膝盖 的 伤口 . +We just wanted to win . ||| 我們 只 想 贏 . +My son is brushing his teeth . ||| 我 儿子 在 刷牙 . +Is it true that you built this house by yourself ? ||| 你 真是 自己 造 了 这栋 房子 吗 ? +If it rains tomorrow , I will not go to the picnic . ||| 如果 明天 下雨 的话 , 我 就 不 去 野餐 了 . +I know how to solve the problem . ||| 我 知道 怎么 解决 这个 问题 . +She always wears black . ||| 她 總 是 穿著 黑色 的 衣服 . +Mother Nature is generous . ||| 大自然 很 慷慨 . +I do not have a bike . ||| 我 沒有 腳踏車 . +The hunter shot the fox dead . ||| 獵人 射 殺 了 狐狸 . +I will get you some coffee . ||| 我 會 給 你 帶 些 咖啡 . +The funeral was yesterday . ||| 葬 禮 是 昨天 . +I thought you said something . ||| 我 觉得 你 说 了 什么 . +The baby was sound asleep in her mother is arms . ||| 孩子 在 母亲 的 怀中 熟睡 . +We have two children . ||| 我們 有 兩個 孩子 . +I paid about fifty dollars . ||| 我 花 了 大約 五十 美元 . +We went halfway up the mountain . ||| 我們 爬 到 了 半山腰 . +I am pleased with his work . ||| 對 於 他 的 工作 我 很 滿意 . +It may freeze next week . ||| 下周 可能 会 结冰 . +I did not call on him because I had a cold . ||| 我 没有 拜访 他 , 因为 我 感冒 了 . +He built a new house for himself . ||| 他 給 自己 蓋 了 一棟 新房子 . +He is capable of teaching Spanish . ||| 他 有 能力 教授 西班牙文 . +The evidence is clear . ||| 证据确凿 了 . +I will buy a new car next month . ||| 我 下个月 买辆 新车 . +I can come , too . ||| 我 也 能 去 +The tsunami alert was cancelled . ||| 海啸 的 警报 解除 了 . +Opinions vary from person to person . ||| 观点 因人而异 . +Wash the dishes . ||| 把 盤子 洗 了 . +She is in the bath . ||| 她 在 浴室 . +I want to be the one who decides . ||| 我 想 成为 决策 的 人 . +He likes to hunt . ||| 他 喜欢 打猎 . +Tom asked us to leave him alone . ||| 汤姆 要 我们 留 他 独自一人 . +She is absent because she is sick . ||| 她 不 在 是因为 病 了 . +The project was a great success . ||| 該 計劃 是 一個 大 成功 . +Scary movies will frighten the children . ||| 恐怖片 會 嚇 到 小孩 . +There are many birds in this forest . ||| 这个 森林 里 有 很多 小鸟 . +I must be leaving now . ||| 我 現在 必須 離開 . +Tom can swim pretty well . ||| 汤姆 能 游 得 很 好 . +Do your best in anything you do . ||| 你 做 任何 事 都 要 尽全力 . +Keep trying . ||| 继续 努力 . +I have a reservation for tonight . ||| 我 有 今晚 的 預訂 . +Does he have any brothers ? ||| 他 有 任何 的 兄弟 嗎 ? +If someone irritates you , it is best not to react immediately . ||| 如果 有人 激怒 你 , 你 最好 不要 立刻 做出 反应 . +He sold his business and retired . ||| 他 賣 掉 了 他 的 事業 並且 退休 . +His sudden appearance surprised us all . ||| 他 的 突然 出现 , 让 我们 都 感到 惊讶 . +When will you leave ? ||| 你 什么 时候 离开 ? +Health is better than wealth . ||| 健康 勝 過 財富 . +They were afraid . ||| 他们 害怕 了 . +Eating fish is good for your health . ||| 吃 鱼 有益于 你 的 健康 . +There is a certain amount of truth in what he is saying . ||| 他 說 的 話 有 一定 的 道理 . +You can not park around here . ||| 你 不能 在 這 附近 停車 . +I am a member of the swimming club . ||| 我 是 游泳 俱樂部 的 會員 . +I guess I will have to leave now . ||| 我 想 我 現在 得 走 了 . +Go at once , otherwise you will be late . ||| 立刻 走 , 否則 你 會 遲 到 . +The colors of the American flag are red , white and blue . ||| 美国 国旗 的 颜色 是 红白 蓝 . +When does that start ? ||| 什么 时候 开始 ? +She is a native speaker of French . ||| 她 的 母語 是 法語 . +She is busy now and can not talk with you . ||| 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +He threw a ball over the fence . ||| 他 把 球 扔 過 了 柵欄 . +The fastest way to travel is by plane . ||| 旅行 最快 的 方式 是 乘飞机 . +Tom put his wallet on the desk . ||| 汤姆 把 钱包 放在 了 桌子 上 . +It was truly depressing . ||| 真的 令人 丧气 . +His low salary prevents him from buying the house . ||| 他 的 低 薪水 让 他 买 不了 房 . +Speaking English is very difficult for me . ||| 說 英語 對 我 來說 很困 難 . +Tom had never lied to me before . ||| 湯姆 以前 從 不 向 我 說 謊 . +He has plenty of money in the bank . ||| 他 在 银行 里 有 大量 钱财 . +Tom is thrilled . ||| 汤姆 兴奋不已 . +We can do more than they can . ||| 我們 能比 他們 做 得 多 . +Can you see ? ||| 你 能 看 吗 ? +I know what you meant . ||| 我 知道 你 是 什么 意思 . +Have you ever broken your glasses ? ||| 你 摔坏 过 你 的 眼镜 吗 ? +He is started looking for a job . ||| 他 开始 找 工作 了 . +I had him write it . ||| 我 要 他 寫 . +Do you have something to say ? ||| 你 有 什么 事 要说 吗 ? +There is only one bath towel . ||| 只有 一條 浴巾 . +My son is tired of hamburgers . ||| 我 的 兒子 厭煩 了 漢堡 包 . +Do not walk alone after dark . ||| 不要 一個 人 在 黑暗 中 走 . +Any emotion , if it is sincere , is involuntary . ||| 任何 情绪 , 只要 它 是 真诚 的 , 就 说明 它 是 发自内心 的 自然 流露 . +I am sorry , but I can not answer right away . ||| 我 很 抱歉 , 但 我 無法 立即 回答 . +My father has been in good shape since his operation . ||| 自从 手术 后 , 我 父亲 一直 处于 良好 的 状态 . +How long can I borrow this book ? ||| 这 本书 我 能 借 多久 ? +Tom does not have a dad . ||| 汤姆 没有 父亲 . +Tom doubts whether Mary is honest . ||| 湯姆懷 疑 瑪麗 是否 誠實 . +In general , consumers prefer quantity to quality . ||| 一般 來 說 , 消费者 喜歡 數量 勝 於 質量 . +Pass me the salt . ||| 请 给 我 盐 . +I have not finished this . ||| 我 做不了 這個 . +She is dieting . ||| 她 在 节食 . +I found the work very interesting . ||| 我 覺得 這個 工作 非常 有趣 . +Show me an example . ||| 给 我个 例子 . +" What is going on in the cave ? I am curious . " " I have no idea . " ||| " 山洞 裡 發生 了 什麼 事 ? " 我 很 好奇 . " 我 不 知道 . " +No matter what you say , the answer is " no . " ||| 不管 你 說 什麼 , 答案 就是 " 不 . " +Which one is easier ? ||| 哪 一個 最 簡單 ? +He asked for a drink of water . ||| 他 要 了 水 喝 . +It may not be possible . ||| 不太可能 . +I will take this umbrella . ||| 我 將 拿 這 把 傘 . +Can you read ? ||| 你 能 閱讀 嗎 ? +At first , I thought they were sick . ||| 一 开始 , 我 以为 他 病 了 . +I like movies a lot . ||| 我 很 喜歡 電影 . +It is no good trying to persuade her . ||| 試圖 勸 她 是 沒 有用 的 . +We went to London last year . ||| 我们 去年 去 了 伦敦 . +I asked him many questions about ecology . ||| 我 問 了 他 許多 關 於 生態 環境 的 問題 . +What time was she born ? ||| 她 幾點 出生 的 ? +You should tell the truth . ||| 你 该 把 事实 说 出来 . +Yes , I have student ID . ||| 是 的 , 我 有 學生 證 . +She got married when she was twenty @-@ five . ||| 她 二十五 歲時 結婚 了 . +I remember locking the door . ||| 我 記得 鎖門 了 . +I am going to stay here for a couple of days . ||| 我 將 要 在 這裡 待 幾天 . +The baby is sleeping . ||| 宝宝 正在 睡觉 . +Give me the book . ||| 給 我 這 本書 . +I do not have many friends . ||| 我 朋友 很少 . +Tom is playing the violin now . ||| 湯姆 正在 拉 小提琴 . +Look out for cars when you cross the road . ||| 當 你 過 馬路 的 時候 要 當心 汽車 . +I aimed my gun at the target . ||| 我 把 我 的 手枪 指向 了 目标 . +English is a language spoken all over the world . ||| 英語 是 一種 全世界 通用 的 語言 . +I finally persuaded him to buy it . ||| 我 終 於 說 服 了 他 買 它 . +They are leaving Japan tomorrow . ||| 明天 他們 將 離開 日本 . +The dog is blind in one eye . ||| 這 隻狗的一 隻 眼睛 瞎 了 . +You must be careful of the traffic when you cross the street . ||| 横穿马路 时 你 要 留心 . +He came to my house on the pretext of seeing me . ||| 他 打着 见 我 的 幌子 来 了 我家 . +My brother has become a priest . ||| 我 的 兄弟 已经 成为 了 牧师 . +Are you going to school tomorrow ? ||| 你 明天 要 去 上 學 嗎 ? +It is night . ||| 是 晚上 了 . +The danger is over . ||| 危險 已過 去 . +Do not give in to those demands . ||| 不要 屈服 於 這些 要求 . +I feel like this is not going to end well . ||| 感觉 这 不会 有个 好 结局 . +Man is the only animal that can make use of fire . ||| 人 是 唯一 会 使用 火 的 动物 . +What do you want to know ? ||| 你 想 知道 什麼 ? +Did Tom give any other suggestions ? ||| 汤姆 提出 其他 建议 了 吗 ? +A lot of students around the world are studying English . ||| 世界 上 許多 學生 正在 學習 英語 . +I know life is short . ||| 我 知道 生命 是 短暂 的 . +Did you complete the work ? ||| 你 完成 工作 了 吗 ? +I have got blisters on my feet . ||| 我 的 腳 起水泡 了 . +You can not live like this . ||| 你 不能 這樣 活 . +I studied English when I was there . ||| 當 我 在 那裡 的 時候 , 我 學習 英語 . +Some furniture is put together with glue . ||| 一些 家具 是 用 膠水 黏在 一起 . +I hope people are satisfied . ||| 我 希望 人们 满意 . +That is a shame . ||| 那 是 一個 恥辱 . +Why do people commit suicide ? ||| 为什么 人们 会 自杀 ? +How many pictures did you buy ? ||| 你 買 了 多少 張圖 畫 ? +Tom used to swim a lot when he was younger . ||| 汤姆 年轻 的 时候 经常 游泳 +Happy is the man who is contented . ||| 知足常乐 . +I am the tallest in our class . ||| 我 在 班里 是 最高 的 . +Tom is Mary is uncle . ||| 汤姆 是 玛丽 的 叔叔 . +If two men always have the same opinion , one of them is unnecessary . ||| 如果 两个 人 总是 意见 相同 , 那么 他们 其中 一个 就 没 必要 了 . +She has a dog and six cats . ||| 她 有 一只 狗 和 六只 猫 . +That river flows into the Pacific . ||| 这条 河 汇入 太平洋 . +I had a funny dream last night . ||| 我 昨晚 做 了 一個 有趣 的 夢 . +I could not sleep . ||| 我 睡 不著 . +By the way , did you hear that Mary quit her job ? ||| 话 说 , 你 听说 玛丽 辞职 了 吗 ? +She tends to be late for school . ||| 她 往往 會 上學 遲到 . +We can change if we want to . ||| 如果 我们 想 , 我们 就 能变 . +This is a true story . ||| 这个 故事 是 真的 . +We had a heart @-@ to @-@ heart talk with each other . ||| 我们 促膝谈心 . +What is the name of that bird ? ||| 那 隻 鳥 叫什 麼 名字 ? +Her father is Japanese . ||| 她 父親 是 日本 人 . +My father caught three fish yesterday . ||| 昨天 我 爸爸 抓到 了 3 条鱼 . +She is eating an apple . ||| 她 正 吃著 一個 蘋果 . +I threw away my shoes . ||| 我 把 自己 的 鞋子 扔掉 了 . +He does not have any children . ||| 他 沒有 孩子 . +I make it a rule not to watch television after nine o 'clock . ||| 我 规定 自己 在 九点 之后 不 看电视 . +He usually went to bed at eleven . ||| 他 通常 在 十一 點 上床 睡覺 . +Are not you hot ? ||| 你 不 热 吗 ? +Instead of going to Europe , I decided to go to America . ||| 我 决定 去 美国 , 而 不是 欧洲 . +He bumped his head against a post . ||| 他 的 頭 撞 到 了 一根 柱子 . +Did you leave the window open ? ||| 你 讓 窗戶 開著 嗎 ? +I will try to find them for you . ||| 我会 努力 帮 你 找到 他们 . +He even called me an idiot . ||| 他 甚至 骂 我 傻瓜 . +Where is the bathroom ? ||| 廁 所在 哪裡 ? +I can do it without your help . ||| 沒有 你 的 幫忙 我 也 能 做 . +This is a great moment . ||| 这 是 一个 伟大 的 时刻 . +He is very angry . ||| 他 非常 生气 . +They did not act quickly . ||| 他们 没有 立刻 行动 . +Blondes earn 7 % more than women with any other hair color . ||| 金 髮 女郎 比 其他 顏色 頭 髮 的 女人 多 賺 7 % . +Will you accept this job ? ||| 你 会 接受 这份 工作 吗 ? +He is a bit lively . ||| 他 有点 活泼 . +Are you good at mathematics ? ||| 你 数学 好 吗 ? +Oh , no ! My house is on fire ! ||| 哦 , 不 ! 我 的 房子 着火 了 ! +Was Tom watching TV last night ? ||| 湯姆 昨天晚上 在 看電視 嗎 ? +Would you pass me the salt , please ? ||| 請 你 把 鹽 遞 給 我 好 嗎 ? +The company cancelled the meeting . ||| 公司 取消 了 会议 . +She wrote to her parents at least once a week . ||| 他 给 父母 写信 至少 一周 一次 . +Who are you going with ? ||| 你 和 谁 一起 去 那 ? +" Why are not you going ? " " Because I do not want to . " ||| " 你 为什么 不 去 ? " " 因为 我 不想 去 . " +I am very sad . ||| 我 很 难过 . +I do not drink or smoke . ||| 我 既 不 抽烟 也 不 喝酒 . +He said that it was nine o 'clock . ||| 他 说 九点 了 . +Can you help me a little ? ||| 你 能 帮 我 一点 忙 吗 ? +I think he will come . ||| 我 想 他 会 来 的 吧 . +He is very good at guitar . ||| 他 非常 擅長 吉他 . +I do not know , nor do I care . ||| 我 不 知道 , 也 不想 知道 . +Does it matter to you how much it costs ? ||| 它 花 多少 钱 对 你 很 重要 吗 ? +Tom showed up just in time . ||| 汤姆 刚好 准时 到 了 . +I have something to tell you . ||| 我 有事 要 告訴 你 . +I can not bear this noise any more . ||| 我 无法 再 忍受 那 噪音 了 . +Who are you looking at ? ||| 你 在看 谁 ? +Are oysters in season now ? ||| 现在 牡蛎 当季 吗 ? +I almost drowned . ||| 我 差點 被 淹死 . +You should have come earlier . ||| 你 本 应该 来得 更早 的 . +Tom has just finished eating dinner . ||| Tom 刚 吃 完 晚饭 . +He has a good grasp of English . ||| 他 精通 英文 . +I like instrumental music . ||| 我 喜歡 器樂 . +Tom does not even know how to fry an egg . ||| 汤姆 甚至 连 怎么 煎 鸡蛋 都 不 知道 . +It is rude to laugh at others . ||| 嘲笑 別人 是 無 禮 的 . +Why do not you have a party ? ||| 你 為 什麼 不 舉行 派 對 ? +I am used to staying up late at night . ||| 我 习惯 晚睡 . +He said , " Let is take a short rest . " ||| 他 說 : 「 我們 休息 一下 . 」 +I always keep a dictionary close at hand . ||| 我 总是 在 离手 不远 的 地方 放 一本 字典 . +The house was in flames . ||| 房子 着火 了 . +I was very busy last week . ||| 上星期 我 非常 地 忙 . +She called me many times . ||| 她 打 了 很 多次 電話 給 我 . +We will go when it quits raining . ||| 雨 停 了 我們 就 會 去 . +Tom will go there tomorrow . ||| 湯姆 明天 會 去 那裡 . +He was brought up in Australia . ||| 他 在 澳大利亚 长大 . +The train has arrived . ||| 這 班 火車 已經 到 了 . +It has not been easy for Tom to deal with Mary is health problems . ||| 处理 玛丽 的 健康 问题 对 汤姆 来说 不 容易 . +The car was going forward . ||| 车 往前走 . +I have got a pacemaker . ||| 我 裝 了 個 心臟 起搏器 . +It suddenly started raining . ||| 突然 開始 下雨 . +The meeting ended at 4 : 00 p.m. ||| 會議 於 下午 4 點 結束 . +You do not have to eat . ||| 你 不必 吃 . +How about going out tonight ? ||| 今晚 出去 怎么样 ? +Do you think Tom is wealthy ? ||| 你 認為 湯姆 有 錢 嗎 ? +I have not yet finished my supper . ||| 我 還 沒 吃 完 晚 飯 . +Call an ambulance . ||| 叫 救护车 . +I have got a headache . ||| 我 头痛 . +Someone is been here recently . ||| 有人 刚才 在 这里 . +He went to London in 1970 . ||| 他 1970 年 去 了 伦敦 . +In Hungary they speak Hungarian . ||| 在 匈牙利 說 匈牙利 文 . +I have lost patience with Tom . ||| 我 对 汤姆 失去 了 耐心 . +Do you plan to go abroad ? ||| 你 打算 出国 吗 ? +I seem to be unlucky today . ||| 我 今天 看來 很幸 運 . +We have no reason to feel ashamed . ||| 我们 没理由 害臊 . +Please turn down the radio . ||| 請 把 收音 機關 小聲 一點 . +You do not deserve it . ||| 你 不配 . +I read about him in the newspaper . ||| 我 在 報紙 上 讀到 有關 他 的 消息 . +Mary is very pretty . ||| 瑪麗 很漂亮 . +I opened the box and looked inside . ||| 我 打開 盒子 看看 裡面 . +Are you sure ? ||| 你 确定 ? +It seems so familiar . ||| 这 看起来 似曾相识 . +Write it in pencil . ||| 用 鉛筆 寫 . +Man cannot live forever . ||| 人 无法 长生不死 . +He looked for every possible means of escape . ||| 他 寻找 一切 可能 的 逃生 途径 . +How old are your kids ? ||| 你 的 孩子 多 大 了 ? +She loves Tom . ||| 她 愛 湯姆 . +You should do that soon . ||| 你 應該 很快 那樣 做 . +Tom ate only one sandwich . ||| Tom 吃 了 唯一 一个 三明治 . +I never liked biology . ||| 我 從來 沒 喜歡 過 生物 學 . +Come in , the door is open . ||| 進來 , 門 是 開 的 . +He likes French more than German . ||| 他 喜歡 法語 勝 過 德語 . +I found the key underneath the mat . ||| 我 在 擦鞋 墊 下面 發現 了 這 把 鑰匙 . +I have a good appetite today . ||| 我 今天 的 食 慾 很 好 . +Mutual understanding promotes peace . ||| 相互理解 能 促进 和平 . +Please let me know what you want . ||| 請 讓 我 知道 你 要 什麼 . +Tom forgot to do his homework . ||| 汤姆 忘 了 做作业 . +I have not seen him since then . ||| 從 那時 起 我 就 沒有 看到 他 . +I have not seen her since then . ||| 我 從 那時 起 就 沒有 見 過 她 . +Will you permit me to go there ? ||| 您 允许 我 去 吗 ? +I want much more . ||| 我 要 多 很多 . +My older sister plays the guitar well . ||| 我 姐姐 吉他 弹 得 很 好 . +You will not be happy no matter what I do . ||| 无论 我 做 什么 , 你 都 不 高兴 . +How about going out for lunch ? ||| 出去 吃 午 飯 怎樣 ? +I should have gone to bed earlier last night . ||| 我 昨晚 应该 早点 睡觉 的 . +I know very little about Tom . ||| 我 对 汤姆 知道 得 很少 . +The number of people suffering from heart disease has increased . ||| 遭受 心脏病 困扰 的 人数 增加 了 . +What do you think about it ? ||| 你 認為 如何 ? +Tokyo is the largest city in Japan . ||| 東京 是 日本 最大 的 城市 . +I love my work very much . ||| 我 非常 喜欢 我 的 工作 . +I am busy today . ||| 我 今天 忙 . +You should be careful not to become overconfident . ||| 你 要 注意 不要 太 自信 . +The bread is not fresh . ||| 面包 不 新鲜 . +I think you are ready . ||| 我 認為 你 準備 好 了 . +They like apples . ||| 他们 喜欢 苹果 . +I like rice more than bread . ||| 比起 面包 , 我 更 喜欢 米饭 . +He is bound to notice your mistake . ||| 他 必定 會 覺察 到 你 的 錯誤 . +You 'd better do as the doctor advised you . ||| 你 最好 照着 医生 的 建议 做 . +We enjoyed ourselves very much . ||| 我們 玩 的 很 開心 . +He was afraid of being laughed at . ||| 他 怕 被 嘲笑 . +This flower is beautiful , is not it ? ||| 這 朵花 很 美 , 不是 嗎 ? +How much do you want in terms of salary ? ||| 您 想要 多少 工资 ? +What I hate most of all is having to recite texts from memory . ||| 我 最 讨厌 背诵课文 了 . +A man is responsible for his deeds . ||| 一个 人 要 为 他 的 行为 负责 . +He loves her . She loves him , too . ||| 他 愛 她 . 她 也 愛 他 . diff --git a/TRANSLATE/cmn.txt_train_tokenized_geca.tsv b/TRANSLATE/cmn.txt_train_tokenized_geca.tsv new file mode 100644 index 0000000..8ce1684 --- /dev/null +++ b/TRANSLATE/cmn.txt_train_tokenized_geca.tsv @@ -0,0 +1,22823 @@ +Put on some sunscreen . 涂点 防晒 吧 . +The two nations have strong trade ties . 这 两个 国家 有 强大 的 贸易 关系 . +Excuse me , I am lost . 不好意思 , 我 迷路 了 . +You seem to be prejudiced against ideas that come from foreign countries . 你 似乎 對 來 自 國外 的 想法 有 偏見 . +Do you know what is happened ? 你 知道 发生 了 什么 事情 吗 ? +Our supplies are running out . 我们 的 供给 要用 完 了 . +I am fed up with this weather . 我 受够了 这 天气 . +This is the cheapest store in town . 這 是 鎮 上 最 便宜 的 商店 . +I decided to study every day . 我 決定 每天 用功 讀書 . +We do not care what he does . 我們 不在乎 他 做 什麼 . +What is the purpose of your visit ? 你 此行 的 目的 是 什麼 ? +The school is located within five minutes ' walk of the station . 學校 坐落 於 距離 車站 步行 五分 鐘 的 地方 . +Speech is silver , but silence is golden . 雄 辯 如 銀 , 沉默 如 金 . +My aunt sent me a birthday present . 我 阿姨 送 了 我 一個 生日 禮物 . +After climbing Mt . Fuji , I got the inspiration for a poem . 攀登 富士山 後 , 我 得到 了 一首 詩 的 靈感 . +This will keep you warm . 这个 能 保暖 . +Any bed is better than no bed . 任何 床 都 比 沒有 床 好 . +There were two bridges . 那里 有 两座 桥 . +We get the materials from Malaysia . 我們 從 馬來西亞 得到 材料 . +She asked me a question . 她 問 了 我 一個 問題 . +I am proud of you . 我 以 你 為 榮 . +He told me that he was busy then . 他 告诉 我 他 那时 很忙 . +A computer is a complex machine . 电脑 是 个 复杂 的 机器 . +What should they do in this situation ? 在 这种 情况 下 , 他们 该 做 什么 ? +My mother is busy in the kitchen . 我 的 母親 在 廚房 裡 正忙 著 . +How many rackets do you have ? 你 有 多少 支 球拍 ? +I have always wanted to meet you . 我 一直 想見 你 . +His job is driving a sight @-@ seeing bus . 他 的 工作 是 驾驶 观光 巴士 . +I collect stamps . 我 收集 郵票 . +We know that . 我们 知道 . +There are many ships in the harbor . 港口 內 有 許多 船 . +That was not so hard , was it ? 那 不难 , 是 吧 ? +I objected to his paying the bill . 我 反 對 他 付 帳 單 . +You are allowed to use the hotel is swimming pool . 你 有权 使用 旅馆 的 游泳池 . +I read the book after I had finished my homework . 我 做 完 我 的 功课 后 , 就读 这 本书 . +President Lincoln was what we call a self @-@ made man . 林肯 總統 就是 我們 所謂 白手起家 的 男人 . +Like father , like son . 有其父必有其子 . +The captain is responsible for the safety of passengers . 船长 要 为 乘客 安全 负责 . +When I heard that song , it reminded me of when I was a kid . 我 聽到 那首歌 時 , 它 讓 我 想起 了 我 小 的 時候 . +The clock has stopped . 時鐘 已經 停止 了 . +Even Tom does not do that anymore . 甚至 湯姆 都 不再 做 了 . +At last , she solved the problem . 最 後 , 她 解決 了 這個 問題 . +I visit him every other day . 我 每隔 一天 拜訪 他 . +He works from Monday to Friday . 他 周一 到 周五 上班 . . +Tom knows that I used to live in Boston . 湯姆 知道 我 在 波士 頓 住 過 . +This is the house where I live . 这 是 我 住 的 房子 . +Birds fly . 鳥類 飛行 . +She is always dressed in black . 她 總 是 穿著 黑色 的 衣服 . +Excuse me for opening your letter by mistake . 對 不起 , 我 錯 開 了 你 的 信 . +He was admitted without taking the exam . 他 承認 沒有 參 加考 試 . +He has been dead for ten years . 他 已經 死 了 十年 . +He broke the law . 他 触犯 了 法律 . +Tom likes it hot . 汤姆 喜欢 热 的 . +There is no denying the fact . 這 是 無 可否 認 的 事實 . +He loves her . 他 愛 她 . +Do you get up at six ? 你 六点 起床 吗 ? +I was born on October 10th , 1972 . 我 在 一九七二年 十月十日 出生 . +He flew a kite with his son . 他 和 他 的 儿子 放风筝 了 . +Did you go out last night ? 你 昨天晚上 出去 了 嗎 ? +She found her purse under the desk . 她 在 桌子 底下 找到 了 她 的 錢 包 . +He was killed by a single bullet . 他 被 一顆 子彈 打死 了 . +I am going to get rid of all this stuff . 我 要 摆脱 这 一切 . +I no longer wish to be your wife . 我 不想 做 你 老婆 了 . +Hi . 嗨 . +How is it going at school ? 学校 怎么样 ? +I am just a plain old office worker . 我 只是 一個 普通 的 老式 上班族 . +My name does not appear on the list . 我 的 名字 沒有 出現 在 名單 上 . +A hare raced with a tortoise . 兔子 和 乌龟 赛跑 . +The children were flying kites . 孩子 們 在 放 風箏 . +Is it true or did Tom make that story up ? 這 是 事實 還 是 Tom 編 的 故事 ? +You work as hard as he did at your age . 你 跟 他 在 你 這個 年紀時 一樣 努力 工作 . +I wonder what I should do today . 我 在 想 我 今天 该 干什么 . +That is my final answer . 这 是 我 的 最终 回答 . +I can not fall asleep . 我 睡不着 觉 . +Mind your manners . 规矩 点 . +You do not need to do this . 你 不 需要 做 这事 . +He left ten minutes ago . 他 十分 鐘 前 離開 了 . +Freedom is very , very important . 自由 非常 非常 重要 . +We stayed with them all through the summer . 我们 整个 夏天 都 和 他们 待 在 一起 . +I wish I were younger . 但 願 我 年 輕 一點 . +I overslept . 我 睡 过头 了 . +I do not know what I am going to do next . 我 不 知道 接下来 我 要 做 什么 . +She does not know how to play golf . 她 不 知道 怎麼 打 高爾夫 球 . +He slipped me a note . 他 悄悄地 递给 我 一张 纸条 . +Do not look into my room . 不要 往 我 房间 里 看 . +It is dangerous to fool around with electricity . 隨便 亂 弄 電是 危險 的 . +It is not that easy to learn a new language after fifty . 五十岁 以后 学 一门 新 的 语言 不是 那么 容易 . +Thanks for accepting my friend request on Facebook . 謝謝 你 接受 我 Facebook 的 交友 邀請 . +I have nothing to do with that crime . 这个 犯罪 和 我 一点 关系 都 没有 . +His house was struck by lightning . 他 的 房子 遭到 雷擊 . +I had a vision . 我 有 一个 愿景 . +It was not my fault . 那 不是 我 的 錯 . +Do you know of any good restaurant near here ? 你 知道 这儿 附近 有 什么 好 餐馆 吗 ? +Class does not begin until eight @-@ thirty . 八點半 開始 上課 . +I really enjoyed myself tonight . 今晚 我 玩 得 很 開心 . +That is a nice car you are driving . 你 開 的 那輛 車 很 不錯 . +This is one of the best restaurants I have ever eaten in . 这 是 我 吃 过 的 最好 的 餐馆 之一 . +He is always laughing . 他 总是 在 笑 . +Do not laugh at him for making a mistake . 不要 因为 他 犯 了 一个 错误 就 嘲笑 他 . +There is no need to hurry . 沒有 必要 著急 . +There is a hair in my soup . 我 的 湯 裡 有 一根 頭 髮 . +How about another round ? 再 來 一輪 怎麼樣 ? +I spent twelve hours on the train . 我 在 火车 上待 了 12 小时 . +Are you going or not ? 你 去 還 是 不 去 ? +Get it done as soon as possible . 盡快 把 它 完成 . +I need a stamp . 我 需要 一張 郵票 . +Is there anything else you want ? 还有 什么 想要 的 吗 ? +You 'd better take an umbrella with you . 你 最好 隨身 帶 把 傘 . +I will wait for you in front of the radio station . 我 會 在 電 台前 等 你 . +You are looking tired . 你 看起来 很困 了 . +The teacher assembled the students in the hall . 老師 在 禮堂 把 學生 們 集合 起來 . +It is hardly worth discussing . 這 幾乎 不 值得 討論 . +An army marches on its stomach . 胃 里 如同 千军万马 开过 . +He studied very hard . 他 学习 非常 努力 . +A fly can walk on the ceiling . 蒼蠅 能 在 天花板 上 走 . +She tried to lift the box , but found it impossible to do . 她 試著 舉起 箱子 , 但 發現 不 可能 做到 . +Where have you been ? 你 一直 在 哪里 ? +All the signs are that she is getting better . 所有 迹象 表明 她 好 起来 了 . +He seldom goes to church . 他 很少 去 教堂 . +Do you want anything to eat ? 您 想 吃 点 什么 吗 ? +I like sports . 我 喜歡 運動 . +The accident seemed to have something to do with the heavy snow . 事故 似乎 和 厚厚的 积雪 有关 . +Work harder if you plan to succeed . 如果 你 計劃 要 成功 , 就要 更加 努力 地 工作 . +He stretched out his arm to take the book . 他 伸长 了 手臂 为了 能 拿到 书 . +The teacher made me repeat the sentence . 老師 讓 我 重 複 了 這 句 話 . +It is easy to add 5 to 10 . 5 加 10 很 简单 . +We had lunch at a little coffee shop . 我們 在 一家 小 咖啡店 吃 午 飯 . +I have something to give you . 我 有些 东西 要 给 你 . +He studied abroad . 他 出国 留学 了 . +You can use this car . 你 可以 使用 這輛 車 . +I would like to come with you . 我 想 和 你 一起 走 . +I remember returning the book to the library . 我 记得 我 把 书 还 到 图书馆 了 . +There are noticeable differences between the two . 两者之间 有 显著 的 差别 . +The chicken is undercooked . 雞肉 還 不夠 熟 . +The bus stop is across the street . 公車 站牌 就 在 街 對 面 . +Do you like oranges ? 你 喜歡 橙子 嗎 ? +This store has a variety of spices . 這家 商店 有 各種 香料 . +I get the feeling you are trying to tell me something . 我 感觉 你 想 告诉 我 什么 事 . +She is not at home now . 她 現在 不 在家 . +There was no one in the room besides Tom and Mary . 除了 汤姆 和玛丽 , 房间 里 没有 人 . +He held a package under his arm . 他 把 一個 包裹 挾 在 腋下 . +Tom made his servants eat in the dark . 汤姆 让 他 的 仆人 们 在 黑暗 下 进餐 . +Is your school far from your home ? 你 的 學校 離 你家 很 遠 嗎 ? +Do you know how to play mahjong ? 你 知道 怎麼 打 麻將 嗎 ? +I have lost my wallet . 我 掉 了 我 的 钱包 . +He substituted for his father . 子承父业 . +Tom said he 'd think about my suggestion . 汤姆 说 他 会 考虑 我 的 问题 . +I can not believe that . 我 不能 相信 . +I would do anything for Tom . 我会 为 汤姆 做 任何 事 . +You deserve to succeed . 你 的 成功 是 应得 的 . +Waitress , I would like to order . 服务生 , 我 要 点菜 . +Please give me a call . 请 给 我 打电话 . +He is in the kitchen . 他 在 厨房 . +Where is the longest tunnel in Japan ? 日本 最长 的 隧道 在 哪里 ? +Tom and Mary are very hungry . 汤姆 和玛丽 很 饿 . +You must do it . 你 必須 去 做 . +Everybody but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I know him by sight , but not by name . 我 知道 他 的 样子 , 但 不 知道 他 的 名字 . +This river is safe to swim in . 在 这条 河里 游泳 很 安全 . +Perseverance , as you know , is the key to success . 就 像 你们 知道 的 那样 , 毅力 是 成功 的 关键 . +He did the reverse of what I asked . 他 做 的 和 我 要求 的 相反 . +He may come tomorrow afternoon . 他 明天 下午 可能 會來 . +I stay at home on Sundays . 我 星期天 在家 . +You must take his age into account . 你 该 考虑 他 的 年纪 . +We need to make a plan . 我们 需要 做 计划 . +Father recovered his health . 爸爸 恢复 了 健康 . +This towel is so soft and fluffy . It feels good ! 这 条 毛巾 蓬松 又 柔软 , 特别 舒服 . +We must take into account the wishes of all the family in planning a trip . 筹划 旅行 的 时候 , 我们 必须 考虑 到 全家人 的 意愿 . +What subject do you like best ? 你 最 喜歡 哪 一個 科目 ? +I do not think it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +She really wants to lose weight . 她 真的 想 減肥 . +Let is take a look . 讓 我們 看看 吧 . +Tom kissed Mary on the cheek . 汤姆 亲 了 玛丽 脸颊 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 来 接 . ” +If that were true , what would you do ? 如果 这 是 真的 , 您 要 怎么办 ? +Tom follows orders . 汤姆 服从命令 . +You should not say that kind of thing when children are around . 孩子 们 在 旁边 的 时候 , 你 不 应该 说 那种 事 . +Do you know the meaning of this word ? 您 知道 这个 词 的 意思 吗 ? +Could you tell me where Tom is ? 你 能 告訴 我 湯姆 在 哪裡 嗎 ? +Come on over to have a try . 你 過來 試試 看 . +Would you look after my cat ? 你 可以 照顧 一下 我 的 貓 嗎 ? +He asked me why I was laughing . 他 問 我 為 什麼 在 笑 . +Let is turn back . 我们 掉头 吧 ! +She made me a nice dress . 她 做 了 一件 好看 的 衣服 給 我 . +All the dogs are alive . 所有 狗 都 活着 . +Let is drive to the lake . 讓 我們 開車 到 湖邊 . +Clean your room . 打扫 一下 你 的 房间 . +It is easy to make friends , but hard to get rid of them . 交朋友 很 容易 , 但 擺脫 他們 很 難 . +There are subtle differences between the two pictures . 这 两张 图片 之间 有 细致 的 差异 . +I am innocent . 我 是 清白 的 . +I am not the least bit worried . 我 一點 也 不 擔心 . +She was surprised that he showed up . 她 很 驚訝 他 出現 了 . +Tom came over to my house for dinner yesterday . 汤姆 昨天 来 我家 吃晚饭 . +Stay out of this . 别 插手 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +Here is your tea . 这 是 你 的 茶 . +You will have to play it by ear at the interview . 在 面試 的 時候 你 必須 見 機 行事 . +It is hard to say what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants to work in a hospital . 他 想 在 醫院 工作 . +I am looking for books on Roman history . 我 在 找 关于 古罗马 历史 的 书 . +I am going to play tennis . 我 要 去 打 網球 . +I lost my ticket . What should I do ? 我 丢 了 我 的 票 . 我 該 怎麼 辦 ? +A stitch in time saves nine . 小洞 及時 補 , 免遭 大洞 苦 . +Which do you like better , spring or fall ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +I saw the film in San Francisco last year . 我 去年 在 舊 金山 看 這部 電影 . +You should take care of your sick mother . 你 應該 照顧 你 生病 的 母親 . +Would you give me a hint ? 你 可以 给 我 一个 提示 吗 ? +I know that he was busy . 我 知道 他 忙 . +No matter where you go , I will follow you . 無論 你 去 哪裡 我 都 會 跟著 你 . +Tom asked me to tell you he did not plan on going to Boston with you . 汤姆 让 我 告诉 你 他 没有 计划 和 你 一起 去 波士顿 . +It is your business to take care of them . 照顾 他们 是 你 自己 的 事儿 . +One of them is a spy . 他們 其中 一 人 是 間諜 . +I demand an explanation for this mistake . 我 要求 說明 這個 錯誤 . +His house is across from mine . 他 的 房子 在 我 的 對面 . +Somehow I thought you 'd say that . 我 就 知道 你 会 这么 说 . +When will they arrive ? 他們 何時 抵達 ? +Would you like to leave a message ? 你 要 留言 嗎 ? +I will wait . 我 會 等 . +Tom could not help but smile . 汤姆 帮不了 , 只能 笑笑 . +I do not care all that much . 我 不 那么 在意 . +She came from Canada to see me . 她 從 加拿大 來看 我 . +I am still hungry . 我 还 饿 着 呢 . +My father goes to work by bike . 我 父親 騎 自行 車 去 上班 . +I missed you . 我 想念 你 . +He says he will not come . 他 說 他 不 會 來 . +Both Tom and his wife grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +" You talk too much , " he said . “ 你 说 得 太 多 了 , ” 他 说道 . +I want an MP3 player ! 我 想要 一个 MP3 播放器 ! +She lives in New York . 她 住 在 纽约 . +Do you really mean that ? 你 是 认真 的 吗 ? +The warrior is conscious of both his strength and his weakness . 戰士 知道 自己 的 力量 和 弱點 . +Smoking is harmful to your health . 吸烟 有害 健康 . +We just moved in . 我們 才 剛 搬 進來 . +I get a kick out of her cheerful personality . 她 開朗 的 個性 使 我 覺得 快樂 . +Scary , is not it ? 嚇 人 , 不是 麼 ? +Tom just got back from Australia . 汤姆 刚 从 澳大利亚 回来 . +Do you go to a private school ? 你 在 私立学校 读书 吗 ? +I saw a light in the distance . 我 看见 远处 有 灯光 . +I know you are going to say no . 我 知道 你 要 說 不 . +I am not satisfied with my English ability . 我 不 滿意 我 的 英語 能力 . +Tell me what to do . 告訴 我 該 做 什麼 . +She has been sick for three weeks . 她 已經 病 了 三個 星期 了 . +What are you reading ? 你 在 看 什么 ? +We did not expect him to finish the task in so short a time . 我们 没指望 过 他 在 那么 短 的 时间 里 完成 工作 . +I was in Tokyo yesterday . 我 昨天 在 東京 . +I walked in the woods by myself . 我 自己 走進 了 樹林 裡 . +Go get your helmet . 戴 上 你 的 安全帽 . +I am fairly certain Tom lives on Park Street . 我 很 确定 汤姆 住 在 公园 街 . +The old man walked across the road carefully . 老人 小心翼翼 地 过 了 马路 . +Mary is going to help us tomorrow . 玛丽 明天 会来 帮 我们 . +That makes no sense at all . 这 没有 任何 意义 . +I do not think she is happy . 我 觉得 她 不 开心 . +You have got to apologize . 你 應該 道歉 . +They moved here three years ago . 他們 三年 前 搬到 了 這裡 . +You 'd better go home . 你 最好 回家 . +He was a very good skier when he was little . 他 年 輕 時 很 會 滑雪 . +How old is that painting ? 那幅 画 有 多少 年 了 ? +At that time , Tom was sitting between Mary and John . 在 那个 时候 , 汤姆 正 坐在 玛丽和 约翰 中间 . +It was terrible . 真糟糕 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +Perfect ! 完美 ! +We have to put off the game till next Sunday . 我们 不得不 把 游戏 搁到 下 周日 了 . +Translate the passage word for word . 逐字 地 翻譯 這個 段落 . +I have neither seen nor heard of such a thing . 我 没 见 过 也 没 听 过 这样 的 事 . +No one is calling you a thief . 沒 人 叫 你 小偷 . +One must be responsible for one is conduct . 人 要 为 自己 的 行为 负责 . +I work for an oil company . 我 為 一家 石油 公司 工作 . +The Oscar ceremonies are Hollywood is biggest extravaganza . 奥斯卡 颁奖典礼 , 是 好莱坞 最 盛大 的 活动 . +We enjoyed watching TV . 我們 喜歡 看電視 . +Did not you write a letter to him ? 你 沒 寫信 給 他 嗎 ? +I am so fat . 我 好 胖 哦 . +Mary is studying in her room . 瑪麗 在 她 的 房間 裡 讀 書 . +I just got your letter yesterday . 我 昨天 剛 收到 你 的 信 . +How hot is that ? 那個 東西 有 多 熱 ? +Is there life on Mars ? 火星 上 有 生命 嗎 ? +" Shall I have him call you when he gets back ? " " Yes , please . " “ 等 他 回来 , 我 要 让 他 给 你 打电话 吗 ? ” “ 是 的 , 谢谢 . ” +You 'd better go to see your family doctor at once . 你 最好 立刻 去 看 你 的 家庭 醫生 . +Let me introduce you to him . 讓 我 把 你 介紹 給 他 . +Did you push the button ? 你 按了 按 鈕 嗎 ? +That was a month ago . 那 是 一個 月 前 了 . +Tom was very sick . 汤姆 很 虚弱 . +I should not have logged off . 我 不 應該 登出 . +They will be grateful . 他們 會 感激 . +Tom has no siblings . Tom 沒有 兄弟 姊妹 . +Do you believe me ? 你 相信 我 吗 ? +I am very happy . 我 很 幸福 . +Beware of thieves . 注意 小偷 . +Are you Japanese ? 你 是 日本 人 嗎 ? +Some foods make you thirsty . 有些 食物 令人 口渴 . +He picked up a mirror and examined his tongue . 他 拿 了 面 镜子 细看 自己 的 舌头 . +Tom hung his jacket in the hall closet . 汤姆 把 他 的 夹克 挂 在 大厅 衣柜 里 . +We have to fix the date for our trip quickly . 我们 必须 快点 定下 旅游 日期 . +We are special . 我们 很 特别 . +The show was wonderful , but the tickets were too expensive . 这场 秀 棒极了 , 但是 门票 太贵 了 . +Everybody knew Tom was good at French . 每个 人 都 知道 汤姆 的 法语 很 好 . +I think you are a really nice guy . 我 認為 你 真的 是 一個 好人 . +Would you like to go abroad ? 你 想 出 國 嗎 ? +All I want is my freedom . 我 只要 自由 . +I will study your report . 我 會 研究 你 的 報告 . +Did Tom not know what to do ? 汤姆 不 知道 该 做 什么 吗 ? +London , the capital of England , is on the Thames . 英国 首都 伦敦 在 泰晤士河畔 . +I ate curry last night . 我 昨晚 吃 了 咖喱 . +She married a rich man . 她 嫁给 了 一个 有钱人 . +Tell me what you did to Shounan . 告诉 我 你 对 湘南 做 了 什么 . +Tom was sitting alone at one of the tables near the door . 湯姆 獨自 坐在 門邊 一個 桌子 旁 . +I wondered if her story was true . 我 想 知道 她 的 故事 是否是 真的 . +You should not have done it . 你 不 應 該 做 的 . +Customs include food , celebrations and dancing . 风俗习惯 包括 食物 , 庆祝 和 舞蹈 . +I am not afraid of dying . 我 不怕死 . +Our mother bought us a puppy . 我們 的 媽媽 買 了一 隻 小狗 給 我們 . +What will you be doing at this time tomorrow ? 你 明天 这个 时候 会 是 在 做 什么 ? +He is very influential in the world of medicine . 他 在 医学界 有 很大 的 影响力 . +Please speak more loudly . 請 說 大聲 一點 兒 . +I understood Tom is point of view . 我 理解 汤姆 的 观点 . +We have less than five minutes to evacuate the whole building . 我们 有 不到 五分钟 来 疏散 整栋 楼 的 人 . +I have never known anyone as hypocritical as you . 我 从来 没有 见 过 谁 像 你 这么 虚伪 的 . +He threw a rock into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +I 'd like something to eat . 我 想 吃 点 东西 . +The road is very treacherous . 这 条路 挺 险恶 . +We want a new carpet . 我们 想要 一条 新 毯子 . +Tom did not write back to Mary . 汤姆 没 给 玛丽 写 回复 . +It is pitch black outside . 外面 一片 漆黑 . +I am not sure . 我 不 确定 . +You can use my car if you like . 如果 你 喜歡 你 可以 用 我 的 車 . +This is a stupid design . 这份 设计 很蠢 . +Nobody would listen to me . 沒 有人 會 聽 我 說 . +He arrived after the bell rang . 鈴 響 後 他 就 到 了 . +I said that . 我 是 那樣 說 的 . +Tom is in the living room . 汤姆 在 起居室 里 . +Nice to meet you . 很 高興 認識 你 . +I told Tom what to do . 我 告诉 了 汤姆 要 做 什么 . +When was Tom fired ? 湯姆 什麼 時候 被 解雇 的 ? +She is as busy as Tom . 她 和 湯姆 一樣 忙 . +Cities are exciting places , but also stressful . 城市 是 令人 興奮 的 地方 , 但 也 會 讓 人 產生 壓力 . +It is never too late to make amends . 彌補 永遠 不 會 太晚 . +I can win this time . 我 這 回能 贏 . +Leave the room immediately . 馬 上 離開 房間 . +Turn left . 向左转 . +Jealousy made him do that . 嫉妒 讓 他 那樣 做 . +Who invented that ? 那 是 谁 发明 的 ? +Which translation of this book do you think is better , the French one or the English one ? 你 觉得 这 本书 的 哪个 译本 比较 好 ? 法语 的 还是 英语 的 ? +I am the owner of this house . 我 是 這 房子 的 主人 . +I already talked to this student . 我 已经 和 这个 学生 谈 过 话 了 . +He is often absent from school . 他 经常 翘课 . +Why do not you stay a little while ? 你 為 什麼 不 留下 來 一會兒 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 親切 . +Have you taken your medicine yet ? 您 已经 吃 过 药 了 吗 ? +There is been a death in his family . 他 的 家 不幸 有人 身亡 . +I agreed with her . 我 同意 她 . +Do not move ! 别动 ! +It was beginning to snow . 開始 下雪 了 . +This tunnel is twice as long as that one . 這條 隧道 是 那 條 的 兩倍 長 . +I think you should open an account here . 我 认为 你 应该 在 这里 开 个 账户 . +Do you ever dream about flying through the sky ? 你 曾經 夢想 在 天空 飛翔 嗎 ? +My left eyelid is twitching . 我 的 左 眼皮 在 跳 . +Do I have to do it right away ? 我 必須 立刻 做 嗎 ? +He has not written to us since last February . 他 從 去年 二月 開始 就 沒 寫信 給 我們 . +He is good at driving . 他 擅長 駕駛 . +He may have lost his way . 他 可能 迷路 了 . +We use a lot of water every day . 我們 每天 用 很多 的 水 . +I am playing volleyball now . 我 现在 在 打 排球 . +It is time for dinner . 吃 晚 飯 的 時間 到 了 . +I like mathematics . 我 喜歡 數學 . +That white building is a hospital . 那棟 白色 的 建築物 是 一家 醫院 . +At the time there were no native English speakers teaching in any public school . 當時 沒有 任何 以 英語 為 母語 的 人 在 公立 學校 任教 . +I am glad to have her company . 我 很 高興 有 她 的 陪伴 . +What did you do over the weekend ? 你 整個 週末 做 了 什麼 ? +You stink . 你 身上 发臭 了 . +Do you speak French ? 你 會 講 法語 嗎 ? +I was a high school student at that time . 我 当时 是 高中生 . +It is not important . 这 不 重要 . +I am exhausted . 困死 了 . +I would not sell that at any price . 任何 價格 我 都 不 會 賣 . +I am married . 我 结婚 了 . +I will think it over . 我 會 考慮 一下 . +His little brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +I was scared all the time . 我 一直 很 害怕 . +Tell me what to do with it . 告诉 我 拿 它 做 什么 . +I could answer all the questions . 我 能 回答 所有 的 問題 . +There was a lot of snow last year . 去年 下 了 很多 雪 . +He asked after you . 他 問候 了 你 . +Which book is yours ? 哪 本 是 你 的 书 ? +Are you single ? 你 是 单身 吗 ? +Take a breath and hold it . 深 吸 一口 氣然 後 屏住 氣 . +If I had worked hard in my youth , I would be successful now . 如果 我 年 輕 的 時候 努力 工作 , 我 現在 就 成功 了 . +Tom asked Mary to buy a gift for John . 汤姆 叫 玛丽 买 一份 礼物 给 约翰 . +I am really concerned about your future . 我 真的 很 關心 你 的 未來 . +You are blushing . 你 脸红 了 . +The dolphin and trainer communicated much better than we expected . 海豚 和 驯养 员 交流 得比 我们 所 期望 的 好得多 . +We can rest . 我们 可以 休息 . +I need it as quickly as possible . 我 尽快 需要 . +The strike affected the nation is economy . 罢工 影响 了 国家 经济 . +What are you doing down there ? 你 在 那里 干什么 ? +Prices are going up . 物价上涨 了 . +He is very good at playing guitar . 他 很 擅長 彈 吉他 . +Tom hid himself under the table . Tom 躲 在 桌子 底下 . +She came here as soon as she heard it . 她 一來 這裡 就 聽到 了 . +He made a clean break with them . 他 跟 他们 干脆 地 断绝来往 了 . +Could you recommend another hotel ? 你 能 推薦 另一家 旅館 嗎 ? +Tom is drinking some water . 汤姆 在 喝 点 水 . +How about going to see a movie tonight ? 今晚 看 电影 怎么样 ? +We got behind the car and pushed . 我們 到 車子 後 面 推車 . +You do not need to help me . 你 不用 帮 我 . +She stirred her coffee with a teaspoon . 她 用 茶匙 搅 她 的 咖啡 . +He lived in the center of London . 他 住 在 倫敦 市中心 . +Not a single person arrived late . 沒有 一個 人 遲 到 . +He will be back in a second . 他 很快 就 会 回来 . +Countless stars were twinkling in the sky . 无数 星星 在 天上 闪烁 . +She was able to answer whatever was asked . 不管 问 了 什么 , 她 都 能 回答 . +I will give you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +She planted roses in the garden . 她 在 花園 裡 種 了 玫瑰 . +It is rude of him not to give me a call . 他 不 打电话 给 我 真是 无礼 . +I will never forget going to Hawaii with her . 我 永远 不会 忘记 那次 跟 她 一起 去 夏威夷 . +My plans failed one after the other . 我 的 計劃 一個 接 一個 的 失敗 了 . +He said , " I want to be a doctor . " 他 說 : 「 我 想成 為 醫生 . 」 +Open your mouth and close your eyes . 张开嘴巴 闭上眼睛 . +Moderate exercise is necessary for good health . 適度 運動 對 身體 健康 是 必要 的 . +Underage drinking is a crime . 未满 年龄 饮酒 是 罪行 . +We bought a pound of tea . 我們 買 了 一磅 的 茶 . +I hope Tom appreciates it . 我 希望 汤姆 欣赏 它 . +Could you bring me some water ? 能 给 我 带 一点 水 来 吗 ? +Can you come for dinner tonight ? 你 今天 晚上 能 來 吃 飯 嗎 ? +Where can I take a bath ? 我 能 在 哪裡 洗澡 ? +That is an interesting piece of information . 这 是 条 有趣 的 信息 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He threw a piece of meat to a dog . 他 朝 狗 扔 了 一块 肉 . +The family is eating breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +I will see you again this afternoon . 今天下午 我 會 再 見 到 你 . +Slight inattention can cause a great disaster . 失之毫厘 , 谬之千里 . +I do not want to go alone . 我 不想 独自 前往 . +You should not keep them waiting so long . 你 不该 让 他们 等 那么 久 . +Japan is not rich in natural resources . 日本 並 不 擁有 豐富 的 自然 資源 . +Tom was very scared . 湯姆 非常 害怕 . +Do you think Tom is having fun ? 你 認為 湯姆 玩 得 高興 嗎 ? +He had no luck in finding work . 他 不幸 找 不到 工作 . +Tom said he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +What is your favorite home @-@ cooked food ? 你 最 喜歡 的 家常菜 是 什麼 ? +I am thinking of going to Europe . 我 正在 考慮 去 歐洲 . +I remember mailing the letter . 我 記 得 寄 了 信 . +He failed to answer the letter . 他 沒有 回信 . +I have an urgent message from Tom . 我 收到 汤姆 的 一条 紧急 消息 . +How is your family ? 你 家里人 都 还好 吗 ? +There are too many people there . 那裡 太 多 人 了 . +Although old , he is still very much alive . 虽然 上 了 年纪 , 他 依旧 充满活力 . +Those two are exactly alike . 那 兩個 是 一模 一樣 的 . +Tom says he is not sure if he can do that , but he says he will try . 汤姆 说 他 不 确定 是否 能 做到 , 但是 他 说 会 尝试 . +Kabul is the capital of Afghanistan . 喀布尔 是 阿富汗 的 首都 . +I wish you could have been there . 要是 你 能 在 那裡 就 好 了 . +You had better go to the infirmary . 你 最好 去 一下 医务室 . +It belongs to me now . 它 现在 归 我 了 . +My father has already given up smoking and drinking . 我 爸爸 已经 戒烟 戒酒 了 . +Please tell me what you think . 請 告訴 我 你 的 想法 . +I do not have the address now . 我 沒有 現在 的 地址 . +I noticed a pattern . 我 注意 到 一個 圖案 . +I accompanied her on the piano . 我 為 她 作 鋼琴 伴奏 . +Today is my sister is birthday . 今天 是 我 姊姊 的 生日 . +Can I register for that class ? 我 可以 登記 這 堂 課 嗎 ? +Does Tom drink coffee ? 汤姆 喝咖啡 吗 ? +He lives somewhere about here . 他 住 在 這 附近 某個 地方 . +I had a good dream last night . 昨晚 , 我 做 了 个 好 梦 . +Go straight down this street and turn right at the third light . 沿着 这 条路 直 走 , 到 第三个 红绿灯 的 地方 右转 . +There is something strange going on . 正 有 什么 奇怪 的 事情 发生 着 . +I would not do that if I were you . 如果 我 是 你 , 我 就 不 做 那件事 . +Scotland is famous for its woollen textiles . 蘇格蘭 以 其 羊毛 紡織品 而 著名 . +He broke into a house . 他 闖入 一間 房子 . +What is the name of this tune ? 这歌 叫 什么 名字 ? +I am very thirsty . 我 很渴 . +Tom was able to make himself understood in French when he visited Paris . 在 巴黎 , 沒 有人 能夠 理解 湯姆 的 法文 . +A boy of seventeen is often as tall as his father . 十七 歲 的 男孩 常常 長 得 和 他 父親 一樣 高 . +Put your hands up . 手 举 起来 . +What do you want ? 你 想要 什麼 ? +One can not help many , but many can help one . 一个 人 帮不了 许多 个 , 但 许多 人能 帮助 一个 . +This size is too large for me . 这个 码 对 我 来说 太 大 了 . +You did not write anything . 你 甚麼 也 沒寫 . +My brother seems to enjoy himself at college . 我 弟弟 似乎 在 大学 过 得 很 愉快 . +I have decided . 我 決定 了 . +She bought two pounds of butter . 她 買 了 兩磅 的 奶油 . +May I have a talk with you ? 我 能 和 你 谈谈 吗 ? +This bomb can kill a lot of people . 这个 炸弹 可以 炸死 很多 人 . +You have set a bad example . 你 做 了 个 坏 榜样 . +What is this supposed to mean ? 這 該 是 甚麼 意思 ? +They were frightened . 他們 被 嚇到 了 . +Many of the workers died of hunger . 许多 工人 死 于 饥饿 . +If I were invisible , I would not have to wear anything . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +He has had a crush on her . 他 一直 暗恋着 她 . +I got up very late this morning . 今天 早上 我 起 得 很 晚 . +Please let me try the game . 請 讓 我 試試 這個 遊戲 吧 . +My father got home late last night . 我 父親 昨晚 很 晚才 回家 . +I was having a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I will be right with you . 我 馬 上 就 来 . +The deadline is approaching . 期限 近 了 . +Have you read today is paper yet ? 你 看 過 今天 的 報紙 了 嗎 ? +Traffic downtown is all backed up . 市中心 的 交通 都 堵塞 了 . +These dresses are too large . 這些 洋裝 太 大 . +He is a sucker for beautiful women . 他 非常 喜歡 漂亮 的 女人 . +I really like to read . 我 真 喜欢 阅读 . +I tried very hard to put an end to their heated argument . 我 努力 地 平息 他們 不斷 加溫 的 爭執 . +She was elected chairman of the committee . 她 當 選為 委員會 主席 . +Why do you want to die ? 你 为什么 想 死 ? +I really do not know Tom . 我 真不 了解 汤姆 . +My father likes pizza . 我 父親 喜歡 批薩 . +He is wearing gloves . 他 戴 着 手套 . +I do not get what you mean . 我 不 明白 你 的 意思 . +We left the final decision to him . 我們 讓 他 做 最 後 的 決定 . +She was in a hurry to see her father . 她 急于 见 她 的 父亲 . +Beer bottles are made of glass . 啤酒瓶 是 玻璃 做 的 . +We were nearly frozen to death . 我们 几乎 被 冻死 了 . +I do not believe Tom is version of the story . 我 不 相信 汤姆 的 说法 . +They supplied the soldiers with enough food and water . 他们 给 士兵 提供 了 充足 的 食物 和 水 . +Burn this letter after you finish reading it . 看完 这 封信 请 把 它 烧掉 . +I was struck by lightning . 我 被 雷劈 了 . +Here is a book . 這裡 有 一本 書 . +Would you please come again later ? 請 您 稍 後 再 來 好 嗎 ? +Buy Tom a beer . 给 汤姆 买 一瓶 啤酒 . +It is not quite ready yet . 还 没 怎么 准备 好 . +I would like to check out right now . 我 想現 在 結帳 離開 . +In that case , I will change my mind . 这样的话 , 我会 改变 主意 . +You are German , are not you ? 你 是 德国人 , 不是 吗 ? +You have a good sense of humor . 你 很 有 幽默感 . +In addition to English , he speaks German . 除了 英文 , 他 還 說 德文 . +The garden was surrounded by a wooden fence . 花园 被 木 栅栏 围 了 起来 . +She was wearing long boots . 她 穿着 长靴 . +The phone rang . 電話 正在 響 . +My mother took me to the park . 媽媽 帶 我 去 公園 . +Can you solve this problem ? 你 能 解決 這個 問題 呢 嗎 ? +Wait a moment . 等 一下 . +A lot of people came today . 今天 來 了 很多 人 . +Who wrote Hamlet ? 哈姆雷特 是 誰 寫 的 ? +We caught the thief . 我们 抓住 了 小偷 . +You must not go out after dinner . 晚 飯 後 你 不 可以 外出 . +The boy I love does not love me . 我 爱 的 那个 男孩 不 爱 我 . +I think he is something of a poet . 我 觉得 他 有 几分 像 个 诗人 . +The next one is for you . 下 一个 给 你 . +We will stay quiet . 我們 會 保持 安靜 . +I do not blame you for hitting him . 我 不 怪 你 撞 到 他 . +No one comes to visit me anymore . 已经 没人来 拜访 我 了 . +A fox is not caught twice in the same snare . 一只 狐狸 不会 两次 掉入 同一个 陷阱 里 . +What does Tom know about me ? 汤姆 知道 我 的 什么 ? +You should quit smoking . 你 應該 戒菸 . +They say that golf is very popular in Japan . 他们 说 高尔夫 在 日本 很 流行 . +I dislike being alone . 我 不 喜歡 獨處 . +The flash was not working , so he could not take a picture in the dark . 因为 闪光灯 坏 了 , 他 不能 在 黑暗 中 拍照 . +She showed me her album . 她 給 我 看 她 的 相簿 . +I do not have a computer . 我 沒有 電腦 . +How is your wife , Tom ? 你 媳妇 怎么样 , 汤姆 ? +It is not necessary to answer that letter . 沒有 必要 回 那 封信 . +The doctor examined my throat . 醫生 檢查 了 我 的 喉嚨 . +This apple is too small . 這個 蘋果 太小 . +I met Tom for the first time three days ago . 我 三天 前 第一次 见 汤姆 . +I can speak English . 我 會 講 英語 . +If you really want to know , why do not you ask Tom ? 如果 你 真的 想 知道 的话 , 为什么 不问 一下 汤姆 呢 ? +You are always late . 你 总是 迟到 . +It is wrong to tell a lie . 說 謊 是 錯誤 的 . +Prices have reached a 13 @-@ year high . 价格 已经 达到 了 十三年 以来 的 最高点 . +He went to London in 1970 . 他 在 1970 年 前往 倫敦 . +I am looking for an old man . 我 正在 尋找 一位 老人 . +Can you just please go ? 能 請 你 離開 嗎 ? +She thought that I was a doctor . 她 以为 我 是 大夫 . +I do not like either tea or coffee . 我 不 喜歡 茶 也 不 喜歡 咖啡 . +Tom was the first to react . 湯姆 是 最先 作出 反應 的 . +I want you to understand why you have to do this . 我 想 让 你 明白 为啥 你 必须 这么 做 . +I will not need any help . 我 不 需要 任何 帮助 . +The door opened slowly . 门 慢慢 地 开 了 . +I do not get the joke . 我 没 明白 那个 笑话 . +The wall is thirty yards long . 這 堵 牆長 三十 碼 . +I have never gone fishing at night . 我 从没 在 晚上 钓鱼 . +She enjoyed herself at the concert . 她 在 音樂會 上 玩 得 很 開心 . +A rock fell from above . 一块 岩石 从 上面 落下 . +I think that I am intelligent . 我 觉得 我 很 聪明 . +They won . 他们 赢 了 . +Suddenly , it started to rain very hard . 突然 就 下起 了 大雨 . +Throw it away . 扔掉 +She is going to Chiba Stadium . 她 將 去 千葉 球場 . +We know the identity of Tom is killer . 我 㥃 知道 了 湯姆 的 殺手 的 身份 . +Tom will not let you in his house . 汤姆 不会 让 你 进 他 的 屋子 . +Tom looked Mary in the eye . 湯姆 與 瑪麗 對 視 . +Did you have a good time last night ? 你 昨天晚上 過 得 好 嗎 ? +The doctor advised my father to cut down on smoking . 医生 建议 我 父亲 减少 吸烟 . +His ideas are always practical . 他 的 主意 总是 可行 的 . +Cars are expensive . 车子 很贵 . +He put on an air of innocence . 他 摆出 一副 无辜 的 样子 . +What time is it now in Boston ? 波士顿 现在 几点 ? +I promised him that I would come today . 我 答应 他 我 今天 会来 . +I can recommend this book to you . 我 可以 向 你 推薦 這 本書 . +In another two weeks you will be able to get out of the hospital . 再 过 两周 你 就 可以 出院 了 . +Tom needs to be very careful . 湯姆 需要 很 小心 . +It is rare to meet nice people like you . 很少 能 见到 像 你 那么 好 的 人 . +Please replace the empty ink cartridge in the printer . 请 把 打印机 里面 的 空 的 墨粉 鼓 换掉 . +It is an hour is drive from here to there . 从 这里 到 那里 驾车 一 小时 . +You sure were noisy last night . 你 昨晚 確實 很 吵 . +Has anything changed ? 有 任何 事情 改變 了 嗎 ? +You are tired , are not you ? 你 累 了 , 不是 吗 ? +Please sing a song . 請 唱 一首歌 . +Please tell me everything is OK . 請 告訴 我 一切 都 好 . +I eat bread . 我 吃 面包 . +She bit into the apple . 她 咬了一口 蘋果 . +She left here right away . 她 馬 上 離開 了 這裡 . +I expected him to offer some help . 我 期待 他 提供 一些 幫助 . +I went to school in Boston . 我 曾经 在 波士顿 上学 . +I have not eaten anything for days . 我 好多天 没 吃 东西 了 . +I did not hear anyone talking . 我 沒 聽到 任何人 在 說 話 . +You can count on it . 你 可以 依靠 它 . +Let is not talk about it any more . 讓 我們 不要 再 談論 它 了 . +I am so sorry I hurt your feelings . 我 很 抱歉 伤害 了 你 的 感情 . +It is very hard getting a taxi in this city . 在 这个 城市 , 很难 打到 的 . +I phone him every day . 我 每天 都 给 他 打电话 . +Dear Santa , I want a girlfriend for Christmas . 圣诞老人 , 我 想要 一个 女朋友 当 圣诞礼物 . +She is really smart , is not she ? 她 真的 很 聪明 , 不是 吗 ? +Tom is a decent sort of guy . 汤姆 是 个 诚实 的 男孩 . +Mass production reduced the price of many goods . 大量 生產 降低 許多 商品 的 價格 . +Do you have plans for tonight ? 今晚 有 什么 计划 吗 ? +Perhaps he missed the train . 他 可能 错过 了 火车 . +I thought we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +We go fishing once in a while . 我們 偶爾 去 釣 魚 . +This glass contains water . 這個 杯子 裡 有 水 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +I waited for my friend for an hour . 我 等 我 的 一个 朋友 等 了 一 小时 . +I know this is important to you . 我 知道 这 对 您 来说 很 重要 . +Do you often come here ? 您 经常 来 这儿 吗 ? +She wants a new dress badly . 她 很 想要 一条 新 的 连衣裙 . +Here are some interesting links . 這裡 有些 有趣 的 連結 . +I should clean my room . 我 应该 打扫 我 的 房间 . +My dad does not like soccer . 我 爸爸 不 喜欢 足球 . +If time permits , I will visit the museum . 如果 時間 允許 , 我 會 去 參觀 博物 館 . +This is not my car . 這 不是 我 的 車 . +Who is the author of this book ? 這 本書 的 作者 是 誰 ? +He drank a cup of coffee . 他 喝 了 一杯 咖啡 . +I can not understand why you are so critical of him . 我 不 明白 为什么 你 这么 批评 他 . +Pilots communicate with the airport by radio . 飛行員 用 無線電 與 機場 溝通 . +Show me a cheaper one , please . 請 給 我 看看 便宜 一點 的 . +Tom is able to swim well . 湯姆 游泳 可以 游 得 很 好 . +Will you stay at home ? 你 会 待 在家 吗 ? +Sensing danger , he ran away . 他 一 嗅到 风声 不 对 , 就 逃之夭夭 了 . +I was able to find out his address . 我 能 找到 他 的 地址 . +They do not even know why . 他們 甚至 不 知道 為 什麼 . +He owes his success to good luck . 他 將 他 的 成功 歸 於 好 運 . +How much does it cost ? 多少 錢 ? +He will come on foot or by bicycle . 他 走路 或者 骑车 过来 . +Thank you for your patience . 谢谢 你 的 耐心 . +You work hard . 你 工作 努力 . +Do you want to stay any longer ? 你 想 再 待 下去 嗎 ? +He has all kinds of books . 他 有 各种各样 的 书 . +Please open the bottle . 請 打開 瓶子 . +English is just one of over 2,700 languages in the world today . 今天 , 英語 只是 世界 上 超過 2 , 700 種 語言 的 其中 之一 . +He designed the new building . 他 設計 了 新 建筑 . +Elephants live in Asia and Africa . 大象 生活 在 亞洲 和 非洲 . +How about dining out tonight ? 我们 今晚 出去 吃 怎么样 ? +I do not really use Facebook that much . 我 並 沒有 花 那麼 多 時間 在 Facebook 上 . +It is just a cold . 只是 感冒 而已 . +You can use this computer any time . 你 可以 隨時 使用 這 台 電腦 . +I am looking forward to seeing you again . 我 期待 再 見 到 你 . +He knows better than to marry her . 他 聰明 到 不 會 娶 她 . +May I speak with the teacher ? 我 能 和 老师 说话 吗 ? +Why do not you wait here while I finish what I am doing ? 为什么 你 不 在 这里 等到 我 做 完 为止 ? +Love is like oxygen . 爱 就 像 氧气 . +Please show me those pictures . 請 讓 我 看看 那些 圖片 . +We need some more coffee . 我們 需要 多 一點 咖啡 . +He made many excuses for being late . 他 為 遲 到 找 了 很多 的 藉口 . +A wise man would not say such a thing . 一个 聪明人 不会 说 这种 话 . +You should drink a lot of liquid . 你 應該 喝 大量 的 液體 . +I have seen the film before . 我 已经 看过 这部 电影 了 . +We were on the train for ten hours . 我們 在 火車 上 十個 小 時 . +Arabic is read from right to left . 阿拉伯语 要 从 右 往 左 读 . +The students have returned . 学生 们 回来 了 . +I have lost my cap . 我 把 帽子 弄 丟了 . +Who is that guy ? 那家伙 是 谁 ? +Water evaporates when it is heated . 當 水 被 加熱 時 , 水汽 蒸發 . +Choose your favorite racket . 選擇 你 喜歡 的 球拍 . +What is the matter with you ? 你 怎么 了 ? +I am a student at Oxford University . 我 是 牛津大学 的 学生 . +He is not qualified for the job . 他 不 勝任 這份 工作 . +She ran very fast to catch up with the other members . 她 跑 得 很快 是 为了 赶上 其他 成员 . +He is on goods terms with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +What is your husband is name ? 你 丈夫 叫 什么 ? +It is the things that we do not possess which seem to us most desirable . 得不到 的 东西 就 最 想得到 . +Tom will paint the fence tomorrow . Tom 明天 將漆 柵欄 . +He has a nice income . 他 收入 可观 . +He studies history at college . 他 在 大学 修读 历史 . +She cooks chicken the way I like . 她 用 我 喜歡 的 方式 烹調 雞肉 . +I have to buy Christmas gifts . 我 必须 要 买 圣诞礼物 了 . +How much is that mountain bike ? 那 辆 山地车 多少 钱 ? +You should study harder . 你 應 該 更 努力 學習 . +She will almost certainly pass the test . 她 幾乎 確定 會 通過 測驗 . +The sea is blue . 大海 是 蓝色 的 . +Are they students ? 他們 是 學生 嗎 ? +You are a student . 您 是 學生 . +She suggested to me that I call off the meeting . 她 建议 我 取消 会议 . +I can not stand that noise any longer . 我 不能 再 忍受 那 噪音 了 . +We go to school by bus . 我們 乘 公共 汽車 去 上 學 . +I went to a park this morning . 今天 早上 我 去 了 公园 . +I get along with my younger brother . 我 與 我 的 弟弟 相處 融洽 . +I wish you had told me the truth then . 但 願 你 那時候 就 告訴 我 真相 . +He wore a mask so that no one could recognize him . 他 戴 著 面具 以至 於 沒 有人 認出 他 . +Do not take things so seriously . 不要 把 事情 看得 這麼 嚴重 . +Let is start the party . 讓 我們 開始 這個 派 對 吧 . +I got her to clean my room . 我 讓 她 清掃 了 我 的 房間 . +Not everyone is smiling . 不是 每個 人 都 在 笑 . +Tom gave me a pen . 湯姆 給 了 我 一枝 筆 . +I was about to leave when you came in . 你 来 的 时候 我 刚好 要 走 . +I am amazed at your audacity . 我 对 你 的 大胆 感到 很 惊讶 . +He must be over sixty . 他 应该 超过 六十岁 了 . +His car is really cool . 他 的 車 真的 很酷 . +Watch out ! 当心 ! +The accident almost cost him his life . 事故 差点 让 他 丢 了 性命 . +She is just a child . 她 只是 個 孩子 . +She was killed in an automobile accident . 她 死 於 一場 汽車 車禍 . +Tom did not wear jeans yesterday . 湯姆 昨天 沒穿 牛仔 褲 . +Our baseball team is very strong . 我們 的 棒球 隊 很 強 . +I want us to do it together . 我 想 讓 我們 一起 做 . +The towel was not useful at all . 毛巾 完全 没起 作用 . +Three months is too short a time to finish the experiment . 要 完成 实验 , 三个 月 太短 了 . +I have been here for a long time . 我 在 這裡 很 長 一段 時間 了 . +I often use SSH to access my computers remotely . 我 经常 使用 SSH 来 远程 连接 到 我 的 电脑 . +You have been late for school more often than before . 你 比 以前 更 容易 上課 遲到 了 . +Your plan seems better than mine . 你 的 計劃 似乎 比 我 的 好 . +I wish I were a little taller . 但 願 我 長 高一 點 . +We buy eggs by the dozen . 鸡蛋 是 论 打买 的 . +That is exactly what he said . 这 就是 他 所说 的 . +I will let you know when I have figured it out . 我 搞 明白 了会 告诉 你 . +You said you were in trouble . How can I help ? 你 说 你 有 困难 . 我 能 帮忙 吗 ? +You do not have to answer quickly . 你 不必 快速 作答 . +He often sits for many hours reading books . 他 常常 坐 着 看书 一连 好几个 小时 . +There are seven continents on the earth . 地球 上 有 七大洲 . +Mary wants to become a teacher . 瑪麗 想成 為 一名 教師 . +Now it is time for the weather forecast . 现在 是 天气预报 的 时间 . +There are many shrines in Kyoto . 京都 有 許多 神社 . +I will attend . 我 會 參加 . +Tom told Mary not to waste her time trying to convince John to help . 汤姆 对 玛丽 说 , 不要 浪费时间 去 说服 约翰 来 帮忙 . +Tom seems nice . 汤姆 看着 是 个 好人 . +We have more customers than we can count . 我們 的 顧客 比 我們 可以 計數 的 更多 . +This hotel does not have a swimming pool . 這個 酒店 沒有 游泳池 . +Call me if you discover anything . 如果 你 發現 什麼 , 請 打 給 我 . +Tom and I are friends . 湯姆 和 我 是 朋友 . +You really are an idiot . 你 真的 是 ( 一 ) 個 笨蛋 . +It is all your fault . 都 是 你 的 错 . +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +This is the very book you wanted . 這 是 你 非常 想要 的 書 . +Tom was injured in the blast . 汤姆 在 爆炸 中 受伤 . +I wish to see my father . 我 希望 看看 我 的 父親 . +I have just had lunch . 我 剛 吃 過午 飯 . +Your wife is mad at you . 你 太太 在 生 你 的 氣 . +I could not get to sleep . 我 無法 入睡 . +Let is go to a movie . 讓 我們 去 看 電影 . +I intend to become a lawyer . 我 有志 成为 一名 律师 . +She is everything to him . 她 是 他 的 一切 . +He lives just across the road . 他 就 住 在 馬路 對面 . +We could not do that . 我们 做 不到 . +That is no business of his . 那 不關 他 的 事 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +She looked more beautiful than ever . 她 似乎 比 以往 任何 时候 都 漂亮 . +She gets up early every morning . 她 每天 早上 早起 . +When you have finished reading this letter , burn it . 看完 这 封信 请 把 它 烧掉 . +Why should we help ? 为什么 我们 应该 要 帮助 ? +His house was small and old . 他 的 房子 又 小 又 旧 . +I do not think this is correct . 我 觉得 这 不是 真的 . +I like pop music . 我 喜歡 流行 音樂 . +No one can control him . 沒人 管束 或 開導 他 . +I put it in the drawer . 我 把 它 放在 抽屜 裡 . +Tom , Mary and John are all here . 湯姆 、 瑪麗 和 約翰 都 在 這裡 . +The conference is to be held in Tokyo the day after tomorrow . 会议 将 在 后天 于 东京 举行 . +My mother is making a cake . 我 的 母親 在 做 蛋糕 . +I do not trust him any longer . 我 再也 不 相信 他 了 . +Go straight home . 直接 回家 . +Tom is out cold . 汤姆 正 昏迷不醒 . +I saw a horse pulling a cart . 我 看見 一匹 馬拉著 一架 馬車 . +In the light of what you told us , I think we should revise our plan . 根据 你 所说 的话 , 我 认为 我们 应该 重新 审视 我们 的 计划 . +Where did you get the money to buy that dress ? 你 從 哪兒 弄來 的 錢 去 買 那件 衣服 ? +I am still young . 我 還 年輕 . +I spent all day in the library . 我 整天 待 在 图书馆 . +He has a lot of money . 他 有 很多 钱 . +The house burned to the ground before the fire truck arrived . 消防车 到达 之前 , 房子 就 全 烧 了 . +Nearly all Japanese have dark hair . 几乎 所有 的 日本 人 头发 都 是 黑色 的 . +I have missed another chance . 我 又 失去 了 一次 机会 . +Take the pan off the fire . 把 平底 鍋離 火 . +I can see you are good at this . 我 看 你 擅长 做 这事 . +The topic is worth discussing . 這 是 值得 探討 的 話題 . +Many young people in Japan eat bread for breakfast . 許多 日本 的 年 輕 人 吃 麵 包 當 作 早餐 . +How did you find my house ? 你 怎么 找到 我 的 房子 的 ? +This is a good movie . 這 是 一部 好 電影 . +" Is that Tom calling again ? " " Yes . He calls every evening these days . I should not have given him my number . " “ 又 是 汤姆 的 电话 ? ” “ 嗯 . 最近 他 每天晚上 都 会 打 过来 . 当时 就 不该 给 他 我 的 号码 的 . ” +Do what you think is right . 做 你 認為 正確 的 事 . +I was quite annoyed . 我 被 烦死 了 . +I had some calls to make . 我 要 打 几个 电话 . +You can not build buildings on swampy land . 你 不能 在 沼澤 地上 建造 建築物 . +Tom is laughing . 汤姆 在 笑 . +The leaves fell to the earth . 树叶 掉 在 地上 . +Tom slept through the entire movie . 湯姆 在 整場 電影 放映 時 都 在 睡覺 . +I am afraid of dying . 我 怕死 . +My father drives a very old car . 我 的 父親 開 一輛 舊車 . +Are you hiding something ? 你 是不是 瞒 着 我 什么 ? +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 就 方寸大乱 了 . +Do your best . 盡力 而為 . +Could you please tell me again why you are late ? 你 能 再 向 我 解释 一遍 你 为什么 迟到 了 吗 ? +Does Tom play tennis ? 湯姆 打 網球 嗎 ? +You can not depend on Tom . 你 不能 靠 湯姆 . +Are there any other suggestions ? 還 有 其他 建議 嗎 ? +Would you like to know how I did that ? 你 想 知道 我 怎么 做到 的 吗 ? +What are you learning at school ? 你 在 学校 学 些 什么 呀 ? +Try to make the most of your time . 尽量 试 着 用好 你 的 时间 . +My job is washing dishes . 我 的 工作 是 洗碗 . +The plane made a perfect landing . 這 架 飛機 完美 的 著陸 了 . +Are you feeling better now ? 你 觉得 好些 了 吗 ? +I am glad I could help out . 能够 出 一份 力 太好了 . +Tom nearly died tonight . 汤姆 昨晚 差点 死 了 . +He is as tall as his father . 他 和 他 爸爸 一样 高 . +She had died before I arrived . 她 在 我 到 達 之前 去世 了 . +Do not be afraid to make a mistake . 別 害怕 犯錯 . +You are a wonderful woman . 你 是 位 了不起 的 女性 . +Alcohol consumption is increasing every year . 酒 的 消费 每年 都 在 上升 . +The two teams fought very hard . 两队 打 了 场 硬仗 . +It might snow tonight . 晚上 也许 会 下雪 . +As soon as the door opened , they ran away . 门 一开 , 他们 就 逃走 了 . +Do not you know that ? 你 不 知道 那件事 吗 ? +This does not concern you . 这 不是 你 的 事 . +The weather was so cold that the lake froze over . 天 冷 得 足以 让 湖 结冰 . +" Would you like any more ? " " No , I have had enough . " " 你 想 再 多 吃 點 嗎 ? " " 不 , 我 吃 飽 了 . " +Training will be provided . 会 有 训练 . +He gave it to me for nothing . 他 免費 把 它 給 了 我 . +He is alone . 他 獨自一人 . +While I was reading in bed last night , I fell asleep with the light on . 我 昨晚 在 床上 看书 的 时候 点着 灯 就 睡 了 . +You can buy it at any bookstore . 你 可以 在 任何 一家 書店 買到 它 . +I want something to write on . 我 想要 可以 在 上面 寫 字 的 東西 . +That is what I have to do . 那 是 我 必須 做 的 . +He has been to Hokkaido . 他 曾 去過 北海道 . +She is been working all day long . 她 已經 工作 了 一整天 . +If you want something to be done right , sometimes you have just got to do it yourself . 如果 你 想 做 对 一件 事 , 有时候 你 得 亲力亲为 . +Hippopotamuses love water . 河马 喜欢 水 . +I am a foreigner . 我 是 一個 外國 人 . +Not every country belongs to the U.N. 不是 所有 国家 都 加入 了 联合国 . +This city is cold and lonely without you . 没有 你 , 这 座 城市 寒冷 又 孤寂 . +Was the baby crying then ? 那時 嬰兒 正在 哭 嗎 ? +Spring will be here soon . 春天 快 來 了 . +We saw a funny movie last Sunday . 我們 上 星期天 看 了 一場 很 有趣 的 電影 . +He speaks poor French . 他 讲 不好 法语 . +I wish I could help you . 但 願 我 可以 幫助 你 . +Do you have a fever and a sore throat ? 你 發燒 和 喉嚨 痛 嗎 ? +What he said was over my head . 这人 讲 的 我 完全 听不懂 . +She left her gloves in the car . 她 把 她 的 手套 留在 車 上 了 . +I wish I could speak English . 但 願 我 會 講 英語 . +That is my sole concern . 这 是 我 唯一 关心 的 . +That is impossible . 这 不 可能 . +I have known her for five years . 我 已經 認識 她 五年 了 . +I wish you could come with us . 但 願 你 可以 跟 我們 一起 來 . +You should check it out . 你 應該 檢查 一下 . +That was not the main reason Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +She kissed him on the cheek . 她 在 他 的 脸颊 上 吻 了 一下 . +Sleep deprivation increases risk of heart attacks . 睡眠不足 增加 心臟病 發作 的 危險 . +Would you like some salad ? 你 要 來 點 兒 沙拉 嗎 ? +You have to leave . 你 得 走 了 . +Do you live here ? 你 住 這裡 嗎 ? +Tom knows it is over . 湯姆 知道 它 結束 了 . +Were you tired last night ? 昨晚 你 累 了 嗎 ? +She will return home next Sunday , that is , the tenth . 她 下 周日 回家 , 也 就是 10 号 . +What do you have in your bag ? 你 的 袋子 裡 有 什麼 ? +I love you more than you love me . 我 愛 你 多 於 你 愛 我 . +I am blind in the right eye . 我 的 右眼 瞎 了 . +My grandfather is in his nineties . 我 祖父 九十多 歲 了 . +I bought a camera the other day . 我 前 幾天 買 了 一台 照相 機 . +I got arrested . 我 被 逮捕 了 . +She looked away . 她 轉移 了 視線 . +This book is popular with students . 這 本書 受到 學生 的 歡迎 . +Whose book is this ? 這書 是 誰 的 ? +I will not be home next Sunday . 我 下 周日 不 在家 . +I would like to be a guitarist . 我 想要 成为 吉他手 . +She went there yesterday . 她 昨天 去 那裡 . +My sister goes to a university . 我 妹妹 上大學 . +I should be ready by 2 : 30 . 我 应该 在 2 : 30 准备 好 . +I provided him with food . 我 提供 了 他 食物 . +Tom often does not keep his promises . 汤姆 经常 不 守约 . +My family goes skiing every winter . 我 的 家人 每年 冬天 去 滑雪 . +I will keep doing it . 我 要 一直 做 下去 . +I will call for you at eight tomorrow morning . 我 明早 八点 来接 你 . +Your parents did not come , did they ? 你 的 父母 沒來 , 是 嗎 ? +Tom was so drunk that he did not even recognize me . 汤姆 醉 得 连 我 都 认不出来 了 . +Where do you want to go ? 你 想 去 哪裡 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +I like children . That is why I became a teacher . 我 喜欢 孩子 . 这 就是 为什么 我 成为 了 教师 . +I should have gone to Australia with Tom . 我 本该 和 汤姆 一起 去 澳大利亚 . +You will get into trouble if your girlfriend finds out the truth . 如果 你 女朋友 发现 真相 的话 , 你 会 有 麻烦 的 . +I am new at this kind of work . 我 新 接触 這種 工作 . +You should have shown him the device . 你 应该 给 他 看看 这 装置 . +Tom was not as handsome as Mary said he was . 汤姆 并 不是 玛丽 说 得 那样 英俊 . +A little bit of luck sometimes leads to an unexpected success . 一點點 的 運氣 有 時會 導致 意想不到 的 成功 . +Do not be afraid to make mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +Are you tired ? 你 累 了 嗎 ? +The room was cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I do not know what Tom saw . 我 不 知道 汤姆 看到 了 什么 . +He has gone to Italy to study music . 他 已經 去 義 大利 學習音 樂 了 . +It is not a dream at all . 它 根本 不是 夢 . +You look bored . 你 看 起來 很 無聊 . +Turn to the left . 向左转 . +The school is on the hill . 学校 在 小丘 上面 . +Tom was with a bunch of strangers . 汤姆 和 一堆 陌生人 在 一起 +I do not have time to play games with you . 我 没 时间 跟 你 玩游戏 . +I will never allow you to do that . 我 絶 不 會 讓 你 去 做 . +I really enjoy your company . 我 非常 享受 你 的 陪伴 . +Mary hid the money in her bra . 瑪麗 把 錢藏 在 了 文胸 裏 . +Swimming at night is dangerous . 夜里 游泳 很 危险 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I have a Facebook account . 我 有 一个 Facebook 的 帐号 . +He has no chance of succeeding . 他 沒有 成功 的 機會 . +Put out the light . 熄灯 . +This writer is Russian . 这个 作家 是 俄罗斯 人 . +I do not have any sisters . 我 没有 姐妹 . +I have not yet watched that video . 我 还 没 看过 那段 视频 . +Lots of people in Japan are indifferent to politics . 很多 日本 人 对 政治 冷淡 . +He is likely to arrive soon . 他 可能 很快 就 到 了 . +There must be some misunderstanding between us . 我们 之间 肯定 有 误会 . +My bicycle has a flat tire . 我 的 腳踏車 輪胎 沒氣 了 . +Tom was all worn out . 湯姆 完全 筋疲力盡 了 . +They helped each other with homework . 他們 互相 幫忙 做功 課 . +Tom got into trouble because of Mary . 湯姆 因為 瑪麗 陷入 了 麻煩 . +She told me that her mother had bought it for her . 她 告诉 我 她 妈妈 买 给 她 了 . +You can ask the child that is playing over there . 你 可以 問問 在 那裡 玩 的 孩子 . +You have to move . 你 得行 動 了 . +Wake me up early tomorrow morning . 明天 早上 早點 叫醒 我 . +My uncle gave me a gift . 我 叔叔 送 了 我 一样 礼物 . +Our teacher comes to school by car . 我們 老師 開車 來 學校 . +The project was a complete failure . 這個 計劃 徹底 的 失敗 了 . +How about another piece of cake ? 要 不要 再 來 一塊 蛋糕 ? +I have no objection to paying a special fee if it is necessary . 如果 必要 的话 , 我 不 反 对付 特别 费用 . +Why do you need this money ? 你 為 什麼 需要 這筆 錢 ? +I had no choice . 那时 我 没有 选择 的 余地 . +What is it like being Tom is girlfriend ? 做 汤姆 的 女朋友 怎么样 ? +Do you have a lot of time to relax ? 你 有 很多 休閒 時間 嗎 ? +JST stands for Japan Standard Time . JST 代表 日本 標準 時間 . +He married an actress . 他 和 一个 女演员 结婚 了 . +I will attend the next meeting . 我会 参加 下次 的 会议 . +There is some water left . 还 剩 一点 水 . +She went over the list to see if her name was there . 她 走 過去 看看 她 的 名字 是否 在 清單 上 . +This city is 1,600 meters above sea level . 这 座 城市 海拔 1600 米 . +He has three sons . 他 有 三个 儿子 . +I am at home . 我 在家 裡 . +Open the door , please . 请 开门 . +I have been wanting to see that movie for a long time . 我 想 看 那 电影 想 好久 了 . +My briefcase is full of papers . 我 的 公事包 裡 裝滿 了 文件 . +Everybody is fine . 每个 人 都 好 . +Turn right at the next intersection . 请 在 下 一个 十字路口 右转 . +Would you like to dance with me ? 你 愿意 和 我 跳舞 吗 ? +Water boils at one hundred degrees . 水 在 攝 氏 100 度沸騰 . +I do not want any milk at all . 我 完全 不要 牛奶 . +She can play the drum . 她 會 打鼓 . +I was angry because he was late . 因為 他 遲到 了 , 所以 我 很 生 氣 . +Both of my sisters are married . 我 的 两个 姐妹 都 结婚 了 . +Mother has a coffee shop . 媽媽 有 一個 咖啡 廳 . +How can I reach you ? 我 怎么 联系 你 ? +Tom fell asleep . 汤姆 睡着 了 . +The dog walked across the street . 這 隻 狗 穿 過 街道 . +Wherever you go , I will follow . 無論 你 去 哪裡 我 都 會 跟著 你 . +It has not been easy . 它 不 容易 . +I was almost hit by a car . 我 幾乎 被 車 撞 到 了 . +You have worked hard for months and have certainly earned a holiday . 你 已經 辛苦 地 工作 好 幾個 月 了 , 當然 可以 休假 . +She drew a circle on a piece of paper with a pencil . 她 用 铅笔 在 纸 上 画 了 一个圈 . +What would you do if you had ten thousand dollars ? 如果 你 有 一 万美元 , 你 想 做 什么 呢 ? +I have plenty of money with me . 我 身上 帶著 很多 錢 . +Sing us a song , please . 請 為 我們 唱首歌 吧 . +Very few people live to be 100 . 很少 人 活到 100 岁 . +Please come . 请来 吧 . +I am just worried about my weight . 我 只是 担心 我 的 体重 . +I will drop you off at the station . 我 載 你 到 車站 . +Let is start right away . 我们 立刻 开始 吧 . +I do not see much of him . 我 不常 見到 他 . +I really am unlucky ! 我 真的 很 倒霉 ! +She has a very quick mind . 她 反應 很快 . +I do not have any children . 我 没有 孩子 . +He has been studying for two hours . 他 学 了 两个 小时 . +What are they saying ? 他們 在 說 什麼 ? +Hey , I may have no money , but I still have my pride . 嗨 , 我 可能 没 钱 , 但 我 一直 有 我 的 骄傲 . +You do not understand the procedure . 你 不 明白 程序 . +Are you being paid for doing this ? 是 有人 花钱 让 你 做 这事 吗 ? +How are your parents getting along ? 你 的 父母 是 如何 相處 的 ? +I liked Tom is first book more than the second . 相比 第二本 , 我 更 喜欢 汤姆 的 第一 本书 . +I could not get the point of his speech . 我 不能 抓到 他 演讲 的 重点 . +We do not have any bread left . 我們 沒 麵 包 了 . +You have to leave . 你們 得 走 了 . +Tom interrupted our conversation . 湯姆 打斷 了 我們 的 談話 . +My father can fly an airplane . 我 的 父親 會 駕駛 飛機 . +Do you remember where we first met ? 你 还 记得 我们 第一次 见面 是 在 哪里 吗 ? +Is this your first time in Korea ? 你 是 第一次 来 韩国 吗 ? +Tom walked out . 湯姆 走 了 出去 . +I can hear you , but I can not see you . 我 听得见 你 , 但 我 看不见 你 . +What is your biggest fear ? 你 最 害怕 的 是 什么 ? +We took a walk along the river . 我們 沿著 河 散步 . +It is not hard to understand . 不 難 理解 . +My mother told us an interesting story . 我 的 媽媽 給 我們 講 了 個 有趣 的 故事 . +I have neither time nor money . 我 沒有 時間 , 也 沒有 錢 . +I am very sorry I came home so late . 我 很 抱歉 那么 晚 回家 . +He painted the ceiling blue . 他 把 天花板 刷成 了 蓝色 . +Tom moves quickly . 汤姆 动 得 好 快 . +He may become a baseball player . 他 可能 成為 一個 棒球 選手 . +See you tomorrow . 明天 见 . +The new Harry Potter movie is pretty lame . 哈利波 特的 新片 十分 差 . +All of a sudden , it became cloudy . 忽然 天氣 轉為 多 雲 . +He has been sick for a week . 他 病 了 一 星期 . +They took our passports . 他們 拿 了 我們 的 護照 . +Do not you play tennis ? 你 不 打 網球 嗎 ? +He graduated from high school this spring . 今年 春天 他 從 高中 畢業 了 . +There are some misprints , but all in all , it is a good book . 雖然 有 一些 印刷 錯誤 , 但 大致 上 說 來 , 這 是 一本 好 書 . +He took me to the station . 他 帶 我 到 車站 . +I learned to drive a car when I was eighteen and got a driver is license . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +It is no use crying over spilt milk . 為 濺出 的 牛奶 哭 也 沒用 . +There were some boats on the lake . 湖上 有 一些 船 . +Tom wrote that song three years ago . 汤姆 三年 前 创作 了 那首歌 . +I warmed myself in the bath . 我 泡 了 个 澡 身体 暖和 起来 了 . +I am looking forward to Christmas . 我 期待 聖誕節 的 到 來 . +I plan to go there . 我 打算 去 那裡 . +Her husband is an excellent cook . 她 丈夫 是 個 優秀 的 廚師 . +She grew roses . 她種 了 玫瑰 . +She was accused of telling a lie . 她 被 指责 说 了 谎 . +It may never happen . 它 可能 從 沒 發生 過 . +Do not miss the bus . 不要 错过 公车 . +Last year in the Philippines , earthquakes and tidal waves resulted in the deaths of more than 6,000 people . 去年 在 菲律宾 , 地震 和 海啸 造成 了 超过 6000 人 的 死亡 . +I can drive a car . 我会 开车 . +Do you actually believe that ? 你 真 信 吗 ? +Do you like Mozart is music ? 你 喜歡 莫扎特 的 音樂 嗎 ? +I was puzzled about what to do next . 我 对 以后 做 什么 很 迷茫 . +I certainly would not want to be seen with Tom . 我 当然 不想 被 人 看见 跟 汤姆 在 一起 . +You did a good job . 你 干 得 很 好 . +Tom made me do that . 是 汤姆 让 我 做 的 . +That was not the main reason why Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +We know this . 我们 知道 . +I feel like I am going to faint . 我 覺得 我 快 昏倒 了 . +Our school is in the center of the town . 我们 学校 在 市中心 . +English is used by many people . 英語 是 被 許多 人 使用 . +Sweet dreams ! 祝 你好 梦 . +The policeman did not tow your car away . 警察 沒有 拖走 你 的 車 . +I suggest that you do not trust Tom too much . 我 建議 你 別 太 相信 湯姆 . +What is my room number ? 我 的 房间 号 是 多少 ? +Leave my car alone . 離 我 的 車 遠 一點 . +Eighty percent of all information on computers around the world is in English . 全世界 百分之八十 電腦 上 的 資訊 都 是 用 英語 寫 的 . +Tom regrets his mistake . 湯姆 為 他 的 錯誤 後 悔 . +I have got to go to the bank . 我 要 去 银行 了 . +This is your book . 這 是 你 的 書 . +Tom is a fat man . 湯姆 是 個 胖子 +Father is watering flowers . 父亲 在 浇花 . +The door is locked at nine o 'clock . 這個 門 在 九點鐘 的 時候 是 鎖著 的 . . +I accepted her invitation . 我 接受 了 她 的 邀請 . +Tom could not decide where to begin . 湯姆 不能 決定 從 哪裡 開始 . +He always left the problem of his children is education to his wife . 他 總是 把 孩子 的 教育 問題 留給 他 的 妻子 . +She took me for my brother . 她 把 我 认作 我 弟弟 了 . +You do not have to answer right away . 你 不用 马上 回答 . +I usually take a shower in the evening . 我 通常 在 晚上 洗澡 . +How about taking a rest ? 休息 一下 怎麼樣 ? +She is leaving for America tonight . 她 今晚 離開 去 美國 . +They have been married two years . 他們 已經 結婚 兩年 了 . +He got down the book from the shelf . 他 從 架上 拿下 書 . +She plays tennis in the morning . 她 早上 打 網球 . +I have two children away at university . 我 有 两个 出去 上 大学 的 孩子 . +I thought Tom would be worried . 我 以为 汤姆 会 感到 担心 . +We know . 我们 知道 . +Do you play soccer ? 你 踢足球 嗎 ? +There is a picture on the wall . 牆上 有 一幅 畫 . +My father is sweeping the garage . 我 父親 正在 清 掃車 庫 . +You must pay attention to his advice . 你 一定 要 注意 他 的 建议 . +I can not put up with this smell . 我 不能 忍受 這種 氣味 . +Do you come here often ? 您 经常 来 这儿 吗 ? +What are you reading now ? 你 現在 在 讀 甚麼 ? +The fire reduced the house to ashes . 房子 被 大火 烧成 了 灰烬 . +Farmers always complain about the weather . 农民 总是 抱怨 天气 . +Where can you get tickets ? 在 哪里 可以 买 到 车票 ? +I could not agree with his opinion . 我 不 同意 他 的 看法 . +They are high school students . 他們 是 高中生 . +Dogs have a keen sense of smell . 狗 的 嗅觉 灵敏 . +Tom has not yet told us what he wants us to buy . 汤姆 还 没 对 我们 说 他 希望 我们 买 什么 呢 . +I 'd be unhappy , but I would not kill myself . 我会 不 高兴 , 但 我 不会 自杀 . +Do not underestimate my power . 不要 小看 我 的 力量 . +Women eat lighter meals when they are eating with a guy . 當 女性 跟 一個 男人 吃 飯 時 , 女性 會 吃 得 比較 少 . +This is not a trivial matter . 这 不是 鸡毛蒜皮 的 小事 . +Will it rain tomorrow ? 明天 会 下雨 吗 ? +They say that old house is haunted . 據 說 老房子 鬧 鬼 . +I think that what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +He is no fool . 他 没 疯 . +He is proud of having been educated in the United States . 他 对 自己 在 美国 读 过 书 这件 事 感到 很 骄傲 . +I could hardly hear him . 我 幾乎 聽 不到 他 的 聲音 . +Excuse me . 对不起 . +I love drinking tea . 我 很 愛 喝茶 . +Please add my name to the list . 請 在 名單 上 加上 我 的 名字 . +Tom has more books than Mary . 湯姆 的 書 比瑪麗 的 還 多 . +Tom will never do it again . 汤姆 再也 不 做 了 . +They always complain . 他們 總 是 抱怨 . +Tom is the one , is not he ? 湯姆 就是 那 一個 , 不是 他麼 ? +Mary put some flowers in the vase . 玛丽 把 一些 花 放进 了 花瓶 . +I am a free man . 我 是 一個 自由 的 人 . +Do not throw trash here . 别 在 这儿 扔 垃圾 . +I went swimming in the river yesterday . 我 昨天 去 河里 游泳 了 . +You look like a little girl . 你 看来 是 个 小女孩 . +Tom is wrong . 湯姆 錯 了 . +Perhaps it will rain in the afternoon . 也許 下午 會 下雨 . +Why do you have two cars ? 他 為 什麼 有 兩輛 車 ? +You are never satisfied with anything I do . 你 對 我 做 的 任何 事 都 不 滿意 . +I want something to drink . 我 想 喝 點 什麼 . +No more , thank you . I am full . 不 , 谢谢 , 我 饱 了 . +She has a lot of English books . 她 有 很多 英文 書 . +Tom did not tell me his secret . 湯姆 沒有 告訴 我他 的 祕 密 . +You ought not to go out . 你 不 應該 出門 . +A barber is a man who shaves and cuts men is hair . 理 髮 師 是 為 男人 刮 鬍 子 和 剪 頭 髮 的 人 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +I am cool . 我 很酷 . +The man sold his soul to the devil . 这 男人 把 他 的 灵魂 卖 给 魔鬼 . +I do not procrastinate as much as I used to . 我 不 像 我 以前 那么 拖延 了 . +What did you do with your camera ? 你 用 你 的 照相机 做 了 什么 ? +I think I can run as fast as Tom . 我 认为 我 能 跑 得 跟 汤姆 一样 快 . +What did you do last night ? 你 昨晚 做 了 什麼 ? +The light is green . 現在 是 綠燈 . +Is there someone that can drive ? 有人 会 开车 吗 ? +The music was very loud . 那 音乐 声音 十分 响 . +I am getting old . 我 在 变老 . +People are more educated now than they used to be . 现在 的 人 教育 程度 比 以前 高 得 多 . +Do not confuse desire with love . 不要 把 欲望 和 爱情 混为一谈 . +It is likely to rain all weekend . 可能 整個 週末 都 下雨 . +Today , many people worry about losing their jobs . 今天 , 許多 人 擔心 失去 工作 . +What is over there ? 那 是 什么 ? +Has he met them today ? 他 今天 見 他們 了 嗎 ? +I should really get some sleep . 我 真該 睡 一 覺 了 . +There is a pub just around the corner . 在 轉角 有 一家 酒吧 . +You made the same mistake as last time . 你 犯 了 跟 上次 相同 的 錯誤 . +They hated Tom . 他們 恨 湯姆 . +I saw you driving your new car . 我 看到 你 開著 你 的 新車 . +I can not deal with this problem anymore . 我 不能 再管 这 问题 了 . +Tom is a true man . 汤姆 是 个 真 男人 . +I am lost . 我 迷失 了 . +I do not plan to stay very long . 我 沒有 打算 停留 太久 . +Tom is here because of me . 因为 我 , 汤姆 在 这里 . +Looking at your Facebook friends ' photos is a waste of time . 在 Facebook 上 瀏覽 朋友 的 照片 是 在 浪費 時間 . +There is no way off the island . 沒有 辦法 離開 這個 島 . +You are really wonderful . 你 真是 太好了 . +I play tennis once in a while . 我 偶爾 打 網球 . +He was ill , so he could not come . 他 病 了 , 所以 他 不能 來 . +It is not a bug , it is an undocumented feature . 这 不是 一个 漏洞 , 而是 一个 没有 写 进 文档 的 特性 . +You should drive at a safe speed . 你 應該 以 安全 速度 駕駛 . +What did you have to eat ? 你 必須 吃 什麼 ? +I have always wanted to be a professional basketball player . 我 一直 想 成为 一名 职业 篮球 运动员 . +The stripes were horizontal . 條紋 是 水平 的 . +Tom looked pretty healthy last night . 汤姆 昨晚 看来 很 健康 . +As far as I am concerned , she is a complete stranger . 她 对 我 来说 是 一个 完全 陌生 的 人 . +I have got things under control . 我 控制 住 了 . +He pretended to be a doctor . 他 假裝 是 一名 醫生 . +Could you please repeat what you just said ? 您 可以 再 重复 一遍 刚才 说 的话 吗 ? +He got a loan from the bank . 他 從 銀行 得到 了 貸款 . +What do you think I should wear on my date tomorrow ? 你 觉得 我 明天 约会 穿 什么 好 呢 ? +I might say yes . 我 可能 会 说 是 . +She said that she had been happy . 她 說 她 以前 很快 樂 . +He has been to Europe many times . 他 去過 歐洲 很 多次 了 . +Tomorrow is my day off . 明天 是 我 的 休息日 . +I bought this book the other day . 我 前 幾天 買 了 這 本書 . +This is not good . 这 不好 . +She was aching all over . 她 全身 都 疼 . +His speech was short and to the point . 他 的 演讲 简短 且 切中要害 . +I often played tennis with her . 我 常常 和 她 打 網球 . +See above . 参见 上 文 . +I am sending you a birthday present by airmail . 我 寄 給 你 一個 航空 郵件 生日 禮物 . +I went there because I wanted to . 我 去 了 那裡 , 因為 我 想 去 . +You will soon get used to speaking in public . 你 很快 就 會 習慣 在 公開場 合 講話 了 . +Can you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +I am just another man . 我 只是 个 大众 脸 . +I can do it in a week . 我 可以 在 一週 內 做 . +There is food on the desk . 书桌上 有 食物 . +I need some help with my work . 我 在 我 的 工作 上 需要 一些 幫助 . +Can you hear me ? 你 听得见 吗 ? +If you need a pen , I will lend you one . 如果 你 需要 笔 的话 , 我 借 你 一支 . +That is exactly how I feel . 那 就是 我 的 感受 . +He did not accept their invitation . 他 沒有 接受 他們 的 邀請 . +Tom says he left a note . 汤姆 说 他 留 了 张 便条 . +Do we have milk in the fridge ? 我们 冰箱 里 有 牛奶 吗 ? +Do not pay any attention to what your father says . 别 在意 你 父亲 说 的话 . +Maybe you will succeed . 也許 你 會 成功 . +I do not want to fail my exams . 我 不想 挂科 . +Do you have it ? 你们 有 吗 ? +He was playing tennis all day . 他 整天 打 網球 . +We lost it . 我们 失去 了 它 . +I think you went too far . 我 觉得 您 过火 了 . +She has to take a remedial course in English . 她 需要 上 英语 补习班 . +She asked me where I was going . 她 問 了 我 要 去 哪裡 . +It is going to rain this evening . 今天 晚上 會 下雨 . +Get off your high horse , Tom . 别 那么 趾高气扬 , 汤姆 . +He is getting better bit by bit . 他 一點 一點 地 變好 . +I did not recognize anyone in the room . 房子 里面 的 人 我 一个 也 不 认得 . +We should have worked harder . 我們 應該 工作 得 更 努力 . +What is Tom given us ? 汤姆 给 了 我们 什么 ? +How am I going to explain this ? 我 要 怎麼 解釋 ? +It is difficult to understand this novel . 这部 小说 很 难 读懂 . +I relaxed at home last Sunday . 我 上個 星期天 在家 裡 放 輕 鬆 . +I thought my head would explode . 我 觉得 我 的 头 要炸 了 . +It was a lot of fun . 它 很 好玩 . +I have been here a long time . 我 在 這裡 很 長 一段 時間 了 . +I must repay the debt . 我 必须 偿还债务 . +Put the book where you found it . 把 書 放在 你 找到 的 地方 . +I did not see him . 我 没 见到 他 . +You should try to form the habit of using your dictionaries . 你们 该 养成 使用 字典 的 习惯 . +How long have you been abroad ? 你 在 國外 多久 了 ? +It looks like it will rain today , too . 今天 也 好像 會 下雨 . +Are you still living with your parents ? 你 依然 和 父母 住 一起 吗 ? +Please stop that right now . 请 即刻 停止 . +I want to move out of this cramped room as soon as I can . 我 想 尽快 从 这个 不透气 的 屋子里 出去 . +He is rarely in a good mood . 他 很少 心情 很 好 . +I am dripping with sweat . 我 正 流 着 汗 . +It is likely to rain again . 很 有 可能 还 会 下雨 . +My ex @-@ husband no longer lives in this city . 我 前男友 不再 住 在 這個 城市 了 . +He cured my illness . 我 的 病 给 他 治好 了 . +He finally became the president of IBM . 他 最终 成 了 IBM 的 总裁 . +He wants something cold to drink . 他 想 喝 些 冷 飲 . +I would like to sit in the non @-@ smoking section . 我 想 坐在 无烟 区 . +I was offended by his behavior . 他 的 行為 冒犯 了 我 . +He has no house in which to live . 他 没有 房子 住 . +I have got everything that you want . 我 已經 得到 了 一切 你 想要 的 東西 . +She gave me a meaningful look . 她 意味 深長 地 看 了 我 一眼 . +It is not anything like as cold as it was yesterday . 今天 沒有 像 昨天 那麼 冷 . +I think I have found the answer . 我 想 我 找到 答案 了 . +I have never seen him wearing jeans . 我 從來 沒有 看 過 他 穿 牛仔 褲 . +How often do you see him ? 您 多久 见 他 一次 ? +Who is dying ? 誰 要死 了 ? +This will be a good souvenir of my trip around the United States . 这 将 是 我 环绕 美国 旅行 中 一个 很好 的 纪念品 . +Swimming is easy for me . 游泳 對 我 來說 很 容易 . +I like this dog . 我 喜欢 这 只 狗 . +Between you and me , I think our boss is stupid . 我 觉得 我们 老板 很蠢 , 这 我 就 只 跟 你 说 . +Should Tom be worried ? Tom 應該 要 擔心 嗎 ? +I will remember you forever . 我 會 永遠 記住 你 的 . +The clown made a funny face . 小丑 做 了 个 鬼脸 . +I have a proposal . 我 有個 提案 . +He scraped the mud off his boots . 他 刮下 靴子 上 的 泥巴 . +I am a detective . 我 是 个 侦探 . +The house was in flames . 房子 被 火 吞噬 了 . +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +That was wrong . 那样 是 错 的 . +May I share this table with you ? 我 可以 跟 你 共用 這 張 桌子 嗎 ? +I met him just as he was coming out of school . 正 當 他 從 學校 回來 的 時候 , 我 遇見 了 他 . +Take care . 照顾 好 自己 . +How was the seminar ? 这 研究会 怎么样 ? +He drank a whole bottle of milk . 他 喝 了 一整瓶 的 牛奶 . +How is it going ? 你們 好 嗎 ? +Are you wearing a watch ? 你 有 戴 手表 吗 ? +Do you have to make dinner ? 你 必须 做 晚饭 吗 ? +Everyone knew Tom was the one who did it . 大家 都 知道 是 汤姆 做 的 +She could not attend that party because she was sick . 她 因 病 不能 出席会议 . +My eyes hurt . 我 的 眼睛 痛 . +There is a photo of Tom on Mary is desk . 在 瑪麗 的 桌上 有 張湯姆 的 照片 . +Kyoto has many places to see . 在 京都 , 有 很多 的 景点 值得一看 . +You will need a special tool to do it . 你 会 需要 一个 特殊 的 工具 来 做 这件 事 . +They made him captain of the team . 他們 要 他 作隊 長 . +He had decided on a new policy . 他 已經 決定 了 新 的 政策 . +We have a great team . 我们 有个 好极了 的 团队 . +These boxes are made of plastic . 這些 箱子 是 由 塑料 製 成 的 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +You do not need money . 你 不 需要 錢 . +He may be able to come tomorrow . 他 也 許 明天 能來 . +I will be there rain or shine . 風雨無阻 我 都 會 在 那裡 . +There is a cup on the table . 桌上 有個 杯子 . +Tom wanted revenge . 湯姆 想 報仇 . +She made elaborate preparations for the party . 她 精心 籌備 了 這個 派 對 . +I will be your first patient . 我 將 是 你 的 第一 個 病人 . +He must finish his homework today . 他 今天 必須 完成 他 的 功課 . +It was through his influence that she became interested in ecology . 她 开始 对 生态学 感兴趣 , 是 受到 他 的 影响 . +I do not recommend eating in that restaurant . The food is awful . 我 不 推荐 在 那家 餐馆 吃饭 . 食物 糟糕 透 了 . +I study for 3 hours every day . 我 每天 讀書 三個 小 時 . +Who threw a stone at my dog ? 谁 朝 我 的 狗 扔 的 石子 ? +Love makes the world go round . 爱 让 世界 转动 . +It was just a matter of time . 这 只是 时间 上 的 问题 . +Do you know when they will arrive ? 你 知道 他们 什么 时候 到 吗 ? +Someone told me about that . 有人 跟 我 說 這件 事 . +Tom encouraged his son to study French . 汤姆 鼓励 他 儿子 学法语 . +What did you go to Kyoto for ? 你 為 什麼 去 京都 ? +Sometimes things that happen do not make sense . 有时候 , 发生 的 事情 并 不是 合情合理 的 . +Please let me go . 請 讓 我 走 . +Who was here ? 谁 来 了 这里 ? +He has gone abroad by himself . 他 一个 人 去 了 国外 . +By the year 2020 , the population of our city will have doubled . 在 2020 年 以前 , 我們 的 城市 的 人口 將 增加一倍 . +My room is upstairs on the left . 我 的 房間 在 樓上 的 左邊 . +There was little water in the well . 這 口 井裡 的 水 很少 . +It is been ten years since I came to this town . 我 來 這個 鎮有 十年 了 . +The goods arrived undamaged . 货物 毫无 损坏 地 到达 了 . +Generally , Japanese people are shy . 一般而言 , 日本 人 很 害羞 . +She employed a private detective to keep a watch on her husband . 她 僱 了 一個 私人 偵探 看守 她 的 丈夫 . +That is a hard question to answer . 那 是 一個 很 難 回答 的 問題 . +I think you have mistaken me for someone else . 我 想 你 將 我 認成 別人 了 . +He is not my brother . He is my cousin . 他 不是 我 的 兄弟 . 他 是 我 的 表弟 . +Would you like anything to eat ? 您 想 吃 点 什么 吗 ? +That is the chair that I really like . 那 是 我 真的 很 喜歡 的 椅子 . +I am good at soccer . 我 擅長 足球 . +It only costs $ 10.00 ! 只要 十元 ! +I 'd rather not go out this evening . 我 今天 晚上 寧可 不要 出門 . +I ate french fries . 我 吃 了 炸薯 條 . +Tom has lived here since 2003 . 汤姆 自从 2003 年 就 住 在 这里 . +How many days are there in a week ? 一周 有 几天 ? +We expect a lot from him . 我們 對 他 期望 很多 . +He is glad to hear the news . 他 很 高興 聽到 這個 消息 . +Buy some milk on your way home . 回来 的 路上 买点 牛奶 . +I am crazy about you . 我 為 你 瘋狂 . +Would you care for another cup of coffee ? 再 来 一杯 咖啡 怎么样 ? +There are many hotels downtown . 市中心 有 很多 旅馆 . +I am glad Mary is not my wife . 我 很 高兴 玛丽 不是 我 的 妻子 . +Stay out of my kitchen . 别 进 我 的 厨房 . +It is stopped snowing . 雪停了 . +I was the last one to turn in my test . 我 是 最后 交 的 考试卷 . +Are you a practicing physician ? 你 是 执业 医师 吗 ? +She wept the entire night . 她 一 整晚 都 在 哭 . +I can hardly see without my glasses . 沒有 了 我 的 眼鏡 我 幾乎 看不到 . +He is the boy we spoke about the other day . 他 是 前 幾天 我們 談到 的 那個 男孩 . +I saw a girl with long hair . 我 看见 一个 长 头发 的 女生 . +Tom did not need to finish that work by today . 汤姆 不必 今天 就 完成 那 工作 . +Your father is pretty tall . 你 爸爸 很 高 . +You are partially correct . 你 部分 正确 . +Why exactly did you need to do that ? 你 到底 为什么 要 这么 做 ? +Some of them seem to be too difficult . 其中 一些 似乎 太 难 了 . +Do not you want to know why ? 你 不想 知道 为什么 吗 ? +He is a friend of my brother is . 他 是 我 弟弟 的 一個 朋友 . +It is not a watch . 這 不是 手 錶 . +Take as much as you like . 你 爱 拿 多少 就 拿 多少 . +She warmed herself by the fire . 她 在 火 旁邊 讓 自己 暖和 起來 . +Few students could understand what he said . 幾乎 沒有 學生 能 懂 他 所 說 的 話 . +In case of fire , ring the bell . 萬 一 發 生火 災 , 按 鈴 . +We should call the police . 我們 應 該 叫 警察 來 . +Tom is my older brother . Tom 是 我 哥哥 . +I really want to see you . 好 想 見 到 你 +Earthquakes frequently hit Japan . 地震 頻繁 地 襲擊 日本 . +He works in a factory . 他 在 一家 工廠 工作 . +I like grape jelly best . 葡萄 味 的 果凍 是 我 最 喜歡 的 . +How long will this rope hold ? 這條 繩子 能撐 多久 ? +My sister made me a beautiful doll . 我 妹妹 做 了 一個 漂亮 的 娃娃 給 我 . +A ball is floating down the river . 一個 球 正 順流而下 . +What are the origins of the Olympics ? 奥林匹克 的 起源 是 什么 ? +I am sick and tired of hamburgers . 我 吃 膩 了 漢堡 . +I studied English for four years with a native speaker . 我 跟 英语 母语 者 学 了 四年 英语 . +You gain nothing by speaking ill of others . 通过 诋毁 别人 , 你 得不到 什么 . +I would like to introduce you to my parents . 我 想 介紹 你 給 我 父母 認識 . +Tom did not know Mary had a boyfriend . 湯姆 不 知道 瑪麗 有 男朋友 . +Children need loving . 孩子 们 需要 关爱 . +The army forced him to resign . 军队 强迫 他 辞职 . +She must still be in her twenties . 她 一定 還 只是 二十 幾歲 . +He is still very much alive . 他 依旧 充满活力 . +The cat is under the table . 猫 在 桌子 底下 . +Tom begged me to let him go home early . 汤姆 求 我 让 他 早点 回家 . +I go to bed after I study . 我 讀 完 書 之 後 就 去 睡 覺 . +We are finding it difficult deciding on which one to buy . 我们 觉得 很 难 决定 买 哪 一个 . +I bought a camera two days ago . 兩天 前 我 買 了 一台 照相 機 . +Kissing a person who smokes is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +Tom wondered why there was a dog in his house . 汤姆 奇怪 为什么 他 的 房子 里 有 只 狗 . +I am still angry about that . 我 还是 为 那 生气 . +I just was not paying attention . 我 只是 没 注意 . +Sorry , we do not accept credit cards . 對 不起 , 我們 不 接受 信用卡 . +I hope it will be fine tomorrow . 我 希望 明天 將 是 美好 的 . +Japan imports various raw materials from abroad . 日本 從 國外 進口 各種 原料 . +Tom likes swimming . 湯姆 喜歡 游泳 . +I am going to major in French . 我 將 主修 法文 . +He looked in all directions , but did not see anyone . 他 看 了 看 四周 , 但 沒 看見 任何人 . +Do whatever you think is right . 做 你 認為 正確 的 事 . +What we had to do was really quite simple . 我們 要 做 的 很 簡單 . +He is always worrying about his daughter . 他 一直 很 担心 他 的 女儿 . +I cannot help thinking that my son is still alive . 我 不禁 想 我 的 儿子 一直 都 在 生 . +Tom is French is already rather good . 汤姆 的 发育 已经 很 好 了 . +He is much older than he looks . 他 的 實際 年齡 比 他 看 起來 老 得 多 . +I am not a doctor . 我 不是 醫生 . +He seems to be rich . 他 看 起來 很 有 錢 . +Will you listen to me for a few minutes ? 您 愿意 听 我 说 几分钟 话 吗 ? +They kissed . 他们 亲吻 了 . +A caged cricket eats just as much as a free cricket . 籠子 裡 的 蟋蟀 吃 得 跟 野生 的 蟋蟀 一樣 多 . +I bought two pairs of trousers . 我 买 了 两条 裤子 . +They were all hoarse from shouting . 他們 全都 叫 到 沙 啞 了 . +Who did you talk with ? 你 和 谁 说话 呢 ? +Tom seems to be easygoing . 湯姆 看來 隨 和 . +Coffee will be served after the meal . 咖啡 將 會 在 餐 後 供應 . +I do not like that guy . 我 不 喜欢 那家伙 . +I still love her . 我 仍然 爱 着 她 . +Tom does not have a lot of freedom . 汤姆 没有 很多 自由 . +Tom got ripped off . 汤姆 被 敲竹杠 了 . +Tom puts gas in his car twice a week . 湯姆 每週 幫 車子 加 兩次 油 . +You are cuter than Mary . 你 比 玛丽 可爱 . +He lives alone . 他 一个 人 生活 . +My mother is writing a letter now . 我 母親 現在 正在 寫 一封信 . +He is interested in many things . 他 對 很多 事情 都 有 興趣 . +Our car broke down last night . 我們 的 昨晚 車 拋錨 了 . +Learning French is not difficult . 学法语 不难 . +You can call me anytime you like . 你 喜欢 什么 时候 打给 我 就 什么 时候 打 . +Would you please look over my report ? 你 可以 仔細 檢查 一下 我 的 報告 嗎 ? +A burglar broke into my house while I was away on a trip . 一个 入室 盗窃者 趁 我 去 旅游 的 时候 闯入 了 我家 . +Tom wanted something else . 湯姆 想要 別的 東西 . +This fork is dirty . 這 把 叉子 是 髒 的 . +They insist that he should go . 他们 坚持 让 他 走 . +She spoke scarcely a word of English . 她 几乎 不 说 英语 . +Could I borrow a pencil ? 我 能 借支 铅笔 吗 ? +I suppose you like him . 我 猜想 您 喜欢 他 . +It is much more convenient . 这 方便 得 多 了 . +I am not as tall as you . 我 沒 有 你 高 . +He often eats fish for dinner . 他 晚 飯 經常 吃 魚 . +I ripped my pants . 我 扯掉 了 自己 的 裤子 . +Much of London was destroyed in the seventeenth century . 倫敦 許多 部份 在 十七 世紀時 被 摧毀 . +Why do not we stop arguing over these piddling matters and get to the issues at hand ? 为什么 我们 不 停止 为 细枝末节 的 争吵 而 进入 正题 呢 ? +Let is go as soon as it stops raining . 只要 雨 一停 我们 就 走 . +He often sits by me and listens to music . 他 经常 坐在 我 旁边 听 音乐 . +He is still sitting on the bench . 他 還 坐在 長椅 上 . +I baked some apple pies . 我 烤 了 蘋果 派 . +He is often mistaken for a student . 他 常常 被誤 認為 是 個 學生 . +I have breakfast at seven . 我 在 七點 吃 早 飯 . +Pick up the pencil from the floor . 從 地上 撿 起 這 支 鉛 筆 . +I cannot find fault with him . 我 挑不出 他 的 毛病 . +When did Tom ask you to do that ? 湯姆 是 甚麼 時候 讓 你 去 做 的 ? +What is aspirin made of ? 阿司匹林 是 用 什么 做 的 ? +Will I be the only one going to the party ? 会 不会 只有 我 一个 人 去 聚会 ? +He is taller than his brother . 他 比 他 的 弟弟 高 . +I will do my best . 我 會 盡力 而為 . +How dare you speak like that ? 您 怎么 敢 这样 说话 ? +We know it was you that killed Tom . 我們 知道 昰 你 殺 了 湯 姆 . +I thank you very much for your kindness . 我 十分 感谢 你 的 好意 . +Are you still at home ? 你們 還 在家 裡 嗎 ? +I was just about to come looking for you . 我 剛才 正要 找 你 . +Please come back as soon as possible . 请 尽快 回来 . +We must respect other people is privacy . 我們 必須 尊重 別人 的 私 隱 . +Tom was waiting inside his cabin . 汤姆 在 他 的 小 屋里 等 着 . +These flowers have a unique smell . 這些 花 有 一種 獨特 的 氣味 . +He is able to play the guitar . 他 會 彈 吉他 . +I 'd like a room facing the garden . 我 想要 一間 面 對 花園 的 房間 . +He is a screwball . 他 是 一個 怪人 . +Did Tom tell you it was an emergency ? 你 告诉 汤姆 那 是 紧急情况 了 吗 ? +What is wrong , honey ? 出 什么 事 了 , 宝贝 ? +This is my bicycle . 这 是 我 的 自行车 . +It sounds as if he were to blame for the disaster . 听 起来 好像 他 是 这场 灾难 的 罪魁祸首 . +You 'd better wear a sweater under your jacket . 您 最好 在 外衣 里 穿 一件 套衫 . +Fancy meeting you here ! 想不到 會 在 這裡 遇見 你 ! +Quite a few Americans like sushi . 不少 的 美國 人 喜歡 壽司 . +I am good at singing . 我 唱歌 很 好听 . +I am not picky . I will eat anything . 我 不 挑剔 , 我 什么 都 吃 . +I saw Liz this morning . 今天 早上 我 看到 了利茲 . +Are there any direct flights between Boston and Sydney ? 请问 波士顿 和 悉尼 之间 有 直飞 航班 吗 ? +It is essentially a question of time . 它 本質 上 是 一個 時間 的 問題 . +She took care of the poor little bird . 她 照顾 可怜 的 小鸟 . +Whose idea was it to call the police ? 想 报警 的 是 谁 ? +She had the nerve to speak out . 她 有 膽量 說 出來 . +What vegetables do you like to eat ? 你 喜歡 吃 什麼 菜 ? +He started to speak English . 他 开始 说 英语 了 . +It was very cold yesterday morning . 昨天早上 很 冷 . +Animals are afraid of fire . 动物 怕 火 . +She kept working . 她 继续 工作 . +He played baseball after school . 他 放学 后 打 棒球 . +I feel fine . 我 感觉 很 好 . +We succeeded . 我们 成功 了 . +I saw a helicopter flying overhead . 我 看见 一架 直升飞机 在 头顶 飞 . +Please wrap it like a Christmas present . 請 把 它 包裝 得 像 一個 聖誕 禮物 . +She went down to the fifth floor . 她 下五 樓 去 了 . +Tom works in Boston . 湯姆 在 波士 頓 工作 . +It is just around the corner . 就 在 转角处 . +Will you help me move this desk ? 你 能 幫 我 搬 這 張 桌子 嗎 ? +She studies mathematics . 她 学习 数学 +I think about it often . 我 经常 想着 它 . +He was home alone at the time . 他 当时 一个 人 在家 . +I watched a great movie yesterday . 我 昨天 看 了 部 很棒 的 電影 . +In the U.S. , most people can vote when they reach eighteen years of age . 在 美国 , 大多数 人能 在 十八岁 后 投票选举 . +He married a pretty girl . 他 娶 了 一個 漂亮 的 女孩 . +He participated in the debate . 他 参加 辩论 +I got a bee sting . 我 被 蜜蜂 蛰了 一下 . +Give it back . 还 回去 +They obeyed orders . 他们 服从 了 命令 . +He took her out for a drive . 他 帶 她 出去 兜風 了 . +There is a bus every 20 minutes . 每 20 分钟 有 一 班车 . +She returned the book to the library . 她 把 書 還 給 了 圖書館 . +She cannot do without her car . 沒有 車 她 做不了 事 . +Pass me the salt , would you ? 把 鹽 遞 給 我 好 嗎 ? +I have an umbrella in my car . 我 的 车里 有 伞 . +He is not as intelligent as his brother . 他 沒 有 他 弟弟 聰明 . +What time did you get to bed last night ? 你 昨天 甚麼 時候 睡覺 ? +Humans only live about 70 years . 一个 人 只能 活 七十岁 左右 . +When will we go ? 我們 甚麼 時候 出發 ? +Your assistance is indispensable for us . 您 的 帮助 对 我们 来说 是 必不可少 的 . +Let is begin on page 30 . 讓 我們 從 第 30 頁 開始 . +Tom is happy . 湯姆高興 . +They are leaving in three days , that is to say June 10th . 他們 將 在 三天 後 離開 , 那 也 就是 說 在 六月 十日 . +Tom came to see if Mary needed any help . 汤姆 过来 看看 玛丽 有没有 什么 需要 帮忙 的 . +I think that our living together has influenced your habits . 我 觉得 我 和 你 一起 住 影响 了 你 生活 的 方式 . +We will go on a picnic tomorrow . 我們 明天 要 去 野餐 . +Mail this letter . 把 这 封信 寄 了 . +You can dig dirt from the ground . 你 可以 在 地上 挖土 . +Please tell me . 請 告訴 我 . +I know none of them . 他们 中 的 任何 一位 我 都 不 认识 . +We are still a little confused . 我們 還 是 有 點 疑惑 . +She read an amusing story to the children . 她 给 孩子 们 读 了 个 有趣 的 故事 . +It rained yesterday . 昨天 下雨 了 . +She is asking how that is possible . 她 问 这 怎么 可能 . +Please pass me the salt . 請 把 鹽 遞 給 我 . +Tom told the cops everything . 湯姆 全都 告訴 了 條子 . +Do you have any plans for tonight ? 今晚 有 什么 计划 吗 ? +You are not too late . 你 還 不 太晚 . +Be still . 静静的 , 别动 . +His hobby is collecting old stamps . 他 的 兴趣爱好 是 收集 旧 邮票 . +He said , " I want to be a scientist . " 他 說 : “ 我 想成 為 科學家 . ” +The police will look into the case . 警察 会 调查 这 起 案件 . +Whose is this ? 这 是 谁 的 ? +I should not have logged off . 我 不该 退出 的 . +He has a son and two daughters . 他 有 一個 兒子 和 兩個 女兒 . +We did not see anybody . 我们 谁 也 没 看见 . +I envied his new house . 我 羨慕 他 的 新房子 . +Beer is taxed according to its malt content , so low @-@ malt beer is cheaper . 因为 啤酒 会 根据 麦芽 含量 去 征税 , 所以 发泡 酒会 比较 便宜 . +What are your weekend plans ? 你 週末 有 什麼 計劃 ? +I will miss your cooking . 我 會 想念 你 的 廚藝 . +Look there . 看 那里 . +I love that story . 我 喜欢 那个 故事 . +What is the time in Boston now ? 波士顿 现在 几点 ? +Dentists take x @-@ rays to examine your teeth . 牙医 用 X光 检查 你 的 牙齿 . +It is obvious that he lied . 顯然 地 他 撒 了 謊 . +He dropped in at the bookstore . 他 順道 去 了 這家 書店 . +I felt an impulse to cry out loud . 我 突然 好 想 大叫 . +My aunt gave me an album . 我 姑姑 給 了 我 一本 集郵冊 . +I was very tired last night . 我 昨晚 很 累 了 . +Turn it off . 把 它 关掉 . +He is from France . 他 是从 法国 来 的 . +She knows me . 她 认识 我 . +I promise I will do it . 我 保证 我会 做 的 . +I do not like studying . 我 不 喜欢 学习 . +I went there by bus and train . 我 搭 公車 和 火車 去 那裡 . +They always fight over little things . 他们 总是 为了 小事 吵架 . +Everyone wanted a piece of the cake . 每个 人 都 想 分 一点 蛋糕 . +You have such beautiful , hazel eyes . 你 有 如此 美麗 的 淡褐色 眼睛 . +Can we roller @-@ skate in this park ? 我們 可以 在 這個 公園 裡 玩 四輪 溜冰 嗎 ? +It is human nature . 它 是 人 的 天性 . +He goes to London once a month . 他 一個 月 去 一次 倫敦 . +He is already too far away to hear us . 他 已經 離 得 太 遠 聽 不到 我們 了 . +Your brother got married , did not he ? 你 哥哥 結婚 了 , 不是 嗎 ? +I had a really bad nightmare last night . 昨晚 我 做 了 一个 可怕 的 噩梦 . +She went shopping with her mother . 她 和 她 母親 去 購物 . +What is your phone number ? 你 电话号码 是 多少 ? +This place gives me a really bad vibe . 这 地方 给 我 一个 很差 的 印象 . +Do not step in the mud . 别 走进 泥地 . +To master English is difficult . 精通 英語 是 困難 的 . +We had a lot to drink . 我们 喝 了 很多 . +This is really difficult to deal with . 這件 事 真難 處理 . +I am sorry to put you through that . 很 抱歉 让 你 遭 这 罪 . +She put the magazine on the table . 她 把 雜 誌 放在 桌上 . +When will the world come to an end ? 世界末日 是 什么 时候 ? +That novel is not for children . 那 本小 說 不 適合 兒童 . +Write on every other line . 每隔 一行 寫 . +The teacher let the boy go home . 老師 讓 這個 男孩 回家 . +I learned to drive a car and got a driver is license when I was eighteen . 我 十八 歲時 , 學 了 開車 、 考到 了 駕照 . +Let me know where you are staying . 讓 我 知道 你 住 在 哪裡 . +I do not like these remarks . 我 不 喜歡 這 番 話 . +I can not go with you because I am very busy . 我 不能 和 你们 一起 去 , 因为 我 很忙 . +I found a beautiful shell on the shore . 我 在 海滩 上 发现 了 一个 漂亮 的 贝壳 . +Please turn off the light before you go to bed . 上床睡觉 之前 请 关灯 . +Tom is lonely and unhappy . 汤姆 又 孤单 又 不幸 . +Have a look at the world map . 来 看看 世界地图 . +Tom and Mary went to the best restaurant in town . 汤姆 和玛丽 去 了 镇上 最好 的 饭店 . +I do not want something like this to happen . 我 不想 这种 事 发生 . +This is the lady who wants to see you . 這位 就是 誰 想 見 你 的 夫人 . +Tom is a student . 湯姆 是 個 學生 . +He was born in Nagasaki . 他 出生 於長崎 . +I am interested in sports . 我 对 运动 感兴趣 . +Do you know which road leads to my house ? 你 知道 哪 一條 路 到 我家 嗎 ? +You 'd better keep your money for a rainy day . 你 最好 未雨绸缪 . +Please be careful not to get hurt . 请 小心 不要 受伤 了 . +You have got something in your teeth . 牙齿 卡 了 点 东西 . +Help yourself to anything you would like to eat . 想 吃 什么 就 吃 什么 吧 . +My mother is a lawyer . 我 妈妈 是 律师 . +Bee stings can be very painful . 蜜蜂 螫人 可以 是 非常 痛苦 的 . +What is in front of you ? 在 你 面前 是 什麼 東西 ? +It rained hard last night . 昨晚 雨 下得 很大 . +He is not an American . 他 不是 美国 人 . +She kept me waiting for 30 minutes . 她 让 我 等 了 半小时 . +I am familiar with this neighborhood . 我 對 這 附近 很 熟悉 . +I saw tears in her eyes . 我 在 她 的 眼睛 裡 看到 淚水 . +Not all aliens are bad . 不是 所有 外星人 都 坏 . +I entered the room and shook hands with him . 我 走進 了 房間 與 他 握手 . +I do not doubt it . 我 没有 疑问 . +Please write with a pen . 请 用 钢笔 写 . +There is no admission fee for children under five . 五岁 以下 的 小孩 票价 全面 . +Did you hear your name called ? 你 聽見 有人 叫 你 的 名字 嗎 ? +Tom finally did something right . 汤姆 最终 做 了 点 正确 的 事 . +I am as old as he is . 我 和 他 同年 . +She has many friends in the United States . 她 有 很多 美国 朋友 . +He lived abroad for much of his life . 他 大半生 都 住 在 国外 . +Where did you go last Sunday ? 上周日 你 去 哪儿 了 ? +None of them could understand what she was implying . 他們 沒 有人 了解 她 暗示 什麼 . +Do you like Indian food ? 你 喜歡 印度 菜 嗎 ? +They wash their hands . 他們 洗手 . +I need your advice . 我 需要 你 的 意见 . +Tom is a hick . 汤姆 是 个 乡巴佬 . +This must be my book . 这 肯定 是 我 的 书 . +Everything matters . 任何 事情 都 是 重要 . +Which do you like better , this or that ? 你 更 喜欢 哪个 , 这个 还是 那个 ? +I thought Tom would win . 我 认为 汤姆 会 赢 . +You 'd better go to bed at once . 你 最好 立马 去 睡觉 . +I will not attend the party . 我 将 不 出席 派对 . +Tom tried to stab me . 汤姆 企图 刺 我 . +Where are the showers ? 浴室 在 哪里 ? +Those apples are big . 那些 蘋果 很大 . +Why were you late this morning ? 今天 早上 你 為 什麼 遲到 了 呢 ? +He showed me the manuscript of his new play . 他 给 我 看 了 他 最新 剧 的 底稿 . +His horse jumped over the fence . 他 的 馬 跳 過 了 柵欄 . +Tom took a step backward . 汤姆 后退 一步 . +The engineer told us how to use the machine . 工程师 告诉 我们 如何 使用 机器 . +I am sorry , I forgot to do my homework . 对不起 , 我 忘 了 作业 这 回事 了 . +Please close the door . 請關 上門 . +My father is suffering from a cold . 我 父親 感冒 了 . +He amazed everyone by passing his driving test . 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 覺得 驚訝 . +She was very proud of her father . 她 為 她 的 父親 感到 非常 驕傲 . +I have nothing to do with the crime . 这个 犯罪 和 我 一点 关系 都 没有 . +Ask your dad to help you . 請 你 父親 幫 你 . +I want to go to school and study hard . 我 想 上学 并 努力学习 . +My daughter is in her late teens . 我 的 女兒 快 二十 歲 了 . +What are you talking about ? 你 说 的 是 什么 ? +What if Tom says no ? 汤姆 说 不行 会 怎样 呢 ? +We will need a head hunting agency to find the right man for this executive position . 我們 需要 人力 仲介公司 幫 我們 找到 合適 的 人 來 擔任 這個 管理 職位 . +It is fairly warm today . 今天 相當 暖和 . +He does not like being punished . 他 不 喜歡 被 懲罰 . +Spring will come soon . 春天 快 來 了 . +I do not eat bread . 我 不吃 面包 . +Tom burst into tears . 汤姆 泪流满面 . +You were late , were not you ? 你 遲到 了 , 不是 嗎 ? +We have some decisions to make . 我们 要 做 些 决定 . +Can you do some shopping for me ? 你 能 幫 我 買 些 東西 嗎 ? +Give him an inch and he will take a yard . 得寸进尺 . +My father became old . 我 爸爸 變 老 了 . +I have had a good sleep . 我 睡 得 很 好 . +How many pens do you have ? 你 有 多少 支 铅笔 ? +The temperature has suddenly dropped . 气温 突然 下降 了 . +We have lots of catching up to do . 我们 要 紧追 . +Tom is divorced and has a daughter . Tom 離婚 了 , 他 有個 女兒 . +Nobody wants you to do that . 没 人 想要 你 那样 做 . +Tom wants a computer small enough to easily carry . 汤姆 想要 个 小 得 易于 携带 的 电脑 . +He amassed a large fortune before he died . 他 死 前 累積 了 龐大 的 財富 . +His brother goes to school by bus . 他 哥哥 搭 公車 去 學校 . +Life is like a box of chocolates . 生活 就 像 一盒 巧克力 . +Which is your book ? 哪 本書 是 您 的 ? +It just gets worse . 它 变 糟 了 . +Hang up your coat , please . 請 把 你 的 外套 掛 起來 . +I often go to the movies . 我 常常 去 看 電影 . +We are going to be here all day . 我們 要 在 這裡 待 一整天 . +Do you like swimming ? 你 喜欢 游泳 吗 ? +I was not scolding you . 我 不是 在 罵 你 . +I am not curious . 我 不 好奇 . +Tom was advised by Mary not to go there by himself . 玛丽 建议 汤姆 不要 独自 去 . +Tom did not know what Mary thought about it . 汤姆 不 知道 玛丽 对 它 怎么 想 . +I am tired of writing . 我 写 腻 了 . +I have just spoken to your French teacher and he says you are doing well in his class . 我 刚 跟 你 的 法语 老师 谈 过 话 , 他 说 你 在 课堂 上 表现 得 很 好 . +Be at the station at 11 o 'clock sharp . 十一点 准时 到 车站 . +Call the police ! 报警 ! +The twins are indistinguishable from each other . 这 双胞胎 没法 区分 . +She succeeded in getting him to tell the truth . 她 成功 地 从 他 口中 得知 了 真相 . +Somebody is eating . 有人 在 吃 东西 . +Is it difficult eating with chopsticks ? 用 筷子 吃饭 难 吗 ? +Tom hid his money under his mattress . 湯姆 把 錢藏 在 床墊 底下 . +I am busy all the time . 我 总是 有事 . +We could do something big . 我们 能 做 点 大事 . +I was very , very lucky . 我 非常 非常 幸运 . +He preferred working to doing nothing . 他 更 愿意 工作 而 不是 无所事事 . +Let is take the children to the zoo . 讓 我們 帶 孩子 們 去 動物園 . +Tom and Mary were tired of waiting . 湯姆 和 瑪麗 等 煩 了 . +It is difficult to understand his theory . 他 的 理论 很 难懂 . +I almost always play baseball after school . 我 幾乎 總是 在 放學 後 打 棒球 . +Do you have Tom is address ? 你 有 汤姆 的 住址 吗 ? +Even chocolate contains vitamins . 連 巧克力 中 也 含有 維 他 命 . +Coal and natural gas are natural fuels . 煤 和 天然 氣 是 天然 燃料 . +These apples look very fresh . 这些 苹果 看起来 很 新鲜 . +Give me your phone number . 给 我 你 的 电话号码 . +Nobody tried to help Tom . 没 人 试图 帮 汤姆 . +The clock stopped . 鐘 停 了 . +I hate studying . 我 讨厌 学习 . +She does not like soccer . 她 不 喜欢 足球 . +We will come back tomorrow . 我们 明天 回来 . +This is not okay . 這個 不行 . +I did not get everything I wanted . 我 沒有 得到 我 所有 想要 的 . +I would not be too surprised if this song became a hit . 如果 这歌 成名 , 我 不会 太 惊讶 . +Please send this by registered mail . 請用 掛 號 寄 這個 . +That fish lives in fresh water . 那 魚 棲息 在 淡 水域 中 . +Do not panic ! 不要 恐慌 ! +Tom is not a fool . 汤姆 不是 傻瓜 . +His clothes always smell bad . 他 的 衣服 總是 很 臭 . +I hate mosquitoes . 我 恨 蚊子 . +Tom fell off his bike . 汤姆 从 他 的 自行车 上掉 了 下来 . +I saw a cottage in the distance . 我 看见 远处 有 一间 小屋 . +This is true . 這 是 真的 . +I met him by chance on the train this morning . 今天 早上 我 在 火车 上 偶遇 他 . +We will continue the meeting after some light refreshments . 茶点 过后 我们 接着 开会 . +Put the box down . 把 箱子 放下 . +How much is this pen ? 这 支 钢笔 要 多少 钱 ? +They arrived late because of the storm . 因为 风暴 , 他们 晚 到 了 . +Is one thousand yen enough ? 1000 日元 够不够 ? +Please show me your stamp album . 請 讓 我 看看 你 的 集郵冊 . +He pressured me . 他 向 我 施压 . +The ceremony began with his speech . 仪式 以 他 的 讲话 开始 . +I guess it depends on the weather . 我 想 這 取決 於 天氣 . +I do not remember much about that woman . 我 对 那位 女士 印象 不 深 . +I did not ask Tom for help . 我 没有 找 Tom 帮忙 . +I do not want to do anything risky . 我 不想 做 任何 冒險 的 事 . +He walks slowly . 他 慢慢 地 走 . +What would you like to do in the future ? 以后 打算 干什么 ? +My father died of a subarachnoid hemorrhage when I was fourteen . 我 十四岁 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +May I see your driver is license , sir ? 先生 , 我 可以 看看 你 的 駕駛 執照 嗎 ? +Tom searched inside the closet . 汤姆 搜查 了 衣柜 里面 . +I want something cold to drink . 我 想 喝 冷 飲 . +He cheated on the biology exam . 他 在 生物 學 考試 時 作弊 . +Could you please talk a bit louder ? I can not hear very well . 你 能 大声 点 讲 吗 ? 我 听 不 太 清 . +A brilliant future lay before him . 大好 的 前途 摆在 他 面前 . +She wore a red dress . 她 穿 了 一条 红色 的 裙子 . +Count me in . 算 我 一个 . +Can you save this seat for me ? 你 可以 幫 我 保留 這個 座位 嗎 ? +I thought the questions were easy . 我 認為 這些 問題 很 容易 . +It cost him 50 dollars to rent a car in Hawaii . 他 花 了 50 美元 在 夏威夷 租 了 一辆 汽车 . +I was surprised . 我 吃惊 了 . +Do not speak unless you have something worth saying . 除非 你 有 什么 值得 说 的话 要说 , 否则 就别 吭声 . +You ought to have come here earlier . 你 應 該 早點 來 的 . +I agree with your opinion . 我 同意 您 的 意見 . +What do tigers eat ? 老虎 吃 什么 东西 ? +Did Tom ever threaten you ? 湯姆 威脅 過 你 嗎 ? +I do not believe it at all . 我 根本 不信 . +That river is long . 那 條 河流 很 長 . +Clean up the room . 收拾 房间 . +I want to be a baseball player . 我 想 成為 一名 棒球 運動員 . +I do not quite agree with you . 我 不 太 同意 你 的 看法 . +May I ask a question ? 我 能 问个问题 吗 ? +Tom has made up his mind to go to Boston to study . 湯姆 已經 下定 決心 要 去 波士 頓 唸 書 . +It is really awesome . 太棒了 . +He told us an interesting story . 他 给 我们 讲 了 一个 有趣 的 故事 . +We do not have any more bread . 我們 沒 麵 包 了 . +What will you use it for ? 你 會 用 它 來 做 什麼 ? +Take off your hat when you enter a classroom . 进 教室 的 时候 请 把 帽子 摘 了 . +I am familiar with the author is name . 我 對 這位 作者 的 名字 很 熟悉 . +What kind of woman do you think I am ? 你 认为 我 是 哪种 女人 ? +You had better read a lot of books while you are young . 你 最好 在 年轻 的 时候 多 读点 书 . +Learning a foreign language is difficult . 學習 外語 是 困難 的 . +When will you come back to school ? 你何 時會 回學校 ? +You look sleepy . 你 看起来 很困 了 . +She banged the table with her fist . 她 用 拳頭 拍 了 桌子 . +I was born in 1988 . 我 生于 1988 年 . +She took full advantage of her stay in London to improve her English . 她 充分利用 她 住 在 伦敦 的 优势 , 提高 英语 . +Here is something very important . 這裡 有些 非常 重要 的 東西 . +You have plenty of time . 你 有 足够 的 时间 . +You have both been very impressive today . I am proud of you . 今天 你们 俩 很 让 人 印象 深刻 . 我 为 你们 感到 骄傲 . +This program is a rerun . 这个 节目 是 重播 . +Tom said that he 'd leave the door open . 汤姆 说 他 打算 让 门 开 着 . +Paper burns quickly . 紙 燒 得 快 . +Are you lost ? 您 迷路 了 吗 ? +You should practice playing the violin every day . 你 應該 每天 練習 拉 小提琴 . +My plan is to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +Hard work and dedication will bring you success . 努力 工作 和 敬业精神 使 你 成功 . +Why did you stay at home yesterday ? 你 昨天 為 甚麼 在家 ? +Can you put me up tonight ? 今晚 可以 住 你家 嗎 ? +Tom begged his father to buy him a new bicycle . 湯姆 求 他 父親 給 他 買 新 自行 車 . +You reap what you sow . 種 什麼 因 得 什麼 果 . +This bus will take you to the museum . 這輛 公車 會 載 你 去 博物 館 . +Nobody understands me . 没有 人 理解 我 . +Anyone can do that . 任何人 都 可以 做到 . +This dictionary is mine . 这本 字典 是 我 的 . +The house I am living in is not very large . 我 住 的 房子 不是 太大 . +The problem is been solved . 問題 已 解決 . +My father likes strong coffee . 我 父親 喜歡 濃 咖啡 . +Did she come here to relax ? 她 來 這裡 放 鬆 的 嗎 ? +Are you feeling better , Tom ? 你 感覺 好 點 了 嗎 , 湯姆 ? +They waited for their teacher . 他們 等待 著 他們 的 老師 . +Earth is a planet . 地球 是 一個 行星 . +My mother speaks French better than my father speaks English , so they usually speak to each other in French . 我 母亲 的 法语 比 我 父亲 的 英语 要 好 , 所以 他们 通常 用 法语 交流 . +Tom overslept . 汤姆 睡 过头 了 . +I found a coin on the sidewalk . 我 在 人行道 上 發現 了 一枚 硬幣 . +" Why are not you going ? " " Because I do not want to . " “ 为什么 你 不 来 ? ” “ 因为 我 不想 . ” +We will not go out if it does not stop raining . 雨 不停 , 我们 不会 出去 . +When you are hungry , anything tastes good . 當 你 餓 的 時候 , 任何 東西 都 好吃 . +She seems to be unhappy . 她 看起来 不 幸福 . +I bathe once a day . 我 每天 洗 一次 澡 . +It is been a long war . 这 是 场 长久 的 战争 . +Tom lost his credibility . 湯姆 失去 了 信譽 . +The old man is very kind . 這位 老人家 非常 仁慈 . +Being a good conversationalist does not just mean being a good speaker of English . 作為 一個 良好 的 交談者 , 並 不 只 意味 著作 一個 英語 說 得 好 的 說 話者 . +Can I borrow some money from you ? 我 可以 向 你 借 一些 錢 ? +Those tulips are beautiful . 那些 郁金香 很 美丽 . +You do not have to take an examination . 你 不 需要 考试 . +Tom is going to help us . 汤姆 要 帮助 我们 . +What is the spelling of your family name ? 你 的 姓 怎麼 拼 ? +I need a knife . 我 需要 一把 刀 . +I am starting to dislike her . 我 开始 不 喜欢 她 了 . +Stay put till I get to you . 待 在 原地 , 直到 我 找到 你 . +It is brand new . 这 是 全新 的 . +I do not see why not . 我 看不出 为什么 不 . +I got warm from jogging for an hour . 我 慢跑 了 一个 小时 , 身上 变 暖和 了 . +I can not figure him out . 我 不 了解 他 . +Tom runs fast . 汤姆 跑得快 . +Mary went down to the kitchen . 瑪麗 下 樓 到 廚房 . +We got him to carry our bag . 我們 讓 他 幫 我們 拿 袋子 . +Keep the change ! 不用 找 零钱 了 . +He is drawing a picture . 他 正在 画 一幅 画 . +Tom really needs help now . 湯姆 現在 真的 需要 幫助 . +Tom is room is dirty . 汤姆 的 房间 很脏 . +Would you like to eat something ? 您 想 吃 点 什么 吗 ? +Doing this is a lot of fun . 这样 做 很 有趣 +As soon as she wakes up , we will turn on the music . 她 一醒 , 我们 就 放 音乐 . +Is this your first time in Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me a lecture on drinking . 他 因 我 喝酒 而 訓斥 我 . +I thought that I was dreaming . 我 还 以为 我 在 做梦 呢 . +There are exceptions to every rule . 每 條 規則 都 有 例外 . +Does Tom need to stay home today ? 湯姆 今天 需要 留在 家裡 嗎 ? +Please speak in a louder voice . 請 說 話 大聲 一點 . +I looked over my shoulder . 我 回 過 頭 去 . +This is worth one million yen . 這 值 100 萬 日元 . +There is something wrong with my car . 我 的 車子 故障 了 . +Would you mind if I shut the window ? I have a slight cold . 你 不介意 我 关窗 吧 ? 我 有点 着凉 了 . +I would like to reserve a hotel room . 我 想要 订房 . +She works from nine . 她 九点 开始 工作 . +In case it rains , I will not go . 萬一 下雨 , 我 就 不 去 . +He has a lot of books on history . 他 有 很多 历史书籍 . +I had hoped that my mother would live until I got married . 我 曾经 希望 我 妈妈 能 活到 我 结婚 的 时候 . +You are so right . 你 真是太 對了 . +There is no point in trying again . 再 试 也 无济于事 了 . +There is no school during August . 8 月份 没课 . +She used margarine instead of butter . 她 用 人造黄油 代替 了 黄油 . +He has a large family to support . 他 有 一大家子 要養 . +She and I are classmates . 她 和 我 是 同學 . +Can I see that ? 我 能 看看 那个 吗 ? +Come if you can . 如果 你 能 就 來 吧 . +His political career has ended . 他 的 政治 生涯 完蛋 了 . +She did not like her husband drunk . 她 不 喜欢 让 自己 丈夫 喝醉 . +You should set a good example to your children . 你 应该 给 你 的 孩子 们 树立 好 的 榜样 . +It is spring . 春天 了 +He left the house without saying goodbye . 他 沒 說 再 見 就 離開 了 房子 . +What is love ? 愛 是 什麼 ? +You have beautiful lips . 你 的 嘴唇 很漂亮 . +It does not make sense to me . 这 对于 我 来说 没 任何 意义 . +Would you like to eat lunch together ? 要 一起 吃 午餐 吗 ? +It might be a wedding . 這 可能 是 一場 婚禮 . +Check your dictionary . 查 你 的 字典 . +Both my parents are at home now . 我 父母 現在 都 在家 . +Is it always a sin to tell a lie ? 说谎 总是 一种 罪 吗 ? +I have gained weight . 我 增加 了體 重 . +Is it true that Tom can not swim ? 汤姆 真的 不会 游泳 吗 ? +I do not know if I can go to the party . 我 不 知道 我 是否 可以 去 派对 . +I have not seen him in a long time . 我 很久没 见 过 他 了 . +Tom is writing a letter to his best friend . 汤姆 在 给 他 最好 的 朋友 写信 . +I do not know if he would have done it for me . 我 不 知道 他 是否 已经 为 我 做好 了 . +When will it start ? 什么 时候 开始 ? +He is just pulling your leg . 他 只是 跟 你 開 玩笑 . +I shot the horse because it had trouble breathing . 我 枪杀 了 那 匹 马 , 因为 他 已 呼吸困难 . +What are you after ? 你 想要 什麼 ? +Did you get my letter ? 你 收到 了 我 的 信 了 嗎 ? +He was always annoyed in the city by noises of one sort or another . 他 在 城市 里 一直 受到 噪音 或者 其他 的 干扰 . +For the teacher , teaching her was fun . 對 教師 來說 , 教 她 很 有趣 . +Please make the bed . 請 整理 床鋪 . +You are not to leave this room . 你 不 可以 離開 這個 房間 . +Bring me the newspaper , please . 請 把 報紙 拿來 給 我 . +Tom dragged himself out of bed and put on his clothes . 汤姆 从 床上 爬起来 , 穿上 了 衣服 . +It takes me ten minutes to walk to school . 我 走路 10 分钟 能 到 学校 . +He dropped his books on the floor . 他 的 書 掉 在 地板 上 了 . +She lived there about five years . 她 住 在 那裡 大約 5 年 了 . +She likes oranges . 她 喜歡 柳橙 . +Our teacher gives us a lot of homework . 我们 的 老师 给 作业 给得 很多 . +Tom is a very good tennis player . 湯姆 是 一個 非常 好 的 網球 選手 . +My father is very much involved in the stock market now . 我 爸爸 现在 非常 专注 于 股市 . +We moved to New York last fall . 我們 去年 秋天 搬到 了 紐約 . +I got a hole in my jeans . 我 的 牛仔 褲 破 了 一個 洞 . +I saw Tom three hours ago . 我 在 三 小时 前 见 过 汤姆 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +He is one of the greatest artists in Japan . 他 是 日本 最 伟大 的 艺术家 之一 . +I need to exercise more often . 我 需要 更 经常 地 锻炼 . +I like your shoes . 我 喜欢 你 的 鞋子 . +Those dogs are big . 那些 狗 都 很大 . +I do not speak Japanese . 我 不 说 日语 . +Our house is conveniently located . 我們 的 房子 位 於 交通 便利 的 地方 . +He built an observatory to study the stars . 為了 觀測 星象 , 他 建 了 一座 瞭望台 . +Bring me a sheet of paper , please . 请 带 一张 纸 给 我 . +I am not as stupid as you think I am . 我 不 像 你 想 的 那么 傻 . +Do not disappoint him . 别 让 他 失望 . +Tom helped me with the move . 汤姆 帮 我 搬 了 家 . +Children like fruit juice . 孩子 們 喜歡 果汁 . +I did not participate in the conversation . 我 沒有 參與 這個 談話 . +Where is the nearest telephone booth ? 最近 的 電話 亭 在 哪裡 ? +It might rain . 可能 会 下雨 . +What are you writing ? 你 在 寫 什麼 ? +This apple is very red . 这 只 苹果 非常 红 . +It must be done more carefully . 应该 更 谨慎 地 处理 它 . +He looks like a clever boy . 他 看 起來 像是 個 聰明 的 男孩 . +That is a book . 那 是 一本 書 . +This bucket has a hole in it . 這個 桶 有個 洞 . +I ate the apple . 我 吃 了 這個 蘋果 . +There is no use crying over spilt milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Everybody showed sympathy toward the prisoner . 每个 人 都 对 囚犯 表示同情 . +They sued the government for damages . 他們 狀告 政府 賠償 損失 . +Tom said that Mary was probably still studying French . 汤姆 说 玛丽 可能 还 在 学法语 +Tom has been here since 2013 . 湯姆 從 2013 年 起 一直 在 這裡 . +I have nothing to say . 我 没什么 可说 的 . +Two times two is four . 二 乘以 二 等于 四 . +Tom is an excellent father . 汤姆 是 个 杰出 的 爸爸 . +I got along with everybody . 我 和 大家 相處 . +Tom is still uncertain about whether to go to college or not . 汤姆 还 不 清楚 要 不要 上 大学 . +Mary wore a simple white dress . 玛丽 穿 了 一条 朴素 的 白 裙子 . +I do not feel well . 我 感觉 不 舒服 . +The problem is who is going to tell him the truth . 問題 是 誰 要 告訴 他 真相 . +He will be back home soon . 他 很快 就 會 回家 . +I would really like to know why he did something like that . 我 真的 很 想 知道 他 為 什麼 做 了 像 那樣 的 事 . +I have no time to read . 我 没 时间 阅读 . +I was at home then . 那个 时候 , 我 在家 . +Ask him what to do next . 问 他 下 一步 该 做 什么 . +Tom is going to tell Mary he is busy . 汤姆 会 和玛丽 说 他 很忙 . +You got here fast . 你 來 得 很快 . +What is done cannot be undone . 覆水 難收 . +Let is take a bus . 讓 我們 搭 公車 吧 . +He is full of energy . 他 充满活力 . +Have you finished reading that novel ? 你 读完 那 本 小说 了 吗 ? +I am used to it by now . 我 现在 已经 习惯 它 了 . +Is Tom there already ? 汤姆 已经 在 那里 了 吗 ? +It is less muggy today than it was yesterday . 今天 不 比 昨天 悶熱 . +We went on a picnic together . 我們 一起 去 野餐 了 . +How long are you going to stay in Japan ? 你 會 在 日本 多久 ? +My pen is new . 我 的 钢笔 是 新 的 . +That child may have been kidnapped on his way home . 那个 孩子 可能 在 回家 的 路上 被 绑架 了 . +Mary paid five dollars for her lunch . 玛丽 用 5 美元 买 了 午饭 . +He was standing at the door . 他 站 在 了 门口 . +There is nothing I would not do for Tom . 没有 我 不会 给 汤姆 做 的 事 . +I am now rich enough to afford to get anything I want . 我 现在 富 得 能 买 我 想要 的 任何 东西 . +This problem is too difficult for primary school children to solve . 这个 问题 让 小学生 解决 太 难 了 . +I get up at six . 我 六點 起床 . +You 'd better go now . 你 最好 现在 就 走 . +Not everybody can be an artist . 不是 所有人 都 能 当 艺术家 的 . +Mary prefers to dye her hair blonde . 玛丽 更 想 把 头发 染成 金色 . +I do not have time to meet up with you . 我 没 时间 跟 您 碰头 . +I am a good cook . 我 是 个 好 厨师 . +I understand your position perfectly . 我 十分 理解 你 的 立場 . +How many years did Tom spend in Boston ? 汤姆 在 波士顿 呆 了 几年 ? +That is what I want . 那 就是 我 想要 的 . +You should put safety before everything else . 你 應該 把 安全 放在 其他 一切 之上 . +She made a lot of spelling mistakes . 她 犯 了 很多 拼寫 錯誤 . +I am leaving at four . 我 四點 要 離開 . +He remained single all his life . 他 一生 獨身 . +She enjoyed herself a lot at the party . 她 在 聚會 上 玩 得 很 開心 . +I was totally confused . 我 完全 不 懂 了 . +My house is big . 我家 很大 . +The situation went from bad to worse . 情況 越來越 糟糕 . +The tire leaks air . 轮胎 漏气 了 . +With a little more effort , he would have succeeded . 如果 他 当时 再 努力 一点 , 他 就 成功 了 . +You should have kept it secret . 你 應該 保密 的 . +My mother boiled ten eggs . 妈妈 煮 了 十只 蛋 . +I think I am going to go now . 我 认为 我 现在 该 走 了 . +I am in the habit of taking some exercise before breakfast . 我 在 吃 早餐 前有 運動 的 習慣 . +Read this now . 现在 读 这个 . +I am sure you will be interested . 我 确定 你 會 感 興趣 . +" Where is your book ? " " On the table . " 「 你 的 書 在 哪 ? 」 「 在 桌上 . 」 +These scissors do not cut well . 这 把 剪刀 不好 用 . +There was nobody in the garden . 花園 裡 沒 有人 . +I have had a scratchy throat since this morning . I wonder if I have caught a cold . 早上 起来 , 嗓子 变得 很 沙哑 , 我 想 是不是 感冒 了 . +I am not asking you . I am begging you . 我 不是 要求 你 , 我 是 恳请 你 . +This food does not agree with me . 这 食物 不 适合 我 . +We saw him walking across the street . 我們 看見 他 正在 過 馬 路 . . +Please have a look at this book . 请 看 这 本书 . +Grab a hold of the rope . 抓住 繩子 . +Do not make fun of old people . 不要 捉弄 老人家 . +Tom picked up a pencil . 汤姆 拿 起 铅笔 . +Tom is resting at the moment . 汤姆 现在 在 休息 . +He looked around , but he saw no one . 他 看 向 四周 , 但 沒 看到 任何人 . +One hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I do not think he will come . 我 不 認為 他 會 來 的 . +Your shoes are here . 你 的 鞋 在 这儿 . +When did she promise to meet him ? 她 答应 几时 见 他 ? +You can not go outside . 你 不能 到 外面 去 . +What is happened ? 怎么 了 ? +He may not be happy . 他 可能 不 高兴 . +I am going to help you rescue Tom . 我 要 幫 你 營救 湯姆 . +I heard you were injured trying to help Tom . 我 听说 你 在 试图 帮助 汤姆 的 时候 受伤 了 . +Bird watching is a nice hobby . 观察 鸟类 是 个 很好 的 业余爱好 . +The prize will not be given to her . 奖项 是 不会 授给 她 的 . +May I ask you some more questions ? 我 可以 問 你 一些 問題 嗎 ? +Please give me a glass of water . 请 你 给 我 一杯 水 . +Do you have a map ? 你 有 地圖 嗎 ? +Tom is quite drunk now . 汤姆 现在 醉醺醺 的 了 . +She traveled around the world . 她 周遊 世界各地 . +I like rugby , but not as much as I like basketball . 我 喜欢 橄榄球 , 但 不 像 我 喜欢 篮球 那么 喜欢 . +He 'd prefer not to eat that . 他 宁愿 不吃 这个 . +Do you have any free time this weekend ? 這個 週末 你 有 時間 嗎 ? +The skies are clear . 天空 很 晴朗 . +In order to do that , you have to take risks . 要 这么 做 , 你 需要 冒险 . +He is a doctor by profession . 他 的 职业 是 医生 . +A capital letter is used at the beginning of a sentence . 一個 大 寫 字母 被 使用 在 一個 句子 的 開頭 . +I want to participate . 我 想 参加 . +Tom lives near me . 湯姆 住 在 我 的 附近 . +He held a ball . 他 举办 了 一场 舞会 . +I am learning how to type . 我 正在 學 如何 打字 . +I believe he is coming tomorrow . 我 相信 他 明天 會來 . +I do not care if it snows . 我 不在乎 是否 下雪 . +The explorers discovered a skeleton in the cave . 探险家 们 在 洞穴 里 发现 了 骸骨 . +Money cannot buy happiness . 钱 买不到 幸福 . +Playing tennis is fun . 打 網球 很 有趣 . +Air quality has deteriorated these past few years . 这些 年 空气质量 恶化 了 . +I did something really stupid . 我 做 了 很蠢 的 事 . +I did not understand a single word Tom said . 我 不 明白 湯姆 說 了 什麼 . +Good job ! 干 的 好 ! +I hear you passed the entrance exam . Congratulations ! 我 听说 你 通过 了 入学考试 . 恭喜 你 了 ! +A lot of people swim here in the summer . 许多 人 夏天 在 这里 游泳 . +I have to write a letter . Do you have some paper ? 我 要 写 一封信 . 你 有 纸 吗 ? +He consented to help the old lady . 他 同意 幫助 這位 老太太 . +He will never beat me . 他 永远 不会 打败 我 的 . +I wonder if this is love . 我 不 知道 這 是不是 愛 . +You should keep your valuables in a safe place . 你 该 把 你 的 值钱 物品 保存 在 一个 安全 的 地方 . +That toy is made of wood . 这个 玩具 是 木制 的 . +You are not even listening . 你 就 没在 听 . +He treats me like his slave . 他 對待 我 就 像 他 的 奴隸 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 是 一個 大 成功 . +Give me something to write on . 給 我 一些 我 可以 在 上面 寫 字 的 東西 . +He used to meditate in the morning . 他 過去 時常 在 早上 的 時候 冥想 . +They won many competitions . 他們 贏 了 許多 比賽 . +I found a taxi , but there was no driver inside . 我 找到 了 一輛 出租 車 , 但 裏 面 卻 沒 有 司 機 . +I am sorry I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +I donate blood every three months . 我 每 三个 月 献 一次 血 . +Tom turned up the TV . 汤姆 把 电视 调 大声 . +Arithmetic deals with numbers . 算数 处理 数字 . +I am glad I could be of service . 能够 出 一份 力 太好了 . +This school was founded in 1970 . 这 所 学校 是 1970 年 建成 的 . +The largest bedroom faces south . 最大 的 卧室 朝南 . +Tom made some mistakes on the test . 湯姆 在 考試 中 犯 了 一些 錯誤 . +The train arrived ten minutes behind time . 列車 晚 到 了 十分 鐘 . +As soon as he saw a policeman , he ran away . 他 一 看见 警察 就 逃走 了 . +Many friends saw him off . 許多 朋友 為 他 送行 . +We bought a round table . 我们 买 了 张 圆桌 . +People in Taiwan work hard . 在 台灣 人們 工作 很 努力 . +What a wonderful family . 多 美好 的 家庭 啊 ! +Are you free on Tuesday ? 周二 你 有空 吗 ? +When I first met Tom , I did not like him much . 我 第一次 見 到 湯姆 時 , 我 不 太 喜歡 他 . +The store can supply us with anything we need . 这家 商店 可以 提供 所有 我们 需要 的 东西 . +He is stronger than you . 他 比 你 強壯 . +My sleep was disturbed by the sound . 那 声音 搅 了 我 的 美梦 . +This ticket is good for three days . 這 張 票 的 有效期 是 三天 . +What about you ? 您 呢 ? +You did not come to school yesterday . 你 昨天 没 来 学校 . +Please sit down . 請 坐下 . +It is almost six . 差不多 六点 了 . +Tom was wearing a bulletproof vest , so the bullet did not kill him . 湯姆 穿著 一件 防彈 衣 , 所以 子彈 沒 把 他 殺 死 . +We ran three kilometers . 我們 跑 了 三 公里 . +I like to travel . 我 喜歡 旅行 . +Tom was at home . 汤姆 在家 的 . +She got on the subway at Ginza . 她 在 銀座 搭乘 了 地鐵 . +The weather is good today . 今天天气 很 好 . +Tom knew when Mary would be arriving . 汤姆 知道 玛丽 什么 时候 来 . +She helped him overcome his sadness . 她 幫助 他 平撫 了 他 的 悲傷 . +I owe Tom some money . 我 欠 湯姆 錢 . +I have already read today is paper . 我 已經 看 過 了 今天 的 報紙 . +Please wake me up at six tomorrow . 請 在 明天 六點 叫 我 起來 . +He drank a lot yesterday . 昨天 他 喝 了 很多 . +I forgot it in the garage . 我 把 它 忘 在 车库里 了 . +Tom does not know where Mary lives . 汤姆 不 知道 玛丽 住 在 哪里 . +I am going to Europe next week . 我 下週 要 去 歐洲 . +Do you know what he said ? 你 知道 他 說 了 什麼 嗎 ? +When the lights went out , Tom lit a candle . 灯灭了 , 汤姆 点 起 了 蜡烛 . +I wrote down that telephone number . 我 寫下 了 那個 電話 號碼 . +She cooked us a delicious dinner . 她 为 我们 煮 了 一顿 美味 的 晚餐 . +Translating this sentence will be very easy . 翻译 这个 句子 会 很 容易 . +She may realize later what I meant . 她 可能 以 後 會 明白 我 的 意思 . +Tom tried to kill Mary . 汤姆 试 着 杀死 玛丽 . +Flying a kite can be dangerous . 放 風箏 可以 是 危險 的 . +Our school is very close to the park . 我们 学校 离 公园 非常 近 . +Why do not you join our party ? 你 為 什麼 不 參加 我們 的 派 對 ? +Can we go back now ? 我們 現在 能 回去 嗎 ? +I have been cheated before . 我 以前 被 騙 過 . +Where is my apple juice ? 我 的 蘋 果汁 在 哪 ? +The war has not ended . 战争 还 没 结束 . +Get away ! 走開 ! +You have done a lot . 你 做 了 很多 . +Can you help us ? 你 能 幫 我們 嗎 ? +She left early in the morning . 她 清晨 離開 了 . +Winter is my favorite season . 冬天 是 我 最 喜欢 的 季节 . +Where is my dad ? 我 父亲 在 哪里 ? +" A rolling stone gathers no moss " is a proverb . “ 滚石 不生 苔 ” 是 一句 谚语 . +A stewardess was rescued from the wreck . 一名 空姐 從 飛機 殘骸 中 被 救出 來 了 . +Putting ideas into practice is difficult . 把 想法 付諸 實踐 是 困難 的 . +I do not trust him any more . 我 不再 相信 他 了 . +He was very busy all day . 他 一整天 都 很忙 . +Do not be too sensitive to criticism . 不要 对 批评 太 敏感 了 . +Right now , we have blueberries , blackberries , cherries , strawberries , peaches and nectarines . 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 草莓 、 桃子 和 油桃 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everybody wanted to eat . 每个 人 都 想 吃 . +Was this wall built to keep people out or to keep them in ? 建造 这 堵墙 是 为了 把 人 隔 在 外面 还是 把 他们 留在 里面 ? +That is life . 這 就是 生活 . +Is this the train for New York ? 這 班 是 去 紐約 的 火車 嗎 ? +There was nothing left in the fridge . 冰箱 里 什么 都 没 剩下 . +After the accident , Tom decided to stop skating . 事故 过后 , 汤姆 觉得 停止 滑冰 了 . +I do not think anyone can do this . 我 认为 没 人 能 做到 . +My hands were shaking too much to thread the needle . 我 的 手 抖 得 太 厉害 , 没法 穿针 了 . +I would like to go . 我 想要 去 . +He did not hear his name called . 他 没 听见 有人 叫 他 的 名字 . +What if something gets broken ? 要是 有 东西 坏 了 呢 . +He did not know what to do next . 他 不 知道 下 一步 要 做 什麼 . +You must not eat too much . 你 不该 吃 太 多 . +Can you really swim ? 你 真的 會 游泳 嗎 ? +She made jam from the apples . 她 用 蘋果 做 了 果醬 . +How long did you live there ? 你 住 在 那裡 多久 了 ? +How cute ! 多 可爱 啊 ! +I have some pictures to show you . 我 有 一些 照片 給 你 看 . +I will never forget what you told me . 我 將 永遠 不 會 忘記 你 告訴 過 我 的 話 . +The baby is sleeping in the cradle . 嬰兒 正在 搖 籃裡 睡覺 . +Good morning . 早上好 ! +He bought his daughter a dress . 他 買 了 一件 洋裝 給 他 女兒 . +They are much taller than us . 他們 比 我們 高 得 多 . +Do not forget about me . 別 忘 了 我 . +I caught sight of a parade on my way home . 在 回家 的 路上 , 我 看到 一场 阅兵式 . +Do you think that my work is easy ? 你 觉得 我 的 工作 简单 吗 ? +The baby started to cry . 宝宝 开始 哭 了 . +I was very surprised to hear the news . 我 听到 这个 消息 很 惊讶 . +Please show me what to do next . 請 告訴 我 下 一步 該 做 什麼 . +Tom is thirty . 汤姆 今年 三十岁 . +I know I did an awful thing . 我 知道 , 我 做 了 很 可怕 的 事 . +I am proud of my father . 我 为 我 父亲 而 自豪 . +I have just returned from the post office . 我 刚 从 邮局 回来 . +I will stop by your place on my way home . 我 回家路上 会 在 你 那里 停下 . +I am a student of this school . 我 是 这个 学校 的 学生 . +You should not eat here . 你 不该 在 这里 吃饭 . +Tom probably does not know why the picnic was canceled . 湯姆 大概 不 知道 為 什麼 野餐 取消 了 . +I like them . 我 喜欢 他们 . +I have got to stop eating such sweet ice cream . 我 必须 停止 吃 那么 甜 的 冰激凌 . +Why do not you have some sushi ? 为什么 不 尝尝 寿司 ? +He earns his living by writing . 他 靠 寫作 謀生 . +Give me the notebook . 把 筆 記本 給 我 . +In comparison with Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +Is our appointment today or tomorrow ? 我們 約 的 是 今天 還是 明天 ? +How did you get to know each other ? 你们 怎么 互相 认识 的 ? +Tom has no idea what to do with all the junk in his garage . 汤姆 不 知道 拿 他 车库 的 那些 废物 怎么办 . +We still have many other things to discuss . 我们 还有 许多 别的 事情 要 讨论 . +You must not be late for school . 你 上學 不 可以 遲 到 . +Is Tom at school ? 汤姆 在 学校 吗 ? +Did not you hear her speaking French ? 你 沒 聽到 她 說 法語 嗎 ? +Look at that picture on the desk . 看看 桌上 的 那 張 相片 . +Her mother knocked on the door . 她 的 母親 敲門 . +I think we need a doggy bag . 看來 我們 得 打包 了 . +Can you tell silver and tin apart ? 你 能 分辨 銀和錫 嗎 ? +I am a social worker . 我 是 個 社會 工作 人員 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +The button came off . 這 顆 鈕扣 脫落 了 . +As far as I know , your letter is under that book . 據 我 所知 , 你 的 信 在 那 本書 下面 . +The Second World War lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +Do not forget to bring a camera . 别忘了 带 个 相机 . +Let is clear up this problem . 把 问题 澄清 一下 . +This may take a while . 这 要 花 时间 . +I will show you around town . 我 會 帶 你 逛逛 這個 鎮 . +She did not need to do that work . 她 不 需要 做 那個 工作 . +My father is free this afternoon . 我 父親 今天下午 有空 . +I just did not want to go to work yesterday . 昨天 我 只是 不想 去 工作 . +Which way is the beach ? 去 海滩 走 哪条 路 ? +It is warm for this time of year . 對 一年 的 這個 時候 來說 , 天氣 很 溫暖 . +The sale prices are written in red ink . 售價用紅 墨水 寫 . +Keep quiet . 保持 安静 ! +I am nearly finished . 我 差不多 完成 了 . +She is not prettier than her mother . 她 没有 比 她 妈妈 更 漂亮 . +I hate chemistry . 我 讨厌 化学 . +Her skin is whiter than snow . 她 的 皮肤 比雪 还 白 . +Tom wears a wig . 湯姆 戴 假 髮 . +They are bitter enemies . 他們 是 仇 敵 . +How long are you going to stay ? 你 准备 待 多久 ? +If I were healthy , I would be happy . 如果 我 很 健康 , 我 會 很快 樂 . +Tom put a cover over his car . 汤姆 给 车盖 上套 . +I am playing baseball . 我 在 打 棒球 . +Do not open your book . 不要 打开 你 的 书 . +Tom is mother is a nurse at the hospital that is across the street from where Mary lives . 汤姆 的 妈妈 是 一名 护士 , 她 所在 的 医院 就 在 玛丽 住 的 那条 街 的 对面 . +I will send a message to Tom . 我会 给 汤姆 发 信息 . +We still do not know why . 我們 仍然 不 知道 為 什麼 . +He is always running short of cash . 他 的 現金 總是 不夠 用 . +I am married and have two children . 我 结婚 了 , 而且 有 两个 孩子 . +Do not tell anyone this . 不要 告訴 任何人 這件 事 . +He is afraid of the dog . 他 怕 那 只 狗 . +I would like your picture . 我 想要 你 的 照片 . +I am engaged to her . 我 跟 她 訂婚 了 . +I bought it at a department store . 我 在 百貨 公司 買 了 它 . +Now it is official . 现在 它 是 官方 的 . +Interest rates and inflation were high . 利率 和 通货膨胀 很 高 . +I expect you to work harder . 我 希望 你 更加 努力 地 工作 . +We had a good time last night . 我們 昨晚 玩 得 很 開心 . +I do not have a cat . 我 没有 猫 . +I like that person . 我 喜欢 那个 人 . +What is wrong with you ? 你 到底 怎么回事 啊 ? +It is not easy to train dogs . 訓練 狗 是 不 容易 的 . +He told me to be kind to others . 他 叫 我 对 别人 好 一点 . +My mother made me a Christmas cake . 母親 做 了 一個 聖誕 蛋糕 給 我 . +Watch out ! There is a big hole there . 小心 ! 在 那裡 有 一個 大洞 . +That was all Greek to me . 我 完全 看不懂 . +I was planning on going to the beach today , but then it started to rain . 我 本来 预备 今天 去 海滩 的 , 但 接着 天 就 开始 下雨 了 . +He devoured his meal . 他 狼吞虎咽 地 吃 了 一顿 . +Our problems are nothing compared to hers . 我们 的 问题 和 她 的 比 起来 不算什么 . +We like music . 我們 喜歡 音樂 . +I just want to be Tom is friend . 我 只 想 做 汤姆 的 朋友 . +Tom vanished . 汤姆 不见 了 . +That boy denies stealing the bicycle . 那个 男孩 否认 偷 了 自行车 . +Stop getting yourself worked up over little things . 不要 让 自己 因为 一些 小事 而 烦躁 了 . +It is wrong to tell lies . 說 謊 是 錯誤 的 . +I waited for him all day long . 我 等 了 他 一整天 . +I had a feeling this might happen . 我 早 有 一種 感覺 這 可能 會 發生 . +Come on , try again . 来 , 再 试试看 . +He always keeps his room clean . 他 總是 把 他 的 房間 保持 乾 淨 . +Take off your socks . 把 襪子 脫掉 . +I doubt if Tom is single . 我 怀疑 汤姆 是 单身 . +When do you practice the piano ? 你 什麼 時候 練 習彈 鋼琴 ? +It is impossible to live without water . 生活 沒有 水是 不 可能 的 . +I am sorry I was so rude . 對 不起 , 我 太 無理 了 . +Come and dance with me . 过来 和 我 跳舞 啊 ! +We found the footprints in the sand . 我們 發現 了 沙灘 上 的 腳印 . +Turn the radio down a little . 把 收音 機 的 聲音 關小 一點 . +We are going downtown to eat pizza . 我們 要 去 市中心 吃 比 薩 . +At what age did you have your first girlfriend ? 你 几岁 交 了 第一个 女朋友 ? +He made me go against my will . 他 讓 我 違背 了 我 的 意願 . +He does not know how to play golf . 他 不 知道 如何 打 高爾夫 球 . +I managed to get there in time . 我 設法 及時 到 那裡 . +He has lots of money . 他 有 很多 钱 . +My grandfather was a policeman . 我 的 祖父 是 警察 . +She did not try to hide the truth . 她 没有 试图 掩盖真相 . +Do you like any of these pictures ? 你 喜歡 這些 照片 裡 的 任何 一張 嗎 ? +Somebody caught me by the arm . 有人 抓住 了 我 的 手臂 . +I thought you were my friend . 我 以为 你 是 我 的 朋友 . +Which way is Central Park ? 中央 公園 在 哪個 方向 ? +This is the man who is suspected by the police . 这 是 被 警察 认为 有 嫌疑 的 男子 . +Do you know what color she likes ? 你 知道 她 喜歡 什麼 顏色 嗎 ? +This guitar is so expensive that I can not buy it . 这 吉他 太贵 了 , 我 没法 买下 . +I washed the dishes after supper . 晚饭 后 我 洗 了 碗碟 . +Admission is $ 3.00 at the door . 入场费 是 3 美元 . +He sang while working . 他 一边 唱歌 一边 工作 . +Who is that woman holding the flowers ? 那个 拿 着 花 的 女人 是 谁 ? +Why did we fail ? 我們 為 甚麼 失敗 了 ? +He has been ill in bed for four days . 他 已 卧病在床 四天 了 . +The minimum wage in Okinawa is 642 yen per hour . 冲绳 的 最低 时薪 是 每 小时 642 日元 . +You should not have eaten so much ice cream . 你 不 應 該 吃 這麼 多 冰淇淋 . +Do you like snow ? 你 喜欢 雪 吗 ? +You are no singer . 你 不是 歌手 . +They killed time playing cards . 他們 玩牌 來 殺 時間 . +I know what his name is . 我 知道 他 叫 什么 名字 . +Everybody talks about the weather , but nobody does anything about it . 每個 人 都 在 談論 天氣 , 但是 沒 有人 為 它 做 任何 事情 . +He gave his children a good education . 他 給 了 他 的 孩子 們 良好 的 教育 . +We are going to have a test today . 我們 今天 將 有 一個 考試 . +Tom did not waste any time , did he ? 湯姆 不 浪費 一點 時間 , 不是 麼 ? +Breathing was difficult . 呼吸 困難 . +He bought me a new dictionary . 他 買 給 我 一本 新 字典 . +I can not understand this at all . 我 一點 也 不 懂 這個 . +What is your house like ? 你 的 房子 如何 ? +A sponge absorbs water . 海绵 吸水 . +We can not force people to do that . 我們 不能 強迫 人 去 做 . +Tom and Mary stayed in a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +The boat can still be seen . 船 还 能 看见 . +I caught the last bus . 我 趕上 了 最 後 一班 公車 . +Which club do you belong to ? 你 屬 於 哪個 社團 ? +They go to church on Sunday . 他們 禮 拜 天上 教堂 . +Have you eaten your lunch yet ? 你 吃 過午 飯 了 嗎 ? +I have not quite finished eating . 我 還 沒有 完全 吃 完 . +You have a good memory . 你 的 記憶力 很 好 . +That is soft . 这 很 软 . +We will be late if we do not hurry . 再 不 快点 就 迟到 了 噢 . +Please call the fire department . 请 叫 消防员 . +I would like to show you something . 我 有 东西 想 给 你 看看 . +I do not like eggs . 我 不 喜欢 鸡蛋 . +Put on some clothes . 你 穿 點 東西 . +Do you think I am joking ? 你 觉得 我 是 在 开玩笑 吗 ? +My father is in the habit of reading the newspaper before breakfast . 我 父亲 有个 习惯 , 早餐 之前 读 报纸 . +Judging from the look of the sky , it is likely to rain . 看看 天 的 样子 , 要 下雨 了 . +I took the fact for granted . 我 忽略 了 事实 . +You are driving too fast . 你 開 得 太 快 了 . +His father passed away last year . 他 的 父親 去年 過世 了 . +There is no money left in my bank account . 我 的 银行 账户 里 没 留下 钱 . +What Tom said was not true . 湯姆 說 的 不是 真的 . +His life after retirement was unhappy . 他 退休 後 的 生活 不快 樂 . +My front teeth stick out . 我 门牙 突出 . +The simplest way is often the best way to solve a problem . 解决问题 最 简便 的 方法 往往 是 最好 的 办法 . +Tell Tom I am sorry . 告诉 汤姆 我 很 抱歉 . +Make yourself at home . 就 当 在家 一样 . +I thought your parents liked me . 我 認為 你 的 父母 喜歡 我 . +Tom never did that when he was younger . 汤姆 年轻 时 从不 那么 干 . +Tom is got nothing to hide . 汤姆 没有 什么 可 隐藏 . +Do you understand what I mean ? 你 知道 我 的 意思 嗎 ? +Tom went to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +Where is the nearest shopping mall ? 最近 的 大 卖场 在 哪里 ? +My husband reads the newspaper while eating breakfast . 我 丈夫 一边 吃 早餐 一边 读 报纸 . +The cat caught the rats . 猫 抓住 了 老鼠 . +He caught hold of the rope . 他 抓住 了 绳子 . +I do not like to swim in pools . 我 不 喜歡 在 泳池 裡 游泳 . +We will always be friends . 我们 永远 都 会 是 朋友 . +Tom and Mary is home is cluttered . 汤姆 和玛丽 的 家 很乱 . +I am ready to go back home . 我 準備 回家 了 . +Tom heard this and got angry . 聽到 這事 之 後 , 湯姆為 之 色 變 . +Tom takes the bus to the city . 湯姆 搭 公車 去 市區 . +He is coming closer . 他 在 靠近 . +You remind me of myself . 你 让 我 想起 我 自己 . +The moon is the earth is only satellite . 月球 是 地球 唯一 的 卫星 . +You are absolutely right . 你 完全 正確 . +Will this year be different ? 今年 将 会 不同 以往 吗 ? +Everybody wished he had been elected governor . 每個 人 都 希望 他 當選 州長 . +Please show me the green shirt . 請 給 我 看看 這件 綠色 的 襯衫 . +Thank you just the same . 还是 要说 谢谢 的 . +People can not live without air . 没有 空气 , 人 无法 存在 . +We gave our mother a watch . 我們 給 了 母親 一支 手 錶 . +It is just your imagination . 这 只是 你 的 想象 . +Are you free in the afternoon ? 你 下午 有空 嗎 ? +We had a late lunch at two . 我們 在 兩點鐘 吃 了 晚 午餐 . +How long does it take ? 要 花 多久 時間 ? +What did she buy at the shop ? 她 在 店 裡 買 了 什麼 ? +She is busy preparing for the trip . 她 正忙 著 準備 這次 旅行 . +He will come back sooner or later . 他 迟早会 回来 的 . +The people here are accustomed to the cold . 这里 的 人 习惯 了 寒冷 . +You seem to be an honest man . 你 看起来 像 个 老实人 . +My father is a skilled fisherman . 我 爸爸 是 个 钓鱼 高手 . +He refused to shake hands with me . 他 拒绝 跟 我 握手 . +She has gone shopping . 她 去 购物 了 . +I stayed up all night again . 我 又 熬夜 了 . +All of a sudden , three dogs appeared in front of us . 突然 之間 , 三 隻 狗 出 現 在 我 們 面前 . +This desk is designed for children . 這 張 書 桌 是 專門 為 兒童 設計 的 . +The suspect is a caucasian female . 嫌疑人 是 一位 白人 女性 . +I will get there as soon as I can . 我会 尽可能 早 地 到 那儿 . +I am a vegetarian . 我 是 素食主义者 . +The youngest daughter was particularly beautiful . 么 女 長 得 特別 漂亮 . +The plane flew toward the west . 飞机 向西飞 了 . +I bought a dozen pencils today . 我 今天 買 了 一打 鉛筆 . +You are not a coward . 您 不是 个 懦夫 . +I got up early in the morning . 我 早上 很早 起床 . +I will find you a good doctor . 我 會 幫 你 找 個 好 醫生 . +That is what I like . 我 就 喜欢 它 . +Tom set the bird free . Tom 將鳥 放走 . +He is old enough to understand it . 他 已經 到 了 能 瞭解 它 的 年紀 . +I can help you , too . 我 也 能 幫 你 . +Tom is a man of few wants . 汤姆 是 个 寡欲 的 人 . +He wrote down the telephone number . 他 寫下 這個 電話 號 碼 了 . +I have no excuse . 我 没有 借口 . +They gave him up for lost . 他們 為 失敗 放棄 了 他 . +We need you to tell us why you were absent all last week . 我们 要 你 告诉 我们 你 为什么 整个 上周 都 缺勤 . +We defeated the enemy . 我們 戰勝 了 敵人 . +Tom teaches French . 湯姆 教法 語 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 餐具 . +Do you want to get some lunch ? 你 想 吃 点 午饭 吗 ? +Tom says he is tired . 汤姆 说 他 累 了 . +He broke in on our conversation . 他 打斷 了 我們 的 談話 . +She spends a lot of time practicing the piano . 她 花 很多 时间 练 钢琴 . +How is your wife ? 你 太太 怎么样 ? +The accident happened near his home . 事故 發生 在 他家 附近 . +May I be excused from tomorrow is class ? 明天 的 课 我 能 不来 吗 ? +Where does this street lead to ? 這條 街 通到 哪裡 ? +He practiced every day at home . 他 每天 在家 練習 . +Have you ever thought of becoming a nurse ? 你 曾經 想過 當 個護士 嗎 ? +She ironed her shirt . 她 熨 了 衬衫 . +I have a little money . 我 有 一些 錢 . +Tom died in battle . 湯姆 在 戰鬥 中 死 了 . +I prefer tea to coffee . 我 喜歡 茶 勝 過 咖啡 . +She has a husband and two daughters . 她 有 丈夫 和 兩個 女兒 . +Tom did not attend the meeting . 湯姆 沒有 参加 會議 . +I could hear dogs barking all night . 我 整夜 都 能 听到 狗叫 . +There is a cat under the desk . 书桌下 有 一只 猫 . +She gave me several books . 她 給 了 我 幾本 書 . +What is the point in doing that ? 幹 嘛 那麼 麻煩 ? +Tom crushed the garlic . 汤姆 捣碎 了 大蒜 . +Switch on the light . I can not see anything . 把 灯 打开 . 我 什么 都 看不见 了 . +I think you are really amazing . 我 觉得 你 真是 让 人 大吃一惊 . +He dressed up as a woman . 他 打扮 得 像 女人 一樣 . +You can not say no . 你 无法 说 “ 不 ” . +Do you like any of these pictures ? 你 喜歡 這些 畫 裡 的 任何 一幅 嗎 ? +Who is that man ? 那 男人 是 谁 ? +Which do you like better , spring or autumn ? 春天 和 秋天 , 你 更 喜欢 哪个 ? +You are an idiot . 你个 傻子 ! +She saw a young man at the entrance . 她 在 入口 看到 一個 年輕 男人 . +I am really tired . 我 累死 了 . +Take the elevator to the fifth floor . 搭乘 電梯 到 五 樓 . +I looked , but I did not see anything . 我 看 過 了 , 但是 沒 看到 什麼 東西 . +They blamed Tom for causing the accident . 他们 指责 汤姆 造成 了 事故 . +I do not want to eat lunch now . 我 现在 不想 吃 午饭 . +Will you lend me your dictionary ? 把 你 的 字典 借 給 我 好 嗎 ? +One of my bags is missing . 我 的 一個 包包 不見 了 . +He was willing to work for others . 他 願意 為 別人 工作 . +Now they have three children . 现在 他们 有 三个 孩子 . +The weather is unusually cold . 天气 非常 寒冷 . +You and I are good friends . 你 和 我 是 好 朋友 . +Could you turn off the lights ? 你 可以 關燈 嗎 ? +Their eyes met . 他們 目光 相接 . +Take things a little more seriously . 對 事情 比較 正經 嚴肅 . +Answer my question carefully . 仔细 回答 我 的 问题 . +I am feeling fit . 我 覺得 精神 很 好 . +I think it is time for you to grow up . 我 觉得 你 是 时候 该 懂事 了 . +I am very grateful for everything you have done for me . 非常感谢 你 所 做 的 一切 . +I do not think my life is very interesting . 我 不 認為 我 的 人生 很 有趣 . +Stay with us . 和 我们 留在 一起 吧 ! +If I get rich , I will buy it . 如果 我 有钱 , 我 就 会 买 它 . +I have no way of knowing that . 我 无从 知道 . +If there was no sun , all the animals would be dead . 如果 没有 太阳 , 那 所有 生物 都 会 死 . +What language is spoken in America ? 在 美國 的 人 說 什麼 語言 ? +Coal is not always black . 煤 并不一定 都 是 黑 的 . +Let is take it easy . 讓 我們 放 輕 鬆 吧 . +I would rather live by myself than do as he tells me to do . 我 寧願 自己 獨立 生活 也 不要 他 來 指使 我 . +English is difficult to learn . 英語 很 難 學 . +I do not know where he comes from . 我 不 知道 他 從 哪裡 來 . +It is very hot here in the summer . 这里 夏天 非常 炎热 . +His house is somewhere about here . 他家 在 这儿 某处 . +The curtain fell . 谢幕 了 . +He can speak Russian as well . 他 还 会 说 俄语 . +She left the hospital an hour ago . 她 一 小时 前 离开 了 医院 . +I thought you were listening . 我 以为 你 在 听 . +He will succeed to the throne . 他 会 继承 王位 . +I prefer riding to walking . 我 喜歡 騎車 勝 過 走路 . +I am tall . 我 个子 高 . +I bought a hat at the store . 我 在 這家 商店 買 了 一頂 帽子 . +She lives in a huge house . 她 住 在 一個 很大 的 房子 裡 . +What do you want now ? 您 现在 想要 什么 ? +I can help you out . 我 能 幫 你 . +This is all I know . 這 是 我 所 知道 的 . +Would you please have a look at these papers ? 請 你 看看 這些 文件 . +I do not want to quit this job . 我 不想 辞去 这份 工作 . +Let is discuss the problem with them . 让 我们 和 他们 讨论 这个 问题 吧 . +Ask Tom . 去 问 汤姆 . +I am crazy about you . 我 为 你 着迷 . +Which ones are Tom is ? 哪个 是 汤姆 的 ? +I did not hear it . 我 没 听见 . +The boy who lives next door often comes home late . 隔壁 的 男孩 常常 晚 回家 . +I will get some help . 我会 需要 帮助 . +She is a bit naive . 她 有点 天真 . +No one knows . 沒 有人 知道 . +I will give you a prescription . 我会 给 你 开 个 药方 . +Is this everything ? 这 就是 全部 吗 ? +They forgave him for his crimes . 他们 原谅 了 他 的 罪行 . +Do you have any friends who are doctors ? 你 有 朋友 是 醫生 嗎 ? +My hobby is collecting old coins . 我 的 嗜好 是 收集 古錢幣 . +You had better be careful not to overeat . 你 最好 小心 不要 吃 過 量 . +Where were you yesterday morning ? 你 昨天上午 在 哪裡 ? +Do I have to stay in the hospital ? 我 必須 留在 醫院 嗎 ? +Would you lend me your knife ? 你 可以 借 我 你 的 刀 嗎 ? +She graduated from Kobe University . 她 畢業 於 神戶 大學 . +He did not show up at the party . 他 沒有 在 派 對 上 出現 . +I just want you to come . 我 只是 想要 你 来 . +Tom wears a hat every day . Tom 每天 都 戴帽子 . +You continue making the same mistakes time after time . 你 每次 都 继续 犯 同样 的 错误 . +She has a pretty doll . 她 有个 漂亮 的 洋娃娃 . +I just do not want to marry Tom . 我 只是 不想 和 汤姆 结婚 . +I did my best . 我 做得好 到 不能 再 好 了 . +I do not know whether I have time or not . 我 不 知道 我 有 沒有 時間 . +Do not worry about the past . 不要 担心 过去 . +Words express thoughts . 語 言表 達 思想 . +There is a beautiful park near my home . 我家 附近 有个 漂亮 的 公园 . +Step out of the car and place your hands behind your back . 下车 , 把手 放在 背后 . +He rode his bicycle there . 他 是 騎 自行 車 去 的 . +How high can you jump ? 你 能 跳 多 高 ? +He likes anything sweet . 他 喜歡 一切 甜 的 東西 . +I have a daughter . 我 有 一个 女儿 . +They sometimes help us . 他們 有 時 幫 我們 . +I will see you next month . 我 下個 月會 來看 你 . +My uncle has a flower shop near the station . 我 叔叔 在 車站 附近 有 一家 花店 . +Let me die . 让 我 去 死 . +Are you kidding ? 你 在 开玩笑 吗 ? +The vending machines are over there . 自动售货机 在 那边 . +We have the same problem . 你 的 问题 和 我 的 一样 . +I think I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +It is me . 是 我 . +The news made her sad . 这个 消息 让 她 很 伤心 . +I like fish . 我 喜欢 鱼 . +Both of my sisters are not married . 我 的 兩個 姊妹 並非 都 結婚 了 . +Do not leave your work half finished . 别 留 着 一半 工作 没 干 . +What is your favorite type of pizza ? 你 最 喜歡 的 比薩類 型 是 甚麼 ? +What is your name ? 你 叫 什么 名字 ? +It is definite that he will go to America . 他 肯定 要 去 美国 . +I work every day except Sunday . 除了 星期天 我 每 一天 都 工作 . +It was just as I thought . 这 正如 我 想 的 一样 . +Tom stayed home . 湯姆 留在 家裡 . +Have you been fired ? 你 曾經 被 開除 過 嗎 ? +They are about the same age . 他们 年龄 相仿 . +This book was printed in England . 这 本书 在 英国 印刷 . +Are you sure of your facts ? 你 確定 你 的 資料 屬實 嗎 ? +Nobody can know everything . 沒 有人 能 無所 不知 . +She had already gone when I arrived . 當 我 到 的 時候 , 她 已經 走 了 . +Do you like Japanese food ? 你 喜欢 日本 菜 吗 ? +The party ended at ten o 'clock . 派 對 在 十點鐘 結束 . +I am taking care of my grandfather . 我 照顧 我 的 爺爺 . +My uncle made me serve as interpreter . 我 叔叔 讓 我 擔任 翻譯 . +How old are you ? 你 幾歲 ? +I almost forgot all about that . 我 幾乎 忘 了 所有 關於 那件事 . +He amassed a fortune in stock trading during the last boom . 他 在 上个 景气 时期 炒股 攒下 了 一笔 钱 . +I must finish this work first . 我 必須 先 完成 這個 工作 . +He must be about forty . 他 应该 40 岁 左右 吧 . +Hey , what are you doing here ? 嘿 , 你 在 這 做 什麼 ? +Starting tomorrow , it is going to snow for a week . 雪 从 明天 开始 下 , 一直 持续 一个 星期 . +It is cold . 天 很 冷 . +You need a vacation . 你 需要 個 假期 . +How long are you planning to stay ? 你 准备 待 多久 ? +Tom followed Mary into the room . 汤姆 跟着 玛丽 进入 了 房间 . +I was very nervous as the plane took off . 飛機 起飛 的 時候 我 很 緊張 . +This plane flies between Osaka and Hakodate . 這 架 飛機 往返 於 大阪 和 函館 之間 . +They made straight for their destination . 他們 直奔 目的地 . +Tom has something very important to tell Mary . 湯姆 有 很 重要 的 事 要 告訴 瑪麗 . +What time will you have breakfast ? 你 什麼 時候 吃 早餐 ? +There is no possibility of his coming . 他 不 可能 來 . +Tom does not usually eat breakfast . 汤姆 一般 不吃 早饭 . +This table takes up too much space . 這 張 桌子 太 佔 空間 了 . +Tell me how to solve the problem . 告訴 我 如何 解決 這個 問題 . +Now tell us what we want to know . 现在 告诉 我们 我们 想 知道 的 . +Tom is always watching television . 湯姆總 是 在 看電視 . +It is a sheer waste of time . 這 完全 是 浪費 時間 . +Maybe you should study harder next time . 你 下回 可能 该 更 努力学习 . +The world is beautiful . 萬物 真 美好 . +We had a slight difference of opinion . 我們 的 看法 有 一點 不同 . +All the furniture was covered with dust . 所有 的 家具 都 佈 滿 了 灰 塵 . +Come here by ten at the latest . 最晚 十點 前來 這裡 . +He is anxious to see you . 他 急 於 要 見 你 . +I must help her at any cost . 我 必须 不惜一切 代价 帮助 她 . +We should inform them about that . 我们 应该 把 那件 事情 告知 他们 . +He prefers French to German . 他 喜歡 法語 勝 過 德語 . +If you could go back and start your life again , from what age would you like to start ? 假如能 回到 过去 让 人生 再 来 一遍 的话 , 你 希望 能 回到 几岁 的 时候 ? +Pride goes before a fall . 骄傲 使 人 落后 . +You can not do two things at once . 你 不能 一心两用 . +He is old enough to know better . 他 已經 長大 該 懂事 了 . +There is nothing better than taking a nice walk . 没有 什么 比 散步 更好 的 了 . +We are friends . 我们 是 朋友 . +This table is heavy . 这 张 桌子 很重 . +He has written a letter . 他 写 了 一封信 . +Why should anyone be surprised ? 为什么 任何人 应该 感到 惊喜 ? +I spoke with him about the matter . 我 跟 他 談 過 這個 問題 . +We have got to start thinking about recycling . 我們 必須 開始 考慮 回收 . +I do not like anything . 我 什么 都 不 喜欢 . +I hiccup a lot . 我 经常 打嗝 . +Tom tore the ticket to bits . 湯姆 把 票 撕成 碎片 . +I really enjoyed last night . 我 昨晚 真盡 興 . +I let my sister use my new computer . 我 让 我 妹妹 用 我 的 新 电脑 . +I have done bad things that I should be punished for . 我 做 了 該 受罰 的 壞事 . +We got lost in the fog . 我们 在 雾 中 迷了路 . +What did she say ? 她 说 了 什么 ? +There is nothing you can do for Tom . 你 無法 為 湯姆 做 甚麼 . +She has plenty of books . 她 有 大量 的 書 . +The box was not empty . 箱子 不是 空 的 . +Tom is accustomed to getting up early . 汤姆 习惯 早起 . +I feel like going out today . 我 今天 想 出門 . +She will be a famous artist in the future . 她 将来 会 是 一个 有名 的 艺术家 . +I have always wanted to climb Mt . Fuji . 我 一直 想 登 富士山 . +Have you washed the car yet ? 你 洗過 車子 了 嗎 ? +There was nothing on the radio about the accident . 電台 沒有 提到 這個 事故 . +The cottage was clean and tidy . 小屋 干净 又 整洁 . +Take care ! 照顾 好 自己 . +It all depends on the weather . 一切 都 取決 於 天氣 . +The girl was sobbing in the corner of the schoolroom . 女孩 在 教室 的 角落 啜泣 . +" He used to love me , " she answered sadly . 他 以前 愛 我 , 她 傷 心地 回答 . +You only gave me fifty cents . 你 只 給 了 我 五十 美分 . +Send for a doctor at once . 立即 送 醫 . +He acts as if he were a king . 他 做 得 好像 自己 是 国王 一样 . +What is it ? 這 是 什麼 啊 ? +He walks fast . 他 走路 很快 . +In the United States , school buses are yellow . 在 美国 , 校车 是 黄色 的 . +The broccoli today is not very fresh . 今天 的 西藍花 不是 很新 鮮 . +Shake my hand . 和 我 握手 . +Which goes faster , a ship or a train ? 船 和 火车 哪个 跑得快 ? +Mary is tall . 瑪麗 很 高 . +Watch your step . 走路 小心 . +Tom has lost his mind . 湯姆 失去 理智 了 . +Somebody has stolen my hair dryer . 有人 偷 了 我 的 吹 風機 . +I am sore all over . 我 全身 酸痛 . +Six divided by two equals three . 六 除以 二 得 三 . +Please say hello to your family . 带 我 向 你家 人 问好 . +Tom told us this morning that he and Mary were moving to Boston . 汤姆 告诉 我 今天上午 他 和玛丽 要 搬到 波士顿 . +How do I explain that to Tom ? 我 怎麼 跟 湯姆 解釋 ? +What do we want ? 我們 要 什麼 ? +Please get dressed . 请 穿衣服 . +This flower is the most beautiful of all flowers . 这 朵花 是 所有 花 中 最 漂亮 的 . +It is good to be a winner . 做 个 赢家 很 好 . +I think that I now have enough money to buy the car I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Where is the United Airlines check @-@ in counter ? 聯合 航空公司 辦理 登機 手續 的 櫃 檯 在 哪 裡 ? +Will Tom really do that ? 湯姆真 要 做 嗎 ? +The time will soon come when man will be able to travel to the moon . 在 不久 的 将来 人类 会 可以 去 月球 旅游 . +Of course she passed the test . 當然 , 她 通過 了 測驗 . +Tom has a reservation . 汤姆 有 预约 . +You are the one who suggested that we travel together . 你 是 那個 建議 我們 一起 旅行 的 人 . +Their cattle are all fat . 他們 的 牛 都 很 肥 . +He threw a piece of meat to a dog . 他 丢 了 块 肉 给 一条 狗 . +I know what is in the box . 我 知道 盒子 裡 有 什麼 . +I have more money than Tom . 我 比 汤姆 有钱 . +I can hardly understand what he says . 我 幾乎 無法 了解 他 說 的 話 . +I am too sleepy to do my homework . 我 太 累 了 , 做不了 功课 . +Can we stop fighting ? 我们 能 不 打 了 吗 ? +I was somewhere else . 我 在 另 一个 地方 . +Fire is always dangerous . 火 總是 危險 的 . +We have received a lot of applications in answer to our advertisements . 我們 已經 收到 了 很多 回應 我們 廣告 的 申請 . +He said that you had better go . 他 說 你 最好 去 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +She will be here this evening . 她 今天 晚上 將 在 這裡 . +Does anyone else have any advice ? 有人 還 有 什麼 建議 嗎 ? +She was sitting under a tree . 她 在 一棵树 下 坐 着 . +What languages are spoken in America ? 在 美国 人们 说 哪些 语言 ? +Lie still . 躺 着 不动 . +We climbed the mountain last year . 我們 去年 爬上 了 這 座 山 . +There is not a drop of water left . 沒有 剩下 一滴水 . +Malaria is carried by mosquitoes . 瘧疾 是 由 蚊子 傳染 的 . +I do not like studying in this heat . 我 不 喜歡 在 這麼 熱 的 氣 溫下 唸 書 . +They are not afraid of hard work . 他們 不怕 艱苦 的 工作 . +This is so boring . 这 太 无聊 了 . +I do not like eggs . 我 不 喜欢 吃 鸡蛋 . +He usually goes to work at 8 a.m. 通常 , 他 早上 8 点 去 上班 . +I do not play tennis that well . 我 网球 打 得 不 那么 好 . +I quickly ate lunch . 我 迅速 地 吃 了 午飯 . +I want some potatoes . 我 要 几个 土豆 . +Tom is single and has a three @-@ year @-@ old daughter . Tom 單身 , 他 有個 三歲 的 女兒 . +She refused to do what they wanted . 她 拒絕 做 他們 想要 的 事 . +As long as you keep quiet , you can stay here . 只要 你 保持 安靜 , 你 可以 留在 這裡 . +Hand me my towel . 幫 我 遞 一下 毛巾 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +America is very big . 美洲 很大 . +Why did not you tell Tom that you were married ? 你 为什么 不 告诉 汤姆 你 已经 结婚 了 ? +Who died ? 谁 死 了 ? +I am an optimist by nature . 我 生性 樂觀 . +Everyone likes Tom . 大家 都 喜歡 湯姆 . +Tom covered his face with his hands . 汤姆 用 他 的 手 捂住 了 他 的 脸 . +You can get from Washington to New York by train . 你们 可以 乘火车 从 华盛顿 去 纽约 . +How do you want this handled ? 你 想 怎麼 處理 ? +I 'd like a receipt , please . 麻煩 我 要 一張 收據 . +I can not tell you now . 我 現在 不能 告訴 你 . +I need some good advice . 我 需要 一些 好 的 忠告 . +The answer misses the point . 回答 偏 了 . +Could I get some tea ? 可以 给 我 一些 茶水 吗 ? +He is shorter than Tom . 他 比 湯姆 矮 . +Is there anything that needs to be done ? 有 甚麼 事 要 做 嗎 ? +He was the first to come . 他 是 第一 個 來 的 . +It is up to you to decide . 由 你 來 決定 . +We had an unpleasant experience there . 我們 在 那裡 有 一個 不 愉快 的 經歷 . +He got a master is degree in law . 他 得到 了 法律 碩士 學位 . +We may need some . 我們 可能 需要 一些 . +The patient is in a deep coma . 患者 现在 处于 深度 昏迷 状态 . +I do not like the way you laugh at her . 我 不 喜欢 你 嘲笑 她 的 方式 . +I am going to learn French . 我 要 学法语 . +To make matters worse , he is not even conscious of annoying his neighbors . 让 事情 更 糟糕 的 是 , 他 没有 注意 到 他 打扰到 了 邻居 . +The grass looks nice . 草地 看来 不错 . +What time do you close ? 你们 几点 关门 ? +I borrowed money from my father . 我 向 我 父親 借錢 . +I 'd like you to have an ultrasound . 我 想 讓 你 接受 超聲 檢查 . +Spanish is spoken in twenty countries . 有 二十 個 國家 說 西班牙 語 . +They all laughed at his jokes . 他們 全都 被 他 的 笑話 逗笑 了 . +She invited Tom and me to the party . 她 邀請 我 和 湯姆 去 派 對 . +I would like to have a cup of coffee . 我 想要 一杯 咖啡 . +I wish you a happy birthday . 我 祝 你 生日快乐 . +Tom , I want to have a chat with you . Tom , 我 想 和 你 談談 . +I do not like wearing socks . 我 不 喜歡 穿 襪子 . +Tom headed out the door . 汤姆 向 门 走 去 . +I asked Tom what he was reading . 我 问 了 汤姆 在读 什么 . +She was born in America . 她 生 在 美洲 . +In case the shipment is delayed , we have special delay insurance . 万一 船运 迟 了 , 我们 有 特别 的 迟到 保险 . +Is it really that hard to speak French ? 说 法语 真 有 那么 难 吗 ? +Where is the nearest drugstore ? 最近 的 藥店 在 哪裡 ? +She was making tea . 她 正在 泡茶 . +I like both science and math . 科学 和 数学 我 都 喜欢 . +I want you to take a break . 我 想 讓 你 歇歇 . +Just give me your name and address . 只要 給 我 你 的 姓名 和 住址 . +I had a dream about him . 我 夢 到 了 他 . +We got to be friends . 我们 交 了 朋友 . +Do you like apples ? 你 喜欢 苹果 吗 ? +Whose fault is it ? 是 誰 的 錯 呢 ? +I did not sell Tom my car . 我 没 把 我 的 车 卖 给 汤姆 . +Tom would still be alive if he had been wearing his seat belt . 要是 汤姆 系 上 安全带 的话 , 他 就 不会 死 的 . +You need to pay extra for the batteries . 电池 要 额外 付钱 . +Who touched my gun ? 誰 碰 了 我 的 槍 ? +Tom is afraid to go out alone at night . 汤姆 害怕 晚上 一个 人 出门儿 . +I wish I could buy you everything you wanted . 我 希望 我 能 买下 你 想要 的 所有 东西 . +Send for the doctor at once . 立刻 派 人 去 請 醫生 來 . +I love her and she loves me . 我 愛 她 , 她 也 愛 我 . +Everyone except Tom ate pizza . 所有人 除了 汤姆 都 吃 了 比萨 . +The radio did not mention the incident . 電台 沒有 提到 這個 事故 . +She appears to have many friends . 她 看 起來 好像 有 很多 朋友 . +Tom is my grandfather . Tom 是 我 爺爺 . +Tom is deceitful . 汤姆 是 个 骗子 . +I caught three fish yesterday . 昨天 我 釣 了 三條 魚 . +What is the point in doing that ? 那樣 做 有 什麼 用 ? +I was late for school this morning . 我 今天 早上 上學 遲到 . +I will go by myself . 我 會 自己 走 . +I feel cold . 我 觉得 冷 . +I have been busy writing a short story . 我 一直 忙于 写 一部 短篇小说 . +Why do not you eat pineapple ? 你 為 什麼 不吃 菠蘿 ? +Might I ask your name and address ? 我 能 问 一下 您 的 姓名 和 住址 吗 ? +It cost me a thousand yen to get my bicycle fixed . 修理 我 的 腳踏車 花 了 我 一千 日 圓 . +I did not tell Tom what needed to be done . 我 沒 告訴 湯姆 要 做 甚麼 . +Every cloud has a silver lining . 山 窮水盡疑無路 , 柳暗花明又一村 . +How does this work ? 這 是 怎麼 運行 的 ? +It is hard to quit smoking . 戒烟 难 . +We are Canadians . 我們 是 加拿大人 . +What does he say in his letter ? 他 在 信 上 说 什么 ? +I am glad I could help . 能够 出 一份 力 太好了 . +He was a rugby player . 他 曾 是 个 英式 橄榄球 运动员 . +I will be watching you . 我 會 看著 你 . +No one will see us . 沒 有人 會 看到 我們 . +Please send us more information . 請 給 我們 更 多 訊 息 . +Can I eat this orange ? 我 能 吃 这 只 橙子 吗 ? +There were several rooms still vacant . 还有 几间 空房 . +The time has come when I must tell you the truth . 現在 是 我 必須 告訴 你 真相 的 時候 了 . +You swim better than me . 你 游泳 游得 比 我 好 . +Did the police find any fingerprints ? 警察 找到 指纹 了 吗 ? +You really are tall , are not you ? 你 真的 很 高 , 不是 嗎 ? +I caught a beautiful butterfly . 我 抓到 一 隻 漂亮 的 蝴蝶 . +I want you to be prepared . 我 想 讓 你 準備 好 . +I have worn holes in my socks . 我 把 襪子 穿破 了 . +Do you have a knife ? 你 有 刀 吗 ? +He put the book on the shelf . 他 把 书 放在 了 书架上 . +The last person I told my idea to thought I was nuts . 最后 一个 听 我 说 我 的 主意 的 人 认为 我 疯 了 . +They were always making jokes . 他们 一直 闹笑话 . +Some people do not like to deposit their money in banks . 有些 人 不 喜欢 把 钱 存 银行 . +I feel like everybody is watching me . 我 感觉 大家 都 在 关注 我 . +I have lived here since I was a boy . 我 还是 一个 小男孩 的 时候 就 住 在 这里 . +Traffic is a major urban problem . 交通 是 都市 的 一個 主要 問題 . +You can borrow my car anytime . 你 隨時 可以 借用 我 的 車 . +You are free to go . 你 可以 走 了 . +We work every day but Sunday . 我們 除了 週日 每 一天 都 工作 . +I hope everything will be fine in the end . 我 希望 最后 一切 都 好 . +Who do you want to talk to ? 你 想 跟 誰 說 話 ? +I got the roller skates for nothing . 我 免費 得到 溜冰鞋 . +Enjoy your holidays . 度假 愉快 ! +Open your book to page nine . 打開 你 的 書 到 第九 頁 . +Who did you give it to ? 你 把 它 給 誰 了 ? +The next concert will take place in June . 下一场 音乐会 将 在 六月份 举办 . +She went to the park with him . 她 跟 他 去 公園 了 . +Grab that . 抓住 那个 . +He is hard to get along with . 他 這個 人 很 難相 處 . +How much will it all cost ? 一共 要 多少 錢 ? +Europeans like to drink wine . 歐洲 人 都 愛 喝 葡萄酒 . +Please do not use my name . 請 不要 用 我 的 名字 . +What is your nickname ? 你 的 昵称 是 甚麼 ? +Tom is not interested in Mary at all . 汤姆 对 玛丽 一点 也 不感兴趣 +Is Tom autistic ? 汤姆 有 自闭症 吗 ? +Give me something to eat . 給 我 點 東西 吃 . +I managed to make him understand it . 我 設法 讓 他 明白 了 . +He mistook me for my mother . 他 把 我 誤 認為 是 我 的 母親 . +Tom abstained from voting . 汤姆 投票 弃权 . +I wonder if you are as busy as we are . 我 担心 你 會 跟 我們 一樣 忙 . +Both Tom and Mary can speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +How often did you visit Kyoto ? 你 多常 造訪 京都 ? +This is exactly what I wanted . 我 想要 的 就是 这个 . +This blue sweater is very pretty . 這件 藍色 毛衣 很漂亮 . +This message does not make sense . 這個 消息 沒有 道理 . +They changed the system . 他們 改變 了 制度 . +Tom is interested in mountaineering . 湯姆 對 登山 感興趣 . +That is the reason he became angry . 那 就是 他 生气 的 理由 . +The fire was out . 火 熄灭 了 . +He clipped the sheep . 他 為 羊 隻 修剪 羊毛 . +There is no one in the room . 沒 有人 在 房間 裡 . +She will have to cook for everyone . 她 將 必須 為 大家 做飯 . +I plan to never drink again . 我 打算 絕 不再 喝酒 . +The plane was three hours late due to bad weather . 由于 天气 不好 , 飞机 迟到 了 3 小时 . +I will visit him tomorrow . 明天 我 將 拜訪 他 . +Change trains at the next station . 在 下 一站 換 火車 . +We had a conversation about baseball . 我們 交談 了 有關 棒球 的 事 . +Do I have to take off my shoes here ? 在 這裡 我 必須 脫 鞋 嗎 ? +I went there yesterday . 昨天 我 去 了 那裡 . +I hope that Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +We have been going out three months . 我們 外出 了 三個 月 . +Lemons are sour . 檸檬 是 酸 的 . +He forgot to turn off the light . 他 忘 了 關燈 . +Could you please repeat that ? 你 能 重复 一遍 吗 ? +Neither Tom nor Mary will do that . 湯姆 和 瑪麗 都 不 會 做 那件事 . +Let is play soccer . 去 踢足球 吧 . +I want a massage . I need to relax . 我 想要 按摩 . 我 需要 放松 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +Can I talk to you privately for a minute ? 我 能 跟 你 私下 谈 一分钟 吗 ? +I gave her a lift to town . 我 載 她 去 城裡 了 . +I do not think Tom will go to Boston next weekend . 我 不 認為 湯姆 下週 會 去 波士 頓 . +The situation has not changed at all . 情况 丝毫 没有 改变 . +How about tomorrow night at nine ? 明天 晚上 九点 怎么样 ? +Tom was excited to go to the concert . 汤姆 为 去 音乐会 而 激动 . +Hey , your dog just bit me . 嘿 , 你 的 狗 刚 咬 了 我 . +Why does not he tell me jokes anymore ? 為 甚麼 他 不再 跟 我 講 笑 話 了 ? +I love jokes about animals . 我 爱 听 有关 动物 的 笑话 . +The armed forces occupied the entire territory . 军队 占领 了 整片 领土 . +This is the room where the body was found . 这 就是 发现 尸体 的 房间 . +It was her little sister that broke her toy . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +Your name has been crossed off the list . 你 的 名字 已经 从 名单 删除 了 . +I went there many times . 我 去 那裡 很 多次 了 . +He was opposed to monopolies . 他 反对 垄断 . 他 曾经 / 以前 反对 垄断 +Have not I seen you before ? 我 以前 沒見 過 你 嗎 ? +Your behavior is intolerable . 你 的 行为 让 人 无法忍受 . +Fill it up . 把 它 填滿 . +The well has run dry . 這 口 井 乾 涸了 . +That is what I hope . 我 希望 如此 . +I studied for one hour . 我 讀 了 一個 小 時 的 書 . +We almost had Tom convinced . 我们 差不多 说服 Tom 了 . +She waved at me before she got on board the plane . 她 上 飞机 前 , 给 我 招 了 招手 . +Taxi fares will go up next month . 計程 車費 將 在 下 個 月 漲價 . +A Persian cat was sleeping under the table . 波斯猫 在 桌子 下面 睡觉 . +The children washed their feet . 孩子 们 洗 了 他们 的 脚 . +That Japanese word has no equivalent in English . 那个 日文 词汇 没有 对应 的 英文 . +There are a lot of eggs in the box . 这个 盒子 里 有 很多 蛋 . +How is your last name written ? 你 的 姓氏 怎么 写 ? +Where do you have pain ? 你 哪裡 痛 ? +I want to eat some cake first . 我 想 先 吃 點 蛋糕 . +We just want to find Tom . 我們 只是 想 找 Tom . +Are you afraid of dogs ? 你 怕 狗 吗 ? +Let is end this nonsense . 让 我们 结束 这 胡言乱语 . +I feel a lot better today . 我 今天 感觉 好多 了 . +Are we done ? 我们 完成 了 吗 ? +Please turn on the radio . 请 打开 收音机 . +Her birthday party will be held tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +They helped him get to Canada . 他們 幫 他 去 加拿大 . +I could not stop myself from laughing . 我 不能 忍著 不 笑 . +He is highly intelligent . 他 聪明 得 很 . +I weighed myself on the bathroom scales . 我 用 浴室 的 体重 计量 了 体重 . +Can you guess my age ? 你 能 猜到 我 的 年龄 吗 ? +She almost passed out . 她 几乎 喝晕 了 . +I usually get up at 6 : 00 . 我 通常 在 六點鐘 起床 . +I do not like my hair at all . 我 根本 不 喜歡 我 的 頭 髮 . +Is Tom swimming ? 汤姆 在 游泳 吗 ? +They have a very nice veranda . 他们 有 一个 非常 漂亮 的 暖房 . +I do not think Tom trusts many people . 我 不 認為 湯姆 相信 許多 人 . +I got her to clean my room . 我 讓 她 把 我 的 房間 弄乾 淨 . +Please give me a blanket . 請 給 我 送 一塊 毯子 . +Quite by chance , I met my old friend at the airport . 很 幸运地 , 我 在 机场 遇到 了 我 的 老朋友 . +Let me explain it to Tom . 讓 我 跟 湯姆 說明 . +What mountain do you think is the second highest in Japan ? 你 认为 日本 第二 高峰 是 哪 座 山 ? +I am sure Tom will do his best . 我 确定 汤姆 会 尽力去做 . +What did you answer ? 你 回答 了 什么 ? +Tom clenched his teeth . 汤姆 咬紧牙关 . +I can not afford to play tennis . 我 負擔 不 起 打 網球 的 費用 . +Tom has recently become forgetful . Tom 最近 变得 健忘 了 . +Spell your name , please . 请 拼 一下 您 的 名字 . +I was barely able to work . 我 几乎 不能 工作 了 . +Mary is Tom is secretary . 玛丽 是 汤姆 的 秘书 . +Your CV has really impressed me . 你 的 履歷 給 我 留下 深刻 的 印象 . +It was raining when we arrived . 我們 到 的 時候 正在 下雨 . +I have a dog . 我 有 一条 狗 . +Did you call Tom ? 给 汤姆 打 过 电话 了 吗 ? +I need to get some stamps . 我 需要 一些 郵票 . +What do you call this flower ? 這個 花 叫 什麼 名字 ? +My father died four years ago . 我 的 父親 四年 前 去世 了 . +Tom is Mary is ex @-@ boyfriend . 汤姆 是 玛丽 的 前男友 . +The dog chased the rabbit . 狗 追 兔子 . +Do you feel lucky ? 你 觉得 幸运 吗 ? +She got wet to the skin . 她 渾身 濕透 了 . +Tom is friendly to everyone . 汤姆 对 每个 人 都 很 友好 . +English has become an international language . 英语 成为 了 一门 国际 语言 . +You had better not stay up late . 你 最好 不要 熬夜 . +They adopted the little girl . 他们 收养 了 那个 小女孩 . +Why have you been late to school every day this week ? 為 什麼 你 這個 禮 拜 每天 上學 都 遲 到 ? +I was sore for three weeks . 我 难受 三周 了 . +You have good reason to be angry . 你 有 充分 的 理由 生氣 . +Who is that woman in the brown coat ? 那个 穿 棕色 大衣 的 女人 是 谁 ? +I have just been to the post office . 我 剛剛 去 了 郵局 . +No drinkers allowed . 飲酒 者 不准 禁入 . +She wants to move out and find a place of her own . 她 想 搬出去 , 找 個 屬 於 自己 的 地方 . +Here is my baggage . 这 是 我 的 行李 . +The situation is worse than I 'd thought . 情況 比 我 想 的 還壞 . +She knows your mother very well . 她 對 你 的 母親 很 熟悉 . +My dad is busy . 我 爸爸 很忙 . +He used to be an imaginative boy . 他 曾經 是 一個 富有 想像力 的 男孩 . +The cat is watching the fish . 猫 看着 鱼 . +I 'd love to come with you . 我 想 和 你 一起 去 . +She can not play the piano very well . 她 無法 把 鋼琴 彈 得 很 好 . +How do you pronounce your name ? 你 怎 麼 唸 你 的 名字 ? +He disappeared without a trace . 他 消失 了 , 不留 一丝 踪迹 . +Let is discuss the matter right now . 让 我们 马上 讨论 这个 问题 吧 . +If you would move over , there would be room for everyone . 如果 您 移 過 去 一點 , 每個 人 就 可以 有空 間 了 . +I will see to it . 我 會 留意 的 . +What will the results be ? 結果 會 是 甚麼樣 的 ? +I knew this day was coming . 我 知道 這天 要來 . +Meet me there . 在 那裡 見 我 . +I was ten minutes late for school . 我 上學 遲到 了 十分 鐘 . +My uncle gave me a gift . 我 叔叔 给 了 我 一份 礼物 . +The kidnappers showed no sign of giving up . 這些 綁 匪 沒有 放棄 的 跡象 . +He is unable to buy a car . 他 不能 买车 . +Is there central heating in this building ? 这栋 楼 里面 有 中央 暖气 系统 吗 ? +I have a few friends here . 我 在 这儿 有 一些 朋友 . +All our efforts were in vain . 我们 所有 的 努力 都 白费 了 . +Tom hid in the shed . 汤姆 躲 在 棚里 . +We are looking for him . 我们 在 找 他 . +Tom is birthday was yesterday . 汤姆 的 生日 是 昨天 . +You are always as busy as a bee . 你 總是 跟 蜜蜂 一樣 地 忙碌 . +Who is the girl standing over there ? 站 在 那儿 的 女孩 是 谁 ? +Have you had your eyesight checked recently ? 你 最近 检查 视力 了 吗 ? +I love watching talk shows . 我 愛 看 脫口秀 . +Do not play in the street . 別 在 馬 路上 玩 . +Did you hear about the fire yesterday ? 你 聽 說 了 昨天 的 火災 嗎 ? +Tell me again . 重新 告訴 我 . +He objected to his wife working outside . 他 反对 妻子 在外 工作 . +This is ice . 這 是 冰塊 . +Fasten your seat belts . 系上 你們 的 安全带 . +You let me down . 你 让 我 失望 了 . +Tom wondered where Mary had learned French . 汤姆 想 知道 玛丽 在 哪里 学会 了 法语 . +I had to abstain from smoking while I was in the hospital . 在 医院 的 时候 , 我 不得不 戒烟 . +Never be afraid of making mistakes . 不要 害怕 犯錯 . +I do not think he will say yes . 我 不 認為 他 會 同意 . +I suggested that she go alone . 我 建議 她 一個 人 去 . +A map helps us to know where we are . 地图 帮助 我们 知道 所在 的 位置 . +Where did you get your hair cut ? 你 在 哪裡 剪 頭 髮 ? +People who break the law are punished . 觸犯 法律 的 人 受到 懲罰 . +Talking during a concert is rude . 在 音樂會 中 說 話 是 不 禮貌 的 . +He gets tired easily . 他 很 容易 觉得 累 . +I heard a car pull up . 我 听到 一辆车 停 了 下来 . +Her daughter has become a beautiful woman . 她 的 女兒 已經 變成 一個 漂亮 的 女人 . +That book was interesting . 那 本書 很 有趣 . +I was unable to go to his birthday party . 我 那时 没法 去 他 的 生日派对 . +I am not serious . 我 不是 认真 的 . +Short skirts are already out of fashion . 短裙 已經 過時 了 . +Balls are round . 球 是 圆 的 . +Could you exchange rooms with me ? 可以 跟 我 交換 房間 嗎 ? +He likes music very much . 他 非常 喜歡 音樂 . +The doctor gave it to her . 醫生 把 它 給 了 她 . +The picture is hanging on the wall . 畫 掛 在 牆上 . +A beautiful lake lay just beyond the forest . 森林 外 有 一个 美丽 的 湖泊 . +My father often reads the newspaper during meals . 我 父亲 经常 在 吃饭 时 读 报纸 . +The soldiers are ready for battle . 士兵 們 準備 好要 戰鬥 了 . +I will be in my office from ten tomorrow . 我 明天 十点 起会 在 办公室 里 . +Stay there . 留在 这里 别动 . +Tom is living somewhere in Boston . 湯姆 住 在 波士 頓 某地 . +I feel like eating something sweet . 我 想 吃 點 甜 的 東西 . +He is lying through his teeth . 他 明显 在 撒谎 . +Tom is an important person . 湯姆 是 個 重要 的 人 . +We often played chess after school . 我們 常常 在 放學 後 下棋 . +Tom , we have to talk . 汤姆 , 我们 必须 谈谈 . +Bring the key . 帶 鑰匙 來 . +Action speaks louder than words , but not nearly as often . 行胜 于 言 , 但 并 不是 所有 情况 都 是 这样 . +I got my friends to help me . 我 請 我 的 朋友 來 幫助 我 . +We want to spend our honeymoon in Australia . 我们 想 在 澳大利亚 过 蜜月 . +Can I have a few words with you ? 可不可以 和 你 说 几句 ? +They cleared the street of snow . 他們 清理 了 街上 的 積雪 . +I will send it to you tomorrow . 我 明天 把 它 寄给 你 . +Is the snake alive or dead ? 這條 蛇 是 活 的 還 是 死 的 ? +Few students knew his name . 很少 学生 知道 他 的 名字 . +I need something to write with . 我 需要 一些 用來 寫 字 的 東西 . +I want to get a haircut before I go on the trip . 我 想 在 出發 旅行 前 剪 個 頭 髮 . +Tom can write almost like a native speaker , but his pronunciation is terrible . Tom 写作 可以 写 的 像 本国 人 一样 , 可是 他 的 发音 很烂 +She had a vague feeling of guilt . 她 隱約 地 有 一種 的 內疚 感 . +I 'd love to find out why she said so . 我 很 想 找出 她 为什么 这么 说 的 原因 . +Driving on a slippery road can lead to a car wreck . 在 光滑 的 路上 开车 会 导致 车祸 . +He swam across the river . 他 遊 過 了 河 . +Do you know if Tom has spoken to Mary recently ? 你 是否 知道 最近 湯姆 跟 瑪麗 有 沒有 說 過 話 ? +I think I have done enough . 我 認為 我 做 得 夠 了 . +How did you get back so soon ? 你 怎么 回来 得 这么 快 ? +I have a surprise for you . 我 帶 了 一個 驚喜 給 你 . +Have you ever seen Tom when he is angry ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +Money does not grow on trees . 錢 不 會 從 樹上 長 出來 . +People have two legs . 人 有 两只 脚 . +It is getting lighter outside . 外面 天色 越來越 亮 了 . +The soldiers were guarding the bridge . 士兵 們 守衛 著 這 座 橋 . +Do not let them forget me . 别 让 他们 忘 了 我 . +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +He drives very fast . 他 開車 速度 非常 快 . +Where is the next train going ? 下 一列 火車 去 哪裡 ? +Please open the window . 麻煩 你 開 一下 窗 . +I do not like to sing in public . 我 不 喜歡 在 公共 場合 唱歌 . +The baby went to sleep at once . 這個 小 嬰兒 立刻 去 睡覺 了 . +We are just like brothers . 我們 就 像 兄弟 一樣 . +Do not worry . You will make it . 不要 擔心 . 你 辦 得到 的 . +He and I walked together . 我 和 他 一起 走 . +When are you going to quit smoking ? 你 何時 要 戒煙 ? +He knows how to make a radio . 他 知道 如何 做 收音机 . +Do you think animals have a soul ? 你 认为 动物 有 灵魂 吗 ? +I can not find him anywhere . 我 在 哪儿 都 没 找到 他 . +What is your favorite game to play with friends ? 你 最 喜歡 和 朋友 玩 什麼 遊戲 ? +They both cried after hearing the tragic news . 聽到 這件 悲劇 , 他倆 盡 皆 哭泣 . +I was watching TV when the phone rang . 电话响 的 时候 , 我 在 看电视 . +She answered in tears . 她 很 傷 心地 回答 . +She tried to kill herself . 她 企圖 自殺 . +I telephoned her at once . 我 立刻 打 電話 給 她 . +I like playing baseball . 我 喜歡 打 棒球 . +Cats hate vacuum cleaners . 猫 很 讨厌 吸尘器 . +Everyone is laughing . 每個 人 都 在 笑 . +You are a month behind in your rent . 你 的 租金 遲交 了 一個 月 . +Where were you yesterday ? 您 昨天 在 哪儿 ? +While napping , I had a strange dream . 我 睡午觉 的 时候 做 了 个 怪 梦 . +I am able to drive a car . 我会 开车 . +Try some . 试试 吧 . +I am not good at mathematics . 我 的 數學 不好 . +You sound like a politician . 你 说话 像 个 当官 的 . +We accept checks . 我們 接受 支票 . +I wrote this book . 我 写 了 这 本书 . +If she was displeased , she never showed it . 如果 她 不 高興 , 她 從來 不 表現 出來 . +I do not see why I had to come along . 我 不 明白 为什么 我 得 跟着 去 . +We gave blood to help the child . 我們 捐血 來 幫助 這個 孩子 . +That song was written by Tom . 那首歌 是 Tom 寫 的 . +Her oldest daughter got married . 她 的 大 女兒 結婚 了 . +Bring him in . 带 他 进来 . +I am not very good at golf . 我 不 太 擅长 打 高尔夫球 . +I have had enough . 我 已經 吃 飽 了 . +I have a stomachache , doctor . 我 胃痛 , 醫生 . +My strength is all gone . 我 的 力气 耗尽 了 . +Why are you here ? 你 為 什麼 在 這 ? +His scores are always better than mine , even though he does not study very much . 他 的 分数 总 比 我 高 , 尽管 他 学习 得少 一点 . +He asked her to call him later . 他 要求 她 稍 後 打 電話 給 他 . +I listened to some CDs last night . 我 昨晚 了聽 一些 唱片 光碟 . +When will you go out ? 你 什麼 時候 要 出去 ? +The importance of music is underrated . 音乐 的 重要性 被 低估 了 . +Are there any messages for me ? 有 任何 給 我 的 訊息 嗎 ? +Will you give me a light ? 借 個 火 好 嗎 ? +I want this camera . 我 要 這 台 相機 . +Are you still at home ? 你 還 在家 裡 嗎 ? +My car burns a lot of gas . 我 的 車子 很 耗油 . +It is my brother is . 它 是 我 兄弟 的 . +You do not need to call me . 你 不必 打电话 给 我 . +The men is room is on the second floor . 男厕所 在 二楼 . +I am not inflexible . 我 不是 死板 的 . +It is going to get cold tonight . 今晚 天气 会 变冷 . +What is she doing ? 她 在 做 什麼 ? +Do not go above the speed limit . 不要 超速 . +You can watch TV after supper . 晚餐 之 後 你 才 可以 看電視 . +She fell down the ladder . 她 从 梯子 上 摔 了 下来 . +War does not make anybody happy . 战争 不会 使 任何人 幸福 . +I had a good time this evening . 今天 晚上 我 玩 得 很 開心 . +In case of an emergency , get in touch with my agent . 万一 有 紧急情况 , 联系 我 的 代理人 . +Tom has lived in Boston for over a year . 汤姆 住 在 波士顿 已经 一年 多 了 . +I found you , did not I ? 我 找到 你 了 , 没有 么 ? +Would you pass the salt , please ? 請 你 把 鹽 遞 過 來 好 嗎 ? +Do you have a car ? 你 有 车 吗 ? +Who are you ? 你 是 誰 ? +He explained the literal meaning of the sentence . 他 解释 了 句子 的 字面 意思 . +You should begin with easier questions . 你 應 該 先 從 最 簡單 的 問題 開始 . +She is drunk with happiness . 她 陶醉 在 幸福 裡 . +That is perfect . 那 是 完美 的 . +I am sure Tom wanted to come along . 我 确定 汤姆 想来 . +To my astonishment , my money was gone . 令 我 惊讶 的 是 , 我 的 钱 没 了 . +The losses are incalculable . 損失 是 無法 估計 的 . +She was more beautiful than all the others . 她 比 其他人 都 漂亮 . +Do this work by tomorrow if possible . 如果 可能 的话 , 在 明天 前 做好 这个 工作 . +Come if you can . 你 能 来 就 来 ! +He asked me a question . 他 問 了 我 一個 問題 . +It is a risk that Tom and I are not willing to take . 我 和 汤姆 都 不 愿意 冒 这个 险 +As far as I am concerned , this coffee is too strong . 这 咖啡 对 我 来说 太 浓 了 . +China is about twenty @-@ five times as large as Japan . 中国 的 版图 大概 是 日本 的 二十五倍 . +This word comes from Greek . 這個 詞 來 源于 希臘語 . +Tom kept talking all night . 湯姆 整夜 一直 在 說 話 . +Tom is now studying in his room . 湯姆 現在 在 他 的 房間 裡 學習 . +People who will lie for you , will lie to you . 会 为 你 说谎 的 人 , 就 会 对 你 说谎 . +Tom nodded approval . 汤姆 点头 同意 . +Please help yourself to some fruit . 請 你 隨便 吃 點 水果 . +What are you doing tonight ? 你 今晚 在 做 什麼 ? +They say that Venice is a beautiful city . 他們 說 威尼斯 是 個 漂亮 的 城市 . +The soup is thick . 汤 很 稠 . +Tom does not know if Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +The old man lived there by himself . 這個 老人 獨自 住 在 那裡 . +No one was killed in the fire . 沒人死 在 火 裡 . +Tom probably would not do something that stupid . 湯姆 可能 不 會 做 蠢事 . +Where are your things ? 你 的 東西 在 哪裡 ? +I should have declined . 我 本 应 婉拒 . +I came here to thank you . 我 來 感謝 你 . +I am fond of cars . 我 喜歡 車 . +Tom plays the violin well . 汤姆 拉 小提琴 拉 得 很 好 . +My camera was stolen on the train . 我 的 照相机 在 火车 上 被 偷 了 . +I usually walk to school . 一般 我 步行 去 学校 . +Help yourself to whatever you like . 隨 你 喜歡 隨便 吃 . +It is pretty simple . 它 真 簡单 . +The air felt a little cold . 空气 有点 冷 . +Tom could not go to college because his family did not have enough money . 因为 家里 钱 不够 所以 汤姆 没能 念 大学 . +We all chipped in to buy our teacher a birthday present . 我们 所有人 凑份子 给 老师 买 生日礼物 . +It is me that is wrong . 是 我 错 了 . +I have never stopped loving Tom . 我 從 沒 停止 過 愛 湯姆 . +I thought Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +Do you really want me to go there right now ? 你 真 想 让 我 马上 到 那里 去 吗 ? +Let me tell you the reasons that I do not agree with you . 让 我 来 告诉 你 我 不 赞成 你 的 理由 . +I bought a red sports car . 我 買 了 一輛 紅色 的 跑車 . +You should have worked harder . 你 應 該 要 更 努力 的 . +I have not had much sleep lately . 我 最近 没 怎么 睡觉 . +I have just started playing tennis . 我 剛 開始 打 網球 . +My brother is holding a camera in his hand . 我 弟弟 手里 拿 着 一个 摄像机 . +Thank you for inviting me to dinner . 谢谢 你 邀请 我 吃饭 . +All you can do is to wait . 所有 你 能 做 的 就是 等待 . +We must obey the rules . 我们 必须 遵守规则 . +This little girl let the birds escape . 這個 小女孩 讓 小 鳥 脫逃 了 . +Are not you happy about this ? 你 對 此 不 高興 嗎 ? +They will let us know what happens . 他们 会 让 我们 知道 发生 了 什么 . +Tom is quite fussy . 汤姆 相当 挑剔 . +Tom is house has a nice garden . 湯姆 的 住宅 有 一個 不錯 的 花園 . +Industry was growing quickly . 工業 發展 迅速 . +I got it for next to nothing . 我 簡直 不用 花錢 就 買到 了 . +School finishes before noon on Saturdays . 學校 在 星期六 中午 之前 放學 . +Do you have this in a bigger size ? 你 有 比 這個 再 大 一點 的 尺寸 嗎 ? +Can I speak to the head nurse ? 我 能 跟護 士長 說 話 嗎 ? +We used to play in the park . 我们 过去 常 在 公园 玩 . +She stayed there for a moment . 她 在 那裡 留 了 一會 . +" Trust me , " he said . “ 相信 我 . ” 他 说 . +Tom told Mary something she did not want to hear . 湯姆 告訴 了 瑪麗 她 不想 知道 的 事 . +Who is your favorite TV star ? 谁 是 你 最 喜爱 的 电视 明星 ? +Is it tasty ? 好吃 嗎 ? +She warned him not to go alone . 她 警告 了 他 不要 一個 人 去 . +I will not eat ice cream . 我 不 會 吃 冰淇淋 . +I am going to go tell Tom . 我 要 告诉 汤姆 . +I like to play basketball . 我 喜歡 打 籃球 . +What time is it in Boston ? 波士顿 现在 几点 ? +What have you come here for ? 您 来 这儿 干嘛 ? +We will have learned English for five years next year . 到 明年 我们 学 英语 就 有 5 年 了 . +The lecture lasted for two hours . 這場 演講 持續 了 兩個 小 時 . +I heard the door close . 我 听到 门 关了 . +Has anybody here been to Hawaii ? 这儿 有人 去过 夏威夷 吗 ? +You are not coming , are you ? 你 不 會 來 , 是 嗎 ? +I like to watch baseball games . 我 喜歡 看 棒球 比賽 . +Do you know whether or not she can speak English ? 你 知道 她 是否 會 講 英語 嗎 ? +She is going to France next week . 她 下週 要 去 法國 . +I do not like novels without heroes . 我 不 喜欢 没有 英雄 的 小说 . +I am grateful for what Tom did . 我 很 感激 汤姆 所 做 的 . +Be quiet , all of you . 你們 所有 的 人 都 安靜 . +Could you tell me where I can get a bus ? 你 能 告诉 我 能 在 哪里 上 公交车 吗 ? +Where does she want to go ? 她 想 去 哪裡 ? +Lend me your dictionary , please . 请 把 你 的 字典 借给 我 . +Tom put the large picnic basket on the passenger seat next to him . 汤姆 把 那个 大 野餐 篮子 放在 他 旁边 的 乘客 座位 上 . +What is not necessary ? 什麼 是 不必要 的 ? +This word is difficult to pronounce . 這個 字 很 難 發音 . +Can I have some tea ? 可以 给 我 一些 茶水 吗 ? +School begins at half past eight . 學校 八點半 開始 上課 . +Excuse me . Do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +The girl did not say anything . 這個 女孩 什麼 也 沒 說 . +She hung the calendar on the wall . 她 把 日 曆 掛 在 牆 上 了 . +Do you want to go somewhere ? 你 打算 去 什么 地方 吗 ? +It is just your imagination . 那 只是 你 的 想象 . +You 'd better get away from here at once . 你 最好 立刻 離開 這裡 . +May I go to the restroom ? 我 可以 去 洗手 間 嗎 ? +I am eating rice . 我 在 吃 米饭 . +We have a test tomorrow . 我们 明天 有个 测验 . +They answered their teacher is question with difficulty . 他们 好不容易 才 回答 了 他们 老师 的 问题 . +It is likely to rain tomorrow . 明天 有 可能 會 下雨 . +We enjoyed listening to the music . 我們 喜歡 聽 音樂 . +Ogai is his favorite author . Ogai 是 他 最 喜欢 的 作者 . +She was absorbed in the video . 她 迷上 了 视频 . +He had his head in the clouds in class . 他 在 課 堂上 心不在焉 . +They will not come until tomorrow . 他們 明天 才 會 來 . +She is capable of teaching English . 她 可以 教 英语 . +Japan is in Asia . 日本 在 亚洲 . +What size shoes do you wear ? 你 穿 幾號 的 鞋子 ? +I saw a dirty dog enter the garden . 我 看见 一条 脏 狗 进 了 花园 . +The baby started crying . 宝宝 开始 哭 了 . +Chocolate has more iron than spinach . 巧克力 含有 比 菠菜 更多 的 鐵質 . +She played the guitar and he sang . 她 彈 吉他 , 他 唱歌 . +You are frightening me . 你 在 嚇 我 . +I am playing the piano now . 我 現在 正在 彈 鋼琴 . +I never should have let Tom eat so much candy . 我 不論 甚麼 時候 都 不該 讓 湯姆 吃 那麼 多糖 . +It will cost you more to go by plane . 搭 飛機 將 花 你 比較 多 的 錢 . +You cannot achieve anything without effort . 没有 什么 是 不劳而获 的 . +He is richer than anyone else in this town . 他 比 镇里 的 其他人 都 有钱 . +She remained silent all day . 她 一整天 都 沉默不语 . +My father did not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +Excuse me , but may I open the window ? 不好意思 , 请问 我 可以 开窗 吗 ? +This article is nonsense . 這 文章 是 胡 說 . +He suddenly became very happy . 他 突然 變得 非常 開心 . +Answer the telephone , will you ? 請 你 接聽 一下 電話 , 好 嗎 ? +Why are not you listening ? 你 為 甚麼 不 聽 ? +Tom is in the other room drinking vodka . Tom 在 別的 房間 喝 伏特加 . +Why is Tom still at school ? 为社么 汤姆 还 在 学校 ? +She speaks a little Arabic . 她 说 一点 阿拉伯语 . +My sister is shorter than you . 我 妹妹 比 你 矮 . +There are many beautiful parks in London . 伦敦 有 很多 漂亮 的 公园 . +We do not like our neighbors , and they do not like us , either . 我們 不 喜歡 我們 的 鄰居 , 而 他們 也 不 喜歡 我們 . +The black telephone costs more than the white . 黑 的 电话 比 白 的 花钱 多 . +I will not see her again . 我 不 會 再 見 她 . +It is impossible to go out now . 現在 不 可能 出去 . +Keep the dog out . 别 让 狗 进来 . +I hid under the table . 我 藏 在 桌子 底下 . +This pencil is better than that one . 這 支 鉛 筆 比那 隻 好 . +Tom should be here soon . 汤姆 应该 很快 就 到 . +Which group do you want to join ? 你 想 加入 哪 一組 ? +I did not get your name . 我 沒 聽 清楚 你 的 名字 . +Put some water into the vase . 在 花瓶 裡 裝 些 水 . +It is better than nothing . 有 比 沒有 好 . +I would like to visit your country someday . 我 想 某 一天 拜访 你 的 国家 . +During the exam , Tom cheated off Mary . 在 考试 的 时候 , 汤姆 作弊 抄 了 玛丽 的 答案 . +We sent out the invitations yesterday . 我们 昨天 发出 了 邀请 . +What is the ultimate purpose of education ? 教育 的 最终 目的 是 什么 ? +Let me think for a minute . 让 我 想想 . +I can make that happen . 我 不能 让 那事 发生 . +The dog followed its master , wagging its tail . 狗 搖著 尾巴 跟著 主人 . +You 'd better check this out . 你 最好 检查一下 这个 . +We are eating apples . 我們 在 吃 蘋果 . +My father has a restaurant . 我 父亲 有家 餐馆 . +The boy eats bread . 這個 男孩 吃 麵 包 . +Tom certainly has a tough job . 汤姆 确实 有个 麻烦 的 工作 . +When does the next train leave ? 下 一班 火車 什麼 時候 開 ? +She looks a lot like her mother . 她 非常 像 她 的 母亲 . +Tom will do that . 湯姆會 做 . +Tom wanted to stay home and relax instead of hiking with his children . 汤姆 想待 在家 休息 而 不是 和 他 的 孩子 们 出去 远足 . +Compared to our house , yours is a mansion . 跟 我们 的 房子 比 , 你 的 就是 个 豪宅 . +We must conform to the rules . 我们 必须 遵守规则 . +All of my software is open source . 我 的 软件 全都 是 开源 的 . +I only want one . 我 只 想要 一件 东西 . +You did not need to come so early . 你 不必 這麼 早來 . +They are breaking down the wall . 他們 正在 拆 這面 牆 . +Maybe they have something . 他们 可能 有点 什么 . +No problem ! 没 问题 ! +None of this makes any sense . 這裡 頭 沒有 一件 事 說 得 通 . +What were you doing in Boston ? 你 在 波士顿 做 了 什么 ? +The boy denied having stolen the bicycle . 那个 男孩 否认 偷 了 自行车 . +The train will probably arrive at the station before noon . 火车 大概 会 在 中午 前 到 站 . +Let is clean our room . 打扫 我们 的 房间 吧 . +Osaka is the center of commerce in Japan . 大坂 是 日本 的 商业中心 . +Tell him to mind his own business . 告訴 他 別 多 管閒 事 . +There are some boys in the park . 公園 裡 有 一些 男孩子 . +Dry wood burns well . 干柴 燒 得 旺 . +I was truly astonished . 我 真是 惊讶 . +Most Americans like hamburgers . 大多 數 的 美國 人 喜歡 漢堡 . +These boxes are heavy . 这些 箱子 是 重 的 . +I borrow money . 我 借 錢 . +I 'd rather die than surrender . 我 寧 死不降 +Tom just wants my money . 湯姆 就是 想要 我 的 錢 . +A doctor told me that eating eggs was bad for me . 一位 医生 告诉 过 我 , 吃 鸡蛋 对 我 的 健康 有害 . +Lake Baikal in Russia is the deepest lake in the world . 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +I wanted to become a philosopher . 我 想 成为 哲学家 . +Could you help us after school ? 你 能 在 放學 後 幫助 我們 嗎 ? +I can come at three . 我 三點鐘 可以 來 . +By the way , my English is absolutely hopeless . 順道 一 提 , 我 的 英語 是 絕對 沒有 希望 了 . +Do you have kids ? 你們 有 小孩 嗎 ? +That is not a cat . It is a dog . 那 不是 猫 . 那 是 狗 . +He will not live a long life . 他 不 會 長壽 . +The sky is clear almost every day . 天空 幾乎 每天 是 晴朗 的 . +Could you please not smoke in this room ? 请问 你 能 不 在 房间 里 吸烟 吗 ? +Tom and Mary switched places on the bench . 汤姆 和玛丽 在 长凳 上 交换 了 位置 . +Today is the hottest day this year . 今天 是 今年 最熱 的 一天 . +What is the matter with you ? 你 怎么 了 ? +Tom wanted to see me . 汤姆 想见 我 . +What time did your friend go home ? 你 朋友 幾點鐘 回家 ? +People need to stop hating . 人们 需要 止住 仇恨 . +You look like you are confused . 你 看 起來 有 困惑 . +The show was very interesting . You should have seen it . 演出 真的 很 有意思 , 你 该 去 看看 的 . +The value of the coins depended on the weight of the metal used . 钱币 的 价值 取决于 所 使用 的 金属 的 重量 . +It is about a ten @-@ minute drive from here . 從 這裡 大約 10 分鐘 車程 . +Would you please lend me some money ? 你 能 借 我些 钱 吗 ? +Tom is not a good worker . 湯姆 不是 個 好 工人 . +Take your hat off when you enter a house of worship . 當 你 進入 禮 拜堂 時 , 把 你 的 帽子 脫 下來 . +How long did that take ? 那 持续 了 多久 了 ? +He is making great progress in English . 他 的 英語 有 很大 的 進步 . +Welcome . 欢迎 . +Actually , I am not suggesting anything . 實際 上 , 我 沒有 建議 甚麼 . +I go to bed late at night . 我 晚上 很晚 就 寢 . +Tom is not the only one here who is a good singer . 汤姆 不是 这里 唯一 的 好 歌手 . +Tom has not given us anything . 汤姆 什么 也 没给 我们 . +Do you mind turning on the TV ? 你 介意 打開 電視 嗎 ? +He became a famous singer . 他 成为 了 著名 的 歌手 . +All you can do is wait . 所有 你 能 做 的 就是 等待 . +Call the police ! 叫 警察 ! +I am going to the park . 我 去 公園 . +I speak English every day . 我 每天 都 说 英语 . +He wiped the sweat from his face . 他 擦 去 了 脸上 的 汗水 . +Could you write it down , please ? 請 你 寫 下來 好 嗎 ? +I hope everything will turn out well in the end . 我 希望 最后 一切 都 好 . +Mary is sitting at the desk . 瑪麗正 坐在 辦公 桌旁 . +How much is this hat ? 这 顶 帽子 多少 钱 ? +She was asked to write her name in ink . 她 被 要求 用 墨水 写下 她 的 名字 . +If you eat that much , you will get a stomachache . 那么 吃 的话 , 肚子 会 吃 坏 的 噢 . +The shell of an egg is easily broken . 蛋壳 容易 破碎 . +Is this car your friend is ? 這輛 車 是 你 朋友 的 嗎 ? +There is nothing I can do . 沒有 我 可以 做 的 事 . +I wish Tom were my younger brother . 但 願 湯姆 是 我 的 弟弟 . +Perhaps it will rain tomorrow . 也許 明天 會 下雨 . +Tom ran out of matches so he could not light the fire . 汤姆 用尽 了 火柴 , 不能 点火 了 . +We helped them as well . 我們 也 幫助 他們 . +I bought a book . 我 買 了 一本 書 . +Tom misses Boston . 汤姆 想念 波士顿 了 . +Your reason is very good . 你 的 理由 很 充分 . +Good morning . It is time to wake up . 早安 . 是 該 醒來 的 時候 了 . +I am interested in music . 我 對 音樂 有 興趣 . +This is only one of the things we found . 这 只是 我们 发现 的 东西 之一 . +Let is talk over a cup of coffee . 让 我们 边 喝咖啡 边 谈 . +It is already past five o 'clock . 已經 過 了 五點鐘 . +It is stupid of you to believe in him . 你 相信 他 真是太 愚蠢 了 . +You are a good cook , are not you ? 你 很 會 做菜 , 不是 嗎 ? +Are you a teacher or a student ? 您 是 老师 , 还是 学生 ? +He knows how to play baseball . 他 知道 怎么 玩 棒球 . +This coat fits you perfectly . 這件 大衣 十分 適合 你 . +Tell me what you want . 告訴 我 你 要 什麼 . +We saw the ground covered with snow . 我们 看见 地面 被 雪 覆盖 了 . +Is the customer always right ? 顾客 永远 是 正确 的 吗 ? +Hokkaido is to the north of Honshu . 北海道 在 日本 本州 的 北部 . +I wish Tom were my younger brother . 我 希望 湯姆 是 我 的 弟弟 . +I do not know what you are referring to . 我 不 知道 你 指 的 是 什么 . +Keep it quiet . 保持 安静 +Tom is waiting for everyone to leave . 汤姆 等 着 每个 人 都 离开 . +This shirt costs ten dollars . 這 襯衫 要 十元 . +Would you mind lending me your pen ? 你 介意 把 你 的 筆 借 給 我 嗎 ? +Let me remind you again that March 31st is the due date . 讓 我 再次 提醒 你 3 月 31 日 是 到期日 . +I want to know why I am here . 我 想 知道 我 為 甚麼 在 這裡 . +I do not believe such things exist . 我 不 相信 這樣 的 事情 存在 . +Some boys came into the classroom . 有些 男孩 走進 了 教室 . +I do my homework after school . 我 在 放学 後 做作 業 . +I want to eat out tonight . 我 今晚 想 出去 吃 . +What do you want now ? 你 现在 想要 什么 ? +The flag is up . 旗子 升起 了 . +They always skip school . 他們 總是 逃學 . +She is on a diet . 她 在 节食 中 . +Tom is interested in mathematics . 湯姆 是 對 數學感 興趣 . +He should thank you . 他 應該 感謝 您 . +You will get used to this in three or four weeks . 你 在 三 或 四周 内会 习惯 这个 . +The Smiths live in my neighborhood . 史密斯 夫婦 住 在 我家 附近 . +Keep children away from the pond . 让 孩子 远离 池塘 . +Many people were killed in the war . 很多 人 在 戰爭 中 被 殺 . +Help yourself to a piece of cake . 你们 自己 吃 蛋糕 . +I am counting on you . 我 就 指望 你 了 . +Throughout the five years of painful cancer treatments , he managed to keep a stiff upper lip . 这 五年 痛苦 的 癌症 治疗 他 终于 坚持 下来 了 . +Mary is helping her mother . 瑪麗 正在 幫忙 她 的 母親 . +You can drive a car , can not you ? 你 會 開車 , 不是 嗎 ? +He goes to the office by car . 他 開車 去 辦 公室 . +The rumor was without foundation . 謠言 是 毫無 根據 的 . +I think we should concentrate on other things . 我 想 我们 应 集中 于 另外 的 事情 . +You chose this job yourself , right ? 你 自己 选择 了 这份 工作 , 是 吗 ? +We have plenty of time tonight . 今晚 我们 有 充分 的 时间 . +What is up with you ? 你 怎么 了 ? +He lives somewhere around the park . 他 住 在 公园 周围 的 某个 地方 . +I helped my brother move his desk . 我 幫 我 弟弟 搬 了 他 的 書桌 . +What have you guys done to me ? 你们 到底 对 我 做 了 什么 ? +I can not sleep at all ! 完全 睡不着 . +Which bed do you want to use ? 你 想 睡 哪 張 床 ? +Finishing the report by tomorrow is next to impossible . 在 明天 前 完成 报告 几乎 是 不 可能 的 . +Why did not you dance with him ? 你 為 什麼 不 跟 他 跳舞 呢 ? +Wipe the pan dry with a paper towel . 用 纸巾 把 那 口 锅 擦干 . +Strawberries are in season now . 現在 是 草莓 的 季節 . +Tom has brains . 汤姆 脑子 好使 . +He is not at all afraid of snakes . 他 一點 也 不怕 蛇 . +I like this picture , not just because it is famous , but because it really is a masterpiece . 我 喜欢 这 幅画 , 不仅 是因为 它 的 名气 , 而是 因为 它 真的 是 一个 杰作 . +Tom is a very bad person . 汤姆 是 个 非常 坏 的 人 . +You guys looked mad . 你們 那時候 看 起來 在 生氣 . +He worked last night without taking a break . 他 昨晚 都 在 工作 , 彻夜未眠 . +Did you make this doll by yourself ? 这个 娃娃 是 你 自己 做 的 吗 ? +I will be absent from home in the afternoon . 下午 我 不 在家 . +As he spoke , pictures came into my mind . 他 说 的 时候 , 我 脑 中 浮现 出 了 画面 . +Tom has admitted he was there that night . 汤姆 承认 他 那晚 是 在 那里 . +I heard the children is happy voices . 我 聽到 孩子 們 開心 的 聲音 . +It is warm today , is not it ? 今天 很 溫暖 , 不是 嗎 ? +Is this your car ? 這 是 你 的 車 嗎 ? +You did not need to bring your umbrella . 你 不必 帶 你 的 傘 . +I do not know who he is . 我 不 知道 他 是 谁 . +Prices are high . 价格 高 . +Tom slept until noon . 汤姆 睡 到 中午 . +The volcano has become active again . 這 座 火山 又 開始 活動 了 . +I am on my way . 我 这 就 上路 . +Let is begin with this problem . 从 这个 问题 开始 吧 . +Do you have anything to remove stains ? 你 有 除锈 的 东西 吗 ? +How much is this ? 這 是 多少 ? +You talk too much . 你 說 太 多 了 . +We have two dogs , three cats , and six chickens . 我们 养 了 两只 狗 、 三只 猫 和 六只 鸡 . +Wash your feet . 洗 您 的 脚 . +She extended her stay by five days . 她 多 停留 了 五天 . +I have been learning to drive . 我 一直 在 學開 車 . +Is not this weather just great ! 天氣 真是 太好了 ! +I am not as strong as I used to be . 我 不 跟 以前 一樣 強壯 了 . +What is the matter ? 怎么 了 ? +He is very straightforward . 他 说话 很 直接 . +Let is get together again ! 讓 我們 再 聚在一起 ! +Do you weigh more than Tom ? 你 有 比 湯姆 重 嗎 ? +There is nothing to be afraid of . 没什么 好怕 的 . +He can speak Russian , too . 他 也 會 說 俄語 . +Ask Tom again . 再 问 一下 汤姆 吧 . +Somebody has stolen my suitcase . 有人 偷 了 我 的 行李 . +Tom does not look like his father at all . 汤姆 和 他 的 父亲 长 得 一点 也 不 像 . +She is mad at me . 她 跟 我 生气 了 . +Valuable time has been lost . 宝貴 的 時間 已 失去 . +Thanks for the comment . 谢谢您 的 评论 . +He came . 他 来 了 . +I am bored . 我 覺 得 很 無聊 . +Would you like to eat something ? 你 想 吃 點 東西 嗎 ? +He wrote a letter yesterday . 昨天 他 写 好 了 信 . +I am waiting for him . 我 在 等 他 . +She needs our help . 她 需要 我們 的 幫忙 . +Is there anything in the box ? 盒子 裡 有 任何 東西 嗎 ? +It is dangerous to jump onto a moving train . 跳 上 一列 正在 开 的 火车 是 很 危险 的 . +I just heard something . 我 只是 听到 了 一些 消息 . +Which book is better ? 哪 一本 書 比較 好 ? +I did not know you were going to be here . 我 不 知道 你 要 來 這裡 . +The charge for a front row seat is 5 dollars . 第一排 的 座位 5 美元 . +She forgot to mail the letter . 她 忘 了 寄信 . +Today is Valentine is Day . 今天 是 情人节 +You are very brave . 您 非常 勇敢 . +I wish you success . 祝你成功 . +I am looking for a present for my mother . 我 正在 为 我 的 妈妈 寻找 礼物 . +You are old enough to know better than to act like that . 你 夠 大 了 知道 不要 那樣 做 . +We needed to learn French . 我們 需要 學法 語 . +Generally speaking , the climate of Japan is mild . 总体 上 说 , 日本 的 气候 温和 . +I like grapes , but I can not eat so many . 我 虽然 喜欢 吃 葡萄 , 但是 我 吃 不了 那么 多 . +He still remembers the day his mother found out he was smoking . 他 还 记得 他 妈妈 发现 他 正在 抽烟 的 那天 . +It will not take long to finish the job . 完成 这个 工作 不会 花太 长时间 . +Tom was wrong . 汤姆 错 了 . +He went to New York by airplane . 他 搭 飛機 到 紐約 了 . +I think I will stay . 我 認 我 會 留下 . +He came home late last night . 他 昨晚 很 晚 回家 . +It will soon be time for dinner . 不久 就要 吃 正餐 了 . +She told me that she would go to Paris in August . 她 跟 我 说 八月份 她 会 去 巴黎 . +Be fair . 公平 点 . +That white dress looks good on you . 你 穿 那件 白色 的 衣服 很 好看 . +Kobe is famous for its port . 神戶 是 著名 的 港口 . +She said that she was ill . 她 说 她 病 了 . +My job is to wash the dishes . 我 的 工作 是 洗盤子 . +He was made a fool of by his neighbors . 他 被 他 的 邻居们 愚弄 了 . +She married a rich old man . 她 嫁给 了 个 有钱 老头 . +How much time has passed ? 過 了 多 長 時間 ? +I had my teeth examined at the dentist is . 我 在 牙医 那儿 检查 了 牙齿 . +Tom lives here . 汤姆 住 在 这里 . +What time will you leave the office ? 你 几点 离开 办公室 ? +Let is take a ten @-@ minute break . 讓 我們 休息 10 分鐘 . +We have three kids . 我們 有 三個 孩子 . +I am tired of translating . 我 厭倦 了 翻譯 . +I asked twenty friends to the party . 我 請 了 二十位 朋友 參加 派 對 . +Life would be so much better if you did not care so much . 如果 你 不 计较 太 多 , 生活 会 更 容易 些 . +Can you play the piano ? 你 會彈 鋼琴 嗎 ? +Boil the water . 把 水 燒開 . +Would you please wait for a minute ? 請 你 等 一下 好 嗎 ? +I am glad someone told me . 真 高兴 有人 告诉 我 . +We have plenty of time to spare . 我們 還 剩下 很多 時間 . +I wish I could go to the party with you . 我 希望 我 能 和 你 一起 参加 派对 . +Lincoln was elected President in 1860 . 林肯 在 1860 年 當 選為 美國 總統 . +I am very tired , but I can not get to sleep . 我 很 累 , 但 我 还是 没 办法 入睡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +I have two sons . 我 有 兩個 兒子 . +Do not stand in front of me . 不要 站 在 我 前面 . +They may have missed the train . 他們 可能 錯 過 了 火車 . +Wash your face and hands . 洗 你 的 臉 和 手 . +He stuck his pencil behind his ear . 他 把 他 的 鉛筆 放在 他 的 耳朵 後 面 . +Run and hide in the mountains . 跑 到 山里 躲起来 . +You are a good driver . 你 开车 很 好 . +I am doubtful whether he will come . 我 怀疑 他 是否 会来 . +There is a fence around the house . 這棟 房子 的 周圍 有 籬笆 . +Do you want some company ? 你 想要 伙伴 吗 ? +She does nothing but complain . 她 什麼 都 不 做 只 會 抱怨 . +Everybody laughs . 每個 人 都 在 笑 . +A crowd gathered on this street . 人群 聚集 在 这条 街上 . +I have not eaten for days . 我 好多天 沒 吃 東西 了 . +When I arrived , it was raining . 當 我 到 達 時 , 天正 下著 雨 . +He arrived after I had left . 我 走 之后 他 到达 了 . +You have to give Tom more time . 你 必須 給 湯姆 更 多 時間 . +I sat by his side . 我 坐在 他 旁边 . +I wrote a letter to my mother . 我 寫 了 一封信 給 我 的 母親 . +Check , please . 請 結帳 . +He suggested that we go for a swim . 他 提议 大家 一起 去 游泳 . +We have got another problem . 我們 又 遇上 問題 了 . +You should give up smoking . 你 應該 戒菸 . +We depend on you . 我们 可 全 指望 你 了 . +This rule does not apply in all cases . 这 条 规则 不是 任何 情况 下 都 奏效 的 . +What should I bring ? 我 该 带 些 什么 ? +Something is wrong with the brakes . 剎車 出 了 問題 . +It is not difficult to speak English . 說 英語 不 難 . +I will be seeing you . 我 會 見 到 你 . +I am too busy to go . 我 太 忙 了 不能 去 . +Were you a soldier ? 你 是 士兵 嗎 ? +Tom heard a shout . 汤姆 听到 了 一声 喊叫 . +The police officers arrested the burglar . 警察 拘捕 了 這個 竊 賊 . +We hope Tom is OK . 我們 希望 湯姆 沒事 . +He looks older than my brother . 他 看 起來 年紀 比 我 的 兄弟 大 . +You may as well tell me all about it . 你 不妨 告訴 我 一切 . +One more bottle of wine , please . 麻煩 再來 一瓶 葡萄酒 . +I know that Tom is hungry . 我 知道 湯姆 餓 了 . +I am still the boss here . 我 仍 是 这里 的 老板 . +Who is this boy ? 这个 男孩 是 谁 ? +It is nothing to worry about . 沒 什麼 好 擔心 的 . +Please drive carefully . 請 小心 駕駛 . +In case of fire , call 119 . 遇到 火灾 打 119. +Tom likes sitting on the floor . 汤姆 喜欢 坐在 地上 . +Our train leaves at eight @-@ thirty . 我們 的 火車 在 八點半 出發 . +It is actually not that difficult . 實際上 沒有 那麼 難 . +Tom laid the newspaper on the table . 汤姆 把 报纸 放在 桌上 . +He is poor . 他 很穷 . +He is not a teacher but a doctor . 他 不是 老師 , 而是 醫生 . +Do you know what I am doing ? 你 知道 我 在 做 什麼 嗎 ? +I had a happy childhood . 我 的 童年 很 快乐 . +Tom wants to know more about Mary is past . 汤姆 想要 知道 更 多 关于 玛丽 的 过去 . +Wonderful ! 很棒 ! +Why did not you call me yesterday evening ? 怎么 你 昨晚 没有 给 我 打电话 ? +What exactly happened there ? 那裡 究竟 發生 了 什麼 事 ? +I am constantly forgetting names . 我 經常 忘記 別人 的 名字 . +He is up to his ears in debt . 他 浑身 是 债 . +Thousands of people wanted to know the answer . 成千上万 的 人 想要 知道 答案 . +I am in a desperate situation . 我 处在 绝境 . +I got a new pair of shoes . 我 得到 了 一雙 新鞋 . +I was about to leave when the doorbell rang . 门铃 响 的 时候 , 我 正 准备 出门 . +It is not that simple . 它 沒有 那麼 簡單 . +At the age of six , I was taken to a circus for the first time . 在 我 六岁 的 时候 , 我 第一次 被 带去 看 马戏 . +Do you speak Chinese ? 你 會 說 中文 嗎 ? +It is totally dark outside . 外面 一片 漆黑 . +Does she know your phone number ? 她 知道 你 的 電話 號碼 ? +Everyone wants to meet you . You are famous ! 大家 都 想 见到 你 , 你 太 有名 了 ! +I will be at home in the morning . 我 早上 會 在家 . +He belongs to the camera club . 他 參加 攝影 社 . +A dog will bark at strangers . 狗会 对 陌生人 叫 . +He earned his living as a teacher . 他 以 教書 為 生 . +The serpent tempted Eve . 蛇 誘惑 了 夏娃 . +My plane leaves at six o 'clock . 我 搭 的 飛機 在 六點鐘 起飛 . +I will get the work done in a week . 我会 一周 内 完成 这个 工作 的 . +Would 9 o 'clock be all right ? 9 點 可以 嗎 ? +Tom wanted Mary to say that she loved him . 汤姆 想 让 玛丽 说 爱 他 . +These are pens . 這些 是 筆 . +To make matters worse , it began snowing . 更 糟糕 的 是 開始 下雪 了 . +I usually have a light breakfast . 我 早餐 通常 吃 得 很 清淡 . +I do not want the present Tom gave me . 我 不 想要 汤姆 给 我 的 礼物 . +Do not let Tom lie on the floor . 别 让 汤姆 躺 在 地板 上 . +" How did you get my phone number ? " " Tom gave it to me . " “ 你 怎么 知道 我 的 电话号码 的 ? ” “ 汤姆 告诉 我 的 . ” +Tom thinks there is hope . 汤姆 认为 有 希望 . +Tom would never have let us go if Mary had not gone with us . 如果 玛丽 不 跟着 我们 , 汤姆 不会 让 我们 走 . +A glass of wine , please . 一杯 葡萄酒 , 謝謝 . +" Thanks , guys . " " Do not mention it . " “ 谢谢你们 . ” “ 不用谢 . ” +She seems rich . 她 看來 有 錢 . +I have heard you have been sick . 我 听说 你 病 了 . +Problems that can be solved with money are not real problems . 錢 可以 解決 的 問題 都 不是 問題 . +Are you aware of how much she loves you ? 你 知道 她 有 多麼 愛 你 嗎 ? +Will you sell your car to me ? 你 可以 把 你 的 車 賣 給 我 嗎 ? +I forgot the date of the meeting . 我 忘 了 會議 的 日期 . +Have you answered that letter yet ? 你 回信 了 嗎 ? +He drives a car , does not he ? 他 開車 , 不是 嗎 ? +Tom laughed for no reason . 湯姆 無 故地 笑 . +Tom taught me French . 汤姆 教 了 我 法语 . +Another bottle of wine , please . 麻煩 再 一瓶 葡萄酒 . +I have been reading this for a few hours . 我 一直 讀 這個 讀 了 幾個 小 時 . +I have never underestimated Tom . 我 从没 低估 汤姆 . +He has a good knowledge of French . 她 很 懂法 語 . +I belong to the sailing club . 我 參加 帆船 社 . +He is a bad driver . 他 是 個 糟糕 的 司機 . +Please ask at the information desk . 請 向 服務台 詢問 . +I want to stay here longer . 我 想 在 这里 再 待 一会 . +Tom does not believe he could do that . 湯姆 不 相信 他 能 做到 . +This movie is worth seeing again . 這部 電影 值得 再 看一遍 . +I am afraid of death . 我 怕死 . +I like going to watch baseball . 我 喜歡 去 看 棒球 . +Tom is living with his uncle now . 湯姆 現在 跟 他 叔叔 住在一起 . +Tom has no intention of asking Mary to the upcoming dance . Tom 没有 意图 去 邀请 Mary 去 即将来临 的 舞会 . +You are joking ! 你 在 開 玩笑 吧 ! +I live in a big city . 我 住 在 一个 大城市 里 . +My eyesight is getting worse . 我 的 视力 正 慢慢 下降 . +No intelligent person drinks and then drives . 沒有 聰 明人 喝了酒 再 開車 . +My father has never been abroad . 我 父親 從來 沒有 出過 國 . +Here is your change . 這 是 你 零 錢 . +I do not know what I am doing . 我 不 知道 我 在 做 甚麼 . +Did you write ? 你 写 吗 ? +I ran as fast as possible to catch up with him . 我 盡力 追趕 他 . +She asked him questions . 她 問 了 他 問題 . +I guess that would be all right . 我 猜 那 應該 可以 的 . +We grow vegetables in our garden . 我們 在 我們 的 花園 裡 種 蔬菜 . +We are going to eat a lot tonight so I hope you are not on a diet . 我们 今晚 会 吃 很多 , 所以 我 希望 你 没有 在 节食 . +I told the policeman what I knew . 我 告訴 了 警察 我 所 知道 的 . +He always keeps his word . 他 总是 遵守 诺言 . +We are a family of five . 我家 有 5 口人 . +He took me to the park yesterday . 昨天 他 帶 我 去 公園 . +Have you seen all these movies ? 你 把 電影 全 看 了 嗎 ? +Listen . 听 着 . +I built an amplifier yesterday . 昨天 我 組裝 了 一個 揚 聲器 . +It is a good start . 这 是 一个 好 的 开端 . +I wish I did not have to work . 我 希望 我 不必 工作 . +Make another appointment at the front desk . 在 服務 台 另外 預約 . +I 'd be grateful to you if you could teach me to do that . 如果 你 能 教 我 怎麼 做 , 我 會 很 感激 . +I will tell Tom tomorrow . 我 明天 告訴 湯姆 . +I believe that he will do fine . 我 相信 他 會 做 得 很 好 . +If you need anything , let me know . 如果 你 需要 任何 東西 , 讓 我 知道 . +Are they all the same ? 他们 都 是 一样 的 吗 ? +Please leave . 請 你 離開 . +I will ask him tomorrow . 我 明天 會 問 他 . +An eye for an eye , a tooth for a tooth . 以眼还眼 以牙还牙 +These containers are airtight . 這些 容器 是 密封 的 . +We ordered Chinese food . 我们 点 了 中餐 . +It is imperative for you to act at once . 你 必须 马上 行动 . +One is Japanese and the other is Italian . 一个 是 日本 人 , 另 一个 是 意大利人 . +She is making progress with her English . 她 的 英語 正在 進步 中 . +I think someone is knocking on the door . 我 想 有人 在 敲门 . +I thought he loved you , but as it is , he loved another girl . 我 以為 他 愛 你 , 但 事實上 , 他 愛 另 一個 女孩 . +The archer killed the deer . 射手 打死 了 鹿 . +Do you eat out often ? 你 常常 外食 嗎 ? +How long is your spring vacation ? 你 春假 放 多久 ? +It does not sound like Tom . 聽 起來 不 像 湯姆 . +Let me see that . 讓 我 看看 . +I did not pay attention to what they were saying . 他们 说 了 什么 , 我 并 不 注意 . +It is nearly six . 差不多 六点 了 . +You can have a ride on my motorcycle . 你 可以 骑 上 我 的 摩托车 去 遛 一圈 . +Do you have a mobile phone ? 你 有 手機 嗎 ? +I think my French is not very good . 我 认为 我 的 法语 不太好 . +Have a nice trip ! 旅途愉快 ! +Let is eat now . I am starving . 咱们 吃 吧 ! 我 饿死 了 . +She was tired , but she kept working . 她 累 了 , 但 她 繼續 工作 . +We do not expect Tom to live much longer . 我们 不 指望 汤姆 能 活 得 更 久 . +Can I help you ? 我 能 幫 你 嗎 ? +I am not your mother . 我 不是 你們 的 媽媽 . +You should have stayed in the car . 你 該 留在 車裡 . +You have to be proactive . 你 必须 积极主动 . +Tom will be there for a few days . 汤姆 会 在 几天 后后 到达 那里 . +The room is fully furnished . 房間 裡 家具 齊 全 . +This is your only chance . 這 是 你 唯一 的 機會 . +This clock is mine . 這 個 錶 是 我 的 . +He is a fast walker . 他 走路 很快 . +We were astonished to hear what had happened . 我们 听到 所 发生 的 事 , 感到 很 惊讶 . +He turned over the matter in his mind . 他 在 心里 反复 思量 这件 事 . +Have you already rung the doorbell ? 你 已經 按門鈴 了 嗎 ? +Have you ever been to America ? 你 去過 美國 嗎 ? +I have never read such a scary novel . 我 从没 读 过 那么 恐怖 的 小说 . +Tom is afraid of heights . 汤姆 恐高 . +I no longer love him . 我 已经 不 爱 他 了 . +Which cap is yours ? 哪 顶 帽子 是 你 的 ? +I have almost no money with me . 我 身上 幾乎 沒有 錢 . +I want some orange juice . 我 想要 一點 柳橙汁 . +Tom did not agree to do it . 汤姆 不 同意 做 . +Tom told me that he 'd be right back . 汤姆 告诉 我 他 会 马上 回来 . +They were both drunk . 他們 兩個 都 喝醉 了 . +It is too big . 它 太 大 了 . +I have already finished the job . 我 已經 完成 了 這項 工作 . +I will call you back . 我会 给 你 回 电话 的 . +One of your tires is flat . 你 的 轮胎 爆 了 一个 . +This desk takes up too much room . 這 張 桌子 太 佔 空間 了 . +I will be back in ten minutes . 我 10 分钟 后 回来 . +I am eating rice . 我 在 吃 米饭 . +He is armed to the teeth . 他 武装 到 牙 齒 . +We have never had this problem before . 我們 從 前 從 沒有 過 這個 問題 . +He is rather hard to please . 取悅 他 很 難 . +I slipped and fell down the stairs . 我 滑了一跤 並 從 樓梯 上 摔 下來 . +I heard the front doorbell ring . 我 聽到 前門 的 門鈴 響 了 . +You may not remember me , but I remember you . 你 可能 不 記得 我 了 , 但 我 記得 你 . +This is a matter of the utmost importance . 这件 事 至关重要 . +They have no idea what is going on . 他們 不 知道 正在 發生 甚麼 . +Tom is not doing what he is supposed to be doing . 湯姆 沒 有 做 他 該 做 的 事 . +I hate you . 我 恨 你 . +She has not phoned since she went to London . 自 她 去 了 倫敦 後 , 就 沒 再 打電話 了 . +Let is go by bus . 讓 我們 坐 公共 汽車 去 . +That boy is running . 这个 男孩子 在 跑步 . +I have decided to shave my head . 我 已经 决定 把 我 的 头发 剃 了 . +Please tell the truth . 请 把 真实 的 情况 说 出来 . +I know the facts . 我 知道 事实 . +Tom is standing in the garden . 汤姆 在 花园里 站 着 . +Mistakes like these are easily overlooked . 这种 错误 很 容易 被 人 忽视 . +They are very big apples . 他們 是 非常 大 的 蘋果 . +Please close the door behind you . 請 隨手 關門 . +They were not listening to music . 他們 沒 在 聽 音樂 . +Do you know how to drive a car ? 你 知道 如何 開車 嗎 ? +You should not have lent the money to such a person . 你 不 應 該 借 錢 給 這樣 的 人 . +I overslept . 我 睡 過頭 了 . +They are having breakfast now . 他們 現在 正在 吃 早 飯 . +Tom did the best he could , but he was not able to get a higher grade than Mary . 汤姆 尽 了 全力 , 但 他 还是 不能 获得 比 玛丽 更 高 的 等级 . +Do you know Tom well ? 你 很 了解 汤姆 吗 ? +I went to the park last Saturday . 上個 星期六 我 去 了 公園 . +The train for Birmingham leaves from platform 3 . 去 伯明翰 的 火车 从 3 号 站台 出发 . +Actions speak louder than words . 行動 比 語言 更 響亮 . +Which shoes are you going to put on ? 你 将 穿 哪 双鞋 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +I go to school . 我 去 学校 . +The moment I held the baby in my arms , it began to cry . 我 一把 孩子 抱 在 手里 , 他 就 开始 哭 了 . +Compare your answers with the teacher is . 把 你 的 答案 和 老师 的 比较 一下 . +They got married and settled near Boston . 他們 結 了 婚 並 定居 在 波士 頓 附近 . +May I have a glass of milk , please ? 请问 能 给 我 一杯 牛奶 吗 ? +Do you have any day tours ? 你 有 任何 一日 遊 的 行程 嗎 ? +I work with her boyfriend . 我 和 她 的 男朋友 在 一起 上班 . +How much money did you spend in Boston ? 你 在 波士顿 花 了 多少 钱 ? +She takes private piano lessons . 她 上 私人 鋼琴 課 . +I took a cab to the station . 我 搭 了 計程 車 到 車站 . +We may be late for school . 我們 上學 可能 會 遲 到 . +I will do whatever you want me to do . 无论 你 要 我 做 什么 , 我 都 会 去 做 的 . +Were you playing tennis yesterday morning ? 你 昨天上午 打网球 了 吗 ? +It is illegal to park your car here . 把 車 停 在 這裡 是 違法 的 . +Tom knew what Mary intended to do . 湯姆 知道 瑪麗 想 做 甚麼 . +I can teach you how to swim . 我 能 教 你 怎样 游泳 . +I agree with your opinion about taxes . 我 同意 你 對 於 稅 的 意見 . +I received your letter . 我 收到 了 您 的 信 . +He is hard to deal with . 他 很 難對 付 . +We have little chance of winning . 我們 獲勝 的 機會 很少 . +I can not wait forever . 我 不能 永远 地 等 . +Can you ride a horse ? 您 会 骑马 吗 ? +Orange juice , please . 柳橙汁 , 麻煩 你 . +Did you actually see the accident ? 你 真的 看到 了 這 起 事故 嗎 ? +December has thirty @-@ one days . 十二月 有 三十 一天 . +He plays baseball every day . 他 每天 都 打 垒球 . +She especially likes music . 她 特別 喜愛 音樂 . +The moon is shining . 月光 在 照耀 著 . +You can come in . 你 可以 進來 . +Tom does not remember where he put his keys . 汤姆 不 记得 他 把 钥匙 放在 哪里 了 . +She told us the road was closed . 她 告訴 我們 道路 被 封閉 了 . +" Have you seen my cell phone ? " " It is on the table . " " 你 有 看到 我 的 手機 嗎 ? " " 它 在 桌子 上 . " +That is a stupid question . 这 是 一个 愚蠢 的 问题 . +World War II lasted from 1939 to 1945 . 第二次世界大战 从 1939 年 持续 到 1945 年 . +What am I to do now ? 怎么办 ? +I am a liar . 我 是 个 骗子 . +Tom died in his kitchen . 汤姆 是 在 自家 厨房 里 死 的 . +More than 40 percent of students go on to university . 40 % 以上 的 学生 去 读 大学 . +He can read well enough . 他 能 讀 得 很 好 . +What subjects are you taking at school ? 你 在 學校 裡 讀 哪些 科目 ? +All of a sudden , it began raining . 突然 開始 下雨 . +Sit beside me . 坐 我 旁边 . +How unfortunate ! 可憐 ! +The man robbed her bag . 這 名 男子 搶走 了 她 的 包包 . +He differs from his brother . 他 和 他 兄弟 不 一样 . +Sales should double this year . 今年 销售 会 翻番 . +It was fun playing in the park . 在 公園 裡 玩 很 有趣 . +My car broke down this morning and will not be repaired until Friday . 我 的 车 今天 早上 坏 了 , 星期五 才能 修好 . +My wife is part @-@ time job brings in a little extra money . 我 太太 兼職 的 工作 賺進 了 一些 額 外 的 錢 . +You gain more than you spend when you go to college . 上大學 的 時候 , 你 得到 的 比 付出 的 還 多 . +I must have caught a cold . 我 肯定 着凉 了 . +I can do it without her help . 沒有 她 的 幫忙 我 也 能 做 . +Tom and I are not friends . We are just coworkers . 湯姆 跟 我 不是 朋友 , 我們 只是 同事 . +A bird is singing in the tree . 一 隻 鳥 正在 樹上 唱歌 . +Be careful not to catch a cold . 小心 不要 感冒 了 . +His father eats there twice a week . 他 爸爸 一週 在 那裡 吃 兩次 . +A great number of citizens went into the army . 許多 老百姓 加入 了 軍隊 . +Whichever route you take , you will get there in time . 不管 你 选 哪条 路 , 你 都 能 按时 到 那里 . +Tom has something else to say . 湯姆 還 有 想 說 的 事 . +You may take anything you like . 你 可以 拿 你 喜歡 的 東西 . +They will get married next month . 他們 將 在 下 個 月 結婚 . +Do not let that happen again ! 不要 再 让 这种 事 发生 了 ! +Tom did not have to thank me . 汤姆 不必 谢 我 . +I went fishing last Monday . 上 个 周一 我 去 钓鱼 了 . +The party has been put off until next Tuesday . 聚会 已经 推迟 到 了 下 周二 . +Could you lend me your bicycle for a couple of days ? 你 能 把 你 的 自行车 借 我 两天 吗 ? +I do not think Tom understands that . 我 不 認為 湯姆 明白 . +I laughed at his joke . 他 的 笑話 讓 我 大笑 了 . +Tom does not pay attention in school . 汤姆 在 学校 里 不 专心 . +Tom did not have dinner last night . 湯姆 昨晚 沒 吃 晚餐 . +I worked hard last month . 我 上個月 很 努力 工作 . +Where will you go for the vacation ? 你 要 去 哪裡 度假 ? +I guess I waited too long . 我 好像 等 太久 了 +You are the best man for the job . 你 是 最 適合 做 這份 工作 的 人 . +Tom is uncle keeps a lot of sheep . 湯姆 的 叔叔 養 了 很多 羊 . +This book is really interesting . 這 本書 真的 很 有趣 . +That film is for children . 那部 電影 是 給 小孩 看 的 . +The rumor turned out to be true . 這個 傳聞 後 來 被 證明 是 真的 了 . +Shut the door , please . 請 關門 . +There was a cottage on the side of the hill . 山坡 上 有 一间 村屋 . +What do you intend to do ? 你 想 做 什麼 ? +He hung a lamp from the ceiling . 他 把 一盏灯 挂在 了 天花板 上 . +I am closing the door . 我 在 關門 . +I do not have much money on me . 我 身上 沒有 很多 錢 . +I want a cellular phone , but I do not have enough money to pay for one . 我 想要 一支 手機 , 但是 我 沒有 足夠 的 錢 買 一支 . +I have never met him . 我 從來 沒有 見 過 他 . +We must make a new start . 我們 必須 重新 開始 . +There is not any milk in the glass . 這個 玻璃杯 裡 沒有 任何 的 牛奶 . +Why would they need to do that ? 为什么 他们 会 需要 那么 做 呢 ? +This is a defibrillator . 这 是 一个 除颤 器 . +I am not very particular about food . 我 對 食物 不是 很 講究 . +He loves traveling . 他 愛 旅行 . +As more paper money came into use , the value fell . 当更 多 的 纸币 投入使用 , 价格 就 下跌 了 . +I left it on the table . 我 把 它 留在 桌上 了 . +Is there a cat on the table ? 桌子 上有 只 猫 吗 ? +There was not a cloud in the sky . 天上 没有 一片 云 . +She was busy with her knitting . 她 忙 着 编织 . +Did you find your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Advertisements urge us to buy luxuries . 廣告 慫恿 我們 買 奢侈品 . +He got hurt when he fell down . 他 跌倒 的 時候 受 了 傷 . +Cheese is made from milk . 奶酪 是 用 奶 做成 的 . +She was sick in bed yesterday . 她 昨天 臥病 在 床 . +Tom is lucky he did not get shot . 湯姆 沒 被 射中 真 走 運 . +May I see your claim tags ? 我 可以 看看 你 的 行李 條 嗎 ? +How do you write your last name ? 你 的 姓氏 怎么 写 ? +We must go to school . 我们 必须 去 学校 了 . +They say that love is blind . 人们 说 爱情 是 盲目 的 . +She made out the application for admission . 她 提出 了入 學 申請 . +I am a little tired . 我 有 點累 . +Mary does not usually wear jewelry . 玛丽 通常 不 戴 首饰 . +We took a wrong turn . 我們 拐 錯 彎 了 . +I could hear her sobbing in her bedroom . 我 能 聽見 她 在 她 的 臥室 裡 抽泣 . +Tom is taller than his mother . 湯姆 比 他 的 母親 高 . +Let us go home . 让 我们 回家吧 . +The girl wore a yellow ribbon in her hair . 那 女孩 的 头发 上绑 了 一根 黄 丝带 . +I can not believe my eyes . 我 无法 相信 自己 的 眼睛 . +Do you think we should send for the doctor ? 你 認為 我們 應 該 派 人 去 請 醫生 來 嗎 ? +I stopped smoking for the sake of my health . 為了 健康 , 我 不再 抽 菸 . +He is a reporter for Time magazine . 他 是 时代 杂志 的 记者 . +I did not want this . 我 不 想要 這個 . +Ask at the police box over there . 問 那邊 的 警察 崗 哨 . +How about you ? 你們 呢 ? +What did you come here to do ? 您 来 这儿 干嘛 ? +Tom needs to study more if he hopes to pass this class . 汤姆 如果 想 通过 这 门 课 , 就 需要 加劲 学习 . +Who is playing the piano ? 谁 在 弹钢琴 ? +There are more important things in life . 人生 里 有 更 重要 的 事情 . +Suddenly , everything fell silent . 突然 间 , 鸦雀无声 . +The traffic accident deprived him of his sight . 這場 交通 意外 讓 他 失明 了 . +This chair is made of plastic . 這 把 椅子 是 用 塑 膠 製 成 的 . +I want to clean the house before my parents come . 我 想 在 我 父母 来 之前 收拾 干净 屋子 . +The horse is a useful animal . 马 是 种 很 有用 的 动物 . +Picasso is paintings seem strange to me . 畢加索 的 畫 對 我 來說 似乎 很 奇怪 . +My uncle gave me a book . 我 的 叔叔 給 了 我 一本 書 . +What are you doing that for ? 你 正在 做 的 那個 東西 是 做 什麼 用 的 ? +She decided to resign . 她 決定 辭職 了 . +His behavior never ceases to surprise me . 他 的 所作所为 总是 让 我 惊讶 . +The job offer still stands . 這份 工作 錄取 仍然 有效 . +The pressure was tremendous . 壓力 很 巨大 . +The two sides hold talks this week . 双方 本周 举行会谈 . +Do I have to bring my son to your office ? 我 必須 帶 我 的 兒子 到 你 的 辦 公室 嗎 ? +I do not think she takes after her mother . 我 不 觉得 她 像 她 妈妈 . +I can not do anything but obey him . 我 除了 聽 從 他 之外 什麼 也 不能 做 . +I saw him sawing a tree . 我 看见 他 正在 锯 一棵树 . +What season do you like the best ? 您 最 喜欢 哪个 季节 ? +One of us has to go . 我们 中 的 一个 得 走 . +Which is your book ? 哪 本 是 你們 的 書 ? +He is a professor of biology at Harvard . 他 是 哈佛大学 的 生物学 教授 . +How I have missed you ! 我 多麼 想念 你 ! +I am able to drive a car . 我 會 開車 . +Our friendship was put to the test . 我们 的 友谊 受到 了 考验 . +He lost his eyesight in an accident . 他 在 一次 意外 中 失去 了 他 的 視力 . +Who is in charge of the sales section ? 谁 负责 销售 部门 ? +He likes listening to the radio . 他 喜歡 聽 廣播 . +Tom got out of the jeep . 汤姆 从 吉普车 上 下来 了 . +His voice is pleasant to listen to . 他 的 声音 听 着 很 舒服 . +They have decided to get married next month . 他們 已經 決 定下 個 月 結婚 . +I read an exciting story . 我 讀 了 一篇 精彩 的 故事 . +Chinese is a tonal language . 漢語 是 一個 聲調 語言 . +We take health for granted until illness intervenes . 我們 視 健康 為 理所 當然 , 直到 疾病 侵襲 . +You can keep this one for yourself . 你 可以 把 這個 保留 給 自己 . +Wherever you go , I will follow . 無論 你 到 哪裡 , 我 都 會 跟著 你 . +She was in a hurry . 她 在 趕 時間 . +The birds sang . 鳥兒 歌唱 . +Do you know how to eat with chopsticks ? 你 會 用 筷子 吃 飯 嗎 ? +I do not know where my watch is . 我 不 知道 我 的 手 錶 在 哪 裡 . +You have a really good sense of direction . 你 的 方向感 很 好 . +When and where is breakfast served ? 早饭 在 何时何地 用 ? +I have finished my homework . 我 已經 完成 我 的 作業 . +I will say something about it . 我 會 談 談 它 . +We had a large audience . 我们 有 很多 听众 . +He has no interest in politics . 他 對 政治 沒有 興趣 . +Keep to the right . 靠 右侧 通行 . +Do not go out after dark . 天黑 以 後 不要 出門 . +They are trying to control you . 他們 設法 控制 你 . +English is a Germanic language . 英語 是 一種 日耳曼 語 . +Tom had no intention of giving Mary any money . 汤姆 不想 给 玛丽 一分钱 . +He lives just around the corner . 他 就 住 在 拐角 的 地方 . +She might know that we are here . 她 或许 知道 我们 在 这儿 . +You broke the rule . 你 坏 了 规矩 . +Do you know me ? 你 認識 我 嗎 ? +Tom does not eat red meat . 湯姆 不吃 紅肉 +If you had left home a little earlier you would have been in time . 如果 你 早点 出门 的话 , 你 就 能 赶上 了 . +She was obliged to give up the plan . 她 不得不 放弃 这个 计划 . +His name was on the tip of my tongue , but I could not remember it . 我 都 快要 说出 他 的 名字 了 , 可 就是 记不起来 . +Have you already voted ? 您 已經 投 了 票 了 嗎 ? +It is your turn . 輪到 你 了 . +That is a pencil . 那 是 一支 铅笔 . +I talked to Tom . 我 和 汤姆 说 了 话 . +That is because you are a girl . 那 是 因為 妳是 女生 . +Did Tom respond ? 汤姆 有 回应 了 吗 ? +Tom had no idea Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +Do not put it on my desk . 不要 把 它 放在 我 的 桌子 上 . +May I pay with a credit card ? 我 能 用 信用卡 支付 吗 ? +I have always kept my word . 我 一直 遵守 我 的 諾言 . +The admission is ten dollars a person . 入 會 費 一個 人 十美元 . +I am afraid of dogs . 我 怕 狗 . +I want to become rich . 我 想 變有 錢 . +I will give you a bike for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +Her older daughter is married . 她 的 大 女兒 結婚 了 . +There was not a tree in sight . 看不到 任何 一棵 樹 . +I lost my camera the other day . 那天 我 丢 了 我 的 照相机 . +Salt helps to preserve food from decay . 鹽 可以 幫助 保存 食物 避免 腐爛 . +The university was founded by his father twenty years ago . 大学 在 20 年前 由 他 的 父亲 建立 . +I know how to set a trap . 我 知道 怎么 设 陷阱 . +We are both reasonable people . 我们 是 两个 通情达理 的 人 . +He often stays up late at night . 他 經常 在 晚上 熬夜 . +I could not hear you . 我 听不见 你 . +We can not know what the future has in store . 人 不 知道 未來 可能 發生 什麼 事 . +I lost my luggage . 我 的 行李 丢 了 . +I do not know whether to accept or to refuse . 我 不 知道 是否 該 同意 或 拒絕 . +He tiptoed so no one heard him . 他 踮 著 腳 尖 走 , 所以 沒 有人 聽到 他 . +She is determined to become a secretary . 她 下决心 要 成为 秘书 . +I am very interested in French . 我 對 法語 很感 興趣 . +I do not do it anymore . 我 已经 不再 做 这个 了 . +I do not quite understand what he says . 我 不 太 明白 他 说 什么 . +You should not break promises . 你 不该 违背 你 的 诺言 . +Hardly anyone thinks that we are sisters . 几乎 没有 人 认为 我们 是 姐妹 . +English is studied in China , too . 英語 在 中國 也 被 學習 了 . +Sooner or later his luck will run out . 遲早 他 的 運氣 會用 完 . +Tom is older than I am . 湯姆 年紀 比 我 大 . +There was complete silence . 一片 寂静无声 . +She kept the secret to herself . 她 守著 這個 秘密 . +None of your business . 这 不是 你 的 事 . +My room looks out on the street . 從 我 的 房間 望出去 是 街道 . +My father always speaks in a very loud voice . 我 父親 總是 說 話 很大 聲 . +Were you at school at that time ? 那時 你 在 學校 嗎 ? +He will be very busy next month . 下个月 他 会 很忙 . +Tom was afraid to ask for help . 汤姆 不敢 求助 . +We want to go home . 我們 想 回家 . +Tom gave Mary the cold shoulder . 汤姆 给 玛丽 冷 的 肩膀 . +What are you watching ? 你 在 看 什么 ? +Tom sat on that park bench for nearly three hours . 汤姆 在 公园 的 长椅 上 坐 了 将近 三个 小时 . +Why did she come home early ? 為 什麼 她 早 回家 了 ? +This song was written by Foster . 這 首歌曲 是 由 福斯特 所寫 的 . +A wounded whale washed up on the beach . 一条 受伤 的 鲸鱼 在 海滩 边 搁浅 了 . +Smiles do not always indicate pleasure . 微笑 並 不 一定 表示 高興 . +I work best under pressure . 我 在 壓力 之下 工作 表現 最好 . +Tom failed to persuade Mary . 汤姆 没 能 说服 玛丽 . +Fill it with regular , please . 請 定期 填寫 . +You should not eat too much candy . 你 不 應 該 吃 太 多 糖果 . +You do not believe Tom , do you ? 你 不 信任 汤姆 , 对 吗 ? +You look tired . 你 看 起來 很 疲倦 . +This is my friend . 這 是 我 的 朋友 . +Why do you need my help ? 你 為 甚麼 需要 我 幫助 ? +The price of eggs is going up . 蛋 的 價格 正在 上漲 . +I feel comfortable . 我 感觉 很 舒服 . +Were you expecting to win ? 你 打算 赢 吗 ? +The bus leaves in five minutes . 公車 將 在 五分 鐘 後 開動 . +How do you get your children to eat vegetables ? 你 怎样 让 你 的 孩子 们 吃 蔬菜 ? +Why did you try to run away ? 为什么 你 企图 逃走 ? +It looks like Tom won the race . 看 起來 像是 湯姆 贏 得 了 比賽 . +He pressed the button and waited . 他 按 下 按 鈕然 後 等待 著 . +That river is dangerous . 那 條 河 是 危險 的 . +I need to take a shower . 我 需要 洗 个 澡 . +I have not been getting enough sleep lately . 我 最近 一直 睡眠不足 . +Without the slightest hesitation , he sold his own car . 他 毫不犹豫 地 把 自己 的 车 卖 了 . +We were talking about something at that time , but I do not remember what . 我们 那时 在 谈论 事情 , 但 我 不 记得 是 什么 了 . +I was surprised at his strong resemblance to his father . 他 像 极了 他 父亲 , 这 让 我 震惊 . +I really like this story . 我 真 喜歡 這 故事 . +She squeezed the juice from many oranges . 她 榨 了 許多 柳橙汁 . +Tom has a girlfriend in Boston . Tom 有個 在 波士 頓 的 女友 . +Where did you meet Tom ? 你 是 在 哪里 认识 汤姆 的 ? +I avoid discussing personal subjects with my boss . 我 避免 跟 老板 讨论 个人 话题 . +I will make you happy . 我会 让 你 幸福 的 . +What made you so angry ? 什麼 讓 你 這麼 生氣 ? +You should read many books when you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +Keep Tom safe . 确保 汤姆 安全 . +I 'd like a window seat , please . 請 給 我 靠 窗口 的 位子 . +I still have not found work . 我 還 沒有 找到 工作 . +Someone has taken my shoes by mistake . 有人 穿错 了 我 的 鞋 . +Tom is being held captive . 汤姆 被 囚禁 了 . +She disliked him . 她 不 喜歡 他 . +He likes to cook for his family . 他 喜歡 為 家人 做飯 . +I 'd rather do it by myself . 我 更 願意 自己 做 . +I do not like the taste of tomatoes . 我 不 喜歡 蕃茄 的 味道 . +They made up and became friends again . 他們 和解 了 , 並 再次 成為 了 朋友 . +You did what was necessary . 你 做 了 必要 的 事 . +I was already tired . 我 已经 累 了 . +They are melons . 它们 是 瓜 . +Tom has no friends to play with . 湯姆 沒有 朋友 可以 一起 玩耍 . +Watch him and do the same thing . 看著 他 並且 跟 他 做 同樣 的 事情 . +They came up with a plan after a long discussion . 他们 终于 在 漫长 的 讨论 之后 得出 了 一个 计划 . +I do not understand why pepperoni pizza is so popular . 我 不 懂 為何 義式 辣腸 披 薩 如此 受歡 迎 . +Have you been to London before ? 你 以前 去過 倫敦 嗎 ? +Say it clearly . 說 清楚 . +I knew he would accept . 我 知道 他 会 接受 的 . +Stop gambling . 戒掉 赌博 吧 . +I have a friend whose father is a teacher . 我 有 一個 朋友 , 他 的 父親 是 老師 . +I got up early . 我 起床 早 . +Anything new ? 有 什么 新鲜事 吗 ? +He goes to Karuizawa every year . 他 每年 都 去 輕 井澤 . +Why were you late ? 你 为什么 迟到 ? +Tom was not thirsty . 汤姆 不渴 . +He refused my friend request . 他 拒绝 了 我 加 好友 的 请求 . +He made me a suit . 他 给 我 做 了 套 衣服 . +You should have stayed in the car . 你 該 留在 車裡 . +Whenever I hear that song , I remember my youth . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +Tom made up his mind to become a newspaperman . 汤姆 决定 做 报业 人士 . +He is no ordinary student . 他 不是 个 普通 的 学生 . +Almost everyone came . 几乎 每个 人 都 来 了 . +Look , it is my problem . 看 , 这 是 我 的 问题 . +I received a letter written in English yesterday . 昨天 , 我 收到 一封 用 英语 写 的 信 . +You did not need to take a taxi . 你 不必 搭計 程車 . +He is so heartless . 他 是 这么 的 无情 . +Please stay as long as you wish . 你 想待 多久 就 待 多久 . +There is no clock in my room . 我 的 房间 里 没有 时钟 . +Have we made progress ? 我們 取得 進步 了 嗎 ? +He took me for an Englishman . 他 误认为 我 是 一个 英国人 . +Do not tell me you did not know . 别跟我 说 你 不 知道 . +That is very handy . 这 很 方便 . +You have put on weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +The bill was passed after a hard fight in the House . 該 法案 在 眾議 院爭議 後 獲得 通過 . +There is no need for you to study . 你 沒有 讀書 的 必要 . +He plays tennis very well . 他 打网球 打 得 很 好 . +Tom has lost weight recently . 湯姆 最近 變 瘦 了 . +Let is play tennis in the afternoon . 今天下午 讓 我們 打 網球 吧 . +Everybody did that . 每个 人 都 做 了 那事 . +Tom listened carefully . 湯姆 仔細 聽 . +It is time to leave . 是 时候 离开 了 . +I found her letter in the mailbox . 我 在 信箱 中 發現 了 她 的 信 . +Switzerland is situated between France , Italy , Austria and Germany . 瑞士 位于 法国 、 意大利 、 奥地利 和 德国 之间 . +First off , I 'd like you to come with me to a department store sale . 首先 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +I 'd rather stay than go . 我 寧願 待 在 這裡 而 不 去 . +They made their way across the river . 他們 渡河 前 進 . +Have you ever traveled by plane ? 你 曾經 坐 飛機 旅行 過 嗎 ? +A ring and some cash are missing . 少 了 一个 戒指 和 一点 现金 . +They are jealous of our success . 他们 嫉妒 我们 的 成功 . +Did you buy her something for Christmas ? 你 聖誕節 買 東西 給 她 了 嗎 ? +Let is eat sushi . 讓 我們 吃 壽司 吧 . +The meeting ended earlier than usual . 會議 比 往常 早 結束 . +Something must be done ! 必須 採取 一些 行動 了 ! +He gave the same answer as before . 他 給 了 跟 以前 一樣 的 回答 . +Spring will come soon . 春天 就要 来 了 . +Children really like playing on the beach . 孩子 们 非常 喜欢 在 海滩 上 玩耍 . +I saw an old woman cross the street . 我 看见 一个 老太太 穿过 了 马路 . +Did they live here ? 他們 從 前 住 這 嗎 ? +Please send me a letter . 請 寄信 給 我 . +Her English is excellent . 她 的 英语 好极了 . +That is my problem . 這 是 我 的 問題 . +What are your influences ? 你 的 影响力 是 什么 ? +Hold your horses , young man . 別 那麼 猴急 , 年 輕 人 . +He wants to kiss her . 他 想 亲 她 . +Tell me where to put these books . 告訴 我 這些 書要 放在 哪裡 . +How many children do you have ? 你 有 幾個 小孩 ? +May we swim here ? 我们 能 在 这里 游泳 吗 ? +I will give you this book . 我会 把 这 本书 给 你 . +He knows how to swim . 他 会 游泳 . +I bought a pair of shoes . 我 買 了 一雙 鞋子 . +Tom watched TV yesterday . Tom 昨天 看 了 电视 . +Life without love is just totally pointless . 没有 爱情 的 生活 毫无意义 . +What Tom said does not apply in this situation . 汤姆 所 言 不符 时局 . +I still need an answer . 我 仍然 需要 一个 答案 . +Which one of the two brothers did you see ? 你 见到 的 是 两 兄弟 中 的 哪 一个 ? +How do you feel now ? 你 现在 感觉 如何 ? +Please fill this bucket with water . 請 把 這個 桶子 裝滿 水 . +He left an hour ago . 他 一 小时 前 走 了 . +I was hoping Tom would come here today . 我 希望 湯姆 有 一天 會來 這裡 . +He was accused of murder . 他 被 控告 杀人罪 . +Everyone noticed . 所有人 都 注意 到 了 . +Tom certainly is an interesting person . 汤姆 这 人 确实 很 有意思 . +The taxi I took was very old and small . 我 打 的 这辆 出租车 很 老 , 也 很小 . +Do you realize what this means ? 你 知道 這 是 甚麼 意思 嗎 ? +He speaks French fluently . 他 说 法语 说 得 很 流利 . +You know too much . 你 知道 得 太 多 了 . +I feel lonely . 我 觉得 很 孤独 . +I do not need anything . 我 不 需要 任何 東西 . +Is Monday OK ? 周一 可以 吗 ? +I will explain it to her . 我会 跟 她 解释 的 . +Someone came . 有人 来 了 . +Do not tell lies . 别 说谎 ! +Shut your eyes . 闭 上 你们 的 眼睛 . +You and Tom must be happy . 你 和 湯姆 一定 很 高興 . +I can not play tennis very well . 我 網球 打 的 不是 很 好 . +The girl is small for her age . 就 她 的 年齡 來說 , 這個 女孩 算是 矮小 的 . +What do you suppose this could be ? 你 认为 这 是 什么 ? +Tom left his umbrella on the bus . 汤姆 把 伞 落在 了 巴士 上 . +Tom felt his heart beating faster . 湯姆 感覺 他 心跳 加快 . +I received a letter three months later . 我 在 三個 月 後 收到 了 一封信 . +Tom was the one that told us about the problem . 湯姆 是 告訴 我們 問題 的 人 . +Can I bring Tom ? 我 可以 带上 汤姆 吗 ? +I accompanied her on a walk . 我 陪 她 散步 . +I can seldom find time for reading . 我 很少 能 抽出 时间 看书 . +Who is that ? 那 是 谁 ? +It is wrong to deceive people , but worse to deceive yourself . 欺騙 別人 是 錯 的 , 但 更糟 的 欺騙 自己 . +The nail tore his jacket . 這個 釘子 撕破 了 他 的 夾克 . +I warned you not to come here . 我 警告 過 你 別 來 這裡 . +I have never told anyone about this . 我 没 跟 任何人 说 过 这个 . +I borrowed this comic from his sister . 我 向 他 的 妹妹 借了 這個 漫畫 . +London , where I live , used to be famous for its fog . 我 住 的 地方 - 倫敦 , 從前 以 霧聞 名 . +He knows almost nothing about that animal . 他 幾乎 對 那個 動物 一無 所知 . +Tom did not give me back my money . 湯姆 沒有 還 我 錢 . +Take whichever you want . 拿 你 想要 的 . +I understand . 我 明白 了 . +Are you going to attend the meeting ? 你 要 參加 會議 嗎 ? +Children often hate spinach . 小孩 一般 都 討厭 菠菜 . +Tom very often takes a nap for an hour after lunch . 汤姆 很 经常 在 午饭 后 小憩 一 小时 . +You have not washed your hands yet , have you ? 你 还 没 洗手 , 不是 吗 ? +May I say something ? 我 可以 說 些 什麼 嗎 ? +I went to sleep about 10 o 'clock . 我 在 10 點 左右 去 睡 覺 . +Everything will be OK . 一切 都 会 好 的 . +We had an earthquake last night . 昨晚 我們 這裡 發生 了 地震 . +I heard a strange sound . 我 聽見 一聲 怪響 . +Do you really want Tom to suffer ? 你 真 想 讓 湯姆 受苦 嗎 ? +My whole body hurts . 我 全身 酸痛 . +There is a bottle of white wine in the refrigerator . 冰箱 里 有 一瓶 白葡萄酒 . +There is not any film in this camera . 這個 相機 裡 沒有 胶卷 . +She lives in a large house . 她 住 在 一棟 大房子 裡 . +We have two examinations during this term . 这个 学期 我们 有 两次 考试 . +It is very expensive to keep up with the latest fashions . 跟上 最近 潮流 时尚 是 件 非常 花钱 的 事儿 . +You look tense . 你 看起来 很 紧张 . +You know I am right . 你 知道 我 是 正确 的 . +Please tell me about your problem . 請 告訴 我 你 的 問題 . +The cause of the fire was unknown . 火災 的 原因 不明 . +Tom has been expecting Mary . 湯姆 預計 瑪莉 會 來 . +I have caught a bad cold . 我 得 了 重感冒 . +I can not stand him . 我 受不了 他 . +I am on my way to the meeting right now . 我 在 前往 会议 的 路上 . +I slept only two hours . 我 祇 睡 了 兩 小 時 . +My cell phone has a built @-@ in digital camera . 我 的 手機 有 內建 的 數位 相機 . +Something is happening in Boston . 在 波士顿 正 发生 着 什么 事 . +I need to complete it as soon as possible . 我 需要 尽快 完成 . +I do not have a prejudice against foreign workers . 我 对 外籍 员工 没有 偏见 . +I asked the doctor some questions . 我 問 了 醫生 一些 問題 . +I am getting off at the next station . 我 下 一站 下车 . +I had some trouble in finding his house . 我 很 難 找到 他 的 房子 . +He often quotes from Shakespeare . 他 經常 引用 莎士比亞 . +Tom dealt the cards . Tom 处理 了 卡片 . +We can seat you soon . 我们 很快 就 可以 安排 您 入座 . +Tom does not even try to help Mary . 汤姆 甚至 没 打算 帮 玛丽 . +As soon as I get to London , I will drop you a line . 我一 到 伦敦 就 会 给 你 留言 的 . +There is a back entrance . 有 后门 . +He kicked the ball into the goal . 他 把 球 踢 進 了 球門 . +My friend is studying Korean . 我 的 朋友 在 學朝 鮮語 . +I have just been to my uncle is house . 我 剛剛 去 了 我 叔叔 家 . +The problem was very difficult . 這個 問題 非常 困難 . +My apartment is on the fourth floor . 我 的 公寓 在 四樓 . +His greatest fault is talking too much . 他 最大 的 缺点 就是 话 太 多 . +I still can not speak French . 我 还是 不会 说 法语 . +We had a welcome party for her . 我們 為 她 舉辦 了 一個 歡迎 會 . +Do not throw out this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +You have to get this work finished by noon . 你 必須 在 中午 以前 完成 這個 工作 . +The first thing you have to take into consideration is time . 你 应该 考虑 的 第一件 事 是 时间 . +Unfortunately , it rained . 很 遗憾 , 下雨 了 . +We will have to go back . 我们 还 得 回去 . +Where does it hurt ? 哪裡 疼 ? +I will get you whatever you want . 我 會 給 你 任何 你 想要 的 東西 . +Freedom is not free . 自由 是 有 代价 的 . +Tom saw Mary crying . 湯姆 看見 瑪麗 在 哭 . +I would like to try this on . Where are the fitting rooms ? 我 想 试试 这件 . 请问 哪里 是 试衣间 ? +Can anyone answer my question ? 有人 可以 回答 我 的 問題 嗎 ? +Let me give you some advice . 讓 我 給 你 一些 建議 . +He is beginning to lose his hair . 他 开始 掉头发 了 . +You made the mistake on purpose , did not you ? 你 故意 犯 這個 錯 , 是 嗎 ? +We ran down the hill . 我們 跑 下山 . +What is your job ? 你 做 什麼 工作 ? +May I put it here ? 我 可以 把 它 放在 这儿 吗 ? +The information you gave me is of little use . 你 給 我 的 資料 沒有 多大 的 用處 . +The soccer game is tomorrow . 明天 有 足球 比賽 . +English is a universal language and is used all over the world . 英語 是 一種 世界性 的 語言 , 用 於 世界各地 . +Who told you the story ? 誰 告訴 你 這個 故事 ? +She cried when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 哭 了 . +Pardon me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +She is a well @-@ known singer . 她 是 一个 著名 的 歌手 . +Quit talking , will you ? 不要 说话 , 好不好 ? +The bucket was full of water . 这桶 装满 了 水 . +Please wait until I come back . 請 等到 我 回來 . +Write your name in capitals . 写下 你 名字 的 大写字母 . +Tom is eyesight is deteriorating . Tom 的 视力 正在 恶化 . +My father is retiring next spring . 我 爸爸 明年 春天 就要 退休 了 . +Your cake is delicious . 你 的 蛋糕 很 美味 . +What is it that Tom wants to eat ? 汤姆 想 吃 的 是 什么 ? +Those are my pants . 那些 是 我 的 褲子 . +I saw him run away . 我 看見 他 逃跑 了 . +The participants were for the most part women . 参与者 大部分 是 女性 . +It is been raining since early morning . 從 清晨 開始 一直 下雨 . +I kept on singing . 我 繼續 唱歌 . +The cat is looking at the fish . 猫 看着 鱼 . +The things he says are not the least bit important . 他 说 的话 根本 毫无意义 . +You could not handle the pressure . 你 不能 处理 压力 . +He introduced me to his parents . 他 把 我 介紹 給 他 的 父母 認識 . +Let me see it . 讓 我 看看 . +Something did happen . 有 什么 事 发生 了 . +Let is go and swim in the river . 讓 我們 去 河裡 游泳 吧 . +The lights in the bathroom are not working . 洗手间 的 灯 坏掉 了 . +Compared to Tokyo , London is small . 和 东京 比 , 伦敦 很小 . +We ran in the park . 我们 在 公园 里 跑 了 步 . +Please do that . 麻煩 您 那樣 做 . +Thanks to both of you . 感谢 你们 两位 . +Children love playing on the beach . 孩子 們 喜歡 在 沙灘 上 玩 . +The whole neighborhood was surprised at the news . 整个 小区 对 这个 消息 很 惊讶 . +It is supper time . 吃 晚 飯 的 時間 到 了 . +You come back soon , OK ? 你 早點 回來 , 行 嗎 ? +I have not eaten for many days . 我 好多天 沒 吃 東西 了 . +Tears filled her eyes . 她 热泪盈眶 . +No problem . 没关系 . +Her father passed away last week . 她 的 父親 上週 去世 了 . +" Are the drinks free ? " " Only for ladies . " “ 酒水 免费 吗 ? ” “ 仅 女士 而已 . ” +He called me a taxi . 他 替 我 叫 了 一部 計程 車 . +I would rather stay at home than go out . 比起 出门 , 我 更 喜欢 待 在家 . +What do you plan to major in at college ? 你 计划 去 大学 后 主修 什么 吗 ? +We are all at risk . 我们 都 在 冒险 . +You will be able to see the difference very easily . 你们 很 容易 就 能 看出 区别 . +You should rewrite this sentence . 你 應該 重寫 這 句 話 . +He is living abroad at the moment . 他 现在 住 在 国外 . +Take as many cookies as you want . 想 吃 多少 饼干 就 吃 多少 . +I would like to pay in cash . 我 想用 現金 支付 . +You are very shy . 你 很 害羞 . +Tom will wait . 湯姆會 等 . +It is fun to travel . 旅行 是 乐事 . +Tom can run fast . Tom 可以 跑 得 很快 . +It is very difficult . 这 很 难 . +You can bank on that . 你 可以 寄希望于 此 . +If it looks like an apple and it tastes like an apple , it is probably an apple . 如果 看起来 像 个 苹果 而且 吃 起来 也 像 苹果 的话 , 可能 就是 苹果 . +She asked how to cook the fish . 她 问 了 怎么 烧鱼 . +Why do not we order pizza ? 为什么 我们 不订 披萨 呢 ? +Tom said that he lost his key . 汤姆 说 他 丢 了 钥匙 . +He gave a nice present to me . 他 送给 我 一份 漂亮 的 礼物 . +It was rather easy for them . 這 是 對 他們 來說 相當 容易 . +He is American . 他 是 美国 人 . +He drank very little of the water . 他 喝 很少 的 水 . +Africa was once called the Dark Continent . 非洲 曾經 被 稱為 黑暗 大陸 . +He does not like to eat fish . 他 不 喜歡 吃 魚 . +" Who is in the car ? " " Tom is . " “ 谁 在 车里 ? ” “ 汤姆 . ” +The senator was censured by the congressional ethics committee . 议员 受到 了 议会 道德 委员会 的 谴责 . +That was years ago . 那 是 好 幾 年前 . +He objected to our plan . 他 反 對 我們 的 計劃 . +Who are your most interesting friends ? 你 最 有趣 的 朋友 是 誰 ? +Where were you ? 之前 你 在 哪里 ? +We do not have time . 我们 没 时间 . +We were worried . 我们 很 担心 . +Poor health prohibited him from traveling . 因为 健康 状况不佳 , 他 没去 成 旅行 . +It is too expensive . 这 太贵 了 . +He went by bicycle . 他 骑 自行车 去 的 . +There is no denying that she is very efficient . 无可否认 她 非常 有 能力 . +She smiled . 她 笑 了 . +Go away . 走開 ! +Tom likes science fiction . 汤姆 喜欢 科幻 . +Yesterday , the weather was very nice . 昨天 天气 非常 好 . +He looks old for his age . 他 看 起來 比 他 的 實際 年齡 大 . +My stomach is full . 我 吃 得 很 飽 . +She is two years older than you . 她 比 你 大 兩歲 . +Do you have a TV ? 你 有 电视 吗 ? +Are you happy ? 你 开心 吗 ? +He looks like a good boy . 他 看 起來 是 個 好 男孩 . +I thought his opinion was relevant . 我 認為 他 的 意見 很 中肯 . +He hid behind the door . 他 藏到 了 门 后 . +Tom can not get over Mary . 汤姆 不能 原谅 玛丽 . +Tom could not get to sleep till after three last night . 汤姆 昨晚 三点 多 才 睡着 . +Tom was not smiling when he entered the room . 汤姆 进 房间 时 没有 微笑 . +I want to eat apple pie . 我 想 吃 苹果派 . +He went to New York on Monday . 他 星期一 去 了 紐約 . +Walk faster , or you will miss the train . 走快 一點 , 不然 你 會 錯 過 火車 . +That is our school . 那 是 我们 的 学校 . +The dog came running to me . 狗 向着 我 跑 了 过来 . +Tom quietly closed the bedroom door . 湯姆 靜靜地 關上 了 臥室 的 門 . +I love this car . 我 愛 這 台 車 . +She was washing the dishes . 那時 她 正在 洗碗 . +Is there a hospital near here ? 這 附近 有 醫院 嗎 ? +Try it once more . 再 試 一次 . +You are always busy . 你 一直 忙 . +I often play soccer after school . 我 常常 在 放學 後 踢足球 . +Did you tell on me ? 你 告发 我 了 吗 ? +Could you please sign the register ? 請 您 在 登記 冊 上 簽名 好 嗎 ? +I suggest we go out on Friday . 我 建议 我们 星期五 出去玩 . +It is too loud . 它 太 大聲 . +Do you plan to stay long ? 你 打算 長 時間 停留 嗎 ? +I will always love you , no matter what happens . 不論 發生 了 什麼 事 , 我 會 永遠 愛 你 . +She set out on a trip last week . 她 上週 去 旅行 了 . +My brother is a first @-@ year student . 我 弟弟 是 個 一年 級 的 學生 . +Tom is insufferable . 汤姆 令人 难以忍受 . +What would you like ? 你 想要 甚麼 ? +Where do you work now ? 你 现在 在 哪里 工作 ? +He is independent of his parents . 他 獨立 於 他 的 父母 . +I would like to have a look at your collection of stamps . 我 想 看看 您 的 邮票 收藏 . +We have to pick a name for the child . 我們 要 給 孩子 起 個 名字 . +I am willing to take your offer . 我 願意 接受 你 的 報價 . +Many people envy Tom is success . 许多 人 嫉妒 汤姆 的 成功 . +Could you turn down the radio ? 您 能 把 收音机 开 小声 一点 吗 ? +Is Tom in a lot of trouble ? 汤姆 是不是 麻烦事 很多 ? +Although he is rich , he is not happy . 虽然 他 很 有钱 , 但 他 不 幸福 . +I think we should be able to go wherever we want to . 我 認為 我們 應 該 能 去 我們 想去 的 地方 . +He made a few grammatical mistakes . 他 犯 了 一些 文法 錯誤 . +Is this Tom is ? 这 是 汤姆 的 吗 ? +You are Tom is friend , are not you ? 你 是 湯姆 的 朋友 , 不是 嗎 ? +What else do you want me to say ? 你 想 让 我 再说 什么 ? +Please remain seated for a few minutes . 请 坐 一会 . +The weatherman says there is a storm on the way . 气象学家 说 会 有暴风雨 . +There is somebody in there . 有人 在 那里 . +I wish I could talk to you . 我 希望 能 与 你 谈话 . +We went swimming at the beach . 我們 去 海邊 游泳 . +I think he will do his best . 我 認為 他 會 盡力 而為 . +We are friends from way back . 我们 是 老朋友 了 . +No words can relieve her deep sorrow . 沒有 什麼 話 語能 減輕 她 深深 的 悲傷 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +No , I did not write it . 不 , 我 沒 寫 . +Do you want to come in ? 你 想 进来 吗 ? +I think he will not come . 我 认为 他 不会 来 . +The circumstances did not allow me to go abroad . 情况 不 允许 我 出国 . +See you soon ! 一會兒 見 ! +Do you feel tired ? 你 覺 得 累 嗎 ? +Life cannot exist without water . 水 是 生命 的 源泉 . +It is been ten years since we last met . 我們 離 上次 見 面有 十年 了 . +She keeps a parrot as a pet . 她 養一隻鸚鵡 作 為 寵 物 . +He earns double my salary . 他 的 工资 是 我 的 两倍 . +I belong to the drama club . 我 參加 戲劇 社 . +You do not know who I am . 您 不 知道 我 是 谁 . +Banks charge higher interest on loans to risky customers . 银行 对 风险 客户 收取 较高 的 贷款 利息 . +We will probably be the first ones there . 我們 可能 是 最先 到 那裡 的 . +A computer is an absolute necessity now . 電腦 現在 是 一個 絕對 必要 的 東西 了 . +We went to the mountains to ski . 我們 去 山上 滑雪 . +Will you pick me up at seven tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +A young girl on crutches asked Tom where he lived . 一个 拄着 拐杖 的 年轻 女孩 问 汤姆 他 住 在 哪里 . +He has just become a principal . 他 剛 成為 一 名校 長 . +Did you just get to know him ? 你 是不是 刚 认识 他 ? +I do not make deals with people like you . 我 不 跟 你 这样 的 人 做生意 . +Do you know how to recover a deleted file ? 你 知道 怎么 恢复 已 删除 的 文件 吗 ? +I need someone to talk with . 我 得 找 人 商量一下 . +I am stuck here in Boston because of the storm . 我 因為 風暴困 在 波士 頓 . +May I borrow your knife ? 我 能 借 一下 你 的 刀 吗 ? +We had a heavy rain last night . 昨晚 下 了 一場 大雨 . +He put the book on the table . 他 把 书 放在 了 桌上 . +Where is the telephone book ? 电话簿 在 哪里 ? +I am very sorry that I came home so late . 我 很 抱歉 那么 晚 回家 . +The old man died from hunger . 這位 老人 死 於 飢餓 . +I do not want to hurt his feelings . 我 並 不想 傷害 他 的 感情 . +Tom does not have a microwave oven . 汤姆 没有 微波炉 . +My house is close to a bus stop . 我 的 房子 靠近 一個 公車 站牌 . +Three months later , Tom was dead . 三個 月 后 , 湯姆 死 了 . +I do not even know if Tom went to college or not . 我 甚至 不 知道 汤姆 有没有 上 过 大学 . +Tom did not have enough time to eat lunch . 湯姆 沒 時間 吃 午 飯 . +What more would you want ? 你 還 想要 什麼 ? +We can hear the ocean from here . 我們 從 這裡 可以 聽到 海 的 聲音 . +She plays golf every weekend . 她 每 周末 都 打 高尔夫球 . +Everybody lies . 每个 人 都 会 说谎 . +He majored in drama at college . 他 在 大學 主修 戲劇 . +She is progressing in Chinese . 她 中文 有 进步 . +I believe in exercising regularly . 我 相信 規律 的 運動 . +Tom is not watching TV now . 湯姆 現在 沒 在 電視 . +I gave Tom one of those . 我 给 了 汤姆 其中 之一 . +I would like to order drinks now . 我 現在 想 點 飲料 . +Tom is out of your league . 汤姆 不 在 你 的 联盟 里 . +Answer the following questions in English . 用 英語 回答 下列 問題 . +The committee consists of four members . 委员会 由 四个 成员 组成 . +Do you have any Japanese magazines ? 你 有 任何 日本 雜 誌 嗎 ? +I am sleepy . 我 困 了 . +It is not always cold in Hokkaido . 北海道 並 不 總是 寒冷 . +What you say makes no sense . 你 說 的 話 沒有 道理 . +Which hat is yours ? 哪 顶 帽子 是 你 的 ? +A famous architect built this house . 一个 有名 的 建筑师 造 了 这个 房子 . +I would like to reserve a single room . 我 想 預訂 一間 單人 房 . +I know what you are doing . 我 知道 你 在 做 什么 . +I did not mean to disturb you . 我 不是 想 打扰 你 . +Let him play your guitar . 讓 他 彈 你 的 吉他 . +Japan is famous for Mt . Fuji . 日本 以 富士山 聞名 . +It is too late to apologize . 现在 道歉 也 迟 了 . +She did not turn up . 她 沒有 出現 . +Computers are certainly playing an important role in our life , whether we like it or not . 无论 我们 是否 喜欢 电脑 , 它 在 我们 的 生活 中 始终 起 着 重要 的 作用 . +I am going to make you a drink . 我 去 弄 飲料 給 你 . +She filled her bag with apples . 她 在 她 的 袋子 裡 裝滿 了 蘋果 . +We import tea from India . 我們 從 印度 進口 茶葉 . +What were the meetings like ? 会议 怎么样 ? +He was watching TV last night . 他 昨晚 在 看電視 . +There are too many things to do ! 要 做 的 事太 多 了 ! +I do not know when he will come again . 我 不 知道 他 什麼 時候 會 再來 的 . +It is time to talk . 到 談話 的 時間 了 . +I have a new car . 我 有 辆 新车 . +Good evening . 晚上 好 ! +Do not worry about this . 別 為 此 擔心 . +Be on time . 要 守时 ! +My aunt made a new skirt for me . 我 阿姨 做 了 一條 新 裙子 給 我 . +When did you come to Japan ? 你 何時 來 日本 的 ? +She says he will not give up smoking . 她 說 他 不 會 戒煙 . +They said the situation was only temporary . 他们 说 情况 只是 暂时 的 . +Now I need you to leave . 現在 我 需要 你 離開 . +I met him while I was coming home . 當 我 回家 時 , 我 遇見 了 他 . +Tom realized that he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +He plays the guitar very well . 他 吉他 彈 得 很 好 . +Let me get my violin . 让我拿 一下 我 的 小提琴 . +Life is fun . 人生 是 有趣 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +This is an important event . 这 是 个 重要 事件 . +Please show me your driver is license . 請 讓 我 看看 您 的 駕駛 執照 . +My mother made a sweater for me . 我 媽媽 為 我 做 了 一件 毛衣 . +Close the door , please . 請 關門 . +We must try to break the deadlock . 我们 必须 设法 打破 这个 僵局 . +The bell rings at eight . 鈴聲 在 八點鐘 響起 . +Will you explain the rule to me ? 你 能 帮 我 说明 一下 规则 吗 ? +The bottle smashed to pieces . 瓶子 摔成 了 碎片 . +I am not your mother . 我 不是 你 母親 . +The road is too narrow for cars . 這 條路 對 汽車 來說 太 窄 了 . +That is my toothbrush . 這 把 是 我 的 牙刷 . +The bus was filled to capacity . 這輛 公車 客滿 了 . +How far is it from the airport to the hotel ? 從 機場 到 旅館 多遠 ? +You can probably guess what happens though . 但 你 很 可能 猜得到 会 发生 什么 . +The old man walked with a stick . 這個 老人 拄著 一根 拐杖 走路 . +I am getting off at the next stop . 我 將 在 下 一站 下車 . +He did not listen to music . 他 没有 听 音乐 . +Could you wrap this separately , please ? 請 你 分開 包裝 好 嗎 ? +Is this Tom is ? 这 是 汤姆 的 东西 吗 ? +I am going to stop trying to be friendly with you . 我 不 跟 你 要 好 了 . +She is fond of playing tennis . 她 酷爱 打网球 . +It is fine today . 今天天气 很 好 . +I want a girlfriend . 我 想 找 女朋友 . +He swims better than I do . 他 游泳 比 我 好 . +Movie making is an exciting job . 電 影 製 作 是 一 個 令人 興奮 的 工作 . +Tom has a pretty big mouth . 汤姆 是 一个 大嘴巴 . +It was nice meeting you here . 在 这里 见到 您 真是 太好了 . +Tom is fluent in three languages . 汤姆 掌握 了 三种 语言 . +Would you please look after the children ? 你 可以 照顧 一下 孩子 們 嗎 ? +Champagne , please . 给 我 香槟 , 谢谢 . +Tom used to work here . 汤姆 过去 在 这里 工作 . +I got this vacuum cleaner for nothing . 我 免費 得到 了 這個 吸 塵器 . +She is still dependent on her parents . 她 现在 依然 依靠 父母 生活 . +It is said that she is a well @-@ known actress . 據 說 她 是 個 知名 的 女 演員 . +As you sow , so shall you reap . 种瓜得瓜 , 种豆得豆 . +Do not pry into my private life . 不要 插手 我 的 私生活 . +You are in trouble now . 你 有 麻烦 了 . +Would you care for some tea ? 你 要 喝 點 茶 嗎 ? +Please pick me up at the airport at five . 請 於 五點鐘 到 機場 接 我 . +Where is your bag ? 你 的 包在 哪裡 ? +I have to say no . 我 必须 拒绝 . +Are you the owner of this house ? 你 是 這棟 房子 的 主人 嗎 ? +I think we were well @-@ prepared . 我 認為 我們 準備 好 了 . +She sent me a letter . 她 寄给 我 一封信 . +Tom was the first to arrive and the last to leave . 湯姆 最先 來 , 最 後 走 . +I was the last one to see Tom . 我 是 见 汤姆 的 最后 一个 . +Tom took out his wallet and paid the bill . 湯姆 拿出 錢 包付 了 賬 . +I refuse to be treated like a slave by you . 我 拒绝 被 你 像 奴隶 一样 对待 . +Louder , please . 请 大声 一点 . +My father sometimes goes abroad . 我 父親 偶爾 出國 . +Tom does not know whether Mary is telling the truth or not . 汤姆 不 知道 玛丽 说 的 是 真话 还是 假话 . +He does not have to go to school . 他 不必 上學 . +When was it built ? 它 是 什麼 什麼 時候 蓋 的 ? +I will stand by you whatever happens . 不论 发生 什么 事 , 我 都 会 在 你 身边 . +You do not look so happy . 你 看来 不 大 高兴 . +The man is wanted for murder . 這人 因謀 殺 被 通緝 . +I do not like to socialize . 我 不 喜欢 跟 人 打交道 . +I have got one for you . 我 給 你 帶 了 一個 . +The air conditioner has got out of order . 空调 坏 了 . +Tom wants to be the boss . 湯姆 想 當 老 闆 . +The top of Mt . Fuji was covered with snow . 富士山 顶盖 满 了 雪 . +How did you like the party ? 你 覺得 這個 派 對 如何 ? +Much of what they wrote about never happened . 他們 寫 的 很多 都 沒 發生 . +I do not like to mix business with pleasure . 我 不 喜欢 把 生意 和 快乐 混 在 一起 . +They referred to Chaucer as the father of English poetry . 他們 視 喬叟 為 英 詩 之 父 . +Large , is not it ? 很大 , 不是 嗎 ? +There is no doubt about it . 關於 此事 毫無疑問 . +Why did you quit ? 你 為 什麼 辭職 ? +Cosmetic surgery is not covered by most insurance plans . 大部份 的 保險 計劃 不 包含 整容 手術 . +I took a shower . 我 洗 了 澡 . +People look at things differently depending on whether they are rich or poor . 人們 看待 事情 的 角度 不同 取決 於 他們 是 富裕 或 貧窮 . +I did not know Tom was going to tell us what to do . 我 不 知道 汤姆 会 告诉 我们 该 怎么 做 +As soon as she comes , we will begin . 她 一 到 , 我们 就 开始 . +He answered my question with a " no . " 他 用 一個 " 不 " 回答 了 我 的 問題 . +It was amazingly easy . 这 出乎意料 地 容易 . +You may have been the last person to see Tom . 你 可能 是 最 後 一個 見 湯姆 的 人 . +This diamond is not real . 这 颗 钻石 不是 真的 . +He likes neither baseball nor football . 他 既 不 喜欢 棒球 , 又 不 喜欢 足球 . +I have finished cleaning my room . 我 已經 打掃 完 我 的 房間 了 . +My business has at last gotten on the right track . 我 的 生意 終於 上 了 軌道 . +He asked her seven times to marry him . 他 求 她 跟 他 结婚 七次 . +No one voted against it . 没有 人 投 反对票 . +Tom was never happy . 湯姆 從不 高興 . +I am convinced that things will change for the better . 我 深信 事情 会往 更好 的 方向 转变 . +The Hilton Hotel , please . 请 开到 希尔顿酒店 . +Come along with me . 请 跟我来 . +I was still an amateur at that time . 我 那時 還 是 個 外行 . +Tom is a very good man . 汤姆 是 个 很好 的 人 . +I think we should try it . 我 認為 我們 該 試試 . +May I have something to drink ? 我 可以 喝 點 東西 嗎 ? +My gums are bleeding . 我 的 牙齦 流血 . +Tickets are on sale now . 现在 售票 . +I think skateboards are usually cheaper than rollerblades . 我 觉得 一般 滑板 比 轮滑鞋 便宜 . +He divorced his wife last month . 上個月 他 和 妻子 離婚 了 . +Please return the book by tomorrow . 請 明天 前 還 書 . +You must be joking ! 你 一定 是 开玩笑 ! +They passed by her house yesterday . 他們 昨天 路 過 她家 . +Stay down ! 趴着 ! +We do not get many visitors here . 我们 这里 没有 很多 访客 . +Zip your lips . 闭上 你 的 嘴 . +Haste makes waste . 欲速 則 不達 . +This is not salt . 这 不是 盐 . +I think it was a good day . 我 認為 那 是 個 好日子 . +He is not a high school student . 他 不是 個 高中生 . +They have twelve children . 他们 有 12 个 孩子 . +Tom said he has not decided what needs to be done . 湯姆 說 他 還 沒 決定 要 做 甚麼 . +My brother goes to college in Tokyo . 我 兄弟 在 東京 上大學 . +" Pass me the salt , please . " " Here you are . " “ 请 把 盐 递给 我 . ” “ 拿 着 . ” +I could not convince him of his mistake . 我 没能 让 他 相信 他 的 错误 . +She got very angry with her children . 她 对 她 的 孩子 非常 生气 . +She carried the box under her arm . 她 把 箱子 挾 在 手臂 下 . +He was very patient . 他 非常 有 耐心 . +What a pity ! 太 可惜 了 ! +My house is close to the park . 我 的 房子 靠近 公園 . +There is a telephone in my room . 我 的 房里 有 部 电话 . +Do you want to go on a picnic with me ? 你 想 跟 我 去 野餐 吗 ? +I can not change what happened yesterday . 我 没法 改变 昨天 发生 的 事情 . +We have a little time left . 我們 還 有 一點 時间 . +Why do not you come dancing with me ? 为什么 你 不 来 跟 我 跳舞 ? +Do you have enough money ? 你 的 钱 够 吗 ? +Why are you being so evasive ? 你 为什么 这么 躲躲闪闪 ? +Tom and I were business partners . Tom 跟 我 是 商業 夥 伴 . +It is time to eat lunch . 午餐 時間 到 了 . +He does not speak our language . 他 不 會 說 我們 的 語言 . +We have to do our best . 我们 要 尽力而为 . +Do not you have to work ? 你 不用 工作 吗 +He has over a million dollars in assets . 他 有 超过 一百万美元 的 资产 . +They furnished the library with new books . 他們 在 圖書館 裝備 了 新 的 書籍 . +I do not know what to say . 我 不 知道 说 什么 . +You 'd better not go there again . 你 最好 不要 再 去 那裡 . +We celebrate Christmas every year . 我們 每年 都 慶祝 聖誕節 . +My room is just below . 我 的 房間 就 在 樓下 . +She has an eye for beauty . 她 有 一雙 美麗 的 眼睛 . +I 'd rather stay at home . 我 寧願待 在家 裡 . +I have already told Tom he can not go to Mary is party . 我 已經 告訴 湯姆 他 不能 去 瑪麗 的 聚會 了 . +Tom stayed at this hotel for three weeks . 汤姆 在 这 宾馆 待 了 三周 . +Is the room big enough for you ? 這間 房間 對 你 來說 夠 大 嗎 ? +Could you possibly suggest a way to solve the problem ? 你 能 提出 解决问题 的 方法 吗 ? +He is a professor at the National University . 他 是 国立大学 的 一名 教授 . +It is none of your business . 跟 你 没 半 毛钱 关系 . +If a person has not had a chance to acquire his target language by the time he is an adult , he is unlikely to be able to reach native speaker level in that language . 如果 一個 人 在 成人 前 沒有 機會 習得 目標 語言 , 他 對 該 語言 的 認識 達到 母 語者 程度 的 機會 是 相當 小 的 . +She attempted suicide . 她 企圖 自殺 . +He stopped for a quick cigarette . 他 停下来 抽根 烟 . +Everyone except Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom knows how to behave in public . 汤姆 知道 在 公众 场合 怎么样 自处 . +I have seen Tom naked . 我 见 过 汤姆 光着 . +He did not mean to hurt you . 他 不是故意 要 傷害 你 . +The company is going to go bankrupt really soon . 公司 很快 就要 倒闭 了 . +Can she endure a long trip ? 她 能 忍受 長途 旅行 嗎 ? +She is having lunch now . 她 现在 正在 吃 午餐 . +The boy is full of promise . 这个 男孩 很 有 前途 . +How did you get to know him ? 你 是 怎么 认识 他 的 ? +I can not wait to go on a vacation . 我 等不及 要 去 度假 . +It has been raining heavily for three hours . 下 了 三 小 時 大雨 . +Tom does not think this is a coincidence . 汤姆 不 认为 这 是 一个 巧合 . +I will gladly help you . 我 會 很 樂意 幫助 你 . +Every minute counts . 分秒必争 . +How soon can we leave ? 我们 过 多久 才能 离开 ? +You may use this car . 你 可以 使用 這輛 車 . +They were scolded by the teacher . 他们 被 老师 训斥 了 . +His advice counted for little . 他 的 建議 不算 什麼 . +I need your passport and three photographs . 我 需要 你 的 护照 和 三张 照片 . +We had a lot of rain yesterday . 昨天 下 很多 雨 . +Are you students at this school ? 你 是 這 所 學校 的 學生 嗎 ? +I like to eat . 我 喜歡 吃 . +I am sorry to cause you all this trouble . 我 很 抱歉 给 你 惹 来 所有 的 这些 麻烦 . +This is not very stylish . 這 不是 很 流行 . +Why can not you come ? 你 為 什麼 不能 來 ? +Tom gave Mary a ride to Boston . 汤姆 载 玛丽 去 波士顿 . +Many accidents resulted from the icy conditions of the road . 道路 结冰 导致 了 很多 起 事故 . +Weather permitting , we will leave in an hour . 如果 天气 允许 的话 , 我们 1 小时 后 出发 . +He is afraid of death . 他 害怕 死亡 . +There is no rush . 不急 . +I want to play . 我 想 去 玩 . +What do you like to do in your free time ? 您 空闲 时间 喜欢 做 什么 ? +The sky was filled with airplanes . 天上 滿 是 飛機 . +I can not find my wallet . 我 找 不到 我 的 錢 包 了 . +Whose pencil is this ? 这 支 铅笔 是 谁 的 ? +He arrived in Tokyo yesterday . 他 昨天 抵達 東京 . +What time will you leave ? 你 什麼 時候 離開 ? +Where is the nearest train station ? 最近 的 火车站 在 哪里 ? +The doctor advised him to do more exercise . 醫生 建議 他 多 做 運動 . +It all seems so strange . 看起来 全都 太 奇怪 了 . +There is only one store on the island . 在 這個 島上 只有 一家 商店 . +For the other 600 million people , English is either a second language or a foreign language . 對 於 其他 的 六億 人口 而言 , 英語 不是 第二 語言 就是 外語 . +She has a pure heart . 她 有 一颗 纯洁 的 心 . +I thought Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +It is dangerous to drive so fast . 車 開得 這麼 快 很 危險 . +I have a high fever . 我 烧 得 很 厉害 . +He has at least one thousand books . 他 至少 有 一千本 書 . +It is difficult to speak three languages . 說 三種 語言 是 很困 難 的 . +Shakespeare is the name of a writer . 莎士比亞 是 一位 作家 的 名字 . +Tom knows how to play mahjong , I think . 汤姆 知道 怎么 玩 麻将 , 我 觉得 . +He died recently . 他 最近 去世 了 . +I like eating fruit . 我 喜歡 吃水果 . +Tom clapped his hands . 湯姆 拍 了 手 . +He cleared his throat . 他 清了清 喉嚨 . +Will you join us ? 你 會 參加 嗎 ? +There are twelve months in a year . 一年 有 十二 個 月 . +Get a grip on yourself . 冷静下来 ! +That is how I learned English . 我 就是 这么 学会 英语 的 . +They did not speak French very well . 他們 說 法語 說 得 不太好 . +I 'd be crazy to do that . 我 做 那事 会 疯 . +We have an elevator in our new house . 我們 的 新家 有一 臺 電 梯 . +We must never confuse the two . 我们 决不能 混淆 两者 . +What is Tom saying ? 湯姆 在 說 甚麼 ? +Her grandmother lived to be 88 years old . 她 的 祖母 活到 了 88 岁 . +I need evidence . 我 需要 證據 . +All you have to do is to take care of yourself . 你 要 做 的 只是 照顾 好 你 自己 . +I think I am going to cry . 我 想 我 要 哭 了 . +What should be done ? 怎么办 ? +What symptoms do you have ? 你 有 什麼 症狀 ? +What time does your plane leave ? 你 的 飛機 什麼 時候 起飛 ? +I want it to be different this time . 我 想 让 这次 变得 不 一样 . +It is free . 它 是 免費 的 . +If you do your best , you will succeed . 如果 你 盡力 而為 , 你 就 會 成功 . +He visited his uncle yesterday . 昨天 他 拜訪 了 他 的 叔叔 . +Mary said she would do her homework . 瑪麗 說 她 會 做 她 的 功課 . +I do not want something bad to happen to us . 我 可不 想要 坏事 发生 在 我们 身上 . +It is sort of strange . 有 點 奇怪 . +We have arrived . 我們 已經 到 了 . +When does Tom eat breakfast ? 汤姆 什么 时候 吃 早饭 ? +Tom could have called the police . 汤姆 本 可以 报警 的 . +He has not yet turned in the report this month . 他 這個 月 還 沒有 提交 報告 書 . +Nobody knows why he turns down my help . 沒 有人 知道 他 為何 拒絕 我 幫 忙 . +I used to play alone when I was a child . 我 小时候 常常 独自 玩耍 . +I hope to retire from work when I am 60 years old . 我 希望 在 六十 歲時 退休 . +Tom gave Mary a nice present . 湯姆 給 了 瑪麗 一個 不錯 的 禮物 . +Tom is about to fall asleep . 湯姆 要 睡著 了 . +We know so little about you . 我們 對 你 知道 得 不 多 . +I walked up the hill . 我 走上 山 了 . +He was too young to live alone . 他 太 年 輕 了 無法獨自 生活 . +Would you please turn off the TV ? 请 把 电视机 关掉 好 吗 ? +I do not think he is truthful . 我 不 觉得 他 很 诚实 . +I am thirsty . 我 渴 了 . +I had a telephone call from her . 我 有 一通 來 自 她 的 電話 . +She can play the piano very well . 她 可以 把 鋼琴 彈 得 很 好 . +I heard him play the piano once . 我 聽 過 一次 他 彈 鋼琴 . +Do you really want it ? 你 真的 想要 嗎 ? +This is where Tom usually parks his car . 汤姆 通常 把 他 的 车 停 在 这里 . +I would like some more water . 请 再 给 我 一些 水 . +I was not aware that Tom was sleeping . 我 不 知道 湯姆 在 睡覺 . +I often went fishing with him . 我 經常 和 他 去 釣 魚 . +Half of these apples are rotten . 這些 蘋果 的 其中 一半 都 爛 了 . +Mary went on a voyage around the world . 玛丽 去 环游世界 了 . +She furnished the room with beautiful furniture . 她 用 漂亮 的 家具 佈 置 了 房 間 . +He was seen to go upstairs . 有人 看見 他 上樓 . +I can not get at the exact meaning of the sentence . 我 抓 不到 句子 的 确切 含义 . +His brother is always watching TV . 他 的 弟弟 總是 在 看電視 . +How much did you bid ? 你 出价 多少 ? +The explosion that followed killed many people . 很多 人 在 随后 的 爆炸 中 死去 . +Maybe my grandchild will be the first person to set foot on Mars . 可能 我 的 孙子 会 是 登陆 火星 的 第一 人 . +This book is beautifully illustrated . 这 本书 有 精美 的 插图 . +She introduced me to her brother . 她 把 我 介紹 給 她 的 弟弟 認識 . +She has a strong objection to my plan . 她 強烈 反對 我 的 計畫 . +Something is really weird here . 這裡 有些 事 真怪 . +I like jazz . 我 喜歡 爵士 樂 . +I have to go to the toilet . 我 要 去 廁所 . +I used to be a forest ranger . 我 以前 是 護林 人 . +My house is near the station . 我家 离 火车站 很 近 . +He continued working all day . 他 繼續 工作 了 一整天 . +Tom knows exactly how I like my hair done . 汤姆 很 清楚 我 喜欢 什么样 的 发型 . +Tom did not tell me her name . 湯姆 沒有 告訴 我 她 的 名字 . +There is something I want to tell you . 有件 事情 我 要 对 你 说 . +Do not you miss anything ? 难道 你 不 想念 什么 吗 ? +Is the party over ? 聚會 結束 了 嗎 ? +Answer my questions . 回答 我 的 問題 . +Have you heard from him recently ? 你 最近 有 他 的 消息 嗎 ? +They do not need a reason . 他们 不 需要 理由 . +I was the second to last person to hear the bad news . 我 是 倒数 第二个 得知 这个 坏消息 的 . +What do you call this bird in English ? 这 鸟 你们 用 英语 怎么 称呼 ? +I do not think she cares very much . 我 不 认为 她 很 在意 . +Please take a look at this . 请 看看 这里 . +I was surprised by his perseverance . 我 对 他 的 坚持 感到 很 惊讶 . +Have there been any changes ? 有 過 任何 改變 嗎 ? +Tom is taller than you . 汤姆 比 你 高 . +I am responsible for that . 我 对此 负有责任 . +I know that it is highly unlikely that anyone knows me . 我 知道 有人 认识 我 的 可能性 微乎其微 . +If you make a mess , clean it up . 如果 你 弄乱 了 , 你 来 打扫 . +He left his son a large fortune . 他 留給 了 他 的 兒子 一大 筆 財富 . +I want you to stay a little longer . 我 想 让 你 再 呆 一会 . +Everyone admires the pictures painted by him . 每個 人 都 很 欣賞 他 所畫 的 圖畫 . +Do you drink coffee ? 你 喝咖啡 嗎 ? +He got thrown out of the house . 他 被 趕出 了 這棟 房子 . +She is far better today than yesterday . 她 今天 比 昨天 要 好 很多 . +At last , it began to rain . 终于 开始 下雨 了 . +If I won the lottery , I 'd buy a new car . 如果 我中 了 彩票 , 我会 买辆 新车 . +He went to stay with his cousin . 他 去 和 他 的 表弟 待 在 一起 了 . +The man was held in police custody . 這個 男人 被 警察 拘留 了 . +Who said that to you ? 是 谁 给 你 说 那个 的 呢 ? +If you are wrong , then I am wrong , too . 如果 你 錯 了 , 那麼 我 也 錯 了 . +I will send my mother a letter . 我会 给 我 的 母亲 寄 封信 . +My grandfather is a carpenter . 我 爺 爺 是 個 木匠 . +Stop meddling . 别 再 插手 . +They water the fruit trees . 他们 给 果树 浇水 . +There is no need to speak so loud . 沒有 必要 說 話 這麼 大聲 . +Computers save us a lot of time and trouble . 电脑 为 我们 节省 了 很多 时间 , 解决 了 很多 问题 . +Turn off the light . 關燈 . +It has nothing to do with you . 跟 你 沒 有 關 係 . +I am hoping that that will happen . 我 希望 那 會 發生 . +Her success made her the target of jealousy . 她 的 成功 让 她 成为 嫉妒心 的 靶子 . +Do you have a larger size ? 你 有 比 較大 的 尺寸 嗎 ? +How many pieces of baggage do you have ? 请问 您 有 多少 件 行李 ? +Mt . Fuji is Japan is tallest mountain . 富士山 是 日本 最高 的 山 . +It is a nice day , is not it ? 美丽 的 一天 , 不是 吗 ? +Tom comes here every now and then . 汤姆 常 来 这里 . +She was frequently late for school . 她 經常 上學 遲到 . +Why do you want to study abroad ? 为什么 你 想到 外国 读书 ? +I did not enjoy it very much . 我 不是 很 喜歡 它 . +What is the weather like there ? 那儿 是 什么 天气 ? +We just have to make sure Tom is planning to be here . 我們 只是 需要 確認 Tom 有 要 來 這 . +That was not the main reason that Tom needed to do that . 这 不是 汤姆 要 做 那件事 的 主要 原因 . +I am breast @-@ feeding my baby . 我 餵 我 的 孩子 母乳 . +Take a deep breath and then relax . 深呼吸 , 然 後 放 鬆 . +I have put all of my energy into this plan . 我 在 这项 计划 上 投入 了 所有 精力 . +I miss you very much . 我 非常 想 你 . +I am looking for my contact lens . 我 在 找 我 的 隱形 眼鏡 . +This rose is beautiful . 這 玫瑰花 很 美麗 . +Freedom is the center of American democracy . 美國 民主 的 中心思想 是 自由 . +Do not forget to put out the fire . 不要 忘 了 熄火 . +For quantities of 20 or more , we can allow you a special discount of 10 % on the prices quoted . 20 个 以上 九折 特惠 . +How strange ! 真 奇怪 . +How often have you been to Europe ? 你 曾 多常 去過 歐洲 ? +I have mislaid my baggage . 我 的 行李 丢 了 . +Do you feel any pain in your stomach ? 你 的 胃會 痛 嗎 ? +Do you know whose handwriting this is ? 你 知道 这 是 谁 的 字 吗 ? +Stockholm is the capital of Sweden . 斯德哥爾摩 是 瑞典 的 首都 . +That place is food is delicious and their prices are low . However , their location is not good . 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 位置 . +There was no money for rebuilding . 沒有 重建 的 錢 . +What can Tom do ? 汤姆 能 做 什么 ? +He had no qualms in doing so . 他 这么 做 , 没有 任何 不安 . +You know quite a lot about Sumo . 你 對 相撲 知道 得 很多 . +She visited the old man in the hospital every day but Sunday . 她 每天 都 去 探視 在 醫院 裡 的 老人 , 除了 星期天 . +I do not really want to live in Australia . 我 不怎么 想住 在 澳大利亚 . +" Where have you been ? " " I have been to the barber is . " 你 去 哪儿 了 ? 我 去 了 理发店 . +This is exactly what I need . 这 正是 我 需要 的 东西 . +You should always do your best . 你 應 該 永遠 盡力 而為 . +The train got in on time . 火车 准时 到 了 . +I tried to call Tom back . 我 試著 叫 湯姆 回來 . +They are already here . 他們 已經 在 這裡 了 . +Let is wait for a while and see how you do . 讓 我們 等 一會兒 看看 你 怎麼 做 . +I work every day but Sunday . 除了 星期天 我 每 一天 都 工作 . +They got out of the car . 他們 下 了 車 . +I will show you how to catch fish . 我会 向 你 展示 怎样 捕鱼 . +We are next @-@ door neighbors . 我们 是 隔 着 墙 的 邻居 . +My father often goes to the United States on business . 我 爸爸 经常 去 美国 出差 . +I feel sad every now and then . 我 常常 覺得 悲傷 . +I am sure Tom will not have any trouble finding us . 我 确定 汤姆 找到 我们 没有 任何 问题 . +I agree with that opinion . 我 同意 那個 意見 . +Has the bell rung ? 钟响 过 了 吗 ? +She did not have any pencils . 她 一支 铅笔 也 没有 . +I disagree with you . 我 不 同意 你 的 看法 . +I would like fruit juice . 我 想要 果汁 . +Make it quick . 快点 . +We have time to spare . 我們 有 多餘 的 時間 . +There is a park near my house . 我家 附近 有 一個 公園 . +I used to play tennis in high school . 我 高中 时 曾 打网球 +Cross out the incorrect words . 划掉 错误 的 单词 . +This table is made of wood . 这 张 桌子 是 木制 的 . +She lived at 56 Russell Square . 她 住 在 罗素 广场 56 号 . +I have an egg . 我 有 一只 蛋 . +Give me the number . 把 那个 号码 给 我 . +People have been buying me drinks all night . 人們 整晚 都 在 給 我 買 飲料 . +Tom finished college last year . 湯姆 去年 上完 了 大學 . +I like your car . 我 喜欢 您 的 车 . +It is for you to decide . 這 由 你 來 決定 . +I did nothing out of the ordinary . 我 沒 做 不 尋常 的 事 . +I invited him to the party and he accepted . 我 邀请 他 去 派对 , 他 接受 了 . +I want to learn French . 我 要 学法语 . +To be very honest with you , I do not think I can do that . 和 你 说句实话 , 我 觉得 我 做 不到 . +I am not used to drinking coffee without sugar . 我 不 习惯 喝 无 糖 咖啡 . +I will see to it . 由 我 来 做 . +Follow me into the room . 跟 我 进 房间 . +Please do not say that . 请 不要 这样 说 . +The capital of Poland is Warsaw . 波蘭 的 首都 是 華沙 . +Time waits for no one . 时间 不 等 人 . +She does not like people who are not punctual . 她 不 喜欢 不 守时 的 人 . +I could not remember ever having met her . 我 不 记得 曾经 见 过 她 . +He was not aware of the danger . 他 沒 有意 識到 自己 有 危險 . +I am sure they can hear us . 我 確定 他們 能 聽見 我們 的 聲音 . +I understand your feelings . 我 明白 你 的 感受 . +You were not here then . 你 那時 不 在 這裡 . +He paid 1,000 yen for this book . 他 花 了 1000 日元 買 這 本書 . +Do you often travel abroad ? 你 经常 去 国外 旅行 吗 ? +It is very kind of you to help me . 你 幫 我 真好 . +A mouse is a timid creature . 老鼠 是 胆小 的 生物 . +I was not busy yesterday . 我 昨天 不忙 . +What did you do last Christmas ? 去年 圣诞节 做 了 什么 了 ? +I have already told you the truth . 我 已經 告訴 你 真相 了 . +There will be snow tomorrow . 明天 會 下雪 喔 ! +There are a lot of books in the library . 圖書館 裡 有 很多 書 . +She is in the restroom . 她 在 上 廁所 . +What do the initials NTT stand for ? NTT 這個 縮寫 是 什麼 意思 ? +Mom , I am hungry . 妈妈 , 我 肚子饿 了 . +The storm caused a lot of damage . 暴風雨 造成 了 很大 的 損害 . +It is my money . 那 是 我 的 钱 . +She loves children . 她 愛 孩子 . +Tom is shy . 汤姆 害羞 . +How can you say that ? 你 怎麼 能 那麼 說 ? +I wish you good luck . 我 祝您 好运 . +Two teas and a coffee , please . 请来 两杯 茶 和 一杯 咖啡 . +I agree with him on that point . 我 在 那 一個 觀點 上 同意 他 . +There is no way to win . 沒有 辦法 贏 . +It is your book . 它 是 你 的 書 . +I had my watch stolen yesterday . 我 的 手 錶 昨天 被 偷 了 . +This question is very simple . 这个 问题 很 简单 . +I thought I was dreaming . 我 还 以为 我 在 做梦 呢 . +Health is above wealth . 健康 比 财富 重要 . +Why are they angry ? 他们 为什么 在 生气 ? +Her father died when she was three . 她 父亲 在 她 三岁时 死 了 . +She has attractive eyes . 她 有 一双 迷人 的 眼睛 . +It seems very interesting . 它 似乎 很 有趣 . +I wake him at six every morning . 我 每天 早上 6 点 叫醒 他 . +Who did you talk to ? 你 和 谁 说话 呢 ? +I thank you from the bottom of my heart . 我 打 心底 里 感激 你 . +We are almost like brothers . 我們 幾乎 像 兄弟 一樣 . +Blenders are nice for people who really like smoothies . 攪拌機 對 真的 喜歡 冰沙 的 人 來說 很 不錯 . +Pace yourself . 量力而行 . +Can you freeze it ? 你 能 冷冻 它 吗 ? +How much will it cost ? 这 要 多少 钱 ? +I was caught in a shower and got drenched to the skin . 我 遇上 了 陣雨 被 淋得 全身 濕透 . +I appreciate your help in clarifying this . 我 感谢 你 帮助 澄清 . +The police will put you behind bars for twenty years . 警方 會 把 你 關 在 牢 裡 二十年 . +Why did you do that ? 你 為 什麼 要 那樣 做 呢 ? +I remember seeing you last year . 我 記得 去年 看 過 你 . +He is leaving Chicago tomorrow . 他 明天 將 離開 芝加哥 . +She knows a lot about the latest fashions . 她 很 了解 最新 的 時尚 趨勢 . +There is not anyone in the room . 房間 裡 沒有 任何人 . +He and his sisters are currently living in Tokyo . 他 和 他 的 姐妹 们 目前 都 住 在 东京 . +I chose the wrong one . 我 選 了 錯 的 那個 . +Get Tom . 找到 汤姆 . +There was a heavy rain last night . 昨晚 下 大雨 . +I need you here . 我 需要 你 在 這裡 . +The pond is 3 meters deep . 这个 池塘 有 三米 深 . +I will be busy tomorrow . 我 明天 会 很忙 . +I suppose he will be back soon . 我 想 他 会 很快 回来 的 . +He invented an excuse for being late . 他 为 他 的 迟到 制造 了 一个 借口 . +The weather forecast says it will be fine tomorrow . 根據 氣象 預報 , 明天 會 是 晴天 . +Tom should be worried . Tom 應該 要 擔心 . +Why do you let Tom treat you that way ? 你 為 甚麼 讓 湯姆 那麼 對待 你 ? +Congratulations ! 祝贺 你 . +I had to change clothes because what I was wearing was not appropriate for the situation . 我 必须 要 换衣服 , 因为 我 现在 穿 的 衣服 不 适合 这个 环境 . +Tom does not need to wear glasses anymore . 汤姆 不 需要 再 戴眼镜 了 . +New stamps will be issued next month . 新 郵票 將 於 下 個 月 發行 . +This is not important . 這個 不 重要 . +What is for dinner tonight ? 今天 晚饭 吃 什么 . +Tomorrow I am going to Paris . 明天 我 去 巴黎 . +He is a famous baseball player . 他 是 一位 著名 的 棒球 選手 . +I need advice . 我 需要 些 建议 . +I will drive you to the airport . 我会 开车 送 你 去 机场 . +I deleted the app . 我 删除 了 这个 应用 . +There is not a drop of water left . 沒有 剩下 一滴水 . +You have to have confidence . 你 必须 得 自信 . +I will give you a ride . 我会 让 你 搭 个 便 车 . +I have too many things on my mind these days . 这 几天 我 脑袋 里 的 事情 太 多 了 . +He does not believe me at all . 他 根本 不 相信 我 . +How old is this zoo ? 這間 動物園 多久 了 ? +Please do not tell this to your parents . 请 不要 告诉 你 父母 . +She went to the Takasu clinic . 她 去 了 高須 診所 . +If the lion is the king of beasts , the eagle is the king of birds . 狮子 是 兽类 之 王 的话 , 鹰 就是 鸟类 之 王 . +How many books does he have ? 他 有 多少 册 图书 ? +I wish I had a better memory . 但 願 我 有 好 一點 的 記憶力 . +How was the interview ? 面試 怎麼樣 ? +When he retired , his son took over the business . 他 退休 的 时候 , 他 儿子 接手 了 他 的 生意 . +Lots of famous people come here . 許 多名 人 來 這裡 . +Tom is worried for his safety . 湯姆 擔心 他 的 安全 . +I wish I could go to Japan . 要是 能 去 日本 就 好 了 . +I 'd like a glass of water . 我 想要 一杯 水 . +Mary likes milk very much . 瑪麗 很 喜歡 牛奶 . +I ate breakfast in my pajamas . 我 穿著 睡衣 吃 早 飯 . +I want to make a pie . 我 想 做 个 派 . +How did you reply ? 你 回答 了 什么 ? +Would you like a cup of coffee ? 来 杯 咖啡 吗 ? +She became a true friend of mine . 她 成為 我 的 一位 真正 的 朋友 . +This is not true love . 這 不是 真實 的 愛情 . +How long do you plan on staying here ? 你 打算 在 这儿 待 多久 ? +I have to take medicine . 我 必须 吃药 . +We have breakfast in the kitchen . 我們 在 廚房 裡 吃 早餐 . +Speaking English is a lot of fun . 說 英語 很 有趣 . +His influence extends all over the country . 他 的 影響 遍及 全國 . +Sumo is a traditional Japanese sport . 相扑 是 日本 传统 的 体育 活动 . +Your bicycle is similar to mine . 你 的 腳踏車 和 我 的 很 相似 . +Is Tom helping Mary ? 汤姆 在 帮 玛丽 吗 ? +My grandfather lived to be ninety . 我 的 祖父 活到 了 九十 歲 . +I recognize that what he says is the truth . 我 承认 他 说 的 是 事实 . +I think it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +You said you had important news . 你 說 你 有 重要 新聞 . +I have lost my pen . 我 弄 丟了 我 的 筆 . +His wife is one of my friends . 他 的 妻子 是 我 的 一個 朋友 . +What is the name of that river ? 這條 河 的 名字 是 什麼 ? +This is my mother . 这 是 我 的 妈妈 . +Do not disturb me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +They are having a party tomorrow . 明天 他們 將 舉行 派 對 . +Only peace can save the world . 只有 和平 能够 拯救 世界 . +My parents will not let me date . 我 父母 不让 我 和 男生 约会 . +She pretended not to hear him yesterday . 昨天 她 裝作 沒有 聽見 他 . +Do you like to drink wine ? 你 喜歡 喝 紅 酒 嗎 ? +You worry too much about your weight . 你 太 担心 您 的 体重 了 . +She put on her hat . 她 戴 上 了 她 的 帽子 . +Politicians never tell us their inner thoughts . 政治家 从来不 告诉 我们 他们 的 别有用心 . +It turned out that the rumor was false . 谣言 [ 最后 ] 证明 是 假 的 . +He is not as tall as you are . 他 沒 你 高 . +He told me to do it , so I did it . 他 让 我 做 , 我 就 做 了 . +Did something happen ? 發生 了 什麼 事 嗎 ? +I am going to the restroom . 我 去 下 洗手间 . +I remember seeing him . 我 记得 见 过 他 . +Tom told me that I should do that . 湯姆 告訴 我 我 應 該 去 做 . +I will get you something nice . 我会 给 点 你好 东西 . +Tom filled out the application form . 湯姆 填寫 了 申請 表 . +I made some mistakes on the test . 我 在 考试 时 犯 了 些 错 . +Everyone knows the law . 大家 都 知道 這個 法律 . +I have been looking for a new job for a long time . 我 已经 找 了 很久 的 工作 . +Their house is being remodeled . 他們 的 房子 正在 裝潢 . +He asked me questions similar to those asked by many others . 他 和 许多 其他人 一样 问 了 我 同样 的 问题 . +I will call you . 我会 打电话 给 你 . +What is your favorite item of clothing ? 你 最 喜欢 哪类 的 衣服 ? +I am an atheist . 我 是 无神论者 . +His face turned pale . 他 的 脸 失去 了 所有 颜色 . +She takes piano lessons once a week . 她 每周 上 一次 钢琴课 . +You should not waste your time . 你 不该 浪费 你 的 时间 . +She went to the museum by taxi . 她 搭計 程車 去 博物 館 了 . +He is not good at remembering names . 他 不 善于 记人 名 . +Every cloud has a silver lining . 每 朵 雲 都 披著 銀衣 . +Is this edible ? 这个 能 吃 吗 ? +They sell sporting goods . 他们 卖 体育 产品 . +Even with all his money , he is unhappy . 儘 管 他 有 那 麼 多 錢 , 他 並 不快 樂 . +I know where she is . 我 知道 她 在 哪里 . +I do not know what to say to make you feel better . 我 不 知道 该 说 什么 来 安慰 你 . +What you see is what you get . 你 看到 什麼 拿 什麼 . +I felt that the plan was unwise . 我 覺得 這 計畫 不是 很 聰明 . +They are children . 她们 是 孩子 . +I walk my dog in the park every morning . 我 每天 早上 到 公园 里 遛狗 . +She can sing better than anybody else in her class . 她 唱 歌唱 得比 班上 任何 一個 人 好 . +Tom is crying outside right now . 湯姆 現在 正在 外面 哭 . +Everything is going horribly wrong for Tom . 對 湯姆 來說 一切 都 開始 錯 得 離 譜 . +Do not lean against the wall . 别 倚 着 墙 . +Stop talking . 不要 说话 了 . +He has three times as many books as I have . 他 有 我 的 三倍 的 书 . +The clouds are getting darker . 雲 越來越 黑 . +Who are you voting for ? 你 投 给 谁 ? +Is this your first visit to Japan ? 這 是 你 第一次 到 日本 嗎 ? +He gave me whatever help I needed . 他 給 了 我 任何 我 需要 的 幫助 . +This is the cutest puppy I have ever seen . 這 是 我 見 過 最 可愛 的 小狗 . +Now is the time for action . 现在 是 行动 的 时候 了 . +Where do you play tennis ? 你 在 哪裡 打 網球 ? +Tom can swim faster than anyone else I know . 汤姆 是 我 认识 的 人 当中 游泳 最快 的 . +I think we have found what we were looking for . 我 認為 我們 找到 我們 正在 找 的 東西 了 . +Let me take your blood pressure . 讓 我 量量 你 的 血壓 . +You should follow your teacher is advice . 您 應 遵循 你老 師 的 建議 . +He seldom writes to his father . 他 很少 写信给 他 父亲 . +People are counting on us . 人们 正在 依赖 着 我们 . +Are you busy tomorrow afternoon ? 明天 下午 你 忙 嗎 ? +Tom does not have a lot of money . 汤姆 没有 很多 钱 . +Fools rush in where angels fear to tread . 初生 之 犢 不畏 虎 . +I looked around , but saw nobody . 我 環顧 四周 , 卻 沒 看見 任何人 . +They gave us very little trouble . 他們 幾乎 不 給 我們 添 麻煩 . +He has been very busy this week . 他 這個 星期 一直 很 忙碌 . +Is ten thousand yen enough ? 一萬 日元 夠 嗎 ? +You 'd better send for a doctor . 你 最好 派 人 去 請 醫生 來 . +Were you serious ? 你 是 认真 的 吗 ? +It is amazing . 太 神奇 了 . +My watch is five minutes slow . 我 的 錶 慢 了 五分 鐘 . +He went to Paris to study French . 他 到 巴黎 學習法 語 . +I can not afford a car . 我 買 不起 車子 . +Being sick is very boring . 生病 很 無聊 . +Tom can not go home until after 2 : 30 . 汤姆 在 2 : 30 之后 才能 回家 . +His doctor advised him to quit smoking . 他 的 医生 建议 他 戒烟 . +That scandal cost him his reputation . 丑闻 让 他 付出 了 失去 声誉 的 代价 . +He has a brother and two sisters . 他 有 一个 兄弟 和 两个 姐妹 . +It began to snow . 開始 下雪 了 . +The dog is blind in one eye . 那 狗 一只 眼 是 瞎 的 . +The taxi picked up two passengers . 這輛 計程 車 載 了 兩名 乘客 . +You may use my new car . 你 可以 使用 我 的 新車 . +I do not blame you . 我 不 怪 你 . +We have got to go . 我们 必须 走 了 . +Tom and Mary were both born in Boston . 湯姆 和 瑪麗 都 生 在 波士 頓 . +I am sure they will win . 我 確定 他們 會 贏 . +I visited my friend Tom yesterday . 我 昨天 拜訪 了 我 的 朋友 湯姆 . +He gave me 10,000 yen . 他 给 了 我 1 万日元 . +I could answer all the questions . 我 可以 回答 所有 问题 . +You do not like love stories , do you ? 你 不 喜歡 愛情 故事 , 是 嗎 ? +She is Tom is older sister . 她 是 Tom 的 姐姐 . +They flunked their exams . 他們 考試 不及格 . +He sipped the hot coffee slowly . 他 慢慢 地 啜飲 熱 咖啡 . +Do you like rap ? 你 喜欢 说唱 音乐 吗 ? +Are you here on business ? 你 来 这里 出差 的 ? +They go to church every Sunday . 他們 每個 星期天 上 教堂 . +The court declared him innocent on the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +A light bulb gives light . 灯泡 发光 . +He saw a dog near the door . 他 在 門 附近 看到 了一 隻 狗 . +You owe me something . 你 欠 我 點 東西 . +I run every day . 我 每天 跑步 . +Hollywood is not what it used to be . 好 萊塢 不是 以前 的 樣子 了 . +Pizza is my favorite food . 比薩 是 我 最 喜歡 的 食物 . +They stepped a few paces forward . 他們 前進 了 幾步 . +You have not changed at all . 你 真的 一点 没变 . +Tom knew he should help Mary . 湯姆 知道 他 該 幫 瑪麗 . +I have no doubt about it . 我 没有 疑问 . +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 赤脚 漫步 . +He was disappointed that things did not turn out as he 'd hoped . 事情 没能 如他 所 愿 让 他 感到 失望 . +Please hurry . 请 抓紧时间 . +Do not rely too much on others . 别 老 依赖 别人 . +There are no hats in that store that fit me . 那個 店 裡 沒 有合 我 尺寸 的 帽子 . +When can we eat ? 我們 什麼 時候 可以 吃 ? +I was surprised to see a lion . 我 很 驚訝 竟然 看到 了 獅子 . +This sentence is ambiguous . 此句有 歧義 +Lake Towada is famous for its beauty . 十 和田 湖 以 它 的 美麗 聞名 . +Tom is probably still studying French . 汤姆 可能 还 在 学法语 . +I have something interesting to tell you that you might find surprising . 我 有点 有趣 的 事 要 告诉 你 , 你 可能 会 吃惊 . +We grow a variety of crops . 我們 種植 各種 的 作物 . +Does this bus go to the beach ? 這輛 公車 去 海灘 嗎 ? +The taxi has arrived . 出租车 到 了 . +If you sing , we will sing with you . 如果 你 唱 , 我們 就 跟著 唱 . +Mary helped her mother with the cooking . 瑪麗幫 她 母親 做飯 . +Just say no . 只要 說不 . +This carpet is superior to that one in quality . 这 地毯 在 质量 上比 那个 好得多 . +Would you like a little more salad ? 请问 您 要 多 来 点儿 沙拉 吗 ? +What are you after ? 你 想要 什么 ? +That patient may die at any time . 病人 随时 会 死 . +The birds flew to the south . 群鸟 南翔 . +His advice is always very sensible . 他 的 忠告 总是 很 明智 . +Grandpa bought it for me ! 爷爷 买 给 我 的 ! +We have not thought about it . 我们 还 没 考虑 . +I feel like another beer . 我 想 再 来 一杯 啤酒 . +Do you have a lot of pens ? 你 有 很多 笔 吗 ? +It was a calm winter evening . 这 是 个 静谧 的 冬夜 . +Tom is laughing . 汤姆 在 笑 . +It is easy to swim . 游泳 很 簡單 . +We enjoyed watching the baseball game . 我們 喜歡 看 棒球 比賽 . +The policeman took the thief by the arm . 警察 抓著 小偷 的 胳膊 . +Half a million children still face malnutrition in Niger . 尼日尔 仍然 有 50 万 孩子 面临 着 营养不良 . +You can not do anything about that . 你 什么 也 做不了 . +He looks kind of pale . 他 有点 苍白 . +Take the first street to the right . 第一 條街 右 轉 . +The old man gave the child shelter . 這位 老人 收容 了 這個 孩子 . +Tom was too afraid to do anything . Tom 太 胆小 了 以至于 做不了 任何 事 +The coffee is cold . 咖啡 是 冷 的 . +The prosecutor asked me a leading question . 检察官 问 了 我 一个 引导性 的 问题 . +Tom is wearing the same clothes he wore yesterday . 汤姆 穿着 跟 昨天 穿 的 衣服 . +I like running . 我 喜欢 跑步 . +These shoes are too big for me . 这 双鞋 对 我 来说 太 大 了 . +Do I have to go to the party ? 我 需要 去 派 對 嗎 ? +Wait ! 等等 ! +You know I have no choice , do not you ? 你 知道 我 沒法 選擇 , 不是 麼 ? +I think you are sitting in my seat . 我 想 你 坐到 我 的 座位 了 . +Let is get divorced . 我们 离婚 吧 . +Tom is a very generous man . 湯姆 是 個 大方 的 人 . +Please answer my question . 請 回答 我 的 問題 . +I met a friend of Mary is . 我 遇到 了 瑪麗 的 一位 朋友 . +Is this ladder strong enough to bear my weight ? 这个 梯子 是否 足够 坚固 以 承受 我 的 重量 ? +Who is the author of this story ? 这本 小说 的 作者 是 谁 ? +I am the one you want . 我 就是 你 要 找 的 人 . +Tom is still in Boston . 汤姆 还 在 波士顿 . +An opportunity like this only comes along once in a lifetime . 一辈子 只 会 出现 一次 像 这样 的 机会 . +I , too , have been to Boston many times . 我 也 去过 波士顿 很 多次 . +We saw the children enter the room . 我們 看到 了 孩子 們 進入 這個 房間 . +Do not judge a man by his clothes . 不要 以 穿著 來 判斷 一個 人 . +I have discovered something interesting . 我 發現 了 一些 有趣 的 東西 . +She is very pretty . 她 很 可爱 . +Will he come tomorrow ? 他 明天 会 来 吗 ? +My body aches all over . 我 全身 酸痛 . +Could you say that one more time ? 你 能 再 說 一次 嗎 ? +You have to follow the rules . 你 必须 遵守规则 . +This vending machine is not working . 這 台 自動 販賣 機 故障 了 . +He has just left home . 他 刚 离开 家 . +She is good at getting around rules . 她 擅 於 逃避 規則 . +I had to get my tattoo removed . 我 必須 把 文身 去掉 . +You are not at all wrong . 你 并 不 完全 错误 . +Do not touch my camera . 不要 碰 我 的 相機 . +Tom looked at the photograph . 汤姆 看 了 看 照片 . +Tom is our starting quarterback . 汤姆 是 我们 的 首发 四分 卫 . +We are in a hurry . 我們 很急 . +He said that he wanted some money . 他 說 他 要 一些 錢 . +She lost her way and on top of that it began to rain . 她 迷路 了 , 紧接着 天 开始 下雨 了 . +He pretended to be my friend . 他 假装 是 我 的 朋友 . +Have you ever had any serious illness ? 你 曾经 得 过 重病 吗 ? +She talked as she walked . 她 邊 走 邊 談 . +Look around . 四处 看看 . +I will show you some pictures . 我 會 給 你們 看 些 照片 . +My father made me wash the car . 我 父親 要 我 洗車 . +English is spoken in many countries . 許多 國家 的 人 說 英語 . +Why is the sky blue ? 为什么 天 是 蓝 的 ? +Was Tom asleep ? 汤姆 睡着 了 吗 ? +I do not know when he came back from France . 我 不 知道 他 是 什么 时候 从 法国 回来 的 . +I know what I am doing . 我 知道 我 在 做 什么 . +The monkey climbed up a tree . 猴子 爬上 了 树 . +Put some more wood on the fire . 再 往 火 裡 添 些 木柴 . +I wish you were close to me . 我 希望 你 在 我 身边 . +Tom is very angry now . 汤姆 现在 很 生气 . +Tom is on good terms with John . 汤姆 和 约翰 关系 很 好 . +Help yourself to more potato chips . 隨意 多 吃 點 洋芋片 吧 . +The situation is worse than I thought . 情況 比 我 想 的 還壞 . +He is a good guy . 他 是 個 好人 . +They appointed him as a director . 他们 任命 他 为 经理 . +The earth is similar to an orange in shape . 地球 的 外形 和 橙子 相似 . +Tom drank some juice . Tom 喝 了 些 果汁 . +Tom has decided to become a monk . 汤姆 ( Tom ) 决定 出家 为 僧 . +I met the prince himself . 我 见到 了 王子真 人 . +I will show you the picture . 我会 给 你 看 图片 . +They made me really angry . 他们 让 我 很 生气 . +She is eager to live in Australia . 她 渴望 住 在 澳洲 . +I think it was wrong . 我 认为 它 错 了 . +When I was young , I used to climb trees a lot . 我 年 輕 時 經常 爬 樹 . +She turned down every proposal . 她 拒绝 了 每一项 提议 . +What should I do ? 我 该 做 什么 ? +My father told me where to go . 我 爸爸 告诉 我 去 哪儿 . +Tom might be here by 2 : 30 , but then , maybe not . tom 两点 半 可能 会 到 , 不过 , 也 可能 不会 +I have ten pens more than you do . 我 比 你 多 10 支 钢笔 . +The days are getting longer and longer . 白天 变得 越来越 长 . +I can not bear the pain . 我 無法 忍受 這個 痛苦 . +If you want a pencil , I will lend you one . 如果 你 需要 铅笔 , 我 借 你 一支 . +Please give me some advice on what I should do . 请 给 我 提提 建议 , 我 该 做 什么 . +There was a big gold star on the door . 在 門上 有 一個 大大的 金色 星星 . +It is on the house . 这 是 免费 的 . +He just arrived . 他 刚 到 . +He always wanted to study Japanese . 他 一直 想學日語 . +My train left at 7 and arrived in New York at 10 . 我 乘 的 火车 7 点 出发 , 10 点 到 了 纽约 . +I bought this camera yesterday . 我 昨天 買 了 這 台 相機 . +That was three days ago . 这 是 三天 之前 了 . +I asked each boy three questions . 我 問 了 每個 男孩 三個 問題 . +I think Tom is good . 我 觉得 Tom 人 很 好 . +I do not like winter . 我 不 喜欢 冬天 . +What he said would happen has happened . 他 說 會 發生 的 事情 已經 發生 了 . +Tell me when to begin . 告诉 我 什么 时候 开始 . +She was in America last month . 她 上 個 月 在 美國 . +Your answer is wrong . 你 的 回答 是 错 的 . +I wish we had won the game . 但 願 我們 贏 了 這場 比賽 就 好 了 . +That was really boring . 那 真是 無聊 . +I do not know if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +Who wrote these poems ? 这 是 谁 写 的 诗 ? +He works with me at the office . 他 跟 我 在 這間 辦 公室 一起 工作 . +How do you spell your name ? 你 怎麼 拼 你 的 名字 的 ? +I am translating a book . 我 在 翻譯 一本 書 . +I confessed to stealing the money . 我 承認 偷 了 錢 . +What is the price of this cap ? 这 顶 帽子 多少 钱 ? +America was discovered by Columbus in 1492 . 美國 在 1492 年 被 哥倫布 發現 . +Would you mind opening the window ? 你 介意 打開 窗戶 嗎 ? +I love parties . 我 愛 派 對 . +He promised me he would be here at six . 他 答應 我 六點鐘 的 時候 他 會 在 這裡 . +The patient is steadily recovering . 這個 病人 正在 穩定 地 康 復 中 . +How can I get in touch with you ? 我 怎么 联系 你 ? +She has been absent since last Wednesday . 从 上周三 起 , 她 一直 缺席 . +She sells flowers . 她 卖花 . +Are you speaking to me ? 你 在 跟 我 说话 吗 ? +I have to stay home . 我 得 留在 家 . +She does not like the way I speak . 她 不 喜欢 我 说话 的 方式 . +His hobby is painting pictures of flowers . 他 的 爱好 是 画 有 花 的 图 . +He is afraid of snakes . 他 怕 蛇 . +She sent this book to me . 她 寄 這 本書 給 我 . +I still do not understand what is going on . 我 還 是 不 明白 出 了 什麼 事 . +These people hate all foreigners . 这些 人 讨厌 所有 的 外国人 . +She had an appointment with the doctor . 她 跟 醫生 預約 看診 了 . +Can this be eaten ? 这个 能 吃 吗 ? +What a good idea ! 多 好 的 主意 啊 ! +Could you send me a brochure ? 你 能 寄 宣傳冊 給 我 嗎 ? +Christmas is soon , is not it ? 聖誕節 很快 就 到 了 , 不是 嗎 ? +She saddled him with the work . 她 強迫 他 做 這個 工作 . +I would like to go to the movies . 我 想 去 看 電影 . +Is there a hotel around here ? 附近 有 酒店 吗 ? +Tom says he is not feeling any better . Tom 说 他 感觉 不 舒服 . +I do not worry about the risk . 我 不 担心 风险 . +Where is Tom is classroom ? 湯姆 的 教室 在 哪裡 ? +It is dangerous to swim in this river . 在 這條 河裡 游泳 很 危險 . +I am too drunk to do that . 我 喝醉 了 , 做 不到 . +Let is go to the picnic . 讓 我們 去 野餐 . +Tom smiled at Mary , and she smiled back . 汤姆 对 玛丽 笑了笑 , 她 也 笑 着 回应 了 . +Where is your dog ? 你 的 狗 在 哪里 ? +She hated him . 她 恨 他 . +I am currently a teacher at this school . 我 现在 在 这 所 学校 任教 . +I had her sweep my room . 我 讓 她 打掃 了 我 的 房間 . +My father likes pizza very much . 我 父親 非常 喜歡 披 薩 . +Tell Tom I will be there in a minute . 告诉 Tom 我 将 在 一分钟 内 到达 这里 . +How many times have you seen this ? 你 看 这 看 了 多少 次 ? +Old dogs can learn new tricks . 老 的 犬 可以 学 新 的 诡计 . +Edison invented the electric lamp . 愛迪生 發明 了 電燈 . +The dog is dead . 这条 狗 死 了 . +I won ! 我 赢 了 . +I heard her singing . 我 听见 她 唱歌 了 . +Did you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +I know that I know it , but I can not remember it . 我 知道 我 知道 它 , 但 我 想不起 來 了 . +Algebra is my favorite subject . 代數 是 我 最 喜歡 的 科目 . +Are you a college student ? 你 是 大学生 吗 ? +Tom clenched his fists . 汤姆 握紧 了 他 的 拳头 . +Why are you so smart ? 为什么 你 的 脑袋 那么 聪明 呢 ? +I have already considered that possibility . 我 已经 考虑 过 那种 可能性 了 . +Please add my name to the list . 請 把 我 的 名字 加在 名單 上 . +I 'd like another beer . 我 想 再 来 一杯 啤酒 . +I am the one who has to do this . 我 是 必須 去 做 這事 的 人 . +Should not you be studying ? 你 不 应该 在 学习 吗 ? +I have a lot of regrets . 我 觉得 太 遗憾 了 . +Everything is normal . 一切正常 . +Doctors refused to perform a second operation . 医生 们 拒绝 做 第二次 手术 . +Let is see what is in the box . 看看 我 會 在 盒子 裡 找到 什麼 ? +He made me his own assistant . 他 让 我 做 他 的 助理 . +I tried to change her mind , but I could not . 我 試著 改變 她 的 心意 , 但 我 沒有 辦法 . +Where is the problem ? 哪裡 有 問題 ? +I would like to buy half a cake . 我 想 买 半个 蛋糕 . +Hi . 你好 . +I work for a shipping company . 我 為 一家 船運 公司 工作 . +I wish I had a car . 但 願 我 有 一輛 車 . +Why do you resent me ? 你 为什么 恨 我 ? +Raspberries are very expensive . 覆盆子 很貴 . +You seem to ask Tom a lot of questions . 你 看來 問 了 湯姆 很多 問題 . +Today , I am feeling a lot better . 我 今天 感觉 好多 了 . +I still have a question . 我 還 有 个 問題 . +I need you . 我 需要 你 . +What is your favorite radio station ? 你 最 喜歡 的 電台 是 什麼 ? +Would you mind if I used your car ? 如果 用 了 你 的 車 , 你 會 介意 嗎 ? +Be friendly . 友好 点 . +That is exactly what I have been telling Tom . 那 就是 我 告诉 汤姆 的 . +Turn back , please . 请 回来 . +I can not bend my right arm . 我 無法 彎曲 我 的 右 手臂 . +This has nothing to do with you . 跟 你 没 半 毛钱 关系 . +She is my older sister . 她 是 我 的 姐姐 . +There is a church near my house . 我家 附近 有 一座 教堂 . +He is afraid of snakes . 他 害怕 蛇 . +Is there anybody who can drive a car ? 有人 会 开车 吗 ? +He was almost hit by a car . 他 差點 被 一輛 汽車 撞上 了 . +Please turn off the lights . 請 關燈 . +Do you like this book ? 你 喜欢 这 本书 吗 ? +I am fairly confident I can do that . 我 相当 有 自信 我 能 做到 这 一点 . +Who are you waiting for ? 你 在 等 誰 ? +I think I know who did it . 我 認為 我 知道 是 誰 做 的 . +Tom has already hired a new lawyer . 湯姆 已經 雇 了 新律 師 . +I feel very sorry for your sister . 我 對 你 姐姐 感到 非常 遺憾 . +I want you out of my room . 我 想 讓 你 離開 我 的 房間 . +Tom did not tell me he did not know how to swim . 汤姆 没有 告诉 我 他 不会 游泳 . +I am so happy . 我 好 高興 . +Let him in . 让 他 进来 . +I need a lot of books . 我 需要 很多 書 . +She continued with the work . 她 繼續 工作 . +He blamed me for the accident . 他 為 這個 意外 指責 我 . +Do you know why she is so angry ? 你 知道 她 為 什麼 這麼 生氣 嗎 ? +The mechanic assembled the engine . 這 名 技師 組裝 了 這 台 引擎 . +You need not have taken an umbrella with you . 你 其实 没 必要 带 伞 . +She achieved great success in her business . 她 在 她 的 事業 上 取得 了 巨大成功 . +Would you like to have a drink before dinner ? 晚饭 前 您 想 喝一杯 吗 ? +A cat came out from under the desk . 一 隻 貓 從 桌 底下 出來 . +As for me , I have nothing to say . 以 我 之 见 , 我 无话可说 . +You are not a doctor . 您 不是 医生 . +Beginners should learn spoken English first . 初學者 應 先學 習口 說 英語 . +He is not what he used to be . 他 不再 是 以前 的 那个 他 了 . +You can not use this washing machine . 你 不能 用 這 臺 洗衣 機 . +Hey , can you turn the lights off ? 喂 , 你 能 把 灯 关掉 吗 ? +I had a pleasant dream last night . 我 昨晚 作 了 一個 好 夢 . +She plays tennis every Sunday . 她 每個 星期天 打 網球 . +When did it begin to rain ? 什么 时候 开始 下雨 的 ? +I wish to go to Hawaii . 我 希望 去 夏威夷 . +Where will you have lunch today ? 你 今天 將 在 哪裡 吃 午餐 ? +I asked her a difficult question . 我 問 了 她 一個 難題 . +We will fly there in 50 minutes . 50 分鐘 之內 我們 將 飛到 那裡 . +Hunger is the best sauce . 饑 餓 是 最好 的 調味品 . +Bread is made from flour . 面包 是 面粉 做 的 . +His lie got him into trouble when his boss discovered the truth . 当 他 老板 发现 真相 的 时候 , 谎言 给 他 带来 了 麻烦 . +His speech inspired all the boys . 他 的 演說 激勵 了 所有 的 男孩 . +This has been the driest six months in thirty years . 這 是 三十 年代 以來 最 乾旱 的 六月 . +Do not lie to Tom and me . 不要 对 我 和 汤姆 撒谎 . +She has very nice @-@ looking handwriting . 她 的 筆跡 很美 . +She decided to quit her job . 她 決定 辭去 工作 . +She has had to stay here . 她 不得不 待 在 这儿 . +I like shopping with Tom . 我 喜歡 跟 湯姆 購物 . +People still think Tom is a liar . 人们 仍然 认为 汤姆 说谎 . +Say hello to your father for me . 代 我 向 你 父親 問 好 . +They will not tell us anything . 他們 甚麼 也 不 會 告訴 我們 . +We must cancel our trip to Japan . 我們 必須 取消 我們 去 日本 的 旅行 . +Cut the chit @-@ chat and get to work . 別 閒 聊 了 , 開始 工作 . +You can hold my hand . 你 能握 我 的 手 . +Turtles are reptiles . 海龟 是 爬行动物 . +They have the same habits . 他們 有 相同 的 嗜好 . +Go on with your work . 繼續 工作 ! +He had to stay in bed . 他 得 卧床 休息 . +If it happened to Tom , it could happen to you . 如果 那 發生 在 Tom 身上 , 也 可能 會 發生 在 你 身上 . +I have just finished breakfast . 我 剛 吃 完 了 早 飯 . +I will arrange for someone to pick you up at your home . 我会 安排 一下 , 叫 个人 去 你家 接 你 . +She pulled him out of the mud . 她 把 他 从 烂泥 中 拽 出来 了 . +Traffic lights work all the time . 紅綠燈 一直 在 運作 . +Tom took a step back and fell . 湯姆 後 退一步 跌倒 了 . +Do you subscribe to any magazines ? 你 有訂 閱 任何 雜 誌 嗎 ? +I have some English books . 我 有 一些 英文 書 . +The old man got in her way . 這個 老人 擋 了 她 的 路 . +It is important to help each other . 重要 的 是 要 互相 幫助 . +Tom wrote Mary a long letter , but he did not send it to her . 汤姆 给 玛丽 写 了 封 长信 , 可是 没有 寄给 她 . +I like winter better than summer . 我 喜歡 冬天 勝 過 夏天 . +That is all I know about him . 这 就是 我 关于 他 知道 的 一切 . +Would you like another beer ? 再 来 一杯 啤酒 怎么样 ? +Iron the inside of collars first , and then the outside . 先 熨烫 领子 的 里面 , 然后 是 外面 . +I helped my father yesterday . 昨天 我 帮 了 我 爸爸 . +I can place the palms of my hands on the floor without bending my knees . 我 不用 曲 膝 就 能 把 我 的 手掌 放到 地上 . +I paid two thousand yen for the book . 我 用 两千 日元 买 了 这 本书 . +Above all , be patient . 尤其 是 要 有 耐心 . +It is not mine . 不是 我 的 . +I think the train will come soon . 我 想 火車 很快 就 會 來 了 . +Doctors have discovered some startling facts . 医生 发现 了 一些 令人吃惊 的 事实 . +Her son is a genius . 她 儿子 是 个 天才 . +I am looking for a place to sit . 我 正在 找 个 地方 坐下 . +Do you have a non @-@ smoking section ? 你們 有 非吸 煙區 嗎 ? +Tom did not tell me much about it . 汤姆 没 跟 我 说 太 多 关于 它 的 事 . +He may be jogging around the park . 他 可能 在 公園 周圍 慢跑 . +Have you ever written a blog ? 你 写 过 博客 吗 ? +He devoted the last years of his life to writing his autobiography . 他 晚年 致力 於 寫 自 傳 . +When I came home , I felt very hungry . 我 回到 家 的 时候 , 感觉 非常 饿 . +I think you are stupid . 我 认为 你 傻 . +I want to marry a girl like her . 我 想 和 一个 像 她 那样 的 女孩 结婚 . +I am afraid I have offended you . 我 怕 我 冒犯 了 你 . +I am not married to Tom . 我 没 跟 汤姆 结婚 . +I asked her out on a date . 我 請 她 出去 約 會 . +Turn right . 向右转 . +He left without saying goodbye . 他 不辭而別 . +What did you find out ? 你 發現 了 甚麼 ? +I miss you . I need to see you . Could I come over ? 我 想 你 . 我 需要 见 你 . 我 能 来 吗 ? +Without the sun , there would be no life . 沒有 太陽 就 沒有 生命 . +Go when you want . 你 想 走 的 时候 就 走 吧 . +I am not so brave . 我 没 那么 勇敢 . +Tom was not going to do anything to you . 汤姆 不 打算 给 你 做 任何 事 . +She plays tennis every day . 她 每天 都 打网球 . +You can not live without water . 沒有 水 你 不能 生活 . +There is no sugar . 没有 糖 . +I ran a race with him . 我 和 他 比賽 跑步 . +They all looked for the lost child . 他們 都 在 尋找 這個 失 蹤 的 孩子 . +The bell rings at noon . 正午 時分 鐘聲 響起 . +How was your weekend ? 你 週末 過 得 怎麼樣 ? +Rome is a city worth visiting . 羅馬 這個 城市 值得 一 遊 . +I do not like science . 我 不 喜欢 科学 . +Let is play tennis this afternoon . 讓 我們 今天下午 打 網球 . +I was expecting it ! 我 一直 在 期待 着 ! +One of your buttons has come off . 你 的 一個 按鈕 脫落 了 . +We must keep up the family traditions . 我们 必须 保持 家庭 传统 . +This is all he has to do . 這 是 所有 他 必須 做 的 事 . +I grew up near a river . 我 在 一條 河 的 附近 長大 . +I am a loser . 我 是 個 不成器 的 人 . +It is about to rain . 天 快要 下雨 了 . +Do you think Tom will show up ? 你 認為 湯姆會 出現 嗎 ? +Where are the strawberries ? 草莓 在 哪裡 ? +We are looking for a nice house to live in . 我们 在 找 一个 漂亮 的 屋子 住 . +Summers are very hot in Kyoto . 京都 的 夏天 很 热 . +Speaking English is difficult . 說 英語 很 難 . +I do not like big dogs . 我 不 喜歡 大 狗 . +This is a very important meeting . 這 是 個 很 重要 的 會議 . +You look as healthy as ever . 你 看 起來 健康 如昔 . +You do not have to work so hard . 你 不必 這麼 辛苦 地 工作 . +There is enough light to read by . 有 足夠 的 光線 讀書 . +Yes , of course . 是 的 , 當然 . +He is old enough to drive . 他 夠 開車 的 年紀 了 . +She is hiding the truth from us . 她 不让 我们 知道 真相 . +Someone is watching you . 有人 在 看著 你 . +How is the weather there ? 那儿 是 什么 天气 ? +You do not need to carry lunch with you . 你 不 需要 隨身 帶著 午餐 . +This chair has to be fixed . 这 张 椅子 需要 修理 . +We have only got one chance . 我们 只有 一次 机会 . +You will exist but you will never know what it is to live . 你 活着 , 但是 却 不 知道 为什么 活着 . +How many teams are there ? 那里 有 多少 队伍 ? +She waited for you for two hours . 她 等 了 你 兩個 小 時 . +He will play baseball tomorrow . 他 明天 將 打 棒球 . +She put sheets on her bed . 她 在 她 的 床上 鋪 了 床單 . +You get up early , do not you ? 你 很早 起床 , 不是 嗎 ? +I hate being alone on Valentine is Day . 我 讨厌 在 情人节 一 人 独处 . +Tom might be able to attend the meeting . 汤姆 可能 能 参加 会议 . +You can no longer hurt me . 你 不再 能 伤害 到 我 了 . +Hello ! 你好 . +It is going to rain soon . 天 快要 下雨 了 . +Japanese office workers work very hard . 日本 上班族 工作 得 非常 辛苦 . +Tom is certain to come on time . 汤姆 一定 会 准时 来 的 . +This car is easy to handle . 這輛 車 很 容易 操控 . +I will show you some pictures . 我 會 讓 你 看 照片 . +Move over . 腾 一下 地方 . +I am very busy this week . 这周 我 非常 忙 . +She asked me if anything was the matter . 她 问 我 是不是 发生 了 什么 事 . +Are you a high school student ? 你 是 高中生 嗎 ? +He made his way through the crowd . 他 設法 穿 過 了 人群 . +The skies are clear . 天空 很 清朗 . +We will only consent on that condition . 我们 只 会 在 那样 的 条件 下 同意 . +I am going out this afternoon . 今天下午 我 會 外出 . +She is getting better day by day . 她 一天 一天 地好 轉 . +Tom can not swim . 汤姆 不会 游泳 . +Now is the time to act . 现在 是 行动 的 时候 了 . +This is considered to be a matter of great importance . 这 被 认为 是 一件 大事 . +I have already changed my clothes . 我 已經 換 了 我 的 衣服 . +She tossed me grapes and I tried to catch them with my mouth . 她 朝 我 丢 葡萄 , 我 试 着 用 嘴 接住 它们 . +Do not let me down . 别 让 我 失望 . +Stop worrying . 别 担心 了 . +His record is a new world record in the 100 @-@ meter dash . 他 刷新 了 百米 短跑 的 世界 紀錄 . +This box is too bulky to carry . 這個 箱子 太 笨重 了 無法 攜帶 . +I have done enough already . 我 已经 做够 了 . +Tom has many cats . 湯姆 有 很多 貓 . +If I have misjudged you , I am terribly sorry . 如果 我 对 你 产生误解 , 我 实在 抱歉 . +I told her what should be done . 我 告诉 了 她 应该 做 什么 . +Do not waste your time . 别 浪费时间 . +How do I get my dog to eat dog food ? 怎么样 才能 让 我 的 狗 吃 狗 粮 ? +We are going to stay in Boston all month . 我們 整個 月 都 要 待 在 波士 頓 . +I bet Tom forgot . 我 打 賭 湯姆 忘 了 . +Please make three copies of each page . 请 把 每 一页 复印 三份 . +She loves chocolate , too . 她 也 喜欢 巧克力 . +They treat me like a child . 他们 把 我 当 小孩 . +Go outside and play now . 現在 出去 玩吧 . +I have a friend whose father is a famous novelist . 我 有 一位 父亲 是 著名 小说家 的 朋友 . +I agree . 我 同意 . +Why do not you talk to him ? 你 為 甚麼 不 跟 他 講 ? +I gave you a book . 我 给 了 你 一 本书 . +Tom did not know exactly what it was that Mary wanted him to do . 汤姆 不 知道 玛丽 到底 让 他 做 什么 . +Do not be late for school again . 不要 再上 學遲 到 了 . +I saw you kissing Tom . 我 看到 了 你 在 吻 汤姆 了 . +He forgot that he bought her a present . 他 忘记 给 她 买 过 一个 礼物 了 . +He is my brother , not my father . 他 是 我 哥哥 , 不是 我 爸爸 . +They are children . 他们 是 孩子 . +Have you all eaten ? 你們 吃飯 了 嗎 ? +What is going on with you ? 你 怎么 了 ? +She and I have nothing in common . 我 和 她 沒有 共同 之處 . +What are you doing ? 你 做 什麼 ? +I helped him with his homework . 我 幫 他 做 他 的 家庭 作業 . +I am from Boston . 他 來 自 波士 頓 . +I do not think I really have a problem . 我 不 認為 我 真的 有 問題 . +Read this book . 看 这 本书 . +This was the most interesting book that she had ever read . 這 是 她 讀 過 最 有趣 的 書 . +Next time I will come earlier . 下 一次 我 會 早 一點 到 . +There is nothing I can do about it . 我 对此 无能为力 . +How high can you jump ? 您 能 跳 多 高 ? +" I will do it tomorrow . " " You said that yesterday ! " “ 我 明天 再 做 . ” “ 这话 你 昨天 就 说 过 了 ! ” +I am sorry I do not agree with you on that matter . 很 抱歉 那个 问题 我 不 赞成 你 . +It has nothing to do with me . 它 跟 我 没关系 . +There is a computer on the table . 桌子 上有一 臺 電 腦 . +Tom put his hand over the microphone . 汤姆 把手 放在 麦克风 上 . +I 'd be thrilled to do that . 我 很 乐意 这么 做 . +My brother gave me a cute doll . 我 哥哥 給 了 我 一個 可愛 的 娃娃 . +The cost of living has risen . 生活 費 升高 了 . +He told me to wash my face . 他 叫 我 洗脸 . +There were a lot of people in the park . 公园 里 有 很多 人 . +When I opened the door , I broke the lock . 我 开门 的 时候 弄坏了 锁 . +A Japanese would not do such a thing . 日本 人 不 會 做 這種 事 . +The telephone rang several times . 電話 響 了 好 幾次 . +What time does the train for New York depart ? 去 纽约 的 火车 几点 出发 ? +I have so many clothes I do not know what to wear tomorrow . 我 有 那么 多 衣服 , 以至于 我 不 知道 明天 穿 什么 了 . +She looks young . 她 看起来 很 年轻 . +Study hard . 好好学习 . +Do I have to take this medicine ? 我 必須 吃 這個 藥 嗎 ? +I lent Tom my camera . 我 把 我 的 相機 借給 了 湯姆 . +I began playing golf years ago . 幾 年前 我 開始 打 高爾夫 球 . +I do not mind if it is hot and spicy . 辣 点儿 没关系 . +This T @-@ shirt is too small for me . 這件 T 卹 太小 了 . +You are probably smarter than you think . 你 可能 比 你 想 的 更 聪明 . +I got up early as usual . 我 和 往常 一样 起得 很早 . +A cornered rat will bite a cat . 窮鼠 囓狸 . +He asked her to marry him , and she accepted . 他 向 她 求婚 , 而 她 同意 了 . +You disappointed me . 你 让 我 失望 了 . +You are too drunk to drive . 你 酒 喝 得 太 醉 了 不能 開車 . +I have always been proud of you . 我 一直 以 您 为 荣 . +He sang some old songs . 他 唱 了 些 老歌 . +I am sure that it will be fun . 我 确定 它 将 会 很 有趣 +He is crazy about soccer . 他 酷爱 足球 . +You were late for work . 你 上班 迟到 了 . +He selected a Christmas gift for her . 他 給 她 選 了 件 聖誕 禮物 . +What do you think should be done about it ? 你 觉得 对此 该 做 什么 ? +Let me think for a while . 讓 我 思考 一下 . +It is almost midnight here . 這裡 已經 是 午夜 了 . +I , for one , am for the plan . 就 個 人 而言 , 我 贊同 這個 計劃 . +He interrupted our conversation . 他 打断 了 我们 的 谈论 . +I called her up . 我 叫 她 起来 . +How long did it take you to translate this book ? 你 用 了 多少 时间 来 翻译 这 本书 ? +He does not eat raw fish . 他 不吃 生鱼 . +How tall is your youngest brother ? 你 最小 的 弟弟 身高 多 高 ? +He knows how to captivate his audience . 他 知道 如何 去 吸引 他 的 聽眾 . +I will take him . 我会 去 接 他 的 . +Why are you asking me ? 你 為 什麼 問 我 ? +I will help you escape . 我会 帮 你 逃跑 的 . +We will play soccer after school . 我們 放學 後 會 去 踢足球 . +You should not tell him anything about her . 你 不 應該 告訴 他 任何 關於 她 的 事 . +Soccer is more popular than tennis . 足球 比 網球 更 受歡 迎 . +All you can do is trust one another . 你们 除了 信任 对方 , 没什么 要 做 的 了 . +The road is too narrow for cars . 這 條路 太 窄 汽車 無法 通行 . +We got an interesting piece of information . 我們 得到 了 一份 有趣 的 情報 . +It was impossible to find an answer . 不 可能 找 得到 答案 . +You are a good person . 您 是 一個 好人 . +She was busy with household work . 她 忙 於 家務 . +No one thinks Tom will win the race . 沒人 認為 湯姆賽 跑 會 贏 . +The strong wind indicates that a storm is coming . 強 風 暗示 著 即 將 到 來 的 暴雨 . +Sometimes I can not help myself . 有时候 我 帮不了 自己 . +The police assembled a lot of evidence against him . 警察 收集 了 很多 对 他 不利 的 证据 . +I have nothing more to do today . 我 今天 沒有 更 多 的 事 要 做 的 了 . +He had the right idea . 他 的 想法 是 对 的 . +Tom hoped that Mary would not die . 汤姆 希望 玛丽 别 死 . +Tom admitted to spilling the red wine . Tom 承认 了 他 摔 了 红酒 . +Did you know that some foxes lived on this mountain ? 你 知道 有些 狐狸 住 在 這 座 山上 嗎 ? +Is everybody ready ? 所有人 都 准备 好了吗 ? +She left here in a hurry . 她 匆忙 地 離開 了 這裡 . +The criminal has not been caught yet . 那個 犯人 還 沒 被 抓到 . +The village has no electricity . 村里 没 通电 . +My father has five brothers and sisters . 我 父親 有 五個 兄弟姐妹 . +Do you have any smaller sizes ? 你 有 任何 比較 小 的 尺寸 嗎 ? +Let is try it out . 我们 试试 . +We need one more spoon . 缺 一把 勺子 . +We gave the car a push . 我們 推 了 車 . +You know what I want to hear . 你 知道 我 想 聽 甚麼 . +What woke you up ? 什麼 吵醒 你 了 ? +I like to ride on trains . 我 喜歡 乘坐 火車 . +A card was attached to the gift . 一張 卡片 被 附在 了 禮物 上 . +On the whole , the event was successful . 整體 而言 , 這個 事件 是 成功 的 . +I am very sleepy . 我 非常 困 . +I am really bad at this . 我 实在 不 擅长 这个 . +Tom is quite thin , is not he ? 汤姆 真瘦 , 不是 么 ? +Lawyers are all liars . 律师 都 是 骗子 . +I can not stand that noise . 我 不能 忍受 那個 噪音 . +Tom turned right when he should have turned left . 汤姆 本该 往 左转 却往 右转 了 . +Crocodiles have sharp teeth . 鳄鱼 有 尖利 的 牙齿 . +I usually go to school by bus . 我 經常 搭 公車 上 學 . +Tom is a very talented writer . 汤姆 是 个 很 有 才华 的 作家 . +True love never grows old . 真 愛 不 會 變 老 . +My mom gets out of bed before me . 我 媽媽 比 我 早起 . +Please shut the door behind you . 請 隨手 關門 . +This is the worst hotel in town . 這 是 城裡 最 糟糕 的 旅館 . +I got to the station this morning . 我 今天上午 到 了 車站 . +We elected her chairperson . 我們 選 她 為 主席 . +Take good care of yourself . 照顾 好 你 自己 . +I think so . 我 想 是 這樣 的 . +My room is very small . 我 的 房間 很小 . +His uncle died five years ago . 他 的 叔叔 五年 前 去世 了 . +Man is the only animal that talks . 人类 是 唯一 彼此 交谈 的 动物 . +Please put those chairs away . 請 把 那些 椅子 放好 . +That is a good question . 那 是 一個 很好 的 問題 . +It appears that she had a nice time at the party . 看來 她 似乎 在 派 對 上 玩 得 很 開心 . +I have been coming to work one train earlier lately . 我 已經 搭 了 最近 比較 早 一點 的 火車 來 上班 . +Let is stop at the next gas station . 我们 在 下 个 加油站 停 一下 . +Maybe we should talk . 大概 我们 需要 交谈 . +You can stay as long as you like . 你 想要 待 多久 就 待 多久 . +Your English is improving . 你 的 英語 正在 進步 . +Tom hugged Mary . 汤姆 拥抱 了 玛丽 . +Neither Tom nor I did that . 汤姆 和 我 都 没有 那么 做 . +They know nothing . 他們 什麼 都 不 知道 . +He went to the dentist . 他 去 看 牙医 了 . +All the flowers in the garden withered . 所有 花園 裡 的 花朵 都 枯萎 了 . +Thank you very much for everything . 非常 感謝 你 所 做 的 一切 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 如何 到 火車 站 嗎 ? +She followed him home to find out where he lived . 她 跟 他 到 家 , 以 知道 他 住 哪 . +Their wedding is tomorrow . 他們 明天 舉行 婚禮 . +Spring is just around the corner . 春天 就要 来 了 . +You are lucky to have such a good job . 你 很 幸運 能有 這麼 好 的 工作 . +I remember meeting her somewhere . 我 記得 我 在 某個 地方 見 過 她 . +My brother is small but strong . 我 哥哥 雖然 矮小 可是 很 強壯 . +Do you really need a car ? 你 真的 需要 车 吗 ? +We woke up very early in order to see the sunrise . 我们 起得 很早 为了 看到 日出 . +I do not sleep well . 我 睡 不好 . +Do you like spinach ? 你 喜歡 菠菜 嗎 ? +How do you want your hair cut ? 你 想 將 頭 髮 剪成 怎樣 ? +I am in trouble . 我 有 麻煩 了 . +What time does the first train leave ? 第一班 火车 什么 时候 出发 ? +I have heard nothing from him yet . 我 沒 有 他 的 任何 消息 . +Tom disappeared . 汤姆 不见 了 . +She climbed down from the roof . 她 从 屋顶 上 下来 了 . +Water turns into steam when it is boiled . 水 沸腾 后 变为 蒸汽 . +I would like to help you . 我 愿意 帮 你 . +I do not like her . 我 不 喜歡 她 . +They grow strawberries in their greenhouse . 他們 在 他們 的 溫室 裡 種 植 草莓 . +He can swim very fast . 他 能 游 得 很快 . +You have no right to do that . 你 無權 那麼 做 . +We are having lunch . 我們 在 吃 午餐 . +We need your help . 我們 需要 你 的 幫忙 . +He traveled around the country . 他 周遊 全國 各地 . +The leaves fell . 叶子 落 了 . +Visitors to Switzerland admire the Alps . 遊客 到 瑞士 欣賞 阿爾 卑斯山 . +I told you to get out . 我 告诉 过 你 出去 . +Would you like me to take a look ? 你 能 让 我 看看 吗 ? +Let is go back to lesson three . 让 我们 回到 第三课 . +He has a good appetite . 他 的 胃口 很 好 . +Tom is our oldest son . 汤姆 是 我们 最大 的 儿子 . +Thank you for drawing a bird for me . 謝謝 你 為 我 畫 鳥 . +Can you wake me up at seven o 'clock tomorrow morning ? 你 明天 早上 七點 可不可以 叫 我 起床 . +She gave me whatever help I needed . 她 給 了 我 任何 我 需要 的 幫助 . +I wish I had not said that at the party . 我 希望 我 在 聚會 上 沒 說 過 那話 . +What time does it start ? 什么 时候 开始 ? +He himself did it . 是 他 自己 做 的 . +Tell me when to stop . 告訴 我 甚麼 時候 停下 . +What were you up to last night ? 你 昨天晚上 做 什麼 ? +Tell me again where you live . 再 跟 我 說 一次 , 你 住 哪 ? +Our eyes take time to adjust to the dark . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +A man must work . 男人 应该 工作 . +Does Tom have a girlfriend ? 湯姆 有 女朋友 嗎 ? +Better late than never . 迟 做 总比 不 做好 . +Does not Tom go to Australia every month ? 汤姆 不是 每个 月 都 去 澳大利亚 吗 ? +Who told you that Tom and I are dating ? 谁 告诉 你 我 和 汤姆 在 交往 的 ? +It seems as if I am the only person here capable of doing it . 看来 我 是 这里 唯一 有 能力 做 这件 事 的 人 . +I do not like this idea . 我 不 喜歡 這個 主意 . +The train is due to arrive at noon . 火車 該 在 中午 到 . +The sheet is on the bed . 床单 在 床上 . +I really need a drink now . 我 现在 真 需要 来 杯 喝 的 . +The couple had a son . 这 对 夫妇 生 了 个 儿子 . +Tom needs to see you in ten minutes . 湯姆 需要 在 十分 鍾 內 見 到 你 . +I go into town every weekend . 我 每 周末 都 会 去 市区 . +He told us an interesting story . 他 告訴 了 我們 一個 有趣 的 故事 . +Put the gun on the table . 把 槍 放在 桌子 上 . +The museum is open from Monday to Friday . 博物馆 周一 到 周五 开门 . +Yes , I have a good idea . 是 的 , 我 有 一個 好 主意 . +I borrowed Tom is phone this morning . 我 今天 早上 跟 Tom 借手 機 . +I thought it best to remain silent . 我 想 最好 還是 保持沉默 . +What newspaper do you subscribe to ? 你 訂閱 了 什麼 報紙 ? +The law is not always fair . 法律 並 不 總是 公平 的 . +War broke out in 1941 . 战争 于 1941 年 爆发 . +Tom is not a good person . 湯姆 不是 好人 . +I have never been this happy before . 我 从未 这么 高兴 . +She cut the apple with a knife . 她 用 刀子 切 蘋果 . +We accept your challenge . 我們 接受 你們 的 挑戰 . +I do not like this jacket . 我 不 喜歡 那件 夾克 . +Do not underestimate my power . 不要 低估 我 的 力量 . +Everyone is here except for him . 除了 他 每個 人 都 在 這裡 . +Fur coats are on sale . 毛 皮大衣 在 打折 . +I want to drink something cold . 我 想 喝 冷 飲 . +I am going to propose to her . 我 打算 向 她 求婚 . +We could see nothing but fog . 除了 雾 我 看不见 任何 东西 . +Where is the nearest police station ? 最近 的 警察局 在 哪里 ? +What did you open it with ? 你 用 什么 打开 的 ? +What do you usually do after dinner ? 你 通常 晚 飯 後 做 什麼 ? +My father neither smokes nor drinks . 我 的 父親 不 抽 菸 也 不 喝酒 . +Drive carefully . 安全 地 駕駛 . +Tom suddenly looked concerned . 湯姆 突然 看 起來 在 擔心 . +The project is ongoing . 该 项目 正在 进行 中 . +I found it easy to speak English . 我 發覺 說 英語 很 簡單 . +He cleaned his room on Sunday . 他 在 週日 打掃 他 的 房間 . +Fish cannot live out of water . 魚離 開水 就 無法 生存 . +Some of my friends can speak English well . 我 的 一些 朋友 英语 说 得 很 好 . +I would do it if I could . 我 如果 能 做 就 做 了 . +He will be a good husband to my sister . 他 会 是 我 妹妹 的 好 丈夫 的 . +I want to see a movie . 我 要 去 看 電影 . +I take a bath every day . 我 每天 洗 一次 澡 . +I am your partner . 我 是 你 的 夥 伴 . +What is Tom so angry about ? 湯姆 為 了 甚麼 生氣 ? +I let Tom watch a little TV after he finished his homework . 我 让 Tom 在 做完作业 后 看 一点 电视 . +Bring it to me . 把 它 带给 我 . +My job is washing dishes . 我 的 工作 是 洗盤子 . +Tom should have known better . 汤姆 应该 更 清楚 . +She is my daughter . 她 是 我 女儿 . +Do you know what I mean ? 你 知道 我 的 意思 嗎 ? +I have no intention of resigning . 我 無意 辭職 . +I know why you are happy . 我 知道 你 为什么 高兴 . +The tablecloth is in the cabinet . 桌布 在 櫥櫃 裡 . +My legs are smaller than yours . 我 的 腿 比 你 的 小 . +Tom does not trust the police . 湯姆 並 不 信任 警察 . +He was born on July 28th , 1888 . 他 出生 於 1888 年 7 月 28 日 . +The fire alarm rang . 火警 警报 响 了 . +What happened here ? 这儿 发生 了 什么 事 ? +It really comes in handy . 這 真的 能派 上 用場 . +I wish I could swim . 我 希望 我 會 游泳 . +No problem at all ! 没有 任何 问题 ! +Is breakfast included ? 包括 早饭 吗 ? +I want to be as tall as Tom . 我 想 和 Tom 一樣 高 . +Not everyone who lives here is rich . 並 不是 每個 住 在 這裡 的 人 都 是 富有 的 . +Tomorrow , he will land on the moon . 明天 他 会 在 月球 降落 . +Did you notice anything strange ? 你 注意 到 奇怪 的 地方 了 嗎 ? +You should run for city council . 你 应该 去 竞选 城市 委员会 . +If you do not behave , Santa will not come . 你 一旦 不 做 个 乖孩子 , 圣诞老人 就 不会 来 噢 . +I know you are upset . 我 知道 你 难过 . +At night , she gazed at the moon . 她 在 夜晚 望著 月亮 . +She is neither rich nor famous . 她 既 没钱 , 也 不 出名 . +You will understand someday . 你 有 一天 會 明白 . +A fire broke out in my neighborhood last night . 昨晚 我 领 居家 着火 了 . +What language is spoken in Egypt ? 在 埃及 说 什么 语言 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +He applied himself to the study of music . 他 潛心 研究 音樂 . +Your dog is very big . 你 的 狗 非常 胖 . +What does this mean ? 这 是 什么 意思 ? +Do you have a garage ? 你 有 車庫 嗎 ? +The teacher lined the children up in order of height . 老师 按照 身高 给 孩子 们 排队 . +Can we lock this door ? 我們 能 鎖 門 嗎 ? +Did you go anywhere during the summer vacation ? 这个 暑假 你 有 去 哪儿 玩 吗 ? +Can I borrow your car tonight ? 我 今晚 可以 借 一下 你 的 车 吗 ? +Tom will never see you again . 汤姆 再也不会 见 你 了 . +I have eight brothers and sisters . 我 有 八個 兄弟姐妹 . +You look very dignified . 你 看 起來 很 威嚴 . +He realized his dream of becoming an artist . 他 實現 了 當 兿 術 家 的 梦想 . +I hope you have sweet dreams . 祝 你好 梦 . +Keep away from the electrical equipment . 遠離 電器 設備 . +I got him to polish my shoes . 我 要 他 擦亮 我 的 皮鞋 . +This is never going to end . 這個 永遠 結束 不了 . +Would you like some more gravy ? 你 想 再 來 些 醬汁 嗎 ? +Do you plan to go overseas ? 你 打算 出國 嗎 ? +We will know the truth before long . 我們 不久 將 知道 真相 . +I just said something very stupid . 我 刚 说 了 很蠢 的话 . +Do not talk to me like this . 不要 这样 对 我 讲话 . +Are you busy now ? 現在 您 忙 嗎 ? +I had lost my pen . 我 弄 丟了 我 的 筆 . +I can only speak for myself . 我 只能 代表 我 自己 講 話 . +He lives in a village near Osaka . 他 住 在 大阪 附近 一座 鎮 上 . +Listen and listen carefully . 听 而且 听 仔细 . +I want more detailed information . 我 要 更多 詳細 的 訊息 . +When did you begin playing golf ? 你 什麼 時候 開始 打 高爾夫 球 ? +I am going to take a bath . 我 打算 洗 个 澡 . +Do you feel like going swimming ? 你 想 去 游泳 嗎 ? +Would you like to go ? 你 想 去 嗎 ? +Clean the window with a damp cloth . 用 濕布 清潔 窗戶 . +Switzerland is a beautiful country . 瑞士 是 一個 美麗 的 國家 . +Tom has been wounded . Tom 负伤 了 . +I feel as if I have woken up from a nightmare . 我 覺得 我 好像 從 惡 夢 中 驚醒 . +She is now eighty @-@ one years old . 她 現在 八十一 歲 了 . +It does not matter . 没关系 . +I think this medicine will do you good . 我 想 这 药会 对 您 有 好处 的 . +Agriculture consumes a great amount of water . 农业 需要 消耗 的 大量 水 . +How will we protect ourselves ? 我們 怎麼 保護 自己 ? +I like to take a walk after meals . 我 喜欢 饭后 散步 . +Tom began to learn French about three years ago . 汤姆 大约 三年 前 开始 学法语 . +There are many endangered species . 有 許多 瀕 危 物种 . +Once he had written the letter , he sent it . 信 一 写 好 , 他 就 把 它 寄 了 . +Hang on ! 等 一下 ! +I just knew you would say that . 我 就 知道 你 会 这么 说 . +He wants to be a tennis player . 他 想 成為 一名 網球 選手 . +What were you doing this morning ? 今天 早上 你 在 做 什么 ? +I can play Chopin . 我 會 彈 蕭邦 . +Tom is very good at doing things with his hands . 汤姆 善于 动手 做事 . +He was late for school yesterday . 他 昨天 上学 迟到 了 . +You just saved me a lot of time . 你 省 了 我 好多 時間 . +Keep on smiling . 保持 微笑 . +How many plates do we have ? 我們 有 多少 個盤子 ? +He does not have a job . He is retired . 他 没有 工作 , 他 退休 了 . +I belong to a tennis club . 我 是 网球 俱乐部 的 会员 . +I intend to study abroad next year . 我 打算 明年 出國留學 . +I still live at my dad is place . 我 還 住 在 我 父親 的 房子 裏 . +A friend of mine came to see me during the day . 我 的 一個 朋友 在 白天 的 時候 來看 我 . +I have got time . 我 有 时间 . +I am glad to see you again . 很 高興 再次 見 到 你 . +I thought Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He is doing his best . 他 在 全力以赴 . +I want to see him very much . 我 非常 想 见到 他 . +Tom looks very happy . 汤姆 看起来 非常 开心 . +My cats will love this . 我 的 猫会 爱 上 这个 . +I am worried about Tom . 我 在 為 湯姆 擔心 . +This noise is driving me crazy . 這個 噪聲 快 把 我 逼 瘋 了 . +I want you to open the window . 我 要 你 把 窗戶 打開 . +The visitor sat across from me . 訪客 坐在 我 的 對面 . +Were you serious about that ? 你 对 那 是 认真 的 吗 ? +Tom is never going to cry . 汤姆 永远 不会 哭 . +She dreamed that she was a princess . 她 梦见 她 是 一个 公主 . +My mother did nothing but weep . 我 的 母亲 只是 默默地 哭泣 . +There are seven men and four women in my section . 在 我 的 部门 里 有 七 男 四女 . +Whose book is this ? 這 是 誰 的 書 ? +Tom is parents were not particularly pleased . 汤姆 的 父母 不是 特别 高兴 . +This is what Tom would want me to do . 這 是 湯姆會 想 讓 我們 做 的 . +My aunt made me a new skirt . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +I wanted to show it to you . 我 想 把 它 給 你 看 . +I will give you a ring . 我会 打电话 给 你 . +Politics leaves him cold . 他 對 政治 沒有 興趣 . +He and I were inseparable friends during our time together in school . 我 和 他 在 學生 時代 是 分不開 的 朋友 . +I almost did not meet her . 我 幾乎 沒有 遇見 她 . +Can you guess what I have here ? 你 能 猜到 我 有 什么 吗 ? +You make life worth living . 你 讓 生命 值得 活下去 . +Fill the bucket with water . 把 水裝 滿 桶子 . +Keep your eyes open . 睜 大 你 的 眼睛 . +The child had no overcoat on although it was very cold . 尽管 天气 很 冷 , 孩子 却 没有 大衣 穿 . +I am developing an Android application . 我 正在 开发 一个 安卓 应用 . +The dog was sleeping on the mat . 狗 在 地毯 上 睡觉 . +Look what happened . 看看 發生 了 什麼 . +Turn on the radio , please . 请 打开 收音机 . +It is a pity they are getting divorced . 很 遗憾 他们 离婚 了 . +Why are not you married yet ? 你 为啥 还 不 结婚 ? +I plan to spend the New Year is holiday in Australia . 我 打算 在 澳大利亚 过 新年 . +He played tennis all day long . 他 整天 打 網球 . +Tom went down the hill . 汤姆 走 下 山坡 . +You 'd better take an umbrella with you in case it rains . 以防 下雨 你 最好 带 把 伞 . +They went in opposite directions . 他們 往 相反 的 方向 去 . +Where did you go yesterday ? 你 昨天 去 哪裡 了 ? +How can I get to the police station ? 我 怎么 去 警察局 ? +Is it all there ? 全都 在 那裡 嗎 ? +The boy was naked to the waist . 男孩 赤裸 着 上身 . +Could you tell me what my choices are ? 你 能 告訴 我 我 的 選項 是 甚麼 嗎 ? +I would like mine rare . 我 的 牛排 要生 的 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 情緒 化 是 不好 的 . +Tom likes hot curry . 湯姆喜 歡辣 咖哩 . +I forgot to telephone him today . 我 今天 忘 了 打 電話 給 他 . +Mary placed her baby in a car seat for the flight . 航程 中瑪麗 把 她 的 寶寶 放在 嬰兒 汽車 座椅 上 . +Are you a bachelor ? 你 是 单身 吗 ? +This should be a lot of fun . 這 應 該 很 有意思 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +He had his socks on inside out . 他 将 袜子 的 里外 穿反 了 . +She made faces at that woman . 她 對 那個 女人 做 了 鬼 臉 . +It seems to me that she is a little selfish . 我 觉得 她 有点 自私 . +I thought that Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +A trip to America was equivalent to a two @-@ year salary for her . 去 美国 旅行 一次 相当于 她 两年 的 工资 . +The cab driver was not seriously injured . 出租车 司机 没有 受 重伤 . +That is a lot of cash . 那 是 很多 錢 . +Ca not you stay a little longer ? 你 不能 待 久 一點 嗎 ? +Tom closed his eyes and began to count sheep . 汤姆 闭上 了 眼睛 开始 数羊 . +We are heroes . 我們 是 英雄 . +Mary plays the piano . 瑪麗彈 鋼琴 . +You should always tell the truth . 你 應 該 永遠 說 實話 . +My dad died before I was born . 我 出生 前 , 我 父亲 就 死 了 . +Has not Tom told you anything ? 汤姆 什么 都 没 告诉 你 吗 ? +She scolded her son for being lazy . 她 罵 她 的 兒子 懶惰 . +A Mexican taught him Spanish . 一個 墨西哥人 教 了 他 西班牙文 . +Which is heavier , lead or gold ? 哪個 比較 重 , 鉛 還 是 黃金 ? +What is learned in the cradle is carried to the tomb . 幼年 時學 的 東西 , 一輩子 不 會 忘 記 . +When he was a child , he would go fishing on Sundays . 他 小时候 , 星期天 会 去 钓鱼 . +Tom is Mary is former husband . 湯姆 是 瑪麗 的 前夫 . +I think that it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Do not interrupt our conversation . 不要 打斷 我們 的 談話 . +You should be a diplomat . 你 应该 做 一个 外交官 . +She usually sleeps for eight hours . 她 通常 睡 八個 小 時 . +I will go to Hokkaido tomorrow . 我 明天 要 去 北海道 . +When she saw that they had no schools , she started one . 当 她 发现 他们 还 没有 学校 , 她 就 办 了 一个 . +The sun went below the horizon . 太陽 落到 地平線 下 了 . +I am a citizen of the world . 我 是 世界 公民 . +I want you to help us find out who killed Tom . 我 想 讓 你 幫 我們 查出 來 誰 殺 了 湯姆 . +Do you have a red pencil ? 你 有 紅色 的 鉛 筆 嗎 ? +Tom can not sleep without a light on . Tom 没 办法 在 没有 亮灯 的 时候 入睡 . +I think exams ruin education . 我 认为 考试 破坏 教育 . +Tom just got divorced , too . 湯姆 也 剛 離婚 . +I woke up at five this morning . 我 今天 早上 五點 醒來 . +Reporters do not hesitate to intrude into people is privacy . 记者 没有 犹豫 地 去 干涉 了 人们 的 私生活 . +Tom was already at work . 湯姆 已經 在 上班 了 . +She won many competitions . 她 贏 了 許多 比賽 . +I have a very sore arm where you hit me . 你 打 在 我 手臂 上 的 地方 超级 痛 . +I took off my hat and entered the church . 我 摘下 帽子 进 了 教堂 . +Tom was buried Monday . 汤姆 在 周一 被 埋 了 . +Has Tom gone insane ? Tom 瘋 了 嗎 ? +Would you please turn the TV off ? 请 把 电视机 关掉 好 吗 ? +We sometimes meet them . 我們 有 時會 見到 他們 . +What grade is your sister in ? 你 的 妹妹 唸 幾 年 級 ? +I do not like summer . 我 不 喜欢 夏天 . +I can call Tom if you want . 如果 你 想要 的话 , 我 可以 打电话 给 汤姆 . +Is the door open ? 門 開著 嗎 ? +They will tear down the old building in two days . 他們 將 在 兩天 內 拆除 這棟 舊 的 建築物 . +Tom lied . 汤姆 说谎 了 . +Fasten your seat belt , please . 請 繫 好 安全 帶 . +My father is too busy to take a walk . 我 父親 太 忙 而 無法 去 散步 . +She liked tennis and became a tennis coach . 她 喜欢 网球 并 成为 了 一个 网球 教练 . +Let is go ! 我們 走 吧 ! +In a crisis , you must get in touch with your teacher . 在 危險 的 時候 你 必須 跟 你 的 老師 聯 繫 . +She always looked happy , but never was . 她 總是 看 起來 很快 樂 , 但 實際 上 從來 不快 樂 . +Merry Christmas ! 聖誕 快樂 . +You must return the book to him . 这 本书 你 该 还给 他 . +I am quite satisfied with my life . 我 对 我 的 人生 很 满意 . +I do not mind if you go to bed before I get home . 我 不介意 你 在 我 回到 家 之前 先 去 睡觉 . +Do you believe in God ? 你 相信 上帝 吗 ? +Something may have happened to him . 他 可能 發生 了 什麼 事情 . +He will be back in ten minutes . 他 十分 鐘 後 會 回來 . +He got engaged to my cousin . 他 和 我 的 堂姊妹 订婚 了 . +Look out for pickpockets . 小心 扒手 . +A friend in need is a friend indeed . 患難 見 真情 . +Is this snake safe to touch ? 摸 這條 蛇 安全 嗎 ? +You make me feel so guilty . 你 讓 我 感到 很 內疚 . +You can not keep a secret . 你 不能 有 秘密 . +I want to go to see a movie . 我 要 去 看 電影 . +Graham Greene is a favorite author of mine . 格雷厄姆 葛林 是 我 最 喜歡 的 作家 之一 . +She makes herself up every morning . 她 每天 早上 自己 起床 . +It is easy for monkeys to climb trees . 猴子 爬树 容易 . +Look back ! 回头 看 ! +It is pretty heavy . 它 真 重 . +I could have told you that . 我 應該 告訴 過 你 了 . +He accomplished his mission . 他 完成 了 他 的 使命 . +You want to remain anonymous . 你 想 保持 匿名 身份 . +Tom is wearing gloves . 汤姆 戴 着 手套 . +She will care for you from now on . 从 现在 开始 , 由 她 来 照顾 你 . +Wires are used to convey electricity . 電線 被 用來 運送 電力 . +Tom will not be able to do that job . 汤姆 做不了 那 项 工作 +With your approval , I would like to offer him the job . 如果 您 同意 , 我 想 給 他 這份 工作 . +Do not put anything on top of the box . 盒子 上面 不要 放 任何 東西 . +Do you really think that Tom will not come ? 你 真的 认为 汤姆 不会 去 吗 ? +She made room for an old lady . 她 讓 座 給 一位 老太太 . +I just wanted to prove to myself that I could do this . 我 只 想 向 自己 证明 我 可以 做到 . +I told you not to talk about the matter in her presence . 我 跟 你 说 过 她 在 的 时候 不要 说 这件 事 . +We must not break our promise . 我們 不能 違背 我們 的 承諾 . +I will not be here tomorrow . 我 明天 不 在 这儿 . +Can I try this on ? 我 能 试一下 吗 ? +Please speak more clearly . 请 说 得 更 清楚 些 . +I washed the dishes after supper . 晚饭 后 我 洗 了 餐具 . +He is a DJ . 他 是 一个 DJ . +She will be the first Japanese woman astronaut . 她 將 會 成為 日本 第一 個 女性 太空 人 . +None of the telephones are working . 所有 的 電話 都 不通 . +My uncle lives near the school . 我 叔叔 住 在 学校 附近 . +Get them before they get us . 先下手为强 , 后 下手 遭殃 . +Mom is getting dinner ready . 媽媽 快 把 晚餐 準備 好 了 . +Tom has an old car . 湯姆 有 輛 舊車 . +I hope he will be able to come ! I would like to see him . 我 希望 他 能 來 ! 我 想 見 他 . +Approximately thirty young people attended . 约 有 三十个 年轻人 到 了 . +Can you help me find a job ? 你 能 幫 我 找 一個 工作 嗎 ? +Please tell me your name . 請 告訴 我 你 的 名字 . +I stood waiting for a bus . 我 站著 等 公車 . +Have you checked our supplies recently ? 你 最近 检查 我们 的 补给 了 吗 ? +If it is not too expensive , I will do that . 如果 不是 太贵 的话 , 我会 买 的 +Speak clearly . 講 清楚 . +This is by far the best novel that has been published this year . 这 显然 是 今年 出版 的 最好 的 小说 . +You can trust him to keep his word . 你 可以 相信 他 会 信守诺言 . +Do you want to hear what I think ? 你 想 聽 聽 我 是 怎麼 想 的 嗎 ? +Stay out of the rain . 躲雨 . +Tom can not tell Mary his real feelings . 汤姆 不能 把 他 的 真实 感受 告诉 玛丽 . +She is a middle @-@ aged fat woman . 她 是 個 中年 胖女人 . +To the man who only has a hammer in the toolkit , every problem looks like a nail . 对 工具箱 里 只有 一把 榔头 的 人 来说 , 所有 的 问题 都 像 钉子 . +Tom wanted to see Mary is room . 湯姆 想 看看 瑪麗 的 房間 . +I know it is time to go , but I want to stay longer . 我 知道 該 走 了 , 但 我 想 留 久 一點 . +My mother gets up early every morning . 我 媽媽 每天 早上 早起 . +I will treat you to dinner . 晚饭 我 请客 . +Dinner will be ready by six @-@ thirty . 晚餐 將 在 六點 半前 開飯 . +My team is always losing . 我们 队 总是 输 . +He was unsure how he would get there , and when . 他 不 确定 他 怎么 到 哪里 , 以及 什么 时候 . +She thought of a good solution . 她 想到 了 一个 好 的 解决办法 . +I do not know whether she will come . 我 不 知道 她 是否 會來 . +She has always lived in Otaru . 她 一直 住 在 小 樽 . +This is the real world . 這 是 真實 的 世界 . +You will have to wait and see . 你 得 等一等 看 . +Are you saying you do not want to go to Tom is party ? 你 的 意思 是 你 不想 去 汤姆 的 派对 ? +I worry about him . 我 擔心 他 . +I have been looking for my tripod . 我 一直 在 找 我 的 三腳 架 . +We are going to set up shelters . 我们 要 建立 避难所 . +I met her on campus yesterday . 我 昨天 在校 園裡 遇到 了 她 . +They want this . 他們 想要 這個 . +Why are we wasting time with this ? 为什么 我们 在 这 上面 浪费时间 ? +I need it ASAP . 我 尽快 需要 . +Is eating with chopsticks difficult ? 用 筷子 吃 飯 難 嗎 ? +He has dozens of English books . 他 有 幾 十本 的 英文 書籍 . +I am willing to share . 我 乐意 分享 . +Tom asked me if I liked chocolate . 汤姆 问 我 是否 喜欢 巧克力 . +That dog is big . 這 隻 狗 很大 . +He left high school at seventeen . 他 十七 歲 的 時候 離開 了 高中 . +Please give me a break . 饶 了 我 吧 ! +Are you free tomorrow ? 你 明天 有空 吗 ? +I do not mind lending you the money provided you pay it back within a month . 假如能 一个月 之内 还 上 的话 , 我 可以 把 钱 借给 你 . +Can you lend me 10,000 yen ? 你 能 借 給 我 10000 日元 ? +Tom lied to the others . 汤姆 向 其他人 撒谎 了 . +What happened ? The car is slowing down . 發生 了 什麼 事 ? 車子 慢下 來 了 . +Do not blame Tom for what Mary did . 别 为 玛丽 犯 的 错 责备 汤姆 . +That is a pheasant . 那 是 一 隻 野 雞 . +I have seen that . 我 見 過 . +That is weird , is not it ? 那 真 奇怪 , 不是 么 ? +They will understand that . 他們 會 明白 . +Fire is always dangerous . 火 是 非常 危險 的 . +I met him on his way home . 在 他 回家 的 路上 我 遇見 了 他 . +Please forgive me . 请原谅 我 . +You 'd better put on a raincoat . 您 最好 穿 一件 雨衣 . +It takes time . 这 需要 时间 . +Can you guess what I have ? 你们 能 猜到 我 有 什么 吗 ? +Do you study every day ? 您 每天 都 讀 書 嗎 ? +Are you and Tom leaving together ? tom 和 你 一起 離開 嗎 ? +Tom is the one that has been waiting the longest . 汤姆 是 等 了 最长 时间 的 人 . +I would rather not go there alone . 我 寧可 不要 單獨 去 那裡 . +I will alert Tom . 我会 警告 汤姆 . +Millions were affected that day . 那天 有 數百萬 人 受 影響 . +That architect builds very modern houses . 那个 建筑师 创建 了 非常 现代 的 房屋 . +Thank you very much for the wonderful dinner last night . 非常 感謝 您 昨晚 美妙 的 晚餐 . +They are eating apples . 他們 正在 吃 蘋果 . +I would like to go skiing with her . 我 想 和 她 去 滑雪 . +I am a high school student . 我 是 个 高中生 . +Will you use this ? 你 要 用 這個 嗎 ? +He raised his hand . 他 舉起 他 的 手 . +I would like to see your father . 我 想 去 看 你 的 父親 . +Tom came back . 湯姆 回來 了 . +He studied hard . 他 努力 學習 . +We bought a comfortable new armchair . 我們 買 了 張 舒適 的 扶手椅 . +Do not translate English into Japanese word for word . 不要 逐字逐句 的 把 英文 翻譯 成 日文 . +Have you finished reading the book ? 你 讀 完 這 本書 了 嗎 ? +I can not remember . 我 想不起 來 . +You 'd better not smoke while on duty . 當 你 值勤 時 最好 不要 抽煙 . +What do you think I have been doing ? 你 觉得 我 之前 在 做 什么 ? +Would you like to have some coffee ? 你 要 喝 點 咖啡 嗎 ? +She said something to him . 她 對 他 說 了 些 話 . +Are you going to come back ? 你 要 回來 嗎 ? +We should sit down . 我們 應該 坐下 . +I was absent from the party . 我 沒 去 派 對 . +Which way should we go ? 我们 应该 往 哪个 方向 走 ? +Tell us what to do next . 告訴 我們 下 一步 該 怎麼 做 . +I will dream about you . 我会 梦 到 你 的 . +They are afraid of us . 他們 害怕 我們 . +She asked him to open the window . 她 要求 他 打開 窗戶 . +She used to play tennis on Sunday . 她 以前 在 週日 打 網球 . +I did not know you did not know how to swim . 我 不 知道 你 不 會 游泳 . +It is not easy to learn a foreign language . 学会 一门 外语 不 容易 . +His mother is an English teacher . 他 的 母親 是 一位 英語 教師 . +He has a good reading knowledge of French . 他 能 很好 地 读懂 法语 . +All of my attempts have failed . 我 所有 的 尝试 都 失败 了 . +There was no water in the river . 這條 河 的 水 乾 了 . +The baby has finally stopped crying . 婴儿 终于 不 哭 了 . +His house is not far from this store . 他家 离 这间 商店 不远 . +I need a bigger box . 我 需要 個 更 大 的 箱子 . +Tom wants to tell you about Mary . 汤姆 想 跟 你 说 玛丽 的 事 . +All lawyers are liars . 律师 都 是 骗子 . +It is not practical . 这 不 实用 . +She cannot do without her car . 她 離 不開 她 的 車 . +We should have taken the schedule into consideration . 我们 本该 考虑一下 行程 . +The rain is letting up . 雨 变小 了 . +Do not you want to go out ? 你 不想 出去 嗎 ? +He went back to the store . 他 回 店里 去 了 . +They burst into tears . 他們 突然 哭 了 . +Can I ask you a question ? 我 能 问 您 一个 问题 吗 ? +Her look says that she loves you . 她 的 樣子 在說 她 愛 你 . +We do not think it is serious . 我们 认为 这 不 严肃 . +I did not trust Tom and he did not trust me , either . 我 不 信任 汤姆 而且 汤姆 也 不 信任 我 . +These paintings are beautiful . 這些 畫 很美 . +I have to go to bed . 我 该 上床 了 . +Tom watched in horror . 汤姆 惊恐 地 盯 着 . +I think he is happy . 我 想 他 很快 樂 . +Did you have a good rest ? 休息 好 嗎 ? +Does your school have a library ? 你 的 学校 有 图书馆 吗 ? +He was determined to go abroad . 他 下定 決心 要 出國 了 . +What are you guys going to do ? 你们 这些 家伙 想 去 干什么 ? +Nobody is too old to learn . 活到老 學到 老 . +Tom enjoyed himself at the party . 汤姆 在 晚会 玩 的 很 开心 . +My friends do not play tennis . 我 的 朋友 不 打 網球 . +Apart from on rainy days , I always ride my bike to work . 除了 雨天 , 我 都 是 骑车去 上班 的 . +The bus does not always come on time . 巴士 不 总是 能 准点 到达 . +Did not I tell you so ? 我 不是 告訴 過 你 了 嗎 ? +Happy New Year ! 新年 快 樂 ! +I feel sick . 我 有点 恶心 . +I do not go to school on Sunday . 我 周日 不 去 学校 . +Grab this . 抓住 这个 . +My legs still hurt . 我 的 腿 还是 很痛 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +Who is she ? 她 是 谁 ? +I accept the offer . 我 接受 了 报价 . +Your dog is very big . 您 的 狗 非常 胖 . +She did not want to speak to anyone . 她 不想 跟 任何人 說 話 . +What are you punishing them for ? 您 为什么 惩罚 他们 ? +What is it that you want ? 你 想要 什麼 ? +He is had many unhappy experiences . 他 有 许多 不 愉快 的 经历 . +I think this book is easy . 我 觉得 这 本书 很 简单 . +They tried very hard to gain an advantage over one another . 他們 很 努力 地 超過 對方 獲得 優勢 . +Tom lost . 汤姆 输 了 . +Do you want to be an actor in a movie ? 你 想 成為 一名 電影 演員 嗎 ? +My father grows rice . 我 爸种 水稻 . +They can not hear me either . 他們 也 不能 聽見 我 說 話 . +He suspects me of telling a lie . 他 懷疑 我 說 謊 . +She is fond of taking pictures . 她 喜欢 拍照片 . +I can cook . 我会 做饭 . +It was very cold this morning . 今天 早上 很 冷 . +Do not sign the contract in pencil . 别 用 铅笔 签合同 . +What is that building ? 那栋 建筑 是 什么 呢 ? +English is not easy , but it is interesting . 英语 不 简单 , 但是 很 有趣 . +This is just between you and me . 这 只是 我们 之间 的 秘密 . +Examine this . 调查 下 这个 . +While I was reading , I fell asleep . 當 我 讀 書 的 時候 , 我 睡著 了 . +There was a large crowd in the park . 公园 里 有 一大群 人 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +I see her sweeping the room . 我 看见 她 在 打扫 房间 . +I will never forget the day when I first met him . 我 永远 不会 忘记 那天 我 第一次 与 他 见面 . +Could you come up here ? 你 能 来 这里 吗 ? ? +That red dress looks good on her . 她 穿 那件 紅色 的 衣服 很 好看 . +If I had the money , I 'd buy a new house . 如果 我 有 錢 , 我 會 買 一個 新房子 . +Do not leave me here alone . 別 把 我 一個 人 留在 這裡 . +We should run some tests . 我们 应该 进行 测试 . +Why are your ears so big ? 為 什麼 你 的 耳朵 這麼 大 ? +Tom comes home almost every weekend . 湯姆 幾乎 每個 週末 都 回家 . +I do not understand this sentence . 我 不 明白 這 句 話 . +The reservation is already made . 预订 好 了 . +He is old enough to drive . 他 年 紀夠 大 可以 開車 . +I study French after dinner every day . 我 每天 吃 过 晚饭 后 都 会 学法语 . +Tom wants to pay back the money he owes . 汤姆 想去 还 欠 的 钱 . +My grandfather is fond of taking a walk early in the morning . 我 的 爷爷 喜欢 大清早 的 散步 . +I always eat before going to school . 我 总是 在 上学 前 先 吃饭 . +The boat was piloted safely into harbor . 船 被 安全 地 领入 港口 . +This is my business address . 这 是 我 的 公司地址 . +He acted as my guide . 他 擔 任我的 嚮 導 . +I expect her back by six o 'clock . 我 希望 她 六點 前 回來 . +I found the boy fast asleep . 我 发觉 男孩儿 酣然 入睡 了 . +It is so hard . 太 难 了 . +Tom is in the house . 湯姆 在家 裡 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +Do it when you have time . 你 有 时间 再 做 吧 . +" Is he going to swim tomorrow ? " " Yes , he is . " " 他 明天 會去 游泳 嗎 ? " " 是 的 , 他 會 . " +The cargo ship arrived four hours early . 货船 早 到 了 四 小时 . +I have been here for many years . 我 在 這裡 已經 很多年 了 . +No security system is foolproof . 沒有 防傻 的 安全 系統 . +The rain prevented me from going . 雨 大 得 让 我 不能 走 . +Did anyone call me while I was out ? 我 出去 的 时候 有人 打 我 电话 吗 ? +She gave us a present . 她 給 了 我們 一個 禮物 . +I think we should reduce the price . 我 觉得 我们 得 调低 价格 . +We are looking forward to seeing you and your family . 我们 很 期待 见到 您 和 您 的 家人 . +Tom left a note for Mary on her desk . 湯姆 給 瑪麗 在 她 桌上 留 了 便條 . +I got something nice for you . 我 给你个 好 东西 . +You may as well come with me . 你 不如 跟 我 一起 來 . +None of my friends drink coffee . 我 的 朋友 都 不 喝咖啡 . +I got scolded severely by that teacher . 我 被 那位 老師 嚴厲 斥責 了 . +The number of people who go abroad has been increasing . 出国 的 人数 一直 在 增加 . +Watch your step . 小心 脚下 . +Money talks . 金钱万能 . +He poured cold water over himself . 他 往 他 自己 身上 潑 了 一盆 冷水 . +I do not like her face . 我 不 喜歡 她 的 臉 . +You used to smoke , did not you ? 你 以前 吸煙 , 不是 嗎 ? +We will ask Tom and see what he thinks . 我們 要 問 問 湯姆 , 看看 他 怎麼 想 . +He was an honest man . 他 以前 是 个 诚实 的 人 . +That smells bad . 那 不好 聞 . +I do not want to wait . 我 不想 等 . +How many kids do you have ? 你 有 幾個 孩子 ? +The meeting lasted until 5 . 會議 一直 持續 到 5 點 鐘 . +He is doing very well considering he lacks experience . 考虑 到 他 缺乏经验 , 他 做 得 [ 已经 ] 非常 好 了 . +Have you seen all these movies ? 你 把 這些 電影 全 看 了 嗎 ? +Who told you that ? 是 谁 给 你 说 那个 的 呢 ? +I feel like a rest . 我 想 休息 一下 . +I made a bet that she would win the game . 我 賭 她 贏 這 比賽 . +We can see Mt . Fuji clearly today . 今天 我們 可以 清楚 地 看到 富士山 . +Can we do it ? 我们 能 做到 吗 ? +This is the house I lived in when I was young . 这 是 我 年轻 时候 住 的 房子 . +He really likes baseball . 他 非常 喜欢 棒球 . +I did not meet anyone there . 我 在 那裡 沒 遇見 任何人 . +He is always forgetting things . 他 總是 忘記 事情 . +Everybody knows his name . 每個 人 都 知道 他 的 名字 . +We understand . 我们 明白 . +The bus will take you to the center of the city . 巴士 会 把 你们 带到 市中心 . +I would like to go home now . 我 現在 想 回家 了 . +Everyone but Tom knew that he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +I will finish my homework by nine . 我 會 在 九點 前 完成 我 的 作業 . +Tom , you have got to get up . 湯姆 , 你 必須 起床 了 . +Do you have a cough ? 你 咳嗽 嗎 ? +Tom never should have tried doing that by himself . 汤姆 从来不 应该 尝试 自己 一个 人 做 那些 . +Have a pleasant journey . 旅途愉快 ! +I think that you ought to apologize to her . 我 認為 你 應該 跟 她 道歉 . +He lives across the street from us . 他 住 在 我們 街 對 面 . +You 'd better not go . 你 最好 不要 去 . +I took it for granted that she would come to our wedding . 我 理所当然 地 认为 她 会 参加 我们 的 结婚典礼 . +She is not as young as she looks . 她 没 她 看上去 那么 年轻 . +Are you over 18 ? 你 有 18 歲 了 嗎 ? +Tom took off his wedding ring . 汤姆 拿掉 了 他 的 婚戒 . +Are those two going out ? 那 兩個 要 出去 嗎 ? +I trust him . 我 信赖 他 . +Tom , I want you to handle this one . 汤姆 , 我 想要 你 来 操作 这 一个 . +The leaves of the trees in the garden have turned completely red . 花园里 树上 的 叶子 已经 完全 变红 了 . +Do you know much about art ? 你 對 藝術 知道 得 多 嗎 ? +I am not afraid of dying . 我 不怕死 . +There is a cat in the kitchen . 廚房 裡有一 隻 貓 . +I go to bed at eleven . 我 十一点 上床 . +Tom asked Mary to stop the car . 湯姆 讓 瑪麗 停住 車 . +I can not find my ticket . 我 找 不到 我 的 票 . +Mother was busy getting ready for dinner . 母親 正忙 著 準備 晚餐 . +Have a good Christmas . 祝您 有 一個 愉快 的 聖誕節 . +I have won first prize ! 我 贏 得 了 第一名 ! +What is new ? 有 什么 新鲜事 吗 ? +Many TV programs have a bad influence on children . 許多 電視 節目 對 兒童 有 不良 的 影響 . +Can you name one of their songs ? 你 能够 说出 一首 他们 的 歌 的 名字 吗 ? +If you are happy , I am happy . 如果 你 高興 , 我 就 高興 . +I think we should lower the price . 我 觉得 我们 得 调低 价格 . +He would not agree to our proposal . 他 不 同意 我們 的 建議 . +English is by far the most widely @-@ spoken language in the world . 英語 是 目前 在世界上 使用 最 廣泛 的 語言 . +Tom says Mary was not tired . 湯姆 說 瑪麗 不累 . +I have a bad headache today . 今天 我 头痛 欲裂 . +I am sure Tom can not swim . 我 确定 汤姆 不会 游泳 . +He believes that he can prove it . 他 相信 他 能 证明 它 . +Do you have a cell phone ? 你 有 手機 嗎 ? +Welcome to our home . 欢迎 来到 我们 家 . +He acted like a lunatic . 他 表现 的 像 个 疯子 . +I saw Tom . 我 看見 湯姆 了 . +She seemed to have been ill . 好像 她 病 了 . +I have to go to the toilet . 我 要 去 上 廁所 . +I will reconsider the matter . 我 會 重新 考慮 此事 . +I can not remember any of it . 我 对 这些 都 没有 印象 . +I will fight to the death . 我会 战斗 至死 . +Do you have younger brothers ? 你 有 弟弟 嗎 ? +He talks as if he knows everything . 他 說 起 話 來 好像 他 什麼 都 知道 . +I 'd like an aisle seat , please . 請 給 我 靠 走道 的 位子 . +Tom told me not to open the envelope until my birthday . 汤姆 告诉 我 , 到 我 生日 那天 我 才能 打开 信封 . +We have many rainy days in June . 六月 下 了 很多 天 的 雨 . +I trust that I can see you again . 我 相信 我 能 再 見 到 你 . +Do you miss me ? 你 想 我 了 ? +I do not like living in the country . 我 不 喜歡 住 在 鄉下 . +She was busy with housework . 她 忙 於 家務 . +I grew up in Boston . 我 在 波士 頓 成長 . +Wherever she goes , she is well liked . 無論 她 去 哪裡 , 她 都 是 惹 人 喜愛 的 . +Do you believe there are ghosts ? 你 相信 鬼 存在 吗 ? +I got a shave and a haircut . 我 刮 了 鬍 子 並 理 了 髮 . +I hung the calendar on the wall . 我 把 日 曆 掛 在 牆 上 . +I wish he had attended the meeting . 要是 他 有 參加 這場 會議 就 好 了 . +Can I rest a bit ? 我 能 休息 一会儿 吗 ? +She ordered the book from London . 她 从 伦敦 订 了 这 本书 . +I keep the master copy under lock and key . 我 妥善 保管 原版 拷貝 . +Tom has a twin brother . Tom 有個 雙 胞胎 兄弟 . +I am the fastest runner . 我 是 最快 的 跑者 . +I belong to the swimming club . 我 是 游泳 社 的 成員 . +My problem is I do not trust you . 我 的 问题 是 我 不 信任 你 . +Tom needs to speak to Mary . 湯姆 需要 跟 瑪麗 說 話 . +How long did it take you to finish reading that book ? 你 看 完 這 本書 要 多少 時間 ? +This is a pencil . 這 是 一支 鉛筆 . +You are a real friend . 你 是 個 真正 的 朋友 . +Is this your daughter ? 這 是 你 的 女兒 嗎 ? +The man reading a paper over there is my uncle . 在 那儿 看 报纸 的 男人 是 我 叔叔 . +Tom and Mary stayed at a fancy hotel . 汤姆 和玛丽 入住 了 一家 高档 酒店 . +Birds sing . 鳥兒 歌唱 . +Their meeting was inevitable . 他們 的 相遇 是 必然 的 . +My mother gets up earlier than anyone else . 妈妈 起得 比 谁 都 早 . +There is a man at the door who wants to see you . 门口 有个 男人 想见 你 . +Tom did not show me anything . 湯姆 甚麼 也 沒 給 我 看 . +We are out of stock now . 我们 现在 缺乏 库存 . +Everyone knows of his affection for that dog . 每个 人 都 知道 他 对 那 狗 的 感情 . +Tom is drinking juice . Tom 正在 喝 果汁 . +I have put on two kilograms this summer . 这个 夏天 我 胖 了 两 公斤 . +He does not like tennis . 他 不 喜欢 网球 . +Tom is extremely romantic . 汤姆 非常 的 浪漫 . +I am reading a book now . 我 現在 正在 讀 一本 書 . +Everything is ready . 一切 就绪 . +Tom does not want to come . 汤姆 不想 来 . +I expect you to be punctual . 我 期待 你 能 準 時 . +I am fed up with English . 我 受够 英文 了 . +English is not easy , but it is interesting . 英语 不 容易 , 但 很 有意思 . +The police broke up the fight . 警察 驅散 了 這場 鬥 毆 . +I did not go to school yesterday . 昨天 你 没有 去 学校 . +There is no film in this camera . 這個 相機 裡 沒有 胶卷 . +Where is the vodka ? 伏特加 在 哪里 ? +Something must be wrong with the machinery . 這個 機器 一定 有什麼 地方 不 對 勁 . +Let is play baseball ! 讓 我們 來 打 棒球 吧 ! +Is anybody there ? 那边 有人 吗 ? +I had difficulty in solving this problem . 我 在 解決 這個 問題 上 有 困難 . +I do not know why you are here . 我 不 知道 你 為 甚麼 在 這裡 . +They have been married for ten years . 他們 已經 結婚 十年 了 . +Turn off the gas . 把 煤气 关 了 ! +I think that would be fun . 我 認為 那 會 很 有意思 . +Do you know what PKO stands for ? 你 知道 PKO 是 什么 意思 吗 ? +You can have this watch for nothing . 你 可以 免費 擁有 這 支 手 錶 . +I was embarrassed by what she said . 她 說 的 話 讓 我 覺 得 很 尷尬 . +Can I borrow your digital camera tonight ? 我 今晚 能 借 你 的 数码相机 吗 ? +Smoking is not permitted on the train . 不 允許 在 火車 上 吸煙 . +I like eggplant . 我 喜歡 茄子 . +Lonely people tend to be afraid of meeting others , which ensures they will always be lonely . 孤獨 的 人會 孤獨 , 是 因為 他 畏懼 他人 . +Can I carry this on the plane ? 我 能 把 这个 东西 带到 飞机 上 吗 ? +I took the children to school . 我 帶 孩子 們 去 上 學 . +He wants affection . 他 要 愛 . +I heard Tom was captured . 我 听说 汤姆 被捕 了 . +That was the best day of my life . 那 是 我 生命 中 最美 的 一天 . +My mother is reading a magazine . 我 媽媽 正在 讀 一本 雜 誌 . +Tom probably knows someone who can teach us French . 湯姆 應該 知道 有 誰 可以 教 我們 法文 . +She is very thoughtful and patient . 她 非常 周到 和 耐心 . +Follow that car . 跟上 那辆车 . +I had a nightmare . 我 做 噩梦 了 . +This is just for you . 這 是 只 給 你 的 . +I am not stupid . 我 不是 笨蛋 . +He is lazy . 他 很 懒 . +Are you picking me up at 7 tomorrow morning ? 你 明早 7 点 来 接 我 吗 ? +My sister is older than my brother . 我 姐姐 比 我 哥哥 大 . +She asked me for help . 她 向 我 求助 . +What is your hobby ? 你 的 爱好 是 什么 ? +He lost everything he owned . 他 失去 了 他 擁有 的 一切 . +I am so stupid . 我 真蠢 . +She has three brothers . 她 有 三个 兄弟 . +Some people felt that Tom is behavior was inappropriate . 一部分 人 感觉 Tom 的 行为 举止 不 太 合适 . +It makes no difference to me whether he comes or not . 他 来 不来 对 我 来说 没 区别 . +Tom is not dumb . 汤姆 不 傻 . +You should have done it earlier . It can not be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +What happened in the park ? 公園 裡 發生 了 甚麼 ? +That bicycle is too small for you . 那輛 腳 踏 車 對 你 來說 太小 了 . +Are your eyes open ? 你 睜 著 眼 嗎 ? +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Maybe next time . 也许 下 一次 吧 . +Imagination affects every part of our lives . 想像力 影响 着 我们 生活 的 各个方面 . +The area was quiet . 這 地區 很 安靜 . +Tom has lost his keys . 湯姆 遺失 了 他 的 鑰匙 . +A rabbit has long ears and a short tail . 兔子 有 长耳朵 和 短 尾巴 . +Tom knew what Mary had done . 湯姆 知道 瑪麗 做 了 甚麼 . +Tom says he is very rich . 湯姆 說 他 很 有 錢 . +May I ask how old you are ? 请问 您 老人家 高寿 ? +Why do not you go to sleep ? 你 怎么 不 睡觉 呢 ? +I am listening to music . 我 正在 听 音乐 . +She has been to Paris . 她 去过 巴黎 . +I am telling you the truth . 我 在 告訴 你 真相 . +The plane flew over the mountain . 這 架 飛機 飛越 了 這 座 山 . +You are always criticizing me ! 你 总是 批评 我 ! +I am making dinner . 我 准备 晚餐 . +Close your mouth . 闭上 你 的 嘴 . +This is my first time to visit Australia . 这 是 我 第一次 来 澳大利亚 +The students were for the most part from the West Coast . 大部分 的 學生 來 自 西海岸 . +They work really hard . 他们 工作 的 很 辛苦 . +You have not even asked me what I think . 你 甚沒 問 過 我 怎麼 想 . +You are a mean old man . 你 这个 吝啬 的 老头 . +He makes a living as a salesman . 他 當 推銷員 為 生 . +How many times a day do you look at yourself in the mirror ? 你 一天 照 几次 镜子 ? +You will get used to living here in no time . 你 很快 就 会 习惯 住 在 这里 . +I agree to your proposal . 我 同意 你 的 建議 . +How much is the tour per person ? 一個 人 的 旅費 多少 錢 ? +I do not drink coffee at all . 我 一点 咖啡 也 不 喝 . +Did he go to see Mary ? 他 去 看 瑪麗 了 嗎 ? +He grew up in a little village . 他 在 一個 小村 莊裡 長大 . +I will come back . 我会 回来 的 . +What a bizarre story ! 多么 荒唐 的 故事 ! +He swims better than I do . 他 游泳 游得 比 我 好 . +Why are you so worried ? 你 這麼 擔心 做 什麼 ? +I stayed with my uncle last week . 我 上週 跟 我 叔叔 住在一起 . +The train should be on time . 火车 应当 准点 到 . +We spent the entire day on the beach . 我們 一整天 在 沙灘 上 . +To live without air is impossible . 沒 有空 氣 生活 是 不 可能 的 . +It worried me that she looked pale . 她 虚弱 的 样子 让 我 捏了一把汗 . +What do you want it for ? 你 要 它 干什么 ? +Did you watch TV tonight ? 你 今晚 看電視 了 嗎 ? +We enjoy reading books . 我们 喜欢 阅读 书籍 . +Tom did not want to do that . 湯姆 不想 去 做 那件事 . +It is getting cloudy . It may rain soon . 雲 愈來愈 多 , 可能 快 下雨 了 . +The boy enjoyed painting a picture . 這個 男孩 喜歡 繪畫 . +I am thinking of going abroad . 我 在 考慮 出國 . +I have been in Japan for two months . 我 在 日本 已經 兩個 月 了 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Is this book yours ? 這 是 你 的 書 嗎 ? +I have to cook dinner today . 我 今天 要 准备 晚饭 . +I do not remember seeing the letter , but perhaps I read it . 我 不 記得 我 看 過 這 封信 , 但 或許 我 讀 過 它 . +Any student can answer that question . 任何 學生 都 可以 回答 這個 問題 . +Do you need help ? 你 需要 帮助 吗 ? +Would you mind closing the window ? 你 介意 我 關窗 戶 嗎 ? +May I try it on ? 我 能 试一下 吗 ? +What goes up must come down . 会 起 必 会 落 . +Let me make you some tea . 讓 我 給 你 沏茶 . +He was willing to help others . 他 願意 幫助 別人 . +Prices have been climbing steadily . 價格 一直 在 穩定 地 攀升 . +Why can not we go and see Tom ? 為 甚麼 我們 不能 去 看 湯姆 ? +I have always fed my dogs in the early evening . 每个 傍晚 我 都 会 喂 我 的 狗狗 们 . +How did your journey begin ? 你 的 旅行 是 怎么 开始 的 ? +I like potatoes . 我 喜歡 土豆 . +Did you bring them ? 你 把 它们 带来 了 么 ? +Tom studied French . 汤姆 学习 了 法语 . +Mom , can I go swimming ? 妈妈 , 我 能 去 游泳 吗 ? +I have a thorn in my finger . 我 的 手指 頭 有 一根 刺 . +I watched TV this morning . 我 今天 早上 看 了 电视 . +From now on , try harder . 從 現在 起 , 更加 努力 . +Is there anything you can not do ? 有 你 不能 做 的 事 吗 ? +It is difficult to give up smoking . 戒烟 难 . +Well , let is get going ! 好 吧 , 讓 我們 出發 吧 ! +I often slept on that bench when I was homeless . 当 我 无家可归 的 时候 , 我 常 在 那 张 长椅 上 睡觉 . +They only sell women is shoes here . 这里 只 卖 女鞋 . +Grammar is a very complex thing . 语法 是 很 复杂 的 . +Write it down before you forget it . 在 你 忘 記 之前 把 它 寫 下來 . +Wo not you come over to my place ? 你 不 會 來 我家 嗎 ? +We have almost finished our work . 我們 幾乎 完成 了 我們 的 工作 . +My apartment is near here . 我 的 公寓 在 這 附近 . +I arrived in London . 我 到 達 倫敦 了 . +The letter was written by Tom . 這 信 是 湯姆 寫 的 . +Tom is working on a new novel . 汤姆 正 致力于 一部 新 小说 . +How much do you love me ? 你 有 多 爱 我 ? +I almost laughed out loud . 我 差點 大聲 笑 了 出來 . +Mary arrived at the hospital . 瑪麗 到 了 醫院 . +I wrote a letter asking him to return a bit earlier . 我 写 了 封信 , 叫 他 早点 回 . +Why is he here ? 为什么 他 在 这儿 ? +Please show your ticket . 请 出示 您 的 票子 . +You guys looked mad . 你们 疯 了 吧 +What do you want for Christmas ? 想要 什么样 的 圣诞节 礼物 呢 ? +My father made me a delicious lunch . 我 父親 為 我 做 了 一頓 美味 的 午餐 . +Do you mind if I turn off the light ? 您 介 不介意 我 把 灯 关了 ? +I want to retire soon . 我 想 早點 退休 . +She kept various kinds of pets . 她 养 各种 不同 的 宠物 . +I saw a dog swim across the river . 我 見 過 狗 游泳 渡河 . +Please remind me to mail the report tomorrow . 请 提醒 我 明天 把 报告 寄 了 . +Do you know the boy in the picture ? 你 认识 画 里面 的 男孩 吗 ? +Who was playing ? 誰 在 玩 ? +What on earth are you talking about ? 你 到底 在 談 什麼 ? +The price of rice has fallen . 米价 下跌 了 . +I knew I was going to win . 我 知道 我会 赢 . +I am only thinking of you . 我 只 想到 你 . +Carelessness can lead to a serious accident . 粗心大意 可能 導致 嚴重 的 事故 . +Hemingway enjoyed big game hunting in Africa . 海明威 喜歡 在 非洲 的 大狩 獵 . +I would like to talk about your situation . 我 想 談 談 你 的 情況 . +Foreigners are interesting , are not they ? 外国人 真 有意思 , 不是 吗 ? +See you again next Monday . 下週 一再 見 . +" What should I do ? " I said to myself . “ 我 该 做 什么 呢 ? ” 我 自言自语 道 . +He wrote to his parents . 他 寫信 給 他 的 父母 . +Give this book to whoever wants it . 把 這 本書 給 想要 的 人 . +Please close the door quietly . 請 安靜 地 關門 . +I have not finished my homework yet . 我 还 没 做完作业 . +I go to the library two or three times a week . 我 一週 去 圖書館 兩 、 三次 . +We had a chat for a while . 我們 聊 了 一會兒 . +Do it as soon as possible . 尽早 做 . +My father is shaving in the bathroom . 我 爸爸 正在 浴室 裡 刮 鬍 子 . +He is just my age . 他 和 我 同岁 . +I really do not sing . 我 真的 不会 唱 . +Our eyes take time to adjust to the darkness . 我们 的 眼睛 需要 时间 来 适应 黑暗 . +Tom laughed . 汤姆 笑 了 . +When was she born ? 她 是 什么 时候 出生 的 ? +He likes math , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +Do you hate me ? 你 讨厌 我 吗 ? +I should stop procrastinating . 我 做事 该 果断 . +I wish I were a good singer . 但愿 我 是 一个 好 歌手 . +He does not like us . 他 不 喜欢 我们 . +The most logical place to keep your shoes is near the door . 最 合 逻輯 的 放 鞋 處 是 門口 附近 . +What are you looking at ? 你 在 看 什么 ? +This medicine does not have side effects . 这 药 没有 副作用 . +I am seeing her this evening . 我 打算 今晚 和 她 约会 . +I really agree with you . 我 非常 同意 你 . +He found the box under the table . 他 在 桌子 底下 發現 了 這個 盒子 . +I want to ask you some questions about Tom . 我 想 问 你 一些 关于 汤姆 的 问题 . +I came to warn you not to do that . 我 来 警告 你 别 那样 做 . +My parents objected to my studying abroad . 我 父母 反對 我 出 國留學 . +Why do not you give it another try ? 你 為 什麼 不再 試 一次 ? +I want to travel around the world . 我 要 環遊 世界 . +She insisted that I should see the doctor . 她 坚持 让 我 去 看 医生 . +I will call you up tomorrow . 明天 我 給 你 打 電話 . +I take my health seriously . 我 重視 自身 的 健康 . +She wants to attend the party . 她 想 參加 這個 派 對 . +Tom bought a camera at a store not too far from here . Tom 在 离 这里 不远 的 一家 商店 里 买 了 一台 相机 . +You have got to be joking ! 你 一定 是 开玩笑 ! +I did not notice the light turn red . 我 沒有 注意 到 燈 變 紅色 了 . +I go by the nickname " Itch . " 我 用 我 的 暱 稱 " Itch " . +I did not expect to see you at a place like this . 我 都 没 想 过 会 在 这里 碰见 你 . +I work every day except for Sundays . 除了 星期天 我 每 一天 都 工作 . +How much is your monthly gas bill ? 你 每個 月 的 瓦斯 費 多少 錢 ? +I think I know who stole your watch . 我 認為 我 知道 是 誰 偷 了 你 的 手 錶 . +She is not as old as Mary . 她 沒 有 瑪麗 年紀 大 . +I had a good sleep last night . 我 昨晚 睡 得 很 好 . +I majored in philosophy at my university . 我 在 大學 主修 哲學 . +What are you going to do today ? 你 今天 要 做 什麼 ? +Tom is a violin teacher . 湯姆 是 小提琴 教師 . +We had a mild winter last year . 去年 冬天 很 暖和 . +I have lost one of my folders . 我 丢 了 我 的 一个 文件夹 . +Give me that book . 把 书 给 我 . +I should not have sold my house . 我 不该 把 我 的 房子 卖 了 的 . +I am very hungry now . 我 現在 非常 餓 . +I fell asleep while reading a book . 我 看书 的 时候 睡着 了 . +You do not need to be there . 你 不必 去 那裡 . +Here is your bag . 你 的 袋子 在 這裡 . +Who are those guys ? 那些 家伙 是 谁 ? +What are you reading ? 你 在看 什麼 ? +She went for a walk . 她 去 散步 了 . +I feel like going to the movies . 我 想 去 看 電影 . +My father likes traveling by air . 我 父親 喜歡 搭 飛機 旅行 . +Let me help you with your luggage . 讓 我 幫 您提 行李 . +See you tomorrow at school . 明天 在 學校 見 . +It will not make any difference . 这 没有 任何 区别 . +Tom can do so much better than me . 湯姆 可以 比 我 做得好 很多 . +Are you able to play organ ? 你 能 演奏 管风琴 吗 ? +Stop bothering me . 不要 烦 我 . +Tom waved . 汤姆 挥手 了 . +What are you eating ? 在 吃 什么 呢 ? +There is nothing more painful than losing one is child . 沒有 比 失去 孩子 更 讓 人 悲傷 的 事 . +Something weird is going on . 正 有 什么 奇怪 的 事情 发生 着 . +Do not let her go out after dark . 天黑 後 不要 讓 她 出門 . +I do not want Tom seeing this . 我 不想 讓 湯姆 看見 這個 . +He might change his mind . 他 可能 會 改變 心意 . +It is not polite to point at others . 用 手指 別人 是 不 禮貌 的 . +Fools rush in where angels fear to tread . 天使 畏懼 處 , 愚人 敢 闖入 . +He was accused of stealing money . 他 被 指控 偷 錢 . +My notebook is pink . 我 的 笔记本 是 粉色 的 . +She helped me to clear snow away . 她 幫 我 清除 積雪 . +My cholesterol is high . 我 的 胆固醇 很 高 . +He was able to solve the problem . 他 能 解決 這個 問題 . +I thought that Tom and Mary were crazy . 我 本 以为 汤姆 和玛丽 疯 了 呢 . +I 'd bought it the week before . 我 一周 前 已經 買 了 . +I go to church on Sunday . 周日 我 去 做礼拜 . +A couch potato is something that I do not want to be . 我 不想 成為 整天 泡 在 沙發 上 看 電視 的 人 . +He is old enough to understand it . 他 年 紀夠 大 可以 瞭解 它 . +Optimists see opportunities in disasters while pessimists find disasters in every opportunity . 樂 觀者 在 災禍 中 看到 機會 , 悲觀 者 在 機會 中 看到 災禍 . +I attempted to solve the problem . 我 試圖 解決 這個 問題 . +I have not changed . 我 没 改变 . +I think we should not let Tom do that again . 我 認為 我們 不該 讓 湯姆 再 那麼 做 . +What is so fun about taking pictures of trains ? 拍 火车 的 照片 什么 的 , 有 什么 好玩 的 呀 ? +Tom knows Mary was here . 湯姆 知道 瑪麗 在 這裡 . +Wait for me . 等等 我 . +Children like chocolate . 孩子 们 喜欢 巧克力 . +Do not think about it now . 現在 別 想 這事 . +How soon can they be delivered ? 它们 什么 时候 能 被 送到 ? +My vacation went by quickly . 我 的 假期 一下 就 過 完 了 . +Have you already eaten supper ? 你 已经 吃晚饭 了 吗 ? +I guess I have not made myself clear . 我 想 我 沒有 把 話 說 清楚 . +I want another beer . 我 想 再 来 一杯 啤酒 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 運動 . +Keep in mind that you must die . 你 要 想到 你 必须 死 . +I am just about done . 我 差不多 完成 了 . +After the revolution , France became a republic . 革命 之 後 , 法國 成為 了 一個 共和 國 . +He has a cold . 他 着凉 了 . +Tomorrow I have to go shopping . 明天 我 得 购物 . +The table is covered with powder . 桌上 布满 了 粉末 . +Somebody was murdered . 有人 被 謀殺 了 . +I got lost in the forest . 我 在 树林 里 迷路 了 . +He made his way to the minister . 他 設法 當上 了 部長 . +The warnings were ignored . 警告 被忽视 . +Are you talking to me ? 你 在 跟 我 说话 吗 ? +She plays the violin very well . 她 小提琴 演奏 得 非常 好 . +Is anyone absent today ? 今天 有人 缺席 嗎 ? +I would like to meet your older sister . 我 想 認識 你 姐姐 . +Tom can not go out because he has a lot of homework . 汤姆 因为 有 很多 作业 不能 外出 . +We have got to get you some help . 我们 不得不 给 你 一点 帮助 了 +What do you eat for breakfast ? 你 早餐 吃 什麼 ? +Your letter made me happy . 你 的 來 信使 我 快樂 . +We promised to stand by him in case of trouble . 我們 承諾 萬一 他 有 麻煩 的 時候 支持 他 . +Tom wished he had not won . 汤姆 希望 他 没有 赢 . +My camera can shoot high @-@ definition video . 我 的 录像机 可以 拍 高清 视频 . +Money rules the world . 金钱万能 . +This is Tom is car . 這 是 湯姆 的 車 . +She is wearing a hat . 她 戴 著 一頂 帽子 . +I need to take notes . 我 需要 作筆 記 . +You lied to me , did not you ? 你 對 我 說 了 謊 , 沒有 嗎 ? +I made my way through the crowd . 我 穿 過 了 人群 向前走 . +I am amazed at his rapid progress in English . 我 被 他 英语 的 快速 进步 惊呆 了 . +I found the test difficult . 我 觉得 这个 测试 很 难 . +The child has a case of chicken pox . 这 孩子 有 水痘 的 症状 . +I wish you the best of luck . 祝 你好 運 . +It is not too late for you . 对 你 来说 还 不 太晚 . +Those trains run every three minutes . 這些 火車 每 三分 鐘 發車 . +What do you make of his attitude towards us these days ? 你 做 了 什麼 讓 他 這些 日子 用 這種 態度 對待 我們 ? +My grandfather sometimes talks to himself when he is alone . 我 祖父 一个 人 的 时候 , 有时 会 自言自语 . +Long time , no see . I hear that you have changed your job again . 好久不见 . 听说 你 又 换 工作 了 ? +Being late is always better than not showing up at all . 迟到 总 比 不到 好 . +She was appointed chairperson . 她 被 任命 為 主席 . +How much does this watch cost ? 这 只 表 多少 钱 ? +Hey , relax . 嘿 , 放松 点 . +This chair is uncomfortable . 这个 椅子 坐 着 不 舒服 . +Swimming strengthens the legs . 游泳 使 腿部 强健 . +I am cold . 我 冷 . +There are only three women in this class . 這個 班 只有 三個 女生 . +I need to find out when we need to be there . 我 需要 知道 我们 什么 时候 需要 到 那里 . +You are not a coward . 你 不是 个 懦夫 . +I just talked to the person in charge . 我 刚 跟 主管 人 谈 过 . +I am here to help you . 我 來 這裡 幫 你 . +Tell Tom I need to borrow his car . 告訴 湯姆 我 需要 借 他 的 車 . +The longer I stayed in Paris , the more I liked it . 在 巴黎 待 得 越 久 , 我 就 越 喜欢 巴黎 . +I am very happy . 我 很快 樂 . +Do you belong to any clubs ? 您 隶属 哪家 俱乐部 吗 ? +He began to feel afraid . 他 开始 害怕 了 . +I would not buy that for Tom . 我 不 會 給 湯姆 買 那 東西 . +Tom has low blood pressure . 汤姆 有 低血压 . +Would you please open the door ? 請 你 開門 好 嗎 ? +I do not think that it is necessary . 我 想 没 这个 必要 . +These apples are very big . 这些 苹果 很大 . +Have you ever shaved your legs ? 你 剃 过 腿毛 吗 ? +If you need my advice , I 'd be glad to give it to you . 如果 你 需要 我 的 建议 , 我 很 愿意 告诉 你 . +I got up at seven this morning . 我 今天 早上 7 点 起床 . +Tom does not want to talk about it . 汤姆 不想 谈 这件 事 . +People usually do not like what they do not understand . 人们 通常 不 喜欢 他们 不 理解 的 事物 . +I think Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +Rabbits have long ears and short tails . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +It took us half an hour to set up the tent . 搭 帳 篷 花 了 我們 半 小 時 . +The matter is all settled . 這個 問題 都 被 解決 了 . +Please send it to me by fax . 请 把 它 传真 给 我 . +All you have to do is say the word , and I will leave . 你 只要 说句话 , 我 就 走 . +This is Tom is umbrella . 這 是 湯姆 的 雨 傘 . +He made himself heard across the room . 他 讓 對面 的 房間 都 能 聽到 他 的 聲音 . +We got to the station at six . 我們 六點鐘 到 了 車站 . +Are you Tom is mother ? 你 是 湯姆 的 母親 嗎 ? +I will get in touch with you soon . 我 會 很快 跟 你 聯絡 . +Like it or not , we have to attend that meeting . 不管 喜 不 喜歡 , 我們 都 得 參加 那個 會議 . +Here is your book . 這 是 你 的 書 . +Please send me your photo . 請 把 您 的 照片 發給 我 . +Ten teams competed for the prize . 十支 隊伍 競逐 獎項 . +She is more pretty than beautiful . 說 她 美 不如 說 她 可愛 . +Tom sat on a tree trunk . 汤姆 坐在 了 树干 上 . +He became more obstinate as he grew older . 他 年紀 越 大 變 得 越 頑固 . +It rarely snows in this area . 这 片 区域 很少 下雪 . +Do you take pride in your work ? 你 为 你 的 工作 感到 自豪 吗 ? +A man can not escape his past . 人 無法 逃避 過去 . +We have a special connection . 我們 有 特殊 聯 繫 . +That is an interesting idea . 那 是 个 有趣 的 主意 . +I know who lives in this house . 我 知道 谁 住 在 这 房子 里 . +They will not find Tom . 他们 不会 找到 汤姆 . +This is my younger sister . 这 是 我 的 妹妹 . +God helps those who help themselves . 自助 者 天助 . +I do not mind being criticized when I am wrong . 要是 我 说 错话 被 人 议论 , 我 是 不管 的 . +Take your time . There is no rush . 慢慢 來 , 不急 . +I asked for my father is help . 我 請 我 父親 幫忙 . +In a way you are right , but I still have doubts . 在 某种程度 上 你 是 对 的 , 但 我 还是 有 疑问 . +Are you going outside ? 你 去 外面 吗 ? +No problem . 没 问题 . +Since he is old , this task must be difficult for him . 他 老 了 , 所以 这 任务 对 他 来说 一定 很 难 . +Everyone deserves a second chance . 每個 人 都 值得 被 給予 第二次 機會 . +Can I do anything to help ? 我 能 幫 上 忙 嗎 ? +Maybe you are right . 也许 您 有 道理 . +I want to breathe some fresh air . 我 想 呼吸 一下 新鮮 空氣 . +Australia is smaller than South America . 澳洲 比 南美洲 小 . +Tom likes to knit . 湯姆 喜歡 編織 . +I saw it with my own eyes . 我 親 眼看 見 了 . +Call the police . 报警 ! +I wonder if what I wrote was correct . 我 在 想 我 寫 的 對不對 . +The smell of food made me hungry . 食物 的 味道 讓 我 餓 了 . +The apple does not fall far from the tree . 蘋果 掉落 的 地方 不 會 離 樹 幹 很遠 . +Maybe you are working too hard . 可能 你 工作 得 太 拼命 ? +You need to register by Monday . 你 需要 在 星期一 前 註 冊 . +You can always count on Tom . 你 可以 永遠 信賴 湯姆 . +She got through her work before five . 她 在 五點鐘 前 做 完 了 她 的 工作 . +How did you enjoy the party ? 你 在 派 對 上 玩 得 開心 嗎 ? +When we started out , our band could only find small clubs in small cities that would hire us . 当 我们 起步 时 , 我们 的 乐队 只能 找 小 城市 里 的 小 俱乐部 雇 我们 . +You will be answering the phones . 你 要 接 電話 . +I do not know how to express my thanks . 我 不 知道 如何 表達 我 的 謝意 . +She was satisfied with the new dress . 那条 新 裙子 让 她 很 满意 . +Do you know why spring rolls are called spring rolls ? 你 知道 春卷 为什么 叫 春卷 吗 ? +He often plays the guitar . 他 常常 彈 吉他 . +She took my hand . 她 握住 我 的 手 . +I am not at all tired . 我 根本 不累 . +My grandfather gets up early . 我 的 祖父 早起 . +Tom is now a software engineer . 湯姆 現在 是 軟體 工程 師 . +I can not put up with the heat any longer . 我 受不了 这 大热天 了 . +Do you know what happened ? 你 知道 发生 了 什么 事情 吗 ? +She taught me how to write a poem . 她 教我如何 写诗 . +The old man breathed his last . 老人 咽下 了 最后 一口气 . +She is going to Sendai this spring . 她 今年 春天 要 去 仙台 . +They made us work all night . 他們 要 我們 整夜 工作 . +She is proud that her son has become a doctor . 她 为 自己 的 儿子 成为 医生 而 自豪 . +What is your problem ? 你 有 什么 问题 ? +She gave us some useful information . 她 給 了 我們 一些 有用 的 訊息 . +My mom does not speak English very well . 我 妈妈 英语 说 得 不太好 . +He could not run very fast . 他 無法 跑 得 非常 快 . +It is difficult to quit smoking . 戒烟 难 . +How are things at school ? 学校 怎么样 ? +A few years ago , our room had little furniture in it . 幾 年前 , 我們 的 房間 裡 沒有 什麼 家具 . +All their efforts were in vain . 他們 的 努力 都 白 費 了 . +Tom turned red . 汤姆 脸红 了 . +Tom is a very good person . 汤姆 是 个 很好 的 人 . +A nurse took my temperature . 一個 護士 量 了 我 的 體溫 . +After a storm comes a calm . 暴風 過 後 是 寧靜 . +India gained independence from Britain in 1947 . 印度 於 1947 年 脫離 英國 獲得 獨立 . +My uncle gave me the watch . 我 叔叔 給 了 我 這 支 錶 . +I got a good night is sleep . 我 睡 了 个 好 觉 . +She was crying as she answered . 她 邊 哭 邊 回答 . +Do not intrude on her privacy . 不要 侵犯 她 的 隐私 . +We know what we are doing . 我們 知道 我們 在 做 什麼 . +He disguised himself as a woman . 他 把 自己 化裝 成 一個 女人 . +May I go out to play ? 我 可以 出去玩 嗎 ? +I worked on the farm all day . 我 整天 在 農場 上 工作 . +We divided the money between us . 我們 平分 這筆 錢 . +How should I know ? 我 怎麼 知道 ? +Please take your seat . 请 坐 . +I have never lived on a farm , but both of my parents grew up on farms . 我 从 没有 住 在 农场 , 但 我 的 父母 都 在 农场 长大 . +She took care of my dog . 她 照顧 了 我 的 狗 . +We are anxious about her safety . 我们 为 她 的 安全 担忧 . +Do not touch these . 不要 碰 這些 . +We ate curry rice last night . 我們 昨晚 吃 了 咖哩 飯 . +Are you a student ? 你 是 學生 嗎 ? +Is there any mail for me today ? 今天 有 給 我 的 郵件 嗎 ? +Tom made a list of places he wants to visit . 汤姆 把 他 想去 的 地方 列成 了 一张 清单 . +How long do you plan on staying in this country ? 你 打算 在 这个 国家 待 多久 ? +I am watering the flowers . 我 在 澆 花 . +On hearing the news , she fainted . 听到 消息 , 她 晕倒 了 . +I was not busy last week . 我 上周 不忙 . +We are both here for the same reason . 我們 來 這裡 是 為了 同一 個 原因 . +Tom gritted his teeth . 汤姆 咬紧牙关 . +This river is dangerous for children to swim in . 孩子 在 这条 河里 游泳 太 危险 了 . +I am 30 years old now . 我 现在 30 岁 了 . +Many workers were laid off at that plant . 那个 工厂 开除 了 很多 工人 . +Tom sat beside Mary . 汤姆 坐在 玛丽 旁边 . +You must get this homework finished by the day after tomorrow . 你 必須 在 後 天 以前 完成 回家 作業 . +Mary set the basket on the table . 瑪麗 把 籃子 放在 桌子 上 了 . +If I had known that you were here , I would have come at once . 如果 我 早 知道 你 在 这儿 的话 , 我 马上 就 来 了 . +He is sleeping like a baby . 他 正 睡着 , 像 个 婴儿 一样 . +I will lend you this dictionary . 我 會 借 給 你 這 本 字典 . +Should I help you ? 我 该 帮 你 吗 ? +" What is going on in the cave ? I am curious . " " I have no idea . " “ 洞 里 发生 了 什么 ? 我 很 好奇 . ” “ 我 一点 也 不 知道 . ” +That car is quite new . 那辆车 十分 新 . +We had a heavy rainfall last night . 昨晚 雨勢 很大 . +I did not think Tom would be scared . 我 没想到 汤姆 会 害怕 . +The world is changing every minute . 世界 每一分 鐘 都 在 改變 . +I am a man . 我 是 个 男人 . +Tom made fun of me . 汤姆 拿 我 开心 . +They were so young . 他們 是 那麼 年輕 . +Tom did not understand what Mary really meant . 汤姆 不 知道 玛丽 真实 的 意思 . +Tom has no time . 汤姆 没有 时间 . +The victim died at a hospital in Boston . 受害者 在 醫院 裡 死去 了 . +He spoke for one hour . 他 讲 了 一 小时 . +She is getting married this fall . 她 今年 秋天 要 結婚 . +He is very kind . 他 非常 親切 . +She refused my offer to help her . 她 拒絕 讓 我 幫助 她 . +Tom says it is quite important . 汤姆 说 它 十分 重要 . +Could I see you a minute , please ? 讓 我 看 你 一會兒 好 嗎 ? +Did you play tennis yesterday ? 你 昨天 打网球 了 吗 ? +Would you like tea or something ? 你 需要 茶 或者 别的 什么 吗 ? +Whose turn is it ? 輪到 誰 了 ? +This room has two closets for clothing . 這 房間 有 兩個 衣櫥 . +He has seven sons . 他 有 七个 儿子 . +Look what I made for you . 看 我 为 你 做 了 什么 . +What are you going to do this weekend ? 你 這個 週末 要 做 什麼 ? +Do you know whether or not it will rain tomorrow ? 您 是否 知道 , 明天 会 不会 下雨 ? +That job paid well . 这份 工作 工资 很 高 . +Tom has no money . Tom 沒有 錢 . +I will wait a day or two . 我 會 等 一兩天 . +He regrets not having worked harder at school . 他 后悔 在校 时 没 用功读书 . +Tom wanted to see Mary . 湯姆 想 見 瑪麗 . +I found a good place to buy fruit a couple of days ago . 前 几天 我 发现 了 一个 买 水果 的 好 地方 . +It is easy to answer the question . 这个 问题 很 容易 回答 . +She gave me this compact disc . 她 給 了 我 這個 光碟 . +I am sorry to trouble you . 我 很 抱歉 給 你 添 麻煩 了 . +He could not get the job . 他 無法 得到 這份 工作 . +I do not know anything about his past . 我 不 知道 任何 有關 他 過去 的 事 . +I did not mean that . 我 沒有 那個 意思 . +You 'd better go back home now . 你 現在 最好 回家 . +Can I try on this jacket ? 我 可以 試穿 這件 外套 嗎 ? +Who will take care of the baby ? 誰 將 照顧 這個 嬰兒 ? +He set fire to the school building . 他 放火 燒 了 校舍 . +Please put the book on the shelf . 請 把 書 放在 架子 上 . +My brother will not be at home tomorrow . 我 的 兄弟 明天 不 在家 . +I lost my notebook today . 今天 我 的 筆記 本 掉 了 . +My father put a fence around the garden . 我 父亲 在 花园 边上 装 了 篱笆 . +That is an exception . 那 是 例外 . +I am never at home on Sundays . 我 周日 从来 都 不 在家 . +That is mine . 那 是 我 的 . +He relies on his wife financially . 他 经济 上 依靠 他 的 太太 . +My aunt brought me some flowers . 我 阿姨 給 我 帶來 了 一些 花 . +More often than not , she had to go in person . 很多 時候 她 要 親自 去 . +Tom had a decision to make . 湯姆 要 做 個 決定 . +I appreciate your cooperation . 我 感謝 您 的 合作 . +These machines are not working now . 这些 机器 目前 不 运转 . +I am very tired right now . 我 現在 很 累 . +Tom said he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +I 'd like you to have a blood test . 我 希望 你 做 血液 檢查 . +You make me happy . 你 讓 我 快樂 . +He can drive a car . 他 會 開車 . +I can not explain it either . 我 也 无法解释 . +My whole family is from Boston . 我 全家 來 自 波士 頓 . +Everyone knows that Bell invented the telephone . 任何人 都 知道 贝尔 发明 了 电话 . +He is afraid of his own shadow . 他 怕 自己 的 影子 . +He is opposed to racial discrimination . 他 反对 种族歧视 . +She is already sleeping . 她 已经 睡下 了 . +Half a loaf is better than none . 聊勝於無 、 有 比 沒有 好 . +Shortly after the accident , the police came . 事故 發生 後 不久 , 警察 來 了 . +I wish I had not bought this . 我 希望 我 沒 買 這 東西 . +I want a good dictionary . 我 想要 本好 词典 . +I made a paper plane . 我 造 了 架 纸飞机 . +Real friendship is more valuable than money . 真正 的 友谊 比 金钱 更 有 价值 . +See you at the party . 在 派 對 上見 . +Put your weapon down . 把 你 的 武器 放下 . +During the Depression in the 1930 is , many wealthy people lost everything in the stock market crash . 在 十九世纪 三十 年代 的 大 萧条 时期 , 许多 富人 在 股市 崩盘 中 失去 了 一切 . +What fruit do you like the best ? 您 最 喜歡 什麼 水果 ? +What is the population of India ? 印度 的 人口 有 多少 ? +She acknowledged that my statement was true . 她 承認 我 的 聲明 是 真實 的 . +The soldier gave water to me . 士兵 給 了 我 水 . +We do what we want to do . 我們 做 我們 想 做 的 . +That should not be hard for you . 那 对 你 来说 应该 不难 . +She gave me access to her records . 她 允許 了 我 對 她 的 訪問 紀錄 . +How rude of you ! 你 真 粗 魯 ! +You must be back by 10 o 'clock . 你 必須 在 10 點 前 回來 . +You certainly play the piano well . 你 一定 鋼琴 彈 得 很 好 . +I am getting off at the next station . 我 會 在 下 一站 下車 . +Do you want this job or not ? 你 想 不 想要 這 工作 ? +The old houses were torn down to make room for a supermarket . 這棟 老房子 被 拆除 了 , 以 騰出 空間 給 超級 市場 . +While reading a book , I fell asleep . 我 看书 的 时候 睡着 了 . +Tom is plastered . 汤姆 醉 了 . +I think that is awful . 我 看 那 糟透了 . +Are you still cold ? 你 还 冷 吗 ? +How much money do you owe Tom ? 你 欠 湯姆 多少 錢 ? +When did you buy it ? 你 甚麼 時候 買 的 ? +Did you find anything interesting ? 你 找到 有趣 的 東西 了 嗎 ? +One language is never enough . 一種 語言 是 永遠 不夠 的 . +You are absolutely right . 你 完全 正確 . +As we went around the corner , the lake came into view . 当 我们 走 到 转角处 , 湖 就 映入 了 眼帘 . +The school will provide tents for us . 学校 会 提供 帐篷 给 我们 . +Cuff him . 把 他 铐 上 . +Are they actually friends ? 他們 真是 朋友 嗎 ? +I can not find my umbrella anywhere . 我 任何 地方 都 找 不到 我 的 傘 . +I vowed that I would never speak to her again . 我 發誓 再也 不 跟 她 說話 了 . +Do you have plans tonight ? 今晚 有 什么 计划 吗 ? +Please lock the door . 請 把 門鎖 上 . +Do not pry into the affairs of others . 不要 探听 别人 的 事 . +Tom is a native speaker of French . 汤姆 是 法语 母语 者 . +It cost me ten thousand yen to have my television set repaired . 把 我 的 電視機 修好 花 了 我 一萬 日元 . +It snowed from Monday to Friday . 雪 从 周 一下 到 周五 . +What is the total amount of money you spent ? 你 一共 花 了 多少 钱 ? +I went swimming in the river . 我 去 了 河裡 游泳 . +What do you call this insect in English ? 这种 昆虫 在 英语 中 叫 什么 ? +We hardly have time to eat breakfast . 我们 几乎 没空 吃 早饭 . +He is giving me a hard time . 他 跟 我 過不去 . +I arrived here yesterday . 我 昨天 到 這裡 的 . +She said she had been happy . 她 說 她 以前 很快 樂 . +I want to have this letter registered . 我 想要 用 掛 號 寄 這 封信 . +Dark clouds are a sign of rain . 乌云 是 下雨 的 征兆 . +I have so many ideas . 我 有 那麼 多 的 主意 . +Do not make fun of people . 不要 取笑 人 . +The school was established in 1650 . 这 所 学校 建于 1650 年 . +He is terrible at math . 他 的 数学 很 不好 . +He lost his way in the woods . 他 在 森林 中 迷了路 . +Come to my house this afternoon . 今天下午 到 我家 来 一趟 . +I barely escaped being hit by the truck . 我 差點 被 卡車 撞 上 . +Do you have any idea when the bank closes ? 你 知道 银行 什么 时候 关门 吗 ? +They have been here for an hour . 他們 已經 在 這裡 一個 小 時 了 . +I will give you this pendant . 我 會 給 你 這個 墜飾 . +Hold on . 坚持 . +She gave birth to a healthy baby . 她 生下 了 一個 健康 的 嬰兒 . +My children are twins . 我 的 孩子 是 雙 胞胎 . +Tom can not remember anything . 汤姆 什么 都 记不住 . +I will go by taxi . 我 坐 出租 車 去 . +Take a book and read it . 拿 本书 读 ! +How do you feel about the issue ? 你 對 這個 問題 有 甚麼 感受 ? +This book was easy . 這 本書 很 容易 . +Tom and Mary even always wear the same color clothes . 汤姆 和玛丽 甚至 经常 穿 同样 颜色 的 衣服 . +She felt like taking a walk . 她 想 去 散步 . +Please remember to mail the letter . 請 記得 把 信 寄出去 . +We need to leave . 我们 必须 走 了 . +There is a hole in your sock . 你 的 袜子 破 了 一个 洞 呀 . +Tom said he loved me . 汤姆 说 他 爱 我 . +Birds lay eggs . 鳥 下蛋 . +They are all innocent children . 他们 都 是 无辜 的 孩子 . +Tom is serving a life sentence . 汤姆 正在 服 无期徒刑 . +How much is this handkerchief ? 请问 这个 手帕 多少 钱 ? +Please show me around . 請 帶 我 到 處 看看 . +Why did not you turn up on Saturday ? 你 為何 週六 沒來 ? +Tom asked Mary who her boyfriend was . 汤姆 问 玛丽 她 的 男朋友 是 谁 . +She gave me a book for Christmas . 她 給 了 我 一本 的 書作 為 聖誕 禮物 . +My birthday falls on Sunday . 我 的 生日 在 星期日 . +That was the most interesting novel that I had ever read . 这 是 我 所 读 过 的 最 有趣 的 小说 . +Do not ask me anything . 什麼 都 別 問 我 . +She walked very carefully . 她 小心翼翼 地 走 . +I have eaten one apple . 我 吃 了 一個 蘋果 . +English is spoken in Australia . 在 澳洲 的 人 說 英語 . +What did you guys go see ? 你们 去 看 啥 了 ? +May I go to the movies tonight ? 我 今晚 可以 去 看 電影 嗎 ? +Tom did not have enough money to pay the rent . 汤姆 没有 足够 的 钱 付 租金 . +It is not good for a scientist to get emotional . 對 一個 科學家 來說 , 多愁善感 是 不好 的 . +The admission is ten dollars a person . 入場費 一個 人 10 美元 . +It is very cold . 非常 冷 . +My favorite sport is baseball . 我 最 喜歡 的 運動 是 棒球 . +Did you go to school yesterday ? 你 昨天 去 上 學 了 嗎 ? +It is difficult to give up smoking . 戒煙 很 難 . +What are your names ? 你們 叫 什麼 名字 ? +He is studying in the library now . 他 現在 在 圖書館 讀書 . +This is the only book I have . 这 是 我 仅 有 的 一 本书 . +They arrived here safely yesterday . 他們 昨天 平安 抵達 這裡 . +The fire alarm sounded . 火警 警报 响 了 . +We went swimming in the river . 我們 去 河裡 游泳 . +Would you care for more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Tom was bullied . 汤姆 被 欺负 了 . +I am staying home . 我 在家 裡 待著 . +Who did you speak with ? 你 和 谁 说话 呢 ? +I still do not know your name . 我 到 現在 還 是 不 知道 你 的 名字 . +" Is he going to swim tomorrow ? " " Yes , he is . " “ 他 明天 去 游泳 吗 ? ” “ 没错 ” +Children do not like to go out in the dark . 孩子 們 不 喜歡 摸黑 外出 . +This work is not necessarily easy . 这项 工作 未必 容易 . +He speaks both English and French . 他 會 講 英語 和法語 . +This zipper does not zip smoothly . 這 拉 鍊 卡卡 的 . +Tsunamis swept through rice fields and flooded the towns . 海嘯席 捲 稻田 , 淹沒 了 城鎮 . +Is there anything that I should not eat ? 有 什么 东西 是 我 不该 吃 的 吗 ? +He is a good lad . 他 是 個 好人 . +What do you say to taking a walk in the park ? 去 公园 散步 你 觉得 怎么样 ? +We will deal with this problem in Chapter 3 . 我们 在 第三章 讨论 这个 问题 . +The dog went away . 這 隻 狗 跑 走 了 . +You ought to have come to see me yesterday . 你 昨天 應該 來看 我 的 . +I doubt if he will come to school today . 我 懷疑 他 今天 是否 會來 上學 . +Listen carefully . 仔细听 着 . +Sorry , but can you show me the way to the next village ? 能 不能 麻烦 你 告诉 我 去 邻村 怎么 走 ? +Let is not discuss it . 我们 不要 讨论 它 . +My father will kill me . 我 爸会 杀 了 我 的 . +You used to be able to see the church from here . 你 以前 可以 從 這裡 看到 教堂 . +The Eiffel Tower is in the same city as the Louvre Museum . 埃菲尔铁塔 和 卢浮宫 在 同 一座 城市 . +I think that it is unlikely that Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Get out of bed ! 起床 ! +I am watching TV now . 我 正在 看电视 . +I need to know tomorrow . 我 明天 需要 知道 . +I was tired today so I went to bed early . 我 今天 累 , 所以 我 睡 得 早 . +I heard an unusual sound . 我 聽到 一個 不 尋常 的 聲音 . +An uncle of mine gave me some useful advice . 我 的 一个 叔叔 给 我 了 一些 有用 的 建议 . +This gives me renewed hopes . 这 给 了 我 新 的 希望 . +Have you heard from Tom ? 汤姆 那里 有 联系 过 你 吗 ? +He painted the door over white . 他 把 門 漆成 了 白色 . +How many books do you think you have read so far ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +Come and see me tomorrow . 明天 来 看看 我 . +You are quite forgetful . 你 很 健忘 . +I walked along the river . 我 沿着 河 走 了 段 路 . +If you hurry , you will catch up with him . 如果 你 快 一点 , 还 能 赶上 他 . +Even his servants despised him . 連 他 的 僕人 都 鄙視 他 +When do you want to go ? 你 什麼 時候 要 去 ? +I walked as far as the station . 我們 走到 跟 火車 站 那樣 遠 的 地方 . +He climbed Mt . Fuji . 他 爬 上 了 富士山 . +She laughed at the sight of his hat . 看到 他 的 帽子 , 她 笑 了 . +Did Tom break something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Are you meeting someone here ? 你 在 这里 是 要 见 谁 吧 ? +The surrounding area was very quiet . 周圍 的 地區 非常 安靜 . +I have been on vacation . 我 在 休假 . +I do not take any responsibility at all . 我 完全 不负 任何 责任 . +Tom did not actually see what happened . 湯姆 沒有 真正 看見 發生 了 甚麼 . +Do you deny that you went there ? 你 否認 你 去 了 那裡 嗎 ? +Scotland can be very warm in September . 蘇格蘭 在 9 月 可以 變 的 很 溫暖 . +Tom is not lying . 湯姆 沒有 說謊 . +You are very resourceful . 你 鬼点子 真多 . +We are all looking forward to seeing you and your family . 我们 都 期待 看到 你 和 你 的 家人 . +The movie received mixed reviews . 影片 得到 的 评价 褒贬不一 . +Bring the water to a boil . 把 水 燒開 . +His office is past the bank on your left . 经过 银行 , 左边 就是 他 的 办公室 了 . +Flowers bloom . 鮮花盛 開 . +You do not have to hide . 你 不用 藏著 . +Tom showed interest in the plan . 湯姆 對 這個 計劃 有 興趣 . +She does not care how she dresses . 她 不在乎 她 的 穿著 . +I am new here . 我 是 新來 的 . +Good luck . 祝你好运 . +Let is begin . 讓 我們 開始 吧 . +It never rains but it pours . 禍 不單 行 . +How do you feel ? 你 感觉 如何 ? +This job pays 10,000 yen a day . 這個 工作 一天 有 10 , 000 日 圓 的 報酬 . +Can I have it ? 可以 给 我 吗 ? +You must go to bed now . 你 現在 必須 上床 睡覺 . +What are you reading ? 你 在 看 什么 ? +He could not remember my address . 他 不 記得 我 的 地址 了 . +Tom visits Mary every time he goes to Boston . 湯姆 每次 去 波士 頓都 去 看 瑪麗 . +The wind is blowing from the north . 风 从 北边 来 . +Tom is a good friend of Mary is . 汤姆 是 玛丽 的 一个 好 朋友 . +I do not want to participate in the ceremony . 我 不想 参加 典礼 . +Tom studies philosophy at college . 汤姆 在 大学 里学 的 是 哲学 . +I have missed so much . 我 错过 了 太 多 . +You are here . 你 在 这里 . +Her father is an excellent pianist . 她 的 父親 是 一位 優秀 的 鋼 琴家 . +Have you eaten dinner ? 你 吃 晚 飯 了 嗎 ? +There is a soccer match tomorrow . 明天 有 一場 足球 比賽 . +You can not buy this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +He ate a box of chocolates . 他 吃 了 一盒 巧克力 . +Tom is leaving Boston tomorrow . 湯姆 明天 離開 波士 頓 . +The policemen arrested the burglar . 警察 逮捕 了竊 賊 . +We must take into account the fact that he is young . 我们 必须 考虑 到 他 很 年轻 . +Tom and Mary can both speak French . 汤姆 和玛丽 两个 人 都 会 说 法语 . +This is a picture of my family . 這 是 一張 我 全家 的 照片 . +His son wants to be a lawyer . 他 儿子 想 当 律师 . +It was so still that you would have heard a pin drop . 安靜 到 連 針 掉 在 地上 的 聲音 你 都 會 聽 得到 . +I am looking forward to seeing you . 我 期待 著見 到 你 . +He did not answer the phone , so I sent him an email . 他 没有 接电话 , 所以 我 给 他 发 了 封 邮件 . +He does not know much about Japan . 他 不是 很 了解 日本 . +She is a girl , but she is brave . 她 是 個 女孩 , 但 她 勇敢 . +It is by no means certain . 这 根本 不是 确定 的 . +Should we be worried ? 我們 應 該 要 擔心 嗎 ? +Do not you like baseball ? 你 不 喜欢 棒球 吗 ? +This is my friend . 這個 是 我 的 朋友 . +Tom was the only boy in the entire class . 汤姆 是 班里 唯一 的 男生 . +Can you swim ? 你 會 游泳 嗎 ? +Maybe you could draw me a picture . 你 可以 给 我 画 张 画 . +Tom has gone back home to Boston . 湯姆 回波 士頓 的 家 去 了 . +I paid him five dollars . 我 付 了 他 五塊 美元 . +He is the chief of my department . 他 是 我 部門 的 主管 . +He is a friend of my brother is . 他 是 我 哥哥 的 朋友 . +We got a good price for that . 我們 得到 了 一個 很好 的 價格 買 那個 東西 . +I saw him wash the car . 我 看見 他 洗車 . +He was playing the piano and she was singing . 他 彈 鋼琴 , 她 唱歌 . +He sat next to the stream . 他 坐在 河边 . +She fooled him . 她 愚弄 了 他 . +I put some cream in my coffee . 我 在 我 的 咖啡 裡 放 了 一些 奶油 . +I am prepared to accept the consequences . 我 准备 好 了 承担 后果 . +It was love at first sight . 那 是 一见钟情 . +When was the last time you spent time on Facebook ? 你 上 一次 用 Facebook 是 什麼 時候 ? +This book of his is not interesting at all . 他 的 这 本书 一点 意思 也 没有 . +That is too bad . 太 可惜 了 ! +He has to take two science classes . 他 必須 上 兩堂 理化 課 . +That is the man who lives next door . 那 是 住 在 隔壁 的 男人 . +I wish she had come last night . 但 願 她 昨晚 來 就 好 了 . +Tom was the only one who was punished . 湯姆 是 唯一 受罰 的 人 . +Clint Eastwood was elected mayor of Carmel . 克林伊 斯威特 當 選為 卡梅爾市 市長 . +That hotel was very near the lake . 這家 旅館 非常 靠近 湖 . +Sorry to be late . 對 不起 我 來 晚 了 . +We are almost broke . 我們 快 破產 了 . +There is no reason that I should give up my plan . 沒有 理由 让 我 放弃 我 的 计划 . +Tom will now be proud of me . 汤姆 现在 会 以 我 为 傲 . +He has a large farm in Colorado . 他 在 科羅拉多州 有 一個 大 農場 . +It is ten minutes before eleven . 還 有 十分 鐘 就 十一 點 . +It makes me feel sad . 这 让 我 感到 沮丧 . +He has no choice but to resign . 他 沒有 選擇 , 只能 辭職 . +I take full responsibility for the action . 我 會 為 這次 行動 負起 全責 . +Somebody is playing the piano . 有人 正在 彈 鋼琴 . +Please translate the sentence below . 请 把 下面 的 句子 翻译 一下 . +I still have not finished my homework . 我 还 没 完成 作业 . +This tape recorder is not new . 这个 磁带 录音机 不是 新 的 . +He had hoped to succeed , but he did not . 他 本 希望 可以 成功 , 但是 他 没有 . +Has something happened ? 發生 了 什麼 事 嗎 ? +Do not be silly . I can not do it . 别 犯傻 . 我 能 做到 . +Be quiet , or the baby will wake up . 安靜 , 否則 嬰兒 會 醒來 . +He will play golf next Sunday . 他 下 週日 將 打 高爾夫 球 . +I do not feel like eating anything . 我 不想 吃 任何 東西 . +Do you keep in contact with your high school classmates ? 你 还 和 你 的 高中同学 保持联系 吗 ? +Thanks for your reply . 谢谢 你 的 答复 . +I 'd better go home . 我 回家 比較 好 . +I want a new shirt . What do you want ? 我 要 一件 新 衬衫 . 你 想要 什么 ? +This hotel was built last year . 這家 旅館 是 去年 蓋 的 . +I agree with that . 我 同意 . +Tom was hiding something . 湯姆 在 藏 甚麼 . +I could not agree with you more . 我 非常 同意 你 . +He loses his temper quite easily . 他 很 容易 發脾氣 . +Tom is not planning to stay . 湯姆 不 打算 留下 . +Tom seems to know how . 湯姆 看來 知道 那 是 怎樣 . +Does anyone want some more pie ? 有人 想要 更多 的 餡餅 嗎 ? +I can not find my pen . 我 找 不到 我 的 筆 . +Tom did not let me answer Mary is question . 湯姆 沒 有 讓 我 回答 瑪莉 的 問題 . +Can you tell us a bit more about that ? 能 再 告诉 我 一点 吗 ? +May I introduce myself ? 我 可以 自我 介紹 嗎 ? +I will do it tomorrow . 我 明天 再 做 . +Stick another stamp on the envelope . 把 另 一張 郵票 貼 在 信封 上 . +Tom is thirty . 汤姆 今年 三十岁 . +Tom has been sick in bed for three weeks . 汤姆 已经 因 病 卧床 三周 了 . +That bicycle is mine . 那 自行车 是 我 的 . +She studied abroad in order to brush up her English . 她 在 國外 學習 以便 提升 她 的 英語 . +Can you please tell me your name once more ? 请问 你 能 再 告诉 我 一遍 你 的 名字 吗 ? +I usually go to school by bicycle . 我 通常 騎 自行 車 去 上 學 . +Something is wrong with my watch . 我 的 錶 出 了 毛病 . +How important can it be ? 它 能 有 多 重要 ? +We think Tom will be back soon . 我們 認為 湯姆會 很快 回來 . +If I were you , I would not do it . 如果 我 是 你 , 我 就 不 做 那件事 . +I have not seen you around here before . 我 以前 在 这里 没见 过 你 . +I intend to go there . 我 打算 去 那裡 . +I have already finished reading this book . 我 已經 讀完 了 這 本書 . +He has all but finished the work . 他 幾乎 已經 完成 這個 工作 了 . +This coffee is too strong for me . 這個 咖啡 對 我 來說 太 濃 了 . +Does Tom still like jazz ? 湯姆 還 喜歡 爵士 樂 嗎 ? +That man stole my wallet . 那 男人 偷 了 我 的 钱包 . +Tom is in danger . 湯姆 有 危險 . +He loved to laugh and enjoy life . 他 爱 笑 以及 享受 生活 . +I am disappointed that I was not able to go with her . 我 很 失望 我 沒能 和 她 一起 去 . +I remember giving him the key . 我 記得 給 了 他 鑰匙 . +Is this your apple ? 這 是 你們 的 蘋果 嗎 ? +Tom thought he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +Tell me more about Tom . 告诉 我 汤姆 的 情况 . +What are we having for dinner ? 我们 晚饭 吃 什么 ? +This is the end . 這 是 結束 . +Are you free right now ? 你 現在 有空 嗎 ? +What did you hear ? 您 听到 什么 了 ? +Fortune smiled on him . 好运 向 他 露出 了 笑容 . +These pictures are really very beautiful . 这些 照片 真美 . +The entire sales staff has worked around the clock for a week . 全体 销售 人员 通宵达旦 地 工作 了 一周 . +Is that all you have to do ? 这些 都 是 你 不得不 做 的 吗 ? +They are very big . 他們 非常 大 . +The boy has learned to read . 男孩 學會 了 閱讀 . +He saw her and blushed . 他 看到 她 就 臉 紅 了 . +Cancer can be cured easily if it is found in its first phase . 癌症 如果 在 第一阶段 被 发现 的话 是 很 容易 治愈 的 . +You have a way with women . 你 对 女人 有 一套 . +It was before dawn that they got the fire under control . 他们 在 黎明前 控制 住 了 火势 . +He is just gone on leave . 他 剛 請 假 走 了 . +I envy the friendship Tom and Mary have . 我 羨慕 Tom 和 Mary 之間 的 友誼 . +They are talking about music . 他们 在 谈 音乐 . +He went to New York on business . 他 去 紐約 出差 了 . +I hope that you will get well soon . 我 希望 您 快 就 会 好 起来 . +Tom is thrilled . 汤姆 兴奋不已 . +Nice timing . 好时机 . +It was our secret . 它 是 我們 的 秘密 . +Tom is eyes are blue . 汤姆 的 眼睛 是 蓝色 的 . +She got married against her father is will . 她 違背 了 她 父親 的 意願 結 了 婚 . +How well do you know Tom ? 你 了解 汤姆 多少 ? +She insisted that it was my fault . 她 坚持 认为 那 是 我 的 错 . +In my opinion , he is correct . 在我看来 , 他 是 有 道理 的 . +We were attacked from both sides . 我們 被 兩面 夾擊 了 . +What a beautiful flower ! 多 漂亮 的 花 啊 ! +You 'd better not go out today . 你 今天 最好 不要 出門 . +Two thirds of the employees of this company are engineers . 这个 公司 二分 之三 的 雇员 是 工程师 . +She went into her room to change her dress . 她 进 了 她 的 房间 换 裙子 . +Did you get the package I sent you ? 你 收到 我 寄 給 你 的 包裹 了 嗎 ? +Nobody had ever heard of it . 从 没有 人 听说 过 这件 事 . +You can not understand this sentence , can you ? 你 不 懂 这 句句 子 , 不是 吗 ? +Does she speak English ? 她 會 說 英語 嗎 ? +You must be at the station by 5 o 'clock . 五點 以前 你 必須 在 車站 . +Wait here till he comes back . 在 这儿 等到 他 回来 为止 . +Where is the closest pharmacy ? 最近 的 藥房 在 哪裡 ? +This is a small town . 这 是 个 小镇 . +Let is just eat . 我們 吃 吧 . +The Seine flows through Paris . 塞纳河 穿越 了 巴黎 . +A dolphin is a kind of mammal . 海豚 是 一種 哺乳 動物 . +Mary looks like her mother . 瑪麗 長 得 像 她 媽媽 . +Write your name in capitals . 把 你 的 名字 用 大 写写 下来 . +How about Thai food ? 泰国菜 怎么样 ? +How about playing chess tonight ? 今晚 下棋 怎麼樣 ? +He could not understand the sentence . 他 無法 理解 這 句 話 . +My blood pressure is low . 我 的 血压 很 低 . +I will not stay silent . 我 不 會 保持沉默 的 . +Look out ! 当心 ! +I will be flying to Boston . 我 将要 飞 到 波士顿 去 . +Everything seems OK . 一切 看上去 正常 . +He likes to sing in the bathtub . 他 喜歡 在 浴缸 裡 唱歌 . +Just put yourself in my shoes . 你 站 在 我 的 立場 上 考慮 看看 . +How do you make a box ? 你 怎么 做 箱子 ? +The motel can accommodate as many as 400 guests . 汽车旅馆 可以 接待 多达 400 名 客人 . +I would like to speak with Tom alone . 我 想 和 汤姆 单独 谈一谈 . +Learning English is hard work . 學習 英語 很 辛苦 . +My room is very small . 我 的 房間 非常 小 . +This watch is broken . 这个 手表 坏掉 了 . +She said she was happy . 她 说 了 她 很 幸福 . +What does your aunt do ? 你 姑姑 是 做 什麼 的 ? +How about a drink after the game ? 比賽 結束 後 喝一杯 怎麼樣 ? +Did you do this on your own ? 這 是 你 自己 做 的 嗎 ? +Tom does not want to lose Mary . 汤姆 不想 失去 玛丽 . +You are drunk ! 你 喝醉 了 ! +I am bleeding . 我 在 流血 . +Do you want to be rich ? 你 想 致富 嗎 ? +I do not feel like studying English today . 我 今天 不想 学习 英语 . +I have never seen you so happy . 我 从没 见 过 你 这么 高兴 . +I think this is true . 我 想 这 是 真的 . +Tom did better this time than he did last time . 汤姆 这次 做 得 比 上次 好 . +I will have another beer . 我会 再 喝一杯 啤酒 . +I think that Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +What is your mother tongue ? 你 的 母语 是 什么 ? +They never tell a lie . 他们 从不 说谎 . +You may be late for school . 您 上學 可能 會 遲 到 . +I often visit my relatives . 我 常常 访问 我 的 亲戚 . +I played tennis with my brother . 我 和 我 的 兄弟 打 網球 . +Tom was mistaken . 汤姆 错 了 . +My camera is different from yours . 我 的 相機 跟 你 的 不同 . +I need a friend . 我 需要 个 朋友 . +I am sure that he will succeed . 我 相信 他 會 成功 . +As long as you are here , I will stay . 只要 你 在 這兒 , 我 就 會 留下 來 . +Should we have some lunch ? 我們 該 吃 午飯 了 吧 ? +Someone is calling you . 有人 在 叫 你 . +Do you know where I live ? 你 知道 我 住 哪 吗 ? +Something strange is going on . 正 有 什么 奇怪 的 事情 发生 着 . +I know those girls . 我 認識 那些 女孩 . +The lake was frozen . 湖 冻冰 了 . +I did not mean to do that . 我 没 想 那样 做 的 . +How much longer will you stay in Boston ? 你 在 波士顿 再 待 多久 ? +Tom likes chocolate cake a lot . 汤姆 很 喜欢 巧克力 蛋糕 . +I have brown hair . 我 的 头发 是 褐色 的 . +His clothes are out of fashion . 他 的 衣服 過時 了 . +Food should be chewed before being swallowed . 食物 在 吞咽 前要 经过 咀嚼 . +You seemed surprised . 你 看起来 很 吃惊 . +Since I was sick , I did not go to school . 由于 我 生病 了 , 我 便 没去 上学 . +Shut up ! 閉嘴 ! +I did everything by myself . 我 全 靠 自己 . +I know nothing about her . 我 对 她 一无所知 . +We do not have any secrets . 我們 沒有 秘密 . +She tried . 她 试 过 了 . +She is not a full @-@ time employee of this company . 她 不是 這間 公司 正式 的 職員 . +The fish in this restaurant is delicious . 這家 餐廳 的 魚 很 好吃 . +She rushed home with the good news . 她 急忙 帶著 好消息 跑 回家 . +I introduced Mary to my parents . 我 把 玛丽 介绍 给 我 的 父母 了 . +He came to see you yesterday . 他 昨天 來看 你 . +Where do the airport buses leave from ? 机场 大巴 从 哪里 出发 ? +I felt comfortable . 我 感觉 很 舒服 . +I am asking you what you think . 我 问 你 你 在 想 什么 . +Pass me the salt , please . 请 给 我 盐 . +There is something strange happening . 正 有 什么 奇怪 的 事情 发生 着 . +I want you to stay here until I get back . 我 想 你 待 在 这里 直到 我 回来 . +Tom put his keys in his pocket . 湯姆 把 他的鈅匙 放在 他 的 口袋 裡 . +I have hiccups . 我 打嗝 了 . +Why do not you come visit us ? 为什么 你 不 来看 我们 ? +We got up after midnight . 我们 在 午夜 之后 起床 . +This is my property . 這 是 我 的 財產 . +Lansing is the state capital of Michigan . 蘭辛 是 密西根州 的 首府 . +He behaves as if he were insane . 他 表现 得 像 疯 了 一样 . +I met him at the station . 我 在 車站 遇見 他 . +It is a waste of time and money . 这 是 在 浪费时间 和 金钱 . +Kyoto and Boston are sister cities . 京都 和 波士顿 是 姐妹 城市 . +Who do you suggest we talk to ? 你 建議 我們 跟 誰 講 話 ? +Please let me take your picture . 請 讓 我 為 你 拍照 . +Thanks for the updates . 谢谢 提供 新 消息 . +I had my bicycle stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Do you live with your parents ? 你 和 你 的 父母 同住 嗎 ? +She usually gets up early . 她 通常 很早 起床 . +The path zigzagged up the steep slope . 蜿蜒 的 小路 爬上 了 陡坡 . +Mary closed the door quietly . 瑪麗 悄悄地 關上 了 門 . +Was Tom surprised ? 汤姆 吃惊 吗 ? +Close the door on your way out . 出去 的 时候 把门 关上 . +The rope broke under the strain . 繩子 被 拉斷 了 . +Is it going to rain tomorrow ? 明天 会 下雨 吗 ? +I support you whole @-@ heartedly . 我 全心全意 地 支持 你 . +Tom also has one . 汤姆 也 有 一个 . +He had his car stolen last night . 昨晚 他 的 車 被 偷 了 . +This is a post office and that is a bank . 这 是 邮局 , 那 是 银行 . +Tom is friendly to me . 湯姆 對 我 友好 . +Tom does not eat pork . 湯姆 不吃 猪肉 . +Watch my camera for me . 幫 我 看著 我 的 相機 . +Monopoly is a popular game for families to play . 大富翁 是 一個 家庭 玩 的 熱門 遊戲 . +I helped my father with the work . 我 幫 我 父親 做 這個 工作 . +They speak English in New Zealand . 他們 在 紐西蘭 講 英語 . +It is still fresh in my memory . 我 仍然 記憶 猶新 . +This is a great day . 真是 美好 的 一天 . +Tom is coach likes him . 汤姆 的 教练 喜欢 他 . +It is worth the wait . 它 是 值得 等待 的 . +I am not sure Tom would help . 我 不 確定 湯姆 能 不能 幫忙 . +We are not scared of anybody . 我们 谁 都 不怕 . +What time does the movie start ? 電影 什麼 時候 開始 ? +It does not really matter . 那 不 真的 重要 . +I got a phone call from him just as I was about to go to bed . 我 正要 上床 的 時候 接到 了 他 打來 的 電話 . +Keep your eyes wide open before marriage , half shut afterwards . 婚前 張開眼 , 婚 後 半閉眼 . +Let is get our photograph taken . 讓 我們 來 拍照 吧 . +They told me that I would feel a little better if I took this medicine . 他們 告訴 我 吃 完 這個 藥 我 就 會 覺得 舒服 一點 . +We have run short of money . 我们 缺钱 了 . +My grandfather lived to be 90 years old . 我 的 祖父 活 到 九十 歲 . +It stopped snowing an hour ago . 一個 小 時 前 雪停了 . +He leaves for school at seven . 他 七點鐘 去 學校 . +That is the same story as I heard when I was a child . 那 跟 當 我 是 個 孩子 時所 聽到 的 是 同樣 的 故事 . +I would like to talk to Tom alone . 我 想 和 汤姆 单独 谈一谈 . +In my room , there are no clocks . 我 的 房间 里 没有 时钟 . +We went all out to get the job done . 我们 全力以赴 来 完成 工作 . +What is the purpose of your visit ? 您 此行 的 目的 是 什麼 ? +Deal us the cards . 發牌 給 我們 . +He wants to go to Africa . 他 想要 去 非洲 . +Do you have one ? 你 有 嗎 ? +I could not bear to look at her . 我 无法忍受 看着 她 . +I did not want to listen to Tom singing . 我 不想 聽 湯姆 唱歌 . +There is nobody in the building now . 現 在建 築 裡 沒 人 . +I promise that I will come . 我 保证 我会 来 . +He is a teacher . 他 是 教师 . +Please write to me about conditions at your school . 请 写信 告诉 我 你们 学校 的 情况 . +What kind of sandwich do you want ? 你 要 什麼樣 的 三明治 ? +She got first prize in the eating contest . 她 在 吃 东西 比赛 里 得 了 一等奖 . +We had a kid just last year . 就 在 去年 我們 有 了 一個 孩子 . +I am doubling my prices . 我 正在 把 价格 涨 一倍 . +My father has been engaged in foreign trade for many years . 我 父亲 经营 外贸 多年 . +Tom was like a member of our family . 湯姆 像是 我們 家庭 的 一員 . +The friend who I thought would pass the exam failed it . 那个 我 认为 会 通过 考试 的 朋友 失败 了 . +The sun gives us light and heat . 太陽 提供 我們 光 和 熱 . +Not everything can be bought with money . 不是 所有 的 東西 都 可以 用 金錢 買到 . +Tom did not say a single word . 湯姆 甚麼 也 没 說 . +What did you tell your boss ? 你 跟 你 的 老板 说 什么 了 ? +Nobody is going to shed any tears if that old building gets torn down . 没有 人会 为 这个 旧 建筑物 的 拆除 而 落泪 . +She is at work right now . 她 现在 正在 工作 . +You are quite right . 你 是 對 的 . +There is a bank in front of the station . 车站 前 有个 银行 . +Declarations of variables are extremely important in C and C + + . 变量 的 声明 在 C 和 C++ 中 极其重要 . +I paid ten dollars for this cap . 我 付 了 十美元 買 這 頂 帽子 . +I will never speak to you again . 我 再也不会 跟 你 说话 了 . +I will bring one more towel . 我 再 拿 块 毛巾 过来 . +Are you and Tom working together ? 你 跟 湯姆 一起 工作 嗎 ? +Tom did not say where he was planning to go . 湯姆 沒 說 他 打算 去 哪裡 . +Good night . 晚安 . +You should have started by now . 你 早就 該 開始 了 . +Is it true Tom can not read or write ? 汤姆 真的 不会 读 也 不会 写 吗 ? +I agreed with him on that point . 我 在 那 一點 上 同意 他 . +Can he speak English ? 他 會 講 英語 嗎 ? +He took care of the business after his father is death . 在 他 父亲 死 后 , 他 接管 了 公司 . +You could have answered that question . 你 本 可以 回答 那 问题 . +Sentences begin with a capital letter . 句子 以 一個 大 寫 字母 開頭 . +I heard the telephone ringing . 我 听到 电话响 了 . +He skis in Hokkaido every winter . 他 每年 冬天 在 北海道 滑雪 . +You will soon get used to Japanese food . 你 很快 就 会 习惯 吃 日本料理 了 . +She is as beautiful as her mother . 她 跟 她 媽媽 一樣 漂亮 . +Quit gambling . 戒掉 赌博 吧 . +I should not have done it . 我 本 不 应该 做 的 . +We have seen no one . 我们 谁 也 没 看见 . +I saw a woman in black . 我 看见 一个 穿 黑衣服 的 女人 . +He began to eat his breakfast . 他 開始 吃 他 的 早餐 了 . +I hope Tom loses . 我 希望 湯姆 輸 . +I am going out for a while . 我 出去 一会儿 . +I am sorry to bother you so often . 一直 打扰 你 不好意思 . +Be patient . 耐心 等 着 . +I filled the bucket with water . 我 在 桶子 裡 裝滿 了 水 . +Maybe he will not become famous . 也許 他 不 會 成名 . +Finally , it is Friday . 終於 星期五 了 . +She visited her husband in prison . 她 探望 了 她 在 監 獄裡 的 丈夫 . +You are not fast enough . 你 不够 快 . +Tom translated the document into French . 汤姆 把 文档 译成 法语 . +He is a thief . 这 是 一个 小偷 . +He stayed there for three days . 他 在 那裡 待 了 三天 . +Stop making a fool of yourself . 停止 愚弄 你 自己 . +The school is on top of the hill . 學校 在 山丘 頂上 . +She was beautiful when she was young . 她 年轻 时 很 美丽 . +She got out of the car . 她 从 车里 出来 了 . +I have to go shopping . I will be back in an hour . 我 该 去 买 东西 了 , 我 一 小时 后 回来 . +I should have gone home earlier . 我 該 早點 回家 . +If you heard her speak English , you would take her for an American . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 美国 人 呢 . +He cannot have done such a thing . 他 不 可能 做 那種 事 . +They were all dressed in uniforms . 他們 全部 穿 制服 了 . +May I come and see you tomorrow ? 我 明天 可以 來看 你 嗎 ? +I want to drive . 我 想 開車 . +Suppose you had a thousand dollars , what would you do with it ? 假如 你 有 1000 美元 , 你 会 用 它 做 什么 呢 ? +Why should I go to school ? 为什么 我 应该 去 上学 ? +Mary has a bad back . It is hard for her to lift things . 瑪麗 的 背 不好 , 她 很 難 把 東西 舉起 來 . +I hope Tom has learned his lesson . 我 希望 汤姆 已经 吸取教训 了 . +This is my dictionary . 这 是 我 的 字典 . +This is typical . 这 是 典型 的 . +I asked him to wait here . 我 請 他 在 這裡 等 . +Tom certainly is good at baseball . 汤姆 打 棒球 打 的 非常 好 . +She is a clerk in the supermarket . 她 在 超市 做 秘书 . +I had a little fever this morning . 今天上午 我 有 一點 兒 發燒 . +He caught a cold . 他 着凉 了 . +He was kind enough to lend me some money . 他 够 大方 , 借了 我 一点 钱 . +She is on a diet . 她 在 节食 . +He came to my rescue . 他 拯救 了 我 . +I will provide you with all the necessary information . 我 會 給 你 所有 必要 的 信息 . +There is no water . 沒有 水 . +You are too young to retire . 你 太 年輕 , 不能 退休 . +I am afraid of dogs . 我 怕 狗 . +The planets revolve around the sun . 行星 繞著 太陽 轉 . +Do you believe that God exists ? 你 相信 神 存在 嗎 ? +I am interested in Asian history . 我 对 亚洲 的 历史 很感兴趣 . +This is my wife . 这 是 我 的 妻子 . +Did you lock the door ? 你 有 關門 嗎 ? +A little knowledge is a dangerous thing . 只有 一點點 的 知識 是 危險 的 事 . +It looks like it is going to snow . 看起 來 快 下雪 了 . +He is fluent in Chinese . 他 能 說 流利 的 中文 . +My father helped me with my homework . 我 爸爸 幫 我 做作 業 . +She was ashamed of her children is behavior . 她 为 自己 孩子 的 行为 感到 羞耻 . +Water boils at 100 degrees . 水 在 攝 氏 100 度沸騰 . +I noticed she was wearing a new hat . 我 注意 到 她 当时 戴 了 顶 新 帽子 . +Please do not speak so fast . 請 不要 說 得 這麼 快 . +She is correct for sure . 她 的 確是 正確 的 . +He bought a small house in Kyoto . 他 在 京都 買 了 一個 小 房子 . +Do you like music ? 你 爱 音乐 吗 ? +The doctor called him back . 医生 把 他 叫 了 回来 . +Tom was not in bed . 湯姆 不 在 床上 . +Did you bring a hair dryer ? 你 有 帶 吹 風機 嗎 ? +He was standing at the street corner . 他 站 在 街角 . +I am not ashamed of my father being poor . 我 父亲 很穷 并 不让 我 觉得 丢脸 . +He accused me of having stolen his watch . 他 指控 我 偷 了 他 的 手表 . +Her mother will continue to work . 她 母亲 将 继续 工作 . +He hit the ball with his racket . 他 用 他 的 球拍 擊球 . +That is a huge challenge . 这 是 一个 巨大 的 挑战 . +I brought you a little something . 我 给 你 带 了 点 东西 . +Has the mailman already come ? 郵差 已經 來 過 了 嗎 ? +I know this area pretty well . 我 很 瞭解 這 地方 . +Do not start without me . 我 不 在 就别 开始 . +He is not at home . 他 不 在家 . +I made a few changes . 我 做 了 点 改动 . +I can not stay . 我 不能 留下 . +I hope he has not had an accident . 我 希望 他 沒發 生意 外 . +I did not need to paint the fence . 我 不 需要 粉刷 圍牆 . +It was one of the best nights I have had . 这 是 我 度过 的 最好 的 夜晚 之一 . +He is no fool . 他 不是 傻子 . +This book is quite difficult . 这 本书 很 难读 . +This desk is mine . 這 張 書 桌 是 我 的 . +I am not writing a letter . 我 不是 正在 寫信 . +He lives in that house over there . 他 住 在 那邊 的 那間 房子 . +You should have attended the meeting . 你 應該 參加 這個 會議 的 . +The ship went up in flames . 船 起 了 火 . +He is a promising student . 他 是 一位 有 前途 的 学生 . +I caught a cold two days ago . 我 兩天 前 感冒 了 . +Tom was a bit puzzled by Mary is answer . 汤姆 被 玛丽 的 回答 困惑 了 一下 . +Please shut the door . 請 關門 . +Where do you live now ? 你 现在 住 在 哪里 ? +Tom learned how to do that from his grandfather . 汤姆 从 他 祖父 那里 学会 了 怎么 做 . +I have a pair of shoes . 我 有 一双 鞋 . +He ran as fast as he could . 他 跑 得 能 有 多快 就 有 多 快 . +None of the teachers could solve the problem . 所有 的 老师 都 无法 解决 这个 问题 . +It is not something I am very good at . 这 不是 我 所 擅长 的 事 . +I only want to know the facts . 我 只 想 知道 事实 . +Tom should have handled the situation differently . 汤姆 应该 用 别的 方式 处理 这 状况 . +The best hairdressers are gay . 最好 的 理发师 是 同性恋 . +She is my classmate . 她 是 我 的 同學 . +You should have come yesterday . 你 昨天 應該 來 的 . +Let me give you a lift as far as the station . 讓 我 送 你 到 車 站 吧 . +How did your test go ? 你 的 测验 怎么样 ? +Can you please shut up ? 你 可以 閉 嘴 嗎 ? +I felt good tonight . 我 今晚 感觉良好 . +What is the weather like today ? 今天天气 怎么样 ? +A face with too much make up looks strange . 化妆 太 浓 的话 脸会 看着 很 奇怪 . +Are you taking any medicine regularly ? 你 經常 服用 任何 藥物 嗎 ? +There was only one warden on duty when the riot started . 暴動 開始 時 只有 一位 監獄 長 值班 . +The rich are not always happier than the poor . 有钱人 未必 比 穷人 幸福 . +Tom has not forgiven anybody . 汤姆 没 原谅 过 任何人 . +I need a cab . 我 需要 一輛 出租 車 . +There was no money left in my wallet . 我 钱包 里 没钱 了 . +My room is twice as big as his . 我 的 房間 是 他 的 兩倍 大 . +I wish more people felt the same way . 我 希望 更 多 人 以 相同 的 方式 来 感受 . +The hawk caught a mouse . 這 隻 鷹 抓 到 一 隻 老鼠 . +She was almost late for school . 她 上學 幾乎 遲到 . +He did not agree to my proposal . 他 不 同意 我 的 建議 . +I like reading . 我 喜欢 阅读 . +These things are not mine ! 这些 东西 不是 我 的 ! +The river flows under the bridge . 河 從 橋 下流 過 . +He whistled as he walked . 他 邊 走 邊 吹口哨 . +I advertised my house in the newspaper . 我 在 报纸 上 刊登 了 我 的 房子 的 广告 . +He returned from China . 他 从 中国 回来 了 . +A thousand dollars is a large sum . 1000 美元 是 个 大 数目 . +You should be kind to others . 对 其他人 你 应该 和善 一点 . +Do you like flying ? 你 喜歡 坐 飛機 嗎 ? +She kissed him on the cheek . 她 亲吻 他 的 脸颊 . +Even children can read this book . 即使 是 小孩 也 能讀 這 本書 . +There is no scientific basis for these claims . 這些 主張 沒有 科學 的 根據 . +We cannot overestimate the value of health . 我们 不能 高估 健康 的 价值 . +It is impossible to predict earthquakes . 預測 地震 是 不 可能 的 . +Tom has apparently done that already . 很 明顯 , 湯姆 已經 做 完 了 . +I have not made much progress . 我 还 没有 取得 那么 大 的 进展 . +Is this the bus to Oxford ? 这 是 去 牛津大学 的 车 吗 ? +My hobby is playing the piano . 我 的 嗜好 就是 彈 鋼琴 . +What are you looking at ? 你 在看 什麼 ? +School starts next Monday . 下周一 开学 . +We will get a phone call from him tonight for sure . 今晚 我們 肯定 會 接到 他 的 電話 . +I do not know . 我 一无所知 . +I have no idea who she is . 我 不 知道 她 是 谁 . +Tom is doing what he loves . 汤姆 在 做 他 喜欢 做 的 事 . +She quit smoking . 她 停下 來 抽煙 . +He has not come already , has he ? 他 並 沒有 來 , 不是 嗎 ? +Unfortunately , there was no one around . 很 不幸 , 没有 人 在 身边 . +How do you spell your family name ? 你 的 姓 怎麼 拼 ? +This desk is better than that one . 這 張 書桌 比 那 張 好 . +Volleyball is a lot of fun . 排球 很 有意思 . +Please help me . 請 幫 我 . +Can you jump rope ? 你 能 跳绳 吗 ? +Why do not we have lunch together ? 為 什麼 我們 不 一起 吃 午 飯 呢 ? +I am getting off at the next station . 我 下 一站 下车 . +Tom said hi . 汤姆 打了个 招呼 . +I can see the light . 我 能 看到 光線 . +He is about your age . 他 跟 您 年纪 差不多 . +Tom is the only guy in this class . 汤姆 是 这个 班级 里 唯一 的 男生 . +These are cakes that she baked herself . 這些 是 她 自己 烤 的 蛋糕 . +She graduated from high school last year . 去年 她 從 高中 畢業 了 . +Tom visited Boston last year . 湯姆 去年 去 了 波士 頓 . +He tried to speak French to us . 他 試著 跟 我們 講法 語 . +This job does not pay . 这份 工作 不 付钱 的 . +I think I should get right to work . 我 認為 我 該 馬 上去 工作 . +You are always late . 你 总是 迟到 . +You should learn to control your emotions . 你 應該 學會 控制 自己 的 情緒 . +It was raining when we left , but by the time we arrived , it was sunny . 我们 走 的 时候 下着雨 , 到 的 时候 有 太阳 . +I carried the box on my shoulder . 我 把 盒子 扛 在 肩上 . +Tom wished he had not borrowed the book from Mary . 汤姆 希望 他 没有 从 玛丽 那里 借书 . +I 'd like for you to go . 我 希望 你 去 . +I can not adjust myself to the climate here . 我 不能 讓 自己 適應 這裡 的 氣候 . +All of you did good work . 你們 所有 的 人 都 做 得 很 好 . +I would like to make an overseas call . 我 想 打 個 國際 電話 . +Tom and Mary admired the scenery as they held hands . 汤姆 和玛丽 手牵着 手 , 一起 欣赏 风景 . +He visited many countries in Asia . 他 訪 問 過 許多 亞洲 國家 . +I prefer rice to bread . 比起 面包 , 我 更 喜欢 米饭 . +Tom was conservative . 汤姆 过去 很 保守 . +You are in a safe place . 您 在 一个 安全 的 地方 . +You can not speak English , can you ? 你 不会 说 英语 , 是 吗 ? +He shaved his mustache off . 他 刮 了 他 的 胡子 . +We have not seen anyone . 我们 谁 也 没 看见 . +The city was destroyed by fire . 這個 城市 毀 於 火災 . +I am tired of homework . 我 厭倦 了 功課 . +The blanket is still wet . 这个 毯子 还是 湿 的 . +It was only a partial success . 那 只是 部分 的 成功 . +No man can serve two masters . 没有 人 可以 共侍 二 主 . +The clock gains five minutes a day . 那个 钟 每天 都 快 了 五分钟 . +You are liable for the debt . 你 有 义务 还债 . +I need to study math . 我 需要 学习 数学 . +Are you afraid of Tom ? 你 會 怕 Tom 嗎 ? +I studied for a while this morning . 我 今天 早上 讀 了 一會兒 書 . +I can not stand the noise . 我 不能 忍受 這個 噪音 . +Have you ever been in jail ? 你 去过 监狱 吗 ? +Will it snow tonight ? 今晚 会 下雪 吗 ? +I will attend the meeting . 我 將 參加 這個 會議 . +Mom , can I go swimming ? 媽 , 我 可以 去 游泳 嗎 ? +He looks old , but he is still in his twenties . 他 看上去 老 , 但 他 还 不到 30 岁 . +They were carelessly unaware of the danger . 他们 粗心大意 , 还 没 意识 到 危险 . +One thousand dollars will cover all the expenses for the party . 1000 美元 将 负担 聚会 的 全部 费用 . +All of them agreed to the proposal . 他們 所有 的 人 都 同意 這項 建議 . +He is not breaking the law . 他 没 违法 . +CDs have taken the place of records . CD 已经 取代 了 胶木 唱片 . +We did not break in . 我们 没有 打断 . +Did you buy a nice bicycle ? 你 買 了 輛 好 自行 車 嗎 ? +She appears to have a lot of friends . 她 看 起來 好像 有 很多 朋友 . +It is dangerous to drink too much . 酒 喝 太 多 很 危险 . +Have you gone to see a doctor ? 你 去 看过 医生 了 吗 ? +There were many people at the concert . 音乐会 上 有 很多 人 . +You think I am mad , do not you ? 你 認為 我 瘋 了 , 不是 麼 ? +Tom can not find Mary . 汤姆 找 不到 玛丽 . +She asked him to mail that letter . 她 請 他 寄 那 封信 . +This happens all the time . 這 是 常有 的 事 . +Life has been very hard . 生活 很 艰苦 . +I missed you . 我 想 你 . +I am a student . 我 是 个 学生 . +You and I have the same idea . 你 和 我 有 相同 的 想法 . +It makes no sense at all . 这 没有 任何 意义 . +Is that your car ? 那 是 你 的 車 嗎 ? +Her parents can not help worrying about her injuries . 她 的 父母 不能不 担心 她 的 伤势 . +His new novel is worth reading . 他 的 新小 說 值得 一 讀 . +I will not allow you to use my pen . 我 不 允许 你 用 我 的 钢笔 . +Can you translate this song for me ? 你 能 为 我 翻译 这 首歌 吗 ? +He has been teaching for 20 years . 他 已經 教 了 20 年 . +I am too excited to eat anything . 我 興奮 得 吃不下 任何 東西 . +Come on . I want to show you something . 来 吧 . 我 想 让 你 看点 东西 . +She cried . 她 哭 了 . +Please turn on the radio . 请 将 收音机 打开 . +Drive on . 往前 开 . +I wonder why he did that . 我 不 知道 他 為 什麼 那樣 做 ? +Put on some clothes . 穿 上 點 衣服 . +I got on the wrong bus . 我 上 錯車 了 . +How much is this umbrella ? 這 把 傘 多少 錢 ? +How much money do you have hidden under your bed ? 你 在 你 的 床 下面 藏 了 多少 钱 ? +This is a picture of my sister . 這 是 我 姊姊 的 照片 . +Get out ! 出去 ! +I have run out of money . 我 錢 已經 用完 了 . +She was reading a gardening manual . 她 正在 讀 一本 園藝 手冊 . +Stop swearing , please . 请 别 再 发誓 了 . +Both you and I are men . 你 和 我 都 是 男人 . +Why is snow white ? 为什么 雪 是 白色 的 呢 ? +The speaker is comments were highly offensive . 发言人 的 评论 极 有 攻击性 . +I will never be able to live this down . 我 以 後 不能 在 這 鎮 上 生活 了 . +How many things did you buy ? 你 買 了 多少 東西 ? +Is he still interested ? 他 還 有 興趣 嗎 ? +We are going out tonight . 我们 今晚 出去 . +Who drew it ? 誰 畫 的 ? +Obey your teachers . 要 听 老师 的话 . +I gave my cold to him . 我 的 感冒 传染 了 他 . +It is not easy to master English . 要 精通 英語 不 容易 . +Tom is happy here . 湯姆 在 這裡 很 高興 . +Are you also from Boston ? 你 也 是 從 波士 頓來 的 嗎 ? +She decided to resign from her job . 她 決定 辭去 她 的 工作 . +She is a mere child . 她 只是 個 孩子 . +Let is talk about what you did in Boston . 让 我们 谈谈 你 在 波士顿 做 的 事 . +I want to write an article . 我 想 写 篇文章 . +The boy is playing with his toy soldiers . 男孩 在 玩 玩具兵 . +Would you like a tour ? 你 想 去 旅游 嗎 ? +I wish I were a good singer . 但 願 我 是 一個 好 歌手 . +I knew what Tom was doing . 我 知道 汤姆 在 做 什么 . +We suspected him of lying . 我们 怀疑 他 说谎 了 . +This book is too difficult for you to read . 这 本书 对 你 来说 读 起来 太 难 了 . +Do not forget to take a camera . 别忘了 带 个 相机 . +" Why are you going to Japan ? " " To attend a conference in Tokyo . " “ 你 去 日本 干嘛 ? ” “ 去 东京 参加 一个 会议 . ” +Is Tom a common name in your country ? 在 你们 国家 , 汤姆 是 个 常见 的 名字 吗 ? +I erased the blackboard for the teacher . 我 为 老师 擦 黑板 . +There is no cause for complaint . 没有 理由 抱怨 . +He admonished them for being noisy . 他 告誡 他們 不要 吵鬧 . +The nurse will tell you how to do it . 护士 会 告诉 你 怎么 做 . +This novel is boring . 這 本小 說 很 無聊 . +He lost his eyesight in that accident . 他 在 那次 意外 中 失去 了 他 的 視力 . +Let is shake hands . 讓 我們 握手 吧 . +I work under her . 我 在 她 手下 工作 . +You should have woken me . 你 应该 叫醒 我 . +He lives by himself . 他 独自 生活 . +She bit him . 她 咬 了 他 . +Mary tied an apron around her waist and then took the turkey out of the oven . Mary 试图 把 围裙 围 在 腰 上 , 然后 把 烤鸡 从 炉子 里 拿 出来 . +Tom does not think that will do any good . 汤姆 认为 那 没有 好处 . +He works at the welfare office . 他 在 福利 辦事 處 上班 . +I want to see your mother . 我 想 看看 你 的 母親 . +Are you really willing to help ? 你 是 真的 很 樂意 幫忙 嗎 ? +Please wait till he comes back . 請 等到 他 回來 . +He shook hands with his friend . 他 和 他 的 朋友 握手 . +Let is get started . 让 我们 开始 吧 . +This dog eats almost anything . 這 隻 狗 幾 乎 吃 任何 東西 . +Would you please give me some more tea ? 你 能 再 给 我 点 茶 吗 ? +It is time to take a bath . 是 时候 洗 个 澡 了 . +Where are you planning to spend the night ? 你 打算 去 哪儿 过夜 ? +They consider it impolite to disagree with someone they do not know very well . 他们 认为 , 去 反驳 一个 不 认识 的 人 有些 不 礼貌 . +He began to shout . 他 開始 喊叫 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +You have three minutes to surrender . 限 你 三分 鐘 內 投降 +He spends lots of money on clothes . 他 在 衣服 上 花 了 很多 錢 . +We will meet again . 后会有期 . +I am sick . 我 生病 了 . +That is so perfect . 那 是 完美 的 . +I can not live without you . 沒有 你 我 活不下去 . +The food is not very good here . 這裡 的 食物 不是 很 好 . +I am still sleepy . 我 还 很困 . +He acted like a madman . 他 表现 的 像 个 疯子 . +Our team scored the first goal . 我们 队 进 了 第一个 球 . +I hope I can see you at Christmas . 我 期望 能 在 圣诞节 见到 你 . +Tom wore ripped jeans . 汤姆 穿 了 破洞 牛仔裤 . +I am not a witch . 我 不是 巫婆 . +It goes without saying that health is important . 不用说 , 健康 是 重要 的 . +It would be crazy to do that again . 再 来 一次 就 真是 发疯 了 . +The crane , unlike the dog , has never dreamed of flying . 不 像 狗 , 這 隻 鶴 從 來 沒 有 夢 想 過 飛 翔 . +He told me the story of his life . 他 给 我 讲述 了 他 的 一生 . +I am so excited . 我 很 激动 . +Time for dinner . 吃饭时间 到 了 . +There is no chair to sit upon . 沒有 椅子 坐 . +Keep it . 留 着 吧 . +Radio is been replaced by the TV . 电视 代替 了 收音机 . +Tom has lost his interest in studying French . 汤姆 已经 对 学法语 不感兴趣 了 . +I kept singing . 我 继续 唱歌 . +What I want is not tea , but coffee . 我 要 的 不是 茶 , 而是 咖啡 . +The cat caught a mouse . 猫 抓住 了 老鼠 . +They tasted the bread . 他們 嚐了 麵 包 . +He may have taken the wrong train . 他 可能 搭錯 火車 了 . +Although I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I can not shake off my cold . 我 的 感冒 怎麼 也 不 會 好 . +This is a secret just between you and me , so do not let it slip out . 这 只是 你 和 我 之间 的 秘密 , 所以 不要 让 它 流出去 . +There was a shortage of fuel . 燃料 短缺 . +Where is the checkout counter ? 結帳 櫃台 在 哪裡 ? +They have announced their engagement . 他們 已經 宣布 訂婚 了 . +He comes here every three days . 他 每 三天 來 這裡 一次 . +We want candy . 我們 想要 糖 . +She was at a loss for words to express her feeling . 她 已经 无法 用 语言表达 她 的 感觉 了 . +I can not sleep at all . 完全 睡不着 . +I have heard that name somewhere before . 我 在 别处 听 过 那个 名字 . +There is a book here . 這裡 有 一本 書 . +Switzerland is a neutral country . 瑞士 是 一个 中立 的 国家 . +You should come back immediately . 你 应该 马上 回来 . +She decided to marry him . 她 决定 和 他 结婚 . +Turn off the TV . 关闭 电视机 +I saw him crossing the road . 我 看见 他 穿过 了 马路 . +Only six people were present at the party . 只有 六個 人 參加 了 派 對 . +How many different kinds of pizzas are on the menu ? 菜單 上 有 多少 種比薩 ? +I may have made a mistake . 我 可能 犯 了 个 错 . +I had a vision . 我 有 一个 设想 . +Tom can not have done what you think he did . 汤姆 还 不能 做 完 你 认为 他 能 的 事 . +Sorry it took me so long to write to you . 對 不起 , 我 過 了 這麼 長 的 時間 才 回 你 的 信 . +Three bulbs have burned out . 三个 灯泡 烧坏 了 . +Let is take a rest . 我们 休息 一下 吧 . +I got a letter from her today . 我 今天 收到 了 她 的 信 . +Just then , the bus stopped . 就 在 那时 , 公交车 停住 了 . +You could count to ten when you were two . 在 你 兩歲 時 , 你 可以 數 到 十 . +" When will you be back ? " " It all depends on the weather . " “ 你 什么 时候 回来 呀 ? ” “ 看 一下 天气 怎么样 再说 啦 . ” +The telephone rang a few minutes later . 几分钟 后 , 电话响 了 . +She told me to open the window . 她 告訴 我 把 窗戶 打開 . +The top of the mountain is covered in snow . 山顶 被 雪 覆盖 了 . +Please take off your coat . 請 脫下 您 的 外套 . +She has not heard the news yet . 她 还 没 听到 这个 消息 . +I want to eat something that is not sweet . 我 想 吃 点 不甜 的 东西 . +I slept on the bus . 我 在 公交车 上 睡觉 了 . +I will leave that to you . 我 會 留 給 你 . +Some people like summer , and others like winter . 有人 喜歡 夏天 , 有人 喜歡 冬天 . +I do not care what he does . 我 不在乎 他 做 什麼 . +Have you ever seen a UFO ? 你 看 過 飛 碟 嗎 ? +Tom has changed his mind again . 汤姆 又 改变 了 他 的 主意 . +The town was full of activity . 小镇 充满 了 活力 . +I need more time . 我 需要 更 多 时间 . +Will you live in Sasayama next year ? 你 明年 會 住 在 筱 山 嗎 ? +It makes me feel good . 它 讓 我 感覺 很 好 . +Did you show it to your parents ? 你 給 你 父母 看 了 嗎 ? +He looked like a doctor . 他 看 起來 像 個 醫生 . +He behaved like a madman . 他 表现 的 像 个 疯子 . +Let me in . 让 我 进去 . +Tom did not know what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +Can I catch a taxi near here ? 我 能 在 這 附近 打車 嗎 ? +Tom is the tallest in his family . 湯姆 是 他家 裡 最高 的 . +I will take your suitcase to your room . 我 會 把 你 的 手提箱 拿到 你 的 房間 . +Is it near your house ? 它 在 你家 附近 嗎 ? +There is no way to know . 沒有 辦法 知道 . +I want him to play the guitar . 我 要 他 彈 吉他 . +She thinks of everything in terms of money . 她 對 任何 事 都 用 錢 的 角度 來看 . +We kept quiet . 我们 保持 了 沉默 . +Tom told Mary he had a lot of money . 湯姆 告訴 瑪麗 他 有 很多 錢 . +She gave me these old coins . 她 給 了 我 這些 舊 硬幣 . +Which countries have you visited ? 你 去过 哪些 国家 ? +He was late because of the snow . 他 因為 下雪 所以 遲 到 了 . +The number of people on Facebook is greater than the population of the United States . Facebook 的 用戶 比美 國 人口 還 多 . +I thought that I told you to stay away from my computer . 我 说 过 让 你 离 我 的 电脑 远 一点 的 . +In this kind of weather , it is best to stay home and not go outside . 这种 天气 下 最好 待在家里 不要 外出 . +Thank you for the wonderful dinner . 為 這 美好 的 晚餐 謝謝 你 . +I look forward to your next visit . 我 期待 著 您 的 再次 光臨 . +Wash your hands before eating . 進食 前 先 洗手 . +Tom and I were not the ones who complained . 汤姆 和 我 不是 抱怨 的 人 . +Many books have been stolen . 很多 书 被盗 了 . +I got acquainted with him in France . 我 在 法國 認識 了 他 . +I returned the book to the library . 我 把 書 還 給 圖書館 . +These shoes do not fit my feet . 這些 鞋 不合 我 的 脚 . +You have to study more . 你 该 学 得 更 多 . +I took Highway 58 . 我 走 58 號 高速公路 . +Tom bought a pair of black leather shoes . 汤姆 买 了 一双 黑色 皮鞋 . +He should apologize for being rude to the guests . 他 应该 为 自己 对 客人 的 粗鲁无礼 而 道歉 . +He runs as fast as you . 他 跑 得 跟 你 一樣 快 . +Sooner or later , we will know the truth . 我們 遲早 會 知道 真相 . +Could you please drive me home ? 你 可以 載 我 回家 嗎 ? +Have you ever eaten a banana pie ? 你 吃 过 香蕉 派 吗 ? +What is for supper ? 我们 晚饭 吃 什么 ? +Does Tom live in Boston ? 汤姆 住 在 波士顿 吗 ? +He likes Disney . 他 喜欢 迪士尼 . +How did you do on your exam ? 考得 如何 ? +This is a low @-@ budget movie . 這 是 一部 低成本 的 電影 . +He would not look at my proposal . 他 不 會 考慮 我 的 建議 . +Where were you last night ? 昨天晚上 你 在 哪裡 ? +This is all the money I have on me . 這 是 我 身上 所有 的 錢 . +Her hair grew back . 她 的 頭 髮 長 回 來 了 . +You can delete that now . 你 现在 可以 删除 它 . +Tom gave Mary half of the apple . 汤姆 给 玛丽 半个 苹果 . +I am not quite sure if we can meet your requirements . 我 不 太 確定 我們 是否 能夠 滿足 你 的 要求 . +I want something to read . 我 要 些 讀 的 東西 . +I do not know what time it is . 我 不 知道 現在 幾點鐘 . +I have already had lunch . 我 已經 吃 過 午餐 了 . +Did you go to school ? 你 去 學校 了 嗎 ? +Do not get involved with that guy . 別 和 這個 人 打交道 . +They accused me of having broken my promise . 他们 指责 我 没有 信守诺言 . +He will come back . 他 会 回来 的 . +All the apple trees were cut down . 所有 苹果树 都 被 砍倒 了 . +We both know why I am here . 我們 都 知道 我 為 甚麼 在 這裡 . +Is this a river ? 這 是 一條 河 嗎 ? +Should not somebody be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +She hired him as a programmer . 她 聘請 他 作 程式 設計 師 . +I can not stand this noise any longer . 我 無法 再 忍受 這個 噪音 了 . +I can not put up with it . 我 无法忍受 它 了 . +His father dedicated his life to science . 他 的 父親 把 一生 奉 獻給 了 科學 . +I still can not believe I did it . 我 仍旧 无法 相信 我 居然 做 了 这种 事 . +I am looking for a part @-@ time job . 我 正在 找 一份 兼職 的 工作 . +Two months have passed since he left for France . 自从 他 离开 去 法国 , 已经 有 两个 月 了 . +I have never heard of Tom . 我 從 沒聽 說 過 湯姆 . +Can I get you something to drink ? 我 可以 帶喝 的 東西 給 你 嗎 ? +When are you leaving ? 你 什么 时候 离开 ? +Keep off the grass . 不要 踩 草地 . +I am amazed at your fluency in English . 你 流利 的 英语 让 我 很 吃惊 . +What is that big building in front of us ? 我们 面前 的 这幢 高楼 是 什么 ? +We captured the thief . 我们 抓住 了 小偷 . +I am sick . 我 病 了 . +I have two sons . One is in Tokyo and the other is in Nagoya . 我 有 两个 儿子 , 一个 在 东京 , 另 一个 在 名古屋 . +I will be back at seven o 'clock . 我 會 在 七點鐘 回來 . +What did you do to make Tom cry ? 你 做 了 甚麼 事 把 湯姆 惹 哭 了 ? +I did it myself . 我 自己 做 的 . +I am not afraid to die . 我 不怕死 . +Did he tell you what to do ? 他 告訴 過 你 要 做 什麼 嗎 ? +She divorced her husband . 她 與 丈夫 離婚 . +I get two hour is exercise every day . 我 每天 做 兩個 小 時 的 練習 . +Do you have a steady boyfriend ? 你 有 一个 固定 的 男朋友 吗 ? +I might make a mistake . 我 可能 犯 了 個 錯 . +She told him she wanted a divorce . 她 告诉 他 说 , 她 想要 离婚 . +Whether you like it or not does not matter . 你 喜不喜欢 没关系 . +They skip school all the time . 他們 總是 逃學 . +See you around . 再见 ! +How much does a kilogram of pineapples cost ? 菠蘿 一 公斤 多少 錢 ? +Tom is no longer a member of this club . 汤姆 不再 是 俱乐部 的 成员 了 . +Let me explain it to you . 讓 我 給 你 說 明 . +I am the best . 我 是 最好 的 . +You will be able to drive a car in a few days . 幾天 之 後 你 就 可以 開車 了 . +Tell them we are coming . 告诉 他们 我们 要来 了 . +She is a quiet person . 她 是 個 安靜 的 人 . +The policeman grabbed the boy is arm . 警察 抓住 了 那个 男孩 的 手臂 . +We help each other out . 我們 互相 幫忙 . +Ignorance is bliss . 無知 就是 幸福 . +A dog followed me to my school . 一 隻 狗 跟 著 我 到 我 的 學 校 . +I do not know when she will come back . 我 不 知道 她 什么 时候 会 回来 . +Tom has been struck by lightning three times . 湯姆 被 閃電擊 中 過 三次 . +He will be here around four o 'clock . 他 会 在 四点 左右 到达 这里 . +The boy can count to ten . 这 小男孩 能数 到 十 . +She is good at speaking English . 她 擅長 說 英語 . +I need to go to the toilet . 我 要 去 廁所 . +I am just writing a letter to my girlfriend . 我 只是 在 写 一封信 给 我 的 女友 . +Tom told me what to say . 汤姆 告诉 我 该 说 什么 . +You are a beautiful young woman . 你 是 一个 美丽 的 女人 . +We have to come to some agreement . 我们 要 达成 一些 协定 . +I have always kept my promises . 我 一直 信守 我 的 諾言 . +I want you to tell me the truth . 我 想 你 把 真相 告诉 我 . +We have ordered Chinese food . 我们 点 了 中餐 . +That is right ! 對了 ! +The Japanese have dark eyes . 日本 人 有 黑色 的 眼睛 . +If you do not leave , I will sic my dogs on you . 如果 你 不 离开 , 我 就 放狗 出来 咬 你 . +You 'd better do it soon . 你 最好 尽快 去 做 . +I played tennis . 我 打 網球 了 . +Let me try another one . 让 我 试试 别的 . +It will be cloudy . 天要 变 多云 了 . +I will open the window a bit . 我 把 窗户 打开 一点 . +What is this ? 這 是 什麼 ? +There is no need to hail a taxi . 没 必要 叫 出租车 . +Yesterday is board meeting was a big success . 昨天 的 董事 會會議 非常 成功 . +There was no one left but me . 除了 我 没有 人 離開 . +My bike was stolen last night . 昨晚 我 的 自行车 被 偷 了 . +Could you say that in plain English ? 你 會 說 簡單 的 英語 嗎 ? +She managed to drive a car . 她 成功 地 開車 了 . +The sky was clear when I left home . 当 我 离开 家 的 时候 天空 很 明朗 . +The Swiss consume a large amount of beer . 瑞士人 消耗 不少 啤酒 . +Tom got a late start this morning . 汤姆 今早 出发 晚 了 . +Let me ask a stupid question . 我 来 问 个 有点 傻 的 问题 . +He picked flowers for her . 他 为 她 摘 了 些 花 . +I think it is dangerous to climb a mountain on a day when it is stormy . 我 認為 在 有 風暴 的 時候 裡 登山 很 危險 . +There was a big earthquake last night . 昨晚 有 一場 大 地震 . +You must study more . 你 该 学 得 更 多 . +That mountain is easy to climb . 那 座 山 很 容易 爬 . +It is never too late to learn . 活到老 , 学到老 . +Do not try to do this by yourself . 别 想 靠 你 自己 做 这事 . +I do not have to clean my room . 我 不用 打扫 房间 . +I owe ten dollars to her . 我 欠 她 10 美元 . +We have decided not to fire you . 我们 决定 不 开除 你 . +I can not shut it down . 我 不能 關掉 它 . +She cooked us a wonderful meal . 她 為 我們 煮 了 豐盛 的 一餐 . +Not knowing what to do , I asked the teacher for advice . 因为 不 知道 做 什么 , 所以 我 向 老师 寻求 建议 . +Nobody watches her . 谁 也 没在 看 她 . +That is none of your business . 那 不關 你 的 事 . +Turn right at the next corner . 在 下 一個 轉角 右 轉 . +Tom has Mary is address . 汤姆 有 玛丽 的 地址 . +We easily figured out the password . 我们 毫不费力 地 想出 了 密码 . +Summer is over . 夏天 过去 了 . +Would you like another apple ? 你 要 再 來 顆 蘋果 嗎 ? +I am going to bed . Good night . 我 要 睡 了 . 晚安 . +Tom often reads when his children are not at home . 汤姆 经常 在 孩子 们 不 在家 时 阅读 . +We have spent too much time here . 我們 在 這裡 花 了 太 多 時間 . +No one can keep me from going there . 没 人 能 阻止 我 去 那儿 . +She has a cottage by the sea . 她 在 海边 有 一间 小屋 . +That is quite meaningless . 这 毫无意义 . +I know him by name , but not by sight . 我 知道 他 的 名字 , 但 不 知道 他 长 什么样 . +All those things are true . 那些 事 都 是 真的 . +The box is too heavy to carry . 這個 箱子 太重 了 無法 攜帶 . +Try this . 试试 这个 . +How much do I owe you ? 我 欠 您 多少 ? +What did you major in at college ? 你 大學 時 主修 什麼 ? +Do you want to die here ? 你 想 死 在 這裡 嗎 ? +I am tired of working a nine @-@ to @-@ five job . 我 厭倦 了 做 朝九晚五 的 工作 . +Tom knows many French songs . 汤姆 知道 许多 法语歌 . +I should not have eaten the whole bag of potato chips . 我 不该 把 一整 包 薯片 都 吃 完 的 . +Can we trust them ? 我们 能 信任 他们 吗 ? +Tom fell off his bicycle . 汤姆 从 他 的 自行车 上掉 了 下来 . +People grow more cynical with age . 人會 隨著 年齡 的 增長 而 更加 地 玩世不恭 . +He wants a book to read . 他 想 找 本書 來讀 . +Is there a discount if you pay in cash ? 用現 金付 的 話 會 有 折扣 嗎 ? +Tom can change . 湯姆 能 改變 . +I do not care what color ink , just bring me a pen . 颜色 无所谓 , 给 我 一支 笔 就行了 . +Come here quickly . 快 來 這裡 . +I do not understand what you are saying . 我 不 了解 你 在 說 什麼 . +I really need to read all this . 我 真的 需要 把 这 都 读 了 . +There is an urgent message for you . 你 有 一個 緊急 的 訊息 . +I have lost my umbrella . 我 丢 了 我 的 伞 . +They had to work all year round . 他們 一 整年 都 必須 工作 . +The world is running out of oil . 世界 上 的 石油 快用 完 了 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +Tom called the police . 汤姆 叫 了 警察 . +Tom was the only boy in the class . 汤姆 是 班里 唯一 的 男生 . +You ought to tell Tom that you will likely be late . 你 应该 告诉 汤姆 你 可能 会 迟到 . +I am anxious to see you . 我 渴望 見 到 你 . +Turn up the TV . 把 电视 声音 调大 点儿 . +I guess that is how Tom found me . 我 猜 那 就是 汤姆 找到 我 的 方法 . +This tie does not go with my suit . 這條 領帶 跟 我 的 西裝 不配 . +Do you know where Tom is waiting for us ? 你 知道 汤姆 在 哪里 等 我们 吗 ? +I do not think that he is sincere . 我 不 相信 他 是 真心 的 . +What book are you reading ? 你 在读 哪 本书 ? +Tom did a very good job today . 湯姆 今天 做 得 非常 好 . +We had bad weather yesterday . 昨天 天氣 很糟 . +I asked Tom a few questions . 我 问 了 汤姆 几个 问题 . +They know what happened . 他们 知道 发生 了 什么 . +At last , we reached our destination . 我们 终于 达到 了 我们 的 目标 . +Do not make a fool of me . 别 把 人家 当 傻瓜 . +I am almost finished reading this book . 我 就要 读完 这 本书 了 . +When was this temple built ? 这个 寺庙 是 何时 造 的 ? +I am not going to do anything to you . 我 不 會 對 你 做 任何 事 . +Come here , all of you . 你们 全都 过来 . +You must look over the contract before you sign it . 你 在 签字 前 必须 察看 这 合同 . +When did you change your address ? 你 什麼 時候 更改 了 你 的 地址 ? +Do you believe what he said ? 你 相信 他 說 的 話 嗎 ? +I am buying a new car . 我 在 买 一辆 新车 . +The population of London is much greater than that of any other British city . 倫敦 的 人口 遠遠 多 於 其他 英國 城市 的 人口 . +His memory amazes me . 他 的 记忆力 使 我 惊讶 . +Here is a pan without handles . 这 是 个 没有 柄 的 平锅 . +Tom and I have known each other for a long time . 湯姆 和 我 相識 很 久 了 . +A hundred years is called a century . 一百年 被 叫做 一个 世纪 . +I can not give up smoking . 我 無 法戒 煙 . +He is lacking in common sense . 他 缺乏 常识 . +You will not need it . 你 不 會 需要 它 . +I got your fax the other day . 我 前 幾天 收到 了 你 的 傳真 . +He asked me two questions . 他 問 了 我 兩個 問題 . +There was no water in the well . 這 口 井裡 沒有 水 . +He reluctantly agreed to my proposal . 他 不 情愿 地 同意 了 我 的 提案 . +She usually goes to bed at nine . 她 经常 九点 睡觉 . +I 'd very much like to go . 我 非常 想 离开 . +I can not sleep at night . 我 有 失眠症 . +Is it safe to eat cockroaches ? 吃 蟑螂 安全 吗 ? +Stop shooting . 停止 射击 . +It is awfully hot today . 今天 非常 熱 . +He was invited to be the chairman of the club . 他 受邀 做 俱乐部 的 主席 . +The day after tomorrow is Tom is birthday . 後 天 是 湯姆 的 生日 . +What is today is date ? 今天 幾號 ? +What is your name ? 叫 什麼 名字 ? +Winners do not use drugs . 優勝者 不 使用 藥物 . +Tom glanced at the clock on the wall . 湯姆 瞥 了 墻 上 的 表 一眼 . +We ran short of money . 我们 缺钱 了 . +A bottle of red wine , please . 請來 瓶紅 酒 . +If it rains on that day , the game will be postponed until the next fine day . 如果 那天 下雨 , 比赛 会 顺延 至 下 一个 晴天 . +Tom is perfect , is not he ? 湯姆 是 完美 的 , 不是 麼 ? +Watch yourself . 自己 当心 啊 . +They made him sign the contract . 他們 讓 他 簽約 了 . +You have got to set the alarm clock before you go to bed . 在 你 上床 睡覺 之前 , 你 必須 把 鬧 鐘 設定 好 . +I met a friend at the airport . 我 在 机场 见 了 个 朋友 . +Are you angry with Tom ? 你 在 生 汤姆 的 气 吗 ? +Traffic was blocked by a landslide . 交通 被 山崩 所 阻斷 . +Get me a ticket , please . 請 給 我 一張 票 . +Tom is not stupid . 汤姆 不 傻 . +They do not have to know . 他們 不 需要 知道 . +Put the book on the bottom shelf . 把 這 本書 放在 架子 的 底部 . +Money can not buy everything . 金钱 不能 买 到 所有 的 东西 . +I can not remember . 我 記 不得了 . +The President spoke to the nation on TV . 总统 在 电视 上 对 国民 讲话 . +You should have told me a long time ago . 很久以前 你 就 應該 告訴 我 的 . +I do not know and neither does he . 我 不 知道 , 他 也 不 知道 . +There are many stores in this area . 這個 區域 有 很多 商店 . +We have so many things left to do . 我们 有 许多 未 完成 的 事 . +Tom used a fire extinguisher to try and put the fire out . 湯姆 試著 用滅 火器 把 火 撲 滅 . +He is always smiling . 他 总是 在 笑 . +He is as smart as any other boy in the class . 他 和 班上 其他 男生 一样 聪明 . +Quit smoking if you do not want to die early . 如果 你 想 活 得 久 一点 就 戒烟 . +I am satisfied with his progress . 我 對 他 的 進步 感到 很 滿意 . +I want your love . 我 要 你 的 愛 . +Tom is going to be proud of you . 湯姆 要 以 你 為 傲 了 . +I love my wife . 我 爱 我 的 妻子 . +Please do not tell your parents this . 请 不要 告诉 你 父母 . +What do you want to tell me ? 你 想 跟 我 说 什么 ? +He eats lunch at a cafeteria . 他 在 自助餐 廳 吃 午餐 . +We go out together every weekend . 我們 每個 週末 都 一起 出去 . +He hurried to the station so he would not miss the train . 为了 不错 过 火车 , 他 匆匆 赶往 了 车站 . +I will write or phone you next week . 下周 我会 给 你 写信 或 打电话 的 . +Best wishes from all of us . 我们 所有人 都 祝福 你 . +I found the secret compartment quite by accident . 我 完全 是 在 偶然 的 情况 下 发现 了 密室 . +He caught a cold . 他 感冒 了 . +Please take off your shoes . 請 脫掉 你 的 鞋子 . +They announced that a storm was coming . 他們 宣布 了 暴風雨 即將 來臨 . +You can see a lot of stars in the sky . 你 能 看到 天空 中 的 繁星 . +Tom needed to wash his car . 湯姆 需要 洗 他 的 車 . +Give some meat to the dog . 給 這 隻 狗 一些 肉 . +My father goes jogging every morning . 我 父親 每天 早上 去 慢跑 . +London is famous for its fog . 倫敦 以 霧 著名 . +I think I lost my keys . 我 觉得 我 把 钥匙 丢 了 . +He will not be able to do the work . 他 没 能力 做 这个 工作 . +I bought her a nice Christmas present . 我 給 她 買 了 一個 不錯 的 聖誕 禮物 . +We reached the top of the mountain . 我們 到 達 了 山頂 . +When listening to a lecture , you should be quiet . 听 讲座 时 , 你 应该 保持 安静 . +Tom wants a glass of water . 汤姆 想要 一杯 水 . +I like to read . 我 喜欢 阅读 . +You must keep your eyes open . 你 得 留意 一下 . +Why did you come here ? 你 為 什麼 來 這裡 ? +Tom fell down . 湯姆 摔倒 了 . +It is absolutely impossible for me to go on like this . 让 我 像 这样 继续下去 是 绝对 不 可能 的 . +It is the right thing to do . 這 是 正確 的 事情 . +The bread is not fresh . 面包 不 新鲜 . +Thou shalt not kill . 不可 殺 人 . +One plus two equals three . 一加二 等于 三 . +I do not think you ought to . 我 認為 你 不 應該 . +Trouble began immediately . 麻烦 说来 就 来 . +I do not agree with you . 我 不 同意 你 的 看法 . +He snored loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +Did you hear about what is happened to Tom ? 你 有没有 听说 汤姆 出 了 什么 事 ? +Lips that touch liquor shall not touch mine . 碰 過 酒 的 嘴唇 就別 想 碰 我 的 唇 . +Would you lend me a pencil ? 能 借 我 支 铅笔 吗 ? +What is your schedule for tomorrow ? 你 明天 的 行程 安排 是 什麼 ? +That child has few friends . 那 孩子 沒有 什麼 朋友 . +Some abstract art is difficult to understand . 一些 抽象 藝術 是 很 難 理解 的 . +She kept me waiting for 30 minutes . 她 让 我 等 了 30 分钟 . +I wish I were rich . 但 願 我 很 有 錢 . +Father named me after his aunt . 父親 以 他 姑姑 的 名字 為 我 命名 . +Do not underestimate your own strength . 不要 低估 自己 的 实力 . +You do not have a fever . 你 没 发烧 . +I did not expect it to be that big . 我 没想到 它 有 那么 大 . +We are not stupid . 我們 不 傻 . +Be sure to drop us a line as soon as you get to London . 别忘了 一 到 伦敦 就 给 我们 留言 啊 . +Nagoya is to the east of Kyoto . 名古屋 在 京都 的 東方 . +I will personally visit you . 我 會 親自 拜訪 您 . +He saluted the lady . 他 向 那位 女士 问好 . +Man is mortal . 人 固有 一 死 . +I plan to catch the 10 : 30 train . 我 打算 搭 十點 三十分 的 火車 . +If you won a million yen , what would you do ? 如果 你 中 了 一百万 日元 的 奖 , 你 会 怎么 做 ? +You should have completed it long ago . 你们 很久 前 就 应该 完成 了 . +The guy with a beard is Tom . 长胡子 的 是 汤姆 . +They all looked for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +Do you want to drink some water ? 你 要 喝水 嗎 ? +Put your hat on . 戴 上 你 的 帽子 . +She is poor , but she is happy . 她 很 窮 , 但是 她 很快 樂 . +He is getting along well with all of his classmates . 他 和 他 所有 的 同学 相处 融洽 . +The bookcase is level with the table . 书架 和 桌子 齐平 . +I must have mistyped the number . 我 一定 是 打 錯號 碼 了 . +Did you see yesterday is eclipse ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +His grandmother looks healthy . 他 祖母 看 起來 很 健康 . +I have no particular reason to do so . 我 没有 特别 的 理由 去 做 . +Feel free to stay . 歡迎 留下 來 . +Will he be able to come tomorrow ? 他 明天 能来 吗 ? +I warned him , but he ignored the warning . 我 警告 過 他 , 但 他 不理 會 警告 . +You do not seem to like Tom . 你 看來 不 喜歡 湯姆 . +Tom spoke about the problem with Mary . 汤姆 跟 玛丽 说 了 这 问题 . +Is that the railroad station ? 这 是 火车站 吗 ? +Please remember what he said . 請 記住 他 說 的 話 . +That is very sweet of you . 您 真是 太好了 . +Stay out of my room . 别 进 我 的 房间 . +It is nothing serious . 這 沒 什麼 要 緊 的 . +Tom or somebody said that . 汤姆 或 某人 说 了 那事 . +Salmon lay their eggs in fresh water . 三文 魚 在 淡水 中產 卵 . +I did not have time to watch TV yesterday . 我 昨天 沒時間 看電視 . +Great progress has been made . 已经 取得 巨大 进展 . +Tom hit a triple . 湯姆 擊出 三壘 安打 . +The dog always barks at me . 狗 總是 對著 我 嚎叫 . +I wanted red shoes . 我 要 紅色 的 鞋子 . +He asked that we be silent . 他 要求 我們 安靜 . +I have no knife to cut with . 我 沒有 刀子 可用 來 切 . +Which book is yours ? 哪 本書 是 你們 的 ? +How much does this hat cost ? 这 顶 帽子 多少 钱 ? +Someone has been here . 有人 來 過 這裡 . +The boy entered by the back door . 那個 男生 從 後 門 進來 了 . +Tom is sloshed . 汤姆 醉 了 . +She married him . 她 嫁给 了 他 . +Wait for me downstairs . 在 楼下 等 我 +Pride goes before a fall . 骄傲 是 失败 的 先行者 . +Did they buy the juice ? 他們 有 買 果汁 嗎 ? +I can not find my suitcase . 我 找 不到 我 的 手提箱 . +Do you want some more tea ? 你 想 再 要点 茶 吗 ? +I just do not want to marry you . 我 就是 不想 嫁 給 你 . +Will you please explain the meaning of this sentence to me ? 您 能 为 我 解释 这 句句 子 的 意思 吗 ? +The bottle is filled with water . 這個 瓶子 裝滿 了 水 . +There were no more free seats . 没有 更 多 免费 座位 了 . +Luckily , we found an escape route . 幸運 的 是 , 我們 找到 了 逃生 通道 . +Let is get off here . 我们 在 这里 下车 吧 . +You remind me of a boy I used to know . 你 让 我 想起 我 过去 认识 的 一个男孩 . +You should wear a coat . 你 應 該 穿 一件 大衣 . +Tom is a racist . 汤姆 是 种族主义者 . +Bring me a bucket of water . 給 我 一桶 水 . +Other than Sundays , I work every day . 除了 星期天 我 每 一天 都 工作 . +Are you looking for work ? 你 是 在 找 工作 吗 ? +Are you sure Tom can do that ? 你 確定 湯姆 能 做 嗎 ? +Put in a little more sugar . 多 放 一點 糖 . +I will give you a call tomorrow . 明天 我 給 你 打 電話 . +He did not give me much advice . 他 没 给 我 多少 建议 . +You 'd better go by bus . 你 最好 坐 公共 汽車 去 . +I took the elevator to the third floor . 我 乘 电梯 上三楼 . +I did not mean to keep it secret . 我 不是 有意 要 保密 的 . +My brother is not as tall as I was two years ago . 我 弟弟 没 我 两年 前 高 . +We enjoyed singing songs together . 我們 喜歡 一起 唱歌 . +Pale ale is a low @-@ alcohol beer . 淡 啤酒 是 一種 酒精 含量 低 的 啤酒 . +That feels good . 感觉良好 . +Do not worry about it . 不要 擔心 它 . +Can I make a reservation for golf ? 我 能 预定 一下 打 高尔夫球 吗 ? +I saw a strange woman there . 我 看见 那儿 有个 奇怪 的 女人 . +Is not Tom from Australia ? 汤姆 不是 澳洲 来 的 吗 ? +I got acquainted with him last night . 我 昨晚 認識 了 他 . +You are a celebrity now . 你 现在 是 名人 了 . +The handyman was supposed to arrive at twelve noon , but got stuck in a traffic jam for a few hours . 這個 工人 本來 應該 在 中午 十二 點 到 達 , 但 他 被 交通堵塞 困住 了 幾個 小 時 . +You are your own worst enemy . 你 是 你 自己 最大 的 敌人 . +We are very disappointed in you . 我们 对 你 很 失望 . +Dutch is closely related to German . 荷蘭語 與 德語 關 係 密切 . +I think Tom lied to us . 我 觉得 汤姆 对 我们 撒谎 了 . +This hotel does not serve lunch . 這家 旅館 不 提供 午餐 . +Interest rates are still low . 利率 还是 低 . +This is the best pizza I have ever eaten . 這 是 我 吃 過 的 最好 的 比薩 . +I think Tom is talented . 我 認為 湯姆 有 才能 . +Remember to cross your t is . 记得 在 字母 t 上画 上 横 . +They fell into the conversation immediately . 他们 很快 就 聊起来 了 . +Please bring us two cups of coffee . 請 給 我們 來 兩杯 咖啡 . +Tom found new evidence . 汤姆 发现 了 新 的 证据 . +My father was no less affectionate and tender to me than my mother was . 我 爸爸 对 我 的 爱和 照顾 不 比 我 妈妈 少 . +Tom has been uncooperative . 湯姆 不 合作 . +There were few people on the beach . 沙灘 上 的 人 非常少 . +Let me read the paper when you have finished with it . 报纸 看完 后 借 我 看下 . +You will have to start at once . 你 必须 马上 开始 . +Tom does not pay much attention to how he dresses . Tom 没有 花费 精力 去 打扮 自己 . +We have to do something , Tom . 汤姆 , 我们 必须 要 做 点 什么 . +If you do not understand , ask . 如果 你 不 懂 , 那 就 问 . +He got injured in a traffic accident . 他 在 一場 交通 意外 中 受 了 傷 . +He is not going to buy a camera . 他 不 打算 买 一个 摄像机 . +She slept for a few hours . 她 睡 了 几小时 . +Do not ask me for money . 不要 問 我 要 錢 . +I could not leave Tom . 我 不能 離開 湯姆 . +Tom is an unknown artist . Tom 是 個 不 知名 的 藝術家 . +I will be happy to attend your party . 我 很快 樂能 參加 你 的 派 對 . +She has no enemies . 她 没有 敌人 . +You look really nervous . 你 看起来 真的 很 紧张 . +Watch him and do what he does . 看著 他 並 跟著 他 做 . +My mother is not at home . 我 媽媽 不 在家 . +I asked her for a date . 我 向 她 提出 約 會 的 請求 . +I will treat you . 我 請 你 . +Bright ideas never occur to me . 我 總 想不出 什麼 好 點子 . +I was the one who had to tell Tom . 该 由 我 告诉 汤姆 . +Can you speak English ? 你們 會 說 英語 嗎 ? +Her father devoted his life to science . 她 父亲 把 一生 都 贡献 给 科学事业 了 . +I sometimes watch TV . 我 有 時 看 電視 . +The children were playing in the dirt . 孩子 们 在 尘土 里 游戏 . +She assigned him to the job . 她 指派 他 做 這個 工作 . +I ran as fast as possible . 我 盡 可能 地 跑 快 一點 . +Perhaps you are right . 也许 您 有 道理 . +Someone pushed me inside . 有人 推 我 到 裡面 . +Who can say what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +This extension cord is too short . 這條 延長 線 太短 了 . +I rejected the offer . 我 拒绝 了 报价 . +I asked a policeman for directions . 我 向 一個 警察 問路 . +Do you know my name ? 你 知道 我 的 名字 嗎 ? +The swimmers were numb with cold . 游泳 選手 們 凍僵 了 . +He visited his hometown for the first time in ten years . 他 10 年 中 第一次 访问 他 的 故乡 . +Is anybody in there ? 那边 有人 吗 ? +Is there a zoo in the park ? 公园 里 有 动物园 吗 ? +This table is reserved . 这个 桌子 被 预约 了 . +I have chapped lips . 我 的 嘴 裂开 了 . +Do you think the weather will be fine tomorrow ? 你 觉得 明天 天气 会 变 好 吗 ? +Well , girls , it is time to go . 那么 , 女孩 们 , 是 时候 出发 了 . +Her father made her tell him everything . 她 的 父親 要 她 告訴 他 一切 . +I do forgive Tom . 我 真的 原谅 汤姆 . +When does it begin ? 什么 时候 开始 ? +America likes to claim that it is a " classless " society . 美国 是 一个 自称 没有 社会阶层 的 国家 . +I usually walk to school . 我 通常 走 去 学校 . +Eat and drink . 吃 吧 , 喝 吧 . +They say love is blind . 人们 说 爱情 是 盲目 的 . +Are you free this afternoon ? 你们 今天下午 有空 吗 ? +This is delicious . 很 美味 . +You ought to ask him for advice . 你 应该 向 他 征求意见 . +I go to bed very early . 我 很 早就 去 睡 覺 . +Banks open at nine o 'clock . 銀行 九點 開門 +I saw your brother the other day . 前 幾天 我 看到 了 你 哥哥 . +Why do you want to study abroad ? 为什么 您 想到 外国 读书 ? +These days it snows quite a lot . 这些 天下 了 好多 雪 . +Even though I studied English for 6 years in school , I am not good at speaking it . 尽管 我 在 学校 学 了 6 年 英语 , 我 还是 说 不好 . +He was the first person to arrive . 他 是 第一 個 到 達 的 人 . +I was awfully confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can understand what she is saying . 我 能 了解 她 在 說 什麼 . +This could hurt our business . 这 会 打击 我们 的 生意 . +I hear they are pretty good . 我 听说 他们 挺 好 . +My sister resembles my mother . 我 妹妹 很 像 我 妈妈 . +I am as hungry as a horse . 我 餓 得 像 匹馬 . +I am not turning back . 我 不 回去 . +Tom stayed in Australia for three years . 汤姆 在 澳大利亚 呆 了 三年 . +Let me introduce my mother to you . 讓 我 向 你 介紹 我 的 母親 . +Remember Tom is advice . 记住 汤姆 的 建议 . +Tom probably does not know how to do that as well as Mary . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Roll the ball to me . 把 球 传给 我 . +He is a head taller than me . 他 比 我 高 一个头 . +I do not care . 我 无所谓 . +The boy came running into the room . 小男孩 跑 進 了 房間 . +My father works at a factory . 我 父亲 在 工厂 工作 . +A gentleman would not do such a thing . 一个 绅士 是 不会 做 这种 事 的 . +Tom does not want to let Mary go . Tom 不想 让 Mary 走 +I do not know what I should do now . 我 不 知道 现在 应该 做 什么 . +Are you interested in politics ? 你 对 政治 感兴趣 吗 ? +And everyone has the ability to contribute . 每个 人 都 有 能力 作贡献 . +Sorry , but I can not hear you very well . 對 不起 , 但 我 聽 不 清 你 說 的 話 . +I should be studying English , but I want to watch a movie . 我 真的 應該 學 英語 , 但是 我 想 看 電影 . +She felt insecure about her future . 她 對 她 的 未來 感到 沒有 安全感 . +Tom waited outside . 湯姆 在 外面 等 . +Do you understand ? 你 明白 了 嗎 ? +As for me , I have no objection . 对于 我 , 我 不 反对 . +He plays baseball tomorrow . 他 明天 將 打 棒球 . +How could things get worse ? 事情 怎麼 變 糟 的 ? +I have to get to sleep ! I have got classes tomorrow . 我 必须 去 睡觉 了 ! 我 明天 早上 有 课 . +Think about tomorrow . 請 思考 一下 明天 . +Do not come into my room . 不要 進入 我 的 房間 . +What do you think of those Japanese writers ? 你 觉得 那些 日本 作家 怎么样 ? +It seems to me that she has a tendency to exaggerate . 在 我 看來 , 她 有 一種 誇張 的 傾向 . +Maybe we should open it now . 我們 現在 可能 該 打開 它 . +I want to brush up my English . 我 要 溫習 一下 我 的 英文 . +It soon began to rain very hard . 很快 就 會 開始 大雨 了 . +The revolution has brought about many changes . 这场 革命 已经 带来 了 很多 改变 . +Tom worked hard to get the work done on time . 汤姆 努力 工作 按时 完成 工作 . +Since he has ambitions , he works hard . 因為 他 有 野心 , 他 很 努力 地 工作 . +This is too expensive ! 这 太贵 了 . +I have to say this . 我 得 说 这事 . +She is busy now and can not speak to you . 她 现在 忙 , 不能 跟 你 说话 . +It is your favorite song . 它 是 你 最 喜歡 的 歌 . +He convinced me of his innocence . 他 让 我 相信 他 是 无辜 的 . +He has more than five dictionaries . 他 有 五本 以上 的 字典 . +All I really want to do is talk to Tom . 我 真正 想 做 的 就是 跟 湯姆 說 話 . +My uncle is company launched a new product last month . 舅舅 的 公司 上个月 推出 了 一项 新 产品 . +I am glad I was there . 我 很 高興 我 在 那裡 . +Leave this to me . 把 这个 留给 我 吧 . +Please wait until the end of this month . 本月 结束 之前 请 等待 . +Only six people came to the party . 只有 六個 人 參加 了 派 對 . +Come along with us . 跟 我們 一起 來 吧 . +That was really unfair . 那 真不 公平 . +You are not authorized to enter there . 你 无权 进入 那里 . +She is not afraid of anything . 她 不 害怕 任何 東西 . +The paint was coming off the wall . 油漆 從 牆上 脫落 . +She kept on working . 她 繼續 工作 . +She must have done it yesterday . 她 昨天 一定 已經 做 過 了 . +A big tree fell in the storm . 一棵 大樹 在 暴風 中 倒下 . +I look forward to seeing you again . 我 期待 著 再次 見 到 你 . +Why are you wearing that scarf ? 你 为什么 戴 那条 围巾 ? +I asked him to open the window . 我 請 他 把 窗戶 打開 . +I have not smoked for ages . 我 很久没 有 抽烟 了 . +I agree with him . 我 同意 他 . +We will continue . 我们 要 继续下去 . +What time shall I pick you up ? 我 該 幾點 去 接 你 ? +I will let you know in advance . 我会 让 你 提前 知道 . +I only know him by name . 我 只 知道 他 的 名字 . +May I help you ? 我 能 幫 你 嗎 ? +Do you have a lot of money on you ? 你 身上 有 很多 钱 吗 ? +Can you do that by yourself ? 你 自己 一個 人 能 做 嗎 ? +Other than Sundays , I work every day . 我 除了 星期天 外 每天 都 上班 . +The policeman arrested him for drunken driving . 警察 因 酒 後 駕駛 逮捕 了 他 . +I like shopping on Ebay . 我 喜欢 在 eBay 上 购物 . +This is a bad thing . 這 是 件 壞 事 . +They broke into the jewelry shop . 他們 闖進 了 珠寶 店 . +I eat meat three times a week . 我 每週 吃 肉 三次 . +I go to church on Sundays . 周日 我 去 做礼拜 . +The conflict between blacks and whites in the city became worse . 在 这个 城市 , 白人 和 黑人 间 的 争端 愈演愈烈 . +They hugged . 他们 拥抱 . +They trust Tom . 他们 信任 汤姆 . +Mother prepared lunch for me . 妈妈 为 我 准备 了 午饭 . +Speaking English is not easy . 說 英語 是 不 容易 的 . +I was in London last month . 上個月 我 在 倫敦 . +Get me the newspaper . 去 拿 一下 报纸 . +It is ten minutes ' walk to the station . 步行 到 車 站 要 花 十分 鐘 . +It is not good for anybody . 这 对 任何人 都 不好 . +I have always trusted your judgment . 我 一直 都 相信 你 的 判断 . +Where is the kitchen ? 厨房 在 哪 ? +I was very relaxed . 我 很 放 鬆 . +Write your name and address on this envelope . 把 你 的 姓名 和 地址 寫 在 這個 信封 上 . +He likes to watch baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I heard our dog barking all night . 我 聽到 我們 的 狗叫 了 一整夜 . +She fainted when she saw blood . 她 看见 血 就 晕 了 . +I was not alone then . 我 当时 不 孤单 . +I have no friends to help me . 我 没 朋友 帮 我 . +I asked him for a favor . 我 請 他 幫 忙 . +He makes good use of his talents . 他 善用 他 的 天赋 . +I just want to be happy . 我 只 想 高兴 . +She is going to Mount Tate . 她 將 去 立山 . +He told me an interesting story . 他 告訴 了 我 一個 有趣 的 故事 . +I do not like being the one who always has to milk the cow . 我 不 喜欢 做 那个 总是 挤 牛奶 的 人 +He placed the book on the shelf . 他 把 书 放在 了 书架上 . +I know that life is short . 我 知道 生命 是 短暂 的 . +I am just playing the devil is advocate . 我 在 给 魔鬼 当 辩护士 . +What is your opinion on that ? 关于 那个 你 有 什么 看法 ? +I got on the train for London . 我 登上 去 伦敦 的 火车 . +Something is changing . 有些 東西 在 變化 . +English is studied all over the world . 世界各地 都 讀 英語 . +A cold front swept over Europe . 一股 寒流 侵袭 了 欧洲 . +He is getting along with his neighborhood . 他 和 他 的 邻居 相处 . +Please speak a little more slowly . 請 講 慢 一點 . +He parked his car in front of the building . 他 把 车 停 在 大楼 前 . +Foxes eat hens . 狐狸 吃 母鸡 . +The explanation is by no means satisfactory . 這個 解釋 不是 很 令人 滿意 . +Can you feel the difference ? 你 能 感受 到 不同 之處 嗎 ? +I am looking forward to seeing him . 我 期待 再次 見 到 他 . +This coffee is too hot for me to drink . 这 咖啡 热 得 我 没 办法 喝 . +I will never see him again . 我 永遠 不 會 再 看到 他 . +I like chocolate . 我 喜歡 巧克力 . +He was scared you would shoot him . 他 害怕 你 會 開 槍 打 他 . +I am not tired at all . 我 根本 不累 . +She poured brandy into the glasses . 她 把 白蘭 地 倒 進 玻璃杯 裡 . +She is very clever . 她 很 聰明 . +That is Tom is mother . 那 是 汤姆 的 妈妈 . +See you later . 再见 . +What if Tom is still alive ? 如果 汤姆 还 活着 呢 ? +I also had a very good time . 我 也 过 得 很 愉快 . +Those records are not accessible to the public . 這些 記錄 不 對 公眾 開放 . +Nobody knows when the earthquake will occur . 没有 人 知道 地震 何时 会来 . +After they argued , they did not speak to each other for a week . 他们 争吵 后 , 一周 都 没有 再 说话 . +What is this ? 這 是 什麼 啊 ? +She gave birth to a daughter yesterday . 她 昨天 生 了 一個 女兒 . +Do not put your elbows on the table . 不要 把 你 的 手肘 放在 桌子 上 . +Do you think he is good for the position ? 你 认为 他 适合 这个 职位 吗 ? +I turned the doorknob . 我 轉動 了 門 把 . +Tom is looking for someone to take Mary is place . Tom 正在 找 其他人 代替 Mary . +I canceled my hotel reservation . 我 取消 了 我 旅館 的 預訂 . +Let is have a few drinks tonight . 讓 我們 今晚 喝 幾杯 . +Tom is a very good singer . 汤姆 是 个 很好 的 歌手 . +I can not find fault with him . 我 挑不出 他 的 毛病 . +It is not a road , but a path . 它 不是 一條 路 , 而是 一條 小徑 . +My mother opened the door very carefully . 我 妈妈 小心翼翼 地 打开门 . +What have I got to lose ? 我 要 失去 什么 ? +Could I park my car here ? 我 能 把 我 的 车 停 在 这儿 吗 ? +Do you have a fever ? 你 發燒 了 嗎 ? +May I borrow your bike ? 我 能 借 一下 您 的 自行车 吗 ? +Put it back on the desk . 把 它 放回 桌子 上 . +She is a noted singer . 她 是 一个 著名 的 歌手 . +You are not going in the right direction . 你 要 南辕北辙 了 . +What did he ask you ? 他 問 你 什麼 ? +She has blue eyes . 她 有 蓝色 的 眼睛 . +Everybody looks up to Tom . 每个 人 都 看 向 汤姆 . +There is a basket under the table . 桌子 底下 有 一個 籃子 . +He accepted her gift . 他 接受 了 她 的 礼物 . +I asked him point @-@ blank . 我 直接 地 問 了 他 . +I play volleyball a lot . 我 常 打 排球 . +Let is eat while the food is warm . 讓 我們 趁 熱 吃 吧 . +Tom is asleep on the couch . 汤姆 在 长沙 发 上 睡着 了 . +This wine tastes great . 這 葡萄酒 非常 好喝 . +He is a man of ability . 他 是 个 能干 的 男人 . +I speak Swedish . 我 说 瑞典语 . +There is something I want you to see . 我 有 东西 想 给 你 看看 . +It is my job . 這 是 我 份 內 的 事 . +Feel this . 来 感受一下 这个 . +That is a great poem . 這 是 一首 很棒 的 詩 . +Tom is a French teacher . 汤姆 是 法语 老师 . +I have not seen you for ages . 我 已經 有 很 長 的 時間 沒有 見到 你 了 . +In some countries , the punishment for treason can be life in prison . 在 一些 國家 , 叛國 罪 的 懲罰 可以 是 終身 監禁 . +He is three years older than her . 他 比 她 大 三岁 . +I do not understand any French . 我 一点 法语 都 不 懂 . +Riding double on a bicycle is dangerous . 腳踏車 雙載 是 危險 的 . +Tom is as tall as his father . 湯姆 跟 他 爸爸 一樣 高 . +Where is the pain ? 哪裡 痛 ? +I am busy . 我 很忙 . +Are we allowed to take pictures here ? 这里 允许 拍照 吗 ? +What did you get for Christmas ? 你 耶 誕節 得到 了 什麼 ? +We got permission to park here . 我們 有 在 這裡 停車 的 許 可 . +He came home three hours later . 他 三個 小 時 後 回家 了 . +She proceeded with the work . 她 继续 工作 . +I have a computer . 我 有 一台 电脑 . +You will never be alone . 你 永远 不会 一个 人 的 . +He rescued a boy from drowning . 他 救 了 一个 溺水 的 男孩 . +I think we are ready to do that . 我 认为 我们 准备 好 了 . +We all like cycling . 我们 都 喜欢 骑 自行车 . +She used to live with him . 她 以前 和 他 住 一起 . +Are you for real ? 你 是 认真 的 吗 ? +I do not feel very well . I should go home . 我 感覺 不太好 , 我 該 回家 . +I was not quite sure what to say . 我 不 太 確定 要 說 什麼 . +I do not understand at all . 我 完全 不 懂 . +Tom was fired . 湯姆 被 解僱 了 . +That movie is for children . 那部 電影 是 給 小孩 看 的 . +The river is on the other side of the hill . 河 在 山丘 的 另一端 . +I have finished reading the book . 我 看 完 了 这 本书 . +Tom could not conceal his disappointment . 汤姆 不能 掩饰 他 的 失望 . +Why are you burning these pictures ? 为什么 你 要 烧 这些 图片 呢 ? +Give me the report . 给 我 报告 . +The dog barked at the mailman . 狗 對著 郵差 叫 . +What does this word mean ? 这个 词 是 什么 意思 ? +He is studying at his desk . 他 正在 他 的 書 桌旁 讀書 . +He had to clean his room . 他 不得不 打扫 了 他 的 房间 . +Tom was a teacher for nearly thirty years . 汤姆 当 教师 约 三十年 了 . +I suggest we move to a safer location . 我 建議 我們 去 個 更 安全 的 地方 . +It is said that treasure is buried in this area . 据说 这个 区域 埋 着 财宝 . +Nobody knows where he has gone . 沒 有人 知道 他 去 了 哪裡 . +He was wet all over . 他 从头到脚 都 湿 了 . +He patted me on the shoulder . 他 拍拍 我 的 肩膀 . +He is a learned man . 他 是 个 有 教养 的 人 . +Tom is hope was to win first prize . 湯姆 希望 贏 得 第一名 . +The wind blew too hard for them to play in the park . 风 刮得 太猛 , 他们 没法 在 公园 里 玩 了 . +This is my book . 这 是 我 的 书 . +I admire you for your courage . 我 佩服 你 的 勇氣 . +Can you use a computer ? 您 会 使用 计算机 吗 ? +I regret eating those oysters . 我 後 悔 吃 了 那些 牡蠣 . +The sky grew darker and darker . 天空 变得 越来越 暗 了 . +I solved the problem easily . 我 很 容易 地 解決 了 這個 問題 . +Tom let Mary go home . 湯姆 讓 瑪麗 回家 . +We will change trains at the next station . 我們 會 在 下 一站 換 火車 . +Do not read while walking . 不要 边走边看 书 . +You should have told me yesterday . 你 昨天 就 该 告诉 我 了 . +Tom does not like people who smoke in no smoking areas . 汤姆 讨厌 在 禁烟 区 吸烟 的 人 . +Mary had to go to school . 瑪麗 必須 去 上 學 . +I ate your strawberries . 我 吃 了 你 的 草莓 . +He is new in town . 他 刚来 这 镇上 . +I am a vegetarian . 我 是 素食主义者 . +Let is go to the beach . 讓 我們 去 海邊 吧 . +Tom does not want to go alone . 汤姆 不想 一个 人 走 . +The problem is Tom . 問題 是 湯姆 . +Every time he comes here , he orders the same dish . 每次 他 来 这里 点 一样 的 菜 . +Tom yawned . 汤姆 打哈欠 了 . +Are you serious ? 你 是 认真 的 吗 ? +He came to Japan seven years ago . 他 七年 前來 日本 . +She made a man of him . 她 使 他 長大 成人 . +Please let us know . 請 讓 我們 知道 . +He had no luck in finding work . 他 找 工作 不 走 運 . +He lived to be eighty years old . 他 活到 了 八十 歲 . +I am trying to think of a better plan . 我 试 着 考虑 更好 的 计划 . +I stayed home because of the rain . 因為 下雨 , 所以 我 待 在家 裡 . +Where is the nearest travel agency ? 最近 的 旅行社 在 哪裡 ? +I saw him cross the street . 我 看见 他 穿过 了 马路 . +How tall is your brother ? 你 的 兄弟 多 高 ? +I like to do my homework . 我 喜歡 做 我 的 作業 . +I am very lonely . 我 很 寂寞 . +He arrived in time . 他 准时 来 了 . +I did not see anything . 我什麼 都 沒 看見 . +What is your favorite way to cook potatoes ? 你 最 喜歡 用 什麼 方式 煮 馬鈴薯 ? +You must start immediately . 你 必须 马上 开始 . +Tom gave Mary a flashlight . 汤姆 给 了 玛丽 一把 手电筒 . +He crossed the river in a small boat . 他 乘 小船 過河 . +He gave me authority to fire them . 他 授權 給 我 解僱 了 他們 . +I think Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +There was a steady increase in population . 人口 穩定 地 增加 . +Admission is free for children . 儿童 免费入场 . +Tom blushed . 汤姆 脸红 了 . +Do not throw away this magazine . 不要 丟掉 這 本 雜 誌 . +My wife is afraid to drive my new car . 我 的 妻子 害怕 开 我 的 新车 . +I am not a child , but sometimes you talk to me as if I were a child . 我 不是 小孩子 , 但 有时 你 跟 我 说话 就 好像 我 是 小孩子 一样 . +Tom is busy now and can not talk with you . 湯姆 現在 忙 , 不能 跟 你 講 話 . +It snowed a lot last year . 去年 下 了 很多 雪 . +He asked me if I was busy . 他 问 我 是否 很 忙 ? +He tried to unify the various groups . 他 試著 統一 不同 的 團體 . +He likes to smoke in the toilet . 他 喜欢 在 厕所 里 吸烟 . +You are taller than most of Tom is friends . 你 比 汤姆 的 大部分 朋友 都 高 . +I have three cameras . 我 有 三台 攝影 機 . +I know an English teacher who comes from Canada . 我 认识 一个 加拿大 来 的 英语 教师 . +The door was kicked open . 门 被 踢开 了 . +Tom and I are teammates . 湯姆 和 我 是 隊友 . +Let me go alone . 讓 我 一個 人 去 . +This time it is different . 這次 不 一樣 . +The bridge will be completed by the end of this year . 大橋 將 在 年底 完工 . +He started going bald quite young . 他 很年 輕 就 開始 禿頭 了 . +Tom deserves to be blamed . 汤姆 应当 被 责备 . +I do not understand German . 我 不 懂 德语 . +Do you have any plans for tomorrow ? 明天 你 有 什么 安排 没有 ? +I am hungry , so I am going to get something to eat . 我 餓 了 , 所以 我 要 吃 東西 . +I am as hungry as a horse . 我 饿 得 跟 饿虎扑羊 似的 . +Will you have another slice of pie ? 你 要 再 來 一塊 餡餅 嗎 ? +I share a bedroom with my sister . 我 跟 我 姐姐 共用 同一 間 臥房 . +Let me have a look at those photos . 让 我 看看 那些 照片 . +Have you seen any movies lately ? 最近 看 了 什么 电影 没有 ? +They love each other . 他們 彼此 相愛 . +I will pick you up at your home . 我会 去 你家 接 你 . +My papers were in that box . 我 的 文件 在 那個 箱子 裡 . +I accompanied her on the piano . 我 彈 鋼琴 為 她 伴奏 . +They dropped out of school . 他們 輟學 了 . +This is smaller than that . 这个 比 那个 更 小 . +His brazen act of defiance almost cost him his life . 他 怀疑 的 无耻 行为 差点 要 了 他 的 命 . +We are sorry we can not help you . 我们 很 遗憾 没 能 帮助 你们 . +Our school is fifty years old . 我們 學校 有 五十年 的 歷史 了 . +That is just your imagination . 这 只是 幻想 而已 . +He called me up almost every day . 他 幾乎 每天 打 電話 給 我 . +I used to swim in this river . 我 以前 在 這條 河裡 游泳 . +Where did you guys go ? 你们 这些 家伙 去 哪儿 了 ? +Tom waved at Mary from the helicopter . 湯姆 在 直升 機上 向 瑪麗揮 手 . +I am a little confused . 我 有 一点 困惑 了 . +There is one apple on the desk . 桌上 有个 苹果 . +I do not like reading at all . 我 一点 都 不 喜欢 阅读 . +I hope you will call again . 我 希望 你 會 再 打 一次 電話 . +Tom sat at his desk working . 湯姆 在 他 的 桌邊 工作 . +We should tell children how to protect themselves . 我们 应该 告诉 孩子 怎么 保护 自己 . +Hand me the remote . 把 遥控器 递给 我 . +I do not want to lose you . 我 不想 失去 你 . +What are you looking at ? 你 在 看 什么 ? +He is mean . 他 很 凶 . +You have the same racket as I have . 你 的 球拍 跟 我 的 一樣 . +Tom works at a fast @-@ food restaurant . 汤姆 在 一家 快餐店 工作 . +The boy feared the dark . 这个 男孩 害怕 黑夜 . +I always have to wear a tie because of my job . 因為 這份 工作 的 關 係 , 我 總是 要 打 領帶 . +Please come whenever you like . 請 你 想 什麼 時候 來 都 可以 . +Do you know who he is ? 你 知道 他 是 誰 嗎 ? +That child resembles his father . 那 孩子 和 他 父亲 很 像 . +How many friends do you have ? 你 有 多少 朋友 ? +She understands you now . 她 现在 了解 你 . +I do not mind if the weather is hot . 天气 热点 儿 没关系 . +Are you busy on Sunday afternoon ? 你 週日 下午 忙 嗎 ? +Why am I still here ? 为什么 我 还 在 这里 ? +Tom opened the blinds and looked out the window . 汤姆 打开 百叶窗 , 向 窗外 望去 . +I do not trust businessmen . 我 不 相信 商人 . +Your manners are not very good . 你 的 禮貌 不是 很 好 . +I can not do anything . 我 不会 做 任何 事 . +You and I are the same age . 你 和 我 同龄 . +All their secrets have been revealed . 他們 所有 的 秘密 都 已經 被 揭曉 了 . +It was very far . 它 很遠 . +Is she your mother ? 她 是 你 媽 媽 嗎 ? +His shirt was stained with sauce . 他 的 衬衫 被 酱汁 弄脏了 . +Would you like more coffee ? 你 想 再 喝 點 咖啡 嗎 ? +Stop talking loudly . 停止 大声 说话 . +I study about two hours every day . 我 每天 讀書 大約 兩個 小 時 . +We know that all men are mortal . 我們 知道 人 皆 難免 一死 . +Please keep an eye on my suitcase . 請 留神 看著 我 的 手提箱 . +She whispered something into his ear . 她 在 他 耳邊 低聲 說 話 . +You could run . 你 能 跑 . +Tom really does not like you . 汤姆 真的 不 喜欢 你 . +In this case , the adjective goes before the noun . 在 这种 情况 下 , 形容词 放在 名词 前面 . +He does not come here every day . 他 不是 每天 都 來 這 . +I helped my father wash his car . 我 幫 我 父親 洗 他 的 車 . +Tom still can not read . 汤姆 还是 不能 读书 . +Give me the same , please . 请 给 我 同样 的 东西 . +Why are you so mean to me ? 你 为什么 对 我 这么 小气 ? +Who built it ? 这 是 谁 建 的 ? +Some people believe in ghosts . 有些 人 相信 鬼 . +This desk is made of wood . 这 张 书桌 是 木制 的 . +Tom is consoling Mary . 汤姆 在 安慰 玛丽 . +I wrote the wrong address on the envelope . 我 在 信封 上 写错 了 地址 . +Not a star was to be seen . 星星 沒有 被 看到 . +The audience was very large . 观众 人数 庞大 . +Europeans like to drink wine . 欧洲人 喜欢 喝酒 . +I do not like this one . 我 不 喜欢 这个 . +His company did not survive the crisis . 他 的 公司 沒有 從 危機中 倖 存 . +There was nothing left in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Tom has not finished his lunch yet . 湯姆 還 沒 吃 完 他 的 晚飯 . +Do not you want to use mine ? 你 不想 用 我 的 嗎 ? +If you 'd listen a little more carefully to what the teacher says , you 'd probably be able to understand . 假如 你 在 老师 讲课 的 时候 再 集中 一点 去 听讲 的话 , 你 应该 就 能 弄 明白 了 . +We want to be on the first bus tomorrow morning . 我们 想 乘 明天 早上 第一班 公交车 . +He will make a good team captain . 他 會 成為 一個 好 隊長 . +I do not want it anymore . 我 再也 不 想要 了 . +I have been to Australia three times . 我 去過 澳洲 三次 . +People should do their best . 人們 應該 盡力 而為 . +He is getting along with his employees . 他 和 他 的 員工 相處 . +I am asking what your opinion is . 我 在 問 你 的 選擇 是 甚麼 . +He shook his head up and down . 他 上下 晃 了 晃头 . +Would you like another cup of tea ? 你 想 再 要 杯 茶 吗 ? +He changed schools last year . 去年 他 转校 了 . +Please come back home as soon as you can . 请 尽快 回家 . +I have to go to the bank . 我 必须 到 银行 去 . +Tom will never willingly go there by himself . 汤姆 绝不会 愿意 独自 去 那里 . +I do not have any change . 我 没 任何 零钱 . +A person views things differently according to whether they are rich or poor . 每 一個 人 對 事情 的 看法 不同 是 依據 他們 是 富有 還是 貧窮 . +I think you will find it convenient to put a short @-@ cut on the desktop . 我 想 你 迟早会 知道 在 桌面 建立 一个 快捷方式 是 有 多 方便 . +A fox is not caught twice in the same snare . 狡兔三窟 . +I am lost . Can you help me , please ? 我 迷路 了 , 能 不能 请 您 帮 我 一下 ? +Attack is the best form of defense . 進攻 是 最好 的 防禦 . +The system worked . 系统 运行 起来 了 . +My mother is a good woman . 我 媽媽 是 個 好 女人 . +He checked in at a good hotel . 他 入住 了 一間 很好 的 旅館 . +Tomorrow there is a high probability it will rain . 明天 很 有 可能 下雨 . +Let is get to work . 干活 吧 . +I think you are quite right . 我 認為 你 說 得 很 對 . +I like summer the best . 我 最 喜歡 夏天 . +He was named after his grandfather . 他 以 他 祖父 的 名字 被 命名 . +You should get your car fixed . 你 應該 把 你 的 車 修好 . +Nagoya is between Tokyo and Osaka . 名古屋 在 東京 和 大阪 之間 . +Mary succeeded in her studies . 玛丽 在 研究 上 成功 了 . +Tom had a hunch that Mary was seeing someone else . 汤姆 预感 到 玛丽 在 见 别人 . +You do not have to kick yourself . 你 不要 自甘堕落 . +Please take good care of yourself . 請 好好 照顧 你 自己 . +One year has twelve months . 一年 有 十二 個 月 . +Could you turn it down ? 你 可以 轉 小聲 一點 嗎 ? +Carrots cost three dollars . 胡萝卜 要 三 美元 . +I am free tonight . 我 今晚 有空 . +He is younger than me . 他 比 我 年轻 . +I did not know that he was Japanese . 我 不 知道 他 是 日本 人 . +Tom said that he wanted to eat Chinese food . 湯姆 說 他 想 吃 中國 菜 . +The boy actually was going to do it . 這個 男孩 實際 上 是 要 去 做 . +Tom and I are in the same class . 湯姆 和 我 在 同一 個 班 裡 . +Is this a duty @-@ free shop ? 這 是 一間 免稅 商店 嗎 ? +Why are you angry ? 你 为什么 生气 ? +I do not like learning irregular verbs . 我 不 喜欢 学习 不规则 动词 . +I graduated from high school last year . 去年 我 從 高中 畢業 了 . +What would the world be like without women ? 没有 女人 的话 , 世界 会 是 什么样 ? +This guidebook might be of use to you on your trip . 这本 导游 册子 或许 会 对 你 的 旅行 有 帮助 . +I will only buy the car if they repair the brakes first . 除非 他们 事先 修好 刹车 , 我 才 会 买 车子 . +The ticket is good for three days . 這 張 票 的 有效期 是 三天 . +He dropped the cup and broke it . 他 把 杯子 掉 到 地板 上 打碎 了 . +Let me do that . 让 我 去 做 . +Tom passed away October 20 , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +He studied English history . 他 学 了 英国 历史 . +Suddenly , it began to rain . 突然 開始 下雨 . +I still have not found anything . 我 还 什么 都 没 找到 呢 . +My wife wants to adopt a child . 我 妻子 想 收养 一个 孩子 . +We all have secrets . 我們 都 有 秘密 . +We had a good conversation . 我们 谈 得 不错 . +He had his shirt on inside out . 他 把 他 的 襯衫 穿反 了 . +Who will be elected chairman ? 谁 将 当选 主席 呢 ? +I would like to dance . 我 想要 跳舞 . +We gazed at the beautiful scenery . 我們 望著 這 美麗 的 風景 . +That could not have gone any worse . 再 糟糕 不过 了 +I have nothing to say with regard to that problem . 对于 这个 问题 我 无可奉告 . +I just can not believe it . 我 真是 不能 相信 . +The old man made out his will . 這位 老先生 立 了 他 的 遗嘱 . +I thought that we had found the perfect hiding place , but the police found us . 我 以为 我们 发现 了 绝妙 的 藏身之处 , 但 警察 找到 了 我们 . +Are you saying Tom is hiding something from us ? 你 说 Tom 对 我们 隐藏 了 一些 事情 ? +Cheers ! 乾杯 ! +I am first . 我 是 第一 . +He left the book on the table . 他 在 桌子 上 留下 了 這 本書 . +I need to go to the toilet . 我 要 去 上 廁所 . +I am ill . 我 生病 了 . +He ate all of the apple . 他 把 整个 苹果 都 吃 了 . +What is your name ? 您 叫 什么 名字 ? +Being rejected is painful . 被 拒絕 是 痛苦 的 . +Tom is not dumb . 汤姆 不 傻 . +Could you help me find my dog ? 你 能 幫 我 找到 我 的 狗 嗎 ? +There is no mistake . 没有 错误 . +Please help me with my homework . 請 幫 我 做 我 的 家庭 作業 . +He was not able to open the box . 他 沒有 能力 打開 箱子 . +His new car is wonderful . 他 的 新車 很棒 . +I could barely get out of bed yesterday . 我 昨天 幾乎 下 不了 床 . +Come whenever you want . 什么 时候 想来 就 过来 吧 . +English is spoken in Canada . 在 加拿大 的 人 說 英語 . +I do not know where he lives . 我 不 知道 他 住 在 哪裡 . +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +The police are checking their bags . 警察 正在 检查 他们 的 包 . +Give me a bottle of wine . 給 我 一瓶 葡萄酒 . +Breathe through your nose . 用 你 的 鼻子 呼吸 . +She cried her heart out . 她 哭 得 肝腸寸斷 . +I am fixing the washing machine . 我 在 修 洗衣 機 . +Do you want something to drink ? 你 想要 什么 喝 的 吗 ? +Do not you have any feelings for me at all ? 你 对 我 完全 没有 感觉 吗 ? +The market is big . 市場 很大 . +May I go to the bathroom ? 我 可以 去 洗手 間 嗎 ? +I like tea . 我 喜欢 茶 . +I am talking about my friend . 我 在 談 我 的 朋友 . +The petals are floating on the water . 花瓣 浮 在 水面 上 . +We must finish our homework first . 我們 必須 先 完成 我們 的 功課 . +You are so stupid . 你 真傻 . +The police are after him . 警察 在 跟著 他 . +The little cabin was bathed in moonlight . 小木屋 沐浴 在 月光 之中 . +Where did you go that night ? 那天 晚上 你 在 哪裡 ? +Tom could not see anybody . 汤姆 看不到 任何人 . +Tom is not used to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +Please copy this . 麻煩 拷貝 這個 . +You must keep quiet for a few days . 你 该 安静 几天 . +A strange feeling came over me . 我 觉得 不 舒服 . +A hungry pig dreams of acorns . 飢餓 的 豬 夢 到 橡樹子 . +There is a spoon missing . 缺 一把 勺子 . +My father made a shelf for me . 我 父親 為 我 做 了 個 架子 . +Do you know how to drive this thing ? 你 知道 怎么 驾驶 这 玩意儿 吗 ? +Will you show me what you bought ? 你 愿意 给 我 看看 你 买 了 什么 吗 ? +I was just about to leave the house when the telephone rang . 我 正要 离开 家 的 时候 电话响 了 . +Did Tom say who ? 汤姆 说 是 谁 了 吗 ? +Can you tell me where the nearest bus stop is ? 你 能 把 最近 的 公车站 指给 我 看 吗 ? +I could not find his house . 我 找 不到 他 的 家 . +I fell asleep while reading . 我 看书 的 时候 睡着 了 . +I bought that car . 我 買 了 那輛 車 . +He is gone to Nagoya on business . 他 因公 出差 到 名古屋 . +Why are you being so secretive ? 你 為 什麼 這麼 神秘 ? +I will not be getting married this year . 我 今年 不 結婚 . +I will be back late . 我 會晚 一點 回來 . +Tom made a choice . 汤姆 做出 了 选择 . +What was that meeting about ? 那场 会议主题 是 什么 ? +He thanked me for coming . 他 感謝 我 的 到 來 . +He passed the entrance examination . 他 通過 了 入學 考試 . +You should not go out . 你 不 應該 出去 . +How do you view this matter ? 您 怎麼 看 這個 問題 ? +I almost won . 我 几乎 赢 了 . +They have elected a new government . 他們 選出 了 新政府 . +Do you want to have sushi tonight ? 你 今晚 想 吃 壽司 嗎 ? +I think you are lying . 我 觉得 你 在 撒谎 . +The death penalty had been done away with in many states in the USA . 死刑 在 美国 的 很多 州 都 被 废除 了 . +I have lost my watch . 我 把 我 的 表 丢 了 . +He sleeps during the day and works at night . 他 白天 睡觉 , 晚上 工作 . +They have many friends . 他们 有 很多 朋友 . +Rice is grown in rainy regions . 人們 在 多 雨 地區 種植 水稻 . +The flood water reached the level of the windows . 洪水 涌到 了 窗户 的 高度 . +I can not blame Tom for not waiting . 我 不能 怪 湯姆 不 等著 . +I have done everything necessary . 我 做 完 了 所有 重要 的 事 . +I agree with you absolutely . 我 完全 赞同 你 . +Two men are checking on what is wrong with the car . 两个 男人 在 检查 汽车 出 了 什么 故障 . +Tom helped us all . 湯姆 幫 了 我們 . +Try to have a positive attitude about everything . 试 着 用 积极 的 态度 去 面对 任何 事情 . +Let is split the reward fifty @-@ fifty . 讓 我們 平分 這個 報酬 吧 . +I am disgusted with him . 我 厌恶 他 . +People like you should not be here . 你 這樣 的 人 不該 在 這裡 . +That is the part I liked best . 那 是 我 最 喜歡 的 部分 . +Do you think they noticed ? 你 认为 他们 注意 了 吗 ? +I do not want him to touch me . 我 不想 被 他 感动 . +It is not something anyone can do . 这 不是 任何人 都 能 做 的 事 . +He compared his car to the new model . 他 拿 他 的 車 和 新款 車作 比較 . +Have you ever seen such a nice film ? 你 看过 这么 好看 的 电影 吗 ? +He went to the store . 他 去 了 商店 . +If her temperature goes up , send for the doctor . 如果 她 的 體溫 上升 , 派 人 去 請 醫生 來 . +What kind of work will you do ? 你 將 做 什麼樣 的 工作 ? +The precise time of their arrival is not known . 他們 到 逹 的 確 切 時 間 還 不 知道 . +I do not understand German at all . 我 完全 不 懂 德语 . +Tom sits at his computer eight hours a day . Tom 每天 在 電腦 前 工作 八 小 時 . +I want a guitar . 我 想要 一把 吉他 . +Will you be at home this afternoon ? 你 今天下午 会 在家 吗 ? +Tom turned on the car is fog lights . 湯姆 打開 了 車 的 霧 燈 . +She is a wonderful woman . 她 是 個 很棒 的 女人 . +When can we eat , I wonder . 我 不 知道 我們 什麼 時候 可以 吃 . +He turned to his friends for help . 他 尋求 他 的 朋友 的 幫助 . +Get dressed . 你 穿 點 東西 . +Please pardon me for coming late . 抱歉 那么 晚来 . +I am Hungarian . 我 是 匈牙利人 . +I want you to not go to Boston with Tom . 我 要 你 別 和 湯姆 去 波士 頓 . +We are preparing to do so . 我们 准备 去 做 . +New York is on the Hudson River . 紐約 位 在 哈得遜 河 . +The door clicked shut . 门 咔哒 一声 关上 了 . +Could you come and see me tomorrow ? 你 明天 可以 來看 我 嗎 ? +There is a small garden in front of my house . 我家 前面 有个 小 庭院 . +I am glad you were right . 很 高兴 你 是 对 的 . +Everybody thinks so . 大家 都 是 这样 想 的 . +You have changed so much that I can hardly recognize you . 你 变 了 那么 多 , 以至于 我 几乎 认不出 你 了 . +I am very ashamed of myself about what I have done . 我 對 自己 的 作為 很 內疚 . +I wish I were an only child . 我 要是 个 独子 就 好 了 . +I would like to know her name . 我 想 知道 她 的 名字 . +I was bored with his old jokes . 我 厌倦 了 他 的 老 笑话 . +I began running . 我 開始 跑 . +You might have heard of it . 你 可能 听说 过 . +I go to school by subway . 我 搭 地铁 上学 . +People rely too much on phones these days . 現代 人 太 仰賴 手機 . +Skating is one of my hobbies . 溜冰 是 我 的 嗜好 之一 . +There is something strange about Tom today . 今天 汤姆 有点 奇怪 . +Their contract is to run out at the end of this month . 他们 的 合同 在 这个 月底 到期 . +You told Tom you could do that , did not you ? 你 告诉 汤姆 你 可以 做到 , 是 吗 ? +My parents will not let me go out with boys . 我 父母 不让 我 和 男生 约会 . +Pork does not agree with me . 猪肉 不 适合 我 . +I cannot speak Mandarin well . 我 的 中文 說 得 不好 . +I can not go with you today because I am very busy . 今天 我 太 忙 了 , 没法 和 你 一起 去 . +He did not know that . 他 不 知道 . +School begins on April the tenth . 學校 在 四月 十日 開學 . +She borrowed a saw from the farmer . 她 向 農夫 借 了 一把 鋸子 . +I can do without his help . 沒有 他 的 幫助 我 也 能 做 . +My mother is in the hospital now . 我 媽媽 現在 在 醫院 . +Spring is coming soon . 春天 就要 来 了 . +My throat feels dry . 我 喉咙 很 干 . +Respect for law is fundamental to our society . 尊重 法律 是 我們 社會 的 基礎 . +I have to iron my shirt . 我 必須 熨 我 的 襯衫 . +My plan is to buy a car . 我 打算 買輛 車 . +He has no eye for women . 他 對 女人 沒有 眼光 . +They are jealous of our success . 她们 嫉妒 我们 的 成功 . +The economy is picking up . 经济 在 复苏 之中 . +Mary has beautiful brown eyes . 玛丽 的 褐色 眼睛 很美 . +All of the milk was spilled . 所有 的 牛奶 都 灑 出去 了 . +He runs . 他 跑 . +Having a slight headache , I went to bed early . 因為 我 有 點 頭 疼 , 所以 我 早早 上床 睡覺 . +He gave correct answers to the questions . 他 對 這個 問題 給 了 正確 的 答案 . +Speaking in French is fun . 说 法语 很 有趣 . +They say she and her husband can not agree on anything . 他們 說 她 和 她 的 丈夫 不 可能 對 任何 事 達成 協議 . +Tomorrow , he will land on the moon . 明天 , 他 将 登上 月球 . +They are in danger . 他們 有 危險 . +I want to become a singer . 我 想 當 歌手 . +Her house is at the foot of a mountain . 她家 在 一座 山 的 山脚下 . +He gave me food and money as well . 他 给 了 我 食物 和 钱 . +I am a university student . 我 是 个 大学生 . +Tom claims he does not remember . 湯姆聲 稱 他 不 記得 了 . +Is ten thousand yen enough ? 一 万日元 够 吗 ? +What do you usually do on Sundays ? 你 週日 通常 做 什麼 ? +My sister has a nice piano . 我 妹妹 有 架 漂亮 的 钢琴 . +What is the idea behind that ? 那 背后 是 什么 意思 ? +The typhoon caused the river to flood . 颱 風 造成 了 河水 氾 濫 . +Tom has never been willing to help us before . 湯姆 以前 從 不 這樣 願 意 幚 我 們 . +The crow flew away . 這 隻 烏鴉 飛 走 了 . +I think Tom is still alive . 我 認為 湯姆 還 活著 . +Where are the shoes ? 鞋子 在 哪儿 ? +You can not use this washing machine . 您 不能 使用 這 台 洗衣 機 . +It was really special . 它 真 特別 . +We arrived at a small town in Hokkaido . 我们 到达 了 北海道 的 一个 小镇 . +I will not be fooled . 我 不会 上当 的 . +You should know that is impossible . 你 应该 知道 这 是 不 可能 的 . +It came to nothing . 这 没有 结果 . +Are they all like this ? 他们 都 像 这 一样 吗 ? +The family eats breakfast on the balcony . 一家人 在 陽 臺 上 吃 早 飯 . +Luckily he had enough money to pay the bill . 幸运 的 是 他 有 足够 的 钱 来 付账 . +This is a book about stars . 这 是 本 关于 星星 的 书 . +Some of the bluest water in the world is found in Crater Lake . 一些 世界 上 最 藍 的 水 在 火山湖 . +My uncle comes to see me from time to time . 我 叔叔 偶爾 來看 我 . +I can not make an exception . 我 不能 破例 . +My parents live in Australia . 我 的 父母 住 在 澳大利亚 +Something is wrong with my camera . 我 的 相機 壞 了 . +Please buy a tube of toothpaste . 請買 條 牙膏 吧 . +There is nothing to forgive . 没什么 可 原谅 的 . +Our library is on the third floor . 我們 的 圖書館 在 三 樓 . +I did not even know Tom had left . 我 甚至 不 知道 湯姆 離開 了 . +He traveled on business . 他 旅行 洽商 . +Do you know who they are ? 你 知道 他們 是 誰 嗎 ? +J.F. Kennedy was buried in Arlington Cemetery . 约翰 甘迺迪 被 安葬 在 阿靈頓 公墓 . +I thought she was going to kill me . 我 認為 她 要 殺 我 . +I can not remember his name . 我 不 記得 他 的 名字 . +I wonder what she really means . 我自 問 她 真正 的 意思 是 什麼 . +I should have chosen a shorter username . 我 该 用 短 一点 的 用户名 的 . +My canary was killed by a cat . 我 的 金絲雀被一 隻 貓 殺 死 了 . +Looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +I am here to assist you . 我 來 協助 你 . +The teacher has a great influence on his pupils . 这个 教授 对 他 的 学生 有 很大 的 影响力 . +Tom is in the hospital waiting room . 汤姆 在 医院 的 等候 室 . +Would you please wait for a few minutes ? 请 您 等 几分钟 好 吗 ? +Why can not we have pizza ? 为什么 我们 不能 要 比萨 ? +Let is be realistic . 現實 點 吧 . +I am humble . 我 是 谦虚 的 . +I could not make myself understood . 我 無法 讓 別人 了解 我 的 意思 . +This theory is very controversial . 这个 理论 很 有 争议 . +As you sow , so will you reap . 种瓜得瓜 , 种豆得豆 . +How was the meeting yesterday ? 昨天 的 会议 怎么样 ? +The children are having fun in the park . 孩子 們 在 公 園 裏 玩耍 . +Children depend on their parents for food , clothing and shelter . 孩子 们 的 衣食住行 靠 的 是 他们 的 父母 . +A fire broke out last night and three houses were burnt down . 昨晚 發生 了 一場 火災 , 三棟 房屋 被 燒毀 了 . +We still have more time . 我們 仍然 有 更 多 的 時間 . +Tom will not be coming . 汤姆 不会 来 了 . +You seem like a very smart person . 你 看起来 像 一个 聪明人 . +Are not you happy ? 你 不快 樂 嗎 ? +Compared with her sister , she is not very punctual . 與 她 的 妹妹 相比 , 她 不是 很 準 時 . +We have no reason to be ashamed . 我们 没理由 害臊 . +We 'd better talk . 我们 谈谈 比较 好 . +I paid the bill . 我 买 了 单 . +What kind of meal did you eat ? 您 吃 了 什麼樣 的 膳食 ? +We have one of your friends here with us . 你 的 一个 朋友 在 我们 这里 . +Did Tom actually say that ? 汤姆 真的 那么 说 了 吗 ? +I could not enter because the door was closed . 我 因為 門 關著 進不去 . +I know him , but I do not know his name . 我 認識 他 但是 我 不 知道 他 的 名字 . +Actually , it was pretty boring . 实际上 , 我 非常 无聊 . +I found this in your desk drawer . 我 在 你 的 桌子 抽屉 里 找到 了 这个 . +My nephew is allergic to eggs . 我 侄子 對 雞蛋 過敏 . +Help yourself to whatever you like . 你 想 吃 什麼 就 吃 什麼 . +My stomach is full . 我 的 胃 是 脹 滿 的 . +You will have to wait and see . 你 得 等一等 看 . +This book is for students whose native language is not Japanese . 這 本書 是 給 母語 不是 日語 的 學生 的 . +He passed his property on to his son . 他 把 他 的 财产 传给 了 他 儿子 . +I do not like this . 我 不 喜欢 . +Can you give me some money ? 你 能 給 我 一些 錢 嗎 ? +He had a large family to support . 他 要 養活 一個 大家庭 . +Where is your dog ? 你 的 狗 在 哪里 ? +Austria is one of the largest producers of electricity in Europe . 澳大利亚 在 欧洲 是 最大 的 电能 生产国 之一 . +Tom is taller than I am . 湯姆 比 我 高 . +He began to look for work . 他 开始 找 工作 了 . +Tom did nothing . 汤姆 什么 都 没 做 . +I will not allow you to do that . 我 不会 让 你 做 那事 . +The knife is not sharp . 這 刀不鋒利 . +Did you bring your family with you ? 你 帶著 家人 一起 來 嗎 ? +The plane is ready . 飞机 准备 好 了 . +The Sahara is a vast desert . 撒哈拉沙漠 广袤 无垠 . +Was that what Tom said ? 那 就是 汤姆 说 的 吗 ? +She finished her work an hour in advance . 她 提前 一 小时 完成 了 工作 . +Tom likes football . 汤姆 喜欢 足球 . +I said to myself , " That is a good idea . " 我 对 自己 说 , “ 那 是 个 好 主意 . ” +No one understands me . 没有 人 理解 我 . +What just happened ? 刚刚 发生 了 什么 ? +I will give you a little tip . 我会 给 你些 提示 . +The meeting will be held tomorrow . 會議 將 於 明天 舉行 . +I can not believe that you were the smartest kid in your class . 我 不敢相信 你 是 你们 班 里面 最 聪明 的 孩子 . +I like the cold . 我 喜歡 寒冷 . +I hit him in the belly . 我 打 了 他 的 肚子 . +Will I see you tomorrow ? 我 明天 能 见到 你 吗 ? +Pigs share certain characteristics with human beings . 豬 與 人類 的 一些 特性 相同 . +That was not my intention . 这 不是 我 的 初衷 . +He has not come yet . 他 還 沒來 . +My father has been dead for ten years . 我 爸爸 去世 有 10 年 了 . +English is spoken in America . 在 美国 说 英语 . +The job looked quite simple , but it took me a week . 這份 工作 看 起來 很 簡單 , 但 它 花 了 我 一個 星期 . +She is leaving the country in six months . 她 半年 后 就要 出国 了 . +There were no mistakes . 没有 错误 . +We knew no one . 我們 誰 也 不 認識 . +Give me a cigarette . 给 我 支 香烟 吧 . +The audience was deeply affected . 观众 深受感动 . +It is lunch time . 午餐 時間 到 了 . +I no longer love Tom . 我 不再 愛湯姆 了 . +Tom does not like to wear a watch . 汤姆 不 喜欢 戴 手表 . +He asked me to speak more slowly . 他 要求 我 講 慢 一點 . +She went to the movies by herself . 她 獨自 去 看 了 電影 . +What are you staring at ? 你 在看 什麼 ? +With just a little more effort , he would have succeeded . 如果 他 再 努力 一点 , 就 可能 已经 成功 了 . +These tools are used for building a house . 这些 工具 是 用来 造 房子 的 . +He is apt to be late . 他 很 容易 遲 到 . +She kept on working . 她 继续 工作 . +The girl brought me a red and a white rose . 女孩 给 我 了 一枝 红玫瑰 和 一枝 白玫瑰 . +Gold is much heavier than water . 金子 比水 重得 多 . +I asked for my father is help . 我 向 我 父親 求助 . +I hear my uncle died of cancer . 我 聽到 我 叔叔 死 於 癌症 的 消息 . +Tom slept . 汤姆 睡 了 . +This place has a mysterious atmosphere to it . 这个 地方 的 气氛 很 神秘 . +In the Edo period , moon @-@ viewing parties were very popular . 在 江戶 時代 賞 月 的 宴會 非常 受歡 迎 . +Green suits you . 綠色 適合 你 . +He always quarrels with his wife . 他 總是 與 他 的 妻子 吵架 . +I would have liked to come with you , but I did not have time . 我 想 和 你 一起 去 , 但是 我 没有 时间 . +She tore the letter into pieces . 她 把 信成 碎片 . +The car is waiting at the gate . 車 在 門口 等著 . +Let is walk . 我们 走走 吧 . +Do not run risks . 不要 冒险 . +I will gladly pay you anytime . 我 隨時 樂意 付錢 給 你 . +Can you tell me a little about yourself ? 你 能 稍微 告诉 我 关于 自己 的 事情 吗 ? +Do not let that happen again . 不要 再 让 这种 事 发生 了 ! +Tom is not accustomed to walking barefooted . 汤姆 不 习惯 光 着 脚 漫步 . +It is good to see you . 见到 你 真好 . +The shop is open from Monday to Saturday . 这家 店 从 星期一 到 星期六 都 营业 . +Let is drink coffee while we talk . 让 我们 边 喝咖啡 边 谈 . +This city is cold and lonely without you . 没有 你 这个 城市 孤单 又 冷清 . +They were very excited . 他们 非常 兴奋 . +I thought that Tom had a soccer game tonight . 我 以为 汤姆 今晚 有 足球比赛 . +I am OK . 我 沒事 . +Do you know this song ? 你 知道 這 首歌 嗎 ? +I do not have the address with me . 我 身上 沒 帶 這個 地址 . +We watch TV every day . 我们 每天 看电视 . +I miss you so much . 我 如此 想念 你 . +He was playing the piano . 他 那時 正在 彈 鋼琴 . +She spread the butter on the bread . 她 把 奶油 塗 在 麵 包 上 . +Can you do bookkeeping ? 你 會 記 帳 嗎 ? +I did not want to get up early . 我 不想 很早 起床 . +He is known as a great poet . 他 以 一個 偉大 的 詩人 聞名 . +She stabbed him in the back . 她 在 他 的 背上 戳 了 一下 . +I do not know when she got married . 我 不 知道 她 是 什么 时候 结婚 的 . +There are some eggs in the box . 盒子 裡 有 一些 蛋 . +Tom is not nearly as smart as he thinks he is . 汤姆 并 不 像 他 自 认为 的 那么 聪明 . +My father takes a bath before supper . 我 的 父親 在 晚 飯前 洗澡 . +Frankly speaking , I do not agree with you . 实话 说 , 我 不 赞成 你 . +Where did you go for vacation ? 你 去 哪裡 度假 了 ? +We took strong measures to prevent it . 我们 采取 了 强有力 的 预防措施 . +Do not you want to know the reason ? 你 不想 知道 原因 吗 ? +You ask me to do the impossible . 你 让 我 做 不 可能 做到 的 事情 . +What time is it ? 几点 了 ? +Tom should have plenty of time . 汤姆 应该 有 很多 时间 . +They adopted the orphan . 他们 收养 了 那个 孤儿 . +Tom and I see each other every day at school . 汤姆 和 我 每天 都 在 学校 见面 . +You nearly poked me in the eye with your pencil . 你 的 鉛筆 差點 戳 到 我 的 眼睛 了 . +My job is to wash dishes . 我 的 工作 是 洗碗 . +I do not remember any of it . 我 对 这些 都 没有 印象 . +Generally , men run faster than women . 一般 來 說 , 男人 比 女人 跑得快 . +Did I leave my umbrella here ? 我 把 雨伞 落 在 这里 了 吗 ? +Because our kids got married , we are now in @-@ laws . 我們 成親 家 了 , 因為 我們 的 孩子 們 結婚 了 . +I do not like your smile . 我 不 喜欢 你 的 微笑 . +Did you get up early ? 你 起床 早 嗎 ? +How come you know so much about Japanese history ? 你 為 什麼 知道 這麼 多 的 日本 歷史 ? +He was hurt in a car accident . 他 在 一次 車禍 中 受傷 了 . +The exhibition is now open . 展览 现在 已经 开放 . +I have been reading the book all afternoon . 我 整个 下午 都 在读 这 本书 . +They are typical youngsters . 他们 是 典型 的 年轻人 . +Some people questioned his honesty . 有些 人 質疑 他 的 誠實 . +He likes to read newspapers . 他 喜欢 看 报纸 . +Tom never saw her again . 湯姆 沒 再 見 過 她 . +According to the radio , it will snow tomorrow . 据 广播 里 讲 , 明天 会 下雪 . +Tom is a strange person . 湯姆 是 個 怪人 . +His opinions are not worth listening to . 他 的 意見 不 值得 聽 . +I got him to repair my car . 我 讓 他 修理 我 的 車子 . +The Internet is an invaluable source of information . 互联网 是 一种 无法估量 的 信息 资源 . +Due to the worsening weather , the departure was delayed . 由于 天气 变差 , 出发 延迟 了 . +Can I do anything for you ? 我 能 為 你 做 點 甚麼 嗎 ? +We often associate black with death . 我们 常 把 黑色 跟 死亡 联系 起来 . +Take any train on track 5 . 到 5 号 轨道 乘 随便 什么 火车 . +My hometown is very pretty . 我 的 家乡 非常 漂亮 . +It seems obvious that he is sick . 似乎 很 明顯 他 病 了 . +He has no children . 他 沒有 孩子 . +I need to go home . 我 该 回家 了 . +I have got a lot more to learn . 我 要 学 很多 . +I may be unsociable , but it does not mean I do not talk to people . 我 或许 不 善于 社交 , 但 这 并 不 意味 我 不 和 别人 交谈 . +This is a strange sentence . 這 是 一個 奇怪 的 句子 . +Tom wants to learn boxing , but his mother thinks it is too dangerous . 汤姆 想 学 拳击 , 但 他 妈妈 觉得 这 太 危险 了 . +Do not let the dog come in . 别 让 狗 进来 . +I was talking about something else . 我 在 說別 的 事 . +The magician had the children is attention . 魔术师 吸引 了 孩子 们 的 注意 . +He regrets what he did . 他 对 他 所 做 的 一切 感到 后悔 . +I tried not to wake you up . 我 设法 不让 你 醒 . +No matter how often I tell her , she keeps making the same mistake . 不管 我 跟 她 说 了 多少 次 , 她 还是 继续 犯 同样 的 错误 . +You should try to be more polite . 你 應該 試著 更 有 禮貌 . +Why should I apologize to you ? 为什么 我 要 向 你 道歉 ? +Open your book to page nine . 翻開 你 的 書 到 第九 頁 . +She feels at ease in their home . 她 在 他们 家里 感觉 很 放松 . +He can read English easily . 他 能 轻松 地 读 英语 . +There is a letter for you . 你 有 一封信 . +We were friends . 我们 是 朋友 . +Thanks for calling me . 谢谢 你 给 我 打电话 . +She used to visit me regularly . 她 以前 定期 來看 我 . +I am four months pregnant . 我 怀孕 四个 月 了 . +He made good use of the money . 他 好好 的 使用 了 ​ ​ 這筆 錢 . +Who is your favorite character in this book ? 你 最 喜歡 這 本書 中 的 哪個 角色 ? +I think you are dumb . 我 认为 你 傻 . +He is not always at home on Sundays . 他 星期日 並 不 總是 在家 . +This is kind of interesting . 這 真是 有趣 . +There is a car coming . 有 車 來 了 . +I received your letter yesterday . 我 昨天 收到 了 你 的 信 . +My dictionary is very useful . 我 的 字典 非常 有用 . +Thanks for your quick answer . 谢谢您 的 迅速 回复 . +Tom has no brothers or sisters . Tom 沒有 兄弟 也 沒有 姊妹 . +This is a very interesting book . 這 是 一本 非常 有趣 的 書 . +I can not believe your parents let you come here by yourself . 我 不敢相信 你 父母 让 你 自己 过来 . +Are you guys free this afternoon ? 你们 今天下午 有空 吗 ? +He did not appear until about noon . 直到 快要 中午 前 他 都 沒 出現 . +This clock loses three minutes a day . 这个 钟 每天 慢 三分钟 . +She came to Tokyo at the age of 18 . 她 18 岁 的 时候 来到 东京 . +According to the newspaper , he committed suicide . 據 報紙 上 說 , 他 自殺 了 . +May I be the first to offer my congratulations . 或许 我 是 第一个 给 你 祝贺 的 人 . +Help us . 帮帮 我们 吧 ! +Would you please explain the rules to me ? 請 你 為 我 解釋 規則 好 嗎 ? +Father always has the tailor make his suits . 父親 總是 讓 這位 裁縫師 為 他 做 西裝 . +My sister became a college student . 我 妹妹 成為 了 一個 大學 生 . +Tom did not have a fever this morning . 湯姆 今天 早上 沒有 發燒 . +I had no feeling in my fingers . 我 的 手指 没有 感觉 . +That is crazy . 那 是 瘋狂 的 . +I wonder if you have something to write with . 我 懷疑 你 是否 有 東西 可寫 . +Tom is intoxicated . 汤姆 醉 了 . +They were worried . 他们 担心 . +My wallet and passport are missing . 我 的 錢包 和 護照 不見 了 . +I do not really read newspapers . 我 不 太 看 报纸 . +Do not be so careless ! 别 这么 粗心 ! +It is healthy to breathe deeply . 深呼吸 有益健康 . +Being a teacher is very hard work . 做 教師 很 辛苦 . +He knows a lot of people . 他 认识 很多 人 . +I will let Tom tell you . 我会 让 汤姆 告诉 你 . +Where was this picture taken ? 这 张 照片 在 哪儿 照 的 ? +Your tripod is in my office . 你 的 三腳 架 在 我 的 辦 公室 裏 . +He sometimes watches TV . 他 有 時 看 電視 . +Breakfast is the most important meal of the day . 早饭 是 一天 中 最 重要 的 一顿饭 . +Will you stay at home tonight ? 你 今晚 會 待 在家 裡 嗎 ? +The library is on the 4th floor . 圖書館 在 四樓 . +Only one third of the members turned up at the meeting . 仅 三分之一 的 成员 出席 了 会议 . +The boy went to bed with his socks on . 男孩 穿着 袜子 就 上床睡觉 了 . +When does the movie start ? 電影 什麼 時候 開始 ? +Big fish eat little fish . 大鱼吃小鱼 . +Please show me another one . 请 给 我 看看 其他 的 . +He made fun of me in public . 他 在 公共 場合 取笑 了 我 . +I will see you a week from today . 我 下星期 的 今天 會 和 你 見 面 . +Where is the book ? 那本书 在 哪儿 ? +Kyoto is visited by many tourists . 很多 游客 赴 京都 旅游 . +I know your brother very well . 我 和 你 哥哥 很熟 . +If you do not have this program , you can download it now . 假如 你 没有 这个 程序 , 你 现在 就 可以 去 下载 . +I need more money . 我 需要 更多 的 錢 . +She has been dead for ten years . 她 已經 死 了 十年 了 . +He studies English , but he is also studying German . 他 学 英语 , 但 他 也 学 德语 . +We will not go out unless it stops raining . 除非 雨 停 了 , 我们 才 会 出去 . +I think you need to spend a little more time on your homework . 我 觉得 你 应该 多 花点 时间 在 作业 上 . +What happened to you yesterday ? 你 昨天 發生 了 什麼 事 ? +Her book is very interesting . 她 的 書 非常 有趣 . +My friends all call me Tom . 我 的 朋友 都 叫 我 湯姆 . +Tom told them not to do that . 湯姆 告訴 他們 不要 去 做 那事 . +Who do you think they were ? 你 认为 他们 是 谁 ? +What is your telephone number ? 你 电话号码 是 多少 ? +Some bugs were fixed . 一些 程式 錯誤 被 改正 了 . +He did everything he could for his child . 他 為 自己 的 孩子 能 做 的 都 做 了 . +When I heard the news , I cried . 當 我 聽到 這個 消息 , 我 哭 了 . +I am a night owl . 我 是 個夜 貓子 . +He is out now . 他 现在 出去 了 . +I am on my way to meet Tom at the station right now . 我 现在 在 去 车站 见 汤姆 的 路上 . +I learned to live without her . 我 学会 了 不靠 她 生活 . +He lives in a world of fantasy . 他 住 在 一個 奇幻 世界 裡 . +He is a tennis player . 他 是 个 网球 球手 . +I am sorry for the delay in responding . 我 很 抱歉 這麼 遲 才 回 復 . +Nothing remained in the refrigerator . 冰箱 里 什么 都 没 剩下 . +Is Tom going to dump Mary ? 汤姆 要 甩 了 玛丽 吗 ? +Please move the desk to the left . 请 把 桌子 向 左移 . +I kept the $ 20 I found in the street . 我 留 着 在 街上 发现 的 20 美元 . +Two for the lunch buffet , please . 兩 人份 自助 午餐 , 謝謝 . +I must catch the first train . 我 必须 赶上 头班 火车 . +Tom does not like women who wear too much makeup . 汤姆 不 喜欢 妆化 太 浓 的 女人 . +She hates carrots . 她 討厭 胡蘿 蔔 . +The summer is over . 夏天 过去 了 . +My brother is a high school student . 我 哥哥 是 個 高中生 . +She goes to school on foot . 她 走路 去上 學 . +You are an idiot . 你 是 一個 笨蛋 . +Let is meet again soon . 讓 我們 很快 地 再次 見面 . +I do not know either of them . 他们 中 的 任何 一位 我 都 不 认识 . +Almost everyone in our village is related to one another . 我们 村里 所有 的 村民 几乎 彼此 都 是 亲戚 . +Please forgive me for being late . 請 原諒 我 遲到 . +The plane crash was only last week . 上個 星期 這 架 飛機 墜毀 了 . +There is a post office close by . 附近 有 一間 郵局 . +I was shy . 我 害羞 . +Who found my bag ? 誰 找到 了 我 的 包 ? +He is not interested in art at all . 他 對 藝術 一點 也 不感 興趣 . +People live only about 70 years . 一个 人 只能 活 七十岁 左右 . +What do you think of Tom is cooking ? 你 覺得 Tom 的 廚藝 如何 ? +She is old enough to know better . 她 年 紀夠 大 該 懂事 了 . +Two beers , please . 请来 两杯 啤酒 . +The wind calmed down . 风停了 . +Try and do better next time . 嘗試 在 下 一次 做 得 更好 . +We were caught in a storm . 我们 被 暴风雨 袭击 了 . +Tom is waiting for you in the conference room . 汤姆 在 会议室 等 你 . +I 'd like three of these . 这 我 要 三个 . +It is almost six o 'clock . 差不多 六点 了 . +Do you take MasterCard ? 可以 用 万事达 信用卡 吗 ? +There are many shantytowns in Mexico . 在 墨西哥 有 很多 貧民窟 . +I want to have my own room . 我 想要 有 我 自己 的 房间 . +We are in the era of atomic energy . 我們 身 在 原子能 時代 . +While you are reading to me , I can do my sewing . 你 读 给 我 听 的 时候 , 我 就 可以 做 缝纫 了 . +Everyone comes to Tom for advice . 每個 人 都 請 教 湯姆 . +Please tell me Tom is OK . 请 告诉 我 汤姆 很 好 . +I was taking a bath when the telephone rang . 在 我 洗澡 的 时候 , 电话响 了 . +I want something sweet to eat . 我 想要 吃甜 的 東西 . +I owe you ten dollars . 我 欠 你 10 美元 . +I have just finished eating breakfast . 我 剛 吃 完 了 早 飯 . +I like red wine better than white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +It is really different from what I expected . 這 真的 跟 我 所 預期 的 不同 . +She and I are in the same class . 她 和 我 同班 . +My brother died of cancer last year . 我 弟弟 去年 死 於 癌症 . +Let is take advantage of the long weekend . 来 好好 利用 大 周末 吧 . +Tom saw everything that happened . 汤姆 见证 了 所有 发生 的 事情 . +I have had enough , so my stomach is full . 我 吃 飽 了 , 所以 我 的 胃 都 滿 了 . +I refused , of course . 我 當然 拒 絶 了 . +The most important thing in the Olympic Games is not winning but taking part . 奥运会 最 重要 的 不是 获胜 , 而是 参与 . +I think Tom is going to be pretty mad when he finds out that the painting he bought is a fake . 我 觉得 当 汤姆 发现 他 买来 的 画是 赝品 的 时候 , 他 会 很 生气 . +Tom is name was on the list . 湯姆 的 名字 在 名單 上 . +Is it true that Tom wants to paint his house green ? 汤姆 想 把 房子 漆成 绿色 , 是 真的 吗 ? +Remember to admire her new dress . 記得 稱 讚 她 的 新洋 裝 . +She was advised by him to go to the police . 他 勸 她 去 報警 . +Children of six and above should attend school . 六岁 及 以上 的 小孩 应该 上学 . +You are the prisoner . 你 是 囚犯 . +May I have a road map , please ? 請 給 我 一張 路 線 圖 . +I will stay here for a bit . 我 在 这 待 一会 . +We met her by accident . 我们 偶然 碰到 了 她 . +The police will put you in prison . 警方 將 把 你 關 在 監 獄裡 . +He is concerned about his father is illness . 他 担心 他 父亲 的 身体 . +I believe this was unnecessary . 我 相信 這 是 不必要 的 . +It is imperative for you to act at once . 您 必须 马上 行动 . +She lost her father when she was three years old . 她 父亲 在 她 三岁时 死 了 . +Can you wait about an hour ? 能 麻烦 您 等 一个 小时 左右 吗 ? +You should tell him the truth . 你 该 告诉 他 真相 . +You can not allow Tom to do that anymore . 你 不能 再 允許 湯姆 那麼 做 了 . +Half a loaf is better than none . 半 個 麵 包 總 比 沒 有 好 . +Where can I catch a bus ? 我 可以 在 哪裡 搭 公車 ? +You are working hard . 你 工作 努力 . +When are you leaving ? 你 什麼 時候 離開 ? +He wrote a letter . 他 写 了 一封信 . +Their goods are of the highest quality . 他们 的 货品 有着 最高 的 品质 . +A burglar broke into his house . 一個 竊 賊 闖進 了 他 的 房子 . +Please give me a cup of water . 請 給 我 一杯 水 . +Mary dyed her hair blue . 瑪麗 把 她 的 頭 髮 染成 藍色 . +All of us like you very much . 我们 都 非常 喜欢 你 . +This water tastes good . 這 水 很 好喝 . +I am happy if you are happy . 如果 你 開心 , 我 也 就 開心 . +What fruit do you like the best ? 你們 最 喜歡 什麼 水果 ? +Tom broke some bones in his arm and hand . 湯姆 的 手臂 和 手斷 了 些 骨頭 . +You should have refused his offer . 你 應該 拒絕 他 的 提議 的 . +Would you like me to help you ? 你 要 我 幫 你 嗎 ? +She loved me in the same way that I loved her . 她 愛 我 就 像 我 愛 她 一樣 . +This is not salt . 这 不是 盐 . +Please close the door . 請 關門 . +Please bring us two cups of tea and one cup of coffee . 请来 两杯 茶 和 一杯 咖啡 . +I looked at my notes . 我 看 了 自己 的 笔记 . +Who is going to believe that ? 谁 会 信 呢 ? +Without you , I am nothing . 沒有 你 , 我 甚麼 也 不是 . +Were you at home yesterday ? 昨天 你 不 在家 嗎 ? +Can I ask you a question ? 我 可以 问 你个 问题 吗 ? +Tom can not tie a tie . 汤姆 不会 系 领带 . +I do not like the way you talk to me . 我 不 喜歡 你 和 我 說 話 的 口氣 . +My hobby is taking pictures of wild flowers . 我 的 业余爱好 是 拍 野花 的 照片 . +Do you still have my phone number ? 你 還 有 我 的 電話 號碼 嗎 ? +No one answered my question . 沒人 回答 我 的 問題 . +Tom usually does not make mistakes . 汤姆 通常 不 犯错 . +Mother bakes cookies on Sundays . 妈妈 周日 烤 曲奇 . +He asked for some money . 他 要 了 一些 錢 . +Thank you in advance for your cooperation . 提前 感謝 你們 的 合作 . +Tom forgot to sign his name . 汤姆 忘记 签名 了 . +Tom and Mary have three sons and a daughter . Tom 和 Mary 有 三個 兒子 和 一個 女兒 . +He arrived in time . 他 及時 趕到 . +He ran into the room . 他 跑 进 房间内 . +I play the tenor saxophone . 我 吹 次 中音 薩 克斯 風 . +My grandson is still a baby . 我 的 孫子 還 是 個 嬰兒 . +The matter has not been settled yet . 问题 还 没有 解决 . +Tom told Mary that she should stop pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +When did your father come home ? 你 爸爸 什麼 時候 回家 ? +Tom made a bet with Mary . 湯姆 跟 瑪麗 打 了 個 賭 . +This milk will not keep till tomorrow . 這 牛奶 放到 明天 會 壞 的 . +I can comfort her . 我 可以 安慰 她 . +We had an early lunch at school . 我們 在 學校 有 一個 早 午餐 . +I will return at 6 : 30 . 我 六點半 回來 . +I make a point of being punctual . 我 重視準 時 . +He introduced his daughter to me . 他 把 他 的 女兒 介紹 給 我 認識 . +She went upstairs . 她 上樓 了 . +He sat next to the stream . 他 坐在 溪流 旁邊 . +I do not feel like eating sushi . 我 不想 吃 壽司 . +He is also very famous in Japan . 他 在 日本 也 很 有名 . +We discussed the plan yesterday . 昨天 我們 討論 了 這個 計劃 . +I have a cough . 我 咳嗽 . +He said nothing , which made her angry . 他 什么 也 没 说 , 这 让 她 很 生气 . +The rocket was launched into space . 火箭 發射 進入 太空 . +May I eat this orange ? 我 可以 吃 這個 柳橙 嗎 ? +He has been in Hokkaido before . 他 以前 曾 在 北海道 . +I have got something you have got to see . 我 有个 东西 您 该 看看 . +Did he propose to you ? 他 向 你 求婚 了 嗎 ? +Should I go to college ? 我 該 上 大學 嗎 ? +Tom works in a bank now . 湯姆 現在 在 銀行 上班 . +Who do you live with ? 你 和 誰 住在一起 ? +Do not underestimate me . 别 低估 我 . +That is not a cat . That is a dog . 那 不是 猫 . 那 是 狗 . +Did you see the rainbow this morning ? 你 见到 今天 早上 的 彩虹 了 吗 ? +It is because of you that we were late . 因为 你 我们 才 迟 了 . +The apple tree has a beautiful blossom . 苹果树 上 挂 着 美丽 的 花朵 . +I had to take shelter under a tree . 我 不得不 在 树下 躲雨 . +I am absolutely elated . 我 真是 欣喜若狂 . +I ran as fast as I could , but I missed the train . 我 用盡 全力 跑 , 但 我 還 是 沒趕 上火 車 . +This book is hard for me to read . 这 本书 对 我 来说 很 难读 . +Can you solve this puzzle ? 你 能 解開 這個 謎 嗎 ? +Tom hates spiders . 汤姆 恨 蜘蛛 . +Tell me how to use the washing machine . 告訴 我 洗衣 機 怎麼 用 . +I said I would make her happy . 我 说 我会 让 她 幸福 的 . +Tom is fluent in French . 湯姆 的 法語 說 的 很 流暢 . +The train is 10 minutes late today . 火車 今天 晚 了 十分 鐘 . +We should stop seeing each other . 我们 不该 再 对视 了 . +The length of this ship is 30 meters . 这 艘 船 的 长度 是 30 米 . +Tom is working the night shift . 湯姆 上 夜班 . +Do you want to come along ? 你 想 不想 一起 去 ? +I recognized your voice right away . 我 立刻 認出 了 你 的 聲音 . +I just need you to come with me . 我 只要 你 跟我来 . +He extended his right arm . 他 伸长 了 他 的 右手 . +Sensing danger , he ran away . 他 感覺 到 危險 就 逃跑 了 . +I grew up in the country . 我 在 鄉下 長大 . +He turned down my offer . 他 拒絕 了 我 的 提議 . +There is nobody here . 這裡 沒 人 . +They have jobs . 他們 有 工作 . +I have a headache . 我 头痛 . +This shirt does not go with that tie at all . 這件 襯衫 跟 那條 領帶 不 搭 . +If you see a mistake , then please correct it . 如果 你 发现错误 , 那 就 请 你 纠正 它 . +We swam in the lake . 我们 在 湖里 游 了 泳 . +We postponed the meeting . 我们 推迟 了 会议 . +Tom is not as old as you . 湯姆 的 年紀 不 比 你 大 . +He may have missed the train . 他 可能 错过 了 火车 . +This is the worst book I have ever read . 这 是 我 读 过 的 书 里面 写 的 最差 的 一本 了 . +I have to go meet with Tom . 我 必須 去 見 湯姆 . +Do you drink green tea ? 您 喝 绿茶 吗 ? +Tom drove the car . 汤姆 开 的 车 . +They talked over the plan for hours . 他们 谈 计划 谈 了 几个 小时 . +You need a car if you live in the suburbs . 要住 在 郊区 的话 , 汽车 是 必需 的 . +What would you all like to eat ? 你們 想 吃 什麼 ? +It is sometimes difficult to make yourself understood in public . 有時 很 難 在 公眾 場合表 達 你 自己 的 意思 . +Mary carries pepper spray in her purse . 玛丽 的 包里 有 胡椒 喷剂 . +The rich sometimes despise the poor . 富人 有时 会 看不起 穷人 . +Will you mail this letter for me ? 你 可以 幫 我 寄 這 封信 嗎 ? +This makes me angry . 這 讓 我 憤怒 . +May I open the windows ? 可以 开窗 吗 ? +I know that you are right . 我 知道 你 是 對 的 . +It is our duty to obey the law . 遵守 法律 是 我們 的 義務 . +I am acquainted with him . 我 和 他 认识 . +I do not know what is worse . 我 不 知道 什么 更 糟糕 . +He decided not to go to the party . 他 決定 不要 去 派 對了 . +A stay of execution was ordered at the eleventh hour . 缓期 执行 在 最后 关头 决定 了 下来 . +I 'd like my coffee after the meal . 我 想 吃 完飯 再 喝咖啡 . +I am afraid she will not accept my explanation . 我 怕 她 不 會 接受 我 的 解釋 . +I got fired from the company , but since I have a little money saved up , for the time being , I will not have trouble with living expenses . 虽然 我 被 公司 解雇 了 , 但是 我 还 有点 存款 , 所以 目前 不用 担心 生计 问题 . +She is working on the problem . 她 在 处理 问题 . +What are my responsibilities ? 我 的 责任 是 什么 ? +Tom is going to a concert this evening . 汤姆 今晚 会 去 演唱会 . +Tom has a lot of experience in computers . 汤姆 对 电脑 有 很多 经验 . +What did you do with my glasses ? 你 用 我 的 眼鏡 做 了 什麼 ? +He admitted his guilt . 他 承認 他 有罪 . +Tom is quite sarcastic . 汤姆 真 会 挖苦 人 . +It is very hot today , is not it ? 今天 非常 熱 , 不是 嗎 ? +Have you ever seen Tom mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +That will not ever happen . 那 从 不会 发生 . +He told me he would go to Venice . 他 告诉 过 我 他 会 去 威尼斯 . +All subscriptions must be paid before the end of this year . 所有 訂購 必須 在 今年年底 前 支付款 項 . +You do not like gambling , do you ? 你 不 喜歡 賭博 , 是 嗎 ? +I ate breakfast in my pajamas . 我 穿著 我 的 睡衣 吃 早餐 . +I got my notebook stolen . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Excuse me , where are the eggs ? 请问 鸡蛋 在 哪里 ? +He is a waiter in a seaside restaurant . 他 是 一家 海滨 餐厅 的 服务员 . +I have just eaten lunch . 我 剛 吃 過午 飯 . +Tom bent down and picked up a handful of sand . 汤姆 弯 下腰 , 捧起 了 一把 沙子 . +Will the fine weather keep up till tomorrow ? 好 天气 能 持续 到 明天 吗 ? +I can not believe you are giving up . 我 不能 相信 你 在 放弃 . +My grades are above average . 我 的 成績 高 於 平均水平 . +Tom is not easily satisfied . Tom 不 容易 被 滿足 . +He has gone mad . 他 疯 了 . +Hey , what are you guys looking at ? 嘿 , 你们 这些 家伙 看 什么 呢 ? +Tom told Mary that she was right . 汤姆 告诉 玛丽 她 是 对 的 . +I admit that I was careless . 我 承认 我 大意 了 . +I love you . 我 爱 您 . +Tom does not seem to think so . 汤姆 似乎 不 这么 认为 . +As for me , I am satisfied . 就 我 而言 , 我 很 满意 . +What is the tallest mountain in Europe ? 请问 在 欧洲 最高 的 山 是 哪儿 呢 ? +I am going on vacation next week . 我 下週 要 去 度假 . +The garden was filled with flowers . 花園 裡 充滿 了 花朵 . +My younger brother really likes to take photos of mountains . 我 弟弟 很 喜欢 拍山 的 照片 . +What are you after ? 你 想要 什麼 ? +He is studying law at Harvard . 他 在 哈佛 大學學 習 法律 . +I am almost finished . 我 差不多 完成 了 . +You are our only hope . 你 是 我们 唯一 的 希望 . +I am writing a draft of the speech . 我 在 寫 演講 的 草稿 . +I followed the deer is tracks . 我 跟着 鹿 的 踪迹 . +The number of cars is on the increase . 汽车 的 数量 在 增长 . +She used to work for our company . 她 以前 在 我們 公司 工作 . +My cat looks sad . 我 的 猫 看上去 很 悲伤 . +His house is across the street . 他 的 房子 在 街 對 面 . +All our teachers were young and loved teaching . 我們 所有 的 老師 都 很 年輕 並且 喜愛 教學 . +Maybe I should just tell Tom the truth . 可能 我 就 該 告訴 湯姆 真相 . +This really is a masterpiece . 这 真是 个 杰作 . +Democracy is the worst form of government , except all the others that have been tried . 除了 那些 我们 尝试 过 的 政府 形态 , 民主 是 最差 的 那种 了 . +I crossed the river by boat . 我 乘船 过 了 河 . +I do not know why they are fighting . 我 不 知道 他們 為 什麼 在 打架 . +Please let me know as soon as it is decided . 决定 好 的话 请 第一 时间 告诉 我 . +I was quite thirsty and wanted to drink something cool . 我 很渴 , 想 喝 点 冷饮 . +I wish to climb Mt . Fuji again . 我 希望 再 爬 一次 上 富士山 . +In the winter , many older people slip on ice and fall down . 在 冬天 , 很多 老人 在 冰上 滑倒 . +It will be spring soon . 春天 快 來 了 . +Evidently , it is going to rain tomorrow . 明天 肯定 会 下雨 . +All of these books are mine . 这些 书 都 是 我 的 . +Tom was not apologetic . Tom 并 不 觉得 抱歉 . +She walked slowly so she would not slip . 她 慢慢 地 走 , 這樣 她 就 不 會 滑倒 了 . +I must think over the matter before giving my answer . 我 在 回答 之前 必须 考虑 周全 . +What is your favorite fruit ? 你 最 喜爱 的 水果 是 什么 ? +Give us two knives and four forks , please . 请 给 我们 两把 刀 和 四把 叉 . +He wrote it down in his notebook . 他 把 这 记 在 他 的 笔记本 上 . +She was amazed to hear the news . 她 听到 那个 消息 后 惊呆 了 . +He could not stand the bitterness of the coffee . 他 受不了 咖啡 的 苦味 . +It is too dark to play tennis now . 現在 太暗 了 不能 打 網球 . +Would three o 'clock be all right ? 三點鐘 可以 嗎 ? +He talks as if he were a teacher . 他 说话 就 像 一位 老师 . +This plant is indigenous to Canada . 这种 植物 原产 于 加拿大 . +I have got to go now . 我 現在 得 走 了 . +The doctor cured him of his cancer . 醫生 治好 了 他 的 癌症 . +I will not be at home next Sunday . 我 下 周日 不 在家 . +We are going to climb that mountain . 我們 將 要 去 爬 那 座 山 . +I speak French , too . 我 也 说 法语 . +I have no idea what I am going to wear . 我 不 知道 穿 甚麼 好 . +The city was full of starving soldiers . 城市 裡 充滿 了 飢餓 的 士兵 . +Come on , touch it . 来 吧 , 摸 一下 . +They will not allow us to enter the garden . 他们 不会 允许 我们 进 花园 的 . +I want something cold to drink now . 我 想現 在 喝 冷 的 東西 . +I think we are in trouble . 我 认为 我们 有 麻烦 . +You 'd better do what they say . 你 最好 照 他們 所 說 的 做 . +I will explain everything to you . 我会 向 你 全部 解释 清楚 的 . +You are a good person . 您 是 一個 好人 . +I will be taking a vacation next month . 我 下 個 月 要 休假 . +Tom does not want to talk to anybody . 汤姆 不想 跟 任何人 说话 . +I did not know what to do then . 那時 我 不 知道 該 怎麼 辦 . +Between you and me , I am going to quit my present job soon . 我 只 跟 你 说 , 我 很快 就要 辞掉 我 现在 的 工作 了 . +After two days our food gave out . 过 两天 我们 的 食物 就 发完 了 . +I prefer milk to juice . 比起 果汁 , 我 比較 喜歡 牛奶 . +The bride seems to be very pretty . 新娘 好像 非常 漂亮 . +There used to be a store right here . 这里 以前 有个 商店 . +I have a large collection of stamps . 我 收集 很多 郵票 . +I can not resist sweet things . 我 抵抗 不了 甜食 的 诱惑 . +We have no choice but to risk it . 我们 别无选择 只能 冒着危险 . +Have you ever been stuck in an elevator ? 你 有 沒有 被困 在 電梯 裡 過 ? +The library is in the middle of the city . 图书馆 位于 城市 中心 . +I am losing my grip . 我 失去 了 控制 . +I can not follow his logic . 我 无法 理解 他 的 逻辑 . +I hope the economy picks up soon . 我 希望 经济 很快 复苏 起来 . +She said that she gets up at six every morning . 她 说 她 每天 早上 六点 起床 . +Do you offer any all @-@ day tours ? 你 提供 任何 全日 遊 嗎 ? +That is terrible . 这 太 可怕 了 . +Go away ! 走開 ! +Where is Tom ? 汤姆 在 哪儿 ? +I came to Tokyo three years ago and have been living here ever since . 三年 前 我 来到 东京 并 一直 住 在 这儿 . +Tom is in the bathroom now . 湯姆 現在 在 衛生間 . +You are on the right track . 你 的 想法 是 對 的 . +Tom has many friends living in Boston . 湯姆 有 很多 朋友 住 在 波士 頓 . +The number of traffic accidents seems to be on the increase . 交通事故 的 数量 似乎 在 增长 . +She is not as patient as you . 她 没 像 你 那样 有 耐心 . +I want you to stay here longer . 我 希望 你 留在 這兒 久 一點 . +How could it be Tom is fault ? 它 怎麼 能 是 湯姆 的 錯 ? +I hear that you play the piano . 我 听说 你 弹钢琴 . +I am content with my job . 我 對 我 的 工作 感到 滿意 . +I did not participate in the dialog . 我 没有 参与 对话 . +We should always obey laws . 我们 总 要 遵守 法律 . +The polar bears are dying . 北极熊 正在 死去 . +I have written a letter . 我 写 了 一封信 . +I do not feel like working today . 我 今天 不想 上班 . +She makes all her own clothes . 她 的 衣服 全部都是 她 自己 做 的 . +I want something cold to drink . 我 想 喝 點 冷 飲 . +He won everything . 他 赢得 一切 了 . +Remember to mail this letter . 記得 要 去 寄 這 封信 . +Do not worry . 别 擔心 . +I can not believe Tom was able to do this all by himself . 没法 相信 , 汤姆 没 人 帮助 自己 一个 人 就 做到 了 这些 . +I have no idea . 我 一无所知 . +Why are you alone ? 你 为什么 一个 人 ? +The phone is ringing . 電話 正在 響 . +My stomach hurts . 我 胃痛 . +I decided not to go to Europe . 我 决定 不 去 欧洲 了 . +Tom is not wrong . 湯姆 沒有 錯 . +This guy looks like a fox . 这 家伙 像 个 狐狸 . +Help me peel the potatoes . 幫 我 削 一下 土豆 . +Turn the key to the right . 往右 邊 轉動 鑰匙 . +We have got too much work to do . 我們 要 做 的 工作 太 多 了 . +Foxes are wild animals . 狐狸 是 野生动物 . +America is a country of immigrants . 美國 是 一個 移民 國家 . +Tom will be a teacher someday . 湯姆 有 一天 會 成為 教師 . +We are not the ones getting married . 我们 不是 结了婚 的 人 . +I am a citizen of Sapporo . 我 是 札幌 的 市民 . +He even called me an idiot . 他 甚至 叫 你 傻瓜 . +He did not give me anything to eat . 他 沒有 給 我 任何 東西 吃 . +Basho was the greatest poet . Basho 是 最 偉大 的 詩人 . +My pen is not as good as yours . 我 的 钢笔 不 像 你 那 支 那么 好 . +I did not know the city , and what is more , I could not speak a word of the language . 我 不 知道 这个 城市 , 而且 我 一点 都 不 懂 那里 的 语言 . +You may depend on him to help you . 你 或许 可以 依靠 他 来 帮助 你 . +To tell the truth , I completely forgot . 說實話 , 我 完全 忘 了 . +If I had taken that plane , I would be dead now . 要是 我 坐 了 那 架飞机 的话 , 我 现在 早就 死 了 . +The storm developed into a typhoon . 暴風雨 發展 成 了 一 個 颱 風 . +That factory makes toys . 那家 工廠 生產 玩具 . +Should not someone be helping Tom ? 难道 不该 有人 帮 汤姆 吗 ? +He has a brother who lives in Tokyo . 他 有个 住 在 东京 的 兄弟 . +I wanted to go to the concert . 我 本 想 去 参加 音乐会 的 . +He is gone to Nagoya on business . 他 去 名古屋 出差 . +One of my suitcases is missing . 我 的 其中 一个 行李 不见 了 . +I am afraid of spiders . 我 怕 蜘蛛 . +Tom is a fluent speaker of Japanese . 湯姆日語 說 得 很 流利 . +What kind of wine do you have ? 您 有 什麼樣 的 葡萄酒 ? +Please tell me about it . 请 告诉 我 它 的 事情 . +What a wonderful night ! 多 美妙 的 夜晚 啊 ! +It is a good thing to read good books when you are young . 年轻 的 时候 多 看点 好书 是 件 好事 . +Divide the pizza in three . 把 披薩 分成 三份 . +Water is very important . 水 非常 重要 . +We have no classes on Wednesday afternoons . 我们 周三 下午 没课 . +The boy remained silent . 男孩 依旧 沉默不语 . +Do you have anything for a cold ? 你 有 任何 治感冒 的 東西 嗎 ? +I usually eat out . 我 通常 在 外面 吃饭 . +One of the dogs is alive . 這些 狗 中 的 其中 一 隻 是 活 的 . +Let me have a try at it . 让 我 试试 . +She speaks Chinese . 她 讲 中文 . +Is that paper ? 那 是 紙 嗎 ? +He said hello to the woman . 他 向 那位 女士 问好 . +Zimbabwe was once a colony of Britain . 津 巴布 韋 曾經 是 英國 的 殖民地 . +Tom finally quit smoking . 汤姆 终于 戒烟 了 . +I can verify that that is the truth myself . 我 自己 能够 证实 那 是 真的 . +The world does not revolve around you . 世界 不是 围着 你 转 的 . +I clapped . 我 拍手 . +I am being patient . 我 很 有 耐心 . +Please wrap it up . 請 包起 來 . +It was sensible of you to follow her advice . 你 聽 從 她 的 忠告 是 明智 的 . +You 'd better eat something . 你 最 好吃 点 东西 +Can I sit here ? 我 能 坐 这里 吗 ? +I tried to convince Tom to come home . 我 试 着 说服 汤姆 回家 . +He took a quick look at the magazine . 他 迅速 瞥 了 一眼 杂志 . +I know that you did your best . 我 知道 你 盡力 了 . +I just want to sleep . 我 只 想 睡觉 . +Oh ! That is too bad . 哦 ! 那 太 糟糕 了 . +I have already been working here for several hours . 我 已经 在 这里 工作 几个 小时 了 . +Let me know if I need to change . 让 我 知道 我 是否 需要 改变 . +It is not necessary for us to attend this lecture . 我們 沒有 必要 出席 這個 講 座 . +It seems that no one knew the truth . 貌似 没有 人 知道 真相 . +She opened the letter quickly . 她 很快 地 打開 了 信 . +No matter how much I think about it , I do not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +I would like to go to the concert with you . 我 想 和 你 一起 去 音乐会 . +I hired someone today . 我 今天 雇 了 个人 . +Get serious . 认真 点 . +Mary does not wear as much makeup as Alice . 玛丽 没有 化 爱丽丝 那样 浓 的 妆 . +Ultraviolet rays can cause skin cancer . 紫外 線 可 導致 皮膚 癌 . +Everyone in his family is tall . 他家 的 每個 人 都 很 高 . +We are traveling on a tight budget . 我們 用少 的 預算 旅行 . +There are four seasons in one year . 一年 有 四季 . +Did you have any difficulty in finding my house ? 你 找 我 的 房子 有 困難 嗎 ? +Who is next ? 下 一个 是 谁 ? +You know that is not right . 你 知道 不是 那样 的 . +The money you give them will be put to good use . 你 给 他们 的 钱 会 用到 好处 . +You will miss me when I am gone . 我 走 了 你 会 想 我 . +You ought to know better at your age . 在 你 這個 年紀 你 應 該 要 更 懂事 . +She hurt her foot when she fell off her bicycle . 她 在 从 自行车 上 摔下来 时伤 到 了 脚 . +They gave a series of concerts . 他們 辦 了 一系列 的 音樂會 . +Your bicycle is better than mine . 你 的 腳踏車 比 我 的 好 . +I tried to tell you . 我 試著 要 告訴 你 . +I will wait until she comes . 我会 等到 她 来 . +I am glad that they fixed the heating system , but now it is too hot . 我 很 高興 他們 修 復 了 暖 氣 系 統 , 但 現在 太 熱 了 . +Tom was full . 汤姆 饱 了 . +We will talk about it tomorrow . 我們 明天 討論 它 . +She teaches us French . 她 教 我们 法语 . +You could be right , I suppose . 我 猜想 你 可能 是 对 的 . +It is already time to go home . 已经 是 时候 回去 了 . +What do you do ? 你 的 職業 是 什麼 ? +You do not look so well . 你 看上去 不太好 . +She cooked herself a good meal . 她 為 自己 煮 了 好吃 的 一餐 . +I always rely on him in times of trouble . 我 在 困難 時 總是 依賴 他 . +How is school ? 学校 怎么样 ? +Who is your most interesting friend ? 你 最 有趣 的 朋友 是 誰 ? +Nothing is as precious as love . 沒有 什麼 東西 是 跟愛 一樣 珍貴 的 . +Do you like it ? 你 喜欢 吗 ? +I have not seen him for years . 我 有些 年 没见 过 他 了 . +Are we finished ? 我们 完成 了 吗 ? +If you are busy , I will help you . 如果 你 忙 , 我 會 幫 你 . +She may not come here tomorrow . 她 明天 可能 不 會 來 這裡 . +What do you two do for fun ? 你们 两个 做 了 什么 有趣 的 事情 呢 ? +I have to stay in bed all day . 我 不得不 一整天 都 待 在 床上 . +My wife buys vegetables from a supermarket nearby . 我 老婆 在 附近 的 超市 买 蔬菜 . +He is not as smart as his older brother . 他 不 像 他 的 兄长 那样 聪明 . +Is the work hard ? 工作 困難 嗎 ? +Let is play baseball after school . 讓 我們 放學 後 打 棒球 . +Everything is ready . 一切 就绪 . +I would like to have a cup of coffee . 我 想 喝一杯 咖啡 . +You cannot purchase this medicine without a prescription . 那个 药 的话 没有 处方 是 买不到 的 . +Do not show your face around here again . 你 不要 再 出現 在 這裡 了 . +It was just a joke . 我 这么 说 只是 开 个 玩笑 . +Am I wrong ? 我 錯 了 嗎 ? +We played poker the entire day . 我们 用 了 一整天 打扑克 . +Tom and his wife both grew up in Australia . 汤姆 和 他 的 妻子 都 在 澳大利亚 长大 . +Weeds sprang up in the garden . 花園 裡 雜草 叢生 . +Only 3 out of the 98 passengers survived . 98 名 乘客 只有 3 人生 还 . +I am not responsible for what Tom did . 我 不必 對 湯姆 所 做 的 事負責任 . +She always studies while listening to music . 她 總是 邊 聽 音 樂邊 唸 書 . +Thanks for returning my call . 感謝 您 的 回電 . +The lights are not on . 灯 没有 亮 着 . +Do not bother . 不用 麻烦 了 . +The pen is on the desk . 笔 在 桌上 . +Everyone knows Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom knows what he has to do . 湯姆 知道 他 該 做 什麼 . +Time flies . 时间 匆匆 走过 . +What are you cooking ? 你 在 煮 什麼 ? +A new difficulty has arisen . 出现 了 新 困难 . +You ought to be ashamed of yourself . 你 應該 為 你 自己 感到 羞恥 . +I do not want to lose you again . 我 不想 再 失去 你 . +I had a strange dream last night . 我 昨晚 做 了 一個 奇怪 的 夢 . +I had sore legs the next day . 第二天 我 的 腿 很酸 . +I hope he will wait for me . 我 希望 他 會 等 我 . +We will not get paid extra for doing this . 我们 做 这事 没有 额外 报酬 . +The police will put you behind bars . 警察 會 把 你 關 在 牢 裡 . +Fresh fruits and vegetables are good for your health . 新鮮 水果 和 蔬菜 有益健康 . +The watch on the desk is mine . 桌上 的 手表 是 我 的 . +Sydney is the largest city in Australia . 雪梨 是 澳洲 最大 的 城市 . +There is a possibility that you will have to do that . 你 有 可能 不得不 那么 做 . +We will talk later . 我们 过 一会 再 谈 . +I saw him swim across the river . 我 看見 他 游 過 了 河 . +Stay calm . 保持 冷靜 . +I have a car . 我 有 一辆车 . +That is too bad . 多 遗憾 啊 ! +I know where he comes from . 我 知道 他 来自 哪里 . +He could not swim . 他 不能 游泳 . +I am not used to speaking in public . 我 不 習慣 在 公眾場 合 說 話 . +Who wrote this story ? 谁 写 了 这个 故事 ? +What are you punishing them for ? 你 為 什麼 懲罰 他們 ? +We have nothing in common . 我們 沒有 任何 共同 之處 . +I buy donuts every Sunday after church . 我 每个 星期日 礼拜 完 都 买 甜甜 圈 . +Tom says he feels a little better . 汤姆 说 他 感觉 好 点 了 . +Did you go to the book fair ? 你 去 書展 了 嗎 ? +I did not sleep a wink last night . 我 昨晚 一夜 沒 闔眼 . +There is a book about dancing on the desk . 桌子 上 有 一本 关于 舞蹈 的 书 . +He will be a good doctor . 他 会 成为 一个 好 的 医生 的 . +You need to attach your photo to the application form . 你 必须 把 你 的 照片 贴 在 申请书 上 . +Who invented the telephone ? 谁 发明 了 电话 ? +How was your weekend ? 你 的 周末 是 怎么 过 的 ? +She drew out the money from the bank . 她 从 银行 取 了 钱 . +Do you want to eat this ? 你 想 吃 這個 嗎 ? +Few people live to be 100 years old . 很少 人 活到 100 岁 . +Tom has no friends who are willing to help him . 汤姆 没有 愿意 帮助 他 的 朋友 . +It is going to be cold tonight . 今晚 會 很 冷 . +I have no idea . 我 一无所知 . +I think Tom will likely like this movie . 我 認為 湯姆 很 可能 會 喜歡 這部 電影 . +Tom wants me to stay away from him . Tom 要 我 離 他 遠 一點 . +Tom is quite likely to be late . 湯姆 很 可能 遲 到 . +I am looking forward to seeing you next Sunday . 我 期待 下 周日 能 见到 你 . +I drank a cup of water . 我 喝 了 一杯 水 . +Theory and practice should go hand in hand . 理论 得 联系实际 . +Tom sat down . 汤姆 坐下 了 . +They will kill you . 他們 要 殺 你 . +I want something to drink now . 我 現在 想要 喝 點 東西 . +We should go to sleep . 我 该 去 睡觉 了 . +That was not my intention . 那 不是 我 的 本意 . +Tom lived in a small fishing village . 汤姆 住 在 一个 小 渔村 . +The dog is dying . 這 隻 狗 快要 死 了 . +You are a beautiful woman . 你 是 个 美 人 . +Tom attached the string to the kite . 湯姆 把 繩子 加在 了 這個 風箏 上 . +He is ashamed of his failure . 他 为 他 的 失败 感到 羞耻 . +I am satisfied with my work . 我 很 滿意 我 的 工作 . +Hi ! Do you work here ? 嗨 ! 你 在 这儿 工作 吗 ? +I know you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +Tom has short hair . 汤姆 ( Tom ) 留 短发 +She always dresses in black . 她 總 是 穿著 黑色 的 衣服 . +Cows are eating grass in the meadow . 牛 吃 牧草 . +Tom told me he was Canadian . 汤姆 告诉 我 他 是 加拿大人 . +He did not go and I did not either . 他 沒 有 去 , 我 也 沒去 . +You will soon hear from him . 你 很快 就 會 收到 他 的 信 . +She backed her car into the garage . 她 倒 車 進車 庫 . +You are the man I have been looking for . 你 就是 我 一直 要 找 的 人 . +Turn the TV off . 把 電視 關了 . +We talked and talked until the day broke . 我們 一直 聊天 直到 天明 . +At last , he came . 最终 , 他 来 了 . +We did not have much rain last month . 上個月 我們 這兒 沒有 下 很多 雨 . +She takes care of my children . 她 照顧 我 的 孩子 . +The air is thin at the top of a high mountain . 山頂 上空 氣 稀薄 . +Your manners are not very good . 你 的 舉止 不是 很 好 . +I would like to tell you something . 我 想 告訴 你 一些 事情 . +Tom turned on the electric fan . 湯姆 打開 了 電風 扇 . +What are your plans for the weekend ? 你 週末 有 什麼 計劃 ? +Tom does not like any kind of spicy food . 汤姆 不 喜欢 任何 辣 的 食物 . +Nobody is too old to learn . 沒 有人 會 因為 太 老 而 不能 學習 . +Can you tell me what this is ? 你 能 告诉 我 这 是 什么 吗 ? +She did not tell me her secret . 她 沒有 告訴 我 她 的 秘密 . +People must love one another . 人 要 爱 他人 . +I really think we should do this . 我 真的 认为 我们 该 做 这个 . +I found a good Mexican restaurant . 我 发现 一家 很好 的 墨西哥 餐厅 . +This dress cost me over 40,000 yen . 這件 衣服 花 了 我 40000 日元 . +Is there anything I must do ? 有 什么 事 是 我 该 做 的 吗 ? +He told me his life is story . 他 跟 我 讲 了 他 的 人生 故事 . +Only one person survived the accident . 只有 一 人 倖 免 於 難 . +They congratulated us on our victory . 他們 祝賀 我們 的 勝利 . +It is okay to go . 你 可以 走 了 . +How long have you been in here ? 你 来 这里 多久 了 ? +Does this letter have to be written in English ? 這 封信 必須 用 英文 寫 嗎 ? +My sister is cooking in the kitchen . 我 妹妹 正在 厨房 做饭 . +Tom realized he had lost his wallet . 湯姆 意識 到 他 丢 了 錢 包 . +Learning French is not hard . 学法语 不难 . +I climbed in through the window . 我 从 窗口 爬 进来 的 . +Tom picked up the jar and read the label . 汤姆 拿 起 罐子 读 标签 . +Father would often read detective stories in his spare time . 父亲 常常 在 空闲 时间 读 侦探小说 . +Nothing much has changed . 沒有 多少 改變 . +The board unanimously decided to appoint her as CEO . 董事会 一致 决定 任命 她 为 执行 总裁 . +Why not ? 为什么 不 ? +Nothing happened . 什麼 事 都 沒有 發生 . +Let me help you . Your bag looks very heavy . 让 我 来 帮 你 吧 . 你 的 包 看起来 很重 . +He said , " I am from Canada . " 他 说 : “ 我 是 加拿大 来 的 . ” +He is washing his car . 他 正在 洗 他 的 车 . +I was tired , but I could not sleep . 我 累 了 , 但是 我 睡 不著 . +This makes me sad . 這 讓 我 難過 . +This is surprising . 這 是 令人 吃驚 的 . +I bought a new television . 我 买 了 台 新 电视机 . +Is it right for a doctor to decide when someone should die ? 由 医生 来 决定 某人 何时 该死 是 对 的 吗 ? +Tom has a veterinary background . Tom 有 獸 醫 背景 . +I will be seventeen next year . 我 明年 17 岁 . +Can Tom buy that for us ? 湯姆 能 給 我們 買 嗎 ? +Everybody knows her . 每個 人 都 認識 她 . +He is a pleasant person . 他 是 个 好脾气 的 人 . +My father runs a restaurant . 我 的 父親 經營 一家 餐館 . +Stop gawking . 别 再 傻 看着 . +It has been three months since he left Japan . 自從 他 離開 日本 已經 有 三個 月 了 . +I am almost sure of it . 我 幾乎 能 確定 . +No matter what I do , she says I can do better . 不管 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I was trying to kill time . 我 试 着 消磨 时间 . +See you tomorrow in the library . 明天 图书馆 见 . +An apple fell to the ground . 一個 蘋果 落到 了 地上 . +An old man broke into our conversation . 一位 老人 打斷 了 我們 的 談話 . +I am always busy with my homework . 我 總是 忙 於 功 課 . +What is that ? 那 是 什么 ? +Tom criticized Mary in front of everyone . 汤姆 在 所有人 面前 批评 了 玛丽 . +It has always been a pleasure to work with you . 跟 你 共事 总是 很 愉快 . +My father had already finished breakfast when I got up this morning . 我 今早 起床 时 , 我 爸 已经 吃 过 早饭 了 . +You must be joking . 你 一定 是 开玩笑 ! +When does it start ? 什么 时候 开始 ? +Fish and red wine do not go together . 鱼 和 红酒 不 相配 . +School begins at 8 : 30 a.m. 学校 8 点 半 开始 上课 . +He is afraid of that dog . 他 怕 那 只 狗 . +That would be relevant . 那 会 有 关系 . +Could you tell me how to get there ? 请问 我 该 怎么 去 那里 ? +Have a good weekend . 周末 愉快 . +I did not want this to happen . 我 不想 这种 事 发生 . +They did not keep their promise . 他們 沒有 信守 諾 言 . +The house I bought is pretty far from downtown . 我 買 的 房子 離 市中心 比較 遠 . +Our school is near the station . 我們 學校 在 車站 的 附近 . +I visited my grandmother is house . 我 拜訪 了 我 祖母 的 房子 . +It rains a lot in June in Japan . 在 日本 , 6 月 的 时候 会 下 很多 雨 . +You can take your time . 你 可以 慢慢来 . +He likes hunting . 他 喜欢 打猎 . +It is really not important . 真的 不 重要 . +Please take a look at this picture . 請 看看 這 張 照片 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +The clock is above the fireplace . 時鐘 在 壁爐 的 上方 . +I know the real reason you do not want go . 我 知道 你 不想 去 的 真实 原因 . +Keep going . 继续 吧 . +It is about time to start . 差不多 该 开始 了 . +This is a friend of mine . 這個 是 我 的 朋友 . +The hunter shot and killed the fox . 猎人 射死 了 狐狸 . +I was waiting for something to happen . 我 在 等 事情 發生 . +Walk ahead of me . 在 我 前面 走 . +Speaking English is useful . 说 英语 很 有用 . +You are now an adult . 你 现在 是 大人 了 . +My brother and I shared the room . 我 哥哥 和 我 共用 這間 房間 . +You really are lucky , are not you ? 你 真的 很 幸運 , 不是 嗎 ? +She is not a regular employee of this company . 她 不是 這間 公司 正式 的 職員 . +I do not want there to be any misunderstanding . 我 不想 有 任何 误会 . +That was fabulous . 那 真是 极好 的 . +She was aching from head to foot . 她 浑身 酸痛 . +He bored us with his long stories . 他 長長 的 故事 讓 我們 覺得 厭煩 了 . +I have already finished this book . 我 已經 讀完 了 這 本書 . +She has a gift for prophecy . 她 有 预言 的 能力 . +My brother bought an electric guitar . 我 的 兄弟 買 了 電子 吉他 . +You need protection . 你 需要 保護 . +She is a frequent visitor to this country . 她 经常 来 这个 国家 . +Prices are double what they were two years ago . 價格 是 兩 年前 的 兩倍 . +I like to eat apples . 我 喜欢 吃 苹果 . +Tom refused to help Mary do her homework . 湯姆 拒 絶 幫 瑪 麗 做 她 的 作 業 . +This is the house where he lived . 這 是 他 住 的 房子 . +She cooked vegetable soup for us . 她 為 我們 煮 了 蔬菜 湯 . +I do not have the slightest intention of retiring . 我 没有 一点 退休 的 念头 . +This plan will be very expensive to carry out . 这 计划 执行 起来 花销 会 很大 . +This is not what I ordered . 這 不是 我 點 的 食物 . +He founded the school five years ago . 他 在 五年 前 創立 了 這 所 學校 . +I often go swimming in the river . 我 常常 在 河裡 游泳 . +You can do whatever you want to . 你 可以 做 任何 你 想 做 的 事 . +Work slowly . 干活 慢点 . +They come from the south of France . 他们 是从 法国 南部 来 的 . +Anything that can be misunderstood will be . 任何 事 都 可以 被 誤解 . +He traveled around the world . 他 周遊 世界各地 . +Hurry up ! We will be late . 快點 ! 我們 要 遲 到 了 . +She likes all kinds of sports . 她 喜歡 各種 運動 . +It is quite difficult to master French in 2 or 3 years . 很 难 在 2 、 3 年内 掌握 法语 . +You can use my dictionary . 你 可以 用 我 的 字典 . +His parents expect too much of him . 他 父母 对 他 期望 过 高 . +The lake is deep here . 这个 湖 在 这个 地方 很 深 . +He rescued the dog at the risk of his own life . 他 冒 着 生命危险 救 了 那条 狗 . +Tom finally understood it . 汤姆 最终 明白 了 . +I think I am intelligent . 我 觉得 我 很 聪明 . +I will go back home with you . 我 會 跟 你 一起 回家 . +Do not forget to take the first @-@ aid kit . 别忘了 带上 急救箱 . +I want to see you again . 我 希望 再次 見 到 你 . +The flowers in the garden need to be watered . 花园里 的 花 需要 浇水 . +Tom does not have any friends who like camping . 汤姆 没有 喜欢 露营 的 朋友 . +I can not make any sense of this . 我 完全 不 明白 . +How many apples do you want ? 你 要 多少 個 蘋果 ? +I do not like you anymore . 我 再也 不 喜欢 你 了 . +Let is keep in touch . 让 我们 保持 联络 . +I almost forgot my lunch . 我 快 把 我 的 午饭 忘 了 . +What does this pen cost ? 這 支筆 多少 錢 ? +What time does the play begin ? 演出 什么 时候 开始 ? +I am a teacher . 我 是 個 老師 . +He is at home today . 他 今天 在家 . +I do not want to miss the exam . 我 不想 错过 考试 . +Time is the most precious thing in the world . 时间 是 世界 上 最 宝贵 的 东西 . +Go back to the office . 回辦 公室 去 . +She can sing and dance beautifully . 她 會 唱歌 而且 舞 跳 得 很美 . +She plays the piano very well . 她 鋼琴 彈 得 很 好 . +I feel unwell . 我 感觉 不 舒服 . +But you are not there . 但 你 不 在 那裡 . +It was Tom that saved the girl . 是 湯姆 救 了 這個 小女孩 . +Both French and English are spoken in Canada . 在 加拿大 的 人 說 法語 和 英語 . +She lived a lonely life . 她 的 生活 很 寂寞 . +We will go on a picnic next Sunday . 我們 下週 六 將 去 野餐 . +Will it be necessary for us to buy a book for this class ? 我们 有 必要 为 上 这 门 课 买 本 教材 吗 ? +Mary is carrying a watermelon . 瑪麗婭 抱著 一個 西瓜 . +I am sorry . I have another appointment . 很 抱歉 , 我 还有 另 一个 约会 . +The road is under construction . 路 正在 建 . +Are you saying my life is in danger ? 你 在 说 我 有 生命危险 吗 ? +We depend on you . 我们 可 全 靠你了 . +This is the church where we got married . 這裡 是 我們 結婚 的 教堂 . +Children need a lot of sleep . 孩子 們 需要 大量 的 睡眠 . +My mother made me a white dress . 我 媽媽 為 我 做 了 一件 白色 的 洋裝 . +There are 50 members in the club . 這個 俱樂部 有 50 位 成員 . +Will you wait a minute ? 麻煩 您 等 一下 . +She is just a child . 她 只是 個 孩子 . +I was invited to their wedding . 我 被 邀請 參加 他們 的 婚禮 . +He stepped on my foot on purpose . 他 故意 踩 我 的 腳 . +Tom was ready to work . 湯姆 準備 去 工作 . +We let him keep the dog . 我們 讓 他 養 狗 . +Wine helps with digestion . 葡萄酒 幫 助消化 . +Tom says that he is a creature of habit . 汤姆 说 他 是 习惯 的 产物 . +I have had a headache for three days and I can not get rid of it . 我 已经 头疼 三天 了 , 还 没 摆脱 它 . +Some of them are healthy , but others are not . 他们 中 的 一些 人 身体健康 , 但是 其他人 不是 . +I have a friend whose father is a famous writer . 我 有個 朋友 的 父親 是 知名 的 作家 . +I can not speak English at all . 我 一点 英文 都 不会 说 . +Ask for what you want . 要 你 想要 的 ! +Tom looked well . 汤姆 看上去 很 精神 . +Our country must develop its natural resources . 我們 國家 必須 開發 自然 資源 . +It is two @-@ hour drive from here to my uncle is house . 从 这里 坐车 , 要 花 两个 小时 才能 到 我 叔叔 家 . +I have always been smart . 我 一直 聪明 . +When I came home , Tom was studying . 當 我 回家 的 時候 , 湯姆 正在 讀書 . +Let me have a look at it . 讓 我 看看 它 . +The whole class is present once a week . 全班同学 每周 出席 一次 . +I have two nieces . 我 有 两个 外甥女 . +Tom hit me first . 汤姆 先 打 了 我 . +Do not ask questions . Just follow me . 别 问 问题 . 跟着 我 就 行 . +Do you want more ? 你 想要 更 多 嗎 ? +This month was kind of difficult . 这个 月 我 过得 有点 艰难 . +Only then did he realize he had been deceived . 直到 那时 , 他 才 意识 到 他 已经 上当受骗 . +You should obey your parents . 你 该 听 你 父母 的话 . +He invited me to his house . 他 邀请 我 去 他家 . +He has not answered my letter yet . 他 还 没回 我 的 信 . +Shut the door . 关门 . +Mars has two natural moons . 火星 有 兩個 天然 衛星 . +She becomes drowsy after dinner . 晚 飯 後 她 變得 昏昏欲睡 . +What does this pen cost ? 这 支 钢笔 要 多少 钱 ? +I did not go to school last Monday . 上周 一 我 没 去 上学 . +The company went bankrupt . 公司 破产 了 . +Some people like sports , and others do not . 有些 人 喜欢 运动 , 有些 人 不 喜欢 . +Do you have any money with you ? 你 身上 有 錢 嗎 ? +There are many beautiful castles in northern Germany . 在 德國 北部 有 很多 美麗 的 城堡 ? +How much money do you have ? 你 有 多少 錢 ? +The vase was shattered . 花瓶 被 打碎 了 . +I have not seen him in a long time . 我 好久不见 他 了 . +I do not know if there is time . 我 不 知道 有没有 时间 . +I believe in you . 我 相信 你 . +It is started raining again . 又 开始 下雨 了 . +I have to get some sleep . 我 必須 睡 一下 覺 . +Tom does not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +How long will the train stop here ? 火车 要 在 这里 停 多久 ? +It is a beautiful painting . 是 一幅 漂亮 的 畫 . +Who took the money ? 誰 拿 了 錢 ? +It is evident that he has made a mistake . 很 明顯 的 是 他 犯 了 錯 . +Why do not you eat vegetables ? 为什么 你 不吃 蔬菜 ? +Could you please pass me the salt ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Tom is by far the tallest boy in our class . 汤姆 远 比 我们 班 其他 男孩 高 . +I went to three funerals last month . 上个月 我 参加 了 三场 葬礼 . +I wish I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +They live across the river . 他們 住 在 河對面 . +Is there a supermarket near here ? 這 附近 有 超市 嗎 ? +How about playing tennis ? 打 網球 怎麼樣 ? +I do not think I can help you very much . 我 不 認為 我 能 幫 你 很多 . +One hundred years is called a century . 一百年 称为 一个 世纪 . +Australia is the world is fifth @-@ largest coal producer . 澳大利亚 是 世界 第五 大 煤炭 产地 . +I sometimes play tennis with her . 有時 我 會 跟 她 打 網球 . +He occasionally visited me . 他 偶尔 会 来 拜访 我 . +Tom and Mary are in the same class . 汤姆 和玛丽 在 同一个 班级 . +Do you have a coat and a hat ? 你 有 外套 和 帽子 嗎 ? +Tom was wearing jeans . 湯姆 穿著 牛仔 褲 . +Tom finally gave up smoking . 汤姆 终于 戒烟 了 . +There is enough time for a quick snack . 有 足夠 的 時間 很快 地 吃 一下 點 心 . +They rescued the boy from drowning . 他們 救 了 這個 男孩 , 使 他 免 於 淹死 . +I do not want to go there . He does not want to go either . 我 不想 去 那儿 , 他 也 不想 . +I gave my sister a dictionary . 我 給 了 我 妹妹 一本 字典 . +He has strange ideas . 他 有着 奇妙 的 想法 . +She has an agreeable voice . 她 的 声音 令人 愉快 . +When did your baby start talking ? 你 的 寶寶 , 什麼 時候 開始 說 話 的 ? +Tom used to drink like a fish . Tom 過去 喝 很多 酒 . +We need to get some help . 我们 需要 人 帮忙 . +She got her daughter a personal computer . 她 給 她 的 女兒 買 了 一台 個 人 電腦 . +They left one after another . 他们 一个 接着 一个 地 离开 了 . +Fill in your name and address . 填上 你 的 姓名 和 地址 . +He makes three times more money than I do . 他 赚 的 钱 比 我 多三倍 . +They got into the train . 她們 上 了 火車 . +He read the letter over and over . 他 把 信读 了 一遍 又 一遍 . +The boat is going against the current . 船 逆流 航行 . +By the way , have you seen him lately ? 顺便 说 一句 , 你 最近 见 过 他 吗 ? +She made me a cake . 她 为 我 做 了 一个 蛋糕 . +He who laughs last laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +She was hit by a car . 她 被 車 撞 了 . +I believe you will get over it soon . 我 相信 你 很快 就 能 复原 . +Would you please write with a ballpoint pen ? 你 能 用 圆珠笔 写 吗 ? +The two of us are students . 我們 兩個 是 學生 . +My French is not good enough . 我 的 法语 说 得 不够 好 . +What color is your hair ? 您 的 头发 是 什么 颜色 的 ? +Stop joking around . 別 開 玩笑 了 . +Do you want to eat something else ? 你 想 吃 點 別的 嗎 ? +I do not know what Tom is plan is . 我 不 知道 湯姆 的 計劃 是 甚麼 . +He thought that it was like a bird cage . 他 认为 这 像 个 鸟笼 . +You must put an end to this foolish behavior . 你 该 结束 这种 愚蠢 的 行为 了 . +He graduated from Harvard University with honors . 他 光榮 地 從 哈佛 大學 畢業 了 . +Your memory is not too good . 您 记性 不太好 . +These peaches are not very sweet . 這些 桃子 不是 很甜 . +It is very simple . 这 很 简单 . +Tom ate a slice of pizza . 湯姆 吃 了 一片 比薩餅 . +You can swim , can not you ? 你 會 游泳 , 不是 嗎 ? +Rome has a lot of ancient buildings . 罗马 有 很多 古建筑 . +I am extremely grateful to you . 我 無法 表達 我 對 你 的 感謝 . +Tom is a good person . 湯姆 是 個 好人 . +Tom did not want to come . 汤姆 不想 来 . +Tom started running towards the house . 湯姆 開始 向 房子 跑 去 . +He had kept the secret to himself . 他 保守 著 這個 秘密 . +Tom asked Mary some questions , but she refused to answer them . 汤姆 问 了 玛丽 一些 问题 , 但是 她 拒绝 回答 . +How long ago did the bus leave ? 這輛 公車 多久 前 離開 的 ? +I am using Twitter . 我 用 Twitter . +This bus will take you to the airport . 这辆 公交车 能载 你 去 机场 . +Tom never wanted to try it . 湯姆 從 不想 試試 . +Your behavior leaves much to be desired . 你 的 行为 离 要求 的 太 远 了 . +Tom did not go . 汤姆 没 走 . +How large is your family ? 你 的 家庭 有 多 大 ? +Fear quickly turned into anger . 恐惧 很快 变成 愤怒 . +Are you dating anybody ? 你 跟 人 約 會 過 嗎 ? +Tom joined the discussion . 汤姆 参加 了 讨论 . +I can work with anyone . 我 能 跟 任何人 工作 . +He has a few pens . 他 有些 鋼筆 . +The tiger cub looked like a large kitten . 小老虎 看起 來 像 隻 大 貓 . +Tom will not likely be grumpy again today . 汤姆 今天 脾气 不太可能 会 那么 坏 了 . +Do not forget me . 別 忘 了 我 . +I took a day off last week . 上週 我 休 了 一天 的 假 . +This swallow is wings are broken . 这 只 燕子 的 翅膀 受伤 了 . +I stayed at his place yesterday . 我 昨天 住 在 他家 . +She lived up to our expectations . 她 没有 辜负 我们 的 期望 . +It is difficult to keep secrets . 守住 秘密 很 难 . +She may be a nurse . I am not sure . 她 可能 是 护士 . 我 不 太 肯定 . +That boy used to drop in on me . 那 男孩儿 来访 过 我家 . +My blood type is A positive . 我 的 血型 是 A型 血 阳性 . +He is just a business associate . 他 只是 個 事業 合夥人 . +What do you want to be when you grow up ? 你 长大 后 想 成为 什么 ? +Would you like some sugar in your tea ? 红茶 里 要 加糖 吗 ? +Do you have siblings ? 你 有 兄弟姐妹 吗 ? +It seems that you are not having a good time here . 好像 你们 在 这儿 玩 得 不 愉快 啊 . +He lived here for a time . 他 在 这儿 住 了 有 一段时间 了 . +Tom said Mary is shy . 湯姆 說 瑪麗 害羞 . +You should stay away from Tom . 你 应该 离 汤姆 远 点儿 . +There are four people in my family . 我家 有 四個 人 . +We talked about yesterday is test . 我們 談到 了 昨天 的 測驗 . +He occasionally reads detective novels . 他 偶尔 会 阅读 一些 侦探小说 . +I have no doubts . 我 没有 疑问 . +Tom happened to meet Mary at the supermarket . 汤姆 在 超市 偶遇 玛丽 . +Is it all right to take pictures in this building ? 我们 可以 在 大楼 里 拍照 吗 ? +Is it serious ? 严重 吗 ? +The incident made everyone feel more embarrassed . 這件 事 弄 得 大家 都 比較 尷尬 . +I asked him to help me . 我 請 他 幫 我 . +An old man was resting in the shade of the tree . 一個 老人 在 樹蔭 下 休息 . +I must help my mother . 我 必須 幫忙 我 母親 . +I will give you a book . 我 會 給 你 一本 書 . +My camera does not need to be fixed . 我 的 照相 機 不 需要 修理 . +I can start anytime . 我 随时 可以 开始 . +What do you think would happen if the earth stopped spinning ? 如果 地球 停止 自传 , 你 认为 会 发生 什么 ? +My father had me wash the car . 父亲 让 我 洗 汽车 . +This is the best book that I have ever read . 這 是 我 讀 過 的 最好 的 書 . +Tom helped Mary buy everything she needed . 湯姆幫 瑪麗 買 了 她 所有 需要 買 的 東西 . +Who do you want to speak to ? 你 想 跟 誰 說 話 ? +I hid in the tall grass . 我 躲 在 高 草丛里 了 . +You said that you 'd help me . 你 说 过 你 会 帮 我 的 . +Children generally have a higher body temperature than adults . 小孩 的 体温 一般 比 大人 的 要 高 . +He quickly went out of the room . 他 很快 地 走出 了 房間 . +I worked in a post office during the summer vacation . 暑假 期间 , 我 在 邮局 工作 . +I will obey . 我会 听从 指示 . +Come home . 回家吧 . +I have a high opinion of this book . 我 對 這 本書 評價 很 高 . +You must have been asleep . 你 一定 睡著 了 . +He does not like fish . 他 不 喜歡 吃 魚 . +Tom is escaping . 湯姆 在 逃跑 . +I have tried to contact Tom . 我 试 过去 联系 汤姆 . +I owe everything to Tom . 我 什么 都 欠 汤姆 的 . +I will get started right away . 我 會 立刻 開始 . +Mix the flour with two eggs . 把 麵 粉 和 兩 顆 雞 蛋 混合 . +He was tired , but he kept working . 他 累 了 , 但是 他 繼續 工作 . +Tom says he does not know how to swim . 汤姆 说 他 不 知道 怎么 游泳 . +I forget where I put my hat . 我 忘 了 我 把 我 的 帽子 放在 哪裡 了 . +I hear that he sold his house . 我 聽 說 他 賣 掉 了 房子 . +Do not depend too much on others . 不要 太 过于 依赖 别人 . +Please fill this bottle with water . 請 把 這個 瓶子 裝滿 水 . +Do not laugh at him for making a mistake . 不要 笑 他 犯 了 错误 . +Are not you going to go with me ? 你 不要 跟 我 一起 走 嗎 ? +Tom was caught driving without a license . Tom 被 抓到 無照 駕駛 . +He is not able to buy a car . 他 不能 买车 . +Do you go to church on Christmas Day ? 你 在 圣誕節 去 教堂 嗎 ? +My boss assigned the hard job to me . 我 老板 把 艰巨 的 任务 指派 给 了 我 . +It is not necessary for you to quit the job . 你 没 必要 辞掉 工作 . +He went bankrupt . 他 破产 了 . +I prefer being poor to being rich . 我 更 愿意 贫穷 而 不是 富裕 . +I hate silent movies . 我 讨厌 无声电影 . +I respect the elderly . 我 尊敬 长辈 . +It is impossible to master English in a short time . 不 可能 短时间 内 学会 英语 . +Tom went over and sat down next to Mary . 汤姆 来 了 , 坐到 了 玛丽 的 边上 . +You should read a lot of books while you are young . 应该 趁 年轻 多 读点 书 . +The boat was tied with a short line . 船 被 用 短 繩 繫 著 . +What was it we were talking about ? 我们 那个 时候 讨论 的 是 什么 ? +Can I borrow your car ? 我 能 借 你 的 车 吗 ? +I have looked everywhere , but I can not find my book . 我什麼 地方 都 找 過 了 , 但 卻 找 不到 我 的 書 . +She substituted margarine for butter . 她 用 人造黄油 代替 了 黄油 . +Were you able to do it ? 你 有 能力 去 做 这个 吗 ? +Can I get my money back ? 我 是不是 能 收回 我 的 钱 ? +It is very cold . 天气 非常 寒冷 . +He likes to travel by himself . 他 喜歡 獨自 旅行 . +His intelligence and experience enabled him to deal with the trouble . 他 的 智慧 和 經驗 使 他 能 處理 這個 麻煩 . +We can not let them do that . 我们 不能 让 他们 那么 做 . +Have you traveled anywhere recently ? 你 最近 去 哪裡 旅遊 了 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 网站 的 版面设计 . +Is this your notebook ? 這 是 你 的 筆記 本 嗎 ? +She will cry even when no one is looking . 没 人 盯 着 她 的 时候 , 她 甚至 会 哭 . +It is not as hard as you think . 那个 没 你 想象 的 那么 难 . +Nobody can stop me ! 没 人 能 阻止 我 ! +What happened to your computer ? 你 的 電腦 怎麼 了 ? +He came here ten minutes ago . 他 十分 鐘 前 到 這裡 . +Are you happy now ? 你 现在 高兴 吗 ? +Tom has spent the past three years in prison . 湯姆 在 監 獄裡 待 了 三年 . +I do not think he is sincere . 我 不 相信 他 是 真心 的 . +Have you ever seen such a beautiful sunset ? 你 看 過 這麼 美的 夕陽 嗎 ? +Go to the patio . 去 露台 . +I listen to the radio every night . 我 每晚 都 听 收音机 . +I had hoped to meet you there . 我 曾 希望 在 那裡 遇見 你 . +He gave us not only clothes but some money . 他 不仅 给 了 我们 衣服 , 还有 一点 钱 . +It is hard for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +She eats nothing but vegetables . 她 只 吃 蔬菜 . +Tom needs a change of scenery . 汤姆 需要 换换 风景 . +Do not speak to anyone . 你們 別 和 任何人 說 . +Is it something I said ? 是 我 說 的 嗎 ? +Why do you need to read such a book ? 为什么 你 要读 这样 一 本书 ? +Why are not you coming with us ? 你 为什么 不 和 我们 一 起来 ? +Why do not we have dinner ? 為 甚麼 我們 不吃 晚 飯 ? +He majors in English literature . 他 主修 英國 文學 . +You have made progress . 你 进步 了 . +I am a new student . 我 是 个 新生 . +He has a car . 他 有 辆车 . +You are as tall as I am . 你 和 我 一样 高 . +Children should keep away from the river . It is dangerous . 儿童 应该 远离 河流 . 有 危险 . +Could you take me to a movie ? 你 帶 我 去 看 電影 好 嗎 ? +It would be ridiculous to spend all their money . 花光 他們 所有 的 錢 會 很 荒謬 . +It is only a matter of time . 這 只是 時間 的 問題 . +You are very talkative , are not you ? 你 很 健谈 , 不是 吗 ? +Is that better ? 那 更好 吗 ? +He put his hands in his pockets . 他 把手 插進 口袋 裡 . +This is your dog . 这 是 你 的 狗 . +Are you sure you do not want to sleep on it ? 你 確定 你 不想 睡 在 它 上面 嗎 ? +I will go with you if necessary . 如果 必要 的 話 , 我 會 和 你 一起 去 . +Abraham Lincoln , the 16th president of the United States , was born in a log cabin in Kentucky . 伯 拉罕 · 林肯 , 美国 第 16 任 总统 , 生于 肯塔基州 的 一个 简陋 的 小 屋里 . +No one will talk . 没人会 讲 . +This tea tastes good . 這 茶 味道 不錯 . +Will you all be here tomorrow ? 明天 你 一整天 都 會 在 這裡 嗎 ? +Please call me at my hotel later . 等 一下 請 打 電話 到 我 住 的 旅館 . +I felt my hands tremble . 我 感覺 到 我 的 手 在 震動 +They were alone in the library . 他們 獨自 在 圖書館 裡 . +A truck was standing in the middle of the road . 路 中间 有 一辆 卡车 . +She is as beautiful as Snow White . 她 像 白雪公主 一樣 漂亮 . +Tom is living in Boston now . 汤姆 现在 住 在 波士顿 . +Tom paid me back the money he owed me . 汤姆 把 欠 我 的 钱 还给 我 了 . +Everybody will die . 人 固有 一 死 . +Tom is a bit snobbish . 汤姆 有 一点 势利 . +It can not be ! 不 可能 ! +She is almost the same height as you . 她 差不多 和 你 一样 高 . +You must not jump to conclusions . 你 不 可以 妄下 結論 . +Tom was questioned by the police . 汤姆 被 警察 盘问 . +A lot of houses were washed away by the flood . 许多 房屋 被 洪水 冲走 了 . +It makes sense . 那样 说 得 通 . +Read Lesson 10 from the beginning . 從 第十 課 的 開頭 讀起 . +Tom said he is glad he could do that . 湯姆 說 他 很 高興 他 能 做 . +I will try my best today , too . 今天 我 也 会 努力 的 . +Draw a line from A to B. 请 画 一条 从 A 到 B 的 线 . +If it rains tonight , I am not going to go out . 如果 今晚 下雨 , 我 就 不 出去 . +Do not change your mind . 不要 改變 你 的 心意 . +I think we should change the topic . 我 認為 我們 該 換 個題 目 . +Do not forget smoking is bad for your health . 不要 忘记 吸烟 对 你 的 健康 有害 . +Tom did not let his children go to Mary is party . 湯姆 沒 有 讓 他 的 孩子 們 去 瑪莉 的 派 對 . +We were very sorry that we could not help them . 我們 很 遺憾 無法 幫助 他們 . +The price of meat dropped . 肉价 下跌 了 . +You have got to be joking . 你 一定 是 开玩笑 ! +Choose the color you like the best . 選 你 最 喜歡 的 顏色 . +I walked to school . 我 走路 到 學校 . +All of the milk was spilled . 所有 的 牛奶 都 溢出 去 了 . +How long is this visa good for ? 這個 簽證 的 有效期限 是 多久 ? +We like to play soccer . 我們 喜歡 踢足球 . +Water poured from the broken pipe . 水 從 破裂 的 水管 傾瀉 而 出 . +I got him to fix my bicycle . 我 讓 他 修理 了 我 的 腳踏車 . +Tom has been driving all day . 汤姆 整天 都 在 开车 . +I do not know if I have the time . 我 不 知道 我 有 沒有 時間 . +Spring has come . 春天 到 了 . +I would like to change yen to dollars . 我 想 把 日元 換成 美元 . +Afraid of hurting his feelings , I did not tell him the truth . 怕 傷害 了 他 的 感情 , 我 沒有 告訴 他 真相 . +We kept them quiet . 我們 讓 他們 保持 安靜 . +I did not know what to say . 我 不 知道 該 說 些 什麼 . +Sorry , I do not have any change . 不好意思 , 我 没 零钱 . +She asked him for help . 她 向 他 求助 . +Tell me the correct answer . 告诉 我 正确 的 答案 . +We went to the races . 我们 去 看 了 比赛 . +They set out on a picnic . 他们 出发 去 野餐 了 . +Tom followed . 汤姆 跟着 . +You have lost weight , have not you ? 你 减肥 了 , 不是 么 ? +Karaoke is good for reducing stress . 卡拉 OK 對 減輕 壓力 有益 . +Good luck on the test ! 祝 考试 好运 ! +I hear you , but I do not see you . 我 听得见 你 , 但 我 看不见 你 . +You are in better shape than I am . 你 的 體型 比 我 的 好 . +Tom never forgets to give his wife flowers on their wedding anniversary . 汤姆 从没 忘记 在 婚礼 周年 纪念日 送给 他 妻子 花 . +Did you enjoy yourself yesterday ? 你 昨天 玩 得 開心 嗎 ? +My father often goes to America on business . 我 爸爸 经常 去 美国 出差 . +The man ate bread . 這個 男人 吃 了 麵 包 . +It is already nine o 'clock . 已经 9 点 了 . +She calmed down . 她 冷靜 下來 . +The family ate dinner together . 家裡 人 一起 吃 了 晚 飯 . +You should not have gone there . 你 不 應 該 去 那裡 的 . +He invited me to dinner . 他 邀請 我 吃 晚 飯 . +The rumor turned out to be false . 谣言 [ 最后 ] 证明 是 假 的 . +Is Tom Canadian ? Tom 是 加拿大人 嗎 ? +One after another , the animals died . 動物 一個 接 一個 的 死亡 . +Is it next Monday that Tom returns ? 汤姆 是 在 下个星期 一 回来 吗 ? +No arrests were ever made . 根本 就 没 实施 过 逮捕 行动 . +I got over the difficulty with my characteristic tenacity . 我 凭 韧性 克服 了 困难 . +Printing ink is in short supply . 油墨 快没了 . +Can I eat my lunch here ? 我 能 在 這裡 吃 午 飯 嗎 ? +I screwed up the very first note . 我 搞砸 了 第一 個 音符 . +He is a tennis player . 他 是 个 网球 球手 . +Are you the one who did that ? 你 就是 做 那事 的 人 嗎 ? +The room smelled of tobacco . 房里 有 股 烟味 . +A doctor was sent for at once . 醫生 立刻 被 請來 了 . +You have been had . 您 被 骗 了 . +She gave me a present . 她 給 了 我 一件 禮物 . +One who has everything can lose everything . 拥有 一切 的 人 可能 会 失去 一切 . +Tom complained that Mary never helped him . 汤姆 埋怨 玛丽 从来不 帮 他 . +I have a home . 我 有 一个 家 . +Take it . 拿走 吧 . +He had an accident at work . 他 在 工作 中 出 了 意外 . +Has she finished her work yet ? 她 完成 了 她 的 工作 嗎 ? +Stop whining . 别 再 埋怨 了 . +They helped one another to make the school festival a success . 他们 互帮互助 , 把 校庆 搞 得 很 成功 . +Man is the only animal that can speak . 人 是 唯一 会 说话 的 动物 . +I am leaving for Tokyo tomorrow . 我 明天 要離 開去 東京 . +He was run over by a car . 他 被 車 輾過 了 . +The universe is limitless . 宇宙 浩瀚 無邊 . +The baby is playing with some toys . 這個 小 嬰兒 正在 玩 一些 玩具 . +I have to take a test tomorrow . 明天 我 必須 參 加考 試 . +Which do you like better , rock music or classical music ? 你 比較 喜歡 哪 一個 , 搖滾樂 還 是 古典 音樂 ? +Please knock before you come in . 进来 之前 请 敲门 . +What is the exchange rate today ? 今天 的 匯率 是 多少 ? +I want to go to America some day . 有 一天 我 要 去 美國 . +A good cook does not throw out yesterday is soup . 一個 好 的 廚師 不 會 丟掉 昨天 的 湯 . +From what school did you graduate ? 您 是从 哪个 学校 毕业 的 ? +Tom seems to really enjoy being in Boston . 湯姆 看來 真喜 歡待 在 波士 頓 . +Let is take a trip to New York . 去 纽约 旅行 吧 ! +You can not say that . 你 不能 这么 说 . +I can still remember the time when we went on a picnic together . 我 还 记得 我 和 你 一起 去 野餐 的 时候 . +We can not go outside because it is raining . 因为 下雨 , 我们 不能 出去 . +I live too far away . 我 住 得 太 遠 了 . +Is there anything in the box ? 箱子 裡 有 任何 東西 嗎 ? +I like walking alone . 我 喜歡 獨 自行 走 . +I am positive that he has finished . 我 確信 他 已經 完成 了 . +We watched them play baseball . 我們 看著 他們 打 棒球 . +He entered the army . 他 加入 了 陸軍 . +Everyone knows that Tom speaks good French . 每个 人 都 知道 汤姆 的 法语 很 好 . +All participants must be registered . 所有 的 參加者 都得 註 冊 . +Getting started was difficult . 开始 很 难 . +I have never seen Tom so angry . 我 从没 见 过 汤姆 那么 生气 . +I have a black and a white dog . 我 有 一只 黑狗 和 一只 白狗 . +Tom undressed and got into bed . 汤姆 脱光 睡觉 了 . +I owe my success to him . 我 把 我 的 成功 歸功 於 他 . +It is strange that he should say so . 他 这么 说 很 奇怪 . +This is not the type that I like . 这 不是 我 喜欢 的 类型 . +They say that she was born in Germany . 他们 说 她 是 在 德国 出生 的 . +I remember this map . 我 記得 這 張 地圖 . +You are a good cook . 你 是 个 好 厨师 . +How did he find us ? 他 怎麼 找到 我們 的 ? +He does not have any friends . 他 没有 朋友 . +Could you call a doctor , please ? 你 能 請 個 醫生 來 嗎 ? +Riding a horse is really thrilling . 騎馬 真的 很 令人 興奮 . +The boy grew up to be a great statesman . 这个 孩子 长大 后 成为 了 一个 伟大 的 政治家 . +Only a fool would do something like that . 傻瓜 才 会 那么 干 . +We enjoyed swimming in the lake . 我们 尽情 在 湖里 游泳 . +I can play soccer . 我 會 踢足球 . +The firm went under due to lack of capital . 公司 由于 缺乏 资本 倒闭 了 . +Do you study English ? 你 学 英语 吗 ? +I have an opinion . 我 有 一個 意見 . +I ran away in a hurry . 我 趕快 跑 走 了 . +I still have not heard from him . 我 還 沒 收到 他 的 信 . +Tom loves flowers . 湯姆 熱愛 花卉 . +He comes here twice a week . 他 一周 来 这儿 两次 . +This is not my key . 這 不是 我 的 鑰匙 . +Many moons orbit around Saturn . 許多 衛星 繞著 土星 運行 . +I have not had time to look for what you wanted . 我 没 时间 找 你 想要 的 东西 . +They love that . 他们 喜欢 那个 +The island is a paradise for children . 这个 岛 是 孩子 们 的 天堂 . +He has a large family . 他 有 一個 大家庭 . +The ice on the lake is too thin to bear your weight . 湖上 的 冰 太薄 了 , 承受 不了 你 的 重量 . +Tom seems to be a fairly successful businessman . 汤姆 看来 是 个 很 成功 的 商人 . +She gets good marks in English . 她 英语 成绩 很 好 . +If the car breaks down , we will walk . 如果 車子 壞 了 , 我們 就 走路 . +What happened to him ? 他 發生 了 什麼 事 ? +We are adults . 我们 已 是 成年人 了 . +This makes me happy . 這 讓 我 開心 . +See you tonight . 今晚 見 . +What have you done with my pen ? 你 把 我 的 筆 怎麼 了 ? +The dog was hit by a truck . 狗 被 卡車 撞 了 . +Come home before six . 六点 之前 要 回家 . +I agree with you to some extent . 我 在 一定 程度 上 同意 你 的 意見 . +I will go to the meeting . 我 将要 去 参加 会议 . +I always enjoy listening to classical music when I have some free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +I heard it on the radio . 我 從 收音 機 聽到 它 . +You 'd better start now . 你 最好 現在 就 開始 . +If you are tired , just let me know . 困 了 的话 就 说 哦 . +Let is continue the game after supper . 讓 我們 在 晚 飯 后 繼續 這個 遊戲 . +He is much younger than Tom . 他 比 Tom 年轻 得 多 . +She decorated her room with roses . 她 用 玫瑰花 装饰 了 她 的 房间 . +You should emphasize that fact . 你 應該 重視 那個 事實 . +This is the cheaper of the two . 這 是 兩件 裡 便宜 的 那個 . +I will be staying here for another three days . 我会 在 这儿 再 待 上 三天 . +There is a knife missing . 少 一把 刀 . +Tom sent me an interesting text . 汤姆 给我发 了 一条 有趣 的 短信 . +Do you have something to say ? 您 有 什么 事 要说 吗 ? +Tom worries a lot about money . 汤姆 很 担心 钱 的 问题 . +I have found a place to live . 我 找到 了 个 住处 . +Three cubed is twenty @-@ seven . 三 的 立方 是 二十七 . +I have not finished reading this book yet . 我 還 沒讀 完 這 本書 . +The young should respect the old . 年轻人 应该 尊敬 老人 . +I heard a knock at the door . 我 聽到 了 敲門聲 . +The life span of a butterfly is short . 蝴蝶 的 寿命短 . +I do not like science . 我 不 喜欢 科学 . +He did not know what to say . 他 不 知道 说 什么 好 . +I like red roses . 我 喜歡 紅色 的 玫瑰 . +They all envied my new car . 他们 都 羡慕 我 的 新车 . +Halley is Comet will come back in 2061 . 哈雷彗星 將 在 2061 回來 . +I did not mean to be selfish . 自私 不是 我 的 本意 . +I want to talk to him . 我 想 跟 他 說 話 . +I like tennis very much . 我 非常 喜歡 網球 . +This is a very beautiful flower . 這 是 一朵 非常 美麗 的 花 . +How much did you pay ? 您 付 了 多少 钱 ? +Why are you busy today ? 你 今天 为什么 忙 ? +That person does not want to do anything . 那人 甚麼 也 不想 做 . +Tom does not quite get it . Could you explain it to him again ? 汤姆 不 大 明白 . 你 能 再 跟 他 解释 一遍 吗 ? +This turkey tastes good . 这 只 火鸡 味道 很 好 . +No one else was hurt . 没有 别的 人 受伤 . +We went to the movies last night . 我們 昨晚 去 看 電影 了 . +What did Tom say ? 汤姆 说 了 什么 ? +I understand it more or less . 我 大概 懂 了 . +It seems that he knows everything . 他 似乎 什麼 都 知道 . +I listened , but I did not hear anything . 我 听 了 , 但 什么 也 没 听到 . +Did you buy juice ? 你 買 果汁 了 嗎 ? +Can you put some suntan lotion on my back ? 你 能 在 我 的 背上 涂 些 防晒霜 吗 ? +We are fighting against time . 我們 在 跟 時間 鬥爭 . +The price of rice has come down . 米价 下跌 了 . +Do not let anyone press this button . 別 讓 任何人 按 這個 按 鈕 . +What time is it ? 幾點 了 ? +The taller the tree , the more likely it is to be struck by lightning . 树 高 遭雷击 . +He is like his father . 他 像 他 父亲 . +My pulse is fast . 我 的 脉搏 很快 . +After supper , she cleared the table . 晚 飯 後 她 清理 了 桌子 . +I have nowhere to go now . 我 现在 无处可去 . +My house has a small yard . 我 的 房子 有 一個 小 院子 . +We are eating apples . 我們 正在 吃 蘋果 . +I must go now . 我 現在 必須 走 了 . +She made a mess of the work . 她 把 工作 弄 得 一團糟 . +I would like to have this meat dish with your best white wine . 我 想 在 吃 这 肉 喝 你 最好 的 白酒 . +Do you have any other questions ? 你 有 任何 其他 的 問題 嗎 ? +Give me a glass of water , please . 請 給 我 一杯 水 . +I do not for a moment think you are wrong . 我 从没 认为 你 错 了 . +You need to know . 你 有 必要 了解 . +Does anyone know Tom ? 有人 認識 湯姆 嗎 ? +He disregarded my advice . 他 不 顧 我 的 忠告 . +He gave her a piece of advice . 他 給 了 她 一個 忠告 . +Asia is roughly four times the size of Europe . 亚洲 的 大小 约 四倍 于 欧洲 . +This letter is wrongly addressed . 这 封信 寄错 地方 了 . +I do not eat chicken skin . 我 吃不下 鸡皮 . +I always kept my promises . 我 一直 遵守 我 的 諾言 . +We were kids then . 我们 那时 是 孩子 . +You do not need to speak so loud . 你 不必 這麼 大聲 說 話 . +Tom apologized for what he did . 湯姆 為 他 所 做 的 事 道歉 . +I will finish it by tomorrow afternoon . 明天 下午 之前 我会 把 它 完成 . +I need help . 我 需要 帮助 . +Tom did a good job predicting who would win the election . 汤姆 预测 胜选者 做得好 . +I have a frog in my throat . 我 的 喉嚨 裡有一 隻 青蛙 . +You are one of my best friends . 你 是 我 最好 的 朋友 之一 . +Demand for occupational therapy has surged in recent years . 这 几年 对 作业 疗法 的 需求 在 迅速 增长 . +The parking lot is free of charge . 停车场 是 免费 的 . +Tom told me he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Do not open this door , please . 請 不要 打開 此 門 . +We have not finished eating the watermelon yet . 我們 還 沒 吃 完 這個 西瓜 . +I want to eat pizza tonight . 我 今晚 想 吃 些 批 萨 . +When I entered the room , she was playing the piano . 当 我 进入 那个 房间 的 时候 , 她 正在 弹钢琴 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +My baby began crying , asking for milk . 我 的 宝宝 开始 哭 了 , 他 想要 吃奶 . +I do not think that he will come . 我 不 認為 他 會 來 . +Reading books is interesting . 看书 很 有意思 . +In theory , there is no difference between theory and practice . But , in practice , there is . 理论 上 说 , 理论 和 实践 没有 区别 . 但 实践 上 说 , 是 有 的 . +All things considered , I think you should go back home and take care of your parents . 全盤 考慮 後 , 我 覺得 你 應該 回家 , 照顧 你 的 父母 . +You can come with me . 你 可以 跟 我 來 . +Turn the flame down low . 把 火 轉小 一點 . +Tom , your life is in danger . 湯姆 , 你 的 生命 有 危險 . +I can not understand why Tom does not want to go with us . 我 不 理解 为什么 汤姆 不想 和 我们 一起 走 . +Tom is an electrical engineer . 湯姆 是 一個 電子 工程 師 . +I would like to see a doctor . 我 要 看病 . +My father will come home at seven . 我 爸爸 會 在 七點鐘 回家 . +This suit seems really expensive . 这 西装 好像 真的 很贵 . +I am not sick . 我 没 生病 . +That was Tom is choice . 那 是 汤姆 的 选择 . +She really wants to go . 她 特别 想去 . +I want you to meet my parents . 我 想 讓 你 見 見 我 的 父母 . +The only difference between a bad cook and a poisoner is the intent . 一個 差 勁 的 廚師 和 下毒 者 唯一 的 不同 在 於 他們 的 意圖 . +I was in school yesterday morning . 昨天上午 我 在 學校 . +Please find a solution to the problem . 请 找到 问题 的 解决 方法 . +Do people in your country eat rice ? 在 您 國家 的 人 是 吃 米 飯 的 嗎 ? +I do not like rock music . 我 不 喜欢 摇滚乐 . +My sister takes piano lessons twice a week . 我 妹妹 每周 上 两次 钢琴课 . +This is just what I wanted . 我 想要 的 就是 这个 . +I helped him yesterday . 昨天 我 帮 了 他 . +Please knock on the door . 请 敲门 . +If it rains tomorrow , I will just stay at home . 如果 明天 下雨 , 我 就 待 在家 . +Will six o 'clock suit you ? 六點鐘 你 方便 嗎 ? +I will be busy this afternoon . 我 今天下午 會 很忙 . +I have done my best . 我 已经 尽力 了 . +It is so early . 太 早 了 . +I will study English at home . 我 将 在家 学习 英语 . +Did you find the book interesting ? 你 覺得 這 本書 有趣 嗎 ? +You must make up for the loss . 您 必须 弥补 损失 . +We consider it a blessing . 我们 把 它 当作 恩惠 . +Where are your things ? 您 的 東西 在 哪裡 ? +I need a lawyer . 我 需要 一名 律師 . +I am thinking about you . 我 突然 想到 你 . +The conference ended at five . 會議 在 五點鐘 結束 . +She called me many a time . 她 叫 了 我 很 多次 . +You should not talk back to your parents like that . 你 不 應該 對 你 父母 那樣 頂 嘴 . +The library is in the center of the city . 图书馆 位于 城市 中心 . +All my friends will be there . 我 所有 的 朋友 都 会 到 那儿 . +Will you please hold this edge ? 能 不能 请 你 拿 着 这 端 ? +Tom is a good person . Tom 是 一個 好人 . +I am positive that he is wrong . 我 確定 他 是 錯 的 . +It is all you can really do . 这 是 你 所 能 做 的 一切 了 . +Edison invented many useful things . 愛迪生 發明 了 許多 有用 的 東西 . +A fire broke out at the inn where they were staying . 火警 發生 在 他們 住 的 旅館 . +We want to know the facts . 我们 想 知道 真相 . +Are you all listening to me ? 你们 在 听 我 说 吗 ? +They are all the same size . 他們 都 是 一樣 的 大小 . +Four hundred million people speak English as their first language . 四億 人 以 英語 作為 他們 的 第一 語言 . +He appears to be strong and healthy . 他 看起来 健康 强壮 . +Do you have any light beer ? 你 有 任何 淡 啤酒 嗎 ? +I have never felt better . 我 从来 没 感觉 那么 好 过 . +This is a dangerous mission . 這 是 個 危險 的 任務 . +I will eat it here . 我 會 在 這裡 把 它 吃 了 . +How many CDs do you have ? 你 有 多少 张 CD ? +Tom does not know whether Mary is happy or not . 汤姆 不 知道 玛丽 是 高兴 呢 , 还是 不 高兴 . +I was just talking about Tom . 我 仅仅 是 在 和 Tom 交谈 . +Would you lend me your bicycle ? 你 可以 借 我 你 的 腳踏車 嗎 ? +A plastic dish will melt on the stove . 塑料 盘子 在 烤箱 里 会化 的 . +Please have a seat and wait until your name is called . 请 在 被叫 到 名字 之前 坐在 椅子 上 等候 . +It was not a very interesting novel . 這 不是 一個 很 有趣 的 小 說 . +There was a big fire last night . 昨晚 發生 了 一場 很大 的 火災 . +I work long hours . 我 工作 數 小 時 . +Nothing is achieved without effort . 没有 什么 是 不劳而获 的 . +A swarm of hornets attacked the children . 一 窩 黃蜂 襲擊 了 孩子 們 . +I wish we had won the game . 要是 我們 贏 了 這場 比賽 就 好 了 . +Jesus loves you . 耶穌 愛 你 . +Hey , you ! What are you doing ? 嘿 , 你 ! 你 在 幹 什麼 ? +Rio de Janeiro is perfectly safe as long as you stay out of the dangerous areas . 如果 你 远离 危险 区域 , 里约热内卢 就是 完全 安全 的 . +I am sorry , I do not have change . 不好意思 , 我 没 零钱 . +Do not worry about it . It is not your problem . 不要 在意 , 不是 你 的 问题 . +News of the recent blast is all over the radio . 收音 機 廣播 充斥 著有 關 最近 爆炸 的 新聞 . +I do not have money now . 我 现在 没有 钱 . +That is not my line . 这 不是 我 拿手 的 . +All men are created equal . 人 人生 来 平等 . +I had intended to go there . 我 本來 打算 去 那裡 . +I had no idea Tom was not happy . 我 不 知道 汤姆 不 开心 . +We are in a hurry . 我們 很 匆忙 . +She spent a good deal of money on her vacation . 她 休假 期间 花 了 一大笔钱 . +I do not expect that they will support my view . 我 不 期望 , 他们 能够 支持 我 的 观点 . +I do not know anybody here . 我 不 認識 這裡 的 任何人 . +He has spent ten years in jail for murder . 他 因為 謀殺 案 在 牢 裡 待 了 十年 . +Where are those posters now ? 那些 海报 现在 都 到 哪里 去 了 ? +It is a secret . 它 是 個 秘密 . +You are not even paying attention . 你 根本 沒有 注意 . +Please pick up my dry cleaning . 請 取回 我 乾 洗 的 衣服 . +It is our pleasure . 这 是 我们 的 荣幸 . +I understand how to solve the problem . 我 知道 怎么 解决 这个 问题 . +You 'd better have your hair cut at once . 你 最好 立刻 剪 頭 髮 . +Are you available tonight ? 今晚 有空 嗎 ? +Please shuffle the cards carefully . 请 仔细 洗牌 . +I received a letter from her . 我 收到 了 她 的 來信 . +In a sense , she is right , too . 从 某种意义 上 来说 , 她 也 是 对 的 . +Do you want to get married first or have a child first ? 你 想 我们 先 结婚 还是 先生 孩子 ? +The policeman grabbed the robber is arm . 警察 抓著 小偷 的 胳膊 . +We plan to climb that mountain . 我們 計劃 去 爬 那 座 山 . +These three pretty girls are all nieces of mine . 这 三个 漂亮 的 女孩 都 是 我 的 侄女 . +Wash your feet . 洗 你 的 脚 . +Say it in English . 用 英语 说 . +Can you walk ? 你 能 走 嗎 ? +We have been here before . 这里 我们 以前 来 过 . +I like this color , too . 我 也 喜歡 這個 顏色 . +I do not want to talk about myself . 我 不想 談 我 自己 . +I am doing my homework . 我 正在 做 我 的 作业 . +He has recovered from his bad cold . 他 从 重感冒 中 恢复 了 过来 . +I suspect that they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +It is about time to go to school . 差不多 该 去 学校 了 . +When did you begin studying English ? 你 什么 时候 开始 学 英语 的 ? +We got there at the same time . 我們 在 同一 時間 到 了 那裡 . +He was too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +You 'd better go to bed at once . 你 最好 马上 去 睡觉 . +He earned his living as a teacher . 他 以 當 老師 為 生 . +I will never leave you . 我 永远 不会 离开 您 的 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +Do you have enough food ? 你 有 足够 的 食物 吗 ? +He is very brave . 他 很 勇敢 . +Tom knows that I do not like him . 汤姆 知道 我 不 喜欢 他 . +He was snoring loudly while he slept . 他 睡着 的 时候 , 打呼声 很 响 . +You are so beautiful ! 你 太漂亮 了 ! +I can not help admiring his talent . 我 不禁 欣賞 他 的 才華 . +He took a picture of the koala . 他 為 無 尾 熊 拍照 . +Tom is speaking French . 汤姆 在 说 法语 . +I have no idea what to wear . 我 不 知道 要 穿 什麼 . +I want to go with you . 我 想 和 你 一起 走 . +The capital of Brazil is Brasilia . 巴西 的 首都 是 巴西利亚 . +He does not altogether trust me . 他 並 不 完全 信任 我 . +That book is a new book . 那 本書 是 一本 新書 . +We had a short vacation in February . 2 月 我们 有个 短期 休假 . +I do not want to cause any more trouble . 我 不想 再 惹事 了 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +Ask her when she comes back . 等 她 回来 的 时候 问问 她 . +I am very busy these days . 我 最近 很忙 . +Would you like anything else ? 还有 什么 想要 的 吗 ? +How do you say " I love you " in French ? “ 我爱你 ” 用 法语 怎么 讲 ? +What have you done with my pen ? It was here a minute ago . 你 把 我 的 鋼筆 怎麼 了 ? 一分 鐘 前 它 還 在 這裡 . +You are very brave . 你 非常 勇敢 . +She has a bit of a bad temper . 她 脾气 有点 坏 . +You owe me an apology for that . 关于 那件事 你 欠 我 一个 道歉 . +Please wish me luck . 請祝 我 好 運 . +Yesterday I spent the whole day working . 昨天 我 一整天 都 在 工作 . +He thought that he was a genius . 他 認為 他 是 個 天才 . +According to the newspaper , there was a big fire last night . 根據 報導 , 昨晚 有 一場 很大 的 火災 . +These fireworks are spectacular ! 这些 焰火 真 壮观 ! +Why do not you grow up ? 你 为什么 长不大 呢 ? +AI stands for artificial intelligence . AI 代表 人工智能 . +I passed the city hall on my way to the station . 我 去 車站 的 路上 路 過 了 市政 廳 . +He bought her a sweater . 他 買 了 一件 毛衣 給 她 . +Would you lend me some money ? 你 可以 借 我 一些 錢 嗎 ? +Are you coming tomorrow ? 你 明天 要 來 嗎 ? +He froze with fear when he saw the snake . 他 看 見 蛇 就 嚇 得 不動 了 . +Now let is get down to work . 現在 讓 我們 開始 工作 . +See you . 再见 ! +He is always been living in Tokyo . 他 一直 住 在 東京 . +A boat suddenly appeared out of the mist . 一艘船 突然 从 雾 中 出现 . +Do you have a soup bowl ? 你 有 湯 碗 嗎 ? +I want you to go . 我 要 你 去 . +I do not know if that is what Tom wants or not . 我 不 知道 那 是不是 汤姆 想要 的 . +You can park here . 这里 可以 停车 . +He does not have any friends to play with . 他 没有 任何 朋友 玩 . +The other day I discovered a book written by my father . 前 几天 我 发现 了 一本 我 父亲 写 的 书 . +Help yourself to anything you like . 喜歡 什麼 就 隨便 吃 吧 . +I am sorry , I did not hear you . 对不起 , 我 没有 听见 你 说话 . +We saw monkeys at the zoo . 我們 在 動物 園裡 看到 了 猴子 . +I did not want to mislead anyone . 我 不想 誤導 任何人 . +He is popular with the students . 他 受到 學生 的 歡迎 . +You can not count on their help . 你 不能 指望 他们 的 帮助 . +I am lost . 我 迷失 了 . +I do not know what I should be doing right now . 我 不 知道 , 我 现在 应该 做 什么 . +There is no salt . 没有 盐 . +Because his salary is low , he can not buy that house . 因為 他 的 薪水 太 低 , 他 買 不起 那棟 房子 . +Who is the man playing the violin ? 那個 正在 拉 小提琴 的 男人 是 誰 ? +Tom could have called the police . 汤姆 本 可以 叫 警察 的 . +Will you lend me your CD player for an hour ? 你 能 借 我 你 的 CD 播放 機 一小 時 嗎 ? +Come and see me at eleven o 'clock . 十一 點 鐘 來看 我 . +I rode my bicycle to the store . 我 騎 了 我 的 自行 車 去 商店 . +Nobody understood why the elephant suddenly turned on its owner . 没有 人 明白 为什么 大象 突然 攻击 了 它 的 主人 . +They had a rest for a while . 他們 休息 了 一會兒 . +I will follow you wherever you go . 無論 你 去 哪裡 我 都 會 跟著 你 . +Are you listening to English ? 你 在 聽 英語 嗎 ? +Your book is on the desk . 你 的 書 在 書 桌上 . +There were so many things I wanted to ask Tom . 我 有 很多 事想问 汤姆 . +The x @-@ ray showed two broken fingers . X光 片 显示 两根 手指 断 了 . +I have a lot of cats . 我 有 很多 狗 . +Is there any coffee in the kitchen ? 廚房 裡 有 咖啡 嗎 ? +You will not be able to catch the train . 你 將 無法 趕 上火 車 . +She was accepted to Harvard . 她 被 哈佛 大學 錄取 了 . +He is one of my neighbors . 他 是 我 的 一個 鄰居 . +I wish you had come with us . 要是 你 和 我們 一起 來 就 好 了 . +I am feeling much better today . 我 今天 感觉 好多 了 . +This train leaves at nine o 'clock . 這 班 火車 九點鐘 發車 . +They are required to work eight hours every day . 他们 每天 必须 工作 8 小时 . +Their plan sounds interesting to me . 他们 的 计划 对 我 来说 很 有意思 . +I can not do any better . 我 做得好 到 不能 再 好 了 . +Do we have enough chairs ? 我們 的 椅子 夠 嗎 ? +He was absent from school yesterday . 他 昨天 没 来 上学 . +What is this smell ? 这 是 什么 气味 ? +I got a letter from her . 我 收到 她 的 來信 . +We are not short of oil in this country . 我们 国家 不 缺 石油 . +Publication of the article was timed to coincide with the professor is birthday . 文章 的 发表 被 预定 在 教授 生日 那天 . +He is a doctor . 他 是 医生 来 的 . +Why was not Tom arrested ? 為 甚麼 湯姆 沒 被捕 ? +Please turn off the television . 請 把 電視 關掉 . +That was the first time that I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I am sick . 我 生病 了 . +This piano has probably not been tuned for years . 这 台 琴 应该 好多年 没调 过音 了 . +I will call you every night . 我 每晚 都 給 你 打 電話 . +They are fake . 它们 是 假 的 . +We will deal with it tomorrow . 我们 明天 解决 它 . +Do you mind if I open the door ? 你 介意 我 開門 嗎 ? +I always dreamed of being a billionaire . 我 總 是 梦想 著成 為 億萬 富翁 . +They make good use of their rooms . 他們 好好 地 利用 他們 的 房間 . +You are mine . 你 是 我 的 . +I suggest that we go out on Friday . 我 建议 我们 星期五 出去玩 . +I am a bit drunk . 我 有 點 醉 了 . +The news of his death spread around . 他 去世 的 消息 傳遍 各地 . +The kettle is boiling . 茶 壺 沸 了 . +He raised his hands . 他 舉起 了 他 的 手 . +Who is the woman dressed in pink ? 那個 穿 粉 紅色 衣服 的 女人 是 誰 ? +The ship made slow progress against the strong wind . 這 艘 船 逆風而行 緩慢 前進 . +I would like to know the exact time . 我 想 知道 確切 的 時間 . +You remember it better than I do . 你 比 我 记得 好 . +The enemy launched an attack on us . 敌人 对 我们 发起 了 攻击 . +Can I borrow your pencil for a bit ? 我 能 用 一下 你 的 铅笔 吗 ? +I was able to succeed because of your advice . 我 因為 有 你 的 建 議 纔 能 成功 . +We are on strike because the company has not improved our wages . 我們 罷 工是 因為 公司 沒有 改善 我們 的 工資 . +How much does this pen cost ? 这 支 钢笔 要 多少 钱 ? +This factory manufactures CD players . 这家 工厂 生产 CD机 . +The situation is getting worse by the day . 情况 一天 比 一天 差 . +You must stop smoking . 你 必须 停止 吸烟 . +It is very simple . 这 很 简单 . +Pick up the phone . 接 一下 电话 . +I swim once a week . 我 每周 游 一次 泳 . +He was held in captivity . 他 被 囚禁 了 . +Here is how we do it . 以下 是 我们 怎么 做 的 . +We met in front of the school . 我們 在 學校 前面 見面 了 . +I found the field trip very educational . 我 發現 實地 考察 很 有 教育 意義 . +There is always something happening here . 這裡 總 有 一些 事情 在 發生 . +My uncle made a will last year . 我 叔叔 去年 立下 了 遺囑 . +Actinium was discovered by André @-@ Louis Debierne in 1899 . 锕 在 1899 年 被 他 发现 . +English is spoken by more people than any other language . 說 英語 的 人比 說 任何 其他 語言 的 人 多 . +Have you ever seen Mt . Fuji ? It is beautiful beyond description . 你 看 過 富士山 嗎 ? 它 美 得 無法 形容 . +Islam first reached China about the middle of the 7th century . 伊斯 蘭教 大約 在 七 世纪 中 傳到 中國 . +You are an optimist . 你 是 个 乐观主义 者 . +Your memory is good . 你 的 記憶力 很 好 . +The cancer has spread to her stomach . 癌細胞 已經 擴散 到 她 的 胃 . +I was feeling blue all day . 我 一整天 都 觉得 很 消沉 . +She is not yet heard the news . 她 还 没 听到 这个 消息 . +He tried to sleep on the floor . 他 試著 在 地板 上 睡覺 . +I despise you . 我 鄙视 你 . +Tom is a grumpy old man . 汤姆 是 个 脾气 暴躁 的 老人 . +I know that she has been busy . 我 知道 她 一直 很忙 . +He is a bit energetic . 他 有点 活泼 . +Do we know you ? 我们 认识 你么 ? +I will drive you home . 我 開車 送 你 回家 . +You are stepping into dangerous territory . 你 進入 了 危險 區 . +I took an art class last year . 我 去年 上 了 一堂 藝術 課 . +The Mona Lisa has an enigmatic smile . 蒙娜丽莎 有着 神秘 的 微笑 . +Tom was hiding under the table . Tom 躲 在 桌子 底下 . +Hurry up . 趕快 ! +Kyoto is famous for its old temples . 京都 以 古廟 有名 . +This airplane is capable of carrying 40 passengers at a time . 这 架飞机 一次 可以 携带 40 名 乘客 . +The negotiation is off . 谈判 中止 了 . +I think it will not rain tomorrow . 我 認為 明天 不 會 下雨 . +He reads a good deal . 他 读 很多 书 . +Tom does not drive as carefully as I do . 汤姆 不 像 我 这样 开车 小心 . +Is it poisonous ? 它 有毒 嗎 ? +Can you drive a car ? 您 会 开车 吗 ? +My hobby is collecting old bottles . 我 的 嗜好 是 收集 舊 瓶子 . +We postponed our departure because of the storm . 我們 因為 風暴 推遲 了 起程 . +Were your mother and father home ? 你 父母 親 在家 嗎 ? +Please come in . 請 進來 . +We like you . 我们 喜欢 你们 . +My sister usually walks to school . 我 妹妹 通常 走路 去 學校 . +Does this book belong to you ? 這 是 你 的 書 嗎 ? +I am not a university student , but I am brighter than them . 我 不是 一個 大學 生 , 但 我 比 他們 更 聰明 . +God knows we did everything we could . 上帝 知道 我们 做 了 我们 所能 做 的 事 . +It is almost three o 'clock . 將近 三點 了 . +The thief got in without being noticed . 小偷 在 沒有 被 發現 的 情況 下 進去 了 . +The Rhine flows between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +We gave him up for dead . 我們 為 死者 放棄 了 他 . +What is the problem with your computer ? 你 的 电脑 有 什么 问题 ? +I will be leaving for Australia next month . 我 下個月 將 去 澳洲 . +They granted his request . 他們 批准 了 他 的 請求 . +This is the most massive structure I have ever seen . 这 是 我 所 见 过 的 最 大型 的 构造 了 . +Tom does not have the time . 汤姆 没有 时间 . +Tom never turned up again . 湯姆 沒有 再 出現 . +I do not want to drink anything . 我 什么 都 不想 喝 . +Do you not understand basic logic ? 你 不 懂 基本 逻辑 吗 ? +I study Chinese every day . 我 每天 讀 中文 . +Do not throw rocks into the river . 不要 往 河裡 扔 石頭 . +Is Tom home ? 汤姆 在 家里 吗 ? +I am really sorry about what happened last night . 我 对 昨天晚上 发生 的 事情 感到 非常 的 抱歉 . +He set a precedent . 他 開 了 先河 . +Most boys like computer games . 大多数 男生 喜欢 电脑游戏 . +Germany adopted a social security system in the 1880 is . 德国 在 1880 年代 采取 了 一种 社会保障 制度 . +I can eat anything but onions . 除了 洋葱 我 什么 都 可以 吃 . +Tom is coughing again . 汤姆 又 在 咳嗽 了 . +Do you still buy lottery tickets ? 你 還 買 彩票 嗎 ? +You are a friend of Tom is , are not you ? 你 是 湯姆 的 一個 朋友 , 不是 嗎 ? +We are going to paint the wall . 我们 准备 刷墙 . +Never say never . 永远 不要 说 永远 . +He often goes with her to watch movies . 他 常 和 她 一起 去 看 电影 . +You can do it , can not you ? 你 可以 做到 , 不是 嗎 ? +There are some boys under the tree . 樹下 有 一些 男孩 . +Tom is not smiling . 汤姆 没在 笑 . +He should have the right to decide for himself . 他 应该 有 权利 去 自己 做 决定 . +I lost my umbrella . 我 丢 了 我 的 伞 . +I see a woman wearing black . 我 看见 一个 穿 黑衣服 的 女人 . +I have nothing better to do . 我 没有 其他 更好 的 事情 去 做 . +Do as I say . 按 我 說 的 做 . +I used to eat like a pig . 我 曾经 像 猪 一样 吃 . +We suggest raising the fees . 我們 建議 提高 收費 . +Are you studying English ? 你 在 研讀 英語 嗎 ? +Lift your right arm . 舉起 你 的 右臂 . +I have no objection to your plan . 我 不 反 對 你 的 計劃 . +How far away is your school ? 你 的 学校 有 多 远 ? +I had no idea it would put you to so much trouble . 我 一点 都 不 知道 这 会 给 你 带来 那么 多 问题 . +I will be back at ten . 我 十点 回来 . +You can buy it for a thousand yen or so . 你 能 以 大约 1000 日元 买下 它 . +Do we have enough food ? 我们 有 足够 的 食物 吗 ? +It says in the Bible , " Man shall not live on bread alone . " 圣经 里 有 一句 话 , 叫做 “ 人 不能 只 靠 面包 生活 ” . +You are not invited . 你 没 受到 邀请 . +Do not beat around the bush . 不要 拐彎抹角 . +I went to the park last Sunday . 上個 星期天 我 去 了 公園 . +This system has obvious defects . 這個 系統 有些 明顯 的 缺陷 . +One of the children left the door open . 其中 一個 孩子 讓 門 開著 . +Tom took the clock apart . 汤姆 把 钟 拆开 了 . +She liked him right off . 她 立刻 喜歡 上 他 了 . +I can not believe you love me . 我 不能 相信 你 愛 我 . +Did your uncle let you drive his car ? 你 叔叔 让 你 开 他 的 车 了 吗 ? +Jupiter is the largest planet in the Solar System . 木星 是 太陽系 中 最大 的 行星 . +Not every child likes apples . 不是 每 一个 孩子 喜欢 吃 苹果 . +I would like to go to London . 我 想要 去 伦敦 . +We are having fun . 我们 在 高兴 地玩 . +Einstein loved playing the violin . 愛 因斯 坦 喜歡 拉 小提琴 . +Our baby cannot talk yet . 我家 宝宝 还 不会 说话 . +Read as much as possible . 盡 可能 地 多 閱讀 書籍 . +Let is play baseball ! 我們 去 打 棒球 吧 . +How far away is the airport ? 到 机场 有 多 远 ? +The pirates boarded the ship . 海盜 們 上 了 船 . +If we were supposed to talk more than listen , we would have been given two mouths and one ear . 如果 我們 應 該少 聽 多 說 話 , 那麼 我們 應該 得到 兩個 嘴巴 一 隻 耳朵 才 是 . +If he had taken his doctor is advice , he might still be alive . 如果 他 听 了 他 医生 的 建议 , 他 可能 还 活着 . +I do not have any experience . 我 什么 经验 都 没有 . +I like dogs , but my sister likes cats . 我 喜歡 狗 , 但 我 姊 喜歡 貓 . +It can not be true . 那 不 可能 是 真的 . +When did you learn to swim ? 你 什么 时候 学会 游泳 的 ? +He seems to be ill . 他 好像 病 了 . +We have to look into the disappearance of the doctor . 我们 必须 调查 医生 的 失踪案 . +I can read Spanish easily . 我 能 很 輕 鬆 地 讀 西班牙文 . +Tom remained standing as the others sat down . 别人 都 坐下 了 , 汤姆 还 站 着 . +He is the man you met the other day . 他 是 前 几天 和 你 见过面 的 那个 人 . +I would like to go to the mall . 我 想 去 商场 . +I am reading . 我 在 读书 . +I took it for granted that he would pass the exam . 我 理所当然 地 觉得 , 他 会 通过 考试 . +I do not think I will ever meet him . 我 不 認為 我 會 再 跟 他 見 面 . +You do not have to help me . 你 不用 帮 我 . +The space race was an exciting time in history . 太空 跑步 是 历史 上 激动人心 的 时刻 . +Few people think so . 很少 人 这么 认为 . +I can not look at this painting without thinking of my mom . 我 無法 看著 這 幅畫 而 不 想起 我 母親 . +Why do you think I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +He got accustomed to the new way of living . 他 适应 了 新 的 生活 方式 . +I agree with you on this issue . 我 同意 你 對 這 問題 的 看法 . +My boss made me work overtime . 我 的 老 闆 要 我 加班 . +What do you think of it ? 你 認為 如何 ? +It is freezing . 天氣 好 冷 . +Tom sat at his desk , pretending to study . 湯姆 坐在 桌前 , 装作 在 學習 . +She gave birth to a baby boy . 她 生下 了 一個 男 嬰 . +It may be that he likes his job . 他 可能 喜欢 他 的 工作 . +Tom has not talked to Mary in years . 汤姆 多年 没有 和玛丽 说话 了 . +I do not like early morning meetings . 我 不 喜歡 在 清晨 開 的 會議 . +My house is old and ugly . 我 的 房子 又 舊 又 難 看 . +Do you believe in fairies ? 你 相信 神話傳說 嗎 ? +I would like to send this package to Japan . 我 想 把 這個 包裹 寄 到 日本 . +Are you mad ? 您 生气 了 吗 ? +Can you help me ? 您 能 帮 我 吗 ? +I feel comfortable in his company . 我 在 他 的 公司 裡 覺得 很 舒服 . +I want that bag . 我 想要 那個 袋子 . +Tom does not know how to have fun . 汤姆 不 知道 怎样 玩 得 开心 . +Would you carry my luggage upstairs ? 你 可以 把 我 的 行李 拿到 樓上 嗎 ? +You gave me only fifty cents . 你 只 給 了 我 五十 美分 . +Do you think Tom will let us do that ? 你 認為 湯姆會 讓 我們 做 嗎 ? +That is an imitation . 那 是 一個 仿造品 . +Do you deliver on Sundays ? 你们 周日 送货 吗 ? +I can not work for this company anymore . 我 没法 再 在 这家 公司 里面 工作 了 . +I just had dinner with some of Tom is friends . 我 刚 跟 汤姆 的 一些 朋友 吃 了 晚饭 . +Could you show me that necktie ? 你 能 給 我 看看 這條 領帶 嗎 ? +You have many books . 你 有 许多 书 . +Will you please turn down the radio ? 請 你 把 收音 機關 小聲 一點 好 嗎 ? +He is my youngest brother . 他 是 我 最 年轻 的 兄弟 . +I hope that you are very well . 我 希望 你 很 健康 . +It is food . 它 是 食物 . +I am not the boss . 我 不是 老 闆 . +I worked a lot this week . 我 这周 干 了 很多 活 . +Tom blew out all the candles on the cake . 汤姆 吹灭 了 蛋糕 上 的 所有 蜡烛 . +They will not pass ! 他們 不 會 通過 的 ! +The dictionary comes in two volumes . 那 本词典 分为 两卷 . +One good friend is better than ten relatives . 一个 好友 胜过 十个 亲戚 . +This matter is very urgent . 這件 事 非常 緊急 . +Are those new shoes ? 那 是 新 买 的 鞋子 吗 ? +I am not particularly thirsty right now . 我 现在 不 特别 渴 . +He showed interest in the plan . 他 對 這個 計劃 表示 了 興趣 . +It is bad manners to point at people . 用 手指 点 别人 不 礼貌 . +You 'd better not go today . 你 今天 最好 不要 去 . +Tom and Mary own a small organic farm . 汤姆 和玛丽 拥有 一个 小型 的 有机 农场 . +My phone was out of order . 我 的 電話 壞 了 . +I did not pass . 我 没 通过 . +Several dozen young people participated in the demonstration . 几十个 年轻人 参加 了 示威游行 . +I cannot afford to buy a car . 我 買 不 起 一輛 車 . +He runs in the park every day . 他 每天 都 在 公园 中 跑步 . +The baby fell asleep in the cradle . 宝宝 在 摇篮 里 入睡 了 . +I would like to retract my previous statement . 我 想 撤回 我 之前 的 陈述 . +I do not feel much like talking . 我 不太想 說 話 . +Tom wrote postcards to us . Tom 寫 明信片 給 我們 . +When would you like to see him ? 你 想要 什麼 時候 見 他 ? +I do not remember where I bought it . 我 记不起来 我 在 哪里 买 的 了 . +He flatly refused to let me in . 他 斷然 地 拒絕 讓 我 進去 . +Tom helped me fix my watch . 汤姆 帮 我 修好 了 我 的 手表 . +He is very smart , and he is handsome too . 他 很 聪明 , 而且 他 很 帅 . +I am on the roof now . 我 现在 在 屋顶 上 . +Graham Greene is my favorite author . 格雷厄姆 格林 是 我 最 喜歡 的 作家 . +I found it best to say nothing about the matter . 我 觉得 什么 都 不 说 是 最好 的 . +He swam until he could swim no more . 他 游到 不能 游 为止 . +He must love you . 他 一定 很 愛 你 . +Clean the room . 打掃 房間 . +She wrote 5 novels in 5 years . 她 在 5 年 里 写 了 5 本 小说 . +Mary asked her son to behave himself . 瑪麗 要求 她 的 兒子 守 規矩 . +I went there yesterday . 我 昨天 去 那儿 了 . +I have to get my computer repaired . 我 必須 把 我 的 電腦 拿去 給 人家 修理 . +Tom does not like this color . 汤姆 不 喜欢 这种 颜色 . +I do not want either of them . 它们 中 没有 我 要 的 . +I have just finished eating . 我 刚刚 吃 完 . +My uncle made me serve as interpreter . 我 舅舅 讓 我 擔任 翻譯 . +I did not go to school last month . 我 上 個 月 沒上 學 . +Open fire ! 开火 ! +The roof was damaged by the storm . 屋頂 被 暴風雨 損壞 了 . +A foreign language can not be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +Do not move , or I will shoot you . 別動 , 不然 我 就 開 槍 射 你 . +You should take up golf . 你 应该 开始 从事 高尔夫 . +You owe me money . 你 欠 我 钱 . +I know New York like the back of my hand . 我 对 纽约 了如指掌 . +This is a miracle . 这 是 一个 奇迹 . +You should keep your promise . 你 應該 信守 諾 言 . +What is Tom doing ? 汤姆 在 做 什么 ? +Kill them . 殺 了 他們 +The company invested a lot of money in this project . 該 公司 在 這個 企劃 中 投入 了 很多 錢 . +The medicine worked marvels . 这 药 创造 了 奇迹 . +April showers bring May flowers . 四月 春雨 , 五月花 . +I am always here . 我 一直 在 這裡 . +She had her handbag stolen . 她 的 手提包 被 偷 了 . +She gave me a shy smile . 她 給 了 我 一個 靦腆 的 笑容 . +I advertised my car for sale . 我 登廣 告賣 我 的 車 . +There is a big supermarket in my neighborhood . 在 我 的 邻近 区域 有 一个 大 超市 . +He is a good person . 他 是 个 好人 . +Refugees poured in from all over the country . 难民 从 整个 国家 涌来 . +What do you think about this plan ? 你 覺得 這個 計劃 怎麼樣 ? +How much is the rent per month ? 一個 月 的 租金 多少 ? +I will not talk to him anymore . 我 不 會 再 跟 他 說話 了 . +No comment . 无可奉告 . +Did you bring an umbrella with you ? 你 有 帶 雨 傘 嗎 ? +Thousands of candles illuminated the church during the ceremony . 数以千计 的 蜡烛 点亮 了 仪式 中 的 教堂 . +I will have to think about it . 我 将 考虑 考虑 . +Tom still drinks , but not as much as he used to . 汤姆 还是 喝 , 但 不 像 以前 那么 多 了 . +Tom can swim almost as fast as I can . 汤姆 几乎 能 游 得 跟 我 一样 快 . +Yes , it is such a nice evening . 是 的 , 今天 晚上 很 愉快 . +The doctor told her that she should take a rest . 医生 告诉 她 要 静养 . +Do you know how to ride a horse ? 你 会 骑马 吗 ? +My job is to wash dishes . 我 的 工作 是 洗盤子 . +In the summer I wear short @-@ sleeved shirts . 夏天 我 穿 短袖 衬衫 . +Tom did not have any family . 过去 汤姆 没有 家 . +I 'd wear a helmet . 我 要 戴 頭盔 . +Tom speaks French fluently . 湯姆 的 法語 說 的 很 流暢 . +I am interested in English . 我 对 英语 感兴趣 . +It is just what I expected . 它 正是 我 所 期待 的 . +I went on reading . 我 继续 阅读 . +I played tennis after school . 放学 后 我 打 了 网球 . +You are barking up the wrong tree . 你 白費力 氣 了 . +She is Tom is sister . 她 是 Tom 的 姐妹 . +Tom is a good golfer . 汤姆 是 个 不错 的 高尔夫球 手 . +Mary is the prettiest girl in her class . 玛丽 是 班 里面 长 得 最 漂亮 的 女孩 . +Things are totally different now . 現在 全都 不 一樣 了 . +All good things must come to an end . 天下 无不 散 之 筵席 . +I think I have found something of yours . 我 認為 我 找到 一些 你 的 東西 了 . +I am going to the store now . 我 現在 要 去 這家 商店 . +We watched a baseball game on television . 我們 看 了 電視 上 的 棒球 比賽 . +This is the only camera I have got . 這 是 我 唯一 的 相機 . +She assigned the work to him . 她 把 這個 工作 派 給 他 做 . +I will finish it as quickly as I can . 我会 尽快 完成 的 . +Tom looked around , but saw no one . Tom 看 了 看 周圍 , 但 沒 看到 任何人 . +I felt lonely . 我 觉得 很 孤独 . +The large crowd roared in approval as Mark Knopfler played the first few bars of " Money for Nothing " . 就 像 马克 · 诺弗勒 早期 演唱 的 歌曲 《 金钱 无用 》 一样 , 绝大多数 的 人 依然 高呼 赞成 “ 金钱 无用论 ” . +I told Tom that I thought his house needed to be painted . 我 告诉 汤姆 我 认为 他 的 房子 要 刷漆 . +He is very handsome . 他 很 英俊 . +I do not have a lot of work , but it is enough to keep me in the office this week . 其实 我 工作 并不多 , 但 足以 让 我 这周 在 办公室 里 忙 着 了 . +I am not finding anything . 我 甚麼 也 沒 找到 . +Please turn off the light . 請 關燈 . +I can not imagine life without you . 我 無法 想像 沒有 你 的 生活 . +Are you carrying a lot of money ? 你 身上 有 很多 钱 吗 ? +Do not play baseball here . 不要 在 這裡 打 棒球 . +Pay the cashier on the way out . 在 出口 處 的 收银台 付款 . +The poor man has no relatives . 窮 人 無 親戚 . +Your question has no answer . 你 的 问题 没有 答案 . +You were at my wedding . 你 出席 了 我 的 婚礼 . +Playing cards is very interesting . 打牌 很 有意思 . +I expect that he will help us . 我 期望 他 會 幫助 我們 . +Tom started the engine . 湯姆 發動 了 引擎 . +That hat cost around fifty dollars . 那 頂 帽子 花費 了 大約 五十 美元 . +They came all the way from Brazil . 他们 从 巴西 远道而来 . +Tom is studying to become a marine biologist . 汤姆 正在 学习 以 成为 海洋 生物学家 . +We must reduce energy demand . 我们 必须 降低 能源需求 . +Thank you for your translation . 謝謝 你 的 翻譯 . +Which one do you think is correct ? 你 認為 哪 一個 是 正確 的 ? +It happened at a quarter past eleven . 它 發生 在 十一 點 一刻 . +Tom was completely exhausted . 湯姆 完全 筋疲力盡 了 . +There are a lot of people in the park . 公园 里 有 很多 人 . +There is narrow road to the village . 到 村 莊 有 條 窄路 . +The teacher pointed her finger at me and asked me to come with her . 教师 用 手指 指着 我 , 要 我 跟 她 走 . +I finished the work in less than an hour . 我 用 不到 一 小时 就 完成 了 这个 工作 . +The only thing I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +I will take you for a swim . 我 會 帶 你 去 游泳 . +I met Mary yesterday . 昨天 我 遇見 了 瑪麗 . +Come with me now . 现在 就 跟我来 . +Let is not fool ourselves . 我们 别自 骗自 了 . +His office is on the eighth floor . 他 的 辦 公室 在 八樓 . +We are against working on Sundays . 我们 反对 星期日 工作 . +Even if I knew the answer , I would not tell you . 即使 我 知道 答案 , 我 也 不会 告诉 你 . +It is very important to get enough rest . 充足 的 休息 十分 重要 . +I have wine . 我 有 酒 . +What are you laughing at ? 你 笑 什么 呢 ? +It is close to eleven . It is about time we went to bed . 快 11 点 了 . 我们 该 上床睡觉 了 . +Tom was crying . 汤姆 当时 在 哭 . +Tom needed treatment . 汤姆 需要 接受 治疗 . +Tom was fired in October . 湯姆 在 十月 被 解雇 了 . +Who were you speaking with ? 你 和 谁 说话 呢 ? +I could not have done it without you . Thank you . 没有 你 我 无法 做到 , 谢谢 . +This dictionary is not the most recent version . 這 本 字典 不是 最新版 的 . +Where is your dog ? 你 的 狗 在 哪儿 ? +The dress that Mary is wearing looks expensive . 玛丽 穿 的 衣服 看起来 价格不菲 . +He glanced at his watch . 他 看 了 一眼 他 的 表 . +Where am I ? 這 是 什麼 地方 ? +That is the point . 这 正是 问题 的 关键 . +Well done ! 做得好 ! +That is very rare . 那 太 稀少 了 . +They got thoroughly wet in the rain . 他們 在 雨 中 被 淋得 全身 都 濕 了 . +Her hair is streaked with gray . 她 的 頭 髮 中 夾 有 白 髮 . +We took turns driving the car . 我們 輪流 開車 . +Do you have school on Saturdays ? 你 星期六 要 上 學 嗎 ? +My parents live in the country . 我 父母 住 在 鄉下 . +He jumped onto the table . 他 跳 上 了 桌子 . +If it is fine tomorrow , we will go on a picnic . 如果 明天 天气 好 , 我们 就 去 野餐 . +Tom is a Vietnam veteran . 汤姆 是 一个 越军 退役军人 . +Come inside . 进来 . +There is something I have to say . 有些 事 我 必須 說 . +Tom is indispensable . 汤姆 是 必不可少 的 . +We receive many telephone calls from abroad . 我們 接到 許多 來 自 國外 的 電話 . +I will swim . 我 要 游泳 . +She looks unhappy . 她 看 起來 不快 樂 . +He is sure to succeed . 他 一定 会 成功 . +She is good at handling children . 她 對 孩子 很 有 一套 . +What do you think about it ? 关于 那个 你 有 什么 看法 ? +She gave birth to twin girls . 她 生 了 雙 胞胎 女兒 . +I would like to purchase some boots . 我 想 买 些 靴子 . +" When will you come back ? " " It all depends on the weather . " “ 你 什么 时候 回来 ? ” “ 这 都 要 看 天气 . ” +I have been in prison . 我 進過 監獄 . +He went to London , where he stayed for a week . 他 去 了 伦敦 , 并 在 那儿 待 了 一周 . +She was busy doing her homework . 她 忙 著 做 她 的 功課 . +I am the tallest one in the class . 我 在 班里 是 最高 的 . +Another Scotch and water , please . 麻煩 再來 一杯 威士忌 和 加水 . +I prefer to travel by air . 我 寧願 搭 飛機 旅行 . +He seldom , if ever , goes to church . 他 很少 , 如果 有 的 話 , 去 教堂 . +I have already done my homework . 我 已經 做 了 我 的 家庭 作業 . +The boys kept quiet . 男孩子 們 保持 安靜 . +Stop reading . 别 再 念 了 . +You need to shed some pounds . 你 需要 甩掉 几磅 . +He walks his dog every morning . 他 每天 早晨 溜 狗 . +I am a student , but he is not . 我 是 個 學生 , 但 他 不是 . +Have you turned in your report ? 你 交報 告 了 嗎 ? +Have not I met you before ? 我 以前 沒見 過 你 嗎 ? +Why did you cry so much ? 你 為 甚麼 哭 得 這麼 厲害 ? +We made pancakes for breakfast . 我们 早餐 做 了 煎饼 . +The weather was not only cold , it was also damp . 天气 又 冷 又 湿 . +I think Tom probably likes you a lot . 我 認為 湯姆 可能 很 喜歡 你 . +You will soon get accustomed to this cold weather . 你 很快 就 會 習慣 這種 冷天 氣 . +There is still no end in sight . 還是 看 不見盡頭 . +We need to find Tom as quickly as we can . 我們 要 盡快 找到 湯姆 . +Thank you for your cooperation . 謝謝 您 的 合作 . +She believes whatever he says . 她 相信 他 說 的 任何 事 . +His mother was a school teacher . 他 的 母親 是 一名 學校 老師 . +What time is it in Boston now ? 波士顿 现在 几点 ? +Not being tall is not a disadvantage . 长 不 高 不是 坏事 . +Are you certain this is what you want ? 你 确定 这 就是 你 想要 的 吗 ? +What will you have for lunch today ? 你 今天 午餐 吃 什么 ? +He is not a hero . 他 不是 英雄 . +This is difficult . 这 很 难 . +An unforgettable event occurred . 一场 令人难忘 的 事件 发生 了 . +Our fridge is broken . 我們 的 冰箱 壞 了 . +You 'd better hurry . 你 最好 快点 . +I am incredibly tired . 我 累死 了 . +They left . 他们 离开 了 . +I am not busy now . 我 現在 不忙 . +I still do not understand what is happening . 我 還 是 不 明白 出 了 什麼 事 . +Would you like to drink anything ? 你 想 喝 點 什麼 嗎 ? +This book is easy enough for them to read . 这 本书 他们 读 起来 够 简单 了 . +Make sure you get plenty of rest . 你 務 必要 好好 地 休息 . +We immediately became friends . 我們 馬 上 成為 了 朋友 . +Tom heard Mary is voice . 汤姆 听见 了 玛丽 的 声音 . +Yesterday was my seventeenth birthday . 昨天 是 我 17 岁 生日 . +Let them decide . 讓 他們 決定 . +The two of us do not belong here . 我们 俩 不 属于 这儿 . +He decided to become a pilot . 他 決定 成為 一名 飛行員 . +I continued singing . 我 繼續 唱歌 . +He felt in his pocket for his wallet . 他 在 口袋 里 摸 着 找 他 的 钱包 . +I do not think he is sincere . 我 不 觉得 他 很 诚实 . +Everybody has weaknesses . 谁 都 有 弱点 . +My grandfather lived a long life . 我 的 祖父 很 長 壽 . +He applied for the scholarship . 他 申請 了 獎學金 . +Thanks for your advice . 谢谢 你 的 建议 . +He is used to traveling . 他 習慣 了 旅行 . +I love my life . 我 爱 我 的 生活 . +" How old are you ? " " Sixteen years old " . 「 你 幾歲 ? 」 「 我 十六 歲 . 」 +He could not come because of his serious illness . 他 因為 生 重病 不能 來 . +I have always been proud of you . 我 一直 为 您 骄傲 . +I will call you as soon as I can . 我会 尽快 给 你 打电话 的 . +Do you have a gift shop here ? 你們 這裡 有 禮品 店 嗎 ? +She looks as if she were drunk . 她 看 起來 好像 喝醉 了 . +No student went to the party . 没有 学生 去 参加 派对 . +Mary did not recognize her ex @-@ husband . 玛丽 没有 认出 她 的 前夫 . +He married a stewardess . 他 娶 了 一位 空姐 . +My father is busy . 我 爸爸 很忙 . +Do not look down on others . 不要 看不起 別人 . +Of course ! 當然 ! +I filled up the vase with water . 我 倒水 進去 花瓶 裡 . +Let is get to work on that problem . 我们 研究 这个 问题 吧 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Should not Tom be doing this , too ? Tom 也 需要 做 这件 事 吗 ? +That company is managed by a foreigner . 這家 公司 由 一個 外國人 經營 . +I was a student at that time . 我 当时 是 学生 . +Do you think Tom is already retired ? 你 認為 湯姆 退休 了 嗎 ? +Tom came to Boston three years ago . 汤姆 三年 前去 了 波士顿 . +After several delays , the plane finally left . 經過 數次 延遲 之 後 , 飛機 終 於 離開 了 . +What are you doing there ? 你 在 那里 做 什么 呢 ? +The bus stopped suddenly in the middle of the street . 公車 突然 在 路 中央 停下 來 . +I prefer working to doing nothing . 我 寧願 工作 也 不 願 閒著 . +She has to look after her mother . 她 必須 照顧 她 的 母親 . +Are you brushing your teeth properly ? 你 正確 地 刷牙 嗎 ? +I did not like beer at that time . 那 时候 我 不 喜欢 啤酒 . +I am going to lose . 我 要 输 了 . +I bet ten dollars on that horse . 我 在 那 匹 馬 下 十美元 的 賭注 . +I am a good guy . 我 是 一个 好人 . +The river is water level has risen . 河 的 水位 上升 了 . +My father gave me a game . 我 爸爸 给 我 了 游戏 . +Her mother made her a new dress . 她 的 媽媽 給 她 做 一件 新 衣服 . +What did you do with your shoes ? 你 把 你 的 鞋 怎么 了 ? +" He would like to have a coffee after work . " " I would too . " " 他 想 在 下班 後 喝杯 咖啡 . " " 我 也 想 . " +I should not have told you anything . 我 本 不该 告诉您 什么 的 . +We require your help . 我們 需要 你 的 幫助 . +How long has it been since you saw your girlfriend ? 你 跟 你 的 女朋友 见面 以来 有 多久 了 ? +I am sure you will be back before long . 我 确定 你 不久 就 回来 . +You reap what you sow . 种瓜得瓜 , 种豆得豆 . +They ruined my life . 他们 毁 了 我 的 生活 . +Tom can swim as fast as you . 湯姆 游泳 可以 游得 跟 你 一樣 快 . +I know what to say . 我 知道 要说 什么 . +He cannot swim . 他 不 會 游泳 . +I am glad to hear that . 我 很 高興 聽到 這個 消息 . +There is no knowing what he will do next . 没有 人 知道 他 接下来 会 干什么 . +This medicine will make you feel better . 这 药会 让 你 好受 点 . +A fire broke out after the earthquake . 地震 之 後 發生 了 火災 . +I caught him stealing the money . 我 抓到 他 偷 錢 . +I heard her singing in her room . 我 聽到 她 在 她 的 房間 裡 唱歌 . +I am behind him . 我 在 他 後 面 . +Mary is a very pretty girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +It was a great shock to me . 這 對 我 是 很大 的 震撼 . +You have beautiful eyes . 你 的 眼睛 真 漂亮 . +I am going to call you tomorrow . 明天 我 給 你 打 電話 . +It is exactly what I wanted . 我 想要 的 就是 这个 . +Someone has taken my shoes by mistake . 有人 拿错 了 我 的 鞋 . +The experiment confirmed his theory . 实验 证明 了 他 的 理论 . +The offer is too good to be turned down . 此 提議 好 得 令人 難以 拒絕 . +This is just a hypothesis . 这 只是 个 假设 . +Where is my newspaper ? 我 的 报纸 在 哪里 ? +The bill amounted to 100 dollars . 帐单 金额 高达 100 美元 . +Tom may be able to come tomorrow . 汤姆 可能 能 在 明天 来 . +Please turn off the TV . 请 关闭 电视机 . +They were going to lose . 他們 要 輸 了 . +Who is the girl in a yellow raincoat ? 穿 黃色 雨衣 的 女孩 是 誰 ? +She took the entrance exam yesterday . 她 昨天 參加 了 入學 考試 . +Wash your hands before meals . 饭前 要 洗手 . +Did you vote yet ? 您 已經 投 了 票 了 嗎 ? +The game will probably be called off . 這場 比賽 將 可能 被 取消 . +You have made the very same mistake again . 你 又 犯 了 相同 的 錯誤 . +Someone is knocking at the door . 有人 在 敲門 . +I went to the hospital yesterday . 我 昨天 去 了 醫院 . +This radio is no bigger than a matchbox . 这 收音机 不 比 火柴盒 大 . +Is that a coyote ? 那 是 丛林 狼 吗 ? +I am looking for my pen . 我 在 找 我 的 鋼筆 . +Why should I hire Tom ? 为什么 我 要 雇佣 Tom ? +He has not been to France . 他 从没 去过 法国 . +What sound does a giraffe make ? 长颈鹿 是 怎么 叫 的 ? +Tom has been quite cooperative . 汤姆 很 合作 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +This house belongs to my uncle . 這棟 房子 屬 於 我 的 叔叔 . +She still has not heard this news . 她 还 没 听到 这个 消息 . +Talking in the library is not allowed . 不准 在 圖書館 裡 談話 . +I feel like my head is going to explode . 我 感 覚 我 的 頭 要 炸 了 . +He was hit by a car and died instantly . 他 被 車 撞 了 之 後 便 過世 了 . +You are the one with all the money . 你 是 有 所有 錢 的 人 . +There is a television in this room . 这个 房间 里 有个 电视机 . +There was a cold wind blowing from the north . 有 一阵 从 北边 吹来 的 冷风 . +For what purpose ? 為了 什麼 目的 ? +Tom hurt himself . 湯姆 弄 傷 了 自己 . +Does Tom have to be there ? 湯姆 必須 在 那裡 嗎 ? +Who discovered radium ? 誰 發現 了 鐳 ? +I am tired of watching television . 我 厌倦 了 看电视 . +Give me your telephone number . 给 我 你 的 电话号码 . +Did you notice Tom is hair ? 你 注意 到 湯姆 的 頭 髪 了 嗎 ? +If we do not hurry , we will be late . 再 不 快点 就 迟到 了 噢 . +Stay out of my business . 别管 我 的 事 . +He was laughed at by his friends . 他 被 他 的 朋友 們 取笑 了 . +I like spring the best of the seasons . 春天 是 我 最 喜歡 的 季節 . +The bell rang . 铃响 了 . +He did not come to the last meeting . 他 最 後 一場 會議 沒來 . +I can not drink milk . 我 不能 喝牛奶 . +I wake up at eight . 我 八點 起床 . +How are you going to get home ? 你 打算 怎麼 回家 ? +I always study hard . 我 總 是 用功 讀書 . +I have a bicycle . 我 有 一輛 自行 車 . +Tom demanded an explanation . 汤姆 要求 有人 解释 . +I have lost my umbrella somewhere in the park . I have to buy one . 我 的 雨傘 遺失 在 公園 裡 某個 地方 . 我 必須 再 買 一把 . +There are no clouds in the sky . 天上 没有 云 . +My first day in the university was rather boring . 我 大学 里 的 第一天 相当 没意思 . +She did not have much money . 她 沒有 很多 錢 . +I play the guitar after school . 我 放學 後 彈 吉他 . +The sky is clear . 天空 很 晴朗 . +What did you name your son ? 你 给 你 儿子 起 什么 名字 ? +She rides a motorcycle well . 她 骑 摩托车 的 技术 不错 ! +She came to Japan for the purpose of studying Japanese . 她 為了 學習 日文 來到 日本 . +That incident made him famous . 這 起 事件 使 他 一舉 成名 . +Anybody can make a mistake . 谁 都 会 犯错 . +" Where have you been ? " " I have been to the station to see a friend off . " “ 你 去 哪儿 了 ? ” “ 我 去 了 火车站 送 我 的 一个 朋友 . ” +I remember the way you used to dance . 我 记得 你 以前 跳舞 的 方式 . +An eight @-@ year @-@ old car is almost worthless . 一輛 車齡 八年 的 車子 幾乎 是 毫無價值 的 . +She made room for an old lady . 她 讓 出 個 空間 給 一位 老太太 . +Tom probably does not know how to do that as well as Mary does . 湯姆 可能 不 知道 如何 做 得 像 瑪麗 做 得 一样 好 . +Do you like to eat fruit ? 你 喜歡 吃水果 嗎 ? +This car sells well . 这辆 车 卖 得 好 . +How long is the Rainbow Bridge ? 彩虹 橋 有 多 長 ? +I will never forget your kindness . 我 永遠 不 會 忘記 你 的 好意 . +The telephone was invented by Bell . 电话 是 由 贝尔 发明 的 . +Tom did not want Mary to know he did not know how to do that . 汤姆 不想 玛丽 知道 他 不 知道 怎么 做 . +How can I reach you ? 我 怎樣 才能 連絡 到 你 ? +Mom is preparing a meal in the kitchen . 媽媽 正在 廚房 裡 做 飯 . +Sometimes I have to read boring novels . 有时候 , 我 不得不 读 一些 无聊 的 小说 . +I could not answer all of the questions . 我 不能 回答 所有 的 問題 . +Tom thinks I am missing this great opportunity . 汤姆 认为 我 失去 了 这 绝佳 机会 . +I am grateful to you for your kindness . 谢谢您 的 好意 . +I have not eaten anything since yesterday . 我 從 昨天 起 沒有 吃 任何 東西 . +I have to explain this to Tom . 我 必須 向 Tom 解釋 這個 . +I forgot to bring my I.D. card . 我 忘 了 帶 我 的 身份 證 . +Do you commute to school by bus ? 你 搭 公車 上下 學 嗎 ? +She gave me a strange look . 她 奇怪 地 看 了 我 一眼 . +She continued with the work . 她 继续 工作 . +She cannot be over thirty . 她 不 可能 超过 30 岁 了 . +Tom shut his eyes . 汤姆 闭上 了 眼睛 . +May I leave now ? 我 现在 能 走 了 吗 ? +Please leave right away . 請 馬 上 離開 . +The cat arched its back and stretched itself . 猫 弓起 背 , 伸 了 个 懒腰 . +I am not busy . 我 没 在 忙 . +I got my hair cut . 我 把 我 的 頭 髮 剪 了 . +Goodbye ! 再见 ! +I have a dim memory of my grandmother . 我 对 祖母 的 记忆 很 模糊 . +Weather permitting , I will start tomorrow . 天气 允许 , 我 明天 就 开始 . +I knocked on the door , but nobody answered . 我 敲门 , 但是 没有 人 回应 . +Who is your favorite actor ? 你 最 喜歡 的 演員 是 誰 ? +Look behind you . 瞧 你身 後 . +I did not play tennis yesterday . 我 昨天 沒有 打 網球 . +Tom and Mary ended 30 years of marriage . 汤姆 和玛丽 结束 了 三十年 的 婚姻 . +I did not know what to do . 我 不 知道 該 怎麼 辦 . +These flowers are beautiful , are not they ? 這些 花 很美 , 不是 嗎 ? +The accident happened on Sunday at about 3 : 00 . 此 事故 发生 在 周日 3 点 左右 . +The bus stop is near our school . 巴士站 離 我們 的 學校 近 . +We should work faster . 我們 的 工作 應該 要 加快 . +One of the girls was left behind . 這些 女孩 當中 其中 一個 被 留下 來 了 . +None of this is your money . 這些 都 不是 你 的 錢 . +They are both artists . 他们 都 是 艺术家 . +I love music . 我 爱 音乐 . +She made a series of medical discoveries . 她 提出 了 一連 串 的 醫學 發現 . +It is rude to make fun of your boss in public . 在 公開場 合開 你老 闆 的 玩笑 是 無 禮 的 . +That tree is on Tom is property . 那 樹 是 湯姆 的 財 産 . +What does this stand for ? 这 是 什么 意思 ? +Now , what do you want to see ? 現在 , 你 想 看 甚麼 ? +Spanish is her native language . 西班牙语 是 她 的 母语 . +Get down ! 趴下 ! +I look forward to it . 我 很 期待 哦 . +I have never been to my uncle is house . 我 没 去过 我 叔叔 的 房子 . +Tom is going out this afternoon with Mary . 今天下午 汤姆 和玛丽 会 一起 出去 . +The United States is abundant in natural resources . 美国 的 自然资源 很 丰富 . +If it is at all possible , I 'd like you to take part in the next meeting . 如果 可能 的 話 , 我 希望 你 參加 下 一次 的 會議 . +Tom always makes me laugh . 湯姆總 是 讓 我 笑 . +Tom is used to getting up early . 汤姆 习惯 早起 . +It is a new book . 那 本書 是 一本 新書 . +She picked flowers in the garden . 她 在 花園 裡 摘花 . +I asked her to wait a minute . 我 让 她 等 了 一分钟 . +Which fruit do you like the best ? 你 最 喜爱 的 水果 是 什么 ? +Try it again . 再 試 一次 . +We were born to die . 我们 是 为了 死亡 而 诞生 的 . +She does not have any friends . 她 一个 朋友 都 没有 . +I have never seen a live whale . 我 從來 沒有 見 過 一條 活生生 的 鯨魚 . +I had a wonderful time . 我 玩 得 很 愉快 . +A rolling stone gathers no moss . 滚石 不生 苔 . +Do you want to hear it ? 您 想 听 它 吗 ? +He advised her to stop drinking . 他 建議 她 戒酒 . +I wrote down his phone number . 我 寫 下 他 的 電話 號 碼 了 . +Do not step on the broken glass . 不要 踩 在 碎玻璃 上 . +Do not forget us . 别忘了 我们 . +The bodyguard was wearing an earpiece . 保镖 戴 着 耳机 . +How do we find it ? 我们 怎样才能 找到 它 ? +Is anything bothering you ? 有 什么 事 让 你 烦心 吗 ? +I enjoyed talking with him at the party . 聚会 上 我 和 他 谈 得 很 愉快 . +This does not concern you . 跟 你 没 半 毛钱 关系 . +He does speak well . 他 真的 說 得 很 好 . +She was very embarrassed when her child behaved badly in public . 當 她 的 孩子 在 公共 場合行 為 表現 不好 的 時候 , 她 覺 得 很 尷尬 . +No one man could do it . 沒有 一個 人 能 做到 這 一點 . +How about eating out this evening for a change ? 你 说 今晚 改变 一下 , 去 外面 吃晚饭 怎么样 ? +He has long hair . 他 有 長 頭 髮 . +I will go to America tomorrow . 我 明天 會去 美國 . +I can not say . 我 不能 说 . +There are many fish in this lake . 這個 湖裡 有 很多 魚 . +I want to keep my car there . 我 想 把 我 的 車 停放 在 那裡 . +I have not done that since high school . 高中毕业 之后 我 就 没 那样 做 过 了 . +I 'd really like to go to Boston with you . 我 不想 跟 你 去 波士 頓 . +Could you please speak a little bit more slowly ? 能否 請 你 說 慢 一點 ? +There is one apple on the desk . 书桌上 有 一个 苹果 . +We sat talking about the remote past . 我们 坐 着 谈 很久以前 的 事 . +The situation is improving , so cheer up ! 情況 正在 改善 , 所以 振作起 來 ! +I ache all over . 我 全身 酸痛 . +All you have to do is to wait . 所有 您 要 做 的 , 就是 等待 . +Both of Tom is parents passed away when he was quite young . 汤姆 很小 的 时候 父母 就 都 去世 了 . +My underpants are wet . 我 的 內褲 是 濕 的 . +What steps should we take ? 我们 应该 走出 什么样 的 步伐 . +Any comments are welcome . 欢迎 作 任何 评论 . +You are an idiot . 你个 呆瓜 ! +I plan to go to France next year . 我 想 明年 去 法国 . +Can I open the window ? 可以 开窗 吗 ? +In those days , a cup of coffee cost 200 yen . 那 时候 一杯 咖啡 要 200 日元 . +I made his son a new suit . 我 給 他 的 兒子 做 了 一套 新西 裝 . +To my surprise , the door was unlocked . 令 我 驚訝 的 是 , 門 沒 上鎖 . +Tom burned the letter . 汤姆 烧掉 了信 . +You should not go alone . 你 不 應 該 一個 人 去 . +We have decided to remain silent . 我們 決定 要 保持沉默 . +She is busy now and can not speak to you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Give me a dozen oranges . 給 我 一打 橘子 . +He is lazy . 他 很 懒 . +She aspired to become an actress . 她 立志 成為 一名 演員 . +My brother became an engineer . 我 哥哥 成 了 一名 工程 師 . +I will be here for a while . 我 在 这 待 一会 . +Allow me to introduce myself . 請 允許 我 自我 介紹 一下 . +It is rude to stare at someone . 盯著 別人 看 是 不 禮貌 的 . +OK . I agree . 好 . 我 同意 . +She refused to accept the money . 她 拒絕 接受 這筆 錢 . +Wo not you have some tea with me ? 你 不 和 我 一起 喝 点 茶 吗 ? +He was late for the 7 : 30 bus . 他 错过 了 7 点 30 分 的 车 . +I have just come back from school . 我 刚 从 学校 回来 . +I am folding my dress . 我 在 叠 我 的 连衣裙 . +This is just wrong . 這 就是 錯 的 . +Do you wish to complain ? 你 想 抱怨 嗎 ? +I thanked Mary for her help . 我 对 玛丽 的 帮助 表示 了 感谢 . +Eating too much is bad for your health . 吃 得 太 多 对 健康 不好 . +He came to my office yesterday . 他 昨天 來 我 的 辦 公室 . +I do not feel like eating out this evening . 今晚 我 没 心情 出去 吃饭 . +I suggest you turn around and go back home . 我 建議 你 轉身 回家 . +What are you doing ? 搞 什么 啊 ? +Your dress is very nice . 你 的 穿著 非常 好 . +These toys are suitable for girls . 這些 玩具 適合 女生 . +I am pretty tall . 我 相当 高 . +My underwear is dirty . 我 的 內 衣 髒 了 +I am sure you will love what we have on the menu tonight . 我 肯定 你 会 喜欢 我们 今晚 的 菜肴 . +Sometimes you get lucky . 你 有 時候 真 走 運 . +The children have not studied division yet . 孩子 們 還 沒上 過 除法 . +Who picked you for this mission ? 谁 选 你 来 做 这个 任务 ? +Go home quickly . 赶快 回家 . +I will leave when she comes back . 當 她 回來 的 時 後 , 我 就 離開 . +Tom swims very fast . 湯姆 游泳 游得 非常 快 . +I am glad that I was able to help . 能够 出 一份 力 太好了 . +I have a cough and a little fever . 我 咳嗽 , 还 有点 发烧 . +The result confirmed my hypothesis . 这 一 结果 证实 了 我 的 猜想 . +Tom is almost six feet tall . 湯姆 差不多 有六 呎 高 . +My sister got married in her teens . 我 妹妹 在 她 十幾歲 時 就 結婚 . +Tom asked for Mary is permission to leave early . 汤姆 请 玛丽 允许 他 早 走 . +Hot and humid weather makes us lazy . 炎熱 潮濕 的 天氣 使 我們 變得 懶散 . +I studied in the morning during the summer vacation . 我 在 暑假 里 早晨 学习 . +I can not take the place of her as an English teacher . 我 无法 取代 她 做 英语老师 . +Tom should have been ready . 汤姆 本该 已经 准备 好 了 . +I have a stupid question . 我 有 一个 挺蠢 的 问题 . +I am a stranger here myself . I am afraid I can not help you . 我 對 這裡 不熟 . 恐怕 我 不能 幫 你 . +Tom can keep a secret . 汤姆 会 保密 . +I wanted to surprise her . 我 想 給 她 一個 驚喜 . +The world is beautiful . 世界 真 美好 . +Knowledge is power . 知识 就是 力量 . +They did not like you . 他们 不 喜欢 你 . +Tom does not care about money . 汤姆 不 关心 钱 . +Would you mind shutting the door ? 請 你 把 門關 上 好 嗎 ? +I am so proud of my boys . 我 為 我 的 孩子 們 感到 很 驕傲 . +He kept his promise . 他 信守 了 他 的 承诺 . +Is it necessary for me to explain the reason to him ? 我 有 必要 向 他 解释 原因 吗 ? +You idiot ! 蠢货 ! +The box is almost empty . 盒子 几乎 是 空 的 . +Why are you so good at cooking ? 为什么 你 做饭 那么 拿手 呢 ? +How much was your new computer ? 这 台 电脑 你 用 多少 钱 买 的 ? +He calls her up every night . 他 每天晚上 打 電話 給 她 . +I am glad to see you back . 很 高兴 再 见到 您 . +Tom has not complained yet . 湯姆 還 沒有 抱怨 . +Let me try . 让 我 试试 . +I was so cold . 我 很 冷 . +It is an endangered species . 这 是 一个 濒临灭绝 的 物种 . +I 'd like a glass of water , please . 請 給 我 一杯 水 . +Is there anything you can do ? 有 什么 事 是 你 能 做 的 吗 ? +Where is the bathroom ? 洗手 間 在 哪裡 ? +I am just looking , thank you . 我 只是 看看 , 謝謝 你 . +Last night there was a full moon . 昨晚 是 满月 . +It was the only way to go . 那 是 唯一 的 出路 . +Where does your uncle live ? 你 叔叔 住 在 什麼 地方 ? +We are badly in need of food . 我们 非常 需要 食物 . +We make milk into cheese and butter . 我們 把 牛奶 製 成 乳酪 和 奶油 . +She remained single all her life . 她 终生 未婚 . +She shut herself up in her room . 她 把 自己 关 在 房里 . +This company is listed on the Paris stock exchange . 这家 公司 在 巴黎 证券 交易所 上市 了 . +He asked me whether I was busy . 他 问 我 是否 很 忙 ? +Take a deep breath , please . 請 深呼吸 . +She made the same mistake again . 她 又 犯 了 同樣 的 錯 誤 了 . +You need to get ready . 你 需要 做好 准备 . +Let is rest here . 在 这里 稍微 休息 一下 吧 . +Could you please repeat it once again ? 請 您 再 說 一遍 好 嗎 ? +You do not have to talk so loud . 你 不必 這麼 大聲 說 話 . +Have you ever tried scuba diving ? 你 曾 試 過 用水 肺潛水 嗎 ? +I made a few modifications . 我 做 了 点 改动 . +Perhaps I will be able to help you . 我 可能 能 幫 你 . +It is impossible to do the sights of Tokyo in a day or two . 一两天 是 没 办法 逛 完 东京 的 . +I 'd be happy to help you . 我 愿意 帮 你 . +I am glad to see you back . 很 高兴 再 见到 你 . +The acid ate into the metal . 酸性 腐蚀 了 金属 . +How come Mary is going on a picnic with him ? 为什么 玛丽和 他 去 野餐 ? +He is used to speaking in public . 他 習慣 在 公眾場 合 說 話 . +Tell her that I am watching the news . 跟 她 說 我 正在 看 新聞 . +I always kept my promises . 我 一直 信守 我 的 諾言 . +We had a heavy rain yesterday . 昨天 下 大雨 . +Did you borrow it ? 你 借 它 了 吗 ? +Do you plan to eat all of that yourself ? 你 打算 自己 一 人 把 它 全部 吃 了 吗 ? +She looked after the children . 她 照顧 孩子 . +I wonder where Tom is planning to go to college . 我 想 知道 汤姆 计划 去 哪里 上 大学 . +Is there any salt left ? 还有 多余 的 盐 吗 ? +Please wait a moment . 请稍等 一会 . +Please drive the car more slowly . 請 開車 開慢 一點 . +I am learning English . 我 學 英文 . +Would you mind saying that once more ? 你 可以 再 說 一次 嗎 ? +She can swim further than I can . 她 能 遊 得 比 我 遠 . +I was quite satisfied . 我 真是 满意 . +Be respectful to your superiors , if you have any . 如果 你 有 上司 的话 , 学会 尊敬 他 ( 她 ) . +He would not look at my proposal . 他 對 我 的 提議 不屑 一顧 . +I lent him a CD . 我 借给 他 一盘 CD . +Tom speaks French a little . 汤姆 会 说 一点 法语 . +Tom left his umbrella on the bus . 汤姆 把 他 的 雨伞 忘在 了 公交车 上 . +We had a lecture on environmental pollution . 我们 有 一节 关于 环境污染 的 讲座 . +He drinks too much beer . 他 喝 太 多 啤酒 . +We should abolish the death penalty . 我们 应该 废除 死刑 . +He went away without saying a word . 他 沒 說 一句 話 就 離開 了 . +I want to cry . 我 想 哭 . +Take me home . 带 我 回家 . +Give me a ring tomorrow . 明天 打电话 给 我 . +The king crushed his enemies . 國王 摧毀 了 他 的 敵人 . +Are you studying ? 您 学习 吗 ? +The drug problem is international . 毒品 是 国际性 的 问题 . +Boston is a great place to raise kids . 波士 頓是 養 小孩 的 好 地方 . +He told me that I looked pale and asked me what the matter was . 他 跟 我 说 我 很 苍白 , 并 问 我 怎么 了 . +I have things to take care of . 我 有些 事 . +Tom changed clothes . 湯姆 換 了 衣服 . +We managed to get some foreign stamps . 我們 設法 得到 一些 外國 的 郵票 . +He is afraid to fly in an airplane . 他 怕 坐飞机 . +I wanted to smack you . 我 想 过 扇 你 一巴掌 . +My sister is playing with a doll . 我 妹妹 正在 玩 洋娃娃 . +Not even one taxi stopped . 甚至 沒有 一輛 計程 車 停下 來 . +You look stupid . 你 看上去 很傻 . +My sister is twenty @-@ one years old and a college student . 我 妹妹 21 岁 , 是 个 大学生 . +I buy tapes . 我 買 磁帶 . +I can not play tennis that well . 我 不 那麼 會 打 網球 . +He could not wait to try out his new surfboard . 他 迫不及待 地想 试一下 他 的 新 冲浪板 . +The talks will last three days . 这场 谈话 将要 持续 三天 . +He is a student at Harvard . 他 是 一個 哈佛 的 學生 . +She left for London yesterday . 她 昨天 離開 去 倫敦 . +You may sit wherever you like . 你 喜欢 坐 哪儿 就 坐 哪儿 . +They all searched for the lost child . 他們 都 在 尋找 這個 走失 的 孩子 . +The mountain has a beautiful shape . 這 座 山 有 一個 美麗 的 外形 . +Please give me a glass of water . 請 給 我 一杯 水 . +English is an international language . 英語 是 國際 語言 . +I can not believe that you love me . 我 不能 相信 你 愛 我 . +It is difficult for me to answer the question . 这个 问题 对 我 来讲 很 难 回答 . +Everyone loves that place . 每 一個 人 都 喜歡 那個 地方 . +I can hear you . 我 听 得到 . +These products are of the same quality . 这些 产品质量 同等 . +My dog follows me wherever I go . 無論 我 去 哪裡 , 我 的 狗 都 跟著 我 . +It will soon be three o 'clock . 很快 就要 三點鐘 了 . +It is not polite to stare at people . 盯著 人 看 是 不 禮貌 的 . +Tom was dressed like a pirate . Tom 穿 得 像 个 海盗 . +He often goes abroad on business . 他 經常 出國 洽商 . +It is clear that you are wrong . 很 明顯 地 你 錯 了 . +Your second button is coming off . 你 的 第二 顆鈕 扣快 掉 了 . +The end does not always justify the means . 為了 正當 目的 並非 總是 可以 不擇 手段 . +I am hers and she is mine . 我 是 她 的 , 而 她 是 我 的 . +I ran as fast as possible . 我 跑 得 尽可能 快 . +I hear that she is a famous actress . 我 聽 說 她 是 個 有名 的 演員 . +Marriage is the main cause of divorce . 婚姻 是 造成 離婚 的 主因 . +Say no to drugs . 對 毒品 說不 . +Speak clearly and make yourself heard . 講 清楚 並 大聲 地 讓 別人 聽到 你 說 話 . +Why can not he play tennis today ? 為 什麼 他 今天 不能 打 網球 呢 ? +He is a dentist by profession . 他 是 一位 专职 牙医 . +Waiter , I would like to order . 服务生 , 我 要 点菜 . +He agrees with my opinion . 他 同意 我 的 意見 . +It is possible that Tom lied to you . 汤姆 有 可能 对 你 撒谎 了 . +Shut all the doors and windows . 關閉 所有 的 門 和 窗戶 . +Were you right ? 你 是 对 的 吗 ? +This place has a mysterious atmosphere . 这个 地方 有 一种 神秘 的 气氛 . +I do not have a desk in my bedroom . 我 的 臥室 裡 沒有 桌子 . +Cats do not eat bananas . 猫 不吃 香蕉 . +He was very good at playing tennis . 他 网球 打 得 很 好 . +It is just what I wanted . 我 想要 的 就是 这个 . +Do it now . 現在 就 做 . +I do not sleep in a bed . 我 不 在 床上 睡觉 . +I can hardly walk . 我 幾乎 不能 走路 . +Why did you come here so early ? 你 為 什麼 這麼 早來 這裡 ? +She caught colds often . 她 常常 感冒 . +Dad is in an impatient mood today . 爸爸 今天 很 不耐烦 . +It is unlikely that he did anything wrong . 他 看來 沒有 做錯 甚麼 . +I like to eat meat . 我 喜歡 吃 肉 . +He should have been more careful . 他 本 應 該 更 小心 的 . +It is not as easy to do that as people think . 这 并 不 像 一般 人 觉得 的 那么 容易 . +She came home very late . 她 很 晚 回家 . +Do you think we will have good weather ? 你 认为 我们 会 遇到 好 天气 吗 ? +I won the lottery . 我 中奖 了 . +Do not write in red ink . 別 用 紅 墨水 寫 . +Are you mad at Tom ? 你 在 生 汤姆 的 气 吗 ? +You underestimate your charisma . 你 低估 了 你 的 魅力 . +I miss you . 我 想念 你 . +He is a teacher . 他 是 老师 . +I am glad I was able to help . 能够 出 一份 力 太好了 . +That will not change anything . 這樣 做 的 話 什麼 都 不 會 改變 的 . +I am taller than you . 我 比 你 高 . +Many students like to study in the morning . 许多 学生 喜欢 在 早上 学习 . +I have quit drinking beer . 我 已經 不 喝啤酒 了 . +Where is Tom ? 汤姆 在 哪儿 ? +Tom put his money in the safe . 汤姆 把 他 的 钱 放在 保险柜 里 . +I finally found a job . 我 終于 找到 工作 了 . +I live near here . 我 住 在 這 附近 . +The rain is beating against the windows . 雨点 打着 窗户 . +I felt quite relieved after I had said all I wanted to say . 说 了 所有 我 要说 的话 后 , 我 感觉 很 轻松 . +Could you put my name on the waiting list ? 你 能 把 我 的 名字 加 到 等候 批准 的 申请人 名单 上 吗 ? +Tom climbed down from the tree . 汤姆 从 树上 爬 了 下来 . +I study English and Japanese . 我 学习 英语 和 日语 . +He was listening to music . 他 正在 聽 音樂 . +Tom and Mary could not help me do that . 湯姆 和 瑪麗 不能 幫 我 去 做 . +She kept him waiting half an hour . 她 讓 他 等 了 半 小 時 . +He may have left for Kyoto . 他 可能 已經 離開 京都 了 . +We have four French classes a week . 我們 一週 有 四堂 法語 課 . +The medicine did not do me any good . 這 藥 對 我 沒有 任何 好 處 . +It may snow in the afternoon . 下午 可能 會 下雪 . +Her socks are gray . 她 的 襪子 是 灰色 的 . +He came in person . 他 亲自 来 了 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +She is a glamorous girl . 她 是 个 迷人 的 女孩子 . +I remember my mother teaching me the alphabet . 我 记得 我 母亲 教 我 认字 . +His speech captured our attention . 他 的 演講 吸引 了 我們 的 注意 . +She is qualified as a nurse . 她 是 个 合格 的 护士 . +I am sure we will find a solution . 我 确信 我们 会 找到 解决办法 的 . +Turn left at the first light . 在 第一 個 紅 綠燈 左 轉 . +The bike parked over there is my brother is . 那邊 停著 的 那輛 自行 車 是 我 哥哥 的 . +He acts quickly . 他 行动 迅速 . +I miss my children . 我 想念 我 的 孩子 . +I 'd like three pounds of chicken . 我 要 三磅 的 雞肉 . +Did you understand what he said ? 你 听懂 他 说 的 了 吗 ? +Tom smiled . 汤姆 笑 了 . +I prefer hardwood floors to carpet . 我 喜歡 硬 木地板 勝 過 地毯 . +Bring me the magazines . 把 那 本 雜 誌 拿 來 給 我 . +I am willing to help him . 我 願意 幫 湯姆 . +The man behind them is playing the piano . 在 他們 身 後 的 男人 正在 彈 鋼琴 . +He does not understand me . 他 不 理解 我 . +This is the last time I will ask you to do anything for me . 这 是 我 最后 一次 让 你 为 我 做点事 了 . +I have been going out with her for months . 我 和 她 交往 幾個 月 了 . +The trees are green . 树 是 绿 的 . +I have no more time to talk with you . 我 没 时间 再 跟 你 说话 了 . +The man is loading the moving truck on his own . 這個 男人 獨自 把 東西 搬上 搬家 卡車 上 . +Why do you need it ? 你 為 什麼 需要 它 ? +What is your favorite drink ? 你 最 喜欢 的 饮料 是 什么 ? +He will be back by five o 'clock . 他 五點 左右 會 回來 . +He may be on the next train . 他 可能 在 下 一班 火車 上 . +I deleted my Facebook account . 我 刪 除了 我 的 Facebook 帳號 . +He catches colds very easily . 他 很 容易 感冒 . +Queen Elizabeth I passed away in 1603 . 女王 伊麗莎 白 一世 於 1603 年 去世 . +Turn around . 转过 来 . +Are you going to be in Boston this weekend ? 你 這 週末 在 波士 頓過 嗎 ? +She happened to know his address . 她 恰巧 知道 他 的 地址 . +It is high time you were in bed . 你 早该 睡 了 . +Look at me when I talk to you ! 我 跟 你 说话 的 时候 看着 我 ! +I am all ears . 我 洗耳 恭 聽 . +He is giving his whole attention to that . 他 全神贯注 . +I grew up in a poor family . 我 出身 贫寒 . +Where are you now ? 你 现在 在 哪里 呢 ? +Have you finished doing your homework yet ? 你 做 完 回家 作業 了 嗎 ? +I should put on more clothes . 我 应该 多 穿 点 衣服 了 . +Nothing is really guaranteed . 沒有 甚麼 是 真正 有 保證 的 . +I sure hope this is a dream . 我 当然 希望 这 是 一个 梦 . +Please pass me the butter . 请 把 黄油 递给 我 . +Tom told Mary that she should quit pretending to be intoxicated . 汤姆 告诉 玛丽 她 应该 停止 假装 醉酒 . +It is really cheap . 它 真的 很 便宜 . +Smoking is prohibited . 禁止 吸烟 . +Is it cheaper to call after 9 : 00 ? 九點 以 後 打 電話 比較 便宜 嗎 ? +What you said about Tom is not true . 你 说 的 关于 汤姆 的话 不是 真的 . +Do not look a gift horse in the mouth . 不要 對 人家 送 的 禮物 挑 三 揀 四 , 嫌東 嫌西 的 . +My father lives in the country . 我 父親 住 在 鄉下 . +This is mine . 这 是 我 的 . +Every door in the house is locked . 這 房子 裡 的 每 一扇 門 都 被 鎖上 了 . +I do not have a car . 我 沒有 汽車 . +I do not know where my crutches are . Have you seen them ? 我 不 知道 把 拐杖 放 哪 去 了 , 你 有 看到 嗎 ? +It seems that I have lost my keys . 我 好像 丢 了 我 的 钥匙 . +I am going to the bank . 我 要 去 银行 了 . +I do not sleep well . 我 睡 不好 . +Did you get my letter ? 你 收到 了 我 发 的 邮件 了 吗 ? +I do not know what this symbol stands for . 我 不 知道 這個 符號 代表 什麼 意思 . +She wears a lot of makeup . 她 化 着 浓妆 . +He would often come to see us when I was a child . 當 我 還 是 個 孩子 時 , 他 經常 來 看望 我們 . +I wish you had been there . 但 願 你 去過 那裡 . +Tom said he 'd wait . 湯姆 說 他 會 等 . +We ate breakfast at seven . 我们 7 点 吃 了 早饭 . +I usually stay indoors on Sunday . 星期天 我 通常 待 在家 裡 . +Does it sound like I am in love ? 聽 起來 像是 我 戀愛 了 嗎 ? +Seen from the moon , the earth looks like a ball . 从 月球 上看 的话 , 地球 看起来 像 个 皮球 . +Tom went swimming in the river , but when he got out , his clothes had been stolen . 汤姆 去 河里 游泳 , 但当 他 出来 时 , 他 的 衣服 被 偷 了 . +I like traveling . 我 喜歡 旅行 . +I do not expect anything from you . 我 不 指望 从 你 身上 得到 什么 . +Please excuse me for being rude . 請 原諒 我 的 魯莽 . +Could you bring my breakfast to room 305 ? 你 可以 把 我 的 早餐 送到 305 房间 吗 ? +She asked us several questions . 她 问 了 我们 好几个 问题 . +Do you want something to eat ? 您 想 吃 点 什么 吗 ? +Words express thoughts . 語詞 表達 思想 . +I once wanted to be an astrophysicist . 我 曾經 想 過 當個 太空 物理 學家 . +He has dozens of books about Japan . 他 有 幾 十本 關於 日本 的 書 . +There was a lot of snow last winter . 去年 冬天 下 了 好多 雪 . +I think that Tom has a crush on Mary . 我 觉得 汤姆 爱 上 玛丽 了 . +Beauty is in the eye of the beholder . 美 驻留 在 看 的 那个 人 的 眼里 . +Your friendship means a lot to me . 你 的 友誼 對 我 來說 意義 重大 . +I will not do it again . 下次 我 不 做 了 . +He hit his head against a rock . 他 的 頭 撞 到 了 一塊 岩石 . +We do not have too much time . 我们 没有 太 多 时间 . +There is only one book on the desk . 桌子 上 只有 一 本书 . +I am reading a book about animals . 我 正在 讀 一本 關於 動物 的 書 . +This store is currently selling vegetables . 这家 店 在 卖 蔬菜 . +Tom drank my apple juice . Tom 喝 我 的 蘋 果汁 . +You are such an idiot . 你 真是 個 傻瓜 ! +She is busy now and can not talk with you . 她 现在 忙 , 不能 跟 你 说话 . +I tried to hit Tom , but he ducked . 我 要 去 打 汤姆 , 但是 他 避开 了 . +He seems not to be aware of the conflict between my father and me . 他 似乎 不 知道 我 父亲 和 我 之间 的 纠葛 . +I thought Tom would enjoy the party . 我 以为 汤姆 会 喜欢 这个 聚会 . +I would like to join your group . 我 想 加入 你们 的 团 对 . +Tom went out for a walk with his dog . 湯姆 帶 他 的 狗 出去 走 . +I do not think any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +They made us work all day long . 他們 讓 我們 工作 了 一整天 . +I want some fresh eggs . 我 想要 一些 新鲜 的 鸡蛋 . +What movies are playing this week ? 这周 放 什么 电影 ? +I am going to school . 我 去 学校 了 . +I am waiting for the store to open . 我 正 等著 這家 店 開門 . +Please accept my sincere apologies . 請 接受 我 誠摯 的 歉意 . +His advice did not help at all . 他 的 建议 完全 没用 . +The soldier groaned with pain . 這 名 士兵 痛苦 地 呻吟 . +Teachers also make mistakes . 老师 也 会 犯错 . +Tom says they need more time . 汤姆 说 他们 需要 更 多 时间 . +He wears Chinese @-@ style clothes . 他 穿 中式 服裝 . +I can not think of any other way of getting him to accept our proposal . 我 看不出 有 其他 方法 能 让 他 接受 我们 的 提议 . +I talked with Tom . 我 和 汤姆 说 了 话 . +I dreamt about you . 我 梦 到 你 了 . +Do you want to speak to Tom ? 你 想 跟 汤姆 说话 吗 ? +I am out of time . 我 没 时间 了 . +If Tom is really alive , where is he ? 如果 汤姆 真的 活着 , 他 在 哪里 ? +I will leave this work to you . 我 會 把 這個 工作 留給 你 . +How can Tom not understand that ? 湯姆 怎麼 能 不 懂 ? +The police held him in custody . 警方 拘留 了 他 . +They gave in to my opinion . 他們 屈服 於 我 的 看法 了 . +She taught me how to swim . 她 教我如何 游泳 . +How are you ? 你們 好 嗎 ? +Tom thanked me for the gift . 湯姆 為 這個 禮物 感謝 我 . +I am not feeling well . 我 感觉 不 舒服 . +We do not speak French . 我們 不 講 法語 . +The living room adjoins the dining room . 客廳 緊 鄰著 餐廳 . +I bought a good camera . 我 買 了 一台 不錯 的 照相 機 . +She has a daughter who is a pianist . 她 有 一个 钢琴家 女儿 . +I decided not to study French . 我 決定 不學法 語 . +Can I see the menu , please ? 麻煩 給 我 菜 單 . +Turn left at the next corner . 下 一个 街角 左转 . +She laid the work on him . 她 派 他 去 工作 了 . +He thought of a good solution . 他 想到 了 一個 解決 的 好 辦法 . +To put it briefly , I do not agree . 简而言之 , 我 不 同意 . +They called him a coward . 他們 稱 他 膽 小鬼 . +I wonder what the weather will be like tomorrow . 不 知道 明天 天气 会 怎么样 呢 ? +I had no trouble finding his office . 我 毫不 费劲 就 找到 他 的 公司 . +I will see you later . 等 會 兒 見 . +Do not bother calling security . 别 麻烦 保安 了 . +We must execute his orders . 我们 必须 执行 他 的 命令 . +He gave her a piece of paper . 他 給 了 她 一張 紙 . +I do not want to buy a newspaper today . 我 今天 不想 买 报纸 . +I am not sure , but I think I know where to go . 我 不 确定 , 但 我 认为 我 知道 要 去 哪里 . +Do not be terrified . 別 被 嚇壞 了 . +She ought to have arrived by now . 她 現在 應該 已經 到 了 . +He spared no pains to help me . 他 不 遺餘力 幫助 我 . +I am looking over his report . 我 在 阅读 他 的 报告 . +We have only one chance . 我们 只有 一次 机会 . +I am never coming back here again . 我 不会 再 回来 了 . +Sit tight . 耐心 等 着 . +Red is out of fashion . 红色 不 流行 了 . +They laughed at my idea . 他們 嘲笑 我 的 想法 . +We were very sorry we could not help them . 我們 很 遺憾 無法 幫助 他們 . +This is the house where I used to live when I was young . 这 是 我 年轻 时候 住 的 房子 . +I have a dictionary . 我 有個 字典 . +People used to laugh at us . 人们 以前 笑话 我们 . +If a sick person folds one thousand paper cranes , her wish will come true . 如果 一個 病人 折 一千 隻 紙 鶴 , 她 的 願望 就 會 成 真 . +Anything you say can be used against you in court . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +My sister can play the piano better than I can . 我 妹妹 鋼琴 可以 彈 得 比 我 好 . +I thought we were going to do this together . 我 認為 我們 要 一起 做 . +He asked me if I liked mathematics . 他 問 我 喜 不 喜歡 數學 . +This is going to be a great trip . 這 會 是 個 絕好 的 旅行 . +How many prefectures are there in Japan ? 日本 有 多少 個 縣 ? +Tom wanted to go to Australia . 汤姆 想 去 澳大利亚 . +I am sure of his success . 我 肯定 他 会 成功 的 . +I like each of them . 我 喜欢 他们 每 一个 . +This is Mary is dog . 這 是 瑪麗 的 狗 . +She showed the visitor her baby . 她 给 客人 看 了 她 的 宝宝 . +This might not be a genuine diamond . 這 可能 不是 真的 鑽石 . +She is now staying at her uncle is house . 她 现在 正待 在 她 叔叔 家 . +I wish I knew where he was ! 但 願 我 知道 他 在 哪裡 . +Rather than cutting down on cigarettes , why do not you just give them up ? 比起 少 抽 菸 , 你 何不 直接 把 菸 戒 了 ? +It is none of your concern . 这 不关 你 的 事 . +No students were absent . 沒有 學生 缺席 . +Stop putting off finding a job . 不要 拖延 去 找 工作 的 事 . +Is that black bag yours ? 那個 黑色 提包 是 你 的 嗎 ? +He is busy with his homework now . 他 現在 正忙 著做 他 的 家庭 作業 . +There are not many books on these shelves . 这些 书架上 没有 很多 书 . +He is going to run for mayor . 他 將 競選 市長 . +How is everyone ? 大家 好 嗎 ? +Let is assume that will happen . 讓 我們 假定 那 會 發生 . +Tom seems to be completely lost . 湯姆 看來 完全 輸 了 . +An electric current can generate magnetism . 電流 可以 產生 磁性 . +That is Mary is husband . 那 是 玛丽 的 丈夫 . +Let is ask if it is true . 让 我们 来 问问 这 是不是 真的 . +He got wet from the waist to the knees . 他 從 腰部 到 膝 蓋 都 濕 了 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +You look very pale . 你 看上去 很 苍白 . +When have you ever done anything for me ? 你 什么 时候 给 我 做事 ? +Tom told me that I should not go out alone at night . 汤姆 跟 我 说 我 不 应该 晚上 一个 人 出门 . +She must be over eighty . 她 肯定 超过 80 岁 了 . +I just want to know what actually happened . 我 只 想 知道 实际上 发生 了 什么 . +I am blessed with good health . 上帝 賜予 我 健康 的 身體 . +Lie down and make yourself comfortable . 躺 下來 讓 自己 舒服 一點 . +Suddenly it began to rain . 突然 開始 下雨 . +I am getting more and more gray hair . 我 的 白 髮 越 來 越 多 . +I like to listen to music , especially jazz . 我 喜歡 聽 音樂 , 特別 是 爵士 音樂 . +My boss made me work last Sunday . 上週 日 我 的 老 闆 要 我 工作 . +I anticipate that there will be trouble . 我 預料 會 有 麻煩 . +Did somebody hit Tom ? 有人 打 汤姆 了 吗 ? +An argument may be logically sound without being true . 不 正确 的 命题 听 起来 可能 符合 逻辑 . +Popcorn is my favorite snack . 爆米花 是 我 最 喜欢 的 零食 . +Sir , can we quickly inspect your luggage please ? 先生 , 我們 可以 檢查 一下 您 的 行李 嗎 ? +It is a waste of time . 这 是 浪费时间 . +These must be fake . 這些 一定 是 假 的 . +Nobody knows the truth . 没有 人 知道 真相 . +Tom currently resides in Boston . 汤姆 现在 住 在 波士顿 . +He was involved in the trouble . 他 被 卷进 了 是非 中 . +She did not appear to recognize me . 她 好像 没 认出 我 . +I was always good at English . 我 的 英文 一直 都 不錯 . +Am I a good teacher ? 我 是 一個 好 老師 嗎 ? +They do not like me . 他們 不 喜歡 我 . +He owes his success both to working hard and to good luck . 他 的 成功 要 归结 于 他 的 辛勤工作 和 好运气 . +The waves crashed against the rocks . 浪 拍 在 岩石 上 . +I am wet . 我 濕 了 . +I do not know whether I have time or not . 我 不 知道 有没有 时间 . +I went to Disneyland yesterday . 昨天 我 去 了 迪士尼 樂園 . +I am not a beggar . 我 不是 乞丐 . +We can do nothing . 我们 什么 都 做不了 . +A boy is walking across the street . 一个男孩 正 沿着 街 走 . +The date of manufacture is shown on the lid . 生产日期 在 盖子 上 . +He ran faster than his brother did . 他 跑 得 比 他 哥哥 快 . +Please feel free to ask questions . 歡迎 隨時 提問 . +We had to go there together . 我们 必须 一起 去 . +A true scientist would not approach the question this way . 真正 的 科学家 不会 这样 去 思考 . +Tom is always absent . 汤姆 总是 旷课 . +We can not deny the fact that he is honest . 我们 无法 否认 , 他 确实 是 很 诚实 的 人 . +I have been there a couple of times . 我 去過 那裡 幾次 . +We should try to avoid imposing our own beliefs on others . 我們 應該 盡量 避免 把 我們 自己 的 信念 強加 在 別人 身上 . +According to TV news , there was a plane crash in India . 根据 电视新闻 , 一架 飞机 在 印度 坠毁 了 . +How many boys are there in this class ? 这个 班 有 多少 男生 ? +If you have something to say , just say it . 如果 你 想 说 , 就 说 . +I was born in Kyoto . 我 生于 京都 . +Time passes quickly when we are doing something we like . 在 做 喜欢 的 事情 的 时候 时间 过去 得 很快 . +You can go to the ballpark on this bus . 坐 這個 公車 可以 到 球場 . +What you said left a deep impression on me . 你 说 的话 给 我 留下 了 很 深刻 的 印象 . +He wants you to stay here . 他 要 你 留在 這裡 . +Mary came home from school in tears because her friends had teased her . 玛丽 哭 着 从 学校 跑 回 了 家里 , 因为 她 的 朋友 捉弄 了 她 . +I got acquainted with the chief executive . 我 認識 了 這位 行政 長 官 . +He is a tall boy . 他 是 一个 高大 的 男孩 . +They do not always obey their parents . 他们 并 不 总是 服从 父母 . +She does not have as much patience as you do . 她 没 像 你 那样 有 耐心 . +Tom has not done anything . 汤姆 什么 都 没 做 . +No , thank you . I am just looking around . 不 , 謝謝 你 . 我 只是 四處 看看 . +" More coffee ? " " No , thanks . " “ 还要 咖啡 吗 ? ” “ 不了 , 谢谢 . ” +She declared that she was not guilty . 她 声称 自己 没罪 . +You may come if you like . 如果 你 想 , 你 可以 來 . +Are you going out tomorrow ? 你 明天 出去 吗 ? +I can not go . 我 不能 走 . +He will have to go to the station . 他 该 去 火车站 了 . +Volcanic ash disrupted air travel . 火山灰 阻礙 航運 . +He has an eye for antiques . 他 对 古董 很 有 鉴赏力 . +I know you are richer than me . 我 知道 你 比 我 有 錢 . +Cows give milk . 牛 可 产奶 . +Did you get your wish ? 你 如 願 以償 了 嗎 ? +I asked him where he was going . 我 問 了 他 要 去 哪裡 . +You do not understand . 你 不 了解 . +I am getting too old for this job . 对于 这份 工作 来说 , 我 的 年龄 太 老 了 . +I like to go fishing with my father . 我 喜欢 和 父亲 一起 去 钓鱼 . +Tom has accumulated a lot of junk . 湯姆屯 了 很多 垃圾 . +Do you have any idea what is been going on ? 你 知道 現在 正在 發生 甚麼 嗎 ? +The news confirmed my suspicions . 这 一 消息 证实 了 我 的 怀疑 . +The explosion may have been caused by a gas leak . 這場 爆炸 有 可能 是 瓦斯 外 洩 引起 的 . +Come and see me whenever you like . 你 隨時 都 可以 來看 我 . +He worked very hard . 他 工作 很 努力 . +Probably you are allergic to pollen or dust . 你 可能 对 花粉 或 灰尘 过敏 . +You will fail . 你 會 失敗 . +They went to the station by car . 他們 坐 車 去 車站 . +Tom wants to talk . 汤姆 想 说话 . +Why did you buy such an expensive dictionary ? 为什么 你 买 了 一本 那么 贵 的 词典 ? +Tom is a bus driver . 汤姆 是 个 公交车 司机 . +What I want is some peace and quiet . 我 所 想要 的 是 一点 平和 和 安静 . +We lost our cat and Tom found it for us . 我們 弄 丟了 車 , Tom 幫 我們 找 了 回來 . +Some gum stuck to his shoes . 口香糖 粘到 他 的 鞋子 上 了 . +Who were you talking to ? 你 和 谁 说话 呢 ? +" Shall I take a message ? " " No , thank you . " “ 需要 我 为 您 留 个 口信儿 吗 ? ” “ 不用 了 , 谢谢 . ” +We will do that . 我們 會 去 做 . +An angle of 90 degrees is called a right angle . 90 度 的 角 叫 直角 . +Between you and me , what is your opinion of her ? 你 就 只 告诉 我 一个 人 , 你 对 她 的 意见 如何 ? +Tennis is my favorite sport . 网球 是 我 最 喜欢 的 运动 . +When I woke up , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Whose glass is this ? 这 是 谁 的 杯子 ? +Would you like to go to the zoo this afternoon ? 今天下午 你 想 去 動物園 嗎 ? +You should be able to manage it . 你 应该 能 解决 . +According to newspaper reports , there was an airplane accident last evening . 根據 報載 , 有 一架 飛機 昨天晚上 發生 了 意外 . +I had to work overtime yesterday . 我 昨天 必須 加班 . +Why do you want to be a nurse ? 你 为什么 想 成为 护士 呢 ? +I was born in the winter . 我 在 冬天 出生 . +My attitude towards him changed . 我 对 他 的 态度 变 了 . +I will stay home . 我 會 待 在家 裡 . +He is been to the stadium . 他 去過 體育館 . +Please do not forget to put a stamp on the letter before mailing it . 请 不要 忘记 寄信 前 要 在 上面 贴 邮票 . +He left his daughter a great fortune . 他 留给 他 女儿 一大笔 财产 . +Have you been eating ? 你 在 吃 东西 吗 ? +Gravity brings everything down to Earth . 重力 将 一切 带 下 地球表面 . +My parents have gone to the airport to see my uncle off . 我 父母 去 机场 送 我 叔叔 了 . +Tom has his own problems . 汤姆 有 他 自己 的 问题 . +After asking for my key at the front desk , I took the elevator to my floor . 我 到櫃檯拿了鑰匙 , 然 後 就 乘 電梯 去 了 我 房間 的 樓層 . +How many hours a day do you sleep ? 你 每天 睡 几个 小时 ? +Do not bite on the right side . 不要 從 右邊 咬 . +I know Tom . 我 认识 汤姆 . +I am going to see Tom in the morning . 我 早上 去 見 湯姆 . +He caught her by the arm . 他 抓住 了 她 的 胳膊 . +Sorry to have kept you waiting . 對 不起 讓 你 一直 等 . +Tom always speaks in such a low voice that I can barely understand what he says . 汤姆 总是 说话 声音 太小 , 我 几乎 听不懂 他 在 说 什么 . +They were forced to kill and eat several of their horses . 他们 被迫 杀掉 他们 的 几匹马 来 吃 . +Her birthday party will be tomorrow evening . 她 的 生日 宴會 將 在 明天 晚上 . +The storm did not abate for several hours . 风暴 几个 小时 没有 减弱 了 . +You may take this . 您 可以 拿 着 这个 . +There is an apple on the desk . 书桌上 有 一个 苹果 . +You are in my way . 你 擋住 了 我 的 路 . +We have to find out what Tom wants . 我们 要 明白 汤姆 想要 什么 . +Asia is much larger than Australia . 亚洲 比 澳洲 大 很多 . +His brother is a famous soccer player . 他 弟弟 是 个 有名 的 足球 选手 . +It is likely that she will succeed . 她 很 有 可能 会 有所 成就 . +Tom knows what we are doing . 汤姆 知道 我们 在 做 什么 . +His brother studies very hard . 他 的 哥哥 很 用功 讀書 . +Have you handed in your homework ? 你 交功課 了 嗎 ? +Do you understand ? 你们 懂吗 ? +I was abducted by aliens . 我 被 外星人 绑架 了 . +Tom has started studying karate . 汤姆 已经 开始 学习 空手道 了 . +He lives next door to us . 他 住 在 我們 隔壁 . +It takes 165 years for Neptune to orbit around the sun . 海王星 繞行 太陽 一周 要 花 一百六十五 年 . +Excuse me , how much is this sweater ? 请问 下 , 这件 毛衣 要 多少 钱 ? +I want you guys to do me a favor . 我 想要 大家伙 帮 我个 忙 . +This is not a sentence . 这 不是 一句 话 . +Smoking is strictly prohibited . 严禁吸烟 . +He said that it would probably rain . 他 說 很 可能 會 下雨 . +This book is not interesting at all . 這 本書 一點 也 不 有趣 . +It is all Greek to me . 我 对此 一窍不通 . +I have to get up quite early tomorrow . 我 明天 得 早起 . +His son was expelled from school . 他 的 兒子 被 學校 開 除了 . +Is Tom living in Boston ? 汤姆 住 在 波士顿 吗 ? +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +What time do you wake up on Sundays ? 你 星期天 幾點 起床 ? +Tom is still upset . 湯姆 還 是 不安 . +I kept singing . 我 繼續 唱歌 . +This car is very economical on gas . 这辆 车 很 省油 . +I wake him up at 6 every morning . 我 每天 早上 6 点 叫醒 他 . +Will it take long to recover ? 要 很 長 的 時間 才能 恢 復 嗎 ? +I found the new magazine very interesting . 我 發現 這 本新 雜 誌 非常 有趣 . +I am afraid the job I have got for you will not be easy . 我 恐怕 我 給 你 找 的 工作 不 輕 鬆 . +She was holding an umbrella . 她 握 着 一把 伞 . +They did not pay me . 他们 没付 我 钱 . +Do not begin without me . 我 不 在 就别 开始 . +She helped her father with the work in the garden . 她 帮 她 爸爸 干 了 花园里 的 活 . +They will not come until tomorrow . 他們 直到 明天 前 不 會 來 . +It is up to you . 这 就要 看 您 了 . +She hit him . 她 打 了 他 . +How can I get to the station ? 我 怎樣 才能 到 火車 站 ? +I think I am going crazy . 我 认为 我 快 疯 了 . +My team is always losing . 我们 队 从来 就 没 赢 过 . +I want to go for a swim . 我 想 去 游泳 . +I enjoy taking pictures . 我 喜欢 拍照 . +This ticket is valid for three days . 这 张 票 三日 有效 . +You will be able to see the difference very easily . 您 很 容易 就 能 看出 区别 . +I am happiest when I am reading . 當 我 閱讀 的 時候 , 我 最快 樂 . +It looks like today will be a long day . 看来 今天 会 是 漫长 的 一天 啊 . +Tom heard nothing . 汤姆 什么 也 没 听见 . +Let is not argue . 我們 別 吵 了 . +It is impossible for me to explain it to you . 要 我 解释 给 你 听 是 不 可能 的 . +You may choose whichever you want . 你 可以 选择 任何 你 想要 的 . +You like rain , do not you ? 你 喜欢 雨 对 吧 ? +We need to go . 我们 必须 走 了 . +Turn off the light , please . 請 關燈 . +Your watch is more expensive than mine . 你 的 手表 比 我 的 贵 . +How are you doing today ? 你 今天 怎么样 ? +It is already 7 : 00 . 已经 是 早上 七点 了 . +She greeted us with a smile . 她 面帶 微笑 向 我們 打招呼 . +Only a few TV programs are worth watching . 只有 为数不多 的 几个 电视节目 值得 关注 . +We will have to wait and see . 你 得 等一等 看 . +Is this fish still alive ? 这条 鱼 还是 活 的 吗 ? +You are the one who suggested that we sing together . 你 是 那個 建議 我們 一起 唱歌 的 人 . +I have to say goodnight to Tom . 我 必须 跟 汤姆 说 晚安 . +Read this . 念 这个 . +We waited in the park for a long time . 我们 在 公园 等 了 好久 . +If you bite me , I will bite back . 如果 你 咬 我 , 我 就 咬 回来 . +We have got lots of time . 我們 有 很多 時間 . +We found the boy fast asleep . 我們 發現 這個 男孩 睡 得 很沉 . +I wonder whether we have enough money to buy Tom the painting he wanted . 我 想 知道 咱们 是否 有 足够 的 钱 给 汤姆 买 他 想要 的 这 幅画 +I 'd better get back home . 我 回家 比较 好 . +They grow flowers in the garden . 他們 在 花園 裡 種花 . +He has been to London three times . 他 去過 倫敦 三次 . +I bumped into him at the station . 我 在 車站 碰到 他 . +It looks like snow , does not it ? 看起 來 要 下雪 了 , 不是 嗎 ? +He admitted his mistakes . 他 承认 了 自己 的 错误 . +I am calling from a cell phone . 我 正在 用 手机 打电话 . +Tom is bicycle was stolen yesterday . 湯姆 的 自行 車 昨天 被 偷 了 . +He is a high school student . 他 是 一名 高中 學生 . +I am actually doing quite well . 我 其實 做 得 很 好 . +I know the boy who is sitting closest to the door . 我 认识 那个 坐 得 最靠近 门 的 男孩 . +They waited for him for hours . 他們 等 了 他 好 幾個 小 時 . +Tom got here before sunrise . 汤姆 天亮 前 就 到 这 了 . +The cat was scared by an unfamiliar noise . 猫 被 陌生 的 噪音 惊吓 了 . +Stay off the grass . 不要 走 在 草地 上 . +Tom does not work here . 湯姆 不 在 這裡 工作 . +Let is forget it for now . 讓 我們 現在 忘 了 它 吧 . +Tom has to speak French every day at work . 汤姆 每天 都 要 在 工作 时说 法语 . +It is self @-@ evident . 這 是 不證 自明 的 . +I do not want to hear your theories . 我 不想 听 你 的 理论 . +I want something sweet . 我 要 一些 甜 的 東西 . +Nature is full of mysteries . 自然 充满 了 神秘 . +I have had a lot of work to do lately . 我 最近 有 很多 事情 要 做 . +Should I cancel the call ? 我 该 取消 通话 吗 ? +I am afraid of earthquakes . 我 怕 地震 . +How did you get there ? 你 怎麼 到 那 的 ? +I do not like that . 我 不 喜欢 . +What have you done with my pen ? 你 用 我 的 筆 做 了 什麼 ? +Tom was there physically , but not mentally . 汤姆 人 在 心 不 在 . +I think you should make the deal . 我 看 你 该 做 这 交易 . +There is a path through the fields . 有 条 小路 穿过 农田 . +He was very busy all day . 他 忙 了 一整天 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 困惑 . +I can see Tom . 我 看得见 汤姆 . +" Are you tired ? " " No , not at all . " “ 你 累 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +Tom is speech was good . 汤姆 的 演讲 很 精彩 . +I will be seeing Mary this afternoon . 我 今天下午 會 看到 瑪麗 . +I am really looking forward to summer vacation . 我 真的 非常 期待 暑假 . +Would you please show me that skirt ? 请 你 给 我 看 一下 这 条 裙子 好 吗 ? +Nothing is missing . 什么 也 没少 . +His explanation is not clear . 他 的 說明 並 不 清楚 . +That is right . 对 ! +You want to be excused from doing that , do not you ? 你 想 通过 做 那件事 而 得到 原谅 是 吗 ? +Who do you think I am ? 你 把 我 当 什么 啦 ? +Do you have children ? 你 有 孩子 嗎 ? +Please have someone else do it . 請 讓 別人 去 做 . +I go to school here , too . 我 也 在 这儿 上学 . +The days are getting longer and longer . 白天 越來越 長 了 . +How many apples do you want ? 你 要 幾個 蘋果 ? +He is always running short of cash . 他 總是 缺錢 . +Tom denied having stolen the money . Tom 否认 偷 了 钱 . +Help me lift the package . 帮 我 抬起 这 包裹 . +I heard someone come in . 我 聽到 有人 進來 了 . +I am concerned about Tom . 我 在 為 湯姆 擔心 . +The two young girls smiled happily . 兩個 年輕 的 女孩 高興 地 微笑 了 . +Tom did not want to talk to anyone . 汤姆 不想 跟 任何人 说话 . +He is good at football . 他 擅長 足球 . +Tom drank heavily . 湯姆 喝 得 很多 . +I had my brother repair my bicycle . 我 讓 我 的 哥哥 修理 我 的 腳踏車 . +She was very happy with my gift . 她 對 於 我 送 的 禮物 感到 很 開心 . +I was watching television when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +Long time , no see . 好久 不見 . +They are trying to keep costs down . 他们 正 努力 降低成本 . +He is really angry . 他 非常 生气 . +Step inside . 进来 . +Pass me the salt , please . 请 把 盐 递给 我 . +English is a hard language to learn . 英語 是 一種 難學 的 語言 . +My watch is very accurate . 我 的 手 錶 很 準 . +He is likely to be late again . 他 可能 又 遲 到 了 . +Everyone except me was invited . 除了 我 , 每个 人 都 受到 了 邀请 . +I can not explain it either . 我 也 無法 解釋 . +I like summer better than winter . 我 喜歡 夏天 勝 於 冬天 . +He used to get up early . 他 以前 很早 起床 . +I do not understand . 我 不 懂 . +Do not put anything in the bag . 不要 把 所有 东西 都 放到 包 里面 . +We gather here once a week . 我们 每周 在 这儿 聚 一次 . +He is old enough to travel alone . 他 够 大 了 , 可以 独自 旅行 了 . +My room is a pigsty . 我 房间 是 个 猪 窝 . +When to start is the main problem . 什么 时候 开始 是 主要 问题 . +The weather report says we will get three inches of snow . 天气预报 说 会 下 三 英寸 雪 . +Someone must have stolen your watch . 一定 是 有人 偷 了 你 的 手 錶 . +I owe it you that I am still alive . 多亏 了 你 , 我 还 活着 . +Mathematics is basic to all sciences . 數學 是 所有 科學 的 基礎 . +How many people work there ? 有 多少 人 在 那里 工作 ? +You always work hard . 你 一直 努力 工作 . +I want to become a teacher of Japanese . 我 想 成为 日语 老师 . +Water is a liquid . 水 是 液体 . +I do not often do that by myself . 我 不 經常 自己 去 做 . +I smell something here . 我 在 这里 闻见 了 什么 . +My ear was bleeding this morning . 今天 早上 我 耳朵 流血 了 . +I will not see him any more . 我 不会 再见 他 了 . +I ran into my aunt by chance in Europe . 我 在 欧洲 偶遇 了 姑母 . +She really does like animals . 她 确实 喜欢 动物 . +He is the father of two children . 他 是 兩個 孩子 的 父親 . +I am Tom is assistant . 我 是 湯姆 的 助手 . +Do not leave ! 別 走 ! +Grandmother sent us a box of apples . 奶奶 送 了 我們 一箱 蘋果 . +I was late for the appointment . 我 約 會 遲 到 了 . +Industry as we know it today did not exist in those days . 我们 今天 所 认识 的 工业 在 那个 时代 不 存在 . +I got a good grade in English . 我 的 英文 成績 很 好 . +I am fed up with eating in restaurants . 我 受夠 了 在 餐館 吃 飯 . +Fasten your seat belt . 系上 您 的 安全带 . +You have got a great memory . 你 的 記憶力 很 好 . +Let is meet at the station at eight tomorrow morning . 明早 八点 车站 见 . +I have always kept my promises . 我 一直 遵守 我 的 諾言 . +We have many goals . 我們 有 許多 目標 . +She likes music very much . 她 非常 喜欢 音乐 . +You can stay here if you like . 你 要是 願意 就 留在 這裡 . +We are having a party this evening . 我們 今天 晚上 將 舉行 派 對 . +Were you happy ? 你 开心 吗 ? +How long does it take to walk to the station ? 走 着 去 火车站 要 多久 ? +Tom does not have any shoes on . 汤姆 没 穿鞋 . +Let is clear up this problem . 让 我们 来 澄清 一下 这个 问题 . +Do all of you speak French ? 你們 都 講 法語 嗎 ? +You should read many books when you are young . 应该 趁 年轻 多 读点 书 . +She does not live there any more . 她 不再 住 在 那裡 了 . +What made her do that ? 为什么 她 要 做 这种 事情 呢 ? +I am not disagreeing with you . 我 没有 反对 你 . +Tom is trying to figure out how to do that now . 汤姆 现在 正在 想 办法 去 做 那件事 +This dam supplies us with water and electricity . 这个 水坝 给 我们 提供 水 和 电 . +This is a very tall tree . 这 是 棵 很高 的 树 . +Kyoto is not as large as Osaka . 京都 不如 大阪 大 . +Our garden was full of weeds . 我们 的 花园 布满 了 杂草 . +All of them are good teachers . 他们 都 是 好 老师 . +Of course . 当然 了 . +What do you do before breakfast ? 早餐 前 你 做 什麼 ? +I noticed that Tom was smiling . 我 注意 到 汤姆 在 笑 . +Will you have time to have lunch with me ? 你 有 时间 跟 我 吃 午饭 吗 ? +You are selling him short . 你 別 小看 了 他 . +He spent the morning reading a book . 他 整個 上午 都 在 看書 . +I like football . 我 喜歡 足球 . +My neighbor renovated her house completely . 我 的 鄰居 把 她 的 屋子 翻新 了 一遍 . +Mary can dance well . 瑪麗舞 跳 得 很 好 . +We play football every Saturday . 我們 每個 星期六 踢足球 . +Tom took Mary to the hospital on the back of his motorcycle . 汤姆 把 玛丽 放到 他 的 摩托车 背上 送到 医院 . +Be nice to others . 对 他人 要 友善 . +I did not even think of it . 我 連 想都不想 . +I bought two tickets for a concert . 我 买 了 两张 音乐会 的 票 . +I would like to live in New York . 我 想住 在 紐約 . +The law is full of ambiguities . 法律 有 很多 不 明确 的 地方 . +What languages do you speak ? 你 會 說 什麼 語言 ? +Why did you come here this morning ? 今天 早上 你 為 什麼 來 這裡 ? +A bird can fly . 鸟会 飞 . +How long have you been working here ? 从 什么 时候 开始 您 就 这里 工作 着 的 呢 ? +He told his son an interesting story . 他 給 他 兒子 講 了 一個 有趣 的 故事 . +Do you know how to do that ? 你 知道 怎么 做 吗 ? +Our school library is small , but new . 我们 学校 的 图书馆 很小 , 但是 是 新 的 . +It will rain soon . 天 快要 下雨 了 . +Tom has known Mary since childhood . 汤姆 从小 就 认识 玛丽 了 . +He wants to go to America . 他 想 去 美國 . +You are drinking out of my cup . 你 正在 把 我 杯子 里 的 东西 喝掉 . +The Rhine runs between France and Germany . 萊茵 河流 經 法國 和 德國 國界 . +Take your time . 你 可以 慢慢来 . +This is my page on Facebook . 這 是 我 的 Facebook 頁面 . +The average height of girls in this class is over 155 centimeters . 这个 班 的 女生 平均 身高 超过 了 155 公分 . +He erased his speech from the tape . 他 把 他 的 那段 话 从 磁带 里 删除 了 . +You do have choices . 你 有 选择 . +She is busy preparing supper now . 她 現在 正忙 著 準備 晚飯 . +Will you be there ? 你 会 在 那里 吗 ? +I can not believe anyone anymore . 我 再也 无法 相信 任何人 了 . +She will be back within a week . 她 一週 之內 會 回來 . +It is too early to get up . 時間 還 早 不用 起床 . +What is the daily fee ? 每天 费用 多少 ? +It is very hot in the summer in Japan . 日本 的 夏天 很 热 . +Call me at six tomorrow morning . 明天 早上 6 点 给 我 打电话 . +Please do not cry . 请 你 不要 哭 . +He asked his friends for help . 他 尋求 他 的 朋友 的 幫助 . +I cheered myself up by listening to music . 我 藉由 聽 音樂 來 鼓舞 我 自己 . +Do you still want to talk to me ? 你 还 想 跟 我 谈 吗 ? +Tom probably knows how to get to Mary is house . 湯姆 大概 知道 要 怎麼 去 瑪莉 家 吧 . +Fluency in English is a must . 流利 的 英語 是 必須 的 . +I do not like children . 我 不 喜欢 小孩 . +She was wearing pumps . 她 穿著 舞鞋 . +In a few minutes we will be landing at New Tokyo International Airport . 我们 将 于 几分钟 内 降落 在 新 东京国际 机场 . +I am taking an exam in January . 我 一月份 要 参加考试 . +Software is constantly evolving . 软件 正在 不断 进化 . +Which is your book ? 哪 本 是 您 的 書 ? +Follow him . 跟著 他 走 . +My hand was burned . 我 的 手 烧伤 了 . +Tom died in a traffic accident . 湯姆死 於 交通事故 . +Have you found your ticket yet ? 你 找到 你 的 票 了 吗 ? +The animals died one after another . 動物 一個 接 一個 的 死亡 . +They do not seem to be Americans . 他們 似乎 不是 美國 人 . +Do not worry about such a thing . 不要 擔心 這樣 的 事情 . +I am three years younger than you . 我 比 你 小 三歲 . +My daughter wants a kitten . 我 女儿 想要 一只 小猫 . +She married her classmate . 她 跟 她 的 同學 結婚 了 . +Could I have a pillow and blanket ? 給 我 一個 枕頭 和 毛毯 好 嗎 ? +Where is the police station ? 警察局 在 哪里 ? +Where is the hammer ? 锤子 在 哪里 ? +Is this your pen ? 這 是 你 的 筆 嗎 ? +I made an abstract of a book . 我 為 一本 書 寫 了 內容 提要 . +They sell candy . 他們 賣 糖果 . +She was only frightened , not injured . 她 只是 被 嚇到 了 並 沒有 受傷 . +You made me laugh . 我 被 你 逗乐 了 . +I take the train to work every day . 我 每天 搭 火車 上班 . +My fingers are so numb with cold that I can not play the piano . 我 的 手指 冻僵 了 , 以至于 无法 弹钢琴 了 . +Tom will not even know what you did until it is over . 汤姆 不到 最后 不会 知道 你 做 了 什么 . +I arrived later than usual . 我 比 平常 晚 到 . +Can you find it ? 你 能 找到 它 嗎 ? +I went camping with my family . 我 和 家人 去 露營 . +Needless to say , fundamental human rights should be respected . 無須 多 言 , 基本 人權 應當 被 尊重 . +I was out of town on vacation . 我 出 城 度假 了 . +There is always someone talking . 總是 會 有人 談論 . +Please fill out this form first . 請 先 填寫 這 張 表格 . +This smells great ! What are you cooking ? 聞 起來 好 香 喔 . 你 在 煮 什麼 ? +He went out in spite of the rain . 尽管 下着雨 , 他 还是 出去 了 . +We are special . 我们 是 特别 的 . +Tell her to come at noon . 让 她 中午 过来 . +I will send a letter to my mother . 我会 给 我 的 母亲 寄 封信 . +I looked for him in the supermarket . 我 在 超級 市場 裡 找 他 . +How did you know all that ? 你 怎麼 全都 知道 ? +They buried him in the graveyard by the church . 他們 把 他 埋葬 在 教堂 旁 的 墓園 . +I wish I could live near your house . 我 希望 住 在 你家 附近 . +Let is fly a kite . 讓 我們 放 風箏 . +I got up at seven . 我 7 点 起床 了 . +He was born in Africa . 他 出生 在 非洲 . +How do you like your eggs done ? 您 要 什麼樣 的 蛋 ? +Why do you even care about this ? 你 怎麼 還 關心 這個 ? +I am feeling blue today . 我 今天 的 心情 不好 . +Is the bank open ? 銀行 開著 嗎 ? +When he shouted , the veins in his neck stood out clearly . 当 他 咆哮 时 , 他 脖子 上 青筋 暴起 . +Did you phone Tom ? 给 汤姆 打 过 电话 了 吗 ? +Tom told me where he lived . 湯姆 告訴 我 他 住 在 哪裡 . +It is exactly as you say it is . 它 跟 你 說 的 完全 一樣 . +Where do you suppose you will spend your vacation ? 你 认为 你 会 到 哪儿 度假 ? +The vacation is over now . 现在 假期 结束 了 . +The first attack missed the target . 第一次 攻击 错过 了 目标 . +Do you have any brothers ? 你 有 兄弟 吗 ? +Every dog has his day . 凡人 皆 有 得意 时 . +That is the reason I bought this book . 那 是 我 買 這 本書 的 原因 . +You took the wrong key . 你 拿 错 钥匙 了 . +Tom put a lot of honey on his toast . 汤姆 往 他 的 吐司 上放 了 许多 蜂蜜 . +Today is the 3rd . 今天 三號 . +How did you spend your winter vacation ? 你 的 寒假 怎么 过 的 ? +I asked him about the accident . 我 問 他 關 於 這個 意外 的 事 . +You are very brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +She gave the door a gentle push . 她 輕輕地 推 了 門 . +I have been busy repairing things . 我 一直 在 忙 着 修 东西 . +My father bought me a new bicycle . 父親 買 了 一輛 新 自行 車 給 我 . +I think this book is worth reading . 我 覺得 這 本書 值得 一 讀 . +I really have to go . 我 真的 得 走 了 . +I generally walk to school . 我 通常 走 去 学校 . +I like walking at night . 我 喜歡 在 夜晚 走路 . +After walking for an hour , we stopped to take a rest . 走 了 一個 小 時 後 , 我們 停下 來 休息 . +I got it free . 我 是 免費 得到 的 . +I told you never to come here again . 我 告诉 过 你 不要 再 来 这里 了 . +English is useful in diplomacy and tourism . 英語 在 外交 和 旅遊 業 方面 很 有用 . +I respect Tom . 我 尊敬 湯姆 . +I know that it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +My father has been to Australia twice . 我 父親 曾經 去過 澳洲 兩次 . +I am determined to be a scientist . 我 決心 要成 為 一名 科學家 . +Nobody should be worried . 沒人應 該 擔心 . +I am having some problems compiling this software . 我 编译 这个 程序 有些 困难 . +It is more polite to say thin than skinny . 说 苗条 比 说 瘦 更 有 礼貌 . +There is a long wait between trains . 在 火车 的 间隔 中 有 漫长 的 等待 . +I have no idea of what is going on in there . 我 不 清楚 這裡 發生 了 什麼 事 ? +He was an excellent scientist , and what is more , was a great poet . 他 是 一位 優秀 的 科學家 , 更是 一位 偉大 的 詩人 . +I have never been to New York , and my sister has not , either . 我 从没 去过 纽约 , 我 妹妹 也 没有 . +I gave careful consideration to the problem . 我 仔細 地 考慮 了 這個 問題 . +I was watching TV when the telephone rang . 电话响 的 时候 , 我 在 看电视 . +When you pose a question , you expect an answer . 當 你 提出 一個 問題 , 你 期望 得到 答案 . +The boy lay listening to the radio . 男孩 躺 着 听 收音机 . +Please eat some cake . 请吃 点 蛋糕 . +Basketball is a lot of fun . 篮球 可 真是 有意思 . +A cup of tea , please . 请 给 我 一杯 茶 . +You might not like this beer at first . It is an acquired taste . 剛 開始 的 時候 你 可能 不 會 喜歡 這個 啤酒 . 這 是 需要 多次 品嚐 去 習慣 它 的 口味 . +Tom will probably be there . 湯姆 可能 會 去 那裡 . +He wrote the report . 他 寫 了 這份 報告 . +Tom has a 13 @-@ year @-@ old daughter . Tom 有個 十三 歲 的 女兒 . +It is a good idea . 这 是 个 好 主意 . +We had a late lunch at two . 我們 在 兩點鐘 很 晚 才 吃 午餐 . +This is a wooden table . 这 是 张 木桌 . +Who does the cooking in your home ? 你 家里 谁 做饭 ? +Can you pass me the milk ? 可以 把 牛奶 递给 我 吗 ? +He heard a shout . 他 聽到 了 叫 聲 . +I stayed up late last night . 我 昨晚 睡得 晚 . +I have not yet finished my homework . 我 还 没 做完作业 . +I usually get up at 6 : 00 . 我 一般 六点 起床 . +I wish they would stop fighting . 我 希望 他們 會 停止 戰鬥 . +They looked as if they would cry . 他們 看 起來 好像 要 哭 了 . +Please turn off the TV . 請 把 電視 關掉 . +Tom studies hard . 汤姆 努力学习 . +I can not stand it . 我 不能 忍受 . +Tom is in Boston on business . 汤姆 因为 工作 现在 在 波士顿 . +I am not going to give up . 我 不会 放弃 的 . +Tom did not have time to finish his report . 湯姆 沒 時間 完成 報告 . +Release him . 放开 他 . +He went to America to study medicine . 他 去 美国 学医 了 . +Tom is a Boston native . 湯姆 是 波士 頓 本地人 . +Do not stay in the sun too long . 不要 在 陽光 下 逗留 太久 . +I overslept because my alarm did not go off . 因为 闹铃 没有 响 , 所以 我 继续 睡下去 了 . +Do not let children play in the road . 别 让 孩子 们 在 马路 中间 嬉戏 . +I do not want any bananas at all . 我 一點 也 不要 香蕉 . +Check Tom is pulse again . 再 检查一下 汤姆 的 脉搏 . +I will never tell anyone where I have hidden the treasure . 我 不 會 告訴 任何人 我 藏宝 的 地方 . +He absconded with the money . 他 携款 潜逃 . +They are arriving here soon from Hong Kong . 他们 就快 从 香港 抵达 了 . +You forgot to turn off the light . 他 忘 了 關燈 . +Who were you talking to ? 你 跟 誰 說 話 呢 ? +Would you like tea or coffee ? 您 想要 茶 还是 咖啡 ? +I do not speak Japanese . 我 不 說 日 語 . +An eye for an eye , a tooth for a tooth . 以 眼 還 眼 , 以 牙 還 牙 . +I am grateful for that . 我 对 那事 很 是 感激 . +Will you excuse us for a moment ? 你 会 暂时 原谅 我们 吗 ? +We talked over the phone . 我們 電話 裡 說 . +The earthworm wriggled when I touched it . 我 碰 蚯蚓 的 时候 , 它 扭动 起来 . +I am playing volleyball now . 我 现在 在 打 排球 . +Sorry , that was none of my business . 對 不起 , 那 不關 我 的 事 . +Tom told me that he will not come to school tomorrow . 汤姆 告诉 我 他 明天 不 来 上学 . +I do not meet him so often . 我 不常 見到 他 . +The well ran dry . 這 口 井 乾 涸了 . +That is the village I was born in . 这 就是 我 出生 的 村庄 . +The girl resembles her mother . 這個 女孩 酷似 她 的 母親 . +She is giving a party tonight . 她 今晚 舉行 派 對 . +This book is really old . 這 本書 真的 很舊 . +Tell me what happened . 告訴 我 發生 了 什麼 事 . +She is not afraid of death . 她 不怕死 . +Everyone , say cheese . 所有人 , 都 请 说 cheese . +He did not study at all . 他 根本 就 没有 学习 . +Please pull over . 请 把 车 停下来 . +I need a good pair of sunglasses . 我 需要 一副 好 的 太陽 眼鏡 . +The beach is an ideal place for children to play . 海滩 是 一个 供 孩子 们 玩乐 的 理想 场所 . +She is sitting on the bench . 她 坐在 長椅 上 . +Are you all ready ? 你們 都 準備 好 了 嗎 ? +Can I ask you some questions ? 我 能 問 你們 一些 問題 嗎 ? +He is unfit to be a teacher . 他 不 适合 当 老师 . +I expect your help . 我 期待 你 的 幫助 . +Is this really worth it ? 这样 真的 值得 吗 ? +The bathtub was filled with hot water and flower petals . 浴缸 裡 滿 是 熱水 和 花瓣 . +I am tall . 我 个子 高 . +You are responsible for the result . 你 要 对 结果 负责 . +I had no choice but to accept the offer . 除了 接受 报价 , 我 别无选择 . +This is my bag . 那 是 我 的 包 . +I believe Tom is right . 我 相信 湯姆 是 對 的 . +My brother can drive a car . 我 哥哥 會 開車 . +I did not mean to wake you . 我 沒 打算 叫醒 你 . +That is not Tom is fault . 那 不是 湯姆 的 錯 . +I love her so much that I can not leave her . 我 如此 地 愛 她 所以 我 無法 離開 她 . +I like oranges better than apples . 我 喜歡 橘子 勝 過 蘋果 . +There was not a soul in sight . 一個 人影 也 看不到 . +It was my duty to do that . 做 那事 是 我 的 责任 . +He had a book on physics published . 他 有 一本 關於 物理 學 的 書 被 出版 了 . +That is not important , is it ? 那 不 重要 , 不是 么 ? +I am not sure what I was thinking . 我 不 确定 当时 我 正在 想 什么 . +I will give you a bicycle for your birthday . 你 生日 的 时候 , 我 送 你 一辆 自行车 . +I waste a lot of time daydreaming . 我 浪費 了 很多 時間 作 白日 夢 . +Step aside . 让开 . +I am not really sure what Tom meant . 我 不 清楚 湯姆 是 甚麼 意思 . +My aunt made me a new skirt . 我 姑姑 做 了 一條 新 裙子 給 我 . +I was in the garden all afternoon . 我 整个 下午 都 在 花园里 . +Tom freed the bird . Tom 將鳥 放走 . +Tom was just as excited as Mary . 汤姆 就 和玛丽 一样 兴奋 . +Several cottages have been isolated by the flood water . 好几间 小屋 被 洪水 孤立 起来 了 . +I have never thought of that . 我 從來 沒有 想到 這 一點 . +I can not live without TV . 没有 电视 , 我 无法 生活 . +The problem is that solar energy costs too much . 問題 是 , 太陽 能 太 貴 了 . +She came back an hour later . 一个 小时 后 , 她 返回 了 . +All I want now is a little sleep . 我 现在 只 想 睡 点 觉 . +It is obvious . 它 是 明顯 的 . +Kobe is famous as a port city . 科比 是 一個 著名 的 港口城市 . +I could not control my anger . 我 不能 控制 我 的 愤怒 . +Long skirts are out of fashion now . 現在 長裙 過時 了 . +That requires careful consideration . 這 需要 慎重 考慮 . +I will take care of it . 我 會 關照 它 的 . +Your time is running out . 你 的 时间 快用 完 了 . +What would you like for dessert ? 你 要 什麼 甜點 ? +I do not wash my hair in the morning . 我 早上 不 洗头 . +Please take more care in the future . 以后 请 注意 点 . +He is two years older than you . 他 比 你 大 兩歲 . +My mother was an alcoholic . 我 母亲 是 个 酒鬼 . +They are plotting to kill the king . 他們 正密 謀要 殺害 國王 . +Tom has always been a bachelor . 汤姆 一直 都 是 单身汉 . +It is been snowing all night . 雪 下 了 一整夜 . +How annoying ! 真 烦人 . +If you stay at a big hotel , you can use their swimming pool . 若 你 住 到 的 是 大 的 旅館 , 就 能 使用 他們 的 游泳池 . +Do you know why it is happening ? 你 知道 为什么 它 正在 发生 吗 ? +She was listening to music . 她 听 着 音乐 . +She went to Italy to learn Italian . 她 到 意大利 學習 意大利 語 . +Do you have children already ? 你 已經 有 孩子 了 嗎 ? +I know that you are learning French at school . 我 知道 你 在 學校 學法 語 . +I broke the lock opening the door . 我 开门 的 时候 弄坏了 锁 . +What were you doing at that time ? 當時 你 在 做 什麼 ? +She did not visit me on Sunday but on Monday . 她 沒有 在 星期天 來 找 我 , 而是 星期一 . +I am going to drop in on her next week . 下禮 拜 我 要 去 拜訪 她 一下 . +Who is your teacher ? 谁 是 你 老师 ? +Tomorrow is going to be a big day . 明天 是 个 大 日子 . +Wake me up at seven . 七点 叫醒 我 . +Your plan sounds great . 你 的 計劃 聽 起來 很 不錯 . +I am afraid I can not help you . You must ask someone else . 我 担心 可能 帮不了 你 , 你 需要 找 其他人 帮忙 . +We talked about a variety of topics . 我們 談 了 各種 話題 . +Come whenever you want to . 什么 时候 想来 就 过来 吧 . +Give me something to do . 给 我 点 事 做 . +Not a star was to be seen . 沒 看到 任何 一顆 星星 . +It is up to you . 由 你 來 決定 . +Where did it come from ? 它 从 哪里 来 ? +Classes begin next week . 课程 下周 开始 . +Christmas is a special holiday . 聖誕節 是 一個 特別 的 節日 . +The dog growled at a little boy . 這 隻 狗 對 著 一 個 小男孩 咆哮 . +After supper , I washed the dishes . 晚饭 后 我 洗 了 碗碟 . +Mt . Fuji can be seen from here . 從 這裡 可以 看到 富士山 . +There used to be a lot of frogs in this pond . 以前 在 這個 池塘 裡 有 許多 青蛙 . +His letter makes me uneasy . 他 的 来信 让 我 不安 . +I gave Mary a book . 我 給 了 瑪麗 一本 書 . +He is old enough to drive a car . 他 的 年紀 可以 開車 了 . +If her nose were a little shorter , she would be quite pretty . 若 她 的 姿態 能 再 低 一點 就 更 完美 了 . +Is your family doing well ? 你 的 家人 好 么 ? +She tried to commit suicide . 她 企圖 自殺 . +I had hardly left home when it began to rain heavily . 當雨 開始 下得 很大 的 時候 , 我 幾乎 不能 出門 了 . +The sun was shining , yet it was cold . 虽然 有 阳光 照射 , 但 还是 很 冷 . +Tom bought some flowers for Mary . 湯姆 給 瑪麗 帶 了 些 花 . +She will love her husband forever . 她 會 永遠 愛 她 的 丈夫 . +The only sound to be heard was the ticking of the clock . 唯一 能 听到 的 声音 是 钟 的 滴答声 . +I can not focus on two things at the same time . 我 不能 同時 注意 两件事 . +Tom lost his only son in a car accident . 汤姆 在 一场 车祸 中 失去 了 他 的 独子 . +He placed emphasis on the importance of education . 他 强调 了 教育 的 重要性 . +This book is full of mistakes . 這 本書 充滿 了 錯誤 . +Here we are ! 我們 到 了 ! +Everyone is waiting for Tom . 每個 人 都 在 等 湯姆 . +That bag is mine . 那 是 我 的 包 . +What do you like to do in your free time ? 你 空闲 时间 喜欢 做 什么 ? +You have to go to the hospital . 你 必須 去 醫院 . +I want to stay in a hotel near the airport . 我 想住 在 機場 附近 的 旅館 裡 . +That is our house . 那 是 我們 的 房子 . +I know that feeling . 我 知道 那種 感覺 . +The thunder scared the children . 雷聲 嚇到 孩子 了 . +Which book is yours ? 哪 本書 是 您 的 ? +Sir , that CD is available only by special order . 先生 , 那 盘 CD 需要 预定 才 有 . +A drunk driver was responsible for the car accident . 喝醉 的 驾驶员 对 车祸 有 责任 . +I am not a junior high school student . 我 不是 個 初中生 . +Thank you for coming to meet me . 謝謝 你 來 跟 我 見 面 . +Everything went black . 一切 都 變成 了 黑色 . +Tom decided to stay with Mary . 汤姆 决定 陪 玛丽 在 一起 . +May I open my eyes now ? 我 現在 能 睜 眼 嗎 ? +Tom took over after I left . 我 走 了 后 汤姆 接手 了 . +Cool down . 冷静 点 . +What will tomorrow is weather be like ? 明天 天氣 怎麼樣 ? +You are working too hard . Take it easy for a while . 你 工作 太 勤奋 了 . 休息 一会 吧 . +Tom is able to come to our party tomorrow . 汤姆 明天 能 来 我们 的 聚会 . +Shall we walk ? 我们 该 步行 吗 ? +It is not a cat . It is a dog . 它 不是 猫 . 它 是 狗 . +I do not know for certain when he will come . 我 不 知道 他 来 这里 的 确切 时间 . +I am sad without you . 沒有 你 我 很 悲傷 . +Was there anyone in the room ? 房间 里 有人 吗 ? +Are there problems at home ? 在家 裡 有 問題 嗎 ? +There was no one there besides me . 那儿 除了 我 , 一个 人 都 没有 . +Lots of companies have implemented an eight @-@ hour working day . 很多 公司 實行 8 小 時 工作制 . +That was the first time I 'd seen Tom so angry . 那 是 我 第一次 见到 汤姆 如此 生气 . +I hope you will soon get well . 我 希望 您 快 就 会 好 起来 . +I see a book . 我 看到 一本 書 . +I use this . 我 使用 这个 . +What is this ? 這 是 什麼 啊 ? +She gave out a sigh of relief . 她 鬆 了 一口 氣 . +I am sure you will never regret it . 我 確定 你 永不 後 悔 . +Put the chair in front of the desk . 把 椅子 放在 桌子 前面 . +His sad story touched my heart . 他 悲伤 的 故事 触动 了 我 的 心 . +If he is fluent in English , I will hire him . 如果 他 說 得 一口 流利 的 英文 , 我 就 請 他 為 我 工作 . +This sofa takes up too much space . 這 張沙 發占 了 太 多 空間 . +Everybody knows that he is honest . 大家 都 知道 他 是 誠實 的 . +He worked in a big city hospital . 他 在 一間 很大 的 市立 醫院 工作 . +I love nature . 我 愛 大自然 . +How was your trip ? 你 的 旅行 怎么样 ? +He is familiar with Japanese culture . 他 熟悉 日本 文化 . +Is she Japanese ? 她 是 日本 人 嗎 ? +It will definitely rain . 绝对 将要 下雨 . +This ticket is good for three days . 这 张 票 三日 有效 . +I will be at the meeting . 我会 出席会议 的 . +Get into your car . 进 你 的 车里 . +I know that money is not everything . 我 知道 金钱 不 代表 一切 . +Where do you want to go today ? 你 今天 想 去 哪儿 呀 ? +Wood floats . 木头 会 漂浮 . +This clock is not working . 这 表不走 了 . +My mother likes tea very much . 我 媽媽 很 喜歡 茶 . +The students all laughed . 學生 都 笑 了 . +I told you to stop , did not I ? 我 告訴 了 你 停下 來 , 不是 嗎 ? +Although I was tired , I did what I was able to do . 雖然 我 很 累 , 但是 我 已經 做 了 我 能 做 的 了 . +Do not complain . You have to go . 別 抱怨 了 . 你 必須 去 . +I found out where she was . 我 弄清楚 她 在 哪儿 了 . +I will ask him tomorrow . 明天 我会 问 他 的 . +What is the last thing you remember ? 你 能 记 起来 的 最后 一件 事 是 什么 ? +Would you do me a favor ? 你 能 幫 我 一個 忙 嗎 ? +Come on , trust me . 来 吧 , 相信 我 . +Prices depend on supply and demand . 價格 取決 於 供給 和 需求 . +Where is your house ? 你們 家 在 哪 ? +I love you more than anyone else . 我爱你 胜过 其他 任何 一个 人 . +I bought her a new car . 我 给 她 买 了 辆 新车 . +We got up at dawn to avoid a traffic jam . 我们 黎明 时 起床 以 避开 交通堵塞 . +He is not an idiot . 他 不是 傻 的 . +I am listening to the radio . 我 在 聽 收音 機 . +Tom and Mary have been here for three hours . 湯姆 和 瑪麗 已經 在 這裡 待 了 三個 小 時 . +Where can I go to get a map of Europe ? 去 哪里 可以 买 到 欧洲 的 地图 ? +She died on a cold night in December . 她 在 一个 寒冷 的 十二月 晚上 死 了 . +I will not know until I talk to Tom . 我 不 跟 湯姆 說 就 不 知道 . +I really appreciate what you have done . 我 真的 很 感激 你 所 做 的 一切 . +Where does it hurt ? 哪裡 痛 ? +This is where Tom wants to live . 这 就是 汤姆 想住 的 地方 . +Tom is married to a Canadian named Mary . 汤姆 和 一个 叫 玛丽 的 加拿大人 结婚 了 . +He entered my room without permission . 他 未經 允許 進 了 我 房間 . +This is my notebook . 這 本 是 我 的 筆記 本 . +I hope that Mary passes the examination . 我 希望 瑪麗 通過 考試 . +Would you mind lending me your car ? 你 介意 把 你 的 車 借 給 我 嗎 ? +Prices are double what they were ten years ago . 价钱 是 10 年前 的 2 倍 . +It is easy for a monkey to climb a tree . 对 猴子 来说 , 爬树 很 容易 . +He fell down on the floor . 他 摔倒 在 地 . +I do not go to school by bus . 我 不 乘 公交 去 学校 . +Let is wait till he comes back . 等到 他 回来 吧 . +I was waiting for a taxi . 我 等 着 出租车 . +Do you know him ? 你 认识 他 吗 ? +I always take a bath before going to bed . 我 睡觉 前 总要 洗 个 澡 . +There is a kite flying above the tree . 有 一只 风筝 在 树上 . +He sometimes makes dinner for us . 他 有 時 煮 晚 飯 給 我們 吃 . +Tom wondered why Mary was crying . 汤姆 奇怪 为什么 玛丽 哭 . +You win . 算你狠 . +Give me an orange . 給 我 一個 橙子 . +Tom is from Australia and Mary is from New Zealand . 汤姆 来自 澳大利亚 , 玛丽 来自 新西兰 . +How do you heat the house ? 您 怎么 让 屋子 暖 起来 ? +She kept working . 她 不停 地 工作 . +You do not have to work on Sundays . 你 週日 不必 工作 . +God created the heaven and the earth . 上帝 創造 了 天地 . +I want a boat . 我 想要 一艘船 . +Nobody asked . 没 人 问 过 . +We ought to obey the law . 我们 必须 遵纪守法 . +Can you really not swim ? 你 真的 不 會 游泳 嗎 ? +It took me more than two hours to translate a few pages of English . 翻译 几页 英文 花 了 我 2 个 多 小时 . +How is the weather ? 天氣 怎樣 ? +The law is quite clear . 法律 很 清楚 . +You had better go to the dentist is . 你 最好 去 看 牙 醫 . +Who will provide capital for the venture ? 谁 来 为 风险投资 提供 资金 ? +Tom has never been in prison . 湯姆 從 沒進 過 監獄 . +Let me see . 让 我 想一想 . +Why can not Tom come to us ? 為 甚麼 湯姆 不能 來 我們 這裡 ? +The toilet does not flush properly . 厕所 冲水 不 正常 . +Maybe I should go help Tom . 或許 我 該 去 幫 湯姆 . +They can not see me . 他們 看 不 見 我 . +There is too much salt in this soup . 这 汤 里 盐 放多 了 . +What exactly does Tom do ? 汤姆 究竟 在 做 什么 ? +It would appear that you are wrong . 你 似乎 错 了 . +Why do not you sit down and relax ? 你 為 什麼 不 坐下 來 放 鬆 一下 . +You have nice skin . 你 的 皮膚 真好 . +He failed in his attempt to swim across the river . 他 试图 游 过河 , 但是 失败 了 . +I go to work every day . 我 每天 去 上班 . +Mary came in . 瑪麗 進來 了 . +The police arrested the suspect . 警方 逮捕 了 嫌疑人 . +There are two zeros in the number " 2010 . " 2010 这个 数字 里 有 两个 零 . +I forgot to ask him . 我 忘 了 問 他 . +I like to travel alone . 我 喜欢 独自 旅行 . +Why do you want to leave today ? 你们 为什么 想 今天 走 ? +If you have a question , please raise your right hand . 如果 有 问题 , 请 举起 你 的 右手 . +Give me some milk , too . 也 給 我 一些 牛奶 . +I hate terrorist organizations . 我 痛恨 恐怖主义 组织 . +What were Tom and Mary doing here ? 湯姆 和 瑪麗 在 這裡 做 了 甚麼 ? +I bought a few eggs and a little milk . 我 买 了 几个 鸡蛋 和 一点 牛奶 . +He received quite a few letters this morning . 今天 早上 他 收到 好多 信 . +Tom no longer trusts Mary . 湯姆 不再 相信 瑪麗 了 . +Do not let Tom leave . 别 让 汤姆 走 了 . +We have two ears . 我們 有兩 隻 耳朵 . +Sometimes adults behave like children . 有时候 成人 表现 得 像 儿童 . +Let them learn from us . 让 他们 向 我们 学习 . +There was a cottage on the side of the hill . 山坡 上 有 一个 茅屋 . +It is time to go . 該 走 了 . +Today is one of my friends ' birthday . 今天 是 我 一个 朋友 的 生日 . +I want to get rid of it . 我 想 擺脫 它 . +At least tell me where you are going . 至少 告诉 我们 你 要 去 哪里 . +I was alone in the classroom . 我 独自 待 在 教室 里 . +Tom , you 'd better stay here . 湯姆 , 你 留在 這裡 比較 好 . +I guess that would be all right . 我 想 那 應 該 沒 關 係 的 . +Tom went back to his bedroom . 汤姆 回到 了 他 的 卧室 . +She was arrested by the police . 她 被 警方 逮捕 了 . +I am ready to do anything for you . 我 甘心 为 你 做 任何 事 . +She made the doll for me . 她 為 我 做 了 這個 娃娃 . +I was not drunk . 我 沒醉 . +The city has a large population . 这个 城市 人口众多 . +I hope Tom is not angry . 我 希望 湯姆 不生 氣 . +Do you feel any better today ? 你 今天 感覺 好多 了 嗎 ? +You are really useless . 你 真 沒用 . +Tom is not paying attention . 汤姆 在 开小差 . +I have a new red car . 我 有 一輛 新 的 紅色 汽車 . +My mother gets up early in the morning . 我 妈妈 早上 早起 . +That goes without saying . 不言而喻 . +We climbed Mt . Fuji last summer . 去年 夏天 我們 爬 了 富士山 . +I have never been abroad before . 我 以前 从没 去过 国外 . +We must follow the rules . 我们 必须 遵守规则 . +There is a military base near here . 這 附近 有 一個 軍事 基地 . +Is this bag yours or his ? 那个 包是 你 的 还是 他 的 ? +There are many different people in Europe . 在 欧洲 有 许多 不同 的 人 . +After a storm comes a calm . 否極 泰 來 . +Stand up . 起立 . +I give up . 我 放弃 . +Tom was in Boston last weekend . 湯姆 上 週末 在 波士 頓 . +Tom was there this morning . 汤姆 早上 去过 那里 . +Am I overreacting ? 我 反应 过度 了 吗 ? +Can I speak with the teacher ? 我 能 和 老师 说话 吗 ? +The man is naked . 那人 沒 穿衣服 . +I think what you are doing is wrong . 我 觉得 你 正在 做 的 是 错 的 . +The sun is larger than the moon . 太陽比 月亮 大 . +It is really dark here . I can not see anything . 這裡 真的 很 暗 , 我什麼 都 看不到 . +When I hear that song , I remember my younger days . 每次 听到 这 首歌 , 都 会 让 我 回忆起 自己 年轻 的 时候 . +The book is here . 那本书 在 这里 . +We are sorry we are unable to accept your request . 很 抱歉 , 我们 不能 接受 你 的 要求 . +" Will you have some more coffee ? " " No , thanks . I have had enough . " “ 你 想 再来点 咖啡 吗 ? ” “ 不 , 谢谢 . 我 够 了 . ” +If you hurry you can still make the train . 如果 你 抓紧 , 你 还 能 赶上 火车 . +Tom is hiding a terrible secret . 汤姆 隐藏 着 一个 可怕 的 秘密 . +You can not drink seawater because it is too salty . 你 不能 喝 海水 , 因为 它 太 咸 了 . +I got there in time for the train . 我 准时 赶上 了 火车 . +Let is go to the hospital now . 我们 现在 就 去 医院 吧 . +Let is meet in front of the theater . 讓 我們 在 戲院 前面 碰面 . +The dog attacked the little boy . 這 隻 狗 攻 擊 了 這 個 小男孩 . +Spring is just around the corner . 春天 快 來 了 . +You have to be patient . 你 必須 有 耐心 . +What are you saying ? 你 在 說 什麼 ? +See how high you can jump . 看看 你 能 跳 多 高 . +What time does boarding begin ? 什麼 時候 開始 登機 ? +There must be some way to solve this . 一定 有 解決 的 辦法 . +I do not need to do anything . 我 什么 都 不用 做 . +I want to go wherever you are going . 我 想 去 你 要 去 的 地方 . +My grandmother lives by herself . 我 祖母 獨自 生活 . +She got to the station at seven . 她 七點鐘 到 車站 . +We are encouraged to use our imagination . 我們 被 鼓勵 使用 想像力 . +Please knock before entering . 进来 之前 请 敲门 . +France is to the south of England . 法國 在 英國 的 南邊 . +Put the book back where it was . 把 書 放回 它 原來 的 地方 . +She is older and wiser now . 她 現在 更加 年 長 也 更加 有 智慧 . +Please leave everything to me . 請 把 所有 的 東西 留給 我 . +Tom is coming to our school tomorrow . 湯姆 明天 會來 我們 的 學校 . +Tom tried to return the swimsuit for a larger size , but the clerk told him that was not allowed . 汤姆 试过 还 回 泳衣 来 换成 更 大 一号 的 , 但是 员工 告诉 他 那 是 不 被 允许 的 . +He was sitting between Mary and Tom . 他 坐在 瑪麗 和 湯姆 之間 . +Social customs vary from country to country . 国家 不同 , 习俗 各异 . +You should make good use of this opportunity . 你 要 好好 把握 這個 時機 . +You are working too hard . Take it easy for a while . 你 工作 得 太 辛苦 了 . 放 輕 鬆 一下 . +Stop , or I will shoot . 停止 , 不然 我 就 開槍 了 . +This book is small . 这 本书 小 . +He is used to getting up early . 他 習慣 早起 . +Do you have a soup bowl ? 你 有 碗 盛 湯 嗎 ? +It is a pity that you can not join us . 你 不能 和 我們 一起 來 真 可惜 . +She is weak by nature . 她 天生 体弱 . +Draw a circle . 画 一个圈 . +Trees do not grow on prairies . 樹 不 會 長 在 草原 上 . +Shouting at your computer will not help . 對 你 的 電腦 吼 一點 幫助 也 沒有 . +We watched the children play . 我们 看着 这 孩子 玩耍 . +We have to obey the rules . 我们 必须 遵守规则 . +His room was covered with dust . 他 的 房間 佈 滿 了 灰 塵 . +She has a round face . 她 有 张 圆脸 . +I only wanted to do some good . 我 只 想 做好事 . +The ticket is good for three days . 这 张 票 三日 有效 . +The house is haunted . 這 房子 鬧 鬼 . +Please conduct yourself with dignity . 请 自重 . +The assignment took me longer than I had expected . 我 用 了 比 我 预期 更 长 的 时间 来 完成 作业 . +How about you ? 那 你 呢 ? +I dislike big cities . 我 不 喜歡 大城市 . +I no longer love you . 我 不再 爱 你 了 . +We will have lived here for two years next April . 到 明年 四月 我们 住 在 这儿 就 满 两年 了 . +I do not know if you feel the same as I do . 我 不 知道 你 是否 和 我 有 一样 的 感觉 . +Tom is clean . 湯姆 是 干净 的 . +I want to eat ice cream . 我 想 吃 冰 淇 凌 . +He was in good spirits . 他 精神 很 好 . +He put his hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +We enjoyed swimming in the river . 我們 喜歡 在 河裡 游泳 . +I did not know that he was there . 我 不 知道 他 在 那裡 . +She showed him to his seat . 她 領 他 到 他 的 座位 上 . +I believed you . 我 信过 你 . +Tom is three years younger than Mary is . 汤姆 比 玛丽 小 三岁 . +That is really a great idea . 真是 个 好 主意 ! +Can I pay by credit card ? 我 可以 用 信用卡 付 帳 嗎 ? +Your tie looks good . 你 的 領帶 不錯 . +Her speech moved the audience . 她 的 演说 感动 了 听众 . +She looked after the children . 她 照顧 孩子 們 . +It was foolish of you to accept his offer . 你 真笨 去 接受 他 的 提議 . +Everyone who knew him admired him . 每 一個 認識 他 的 人 都 愛慕 他 . +I ate apples . 我 吃 了 蘋果 . +I hate when other people make me wait a long time . 我 讨厌 别人 让 我 等 很久 . +English is useful in commerce . 英語 在 商業 中 很 有用 . +Did you grade the tests ? 你 給 測驗 評分 了 嗎 ? +Are you busy ? 你 忙 嗎 ? +I saw a beautiful waterfall there . 我 看见 那儿 有个 很 美的 瀑布 . +Could you teach me how to play the piano ? 您 能 教 我 弹钢琴 吗 ? +I was brought up by my grandmother . 我 被 我 的 祖母 撫養 長大 . +Please keep this secret . 請 保守 這個 秘密 . +This is my new guitar . 这 是 我 的 新 吉他 . +Singing is her strong point . 唱歌 是 她 的 强项 . +This is a kind of watermelon . 这 是 一种 西瓜 . +Tom was puzzled by what Mary said . 汤姆 被 玛丽 说 的话 给 难倒 了 . +Are there any English magazines in this library ? 這間 圖書館 有 任何 英語 雜 誌 嗎 ? +Tom only wears a suit on special occasions . 湯姆 只 在 特殊 場 合穿 西裝 . +A great number of books are published every year . 每年 都 有 大量 新书 出版 . +He is studying . 他 在 讀書 . +I would like to buy a house . 我 想 买 套 房子 . +He asked the man to help him . 他 叫 那个 男人 帮助 他 . +Do you like school ? 你們 喜歡 學校 嗎 ? +I have numerous books on my bookshelf . 我 有 大量 的 书 在 我 的 书架上 . +I am staying with a friend . 我 和 一位 朋友 住在一起 . +Could you translate this sentence ? 你 能 翻译 这个 句子 吗 ? +Do you like Japanese food ? 你 喜歡 日本料理 嗎 ? +Is his pulse regular ? 他 的 脈搏 正常 嗎 ? +He was very old . 他 很 老 . +Dad gave me a book , and my little brother gave me a pen . 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 一枝 筆 . +I have to take the book back to the library today . 我 今天 必須 把 書 還 給 圖書館 . +He was paid 10,000 dollars . 有人 付给 他 10000 美元 . +Hunger is the best sauce . 对于 一个 饥饿 的 人 来说 , 任何 食物 都 是 美味 . +How would you like your eggs ? 请问 鸡蛋 要 什么 做法 ? +Married people sometimes wish they were single . 已婚 的 人 有 時候 希望 他們 是 單身 , . +It happens occasionally . 它 偶尔 会 发生 . +The old man sat down . 老人 坐 了 下来 . +Tom got angry at the children . 湯姆 對 孩子 們 生氣 . +Skating is one of my hobbies . 滑冰 是 我 的 嗜好 之一 . +Tom , what would you like to have for dinner ? 湯姆 , 你 晚 飯 想 吃 甚 麽 ? +I am not guilty . 我 没有 罪 . +Tom did not take his shoes off . 汤姆 没 脱鞋 . +The police officer arrested the burglar . 警官 逮捕 了竊 賊 . +I love her . 我 愛 她 . +Tom probably wanted to go swimming . 湯姆 可能 想 去 游泳 . +Tom needs the money . 湯姆 需要 錢 . +Do what you think is best . 做 你 所 想 的 是 最好 的 . +Something is wrong with my typewriter . 我 的 打字 機 好像 有什麼 問題 . +Back in high school , I got up at 6 a.m. every morning . 以前 讀 高中 的 時候 ﹐ 我 每天 早上 六點 起床 . +Bears can climb trees . 熊会 爬树 . +He looks young . 他 看起来 很 年轻 . +Tom said he will ask Mary to do that . 湯姆 說 他 會 讓 瑪麗 去 做 . +Maybe he will be a good teacher . 也許 他 會 是 一個 很好 的 老師 . +Take the road on the right . 走 右邊 的 道路 . +Would you please wait for a few minutes ? 能 不能 请 你 等 几分钟 ? +Stars began to appear in the sky . 星星 開始 在 天空 中 出現 . +This story is true . 这个 故事 是 真的 . +How do you want your hair cut ? 你 想 怎麼 剪 你 的 頭 髮 ? +How about going to the movies ? 我们 去 电影院 怎么样 ? +I was bitten by a mosquito . 我 被 蚊子 叮 了 . +Maybe I am just a fool . 可能 我 就是 個 傻子 . +I am not writing a letter . 我 沒 在 寫信 . +You are blushing . 你 脸红 了 . +Did he look like a doctor ? 他 看 起來 像 個 醫生 嗎 ? +Hop in . 跳进来 . +My father goes jogging every morning . 我 父親 每天 早上 都 跑步 . +I work here . 我 在 這裡 工作 . +Will you drive me home ? 你 會 開車 送 我 回家 嗎 ? +What sports do you like ? 你 喜歡 什麼 運動 ? +Tom is car has been stolen . 汤姆 的 汽车 被 偷 了 . +He came from a tiny mountain town . 他 來 自 一個 小 山城 . +The word is unfamiliar to me . 我 对 这个 单词 不熟 . +Many attended his funeral . 很多 人 都 参加 了 他 的 葬礼 . +I wish to visit Egypt someday . 我 希望 有 一天 去 埃及 . +She took care of the children . 她 照顧 孩子 們 . +I will try it again . 我 會 再 試 一次 . +Do you go often ? 您 经常 去 吗 ? +My brother is good at mathematics . 我 哥哥 擅長 數學 . +Are they both the same ? 他们 都 是 一样 的 吗 ? +He does not have any knowledge about American democracy . 他 一点 都 不 知道 美国 的 民主 . +He abandoned all hope . 他 放弃 了 所有 希望 . +I am tired of your complaints . 我 已經 厭倦 了 你 的 投訴 . +That man grabbed the young girl is wrist . 那個 男人 抓住 了 這個 年輕 女孩 的 手腕 . +Welcome home . 欢迎 回家 . +Do not shoot . 停火 . +I worked as a piano tuner for many years . 我 做 钢琴 调音师 很多年 了 . +The police seem to know exactly where we are . 警察 看來 很 清楚 我們 在 哪裡 . +It is delicious . 很 美味 . +What do you usually do in your free time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +I got your letter yesterday . 我 昨天 收到 了 你 的 信 . +Who buys this type of art ? 谁 买 这种 艺术品 ? +I take a walk every day except when it rains . 除了 雨天 我 每天 都 散步 . +He has access to the American Embassy . 他 有权 出入 美国大使馆 . +Would you mind saying that once more ? 請 你 再 說 一次 好 嗎 ? +She eyed the stranger suspiciously . 她 盯著 可疑 的 陌生人 看 . +He was in time for the appointment . 他 及時 赴約 了 . +We live in the United States . 我們 住 在 美國 . +I know he is watching me . 我 知道 他 在 看著 我 . +We failed due to a lack of preparation . 我們 因 缺乏 準備 而 失敗 了 . +I do not know her , nor do I want to . 我 不 认识 她 , 也 不想 认识 . +I agree completely . 我 完全同意 . +Put handcuffs on him . 把 他 铐 上 . +Excuse me , I have to get off at the next stop . 对不起 , 我 要 在 下 一站 下 . +The moon was full last night . 昨晚 月亮 满 了 . +I would like to try on this dress . 我 想 試穿 這件 衣服 . +Please give me a cup of water . 请 你 给 我 一杯 水 . +Why blame Tom ? 为什么 责备 汤姆 ? +Do you read French every day ? 你 每天 读 法语 吗 ? +Tom knows my number . Tom 知道 我 的 號碼 . +Who teaches you French ? 谁 教 你们 法语 ? +I am near the station . 我 在 車站 附近 . +My grandmother has a green thumb . 我 祖母 是 個園 藝 巧手 . +She graduated in 1996 . 她 在 1996 年 畢業 . +Would you like some cream in your coffee ? 你 要 在 咖啡 上加 些 奶油 嗎 ? +He was scared when the monkey jumped at him . 猴子 跳到 他 身上 的 时候 , 他 受到 了 惊吓 . +They are not dead . 他們 沒死 . +Tom is life was changed forever . 湯姆 的 生活 被 彻底 改變 了 . +What did you do last night ? 你 昨天晚上 做 什麼 ? +I 'd do anything for Tom . 我会 为 汤姆 做 任何 事 . +Are you doing anything special ? 你 在 做 什麼 特別 的 事 嗎 ? +He promised to come , but he did not come . 他 保证 过会 来 却 没有 来 . +I do not approve your decision . 我 不 同意 你 的 決定 . +Were you in Boston last summer ? 你 上个 夏季 在 波士顿 吗 ? +Wait for a moment outside the room . 在 房間 外面 等待 片刻 . +May I borrow your car ? 我 可以 借用 你 的 車 嗎 ? +What would you think if I did that ? 如果 我 那么 做 你 会 怎么 想 ? +It must be around here somewhere . 我 想 應該 在 這 附近 . +You seem to be a little under the weather . 你 看上去 不太好 . +She accused me of making a mistake . 她 指責 我 犯 了 錯 . +It is a matter of life and death . 这 是 一个 生 和 死 的 问题 . +Please take a deep breath . 请 深 吸 一口气 . +The moon is already out . 月亮 已經 出來 了 . +Tom could be Canadian . 汤姆 可能 是 加拿大人 . +Tom wanted Mary is phone number , but she refused to give it to him . 汤姆 想要 玛丽 的 电话号码 但是 被 拒绝 了 . +Their father is a taxi driver . 他們 的 父親 是 一個 計程 車司 機 . +The early bird catches the worm . 早起 的 鸟儿 有 虫 吃 . +I have just been to the post office . 我 剛剛 去 了 郵局 . +What have you come here for ? 你们 来 这儿 干嘛 ? +Who is that man ? 那 男人 是 谁 ? +Only a few people understood me . 只有 一些 人 了解 我 . +Not knowing what to say , he remained silent . 因為 不 知道 該 說 什麼 , 他 保持沉默 . +Do not cry . 别哭 . +Ever since she fell in the kitchen , she has not been all there . 自從 她 在 廚房 裡 摔倒 後 , 她 不曾 再 到 那裡 . +Believe it or not , she has three children . 她 有 三个 孩子 , 信不信 由 你 . +Your work is below average . 你 的 工作 表現 低 於 平均水平 . +Call me at 9 : 00 tomorrow . 明天 九点 打电话 给 我 吧 . +He neglected his duties . 他 怠忽 職 守 了 . +Tom is not foolish . 汤姆 不 傻 . +He was completely engrossed in the book . 他 完全 沉浸 在 書裡 . +What will you make ? 你 會 做 什麼 ? +I want to travel with you . 我 想 和 你 去 旅行 . +I do not know how to handle children . 我 不 知道 如何 對待 孩子 . +The doctors are looking at an x @-@ ray . 医生 在 观察 X光 片 . +As far as I know , there is nothing wrong with his plan . 據 我 所知 , 他 的 計畫 沒有 出差 錯 . +How dare you say that ! 你 怎么 敢 那么 说 . +I will tell Tom you said that . 我 會 告訴 湯姆 你 說 了 那話 . +Stock prices plunged to a record low . 股票 價格 跌 至 歷史 新低 . +You will not be late , will you ? 你 不 會 遲 到 , 是 嗎 ? +When the cat is away , the mice will play . 貓兒 不 在 , 老鼠 玩 的 輕 鬆 自 在 . +Where is my father ? 我 父亲 在 哪里 ? +This car handles very easily . 这 车 容易 开 . +I think you should get more rest . 我 觉得 你 应该 多 休息 一会儿 . +Is this something you want ? 这 是 你 要 的 吗 ? +Each student has a locker . 每個 學生 都 有 一 櫃子 . +I wish I could give up smoking . 我 希望 能够 戒烟 . +She likes cooking for her family . 她 喜欢 为 她 的 家人 做饭 . +Can you speak French well ? 你 法语 说得好 吗 ? +Tom can not get his car started . 汤姆 没法 发动 他 的 车 . +Are you friends ? 你們 是 朋友 嗎 ? +Let me have a look . 讓 我 看看 . +This book is easy to read . 這 本書 很 容易 讀 . +I can not help feeling sorry for him . 我 不禁 為 他 感到 難 過 . +Spanish is her mother tongue . 西班牙语 是 她 的 母语 . +Someone is watching . 有人 在 监视 . +I gave it to the little boy . 我 把 它 給 這個 小男孩 . +Come on in . 进来 . +It was lucky for you that you found it . 你 很 幸運 找到 了 它 . +He is going to be an engineer . 他 將 成為 一名 工程 師 . +It is no use your begging him for help . 你 求 他 帮忙 没有 用 . +There are three of us . 我們 是 三個 人 . +With a firm goal in mind , you will do well . 有 了 坚定 的 目标 , 你 会 做 得 很 好 . +I want to go and change into that shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +The building is one hundred meters high . 該 建築 高 一百 公尺 . +She is on a diet . 她 在 节食 . +He collected bits of information . 他 收集 了 一些 訊息 . +I get a kick out of life . 我 為 人生 感到 很 開心 . +Be careful not to fall . 小心 别 摔倒 了 . +I am sorry , but it is impossible . 我 很 抱歉 , 但 它 是 不 可能 的 . +Tom was a nurse . 汤姆 是 个 护士 . +What subjects do you like the best ? 你 最 喜歡 什麼 科目 ? +You did not protect me . 你 没有 保护 我 . +The barber gave him a haircut . 理 髮 師 為 他 理 了 頭 髮 . +Does that belong to Tom ? 这 是 汤姆 的 东西 吗 ? +Let me check your ticket . 讓 我 看 一下 你 的 票 . +He has gone to London . 他 去 了 伦敦 . +Oh no ! 不会 吧 . +Have you ever climbed Mt . Yari ? 你 曾 爬 過 槍 岳 嗎 ? +I waited for her for a really long time . 我 真的 等 了 她 很 長 一段 時間 . +I did not expect that result . 我 没有 期望 得到 这样 的 结果 . +Choose whichever you like . 選 你 喜歡 的 . +My car is at your disposal . 你 可以 随便 用 我 的 车 . +Today was fun . 今天 很 有趣 . +She had two accidents within a year . 她 一年 裡 遇到 了 兩次 事故 . +I am able to speak . 我 能 说 . +He got his meaning across to me . 他 把 他 的 意思 對 我 講 清楚 了 . +Were you able to do everything you wanted to get done ? 你 是不是 有 能力 做到 你 想要 完成 的 所有 事情 呢 ? +He said it merely as a joke . 他 这么 说 就是 为了 开玩笑 . +Tom disassembled the clock . 汤姆 把 钟 拆开 了 . +I want to learn how to swim . 我 想 学习 如何 游泳 . +It seems that most people only barbeque in the summer . 人們 似乎 只 在 夏天 烤肉 . +She can never keep a secret . 她 永远 也 做 不到 保守 秘密 . +Tom cares about you . 汤姆 关心 你 . +I would like to make a call to Tokyo , Japan . The number is 3202 @-@ 5625 . 我 想要 打 个 电话 到 日本 东京 , 号码 是 3202 - 5625. +Paper was invented by the Chinese . 紙 是 由 中國 人 發明 的 . +No fewer than 50 passengers were killed . 不下 50 个 乘客 死 了 . +I am accustomed to working hard . 我 习惯 辛勤努力 地 工作 . +I am on my way back to Boston . 我 在 回 波士顿 . +He is going to have a heart attack . 他 的 心臟病 要 發作 了 . +This diamond is not real . 这 颗 钻石 不是 真的 . +My parents are not old yet . 我 父母 还 不 老 . +She does not have any enemies . 她 没有 敌人 . +It is on the sofa . 它 在 沙發 上 . +After running up the hill , I was completely out of breath . 跑 上山 後 , 我 完全 喘 不 過 氣 來 . +Florence is the most beautiful city in Italy . 佛罗伦萨 是 意大利 最 美丽 的 城市 . +He confessed to the murder . 他 供认 了 杀人 的 罪行 . +Wait just a moment . 就 等 一會兒 . +I do not think that she will come . 我 不 認為 她 會 來 . +If I were to tell you all I know , you would be amazed . 要是 我 告诉 你 我 所知 的 一切 , 你 会 被 惊呆 的 . +Tom bought a car . 湯姆 買 了 輛 車 . +Is this the right bus for Boston ? 這輛 是 去 波士 頓 正確 的 巴士 嗎 ? +It makes no difference to me . 這 對 我 沒 什麼 差別 . +Do you play any instruments other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +I wish that Tom would agree to do that . 我 希望 湯姆 能 同意 . +Maybe you should just fire Tom . 或许 你 就 应该 把 汤姆 开 除掉 . +I truly do not understand the question . 我 真的 不 懂 这个 问题 . +I have some money . 我 有 一些 錢 . +You are terrible . 你 真 壞 . +I can not afford to pay so much . 我 付不起 這麼 多 錢 . +He always gets bullied at school . 他 在 學校 老 是 被 人 欺負 . +Tom asked for food . 汤姆 要 食物 . +I was afraid I 'd be late . 我 怕 我 會 遲 到 . +He made his way to the room . 他 走進 了 房間 . +Every one of his songs was a hit . 他 的 每首歌 都 长期 备受 欢迎 . +That is a good plan . 那 是 一個 很好 的 計劃 . +Tom did a lot of great things . 汤姆 做 了 许多 大事 . +Do you guys want to go with me ? 你們 要 和 我 一起 去 嗎 ? +I am not saying that what she did was right . 我 不是 說 她 做 的 是 對 的 . +The huge explosion killed six people . 大 爆炸 致死 六 人 . +Are you laughing at me ? 你 在 嘲笑 我 吗 ? +I prefer red wine to white . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +Is it true you are trying to do that ? 你 真的 要 试 着 那样 做 吗 ? +We have a warrant to search your apartment . 我们 有权 搜查 你 的 公寓 . +Which cup is yours ? 哪个 杯子 是 你 的 ? +She got on a bus for Harajuku . 她 搭上 了 去 原宿 的 巴士 . +It had to be Tom that did that . 一定 是 汤姆 做 的 . +All of a sudden , the enemy bombs came down on us like rain . 突然 间 , 敌人 的 炸弹 像 雨点 一样 落向 我们 . +You are free to go home . 你 隨時 可以 回家 . +There are five patients in the waiting room . 等候 室里 有 五位 患者 . +All of the students were present . 所有 學生 都 出席 了 . +How soon do you need it ? 你 多久 后 需要 它 ? +The weather was not only cold , but also wet . 天气 又 冷 又 湿 . +The weather turned better . 天氣 轉好 了 . +This stuff is worth its weight in gold ! 這個 東西 很 有 價值 . +It seems that Tom is lying . 看來 湯姆 在 說謊 . +I am trying to save room for dessert . 我 尽量 留 着 胃 吃 甜点 . +Everybody says I look like my father . 每個 人 都 說 我 看 起來 像 我 爸爸 . +I will give you a call as soon as I get home . 我 一 回到 家 就 打电话 给 你 . +Would you like some scrambled egg ? 你 想要 來 些 炒蛋 嗎 ? +Sunday is not a workday for me . 星期天 不是 我 的 工作日 . +Look at that tall building . 看 那棟 高樓 . +It is dangerous ! 它 是 危險 的 ! +He was wounded in the shoulder . 他 伤 了 肩膀 . +Could you take this , please ? 請 你 拿 這個 好 嗎 ? +How do I change my cell phone is ringtone ? 我 要 怎麼 換 我 的 手機 鈴 聲 呢 ? +I think I understand . 我 想 我 懂 了 . +I have a stupid question . 我 有 一個 愚蠢 的 問題 . +I will make you happy . 我会 让 你 幸福 的 . +I have never seen that guy before . 我 從 沒看 過 那個 人 . +We are fed up with your complaining . 我們 受夠 了 你 的 抱怨 . +I have forgotten his name . 我 已经 忘 了 他 的 名字 . +I do not smoke weed . 我 不 吸 大麻 . +By the way , are you free tonight ? 顺便 问 一句 , 你 今晚 有空 吗 ? +I am willing to attend the meeting . 我 願意 參加 這場 會議 . +How old do you think Tom is ? 你 觉得 汤姆 有 多 大 ? +My income has decreased ten percent . 我 的 收入 減少 了 百分之十 . +Tom stood up from his chair . 汤姆 从 椅子 上 站 了 起来 . +Go away before they see you here . 在 他们 看见 你 之前 离开 这儿 . +We had a lot of visitors yesterday . 我們 昨天 有 許多 訪客 . +I always lock my room . 我 總是 鎖 上 我 的 房間 . +I do not like it . 我 不 喜欢 . +She woke up on her own . 她 自己 起床 的 . +She made him a new suit . 她 為 他 做 了 一套 新 衣服 . +I am a professor . 我 是 大学教授 . +What is your marital status ? 能 告诉 我 你 的 婚姻状况 吗 ? +Do not look at Tom . Look at me . 不要 看 湯姆 . 看著 我 . +Tom owns a yellow sports car . 汤姆 有 一辆 黄色 跑车 . +This is an exception to the rule . 这 是 一个 例外 . +Perhaps you are right . 也许 您 有 道理 . +My sister resembles my grandmother . 我 的 姐姐 就 像 我 的 祖母 . +I am the only one who can do that . 我 是 唯一 能 做到 那个 的 人 . +Give me a light , would you ? 借 個 火 , 好 嗎 ? +Any one of us could do it . 我們 之中 任何 一個 都 能 做到 . +I am not really prepared . 我 沒有 真的 準備 好 . +Life begins when we realize who we really are . 当 我们 明白 真正 的 自己 时 , 生活 开始 了 . +He gave in . 他 让步 了 . +Behave yourself . 规矩 点 . +They are proud of their daughter . 他們 以 他們 的 女兒 為 榮 . +Tom told me he had a right to see it . 汤姆 告诉 我 他 有权 看 它 . +Do not pull my leg ! 不要 拉 我 的 腿 ! +I do not understand much about it . 这 里面 我 有 很多 不懂 的 . +I did not tell them . 我 沒 告訴 他們 . +That flower smells sweet . 那 花闻 起来 很 香 . +You may leave your bag here . 你 可以 把 你 的 袋子 留在 這裡 . +The teacher cannot have said such a thing . 老师 不 可能 说 过 这样 的 事 . +He has poor eyesight . 他 的 视力 不 佳 . +The children ran down the hill . 孩子 們 跑 下 了 山丘 . +She does not get outdoors much . 她 沒 有常 到 戶外 . +She hated her husband . 她 恨 她 的 丈夫 . +I do not care as long as you are happy . 只要 你 开心 就行了 . +From the look of the sky , it may rain in the afternoon . 從 天色 看 起來 , 下午 可能 會 下雨 . +Drunk driving is a serious problem . 酒 驾 是 个 严重 的 问题 . +It is getting warmer day by day . 天 日渐 回暖 . +They were good . 他们 不错 . +Do you get along with your boss ? 你 跟 老板 合得来 吗 ? +It seems that he is happy . 看來 , 他 很快 樂 . +I would like to attend the party . 我 想要 出席 排队 . +I do not think that she looks like her mother . 我 不 觉得 她 像 她 妈妈 . +That house is the place where I was born . 那 房子 是 我 出生 的 地方 . +Tennis is very popular among students . 网球 在 学生 中 非常 流行 . +Tom wants to sleep on it . 汤姆 想 在 它 上面 睡觉 . +I spent last Sunday reading a novel . 我 上週 日 花 時間 看 了 一本 小 說 . +I hugged him tightly and cried . 我 緊緊 地 抱著 他 哭 . +I did nothing during the holidays . 在 假期 中 我 無所 事事 . +Entering the house , I tripped over the mat . 进 家门 后 , 我 被 垫子 绊倒 了 . +Are there reserved seats on the train ? 火車 上 有 預訂 的 座位 嗎 ? +I dreamed about you . 我 梦 到 你 了 . +This is none of your business . 跟 你 没 半 毛钱 关系 . +Please take more care in the future . 请 你 将来 注意 点 . +Put your hands up ! 手 举 起来 . +I am very happy to hear about the party . 我 听到 聚会 的 事 很 高兴 . +Cherry blossoms are very beautiful . 櫻花 非常 漂亮 . +Please give me something hot to drink . 請 給 我 一些 熱 的 東西 喝 . +Your mother must have been beautiful when she was young . 你 母親 年輕 的 時候 一定 很美 . +There are many more students in the classroom today than yesterday . 今天 教室 裡 的 學生 比 昨天 還 要 多 . +I resign . 我 放弃 . +Japanese history is my favorite subject . 日本 歷史 是 我 最 喜歡 的 科目 . +Are you interested in foreign languages ? 你们 对 外语 感兴趣 吗 ? +How did you feel about that ? 关于 那件事 你 之前 怎么 想 的 ? +It is a dead end . 这 是 个 死胡同 . +That medicine is not going to help . 那 药 不会 管用 . +What was that you just said ? 你 刚 说 了 什么 ? +Tomorrow I am going to Shanghai . 我 明天 要 去 上海 . +Could you shut the door ? 你 能 把 門關 上 嗎 ? +There were only six people at the party . 只有 六個 人 參加 了 派 對 . +I did not like it . 我 没有 喜欢 过 . +I do not want to get a suntan . 我 不想 晒黑 . +I wish you had told me the truth . 我 希望 你 告訴 我 真相 了 . +I hope everything goes well . 我 希望 万事如意 . +She gave him a lot of money . 她 给 了 他 很多 钱 . +He went to London via Paris . 他 经由 巴黎 去 了 伦敦 . +Daddy loves to say funny things . 爹 地 喜歡 講 有趣 的 事 . +Eating habits differ from country to country . 各國 有 不同 的 飲食 習慣 . +He looked young beside his brother . 他 在 他 弟弟 旁边 显得 很 年轻 . +There are a lot of hot springs in Japan . 日本 有 很多 温泉 . +Who exactly is responsible ? 究竟 谁 要 负责 ? +He has made little progress in his English . 他 的 英语 有 了 小小的 进步 . +You should not talk to Tom that way . 你 不該 那樣 跟 湯姆 講 話 . +There is a bag on the desk . 书桌上 有 一个包 . +He is a DJ . 他 是 一个 DJ . +Tom knew Mary would not let him down . 汤姆 知道 玛丽 不会 让 他 失望 . +I do not understand its significance . 我 没有 领会 这个 意义 . +He is lacking in experience . 他 缺乏 經驗 . +The girl was gazing at the doll . 女孩 凝视着 洋娃娃 . +Why did you cry ? 你 为什么 哭 ? +Nothing is worse than war . 没有 什么 比 战争 更糟 的 了 . +It is against the law to carry weapons . 攜帶 武器 是 違法 的 . +Add a tiny pinch of salt . 加 一丁 點 鹽 . +Call home ! 打电话 回家 ! +I was a little bit nervous . 我 有点 紧张 . +Tom brought Mary some juice . Tom 幫 Mary 買 了 點 果汁 . +This beach is a paradise for surfers . 这个 海滩 是 冲浪者 的 天堂 . +There is no time for explanation . 没 时间 解释 . +She cried as she read the letter . 她 一邊 讀 這 封信 一邊 哭 . +I can not believe Tom just did that . 我 不敢相信 汤姆 那么 做 了 . +I do not believe that ghosts exist . 我 不 相信 鬼魂 存在 . +Take off your socks , please . 請 脫下 你 的 襪子 . +I will be a doctor someday . 我 有朝一日 会 成为 一名 医生 . +I hope he will wait for me . 我 希望 他 會 等 我 . +You can get a loan from a bank . 你 可以 从 银行贷款 . +That is not fair . 這 不 公平 . +I still prefer to write letters by hand . 我 更 喜欢 用 手 写信 . +Everyone should bring their own lunch . 每個 人 都 應 該 帶 自己 的 午餐 . +The things he says are entirely inconsequential . 他 说 的话 根本 毫无意义 . +He will be my deputy while I am away . 我 不 在 的 时候 , 他 将 是 我 的 代理人 . +I can not tell you how to pronounce the word . 我 不 知道 怎么 告诉 你 这个 词 的 发音 . +We have to find out where Tom is . 我们 必须 查明 汤姆 在 哪里 . +We are still vulnerable . 我们 还是 脆弱不堪 . +You are bound to fail . 你 注定 失败 . +Felicja likes to watch TV . Felicja 喜歡 看電視 . +What did you say your name was ? 你 說 你 叫 什麼 名字 ? +I think Tom is sleeping . 我 以為 湯姆 在 睡覺 . +I would like to go with you . 我 想 和 你 一起 走 . +Hurry up , or you will miss the train . 快点 , 不然 你 就要 错过 火车 了 . +You have to go . 你們 得 走 了 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +I am stuck in my job . 我 被 工作 困住 了 . +Such a thing can not happen in Japan . 這樣 的 事情 不 可能 在 日本 發生 . +I have no home to return to . 我 無家 可回 . +Does any other country fan the flames of patriotism as much as America ? 有没有 一个 国家 比 美国 更 提倡 爱国主义 ? +You will never know the truth . 你 永远 不会 知道 真相 . +You should go . 你 應 該 去 . +Do not talk in the classroom . 別 在 教室 裡 說 話 . +She gave him a sweater . 她 给 他 一件 毛衣 . +I have been told Tom is going to be fired . 有人 告訴 過 我 湯姆 要 被 開除 . +He who laughs last , laughs best . 最 後 笑 的 人 , 才 是 笑 得 最 得意 的 人 . +How many languages can you speak ? 你 會 說 多少 種 語言 ? +She is a stubborn girl . 她 是 个 倔强 的 女孩 . +I was in the bathroom . 我 当时 在 卫生间 . +Thousands of foreigners visit Japan every year . 每年 有 成千上万 的 外国人 访问 日本 . +Do not let him play with your phone . 別 讓 他 玩 你 的 手機 . +The main problem with Tom is that he has no sense of humor . 汤姆 的 主要 问题 是 他 一点 幽默感 都 没有 +Where did you get your camera repaired ? 你 在 哪儿 修 的 照相机 ? +The sky is full of dark clouds . 天空 乌云密布 . +His work is washing cars . 他 的 工作 是 洗車 . +The old man starved to death . 這位 老人 餓死 了 . +The ages of the two children put together was equivalent to that of their father . 两个 孩子 的 年龄 加 起来 和 他们 的 父亲 相当 . +She felt herself being lifted up . 她 覺得 自己 好像 被舉 起來 了 . +He betrayed her secret to his friends . 他 把 她 的 秘密 告诉 了 他 的 朋友 . +Do you know how far it is from the station to city hall ? 你 知道 从 火车站 到 市政府 有 多 远 ? +Can I use your pen ? 我 可以 用 你 的 筆 嗎 ? +When does the movie start ? 电影 什么 时间 开始 ? +Tom encouraged Mary to learn how to speak French . 汤姆 鼓励 玛丽 学 着 说 法语 . +Where is the bank ? 银行 在 哪里 ? +Every time I went to his place , he was studying . 每次 我 去 他 住 處 , 他 都 在 讀書 . +If you pass this test , you could graduate next month . 如果 你 通過 這個 考試 , 你 下個月 就 可以 畢業 了 . +I need a taxi . 我 需要 一輛 出租 車 . +Do not you ever clean your room ? 你 從 不 清 掃 你 的 房間 嗎 ? +Do not tell anyone our plan . 不要 把 我们 的 计划 告诉 任何人 . +Swimming is easy . 游泳 很 容易 . +I am not a native speaker . 我 不是 个 母语 者 . +Yes . That is right . 是 的 . 沒錯 . +May I have a napkin , please ? 請 給 我 一張 餐巾 紙 好 嗎 ? +Did you buy juice ? 你 有 買 果汁 嗎 ? +I will go there even if it rains . 即使 下雨 我 也 會 去 那裡 . +They must really hate me . 他们 一定 很 恨 我 . +There is no place like home . 金窩 銀窩 不如 自己 的 狗 窩 . +The map is on the wall . 地图 挂 在 墙上 . +You need to seek help . 你 需要 尋求 協助 . +A cooking course should be mandatory in schools . 烹饪 课程 应该 作为 学校 的 必修课 . +Tom has just returned from the post office . 湯姆剛 從 郵局 回來 . +Well , let is get the ball rolling . 那麼 , 讓 我們 開始 進行 吧 . +We want to know . 我們 想 知道 . +It is true . 這 是 真的 . +It is impolite to stare at people . 盯著 人 看 是 不 禮貌 的 . +He is determined to go to England . 他 决心 去 英国 . +Are those explosives ? 那些 是 爆炸物 嗎 ? +My house is fully insured . 我 的 房子 绝对 保险 . +Drink this juice . 喝 這 果汁 . +I think Tom is athletic . 我 认为 汤姆 好 运动 . +Which of these rackets is yours ? 這些 球拍 中 哪 一支 是 你 的 ? +No matter how much I think about it , I can not understand it . 无论 怎么 去 想 我 都 搞不清楚 . +Tom has visited Boston . 汤姆 去过 波士顿 . +May I open the window ? 可以 开窗 吗 ? +After Tom lost his job , he started to gamble to cope with his depression . 湯姆 失業 後 , 為了 排遣 鬱悶 的 心情 而 開始 了 賭博 . +One out of 455 women does not realize she is pregnant until the twentieth week of pregnancy . 455 名婦 女 中會 有 一名 直到 懷孕 第二十 週前 沒 有意 識到 自己 懷孕 . +I do not know what I 'd do without you . 我 不 知道 如果 沒 了 你 我 還 能 做 什麼 . +He can not swim . 他 不 會 游泳 . +Could you come to tomorrow is meeting ? 你 能 来 参加 明天 的 会议 吗 ? +He is scared of that dog . 他 怕 那 只 狗 . +They studied English yesterday . 他們 昨天 學習 英語 . +We want two taxis . 我們 要 兩輛 出租 車 . +She dived into the swimming pool . 她 跳入 了 游泳池 . +What is your native language ? 你 的 母语 是 什么 ? +His voice is pleasant to listen to . 他 的 声音 很 悦耳 . +I work every day except for Sundays . 我 除了 星期天 外 每天 都 上班 . +Who wrote these stories ? 誰 寫 了 這些 故事 ? +How long does it take to get from here to your house on foot ? 从 这里 步行 到 你家 要 多长时间 ? +I do not think Tom is going to be too much help . 我 认为 汤姆 帮不上 大忙 . +I saw a strange woman there . 我 看见 一位 陌生 女人 在 那儿 . +I am sorry I did not call . 我 很 抱歉 我 没有 打电话 . +You look very good . 你 看上去 很 好 . +He does not know how to write a letter in English . 他 不 知道 如何 用 英语 写信 . +We loaded a lot of luggage into the car . 我們 往 車裡 装 了 很多 行李 . +The population of the city is about 100,000 . 这 座 城市 的 人口 约 有 100 000. +Do you know how many people in the world starve to death every year ? 你 知不知道 全世界 每年 有 多少 人 饿死 呀 ? +Tom is a good friend . 汤姆 是 个 好 朋友 . +I am dying for a cold drink . 我 迫切需要 冷饮 . +Nobody believed what I said . 没有 人 相信 我 说 的话 . +It was a very stupid decision . 这 是 一个 十分 愚蠢 的 决定 . +The old man lived by himself . 老人 独自 生活 . +He looks strong . 他 看 起來 很 強壯 . +Stay right here and relax . 待 在 這里 , 放 鬆 . +I have more experience than Tom . 我 比 汤姆 更 有 经验 . +You are not too bad @-@ looking . 你 看 起來 不 難 看 . +There is an orange on the table . 桌上 有 一只 橙子 . +I want a dozen cream puffs . 我 要 一打 奶油 泡芙 . +My parents usually speak to each other in French , even though my mother is a native English speaker . 我 父母 通常 用 法语 对话 , 即使 我 母亲 的 母语 是 英语 . +I am very interested in languages . 我 对 语言 很感兴趣 . +I saw him looking at me . 我 看見 他 在看 我 . +Those were difficult times . 那 是 困难 时期 . +Should I buy something for him ? 我 應 該 買 些 東西 給 他 嗎 ? +You 'd better not have driven my car . 你 最好 不要 開 了 我 的 車 . +The fish he caught yesterday is still alive . 他 昨天 抓住 的 鱼 一直 还 活着 . +A foreign language cannot be mastered in a year or so . 一個 外國 語言 無法 在 一年 左右 就 被 掌握 . +My aunt made a new skirt for me . 我 舅母 做 了 一條 新 裙子 給 我 . +Almost everybody was invited . 幾乎 每個 人 都 被 邀請 了 . +At last , the bus stopped . 公车 最终 停 了 下来 . +My father always said that heaven helps those who help themselves . 我 父親 總是 說 天助 自助 者 . +What are your strong points ? 你 的 强项 是 什么 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +" The phone is ringing . " " I will get it . " “ 电话响 了 . ” “ 我 去 接 . ” +He lives alone . 他 独自 生活 . +Where is the city hall ? 市政府 在 哪裡 ? +He speaks too fast . 他 说话 太 快 了 . +I will stay with Tom until you get back . 你 回来 之前 我会 跟 汤姆 在 一起 . +I started thinking about Tom . 我 开始 想起 汤姆 . +The mountain was covered with snow . 這 座 山 被 雪 覆蓋 著 . +I can not stand that kind of politician . 我 不能 忍受 那種 政治家 . +Who cares ? 爱 谁 谁 . +We want to hear it . 我们 想 听听 . +She went on working . 她 继续 工作 . +I do not want to talk to you . 我 不想 跟 你 说 ! +Your family is waiting for you . 你 的 家人 在 等 你 . +Tom does not like doing homework . 汤姆 不 喜欢 做作业 . +I have to go to the bathroom . 我 要 去 廁所 . +He meets his girlfriend on Saturdays . 他 每 週六 和 他 的 女朋友 見面 . +I do not want to have an operation . 我 不想 接受 手術 . +We are a family . 我們 是 個 家庭 . +Mary is an exceptionally beautiful girl . 瑪麗 是 一個 非常 漂亮 的 姑娘 . +I will go shopping tomorrow . 我 明天 要 去 购物 . +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +All of his family work on a farm . 他 全家 都 在 农场 工作 . +Did Tom talk to Mary ? 汤姆 跟 玛丽 说话 了 吗 ? +She raised her voice . 她 提高 了 她 的 嗓音 . +He felt his heart beating fast . 他 覺得 他 的 心跳 加速 . +I feel hopeful about the future . 我 對 未來 感到 有 希望 . +A baby is sleeping in the cradle . 一個 嬰兒 在 搖籃 裡 睡覺 . +Compare your translation with his . 比較 你 和 他 的 翻譯 . +We were disappointed to hear that Tom could not get a visa . 我们 很 遗憾 地 听说 , 汤姆 没 能 拿到 签证 . +We knew it all along . 我们 一 开始 就 知道 . +You are a beautiful young woman . 你 是 一个 美丽 的 女孩 . +My father is far from artistic . 我 父親 一點 也 不 懂 藝術 . +What prevented you from coming earlier ? 為 什麼 你 不能 早點 來 ? +I do not even want to think about what could happen . 我 甚至 不想 去 想 會 發生 什麼 . +Give me something to write with . 給 我些 可以 寫 字 的 東西 . +Do not believe what she says . 不要 相信 她 說 的 話 . +It is later than you think . 時間 比 你 想 的 還 要 晚 . +The old cottage has a certain charm about it . 旧村 屋 有 它 自己 一定 的 魅力 . +Do you have tinnitus ? 你 耳鸣 吗 ? +Do not you know what happened yesterday ? 你 不 知道 昨天 發生 什麼 事 嗎 ? +One hundred and fifty people entered the marathon race . 150 个人 参加 了 马拉松 比赛 . +I am studying at the University of Hyogo . 我 在 兵库县 立 大学 学习 . +I think Tom is very cool . 我 認為 湯姆 很酷 . +She was afraid to cross the road . 她 怕 過 馬 路 . +He likes traveling and so do I. 他 喜欢 旅行 . 我 也 是 . +Can I use your dictionary for a minute ? 我 能 用 一下 你 的 字典 吗 ? +Tom should wait until Monday . 汤姆 应该 等到 星期一 . +That red car hit the blue van . 那輛 紅色 汽車 撞到 了 藍 色 麵 包 車 . +Tom wrung out the towel and hung it up to dry . 汤姆 拧干 毛巾 挂 起来 晾干 . +Facts are stubborn things , but statistics are pliable . 事实 是 倔强 的 , 但 统计 是 柔顺 的 . +I like candy . 我 喜歡 甜食 . +Tom is speech was excellent . 湯姆 的 演講 非常 好 . +Tom and Mary have three cats and two dogs . Tom 和 Mary 有三隻貓和兩 隻 狗 . +Money has changed his life . 金钱 改变 了 他 的 生活 . +You ask too many questions . 你 问题 太 多 了 +I like beans . 我 喜欢 豆子 . +Tom is a good friend of yours , is not he ? 湯姆 是 你 的 好 朋友 , 不是 麼 ? +We need assistance . 我們 需要 幫助 . +Do not you think so ? 你 不 这么 认为 吗 ? +Tom continued his investigation . 湯姆 繼續 他 的 調查 . +He is married to an American lady . 他 和 一个 美国 女人 结婚 了 . +We will go when the rain stops . 當雨 停 了 , 我們 就 會 去 . +I told them to send me another ticket . 我 請 他們 再寄 給 我 一張 票 . +Now I remember . 现在 我 想 起来 了 . +He once knew her , but they are no longer friends . 他 过去 认识 她 , 但 他们 现在 不再 是 朋友 了 . +Kiss me . 吻 我 . +We have got to have determination . 我們 要 下 決心 了 . +The poet expressed his burning passion for the woman he loved . 詩人 對 他 愛 的 女人 表達 了 他 火熱 的 激情 . +Please wash my back . 請 幫 我 洗 背 . +Please help me . 請 幫助 我 . +I did not expect to hear back from Tom so soon . 我 沒 想到 這麼 快 就 收到 湯姆 的 回信 . +The present time is a good time . 现在 正是 好 时候 . +I met him on my way home . 我 在 回家 的 路上 遇見 了 他 . +Those houses are 500 years old . 那些 房子 有 500 年 了 . +I had a good night is sleep . 我 睡 了 一整夜 的 好觉 . +It is likely to be fine tomorrow . 明天 天氣 可能 很 好 . +You have got a lot of guts . 你 膽子 很大 . +What would you do if you had a million dollars ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +The policeman captured the man who was running . 警察 抓 了 正在 跑 的 那個 男人 . +There is a castle in the background of the picture . 图片 的 背景 是 一座 城堡 . +A penny saved is a penny earned . 省 下 了 一分 錢 , 就 等 於 賺 了 一分 錢 . +He made the most of his opportunity . 他 盡力 地 利用 了 這個 機會 . +Give me your location . 给 我 你 的 位置 . +I do not understand why Tom brought you here . 我 不 知道 為 甚麼 湯姆 把 你 帶到 這裡 . +Subtract three from eight and you get five . 八 减去 三 就 能 得到 五 . +His words gave me hope . 他 的 話 給 了 我 希望 . +I have recently given up smoking . 我 最近 戒烟 了 . +The dog barked at the stranger . 這 隻 狗 對 著 陌生人 叫 . +I stayed up till very late last night . 我 昨晚 睡 得 很 晚 . +I need many books . 我 需要 很多 書 . +No matter how hard the training was , she never cried . 不管 训练 多么 艰苦 , 她 都 没有 哭 过 . +It was really cheap . 它 真的 很 便宜 . +Life is not all fun and games . 生活 並 不 都 是 輕 鬆 愉快 的 . +The cat meowed . 猫叫 . +I am a hero . 我 是 個 英雄 . +The girl greeted me with a smile . 這個 女孩 面帶 微笑 向 我 打招呼 . +I spoke to Tom last night . 昨晚 我 和 汤姆 说话 了 . +Give it to them . 把 它 给 他们 . +He has no sense of right and wrong . 他 是非不分 . +Tom told me he was nervous . 湯姆 告訴 我他 緊張 . +The airplane took off on time . 這 班 飛 機準 時 起 飛 . +Did you hear my show last night ? 你 听 了 我 昨天晚上 的 节目 吗 ? +My father works at the factory . 我 父亲 在 工厂 工作 . +Restart your computer . 重新启动 你 的 电脑 . +The party was put off for a week . 派对 延期 了 一周 . +Have a look . 请 看一看 . +The price is not reasonable . 这个 价格 不合理 . +You can take today off . 你 今天 可以 休假 一天 . +Can you eat this ? 这个 能 吃 吗 ? +I had difficulty working out the problem . 我 很 難 解決 這個 問題 . +I did not think this was your seat . 我 不 認為 這 是 你 的 座位 . +He attributes his success to good luck . 他 将 他 的 成功 归功于 好运 . +I do not want to miss my train . 我 不想 错过 我 的 火车 . +He will travel abroad next year . 明年 他 要 去 国外 旅游 . +He arrived at the station at seven . 他 7 点 到 了 火车站 . +You drink too much coffee . 你 咖啡 喝 得 太 多 了 . +Did you buy cat food ? 你 买 猫 粮 了 吗 ? +I am not a student . 我 不是 學生 . +Let is go ahead and eat . 咱们 去 吃饭 吧 . +He wrote a book about a jungle adventure . 他 写 了 一本 关于 丛林 冒险 的 书 . +The doorbell rang . 门铃 儿 响 了 . +Keep an eye on the child for me for a moment . 帮 我 看 会儿 孩子 . +He married a very pretty girl . 他 娶 了 一個 很漂亮 的 女孩 . +I am not a teacher . 我 不是 個 老師 . +There were risks . 有 風險 . +He lived a moral life . 他 以 君子 之 道 生活 . +Do not worry ! Even if I drink , it does not have an effect on my driving . 別 擔心 ! 即使 我 喝酒 了 , 它 對 我 的 駕駛 沒有 影響 . +How long do you plan to stay in this country ? 你 打算 在 这个 国家 待 多久 ? +I do not remember mailing the letter . 我 不 記 得 寄 過信 了 . +He made no mention of her request . 他 沒有 提到 她 的 請求 . +Tom did not give me what I asked him for . 汤姆 没给 我 我 跟 他 要 的 . +We know him . 我們 認識 他 . +Please do not say that . 请 你 不要 说 这个 . +If you want to , you can use my car . 如果 你 愿意 , 你 可以 用 我 的 车 . +He does not care much for baseball . 他 不 太 关注 棒球 . +Do not enter the room without permission . 未經 允許 請 勿 進入 這個 房間 . +He made the best of the opportunity . 他 善用 了 這個 機會 . +The youngest daughter is exceptionally beautiful . 么 女 長 得 特別 漂亮 . +I do not read newspapers much . 我 不 太 看 报纸 . +Are you busy ? 您 在 忙 吗 ? +Everyone is anxious to know what has become of the former champion . 大家 都 渴望 知道 前 冠军 得主 发生 了 什么 . +Let me say one thing . 讓 我 說 一件 事情 . +Everyone inside the building felt the earthquake . 在 建筑物 里 的 所有人 都 感觉 到 了 地震 . +You really are rude , are not you ? 你 真的 很粗 魯 , 不是 嗎 ? +Please give me something to eat . 請 給 我 點 東西 吃 . +Do you think he did the job on his own ? 你 认为 他 是 自己 独立 完成 这份 工 的 吗 ? +I invited them to the party . 我 邀請 了 他們 參加 派 對 . +I promise it will not happen again . 我 保證 它 不 會 再 發生 . +You said you 'd help me . 你 说 过 你 会 帮 我 的 . +How do we get out of here ? 我们 该 怎么 从 这里 出去 . +Tom explained it to Mary very carefully . 汤姆 仔细 地 给 玛丽 解释 . +I do not want Tom to see this . 我 不想 讓 湯姆 看見 這個 . +Can you describe to me the difference between black tea and green tea ? 你 能 告诉 我 红茶 和 绿茶 的 区别 吗 ? +Tom is check bounced . 汤姆 的 支票 被 退票 了 . +What time are you leaving ? 你 什么 时候 走 ? +I remember meeting you before . 我 記得 以前 見 到 你 . +The train was crowded with people . 火车 挤满 了 人 . +We are glad to have you in our class . 我们 很 高兴 你 加入 了 我们 班 . +This is the cheapest shop in town . 這 是 鎮 上 最 便宜 的 商店 . +Tom and I know each other quite well . 湯姆 和 我 互相 很 了解 . +I am undressing . 我 脱衣服 . +I only spent three dollars . 我 只 花 了 三 美元 . +We are neighbors . 我們 是 鄰居 . +He is out now . 他 现在 出去 了 . +Let is eat now . I am dying of hunger . 咱们 吃 吧 ! 我 饿死 了 . +Did you forget to lock the door last night ? 你 昨天晚上 忘 了 鎖 門 嗎 ? +The problem is being discussed now . 这 问题 正在 被 讨论 . +Do not kid around . 別 開 玩笑 了 . +He played baseball after school . 他 放學 後 打 棒球 . +How many forks do we need ? 我們 需要 多少 把 叉子 ? +She went to the hospital yesterday . 她 昨天 去 了 醫院 . +The police think the burglar entered through a basement window . 警察 认为 窃贼 从 地下室 窗口 进入 . +She spoke through an interpreter . 她 透過 傳譯員 發言 . +I am really glad you are here . 你 能 来 我 真 高兴 . +I do not know if today is Tuesday or Wednesday . 我 不 知道 今天 是 星期二 還是 星期三 . +You must not yield to temptation . 你 不 應該 屈服 在 誘惑 之下 . +I do not believe the child came to Tokyo alone . 我 不 相信 孩子 能 独自 到 东京 . +The storm abated . 风暴 减弱 了 . +Let is discuss it . 来 商量 吧 . +I am not a bit tired . 我 一點 也 不累 . +Tom will never see you again . 汤姆 以后 再也不会 见 你 了 . +Tom often goes cross @-@ country skiing . Tom 经常 滑雪 穿过 城市 . +Tom walks very slowly . 汤姆 走 得 很慢 . +Were you playing tennis yesterday morning ? 你 昨天早上 在 打网球 吗 ? +We will have guests tomorrow . 我們 明天 會 有 客人 . +That was pretty neat . 那 真 整潔 . +He cannot afford to buy a car , much less a house . 他 买不起 一辆 汽车 , 更 不要 说 一套 房子 了 . +The dress suits you very well . 这 条 裙子 很 适合 你 . +I do not really like him , in fact , I hate him . 我 不 太 喜欢 他 , 其实 我 讨厌 他 . +I am not a student . 我 不是 學生 . +How long have you two been together ? 你们 两个 在 一起 多久 了 ? +The old man was almost hit by a car . 老人 幾乎 被 車 撞 上 . +You 'd better tell us what is going on . 你 最好 告诉 我们 发生 了 什么 . +Tom says that Mary definitely will not accept the job . 湯姆 說 瑪麗 絕不 會 接受 這 工作 . +He is afraid that he might be late . 他 担心 他 可能 会 迟到 . +Have a nice day , Tom . 汤姆 , 希望 你 今天 玩 得 开心 . +This job does not pay . 这个 工作 没有 酬劳 . +Mary said that she loved me , but I did not believe her . 玛丽 说 她 爱 我 , 但是 我 并 不 相信 她 所说 的话 . +Do you want some rice ? 你們 要 米 飯 嗎 ? +Please feel free to call me up . 請 隨時 都 可以 打 電話 給 我 . +I can not drink milk . 我 不 可以 喝牛奶 . +Tom put the vase on the table . 湯姆 把 花瓶 放在 桌上 . +She is proficient in French . 她 精通 法語 . +The investigation is under way . 相關 調查 正在 進行 中 . +We must not laugh at the poor . 我们 不能 嘲笑 穷人 . +Feel this . It is really soft . 来 摸摸 这个 感觉 一下 . 真的 很 柔软 啊 . +Tom arrived here before sunrise . 汤姆 天亮 前 就 到 这 了 . +It is a pity you did not come last night . 您 昨晚 沒來 真是太 可惜 了 ! +It is too dark to play baseball now . 現在 太暗 無法 打 棒球 . +Her eyes shone with joy when she saw that her mother was not mad at her . 當 她 看到 媽媽 沒 在 生 她 的 氣 , 她 的 雙眼 因為 幸福 而 閃爍 了 . +I discovered that speaking English was pretty easy . 我 發覺 說 英語 很 簡單 . +I will be at home all day tomorrow . 明天 我 一整天 都 在家 . +May I put it down here ? 我 可以 把 它 放在 这儿 吗 ? +London is on the Thames . 倫敦 在 泰 唔 士河 旁 . +I just do not want to lose you . 我 只是 不想 失去 你 . +Roll up your right sleeve . 捲 起 你 右 邊 的 袖子 . +How long did it take you to write this report ? 你 写 这份 报告 花 了 多长时间 ? +Eat your soup before it gets cold . 趁 汤 没 凉 之前 喝 下 . +They did not know what to do first . 他們 不 知道 先 做 什麼 . +The teacher demonstrated the idea with an experiment . 这位 老师 用 试验 论证 了 这个 想法 . +There is a TV in this room . 这个 房间 里 有个 电视机 . +I had curry last night . 我 昨晚 吃 了 咖喱 . +Just pull the door shut . It will lock by itself . 只要 推门 就 好 了 . 它 自己 会 锁上 的 . +We will begin tomorrow morning . 我們 明天 上午 開始 . +I will be free all day tomorrow . 明天 我 一整天 都 有空 . +I feel no sympathy for Tom . 我 不 同情 湯姆 . +The enemy attacked us at night . 敵人 在 夜間 攻擊 了 我們 . +Why do not you take the day off ? 你 為 什麼 不 請 一天 假 ? +I want to study abroad next year . 我 明年 想 出国 留学 . +I hope I am not disturbing you . 我 希望 没 打扰到 你 吧 ? +Does your father get home early ? 你 爸爸 很早 回家 嗎 ? +Can I help ? 我 可以 幫忙 嗎 ? +What you said is not true . 你 说 的 不是 真的 . +If a man had 11 sheep and all but 9 died , how many sheep would he have left ? 如果 一个 人 有 11 只 羊 , 除了 9 只 之外 , 其他 全部 死 了 , 那么 他 还 剩下 几只羊 呢 ? +Please help yourself to the cake . 你 自己 拿 蛋糕 吃 吧 . +Father takes the 7 : 00 subway to work . 爸爸 乘 早上 7 点 的 地铁 去 上班 . +Is it about ten o 'clock ? 大約 十點鐘 嗎 ? +Tom has come up with a good plan . 湯姆 想到 了 個 好 計劃 . +No one can help me . 没有 人 能 帮 我 . +She is nothing but a child . 她 只是 個 孩子 . +More than 40 percent of the students go on to university . 40 % 以上 的 学生 去 读 大学 . +I think Tom is photogenic . 我 觉得 汤姆 很 上 镜 . +You should not share too much private information on the social networks . 你 不 应该 在 社交 网络 上 分享 过 多 私人 信息 . +It is difficult to speak Chinese well . 很 難 把 中文 說 得 好 . +Tom does everything he can to save money . 湯姆盡 全力 省 錢 . +The manager approved our plan . 經理 批准 了 我們 的 計劃 . +He has no house to live in . 他 没有 房子 住 . +Hide in the closet . 你 藏進 櫃子 裡 去 . +I want ten plates . 我 要 十個 盤子 . +We have to turn in our reports by the end of this month . 这个 月底 前 , 我们 必须 交 报告 . +Please answer my question . 请 回答 我 的 问题 . +Selling cars is my job . 賣車 是 我 的 工作 . +Are not you thirsty ? 你 不 渴 嗎 ? +Do you believe in ghosts ? 你 相信 有 鬼魂 吗 ? +I sell clothing online . 我 在 網 路上 賣 衣服 . +Only four horses competed in the race . 只有 四匹 馬 參加 了 比賽 . +I spilled my coffee on the carpet . 我 把 咖啡 倒 翻 在 地毯 上 了 . +He will wait for you . 他 會 等 你 . +You made an error . 你 犯 了 个 错误 . +I will give you the money tomorrow . 我 明天 會 給 你 錢 . +There is no telling what he will do next . 没有 人 知道 他 接下来 会 干什么 . +We were just about to enter the room . 我们 正要 进 房间 . +You 'd better go home at once . 你 最好 立刻 回家 . +Tom told me that he does not like carbonated drinks . 汤姆 告诉 我 他 不 喜欢 碳酸 饮料 . +We need to talk about that as soon as possible . 我們 需要 盡早 談論 那件事 . +We made it out of there . 我們 從 那裡 逃 了 出來 . +Why do not you go home early today ? 你 今天 為 什麼 不 早點 回家 呢 ? +I belong to the swimming club . 我 參加 游泳 社 . +He married a stewardess . 他 娶 了 一个 空姐 . +His parents are saving for his college education . 他 的 父母 為 他 的 大學 教育 存錢 . +No one will bother you here . 這裡 沒 人會 打擾 你 . +I do not write letters anymore . 我 不再 写信 了 . +That is mine . 那 是 我 的 . +He made his son a chair . 他 做 了 一把 椅子 給 他 兒子 . +This method is sure to work . 這個 方法 一定 會 成功 . +This dictionary is my sister is . 這 本 字典 是 我 妹妹 的 . +I can not recall the last time we met . 我 想不起 來 我們 上次 見面 的 情况 了 . +Do not put anything on top of the box . 不要 放 任何 東西 在 箱子 上面 . +I know her address . 我 知道 她 的 地址 . +Wipe your eyes . 擦擦 你 的 眼睛 . +How are you , Tom ? 你好 嗎 , 湯姆 ? +She asked about my school . 她 問 了 關 於 我 學校 的 事 . +He works for an advertising agency . 他 為 一家 廣告 公司 工作 . +What would you like to eat for dinner ? 你 想 吃 什麼 作 晚餐 ? +Tom robbed a bank . 湯姆 搶 了 家銀行 . +Who does the book belong to ? 這 本書 是 誰 的 ? +Who is this , please ? 請 問 這 是 誰 ? +If you buy me an ice cream , I will give you a kiss . 如果 你 買 給 我 冰淇淋 , 我 就 親 你 一下 . +Who did you give that to ? 你 把 東西 交給 誰 了 ? +Follow us . 请 跟着 我们 . +I left my umbrella in the cab . 我 把 我 的 傘 忘 在 計程車 上 了 . +We can not afford to make mistakes . 我們 承擔 不了 犯錯 的 後 果 . +It was not long before we met again by chance . 没多久 , 我们 又 碰巧 遇到 了 . +I 'd like you to go there . 我 希望 你 去 那裡 . +We took turns with the driving . 我們 輪流 駕駛 . +Let is wait here until he comes back . 讓 我們 在 這裡 等 他 直到 他 回來 . +Do not leave the TV on . 不要 让 电视机 开 着 . +I was fired without cause . 我 被 无故 辞退 了 . +I have not eaten lunch yet . 我 现在 还 没有 吃 过 午饭 . +Tom is going to run for mayor . 汤姆 要 竞选 市长 . +Blood was everywhere . 到处 都 是 血 . +We can see more and more swallows . 我們 能 看到 越來越 多 的 燕子 . +Marriage frightens some people . 有些 人 害怕 婚姻 . +There is no doubt . 毫无疑问 . +Turn on the light , please . 麻煩 開燈 一下 . +You seem to know everything . 你 看起来 什么 都 知道 . +I am not as optimistic as you . 我 不 像 你 那么 乐观 . +I can see through your lies . 我 能 看穿 你 的 謊言 . +I am afraid to go alone . 我 害怕 一個 人 去 . +I would like to invite you to the party . 我 想 请 你 参加 派对 . +How are you ? 你好 嗎 ? +Everything comes to those who wait . 成功 屬 於 耐心 等待 的 人 . +Yesterday , an explosion occurred at the fireworks factory . 昨晚 , 烟花 厂 发生 了 爆炸 . +Tom watched Mary draw a picture . 汤姆 看 玛丽 画 一幅 画 . +Why do you say that ? 你 為 什麼 那樣 說 ? +Tom , wake up . 汤姆 , 快 起来 ! +He never speaks unless spoken to . 除非 有人 跟 他 說 話 , 他 從來 不 說 話 . +My father graduated from Harvard University . 我 爸爸 是 哈佛大学 毕业 的 . +Can you get up ? 你 能 起床 嗎 ? +She hung the picture upside down . 她 把 画 挂反 了 . +Is it OK to take pictures here ? 这里 允许 拍照 吗 ? +I have not done very much this year . 我 今年 沒 做 多少 事 . +What time does the movie start ? 电影 什么 时间 开始 ? +What happened that night ? 这个 晚上 发生 了 什么 ? +The library is on the second floor . 圖書館 在 二 樓 . +There are several ways to measure speed . 测速 的 方法 有 很多 . +I can not keep up with you . 我 無法 跟上 你 . +Three people were killed in the explosion . 这场 爆炸 中 有 三 人 丧生 . +We need more . 我們 需要 更多 . +Tom told me I should not do that . 湯姆 告訴 我 我 不該 去 做 . +Do not try to stop me . 别 想 阻止 我 . +Drive slowly . 开车 慢点 . +You can not fight a good fight with such a defeatist attitude . 抱著 失敗 主義 的 態度 你 無法 打 一場 漂亮 的 仗 . +He is doing very well at school . 他 在 學校 的 表現 很 好 . +I used to have a friend named Tom . 我 曾 有 个 朋友 叫 汤姆 . +We should not expect too much help from Tom . 我們 不該 期望 從 Tom 那 得到 太 多 幫助 . +Do you know how to dance ? 你 會 跳舞 嗎 ? +I agree with what you say to some extent . 在 某种程度 上 , 我 认同 你 所说 的 . +I would like to swim in this river . 我 想 在 這條 河裡 游泳 . +The price does not include the box . 這個 價格 不 包含 這個 箱子 . +What is become of your dog ? 你 的 狗 怎麼 了 ? +The car is ready . 汽车 准备 好 了 . +When did you begin studying English ? 你们 什么 时候 开始 学 英语 的 ? +I have got a lot of questions . 我 有 许多 问题 . +How about taking a walk with us ? 跟 我們 一起 散步 怎麼樣 ? +Do not let him down . 别 让 他 失望 . +Ca not you get by on your salary ? 靠 你 的 收入 你 不能 過 活 嗎 ? +If you do not hurry , you will miss the train . 如果 你 不 抓紧 的话 , 你 就 会 赶不上 火车 . +He would not listen to my advice . 他 不 聽 我 的 勸告 . +Tom has not said a word all morning . 汤姆 整整 一个 上午 一句 话 也 没 说 . +She is a good dancer . 她 是 一個 很好 的 舞者 . +I know how to make beef stroganoff . 我 知道 怎麼 做 俄式 炒 牛肉 片 . +I 'd rather be with you . 我 更 愿意 跟着 你 . +Do not forget to lock up when you leave . 当 你 出门时 , 别忘了 锁门 . +You will go to school tomorrow . 你 明天 去 學校 . +Lend me some money , if you have any . 你 有钱 的话 , 借 我 一些 . +Could you drive Tom home ? 你 能載 湯姆 回家 嗎 ? +Do not move . 不要 动 . +She helped me pack my suitcase . 她 幫 我 打包 我 的 手提箱 . +I can not put up with his arrogance . 我 不能 忍受 他 的 傲慢 . +Boys , as a rule , are taller than girls . 一般来说 , 男生 会 比 女生 高 一些 . +I got up early enough to catch the first train . 我 起 了 个 大早 为了 赶 第一班 火车 . +I understand how to solve the problem . 我 明白 怎么 解决问题 . +Thank you for the pleasant evening . 謝謝 你 讓 我 度 過 一個 愉快 的 晚上 . +He is a baseball player . 他 是 个 棒球 手 . +I love the sound of children laughing . 我 喜歡 孩子 們 笑 的 聲音 . +A friend is coming over tomorrow . 一個 朋友 明天 要過 來 . +Do not do this to me again . 別 再 對 我 做 這事 了 . +I do not want everyone to think I am stupid . 我 不想 讓 任何人 認為 我 傻 . +The cat is not dead . 那 猫 没死 . +Hug Tom . 请 抱紧 汤姆 . +I remember seeing her . 我 記得 我 看 過 她 . +He told us a lie . 他 對 我們 說 了 一個 謊 . +Tom is on his way here . 湯姆 正在 來 這里 . +I am not like Tom . 我 跟 汤姆 不 一样 . +He tried to kill himself . 他 試圖 自殺 . +It is difficult to do that . 那麼 做 很 難 . +Call me . 联系 我 . +Tell me Tom is email address . 告诉 我 汤姆 的 邮箱地址 吧 . +It is a sunflower . 那 是 一朵 向日葵 . +Do you have a bicycle ? 你 有 自行 車 嗎 ? +Whoever said money can not buy happiness simply did not know where to go shopping . 那些 说 钱 不能 买来 幸福 的 人 , 只是 不 知道 上 哪里 去 买 而已 . +I do not know for certain . 我 不 太 確定 . +Be happy for me . 为 我 感到高兴 吧 . +I ate caviar . 我 吃 了 魚子 醬 . +He knows how to brush his teeth . 他 知道 怎么 刷牙 . +He is at home . 他 在家 裡 . +Have you finished reading that book ? 你 读完 那本书 了 吗 ? +The red dress suited her . 這件 紅色 的 洋裝 適合 她 . +It took me a little more time than usually to fall asleep . 我 花 了 比 平常 多 一點 的 時間 入睡 . +I am praying . 我 在 祈禱 . +I think he is a great writer . 我 认为 他 是 位 伟大 的 作家 . +Do you like strawberries ? 你 喜歡 草莓 嗎 ? +That is a face I have seen before . 這 張 臉 我 以前 見 過 . +I thought Tom was going to hurt me . 你 認為 湯姆 要 傷害 我 . +He always takes sides with her . 他 總 是 支持 她 . +I am not certain about that . 对于 那个 , 我 不 确信 . +I am not very good at swimming . 我 不是 很 擅長 游泳 . +It is a lot of fun to drive a car . 開車 很 好玩 . +He returned home for the first time in ten years . 他 十年 中 第一次 回家 . +Bringing up a baby is hard work . 养 大 一个 宝宝 是 一项 艰难 的 工作 . +We have French third period . 我們 第三 節 是 法語 課 . +Tom is spending more and more time in Boston . 汤姆 在 波士顿 待 得 越来越 久 . +The old church by the lake is very beautiful . 河边 的 老 教堂 很漂亮 . +He knows how to read Chinese . 他 看得懂 中文 . +Tom studies French as well . 湯姆 也 學 法語 . +Where will we go afterwards ? 我们 以后 往 哪 走 ? +I hope no one saw me dancing . 我 希望 沒人 看見 我 跳舞 . +She is not a child . 她 不是 小孩 . +Tom threw in the towel . 汤姆 不 干 了 . +I felt like crying . 我 想 哭 . +Visiting a foreign country must be expensive . 到 外國 一定 很貴 . +Tom had a lot of problems at the school . 汤姆 在 学校 遇到 了 很多 问题 . +I am able to swim . 我 會 游泳 . +Do you think I am beautiful ? 你 認為 我 美 嗎 ? +Everyone except Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +This medicine will decrease your pain . 这种 药会 减轻 你 的 疼痛 . +I was asked to wait here . 我 被 要求 在 这里 等 . +Switzerland is famous for its scenic beauty . 瑞士 以 它 的 風景 優美 而 聞名 . +Your shirt button is coming off . 你 衬衣 的 纽扣 快 掉 了 . +You may injure yourself if you do not follow safety procedures . 如果 你 不 按照 安全 手续 来 的话 , 你 可能 会 受伤 的 . +Were you working last night ? 你 昨晚 在 工作 吗 ? +What do you have ? 您 有 什么 ? +All I want to do is go fishing . 我 唯一 想 做 的 是 去 釣 魚 . +What made her so angry ? 什麼 事 讓 她 這麼 生氣 ? +She gave up her plans against her will . 她 違背己願 放棄 了 她 的 計畫 . +It is OK not to eat it . 你 不吃 沒 關 係 . +They arrived in Osaka at the beginning of May . 他们 五月 初 到 了 大阪 . +Stop yelling ! 别 再 喊叫 了 ! +We are happy . 我們 很快 樂 . +You should have introduced yourself . 你 本來 應該 介紹 自己 的 . +I do not want it . 我 不要 . +" I like traveling . " " So do I. " “ 我 喜欢 旅游 . “ ” 我 也 是 . “ +How long does it take to walk to your house from here ? 从 这里 步行 到 你家 要 多长时间 ? +Tom had a pain in his chest , so he went to the hospital . 汤姆 胸痛 , 所以 去 了 医院 . +You people are no fun at all . 你们 这帮 人 真 没意思 . +What is it about ? 它 是 關 於 什麼 ? +All you have to do is take advantage of this rare opportunity . 你 所要 做 的 便是 好好 把握 這 千載難逢 的 機會 . +A group of young men are playing handball in the playground . 一群 年 輕 人 在 操場 上 打 手球 . +I found your letter in the mailbox . 我 在 信箱 中 發現 了 你 的 信件 . +I should not have said that . 我 不该 说 那个 . +Many people only speak one language . 許多 人 只 說 一種 語言 . +I am going to go there with Tom . 我 要 和 汤姆 去 那里 . +We kept our fingers crossed . 我们 试图 让 手指 互相 交错 . +I sometimes break the rules . 我 有时候 打破 规矩 . +Tom cut down the tree that was in front of his house . 湯姆 砍 了 他 門前 的 樹 . +He is too drunk to drive home . 他 喝酒 醉無法 開車 回家 . +I am just a plain office worker . 我 只是 一個 普通 的 上班族 . +How old do you think she is ? 你 认为 她 多 大 ? +He made an important discovery . 他 有 了 一個 重要 的 發現 . +Ca not you speak English ? 你 不 會 說 英語 嗎 ? +I am very interested in these stories . 我 对 这些 故事 很感兴趣 . +I want to show you something in my office . 我 想 给 你 看看 我 办公室 里 的 一些 东西 . +Do you need to buy anything ? 你 有 什么 需要 买 的 吗 ? +May I go to the toilet ? 我 可以 去 廁所 嗎 ? +The problem was that I had nothing to say to him . 问题 是 我 没什么 要 跟 他 说 的 . +It is obvious that she is sick . 顯然 地 她 生病 了 . +I am an optimist by nature . 我 天生 是 一個 樂觀 主義 者 . +The child missed his mother very much . 這 孩子 非常 想念 他 的 母親 . +The light was on . 灯 亮 着 . +This is Uncle Tom is farm . 這 是 湯姆 叔叔 的 農場 . +I do not know your reasons for not liking Tom . 我 不 知道 你 不 喜欢 汤姆 的 理由 . +He should have arrived by now . 现在 他 应该 已经 到 了 . +Be careful . It is very sharp . 小心 點 , 它 很 锋利 . +Drive carefully . 开车 小心 点 . +I found the book interesting . 我 觉得 这 本书 很 有意思 . +Every time it rains , the roof leaks . 每次 下雨 屋頂 就 漏水 . +Your opinion matters . 你 的 觀點 是 重要 的 . +She testified that she saw the man . 她 作證 說 她 看見 了 這 名 男子 . +He gave us the signal to begin . 他 給 了 我們 信號 讓 我們 開始 . +Tom worked very hard and earned a lot of money . 汤姆 努力 工作 挣 了 好多钱 . +Mary showed the letter to me . 瑪麗 給 我 看 了 這 封信 . +Tom seems a little confused . 湯姆 看來 有 點 困惑 . +She is good at playing tennis . 她 擅長 打 網球 . +You are very courageous . 您 非常 勇敢 . +We are having difficulty locating Tom . 我们 难以 找到 汤姆 . +Where is my seat ? 我 的 位子 在 哪儿 ? +I heard her singing a song . 我 聽到 她 唱歌 . +I am afraid that there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +The bus will take time . 乘 公交车 费时 . +Do you want to eat noodles or rice ? 你 要 吃 麵 條 還 是 吃 米 飯 ? +His doctor ordered him to rest . 他 的 医生 命令 他 休息 . +Tom has not missed any of Mary is concerts . 汤姆 没有 错过 一场 玛丽 的 音乐会 . +The quickest means of travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +May I use this ? 我 可以 用 嗎 ? +Ca not we work this out ? 我们 做 不成 吗 ? +I could not think of anything to say . 我 想不到 要 說 什麼 話 . +I feel weak . 我 感到 虚弱 . +A typhoon is approaching Japan . 颱 風 正 接近 日本 . +The papers blew off . 文件 被 风 刮起来 . +She gave the children two apples each . 她 給 孩子 們 每人 兩個 蘋果 . +He was elected mayor . 他 被选为 市长 . +She lived for a long time . 她 活 了 很久 . +It is been raining since last night . 從 昨晚 起 一直 下雨 . +Because of the typhoon , my parents ended their trip one day early . 因为 台风 的 关系 , 我 的 父母 提早 一天 结束 了 旅行 回到 家 . +I had a lot of fun . 我 玩 得 很 開心 . +Please wait a little while longer . 請 稍 等 一會兒 . +Take this medicine every six hours . 每 六個 小 時 吃 一次 這個 藥 . +This book belongs to the library . 這 本書 是 圖書館 的 . +Show me your passport , please . 请 给 我 看看 您 的 护照 . +Let is go to the club . 讓 我們 去 俱 樂 部 吧 . +Hang in there . 坚持 . +I do not agree with him . 我 不 同意 他 . +She is still dependent on her parents . 她 是 啃老族 . +I have to ask you something . 我 得 问 你 点 事 . +These flowers bloom earlier than others do . 這些 花 比別 的 花 早 開花 . +She translated the letter from Japanese into French . 她 把 信 从 日语 译成 法语 . +Many conservationists fear the continuing slaughter of whales is pushing these animals towards extinction . 许多 自然环境 保护主义者 担心 持续 屠杀 鲸鱼 正 推动 这些 动物 走向 灭绝 . +The sky became darker and darker . 天空 变得 越来越 暗 了 . +Sales fell off in the third quarter . 在 第三季 時 銷售 跌 了 下來 . +It is becoming warmer day by day . 一天天 热 起来 了 . +He got off the bus . 他 下 了 公車 . +We have got a situation . 我们 有 情况 了 . +There is nothing to prevent you from going . 没什么 能 阻止 你 出发 了 . +Nice to see you . 见到 你 真好 . +It rained hard yesterday morning . 昨天上午 下 大雨 . +I can not locate the source of the problem . 我 无法 找到 问题 的 根源 . +That white parasol is hers . 那 把 白色 阳伞 是 她 的 . +They came all the way from Brazil . 他們 從 巴西 遠 道 而 來 . +Please put on your shoes . 請 穿 上 你 的 鞋子 . +Do you like black cats ? 你 喜歡 黑色 的 貓 嗎 ? +Why are you still unmarried ? 你 為 甚麼 還 不 結婚 ? +This chair is light . 这 把 椅子 很轻 . +I think we should not allow Tom to do that . 我 認為 我們 不 應該 允許 湯姆 去 做 . +He is careless about money . 他 不 關心 錢 . +This is an old building . 这 是 幢 老楼 . +We enjoyed playing baseball . 我們 喜歡 打 棒球 . +I work too much . 我 工作 得 太 多 了 . +He reads a lot of books . 他 读 很多 书 . +The meat has gone bad . 這 肉 已經 壞 了 . +I am not the only one who thinks Tom is overweight . 觉得 汤姆 肥 的 人 不止 我 一个 . +He lives in a cozy little house . 他 住 在 一個 舒適 的 小 房子 裡 . +We all wondered why she had dumped such a nice man . 我們 都 想 知道 她 為 什麼 甩 了 這麼 好 的 一個 男人 . +They made me go there alone . 他們 讓 我 獨自 去 了 那裡 . +Many children die of starvation in Africa . 在 非洲 有 许多 孩子 死 于 饥饿 . +My mother is quite angry . 我 母亲 十分 生气 . +I want to die . 我 想 死 +Playing tennis is a lot of fun . 打 網球 很 有趣 . +Would you like some more beef ? 你 想 再 來 些 牛肉 嗎 ? +Diplomats are allowed various privileges . 外交官 有 多种 特权 . +I do not love you anymore . 我 不再 爱 你 了 . +Only adults may watch that film . 只有 成人 可以 看 那种 电影 . +What kind of stone is this ? 这 是 什么 石头 ? +Some people never grow up . 有些 人 永远 也 长不大 . +I am at home . 我 在家 . +He must have missed the train . 他 一定 是 錯 過 了 這 班 火車 . +It could be just a coincidence . 可能 只是 巧合 . +He can not be ill . 他 不 可能 生病 了 . +Run like your life depends on it 拼命 地 跑 +You should make an effort to stop smoking . 你 應該 努力 去 戒煙 . +Hopefully , we will enjoy our China trip . 希望 我們 會 喜歡 我們 的 中國 之 旅 . +The king governed the country . 國王 統治 了 這個 國家 . +They are talking with each other . 他们 在 互相 交谈 . +He lives by himself in the woods . 他 獨自 住 在 森林 裡 . +Creationism is a pseudo @-@ science . 创造 主义 是 一种 伪科学 . +I can not do any more than this . 我 無法 再 做 下去 了 . +Do not leave the door open . 不要 把门 开 着 . +I want to go there once more . 我 想 再 去 那裡 一次 . +Lunch is on . 午餐 送到 了 . +It was not until I reached home that I missed my purse . 那 是 在 我 到 家 以后 , 我 才 不见 了 我 的 钱包 . +The value of the painting was estimated at several million dollars . 这 幅画 被 估价 数百万元 . +They are peace @-@ loving people . 他们 是 热爱 和平 的 人 . +I am an only child . 我 是 獨 生子 . +I am going to see him today . 今天 我 要 去 看 他 . +Would you like a drink ? 你 想 喝 點 什麼 嗎 ? +May I see the wine list ? 我 可以 看 一下 酒單 嗎 ? +English is studied in China , too . 在 中國 的 人 也 研讀 英語 了 . +He stopped reading the newspaper . 他 停止 了 读报 . +What is your opinion on this matter ? 关于 那个 你 有 什么 看法 ? +They are having a chat . 他們 正在 聊天 . +You look just like your older brother . 你 和 你 哥哥 长 得 一模一样 . +On Mondays , he is always at home . 他 星期一 總是 在家 . +Such a plan is bound to fail . 這樣 的 計劃 注定 會 失敗 的 . +I miss you badly . 我 非常 想 你 . +I got a good grade in English . 我 的 英文 得到 了 好 成績 . +She took my joke seriously . 她 把 我 的 玩笑 当真 了 . +Could you please lend me thirty dollars ? 請 問 你 能 借 給 我 三十 美 圓 嗎 ? +Everybody is supposed to know the law , but few people really do . 每 一个 人 都 应该 知法 懂法 , 但是 真正 能 做到 的 人 却 很少 . +I got up at six this morning . 我 今天 早上 六點 起床 . +I can not put up with him . 我 受不了 他 . +Please tell us what to do next . 請 告訴 我們 下 一步 要 做 什麼 . +I succeeded in getting what I wanted . 我 成功 地 得到 了 我 想要 的 . +I am hearing that a lot lately . 我 最近 听说 了 不少 . +This book will do . 這 本書 就行了 . +I was happy to see him . 我 很 高兴 见到 他 . +Tom ate half the cake by himself . 湯姆 獨自 吃 了 半個 蛋糕 . +He was supposed to come . 他 應 該 來 的 . +Shine your shoes before going out . 出門 前 把 你 的 鞋子 擦亮 . +What is the forecast for tomorrow ? 明天 的 天气预报 怎么 说 ? +Tom refused to even listen to my suggestions . 汤姆 甚至 拒绝 听 我 的 建议 . +Have a good weekend ! 周末 愉快 . +I forgot to ask Tom . 我 忘 了 问 汤姆 . +Once in a while , we should take a step back and think . 有时候 , 我们 应该 后退 一步 想一想 . +Tom swam . Tom 游泳 . +The town was destroyed by the flood after the storm . 小镇 被 暴风雨 后 的 洪水 摧毁 了 . +I can not see you . 我 看 不 見 你 . +Two detectives followed the suspect . 两个 侦探 跟着 嫌疑人 . +Who is the boss of this company ? 这家 公司 的 老板 是 谁 ? +You 'd better not have eaten the cake . 你 最好 不要 吃 了 蛋糕 . +Why were you there ? 你 為 什麼 在 那裡 ? +Admission to the museum is thirty dollars . 博物 館入 場費 是 三十 美元 . +I guess I am never going to get married . 我 想 我会 一辈子 单身 . +See you then . 到 時候 見 . +We forgive you . 我們 原諒 你 . +I wonder how many Canadians live in Boston . 我 在 想有 多少 加拿大人 住 在 波士 頓 . +I do not think you need to change . 我 不 認為 你 該 改變 . +Wild animals live in the forest . 野生 動物 住 在 森林 裡 . +If you do not want to do it , you do not have to . 如果 你 不想 的话 也 没 问题 . +I mistook him for his brother . 我 把 他 誤 認為 是 他 的 兄弟 . +The blouse costs twelve libras . 这件 衬衫 卖 十二 英镑 . +These glasses are cool . 這些 眼鏡 真酷 . +Never look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +You should be good to your neighbors . 你 应该 对 邻居 好 点 . +I dislike eggs . 我 不 喜欢 鸡蛋 . +It depends on the context . 这 得 看 情况 . +My shoulder hurts . 我 肩膀 痛 . +He continued reading the book . 他 繼續 看書 . +He went to some place or other . 他 去 了 某个 地方 . +I have a lot of problems at the moment . 目前 我 问题 很多 . +He put away his toys . 他 收起 了 他 的 玩具 . +It will be fine this afternoon . 今天下午 天氣 會 很 好 . +Anniversaries are important . 週年 紀念 很 重要 . +How was the fishing ? 釣魚 怎麼樣 ? +Take a taxi to the hotel . 打 的 去 旅馆 吧 . +Tom loves you . 汤姆 爱 你 . +I do not like you . 我 不 喜欢 你 . +Who is your English teacher ? 你 的 英語 老師 是 誰 ? +They never give up . 他们 永不言弃 . +That is no business of yours . 这 不关 你 的 事 . +She does not like to sing sad songs . 她 不 喜欢 唱 悲伤 的 歌 . +This sentence does not make sense . 这 句 话 没意思 . +Sydney is far from here . 悉尼 离 这里 很远 . +Get lost ! 滾 ! +Do not talk to others during the class . 上 課 中 不要 跟 別人 講 話 . +Whose is this bicycle ? 这辆 自行车 是 谁 的 ? +Fantastic ! 很棒 ! +He is not likely to succeed . 他 不 可能 成功 . +My sister and I went to the castle . 我 和 妹妹 去 了 城堡 . +She is a very interesting person . 她 是 一個 非常 有趣 的 人 . +I found what I was looking for . 我 找到 了 我 正在 找 的 東西 . +Beats me . 我 一无所知 . +My album is here . 我 的 相簿 在 這裡 . +Young children are often fascinated by science . 小孩 常常 对 科学 很 有 热情 . +That is not wine . It is grape juice . 這 不是 葡萄酒 , 是 葡萄汁 . +We often eat fish raw in Japan . 我們 在 日本 常常 吃 生魚 . +I did not sleep a wink last night . 我 昨晚 沒睡 . +Put the book on the top shelf . 把 書 放在 最 上面 的 架子 上 . +I did not know about your plan . 我 不 知道 你 的 計畫 . +What does PTA stand for ? PTA 代表 什么 意思 ? +Tom and I sat on a bench in the park and talked while we fed pigeons . 我 和 汤姆 在 公园 的 长椅 上 坐 着 , 一边 聊天 一边 喂 着 鸽子 . +I like L.A. better . 我 更 喜欢 洛杉矶 . +Everyone knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He goes to bed at eight o 'clock . 他 八點 上床 睡覺 . +That is awesome , right ? 很棒 , 不是 吗 ? +Is Tom well ? 汤姆 还好 吧 ? +Ask Tom if you have any doubt . 你 如果 有 疑问 , 就 问 汤姆 吧 . +Tom would like to see you . 汤姆 想见 你 . +She is good at handling children . 她 善 於 處理 兒童 . +Tom will return home tomorrow . 汤姆 明天 回家 . +I have always wanted to learn how to swim . 我 一直 想 学习 如何 游泳 . +I am a student . 我 是 个 学生 . +You do not go to school on Sunday , do you ? 你 週日 不 上學 , 對 嗎 ? +His advice did not help much . 他 的 忠告 没 起到 太 大 的 作用 . +We worked on a farm last summer . 我們 去年 夏天 在 一個 農場 上 工作 . +Running is good for your health . 跑步 對 你 的 健康 有益 . +If you need a dictionary , I can lend you my old one . 如果 你 需要 字典 , 我 就 把 我 旧 的 借给 你 . +Please open the door . 請 把 門 打開 . +I guess it was our bad luck . 我 猜 这 是 我们 的 运气 坏 . +What will actually happen is anyone is guess . 誰 也 說 不準 實際 上 將 會 發生 什麼 事 . +I can not bear to deal with her anymore . 我 再也 忍受 不了 她 了 ! +We agreed to start early the next morning . 我们 同意 了 第二天 一早 开始 . +What is your favorite beverage ? 你 最 喜欢 的 饮料 是 什么 ? +We laughed . 我们 笑 了 . +Prices went up . 物價 上漲 . +Why do that now ? 为什么 现在 做 那个 ? +When was this university founded ? 这 所 大学 是 什么 时候 建 的 ? +I am expecting a letter from her . 我 期待 她 的 來信 . +He likes to watch TV . 他 喜歡 看電視 . +I have already eaten dinner . 我 已經 吃 晚 飯 了 . +Tom is a magician . 汤姆 是 魔法师 . +Tom did not even notice Mary had gone . 湯姆 甚至 沒 注意 到 瑪麗 走 了 . +It is not that far . 不是 那么 远 . +What do you do on Sundays ? 你 星期天 都 做 什麼 ? +Please get me a scrap of paper . 請 給 我 一張 廢紙 . +The light is on . 灯 亮 着 . +She always speaks in a low voice . 她 總是 低聲 地 說 話 . +Tom had no idea that Mary was a serial killer . 汤姆 不 知道 玛丽 是 个 连环 杀手 . +I do not know anything . 我 什么 都 不 知道 . +A bridge was built across the river . 人 們 修 了 一座 橋 過 河 . +What is the name of this river ? 這條 河 叫 什麼 名字 ? +Tom does not like being treated like a child . 汤姆 不 喜欢 被 当作 小孩 . +" How do you feel ? " he asked . “ 你 感觉 怎么样 ? ” 他 问 . +I know that she is Spanish . 我 知道 她 是 西班牙人 . +I have already visited Australia . 我 已经 游览 过 澳大利亚 了 . +I know where he lives . 我 知道 他 住 哪儿 . +I am too tired to walk any further . 我 累得 再也 走 不動 了 . +I have lost a little weight . 我 瘦 了 一點 . +How much will it cost you to go by air ? 坐 飛機 將 花 你 多少 錢 ? +Being rich is not enough . 有钱 还 不够 . +We usually walk to school . 我们 通常 步行 去 学校 . +We gladly accept your offer . 我们 很 高兴 接受 你 的 提议 . +Tom rolled down his window . 湯姆拉 下 了 他 的 窗戶 . +Something is better than nothing . 聊胜于无 . +I will treat you to sushi . 我 會 請 你 吃 壽司 . +The shooting started around noon . 槍 擊 是 在 中午 十二 時 左右 開始 的 . +You can start right now . 你 现在 可以 开始 了 . +She was promoted . 她 晉升 了 . +What shall we eat for breakfast ? 我們 早 飯 吃 什麼 ? +A new branch will be opened in Chicago next month . 新 的 分店 下个月 在 芝加哥 开张 . +Please speak more loudly . 請 說 話 大聲 一點 . +What have you been doing this week ? 你 這個 星期 一直 在 做 什麼 ? +You will have to leave now . 你 现在 必须 离开 . +Tom admitted that he had killed Mary . 汤姆 承认 他 杀死 了 玛丽 . +This is not for you . 這 不是 給 你 的 . +Please say it once more . 請 再 說 一次 . +The door is locked at nine o 'clock . 九點鐘 鎖門 . +A huge monster is coming down the mountain . 从 山上 走来 一只 巨大 的 怪物 . +He is very afraid of his mother . 他 非常 怕 他 的 母親 . +What is your favorite season of the year ? 一年 之中 , 你 最 喜欢 哪个 季节 ? +The rivers were flooded by the heavy rain . 大雨 使 河水 泛滥 . +This is a hospital . 这 是 医院 . +Except for one person , everybody went home . 除了 一 人 , 大家 都 回家 了 . +I think Tom is awake . 我 想 Tom 已经 醒 了 . +She has hundreds of books . 她 有 幾百本 書 . +He got angry . 他 生气 了 . +My father takes a walk every morning . 我 父親 每天 早上 去 散步 . +I have been looking for a new job for a long time . 我 找 工作 已经 很 久 了 . +Many Asians have English as a common language . 許多 亞洲 人 以 英語 作為 共用 的 語言 . +He is afraid of snakes . 他 害怕 蛇 . +Thank you very much for your gift . 非常 谢谢 你 的 礼物 . +No one escaped alive . 沒有 人生 還 . +She says she will call you later . 她 說 她 晚 一點 會 打 電話 給 你 . +She is evidently sick . 她 明顯 生病 了 . +I have nothing in common with her . 我 和 她 沒有 共同 之處 . +There is a map on the wall . 墙上 有 张 地图 . +This is the town where he was born . 这 是 他 出生 的 城市 . +I found this at the risk of my life . 我 冒著 生命 危險 找到 了 這個 . +Tom made me do it . 是 汤姆 让 我 做 的 . +Nothing ever makes him angry . 沒有 什麼 事 曾 讓 他 憤怒 . +When did Tom get here ? 湯姆 是 甚麼 時候 來到 這裡 的 ? +Tom died three months ago . 湯姆 三個 月前 死 了 . +I think it is unlikely Tom will get elected . 我 觉得 汤姆 不太可能 会 当选 . +Collect your thoughts before you begin your work . 工作 之前 先 收好 思绪 . +Cross out the incorrect words . 把 错误 的 单词 划掉 . +I think his opinion is very important . 我 認為 他 的 意見 非常 重要 . +The fire has gone out . 火 已經 灭 了 . +Judging from the look of the sky , it may rain this afternoon . 從 天色 上 判斷 , 今天下午 可能 會 下雨 . +We sometimes swim in the lake . 我們 偶爾 在 湖裡 游泳 . +You are suitable for the job . 你 很 適合 這份 工作 . +She is asking for the impossible . 她 在 无理取闹 . +Tom seems to be very happy . 汤姆 看起来 非常 开心 . +The sky is clear and full of stars . 天空 晴朗 , 布满 了 星辰 . +My whole body is sore . 我 全身 酸痛 . +Who do you usually go to the movies with ? 你 一般 和 誰 去 看 電影 ? +Do you have anything to eat ? 你 有 东西 吃 吗 ? +Let your uncle think about it . 讓 你 叔叔 想一想 . +He has a wife and two young children to provide for . 他 有 一个 妻子 和 两个 孩子 要 养活 . +I do not particularly like her . 我 特别 不 喜欢 她 . +I am surprised that your family has a Japanese car . 我 很 惊讶 , 你家 居然 有 辆 日本 车 . +Who gave them to you ? 谁给了 你 这些 东西 ? +Please go to the bank . 請去 銀行 . +Open the box . 打開 箱子 . +Wolves scare me . 狼 嚇 到 了 我 . +Has he finished his homework yet ? 他 完成 他 的 功課 了 嗎 ? +The French Revolution began in 1789 . 法国 大革命 1789 年 开始 . +She mistook me for my brother . 她 把 我 誤 認為 是 我 的 兄弟 . +Tom is a native French speaker . 汤姆 是 法语 母语 者 . +She spends her leisure time making dolls . 她 利用 空闲 时间 做 布娃娃 . +You may make use of his library . 你 可以 利用 他 的 图书馆 . +Everything is bad . 一切 都 很 糟糕 . +One is new , and the other is old . 一个 是 新 的 , 另 一个 是 旧 的 . +This is the biggest car in the world . 这 是 世界 上 最大 的 车 . +You do not have to go to the party unless you want to . 除非 你 想 去 , 否則 你 不必 去 這個 派 對 . +Tom will not stop . 湯姆 不 會 停 . +She sat on the bench . 她 坐在 長椅 上 . +I will definitely vote for Tom . 我 一定 要 給 湯姆 投票 . +Tom is a politician . 汤姆 是 位 政治家 . +He is not from Hokkaido . 他 不是 來 自 北海道 . +I think you have done this before . 我 想 你 以前 做 过 这个 . +How did you make this soup ? 这 汤 怎么 做 的 ? +You 'd better not go out . 你 最好 不要 出門 . +I have to stop procrastinating . 我 不能 再 拖延 了 . +Tom and Mary spoke on the phone . 湯姆 和 瑪麗 在 電話 裡 交流 . +I want to go with you . 我 想 和 你 一起 去 . +Clean your room . 清 掃 你 的 房間 . +I called him up yesterday . 我 昨天 打 電話 給 他 . +Where did you have your picture taken ? 你 从 哪里 照 的 相 ? +Do not touch it . 別 碰 它 . +I intend to go to the barbershop . 我 打算 去 理 髮 店 . +Better late than never . 迟到 总 比 不到 好 . +I really like puppies . 我 非常 喜欢 小狗 . +Please speak as slowly as possible . 请 尽量 慢点 说 . +That is a strange sentence . 那 是 一個 奇怪 的 句子 . +Could you send it to this address ? 你 能 把 它 送到 這個 地址 嗎 ? +Tom is not as innocent as he seems . 汤姆 不 像 他 看上去 的 那样 无辜 . +Thank you , I have had enough . 謝謝 你 , 我 吃 飽 了 . +It is up to you to decide whether we will go there or not . 该 由 你 来 决定 我们 去不去 那儿 . +He complained about the noise . 他 抱怨 這個 噪音 . +Can we talk in private ? 我们 能 私下 谈谈 吗 ? +Can you please give me something to do ? 请问 你 能 给 我 点 事 做 吗 ? +That only happens occasionally . 这 只是 偶发事件 . +We toured all the major cities . 我们 游览 了 所有 主要 城市 . +My mother happened to be there when the fire broke out . 着火 的 时候 我 妈妈 恰好 在 那 . +Today is even busier than normal . 今天 比 平时 还 忙 . +She and I are brother and sister . 她 和 我 是 姐弟 . +Do you want to know ? 你 想 知道 嗎 ? +He is always at home on Sundays . 他 星期日 總是 在家 裡 . +Were they serious ? 他们 是 认真 的 吗 ? +I just wish we could leave this horrible place . 我 只是 希望 我们 能 离开 这个 可怕 的 地方 . +One of my pleasures is watching TV . 我 的 一個 樂趣 是 看 電視 . +I can not believe Tom is really planning to do this . 我 无法 相信 汤姆 真的 打算 做 这 事儿 . +I find it hard to get up early on cold mornings . 我 覺得 在 寒冷 的 早晨 很 難 早起 . +My baggage is missing . 我 的 行李 丢 了 . +Tom died recently . 汤姆 最近 死 了 . +Let is play baseball . 我們 去 打 棒球 吧 . +I am here , so do you want to chat ? 我 在 这 , 你 想 聊天 吗 ? +Sociopaths rarely display remorse or feelings of guilt for their crimes . 反 社会 者 极少 为 他们 的 罪行 显露 懊悔 或 有 罪恶 的 感觉 . +Have any letters arrived for me ? 到 的 有 我 的 信 吗 ? +What is on the desk ? 桌子 上 有 什么 ? +Get lost . 滚 . +So , what happened this time ? 那么 , 这次 发生 了 什么 ? +Finally , he attained his goal . 他 终于 达到 了 自己 的 目标 . +Both Tom and Mary can not speak French . 汤姆 和玛丽 都 不 说 法语 . +That car is really expensive . 那 辆 汽车 真的 很贵 . +Be careful on your way back home . 回家 的 路上 注意安全 . +Tom frowned . 湯姆 皺著 眉頭 . +Is it large enough ? 這麼 大 的 夠用 嗎 ? +We will take part in the marathon . 我们 将 参加 马拉松 . +They were left speechless . 他们 惊 得 目瞪口呆 . +We did not get an apology . 我们 没有 收到 过 道歉 . +I hope so . 我 希望 如此 . +He came all the way from Chicago . 他 從 芝加哥 遠 道 而 來 了 . +Nowadays nobody believes in ghosts . 現在 沒 有人 相信 有鬼 . +Please allow me to go . 請 允許 我 去 . +I feel much better today . 我 今天 感觉 好多 了 . +Men should work . 男人 应该 工作 . +Are you a student of a private high school ? 你 在 私立高中 读书 吗 ? +I really like my coworkers . 我 确实 喜欢 我 的 同事 . +The woman glared at us . 女人 瞪 了 我們 . +Tom certainly is a good teacher . 湯姆 確實 是 位 好 老師 . +Tom was embarrassed to have to ask for help . 汤姆 很 不好意思 去求 帮忙 . +Tom was my first boyfriend . 汤姆 是 我 第一个 男朋友 . +Tom has not called Mary yet . 湯姆 還 沒 打 給 瑪莉 . +This whisky is too strong . 这种 威士忌 太烈 了 . +I could tell Tom the truth , I suppose . 我 覺得 我 能 告訴 湯姆 真相 . +That is too bad . 那 太 糟糕 了 . +She is not always happy . 她 不 總是 高興 . +You look very tired . 你 看上去 非常 累 . +This doghouse was built by Tom . 这 狗 屋 是 汤姆 建 的 . +Could we go somewhere and talk ? 我们 能 去 别的 地方 谈谈 吗 ? +His wife gave birth to twin boys . 他 的 妻子 生下 了 一對 雙 胞胎 男孩 . +Tom is not a very nice guy . 湯姆 不是 個 多 好 的 人 . +He is a person who never cuts corners . 他 是 个 绝对 不会 偷工减料 的 人 . +I want the other one . 我 想要 另 一個 . +What is the weather like ? 天氣 怎麼樣 ? +The novel ends with the heroine is death . 小说 以 女主角 的 死 告终 . +She left home ten minutes ago . 她 十分 鐘 前 離家 . +Life does not always go the way we want it to . 生活 并 不 总是 如 我们 所愿 . +I do not have a dog . 我 没有 狗 . +I understand how you feel . 我 明白 你 的 感受 . +My father is out . 我 父亲 出门 了 . +You have been deceived . 你 被 騙 了 . +Could you stop saying that ? 你 能 不 说 那个 了 吗 ? +I want to just focus on the positive . 我 只 想 注意 积极 方面 . +Do I need to transfer ? 我 需要 换乘 吗 ? +I would like to see it . 我 想 看看 它 . +What do you call this bird ? 這 隻 鳥 叫作 什麼 ? +This is the dictionary I use every day . 这 是 我 每天 都用 的 字典 . +Put on your good shoes . 穿 上 你 的 好鞋 . +I have brothers . 我 有 兄弟 . +Place it wherever you like . 你 想 放在 哪裡 就 放在 哪裡 . +I continued working . 我 繼續 工作 . +Tom is my brother . Tom 是 我 哥哥 . +Environmental pollution is causing abnormal weather conditions . 環境 污染 正 造成 異常 的 天氣 情況 . +Can I take pictures here ? 我 能 在 这里 拍照 吗 ? +The bus is full . You will have to wait for the next one . 這 班 公車 客滿 了 . 你 必須 等下 一班 . +I saw my reflection in the window . 我 在 窗户 上 看見 了 我 的 映像 . +Jazz fusion is a combination of rock and jazz . 融合 爵士 是 搖滾樂 與 爵士 樂 的 融合 . +I will show you around the town . 我 會 帶 你 逛逛 這個 鎮 . +I can not stand this noise . 我 不能 忍受 這個 噪音 . +Tears rolled down my cheeks . 泪水 沿着 我 的 面颊 流 了 下来 . +Broccoli is one of the healthiest vegetables . 西藍花 是 最 健康 的 蔬菜 之一 . +Feel free to ask any questions . 隨時 問 任何 問題 都 可以 . +No one lives in this building . 没有 人 住 在 这栋 楼里 . +Is death the only way out ? 死 是 唯一 的 解脱 吗 ? +That is the man whose kids are so nice . 那个 男人 , 就是 他 的 孩子 很 友好 的 那个 . +I can not do without her help . 沒有 她 的 幫助 我 做 不到 . +I have always distrusted Tom . 我 一直 不 信任 湯姆 . +He studies contemporary literature . 他 学习 现代文学 . +I ate lunch in a hurry . 我 匆忙 地 吃 了 午飯 . +We are here in the name of Jesus Christ and King Charles . 我們 這裡 以 耶穌 基督 和 查理斯 國王 之 名 . +He does not seem to be an American . 他 似乎 不是 美國 人 . +Tom had a drink in his hand . 汤姆 手里 拿 着 饮料 . +My grandfather died when I was a boy . 當 我 是 個 小男孩 的 時候 , 我 的 祖父 就 過世 了 . +She is a doctor . 她 是 医生 . +We are hiding . 我们 在 藏 着 . +The population of Japan is larger than that of New Zealand . 日本 的 人口 比 新西兰 多 . +He gave me a nice Christmas present . 他 给 了 我 一个 很棒 的 圣诞礼物 . +My TV has quit working . 我 的 電視 已經 壞 了 . +I take a bath every night . 我 每晚 洗澡 . +About how much will I have to pay for all the treatments ? 所有 的 医药费 我 大概 要 付 多少 ? +Is there anything you want that you do not have ? 有 什么 你 想要 但是 没有 的 东西 吗 ? +He can also speak Russian . 他 也 會 說 俄語 . +He shaves every day . 他 每天 刮 鬍 子 . +That is flammable . 那 是 可燃 的 . +My older sister often drinks tea with milk . 我 的 姐姐 经常 就 着 牛奶 喝茶 . +Can I ask you a question ? 我 可以 問 您 一個 問題 嗎 ? +I am not as optimistic as you are . 我 没有 你 那么 乐观 . +I went to the hospital to have my eyes tested . 我 到 醫院 去 檢查 了 眼睛 . +Nothing seems to grow in this soil . 這個 土壤 似乎 長 不出 任何 東西來 . +I know all your secrets . 我 知道 你 所有 的 秘密 . +You are really brave , are not you ? 你 很 勇敢 , 不是 嗎 ? +You run . 你 跑 . +I like playing the piano . 我 喜欢 弹钢琴 . +He worked too hard , and became sick . 他 工作 得 太 多 , 病倒 了 . +I wish he were here now . 我 希望 他 現在 在 這裡 . +Nothing is as important as peace . 没有 什么 和 和平 一样 重要 . +Over @-@ sleeping is no excuse for being late . 睡 过头 不是 迟到 的 理由 . +Let is leave as soon as he arrives . 他 一 到 , 咱們 就 走 了 吧 . +Tom is watching a video . 湯姆 在 看 影片 . +He earns three times more than me . 他 赚 的 比 我 多三倍 . +These questions are easy to answer . 這些 問題 太 容易 回答 了 . +I feel sad . 我 很 难过 . +He is good at baseball . 他 垒球 打 得 很 好 . +This is what I want . 这 就是 我 想要 的 . +Tom was very scared . 湯姆 當時 非常 害怕 . +You 'd better consult the doctor . 你 最好 请教 一下 医生 . +He used to be a nice boy . 他 以前 是 個 好 男孩 . +I am almost done . 我 差不多 完成 了 . +Are you sure that Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +They were afraid of the big dog . 他們 怕 這 隻 大 狗 . +I was amazed at his courage . 我 對 他 的 勇氣 感到 驚訝 . +He is a good person . 他 是 個 好人 . +We are very skeptical . 我们 非常 怀疑 . +Tomorrow is my birthday . 明天 是 我 生日 . +Would you care for another glass of beer ? 再 来 一杯 啤酒 怎么样 ? +Do not make stupid jokes . 开 什么 国际 玩笑 . +It is not a watch . 這 不是 手 錶 . +She bought a toy for her child . 她 買 了 一個 玩具 給 她 的 孩子 . +People can not live forever . 人 无法 长生不死 . +I can not wait for you . 我 不能 等 你 . +Let them have their fun . 讓 他們 鬧 去 . +I am making a movie . 我 在 製 作 電 影 . +That is a nice coat . 那 是 一件 不錯 的 大衣 . +Tom was unsatisfied with the results . 汤姆 对 结果 不满 . +I really do not need any help . 我 真的 不 需要 幫助 . +Keep this lesson in mind . 记好 了 这 教训 . +The barometer is falling . It is going to rain . 气压计 下降 了 - 要 下雨 了 . +I was worried about his health . 我 担心 他 的 健康 . +You should make better use of your free time . 你 要 更好 地 利用 闲暇 时间 . +The program starts at nine o 'clock . 這個 節目 九點 開始 . +You made a mistake . 你 犯 了 个 错误 . +You seem very nervous . 你 看起来 很 紧张 . +I do not think this is Tom is umbrella . 我 認為 這 不是 湯姆 的 傘 . +As long as you are here , we might as well begin . 既然 你 在 這裡 , 那 我們 就 開始 吧 . +We enjoyed watching the fireworks on a bridge last summer . 去年 夏天 , 我们 在 桥上 看 焰火 看 得 很 过瘾 . +She does not seem to be an American . 她 似乎 不是 美國 人 . +He told us to keep quiet . 他 告訴 我們 要 保持 安靜 . +That is a good idea ! 真是 个 好 主意 ! +We got on the bus there . 我們 在 那裡 上 了 公共 汽車 . +You and I have something in common . 你 和 我 有 一些 共同点 . +Is this for sale ? 这 是 要卖 的 东西 吗 ? +I can speak Chinese , but I can not read Chinese . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +He is not here because he is ill . 他 不 在 这儿 , 因为 他 病 了 . +I am waiting for you to help me . 我 等 着 你 帮 我 . +What is the worst @-@ case scenario ? 最 坏 的 情境 是 什么 ? +He threw a stone at the dog . 他 朝着 狗 扔 了 块 石头 . +She was accepted by Harvard . 她 被 哈佛 錄取 了 . +I wonder whether or not Tom can speak French . 我 不 知道 湯姆會 不 會 說 法語 . +I treated her as my own daughter . 我 把 她 當成 是 我 自己 的 女兒 一樣 對待 . +That toy is made of wood . 這個 玩具 是 用 木頭 做 的 . +He will be at home tomorrow . 他 明天 会 在家 . +Tom used to eat a lot of junk food . 汤姆 以前 经常 吃 很多 垃圾 食品 . +You have to study Japanese harder . 你 必須 更 努力 學習 日 語 . +Take your time . 慢慢来 . +I hurried in order to catch the first train . 我 匆匆忙忙 , 为的是 能 赶上 第一班 火车 . +You have to leave home at six . 你 必須 在 六點 鐘 時 從 家中 出發 . +Tom is late as usual . 汤姆 像 往常 一样 来晚 了 +He is good at dealing with children . 他 擅長 應付 小孩子 . +I cannot bring myself to do such a thing . 我 不能 让 自己 做 这样 的 事 . +Please be careful when crossing the street . 过 马路 时 请 小心 . +It is extremely hot and humid in Bali in December . 12 月份 巴厘岛 极其 炎热 和 潮湿 . +I subscribe to two newspapers . 我 訂閱 了 兩份 報紙 . +How many people know about us ? 有 多少 人 知道 我們 ? +A beautiful sunset , is not it ? 美麗 的 夕陽 , 不是 嗎 ? +This is difficult to believe . 這 讓 人 難以 置信 . +I wonder what will happen . 我 不 知道 會 發生 甚麼 . +He is in the kitchen . 他 在 厨房 . +There is a letter for you . 你 有 一封信 . +Could you lend me the book ? 你 能 借 我 这 本书 吗 ? +Tom studies at Harvard . 汤姆 在 哈佛 学习 . +Talk is cheap . 說 得 簡單 . +I have a bad toothache . 我 牙痛 得 厲害 . +I know what you mean . 我 知道 你 的 意思 . +The meal satisfied his hunger . 這 頓 飯 讓 他 充 饑 解 餓 了 . +Only Takeuchi did not accept the invitation . 只有 竹 內 沒有 接受 邀請 . +We are confident of victory . 我們 有 信心 獲勝 . +When did you learn how to swim ? 你 什么 时候 学会 游泳 的 ? +I heard him coming downstairs . 我 聽 見 他 下樓 的 聲音 . +She never wears green . 她 從來 不 穿 綠色 的 衣服 . +I was not drunk . 我 沒醉 . +We will be here for three more days . 我們 還 要 在 這里 待 三天 . +Do not touch this with your dirty hands . 别 用 你 的 脏手 碰 这个 . +Actions speak louder than words . 坐 而言 不如 起 而 行 . +I do not feel like studying . 我 没有 强烈 的 欲望 去 学习 . +I am not guilty of anything . 我 没有 对 任何 事 感到 有罪 . +She is sitting on the bench . 她 坐在 長椅 上 . +Tom has been learning French for a few years . 汤姆 学 了 几年 法语 . +I visited him a week ago today . 我 在 一周 前 的 今天 拜訪 了 他 . +He has lost his job . 他 已經 失去 了 他 的 工作 . +Everything went well . 一切 都 很 顺利 . +I do not know if I can do it . 我 不 知道 我 能 不能 做 . +She visits us every other day . 她 每 兩天 探訪 我們 . +How did you draw this picture ? 你 怎么 画 这 幅画 ? +I thought you said you did not see anything . 我 記得 你 說 你 甚麼 也 沒 看見 . +You 'd better relax a bit . 你 最好 休息 一下 . +Is that our problem ? 那 是 我們 的 問題 嗎 ? +I was not implying anything . 我 沒有 暗示 甚麼 . +Tom and Mary have a daughter and a son . Tom 和 Mary 有個 女兒 和 兒子 . +You like elephants . 你 喜欢 大象 . +Tom is writing a letter to his best friend . 汤姆 正 给 他 的 好友 写信 . +He must have said so without giving it much thought . 他 一定 没有 多 考虑 就 说 了 . +Love does not exist . 愛 不 存在 . +I still can not believe you are married . 我 仍然 無法 相信 你 結婚 了 . +I have not watched that video yet . 我 还 没 看过 那段 视频 . +I can not see anything without my glasses . 我 没 带 眼镜 就 什么 都 看不到 . +I will go on ahead . 我 會 繼續 前 進 . +He painted a dog . 他 畫 了一 隻 狗 . +A couple of flights were delayed on account of the earthquake . 一些 航班 由 於 地震 被 延誤 了 . +I am a college student . 我 是 个 大学生 . +You are the one who must decide . 你 是 要 做 決定 的 人 . +I saw Tom having an argument with Mary . 我 见 汤姆 跟 玛丽 争论 . +I do not know if he can come tonight . 我 不 知道 他 今晚 會 不 會 來 . +That is logical . 那 符合 逻辑 . +Mary , I love you . 玛丽 , 我 喜欢 你 ! +I have nothing to do with the affair . 我 跟 這件 事 無關 . +She is wearing a white dress today . 她 今天 穿著 白色 的 衣服 . +Tom said he was not sure what Mary wanted to do . 汤姆 说 他 不 确定 玛丽 想 做 什么 . +Shut the door , please . 請關 上門 . +I can not predict what will happen . 我 不能 預言會 發生 甚麼 . +If anything should happen , please let me know . 如果 发生 了 什么 , 请 让 我 知道 . +Which country are you from ? 你 是从 哪个 国家 来 的 ? +I wish that I could speak French better . 我 希望 我 能 说 法语 说 得 更好 . +Get me some towels from the bathroom . 给 我 从 浴室 拿 几条 毛巾 来 . +It is really bad for your eyes . 它 对 你 的 眼睛 有害 . +I like dogs and my sister likes cats . 我 喜欢 狗 , 我 妹妹 喜欢 猫 . +She must be angry with me . 她 一定 在 生 我 的 氣 . +Are you two ready ? 你们 两个 人 都 准备 好了吗 ? +May I eat something ? 我 可以 吃 點 什麼 嗎 ? +This bridge was built two years ago . 這 座 橋 是 在 兩 年前 建造 的 . +He drove the truck to Dallas . 他 開 卡 車 到 達 拉斯 . +She identified him as the murderer . 她 確認 他 是 殺 人 兇 手 . +The whole family was sick in bed . 全家 都 病倒 了 . +Tom is obese , is not he ? 汤姆 很胖 , 是 吧 ? +I am coming . 我 來 了 . +Everyone will die . 人 固有 一 死 . +Do not worry about me . 不要 擔心 我 . +He has gone to Britain . 他 已经 去 了 英国 . +This is my bedroom . 這 是 我 的 臥室 . +You must be careful not to make him angry . 你 要 小心 別 惹 他 生氣 . +Stick a stamp on the envelope . 把 郵票 貼 在 信封 上 . +She asked a very good question . 她 問 了 一個 非常 好 的 問題 . +Eat a lot of vegetables . 多 吃 点 蔬菜 . +You have cute eyes . 你 有 一双 很 可爱 的 眼睛 . +The baby tore up a ten @-@ dollar bill . 這個 小 嬰孩 撕掉 了 一張 十美元 的 鈔票 . +Where is the dining room ? 餐厅 在 哪里 ? +Tom got ready for bed . 湯姆 準備 睡覺 . +You need to leave . 你 必須 離開 . +What he says is total nonsense . 他 说 的话 根本 毫无意义 . +Tom put his wallet on the table . 汤姆 把 钱包 放在 了 桌子 上 . +How many students are there in your school ? 你们 学校 有 多少 学生 ? +I am tired of him bawling me out . 我 厭煩 了 他 對 我 說 教 . +What do you have for breakfast ? 你 早餐 吃 什么 ? +She has a rose in her hand . 她 手里 拿 着 一 朵玫瑰 . +You may go anywhere . 您 可以 随便 去 哪儿 . +I bought a book online . 我 在 網上 買 了 一本 書 . +He wanted to get his shirts washed . 他 想要 把 他 的 襯衫 洗 乾 淨 . +What do you need this money for ? 你 需要 這些 錢 做 什麼 ? +We think that he is honest . 我們 認為 他 誠實 . +The TV remote control is under the couch . 电视 遥控器 在 沙发 下面 . +It is great . 真是 太好了 . +I have a sore throat . 我 喉嚨 痛 . +Tom owes us a favor . 汤姆 欠 我们 个情 . +You are going to be a mommy . 你 要 當 媽 了 . +I am thinking about that matter . 我 在 想 那個 問題 . +It is not a watch . 這 不是 手 錶 . +It will be finished in a day or two . 一兩天 內 就 能 結束 . +We have our own problems to solve . 我们 有 自己 的 问题 要 解决 . +Why are you so mad ? 你 為 什麼 這麼 生氣 ? +I was about to go look for you . 我 剛才 正要 找 你 . +My mother was up late last night . 我 母亲 昨天 很晚 还 醒 着 . +Please give me your permanent address . 請 給 我 你 的 永久 地址 . +It is two miles from here to the park . 從 這裡 到 公園 距離 兩 英里 . +Others are less optimistic . 其他人 不 那么 乐观 . +She married him for his money . 她 为了 他 的 钱 嫁给 了 他 . +It took me three hours to do my homework . 我 花 了 3 小时 做作业 . +Will you please show me the way ? 請 您 給 我 指 一 指路 好 嗎 ? +Ask her when she will come back . 问问 她 什么 时候 回来 . +I like to run . 我 喜欢 跑步 . +She showed us a beautiful hat . 她 給 我們 看 了 一頂 漂亮 的 帽子 . +Tom is hair was disheveled . 湯姆頭 發 蓬亂 . +Can you drive a manual transmission ? 你 會 開手 排車 嗎 ? +Tom had never seen Mary so busy . 汤姆 从没 见 过 玛丽 这么 忙 . +I am not so sure Tom is wrong . 我 不 太 確定 湯姆 錯 了 . +He graduated from Tokyo University . 他 畢業 於 東京 大學 . +Have a nice day . 祝 你 一天 过 得 愉快 . +Do not worry about others . 不用 担心 其他人 . +I am single . 我 单身 . +The meeting lasted two hours . 這個 會議 持續 了 兩個 小 時 . +There were lots of people . 有 很多 人 . +I like Tom , too . 我 也 喜歡 湯姆 . +I like to listen to the radio . 我 喜歡 聽 廣播 . +Ten minutes later , our car ran out of gas . 我们 的 车 再 过 十分钟 就 没油 了 . +This medicine will give you some relief . 这 药会 让 你 舒服些 . +What will you give Tom ? 你 会 给 汤姆 什么 ? +We have had this discussion before . 我們 以前 討論 過 . +What is the name of this tune ? 這 首 曲子 叫 什麼 名字 ? +The books here are mine . 這兒 的 書 是 我 的 . +Be realistic ! 现实 点 ! +I invited my neighbor to breakfast . 我 請 我 的 鄰居 來 吃 早 飯 . +You are a good person . 你 是 一個 好人 . +We have to get through this . 我们 要 了结 此事 . +Tom did not doubt that there would be a lot of people there . 汤姆 确定 那里 会 有 很多 人 . +Are you angry at Tom ? 你 在 生 汤姆 的 气 吗 ? +I do not fear death . 我 不怕死 . +She should have been more careful . 她 本來 應該 更 小心 的 . +Fish is cheap today . 今天 魚 很 便宜 . +Tom was not surprised to see me . 汤姆 见到 我 并 没有 惊讶 . +I think it is a really good thing . 我 認為 它 真是 好事 . +I wish I were taller . 我 希望 我 比較 高 . +He put a hand gently on her shoulder . 他 把 他 的 手 溫柔 地 放在 她 的 肩上 . +Tom did not try to hide the truth . 湯姆 並 沒有 試著 要 隱瞞 實情 . +I thought he was my brother . 我 以为 他 是 我 弟弟 . +It is just big enough for Tom . 这 尽够 汤姆 的 . +Tom is a rabbi . 汤姆 是 个 拉比 . +I want some cake . 我 想要 点 蛋糕 . +I used to play tennis . 我 以前 打网球 . +Eating raw eggs could be bad for you . 吃 生蛋 可能 是 危險 的 . +We can deliver it this evening . 我們 今天 晚上 可以 運送 它 . +Why should I care what you think ? 為 什麼 我 應該 在乎 你 怎麼 想 ? +Were you busy ? 您 当时 在 忙 吗 ? +He sometimes comes to see me . 他 有时 会 来看 我 . +Tom did not want to work in Boston . 汤姆 不想 在 波士顿 工作 . +Iceland used to belong to Denmark . 冰島 以前 屬 於丹麥 . +This man is not reliable . 这个 人 靠不住 的 . +According to my calculation , she should be in India by now . 根據 我 的 估計 , 她 現在 應該 在 印度 了 . +It is none of your business . 這 不關 你 的 事 . +This is a very hard mattress . 這個 床墊 很 硬 . +The jet landed at Tokyo . 這 架 客機 降落 在 東京 了 . +We talked over the plan with him . 我們 和 他 談 了 這個 計劃 . +This is the house where she used to live . 这 是 她 曾经 住 过 的 房子 . +I know him . 我 認識 他 . +Tom and Mary are studying together in the library . 湯姆 和 瑪麗 在 圖書館 一起 學習 . +Whose bike is this ? 这辆 自行车 是 谁 的 ? +I am delighted to see you . 我 很 高兴 见到 你 . +He behaved as if he were crazy . 他 表现 的 像 个 疯子 . +Lake Baikal in Russia is the deepest lake in the world . 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +You or I will be chosen . 你 或者 我会 被 选中 . +I know why Tom is studying French . 我 知道 為 甚麼 湯姆學法語 . +The rear gate was open . 后门 曾 开 着 . +Do you think that he is equal to the task ? 你 认为 他 能够 胜任 这个 任务 吗 ? +She said that she was happy . 她 说 了 她 很 幸福 . +The pain has started to ease now . 痛 开始 减轻 了 . +I met her late in the evening . 我 在 深夜 遇見 了 她 . +Can we go now , please ? 请问 我们 现在 能 走 吗 ? +We got together in the park . 我們 在 公園 裡 聚在一起 . +They tied the thief to the tree . 他们 把 小偷 绑到 了 树上 . +Let is start with Lesson Ten . 我们 从 第十课 开始 吧 . +It is my birthday soon . 我 的 生日 就 快 到 了 . +They became close friends . 他們 成 了 密友 . +I was late to school . 我 上学 迟到 了 . +The bicycle under the tree is mine . 那 輛 在 樹下 的 自行 車 是 我 的 . +His teeth are yellow from smoking too much . 他 的 牙齿 被 烟熏 黄 了 . +Tom tried to catch up with Mary , but he could not . 汤姆 试图 去 追上 玛丽 , 但是 他 没 成功 . +Was his story true ? 他 的 故事 是 真的 吗 ? +Do you know how to do this ? 你 知道 怎么 做 吗 ? +Where are we going to meet ? 我们 在 哪里 见面 ? +It is over there . 在 那里 . +Tom has absolutely no enemies . 汤姆 绝 没有 敌人 . +Give me some paper to write on . 給 我 一些 紙 來 寫 字 . +He is no longer a boy . 他 不再 是 个 男孩 . +Is Tom eating ? 汤姆 在 吃饭 吗 ? +I was not yelling . 我 沒有 在 吼 . +I need an assistant who speaks French . 我 需要 一個 會 說 法語 的 助理 . +I am such an unlucky guy . 我 真是 不 走运 的 家伙 . +The Colombian government demanded more money . 哥伦比亚政府 要 了 更 多 的 钱 . +Everyone knows that Tom is French is good . 每个 人 都 知道 汤姆 的 法语 很 好 . +I have a lot of friends living in Boston . 我 有 很多 朋友 住 在 波士顿 . +For here , or to go ? 內用 還 是 外帶 ? +You should set a good example for your children . 你 应该 给 你 的 孩子 们 树立 好榜样 . +There is an orange on the table . 桌上 有 一只 橙子 . +He did nothing but cry . 他 只是 哭 . +She gave him the car . 她 给 了 他 车 . +Bring your student ID card . 帶上 你 的 學生卡 . +I do not like to swim in the pool . 我 不 喜歡 在 泳池 裡 游泳 . +Tom did not know that what he 'd done was against the rules . 汤姆 不 知道 他 的 所作所为 违反 了 规则 . +My grandfather is photograph is on the wall . 我 祖父 的 照片 在 墙上 挂 着 . +He showed me his photograph album . 他 給 我 看 了 他 的 影集 . +Without water , we cannot exist . 没有 水 , 我们 无法 生存 . +The city was soon occupied by the soldiers . 很快 , 城市 就 被 士兵 占领 了 . +I can not find anything wrong with his theory . 我 在 他 的 理論 中 找 不到 任何 問題 . +The train came on time . 火车 准时 到 了 . +Tom passed away on October 20th , 2013 . 汤姆 逝世 于 2013 年 10 月 20 日 . +You do not need to work on Sundays . 星期天 的 時候 , 你 不用 工作 . +I was impressed with her work . 她 的 作品 給 我 留下 了 深刻印象 . +What would you like to be in the future ? 你 以后 想 当 什么 呢 ? +I am on a diet . 我 在 節食 . +I love passion fruit juice . 我 愛 百香果汁 . +He is very angry . 他 非常 生气 . +I am just a regular office worker . 我 只是 一個 普通 的 上班族 . +He is married with two children . 他 已婚 並 育有 兩個 孩子 . +Please answer all the questions . 請 回答 所有 問題 . +I really have to be going . 我 真的 得 走 了 . +I can open the window . 我 可以 打開 這 扇 窗 . +I want you to work harder . 我 希望 你 更加 努力 地 工作 . +This is your key . 這 是 您 的 鑰匙 . +I wonder if they will get divorced . 我 不 知道 他們 是否 會 離婚 . +Tom does not seem to be a Canadian . 湯姆 看來 不是 加拿大人 . +How do you make your money ? 你 怎麼 賺 錢 ? +" Do you think he will come ? " " I hope not . " " 你 認為 他 會 來 嗎 ? " " 我 希望 不 會 . " +Is there any chance that he will resign ? 他 有 可能 辭職 嗎 ? +Do not pay any attention to Tom . 千万别 理 汤姆 . +Do you often hear from him ? 你 常常 收到 他 的 音訊 嗎 ? +I think you are going to want to sit down . 我 觉得 你 想 坐下 . +The Prime Minister is speech was calculated to anger the opposition parties . 總理 的 發言 估計 激怒 了 在野 黨 . +You should go . 你 最好 去 . +You spend too much money . 你 花 太 多 钱 了 . +Cows provide us with milk . 奶牛 为 我们 提供 牛奶 . +She always gets her own way . 她 總是 隨心 所欲 . +That mountain is covered with snow . 這 座 山 被 雪所覆蓋 . +Close the door . 关门 . +You have to clean your room . 你 该 打扫 你 的 房间 . +Call Tom and Mary this evening . 今晚 给 汤姆 和玛丽 打电话 . +As soon as she opened the door , a cat ran out . 她 一開 門 , 一 隻 貓 就 跑 了 出 來 . +She is a famous singer . 她 是 一个 著名 的 歌手 . +Love blinded him to her faults . 愛情 讓 他 盲目 到 看不到 她 的 錯 . +We started at six . 我們 六點 開始 . +I am sure Tom would approve . 我 確定 湯姆會 同意 . +I am not at all satisfied with this result . 我 對 這個 結果 一點 兒 也 不 滿意 . +What do you want to do ? 你 想 做 什麼 ? +He got away disguised as a policeman . 他 偽裝 成 警察 逃跑 了 . +Can you wake me up at 7 : 00 tomorrow ? 你 明天 早上 七點 可不可以 叫 我 起床 . +No one believed what I said . 没有 人 相信 我 说 的话 . +This is not difficult . 這個 不 難 . +There is no need to get so angry . 沒有 必要 這麼 生氣 . +You have everything . 您 全都 有 . +His pictures were hung on the wall . 他 的 画 被 悬挂 在 墙上 . +Have you finished it ? 你 做 完 了 嗎 ? +I continued singing . 我 继续 唱歌 . +This lake is deepest at this point . 这里 是 湖 最深 的 地方 . +I think this machine is in need of repair . 我 认为 这 机器 需要 修理 . +It has been raining since last Thursday . 從 上週 四 開始 一直 下雨 . +I am scared of wild animals . 我 怕 野兽 . +I think you are jealous . 我 觉得 你 妒忌 了 . +We had a lot of snow last year . 去年 下 了 很多 雪 . +You must be mentally exhausted . 你 肯定 脑子 糊掉 了 . +Are you absolutely certain about this ? 你 絶 對 確 定 這 事 嗎 ? +Study hard so you do not fail . 努力 學習 , 這樣 你 就 不 會 失敗 . +She has broken the toaster again . 她 再次 弄壞 了 烤 麵 包 機 . +He lives just around the corner . 他 就 住 在 附近 . +I do not care if it is a bit cold . 稍微 冷 点儿 不要紧 . +I was very confused by his questions . 我 對 他 的 問題 感到 非常 困惑 . +Good afternoon . 下午 好 . +Tom bought new gloves . 湯姆 買 了 新 手套 . +What kind of movie do you want to watch ? 你 想 看 哪种 类型 的 电影 ? +Dinosaurs became extinct a very long time ago . 恐龍 在 很久以前 滅 絶 了 . +I cut myself shaving this morning . 我 今天 早上 刮 鬍 子 的 時 候 把 自己 弄 傷 了 . +Tomorrow is weather should be sunny with occasional rain . 明天 天气 晴 转 阵雨 . +I want a few potatoes . 我 要 幾個 土豆 . +Everybody laughed . 大家 笑 了 . +Please phone me before you come . 請 你 來 之前 打 電話 給 我 . +You are too sensitive to criticism . 你 對 批評 太 敏感 了 . +I have a certain amount of money on me . 我 有些 钱 . +I do not know what to open it with . 我 不 知道 用 什么 能 打开 它 . +It is hard to predict what the weather will be like tomorrow . 很难说 明天 的 天气 将 会 怎样 . +He wants more . 他 想要 更多 . +He got injured in the traffic accident . 他 在 這場 交通 意外 中 受 了 傷 . +His absence gave birth to all sorts of rumors . 他 的 缺席 导致 了 各种 谣言 的 产生 . +They serve excellent food here . 他們 這裡 提供 一流 的 美食 . +The smell of roses filled the room . 玫瑰 香水 的 味道 充满 了 房间 . +My hands and legs are swollen . 我 的 手 和 腳 都 腫 了 . +He is your friend . 他 是 你 的 朋友 . +I can not swim at all . 我 一点 也 不会 游泳 . +I do not like sushi . 我 不 喜欢 寿司 . +Ask him where he parked his car . 問 問 他 把 他 的 車 停 在 那裡 . +Tom is the tallest in his class . 湯姆 是 班上 最高 的 . +She squeezed the juice from many oranges . 她 用 了 許多 柳橙 來 榨汁 . +He went to Nagoya on business . 他 到 名古屋 洽談 業務 . +I arrived at the station on time . 我 準 時 到 達 了 車站 . +This is all that I know about him . 这 就是 我 关于 他 知道 的 一切 . +Tom might have missed the last train . 汤姆 可能 错过 了 最后 一班 列车 . +She seems to be in love with my brother . 她 似乎 喜歡 上 了 我 哥哥 . +Welcome back . 欢迎 回来 . +That is very big . 那 是 很大 的 . +Tom and I are almost done . 湯姆 和 我 要 做 完 了 . +A stranger spoke to me on the bus . 在 公车上 , 一个 陌生人 和 我 说 了 话 . +I am cooking dinner . 我 准备 晚餐 . +Let is not discuss the matter today . 今天 讓 我們 不要 討論 這件 事 . +I am as tall as you . 我 跟 你 一樣 高 . +Can you distinguish silver from tin ? 你 能 分辨 銀和錫 嗎 ? +What is this ? 這 是 什麼 ? +Take off your socks . 把 你 的 袜子 脱 了 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +It looks like your dog is thirsty . 你 的 狗 看起来 口渴 了 . +Visiting all the tourist sights really wore me out . 參觀 所有 觀光勝 地 累壞 了 我 . +She may be late , in which case we will wait . 她 可能 迟到 , 然后 我们 就要 等 . +Tom says he hopes Mary can do that . 汤姆 说 他 希望 玛丽 能 做到 . +You should put your coat on . 你 應該 把 大衣 穿 上 . +I will take you to the bus stop . 我会 带 你 到 公交车站 . +You are irresistible . 你 令人 难以 抗拒 . +I like you . 我 喜欢 你 . +Tom was replaced by Mary . 汤姆 被 玛丽 替换 下来 . +I think I am right . 我 想 我 是 對 的 . +Every day I waited for her at the bookstore after school . 我 每天 放学 后在 书店 那里 等 她 . +The sky turned dark . 天暗 了 下来 . +Europe has a smaller population than Asia . 欧洲 的 人口 比 亚洲 少 . +I have eight siblings . 我 有 八個 兄弟姐妹 . +We studied English . 我们 学 了 英语 . +There were two pieces of cake . 那 有 两块 蛋糕 . +Let me handle this . 讓 我 來 處理 . +I want a boat that will take me far away from here . 我 想要 一艘船 带 我 远离 这里 . +I think that Tom is a bit too impatient . 我 觉得 汤姆 有些 过于 性急 了 . +I want to keep moving . 我 想 继续 走 . +He comes to Tokyo once a year . 他 一年 來 東京 一次 . +Tom has not taken a bath in a long time . 汤姆 很 长时间 没 洗澡 了 . +I can do it by myself . 我 可以 自己 做 . +I handed the mike to him . 我 把 麥克風 遞 給 他 . +Will you be here tomorrow ? 你 明天 在 这里 吗 ? +I was vaccinated against the flu . 我 接种 了 流感疫苗 . +That should make you happy . 那 该 让 你 高兴 . +I want to know where she went . 我 想 知道 她 去 哪儿 了 . +It is fun to travel . 旅行 是 令人 快乐 的 . +I believe in love . 我 相信 爱情 . +He wore a dark sweater . 他 穿 了 一件 深色 毛衣 . +Tom should thank me . 汤姆 应该 感谢 我 . +I can not do it . 我 做 不到 . +I called Tom up . 我 打 電話 給 湯姆 了 . +I do not think he can help you . 我 覺得 他 不能 幫 你 . +I like to travel by train . 我 喜歡 搭 火車 旅行 . +Mathematics is difficult for me . 數學 對 我 來說 很 難 . +How much is the commission ? 手续费 是 多少 ? +Did you check all the items on the shopping list ? 你 检查 购物单 上 所有 的 项目 了 吗 ? +Can you copy this for me ? 你 能 替 我 拷貝 這個 嗎 ? +Tom has calmed down . 汤姆 冷静下来 了 . +Tom has his own bedroom . 湯姆 有 他 自己 的 房間 . +We are waiting for Tom . 我们 在 等 汤姆 . +She was very proud of her father . 她 非常 地 以 她 父親 為 榮 . +All horses are animals , but not all animals are horses . 所有 的 马 都 是 动物 , 但 并非 所有 的 动物 都 是 马 . +The teacher asked me which book I liked . 老師 問 我 我 喜歡 哪 本書 . +Do you know where they come from ? 你 知道 他们 来自 哪里 吗 ? +His methods are not scientific . 他 的 方法 不 科学 . +I can not stand his arrogance . 我 受不了 他 的 傲慢 . +Here is the book you are looking for . 你 正在 找 的 書 在 這裡 . +A stitch in time saves nine . 防微 杜漸 . +A dog can run faster than a man can . 狗 跑 得 比 人 快 . +I ate an apple . 我 吃 了 一個 蘋果 . +The glass is dirty . 玻璃 髒 了 . +We will stay here until Sunday . 星期天 前 我們 將 會 待 在 這裡 . +I will pay . 我 來付 錢 . +You should seriously consider working here . 你 应该 认真 考虑 在 这里 工作 的 事 . +I made her angry . 我 讓 她 生氣 . +I am leaving for Canada tomorrow . 我 明天 要離 開去 加拿大 . +Have you ever seen Tom when he is mad ? 你 有 看见 过 汤姆生 气 的 时候 吗 ? +It is already eleven . 已经 是 11 点 了 . +Most people think I am crazy . 大部份 的 人 覺得 我 瘋 了 . +I wash my hands before eating lunch . 我 在 吃 午 饭前洗手 . +He could not answer that question . 他 無法 回答 這個 問題 . +You look like you have just lost your best friend . 你 看上去 就 像是 刚刚 失去 了 自己 最好 的 朋友 似的 . +He is an Italian . 他 是 義 大利 人 . +You have to start somewhere . 你 必须 有 一个 出发点 . +I have met so many new people . 我 遇見 了 許多 新 的 人 . +I will play tennis this afternoon . 我 今天下午 會 去 打 網球 . +I applied for a summer internship . 我 應徵 了 一個 暑期 實習 . +Many kinds of birds live in Japan . 許多種 鳥類 住 在 日本 . +I know what it is like to lose someone . 我 知道 这 看起来 像是 失去 了 某人 . +Tom abandoned hope . 湯姆 放棄 了 希望 . +Is Tom really a nice guy ? 汤姆 是 个 好人 吗 ? +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +These are the new ones . 這些 是 一些 新 的 . +This medicine will help you . 這個 藥會 幫助 你 . +I do not eat as much as I used to . 我 比 以前 吃 得 少 了 . +He could not hold his temper any longer . 他 再也 忍不住 气 了 . +I am okay . 我 沒事 . +How was the food ? 食物 怎麼樣 ? +He has made the same mistake twice . 他 犯 了 兩次 相同 的 錯誤 . +He is writing a long letter . 他 写 长信 . +Open your eyes , please . 请 睁开眼睛 . +What do you usually do in your spare time ? 你 在 閒暇 的 時候 一般 做 什麼 ? +Is there anything you want to eat ? 有 什么 想 吃 的 吗 ? +Tom is a scumbag . 湯姆 是 個 无賴 . +I built a new house . 我 盖 了 栋 新房子 . +I have finished writing the letter . 我 已經 寫 完信 了 . +I wrote a letter . 我 写 了 一封信 . +I have no energy today . 今天 我 沒有 精神 . +Raise your hands . 手 举 起来 . +I can sing well . 我 唱歌 很 好听 . +I do not know when he will come . 我 不 知道 他 什么 时候 来 . +I made up my mind to go there . 我 决定 去 那里 . +I must help her . 我 必須 幫助 她 . +She abandoned her children . 她 抛弃 了 她 的 孩子 . +Chocolate has more iron than spinach . 巧克力 的 鐵質 含量 比 菠菜 還 要 多 . +You should have warned him sooner . 你 應 該 要 更快 警告 他 的 . +Strictly speaking , the earth is not round . 嚴格 來說 , 地球 不是 圓 的 . +I really do not understand this problem . 我 真的 不 懂 这个 问题 . +Dad bought me a camera . 爸爸 给 我 买 了 一个 照相机 . +I felt that my honor was at stake . 我 覺得 我 的 名譽 受到 了 威脅 . +How about going to the movies ? 去 看 電影 怎樣 ? +Do you want to know what I see ? 你 想 知道 我 看见 什么 了 吗 ? +You may go anywhere you like . 你 喜欢 去 哪儿 就 可以 去 哪儿 . +With the T.V. on , how can you keep your mind on your studies ? 你 开 着 电视 怎么 能 安心 学习 呢 ? +I think it will turn out fine . 我 觉得 没 问题 . +Wait till the light turns green . 等到 指示 燈 變成 綠色 . +Perhaps she will come tomorrow . 也許 她 明天 會來 . +I wish I were in Paris now . 但 願 我 現在 在 巴黎 . +You hate Tom , do not you ? 你 恨 湯姆 , 不是 麼 ? +I can read without glasses . 没 眼镜 我 可以 读 . +Things are getting out of control . 事情 要 失控 了 . +Tom gave a different answer . 湯姆 給出 了 不同 的 答案 . +Are you following me ? 你 在 跟著 我 嗎 ? +She discovered that she had run out of salt . 她 发现 她 已经 断盐 了 . +She killed herself yesterday . 她 昨天 自杀 了 . +What did he say ? 他 说 了 什么 ? +If it rains tomorrow , I will not go . 如果 明天 下雨 , 我 就 不 去 . +Did you play baseball yesterday ? 你 昨天 打 棒球 了 没有 ? +Wait a moment . 請 稍 等 . +My father is hobby is fishing . 我 父親 的 嗜好 是 釣 魚 . +Why are you guys so angry ? 你們 為 什麼 這麼 生氣 ? +I live near the sea so I often go to the beach . 我 住 在 海边 所以 经常 去 海滩 . +Did she show you the picture ? 她 給 你 看 過 照片 了 嗎 ? +There must be a way to arrive at a diplomatic solution . 必须 有 外交 解决 的 途径 . +I do not know her . 我 不 認識 她 . +Mary can speak Japanese . 瑪麗會 講 日 語 . +Why would she lie ? 她 為 甚麼 要 說 謊 ? +That is my dictionary . 那 是 我 的 字典 . +I as well as you was late for school yesterday . 我 跟 你 一样 昨天 上学 迟到 了 . +Tom should not have been here today . Tom 今天 不該 在 這 . +" I never thought Tom would win . " " Me neither . " “ 我 没想到 汤姆 会 赢 . ” “ 我 也 是 . ” +Tell Tom that I do not need his help . 告诉 汤姆 我 不 需要 他 的 帮助 ! +He lives by himself . 他 一个 人 生活 . +You should do that as often as you can while you are still young . 趁 你 还 年轻 的 时候 , 你 应该 尽可能 经常 地 这样 做 . +I know that you are busy , too . 我 知道 , 您 也 很忙 . +Where is the Japanese Embassy ? 日本 大使 館 在 哪裡 ? +Tom said that he 'd never been to Boston . 汤姆 说 他 从来 没 去过 波士顿 . +You remind me of your brother . 你 讓 我 想起 你 的 兄弟 . +I do not know if she wants to go with me . 我 不 知道 她 想 不想 和 我 一起 去 . +What time do you go home ? 你 几点 回家 ? +Is that pure gold ? 那 是 純金 嗎 ? +He is something of a scholar . 他 有 几分 像 学者 . +There is no doubt about it . 關於 此事 毫無疑問 . +Wear whatever you want to wear . 穿 你 想 穿 的 . +Tom does not write to me anymore . 汤姆 不再 给 我 写信 了 . +Which do you prefer , dogs or cats ? 狗 和 猫 你 更 喜欢 哪 一个 ? +I know this has not been easy for you . 我 知道 這 對 於 你 不 容易 . +He did not eat anything yesterday . 他 昨天 沒有 吃 任何 東西 . +He told me when to say yes . 他 告诉 我 什么 时候 该 说 是 . +Cash donations will be accepted . 接受 现金 捐赠 . +Do you have something to say to me ? 你 有事 想 对 我 说 吗 ? +My friends invited me to dinner . 我 的 朋友 邀請 我 去 吃 晚 飯 . +They do not always obey their parents . 他們 並 不 總是 服 從 他們 的 父母 . +It took a long time to take in what she was saying . 花 了 很久 才能 听懂 她 在 说 什么 . +I have already eaten breakfast . 我 已经 吃 过 早饭 了 . +Everyone was surprised . 所有人 都 很 吃惊 . +If you do not have anything nice to say , do not say anything at all . 如果 你 没 好话 说 , 那 就 什么 都 别说 . +They do not know each other very well . 他們 不 太 認識 對 方 . +Where are you going ? 你们 去 哪里 ? +I do not lie . 我 不 說 謊 . +Tom put down his paintbrush . 湯姆 放下 了 他 的 畫筆 . +All of the cookies are in the shape of stars . 所有 餅 乾 都 是 星星 的 形狀 . +What are you laughing at ? 你 在 笑 什么 呢 ? +Everything is normal . 一切正常 . +I like spring better than fall . 我 喜歡 春天 勝 過 秋天 . +There is something we need to talk about . 我们 有些 事 要 谈 . +Tom is a high school student . 湯姆 是 個 高中生 . +That is good , is not it ? 那 太好了 , 不是 嗎 ? +My aunt grows tomatoes in her garden . 我 阿姨 在 她 的 花園 種 蕃茄 . +Will you take a personal check ? 你 收 私人 支票 嗎 ? +Tom waited for Mary in front of the warehouse . 湯姆 在 倉庫 前 等 瑪麗 . +He took a walk before breakfast . 他 在 早餐 之前 散步 . +I need my boots . 我 需要 我 的 靴子 . +She married again in her mid @-@ forties . 她 在 四十多 歲 的 時候 再次 結婚 . +That tie goes well with your shirt . 那條 領帶 很 適合 你 的 襯衫 . +Are you finished with your work ? 你 完成 你 的 工作 了 嗎 ? +She despised him . 她 看不起 他 . +She burned her left hand . 她 的 左手 被 燙到 了 . +It is unfortunately true . 可惜 这 是 真的 . +I heard it on the radio . 我 從 廣播 中 聽到 它 . +Tom could not see anyone . 汤姆 看不到 任何人 . +I do not want to take such a risk . 我 不想 承担 这样 一个 风险 . +Tom is coming , too . 汤姆 也 来 . +We can not stay in here very long . 我們 不能 在 這裡 待 很 長 時間 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +He moved into my neighborhood . 他 搬到 了 我家 附近 . +We are eating bread . 我们 在 吃 面包 . +The class begins at 8 : 30 . 課程 八點半 開始 . +I can not follow Tom is logic . 我 跟不上 汤姆 的 逻辑 . +Tom got so absorbed in his work that he forgot to eat . 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 吃饭 . +He painted a picture of roses . 他 畫 了 一幅 玫瑰 的 畫 . +He has three older sisters . 他 有 三个 姐姐 . +None of the money is yours . 這些 錢 都 不是 你 的 . +Tom had to sell his house . 湯姆 必須 賣 了 他 的 房子 . +Do you know where to find Tom ? 你 知道 去 哪 找 汤姆 吗 ? +I want to sing a song . 我 想 唱 個 歌 . +That meat is chicken . 那個 肉 是 雞 肉 . +I spent my vacation at the beach . 我 在 海邊 度假 . +He keeps his room clean . 他 保持 他 的 房間 乾 淨 . +You must answer these questions . 你 必須 回答 這些 問題 . +Tom clapped . 湯姆 拍 了 手 . +Would you mind my opening the door ? 你 介意 我 開門 嗎 ? +They now have three kids . 现在 他们 有 三个 孩子 . +I will be there at once . 我 會 立刻 到 那裡 . +We want one . 我們 要 一個 . +I do not mind waiting for a while . 我 不介意 等 一會兒 . +This book is worth reading twice . 這 本書 值得 讀 兩遍 . +The young girl burst into tears . 這個 年輕 的 女孩 淚流 滿面 . +Can you hold on a second ? 你 能 等 一下 嗎 ? +They kept on walking . 他们 继续 走 . +I am an actress , not a model . 我 是 演员 , 不是 模特 . +I consider fruit to be the healthiest food . 我 將 水果 視為 最 健康 的 食物 . +Let me try it . 让 我 试试 . +You have a choice of black tea , coffee , or milk . 你 可以 选择 红茶 , 咖啡 或 牛奶 . +The plan was carried out . 计划 被 执行 了 . +It is taking a little longer than I expected . 我 花 了 比 預期 更 多 的 時間 . +This is not a tiger . 这 不是 老虎 . +He seldom gives his wife presents . 他 很少 給 他 的 妻子 禮物 . +We have to stop the bleeding . 我們 必須 止血 . +There was a cottage on the side of the hill . 山坡 上 有 一间 小屋 . +I was born on April 3 , 1950 . 我 出 生于 1950 年 4 月 3 日 . +Could you show me this bag ? 你 能 給 我 看看 這個 包 嗎 ? +The landlord says he wants to raise the rent . 地主 说 他 要 提高 租金 . +Have you ever seen him swimming ? 你 曾 看 過 他 游泳 嗎 ? +I did not mean to do that . 我 不是故意 那樣 做 . +She almost drowned . 她 差点 就 溺水 了 . +That shop sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +That was the part that Tom and I were most confused about . 这 是 我 和 汤姆 最 困惑 的 部分 . +Hokkaido is to the north of Sendai . 北海道 在 仙台 的 北方 . +Everyone attacked my opinion . 每個 人 都 抨擊 我 的 意見 . +Soccer is the most popular of all sports . 足球 是 所有 体育运动 中 最 受欢迎 的 . +I will see you whenever it suits you . 只要 你 方便 , 我什麼 時候 都 可以 跟 你 見 面 . +Turn on the computer . 打開 電腦 . +There is a strike . 有 罢工 . +Clearly you are mistaken . 顯然 的 , 你 錯 了 . +We found that everyone was asleep . 我們 發現 每個 人 都 睡著 了 . +I do not want to take the chance . 我 不想 冒 這個 險 . +Actions speak louder than words . 行動勝 於雄辯 . +He ignored his father is advice . 他 不 顧 他 父親 的 忠告 . +I am surprised that you do not know about their marriage . 我 很 惊讶 , 你 竟然 不 知道 他们 结婚 . +I want him to read this . 想 让 他 读 这个 . +Let is draw lots to decide who goes first . 来 抽签 决定 谁 先 走 吧 . +I hate Mondays . 我 讨厌 星期一 . +My uncles come to see me from time to time . 我 的 叔叔 們 ( 舅舅 們 ) 有時 會 來 探望 我 . +The sky is full of stars . 天空 中 繁星点点 . +Keep your voice down . 你 说话 小点声 . +I need a Japanese @-@ English dictionary . 我 需要 一本 日 英 字典 . +Marriage is the main cause of all divorces . 结婚 是 所有 离婚 的 主要 原因 . +There was scarcely any money left . 几乎 没 剩下 钱 . +Will you please show me the way ? 請 你 告訴 我路 怎麼 走 好 嗎 ? +Do you have this jacket in different colors ? 你 有 不同 顏色 的 外套 嗎 ? +I want everyone to help me clean the house . 我 希望 所有人 都 来 帮 我 打扫 房子 . +My daughter graduated from the university today . 我 女兒 今天 大學 畢業 . +I bought the book for myself , not for my wife . 我 給 我 自己 買 了 書 , 不是 給 我 妻子 . +How would you like your steak ? 您 的 牛排 要 几分 熟 ? +It was very kind of you to lend me an umbrella . 你 借给 我 伞 真好 . +She is looking for her car keys . 她 在 找 她 的 車 鑰匙 . +Get out ! 滾 出去 ! +That red dress suited her . 那件 紅色 的 洋裝 適合 她 . +Tom was a little late . Tom 迟到 了 一小 段时间 . +I do not think this is a good idea . 我 觉得 这 主意 不行 . +He ran . 他 跑 了 . +There is nothing good on television . 電視 上 沒有 什麼 好事 . +Are you writing a letter ? 你 在 寫信 嗎 ? +Tom thought that he had a chance to make a lot of money on the stock market . 汤姆 觉得 他 有 机会 在 股市 赚 一大笔钱 . +He married an air hostess . 他 娶 了 一个 空姐 . +I left my briefcase on the bus . 我 把 我 的 公事包 留在 公車 上 了 . +Who were you talking with ? 你 和 谁 说话 呢 ? +We are just about finished here . 我們 快要 結束 了 . +She thanked us for our help . 她 感謝 我們 的 幫助 . +The company abandoned that project . 公司 放弃 了 那个 项目 . +That does not make sense . 这 没有 任何 意义 . +I am looking forward to your visit . 我 期待 著 您 的 光臨 . +Tom is more famous than you . 湯姆 比 你 有名 . +Tom could not think of a good place to hide it . 湯姆 想不到 個 好 地方 藏 它 . +He is likely to win the game . 他 有 可能 赢得 比赛 . +There is a cottage beyond the bridge . 桥 对面 有 一间 小屋 . +Accuracy is important in arithmetic . 准确性 在 计算 中 很 重要 . +You should have introduced yourself to the girl . 你 應該 向 那個 女孩 自我 介紹 的 . +Save it on the external hard drive . 把 它 保存 在 外接式 硬碟 . +I caught a cold last month . 上個月 我 感冒 了 . +That student runs fast , does not he ? 那个 学生 跑 得 很快 , 不是 吗 ? +Why did not Tom need to go to Boston ? 为什么 汤姆 不 需要 去 波士顿 +I am afraid you will have to go in person . 我 恐怕 您 必须 亲自 去 . +It may sound strange , but what she said is true . 聽 起來 或許 有 點怪 , 但 她 說 的 是 真的 . +I hope I make a good first impression . 我 希望 我 能 留下 個 好 的 第一印象 . +As long as we love each other , we will be all right . 只要 我們 彼此 相愛 , 我們 會 沒事 的 . +There is not a cloud in the sky . 天上 没有 云 . +I will give you anything that you want . 我 會 給 你 任何 你 想要 的 東西 . +Would you like some coffee ? 你 要 喝咖啡 吗 ? +It will cost about 10,000 yen . 它 將 花 費大 約 10 , 000 日元 . +Those pictures were painted by him . 那些 圖畫 是 他 畫 的 . +Excuse me , where is the train station ? 抱歉 , 火車 站 在 哪裡 ? +He has a good command of English . 他 有 很好 的 英語 能力 . +Everybody needs to calm down . 大家 需要 冷静下来 . +They do not talk to us anymore . 他們 不再 跟 我們 談 了 . +What are you after ? 你 想要 什么 ? +I can not bear the sight of him . 我 受不了 他 的 視線 . +He always tells the truth . 他 總是 說 實話 . +The orange left a strange taste in my mouth . 橙子 在 我 嘴里 留下 了 一种 奇怪 的 味道 . +She resembles her aunt . 她 长 得 像 她 姑姑 . +Please turn up the AC a little bit . 请 你 把 冷气 调 高点 . +Let is take turns rowing the boat . 讓 我們 輪流 划船 . +Do you really think that I look like Tom ? 你 真的 觉得 我 长 得 像 汤姆 吗 ? +She went to Mexico by herself . 她 独自一人 去 了 墨西哥 . +She went either to London or to Paris . 她 不是 去 了 伦敦 就是 巴黎 . +We were not able to find Tom . 我們 找 不到 湯姆 . +He caught them stealing apples . 他 抓到 了 他們 在 偷 蘋果 . +Because of its origins , Canadian English has features of both American and British English . 由 於 它 的 起源 , 加拿大 英語 具有 美國 英語 和 ​ ​ 英國 英語 兩者 的 特色 . +I need a new pair of shoes . 我 需要 一双 新鞋 . +You 'd better go in person . 你 最好 親自 去 . +Tom fed his leftovers to his dog . 湯姆 把 他 的 廚餘 餵 給 他 的 狗 吃 . +Japan depends on imports for raw materials . 日本 依賴 進口 原料 . +Let is divide this money between you and me . 这 钱 你 和 我 分 了 吧 . +I got lost in the woods . 我 在 树林 里 迷路 了 . +I am sorry , I can not stay long . 对不起 , 我 不能 待 很久 . +Give her the book . 把 这 本书 给 她 . +Tom said he wanted to try riding a unicycle . 湯姆 說 他 想 試試 騎 獨輪車 . +That did occur to me . 那 就 發生 在 我 身上 . +I do not know anything about their plan . 我 對 他們 的 計劃 一無 所知 . +He sat there with his legs crossed . 他 翹著 二郎腿 坐在 那裡 . +I have no place to sleep tonight . 我 今晚 沒 地方 睡覺 . +I miss Boston . 我 想念 波士 頓 . +I passed by her house yesterday . 我 昨天 經過 她家 . +I got this CD player for free . 我 免費 得到 這個 CD 播放 機 . +Is it far from here ? 离 这儿 远 吗 ? +We go to school to study . 我們 去 學校 學習 . +I love the people here . 我 爱 这里 的 人们 . +How did you get out of your room ? 你 怎么 从 你 的 房间 里 出来 ? +It is this window that he broke . 他 砸坏 的 是 这 扇 窗 . +There are a lot of things you do not know about my personality . 我 的 个性 还有 很多 方面 是 你 不 了解 的 . +Is there anything else you want to say ? 你 還 有 甚 麽 想 說 的 ? +I admit that I was a little drunk . 我 承認 當時 是 有 點 醉 . +He is acquainted with my wife . 他 是 我 太太 认识 的 一个 人 . +After the hurricane , their house was a wreck . 暴风雨 过后 , 他们 的 房子 成 了 废墟 . +He shot at me . 他 槍擊 了 我 . +That was you , was not it ? 那 就是 你 , 不是 么 ? +My mother made me take some medicine . 我 媽媽 讓 我 吃 點 藥 . +It is already past ten o 'clock . 已經 過 了 十點鐘 了 . +It was not very hot last night . 昨晚 不是 很 熱 . +Could you tell me the Wi @-@ Fi password ? 能 不能 請 你 告訴 我 Wi - Fi 的 密碼 呢 ? +How about going out to eat tonight ? 今晚 出去 吃 怎么样 ? +I have lost my ticket . 我 把 票 弄 丟了 . +Tom is the one I want . 汤姆 是 我 想要 的 人 . +We will have to do that , too . 我们 也 不得不 做 +He turned the key . 他 转动 钥匙 . +Charles Lindbergh made the first solo flight across the Atlantic Ocean in 1927 . Charles Lindbergh 於 1927 年 成功 完成 了 第一次 獨自 飛越 大西洋 . +He wishes to erase bad memories . 他 希望 抹 去 不好 的 记忆 . +My foot hurts . 我 的 脚痛 . +There are a lot of new buildings here now . 这里 现在 有 了 许多 新 建筑 . +I can only give you ten minutes . 我 只能 给 你 十分钟 . +He is a good fellow . 他 是 個 好人 . +My father will often read the newspaper during meals . 我 父亲 常 在 吃饭 时 看 报纸 . +I agree on an emotional level , but on the pragmatic level I disagree . 我 感情 上 支持 , 但是 理性 上 反对 . +We lost sight of the man in the crowd . 在 人群 中 , 我们 失去 了 那个 男人 的 踪影 . +I have ten pens . 我 有 十支 筆 . +I came to Japan from China . 我 從 中國 到 日本 . +Tom is answer was very evasive . 汤姆 的 回答 很 含糊不清 . +I enjoyed watching TV yesterday . 昨天 我 很 開 心地 看電視 . +The buildings look so tiny . 大楼 看上去 那么 寒酸 . +He earned as much money as possible . 他 能 赚 多少 就 赚 多少 . +What does this key unlock ? 这 钥匙 能 打开 什么 ? +Remember to brush your teeth . 别忘了 刷牙 . +He is not religious . 他 不 信教 . +When did you graduate from high school ? 你 什麼 時候 中學 畢業 ? +Tom does not enjoy tennis and never has . 汤姆 不 喜欢 网球 , 从来不 . +I am looking for some regular work . 我 在 找 一些 固定 工作 . +If Tom does not do what he is supposed to do , please let me know . 如果 汤姆 没有 做 他 应当 做 的 事 , 请 让 我 知道 . +This is a crucial point . 这 是 一个 关键点 . +We managed to get there on time . 我們 總算準 時 到 那裡 了 . +Tom does not have a good French @-@ English dictionary . Tom 沒有 一本 好 的 法 英 字典 . +What is my room number ? 我 的 房间 号 是 多少 ? +Are you speaking to me ? 你 是 在 对 我 说 吗 ? +She is good at playing the piano . 她 擅長 彈 鋼琴 . +I am already full , thank you . 我 已经 吃饱 了 , 谢谢 . +What is that ? 那 是 什么 ? +She was asked to convince him to get his son or someone else to paint the house . 她 被 要求 去 说服 他 以 让 他 或者 他 的 儿子 或者 是 别的 人 来 粉刷 屋子 . +The phone rang when I was having lunch . 當 我 正在 吃 午餐 時 , 電話 響 了 . +Did you check this ? 你 检查 这个 了 吗 ? +I thought that you were listening . 我 以为 你 在 听 . +We study music . 我们 学习 音乐 . +How come you did not say anything ? 你 怎麼 什麼 話 也 沒 說 ? +She was asked to convince him to paint the house . 她 被 要求 说服 他 油漆 房子 . +I ordered some books from London . 我 從 倫敦 訂購 了 一些 書 . +Fight like a man ! 像 男人 一样 战斗 ! +Will you please let me go now ? 可否 请 你 现在 让 我 走 ? +Everything is changing . 一切都在 变 . +I gave her just what she needed . 我 給 她 的 正是 她 所 需要 的 . +I am counting on you . 我 指望 你 了 . +The thief got away with the money . 小偷 帶著 錢 逃跑 了 . +Tom came a little earlier today than he usually does . 汤姆 今天 来得 比 往常 要 早 一些 . +I like jazz music . 我 喜歡 爵士 樂 . +I am busy today . 我 今天 忙 . +He can pull strings for you . 他 能 为 你 暗箱 操作 . +Thank you for everything . 为 一切 感谢 你 . +It looks like Tom has bought a new bicycle . 看來 湯姆 借 了 輛 自行 車 . +Give the cat some meat . 給 猫 喂 點 肉 . +What is the weather like now ? 现在 的 天气 怎么样 了 ? +He has to repair the clock . 他 必須 修理 這個 時鐘 . +I want to be a lawyer . 我 要 當 律師 . +She is my type . 她 是 我 的 菜 . +Harvard was founded in 1636 . 哈佛 始建 于 1636 年 . +Hang your coat on the hook . 把 你 的 外套 掛 在 鉤子 上 . +Excuse me for interrupting you . 對 不起 , 打擾 你 了 . +The rumor is not true . 傳聞 不是 正確 的 . +I have never met such a kind man . 我 从没 遇到 过 那么 好心 的 男人 . +It is hot out here . 这里 够 热 . +I wanted to go there . 我 想 去 那裡 . +This data is not accurate at all . 這個 數據 一點 也 不 準確 . +I said shut up ! 我 说 过 了 , 闭嘴 ! +Does not that change things ? 那 能 改变 甚麼 嗎 ? +He was moved to tears when he heard the news . 当 他 听到 那个 新闻 的 时候 , 他 感动 得 哭 了 . +She knit him a sweater . 她 给 他 织 了 件 毛衣 . +Tom does not talk much . 汤姆 说话 不多 . +I think you should take the test again . 我 的 意见 是 , 你 该 再次 参加 测试 . +A woman visited us while you were sleeping . 你 睡觉 的 时候 , 一个 女人 来看 过 我们 . +Karuizawa is famous as a summer resort . 輕 井澤 是 著名 的 避暑 勝地 . +It is difficult to satisfy everyone . 众口难调 . +Tom did not know how to translate the word " computer " because the people he was talking to had never seen one . 汤姆 不知 如何 翻译 “ 计算机 ” 一 词 , 因为 同 他 谈话 的 人 从未见过 一台 . +Tom is boss was really angry . 汤姆 的 上司 真的 非常 生气 . +Give Tom back his money . 把 汤姆 的 钱 还给 他 . +Could you bring me some water ? 你 能 帶 給 我 一些 水 嗎 ? +You should begin right away . 你 應該 立即 開始 . +If I had one million yen now , I would buy a car . 如果 我 现在 有 100 万日元 , 我会 买 辆车 . +You should look after the children from time to time . 你 應 該 偶爾 照顧 孩子 . +I am accustomed to getting up early . 我 習慣 早起 . +The United States borders Canada . 美国 与 加拿大 相邻 . +Look into my eyes . 看著 我 的 眼睛 . +I have never heard of this actor . 我 从 没听说过 这个 演员 . +Did you do your homework by yourself ? 你 自己 做 回家 作業 的 嗎 ? +He is accustomed to traveling . 他 習慣 了 旅行 . +When I was a child , I used to swim in that pond . 当 我 还是 个 孩子 的 时候 , 我 在 这个 泳池 里游 过泳 . +The message was in French . 这 条 消息 是 法语 写 的 . +What do you make ? 你 做 什麼 ? +I am glad that the thief was caught . 抓 到 小偷 真是 太好了 . +Tom studied hard so he could get into college . 汤姆 努力学习 以 进入 大学 . +She will not be back till five . 她 五點鐘 才 會 回來 . +All three of you are very lucky . 你們 三個 很 走 運 . +You are just a coward . 你 就是 胆小鬼 . +Tom would not let anyone else in the room . 汤姆 不让 任何人 进 房间 . +I did not have to study yesterday . 我 昨天 不必 讀書 . +He took off his overcoat . 他 脫掉 了 大衣 . +She gave him a tender kiss . 她 給 了 他 一個 溫柔 的 吻 . +I am as tall as my father . 我 跟 我 父親 一樣 高 . +It would take me too much time to explain to you why it is not going to work . 给 你 解释 这 为什么 行不通 要 花 很多 时间 . +It is not easy to distinguish good from evil . 区分 善恶 不 容易 . +Tom runs very fast . 湯姆 跑得快 . +Come and have tea with me . 来 跟 我 喝茶 吧 . +She was too short to see over the fence . 她 太矮 了 , 看不到 围墙 外面 . +She needs a coat . 她 需要 一件 外套 . +Where are those people from ? 那些 人 从 哪 来 的 ? +Mercury is the smallest planet in our solar system . 水星 是 我們 的 太陽系 中 最小 的 行星 . +It is your move . 該 你 走 了 . +Tom is old enough to go to school . 汤姆 年纪 足够 去 上学 了 . +She is doing her homework now . 她 現在 正在 做 她 的 功課 . +Tom is ecstatic . 汤姆 兴奋不已 . +They work together . 他们 在 一起 工作 . +How much does this cost ? 多少 錢 ? +How do I sign up ? 我 怎样 报名 参加 呢 ? +Something might have happened to her . 她 可能 出 什么 事 了 . +This has nothing to do with you . 這 與 你 無關 . +When will it be ready ? 这 什么 时候 能 准备 好 ? +She was often late for school . 她 經常 上學 遲到 . +Let is get started . 讓 我們 開始 吧 . +I do not want to be involved in that matter . 我 不想 被 牵扯 到 这件 事 里 . +They smiled at each other . 他們 曾 彼此 微笑 . +The court acquitted him of the charge of murder . 法庭 对 他 的 谋杀罪 名 作出 了 无罪判决 . +They are gone . 他们 离开 了 . +He spoke very loudly . 他 说 得 很 大声 . +She is only a child . 她 只是 個 孩子 . +I am the fastest runner . 我 是 跑 得 最快 的 人 . +This dog was born two months ago . 這 隻 狗 是 兩 個 月 前 出生 的 . +He ordered a cup of tea . 他 點 了 一杯 茶 . +Would you like to listen ? 你 想 聽 嗎 ? +The children were well looked after . 孩子 们 被 照顾 得 很 好 . +He fell to the floor . 他 摔倒 在 地 . +We have to sing at an old folks home today . 我们 今天 得去 养老院 唱歌 . +Although the government refuses to admit it , its economic policy is in ruins . 尽管 政府 拒绝 承认 , 它 的 经济 政策 还是 失败 了 . +I am considering studying in America next year . 我 在 考虑 明年 去 美国 学习 . +Most Americans do not object to my calling them by their first names . 大多数 美国 人 似乎 不 反对 我 直呼其名 . +I did not know what to do . 我 不 知道 要 做 什麼 . +I just could not say no . 我 就是 不能 说不 . +It is no use trying to escape . 試圖 逃跑 是 沒 有用 的 . +I have a few friends who speak French well . 我 有 一些 法语 说得好 的 朋友 . +She can not write or read . 她 不会 读书 写字 . +I attended the meeting yesterday . 昨天 我 出席 了 會議 . +Can you get it repaired ? 你 能 不能 修理 它 ? +He is now either in Rome or in Paris . 他 不是 在 羅馬 , 就是 在 巴黎 . +He was aware that I was around , but did not come to greet me . 他 注意 到 我 在 場 , 但是 沒向 我 打招呼 . +Are you students ? 您們 是 學生 嗎 ? +Breakfast is ready . 早饭 准备 好 了 . +You 'd better consult your doctor . 你 最好 請 教 你 的 醫生 . +Can you skate ? 你 会 溜冰 吗 ? +Who do you think broke the window ? 你 認為 是 誰 打破 了 窗戶 ? +He finally got his wish . 他 終 於 如 願 以償 了 . +Where did you come from ? 你 從 哪裡 來 ? +Did Tom use to be a teacher ? 湯姆 以前 是 教師 嗎 ? +Everyone knows that I do not like Tom . 每個 人 都 知道 我 不 喜歡 湯姆 . +My purse was stolen . 我 的 錢 包被 搶 了 . +I have a slight headache today . 我 今天 有 輕微 的 頭痛 . +I am sick and tired of hamburgers . 我 對 漢堡 感到 厭煩 了 . +Do you have a book written in English ? 你 有 一本 用 英文 寫 的 書 嗎 ? +I got five hours sleep last night . 我 昨晚 睡 了 五小时 . +You have only to ask for it . 你 只要 问 就 好 了 . +He turned a deaf ear to their request . 他 对 他们 的 请求 置若罔闻 . +He does nothing but read comics . 他 什麼 都 不 做 只是 看漫 畫 . +May I ask a few questions ? 我 能 问 一些 问题 吗 ? +I am sure of his success . 我 肯定 他 会 成功 的 . +You should have done so . 你 本 應該 這樣 做 的 . +We need to buy a new TV . 我们 需要 买新 电视机 . +Help us reach our goal . 幫助 我們 達成 目標 . +He is going to be a doctor when he grows up . 他 长大 了会 成为 一名 医生 . +He was mad because he was not invited . 他 因为 没有 被 邀请 而 气 得 快 疯 了 . +This is gibberish . 這 是 胡 說 . +We heard a voice from the bedroom . 我们 听到 卧室 里 有 声音 . +My father takes a walk every day . 我 父親 每天 散步 . +Do not interfere in my affairs . 不要 插手 我 的 事 . +He is poor at chemistry . 他 的 化学 很 差 . +I met him on the street . 我 在 街上 遇到 他 . +You are on the right track . 你 在 正確 的 軌道 上 . +Your problem is similar to mine . 你 的 问题 类似 于 我 的 . +These cameras are made in Japan . 這些 照相 機是 在 日本 製 造 的 . +That hurts . 真疼 . +When were you planning on telling Tom about what happened ? 你 准备 啥时候 告诉 Tom 发生 了 什么 +Do you want anything to eat ? 你 想要 吃 任何 東西 嗎 ? +Are you through with your homework ? 你 把 功課 做 完 了 嗎 ? +I usually wear jeans on Sunday . 我 星期天 通常 穿 牛仔 褲 . +Tom seems to hardly ever get his homework done on time . Tom 似乎 没 办法 准时 完成 他 的 作业 . +She always buys expensive clothes . 她 總是 買 昂貴 的 衣服 . +My father does not eat much fruit . 我 父親 沒有 吃 很多 的 水果 . +I can walk to school in 10 minutes . 我 走路 10 分钟 能 到 学校 . +He is playing in his room . 他 在 自己 房里 玩 . +Tom wants to see you . 汤姆 想见 你 . +Some of the money was stolen . 一部分 钱 被 偷 了 . +Do you know the answer ? 你 知道 答案 嗎 ? +She lives just across from us . 她 就 住 在 我們 對 面 . +I 'd like some more water . 请 再 给 我 一些 水 . +What have you come here for ? 你 为什么 来 这儿 ? +Everybody plays the game of love . 大家 都 玩 爱情 游戏 . +Tom and I are good friends . 湯姆 和 我 是 好 朋友 . +Washing clothes is my work . 洗衣服 是 我 的 工作 . +Tom lost his balance and fell down . 汤姆 失去 了 平衡 摔 落下来 . +I would like to change my reservation . 我 想 更改 我 的 預訂 . +The tigers escaped from the zoo . 老虎 從 動物園 中 逃出 來 了 . +I threw a stone at the bird . 我 扔 了 块 石头 打向 鸟儿 . +There is been an accident . 曾經 有 一個 意外 . +I am the one who is sick . 我 就是 那个 生病 的 人 . +I hung my hat on the peg . 我 把 我 的 帽子 掛 在 掛鉤 上 . +He writes Arabic . 他 写 阿拉伯文 . +My father neither drinks nor smokes . 我 爸爸 既 不 喝酒 也 不 抽烟 . +Children are our future . 孩子 是 我们 的 未来 . +Are you saying that you give up ? 你 是 说 你 放弃 了 吗 ? +We have to try to communicate with them . 我们 要 设法 跟 他们 交流 . +I had never seen a windmill until I visited the Netherlands . 在 我 去 荷兰 之前 , 我 从没 见 过 风车 . +Tom closed his eyes . 汤姆 闭上 了 眼睛 . +Who is that boy running toward us ? 那个 朝 我们 跑过来 的 男孩 是 谁 ? +When do you eat turkey ? 你 什麼 時候 吃 火雞 ? +You may go anywhere . 你 可以 随便 去 哪儿 . +How much time do you spend on Facebook ? 你 花 多少 時間 在 Facebook 上 ? +I am pretty busy . 我 挺 忙 . +She is walking . 她 在 行走 . +I want to play the guitar . 我 想彈 吉他 . +I got a lot of mosquito bites . 我 被 很多 的 蚊子 叮 了 . +This car needs to be washed . 这辆 车 需要 清洗 . +This really is great weather . 這 真的 是 個 好 天氣 . +Do you like music ? 你 喜欢 音乐 吗 ? +India is a developing country . 印度 是 发展中国家 . +I want beef , too . " 我 也 要 牛肉 . " +The balloon was caught in the tree . 這 顆 氣球 被 樹絆 住 了 . +It is clear what must be done . 顯然 地 勢 必要 做 些 什麼 . +Always do right . This will gratify some people and astonish the rest . 坚持 做对 的 事情 . 这 会 满足 一部分 人 同时 使 另 一部分 人 感到 惊讶 . +Keep it up ! 坚持 . +Please turn off the television . 请 关闭 电视机 . +He was caught cheating in the exam . 他 在 考試 中 作弊 時 被 抓到 了 . +She thought that he was wasting electricity . 她 認為 他 是 在 浪費 電 . +There is insufficient light to take pictures . 拍照片 光线 不够 亮 . +Tom knew Mary would come . 湯姆 知道 瑪麗會 來 . +Every one of her songs was a hit . 她 的 每首歌 都 长期 备受 欢迎 . +Was he still here when you arrived ? 當 你 到 達 的 時候 他 還 在 這裡 嗎 ? +Monday is Tom is thirtieth birthday . 星期一 是 Tom 的 三十 歲 生日 . +I will wait here till he comes . 我 會 在 這裡 等 直到 他 來 . +She fumbled with a piece of paper . 她 摸索 著 一張 紙 . +What is your favorite movie ? 你 最 喜歡 的 電影 是 哪部 ? +The shooting started around noon . 拍攝 是 在 中午 十二 時 左右 開始 . +She was a genius in mathematics . 她 是 个 数学 天才 . +The dictionary is of great use to me . 这本 字典 对 我 很 实用 . +We will be ready in time . 我们 会 及时 准备 好 . +Did you visit the Tokyo Tower ? 您 参观 过 东京 塔 吗 ? +She disappeared . 她 消失 了 . +I saw him playing baseball . 我 看到 他 在 打 棒球 . +I object to her going there alone . 我 不 同意 她 一个 人 去 那儿 . +I do not mind if I get wet . 我 不介意 被 弄 濕 . +Stop resisting ! 停止 抵抗 ! +She would not let up until I agreed to go to the movies with her . 她 不 愿 松开 我 , 直到 我 同意 和 她 去 电影院 . +I knew that something was wrong . 我 知道 有些 事 不 對 . +Tom is working hard . 汤姆 在 努力 工作 . +He likes oranges . 他 喜欢 橙子 . +Why did you cry ? 你 為 什麼 哭 ? +Tom can not afford this . 汤姆 买不起 这个 东西 . +Today is Thursday . 今天 是 礼拜四 . +Women tend to live longer than men . 女人 往往 比 男人 活得 更 長 . +I like short poems . 我 喜歡 短 詩 . +We really enjoyed ourselves . 我們 真的 玩 得 很 開心 . +Do not be afraid of making mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I am counting how many people there are . 我 正在 算有 多少 人 在 那裡 . +The bus was ten minutes late . 公车 晚 了 十分钟 . +This is the best . 这 是 最好 的 . +I even made Tom laugh . 我 甚至 讓 湯姆 笑 了 . +What souvenir do you think she would like most ? 你 觉得 她 最 想要 什么 纪念品 ? +Tom is a clever kid . 汤姆 是 聪明 的 孩子 . +We invited him to our house . 我們 邀請 了 他 到 我們 家 . +A glass of cold water is very refreshing in hot weather . 一杯 冷水 在 暑热 的 天气 里 十分 提神 . +I want to be a computer programmer . 我 想 做 一个 程序员 . +I lost face . 我 丢臉 了 . +We were just about to leave when it rained . 我們 正要 離開 的 時候 下雨 了 . +My knowledge of Japanese is rather poor . 我 對 日文 不 大 了解 . +We could not keep from crying . 我們 止不住 哭泣 . +They grow oranges in California . 他们 在 加利福尼亚 种 橙子 . +Take a picture with your phone . 用 你 的 手机 拍 一张 照片 . +I will show you the way . 我 會 為 你 帶 路 . +Tom can not decide whether to buy a Toyota or a Ford . 汤姆 不能 决定 买 丰田 还是 福特 . +She stood in front of the mirror . 她 站 在 镜子 前 . +Tom was sobbing . 汤姆 在 啜泣 . +It is said the house is haunted . 据说 这 房子 是 个 鬼屋 . +I am staying at my aunt is . 我 住 在 我 姑姑家 . +I missed the opening ceremony of the Olympics . 我 错过 了 奥运会 的 开幕式 . +Tom suggested that I change the lock on my door . 汤姆 建议 我 换 我 的 门锁 . +She freshened herself up before supper . 她 在 晚 飯前 把 自己 梳洗打扮 了 一下 . +These pants fit me well . 这些 裤子 我 穿 起来 很 合身 . +It is boring to stay at home . 呆 在 家里 很 无聊 . +I think I have a question . 我 覺 的 有 一個 問題 . +Tom was absent yesterday . 湯姆 昨天 缺席 了 . +Could I try this on ? 我 能 試 一下 這個 嗎 ? +A friend of mine is studying abroad . 我 有 一位 朋友 在 國外 留學 . +Lie on your right side . 躺 在 你 右邊 . +Tom is out of his mind . 湯姆 失去 理智 了 . +I am glad we hired you for this job . 我 很 高兴 我们 录用 了 你 来 担任 这份 工作 . +Tell me about it ! 跟 我 讲讲 那件事 . +Bread is made from flour , water and yeast . 面包 是 用 面粉 、 水 和 发酵粉 做 的 . +How could I be a robot ? Robots can not dream . 我 怎么 可能 是 机器人 呢 ? 机器人 不会 做梦 . +She was scared to cross the road . 她 怕 過 馬 路 . +An aging population will require more spending on health care . 老龄化 的 人口 需要 更 多 医疗保健 支出 . +Everyone in the class climbed the hill . 班上 每個 人 都 爬 上 了 這個 山坡 . +Father is going to undergo an operation . 父亲 将 会 接受 手术 . +My husband is not in town . 我 丈夫 没 在 城里 . +She gave the blouse a quick wash . 她 很快 地 把 襯衫 洗 一 洗 . +She told him that she believed in astrology . 她 告诉 了 他 自己 相信 占星术 . +I want this work completed by two o 'clock tomorrow afternoon . 明天 下午 2 点 以前 , 我 希望 这 工作 完成 了 . +You are welcome . 您 不必 感谢 我 . +Love your neighbors . 与 邻居 相亲相爱 . +The plane is about to land . 飛機 就要 降落 了 . +I advised her to come by 9 : 00 . 我 建議 她 九點 前來 . +Indigenous Australians have eaten kangaroos for millennia . 澳大利亚 土著 已经 吃 了 上千年 袋鼠 . +Would you mind closing the door ? 你 介意 關上 門 嗎 ? +He stayed at his aunt is house . 他 呆 在 他 阿姨 家 . +Tom is funeral will be this weekend . 湯姆 的 葬 禮 訂 在 這 週末 . +He hit his head against a rock . 他 的 头 撞倒 了 一块 岩石 . +He came several times . 他 来 了 很 多次 了 . +I had a nice chat with her . 我 和 她 聊得 很 愉快 . +I was not yet married at that time . 那個 時候 我 還 沒有 結婚 . +You must have been surprised to meet your teacher in such a place . 在 那种 地方 碰到 你 的 老师 , 你 应该 很 惊讶 吧 . +What have I ever done to Tom ? 我 对 汤姆 做 了 什么 ? +Tom does not know the difference between Iraq and Iran . 汤姆 不 知道 伊拉克 和 伊朗 有 什么 区别 . +My room faces the garden . 我 的 房間 面向 花園 . +He has more books than I do . 他 拥有 的 书 比 我 的 多 . +It is ten degrees below zero now . 現在 是 零下 十度 . +She does not speak Japanese at home . 她 在家 不 說 日 語 . +I can not let you give me your last ten dollars . 我 不能 讓 你 給 我 你 最 後 十美 圓 . +Whose ring is that ? 那 是 谁 的 环 ? +I made it myself . 我 自己 做 的 . +You should read a lot of books while you are young . 當 你 年 輕 的 時候 , 你 應 該 多 讀點 兒書 . +The physician prescribed his patient some medicine . 医生 给 他 的 病人 开 了 一些 药 . +I do not love him any longer . 我 已经 不 爱 他 了 . +I watch television in the evening . 我 在 晚上 看電視 . +You people can not help yourselves . 你们 这些 人 帮不了 自己 . +I will go with you as far as the bridge . 我会 跟着 你 走 到 桥 那里 . +He pretends to be deaf . 他 装 听不见 . +I think I have found something better . 我 認為 我 找到 了 更好 的 . +Who is the man playing the piano ? 那個 正在 彈 鋼琴 的 男人 是 誰 ? +I saw it in the newspaper . 我 在 报纸 上 看到 了 它 . +Where are you going to eat lunch ? 你 要 去 哪裡 吃 午 飯 ? +This is a Turkish tradition . 這 是 個 土耳其 的 傳統 . +Do not leave the room . 别 离开 房间 . +How many pictures did you buy ? 你 買 了 多少 張 照片 ? +He risked losing all his fortune . 他 冒 着 失去 所有 财产 的 危险 . +One man is meat is another man is poison . 對 某人 有利 的 對 另外 的 人 未必 有利 . +She paid me a visit yesterday . 她 昨天 来 见 我 了 . +He is pale because he is sick . 他 病 了 , 所以 脸色 显得 苍白 . +He was very friendly to everybody . 他 對 每個 人 都 非常 友善 . +Boston is a wonderful city . 波士顿 是 一座 非常 好 的 城市 . +Tokyo is a big city . 东京 是 一个 很大 的 城市 . +I am fine now . 已经 没事 了 . +You can lie to everyone else , but you can not lie to yourself . 你 可以 向 别人 撒谎 , 但 你 不会 向 自己 撒谎 . +He is looking forward to it . 他 对此 很 期待 . +Where is your hat ? 你 帽子 在 哪儿 ? +Water freezes at 0 degrees Centigrade . 水 在 攝 氏 0 度 時 結成 冰 . +What did you do yesterday evening ? 你 昨天晚上 做 了 什麼 ? +Tom never felt comfortable expressing his own opinion . 汤姆 在 表达 自己 的 意见 的 时候 总是 很 慌张 . +My uncle gave me a camera . 我 叔叔 給 了 我 一個 照相 機 . +Tom teaches me French twice a week . 汤姆 每周 两次 教 我 法语 . +He is likely to be late for school . 他 上学 很 可能 会 迟到 . +All that I know is that he gave up the plan . 我 所 知道 的 是 他 放棄 了 這個 計劃 . +He went on reading the book as if nothing had happened . 他 繼續 讀書 , 好像 什麼 事 也 沒有 發生 . +I eat breakfast every morning . 我 每天 早上 吃 早餐 . +There was not anyone in the room . 房間 裡 沒 有人 . +He has a round face . 他 有 一張 圓 臉 . +The train leaves in ten minutes . 火車 十分 鐘 後 離開 . +While we were discussing the problem , I hit upon a good idea . 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 好 主意 . +This camera was made in Germany . 这个 照相机 是 德国 制造 的 . +Do not throw away this magazine . I have not read it yet . 这本 杂志 不要 扔 . 我 还 没看 呢 . +I have always wondered what it 'd be like to have siblings . 我 总是 想 有 兄弟姐妹 会 怎么样 . +What number bus do I take to get to Waikiki ? 我 乘 几路 车 去 怀基基 ? +Many people work in industrial towns . 许多 人 在 工业 城市 工作 . +She wants to work at the hospital . 她 想 在 医院 工作 . +I usually go to bed before ten . 我 通常 在 十點 前 上床 睡覺 . +I want to become an engineer . 我 想要 成為 一位 工程 師 . +I prefer apples to oranges . 比起 橘子 , 我 更 喜欢 苹果 . +" I will be back , " said Tom . “ 我会 回来 , ” 汤姆 说 . +He looks a bit tired , does not he ? 他 看 起來 有 點累 , 不是 嗎 ? +Tom has high blood pressure . 汤姆 有 高血压 . +You have got something stuck in your teeth . 牙齿 卡 了 点 东西 . +I paid him a visit yesterday . 我 昨天 去 见 他 了 . +I want to know how long it will take . 我 想 知道 这 需要 用 多久 时间 . +The weather has been unusual this year . 今年 的 天氣 一直 異常 . +Every time I read the Bible , I am deeply moved . 每次 我 读 圣经 都 会 被 深深地 感动 . +He took us back in his car . 他 开车 送 我们 回来 的 . +He looked after the baby . 他 照顧 孩子 . +I often catch colds . 我 常常 感冒 . +Keep listening . 继续 听 . +Tom and I have decided to go to Australia next summer . 汤姆 和 我 决定 下 个 夏天 去 澳大利亚 +I will try harder next time . 下次 我 會 更加 努力 . +Both of them are in the room . 他們 兩個 人 都 在 房間 裡 . +I 'd like some tea , please . 請 給 我 一杯 茶 . +Doing the laundry is my job . 洗衣服 是 我 的 工作 . +We are staying at our uncle is . 我们 待 在 舅舅家 . +I love to make people laugh . 我 喜歡 逗人 笑 . +He knows how to play the piano . 他 知道 如何 彈 鋼琴 . +By the way , did you find the umbrella you said you 'd lost the other day ? 对 了 , 前些时 间 你 说 伞 不见 了 , 现在 找到 了 吗 ? +The boy is wearing glasses . 這個 男孩 戴著 眼鏡 . +I am using Twitter . 我 在 用 Twitter . +A DNA test showed he was innocent . DNA 检测 表明 , 他 是 无辜 的 . +To what extent can he be trusted ? 可以 相信 他 到 什麼 程度 ? +Tom goes to school on foot . 湯姆 走路 去上 學 . +Tom wanted to comfort Mary . Tom 是 想着 去 安慰 Mary 的 . +He is a strange character . 他 的 性情 古怪 . +Tom helped Mary move the furniture . 汤姆 帮 玛丽 移动 家具 . +Let is start . 我们 开始 吧 . +It seems less crowded during the week . 平日 似乎 比較 不 擁擠 . +I sometimes just do not want to get out of bed in the morning . 我 有时 早上 不想 下床 . +That is enough money to cover the expenses . 那些 錢 足夠 支付 費用 . +I had nothing to hide . 我 没什么 可 隐藏 . +He kept a diary during the trip . 他 旅行 期间 , 写 了 旅游 日记 . +I need you to help me find Tom . 我 需要 你 幫 我 找 湯姆 . +You should bring your passport to the bank . 你 应该 带 护照 去 银行 . +This place still looks the same as it did a long time ago . 這裡 就 像 在 古 時候 一樣 . +Why do not you want to tell us the truth ? 為 甚麼 你 不想 告訴 我們 真相 ? +Tom has plenty of friends to help him . 汤姆 有 很多 朋友 去 帮助 他 +Tom had a heart attack last year . 汤姆 去年 得 了 心脏病 . +The train leaves at six . 火车 6 点 出发 . +She talked childishly . 她 说话 幼稚 . +That is a nice tie you are wearing . 你 打 了 一條 不錯 的 領帶 . +My mother took my temperature . 我 媽 媽量 了 我 的 體溫 . +Compare your answer with Tom is . 比較 你 和 湯姆 的 答案 . +What I am about to say is strictly between you and me . 我 要 告訴 你 的 只能 你 我 知道 . +That store sells newspapers and magazines . 那家 店 卖 报纸 和 杂志 . +Tom tricked Mary into doing his work for him . 汤姆 哄 玛丽 做 他 的 作业 . +He slept well last night . 他 昨晚 睡 得 很 好 . +I have to take the test again . 我 必須 再 考 一次 試 . +The car is not worth repairing . 這車 不 值得 修 了 . +Who are the two women over there ? 那边 的 两位 女士 是 谁 ? +Tom is at school , is not he ? 湯姆 在 學校 裡 , 不是 麼 ? +Tom is so hot . 汤姆 非常 性感 . +Tom knew that Mary was upset . 汤姆 知道 玛丽 不 高兴 . +Whose car is this ? 這 台汽 車 是 誰 的 ? +If you had a million dollars , what would you do ? 你 有 100 万美元 的话 , 你 会 做 什么 ? +She was brought up by her grandmother . 她 是 由 她 的 祖母 带大 的 . +I do not think we 'd have any chance of winning . 我 认为 我们 没有 机会 赢 . +What made you come here so early ? 什麼 原因 讓 你 這麼 早來 這裡 ? +Tom plays chess better than me . 汤姆 下 国际象棋 比 我 好 . +There will be a math test tomorrow . 明天 有 一個 數學 測驗 . +She left her son a lot of money . 她 留 了 很多 钱 给 她 儿子 . +She has an eye for antiques . 她 看 古董 的 眼光 很 好 . +Nothing is going his way . 什么 都 没 按 他 的 路子走 . +He is the richest man on earth . 他 是 世界 上 最 有 錢 的 人 . +The reporter criticized the politician . 記者 批評 了 政治家 . +Why did you buy a Japanese car ? 你 為 甚麼 買 日本 車 ? +I am busy looking for an apartment . 我 正忙 著找 公寓 . +I am writing a letter . 我 正在 寫 一封信 . +I wish I had a better memory . 希望 我 的 記憶力 能 好 一點 . +Thank you very much . 非常感谢 ! +He can speak French , and obviously English . 他 能 说 法语 , 很 明显 还有 英语 . +There are no problems . 沒有 問題 . +Will I have a scar ? 我会 留 疤 吗 ? +I asked him what his name was . 我 問 了 他 叫 什麼 名字 . +I always enjoy listening to classical music in my free time . 有空 的 时候 , 我 总 喜欢 听 古典音乐 . +Forewarned is forearmed . 凡事 要 預先 準備 好 . +School begins at 8 : 30 a.m. 學校 在 上午 八點 三十分 開始 上課 . +Tom had no reason to be angry . 汤姆 没有 动怒 的 理由 . +You are still young . 你 仍然 很年 輕 . +Look at the sky . 看 天上 . +I do not want to hear any more of your complaining . 我 不想 再 听 你 抱怨 了 . +You should go in person . 你 應 該 親自 去 . +He is in charge of the department . 他 負責 這個 部門 . +Which is better , red thread or white thread ? 哪个 更好 , 红线 呢 还是 白线 ? +I hope that is not the case . 我 希望 事情 並非 如此 . +Tom loves doing this . 湯姆 喜歡 做 這事 . +I got acquainted with her in France . 我 在 法國 認識 了 她 . +I explained the process to him . 我 向 他 解釋 了 這個 過程 . +Choose the one you like . 選 一個 你 喜歡 的 . +I am not going anywhere on Sunday . 我 週日 哪裡 也 不 去 . +How long are you going to be in Boston ? 你 要 在 波士顿 留 多久 ? +They climbed Mt . Fuji last week . 上個月 他們 爬 了 富士山 . +It is high time you were in bed . 你 早该 睡 了 . +She made the same mistake as before . 她 犯 了 和 以前 同樣 的 錯誤 . +This booklet is free of charge . 這本 小冊子 是 免費 的 . +Few people know how to do it . 很少 有人 知道 怎么 做 . +The accident happened the day before yesterday . 事故 发生 在 前天 . +I am saving up to buy a new car . 我 在 省钱 买 新车 . +I live on the outskirts of Tokyo . 我 住 在 東 京郊 區 . +Please call a taxi for this lady . 请为 这位 女士 叫 辆 出租车 . +Tom wrote two books . 汤姆 写 了 两本书 . +You are not a doctor . 您 不是 医生 . +He is a friendly person . 他 是 一個 友善 的 人 . +He may have missed the last train . 他 可能 錯 過 了 最 後 一班 火車 . +What you said does not make sense . 你 說 的 沒有 道理 . +Is not that mine ? 那 是 我 的 吗 ? +Did you go to see a doctor ? 你 去 看过 医生 了 吗 ? +Thank you in advance for your help . 我 先 谢谢 你 的 帮忙 . +I support political reform . 我 支持 政治 改革 . +Our teacher likes his new car . 我們 的 老師 喜歡 他 的 新車 . +It is easy to answer this question . 回答 這個 問題 很 容易 . +You should have done it earlier . It cannot be helped now . 你 應 該 早點 做 的 . 現在 沒 人 可以 幫 你 . +He told me that whatever might happen , he was prepared for it . 他 告诉 我 不论 发生 什么 , 他 都 准备 好 了 . +What do you say we go skiing ? 我们 去 滑雪 怎么样 ? +He is very angry with you . 他 對 你 非常 生氣 . +If only I could speak English ! 我 要是 会 说 英语 就 好 了 . +He enjoys watching baseball games on TV . 他 喜歡 看 電視 上 的 棒球 比賽 . +I can not stand this pain . 我 無法 忍受 這個 痛苦 . +I can play tennis . 我 會 打 網球 . +I made an apple pie for you . 我 做 了 一個 蘋果 派 給 你 . +Would you mind my moving your car ? 你 介意 我 移動 你 的 車 嗎 ? +Neptune is the eighth planet of the solar system . 海王星 是 太阳系 第八个 行星 . +We still have plenty of time left . 我們 還 剩下 很多 時間 . +It is cold there even in the summer . 那裡 連 夏天 也 冷 . +Hurry up . 快点 ! +Something is wrong with my camera . 我 的 相機 有 毛病 . +Please bring me my bill . 請 把 帳單 給 我 . +I have already finished my homework . 我 已經 完成 了 我 的 作業 . +We do not want anything from you . 我们 不想 从 你 身上 要 任何 东西 . +I do not know whether Tom will eat with us or not . 我 不 知道 Tom 是否 和 我们 一起 吃饭 . +I came to this country for the purpose of studying music . 我 來 這個 國家 的 目的 是 學習 音樂 . +The entire world desires peace . 整个 世界 都 需要 和平 . +Are you finished ? 你 结束 了 吗 ? +I am at home . 我 在家 . +Where are you ? 你 在 哪儿 ? +I have a job for you . 我 有 工作 給 你 . +The truck is gone . 貨車 走 了 . +Trust me . 相信 我 . +May I speak to you a minute ? 我 可以 和 你 講 一下 話 嗎 ? +I do not agree with you at all . 我 完全 不 赞成 你 的 意见 . +Were you on time for work today ? 你 今天 準 時 上班 了 嗎 ? +Tom is drinking apple juice . Tom 正在 喝 蘋 果汁 . +Do you think this thing is cute ? 你 覺得 這個 東西萌 嗎 ? +I succeeded in getting what I wanted . 我 赢得 了 我 想要 的 . +Everybody knew she could speak English well . 大家 都 知道 她 的 英语 说 得 很 好 . +Do you run every day ? 你 每天 都 跑步 吗 ? +The tourists were fascinated with the exquisite scenery . 觀光客 被 獨特 的 景致 所 吸引 . +Some scientists believe that the greenhouse effect is imaginary . 有 的 科學家 認為 溫室 效應 是 虛構 的 . +Close your eyes . 闭上 你 的 眼睛 . +The sky was completely dark . 天空 完全 变黑 了 . +Here is a big map of Germany . 这儿 有 张 德国 的 大 地图 . +I have heard the story . 我 听说 过 那个 故事 . +How do you account for that ? 你 怎么 解释 那个 ? +Bring me a dry towel . 給 我 一條 乾 毛巾 . +He is the same age as me . 他 和 我 同岁 . +Both brothers are musicians . 两 兄弟 都 是 音乐家 . +What is the average height of the players ? 选手 们 的 平均 身高 是 多少 ? +I do not know . What do you think ? 我 不 知道 . 你 怎麼 想 ? +You should have been more careful . 你 應 該 要 更 小心 的 . +I want to go there . 我 想 去 那裡 . +Is there any chance that you will go to Australia next month ? 你 有 下 個 月 去 澳洲 的 機會 嗎 ? +My opinion is similar to yours . 我 的 觀點 和 你 的 類似 . +I do not know when he will come . 我 不 知道 他 什么 时候 会来 . +The law should not be violated . 法律 不應 受到 侵犯 . +I can take care of myself . 我 可以 照顧 自己 . +He knows a lot about foreign affairs . 他 知道 很多 外國事務 . +Did Tom send you ? 湯姆 派出 了 你們 嗎 ? +Only one little boy survived the traffic accident . 这次 交通事故 中 只有 一个 小男孩 幸存 了 下来 . +The poor people were at the mercy of the cruel dictator . 可憐 的 人民 任 憑 殘暴 的 獨裁者 處置 . +I like having breakfast with you . 我 喜欢 和 你 一起 吃 早餐 . +Do you have any idea where Tom could be ? 你 知道 湯姆 能 在 哪裡 嗎 ? +Who told you the news ? 誰 告訴 了 你 這個 消息 ? +We have a lot of rain in June and July . 六七 月份 雨 很多 . +I wanted to thank you for what you did today . 我 想 为 你 今天 所 做 的 事 感谢 你 . +I signed the lease today . 我 今天 签 了 租约 . +Hang on ! 坚持 . +Modern ships only need a small crew . 現 代船 隻 只 需要 一小 組 的 船員 . +Rome was not built in a day . 罗马不是 一天 建成 的 . +Why do you want to become a nurse ? 你 为什么 想 成为 护士 呢 ? +The taxi is here . 出租车 到 了 . +This is a picture of my family . 這 是 一張 我 的 全家福 照片 . +It is not as difficult as you think . 那个 没 你 想象 的 那么 难 . +Mission accomplished . 任务 完成 . +Tom saw you . 湯姆 看見 你 了 . +I swear I did not do anything . 我 发誓 我 什么 也 没 做 . +The patient is steadily recovering . 该 病人 正 逐步 康复 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +Why did they turn down your proposal ? 他們 為 什麼 否決 了 你 的 建議 呢 ? +This chair is ugly . 這 把 椅子 很 難 看 . +I 'd like a room with a good view . 我 喜欢 视野 好 的 房子 . +My aunt gave me an album . 我 姑姑 給 了 我 一張 唱片 專輯 . +Tom did not go there yesterday . 汤姆 昨天 没 去 那里 . +I know who you all are . 我 知道 你們 都 是 誰 . +Science begins when you ask why and how . 為何 如何 ? 你 疑問 的 當下 就是 科學 的 開端 . +Sulfur burns with a blue flame . 硫磺 燃 燒著 藍色 的 火焰 . +Allow me to go . 請 允許 我 去 . +The only thing I have now are memories . 我 现在 仅 有 的 东西 就是 我 的 记忆 了 . +We are having a serious talk about your future . 我们 在 严肃 地 谈论 你 的 未来 . +I am afraid I have to go now . 恐怕 我 现在 得 走 了 . +Ca not you discount it a little ? 你 不能 打 一點 折 嗎 ? +I am glad the thief was caught . 抓 到 小偷 真是 太好了 . +Let is play tennis after school . 讓 我們 放學 後 打 網球 . +She wore a beautiful dress . 她 穿著 漂亮 的 洋裝 . +You have gained weight , have not you ? 你 的 體重 增加 了 , 不是 嗎 ? +We have not lost much . 我們 沒有 失去 太多 . +I wish that Tom would go home . 我 希望 湯姆 回家 . +She made coffee for all of us . 她 為 我們 所有 的 人 煮 咖啡 . +I know you are busy , too . 我 知道 , 您 也 很忙 . +When I was your age , Pluto was a planet . 當 我 在 你 這個 年紀時 , 冥王星 是 行星 . +I stayed at home last night . 我 昨晚 待 在家 裡 . +Take off your hat when you enter a classroom . 进 教室 时 请 脱下 帽子 . +You are not as smart as me . 你 没有 我 聪明 . +Tom jumped up from his chair . 湯姆 從 他 的 椅子 上 跳 了 起來 . +The old church on the hill dates back to the twelfth century . 山上 的 老 教堂 的 歷史 可以 追溯到 12 世紀 . +He is going to leave tomorrow afternoon . 他 將 在 明天 下午 離開 . +Unbelievable ! 難以 置信 ! +Tom put down his pencil . 汤姆 放下 他 的 铅笔 . +He got hurt in the game yesterday . 他 昨天 在 這場 比賽 中 受 了 傷 . +He had a second helping of soup . 他 又 喝 了 一碗 湯 . +The bank was held up a week ago . 這家 銀行 一 週前 被 搶劫 . +Do you have a better explanation ? 你 有 更好 的 理由 嗎 ? +I seem to have a temperature . 我 好像 发烧 了 . +The teacher said that the earth is round . 老師 說 地球 是 圓 的 . +She gets good marks in English . 她 取得 了 優異 的 英語 成績 . +Tom says he is willing to help . 汤姆 说 他 愿意 帮忙 . +Tom and Mary have a lot in common . 汤姆 和玛丽 有 很多 共同点 . +Even if I were rich , I would not give him money . 就算 我 富有 , 我 也 不会 给 他 钱 . +Which team are you a fan of ? 你 是 哪 一隊 的 迷 ? +Write something . 寫點 什麼 . +Wait here till I come back . 在 這兒 等著 , 直到 我 回來 . +Who solved the hard problem ? 誰 解決 了 這個 難題 ? +I live in this neighborhood . 我 住 在 這 附近 . +I woke up at 2 : 30 . 我 在 2 : 30 起床 . +Sunday is not a workday for me . 我 在 星期日 不 工作 . +He never drinks alcohol . 他 從 不 喝酒 . +Stand back from the rope . 退到 繩子 後 面 . +She was always quarreling with her parents . 她 总和 她 父母 吵架 . +Tom is on the bus to the city . 湯姆 搭 公車 去 市區 . +I live in this area . 我 住 在 这区 . +Tickets are available now . 现在 有票 . +I looked around me . 我 看 了 看 周圍 . +It is fun to ride a motorcycle . 騎 摩托 車 很 有趣 . +What language is this ? 這 是 什麼 語言 ? +She went out to buy some food . 她 出去 買 些 食物 了 . +He is leaving for China tomorrow . 他 明天 出发 去 中国 . +Why do not you quit Facebook ? 你 為 什麼 不 戒掉 Facebook ? +I would like to be alone if you do not mind . 如果 你 不介意 的话 , 我 想 一个 人 呆 着 . +Everyone in her class likes her . 她 班上 的 每個 人 都 喜歡 她 . +What is new ? 有 什么 新鲜事 吗 ? +Somebody had drowned her in the bathtub . 有人 把 她 淹死 在 浴缸 裡 . +The horse stopped and refused to go any further . 馬 停 了 下來 , 而且 拒絕 移動 . +I arrived at Narita Airport this morning . 我 今天 早上 抵達 了 成田 機場 . +I knew you 'd find Tom . 我 知道 你 会 找到 汤姆 . +We are having an office party tomorrow . 我們 明天 有個 辦 公室 派 對 . +She is watering the flowers . 她 正在 澆 花 . +I returned the knife which I had borrowed . 我 把 我 借来 的 刀 还 了 . +She is Tom is sister . 她 是 Tom 的 姐姐 . +Your proposal is a bit extreme . 你 的 建議 有 點 極 端 . +Do not make me stand here . 別 讓 我 一直 站 在 這裡 . +Can I use my medical insurance ? 我 可以 使用 我 的 醫療 保險 嗎 ? +I asked Tom why he was not here yesterday . 我 问 汤姆 为什么 他 昨天 没 在 这里 +Thank you for yesterday . 昨天 的 事 真的 要 谢谢您 了 . +We will die sooner or later . 我們 早晚 要死 . +I must sell my house . 我 得卖 我 的 房子 . +Tom found a skeleton in the cave . 汤姆 在 洞穴 里 找到 了 一具 骨架 . +Our native language is Japanese . 我們 的 母語 是 日 語 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +Is your school in this town ? 你 的 学校 在 这个 城市 吗 ? +What is the matter with you ? 你 到底 怎么回事 嘛 +He threw a stone into the pond . 他 扔 一塊 石頭 到 池塘 裡 . +" Where were you ? " " I was at a friend is house . " “ 你 在 哪里 ? ” “ 我 在 一个 朋友家 . ” +I do not have that kind of time . 我 可 沒有 那 閒 空 . +What do you do for a living ? 您 做 什麼 工作 為 生 ? +She has put on weight recently . 她 最近 增加 了體 重 . +I admit this may not be the best way of doing it . 我 承认 这 可能 不是 最好 的 方法 . +I warned him not to be late . 我 警告 了 他 不要 遲 到 . +Why did not you lock the door ? 你 為 甚麼 不 鎖 門 ? +Why do not you stay here ? 你 为什么 不 留在 这里 ? +I need your advice on what I should do next . 我 需要 你 指導 我 接下 來 該 做 甚麼 . +I grew up in this small town . 我 在 這個 小鎮 上 長大 的 . +I hope to see Tom soon . 我 希望 能 早点 看到 汤姆 . +He gave us the signal to begin . 他 給 了 我們 開始 的 信號 . +He reads a great deal . 他 读 很多 书 . +The meaning of this sentence is obscure . 这 句句 子 意思 模糊 . +He is my Mr. Right . 他 是 我 的 如意郎君 . +This toy is made of wood . 這 玩具 是 用 木頭 做 的 . +I do not have a pencil . 我 沒 鉛 筆 . +Ask him his name . 问 他 一下 他 的 名字 . +I would like to speak English fluently . 我 想 講 一口 流利 的 英語 . +The prisoner was brought before a judge . 這個 囚犯 被 帶到 法官 面前 . +That book is over here . 那本书 在 这里 . +Tom and Mary both know who you are . 湯姆 和 瑪麗 都 知道 你 是 誰 . +I talked to Tom last night . 昨晚 我 和 汤姆 说话 了 . +This ticket is valid for three days . 這 張 票 的 有效期 是 三天 . +I am here on business . 我 在 這裡 出差 . +Do you have a temperature ? 你 發燒 了 嗎 ? +I will bring wine . 我会 带酒 来 . +Finally , he achieved his goal . 他 终于 达到 了 自己 的 目标 . +Put the book there . 把 書 放在 那裡 . +We want Tom . 我们 想要 汤姆 . +He is three years older than she is . 他 比 她 大 三岁 . +Patience is sometimes the most effective weapon . 耐心 有时候 是 最 有效 的 武器 . +English is studied in Japan . 在 日本 的 人 學習 英語 . +I think I can . 我 想 我 可以 . +I will be back tomorrow . 我 明天 回來 . +Just relax . 放松 点 吧 . +He proposed a reform in the educational system . 他 提议 对 教育 系统 进行 改革 . +There is an apple on the table . 桌上 有个 苹果 . +Can you lend me your bicycle ? 你 能 把 你 的 自行车 借给 我 吗 ? +How much is four times six ? 6 乘以 4 是 多少 ? +Where do I pay for the gas ? 我 该 在 哪儿 付 煤气费 ? +" Who is it ? " " It is your mother . " “ 是 谁 ? ” “ 是 你 妈妈 . ” +I do not understand . 我 不 懂 . +I know where I am going next . 我 知道 我 接下 來 去 哪裡 . +Write your name in capital letters . 写下 你 名字 的 大写字母 . +I know you are learning French at school . 我 知道 你 在 學校 學法 語 . +Remember that I outrank you . 记住 我 的 级别 在 你 的 之上 . +Doing that will not take long . 做起 來 不 會 很久 . +She gets up late on Sunday mornings . 她 每 週日 早上 很 晚 起床 . +Who is your favorite DJ ? 谁 是 你 最 喜爱 的 DJ ? +This cat does not chase mice . 这 只 猫 不 抓 老鼠 . +Tom is an extraordinary man . 汤姆 是 个 不 寻常 的 人 . +I have not seen him for a long time . 我 很久没 见 过 他 了 . +Watch out for cars when you cross the street . 當 你 過 馬路 的 時候 要 當心 汽車 . +Do you have an extra English dictionary by any chance ? 您 碰巧 有 一本 額 外 的 英文 字典 嗎 ? +I have changed my website is layout . 我 改 了 一下 我 的 网站 的 布局 . +If you get sleepy , let me know . 困 了 的话 就 说 哦 . +I would like to finish the work on my own . 我 想 自己 把 工作 做 完 . +That movie is worth seeing . 那 部 电影 值得一看 . +It is as cold as ice . 它 冷 得 像 冰 一樣 . +We took strong measures to prevent it . 我们 使用 了 强大 的 措施 来 预防 . +Tom will likely never do that again . 湯姆 不 太 會 再 去 做 那事 了 . +I am already full , thank you . 我 已经 很饱 了 , 谢谢 . +Do you go to school on Saturday ? 你 星期六 去 上 學 嗎 ? +I noticed Tom was smiling . 我 注意 到 汤姆 在 笑 . +Tell me what you have in your hand . 告诉 我 你 手里 有 什么 . +Here comes the train . 火車 來 了 . +Are you a wizard ? 你 是 个 术士 吗 ? +Wine is made from grapes . 葡萄酒 是 用 葡萄 做成 的 . +How old is your son ? 你 兒子 幾歲 ? +My sister married her high school classmate . 我 的 姐姐 嫁給 了 她 的 高中 同學 . +Even though I enjoy bowling , I have not gone bowling recently . 虽然 我 享受 打 保龄球 , 但是 我 最近 没有 去 打 保龄球 . +I consider you one of my closest friends . 我 把 你 视为 我 最 要 好 的 朋友 之一 . +He is at her side . 他 在 她 的 旁邊 . +What do you plan to do ? 你 打算 怎麼 辦 ? +I received an invitation . 我 收到 了 一张 请帖 . +I was learning . 我 在 學習 . +He narrowly escaped being killed . 他 險 些 被 殺害 . +I met a Smith at the party . 我 在 聚会 上见 了 史密斯 . +You look just like your older brother . 你 看起来 很 像 你 的 哥哥 . +I am an honest person . 我 是 个 老实人 . +Tom is a real good man . 汤姆 是 个 很好 的 人 . +Cherry trees are now in bloom in Washington . 华盛顿 的 樱花 现在 开放 . +My mother has good handwriting . 我 母親 的 筆跡 很 好看 . +May I have some more coffee ? 我 可以 再 要 些 咖啡 嗎 ? +I feel like crying . 我 想 哭 . +It is all my fault . 都 是 我 的 错 . +We were just talking about you when you called . 當 你 打 電話 來 時 , 我們 正在 談論 你 . +I believed you . 我 相信 了 你 . +You can come at any time . 你 隨時 可以 來 . +Suddenly , I heard shouting . 突然 , 我 听到 了 一声 喊叫 . +If possible , I would like to travel around the world . 如果 可能 的话 , 我 想 环游世界 . +The pianist played two encores . 這位 鋼 琴家 演奏 了 兩首 安 可曲 . +That is rather unexpected . 这 真是 很 意外 . +I saw him reading a book . 我 看見 他 在 讀 一本 書 . +Vote for Tom . 投票 給 湯姆 . +Let is go and see as many things as we can . 我们 走 , 尽可能 多 看点 东西 . +The truth is that nothing is totally true or false . 真相 是 沒有 甚麼 完全 正確 或 錯誤 . +You are the only one who can protect them . 你 是 唯一 能 保护 他们 的 . +Tom could not control himself . 汤姆 不能自已 . +This is not important . 这 不 重要 . +I am sorry , but I can not hear you well . 對 不起 , 但 我 聽 不 太 清楚 你 說 話 . +I always catch colds in the winter . 我 在 冬季 總是 感冒 . +How is work ? 工作 怎么样 ? +There is a spoon missing . 少 了 一把 勺子 . +The days are getting longer and longer . 白天 漸漸 地 越來越 長 . +Do you have anything to declare ? 你 有 任何 要 申報 的 東西 嗎 ? +Were you in Boston for a long time ? 你 在 波士顿 待 了 很久 吗 ? +I have to call Tom . 我 得 给 汤姆 打电话 . +I saw something strange in the sky . 我 看见 天上 有 奇怪 的 东西 . +A lot of trees were cut down . 很多 树 被 砍倒 . +He can not help you . 他 不能 幫 你 . +What horrible weather ! 多么 糟糕 的 天气 啊 ! +I am no longer your assistant . 我 不再 是 你 的 助手 了 . +The policeman told me that the last bus leaves at ten . 警察 告诉 我 巴士 的 末班车 在 十点 出发 . +I have no secrets from you . 我 對 你 毫無隱瞞 . +She got all dolled up for her big date . 为了 她 的 重要 约会 , 她 精心 打扮 了 一下 . +Tom studied French for three years . 汤姆 学 了 三年 法语 . +Is the bath clean ? 浴室 干净 吗 ? +I wrote it all down . 我 全 写 下来 了 . +It is already eleven . 已经 是 11 点 了 . +When was it finished ? 是 什么 时候 完成 的 ? +Will you send for a doctor ? 你 會 派 人 去 請 醫生 來 嗎 ? +Did you go anywhere for the summer ? 你 夏天 去 了 任何 地方 嗎 ? +People should be dancing . 人們 應該 在 跳舞 . +I have a lot of friends to help me . 我 有 很多 朋友 帮 我 . +There are so many people at this concert . 這場 演唱 會 的 人 真多 . +I like taking walks . 我 喜欢 散步 . +This camera is cheap . 这个 相机 很 便宜 . +Please let me off at the next stop . 请 在 下 一站 让 我 下车 . +We do not do it very often . 我们 不常 做 . +We had a good time playing cards . 我們 打牌 玩 得 很 開心 . +I am an honest person . 我 是 个 老实人 . +After a long argument , I finally persuaded her to go camping . 經過 長久 的 爭論 , 我 終 於 說 服 了 她 去 露營 . +Did you hear the news ? 你 听到 新闻 了 吗 ? +I do not like the way he speaks . 我 不 喜歡 他 說 的 話 . +Do you believe there are ghosts ? 你 相信 有 幽灵 吗 ? +I want to lose weight . 我 想 减肥 . +I will telephone you every night . 我 每晚 都 給 你 打 電話 . +Tom is girlfriend threatened to leave him . 汤姆 的 女朋友 威胁 要 离开 他 . +Have you finished writing the letter yet ? 你 信 寫 完 了 嗎 ? +She is a pretty girl . 她 是 一個 漂亮 的 女孩 . +It is next to impossible to finish it in a day . 在 一天 之内 完成 它 几乎 是 不 可能 的 . +His room is always tidy . 他 的 房間 總是 很 整齊 . +You must hurry up . 您 要 赶快 些 . +She finds it a little distasteful . 她 发现 这 有点 令 她 不快 . +She applied her mind to her new job . 她 专注 在 她 的 新 工作 上 . +Education begins at home . 教育 从 家庭 开始 . +I am really sorry to hear that . 听到 这样 的 消息 我 真的 很 难过 . +They are kids . 他们 是 孩子 . +He decided to quit smoking . 他 決定 戒菸 了 . +Do not be afraid of barking dogs . 別 怕 吠 犬 . +She made a mess of the work . 她 工作 做 得 亂 七八 糟 . +Tom began talking . 汤姆 开始 说话 . +My father is going for a walk in the park . 我 父親 要去 公園 裡 走 . +Please show me your injured arm . 請 讓 我 看看 你 受傷 的 手臂 . +I interpreted her silence as a refusal . 我 認為 她 的 沉默 就是 表示 拒絕 . +She likes oranges . 她 喜欢 橙子 . +What are you going to do tonight ? 你 今晚 要 做 什麼 ? +I almost did not visit Australia . 我 差点 没 去 澳大利亚 +Have you done all your homework ? 你 做 了 所有 的 功課 嗎 ? +Please tell me where to go next . 請 告訴 我 下 一步 去 哪裡 . +Better luck next time . 祝 你 下 一次 好运 . +He probably will not come . 他 可能 不会 来 了 . +She said she had a cold . 她 說 她 感冒 了 . +Tom says he has a plan . 汤姆 说 他 有个 计划 . +She lived a long life . 她 活 了 很久 . +What time do you wake up every day ? 你 每天 幾點 起床 ? +He was very good at playing tennis . 他 打网球 打 得 很 好 . +They wash their hands with soap . 他们 用 肥皂 洗手 . +I found the bed quite comfortable . 我 覺得 這 張 床 相當 地 舒適 . +My aunt gave me a camera . 我 的 阿姨 給 了 我 一台 攝影 機 . +Stop fooling around . 不要 隨便 開 玩笑 . +Put away your books and notebooks . 把 你 的 書 和 筆記 本 收起 來 . +He denied having written to me . 他 否認 曾 寫信 給 我 . +Someone is standing behind the wall . 有人 站 在 墙后 . +Everyone knew that Tom is French was good . 每个 人 都 知道 汤姆 的 法语 很 好 . +Winter is over and spring has come . 冬天 結束 了 春天 已經 來 了 . +You must choose . 你 必须 选择 . +Do not be afraid of making mistakes when you speak English . 說 英語 的 時候 不要 怕 犯 錯 . +People of all ages like this song . 这 首歌 老少皆宜 . +The room originally had no furniture . 本来 这 间 房间 里 没有 家具 . +Here is your dog . Where is mine ? 这 是 你 的 狗 . 我 的 呢 ? +I can barely see you . 我 幾乎 看不見 你 . +Your team is stronger than ours . 你們 的 隊伍 比 我們 的 強 . +Swimming is good for your health . 游泳 對 你 的 健康 很 好 . +Car exhaust causes serious pollution in towns . 汽车尾气 在城镇 里 造成 了 严重 的 污染 . +She complained that my salary was low . 她 抱怨 我 的 薪水 很 低 . +She is good at speaking English . 她 擅長 說 英文 . +You are a good painter , are not you ? 你 是 個 很棒 的 畫家 , 不是 嗎 ? +Do you believe in ghosts ? 你 相信 有 幽灵 吗 ? +The lion is stalking its prey . 狮子 在 跟踪 它 的 猎物 . +I do not know which button to push . 我 不 知道 要 按 哪個 按 鈕 . +Tom passed away last night . 汤姆 在 昨晚 去世 了 . +I know your older brother quite well . 我 跟 你 哥哥 很熟 . +It is improved . 它 有 改善 了 . +Call me , please . 请 给 我 打电话 . +Tom got first prize , did not he ? 湯姆 得 了 第一名 , 不是 嗎 ? +Why do you study every day ? 为什么 你 每天 都 学习 呢 ? +Are you still at the office ? 你 還 在 辦 公室 裡 嗎 ? +How long have you been here ? 你 在 這裡 多久 了 ? +Could you put it in plain language ? 您 可以 简单 点儿 说 吗 ? +I am at home . 我 在家 裡 . +The total comes to 3,000 yen . 总共 是 3000 日元 . +He ate the whole apple . 他 把 整个 苹果 都 吃 了 . +You will need their help . 你 会 需要 他们 的 帮助 . +The gang was planning a robbery . 這 夥 人 計劃 搶劫 . +He is getting along with his neighborhood . 他 與 他 的 鄰居 相處 . +Tom went to Boston to buy a painting . 湯姆 去 波士 頓 買 一幅 畫 . +He was leaning against the wall . 他 靠著 牆 . +He will reach Hakodate tonight . 他 今晚 將 抵達 函館 . +I noticed a note on my desk , but I do not know who wrote it . 我 發現 了 我 辦 公 桌上 有 張 字 條 , 但是 我 不 知道 是 誰 寫 的 . +Are you sure ? 你 确定 吗 ? +There was nothing that I could do at that time . 当时 我 什么 都 不能 做 . +Do not eat like a pig . 别 像 猪 一样 猛吃 东西 . +He got 90 % in English . 他 英文 得到 了 九 十分 . +I do not want to have this fight . 我 不想 打 这 架 . +My memory failed me . I just could not remember his name . 我 的 記性 不好 . 我 簡直 不 記得 他 的 名字 了 . +Tom needs Mary is help . 湯姆 需要 瑪麗 的 幫助 . +May I pay with a travelers ' check ? 我 可以 用 旅行支票 支付 嗎 ? +I took it for granted that he would keep his word . 我 理所 當然 地 認為 他 會 履行 諾 言 . +I am not wearing pants . 我 没 穿 裤子 +Wait ! 等 一下 ! +Tom was a little overweight when he was a child . 湯姆 在 小时候 有 點 超重 . +No other mountain in the world is as tall as Mt . Everest . 世界 上 任何 山峰 都 达 不到 珠穆 朗 瑪峰 的 高度 . +Can you help me wash these dishes ? 你 能 幫 我 洗 這些 碗 盤 嗎 ? +We get together once a year . 我們 一年 聚 一次 . +The talks will deal with the problem of pollution . 这场 谈论 即将 对 污染 问题 展开讨论 . +I really liked the gift you gave me . 我 真 喜歡 你 給 我 的 禮物 . +Long time , no see . 真是 好久不见 啊 +I am not afraid of death . 我 不怕死 . +She must have studied very hard . 她 一定 很 用功 讀書 . +You ought to have come to our party . 你 應 該 到 我們 的 派對 的 . +I lost my job and I have no money . I am at my wit is end . 我 失業 又 沒錢 . 真 不知 該何 去 何 從 . +The man must work . 男人 应该 工作 . +She is what we call a bookworm . 她 就是 所谓 的 书虫 . +We ordered too much food . 我們 點 太 多 食物 了 . +I arrived two weeks ago . 我 在 兩 週前 到 了 . +It seems that the only time he is not eating is when he is sleeping . 看来 他 只有 在 睡觉时 不吃 东西 . +Neither of those two students passed the test . 兩個 學生 都 沒 通過 考試 . +Many of the user reviews on Amazon are fake . 亚马逊 网站 上 的 许多 用户 评论 都 是 虚假 的 . +Second semester has ended . 第二 學期 結束 了 . +The food tasted slightly of garlic . 這個 食物 嚐 起 來 有 一 點 大蒜 味 . +She is got a good eye for paintings . 她 對 繪畫 有 很好 的 鑑賞 力 . +Why did you run away ? 你 為 什麼 逃走 ? +How did Tom talk Mary into babysitting his children ? 汤姆 是 怎么 说服 玛丽 照顾 他 的 小孩 的 呢 ? +We are not as young as Tom . 我们 不再 像 汤姆 那样 年轻 . +There are no comments yet . 還 沒有 任何 評論 . +Unbelievable ! 难以置信 ! +Tom pulled Mary out of the water . Tom 把 Mary 拉 出水 +We are not afraid of death . 我们 不怕死 . +I do not mind hot weather . 我 不在乎 炎熱 的 天氣 . +Would you like a cup of coffee ? 你 要 來 杯 咖啡 嗎 ? +Shut the door . 不要 把门 开 着 . +I have class tomorrow . 我 明天 有 课 . +Why are you not doing it ? 你 为什么 不 做 ? +Fresh food is wonderful . 新鮮 的 食物 最 棒 了 . +I do not know what you mean . 我 不 懂 你 什么 意思 . +Are you sure Tom is happy ? 你 確定 湯姆 高興 嗎 ? +I am completely exhausted . 我 完全 地筋 疲力 盡 了 . +I hope I will see you again soon . 我 希望 我 會 很快 再 見 到 你 . +Anything you say may be held against you in a court of law . 你 所说 的 一切 都 将 成为 呈 堂 证供 . +Tom , are you okay ? 汤姆 , 你 还好 吧 ? +Am I supposed to help Tom ? 我 该 帮 汤姆 吗 ? +She made a point of visiting me . 她 特地 來 拜訪 我 . +Tom clapped his hands together . 湯姆 拍 了 手 . +You are about three days late . 你 大 約 遅 了 三天 . +He listened with his ear to the door . 他 把 耳朵 貼 在 門上 聽 . +Get down on the floor ! 趴在 地上 ! +I have had to do everything by myself . 我 必须 靠 自己 做 所有 事 . +" Do you know when they will arrive ? " " At eleven @-@ thirty this evening . " 你 知道 他们 什么 时候 到 吗 ? 今晚 11 点 半 . +He brought me to the bus stop . 他 帶 我 到 車站 . +You made it . 你 做到 了 . +He brought his lunch today . 他 今天 带 了 午饭 . +Her toy was broken by her little sister . 她 的 玩具 是 被 她 妹妹 弄 壞 的 . +I paid $ 200 in taxes . 我 付 了 兩 百元 含稅 . +What is your name ? 你 叫 什么 名字 ? +Ostriches can not fly . 鴕鳥 不 會 飛 . +I told her not to let go of the rope , but she did . 我 叫 她 不要 松开 绳子 , 但是 她 做 了 . +I am in love with her . 我 愛 上 她 了 . +He put on the black coat . 他 穿 上 了 黑色 的 外套 . +We found the front door locked . 我們 發現 前門 被 鎖上 了 . +I saw the sunrise . 我 看 了 日出 . +He spent the night at his uncle is place . 他 在 他 舅舅 那 裏 過 夜 . +They built a bridge across the river . 他們 建 了 一座 橫 跨 河流 的 橋 . +Do Japanese people eat sushi every day ? 日本 人 每天 都 会 吃 寿司 吗 ? +He is to blame for the failure . 失败 的 责任 在 他 . +Prepare yourself for the future . 为 将来 做 准备 吧 . +The school is five kilometers from my home . 學校 離 我家 有 五公里 遠 . +Tom said that he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I love sports . 我 喜歡 運動 . +Who is your girlfriend ? 你 女朋友 是 谁 ? +Let is stay here tonight . 讓 我們 今晚 留在 這裡 吧 . +This is the place where the battle took place . 这 是 战斗 发生 的 地方 . +Maybe Tom just got nervous . 可能 汤姆 紧张 了 . +How much does this umbrella cost ? 這 把 傘 多少 錢 ? +Eating lunch with you would make me happy . 跟 你 一起 吃 午 飯 會 讓 我 高興 . +Put this jacket on , and you will be much warmer . 穿 上 外套 吧 ! 你 會 暖 一些 . +She broke the window on purpose . 她 故意 把 窗戶 弄壞 了 . +She has a good command of English though she was brought up in Japan . 雖然 她 在 日本 被 撫養 長大 , 但是 她 精通 英語 . +Tom is on the go day and night . 汤姆 日夜兼程 . +He is in London on business now . 他 現在 在 倫敦 洽 公 . +Tom saw the file . 湯姆 看 了 文件 . +Later he wrote to the president . 他 后来 写信给 总统 . +Tom knows the difference . 湯姆 知道 不同 之處 . +He is about the same age as you . 他 跟 您 年纪 差不多 . +Someone called . 有人 打電話來 . +I do not want to go to school . 我 不想 去 学校 . +My father is an office worker . 我 父親 是 一名 辦 公室 職員 . +I am telling you this confidentially . 这个 我 只 和 你 说 哦 . +I do not want any bananas at all . 我 一個 香蕉 也 不要 . +You should not have paid the bill . 你 本來 不 應該 付賬 的 . +I am on the balcony . 我 在 陽 臺 上 . +The boy is kind . 他 是 个 好孩子 . +They decided to build a bridge . 他們 決定 建 一座 橋 . +These flowers you see are roses . 你 看到 的 這些 花 是 玫瑰 . +Tom planted three apple trees in his yard . 汤姆 在 他 的 院子 里 种 了 三棵 苹果树 . +Let is hope she comes . 讓 我們 祈盼 她 會 來 . +This house is not for sale . 这 房子 不 出售 . +Tom looked around and realized he was lost . 汤姆 环顾四周 , 发现自己 迷路 了 . +We just need a plan . 我們 只是 需要 個 計畫 . +I did not get along with her . 我 沒有 和 她 相處 過 . +That will not make any difference . 这 没有 任何 区别 . +He wishes to become a doctor . 他 希望 成為 一名 醫生 . +We are in the era of atomic energy . 我們 身處 核能 時代 . +Yesterday was the last day of school . 昨天 是 最后 一天 上学 . +I got up early yesterday . 昨天 我 很早 起床 . +We watched the soccer game on TV . 我們 看 了 電視 上 的 足球 比賽 . +Why did not you follow my advice ? 你 為 什麼 不 聽 我 的 忠告 ? +Tom is going crazy . 汤姆 要 发疯 . +There is something that I want to tell you . 有件 事情 我 要 对 你 说 . +Let bygones be bygones . 既往不咎 . +It is great ! You will laugh for sure . 太棒了 ! 你 一定 會 笑 的 . +I do not understand what he said . 我 不 明白 他 说 的话 . +The bus is running about ten minutes late . 公交 車 晚 點 了 十分 鐘 . +I miss him . 我 想念 他 . +How do you pronounce this word ? 你们 怎么 读 这个 词 ? +Tom wants to spend more time with his family . 汤姆 想 多把 时间 花 在 他 的 家庭 上 . +She wants to know who sent the flowers . 她 想 知道 是 谁 送 的 花 . +The family is watching a movie together . 这 一家人 一起 看 电影 . +The Amazon is fed by a large number of tributaries . 亚马逊河 有 很多 支流 . +Do not be so childish . 不要 那么 幼稚 . +I have problems , just like everybody else . 我 有 问题 , 就 像 其他人 一样 . +Did you go to the art exhibition ? 你 去 看 藝術 展覽 了 嗎 ? +Tom could have dealt with the problem in a better way . 汤姆 本 可以 用 更好 的 方式 处理 问题 . +I am thrilled . 我 激動 不已 . +Go up the stairs . 上楼 . +How is the weather there ? 那里 的 气候 怎么样 ? +I hope you will get well soon . 我 希望 你 很快 就 會 好 . +Are you certain ? 你 确定 ? +Please come back home . 請 回家 . +More and more people are moving to urban areas . 越來越 多 的 人 遷往 鄉村 . +I am busy getting ready for tomorrow . 我 正忙 著為 明天 作 準備 . +Are there any questions ? 有 什么 问题 吗 ? +I thought Tom had heard us . 我 觉得 汤姆 听说 过 我们 . +You are turning red . 你 脸红 了 . +I have to write a letter . Do you have some paper ? 我 需要 写 一封信 . 你 有 纸 吗 ? +We tried to stop you . 我們 試著 阻止 你 . +We are boys . 我們 是 男孩 . +Tom picked up the book . 汤姆 捡起 了 书 +I changed trains at Tokyo Station . 我 在 東京 站換 火車 . +Tom is waiting for Mary to come back . 汤姆 正在 等 着 玛丽 回来 . +I use Twitter . 我 用 Twitter . +I am sixteen years old . 我 16 岁 了 . +Do not give up ! 不要 放棄 ! +Can your brother drive a car ? 你 弟弟 會 開車 嗎 ? +Where is the nearest telephone box ? 最近 的 電話 亭 在 哪裡 ? +He does not have any friends . 他 一个 朋友 都 没有 . +Did you enjoy the party yesterday ? 昨天 的 派 對 你 玩 得 開心 嗎 ? +She gave me plenty to eat . 她 給 了 我 很多 吃 的 東西 . +May I take your picture ? 我 可以 幫 你 照相 嗎 ? +He played the piano and she sang . 他 彈 鋼琴 , 她 唱歌 . +I am going to watch TV this evening . 今天 晚上 我 打算 看电视 . +Bring me the dictionary . 把 那本 詞典 遞 給 我 . +He was jealous of my success . 他 嫉妒 我 的 成功 . +My father will retire at the age of sixty . 我 父亲 六十岁 就要 退休 了 . +I can not remember the meaning of the word that I looked up yesterday . 我 记不起 昨天 查 的 那个 词 的 意思 了 . +It will clear up in the afternoon . 今天下午 天氣 將 轉 晴 . +Tom does not think so . 汤姆 可不 这么 认为 . +Will you drive me to the hospital ? 你 可以 載 我 去 醫院 嗎 ? +I advise you to change clothes . 我 建議 你 換 衣服 . +I made efforts to improve my grades . 我 努力 的 改善 我 的 成績 . +I need some medicine to kill the pain . 我 需要 用药 来 镇痛 . +You do not have to do it immediately . 你 没 必要 马上 去 做 . +They now have three children . 现在 他们 有 三个 孩子 . +I consider myself fairly fluent in French . 我 认为 自己 的 法语 相当 流利 . +My older brother is a teacher . 我 哥哥 是 一名 教師 . +That is true . 這 是 真的 . +What is it you want to know ? 你 想 知道 什麼 ? +Tom speaks without thinking . 汤姆 不假思索 脱口而出 . +Everyone said that I was wrong . 大家 都 說 我 是 錯 的 . +True friendship is based on mutual trust . 真正 的 友谊 建立 在 彼此 信任 的 基础 上 . +She began crying . 她 开始 哭泣 . +She was always quarreling with her brothers . 她 一直 和 她 的 兄弟 争吵 . +I am interested in this story . 我 對 這個 故事 感興趣 . +The situation is getting worse and worse day by day . 情况 一天 比 一天 差 . +Turn the knob and open the door . 轉動 門 把 , 把 門 打開 . +We are ready to leave . 我們 準備 離開 . +I do not care if you trust me or not . 我 不 關心 你 是否 信任 我 . +Do you really need to ask the question to know the answer ? 你 真的 需要 提 问题 来 知道 答案 吗 ? +I could hardly keep from laughing . 我 忍不住 要 大笑 . +My aunt made a new skirt for me . 我 姑姑 做 了 一條 新 裙子 給 我 . +Thanks for adding me as a friend . 谢谢 你 把 我 加为好友 . +Lincoln died in 1865 . 林肯 於 1865 年 去世 . +I should have tried out this electric shaver before buying it . 我 本该 在 买下 这个 电动 剃须刀 之前 试一下 的 . +Are you planning to be at Tom and Mary is wedding ? 你 打算 参加 汤姆 和玛丽 的 婚礼 吗 ? +Tom did not return my phone calls . 湯姆 沒 有 回 我 的 電話 . +More than twenty boys went there . 超過 二十 個 男孩 去 了 那裡 . +We apologize for the delay and regret any inconvenience it may have caused . 我们 对 这次 的 延迟 表示 抱歉 , 并 对 可能 造成 的 不便 表示遗憾 . +In March , many flowers come out . 許多 花 在 三月份 綻放 . +Tom does not have to thank me . 湯姆 不 需要 謝 我 . +There is no one in your bedroom . 你 的 卧室 里 没有 人 . +It is your turn . 輪到 您 了 . +How do you spell your last name ? 你 的 姓 怎麼 拼 ? +I suppose I 'd better phone Tom . 我 想 我 给 汤姆 打电话 比较 好 . +I sat next to him . 我 坐在 他 旁边 . +They are very close friends . 他們 是 非常 親密 的 朋友 . +The rope was not strong enough to support him . 绳子 不够 牢固 , 撑不住 他 . +We just have enough time to eat breakfast . 我们 刚好 有 时间 吃 早饭 . +He retired at the age of 65 . 他 65 岁 退 了 休 . +I am afraid of heights . 我 恐 高 . +Hi ! How are you ? 嗨 ! 你好 嗎 ? +I did not tell anyone what time I 'd be arriving . 我 沒 跟 別人 說 過 我什麼 時候 會 到 . +The doctor examined the patients . 醫生 檢查 了 病人 . +Can I drive the tractor ? 我 能 開 拖拉 機 嗎 ? +Tom told him . 汤姆 告诉 了 他 . +Five gallons of regular , please . 請照 平常 一樣 五加 侖 . +I am going to check . 我 正要 去 签到 . +Can I ask a question ? 我 能 问个问题 吗 ? +The students are talking about language and culture . 学生 们 在 探讨 语言 和 文化 . +Tom said Mary was hungry . 汤姆 说 玛丽 饿 了 . +Having lived in Tokyo , I know the city well . 因为 住 过 东京 , 我 对 这个 城市 非常 了解 . +Do not forget your money . 不要 忘记 您 的 钱 . +Tom is careful , is not he ? 湯姆 很 仔細 , 不是 麼 ? +Everything depends on it . 全都 靠 它 了 . +He has been secretly in love with her . 他 一直 暗恋着 她 . +Awesome ! 好 棒 ! +She took a taxi to the hospital . 她 搭計 程車 去 醫院 了 . +Who is in charge of this section ? 谁 负责 这个 部门 ? +These pants fit me well . 我 穿 這條 褲子 很 合身 . +It is on this point that our opinions differ . 是 在 这点 上 我们 的 意见 有 分歧 . +He borrowed money from his friend . 他 向 他 的 朋友 借錢 . +Let me try . 让 我 来 . +Our teacher has a wonderful sense of humor . 我们 的 老师 非常 有 幽默感 . +At last , she gave in to him and told him the secret . 最 後 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +Tom and Mary were smiling . 汤姆 和玛丽 正 微笑 着 . +Is that the station ? 那 是 車 站 嗎 ? +Mt . Fuji as seen from Suruga Bay is beautiful . 從駿 河灣 看 , 富士山 很 美麗 . +Do not go out after it gets dark . 天黑 以 後 不要 出門 . +I am yours and you are mine . 我 是 你 的 , 而 你 是 我 的 . +I have got to try to find Tom . 我 试图 找到 Tom . +Tom does not share Mary is enthusiasm . 汤姆 没有 感受 到 玛丽 的 热情 . +English is not difficult to learn . 英語 並 不 難 學 . +She must have been sick . 她 一定 是 生病 了 . +I am feeling good this morning . 我 今天 早晨 感觉良好 . +I got sick from drinking too much . 因為 喝酒 喝 太 多 , 所以 我 生病 了 . +She answered my letter right away . 她 立刻 回信 給 我 . +Tom was sent back to Boston . 汤姆 被 送回 了 波士顿 +When will it be convenient for you ? 什麼 時候 對 你 來說 是 方便 的 ? +His decision to retire surprised all of us . 他 要 退休 的 決定 讓 我們 都 感到 吃 驚 . +I need to go to work . 我 得去 工作 了 . +Bring Tom here . 把 汤姆 带到 这里 来 . +Let is take a trip to New York . 去 纽约 吧 ! +Bush followed Reagan as president . 布什 继 里根 之后 当上 了 总统 . +I do not want to play anymore . 我 不想 再 玩 了 . +We need money . 我們 需要 錢 . +Anything else ? 还有 别的 吗 ? +I got home at seven . 我 七點 回到 家 . +He is difficult to get along with . 他 這個 人 很 難相 處 . +He hurt his left foot when he fell . 當 他 跌倒 時 , 他 傷 了 他 的 左腳 . +Have you ever seen Tokyo Tower ? 你 曾 看 過 東京 鐵塔 嗎 ? +He is as tall as her . 他 和 她 一样 高 . +It looks like an orange . 它 看 起來 像 橙子 . +Their apples are not as good as our apples . 他們 的 蘋果 沒有 我們 的 好 . +Everyone is talking about Tom . 每个 人 都 在 谈论 汤姆 . +I am having my house painted next month . 我 下 個 月 刷 我 的 房子 . +Beauty is but skin deep . 美貌 只是 表面性 的 东西 . +They were only interested in selling books . 他们 只 对 卖书 有 兴趣 . +Tom quit smoking cold turkey . 汤姆 突然 戒烟 了 . +Was it all an illusion ? 那 全是 幻觉 吗 ? +I wonder which way is the shortest . 我 想 知道 哪 一條 路 是 最短 的 . +Not all of the passengers escaped injury . 並非 所有 的 乘客 都 免 於 受傷 . +Somebody must care for the patient . 一定 要 有人 照顧 病人 . +How about calling it a day ? 今天 就 做到 這裡 如何 ? +Tom is very kind . 汤姆 人 很 好 . +I fed the leftovers to my dog . 我 把 剩下 的 东西 给 我 的 狗 吃 . +She will give her photo to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +My mother never gets up early . 我 的 母親 從 不 早起 . +Why do you ask ? 你 問 這個 幹 什麼 ? +I want you to tell me the truth . 我 想要 你 把 真相 告诉 我 . +Mars is a planet . 火星 是 一顆 行星 . +What did she say ? 她 說 了 什麼 ? +He plays the guitar well . 他 吉他 彈 得 很 好 . +My office is on the fifth floor . 我 的 辦 公室 在 五 樓 . +Everybody likes to goof off . 所有人 都 喜欢 偷懒 . +He lives alone in an apartment . 他 一個 人 住 在 公寓 裡 . +Are these all your books , Tom ? 汤姆 , 这些 全都 是 你 的 书 吗 ? +She managed to keep up appearances . 她 設法 保住 面子 . +He taught himself French . 他 自 學法 語 . +Her dream is to visit Paris . 她 的 梦想 是 参观 巴黎 . +Tom swam . 汤姆 游泳 了 . +She always believes me . 她 一直 都 相信 我 . +Tom does not know what he should do now . 汤姆 不 知道 他 现在 应该 做 什么 . +I am proud of my son . 我 为 我 儿子 感到 骄傲 . +In London , the police are always worried about finding a bomb on the train or subway . 在 倫敦 , 警察 總是 擔心 在 列車 上 發現 炸彈 . +What nonsense are you talking now ? 你 胡说 什么 呢 ? +Let is make some more . 我們 做 多一點 . +He works hard all the year round . 他 一年 到 頭 努力 工作 . +Are there any apples in the box ? 箱子 裡 有 蘋果 嗎 ? +The flood caused a lot of damage . 洪水 造成 了 很大 的 損害 . +My best friend dances really well . 我 最好 的 朋友 舞 跳 得 很 好 . +She respects her homeroom teacher a lot . 她 很 尊重 她 的 導師 . +A good idea occurred to him . 他 想到 一个 好 主意 . +He is good at rugby . 他 很 擅長 橄欖球 . +She took a bite of the apple . 她 咬了一口 蘋果 . +He had a shower before breakfast . 他 在 早餐 前 洗 了 个 澡 . +Tom got rid of his old books . 汤姆 扔掉 了 他 的 旧书 . +I need to search for my pen . 我 得 查找 一下 我 的 笔 . +My parents taught me to respect my elders . 我 的 父母 教育 我 应该 尊敬 老人 . +Let is take the bus . 讓 我們 坐 公共 汽車 去 . +You have three cars , do not you ? 你 有 三辆 车 对 吗 ? +I did nothing out of the ordinary . 我 沒 做 什麼 與 眾 不同 的 事 . +Tom just never should have done that . 汤姆 就 不该 做 那事 . +That makes no difference . 这 没有 任何 区别 . +They made their way through the crowd . 他們 從 人群 中 擠 過 去 了 . +I do not remember anything about the incident . 我 不 记得 事故 的 情况 . +You have not changed at all . 你 一点 都 没变 . +My brother likes horror movies . 我 哥哥 喜歡 恐怖 電影 . +Clothes make the man . 人要 衣裝 . +They closed their eyes . 他们 闭上眼睛 . +Some people like volleyball , others enjoy tennis . 有些 人 喜欢 排球 , 其他人 喜欢 网球 . +He became a member of this club five years ago . 他 在 五年 前 成為 了 這個 俱樂部 的 成員 . +He threatened to make it public . 他 威胁 要 公开 . +Tom is happy . 湯姆高興 . +You must always keep your hands clean . 您 应该 一直 让 手 保持 干净 . +The car crashed into the truck . 汽車 撞上 了 卡車 . +These shoes are hers . 這些 鞋 是 她 的 . +Tom says he does not feel like going out . 汤姆 说 他 不想 出去 . +I ran across an old friend near the bank . 我 在 银行 附近 碰见 老朋友 . +We caught some large fish there . 我們 在 那裡 抓 了 一些 大魚 . +Have you washed your hands yet ? 你 洗 過 你 的 手 了 嗎 ? +She is looking for her missing wallet . 她 正在 找 她 不 見 了 的 皮夾 . +You are not to leave this room . 你 不 應該 離開 這個 房間 . +He knows better than to marry her . 他 不 會 傻 到 去 娶 她 . +He has no manners at all . 他 一點 禮貌 也 沒有 . +Tom will be able to swim soon . 湯姆 將 很快 就 會 游泳 了 . +I was at home most of the day yesterday . 我 昨天 大部分 时间 在家 . +There are a few shops next to my house . 我家 旁边 有 几家 商店 . +We can not keep this a secret forever . 我們 不能 永遠 把 它 當 秘密 守住 . +She will give her picture to whoever wants it . 她 会 把 她 的 照片 给 想要 的 人 . +Turn on the light , please . 請 開燈 . +I changed my address last month . 上個月 我 換 了 我 的 地址 . +The dog is sitting by the bowl . 狗 坐在 碗 旁边 . +Oil is extracted from olives . 油 是从 橄榄 中 提炼 出来 的 . +He hid himself behind the door . 他 藏到 了 门 后 . +My daughter caught a cold . 我 的 女儿 感冒 了 . +Hey , look what I found . 嘿 , 看 我 找到 了 什么 . +There is something weird happening . 正 有 什么 奇怪 的 事情 发生 着 . +Show it to me . 给 我 看下 它 吧 . +I played with the baby on my knee . 我 在 膝蓋 上 跟 嬰兒 玩 . +I think that I now have enough money to buy the car that I want . 我 认为 我 现在 有 足够 的 钱 买 我 想要 的 那辆车 . +Let is wait until it stops raining . 我们 等 雨 停 吧 . +She does not have many friends in Kyoto . 她 在 京都 沒有 很多 朋友 . +I do not discriminate . 我 不 歧视 人 . +Do you want to go to the station with me ? 要 不 一起 到 车站 去 ? +This is not safe . 这 不 安全 . +I would like to work at the cafeteria . 我 想 在 餐廳 工作 . +Tom can not cross the border . Tom 没 办法 穿过 边界 . +May I ask some questions ? 我 可以 問 一些 問題 嗎 ? +If I were you , I 'd want to know what Tom is doing right now . 如果 我 是 你 , 我 不会 想 去 知道 Tom 现在 正在 做 什么 . +I have caught a terrible cold . 我 得 了 一種 可怕 的 感冒 . +I am sorry I did not make myself clear . 對 不起 , 我 沒 講 清楚 . +Tell us more . 告訴 我們 多一點 . +We got all the materials together . 我們 把 所有 的 材料 放在 一起 . +This school has many students . 这个 学校 有 很多 学生 . +Tom was a real hero . 汤姆 是 个 真 英雄 . +Your hair is pretty . 你 的 头发 很漂亮 . +Write your address here . 在 這裡 寫下 你 的 地址 . +Are you for or against his idea ? 您 赞成 还是 反对 他 的 想法 ? +I will drive you to the airport . 我会 开车 送 你们 去 机场 . +The accident is only survivor was a baby . 这场 灾难 的 唯一 幸存者 是 一个 婴儿 . +It is more blessed to give than to receive . 赠与 比 接受 更让人 觉得 幸福 . +Move quietly . 轻轻地 移动 . +Tom is very much alone . 汤姆 非常 孤单 . +I 'd never done it before . 我 以前 從未 過 它 . +My father often washes the dishes . 我 爸爸 常常 洗碗 . +Tom has not talked to Mary about that yet . 汤姆 还 没 跟 玛丽 谈 那事 . +The murmur of the brook lulls me to sleep . 溪流 潺潺 , 催 我 入眠 . +English is not spoken here . 這裡 的 人 不 說 英語 . +How long does it take to go from here to the Hilton Hotel ? 從 這裡 到 希爾頓 飯 店 要 花 多久 時間 ? +She likes chocolate , too . 她 也 喜欢 巧克力 . +She can speak English , of course . 她 會 講 英語 , 當然 . +If you do not go , I will not , either . 如果 你 不 去 , 那 我 也 不 會 去 . +I asked him to mend my shoes . 我 請 他 修理 我 的 鞋子 . +I went to the station to see my friend off . 我 去 车站 为 我 朋友 送行 . +I remember having seen her somewhere . 我 记得 好像 在 哪里 见 过 她 . +I thought pizza was what you wanted to eat . 我 認為 你 想 吃 的 是 比 薩 . +I suppose you are hungry . 我 猜想 您 饿 了 . +I am right . 我 是 對 的 . +I remember you . We met three years ago . 我 記得 你 . 三年 前 我們 見 過 面 . +I wish I could go to Japan . 我 非常 希望 能够 去 日本 . +Old people get up very early . 老人 們 很 早就 起床 . +Call me at the office . 打 電話 到 我 辦 公室 來 . +I did not know she was married . 我 不 知道 她 结婚 了 . +How far is it to the station ? 到 火車 站 有 多 遠 ? +Who would want to hire Tom ? 誰 會 想 雇 湯姆 ? +Tom put a lot of honey on his toast . 汤姆 往 他 的 面包片 上放 了 许多 蜂蜜 . +He is very good at playing violin . 他 非常 擅 長拉 小提琴 . +I do not like to use liquid laundry detergent . 我 不 喜歡 用 洗衣 液 . +Tom came home early yesterday . 湯姆 昨天 提早 回來 了 . +Will you switch seats with me ? 您 愿意 跟 我 换 座位 吗 ? +Is it still far from here ? 离 这里 还 远 吗 ? +Will you put down that paper and listen to me ? 你 能 放下 文件 聽 我 說 嗎 ? +I will be very happy if I can serve you . 能 为 你 服务 我会 感到 非常高兴 . +I am sorry . 对不起 . +He died of lung cancer . 他 死 於 肺癌 . +Tom could have figured that out without any help . 汤姆 能 不 依靠 任何 帮助 解决 那事 . +Where are we meeting ? 我们 在 哪里 见面 ? +This door is locked from the inside . 這 門 從 裡面 被 反鎖 了 . +How did you meet Tom ? 你 是 怎麼 見 到 湯姆 的 ? +How can you do this to me ? 你 怎么 这样 对 我 ? +Where did you live last year ? 你 去年 住 在 哪儿 ? +That is mine . I do not know where yours is . 那个 是 我 的 . 我 不 知道 你 的 在 哪里 . +It is not a suitable topic for discussion . 它 不是 一個 適合 討論 的 主題 . +Tom played with his dog . 汤姆 和 他 的 狗 玩 . +They failed the exam . 他們 考試 失敗 了 . +What are you reading right now ? 你 在 看 什么 ? +He studies Chinese as well . 他 也 学习 汉语 . +The train was late this morning . 今天 早上 火車 來遲 了 . +Come in . 进来 . +That boy over there is probably Tom is brother . 那边 的 那个 男孩 可能 是 汤姆 的 兄弟 . +He knows New York inside out . 他 对 纽约 了如指掌 . +How much does the wooden chair cost ? 那 张 木椅 要 多少 钱 ? +Tom is used to getting up early in the morning . 汤姆 习惯 早起 . +Their traditional life style no longer exists . 他们 传统 的 生活 方式 不再 存在 . +I must go home . 我 该 回家 了 . +You are lying , are not you ? 你 在 撒謊 , 不是 嗎 ? +It began to snow . 开始 下雪 了 . +I am really looking forward to seeing Tom again . 我 真 想 再 見 見 湯姆 . +I do not know any of them . 他们 中 的 任何 一位 我 都 不 认识 . +We hope a solution is found . 我们 希望 找到 解决 方法 . +Skip it . 不管 它 . +Tom is a professional magician . 汤姆 是 个 专业 的 魔术师 . +Can you explain the exact meaning of this word ? 你 能否 說出 這個 詞 的 精確 意思 ? +I suppose I felt a little jealous . 我 想 我 感到 有 點 嫉妒 . +I am just going for a walk . 我 只是 去 散散步 . +What is that ? 那 是 什么 啊 ? +We should have been more careful . 我們 應 該 更 小心 的 . +It is all Tom is fault . 全 是 湯姆 的 錯 . +A slip of the tongue is sometimes fatal to a politician . 有时候 口误 对 政治家 来说 是 致命 的 . +I look forward to hearing from you . 我 期待 收到 你 的 來信 . +You would not believe me if I told you . 我 告诉 你 , 你 也 不会 信 . +This is not a good idea . 這 不是 好 主意 . +It is nearly six o 'clock . 差不多 六点 了 . +Please contact us . 请 联系 我们 . +Wait here for a while . 在 这儿 等 一会儿 . +I do not know whether it is good or not . 我 不 知道 它 是 好 是 坏 . +I am playing a TV game . 我 在 玩電視 遊樂器 . +This is none of your business . 这 不是 你 的 事 . +I am tired of watching television . 我 看 電視 看到 厭煩 了 . +I approved it . 我 同意 它 . +How long would it take ? 要 多长时间 ? +Tom took his wedding ring off . 汤姆 拿掉 了 他 的 婚戒 . +Close the door , please . 請關 上門 . +He insured himself . 他 給 自己 投 了 保險 . +I bought a VCR at that store for a low price . 我 在 上 商店 花 低价 买 了 录像机 . +Could I see you in private ? 我 能 私下 見 你 嗎 ? +We are not looking . 我們 沒有 看著 . +When you hurt others , you also hurt yourself . 你 若 是 傷害 別人 , 你 也 會 傷 害到 自己 . +You do not want to be an editor ? 你 不想 做 编辑 ? +I bought a camera for 30 dollars . 我 花 30 美元 買 了 一台 照相 機 . +Just at that time , the bus stopped . 就 在 那时 , 巴士 停住 了 . +He rescued the child from the fire . 他 從 火場 中 救 了 這個 孩子 . +What did you do ? 你 做 了 什么 ? +Do not use computer translation . 别用机 翻 . +How much sugar do you use ? 你 用 多少 糖 ? +Did you hear the click ? 你 聽到 了 點擊 聲 嗎 ? +He quarrelled with his brother . 他 和 他 弟弟 吵 了 起来 . +Tom is still sitting in the waiting room . 汤姆 还 在 等候 室里 坐 着 . +I am coming home , Tom . 我 在 回家 , 湯姆 . +Tom says he did not know what to do . 汤姆 说 他 不 知道 要 做 什么 . +I am tired of listening to Tom . 我 厌倦 了听 汤姆 说话 . +I talked with her for an hour . 我 跟 她 談 了 一個 小 時 . +Four is an unlucky number in Japanese . 4 在 日本 是 一个 不幸 的 数字 . +Are you on the committee ? 你 是 委員會 中 的 成員 嗎 ? +How long will you stay here ? 你 会 在 这儿 待 多久 ? +Tom knows you better than he knows anyone else . 湯姆 對 你 的 瞭解 比對 其他人 都 清楚 . +English and German are two related languages . 英語 和德語 是 兩種 相關 的 語言 . +Did you meet Tom ? 你 见 过 汤姆 了 吗 ? +Tom slipped out of the classroom . 湯姆 溜出 了 教室 . +All the desk drawers were empty . 所有 的 办公桌 抽屉 都 是 空 的 . +He told me not to tell lies . 他 告訴 我 不要 說 謊 . +She went from London to Paris . 她 从 伦敦 去 了 巴黎 . +I would like to go with Tom . 我 想 跟 湯姆 走 . +What did you have for lunch ? 你们 午饭 吃 了 什么 ? +The water turned to ice . 水 结成 冰 了 . +I hope I am not boring you . 希望 我 没有 烦 到 你 . +He likes to listen to the radio . 他 喜歡 聽 廣播 . +Your bag is open . 你 的 包开 着 . +It is too bad that you could not come . 你 不能 來 真是太 糟糕 了 . +I can not explain it now . 我 现在 不能 解释 . +He was drowned . 他 被 淹死 了 . +Why should I thank Tom ? 我 為 甚麼 該 感謝 湯姆 ? +It was not as expensive as I expected . 它 沒 有 我 想像 的 那麼 貴 . +I am very proud of my father . 我 非常 以 我 的 父親 為 榮 . +I have no time for reading . 我 没 时间 阅读 . +Her mother always accompanies her . 她 母亲 一直 陪 着 她 . +I feel we are going to get better . 我 感覺 我們 將 要 變得 更好 . +He was sleeping under the tree . 他 在 樹下 睡覺 . +We made friends with them . 我們 與 他們 交朋友 了 . +Today , I was supposed to study at the library but I woke up around 12 o 'clock . 今天 , 我 本 打算 在 图书馆 学习 但 到 12 点 左右 才 醒 . +I took a taxi from the station to the hotel . 我 從 車站 搭 了 一班 到 旅館 的 計程 車 . +My mother plays the piano well . 我 的 母親 鋼琴 彈 得 很 好 . +How long will you be staying ? 你 会 待 多长时间 ? +The Tigers lost the game , which was a surprise to us . 我們 覺得 很 驚訝 老虎 隊 竟然 輸掉 了 比賽 . +The Cold War ended when the Soviet Union collapsed . 冷战 以 苏联 解体 结束 . +We found out that he was her father . 我们 发现 他 是 她 的 父亲 . +This case might not get resolved for a while . 這個 案件 可能 不 會 在 短 時間 內 就 解決 . +Tom is door is open . 湯姆 的 門 開著 . +Keep next Sunday free . 把 下 周日 空 出来 . +Did you enjoy your winter holidays ? 你 寒假 過 得 愉快 嗎 ? +The dress is made of a thin fabric . 這件 衣服 是 由 薄織 物 製 成 的 . +He likes geography and history . 他 喜欢 地理 和 历史 . +The price of the book was $ 5 . 这 本书 的 价格 是 5 美元 . +Do you usually have tea for breakfast ? 你 經常 早餐 喝茶 嗎 ? +He hid himself behind a large rock . 他 藏到 一个 大石头 后面 了 . +No one could solve the puzzle . 没人 解得 了 这个 谜题 . +We live together . 我們 住在一起 . +He looked over my report . 他 仔細 看 了 我 的 報告 . +I am going to attend the meeting . 我 將 出席 這個 會議 . +I am so tired . 我 好累 . +How dare you speak to me like that ! 你 怎么 敢 这样 跟 我 说话 ! +Tom has been under a great deal of strain lately . 汤姆 最近 压力 特别 大 . +I go to school by bus . 我 乘车 去 学校 . +Hurry up , and you will be in time for the bus . 快点 , 你 就 能 准时 搭 上 公交车 了 . +My watch has stopped . 我 的 錶 停 了 . +I forgot . 我 忘 了 . +How much is this camera ? 这部 相机 多少 钱 ? +Bring your children along . 把 你 的 孩子 带来 . +Tom has only a week to decide . 湯姆 只有 一週 時間 做 決定 . +This book has a lot of pictures . 這 本書 有 很多 圖片 . +You are too generous . 你 太 大方 了 . +Did you feed the dog this morning ? 你 今天 早上 喂 过 狗 了 吗 ? +This is quite good . 这 可 真好 . +He put on the red jacket . 他 穿 上 了 紅色 的 外套 . +Open your eyes . 睁开眼睛 . +There was nothing I could do at that time . 当时 我 什么 都 不能 做 . +Whose house is across from yours ? 你家 對面 的 房子 是 誰 的 ? +My parents are divorced . 我 父母 离婚 了 . +Who can tell what will happen in the future ? 谁 能 说 将来 会 发生 什么 呢 . +She passed away peacefully in her sleep . 她 在 睡眠 中 安详 地 去世 了 . +My brother goes to college in Kobe . 我 弟弟 在 神戶 上 大學 . +I would like to leave this town and never come back . 我 希望 離開 這個 村子 並且 再也 不要 回來 . +I do not want to fail my exams . 我 不想 考试 失败 . +I can not tolerate this noise any longer . 我 不能 再 忍受 這個 噪音 了 . +Can anyone believe you ? 誰 會 相信 你 ? +He must have taken the wrong train . 他 一定 是 搭錯 火車 了 . +The batteries in my calculator are dead . 我 計算機 的 電池 沒電 了 . +We managed to swim across the river . 我們 成功 地游 過 了 河 . +Do not forget to take out the garbage . 别忘了 把 垃圾 拿出 去 . +Tom was making French fries . 汤姆 想 做 炸薯条 . +Do not be shy . 不要 害羞 . +Apart from some fruit , he has not eaten anything . 除了 水果 , 他 什么 都 没 吃 . +He went there instead of his father . 他 代替 他 的 父親 去 . +She showed him the photo . 她 把 照片 给 他 看 . +Please do not interrupt me . 请 不要 打断 我 . +There seem to be several reasons for his failure . 他 的 失败 看来 有 几个 原因 . +Just let Tom speak . 就 讓 湯姆 說 吧 . +Tom is hands are shaking . 汤姆 的 手 在 颤动 . +Did you kill Tom ? 是 你 杀 了 汤姆 吗 ? +I do not have the strength to keep trying . 我 没 力气 继续 尝试 了 . +You should apologize for your rudeness . 您 该 为 您 的 粗鲁 道歉 . +She gave up everything for her children . 為了 孩子 們 她 放棄 了 一切 . +You are not old enough to get a driver is license . 你 还 没到 可以 拿 驾驶执照 的 年龄 . +I got some sand in my eye . 我 的 眼睛 進 了 些 沙 . +Back off . 往 后退 点 . +What kind of a person is Tom ? 汤姆 是 个 什么样 的 人 ? +I like short hair . 我 喜欢 短发 . +Where does your grandfather live ? 你 爺 爺 住 在 哪裡 ? +Do you have a camera ? 你 有 照相机 吗 ? +We meet here once a week . 我们 每周 在 这儿 聚 一次 . +I like playing sports . 我 喜歡 運動 . +The policeman arrested the burglar . 警察 逮捕 了 小偷 . +This car is not worth repairing . 這輛 車 不 值得 修理 . +The missing cat has not been found yet . 失踪 的 猫 还 没 被 找到 . +She cleaned her room in a hurry . 她 急忙 地 清掃 了 她 的 房間 . +The song reminds me of my home . 这 首歌 让 我 想家 了 . +He is strong . 他 很 強壯 . +My daughter wants a piano . 我 女儿 想要 架 钢琴 . +I am curious . 我 很 好奇 . +Let me come in . 让 我 进去 . +He was elected captain of the team . 他 被 選為 團隊 的 隊長 . +Let is take a break now . 现在 , 让 我们 休息 一会儿 吧 . +All you have to do is to write your name and address here . 你 只要 在 这里 写下 你 的 姓名 和 地址 就行了 . +You should not wait here . 你 不 應該 在 這裡 等 . +People can not keep quiet . 人們 無法 保持沉默 . +What is in the living room ? 客廳裏有什 麼 ? +It is very easy to sound natural in your own native language , and very easy to sound unnatural in your non @-@ native language . 你 很 容易 把 母语 说 得 通顺 流畅 , 却 很 容易 把 非 母语 说 得 不 自然 . +Bring me today is paper , please . 請 幫 我 把 今天 的 報紙 帶來 . +He went by bicycle . 他 騎 腳 踏 車 去 . +It does not matter what he said . 他 說 的 不 重要 . +She was almost hit by a car . 她 幾乎 被 車 撞 到 . +The truth can be more painful than a lie . 真相 可能 比 谎言 更 令人 痛苦 . +He looks like an honest man . 他 看起来 忠厚老实 . +Tom is the richest guy I know . 汤姆 是 我 所 知道 的 最 有钱 的 家伙 . +Tom said he thought he should study French . 湯姆 說 他 認為 他 該 學法 語 . +Are you sure you do not want me to say anything ? 你 确定 要 我 什么 都 不 说 ? +We played basketball yesterday . 我們 昨天 打 籃球 . +It is no use telling me anything . 對 我 說 什麼 都 是 沒用 的 . +Where are you from ? 你 從 哪裡 來 ? +Tom wants popcorn . 湯姆 要 爆米花 . +Foreign investors withdrew their money from America . 外国 投资者 从 美国 收回 他们 的 钱 . +I wish I could buy a motorcycle . 但 願 我 能 買 一輛 摩托 車 . +An elephant has a long nose . 大象 有 長 鼻子 . +I can recommend this restaurant . 我 推荐 这个 餐厅 . +It was not very cold yesterday . 昨天 不是 很 冷 . +How long are you going to stay in Japan ? 你 會 待 在 日本 多久 ? +This watch is waterproof . 這 手 錶 是 防水 的 . +He is allergic to house dust . 他 對 室內 灰塵 過敏 . +We have got to get you out of here . 我們 必須 把 你 带走 . +Acid rain is not a natural phenomenon . 酸雨 不是 自然 现象 . +My shoulder really aches . 我 的 肩膀 很 痠 . +Do not let the dog in . 别 让 狗 进来 . +We set a trap to catch a fox . 我们 设 了 个 陷阱 来 抓 狐狸 . +He painted all the walls green . 他 把 所有 的 牆壁 漆成 了 綠色 . +He is angry with you . 他 在 生 你 的 氣 . +Your English has improved a lot . 你 的 英語 進步 了 很多 . +What do you do after school ? 你 放学 以后 干什么 ? +I often play tennis on Sunday . 我 常常 在 週日 打 網球 . +She is dieting . 她 在 节食 中 . +Are not you the one who saved me ? 你 不是 救 了 我 的 人 嗎 ? +After a couple of drinks , the guy was feeling no pain . 喝 了 幾 杯酒 後 , 這 個 傢 伙 就 感 覺 不 痛 了 . +The problem is , he has no money . 问题 是 他 没钱 . +Give a thief enough rope and he will hang himself . 多行不义必自毙 . +We never gave up . 我們 從不 放棄 . +I did not want to surprise you . 我 没 想 吓唬 你 . +I am tired of dancing . 我 厭倦 了 跳舞 . +It is almost time to go to bed . 差不多 是 就 寢 的 時間 了 . +You work too hard . 你 工作 太 努力 了 . +What do you do here ? 你 在 這裡 做 甚麼 ? +All you need is ignorance and confidence and the success is sure . 要 想 成功 只 需要 无知 和 自信 . +Please tell me your address . 请 告诉 我 你 的 地址 . +Nobody knows . 谁 也 不 知道 . +Take it easy . 放 輕 鬆 . +Mary helped her mother cook . 瑪麗幫 她 媽媽 做飯 +It was a terrible day . 這 是 糟糕 的 一天 . +I am really looking forward to it . 我 很 期待 哦 . +I just wanted to speak to Tom . 我 只 想 跟 汤姆 说话 . +My father began jogging last month . 我 父親 上 個 月 開始 慢跑 . +I broke my arm . 我 的 手臂 斷 了 . +What is the name of that river ? 這條 河 叫 什麼 名字 ? +This is the house where he lives . 這 是 他 住 的 房子 . +There are more clouds today than yesterday . 今天 的 雲比 昨天 的 多 . +I can not get away from work now . 我 現在 上班 無法 離開 . +Please fill the teapot with boiling water . 請用 開水 把 茶壺 灌滿 . +I enjoyed talking with him . 我 和 他 谈 得 很 愉快 . +I read a book last night . 我 昨晚 讀書 . +This boy is lazy . 这个 男孩子 很 懒 . +I asked Tom to wait here . 我 讓 湯姆 在 這裡 等 . +I am seeing my uncle tomorrow . 我 明天 要 去 看 我 叔叔 . +You will never see that again . 你 以后 再也不会 看到 它 了 . +Anyway , you will never know . 不管 怎樣 , 你 永遠 不 會 知道 . +He drove the car , listening to music on the radio . 他 一面 開車 一面 聽 收音 機 的 音樂 . +She plays tennis after school . 她 放学 后 打网球 . +She gets up at seven . 她 早上 7 点 起床 . +It is 3 : 30 . 3 点 半 了 . +She promised not to go out alone . 她 答應 不單 獨 外出 . +That was a beautiful moment . 那 是 個 美好 的 瞬間 . +To distinguish right from wrong is difficult . 要 分清是非 是 困難 的 . +Please tell me when to go . 請 告訴 我什麼 時候 該 走 . +I am afraid of dying . 我 怕死 . +Christmas is soon . 聖誕節 快 到 了 . +He teaches English to his friend . 他 對 他 的 朋友 教 英語 . +May I use your toilet ? 我 能 用 一下 你们 的 厕所 吗 ? +He traveled all over the world . 他 周遊 世界各地 . +That is the office where he works . 那 是 他 工作 的 辦 公室 . +Tom drinks juice . Tom 喝 果汁 . +Does he go to school on foot or by bicycle ? 他 走路 去 学校 还是 骑车去 学校 ? +You do not seem to be as afraid as Tom seems to be . 你 似乎 并 不 像 汤姆 看起来 那样 害怕 +We have to pull the weeds . 我們 必須 拔除 雜草 . +Do not fear the unexpected , but be prepared for it . 不要 害怕 意外 , 但要 有 準備 . +Science is fun . 科學 好玩 . +Write everything down . 把 所有 東西 寫 下來 . +Tom knew how to do that . 汤姆 知道 怎么 做 那事 . +There is a television in the room . 房里 有个 电视机 . +May I see your boarding pass , please ? 請 讓 我 看看 您 的 登機 證好 嗎 ? +My grandfather is very healthy . 我 的 祖父 非常 健康 . +He is afraid of getting lung cancer . 他 怕 得到 肺癌 . +I can read German , but I can not speak it . 我 能看懂 德语 , 但 不会 说 . +She said that he was handsome . 她 說 他 很 英俊 . +Almost no one believes her . 几乎 没 人 相信 她 . +He is unsociable . 他 太 不 合群 . +We had a great relationship . 我們 的 關 係 非常 好 . +Do you like it ? 你 喜歡 嗎 ? +Do it somewhere else . 到 别处 去 做 . +Smoking is not permitted here . 这里 不 允许 抽烟 . +Do you know how to use a computer ? 您 会 使用 计算机 吗 ? +This is a book . 这 是 一 本书 . +I can not thank you enough . 我 無法 表達 我 對 你 的 感謝 . +I cannot follow your logic . 我 跟不上 你 的 逻辑 . +I am never at home on Sundays . 我 周日 从不 在家 . +Tom had a heat stroke . 汤姆 中暑 了 . +I ordered a book from London . 我 從 倫敦 訂購 了 一本 書 . +I will come earlier next time . 我 下次 會 早點 來 . +Please help yourself to the cake . 你们 自己 吃 蛋糕 . +When I was a child , I spent most of my time indoors reading . 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 阅读 . +My parents have just arrived at the station . 我 的 父母 剛剛 到 達 車站 . +A rabbit has long ears and a short tail . 兔子 长 着 长长的 耳朵 和 短短的 尾巴 . +I do not know where she lives . 我 不 知道 她 住 在 哪裡 . +Some say that China was like a Russian colony . 有人 說 中國 像是 俄國 的 殖民地 . +I am clearly missing something here . 我 确实 在 这里 丢 了 东西 . +He prefers football to baseball . 他 喜歡 足球 勝 過 棒球 . +I have got a boat . 我 有 一艘 小船 . +That was my mistake . 那 是 我 的 錯 . +Tom was able to go to college thanks to a scholarship . 因為 一份 獎學金 , Tom 得 以上 大學 . +They are watching a movie . 他們 在 看 一部 電影 . +Tom told me Mary is leaving tomorrow . 汤姆 和 我 说 明天 玛丽 会 离开 . +Someone has brought us some grapes . 有人 帶 了 一些 葡萄 給 我們 . +Take it easy . 別 緊張 . +What else have you figured out ? 你 还 发现 什么 了 ? +What is the purpose of your trip ? 你 旅行 的 目的 是 什麼 ? +I can not concentrate on my work because of the noise . 由于 噪音 , 我 无法 集中精力 工作 了 . +Could you please pass me the pepper ? 請 你 把 胡椒 遞 給 我 好 嗎 ? +What is the matter with your car ? 你 的 車子 怎麼 了 ? +What is it ? 它 是 什么 ? +Are you ready ? 你们 准备 好了吗 ? +Tom sold Mary his car . 汤姆 把 他 的 汽车 卖给 了 玛丽 . +We have got plenty of time . 我們 有 充足 的 時間 . +Our baby can not talk yet . 我家 宝宝 还 不会 说话 . +He really wants to meet you . 他 真的 想見 你 . +We are all longing for peace in the world . 谁 都 希望 世界 和平 . +Tom was on the list . 湯姆 在 名單 上 . +Many English words are derived from Latin . 許多 英文 單字 源自 於 拉丁文 . +He is fond of adventure . 他 喜欢 冒险 . +My father loves pizza . 我 父親 愛 吃 比 薩 . +What is going on with Tom ? 汤姆 出 什么 事 了 ? +His pronunciation is far from perfect . 他 的 发音 远非 完美 . +My house is here . 我家 在 這裡 . +The company is competitive edge will be eroded if system engineers continue to leave . 如果 系统 工程师 继续 离开 , 公司 的 竞争 优势 将 会 被 削弱 . +How dare you say that to me ! 你 怎麼 能 這麼 對 我 說 話 ! +What did Tom expect Mary to do ? 汤姆 打算 让 玛丽 做 什么 ? +Please take off your hat . 请 您 摘下 您 的 帽子 . +Let me know if you need any help . 你 需要 帮助 就让 我 知道 . +Well , the night is quite long , is not it ? 夜晚 很 长 , 不是 吗 ? +She will be getting married next year . 她 明年 將 要 結婚 . +I think Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +I was right behind you . 我 就 在 你 后面 . +The bus should be coming soon . 公車 應該 很快 就 會 來 了 . +That is quite obvious . 那 很 明顯 . +I am dead tired . 我 累死 了 . +This is a well @-@ written article . 這 是 篇 寫 得 很好 的 文章 . +Your cake is delicious . 您 的 蛋糕 很 美味 . +What time is it by your watch ? 你 表上 是 几点 ? +My watch has been stolen . 我 的 表 被 偷 了 . +That is his house . 那 是 他家 . +Do you know anyone who is not on Facebook ? 你 有 認識 沒 有用 Facebook 的 人 嗎 ? +Tom does not want anything to drink . 汤姆 什么 都 不想 喝 . +I am single . 我 單身 . +Now shake hands and make up . 现在 握 个 手 和解 吧 . +Iron is a useful metal . 铁 是 个 有用 的 金属 . +This song makes me homesick . 这 首歌 让 我 想家 了 . +I was the happiest man on earth . 我 曾 是 世界 上 最 幸福 的 男人 . +He really loves beer and gets drunk every day . 他 喜歡 喝爱 啤酒 , 而且 每天 都 喝醉 . +What is the meaning of this phrase ? 這個 片語 是 什麼 意思 ? +The train arrived on time . 火车 准时 到 了 . +Ouch ! My finger got caught in the door . 好 痛 ! 被 门 夹到 手指 了 ! +What do you base your theory on ? 你 的 理論 是 以 什麼 為 基礎 ? +Someone ate all my cupcakes . 某人 把 我 的 杯形 蛋糕 吃 完 了 . +They kissed each other . 他们 亲吻 了 . +Tom has to do that again . 湯姆 必須 再 做 一遍 . +How much is four times six ? 6 的 4 倍 是 多少 ? +I could smell the alcohol on his breath . 我 能 闻到 他 呼吸 中 的 酒精 味 . +Breakfast is from seven to nine . 早餐时间 在 七点 到 九点 . +A full moon can be seen tonight . 今晚 能 看到 满月 . +I wish he would write more often . 我 希望 他 来信 更 勤 些 . +I have got a few friends . 我 有 一些 朋友 . +Why did you paint the bench red ? 为什么 你 把 长凳 漆成 红色 了 ? +He grew up in Germany . 他 在 德國 長大 . +They let me go . 他們 讓 我 走 . +I am seeing you in a new light . 我 对 你 刮目相看 了 . +I did not feel bad . 我 没 觉得 不好 . +He began to look for a job . 他 开始 找 工作 了 . +You need not do it at once . 你 没 必要 马上 去 做 . +Tom seems tough . 汤姆 看来 难缠 . +I do not have any friends to help me . 我 没 朋友 帮 我 . +It is difficult to play the piano . 彈 鋼琴 很困 難 . +Tom poured cold water over himself to wake himself up . 汤姆 给 自己 浇 凉水 以 清醒过来 . +I wonder what this phrase means . 我 想 知道 这 句 话 的 意思 . +I think that she knows the truth . 我 覺得 她 知道 真相 . +I love watching soccer games . 我 爱看 足球 . +It is an artificial flower . 這 是 朵 人造花 . +Nobody was injured . 沒 有人 受傷 . +You should have known better than to take an examination without preparing for it . 你 應該 知道 要為 考 試作 準備 . +We were able to catch the last train . 我们 能 赶上 最后 一班 火车 . +Make sure to turn off all the lights before going out . 出去 之前 确认 一下 所有 的 灯 都 关了 . +Grab Tom . 抓住 汤姆 . +Are you sure Tom will come back ? 你 確定 湯姆會 回來 嗎 ? +Tom also talked . 湯姆 也 說話 了 . +I have no regrets about what I did . 我 對 我 做 過 的 事 不 後 悔 . +I do not need you or anybody else . 我 不 需要 你 或 别的 人 . +It does not matter what you do . 你 做 什么 都 无所谓 . +He sent me some American magazines . 他 送 給 我 一些 美國 雜 誌 . +The house stood out because of its unusual shape . 那 房子 因为 其 少有 的 形状 被 突显 出来 . +This makes me so angry . 這 讓 我 非常 憤怒 . +I watch my weight very carefully . 我 非常 注意 我 的 體重 . +My passport has expired . 我 的 護照 過期 了 . +She is practicing the violin now . 她 現在 正在 練習 拉 小提琴 . +That fox must have killed the hen . 那 隻 狐狸 殺 了一 隻 母 雞 . +The boy is eating bread . 这个 男孩子 在 吃 面包 . +I was always good at English . 我 一直 都 擅長 英文 . +I am a Hyogo University student . 我 是 個 兵庫 大學 的 學生 . +I have three million dollars . 我 有 三百 萬美圓 . +I can not put up with that noise any longer . 我 无法 再 忍受 那 噪音 了 . +When water freezes it becomes ice . 水 結凍 後 , 變成 冰 . +I think Tom is optimistic . 我 認為 湯姆樂 觀 . +I tried to change the subject . 我 試圖 改變 話題 . +I gave you my word . 我 和 你 保证 . +He played the part of Hamlet . 他 扮演 哈姆雷特 的 角色 . +I will ask him about it tomorrow . 我 明天 會 問 他 . +I only do what I am paid to do . 我 祇 做 別 人 付 錢 讓 我 做 的 事 . +I will tell you the truth . 我 會 告訴 你 真相 . +When will your new store open ? 你 的 新 商店 什么 时候 开张 ? +Tom was admiring my new car at the time the truck crashed into it . 在 湯姆欣 賞 我 的 新車 的 同時 , 一輛 卡車 撞 了 過來 . +The building has 20 floors . 大楼 有 20 层 . +No one likes war . 没有 人 喜欢 战争 . +He seems to have told a lie . 他 似乎 已經 說 了 謊 . +Who else knows about it ? 還 有 誰 知道 它 ? +There is bamboo growing in the garden . 花園 裡 有 竹子 在 生長 . +Break it up ! 停手 ! +She hopes to become a designer . 她 希望 成為 一名 設計 師 . +Did you accomplish your goals ? 你 達成 你 的 目標 了 嗎 ? +Whose is this car ? 這輛 汽車 是 誰 的 ? +Is there a doctor on board ? 船上 有 醫生 嗎 ? +He made the most of his opportunities . 他 盡力 地 利用 了 他 的 機會 . +Why does Tom call me Mary ? 为什么 汤姆 叫 我 玛丽 ? +I like snow a lot . 我 很 喜歡 雪 . +I go to the office by bicycle except on rainy days . 除了 雨天 , 我 都 是 骑车去 上班 的 . +You have got to wake up . 你 必須 醒醒 . +He is responsible for the accident . 他 為 這個 事故 負責 . +I have to clean the bathroom . 我 要 清理 廁所 了 . +I should obey . 我 應 該 服 從 . +The neighborhood was silent . 社區 是 安靜 的 . +Strange to say , he did not know the news . 说来 奇怪 , 他 不 知道 这个 消息 . +She has a flower in her hand . 她 手上 有 一朵花 . +How to overcome the high value of the yen is a big problem . 如何 克服 日元 升高 是 个 大 问题 . +Tom is not afraid of anything . 湯姆 對 甚麼 都 不怕 . +You will be punished if you break the law . 如果 你 違反 了 法律 , 你 將 受到 懲罰 . +Tom enjoys gardening . 汤姆 享受 园艺 . +He has not come yet . He must have missed the bus . 他 还 没来 . 他 肯定 错过 公交车 了 . +This car was so cheap that he could afford it . 這車 便宜 得 讓 他 能 買 得 起 . +I do not like school . 我 不 喜欢 学校 . +I have to help my mother . 我 必須 幫忙 我 母親 . +You might meet him . 你 可能 會 見 到 他 . +I was brought up in the country . 我 在 鄉下 被 撫養 長大 . +I was wondering if you were going to show up today . 我 在 想 你 今天 会 不会 来 . +What does it contain ? 它 包含 了 什么 ? +Do you know anything about Tom is parents ? 你 知道 任何 关于 汤姆 父母 的 事 吗 ? +It is on the tip of my tongue . 它 在 我 的 舌尖 上 . +I can not find my glasses . 我 的 眼鏡 不 見 了 . +Today , the weather is very nice . 今天天气 很 好 . +Language is the means by which people communicate with others . 语言 是 人们 与 他人 交流 的 手段 . +Who did you hang out with last weekend ? 你 上 週末 跟 誰 閒逛 了 ? +Who else in Boston do you know ? 你 还 認識 波士 頓 的 誰 ? +My brother is now in Australia . 我 哥哥 現在 在 澳洲 . +That is what Tom requested . 那 就是 汤姆 想要 的 . +I could not make him understand it . 我 無法 讓 他 明白 . +Call us . 联系 我们 . +Could I borrow your gray suit ? 我 可以 借 你 的 灰色 西装 吗 ? +What about having fish for dinner ? 晚餐 吃 魚 怎麼樣 ? +Teachers must understand children . 教師 必須 了解 孩子 . +Professional writers do not have a regular income . 專職 作家 沒有 固定 的 收入 . +Our team won the game . 我們 這隊 贏 得 了 比賽 . +Someone locked me in the room . 有人 把 我 鎖 在 這 房間 裡 . +You are wanted on the phone . 有 你 的 電話 . +He likes sleeping . 他 喜欢 睡觉 . +Can you put up with the way he behaves ? 你 能 容忍 他 做事 的 方式 么 ? +Soldiers must carry out their orders . 軍人 必須 履行 他們 的 命令 . +There are many earthquakes in Japan . 日本 有 许多 地震 . +I have no clue . 我 一无所知 . +Which book are you reading ? 你 在读 哪 本书 ? +Did you rent an apartment ? 你 租房子 了 吗 ? +Tom was too scared to say anything . 汤姆 吓 得 说不出 话 . +Maybe you 'd better come with us . 也許 你 最好 和 我們 一起 來 . +Animals cannot exist without air and water . 動物 離不開 空氣 和 水 . +You are too old to be doing this kind of thing . 你老 得 做不了 这种 事 了 . +Modern technology has made our lives more comfortable . 现代 科学技术 让 我们 的 生活 更加 舒适 . +That nurse is very kind and polite . 那个 护士 人 很 好 , 又 有 礼貌 . +He carried six boxes at a time . 他 一次 搬 6 个 箱子 . +What country are you from ? 你 是从 哪个 国家 来 的 ? +I got the information from him directly . 我 直接 從 他 那裡 得到 訊息 . +Is it going to snow tonight ? 今晚 会 下雪 吗 ? +I work for a bank . 我 為 一家 銀行 工作 . +You and he are both very kind . 你 和 他 都 很 友好 . +Do you want me to make coffee ? 你 要 我 煮 咖啡 嗎 ? +The school needed a new teacher . 學校 需要 一個 新 的 老師 . +The lake is deepest at this point . 这 是 湖 的 最深处 . +" Can somebody help me ? " " I will . " " 誰 可以 來 幫 我 一下 ? " " 我 幫 你 . " +I would like to become a poet . 我 想要 成為 詩人 . +How about going out for a walk ? 出去 散步 怎麼樣 ? +Tom asked Mary to help . 湯姆 向 瑪麗 求助 . +That means a lot to me . 那 对 我 来说 意义 重大 . +I can teach you how to drive . 我会 教 你 怎么 开车 . +Where is the boss ? 老 闆 在 哪 裡 ? +I have been looking for you . 我 一直 在 找 你 . +He decided to marry her . 他 決定 娶 她 . +Have a good flight . 飞行 愉快 ! +They are young , but they have experience . 他們 還 年輕 , 但 他們 有 經驗 . +Tom asked a few questions . 湯姆 問 了 幾個 問題 . +I got off at the wrong station . 我 在 錯誤 的 車站 下車 . +He comes here almost every day . 他 几乎 每天 都 来 . +I am bad at sports . 我 不 擅長 運動 . +I heard that Tom attempted suicide . 我 聽 說 湯姆 試圖 自殺 . +I bought them each a present . 我 買給 了 他們 每人 一份 禮物 . +I was supposed to go to school . 我 该 去 上学 . +Other people is expectations affect how we behave . 其他人 的 期望 會 影響 我們 的 行為 . +Tom seems to speak French better than before . 汤姆 讲 法语 看来 比 以前 好 . +You had better not start until they arrive . 你 最好 不要 在 他們 來 之前 開始 . +I lost my way in the woods . 我 在 树林 里 迷路 了 . +I admitted that I did not know how to do that . 我 承認 我 不 知道 怎麼 做 . +Is that what it is called ? 那 就是 它 的 叫法 嗎 ? +Be calm . 冷静 点 . +If I were you , I 'd do the same . 如果 我 是 你 , 我 也 会 这么 做 . +I lost my money . 我 丢 了 我 的 钱 . +He painted his bicycle red . 他 把 他 的 自行车 刷成 红色 . +It will be spring soon . 春天 快 來 了 . +Do you want to know why I lied to Tom ? 你 想 知道 为什么 我 对 Tom 说话 吗 ? +You should do your homework now . 你 應該 現在 做功 課 . +The boy got his hands dirty . 這個 男孩 把 他 的 手 弄 髒 了 . +This is a beautiful flower . 这 是 一朵 美丽 的 花 . +Did you already eat at home ? 你 在家 吃 过 了 吗 ? +I did not get the point of his speech . 我 没有 抓到 他 演讲 的 重点 . +Let me know the result as soon as you can . 尽早 让 我 知道 结果 . +Tom died . 汤姆 去世 了 . +He is a meth addict . 他 是 个 吸毒 男 . +After reading his books I feel I can construct a house . 讀完 他 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I want to go with a friend to Hokkaido next month . 我 想 下个月 和 一个 朋友 去 北海道 . +I am almost 180 centimeters tall . 我 差不多 180 公分 高 . +My father retired at the age of 65 . 我 的 父亲 65 岁 的 时候 退休 了 . +I saw a group of foreigners on my way to school this morning . 今天 早上 在 去 学校 的 路上 , 我 看到 了 一群 外国人 . +There is a school near my house . 我家 附近 有 一所 學校 . +Unfortunately , she is absent . 不幸 的 是 , 她 不 在 . +She whispered something to him . 她 對 他 小聲 說 了 些 什麼 . +Tulips will bloom soon . 鬱金香 很快 將 盛開 . +They fine you in Singapore if you throw trash in the streets . 在 新加坡 的 街道 上 扔 垃圾 会 被 罚款 . +She was pleased with the new dress . 那条 新 裙子 让 她 很 满意 . +He is fluent in French . 他 说 法语 说 得 很 流利 . +Are you staying at this hotel ? 你 住 在 這家 旅館 嗎 ? +The doctor may have said so . 医生 可能 说 过 . +I can not find my keys anywhere . 我 到处 都 找 不到 我 的 钥匙 . +This room is too small . 這個 房間 太小 了 . +He likes taking care of the garden . 他 喜歡 照顧 花園 . +What exactly happened to you ? 你 到底 怎麼 回事 啊 ? +I think that they will be late . 我 想 他們 會 遲 到 . +Have you eaten lunch ? 你 吃 過午 飯 了 嗎 ? +Who was the letter written to ? 信是 写给 谁 的 ? +Tom needs encouragement . 湯姆 需要 鼓勵 . +I picked up a pretty shell at the seaside . 我 在 海边 捡了个 漂亮 贝壳 . +Is somebody there ? 那边 有人 吗 ? +It is necessary for you to go there . 你 有 必要 到 那里 去 . +It will take a long time . 我 要 花 很 长时间 . +He will be back tomorrow . 明天 他 會 回來 . +You should use a deodorant . 你 应该 用 一下 除臭剂 . +He plays very well . 他 玩 得 很 好 . +This time it is different . 这 一次 不 一样 . +He leaned on his elbows . 他 把 身子 靠 在 胳膊 上 . +The picture is hanging on the wall . 那幅 图 挂 在 墙上 . +She does not want to talk about it . 她 不想 提 了 . +I can usually tell when someone is hiding something from me . 我 常常 能 分辨 出来 一个 人 是不是 瞒 着 我 什么 事情 . +I will call Tom back . 我会 叫 汤姆 回来 . +This is the tallest tower in Japan . 這 是 日本 最高 的 塔 . +I have not started anything yet . 我 还 没 开始 做 任何 事 . +I applied for membership in the association . 我 申請 成為 協會 會員 . +I wanted to see Tom is room . 我 就 想 看看 汤姆 的 房间 . +She looked out of the window . 她 看 了 窗外 . +I am never late for school . 我 從來 沒有 上學 遲到 . +Your opinion is similar to mine . 你 的 意見 跟 我 的 相似 . +She does not have a driver is license . 她 没有 驾照 . +We headed for the mountain cottage . 我们 向 山间 小屋 走去 . +I can wait for you . 我 可以 等 你 . +I understand that you feel uneasy , but do not worry . 我 知道 你 不自在 , 但 别急 . +Can you tell those twins apart ? 你 可以 分出 那 對 雙 胞胎 中 誰 是 誰 嗎 ? +Somebody came . 有人 来 了 . +Do not be so pessimistic . 不要 感觉 那么 悲观 . +You ought to thank him . 你 应该 感谢 他 . +Are any seats still available ? 還 剩 座位 嗎 ? +I believe Tom will do that . 我 相信 汤姆 会 去 做 . +Ten years is a long time . 十年 是 很 長 的 時間 . +She gave away all her dolls . 她 把 她 所有 的 娃娃 送給 了 別人 . +I am in favor of your proposal . 我 贊成 你 的 建議 . +I used to go out with friends every weekend . 我 曾经 每 周末 都 和 朋友 外出 . +Here is the bill . 这 是 账单 . +I will prove it to you . 我会 给 你 证明 的 . +A capital letter is used at the beginning of a sentence . 一個 句子 以 一個 大 寫 字母 開始 . +We have two daughters . 我们 有 两个 女儿 . +I do not know what day he will come . 我 不 知道 他 星期 幾會 來 . +You will understand later . 你 晚一 會 就 能 明白 . +Mary is pregnant with twins . 玛丽 怀 了 双胞胎 . +The church is at the foot of a mountain . 教堂 位于 山脚 . +I am very glad to see you again . 我 很 高興 再次 見 到 你 . +She wrapped herself in a blanket . 她 用 一條 毯子 把 自己 裹起 來 . +I have never been so proud of you . 我 从没 这么 以 你 为 豪 . +How about going for a drive ? 去 開車 兜風 怎樣 ? +Do you know how the accident happened ? 你 知道 這個 意外 是 如何 發生 的 嗎 ? +He got to school just in time . 他 刚好 准时 到校 . +We have issues we have to deal with . 我們 有 我們 必須 解決 的 問題 . +There is a good chance that gasoline prices will go up . 油价 上涨 的 可能性 很 高 . +What do you need the money for ? 你 要 这 钱 干嘛 ? +That furniture is my mother is . 那個 家具 是 我 母親 的 . +I must decline . 我 必须 拒绝 . +I will make you a new suit . 我 會 給 你 做一套 新 衣服 . +They made him do the work again . 他們 要 他 再 做 一次 這個 工作 . +I know you do not want to talk to me . 我 知道 你 不想 跟 我 说话 . +I stayed home all day long reading novels . 我 全天 在家 讀 小 說 . +He never said that . 他 從來 沒 說 過 那個 . +Turn on the radio , please . 請 打開 收音 機 . +The room smelled of tobacco . 房里 闻 起来 有 股 烟味 . +They refused . 他們 拒絕 了 . +Tom is waiting for Mary to return . 汤姆 正在 等 着 玛丽 回来 . +If he were a little younger , he would be eligible for the post . 如果 他 年轻 一点 , 他 将 很 适合 这个 职位 . +My aunt made a new skirt for me . 我 嬸嬸 做 了 一條 新 裙子 給 我 . +Do you have a lot of money with you ? 你 身上 有 很多 钱 吗 ? +The man finally confessed . 那个 男人 最终 供认 了 他 的 罪行 . +Tom found out where Mary lives . 湯姆 找到 了 瑪麗 的 住處 . +I want you to grow up . 我 希望 你 能 长大 . +I was unable to complete the task . 我 無法 完成 這個 任務 . +I will lend you the book as soon as I am done reading it . 我 一把 这 本书 读完 了 就 借给 你 . +She walked around looking for him . 她 走來 走去 地 找 他 . +This machine is out of order . 这个 机器 出 故障 了 . +Give me an apple . 給 我 一個 蘋果 . +Russia is facing great financial difficulties . 俄罗斯 面临 着 严重 的 财政困难 . +English is taught in most countries . 大部份 的 國家 都 教 英語 . +Tom returned to his hometown to visit his parents during the summer break . 汤姆 在 夏休 回乡 看望 父母 . +Tom whispered something to Mary and she smiled . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 笑 了 . +Tom knows we are not happy . 湯姆 知道 我們 不 高興 . +What is the difference between this and that ? “ 这 ” 和 “ 那 ” 有 什么 区别 ? +Does anybody have a pencil ? 有 谁 有 铅笔 吗 ? +I can not sleep well . 我 睡 不好 . +How many people are in this room ? 在 這個 房間 裡 有 多少 人 ? +Will you hold this seat for me ? 您 能 給 我 留 這個 座 嗎 ? +When people meet , first impressions determine more than 50 percent of whatever happens next . 在 人际交往 中 , 第一印象 决定 着 将要 发生 的 事情 内容 的 百分之五十 以上 . +Nowadays many people travel by car . 現在 很多 人 開車 去 旅行 . +Are these your daughters ? 這些 是 你 的 女兒 嗎 ? +The sky today is the bluest that I have ever seen it . 今天 的 天空 是 我 看 過 最藍 的 天空 . +Life today is fast @-@ moving and complex . 今日 的 生活 是 迅息 萬變和 複 雜 的 . +I have finished reading that book . 我 讀 完 了 那 本書 . +The boat passed under the bridge . 船 從 橋下 通過 . +He is the same age as me . 他 和 我 同岁 . +What do you want to be ? 您 想 成为 什么 ? +Let is take a break now . 现在 休息 一下 . +Everybody wants to sit beside her . 大家 都 想 坐在 她 旁边 . +I listened to some records last night . 我 昨晚 聽 了 一些 唱片 . +We elected her captain of our team . 我们 选 她 为 我们 队 的 队长 . +Why do not you go see Tom ? 你 為 甚麼 不 去 看 湯姆 ? +May I ask you a question ? 我 可以 问 你个 问题 吗 ? +He likes fishing . 他 喜歡 釣魚 . +Here is where they usually have dinner . 这儿 是 他们 通常 吃晚饭 的 地方 . +She put on her hat to go out . 她 戴 上 了 帽子 准备 出去 . +After dinner , I did my homework . 吃 完 晚 飯 後 , 我 做作 業 . +You are still too young to get a driver is license . 你 還 太 年輕 無法 取得 駕駛 執照 . +How many boys are in this class ? 这个 班 有 多少 男生 ? +Would you like to eat with us ? 你 想 和 我們 一起 吃 嗎 ? +Tom took the hammer away from Mary . 汤姆 从 玛丽 那里 拿走 了 锤子 . +Can you forgive me ? 可以 原谅 我 吗 ? +Why are you awake ? 你 为什么 醒 着 ? +Everyone hoped that she would win . 每個 人 都 希望 她 會 獲勝 . +Do not leave the lights on when you leave the room . 离开 房间 时 , 不要 留灯 . +Elephants are the largest land animals alive today . 大象 是 如今 现存 的 陆生动物 里 最大 的 . +Old people often talk to themselves . 老人 時 常自言 自語 . +Their wedding will be tomorrow . 他们 的 婚礼 将 在 明天 举行 . +I have never seen Tom laugh . 我 從 沒見 湯姆笑 . +I did not want to humiliate you . 我 不是 想要 羞辱 你 . +He does not have any friends . 他 没有 任何 朋友 . +They worked jointly on this project . 他们 一起 为 这个 项目 工作 过 . +I think my right arm is broken . 我 想 我 的 右 手臂 斷 了 . +I know that you like sports . 我 知道 你 喜欢 体育运动 . +Tom does not even have a driver is license . 湯姆 甚至 沒有 駕駛 證 . +He made remarkable progress in English . 他 的 英語 有 了 顯著 的 進步 . +It is hard to believe Tom was not aware that Mary was in love with him . 真 难 相信 汤姆 不 知道 玛丽 爱 他 . +Tell me how you solved the problem . 告訴 我 你 如何 解決 了 這個 問題 . +I am under so much pressure , I just want to cry . 我 壓力 好大 , 我 真 想 哭 . +There is a hole in your sock . 你 的 袜子 上 有 个 洞 . +What time does the train arrive at Yokohama ? 火车 什么 时候 到 横滨 ? +She does not like sushi . 她 不 喜欢 寿司 . +He lived abroad for many years . 他 居住 在 國外 多年 . +Is this really real ? 这 真是 真的 吗 ? +Shakespeare is too hard to read . 莎士比亞 的 作品 太 難讀 了 . +Really ? 你 确定 ? +Do not distract me while I am studying . 当 我 学习 的 时候 不要 打扰 我 . +I have got no friends . 我 没有 朋友 . +I have many abilities . 我 有 很多 才能 . +All Americans have to pay their taxes . 所有 美国 人 都 需要 缴税 . +Tom is hammered . 汤姆 醉 了 . +Welcome to your new home . 歡迎 來到 你 的 新家 . +I am Finnish , but I speak also Swedish . 我 是 芬兰人 , 但 我 也 说 瑞典语 . +I will wait here till he comes back . 我会 等 在 这儿 直到 他 回来 . +We often talk about the weather . 我们 经常 讨论 天气 . +This piano is really cheap . 這 鋼琴 真 便宜 . +My dad keeps a journal every day . 我 爸爸 每天 都 记日记 . +By the way , I have got to tell you something . 我 得 順便 給 你 講件 事 . +Some people do not know that . 有些 人 不 知道 那件事 . +It is raining . 下雨 了 . +Tom lit his cigar . 湯姆 點 了 雪茄 . +I know all my neighbors . 我 认识 我 所有 的 邻居 . +That woman is much older than I am . 那 女人 比 我 老 很多 . +This car needs washing . 这辆 车 需要 清洗 . +Hope is not a strategy . 希望 不是 一种 策略 . +This is how I made it . 这 就是 我 的 办法 . +I am shorter than you . 我 比 你 矮 . +You have no right to interfere in other people is affairs . 你 沒有 干涉 他 人事 務 的 權力 . +I have no books to read . 我 没书 可读 . +You have got a big hole in your sock . 你 的 袜子 上 有个 大洞 . +Does she like oranges ? 她 喜歡 柳橙 嗎 ? +You are in my way . 你 擋住 了 我 的 路 . +I spent no more than three dollars . 我 只 花 了 三 美元 . +You should apologize to Dad for not coming home in time for supper . 你 應該 為 你 沒有 及時 回家 吃 晚餐 向 你 父親 道歉 . +School will start next Monday . 下周一 开学 . +He is a very thoughtful person . 他 是 個 很 體貼 的 人 . +Let is go to the movies . 我们 去 看 电影吧 ! +I would like to meet your older sister . 我 想 見 你 姐姐 . +She visits the dentist on a regular basis , so she seldom gets toothaches . 她 定期 去 看 牙医 , 所以 她 很少 牙痛 . +What is missing ? 少 了 什么 ? +Tom has lost his keys . 湯姆 弄 丟了 他 的 鑰匙 . +Do not drop this cup . 不要 掉 了 这个 杯子 . +We should all sleep easier now . 我們 現在 都 該 早點 睡 . +Tom did not get much sleep . 汤姆 没 怎么 睡 . +Are you going to come tomorrow ? 你 明天 要 來 嗎 ? +How did Tom get out of jail ? 汤姆 是 如何 出狱 的 ? +I paid five dollars for the book . 我 花 了 五元 買 這 本書 . +He has lived here for one week . 他 已經 住 在 這裡 一個 星期 了 . +It is believed that whales have their own language . 人们 相信 鲸 有 他们 自己 的 语言 . +He climbed the stairs . 他 爬 上 了 樓梯 . +I wanted to stop Tom . 我 想 阻止 湯姆 . +Of course she can speak English . 她 當然 會 講 英語 . +We have been warned . 我们 被 警告 过 了 . +Are you working ? 你 在 上班 嗎 ? +My mother does not like watching TV . 我 母親 不 喜歡 看電視 . +I lived abroad for ten years . 我 住 在 國外 十年 了 . +My uncle lived abroad for many years . 我 叔叔 住 在 國外 很多年 了 . +What prevented you from coming earlier ? 什麼 阻止 你 早點 來 了 ? +Tom is very courageous , is not he ? 汤姆 非常 勇敢 , 不是 么 ? +No one ran ahead of him . 没有 人 跑 在 他 前面 . +He did it for money . 他 做 这个 是 为了 钱 . +Continue working . 繼續 工作 ! +You do not have to tell Tom if you do not want to . 如果 你 不想 , 那 你 便 没有 这个 必要 去 告诉 汤姆 . +Go get your passport . 去 拿 你 的 护照 . +I always think of him when I am alone . 我 孤单 的 时候 总会 想起 他 . +Do not bug me . 别 来 烦 我 . +All of you are familiar with the truth of the story . 你們 所有 的 人 都 熟悉 這個 故事 的 真相 . +Do you think Tom is retired already ? 你 認為 湯姆 退休 了 嗎 ? +Tom , have you eaten anything ? 汤姆 , 你 吃 过 东西 了 吗 ? +He intruded on her privacy . 他 侵犯 了 她 的 隐私 . +That is your responsibility . 这 是 您 的 义务 . +What disease do I have ? 我 得 了 什麼 病 ? +I can not get my tractor started . 我 發動 不了 我 的 拖拉 機 . +Everybody had a hard time . 每个 人 都 遇到 过 困难 . +Tom will go . 湯姆 要 走 . +I will do it tomorrow . 我 明天 再 做 . +Let us know when you will arrive . 讓 我們 知道 你 什麼 時候 會 到 . +I do not know if I still have it . 我 不 知道 我 还有 没有 . +Do you know how to use this ? 你 知道 怎么 使用 吗 ? +We should have been more careful . 我們 應 該 更 小心 的 . +That child can count to twenty . 这 孩子 能数 到 20. +I can not say for sure . 我 不 太 確定 . +Tom often fails to keep his word . 汤姆 经常 不 守约 . +I wish I had more money . 我 希望 我 有 更 多 錢 . +Walk two blocks , and turn left . 走 過 兩個 街區 , 然 後 左 轉 . +Please sing . 请 唱歌 . +They waited in line for the bus . 他們 排隊 等 公車 . +Umbrellas sell well . 雨伞 卖 得 好 . +Tom is testing me . 汤姆 在 试探 我 . +He is a teacher at our school . 他 是 我們 學校 的 老師 . +This paragraph is vague . 這 一個 段落 是 模糊不清 的 . +You can count on her . 你 可以 相信 她 . +He knows many people . 他 认识 很多 人 . +The police have been searching for the stolen goods for almost a month . 警察 大概 从 一个月 前 就 开始 找 被 偷 物品 了 . +The ship was flying the American flag . 這 艘 船 掛著 美國國旗 . +Mathematics is an easy subject for me . 數學 對 我 來說 是 一個 容易 的 科目 . +I will be gone for a while . 我 要 暂时 离开 . +I prefer red wine to white wine . 我 喜歡 紅 葡萄酒 勝 過 白葡萄酒 . +I am very worried about my weight . 我 很 擔心 我 的 體重 . +Children should obey their parents . 孩子 應該 服 從 他們 的 父母 . +I can not hear very well . 我 聽 不 太 清楚 . +He wrote one letter . 他 写 了 一封信 . +The end justifies the means . 為了 正當 目的 可以 不擇 手段 . +Can you show me on the map ? 可以 在 地图 上 展示 给 我 看 吗 ? +He is afraid of dogs . 他 怕 狗 . +You have no fever . 你 没 发烧 . +They guaranteed regular employment to their workers . 他們 對 他們 的 員工 保證 就業 . +Strawberries sell for a high price in the winter . 草莓 在 冬天 售價高 . +I would like to exchange this shirt I bought yesterday . 我 想 去 換 我 昨天 買 的 這件 襯衫 . +He filled the bottle with water . 他 用水 装满 了 瓶子 . +No problem at all ! 一点 问题 都 没有 ! +We had a heated discussion about it . 我們 激烈 的 討論 了 這個 問題 . +Keep the money in a safe place . 把 錢 保存 在 安全 的 地方 . +In Switzerland , spring comes in May . 在 瑞士 , 春天 在 五月 来临 . +I am a stranger here . 我 是 這裡 的 外地人 . +My son does not obey me . 我 儿子 不 听 我话 . +I know that this is important to you . 我 知道 这 对 您 来说 很 重要 . +It grew larger and larger . 它 变得 越来越 大 . +She is collecting material for a book . 她 为 一 本书 收集 材料 . +He postponed leaving for Hokkaido until next month . 他 延遲 到 下 個 月 去 北海道 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Tom is smashed . 汤姆 醉 了 . +I shave every morning . 我 每天 早上 刮 鬍 子 . +Carrots contain a lot of vitamin A. 胡蘿 蔔 中 含有 大量 的 維生素 A . +Tom and Mary are close friends . Tom 和 Mary 是 親密 的 朋友 . +What an idiot I am ! 我 真是 個 白痴 ! +See you again . 再见 ! +We met in 2008 . A year later , we got married . 我們 在 2008 年 相遇 . 一年 後 , 我們 結婚 了 . +She succeeded in drawing the truth from him . 她 成功 地 从 他 口中 得知 了 真相 . +I made him carry the suitcase . 我 要 他 提 行李箱 . +You are no longer a mere child . 你 不再 只是 一个 孩子 了 . +That can not be Mary . She is in the hospital now . 那 不 可能 是 玛丽 , 她 现在 在 医院 . +How is the apple ? 這個 蘋果 怎麼樣 ? +He came to pick me up . 他 來 接 我 走 . +He will not listen to me . 他 不 會 聽 我 的 . +She is already sleeping . 她 已经 睡下 了 . +I do not need anyone . 我 谁 也 不 需要 . +Maybe you should just give up . 可能 你 应该 放弃 . +My driving instructor says I should be more patient . 我 的 駕駛 教練 說 我 應 該 更 有 耐心 一點 . +I am glad you guys are here . 我 很 高兴 你们 都 在 . +I would like to cash a travelers ' check . 我 想 兌換 旅行支票 . +Do not shout . 不许 大叫 . +Kissing a smoker is like licking an ashtray . 亲吻 一个 抽烟 的 人 就 像 在 舔 烟灰缸 . +The students of this school are kind . 这个 学校 的 学生 很 友好 . +What subject do you think he is interested in ? 你 觉得 他 会 对 什么 主题 感兴趣 ? +Germany was once allied with Italy . 德国 曾 是 意大利 的 同盟国 . +I am sorry , I forgot my homework . 很 抱歉 我 忘 了 寫 作業 . +I smell gas . 我 聞到 瓦斯 味 . +She got the ticket for nothing . 她 免費 得到 這 張 票 . +I thought he would come . 我 以为 他 会 来 的 . +This table is made out of wood . 这 张 桌子 是 木 的 . +Banks open at nine o 'clock . 银行 九点 开门 . +The man tried to install his own antenna . 这 男人 试 着 安装 他 自己 的 天线 . +Were you out last night ? 昨晚 你 出去 了 嗎 ? +They called in a doctor because the child was ill . 他們 打 電話 給 醫生 因為 這個 孩子 生病 了 . +I can not tell you how much I will miss Tom . 我 不会 告诉 你 我 有 多 想念 汤姆 . +Waste not , want not . 不 浪費 則 不 匱乏 . +Promises are not enough . 承諾 是 不夠 的 . +It is a whole new ball game for me . 這 對 我 來說 是 個 全新 的 球類 遊戲 . +There is only a little milk left . 只 剩下 一點點 牛奶 了 . +I stayed home all day instead of going to work . 我 没有 去 工作 , 在 家里 待 了 一整天 . +Why should you think that ? 为什么 你 对于 这个 有 这样 的 想法 ? +She will not be back till five . 她 五點 前 不 會 回來 . +Tom is three years older than Mary is . 汤姆 比 玛丽 大 三岁 . +Can I have a bottle of red wine ? 請來 瓶紅 酒 . +I need to get a stamp . 我 需要 一張 郵票 . +He found me a good seat . 他 幫 我 找到 了 一個 好 位子 . +Yesterday was my birthday . 昨天 是 我 的 生日 . +Most people brush their teeth at least two times a day . 多数 人 每天 至少 刷 两次 牙 . +This book says that elephants live to be over 100 years old . 这 本书 上写 , 大象 能 活过 一百岁 . +He was born in the 19th century . 他 生于 19 世纪 . +Please send me a reply as soon as you receive this mail . 收到 此 邮件 后 请 尽快 给 我 答复 . +The meeting has been postponed until tomorrow . 会议 已经 被 延迟 到 明天 了 . +Tom clenched the shovel . 汤姆 握紧 了 铲子 . +Your driver is license has expired . 你 的 駕駛 執照 已經 過期 了 . +He is not stupid . 他 不是 傻子 . +A string of disasters struck the region . 一連 串 的 災難 襲擊 這個 地區 . +I have got to shave before leaving . 離開 前 我 必須 刮 鬍 子 . +He arrived in time for the meeting . 他 及時 趕到 了 會議 . +The lid will not open . 這 蓋子 打不開 . +Why can not we talk now ? 为什么 我们 现在 不能 讲 ? +I did not know who Tom was at first . 我 一 开始 不 知道 汤姆 是 谁 . +We love each other . 我們 彼此 相愛 . +I felt so sleepy that I could hardly keep my eyes open . 我 感觉 困 得 几乎 不能 睁开 我 的 眼睛 了 . +Do not put books on the table . 不要 把 書 放在 那 張 桌子 上 . +We just do not have enough time . 我们 没有 足够 的 时间 了 . +I am having lunch with my sister right now . 現在 正 和 妹妹 吃 午 飯 中 . +You will never achieve anything if you do not study harder . 如果 你 不 更加 努力 地學 習 , 你 將 永遠 不 會 有所 成就 . +She does not smile for me anymore . 她 已经 不 向 我 微笑 了 . +The boy was shirtless . 男孩 赤裸 着 上身 . +There is a large supermarket . 有 一個 大型超市 . +You are not afraid of ghosts , are you ? 你 不怕 鬼 , 不是 麼 ? +We help the poor . 我們 幫助 窮人 . +Get lost ! 滚 . +You might want to discuss it with Tom . 你 或许 想 和 汤姆 讨论一下 . +Tom told me that he would like to become a doctor . 汤姆 告诉 我 他 想 当 医生 . +Goodbyes are always sad . 离别 总是 让 人 悲伤 . +She did nothing but cry all the while . 她 一直 哭哭啼啼 . +We will go on a picnic if it is fine tomorrow . 如果 明天 天气 好 , 那么 我们 就 去 野餐 . +Why is change so hard ? 為 什麼 改變 那麼 難 ? +I do not do that as well as I used to . 我 不如 以前 做得好 了 . +There was no furniture in that room . 那個 房間 裡 沒有 家具 . +Mary bought a skirt and a blouse . 玛丽 买 了 一件 衬衫 和 一条 连衣裙 . +Would you lend me your pencil ? 你 可以 借 我 你 的 鉛 筆 嗎 ? +We had a heavy frost this morning . 今天 早上 下 厚 霜 了 . +Put it out of your mind . 別 去 想 它 . +He is getting better day by day . 他 一天 一天 地好 轉 . +Would you like to be my friend ? 你 想 做 我 的 朋友 嗎 ? +Have you given Tom everything ? 你 全都 给 汤姆 了 吗 ? +My business has at last gotten on the right track . 我 的 生意 终于 走上 了 正轨 . +Are you good at math ? 你 数学 好 吗 ? +I was just going to write a letter . 我 正要 去 写 一封信 . +Have you ever heard of such a thing ? 你 听说 过 这样 的 事 吗 ? +She wore a white dress . 她 穿 了 一件 白色 的 洋裝 . +Tell me the truth . 告訴 我 真相 . +He could no longer stand the pain . 他 再也 無法 忍受 這種 痛苦 . +There is no use crying over spilled milk . 為 打翻 的 牛奶 而 哭泣 是 沒用 的 . +Can you please close that window ? 請 您 把 那 扇 窗戶 關起 來 好 嗎 ? +Compared with yours , my car is small . 和 你 的 车比 起来 , 我 的 车 很小 . +We are going to have to change our plans . 我們 快要 到 必須 改變 我們 計畫 的 時候 了 . +You have done a perfect job . 你 做 了 一项 完美 的 工作 . +Tom wrote a letter to Mary this morning . Tom 今天 早上 寫 了 封信 給 Mary . +With her help , my French improved little by little . 在 她 的 帮助 下 , 我 的 法语 逐渐 进步 了 . +Do not forget to put a stamp on your letter . 别忘了 在 你 的 信 上 贴 张 邮票 . +There is a lot of trash on the far bank of the river . 河對岸 有 很多 的 垃圾 . +Tom broke the window . 湯姆 打破 了 窗戶 . +Tom is stingy . 汤姆 很小 气 . +There was hardly anyone in the room . 房間 裡 幾乎 沒 有人 . +We have ample time to catch our train . 我们 有 充裕 的 时间 赶上 火车 . +Do you think I am stupid ? 你 認為 我 傻 嗎 ? +We traveled to Mexico by plane . 我們 搭 飛機 去 墨西哥 旅行 . +We should study English every day . 我们 应该 每天 都 学 英语 . +Mary tied an apron around her waist and then took the turkey out of the oven . 玛丽 把 围裙 系 在 她 的 腰 上 , 然后 把 火鸡 从 烤箱 里 拿 出来 了 . +Fish and red wine do not go well together . 魚 和 紅酒 不合 . +I do not remember your name . 我 不 记得 你 的 名字 了 . +She is sure to succeed . 她 理所当然 的 取得 了 胜利 . +Can you give me an example ? 你 可以 给 我 举 个 例子 吗 ? +In the morning , I write in the park . 我 每天 早上 在 公園 寫作 . +Trim the fat off the meat . 切除 這塊 肉 的 脂肪 . +These dogs are big . 這些 狗 很大 . +Tom is always playing video games . 湯姆總 是 在 玩電視 遊樂器 . +He will be back soon . 他 很快 就 会 回来 的 . +What are you doing here ? 你 在 這裡 做 什麼 ? +He is learning how to drive a car . 他 正在 学 怎么 开车 . +We are going to eat now . 我們 現在 就要 吃 飯 . +You did not eat much lunch , did you ? 你 午饭 吃 的 不多 , 不是 吗 ? +It was a quiet winter evening . 这 是 个 静谧 的 冬夜 . +English is spoken in Singapore . 在 新加坡 的 人 說 英語 . +Facebook is blocked in China . Facebook 在 中國 是 被 封鎖 的 . +I made sure no one was following me . 我 確定 沒人 跟踪 我 . +Could you take a picture of us ? 您 能 好好 给 我们 照 一张 相吗 ? +I have never heard Tom speaking French before . 我 以前 從 沒聽 過 湯姆 講 法語 . +Have you ever seen the man in this photo ? 你 见 过 这 张 照片 上 的 男人 吗 ? +Tom has lost interest in studying French . 湯姆 已經 失去 學習 法語 的 興趣 . +Be punctual . 要 守时 ! +The sun always rises in the east . 太陽 總 是 從 東方 升起 . +My watch gains five minutes a day . 我 的 手表 每天 走 快 五分钟 . +I prefer to remain seated . 我 更 想 繼續 坐著 . +I did not mean it . 我 不是 这个 意思 . +Can I see this one ? 我 能 看看 這個 嗎 ? +Hope to see you again next year . 希望 明年 再次 見 到 你 . +She was run over by a car . 她 被 車子 輾過 了 . +He shot an arrow at the deer . 他 射 了 鹿一箭 . +I have known her for a long time . 我 已經 認識 她 很 久 了 . +Is there anything else you can tell me ? 你 還 能 告訴 我 甚麼 ? +No student is allowed to enter the room . 學生 不准 進入 這個 房間 . +Summer has ended . 夏天 已經 結束 . +I remember the first time . 我 记得 第一次 . +Do you need help carrying anything ? 你 需要 幫 忙 拿 東西 嗎 ? +They decided to get married next month . 他們 決定 在 下 個 月 結婚 . +Mastering a foreign language is difficult . 掌握 一门 外语 很 难 . +Tom wanted to know if Mary had a boyfriend . 汤姆 想 知道 玛丽 是否 有 男朋友 ? +I would like to put some things in the hotel safe . 我 想 在 酒店 的 保险柜 里 存点 东西 . +I play in a band . 我 在 一個 樂團 裡 演奏 . +Thank you for your attention . 谢谢您 的 关注 . +The railroad is parallel to the road . 铁路 与 公路 平行 . +Some people relax by reading . 一些 人 通过 阅读 来 放松 . +I can not believe he did that . 我 不能 相信 他 做到 了 . +Everyone was invited , except for me . 除了 我 每個 人 都 被 邀請 了 . +Once again . 再 一次 . +I want to buy a few pairs of sunglasses . 我 想 買 幾副 墨鏡 . +This cake tastes like it has cheese in it . 这块 蛋糕 尝 起来 有 奶酪 的 味道 . +She should have arrived home by now . 她 现在 应该 已经 到 家 了 . +Will he be able to catch the train ? 他 能 趕 上火 車 嗎 ? +Do you want to know why I quit ? 您 想 知道 为什么 我 要 离开 吗 ? +It would be helpful if you could do that for me . 您 那样 做 的话 , 可 就 帮到 我 了 . +Tom mopped the floor . 汤姆 擦 了 地板 . +You were treated unfairly . 你 被 不公平地 對待 . +He used to read at night . 他 以前 都 在 夜晚 看書 . +I will drop by the post office on the way home . 我会 在 回家 的 路上 顺便去 邮局 . +The post office is down the street . 郵局 在 街 那 頭 . +What is this ? 那 是 什么 ? +You have too many books on the shelf . 你 書 架上 的 書太 多 了 . +He somewhat resembles his father . 他 有点像 他 的 父亲 . +Up to now , how many books do you think you have read ? 到 目前为止 , 你 认为 你 阅读 过 多少 书籍 ? +I do not like kids . 我 不 喜欢 小孩 . +Wet clothes stick to your skin . 濕 衣服 貼著 你 的 皮膚 . +I know those tall girls quite well . 我 跟 那些 高 個子 的 女孩 很 熟稔 . +Put down your weapons . 放下 你们 的 武器 . +The prince fell in love with a woodcutter is daughter . 王子 愛 上 了 一個 樵夫 的 女兒 . +Tom arrived after I left . 汤姆 在 我 走 后 到 了 . +He left the house without so much as saying goodbye . 他 甚至 没 说 再见 就 离开 了 家 . +She did not like him . 她 不 喜歡 他 . +Please let me go . 請 允許 我 去 . +My premonition turned out to be right . 我 的 预感 被 证明 是 正确 的 . +I understand the concept . 我 明白 这 概念 . +Despite his riches , he is not contented . 尽管 他 很 富有 , 他 还是 不 满足 . +Do not forget that Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +We have to have a plan . 我們 必須 有 計畫 . +I went there recently . 我 刚 去过 那里 . +Can you hurry up a bit ? 快 一点 好 吗 ? +Do they love each other ? 他們 彼此 相愛 嗎 ? +What was the cause of the explosion ? 爆炸 的 原因 是 什么 ? +I want your opinion . 我 想要 聽 聽 你 的 意見 . +My girlfriend is a good dancer . 我 的 女朋友 跳舞 跳 得 很棒 . +I agree with his opinion . 我 同意 他 的 觀點 . +Have you worked the puzzle out ? 你 解开 谜团 了 吗 ? +She is popular , not because she is beautiful , but because she is kind to everyone . 她 受歡 迎 不是 因為 她 的 美麗 , 而是 因為 她 親切 地 對待 每個 人 . +Suddenly , the light went out . 灯 突然 灭 了 . +I have been feeling a little restless . 我 有 點 不安 . +I was at the theater . 我 在 劇場 . +Do you have a child ? 你 有 孩子 嗎 ? +No less than three hundred dollars was needed for the work . 这个 工作 需要 不 低于 300 美金 . +I do not think he will say yes . 我 不 認為 他 會 說 好 . +It is true that she is pretty , but she is selfish . 她 确实 很漂亮 , 但 她 很 自私 . +Man is the only animal that can talk . 人类 是 唯一 能够 彼此 交谈 的 动物 . +How can you afford a place like this ? 我們 怎麼 付得 起 這種 地方 的 錢 ? +Fantastic ! 好 棒 ! +I know that you know that I know . 我 知道 你 知道 我 知道 . +I 'd buy a new house if I had the money . 如果 我 有 錢 , 我 會 買 一個 新房子 . +She gave me some good advice . 她 給 了 我 一些 很好 的 建議 . +I baked cookies . 我 烤 了 曲奇 . +You look just like Tom . 你 看起来 就 像 湯姆 . +I am thinking of going abroad next year . 我 在 考虑 明年 去 国外 . +I think you should eat a ham sandwich . 我 认为 你 该 吃 火腿三明 治 . +The robot went out of control . 這個 機器 人 失控 了 . +Is not it black ? 它 不是 黑色 的 嗎 ? +Feel free to ask any questions . 尽管 提问 . +I am sorry , I do not have change . 對 不起 , 我 沒有 零 錢 . +It seems interesting to me . 在我看来 很 有意思 ! +It is an endangered species . 这 是 一个 濒临 消失 的 物种 . +I bought it for about twelve dollars . 我 用 12 美元 买 的 . +I have mixed feelings about this . 我 對 這件 事 百感交集 . +Have you finished your lunch yet ? 你 吃 完 你 的 午飯 了 嗎 ? +Tom did not understand what the teacher said . 汤姆 没 明白 老师 说 了 什么 . +She had just come home when I called . 我 打电话 的 时候 , 她 刚回到 家 . +I have seen a lot of him recently . 我 最近 常看到 他 . +It seems we are in the same boat . 看起来 我们 是 在 一条 船上 . +Maybe you should move . 你 可能 該 動 一動 . +I held my breath and waited . 我 屏住 了 呼吸 等待 着 . +We both won . 我們 都 贏 了 . +I am not sure of the exact date . 我 不 知道 確切 的 日期 . +Who does this suitcase belong to ? 這個 手提箱 是 誰 的 ? +She grew up to be a veterinarian . 她 長 大 後 成為 了 一名 獸 醫 . +It is a clear day . 它 是 一個 晴朗 的 日子 . +I was so homesick . 我 很 想 家 . +She studied Japanese after dinner . 晚 飯 後 她 讀 日 語 . +Do you study every day ? 你 每天 都 学习 吗 ? +She put the dirty dishes in the sink . 她 把 脏 盘子 放进 水池 里 . +Are you busy now ? 現在 你們 忙 嗎 ? +It is only your imagination . 那 只是 你 的 想象 . +There are a few apples on the tree , are not there ? 树上 有些 苹果 , 不是 吗 ? +I hear that you play the piano . 我 聽 說 你 彈 鋼琴 . +Beware of pickpockets . 小心 扒手 . +Are you afraid of bugs ? 你 怕 虫子 吗 ? +Tom has loved Mary for a long time . 汤姆 爱 玛丽 很 久 了 . +I met him at the barber is . 我 在 理发店 碰到 了 他 . +Tom pushed his way through the crowd . 汤姆 从 人群 中 拥 出来 . +We are going by train . 我们 要 乘火车 去 . +Long skirts are out of fashion now . 現在 長裙 不 流行 了 . +He has a lot of original ideas . 他 有 很多 獨到 的 見解 . +This bomb can kill many people . 这个 炸弹 可以 炸死 很多 人 . +I have no intention of asking him . 我 不想 問 他 . +He drives his own car . 他 開 他 自己 的 車 . +I asked him to go there tomorrow . 我 要求 他 明天 去 那裡 . +Tom is taking a day off . 汤姆 在 休 一天 假 . +Ask me something easier . 问 我 简单 些 的 . +You did not tell me Mary was so beautiful . 你 没 告诉 我 玛丽 这么 漂亮 . +The bill will never go through . 該 法案 將 永遠 不 會 通過 . +You will bounce back . 你 会 东山再起 的 . +I am a junior high school student . 我 是 個 國中 生 . +Your view is too optimistic . 你 的 看法 過 於 樂觀 . +I am married . 我 已婚 . +I helped her wash dishes . 我 幫 她 洗碗 . +Perhaps Tom is too old to do this kind of thing . 也許 Tom 年紀 太 大 , 不 適合 做 這件 事 . +She made a serious mistake . 她 犯 了 一個 嚴重 的 錯誤 . +Let is go out and have some fun tonight . 我们 今晚 一起 出去 找 乐子 吧 . +I do not love her , not even if she loves me . 即使 她 愛 我 , 我 也 不 愛 她 . +His memory never ceases to astonish me . 他 的 记忆力 总 让 我 吃惊 . +I know what can happen here . 我 知道 这里 会 发生 什么 . +How are things at work ? 工作 怎么样 ? +She could not answer the question . 她 無法 回答 這個 問題 . +May I pay by check ? 我 可以 用 支票 付 吗 ? +Tom talked about his school . 湯姆 談 了 他 的 學校 . +Rome is famous for its ancient architecture . 羅馬 以 其 古代 建築 而 聞名 . +I am hoping that will happen . 我 希望 那 會 發生 . +The town was defended by a large army . 城市 由 一支 大军 守卫 . +She turned eighty @-@ one . 她 八十一 歲 了 . +Two glasses of apple juice , please . 请 给 我 两杯 苹果汁 . +I almost never watch TV nowadays . 现在 我 几乎 不 看电视 . +You do your part and I will do the rest . 你 做 你 的 部份 , 其他 的 我 來 做 . +There is no need to apologize . 沒有 必要 道歉 . +She is absorbed in rock music . 她 沉迷于 摇滚乐 . +He said he did not know the man , which was a lie . 他 說 他 不 認識 那個 男人 , 這 是 一個 謊言 . +He got tired of reading . 他 厌倦 了 读书 . +He grasped the rope with two hands . 他 用 兩 隻 手 抓住 了 繩子 . +Each year Hamamatsu has a kite festival . 每年 濱松 有 風箏 節 . +I work for three hours every Sunday morning . 我 每个 周末 早上 工作 三 小时 . +The boy jumped into the water . 這個 男孩 跳入 了 水中 . +Please call the police . 叫 警察 . +After he had graduated from the university , he taught English for two years . 從 他 大學 畢業 以 後 , 他 教 了 兩年 的 英語 . +I am looking for you . 我 在 找 你 . +My dog goes everywhere with me . 我 的 狗 總是 跟著 我 . +Let is leave . 走 吧 . +What is your favorite way to cook trout ? 你 最 喜欢 怎么 烧 鲑鱼 ? +Please buy a tube of toothpaste . 請買 一支 牙膏 . +We felt the house shake a little . 我們 感覺 到 房子 搖動 了 一下 . +Will you tell me how to get to Shinjuku ? 请问 你 可以 告诉 我 如何 可以 到达 新宿 吗 ? +Who won ? 谁 赢 了 ? +This is the best restaurant that I know . 这 是 我 所 知道 的 最好 的 餐厅 . +It was so cold yesterday that I stayed home . 昨天 太冷 了 , 我 只好 待在家里 . +She gave us a vague answer . 她 給 了 我們 一個 模糊 的 答案 . +You are the only one that can help us . 你 是 唯一 一个 能 帮助 我们 的 人 . +Who would want to live here ? 誰 會 想住 在 這裡 ? +Is he Japanese ? 他 是 日本 人 吗 ? +By the way , what is your address ? 对 了 , 你 的 地址 是 什么 ? +This book sells well . 那 本書 賣 得 很 好 . +Tom is good at cooking . 湯姆 擅長 烹飪 . +I graduated from Kyoto University . 我 畢業 於 京都 大學 . +Do not look a gift horse in the mouth . 獲 人 贈 馬 , 休看 馬口 . +Life is beautiful . 生活 是 美丽 的 . +You have got to learn to hold your tongue . 你 應該 學著 閉上 你 的 嘴 . +We have had a most delightful day . 我們 過 了 最 愉快 的 一天 . +Whether he comes or not , the result will be the same . 他 来 还是 不 来 , 结果 是 一样 的 . +He wrote me a letter . 他 给 我 写 了 封信 . +Tom knows him . 湯姆 認識 他 . +Tom told me that he 'd give me that book if I wanted it . 汤姆 说 过 , 如果 我 想要 的话 他 可以 把 这 本书 给 我 . +Tom swims . Tom 游泳 . +I think that fact is very important . 我 認為 事實 非常 重要 . +Someone is knocking on the door . 不知 是 谁 在 敲门 . +You swim better than I do . 你 游泳 游得 比 我 好 . +What are you doing ? 搞 什么 啊 ? +I feel like taking a bath now . 我 現在 想 洗澡 . +I actually agree with you . 我 确实 同意 你 . +It is under the table . 它 在 桌下 . +This is old news to me . 這 對 我 來說 是 舊 聞 了 . +What is wrong with my legs ? 我 的 腿 有 什么 毛病 ? +Where are you going ? 你 去 哪儿 ? +When is breakfast ? 早餐 是 從 幾點 到 幾點 ? +She traveled all over the world . 她 周遊 世界各地 . +He is an excellent brain surgeon . 他 是 一個 優秀 的 腦 外科 醫生 . +I want to talk to your uncle . 我 想 和 你 的 舅舅 谈一谈 . +The park is filled with children . 公園 裡 都 是 孩子 . +You are so bad . 你 真 壞 . +I will be free tomorrow afternoon . 我 明天 下午 有空 . +Tom waved his hand . 汤姆 挥手 了 . +Mathematics is my favorite subject . 數學 是 我 最 喜歡 的 科目 . +He plays very well . 他 弹 得 很 好 . +Where is the nearest subway station ? 最近 的 地鐵 站 在 哪裡 ? +Tom needs to update his website . 汤姆 需要 更新 他 的 网站 . +I have two cats . 我 有 两只 猫 . +Where is nearest American Express office ? 最近 的 美國 運通 辦 公室 在 哪裡 ? +School starts in September in Europe . 歐洲 的 學校 在 九月 開學 . +A permanent job is better than a temporary one . 正式工 比 临时工 要 好 . +I encountered a problem . 我 遇到 了 故障 . +Taking the group of children to the library was no problem . 带 孩子 团体 去 图书馆 一点 问题 都 没有 . +Are we going to lose ? 我们 将 会 输 了 吗 ? +Have some more . 你 該 多 吃 點 . +Where can I find toothpaste ? 在 哪儿 我 能 找到 牙膏 ? +Lake Biwa is the largest lake in Japan . 琵琶湖 是 日本 最大 的 湖 . +Do you have an extra key ? 你 有 多余 的 钥匙 吗 ? +I dialed Tom is number . 我 拨打 了 Tom 的 号码 . +I advise you never to live beyond your income . 我 建议 你 永远 不要 入不敷出 . +He asked me what I had bought . 他 问 我 买 了 什么 . +We go to the same school . 我們 上 同一 所學校 . +Are you free now ? 现在 有空 吗 ? +I would not try that again . 我 不会 再 试 了 . +She has kept a diary for 3 years . 她 已經 寫 了 三年 的 日記 . +That is a good idea . 那 是 一個 好 主意 . +Tom climbed over the wall . 湯姆 爬 上 了 墙 . +It is very normal . 它 很 正常 . +I did not believe him at first . 起初 我 不 相信 他 . +Should not you still be in bed ? 你 不 該 還 在 床上 嗎 ? +Where is the nearest station ? 最近 的 車站 在 哪裡 ? +That is not what I told Tom . 那 不是 我 對 湯姆 說 的 . +He pretended not to be listening . 他 假装 听不见 . +We have all we need for now . 我们 现在 拥有 了 所有 我们 想要 的 . +Because of his wealth , he was able to become a member of that club . 由 於 他 的 財富 , 他 能夠 成為 這個 俱樂部 的 成員 . +Do you guys want something to eat ? 你們 想要 吃 些 什麼 嗎 ? +The car he is driving is not his . 這輛 他 正在 開 的 車 不是 他 的 . +They do not pay me enough . 他們 給 我 錢 沒 給夠 . +Studying abroad is very common now . 現在 出國 留學 是 很 常見 的 了 . +My mother looked at me with tears in her eyes . 我 妈妈 眼 含着泪 看 我 . +She introduced me to her father . 她 把 我 介紹 給 她 父親 . +That is avoidable . 那 是 可 避免 的 . +We are expecting a good harvest this year . 我們 期望 今年 豐收 . +Would you please lock the door ? 請 你 鎖 門 好 嗎 ? +I got off at the wrong station . 我 下錯 了 車站 . +We were crowded into the small room . 我们 挤进 了 那间 小房间 里 . +Tom walks slowly . 汤姆 走 得 很慢 . +It is going to rain soon . 天 快要 下雨 了 . +It turned out that I was right . 結果 證明 我 是 對 的 . +Mt . Fuji was covered with snow . 富士山 被 雪所覆蓋 . +I have just washed all the dishes . 我 剛 洗 了 所有 的 碗盤 . +Ukrainian girls are the prettiest in the world . 乌克兰 姑娘 是 全世界 最 漂亮 的 姑娘 . +Please take me to the hospital . 請 帶 我 去 醫院 . +This park reminds me of my childhood . 来到 这个 公园 会 让 我 想起 自己 的 童年 . +I am a college student . 我 是 个 大学生 . +I wish it would stop raining . 我 希望 雨會 停 . +Where do you want to go ? 你 要 去 哪裡 ? +I should have left earlier . 我 應 該 要 早點 出發 的 . +I saw a lot of buses . 我 看見 了 很多 大巴 車 . +It did not cross my mind . 这 不是 我 的 想法 . +When his food supply ran short , he had to look for a new place to live . 他 的 食物 供给 不足 的的 时候 , 他 不得不 去 找 新 的 地方 居住 . +It is impossible . 這 是 不 可能 的 . +He should have done it that way . 他 该 那样 做 完 了 . +That is not my wife . 这 不是 我 的 妻子 . +I want to talk with your uncle . 我 想 跟 你 叔叔 談談 . +I heard someone calling my name . 我 聽見 有人 叫 我 的 名字 . +It does not mean anything . 这 什么 都 说明 不了 ! +Can you swim underwater ? 你 能 潜水 吗 ? +We work in a factory . 我们 在 一个 工厂 工作 . +Please get me hotel security . 请 帮 我 叫 宾馆 保安 . +How much money do you need ? 你 需要 多少 钱 ? +I hope that your brother is better . 我 希望 你 弟弟 好 点 了 . +She looks unhappy . 她 看起来 不 幸福 . +It is easy to read this book . 這 本書 很 容易 讀 . +Are you off tonight ? 你 今天 晚上 有 沒有 要 上班 ? +I know a lot about ships . 我 知道 很多 關於船 的 知識 . +Flying is the quickest way to travel . 搭 飛機 是 最快 的 旅行 方式 . +They married when they were young . 他們 在 還 很 年輕 的 時候 就 結婚 了 . +I know that money is not everything . 我 知道 金钱 不是 万能 的 . +Hey you ! Please wait . 嘿 , 你 ! 請 稍候 . +I have no friends . 我 没有 朋友 . +You ought to ask for your teacher is permission . 你 應該 請求 你 的 老師 允許 . +Tom was completely worn out . 湯姆 完全 筋疲力盡 了 . +No one came . 没有 人 来 了 . +You have to study hard to catch up with your class . 你 必須 用功 讀書 趕上 同 學 . +Summer vacation begins next Monday . 暑假 從 下 星期一 開始 . +How was your test ? 你 的 测验 怎么样 ? +Tom took the concert ticket Mary offered him . 汤姆 拿 了 玛丽 给 他 的 音乐会 票 . +Always be true to yourself . 永遠 要 對 自己 誠實 . +You may choose whichever you want . 你 可以 選擇 任何 你 想要 的 . +A dog was run over by a truck . 一条 狗 被 卡车 碾过 . +You 'd better go . 你 最好 走 . +Tom is there already . 湯姆己 經 在 那裡 了 . +Tom says he hopes Mary is able to do that . 汤姆 说 他 希望 玛丽 能 做到 . +How could so many people go along with this ? 怎么 会 有 这么 多 的 人 同意 呢 ? +Did you murder Tom ? 是 你 杀 了 汤姆 吗 ? +His wife is in the hospital because she was injured in a car crash . 他 的 妻子 在 醫院 裡 因為 她 在 一場 車禍 中 受傷 了 . +Wow ! It is been a long time . 哇 ! 好久 不見 了 . +Is Tom an actor ? 汤姆 是 演员 吗 ? +I will provide you all the necessary information . 我会 把 所有 有用 的 信息 给 你 的 . +What time will you get to the station ? 你 几点 会 到 车站 ? +You are too suspicious about everything . 你 对 什么 都 太 怀疑 了 . +Apples were served as the dessert . 蘋果 被 當作 甜點 . +Run . 你 用跑 的 . +I know that some people value my work . 我 知道 有些 人 看重 我 的 工作 . +She went to Shanghai by train . 她 是 坐 火車 去 上海 的 . +It is time to go . 是 該 離開 的 時候 了 . +Tom probably knew who I was . 汤姆 可能 知道 我 是 谁 . +You did not need to buy the book . 你 沒有 必要 買 這 本書 . +Here is an even better one . 这里 有个 更好 的 . +I am not accustomed to such treatment . 我 不習 慣 這樣 的 待遇 . +Could you put this coat somewhere ? 您 能 把 這件 大衣 放在 某個 地方 ? +You should have a doctor take a look at it . 你 应该 让 个 医生 看看 . +She gave it her personal attention . 她 親自 過問 了 此事 . +It is cruel of him to say such things to her . 他 跟 她 说 这样的话 真是太 残忍 了 . +Tom prepared his speech very carefully . 湯姆 很 認真 地 準備 他 的 演講 . +His bag is right here , so he cannot have gone to school yet . 他 的 包 就 在 这儿 , 所以 他 不 可能 已经 去 了 学校 . +Everyone knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +Tom promised to try again . 湯姆 答應 再 試 一次 . +He hid his friend from the police . 他 把 他 的 朋友 藏 了 起來 不 讓 警察 知道 . +I have not seen you for ages . Do you remember when I saw you last ? 好久不见 了 . 记得 上次 我 什么 时候 看见 你 的 吗 ? +I had difficulty in solving this problem . 我 很 難 解決 這個 問題 . +Do not forget where you put it . 不要 忘記 你 放在 哪裡 . +He gave him a book . 他 給 了 他 一本 書 . +I think that Tom should go on a diet . 我 觉得 汤姆 需要 减肥 了 . +They had a baby last week . 上週 他們 生 了 一個 孩子 . +I have always kept my word . 我 一直 信守 我 的 諾言 . +I am sorry . I got the wrong number . 對 不起 , 我 拿 錯 了 號碼 . +I have just arrived at the airport . 我 剛剛 抵達 了 機場 . +He has been sick since last Sunday . 他 從 上週 日 開始 就 生病 了 . +What is the biggest difference ? 最 不 一样 的的 是 什么 ? +She was in trouble because she lost her passport . 她 遇到 了 麻煩 , 因為 她 弄 丟了 她 的 護照 . +When she was thirteen , she ran away from home . 她 十三岁 的 时候 离家出走 了 . +My brother would often stay up all night reading novels . 我 哥哥 經常 熬夜 看 小 說 . +What is the fare from Osaka to Akita ? 从 大阪 到 秋田 的 车费 是 多少 ? +We need a hero . 我們 需要 英雄 . +You should give up smoking and drinking . 你 该 戒烟 戒酒 了 . +I gave up smoking for a year . 我 戒 煙 一年 了 . +I have lost my pencil . 我 的 鉛筆 掉 了 . +Stay here with Tom . 留在 这 和 汤姆 在 一起 . +He likes baseball very much . 他 非常 喜欢 棒球 . +Do you have a table on the patio ? 你 院子 裡 有 桌子 嗎 ? +Whose is this car ? 這 台汽 車 是 誰 的 ? +It is six o 'clock already . 已經 六點鐘 了 . +I had a slight headache last night . 我 昨晚 有 輕微 的 頭痛 . +Between you and me , I do not like our new team captain . 我 就 只 告诉 你 , 我 不 喜欢 我们 的 新 队长 . +She likes going to the library . 她 喜欢 去 图书馆 . +Everybody is alive . 所有人 都 是 活着 的 . +This is my sister . 这 是 我 的 妹妹 . +Everybody was singing except me . 除 我 以外 每個 人 都 在 歌唱 . +She always cared about my health . 她 總是 關心 我 的 健康 . +He will be glad to see you . 他 會 很 高興 見到 你 . +You can not blame Tom for getting angry . 你 不能 怪 汤姆生 气 了 . +Tom said he is considered quitting his job . 汤姆 说 他 考虑 辞职 . +I am not absolutely sure . 我 不 完全 肯定 . +Did you enjoy yourself at the party last night ? 你 在 昨晚 的 聚會 上 盡 興 了 嗎 ? +How is the weather there ? 那里 的 气候 怎么样 ? +He is a student at this college . 他 是 這 所 大學 的 學生 . +The pain has gone . 疼痛 消失 了 . +Is there anything you want to add to what I just said ? 我 刚才 说 的 内容 , 你 想 补充 么 ? +Are you sad ? 你 傷心 嗎 ? +Thanks anyway . 还是 要说 谢谢 的 . +I will keep that book for myself . 我 要 把 这 本书 留给 自己 . +How long have you worked with Tom ? 你 跟 湯姆 工作 了 多 長 時間 ? +Shame on you . 你 真 丢脸 ! +Tom will not be here long . 湯姆 不 會 在 這裡 久留 . +I want Tom to win . 我 想 让 汤姆 赢 . +Whose is it ? 这 是 谁 的 ? +Father makes sure that all the lights are off before he goes to bed . 父親 確定 所有 的 燈 都 關 了 後 才 去 睡 覺 . +I always keep my promises . 我 總 是 信守 我 的 承諾 . +He was forced to work overtime . 他 被迫 加班 . +He died soon after the accident . 他 在 事故 後 不久 就 去世 了 . +She believes that he is innocent . 她 相信 他 是 無辜 的 . +Look at that house . 看 那个 房子 . +Have you already fed the horses ? 你 喂 过 马 了 吗 ? +What did you do with my luggage ? 你 把 我 的 行李 放到 哪裡 去 了 ? +Their baby is able to walk already . 他們 的 小 嬰孩 已經 會 走路 了 . +She found a ball in the garden . 她 在 花園 裡 發現 了 一顆 球 . +I usually have breakfast at seven . 我 通常 七點 吃 早餐 . +I do not have time to read . 我 没 时间 阅读 . +He makes friends with everybody he meets . 他 跟 所有 他 遇見 的 人 交朋友 . +He is a bit like his father . 他 有点像 他 的 父亲 . +So what will you do in the afternoon ? 您 下午 做 啥 呢 ? +We visited the museum last week . 我們 上週 參觀 了 博物 館 . +How lovely ! 多 可爱 啊 ! +Mt . Aso is an active volcano . 阿蘇山 是 一座 活火山 . +Congratulations ! 恭喜 ! +Give the book to whomever wants it . 这 本书 谁 想要 就 给 谁 吧 . +The man kept talking for an hour . 這個 男人 連續 說 了 一個 小 時 的 話 . +Please write back soon . 请 快点 回信 . +Why do not you do it ? 你 为什么 不 做 ? +My heart was filled with happiness . 我 心里 充满 着 快乐 . +Hurry . Please lend me a hand . 快點 . 請 幫 幫 我 . +Tom is unlikely to do that again . 湯姆 不太可能 再 那麼 做 了 . +Tom has a tattoo of a skull on his chest . 湯姆 在 胸上 有 個 頭 骨 文身 . +I was unable to finish my homework . 我 無法 完成 我 的 作業 . +If you want to know , just ask . 如果 您 想 知道 , 直接 问 就是 了 . +A fire broke out the day before yesterday . 前天 發生 了 火災 . +Last month our twenty @-@ year @-@ old daughter gave birth to a baby girl . 上个月 , 我们 20 岁 的 女儿 生 了 个 女孩 . +I hardly ever go to museums . 我 几乎 不 去 博物馆 . +He helped me to get over the difficulties . 他 帮助 我 克服 了 困难 . +She is an obstinate girl . 她 是 个 倔强 的 女孩 . +I have not met her . 我 没有 遇见 她 . +To my knowledge , she has not married yet . 據 我 所知 , 她 還 沒 結婚 . +Tom told me that he did not want to go with us . 湯姆 告訴 我他 不想 跟 我們 走 . +Where is the coffee shop ? 這家 咖啡 館 在 哪裡 ? +I do not know if I will have time to do it . 我 不 知道 我 是否 有 时间 做 . +I recognized some of the tunes that Tom played . 我 认出 了 些 汤姆 演奏 的 调子 . +He sometimes goes to work by car . 他 有 時 開車 去 上班 . +He sent a card to Mary . 他 送 了 一張 卡片 給 瑪麗 . +Tom is very important to me . 汤姆 对 我 来说 很 重要 . +I am very busy today . 我 今天 很忙 . +I can not guarantee that that is going to happen . 我 不能 确保 这 一切 会 发生 . +The company spends a lot of money on advertising . 那 家 公司 在 广告 上 花 了 很多 钱 . +Birds build nests . 鸟儿 筑巢 . +You never get a second chance to make a first impression . 你 永遠 沒有 第二次 機會 去 打造 第一印象 . +This letter is addressed to you . 這 封信 是 寄 給 你 . +Winter is just around the corner . 冬季 快 來 了 . +I bought a watch . 我 買 了 一只 手 錶 . +I will never stop . 我 絕不 會 停 . +Anybody would be better than nobody . 不管是谁 总 比 没人好 . +We are still nervous . 我們 還 是 緊張 . +A true gentleman never betrays his friends . 一个 真正 的 绅士 不会 出卖 他 的 朋友 . +I am learning how to drive . 我 正在 學習 如何 駕駛 . +Our friendship will last a long time . 我們 的 友情 會長 久 留存 . +She was buried in her hometown . 她 被 安葬 在 她 的 家鄉 . +I will not go to school tomorrow . 我 明天 不 會 去 學校 . +Tom is in the living room , sleeping on the couch . 汤姆 在 客厅 , 躺 在 长沙 发 上 睡觉 . +He showed me her picture . 他 給 我 看 了 她 的 照片 . +Are not you free tonight ? 你 今天 晚上 沒 空 嗎 ? +Tom did it again . 汤姆 又 做 了 一次 . +It is the only thing I can think of . 这 是 我 唯一 能 想到 的 事 了 . +If not now , when ? 如果 不是 现在 , 那 是 什么 时候 ? +I have not seen her since last month . 我 從 上 個 月 開始 就 沒有 看到 她 了 . +What is the minimum wage in your country ? 你 的 国家 的 最低工资 是 多少 ? +I like you . 我 喜歡 你 . +I was terribly confused by his question . 我 對 他 的 問題 感到 非常 迷惑 . +Texting while driving is dangerous . 開車 時 打字 是 危險 的 . +Tom is looking for a new job . 湯姆 在 找 新 工作 . +My sister sometimes makes our dinner . 我 的 妹妹 有時 為 我們 做 晚餐 . +Thank you for the present you gave my son . 谢谢 你 送给 我 儿子 礼物 . +Call me tomorrow . 明天 打电话 给 我 . +My father participated in a cooking contest and came in first . 我 爸爸 参加 了 料理 竞赛 并得 了 第一名 . +I play the guitar after dinner . 我 晚 飯 後 彈 吉他 . +We know our rights . 我们 知道 我们 的 权利 . +Did you know that before ? 你 之前 知道 那個 嗎 ? +I am in trouble . 我 遇到 困難 了 . +The meeting was called off . 会议 取消 了 . +Can you guess what I have ? 你 能 猜到 我 有 什么 吗 ? +We should always try to help others . 我們 應該 盡力 幫助 他人 . +My father stopped drinking . 父亲 戒酒 了 . +My son is going to leave for France next week . 我 儿子 下周 要 去 法国 了 . +Did not you lock up your car ? 你 没有 把 你 的 车上 锁 吗 ? +Can you make it on time ? 你 能 准时 做好 吗 ? +They must work 8 hours a day . 他们 每天 必须 工作 8 小时 . +There is no water . 沒有 水 . +If you want to , call me this afternoon . 如果 你 想 的话 , 今天下午 给 我 打电话 . +You will get lost . 你 会 迷路 的 . +I worked three years as Tom is assistant . 我 给 汤姆 当 了 三年 助手 . +I 'd like orange juice . 我 想要 橙汁 . +He asked me whether I like math . 他 问 我 喜不喜欢 数学 . +Would you mind lending me your pen ? 你 介意 借 我 你 的 筆 嗎 ? +Tom quit . 汤姆 不 干 了 . +We live in the suburbs . 我们 住 在 郊区 . +Tom is overweight . 汤姆 超重 了 . +Tom picked up the knife . 汤姆 拿起 了 刀 . +Turn off the television . I can not concentrate . 把 電視 關掉 . 我 無法 專心 . +Excuse me , do you speak English ? 對 不起 . 你 會 講 英語 嗎 ? +Lightning is usually followed by thunder . 閃 電 常常 伴隨 著 雷鳴 . +Can you imagine walking around on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I thought that Tom would want to know about that . 我 本 以为 汤姆 愿意 了解 这件 事 . +He was discovered unconscious on the floor of the kitchen . 他 被 人 发现 倒 在 厨房 的 地板 上 , 不省人事 . +We had no secrets . 我們 沒有 秘密 . +I will give you anything but this . 除了 這個 之外 我 會 給 你 任何 東西 . +Thank you very much for your present . 非常 谢谢 你 的 礼物 . +The importation of rare wild animals to this country is strictly prohibited . 该国 严禁 进口 稀有 野生动物 . +She devoted her life to working among the poor . 她 一生 致力于 为 穷人 工作 . +Tom is used to cooking on a campfire . 湯姆 習慣 用營 火 做菜 . +He held a package under his arm . 他 挾著 一個 包裹 . +Go with these men . 跟 這些 人 走 . +You can rely on him . 你 可以 依靠 他 . +They would never meet again . 他们 不会 再见面 了 . +Does anyone here speak Japanese ? 这儿 有人 说 日语 吗 ? +I am not doing that anymore . 我 不再 做 那事 了 . +Stir the soup . 搅 一下 汤 . +Did you learn that from Tom ? 你 從 湯姆 那裡 學到 了 嗎 ? +I have heard this joke before . 我 以前 聽 過 這 笑 話 . +Cover your head when you are in the sun . 當 你 在 陽光 下 的 時候 , 遮住 你 的 頭 . +The stew smells delicious . 這 鍋 墩 湯聞 起來 真 美味 . +I usually got to bed about eleven . 我 通常 約 十一 點 鐘 上床 睡覺 . +I sat between Tom and John . 我 坐在 汤姆 和 约翰 中间 . +A soccer team consists of eleven players . 一个 足球队 由 十一个 球员 组成 . +Can we take care of this tomorrow ? 这个 我们 明天 能 解决 吗 ? +He just got home . 他 刚回到 家 . +I agreed to the proposal . 我 同意 這項 建議 . +I finished writing the letter by noon . 我 中午 前 寫 完 這 封信 了 . +My friends invited me to supper . 我 朋友 邀 我 共赴 晚餐 . +My grandfather died five years ago . 我 祖父 五年 前 去世 了 . +The police were able to find the criminal . 警方 能夠 找到 罪犯 . +I am going to tell you the truth . 我 要 告诉 你 真相 . +Light the candle . 把 蠟燭 點燃 . +She has many friends in Hong Kong . 她 在 香港 有 很多 朋友 . +School begins at eight @-@ thirty . 学校 8 点 半 开始 上课 . +The economy of the island is dependent on the fishing industry . 这个 岛 的 经济 依靠 的 是 渔业 . +We should call the police . 我们 该 报警 . +Tom does not usually dress like that . 湯姆平 時 不 那樣 穿衣服 . +Tom is reading an essay . 湯姆 在 讀 一篇 短文 . +Whose is that notebook ? 這 臺 筆 記 本 電 腦 是 誰 的 ? +I signed the document . 我 簽 了 文件 . +My neck still hurts . 我 的 脖子 还 疼 . +This is atrocious weather . 惡劣 的 天氣 . +You can shut up now . 你 現在 可以 住口 了 . +This is a wig . 这 是 假发 . +A good idea suddenly came to me . 我 的 大 腦 裏 突然 出現 了 一個 很好 的 想法 . +That is thirty meters long . 那個 長 30 米 . +I looked after him for a period of time . 我 看 了 他 一段时间 . +You do not need to study today . 你 今天 不必 讀書 . +That young lady is a nurse . 这个 年轻 女孩 是 护士 . +I think that Liszt is " Forgotten Waltz No.3 " is a hidden masterpiece . 我 觉得 李斯特 的 《 被 遗忘 的 圆舞曲 第三首 》 是 个 被 埋没 的 名曲 . +UFO stands for unidentified flying object . UFO 代表 不明 飛行 物體 . +My friend is father is a doctor . 我 朋友 的 爸爸 是 個 醫生 . +I went shopping last Saturday . 上週 六 我 去 購物 . +Do not forget Tom is allergic to peanuts . 不要 忘记 汤姆 对 花生 过敏 . +In case of emergency , call the police . 在 緊 急情 況下 , 打 電話 報警 . +Where was it published ? 它 发表 在 哪里 ? +Has Tom broken something again ? 汤姆 又 弄坏了 什么 东西 吗 ? +Would you like some more beer ? 你 想 再 喝 些 啤酒 嗎 ? +You 'd better wait until the police come . 你 最好 等到 警察 前来 . +He is very tall . 他 很 高 . +Is it safe to skate on this lake ? 在 這個 湖上 滑冰 安全 嗎 ? +She filled the glass with wine . 她 在 玻璃杯 裡 裝滿 了 酒 . +Tom did not seem that happy . 汤姆 看来 不 高兴 . +Please send me your picture . 請 把 您 的 照片 發給 我 . +Our house has three bedrooms . 我們 家 有 三個 臥室 . +Few students could understand what he said . 很少 有學 生能 了解 他 說 的 話 . +She held her baby in her arms . 她 把 她 的 孩子 抱 在 懷裡 . +He will be busy tomorrow . 他 明天 會 很忙 . +I will not work overtime today . 今天 我 不 加班 . +Are you still collecting stamps ? 你 還 在 收集 郵票 嗎 ? +No , thank you . I have had enough . 不 , 謝謝 你 . 我 已經 吃 飽 了 . +Do we have anything I can snack on ? 我們 有 任何 我 可以 當 零食 吃 的 東西 嗎 ? +I confess that I am tired . 我 承认 我 很 累 . +You will soon get used to speaking in public . 你 很快 就 会 习惯 在 大庭广众 说话 了 . +She hung a curtain over the window . 她 把 窗簾 掛 在 窗戶 上 . +We owe you an apology . 我们 欠 你个 道歉 . +He does not know the difference between right and wrong . 他 好坏不分 . +The plane took off . 飛機 起飛 了 . +She made tea for me . 她 给 我 沏 了 茶 . +The principal wants to talk to you . 校长 想 跟 你 谈话 . +What kind of shampoo do you use ? 你 用 哪種 洗 髮 水 ? +Is this the right train for Tokyo ? 這 是 開往 東京 正確 的 火車 嗎 ? +I am fully convinced of your innocence . 我 完全 相信 你 是 清白 的 . +If I were invisible I would not have to dress myself . 若 我 是 隱形 的 , 就 不用 穿衣服 了 . +I do not like green onions . 我 不 喜欢 葱 . +You are a better skier than me . 你 滑雪 比 我 好 . +Tom is just a crazy old man . 湯姆 只是 一個 瘋老 頭 . +She felt blue . 她 感到 闷闷不乐 的 . +Tom just does not understand . 汤姆 就是 不 懂 . +May I see your driver is license ? 我 可以 看看 你 的 駕駛 執照 嗎 ? +Have you chosen a major yet ? 你 选好 专业 了 吗 +I am counting on your help . 我 指望 你 的 帮助 . +Remember to mail this letter tomorrow morning . 明天 早上 記得 去 寄 這 封信 . +Do not forget to take a camera with you . 别忘了 带 个 相机 . +Can you speak French ? 你 會 講 法語 嗎 ? +His story sounds true . 他 的 故事 聽 起來 是 真的 . +I lost my key somewhere around here . 我 的 钥匙 就是 在 这 附近 丢失 的 . +Which do you prefer , tea or coffee ? 你 比較 喜歡 哪 一個 , 茶 還 是 咖啡 ? +The baby seemed to be fast asleep . 那個 嬰兒 似乎 在 熟睡中 . +Tom does not have to go to Boston next week . Tom 下星期 不用 去 波士 頓 . +Tom told Mary to help John . 湯姆 讓 瑪 麗 幚 約 翰 . +Have you cleaned your room yet ? 你 打掃 你 的 房間 了 嗎 ? +I like taking walks in the woods . 我 喜歡 在 樹林 裡 散步 . +Sometimes I still miss her . 有 時候 , 我 還 是 會 想起 她 . +In life there are ups and downs . 生活 中 有 高低 起伏 . +I had to stay at home . 我 得 留在 家裡 . +All you need to do is just sit here . 你 要 做 的 只是 坐在 这儿 . +Tom could not swim . 汤姆 不会 游泳 . +She picked up one of the glass vases . 她 拿 了 其中 一个 玻璃 花瓶 . +She was holding a small parasol in her hand . 她 手里 握 着 一把 小 阳伞 . +She looks like a teacher . 她 看起来 像 老师 . +Sometimes I see him at the club . 我 偶尔 会 在 俱乐部 碰到 他 . +I appreciate good music . 我 欣賞 好 音樂 . +These pictures were painted by him . 這些 畫 是 他 畫 的 . +It took us a long time to decide what we really wanted to do . 我們 花 了 很 長 時間 決定 我們 真正 想 的 事 . +She was a tall , thin girl with long , soft brown hair . 她 是 個 又 高 又 瘦 , 留著 一頭 又 長 又 軟 的 褐色 頭 髮 的 女孩 . +The coral reef is the region is prime attraction . 珊瑚礁 是 这个 地区 的 主要 景点 . +The moonlight is really beautiful . 月光 真美 . +Children should drink milk every day . 孩子 们 应该 每天 喝牛奶 . +I ate bread and butter this morning . 今天 早上 , 我 吃 了 面包 夹 黄油 . +I trust his executive ability . 我 相信 他 的 执行 能力 . +Where are you planning to stay ? 你 打算 在 哪裡 留宿 ? +I should tell Tom what I have to do . 我 應該 告訴 湯姆 我 該 做 甚麼 . +I am daydreaming . 我 在 做 白日梦 . +You should eat more vegetables . 你 應 該 多 吃 蔬菜 . +I like both dogs and cats . 我 喜歡 狗 和 貓 . +Wearing a suit , he stood out . 他 穿著 西裝 站 了 出來 . +I do not know right now . 我 现在 不 知道 . +I am on the right . 我 在 右邊 . +I often eat chicken . 我 經常 吃 雞 . +Are you sure that is what you want ? 你 確定 那 是 你 想要 的 嗎 ? +Let is synchronize our watches . 讓 我們 校 對 一下 錶 吧 . +Tom is not very strict about it . 湯姆 對 此 不 嚴格 . +It is my treat . 我 請 客 . +I will come , weather permitting . 如果 天气 允许 的话 , 我 就 去 . +The picture looks better at a distance . 这 幅画 远 看 更好 . +It is a surprise . 这 是 一个 惊喜 . +Is it really possible ? 真的 是 可能 的 嗎 ? +Everybody was confused . 每个 人 都 很 困惑 +She wrote him a long letter , but he did not read it . 她 给 他 写 了 一封 长信 , 但是 他 没有 看 . +Tom likes tea better than coffee . 湯姆 喜歡 茶 勝 過 咖啡 . +I do not need anything . 我 什么 都 不 需要 . +I was very impressed by his story . 他 的 故事 給 我 留下 了 很 深 的 印象 . +I am interested in history . 我 對 歷史 有 興趣 . +He is afraid of snakes . 他 怕 蛇 . +It was a bag that I lost in the room yesterday . 它 是 我 昨天 遺失 在 房裡 的 包 . +That responsibility is a burden to him . 那个 责任 对 他 是 个 负担 . +I think it will not succeed . 我 認為 它 不 會 成功 . +The streets in Tokyo are full on Saturdays . 週六 , 東京 街上 人 滿為 患 . +My father is a doctor . 我 父亲 是 个 大夫 . +Please be quiet . 請 安靜 . +She seems to be unhappy . 她 看 起來 不快 樂 . +I am thirty years old . 我 三十 歲 . +He is already a man . 他 已经 是 个 男人 了 . +The boy who lives next door often comes home late . 住 在 隔壁 的 男孩 常常 很 晚 回来 . +I do not believe you . You are always telling lies . 我 不 相信 你 . 你 总是 说谎 . +She was susceptible to colds . 她 易 患感冒 . +Which credit cards can I use ? 我 可以 用 哪些 信用卡 ? +Japan is now very different from what it was twenty years ago . 相比 二十年 前 的 日本 , 现在 的 日本 有 了 翻天覆地 的 变化 . +I have not seen Tom lately . 我 最近 沒 看到 湯姆 . +Tom fell into a vat of sulfuric acid . Tom 摔倒 进 一桶 硫酸 中 +If I lost my key , I would not be able to lock the door . 如果 我 弄 丟了 我 的 鑰匙 , 我 就 無法 鎖門 了 . +There is something I have been meaning to discuss with you . 有件事 我 一直 想 跟 你 商量 . +What browser are you using ? 你 用 什么 浏览器 ? +I have finally got the whole set ! 我 終 於 擁有 了 一整套 ! +Tom knows that I want to leave as soon as possible . 湯姆 知道 我 想 盡早 離開 . +Our team lost the first match . 我們 隊 輸 了 第一 場 比賽 . +I am busy all the time . 我 總 是 忙碌 . +We did not stay home yesterday . 我們 昨天 沒 有待 在家 裡 . +Tom does not even know my name . 汤姆 甚至 不 知道 我 的 名字 . +I have time . 我 有 时间 . +Could we have a table outside ? 我們 在 外面 可以 有 一張 桌子 嗎 ? +When did you get here ? 你 是 什麼 時候 來的 ? +She asked him to open the window . 她 請 他 打開 窗口 . +Her only pleasure is listening to music . 她 唯一 的 樂趣 就是 聽 音樂 . +It is safe to say so . 這麼 說 是 安全 的 . +We had a rest in the shade . 我們 在 樹蔭 下 休息 . +Hokkaido is very far , is not it ? 北海道 很遠 , 不是 嗎 ? +She went to Italy to study music . 她 去 了 意大利 學習 音樂 . +Hurry home . 赶快 回家 . +Hundreds of buffaloes moved toward the lake . 數以百計 的 水牛 走向 湖邊 . +I expect a lot from him . 我 對 他 期望 很 高 . +Could you solve the problem ? 你 能 解決 這個 問題 嗎 ? +I can not stand this pain any more . 我 不能 再 忍受 這種 痛苦 了 . +The blue lines on the map represent rivers . 地图 上 的 蓝线 代表 河流 . +Excess of politeness is annoying . 禮貌 過度 是 煩人 的 . +She is the one who feeds our dog . 她 是 喂 我們 的 狗 的 人 . +He does not like coffee . 他 不 喜歡 喝咖啡 . +Christmas is definitely my favorite holiday . 圣诞节 绝对 是 我 最 喜欢 的 节日 . +You do not have to eat it . 你 不必 吃 . +To err is human , to forgive divine . 人 皆 有錯 , 唯 聖者 能 恕 . +Use it or lose it . 使用 它 或 失去 它 . +I was quite hungry . 我 很 饿 . +I also heard a similar story . 我 也 听 过 一个 类似 的 故事 . +We have a problem here . 我们 现在 有 了 麻烦 . +They moved ahead slowly . 他們 慢慢 地 向前 進 . +My car cost more than yours did . 我 的 车子 的 开销 比 你 的 要 多 . +My mother never punishes me . 我 母親 從來 沒有 懲罰 過 我 . +Now is a great time to buy one of those . 现在 是 买 它 的 最好 时机 . +All that glitters is not gold . 光 看 表面 是 不足 夠 的 . +How far is it from here ? 离 这儿 有 多 远 ? +Tom is there alone . Tom 獨自 在 那 . +The eight o 'clock bus was early today . 8 点 那 班车 今天 早 到 了 . +I do not like the way he talks . 我 不 喜歡 他 講 話 的 樣子 . +I can not bear this pain . 我 無法 忍受 這個 痛苦 . +Who likes beans ? 谁 喜欢 豆子 ? +I do not know what to believe anymore . 我 再也 不 知道 該 信 甚麼 了 . +It is time to get some work done . 到 了 做 點 事 的 時候 了 . +I have no idea of what to do . 我 不 知道 该 怎么办 . +I like the way you walk . 我 喜欢 你 走路 的 方式 . +I would like to speak with you in private . 我 想 跟 你 私下 说话 . +I am from Portugal . 我 来自 葡萄牙 . +It is almost six o 'clock . 快要 六點 了 . +Is he tall ? 他 长 得 高 吗 ? +When I heard the news , I wanted to cry . 当 我 听到 这个 消息 时 , 我 想 哭 . +Japan is an extremely noisy country . 日本 是 一個 非常 嘈雜 的 國家 . +They will arrive a week from today . 他們 將 於 下 個 星期 的 今天 抵達 . +I hope you will get better soon . 我 想 你 快点 好 . +I know how we can help . 我 知道 我們 要 怎麼 幫忙 . +I am going to my room , where I can study . 我 要 回 房间 了 , 在 那儿 我 可以 学习 . +That could be too late . 那 可能 太晚 了 . +You 'd better not speak . 你 最好 不要 說 . +You should pay your rent in advance . 你 应该 提前 付 租金 . +Tom is tired . 湯姆 累 了 . +Tom did it the same way I did . 汤姆 我 按 我 做 的 办法 做 了 . +I think I mistakenly deleted that file . 我 觉得 我 是 误删 了 这个 文件 . +Scientists have not found a cure for cancer yet . 科学家 们 还 没有 找到 癌症 的 治疗 方法 . +Her mother is writing a letter . 她 的 母親 正在 寫信 . +Is there a zoo in Boston ? 波士顿 有 动物园 吗 ? +I believed that he would keep his promise . 我 相信 他 会 信守诺言 . +Tom has two children . Tom 有 兩個 孩子 . +The design itself is flawed . 設計 本身 有 問題 . +She is eating . 她 吃 . +I will let you decide . 我 让 你 来 决定 . +I am a professor . 我 是 大学教授 . +I have no problem with my boss . 我 和 老 闆 沒 有 問 題 . +The telephone was invented in 1876 by Bell . 電話 於 1876 年 由 貝爾 所 發明 . +I am happy to have so many good friends . 我 很 高 興有 這麼 多 好 朋友 . +How long will this rain go on ? 雨会 下 多久 ? +You can not achieve anything without effort . 没有 什么 是 不劳而获 的 . +Thousands of people died of hunger . 數千 人 死 於 飢餓 . +Who does the gun belong to ? 這 把 槍 是 屬 於 誰 的 ? +He made his son a wealthy man . 他 使 他 儿子 成 了 个 有钱人 . +I can not finish the job in so short a time . 我 無法 在 這麼 短 的 時間 內 完成 這份 工作 . +He accelerated . 他 提速 了 . +Let is not watch TV . 我們 不要 看電視 吧 . +It is going to rain , for sure . 要 下雨 了 , 我 敢肯定 . +According to the weather forecast , it will snow tomorrow . 天气预报 说 明天 会 下雪 . +Everyone but Tom knew he did not need to do that . 除了 汤姆 以外 任何人 都 知道 他 没 必要 这么 做 . +Tom likes to make paper airplanes . 汤姆 喜欢 折纸 飞机 . +Accidents happen . 事故 發生 . +Tom has a beautiful car . Tom 有 台 靓车 . +I do not care a bit about the future . 我 不在乎 将来 . +Last year , he spent three months at sea . 去年 他 在 海上 度過 了 三個 月 . +Swimming makes your legs strong . 游泳 使 腿部 强健 . +He threw a stone into the pond . 他 扔 了 一塊 石頭 到 池塘 裡 . +She goes to aerobics once a week . 她 每星期 去 作 一次 健美操 . +Who is worried about Tom ? 谁 担心 汤姆 ? +Here is the map you are looking for . 你 正在 找 的 地圖 在 這裡 . +I will not make that mistake again . 我 不 會 再犯 那 錯 了 . +This old house is haunted . 这个 老房子 闹鬼 . +What you are saying does not make sense . 你 说 的 没有 意义 . +They all burst out laughing . 他们 都 哈哈大笑 起来 . +God exists . 上帝 存在 . +The young man is a doctor . 这个 年轻人 是 医生 . +I had nothing in common with them . 我 同 他们 没有 过 共同之处 . +Was that too much ? 那 太 多 了 吗 ? +How do you know that belongs to Tom ? 你 怎麼 知道 那 是 湯姆 的 ? +Now , wait a second . 現在 等 一下 . +Can we save the planet ? 我们 能 拯救 这 颗 星球 吗 ? +This is impossible . 这 不 可能 . +When Dad finds out what you have done , he is going to hit the roof . 当 爸爸 发现 你 做 了 什么 的 时候 , 他 会 发疯 的 . +He lost his eyesight in the accident . 他 在 意外 中 失明 了 . +I have just finished my homework . 我 剛剛 完成 我 的 作業 . +He dried his wet clothes by the fire . 他 在 火 旁 烘干 他 的 湿 衣服 . +Do not shout at me . 別 對著 我 吼 . +I am looking forward to hearing from you soon . 我 期待 很快 就 能 收到 你 的 信 . +Tom hung the calendar on the wall . 湯姆把日 曆 挂 在 墙上 . +She made me wait for half an hour . 她 让 我 等 了 半小时 . +Who else uses this room ? 还有 谁 用 这个 房间 ? +He taught us that Columbus discovered America . 他 教導 我們 說 , 哥倫布 發現 了 美洲 . +Where in Turkey do you live ? 你 在 土耳其 哪儿 生活 ? +The lady tolerated the man . 那 女士 容忍 了 那 男人 . +I used to smoke a lot , but now I have quit . 我 以前 常 抽 菸 , 但 現在 我 戒掉 了 . +You dropped your pencil . 你 把 你 的 铅笔 弄掉 了 . +Tom has a plan . 湯姆 有個 計畫 . +He rarely stays home on Sunday . 他 很少 週日 待 在家 裡 . +He does not like traveling by air . 他 不 喜歡 搭 飛機 旅行 . +Your tie has come undone . 你 的 領 帶 鬆 了 . +I wonder why karaoke is so popular . 我 不 知道 為 什麼 卡拉 OK 如此 受歡 迎 . +We made the most of the opportunity . 我們 盡力 地 利用 了 這個 機會 . +If you sang , they 'd kick you out of the bar . 如果 你 唱歌 了 , 他们 就 会 把 你 踢 出 酒吧 +Would you like me to explain it ? 我 為 你 解釋 一下 好 嗎 ? +I study at school . 我 在 学校 读书 . +He walked in the park yesterday . 他 昨天 在 公園 裡 散步 . +I was lonely without her . 她 不 在 , 我 很 孤独 . +Our music teacher advised me to visit Vienna . 我們 的 音樂 老師 建議 我 去 維也納 看看 . +This job pays pretty well . 这 工作 报酬 很 高 . +When the cat is away , the mice will play . 山上 无 老虎 , 猴子 称 大王 . +I will think it over carefully . 我会 深思熟虑 . +She bought two pairs of socks . 她 買 了 兩雙 襪子 . +Please do not get me wrong . 千万 别误会 我 的 意思 . +Hurry up , or you will miss the bus . 快點 , 否則 你 會 錯 過 公車 . +We must get up at dawn . 黎明 時 我們 必須 起床 . +Take care of yourself . 照顾 好 自己 . +What are you eating ? 在 吃 什么 呢 ? +His daughter has become a pretty woman . 他 的 女兒 已經 成為 了 一個 漂亮 的 女人 . +Is this your first trip abroad ? 這 是 你 第一次 出國 嗎 ? +Keep them . 留 着 吧 . +I accepted the offer . 我 接受 了 报价 . +Are you Tom ? 你 是 汤姆 吗 ? +Do not fail to mail this letter . 不要 忘 了 寄 這 封信 . +They are armed . 他們 有 帶 武器 . +You do not have to buy me anything . 你 不必 为 我 买 什么 . +I hate myself sometimes . 偶尔 我会 讨厌 我 自己 . +When do you have to go to bed ? 你 甚麼 時候 必須 去 睡 覺 ? +Not all Germans like to drink beer . 不是 所有 的 德国人 都 喜欢 喝啤酒 . +We did not know what to do next . 我們 不 知道 下 一步 要 做 什麼 . +Do you really believe that story ? 你 真的 相信 那 故事 嗎 ? +I can not do any more than this . 我 無法 做 比 這 更 多 的 了 . +That is his house . 那 是 他家 . +What do you want me to do , Tom ? 你 想 讓 我 做 甚麼 , 湯姆 ? +My joints ache when it gets cold . 當天 氣變 冷 的 時候 , 我 的 關節 疼痛 . +The moonlight is beautiful . 月光 真美 . +I have a lot of homework . 我 有 很多 功課 . +It is hard to say . 難 講 喔 . +I am going to register at a gym . 我 去 註 冊 一家 健身房 . +English is easy to learn . 英語 簡單 易學 . +I had a wonderful time . 我 度 過 了 美好 的 時光 . +She always takes care of her children . 她 毫無間斷 地 照顧 自己 的 孩子 . +What do you think of that ? 你 認為 如何 ? +I will be free in ten minutes . 我 十分钟 后 有空 . +This medicine will do you good . 这 药 对 你 有 好处 . +She disliked her husband . 她 不 喜歡 她 的 丈夫 . +My neighbor is dog is dead . 我 鄰居 的 狗 死 了 . +They got to the hotel after dark . 天暗 後 他們 到 了 酒店 . +This is not a sentence . 這 不是 一個 句子 . +I am no quitter . 我 不 輕易 放棄 . +That is a pretty big assumption . 那 是 个 很大 的 设想 . +I do not care what they say . 我 不在乎 他們 說 什麼 . +It never rains but it pours . 不下雨 則 矣 , 一下 一定 是 傾盆 大雨 . +The student handed the examination papers in to the teacher . 該 學生 把 考試 卷 交給 了 老師 . +We 'd like another bottle of wine . 我們 想 再 來 一瓶 葡萄酒 . +I am full . 我 吃 飽 了 . +What does he want to do ? 他 到底 想 干嘛 ? +We ate sandwiches for breakfast . 我們 早餐 吃 了 三明治 . +Any child can do that . 任何 小孩 都 能 做到 . +We love Tom . 我们 爱 汤姆 . +His cottage is on the coast . 他 的 村屋 在 海岸 上 . +I am going to change my shirt . 我 要 去 換 我 的 襯衫 . +How much sugar should I put in your coffee ? 我 应该 往 你 的 咖啡 里 放 多少 糖 呢 ? +What happened here was unavoidable . 这里 发生 的 不可避免 . +Tom is not happy at all . 汤姆 根本 不 高兴 . +He found a ball in the garden . 他 在 花園 裡 找到 了 一顆 球 . +I have not eaten for many days . 我 好多天 没 吃 东西 了 . +I am thinking about you . 我 正 考慮 到 你 . +Whose shirt is this ? 這 是 誰 的 襯衫 . +Drinking lots of water is good for you , sure , but one can not drink that much water at once . 虽然 喝 多点 水 对 身体 有 好处 , 但是 一次性 喝 太 多 水 也 是 不好 的 . +Did you drive her home last night ? 昨晚 你 把 她 送 回家 了 吗 ? +Tom thanked Mary for coming . 汤姆 感谢 玛丽 的 光临 . +Although he was exhausted , he had to keep working . 尽管 他 累 极了 , 他 还 必须 工作 . +I asked her to wait a moment . 我 請 她 等 一會兒 . +We have no electricity . 我們 沒有 電 . +I have been to Rome . 我 去过 罗马 . +Tom can not afford that . 汤姆 负担 不起 . +I have nothing to fall back on . 我 没什么 可 依靠 的 了 . +I have the same trouble as you have . 我 有 跟 你 同樣 的 麻煩 . +There used to be a prison here . 這裡 以前 有 一座 監獄 . +Would you like to come ? 你 愿意 来 吗 ? +Bring me a glass of water . 给 我 一杯 水 . +I had a phone call from him . 我 接到 了 他 打來 的 電話 . +It is no use talking with him . 跟 他 說 話 沒用 . +I can not lift my right arm . 我 無法 舉起 我 的 右 手臂 . +" Will he pass the examination ? " " I am afraid not . " " 他 會 通過 考試 嗎 ? " " 我 怕 是 不 會 . " +Where are your things ? 你們 的 東西 在 哪裡 ? +He came to see me . 他 來看 我 了 . +Tom is not an elected official . 湯姆 不是 選 出來 的 官員 . +I have many discs . 我 有 许多 唱片 . +I can not tell if you are joking . 我 無法 分辨 你 是否 在 開 玩笑 . +We are going to leave tomorrow . 我們 明天 要 離開 . +I feel very sick . 我 覺得 我 病 得 很 厲害 . +Finally , he reached his goal . 他 终于 达到 了 自己 的 目标 . +He came back not because he was homesick , but because he was running short of money . 他 不是 因為 想 家 , 而是 因為 沒錢 才 回來 的 . +Who do you think we are ? 你 认为 我们 是 谁 ? +Have you eaten your dinner already ? 你 吃 過 晚 飯 了 嗎 ? +I wish I could have spoken Spanish . 要是 我 會 說 西班牙 語 就 好 了 . +He had his sister help him paint the wall of his room . 他 让 妹妹 帮 他 涂 他 房间 的 墙 . +Do you study at a private school ? 你 在 私立学校 读书 吗 ? +His hat is not on straight . 他 的 帽子 没戴 正 . +He got his wife to mend his shirt . 他 让 他 的 妻子 补好 衬衫 . +I spent 10 dollars on it . 我 在 这 东西 上 花 了 十美元 . +I sometimes still think about her . 有 時候 , 我 還 是 會 想起 她 . +I believe in what they said . 我 相信 他們 說 的 話 . +It all depends on you . 这 都 取决于 你 . +Let me cut the carrots . 讓 我 來 切 胡蘿 蔔 . +The cough syrup has a licorice flavoring . 咳嗽 糖浆 有 股 甘草 的 味道 . +I am very happy . 我 很 快乐 . +I wish that we could spend more time together . 我 希望 我们 有 更 多 时间 呆 在 一起 . +Mary has just come home . 瑪麗剛 剛 回家 . +The street was crowded with people . 街道 上 擠滿 了 人 . +Are not there any qualified applicants ? 没有 合格 的 申请人 吗 ? +I am not as optimistic as you . 我 没有 你 那么 乐观 . +This novel is difficult to understand . 这部 小说 很 难 读懂 . +I know that can not really happen . 我 知道 那 不 會 真的 發生 . +I come from a large family . 我 从 一个 大家庭 来 . +Our friend finished the race in second place . 我们 的 朋友 完成 了 比赛 , 得 了 第二名 . +Why do you think that I am thinking about you ? 你 为什么 会 认为 我 在 想 你 ? +Smoking is not allowed here . 这里 不 允许 抽烟 . +That affair made him famous . 那 件 事情 使 他 一舉 成名 . +I am blessed with good health . 我 很 幸運 有 健康 的 身體 . +The train has already gone . 列车 已经 出发 . +We are supposed to know the rules . 我们 应该 了解 相应 的 规则 . +The potato was so hot that it burned my mouth . 土豆 太 热 , 以至于 烫 到 了 我 的 嘴 . +Ignore Tom . 别理 汤姆 . +She glanced briefly at the newspaper . 她 很快 地 瞟 了 一眼 報紙 . +A new team was formed in order to take part in the boat race . 为了 参加 划船 比赛 , 一支 新 的 队伍 组成 了 . +I just need a break . 我 只 想 休息 一下 +Stuff happens . 事情 难免会 发生 . +It is OK . 没关系 . +It is an hour is walk to the station . 步行 到 車 站 要 一小 時 . +It may or may not be true . 這 可能 是 真的 , 也 可能 不是 . +Tom seems to be much happier than me . 汤姆 看来 比 我 高兴 . +When the phone rang , I was watching TV . 电话响 的 时候 , 我 在 看电视 . +You should see a doctor . 你 應 該 去 看 醫生 . +Your dog is very fat . 你 的 狗 非常 胖 . +Do not let appearances deceive you . 不要 被 外貌 蒙蔽 了 . +Winter is coming . 冬季 快 來 了 . +How about you ? 你 怎麼樣 ? +They knocked down a part of the wall . 他們 拆掉 了 一部分 牆 . +Tom could not hold back his anger . 汤姆 没法 压抑 自己 的 怒火 了 . +The runner jumped over the hole in the ground . 那个 赛跑 运动员 跃过 了 地面 上 的 洞 . +Please tell me about your trip . 請 告訴 我 有 關 你 旅行 的 事 . +They are at lunch . 他们 在 吃 午饭 . +There is always someone talking . 總是 會 有人 說 話 . +He knocked on the door . 他 敲 了 門 . +The princess begged forgiveness from the emperor . 公主 向 皇帝 请求 饶恕 . +He played tennis . 他 打 了 网球 . +I caught the man stealing the money . 我 抓到 了 這個 男人 正在 偷 錢 . +This song is very popular in Japan . 這 首歌曲 在 日本 很 受歡 迎 . +I have decided to carry on the work . 我 决定 继续 工作 . +My opinion is different from yours . 我 的 看法 跟 你 的 不同 . +You must clear the table . 你 必须 把 桌子 清理 干净 . +What do you really want to say ? 你 实际上 想 说 什么 ? +This sentence is grammatically correct . 这个 句子 在 语法 上 是 正确 的 . +You must get up a little earlier . 你 该 早 一点 起床 . +I grow tomatoes and onions in my garden . 我 在 花园 种 了 番茄 和 洋葱 . +He is very busy writing stories . 他 忙于 写 故事 . +I have a slight headache now . 现在 我 有 些许 头痛 . +Taking off is easier than landing . 起飛 比 降落 容易 . +I am not good at carpentry . 我 不 擅長 做 木工 . +I said it might rain . 我 说 了 可能 要 下雨 . +I think it will be hot today . 我 觉得 今天 会 很 热 . +Tom likes me the most . Tom 最 喜欢 我 . +Do you know which deity this temple is dedicated to ? 您 知道 这 座 庙宇 供奉 的 是 哪个 神 吗 ? +I am alarmed by your irresponsible attitude . 我 对 你 不负责任 的 态度 感到 惊讶 . +I am young . 我 還 年輕 . +The fish tasted like salmon . 這 魚 吃著 像 三文 魚 . +I have a bad headache . 我 頭 疼 得 厲害 . +He is the chairman of the committee . 他 是 委員會 主席 . +She is dieting . 她 在 节食 . +I am home . 我 在家 裡 . +She used to go to the movies on Sundays . 她 從 前 會 在 星期天 去 看 電影 . +I will not do this again . 我 不想 再 做 這個 了 . +He invested his money in stocks . 他 把 錢 投資 於 股票 . +We have to continue to do our jobs . 我们 要 继续 我们 的 工作 . +I agreed with him on the plan . 對 於 這個 計劃 我 同意 他 的 意見 . +Tom hurried so he would not miss the train . 汤姆 加紧 步伐 以 不错 过 火车 . +The same thing is happening here in Boston . 同樣 的 事 在 這 - 波士 頓 發生 . +Are you planning to help them ? 你 打算 幫助 他們 嗎 ? +She mistook my brother for me . 她 把 我 哥哥 誤認 為 我 . +" Will you be at my party tomorrow night ? " " I will try to be there . " “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 尽量 来 . ” +There is nothing else we can do . 没有 我们 能 还 做 的 事 . +Perhaps it was worth it . 可能 是 值得 的 . +You are impatient . 你 缺乏 耐心 . +He might not be happy . 他 可能 會 不 高興 . +How often does the bus run ? 公共汽车 多久 发车 一次 ? +Tom can not drive a bus . 湯姆 不能 開 巴士 . +We had to live together . 我們 要 在 一起 生活 . +Why did you not tell me the truth ? 为什么 你 不 告诉 我 真相 ? +My father bought me a bicycle . 我 父亲 给 我 买 了 一辆 自行车 . +Tom stopped me from entering the bank . 汤姆 阻止 我 进 银行 . +He is staying at his aunt is . 他 呆 在 他 阿姨 家 . +My eyes are watering . 我 在 流眼淚 . +We had a heavy frost this morning . 今天 早上 天氣 嚴寒 . +Do not hesitate to ask questions . 不要 猶豫 去 問 問題 . +This book is yours . 這 本書 是 你 的 . +Take your time . There is no hurry . 慢慢来 , 没 那么 急 . +You do not seem happy . 你 看起来 不 高兴 . +Please say it more loudly . 請 說 更 大聲 一點 . +What I am about to say is strictly between you and me . 我 要说 的 只能 是 你 知 我 知 . +He always mistakes me for my sister . 他 老 是 把 我 和 我 姐姐 搞错 . +A green carpet will not go with this blue curtain . 绿色 的 毯子 和 这条 蓝色 的 帘子 不配 . +I am ready to leave . 我 准备 好 出发 了 . +He told the truth . 他 說 了 實話 . +I have had enough . 我 已經 受夠 了 . +He has a lot of hobbies . 他 有 很多 兴趣爱好 . +My back still hurts . 我 的 背 還 在 痛 . +Can I see that one ? 我 能 看 那個 嗎 ? +It is a good deal . 这 是 一笔 不错 的 交易 . +Tom gave us nothing . 汤姆 什么 也 没给 我们 . +The cost of living has gone up . 生活 費 提高 了 . +How many cats do you have ? 您 有 几只 猫 ? +That house belongs to him . 這棟 房子 是 屬 於 他 的 . +Let Tom live . 給 湯姆 活路 ! +He threw the ball . 他 把 球 扔 了 . +Where are we eating breakfast ? 我們 在 哪裡 吃 早餐 ? +The third quarter GNP growth was 1 % over the preceding quarter . 第三季 國 民生 產總值 較 上 一季 成長 了 1 % . +Is this your book ? 這 是 你 的 書 嗎 ? +I have been careful my whole life . 我 一生 都 谨慎 行事 . +Do not exceed the speed limit . 不要 超速 . +Try resting for now . 现在 休息 一下 . +Can Tom help us ? 汤姆 可以 帮 我们 吗 ? +He wanted to reduce the tax on imports . 他 想要 减少 进口品 的 税 . +He was killed in a car accident . 他 死 於 一場 車禍 . +I am looking for a warm , woolen skirt . 我 想 找 一件 溫暖 的 羊毛 裙 . +You must come back before it gets dark . 你 必须 在 天黑 前 回来 . +She put her CDs in a row on the shelf . 她 把 她 的 CD 在 書 架上 排成 一排 . +I guess they really were not so happy . 我 猜 他們 真的 不 太 高興 . +He works from nine to five @-@ thirty . 他 從 早上 九點 工作 到 下午 五點半 . +The area of the factory is 1,000 square meters . 工厂 的 面积 是 1000 平方米 . +He arrived in Tokyo yesterday . 他 昨天 到 了 东京 . +I even work on Sundays . 我 甚至 在 週日 工作 . +Our new home has an elevator . 我們 的 新家 有一 臺 電 梯 . +You are not special . 您 不 特別 . +She gave in to the temptation . 她 屈服 於 誘惑 了 . +Could you do me a favor ? 請 你 幫 我 一個 忙好 嗎 ? +I gave up all hope of survival . 我 放棄 了 所有 生存 的 希望 . +Tom slept with his shoes on . 汤姆 穿着 鞋 睡 了 . +He is rotten to the core . 他 壞 透 了 . +They are sure to fall in love . 他们 肯定 会 相恋 的 . +You are irresistible . 你 令人 难以 抗拒 . +I did it . 我 做到 了 ! +There was not anybody in the house . 沒 有人 在家 . +Whose cup is this ? 这 是 谁 的 杯子 ? +She is a very good teacher . 她 是 个 非常 好 的 老师 . +It will be snowing when we arrive at Shiga Heights . 我们 到达 志 贺 高原 时会 下雪 . +Is Tom ready for that ? 汤姆 准备 好了吗 ? +The artist who illustrated this book is very good . 給 這 本書 畫 插畫 的 畫家 很 好 . +I bought this book at Maruzen Bookstore . 我 在 书商 Maruzen 那里 买 了 这 本书 . +She does not have a ticket . 她 沒 有 票 . +You should have done it earlier . It cannot be helped now . 你 本 应该 早点 做 的 . 现在 已经 没有 任何 办法 了 . +We probably should have left early . 我們 可能 應該 早點 走 . +How often do the buses depart ? 公共汽车 多久 发车 一次 ? +Edison was not a bright student . 爱迪生 不是 个 优秀 的 学生 . +I do not want to wait that long . 我 不想 等 那么 久 . +It would take forever for me to explain everything . 要 都 解释 的话 , 需要 一辈子 的 时间 . +I will teach you how to drive a car . 我会 教 你 怎么 开车 . +This really is a nice surprise . 真是 个 惊喜 ! +Are you ready ? 您 准备 好了吗 ? +I am playing football now . 我 現在 正在 踢足球 . +Had he known what was about to happen , he would have changed his plan . 要是 他 知道 会 发生 什么 , 他 就 会 改变 计划 . +Tom is comment was inappropriate . 湯姆 的 評論 不合 適 . +Is something wrong ? 有 什么 不对 吗 ? +Please do not look at me like that . 請 不要 那樣 看 我 . +I could not agree with you more . 我 再 同意 你 不 過 了 . +I have climbed Mt . Fuji twice . 我 爬 過 兩次 富士山 . +Tell me how you are feeling . 告訴 我 你 的 感受 . +For some reason the microphone did not work earlier . 剛才 我 的 麥克風 沒起 作用 , 不 知道 為 什麼 . +He is on the radio . 他 上 电台 了 . +He got a good grade in mathematics . 他 數學 得 了 一個 好 成績 . +I had my composition corrected by the teacher . 我 把 我 的 作文 拿 給 老師 訂正 . +Can you lower the price ? 可以 便宜 點 嗎 ? +The policeman was drunk . 警察 醉 了 . +She spent all afternoon cooking . 她 花 了 整個 下午 作飯 . +Please come as soon as possible . 请 尽快 过来 . +How long did you stay ? 你 待 了 多久 ? +Let is hope you do not need it . 希望 你 用不着 它 . +I can only see it getting worse . 我 只 看见 它 变得 更糟 了 . +She stayed at home by herself . 她 獨自 留在 家裡 . +Tom is standing in the corner of the room . 汤姆 正 站 在 房间 的 角落 . +That music is worth listening to many times . 这 音乐 值得 听 许多次 . +I was deeply impressed by the scenery . 我 被 这 景色 深深 迷住 了 . +We took part in the discussion . 我們 參加 了 討論 . +Today is my birthday . 今天 是 我 的 生日 . +Tom started singing . 湯姆 開始 唱歌 . +Experience is the best teacher . 經驗 是 最好 的 老師 . +The countryside has many trees . 乡间 有 很多 树 . +He predicted there would be rain . 他 预测 会 下雨 . +He tends to be late for meetings . 他 開會 往往 會 遲 到 . +Put some salt into the boiling water . 放 點 鹽 到 滾 水裡 . +This train stops at every station . 這 班 火車 每站 都 停 . +Parents teach their children that it is wrong to lie . 父母 教育 他们 的 孩子 说谎 是 不好 的 . +That changed everything . 那 改变 了 一切 . +I know it is hard to believe . 我 知道 , 要 相信 这件 事 很 难 . +Every rose has its thorns . 沒有 不 帶刺 的 玫瑰 . +This shirt needs ironing . 这 衬衫 需要 熨 . +What do you plan to sell ? 你 計劃 賣 甚麼 ? +We all miss you very much . 我们 都 非常 想 你 . +Let is go ! 走 吧 . +I do not like tea , so I generally drink coffee for breakfast . 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 喝咖啡 . +That really whets my appetite . 那 很 開 胃 . +I am a member of the tennis club . 我 是 网球 俱乐部 的 会员 . +War must be avoided at all costs . 戰爭 必須 不惜一切 代價 地 去 避免 . +Is there any possibility of his resigning ? 他 有 可能 辭職 嗎 ? +Are you sure Tom is in Australia now ? 你 确定 汤姆 现在 在 澳洲 吗 ? +We are all hungry . 我們 都 餓 了 . +I tried to escape . 我 试图 逃跑 . +We ran after the cat . 我們 追著 貓 . +He gave me a smile of recognition . 他 給 了 我 一個 認可 的 微笑 . +There is something odd going on . 正 有 什么 奇怪 的 事情 发生 着 . +It was not me who told you not to do that . 不是 我 告訴 你 不要 去 做 的 . +I am amazed at your audacity . 我 对 你 的 厚颜无耻 感到 惊讶 . +Tom failed . 汤姆 失败 了 . +Everyone was happy . 每個 人 都 高興 . +Have you finished your homework ? 你 做 完 作業 了 嗎 ? +Watching TV is a passive activity . 看電視 是 一種 被動 的 活動 . +I wonder why Tom is so excited . 我 奇怪 為 甚麼 湯姆 那麼 激動 . +Well , have you decided ? 那麼 , 你 決定 好 了 嗎 ? +My dog often lies on the grass . 我家 的 狗 經常 躺 在 草地 上 . +Come on , hurry up . 来 吧 , 快 一点 . +I am going to go sit down . 我 要 坐下 . +I like strawberry ice cream . 我 喜歡 草莓 味 的 冰淇淋 . +I ordered those books from Germany . 我 從 德國 訂購 了 那些 書 . +Please wait for me at the station . 請 在 車站 等 我 . +I tried to listen to him carefully . 我 試著 仔細 地 聽 他 說 話 . +You will never be alone . 你们 永远 不会 一个 人 的 . +It cost me 50 dollars to have my watch fixed . 我 花 了 五十 美元 修好 了 手表 . +Now who is going to help you ? 現在 誰 要 幫 你 ? +Have you made your decision ? 你 决定 好了吗 ? +She knows how to do the crawl . 她 知道 怎麼 游 自由式 . +Where am I ? 我 在 哪裡 ? +I received her letter yesterday . 昨天 我 收到 了 她 的 信 . +If you do not know the way , ask a policeman . 要是 不知 道路 的话 去 问 警察 吧 . +Can you tell me how to get to the train station ? 你 可以 告訴 我 要 怎麼 去 火車 站 嗎 ? +The light suddenly went out . 灯 突然 灭 了 . +When does it arrive ? 它 什么 时候 到 ? +Tom is not here yet , but we expect him soon . 湯姆 還 不 在 這裡 , 但 我們 期待 他 很快 就 來 . +How about another cup of coffee ? 要 不要 再來 一杯 咖啡 ? +She always smiles at me . 她 總是 對 我 微笑 . +Tom stood behind me . 汤姆 站 在 我 后面 . +I like being on the team . 我 喜欢 在 队伍 里 . +I saw him crossing the street . 我 看见 他 穿过 了 马路 . +Get out of here . 離開 這裡 . +Speak softly . 你 说话 小点声 . +He can scarcely write his name . 他 很 难 写 他 的 名字 . +They live in peace . 他们 过 着 和平 的 生活 . +Spring is the best season to visit Kyoto . 春天 是 访问 京都 最好 的 季节 . +That is just what I wanted . 我 想要 的 就是 这个 . +I was at home . 我 刚才 在家 . +There were few children in the room . 房间 里 没 几个 小孩子 . +Tom donates half his salary to his favorite charity . 汤姆 捐 一半 他 的 薪水 给 他 最 喜欢 的 慈善机构 . +You can eat whatever you like . 你 可以 吃 你 喜歡 的 東西 . +I can not hear you . 我 听不见 你 . +The mother occasionally reread her son is letter . 这位 母亲 偶尔 会 重温 她 的 儿子 的 信件 . +If we knew what we were doing , it would not be called research , would it ? 如果 我们 知道 我们 在 做 什么 , 那么 这 不能 称之为 研究 , 是 吗 ? +He missed the last train . 他 错过 了 最后 一班 火车 . +She needed some money to buy something to feed her dog . 她 需要 一些 钱 来 买点 东西 喂 她 的 狗 . +You have no need to be ashamed . 你 不 需要 害羞 . +I believe the actions that he took were right . 我 相信 我们 采取 的 行动 是 对 的 . +What is the title of your new book ? 你 新書 的 書名 是 什麼 ? +You do not like sashimi , do you ? 你 不 喜 歡生 魚片 , 是 嗎 ? +He had a smile on his face . 他 面帶 笑容 . +It is obvious why his stomach hurts . 他 為 什麼 會 胃痛 的 原因 很 明顯 . +He lost a book . 他 弄 丟了 一本 書 . +He stole money from her wallet . 他 從 她 的 錢 包 偷 了 錢 . +Who is the girl in this picture ? 這 張 照片 裡 的 女孩 是 誰 ? +My son is taller than I am . 我 兒子 比 我 高 . +His name is not on the list . 他 的 名字 不 在 名单 里 . +What is Tom is blood type ? 湯姆 的 血型 是 甚麼 ? +She is going to wash the bike this afternoon . 她 下午 会 洗 自行车 . +You must not stay in bed . 你 不能 待 在 床上 . +Why do you want to know what I am thinking ? 為 什麼 你 想 知道 我 在 想 什麼 ? +That is a bad day for me . 那天 我 不行 . +I made the decision by myself . 我 自己 做 了 决定 . +I give you my word . 我 向 你 保证 . +The hunters aimed at the elephant . 猎 人们 用 枪 瞄准 了 大象 . +She stooped to pick up a pebble . 她 撿 起 了 一塊 鵝 卵石 . +If you are not listening to the radio , turn it off . 要是 你 不 在 听 广播 的话 , 就 关掉 它 . +We were unable to make contact with them until it was too late . 我们 联系 上 他们 已经 为时已晚 . +It is nearly three o 'clock . 將近 三點 了 . +Do not let your feelings show . 不要 流露 你 的 感情 . +Tom was the last one off the bus . 湯姆 是 最 後 下 巴士 車 的 人 . +He is sitting at an empty table . 他 坐在 一张 空 桌旁 . +He carried a rifle on his shoulder . 他 把 步槍 背 在 他 的 肩上 . +He is an agreeable person . 他 是 个 好脾气 的 人 . +She took the book back to the library . 她 把 书 带回 了 图书馆 . +I 'd like your help . 我 想 請 你們 幫 個 忙 . +I planted a peach tree in my yard . 我 在 我 的 院子 里 种 了 棵 桃树 . +Tom was sick in bed last Sunday . 湯姆 上 週日 臥病 在 床 . +It is hard to maintain one is reputation . 維持 一個 人 的 聲譽 是 很 難 的 . +I will buy this . 我 要 買 這個 . +I met her on a certain winter day . 冬天 的 某日 , 遇到 了 她 . +The dog was hit by a car . 狗 被 車 撞 了 . +I put the money into the safe . 我 把 錢 放入 保險櫃 裡 . +Please wait for me at the entrance of the building . 请 在 建筑 的 入口处 等 我 . +We are good friends . 我們 是 好 朋友 . +It was not interesting at all . 一点 也 不好玩 . +I will bring it to you tomorrow . 我 明天 带给 你 . +How far away are we ? 我们 有 多 远 了 ? +The girl was afraid to jump down from the roof . 小女孩 害怕 从 屋顶 上 跳下来 . +I have absolute trust in you . 我 絕對 信任 你 . +He turned pale with fright . 他 嚇 得 臉色 發白 . +My home is far away . 我家 很远 . +You are the new secretary , are not you ? 您 是 新来 的 秘书 吧 , 不是 吗 ? +I will show you my room . 我 會 帶 你 看看 我 的 房間 . +Where is your house ? 你家 在 哪裡 ? +Do you happen to know his name ? 你 說 不定 知道 他 的 名字 ? +All that Jack does is sleep . 所有 傑克 做 的 事 就是 睡覺 . +I went into the navy . 我 加入 了 海軍 . +What a pity ! 多 遗憾 啊 ! +You do not need to hurry . 你 不必 著急 . +Mother Teresa was given the Nobel prize . 特蕾 莎 修女 被 授予 諾貝爾獎 . +I am too short . 我 太矮 了 . +Are you afraid of being fired ? 你 害怕 被 解雇 吗 ? +Let me have a try . 让 我 试试 . +He always plans a thing out carefully before he does it . 他 每件事 做 之前 都 會 細心 計劃 . +Are you sure that you want to go there ? 你 确定 你 要 去 那儿 吗 ? +He does not always come late . 他 不是 总来晚 . +You are taller than she is . 你們 比 她 高 . +If it had not been for your help , I could not have completed the work . 如果 不是 因为 有 你 的 帮助 , 我 不 可能 完成 了 这个 工作 . +This is Room 839 . 这 是 839 号 房间 . +She likes taking pictures . 她 喜欢 拍照片 . +I ordered several books from England . 我 从 英国 订 了 好几 本书 . +Tom wants to sit down . 汤姆 想 坐下 . +The dog saved the girl is life . 這 隻 狗 救 了 這 個 小女孩 的 命 . +My mother bought two bottles of orange juice . 我 母亲 买 了 两瓶 橙汁 . +I think you should do that before you go home today . 我 認為 你 該 在 今天 回家 前 做 . +What do you think I was doing before ? 你 觉得 我 之前 在 做 什么 ? +Turn on the radio . 打开 收音机 . +He took it literally . 他 按照 字面上 的 意思 . +Her hair is long and beautiful . 她 的 頭 髮 長 而 美 麗 . +We have to do our best . 我们 应该 做到 最好 . +Tom took out his key and opened the door . 汤姆 掏出 钥匙 开了门 . +He came at three in the afternoon . 他 在 下午 三點鐘 的 時候 來 了 . +I have two cars . 我 有 两辆车 . +May I play the piano ? 我 可以 彈 鋼琴 嗎 ? +I am free today . 我 今天 有空 . +Are you looking for something ? 您 在 找 什么 吗 ? +At first , I had no idea why . 起初 我 不 知道 為 什麼 . +Do not make noise when you eat soup . 當 你 喝 湯 的 時候 不要 發出 聲音 . +Do you have your driver is license ? 你 有 駕駛 執照 嗎 ? +We all fell asleep . 我们 都 睡着 了 . +It is so different now . 现在 真是 不 一样 了 . +Is there anything else you 'd like ? 还有 什么 想要 的 吗 ? +What do you want ? 你 想要 什么 ? +He had his hair cut short . 他 把 头发 剪短 了 . +Leaves begin to fall in October . 樹葉 在 十月 開始 掉落 下來 . +He is a good tennis player . 他 是 个 网球 高手 . +He has made a fortune through hard work . 他 通过 努力 挣 了 大笔 钱 . +Beware of the dog ! 小心 狗 ! +It will not take much time . 不 會 花 很多 時間 的 . +His mother did not want to do it . 他 的 母親 不想 做 . +I made him paint the house . 我 讓 他 刷 房子 . +Why did you say such a thing ? 你 為 什麼 說 了 這樣 的 事 ? +Please be ready in fifteen minutes . 请 在 15 分钟 内 准备 好 . +I was afraid I might be late . 我 怕 我 可能 遲 到 了 . +He tries . 他 来 试试 . +I can swim very fast . 我 游泳 可以 游得 很快 . +We went down a river by canoe . 我們 乘著 獨 木舟 向河 的 下游 而 行 . +Tom drank his orange juice . Tom 喝 了 他 的 柳橙汁 . +I will join you all later . 我 晚会 加入 你们 . +Turn the radio up a little . 把 收音 機 開 大聲 一點 . +Tom looks pale . 湯姆 看 起來 很 蒼白 . +Tom is miserly . 汤姆 很小 气 . +My father will come home at the end of this week . 我 爸爸 会 在 这 周末 回家 . +If you get sleepy , just tell me . 困 了 的话 就 说 哦 . +Tell me how he got it . 告诉 我 他 怎么弄 到 的 . +He likes to listen to the radio . 他 喜歡 聽 收音 機 . +Do you think I am made of money ? 你 以为 我 造钱 啊 ? +Are you coming next week ? 你 下週 來 嗎 ? +She gave me a watch . 她 給 了 我 一支 手 錶 . +Throw the ball back to me . 把 球 丟 還 給 我 . +Books are for people who wish they were somewhere else . 書 是 為了 那些 希望 自己 在 另 一個 地方 的 人 . +Close your eyes . 闭 上 你们 的 眼睛 . +They live on the other side of the road . 他們 住 在 路 對 面 . +How is everything at work ? 工作 怎么样 ? +Did you have a good time yesterday ? 你 昨天 玩 得 開心 嗎 ? +I heard Tom muttering something in French . 我 听到 汤姆 在 用 法语 嘀咕 些 什么 . +He did not get up early . 他 没有 早起 . +Is it far ? 遠 嗎 ? +No matter what happens , I am prepared . 不管 發生 什麼 事 , 我 都 準備 好 了 . +What do you think of Japanese food ? 你 覺得 日本料理 怎麼樣 ? +I know the truth . 我 知道 真相 . +Do not put the cart before the horse . 不要 把 馬車 放在 馬 的 前面 . +Ladies and gentlemen , due to an accident at the airport , our arrival will be delayed . 女士们 , 先生 们 , 由于 机场 的 意外 情况 , 我们 的 着陆 将 被 推迟 . +I want to buy a pair of pants . 我 想 買 條 褲子 . +Tom cleared his throat and continued to speak . 汤姆 咳嗽 了 一下 然后 接着 讲 . +How did you know that was my favorite one ? 你 怎麼 知道 那 是 我 最 喜歡 的 ? +I am an electrician . 我 是 一名 電工 . +Can you stay for a while ? 你 能待 一会 吗 ? +What type of food do you like ? 你 喜欢 什么样 的 食物 ? +We have not done well . 我们 没有 做好 . +They had their houses destroyed by a strong earthquake . 他們 的 房屋 被 強烈 地震 摧毀 了 . +A day without laughter is a day wasted . 没有 笑声 的 一天 肯定 是 最为 虚度 的 一天 . +I am not sure what is going on . 我 不 清楚 發生 了 甚麼 . +She will make him a good wife . 她 会 是 他 的 好 妻子 . +I could not afford to buy a bicycle . 我 买不起 自行车 . +You will succeed if you try . 如果 你 尝试 的话 , 你 会 成功 的 . +Please think about it . 請 你 考慮 考慮 . +I worked all this week . 这周 我 一直 在 工作 . +Let is find out who sent this to us . 讓 我們 查查 誰 送 給 我們 這個 . +He accepted my idea . 他 接受 了 我 的 主意 . +Look at me with your books closed . 把 你 的 書 閤 起 來 看 著 我 . +I have been busy since yesterday . 我 從 昨天 開始 一直 忙著 . +I want you to sleep on it . 我 想要 你 睡 在 它 上边 . +We will be in Boston for another three weeks . 我們 還 會 在 波士 頓待 三個 月 . +Thanks for telling me the truth . 感谢 告诉 我 真相 . +How much is the bus fare ? 公車 票價 多少 錢 ? +I do not think he will be able to do it by himself . 我 不 觉得 他 自己 一个 人会 做到 . +We will wait and see what happens . 我們 要 等等 看會 發生 甚麼 . +They should all be fired . 他們 全部 都 應該 被 開除 . +Please show me what to do next . 請 讓 我 看看 下 一步 該 做 什麼 . +I am curious . 我 很 好奇 . +The bell has not rung yet . 钟 还 没响 . +About how long will it take to get there by bus ? 搭 公車 到 那裡 大約要 花 多久 的 時間 ? +Tom will never see you again . 汤姆 永远 也 不会 见 你 了 . +I think that it is true . 我 認為 這 是 真的 . +What is the climate there like ? 那里 的 气候 怎么样 ? +I talked to him on the telephone yesterday night . 我 昨晚 跟 他 通电话 了 . +Keep your mouth shut and your eyes open . 闭嘴 看着 . +I would like to get married to someone like you . 我 想 跟 你 这样 的 人 结婚 . +She looks blue for some reason . 由于 某些 原因 , 她 看起来 很 忧伤 . +I may have made a mistake . 我 可能 搞错 了 . +My father insisted that I should go to see the place . 我 爸爸 坚持 要 我 去 那 地方 看看 . +My brother is a professor . 我 哥哥 是 教授 . +Next time it will be my turn to drive . 下次 该轮 到 我 开车 了 . +Tom did not deny he did that . 汤姆 没有 否认 他 做 的 事情 . +Tom thinks I am too young . 汤姆 认为 我 太 年轻 . +This bike needs to be repaired . 这辆 自行车 需要 修理 . +Let me show you around our house . 讓 我 帶 你 四處 看看 我們 的 房子 . +Gold is far heavier than water . 金子 比水 重得 多 . +We are going to do that right away . 我們 馬 上 就 去 做 . +Tom has written to me . 汤姆 写给 我 了 . +I do not think that he is right . 我 不 認為 他 是 對 的 . +Please wash it . 请 清洗 它 . +He went there ten years ago . 他 十年 前去 了 那 ‘ 里 . +Someone yelled for help . 有人 呼救 . +Do you trust her ? 你 相信 她 嗎 ? +I did not catch your last name . 我 没 听到 您 的 姓 . +This amount includes tax . 这个 价格 含 了 税 . +She is always at the bottom of the class . 她 总是 在 班上 拿 倒数 第一 . +I managed to repair my car by myself . 我 自己 搞定 , 修好 了 我 的 车 . +How was your summer vacation ? 暑假 過 得 如何 ? +My grandmother made me a new dress . 我 的 祖母 做 了 一套 新 衣服 給 我 . +Will it be much longer ? 還要 很 久 嗎 ? +Give it to me , please . 請 把 它 給 我 . +I found it by chance . 我 偶然 找到 了 它 . +Can you move this desk by yourself ? 你 能 自己 搬 這 張 桌子 嗎 ? +I bought her a watch . 我 買 了 一支 手 錶 給 她 . +It is a pity when somebody dies . 有人 死 了 的 时候 真是 遗憾 . +Tom does not like to discuss his work . 汤姆 不 喜欢 谈论 他 的 工作 . +We must observe the rules . 我们 必须 遵守规则 . +Do you like playing volleyball ? 你 喜歡 打 排球 嗎 ? +My mother washes clothes every day . 我 媽媽 每天 洗衣服 . +There is not a moment to waste . 一刻 也 不 浪費 . +The mouse ran into the hole . 這 隻 老鼠 跑 進 洞 裡 . +I understood everything Tom said . 我 明白 湯姆 所 說 的 一切 . +Do you know where Tom lives ? 你 知道 汤姆 住 哪儿 吗 ? +Tom wanted to follow in his father is footsteps . 汤姆 想 追随 他 父亲 的 脚步 . +You must build up your courage . 你 一定 要 鼓起勇气 . +How about something cold to drink ? 喝 點 冷 飲 怎樣 ? +I still do not think I am wrong . 我 還 是 不 認為 我 錯 了 . +Please divide the pizza into three parts . 請 把 披薩 分成 三份 . +I bathe every day . 我 每天 都 洗澡 . +Are they treated fairly ? 他们 受到 公正 对待 了 吗 ? +Which team do you think will win ? 你 覺得 哪 支球 隊會 贏 ? +I have had just about enough of her . 我 真的 受夠 了 她 . +May I go now ? 我 现在 能 去 了 吗 ? +The children slid down the bank . 孩子 們 滑下 岸邊 . +Give my love to your kids . 替 我 向 你 的 孩子 們 問 好 . +I had a feeling this might happen . 我 早就 有感 覺到 這 可能 會 發生 . +He told us such a funny story that we all laughed . 他 给 我们 讲 了 一个 有趣 的 故事 , 我们 都 笑了起来 . +I found this book interesting . 我 觉得 这 本书 很 有意思 . +I do not want to look stupid . 我 不想 看起 來 傻 . +I am not greedy . 我 不 貪婪 . +Spring is my favorite season . 春天 是 我 最 喜歡 的 季節 . +The girl playing the piano is my sister . 弹钢琴 的 女孩 是 我 妹妹 . +I want you to read this letter . 我 想 你 读 一下 这 封信 . +The service here is awful . 這裡 的 服務 很 糟糕 . +Is this your family ? 这 是 你 的 家人 吗 ? +He likes to build model planes . 他 喜歡 建造 模型 飛機 . +Tom is a good cook . 汤姆 是 个 好 厨师 . +My daughter loves jumping rope . 我 女兒 喜歡 跳 繩 . +I must hand in the report today . 我 今天 必須 交報 告 . +History is not his major subject . 历史 不是 他 的 主修 课 . +Am I allowed to use this ? 能 让 我 用 这个 吗 ? +He is afraid of the dog . 他 怕 那 只 狗 . +Your pen is better than mine . 你 的 笔 比 我 的 好 . +I am sorry , I left my homework at home . 抱歉 , 我 把 作业 落 在 家里 了 . +This has nothing to do with me . 此事 与我无关 . +He should have bought a used car . 他 應 該 買 一輛 二手 車 的 . +Are you free tomorrow afternoon ? 你 明天 下午 有空 吗 ? +I asked Tom to close the door . 我 要求 湯姆 關門 . +The carpenter brought his tools along . 木匠 带著 他 的 工具 . +She was out of Japan last year . 去年 她 离开 了 日本 . +I know everything that you have done . 我 知道 你 做 的 所有 事 . +Africa is a continent , but Greenland is not . 非洲 是 一個 大陸 , 而 格陵蘭 不是 . +Dead men tell no tales . 死 人 不 會 告密 . +There is little water in the pond . 這個 池塘 裡 的 水 很少 . +That actually makes a lot of sense . 那个 相当 能 说 得 通 . +Did you miss me ? 你 想 我 了 ? +She looked sad . 她 看上去 很 伤心 . +She was very surprised at the news . 她 对 那个 消息 非常 惊讶 . +I ran into Mary at a party last week . 上星期 在 一次 派 對 中 我 遇到 了 瑪麗 . +Kuala Lumpur is worth visiting . 吉隆坡 值得 一 遊 . +Frankly speaking , he is wrong . 坦率地 说 , 他 错 了 . +A hundred people were hurt in a train wreck . 一百多个 人 在 一个 火车 事故 中 受了伤 . +People in the United States speak English . 在 美國 的 人 說 英語 . +Ask him if he will attend the meeting . 问 他 会 不会 来 参加 会议 . +There is a clock on the wall . 牆 壁上 掛著 一個 時鐘 . +I do not have much time . 我 时间 不多 . +He is not very good at mathematics . 他 不是 很 擅長 數學 . +I like jogging . 我 喜欢 跑步 . +Are you done ? 你 做好 了 嗎 ? +Tom is good , but not good enough . 汤姆 好 , 但 不够 好 . +How tall are you ? 你 多 高 ? +Beethoven was a great musician . 貝多芬 是 一個 偉大 的 音樂家 . +I am used to staying up late . 我 习惯 晚睡 . +She goes to night school . 她 上 夜校 . +He already knew about it . 他 已经 意识 到 它 了 . +I do not know anything about him . 我 不 知道 任何 有關 他 的 事 . +I love elderberry juice . 我 愛 接骨木 果汁 . +I was not aware that Tom was sick . 我 還 不 知道 湯姆 生了病 . +Languages are not his forte . 语言 不是 他 的 强项 . +Do you like school ? 您 喜歡 學校 嗎 ? +He is sometimes absent from school . 他 偶爾 逃學 . +I want to go home . 我 要 回家 . +You should prepare for the worst . 你 应该 作 最 坏 的 准备 . +What will you have ? 你 将 拥有 什么 ? +When will you leave ? 你 什麼 時候 離開 ? +Would you like me to explain it ? 你 要 我 解釋 一下 嗎 ? +I am afraid you have the wrong number . 我 恐怕 您 打错 电话 了 . +We bought some vegetables and fish at the market . 我们 在 市场 上买 了 些 蔬菜 和 鱼 . +I want to go abroad next year . 我 明年 想去 國外 . +We missed you . 我們 想 你 . +Will you play tennis after school ? 你 放學 後 會 去 打 網球 嗎 ? +Please wait on him first . 請 先 等 他 . +The children go to school in the morning . 孩子 们 早上 去 学校 . +It is an easy victory . 這 是 一個 輕 鬆 取得 的 勝利 . +You can go or stay , as you wish . 你 走 或 留 , 随 你 高兴 . +Fish is sold by the pound here . 魚 在 這裡 是 以 磅 為 單位 來 出售 . +He made a journey around the world . 他 環遊 世界 旅行 . +Do not play in the road . 別 在 馬 路上 玩 . +We can not escape . 我們 逃不出 去 . +When do you eat dinner ? 你 几点 吃 的 晚饭 ? +I always try to tell the truth . 我 總是 試著 說實話 . +I saw five men . 我 看到 了 五個 男人 . +Tom goes for a walk every morning . Tom 每天 早上 去 散步 . +Are you crying ? 你 在 哭 嗎 ? +I want to go to Africa someday . 有 一天 我 要 去 非洲 . +Have you ever been hit by a car ? 你 被车撞 过 吗 ? +I could hear birds singing outside my window . 我 能 听见 鸟 在 窗外 歌唱 . +There were not any roses in the garden . 花園 裡 沒有 任何 玫瑰 . +Let me know when you need me again . 再 需要 我 就 告诉 我 . +Could you tell me ? 您 会 告诉 我 吗 ? +Come again next week . 下周 再來 . +I have decided to go a little further . 我 准备 再 前进 一点 . +Tom told Mary she could not do that . 湯姆 告訴 瑪麗 她 不能 做 那件事 . +How complex is it ? 它 有多 複 雜 ? +No matter what happens , I am not changing my mind . 無論 如何 , 我 不 會 改變 我 的 想法 . +You did not need to hurry . 你 不 需要 著急 . +He sat on the bench . 他 坐在 長 凳 上 . +I had a long talk with her . 我 和 她 有 一段 長 談 . +My dream is to become a teacher . 我 的 夢 想 是 成為 一名 教師 . +Why are you just sitting there ? 你 为什么 就 站 在 这里 ? +Why worry about Tom ? 為 什麼 要 擔心 Tom ? +Where is the ticket window ? 售票 窗口 在 哪裡 ? +Where are my books ? 我 的 書 在 哪 ? +I believe you . 我 相信 你 . +My grandfather usually eats breakfast at six . 我 的 祖父 通常 在 六點鐘 吃 早餐 . +My right hand is numb . 我 的 右手 麻 了 . +We hope you will enjoy the show . 我們 希望 你 喜歡 這個 表演 . +We were granted the privilege of fishing in this bay . 我们 得到 了 在 这个 海湾 内 捕鱼 的 特权 . +He is out taking a walk . 他 出去 散步 . +I think that Tom might not want to do that . 我 认为 汤姆 可能 不想 那样 做 . +The ambulances carried the injured to the nearest hospital . 救护车 把 伤者 送往 了 最近 的 医院 . +The legal system in America is the world is finest . 美國 的 司法制度 是 世界 上 最好 的 . +They wanted a wedding picture in front of the Eiffel Tower . 他們 想 在 艾菲爾 鐵塔 前面 拍張 結 婚照 . +I do not think I like this game very much . 我 觉得 我 不 太 喜欢 这 游戏 . +Are you still winning ? 你 還 在 贏 嗎 ? +I know you are not comfortable . 我 知道 你 不 舒服 . +His lectures are very long . 他 的 講座 很 長 . +It is too large . 它 太 大 了 . +How come you did not say anything ? 你 為 什麼 都 不 說 話 ? +Try it . 试试 吧 . +Let is leave the decision to Tom . 讓 我們 留給 他 作 決定 . +This is the worst movie I have ever seen . 这 是 我 看过 的 最 差劲 的 电影 了 . +The leaves will turn red in two or three weeks . 再 过 两 三周 , 树叶 就 会 变 红 吧 . +It is my CD , is not it ? 這 是 我 的 CD , 不是 嗎 ? +He leaves for China tomorrow . 他 明天 出发 去 中国 . +You are really beautiful . 你 真的 很漂亮 . +I do not want to hear about it again . 我 不想 再 聽到 這事 . +I do not think that he is sincere . 我 不 觉得 他 很 诚实 . +What time do you open ? 你们 什么 时候 开始 营业 ? +How many people can do that ? 有 多少 人 能 做 ? +Tom avoids Mary whenever possible . 湯姆 盡量 避開 瑪麗 . +Mary is very cute . 玛丽 非常 可爱 . +Tom will try and stop me for sure . 汤姆 一定 会试 着 阻挡 我 . +A lot of soldiers were killed here . 許多 士兵 在 這裡 陣亡 . +She played a tune on the piano . 她 在 鋼琴 上彈 了 一首 曲子 . +Are you allergic to any medicine ? 你 對 任何 藥物 過 敏 嗎 ? +Give me my beer . 把 我 的 啤酒 給 我 . +I remember writing to her . 我 记得 给 她 写过信 . +Do not be afraid to make mistakes when speaking English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +I have not finished breakfast yet . 我 還 沒 吃 完 早 飯 . +An apple sits on the table . 桌上 有个 苹果 . +I do not want to go to Tom is birthday party . 我 不想 去 汤姆 的 聚会 . +You are good . 你 很 好 . +Tom sells T @-@ shirts at a 30 percent discount . 汤姆 以 七折 销售 T恤 . +What is the weight of your suitcase ? 你 的 行李 多重 ? +He is not an American . 他 不是 美国 人 . +I am glad that I did not buy something like this . 我 很 高兴 没有 买 这样 的 东西 . +I will phone you every night . 我 每晚 都 給 你 打 電話 . +The bird was covered with white feathers . 鸟儿 身上 铺满 了 白色 的 羽毛 . +I had my wallet stolen . 我 的 钱包 被 偷 了 . +Does the letter need to be written in English ? 這 封信 需要 用 英文 寫 嗎 ? +Please feed the dog every day . 请 每天 喂 一下 狗 . +That is no big deal . 那 没什么 大不了 的 . +I think you should leave as soon as you can . 我 觉得 你 应该 赶紧 走 . +He is a very imaginative writer . 他 是 非常 有 想像力 的 作家 . +I have to study for the test . 我 必須 讀書 準備 考試 . +He was busy with his homework . 他 忙 於 做功 課 . +To tell you the truth , this is a little too spicy for me . 说实话 , 这 对 我 来说 有点 太 辣 了 . +My mother made me a sweater . 我 媽媽 為 我 做 了 一件 毛衣 . +Tell me your story . I am all ears . 告訴 我 你 的 故事 . 我 會 注意 聽 . +He committed suicide . 他 自杀 了 . +This one is still alive . 這 一個 還 活著 . +Your plan requires a large amount of money . 你 的 计划 需要 一大笔钱 . +Call me if you need anything . 需要 什么 就 给 我 打电话 . +The wind is cold today . 今天 刮 冷风 . +Why did you get up so early ? 你 為 什麼 這麼 早起 ? +The train arrived on schedule . 火车 准时 到 了 . +People should understand that the world is changing . 人 应该 明白 世界 在 变 . +I wish I could figure out how to disable comments on my blog . 但愿 我 能 找到 在 我 的 博客 上 屏蔽 评论 的 办法 . +They are discussing the problem . 他們 正在 討論 這個 問題 . +He is an old friend of mine . 他 是 我 的 一位 老朋友 . +Tom is the only boy in our class . 湯姆 是 我們 班裡 唯一 的 男孩 . +You have made a mistake . 你 犯 了 个 错误 . +Do you like pirate movies ? 你 喜欢 盗版 电影 吗 ? +I know people think I am odd . 我 知道 人們 認為 我 古怪 . +He took the wrong bus by mistake . 他 搭错 了车 . +Furniture made of good materials sells well . 用 优质 材料 做 的 家具 卖 得 很 好 . +I did not really feel like going out . 我 不是 很 想 出去 . +Who were they talking about ? 他们 在 讨论 谁 ? +She greeted him waving her hand . 她 揮著 手 向 他 打招呼 . +Was this letter written by Mary ? 这 封信 是 玛丽 写 的 吗 ? +This decision is final . 这 是 最终 决定 . +I hope that you give this book a read . 我 希望 你 讀讀 這 本書 . +He has his own room . 他 有 自己 的 房间 . +He visited her house the other day . 他 前 幾天 拜訪 了 她家 . +Money makes the world go round . 金钱万能 . +Are you going to visit any other countries ? 你 会 去 访问 其他 国家 吗 ? +I got this bicycle for nothing . 我 免費 得到 這輛 自行 車 . +Do you really believe in ghosts ? 你 真的 相信 鬼 嗎 ? +There is no fire without smoke . 沒有 不 冒 煙 的 火 . +Terrific ! 很棒 ! +I am sorry for the late response . 我 很 抱歉 回复 晚 了 . +You should make notes . 你 应该 做 笔记 . +If it is raining tomorrow , we will go there by car . 如果 明天 下雨 , 我们 就 坐车去 那儿 . +I suspect they water down the beer in that pub . 我 怀疑 那 家 酒馆 的 啤酒 兑水 了 . +He plays golf every weekend . 他 每個 週末 打 高爾夫 球 . +There are fifty members in this club . 这个 俱乐部 里 有 50 个 会员 . +I prefer cats to dogs . 與 狗 相比 , 我 更 喜歡 貓 . +This is a good book , but that one is better . 這 是 本 好 書 , 但 那 本 更好 . +Is everything going OK at work ? 工作 一切顺利 吗 ? +He came to Tokyo at the age of three . 他 三岁 就 到 东京 了 . +How far is it to the airport ? 到 机场 有 多 远 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 很 難 使用 的 弓 . +Is that true ? 真的 ? +I just wanted somebody to help me . 我 只是 想 有 个人 来 帮助 我 . +This boat has six oars . 這 艘 船 有 六個 槳 . +He said he was tired , so he would go home early . 他 说 他 累 了 , 所以 他 想 早点 回家 . +I am sick of eating fast food . 我 受够 吃快餐 了 . +It is possible that you do not know this . 你 有 可能 不 知道 这事 . +It is very hot in this room . 這間 房裡 很 熱 . +English has now become the common language of several nations in the world . 英语 现已 成为 世界 上 许多 国家 的 通用 语言 了 . +You know as well as I do that Tom hates Mary . 你 我 都 知道 湯姆 恨 瑪麗 . +He is not here yet . 他 還 沒到 這裡 . +Go on home . 回家吧 . +I thought that Tom would sleep until noon . 我 认为 汤姆 会 睡到 中午 . +I will give you a ride . 我 會 載 你 一程 . +How about some more roast beef ? 再 多一些 烤牛肉 怎麼樣 ? +The firemen soon put out the fire . 消防 隊員 很快 就 把 火 撲 滅 了 . +I do not know where you want to go . 我 不 知道 你 要 去 哪 . +It is a piece of cake . 小菜一碟 . +To my surprise , he easily came up with a plan . 令 我 吃惊 的 是 , 他 很 容易 就 想出 了 一个 方案 . +I admit that he is right . 我 承认 他 是 对 的 . +When will that new school open ? 那 是 新 学校 什么 时候 开学 ? +Here is a photograph of my family . 這裡 有 一張 我 全家 的 照片 . +He finally became the president of IBM . 他 終 於 成 了 IBM 的 總 經理 . +Is it OK for me to come in now ? 我 现在 进来 方便 么 ? +We happened to get on the same bus . 我们 恰巧 上 了 同 一辆 公交车 . +Let me think about it . 让 我 想一想 . +Comb your hair before you go out . 在 你 出門 之前 , 把 你 的 頭 髮 梳 一 梳 . +For the time being , my sister is an assistant in a supermarket . 目前 , 我 妹妹 在 一家 超市 当 收银员 . +He takes a walk every morning . 他 每天 早上 都 散步 . +Sammy Davis was an excellent singer . 山米 戴維斯 是 一個 優秀 的 歌手 . +Leave me . 让 我 一个 人 呆 会儿 . +I think I made a mistake . 我 认为 我 犯 了 个 错 . +Students generally like a teacher who understands their problems . 通常 学生 们 喜欢 理解 他们 问题 的 老师 . +I did not get the joke . 我 没 明白 那个 笑话 . +There was a minute of silence and then everybody started screaming . 有 一分钟 的 沉默 , 然后 每个 人 都 开始 尖叫 . +I had a neighbor who was blind . 我 有個 盲鄰 居 . +It happened a long time ago . 这 事 发生 在 很多年 以前 . +Our refrigerator is not working . 我們 的 冰箱 壞 了 . +If he is innocent , then his wife is guilty . 如果 他 是 清白 的 , 那他 妻子 就 有罪 . +Wo not you have some coffee ? 你 不要 點 咖啡 嗎 ? +I bought two loaves of bread . 我 買 了兩條 麵 包 . +I know who likes Tom . 我 知道 谁 喜欢 汤姆 . +No matter how hard I try , I can not do it any better than she can . 无论 我 多么 努力 尝试 , 我 都 无法 做到 比 她 更好 . +Let me know . 讓 我 知道 . +Tom might be a vegetarian . 湯姆 可能 是 素食者 . +Almost all the students like English . 幾乎 所有 的 學生 喜歡 英語 . +Tom should be fired . 湯姆 應 該 要 被 開除 . +She complained about my low salary . 她 抱怨 我 的 工資 低 . +I saw five men . 我 看见 五个 男人 . +I will not stay here for long . 我 不会 在 这里 呆 很久 . +I wish I could go . 我 希望 我 可以 去 . +Thank you all the same . 同样 感谢 你 . +You should know it . 你 應該 知道 的 . +I always walk to school . 我 總 是 走路 到 學校 . +I waited an hour for my friend . 我 等 我 的 一个 朋友 等 了 一 小时 . +It looks like Tom will do what we have asked him to do . 看來 湯姆會 按 我們 要求 的 去 做 . +I feel like getting some fresh air . 我 想要 呼吸 一些 新鮮 空氣 . +He has three brothers . 他 有 三名 兄长 . +I do not agree with you on this point . 这 一点 我 不 赞成 你 . +The game ended at nine o 'clock . 比賽 在 九點鐘 結束 . +I will miss you when you are gone . 你 走 後 , 我 會 想念 你 的 . +Could you do it ? 你 能 做到 嗎 ? +I advise you to give up drinking . 我 勸 你 戒酒 . +Tom bought a ticket . 汤姆 买 了 张 票 . +I go to church every day . 我 每天 上 教堂 . +It looks like an apple . 看起来 像 个 苹果 . +Why do I have to do that ? 我 为什么 一定 要 那么 做 ? +I am waiting for you to finish your homework . 我 等 你 把 作業 做 完 . +He was arrested for drunken driving . 他 因 酒 後 駕駛 而 被捕 . +I need glue . 我 需要 胶水 . +You are drunk . 你 喝醉 了 ! +You have to come with me . 你 必須 跟 我 來 . +The camera will cost at least $ 500 . 這 台 相機 至少 要 花費 500 美元 . +I am sorry , but I really have to go . 我 很 抱歉 , 但 我 必須 走 了 . +Not a day passes without traffic accidents . 交通事故 没有 一天 是 不 在 发生 的 . +Can you tell me where the nearest antique shop is ? 你 能 告诉 我 最近 的 古玩店 在 哪里 吗 ? +It is cool this morning , is not it ? 今天上午 很 涼爽 , 不是 嗎 ? +The girl made an awkward bow . 這個 女孩 做 了 一把 不 稱手 的 弓 . +She may have missed the 7 : 00 train . 她 可能 錯 過 了 七點 的 火車 . +We know everything . 我们 什么 都 知道 . +My father went fishing . 我 父親 去 釣魚 了 . +How long have you been in Japan ? 你 去 了 日本 多久 ? +Would you close the window ? 請 您 把 窗戶 關起 來 好 嗎 ? +Ten houses were burned down . 十間 房屋 被 燒毀 了 . +Bear his advice in mind . 牢 記 他 的 建議 . +Tom looks a bit sick . 湯姆 看來 有 點 不適 . +That man died of lung cancer a week ago . 那个 男人 在 一周 前 死于 肺癌 . +I refuse to be treated like a child . 我 拒绝 被 像 一个 孩子 般 对待 . +How is your work coming along ? 你 的 工作 進行 得 怎麼樣 ? +We sometimes see them . 我們 有 時會 看見 他們 . +Tom is a lot younger than Mary is . 汤姆 比 玛丽 年轻 许多 . +All plants need water and light . 所有 的 植物 都 需要 陽光 和 水 . +Tom saw the exhibits . 汤姆 看 了 展览会 . +He called me a cab . 他 替 我 叫 了 一部 計程 車 . +She recognized the brooch as the one she had lost a few months before . 她 认出 那 枚 胸针 是 她 几个 月 前 丢失 的 . +Swimming makes your legs stronger . 游泳 使 腿部 强健 . +When it stops raining , let is go for a walk . 等 雨 停 了 , 我们 去 散步 吧 . +He was laughed at by his friends . 他 被 他 的 朋友 嘲笑 了 . +Tom lived in Japan for ten years . 湯姆 住 在 日本 十年 了 . +After you have read it , give the book back to me . 在 你 讀 完 後 , 把 書 還 給 我 . +Tom used to live near Mary . 汤姆 以前 跟 玛丽 住 得 近 . +They give good service at that restaurant . 那家 餐館 提供 良好 的 服務 . +All we need is water . 我们 需要 的 只有 水 . +I wonder if Tom can help us . 我 不 知道 湯姆 能 不能 幚 我 們 . +I have nothing to complain about . 我 沒有 什麼 可 抱怨 的 . +I did not know where it came from . 我 不 知道 它 是从 哪里 来 的 . +There is something in your hair . 你 头发 上 粘着 什么 东西 . +He is eligible for the presidency . 他 有 資格 當選 總統 . +She carried that habit to her grave . 她 到 死 都 改不了 那個 習慣 . +I do not think that it is going to be easy to find Tom . 我 认为 , 要 找到 汤姆 可不 容易 . +Where can we make a phone call ? 我們 能 在 哪裡 打 電話 ? +I talked to her . 我 跟 她 谈 了 话 . +I do not think that this is a good idea . 我 觉得 这 主意 不行 . +I do not care for eggs . 我 不 喜欢 鸡蛋 . +I played catch with my father . 我 和 我 爸爸 玩 接球 . +We were surprised to hear the news . 我們 聽到 這個 消息 很 驚訝 . +The snow was knee deep . 積 雪深 及 膝蓋 . +All this is new to me . 这 对 我 来说 全 是 新 的 . +We took turns driving . 我們 輪流 開車 . +She has the large house to herself . 她 給 自己 一間 大房子 . +You are the only person I can trust . 你 是 我 唯一 可以 信任 的 人 . +Do you know Tom is address ? 你 有 汤姆 的 住址 吗 ? +Have you seen my glasses anywhere ? 你 曾 在 哪裡 看到 過 我 的 眼鏡 嗎 ? +No one was late . 没有 人 迟到 . +She went to the hospital by taxi . 她 搭計 程車 去 醫院 了 . +Please show me your bag . 請 讓 我 看看 你 的 袋子 . +Are you writing a letter ? 你 在 写信 吗 ? +He seldom comes to see me . 他 很少 来看 我 . +He is always a little irritable in the morning . 他 早上 总是 有点 脾气 暴躁 . +There is no more salt . 沒有 再 多 的 鹽 了 . +This is a present for you . 這 是 給 你 的 禮物 . +Tom would not dare show his face around here again . 汤姆 不敢 再 到 这里 露面 . +In Esperanto there are only 16 grammar rules . 世界 語 只有 16 個 語法 規則 . +What are your thoughts on this ? 你 觉得 这个 怎么样 ? +It is better to teach someone how to fish than to give someone a fish . 授 之 以 鱼 , 不如 授 之 以 渔 . +I feel a whole lot better today . 我 今天 感觉 好多 了 . +My dream is to become a pilot . 我 的 梦想 是 成为 一名 飞行员 . +The company suffered a loss of one billion yen last year . 那 家 公司 去年 亏损 了 10 亿日元 . +Do not ever touch my things again . 不要 再 碰 我 的 东西 . +I did not know he drank so much . 我 不 知道 他 喝 那么 多 酒 . +I retired last year . 我 去年 退休 了 . +The room has a seating capacity of 200 . 这个 房间 能 容纳 200 人 . +Can you guess how old I am ? 你 能 猜到 我 的 年龄 吗 ? +It is a basic human right . 它 是 基本 人权 . +The fox and the bear lived together . 這 隻 狐狸 和 這 隻 熊 一起 生活 了 . +It is still too early to get up . 時間 還 早 不必 這麼 早 起床 . +There are fifty states in the United States . 美国 有 50 个 州 . +I will call you tomorrow . 明天 我 給 你 打 電話 . +Who is in charge of the office while the boss is away ? 在 主任 不在 的 时候 , 办公室 由谁来 负责 ? +The stars are shining very brightly in the sky tonight . 今晚 的 夜空 星光 非常 明亮 . +They must have had an accident . 他們 一定 發生 了 意外 . +A good many people have told me to take a holiday . 很多 人 都 跟 我 說 要 我 休假 . +I kept on singing . 我 继续 唱歌 . +Tom loves to sing . 湯姆愛 唱歌 . +There is a path through the wood . 有 一個 穿 過 樹林 的 小路 . +That is my younger sister is photograph . 那 是 我 妹妹 的 照片 . +I heard him go down the stairs . 我 聽見 了 他 下樓 . +In Japan , the new school year begins in April . 日本 的 新學 年 在 四月 開始 . +What made her do so ? 为什么 她 要 做 这种 事情 呢 ? +Tom should be happy . 汤姆 应该 高兴 . +Those are my trousers . 那些 都 是 我 的 褲子 . +Tom does not want our help . 湯姆 不想 讓 我們 幫忙 . +He was standing behind the door . 他 站 在 門 後 . +Bern is the capital of Switzerland . 伯恩 是 瑞士 首都 . +How long did it take to do that ? 你 做 那事 用 了 多久 ? +Helen Keller was blind , deaf and dumb . 海倫 凱勒 眼盲 , 耳聾 , 又 啞 . +I am going to change my clothes . 我 要 去 换衣服 . +She considered his offer carefully . 她 仔细 考虑 了 他 的 提议 . +That is what I always say . 那 是 我 經常 說 的 . +I will come and see you one of these days . 这些 天 我会 抽 一天 来看 你 的 . +I guess you are right . 我 猜 你 是 對 的 . +Preventive measures are much more effective than the actual treatment . 预防措施 比 真正 的 治疗 更 有效 . +Many of the immigrants changed their names . 许多 移民 改 了 名字 . +Did anybody ask you to come here ? 有人 叫 你 來 這 嗎 ? +He mistook me for an Englishman . 他 誤以 為 我 是 一個 英國 人 . +How much is this watch ? 这 只 表 多少 钱 ? +No way ! 没门 ! +This rug is handmade . 这块 地毯 是 手工 制作 的 . +What have you been doing recently ? 最近 在 干 些 什么 ? +Mary is very cute , is not she ? 马力 很 可爱 , 不是 么 ? +Tom went there to learn French . 汤姆 去 那里 学法语 . +My brother and I are in the same class . 我 的 兄弟 和 我 在 一个 班级 . +How many Chinese characters can you write ? 你 會 寫 多少 漢字 ? +Tom has no one to turn to for help . 汤姆 没有 能 求助 的 人 . +They settled in Canada . 他们 在 加拿大 安家落户 . +I never played golf . 我 从没 玩 过 高尔夫 . +Taiwanese food is milder than Indian food . 台灣 菜 比 印度 菜 口味淡 . +Maternal love is greater than anything else . 母爱 比 任何 别的 东西 都 伟大 . +You should think before you speak . 你 在 说话 前 应该 先 思考 . +Here goes nothing . 毫無 希望 , 白費 心思 . +In Japan , it rains quite a bit during our rainy season which is from mid @-@ June until mid @-@ July . 在 日本 , 在 我们 的 雨季 常常 下雨 , 雨季 一般 在 六月 中旬 至 七月 中旬 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +I do not think Tom is serious . 我 不 覺得 湯姆 是 認 真的 . +You are irresistible . 你 是 不可 抗拒 的 . +He likes tea . 他 喜歡 茶 . +There is no reason to get angry . 沒有 生气 的 理由 . +God bless America . 上帝保佑 美国 . +He acknowledged his faults . 他 得知 了 他 的 错误 . +Can we speak in the hall ? 我們 能 在 走廊 裡 說 話 嗎 ? +It became quiet again in the forest . 森林 裡 又 再 變 得 安靜 下來 了 . +She is only a child . 她 只是 個 孩子 . +Tom carried the chairs to the next room . 汤姆 把 椅子 拿到 了下 个 房间 . +May I come in ? 我 可以 進來 嗎 ? +You have given me good advice . 你 給 了 我 很 好 的 建議 . +Tom bought a mobile phone . 汤姆 买 了 个 手机 . +A dolphin is a mammal . 海豚 是 哺乳 動物 . +Have you found your contact lenses ? 你 找到 你 的 隱形 眼鏡 了 嗎 ? +Tom knows a lot of stuff about Mary . 汤姆 知道 玛丽 的 很多 事 . +This is my first time . 這 是 我 的 第一次 . +We will leave as soon as you are ready . 你 一 准备 好 , 我们 就 走 . +Tom wanted to be a better teacher . 汤姆 想 做 个 更好 的 教师 . +They forced me out . 他们 迫使 我 出来 . +I lent my friend some money . 我 借给 了 朋友 一些 钱 . +Do you smoke ? 您 吸烟 吗 ? +You are lying . 你 在 撒谎 . +Do you have medical insurance ? 你 有 醫療 保險 嗎 ? +Do I have to answer all of the questions ? 我 需要 回答 所有 問題 嗎 ? +It is been an amazing experience . 这 是 奇妙 的 体验 . +Tom died in an accident . 湯姆 在 一場 意外 中 喪生 . +So , what will you give me ? 那 你 会 给 我 什么 ? +Do not let this information leak out . 不要 让 这些 信息 泄露 出去 . +To tell the truth , I do not agree with you . 实话 说 , 我 不 赞成 你 . +I do not have a cat . 我 没有 猫 . +It is about the size of an egg . 它 的 大小 就 像 雞 蛋 . +I remember seeing her somewhere . 我 記得 在 哪兒 見 過 她 . +Tom applied for the job . 湯姆申 請 了 這份 工作 . +I gather that they will agree with us . 我 猜想 他們 會 同意 我們 的 . +She got out of the car . 她 下 了 車 . +May I have a bus schedule ? 我 可以 有 張 公車 的 時刻 表嗎 ? +I am interested in sports . 我 对 运动 感兴趣 . +Iceland belonged to Denmark . 冰岛 曾 属于 丹麦 . +She will be glad if you go to see her in person . 如果 你 單獨 去 看 她 , 她 會 很 高興 的 . +I arrived at the village before dark . 我 天黑 之前 到达 了 村庄 . +They are 30 minutes behind schedule . 他們 的 進度 較 預期 慢 30 分鐘 . +It is hot today , is not it ? 今天 很 熱 , 不是 嗎 ? +You should talk directly to Tom . 你 应该 直接 跟 汤姆 说 . +The teacher gave us homework . 老师 给 我们 布置 了 家庭作业 . +After winning the Nobel prize , she remained as modest as ever . 獲得 諾貝爾獎 後 , 她 仍 謙虛 如昔 . +It is very uncomfortable . 它 真是 不 舒服 . +I felt hungry after the long walk . 長途 步行 後 我 覺得 餓 了 . +Like a good wine , he improves with age . 就 像 上 好 的 红酒 一样 , 他 随着 年龄 的 增长 变得 越来越 好 . +The room was illuminated with red lights . 這個 房間 被 紅色 的 燈 照亮 了 . +Tom would accept . 湯姆會 接受 . +It is our job to help you . 帮助 你 是 我们 的 工作 . +You have never had a girlfriend , have you ? 你 从 没有 女朋友 , 不是 么 ? +I will boil the potatoes for you . 我 為 你 煮 馬鈴薯 . +He wishes he had gone to the theater last night . 昨晚 他 希望 他 去 了 剧场 . +I think you should see a doctor . 我 覺得 你 應 該 去 看 醫生 . +I love my yellow sweater . 我 很 喜欢 我 的 黄色 套衫 . +The monkey fell from the tree . 猴子 從 樹上 掉 了 下來 . +Astronomy deals with the stars and planets . 天文 學 涉及 恆星 和 行星 . +Do you hear what I am saying ? 你 在 听 我 说 吗 ? +Will you marry me ? 你 愿意 嫁给 我 吗 ? +She smiled at her baby . 她 對著 她 的 孩子 微笑 . +The telephone operator asked the caller to hold on until a connection was made . 电话 运营商 提示 来电 人 等候 接通 . +I am not frightened of anything . 我 不 害怕 任何 東西 . +Your glasses fell on the floor . 你 的 眼镜 掉 在 地上 了 . +I often look up words in that dictionary . 我 经常 用 那 本词典 找 单词 . +He lived to be seventy years old . 他 活到 了 70 歲 . +She was obliged to marry the old man . 她 不得不 和 这个 老 男人 结婚 . +I wish that she would stop smoking . 我 希望 她 戒 煙 . +English is a means of communication . 英語 是 一種 溝通 的 手段 . +Tom has been spending time with Mary . 汤姆 在 玛丽 身上 花 时间 . +I 'd like an orange juice . 我 想要 一杯 柳橙汁 . +If you get sleepy , tell me . 困 了 的话 就 说 哦 . +Tomorrow is Mother is Day . 明天 是 母 親節 . +Why did you stay ? 你 为什么 留下 ? +They welcomed me warmly , so I felt at home . 他们 这么 热情 的 欢迎 我 , 让 我 感觉 家人 一样 . +Come and see me at eleven o 'clock . 您 十一点 时 来看 我 吧 . +He was just on the verge of going to sleep . 他 快要 睡 了 . +He was appointed ambassador to Britain . 他 被 任命 為 駐 英國 大使 . +Tell me about some of the places you have visited . 给 我 说 说 你 去过 的 一些 地方 . +I am not well . 我 身体 不适 . +There is a library in every city in America . 美国 的 每个 城市 都 有 一个 图书馆 . +Are you going to sing ? 你 要 唱歌 嗎 ? +I wonder if he will come tonight . 我 不 知道 他 今晚 會 不 會 來 . +Has Tom come back already ? 汤姆 已经 回来 了 吗 ? +The old man got off the bus . 這位 老人 下 了 公車 . +What do you want for breakfast ? 你 早餐 想要 吃 什麼 ? +The boy made his parents happy . 這個 男孩 讓 他 的 父母 高興 . +Can I go swimming this afternoon ? 我 今天下午 可以 去 游泳 嗎 ? +The cup is on the table . 杯子 在 桌上 . +I wish that I could stop hiccuping . 我 希望 我 能 停止 打嗝 . +Your dog is here . 你 的 狗 在 這 . +Tom still does not know the truth . 汤姆 还是 不 知道 真相 . +Did you make that mistake on purpose ? 你 故意 犯 那個 錯 的 嗎 ? +She came into the room . 她 进 了 房间 . +Everybody is immune to smallpox nowadays . 現今 每個 人 都 對 天花 免疫 了 . +I do not remember . 我 不 記得 了 . +I am cold . 我 冷 . +Everybody knew Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +A parrot can mimic a person is voice . 鸚鵡會 模仿 人 的 聲音 . +Monkeys can learn a lot of tricks . 猴子 能學會 很多 把 戲 . +I am looking forward to hearing from you . 我 期待 收到 您 的 來信 . +His words surprised me . 他 的 話 讓 我 吃 驚 . +How interesting ! 多么 有趣 啊 ! +I need a raise . 我 需要 加薪 . +He is the manager of the marketing department . 他 是 营销部 的 负责人 . +He is flying to Paris tomorrow . 他 明天 將 飛往 巴黎 . +He never gave up hope that he would reach that goal . 他 從 沒 放棄 達成 那個 目標 的 希望 . +Not everyone can be a poet . 不是 每個 人 都 能 成為 詩人 . +Please answer this question for me . 請 回答 我 這個 問題 . +She turned a page of her book . 她 翻 了 一页 书 . +Stop staring . 别 再 盯 着 了 . +Tom likes to sit on the floor . 汤姆 喜欢 坐在 地上 . +Did I say something I should not have ? 我 說 了 什麼 我 不 應 該 說 的 嗎 ? +He crashed his car because someone tampered with the brakes . 他 撞车 是因为 有人 在 刹车 上 做 了 手脚 . +Yesterday I met Mary on the street . 昨天 我 在 街上 遇見 了 瑪麗 . +I plan to buy him a pen . 我 打算 給 他 買 一支 鋼筆 . +How much does a kilo of bananas cost ? 一 公斤 香蕉 多少 錢 ? +Do not be afraid to make mistakes when you speak English . 當 你 說 英語 的 時候 不要 怕 犯 錯 . +That coat may have cost a lot of money , but it is worth it . 那 大衣 可能 花 了 很多 錢 , 但 它 值得 . +Did you see the eclipse yesterday ? 你 看 了 昨天 的 月 蝕 了 嗎 ? +Water is important for people . 水 對 人 是 很 重要 的 . +Could you keep this luggage until 3 p.m. ? 你 可以 保管 這個 行李 直到 下午 三點 嗎 ? +He catches colds easily . 他 很 容易 感冒 . +I have not seen you for a while . 我 好 一陣子 沒 看到 你 了 . +Paris is one of the largest cities in the world . 巴黎 是 世界 上 最大 的 城市 之一 . +I promise that I will do it . 我 保证 我会 做 的 . +Tom , be careful ! 汤姆 , 小心 ! +Tom has a good head on his shoulders . 汤姆 脑子 好使 . +Save yourself . 拯救 你 自己 . +I have two dogs . One is white and the other black . 我 有 两条 狗 . 一条 是 白色 的 , 另 一条 是 黑色 的 . +They are always complaining . 他們 總 是 抱怨 . +Tom learned to ride a bike when he was ten . 汤姆 在 10 岁 的 时候 就学 骑 了 自行车 . +Are you ready ? 你 准备 好了吗 ? +Time flies . 時光 飛逝 . +She resented being called a coward . 她 對 被 稱為 懦夫 很 反感 . +I wrote her a letter every day . 我 一天 又 一天 地 给 她 写信 . +What are you laughing at ? 在 笑 什么 呢 ? +The police accused him of murder . 警方 指控 他 謀殺 . +I should have known better than to call him . 早 知道 我 不 應 該 打 電話 給 他 . +Drive safely . 安全 地 駕駛 . +She would often go to the theater when she was in London . 她 在 伦敦 的 时候 , 曾 经常 去 剧院 . +I have to go to bed . 我 该 去 睡觉 了 . +It is like looking for a needle in a haystack . 这 好比 大海捞针 . +I will go to the library with you tomorrow . 我 明天 要 跟 你 去 圖書館 . +There is also a park there . 那里 也 有 个 公园 . +World War II ended in 1945 . 第二次 世界 大戰 結束 於 1945 年 . +All of them are not present . 他們 所有 的 人 都 沒有 出席 . +Please sit on the sofa and relax . 請 坐在 沙發 上 放 輕 鬆 . +Can you imagine what the 21st century will be like ? 你 能 想象 21 世紀 會 是 甚麼樣 嗎 ? +He did not respond to my question . 他 沒有 回答 我 的 問題 . +I will call you on Monday . 我 會 在 星期一 給 你 打 電話 . +Where is your house ? 您 的 家 在 哪 ? +I do not want to spoil the ending for you . 我 不想 把 結局 提前 透露 給 你 . +I saw a cat running after the dog . 我 见 一只 猫 追 着 狗 跑 . +I must make up for the loss . 我 必须 弥补 损失 . +Tom did not sound too worried . 湯姆聽 起來 不 太 擔心 . +Do you have a bike ? 你 有 自行 車 嗎 ? +Do not forget to sign your name . 不要 忘記 簽上 你 的 名字 . +Why do you need change ? 你 為 什麼 需要 零 錢 ? +She twisted her ankle while she was doing exercise . 她 锻炼 时 扭伤 了 脚踝 . +I can not believe Tom is getting married . 我 不能 相信 汤姆 要 结婚 了 . +I have a dictionary . 我 有 一個 字典 . +I do not know any of the five ladies . 这 五个 女人 我 一个 都 不 认识 . +That looks like blood . 那 看起来 像 血 . +Rain prevented us from taking a walk . 雨 讓 我們 沒有 辦法 去 散步 . +I really did not even notice . 我 真的 根本 沒 注意 到 . +It is fun to learn slang words in foreign languages . 学习外语 里 的 俚语 很 有趣 . +What are those numbers ? 那些 数字 是 什么 ? +I heard someone in the crowd outside the station call my name . 我 聽到 車站 外 的 人群 中 有人 在 叫 我 的 名字 . +Did you come here alone ? 你 是 一个 人 来 这儿 的 吗 ? +Tom had a strange dream . 汤姆 做 了 个 奇怪 的 梦 . +I fell in love with her . 我 爱 上 了 她 . +Do you play any instrument other than the piano ? 除了 钢琴 以外 , 还 会 玩 什么 乐器 吗 ? +Her garden is a work of art . 她 的 花园 是 一件 艺术作品 . +Let is get together again next year . 讓 我們 明年 再 相聚 . +That is nonsense . Nobody but a fool would believe it . 那 是 無稽之談 . 只有 傻瓜 才 會 相信 . +Where was the mistake ? 錯 在 哪裡 ? +We are traveling on a tight budget . 我們 很節 省地 旅行 . +I am a man . 我 是 个 男人 . +I 'd like the sauce on the side . 我 想要 醬料 放在 旁邊 . +Can you eat raw oysters ? 你 能生 吃 牡蠣 嗎 ? +How about eating out this evening ? 今天 晚上 出去 吃 怎樣 ? +Are not you coming to pick me up tomorrow morning ? 你 明天 早上 不来 接 我 吗 ? +What fruit do you like the best ? 你 最 喜欢 什么 水果 ? +They must be waiting for you . 他們 一定 在 等 你 . +It was discovered by Tom . 它 是 由 湯姆 發現 的 . +You two should get married . 你们 两个 应该 结婚 . +I have a stomachache . 我 胃痛 . +We try . 我们 来 试试 . +How long does it take to get to the train station ? 去 火车站 要 多久 ? +What is her name ? 她 叫 什麼 ? +Tom says that he is willing to help . 汤姆 说 他 愿意 帮忙 . +They obtained a yield of 8 percent on their investment . 他們 在 這次 的 投資 中 得到 百分之八 的 收益 . +Tom fell asleep sitting up in the chair . 汤姆 坐在 椅子 上 睡着 了 . +There is a telephone in the hall . 在 大廳 裡 有 一支 電話 . +Where is my wife ? 我 的 妻子 在 哪裡 ? +He is the tallest boy . 他 是 最高 的 男生 . +That is your opinion . 那 是 你 的 想法 . +Do not disturb me while I am studying . 我 学习 的 时候 不要 打扰 我 . +The book was published in 1689 . 这 本书 出版 于 1689 年 . +He came out from behind the curtain . 他 从 窗帘 后 出来 了 . +I opened the door . 我 開 了 門 . +My father made me what I am . 我 父親 讓 我 知道 了 我 自己 是 誰 . +I am old enough to live by myself . 我 年 紀夠 大 了 可以 自己 一個 人 住 . +Thanks for coming over tonight . 謝謝 您 今晚 的 光臨 . +Tom was afraid of you . 湯姆 怕 你 . +I do not want to swim . 我 不想 游泳 . +I do not like homework . 我 不 喜欢 作业 . +Keep going straight . 繼續 直行 . +Where in Australia did you grow up ? 你 在 澳洲 的 哪裡 長大 ? +Exercise is good for your health . 做 运动 有利于 健康 . +The bridge is being repainted . 這 座 橋 正 被 重新 油漆 . +We do not trust Tom . 我们 不 相信 汤姆 . +I do not think that any more students want to come . 我 觉得 不会 有 更 多 学生 想来 了 . +My house is just across the street . 我 的 房子 就 在 對 街 . +The traveler was delighted at the sight of a light in the distance . 发现 了 远处 的 灯光 的 旅行者 欢喜 不已 . +" What time is it ? " " It is ten @-@ thirty . " " 几点 了 ? " " 10 点 半 了 . " +Are these your things ? 這些 是 你 的 東西 嗎 ? +He is very good at playing baseball . 他 垒球 打 得 很 好 . +My laptop crashed . 我 的 笔记本电脑 发生 故障 了 . +She took care of the children . 她 照顧 孩子 . +I can neither confirm nor deny that . 我 即 不能 确认 也 不能 否定 . +Tom has not lost his confidence . 湯姆 還 沒有 失去 信心 . +I study Korean . 我 学 韩语 . +I think she will divorce him . 我 想 她 會 和 他 離婚 . +You did not tell me you worked for Tom . 你 沒 告訴 我 你 為 湯姆 工作 . +Imagine that you have a time machine . 想象 一下 , 假如 你 有 一台 时光 机 . +You live and learn . 你 一面 生活 一面 學習 . +The older we become , the worse our memory gets . 我们 越 老 , 记忆力 就 越 差 . +A blast of cold air swept through the house . 冷 空氣 疾風 席 捲 整 棟 房子 . +Is the post office still closed ? 邮局 还 关 着 门 吗 ? +I hope to see you . 我 希望 能 见到 你 . +She can speak three languages . 她 會 講 三種 語言 . +He is confined to bed now . 他 现在 卧床不起 . +Never give up . 决不 放弃 . +It is business . 公事 公辦 . +I am suffering from a bad cold . 我 患上 了 重感冒 . +My father is in his room . 我 父親 在 他 的 房間 裡 . +Catch him . 抓住 他 . +I think it is time for me to buy a house . 我 想 我 該 是 時候 買間 房子 了 . +That is my money . 那 是 我 的 钱 . +Tom had to go himself . 汤姆 不得不 自己 去 . +I thought you 'd be full after eating that big steak . 我 觉得 吃 完 那块 大 牛排 你 就 饱 了 . +Opinion is divided on this point . 在 這 一點 上意 見 不 一 . +Where did all that self @-@ confidence come from ? 哪 来 那么 大 的 自信 啊 ? +Boys , do not make any noise . 男孩 們 , 不要 製 造 任何 噪音 . +What is your home address ? 你家 的 地址 是 什麼 ? +He studied hard in order to get into college . 他 努力学习 , 为的是 能够 考上 大学 . +You should be more careful . 你 應 該 要 更 小心 . +Tell Tom what you heard . 把 你 听到 的 告诉 汤姆 . +What is learned in the cradle is carried to the tomb . 搖籃裡學 的 帶到 墳墓 . +It was not until I had a baby myself that I knew what mother is love is . 直到 我 自己 有 了 孩子 我 才 明白 了 什么 是 母爱 . +Tom has been on the wanted list for three years . 汤姆 已经 上 通缉令 三年 了 . +I felt a drop of rain on my head . 我 感觉 有 滴雨 落 在 头上 . +It is too noisy in here . 這兒 太 吵 了 . +I am afraid I would not be very good company . 我 恐怕 不是 个 很好 的 伙伴 . +He is afraid of his own shadow . 他 是 个 胆小鬼 . +Do not listen to her . 別 聽 她 的 . +He confused us . 他 把 我們 弄 糊塗 了 . +He does not come here every day . 他 不是 每 一天 都 來 這裡 . +Hug Tom . 抱抱 汤姆 ! +He thinks he is so great . 他 以為 自己 很 了不起 . +Is it love ? 那 是 愛 嗎 ? +It is a very serious illness . 这 是 很 严重 的 病 . +He took off his glasses . 他 摘下 了 眼鏡 . +No one came except Tom . 除了 汤姆 没有 人 来 . +You are not satisfied , are you ? 你 并 不 满意 , 对 吧 ? +We met at the church . 我们 在 教堂 里 遇到 . +You should go and brush your teeth . 你 該 去 洗牙 了 . +He graduated from Cambridge with honors . 他 以 优异 的 成绩 毕业 于 剑桥大学 . +Is someone knocking on the door ? 有人 敲门 吗 ? +You sing like an angel . 你 唱歌 像 天使 . +People can easily tell the difference between them . 人們 可以 很 容易 地 看出 其中 的 差別 . +I tried not to cry . 我 努力 忍住 哭 . +Japan is now very different from what it was twenty years ago . 现在 的 日本 与 二十年 前 大不相同 . +The scenery was beautiful beyond description . 這 風 景美 得 無法 形容 . +Tom should be here any minute . 湯姆 應 該 隨時 就 會 到 這裡 . +He bought a Honda . 他 賣 了 一台 豐田 的 車 . +We talked until two in the morning . 我們 聊到 凌晨 兩點 . +I am afraid there is not any coffee left . 恐怕 已經 沒有 咖啡 了 . +Do not go to extremes . 别 走极端 . +When I awoke , it was snowing . 當 我 醒 來 時 , 天正 下著 雪 . +What do you think of this plan ? 你 覺得 這個 計畫 如何 ? +Are you guys crying ? 你們 在 哭 嗎 ? +Please do not open the windows . 请 不要 开窗 . +Why do you want to kill me ? 你 為 什麼 想 殺 我 ? +I have always wanted to do that . 我 一直 都 想 做 . +You should try this . 你 应该 试试 这个 . +We know that this is impossible . 我們 知道 這 是 不 可能 的 . +What is her job ? 她 做 什么 工作 ? +I want to ride a horse . 我 想 騎 馬 . +I could see that . 我 能 看見 . +" Let is go , " he said to me . " 咱們 走 吧 , " 他 對 我 說 . +He is making preparations for a trip . 他 正在 籌備 一次 旅行 . +A friend of mine asked me to send her a postcard . 我 的 一位 朋友 要求 我 寄 給 她 一張 明信片 . +People love to talk . 人們 就是 愛 說 話 . +It sounds like a good idea . 它 聽 起來 是 個 好 主意 . +He is an aggressive person . 他 是 个 咄咄逼人 的 的 人 . +I could hear doors slamming . 我 可以 聽見 門 砰砰 作響 . +The prisoner was given his freedom . 囚犯 重獲 自由 . +I was going to work here all day . 我 要 在 這裡 工作 一整天 . +I do not have a good feeling about this . 我 觉得 这 没什么 好 . +I wish I had seen her . 但 願 我 見 過 她 . +The doctor will be here in a minute . 醫生馬 上 就 來 . +She spent the weekend by herself . 她 獨 自度 過 了 週末 . +I might not see Tom today . 我 今天 可能 見 不到 湯姆 了 . +We are still doing well . 我们 依然 做 得 很 好 . +Can you ride a horse ? 你 会 骑马 吗 ? +It is expensive to live in Japan . 生活 在 日本 很 昂貴 . +There goes our bus . 我们 的 车 走 了 . +The sun sets earlier in the winter . 在 冬天 , 太阳 下山 比 往常 更早 . +Do you know each other ? 你們 認識 嗎 ? +The boy took the radio apart . 这个 男孩 把 收音机 折 散架 了 . +Do you still want to give me a hug ? 你 還 想 給 我 一個 擁抱 嗎 ? +Do not ever mention that again . 永远 别 再 提 它 了 . +It was difficult for him to hide his pride in his success . 他 很 难 掩饰 对 自己 成功 的 骄傲 . +You have got a strong will . 你 的 意志力 很 強 . +Are you lost ? 你 迷路 了 吗 ? +You can tell us . 你 能 告诉 我们 . +I do not have time for reading . 我 没 时间 阅读 . +The man got away from the city . 這 名 男子 逃離 了 這個 城市 . +OK , you two , follow me . 好 , 你們 兩個 , 跟著 我 . +He helped an old lady get up from her seat . 他 幫 忙 一位 老太太 從 位子 上 站 起來 . +Give Tom any help you can . 给予 汤姆 一些 你 力所能及 的 帮助 . +I look after my grandfather . 我 照顧 我 的 爺爺 . +He helped the lady into the car . 他 幫助 這位 女士 上車 . +This is the best restaurant I know of . 这 是 我 知道 的 最好 的 餐馆 . +I can not afford that . 我 买不起 那个 . +I brush my teeth twice a day . 我 一天 刷 兩次 牙 . +I feel sad every now and then . 我 不時 地 覺得 難過 . +Here is the bill . 这 是 账单 . +I generally agree with her . 我 大致 上 同意 她 . +This is a new experience for Tom . 这 对于 汤姆 是 新体验 . +Hold your horses , young man . 握住 你 的 馬 , 年 輕 人 . +I have a boat . 我 有 一艘 小船 . +Water freezes at 32 degrees Fahrenheit . 水 在 華氏 32 度 結成 冰 . +I guess most of them went home . 我 猜 他們 大多 數 回家 了 . +I should be happy . 我 該 高興 . +He studies much harder than before . 他 比 以前 学 得 更 努力 了 . +Please come over if you have time . 如果 你 有 時間 的 話 , 請 過來 一趟 . +She always gets lost . 她 总是 迷路 . +His speech lasted three hours . 他 的 演讲 持续 了 三个 小时 . +Whether you succeed or not depends on your own efforts . 你 成功 与否 取决于 你 自身 的 努力 . +Will you lend your dictionary to me ? 把 你 的 字典 借 給 我 好 嗎 ? +After I talked with my teacher , I decided to work hard . 跟 我 的 老師 談 過 後 , 我 決定 認真 努力 . +I would like to go to France one day . 我 想 有 一天 能 去 法国 . +This stone is too heavy to lift . 這塊 石頭 太重 了 無法 抬起 來 . +I am tired of eating fast food . 我 受够 吃快餐 了 . +The world is full of incompetent doctors . 社会 上满 是 不称职 的 医生 . +She was on the verge of crying . 她 要 哭 出来 了 . +How much money do I owe you ? 我 欠 你 多少 錢 ? +We met in a coffee shop near the campus . 我們 在校 園 附近 的 咖啡 廳 碰面 . +We want to clear up this problem . 我们 像 澄清 这个 问题 +We had a history quiz this morning . 我們 今天 早上 有 歷史 小考 . +What I am saying is true . 我 說 的 是 真的 . +I need a bag . Will you lend me one ? 我 需要 个 包 . 你 能 借 我 一个 吗 ? +That is a little hard to believe . 那 有点 难以置信 . +You should speak with Tom . 你 應該 和 Tom 說 . +He may have been ill . 他 可能 病 了 . +It exploded with a loud noise . 它 發出 巨響 爆炸 了 . +I will ask him about it tomorrow , then . 那 我 明天 会 问 他 的 . +I have known her for two years . 我 认识 她 两年 了 . +I have two brothers and three sisters . 我 有 两个 兄弟 和 三个 姐妹 . +He likes mathematics , but I do not . 他 喜欢 数学 , 但 我 不 喜欢 . +I am sorry that I did not reply to you sooner . 抱歉 , 我 沒有 早點 回覆 你 . +Mother made a doll for me . 妈妈 给 我 做 了 一个 洋娃娃 . +Tom has been gone for ages . 汤姆 年纪 大 去世 了 . +I drive everywhere . 我 去 哪里 都 开车 . +Does he study English every day ? 他 每天 研讀 英語 嗎 ? +Tom is the tallest man I know . 湯姆 是 我 所 知道 的 最高 的 人 . +Water freezes at zero degrees Celsius . 水 在 攝 氏 零度 時 結冰 . +Do not trust anyone here . 你 在 這 別 相信 任何人 . +When did she break the window ? 她 什麼 時候 打破 了 窗戶 ? +It is no use worrying about it . 擔心 它 是 沒 有用 的 . +If Tom can not tell me , then no one can . 如果 湯姆 不能 告訴 我 , 就 沒 人 能 了 . +A female friend of mine loves to go to gay bars with me . 我 的 一个 女性朋友 喜欢 跟 我 一起 去 同志 酒吧 . +No one supported his motion . 沒人 支持 他 的 動議 . +Tom understands what it takes to survive . 汤姆 明白 生存 的 代价 . +We must intervene . 我们 必须 介入 . +The two men were business partners . 这 两个 男人 是 生意 上 的 合作伙伴 . +Tom is absent . 湯姆 缺席 . +How should I know ? 我 怎麼 知道 ? +Would you like to wait ? 你 愿意 等 吗 ? +Tom began laughing . 湯姆 開始 笑 了 . +As soon as she heard the bell ring , she answered the telephone . 她 一 聽到 鈴響 , 就 接 了 電話 . +How much is it ? 多少 錢 ? +Tom loves dogs . 汤姆 喜欢 狗 . +He still has not answered my letter . 他 还 没回 我 的 信 . +We have got to do something about this problem soon . 我们 要 快点 处理 这 问题 . +Are you a doctor ? 你 是 医生 吗 ? +The risk is too great . 风险 太大 . +Cookie is mother died of cancer . Cookie 的 母親 死 於 癌症 . +She sang better than him . 她 唱 得 比 他 好 . +Do not ask Tom any questions about his job . 别 问 汤姆 他 的 工作 的 问题 . +No one had anything left to say . 沒 有人 有 話 可 說 . +She hugged him . 她 抱 了 他 . +He comes back from Sydney today . 他 今天 從 雪梨 回來 . +Mary came on her own . Mary 自己 一個 人 來 . +We have a big supermarket . 我們 有 一個 大 超市 . +I go to the country every summer . 我 每年 夏天 都 去 鄉 下 . +I am staying at the Hilton Hotel . 我 留在 希尔顿 宾馆 . +Tom lost his job . 湯姆 丟了 工作 . +Tom is three years younger than Mary . 汤姆 比 玛丽 小 三岁 . +Leaving something unfinished is the worst thing you can do . 半途而废 是 你 所 能 做 的 最 糟糕 的 事情 . +Do not be sad . 别 伤心 . +There is a possibility you will have to do that . 你 有 可能 不得不 那么 做 . +Do you know if she can speak English ? 你 知道 她 会 说 英语 吗 ? +It is really time for us to go . 这 真是 我们 该 走 的 时候 了 . +I think this coat should fit you . 我 认为 这 外套 应该 适合 你 . +You are always watching TV . 你 總是 在 看電視 . +Can you give me a ride to the office on Wednesday ? 周三 你 可以 载 我 到 办公室 吗 ? +More money for education will spur economic growth . 更多 投資 在 教育 的 錢 將 會 刺激 經濟 成長 . +What do you usually do with your friends ? 你 一般 和 朋友 一起 做 什麼 ? +Tom shot himself in the head . 汤姆 拿 枪 射 自己 的 头 . +She might come . 她 也許 會 來 . +Scientists can easily compute the distance between planets . 科學家 們 可以 很 容易 地計 算出 行星 之間 的 距離 . +Do not ask me what it was . 别 问 我 这 是 什么 东西 ! +She called up her mother on the phone . 她 给 她 妈妈 打电话 . +Have fun . 玩 得 開心 . +It is almost time for the train to arrive . 現在 差不多 是 火車 要到 的 時間 . +She got a new CD player yesterday . 她 昨天 得到 了 一個 新 的 CD 播放 機 . +It is so secret that even I do not know what it is all about . 这 太 秘密 了 , 连 我 都 不 知道 它 是 关于 什么 的 . +There is no membership fee for joining . 參加 不用 會員費 . +Some people like red wine and some people like white wine . 有人 喜歡 紅酒 , 有人 喜歡 白酒 . +She likes to listen to music . 她 喜欢 听 音乐 . +You are free to do as you please with your money . 你 可以 隨 你 高興 的 用 你 的 錢 . +You can buy stamps at any post office . 你 在 任何 一家 邮局 都 能 买到 邮票 . +Good luck on your test . 考试 加油 ! +I wrote down the address for you . 我 給 你 寫下 了 地址 . +I am not used to spicy food . 我 不習 慣 辛辣 的 食物 . +You may choose what you like . 你 可以 選擇 你 喜歡 的 . +How many books are on the shelf ? 櫃子 上 有 幾本 書 ? +She glanced shyly at the young man . 她 羞怯 地 看 了 一眼 那個 年 輕 人 . +The boy has an apple in his pocket . 这 男孩 的 口袋 里 有个 苹果 . +Are you sad ? 你 在 难过 吗 ? +Her argument was not based on facts . 她 的 观点 没有 基于 事实 . +I am not feeling well . 我 身体 不适 . +Do you still love Tom ? 你 依然 爱 汤姆 吗 ? +I think your basic theory is wrong . 我 認為 你 的 基本 理論 是 錯 的 . +Tom and Mary went camping in the mountains . 湯姆 和 瑪麗 去 山裡 露營 . +They nominated Calvin Coolidge for vice president . 他们 提名 卡尔文 • 柯立芝 为 副 总统 . +My fountain pen is new . 我 的 钢笔 是 新 的 . +That is all I could find . 那 是 我 所有 能 找到 的 . +I do not need anybody . 我 谁 也 不 需要 . +I am just looking . 我 只是 隨便 看看 . +Whose idea was it ? 这 是 谁 的 主意 ? +I would like to see you tomorrow . 明天 我 想见 你 . +It is okay to take it easy sometimes . 有時 可以 放 輕 鬆 一下 . +Tom comes here three or four times a month . 汤姆 一个月 来 这里 三四次 . +We have to go by the rules . 我们 必须 遵守规则 . +There was not any furniture in that room . 那個 房間 裡 沒有 任何 傢 俱 . +He is three inches taller than I am . 他 比 我 高三 英寸 . +Who can do this work ? 谁 能 做 这件 工作 ? +Tom declined to give details . 汤姆 拒绝 提供 详细信息 . +If we do not keep walking we will be late . 再 不 走 就 迟到 了 . +Apparently , there is nothing that cannot happen today . 显然 , 今天 什么 事 都 有 可能 发生 . +I want to meet your older sister . 我 想 認識 你 姐姐 . +Please stay here till I get back . 請待 在 這裡 直到 我 回來 . +Everybody knew that Tom could speak French well . 每个 人 都 知道 汤姆 的 法语 很 好 . +He told the students to be quiet . 他 告訴 了 學生 要 安靜 . +How heavy is your suitcase ? 您 的 行李箱 有 多重 ? +We should do our best . 我们 应该 做到 最好 . +This book is new . 这 本书 是 新 的 . +Japan is confronted with severe economic problems . 日本 正面 臨著 嚴重 的 經濟 問題 . +Do not you agree ? 您 不 同意 吗 ? +I do not know how to use it . 我 不 知道 如何 使用 它 . +What do you think I was doing ? 你 觉得 我 在 干吗 呢 ? +A drunken man was sleeping on the bench . 一個 醉 了 的 男人 在 長椅 上 睡觉 . +I am really cold . 我 真的 冷 . +I like the way she laughs at my jokes . 我 喜欢 她 因 我 的 笑话 而 欢笑 的 样子 . +He was forced to sign the document . 他 被迫 在 文件 上 簽字 . +I could not understand his ideas . 我 無法 理解 他 的 想法 . +I wrote it myself . 我 自己 写 了 它 . +Are not you Tom ? 你 不是 湯姆 嗎 ? +You may not come in . 你 不能 進來 . +We need competent leaders . 我们 需要 称职 的 领导人 . +The tie does not go with my suit . 领带 和 我 的 西装 不配 . +There were a lot of people at the concert . 音乐会 上 有 很多 人 . +The plan was executed . 计划 被 执行 了 . +You should know better than to ask a lady her age . 你 應該 知道 不要 問 小姐 的 年齡 . +The students are all at their desks now . 学生 们 现在 都 坐在 桌前 . +We enjoyed watching the TV . 我們 喜歡 看電視 . +Do you need this book ? 你 需要 这 本书 吗 ? +Even when I was a child , I was able to swim well . 我 很小 的 时候 就 游 得 很 好 了 . +There is a telephone in the hall . 走廊 裡 有 一部 電話 . +The prisoner was behind bars for two months . 那個 囚犯 在 牢 裡 待 了 兩個 月 . +I seem to have a fever . 我 好像 发烧 了 . +Are you sure you know how to do this ? 你 真的 知道 这个 怎么 做 吗 ? +The sum of 5 and 3 is 8 . 五 和 三 的 總 和 是 八 . +You look just like your mother . 你 看 起來 就 像 你 的 母親 . +She found her purse under the desk . 她 發現 她 的 錢 包在 桌子 底下 . +Tom never did what we asked him to do . 我们 叫 汤姆 做 什么 , 他 从来不 做 . +I could not understand anything that he said . 我 不 了解 他 所 說 的 事情 . +It depends on the context . 这 要 看 情况 . +She gave me a smile of recognition . 她 給 了 我 一個 認可 的 微笑 . +Do you have other family ? 你 有 其他 家人 吗 ? +That was not my intention . 那 不是 我 故意 的 . +I have a brother in Boston . 我 有个 在 波士顿 的 兄弟 . +What you said is baloney . 你 说 的 东西 是 胡扯 . +Humor me . 你 就 随 了 我 的 意吧 . +I miss her so much . 我 那么 想念 她 . +Most boys like baseball . 大部分 男生 喜欢 棒球 . +The old man passed away this morning . 老 男人 今天 早上 去世 了 . +I do not work like that . 我 不 像 那樣 工作 . +Can I have something to eat ? 我 能 些 吃 的 東西 嗎 ? +This could be fun . 這 可能 很 好玩 . +The address on this parcel is wrong . 這個 包裹 上 的 地址 是 錯 的 . +We have your size , but not in that color . 我们 有 你 的 尺寸 , 但是 没有 那个 颜色 . +The big tree was struck by lightning . 這 棵 大樹 遭到 雷擊 . +I discovered the truth . 我 發現 了 真相 . +I wonder if Tom likes me . 我 不 知道 湯姆 是否 喜歡 我 . +Tom goes to work by motorcycle . 湯姆騎 摩托 車 上班 . +He got into this school in September last year . 他 去年 九月 进 了 这 所 学校 . +Are not you cold ? 你 不 冷 吗 ? +Why me ? 为什么 是 我 ? +I have been requested to help you . 有人 请 我 帮 你 . +The birds were flying in a group . 鸟儿 成群 飞 着 . +She is fond of singing old songs . 她 喜歡 唱 老歌 . +I do not think I have ever made any serious mistakes . 我 认为 我 没犯 任何 严重 的 错误 . +I generally walk to school . 一般 我 步行 去 学校 . +Tom pretty much forgot about the meeting . 汤姆 差不多 忘 了 开会 的 事儿 . +I saw what Tom did . 我 看到 湯姆 做 什麼 了 . +Let is all pray together . 大家 来 一起 祈祷 吧 . +Please make yourself at home . 請 不要 客氣 . +He was happy at the news of her success . 听到 她 成功 的 消息 , 他 很 高兴 . +I should have taken the money . 我 應 該 拿 那些 錢 的 . +It is very easy to learn how to swim . 学 游泳 非常简单 . +Outside the school , she saw people with no homes living in cardboard boxes . 在 校外 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +Buy milk on your way home . 回来 的 路上 买点 牛奶 . +Everyone is tired of hearing that story . 每个 人 都 听腻 了 那个 故事 . +Do you understand French ? 你 會 法語 ? +I love my life . 我 爱 我 的 生命 . +He runs a supermarket in the town . 他 在 這個 鎮 上 經營 一家 超級 市場 . +There were two cakes . 那 有 两块 蛋糕 . +Maybe I will go , and maybe I will not . 也許 我 會 去 , 也許 我 不 會 . +You may use my dictionary . 你 可以 用 我 的 字典 . +He did all he could to protect his son . 他 做 了 一切 能 做 的 去 保護 他 的 兒子 . +Will six o 'clock suit you ? 六点 您 行 吗 ? +I have never climbed Mt . Fuji . 我 從來 沒有 爬 過 富士山 . +Close the door when you leave . 出去 的 时候 把门 关上 . +Does Tom speak French better than Mary ? 湯姆 說 法語 比瑪麗 好 嗎 ? +I wonder why I should not do that . 我 纳闷 我 为什么 不该 那样 做 +I do not know the meaning of this word . 我 不 知道 这个 词 的 意思 . +Do you have a pen on you ? 你 身上 有 铅笔 吗 ? +Were you in America last month ? 你 上 個 月 在 美國 嗎 ? +I have not heard that she will come . 我 沒 聽 說 她 會 來 . +What a strong wind ! 多麼 強 的 風 啊 ! +It is a pity that you could not come . 很 遺憾 你 不能 來 . +Tom snickered at Mary . 汤姆 暗中 笑 玛丽 . +This will not help you . 這 幫 不了 你 . +Why did you come home so late ? 你 為 什麼 這麼 晚 回家 ? +Tom wasted time . 湯姆浪 費 時間 . +I do not play the piano . 我 不彈 鋼琴 . +Neither Tom nor Mary has found anything valuable . 汤姆 和玛丽 都 没有 发现 什么 有 价值 的 东西 +Let is go indoors . 我們 進屋 吧 . +I was mistaken for a salesman . 我 被 誤 認為 是 推 銷員 . +Keep the window closed . 让 窗子 关着 . +Why are you still at school ? 你 为什么 还 在 学校 ? +I need to ask you a silly question . 我 必须 问 你 一个 蠢 问题 . +I am a professional photographer . 我 是 專業 攝影師 . +I studied around the clock . 我 夜以繼日 地 讀 書 . +Do you often have fish for dinner ? 你 常常 晚餐 吃 魚 嗎 ? +Today is Saturday and tomorrow is Sunday . 今天 是 周六 , 明天 是 周日 . +Part of his story is true . 他 的 故事 一部分 是 真的 . +Is there someone who could help me ? 有 誰 可以 幫 我 嗎 ? +I have a shower every night . 我 每晚 洗澡 . +I do not have the time or the money . 我 沒有 時間 , 也 沒有 錢 . +We did it ourselves . 我们 自己 做 的 . +You can stay here till the snow stops . 你 可以 在 這裡 等到 雪 停 . +Did you hear what I said ? 你 聽 見 我 說 的 了 嗎 ? +Tom is afraid of everyone . 湯姆 害怕 每個 人 . +I just thought I should double check . 我 只 覺得 我 應 該 再 檢查 一遍 . +May I come and see you now ? 我 現在 可以 來 看看 你 嗎 ? +Have you ever dyed your hair ? 你 染 過 頭 髮 嗎 ? +She cried all night . 她 一 整晚 都 在 哭 . +Why are you crying ? 你 為 什麼 哭 ? +I like mathematics . 我 喜欢 数学 . +Did you visit the Tower of London ? 你 參觀 倫敦 塔 了 嗎 ? +My computer is acting strange . 我 的 电脑 好 诡异 . +According to the guidebook , this is the best restaurant around here . 根據 指南 , 這 是 這 附近 最好 的 餐館 . +What do you think Tom is waist size is ? 你 认为 汤姆 的 腰围 是 多少 ? +Tom put some salt on his eggs . 湯姆 在 他 的 蛋 上 撒 鹽 . +An honest man never steals money . 誠實 的 人 從 不 偷 錢 . +They are still in Boston . 他們 還 在 波士 頓 . +Do you know the difference between a microscope and a telescope ? 你 知道 显微镜 和 望远镜 的 差别 吗 ? +Eat a live frog every morning , and nothing worse will happen to you the rest of the day . 每天 早上 吃一 隻 活 青蛙 , 那麼 你 一天 中 其他 的 時間 就 不 會 發生 什麼 更 糟糕 的 事 了 . +I did not catch what he said . 我 没 听懂 他 说 的话 . +You look like a monkey . 你 看着 像 猴 . +I have lost my watch . 我 把 我 的 表 丢 了 . +It is rude to stare at strangers . 盯著 陌生人 看 是 不 禮貌 的 . +It is especially hot today . 今天 特別 熱 . +They went to America last month . 他們 上 個 月 去 美國 . +As far as I know , he did nothing wrong . 据我所知 , 他 没 做 错 任何 事 . +I love apple juice . 我 愛 蘋 果汁 . +I do not mind walking in the rain . 我 不介意 在 雨 中 漫步 . +I can not forget what happened that day . 我 无法 忘记 那天 发生 了 什么 . +You are very alert . 你 真是 警惕 . +He is a liar . 他 是 個 騙子 . +I am not used to walking long distances . 我 不習 慣 走 很 長 的 路 . +Get on the horse . 上马 . +I do not feel like eating anything today . 我 今天 不想 吃 东西 . +Tom has three cats . Tom 有三 隻 貓 . +Can you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +Stop joking around . 不要 隨便 開 玩笑 . +I do not want Tom to do that alone . 我 不想 讓 湯姆 自己 做 . +Tom is out cold . 汤姆 正 昏迷不醒 . +When will you be free ? 你 什麼 時候 有空 ? +You should do the honorable thing and resign . 你 應該 光榮 地 辭職 . +Do not you agree ? 你 不 同意 吗 ? +Leave my car alone . 不要 碰 我 的 車 . +I would like to see him tomorrow afternoon . 我 想 明天 下午 見 他 . +Her skin is smooth . 她 的 皮膚 光滑 . +I will write to you soon . 我 會 盡快 寫信 給 你 . +Is there enough food for everyone ? 有 足夠 的 食物 給 大家 嗎 ? +Tom did not think that anybody would recognize Mary . 汤姆 不 认为 有人 会 认出 玛丽 . +When we are told not to come , we become all the more eager to go . 让 我们 别 来 , 我们 就 更 想来 了 . +This room is cleaned by Tom . 這 房間 是 由 湯姆清 掃 的 . +I can speak Chinese , but I can not read it . 我 會 說 中文 , 但是 我 不 會 讀 中文 . +It is as smooth as a baby is bottom . 它 像 婴儿 的 屁股 一样 光滑 . +Which one are you referring to ? 你 指 的 是 哪个 ? +He is bound to forget . 他 准会 忘 . +She gives me a nasty look every time she sees me . 她 每次 看見 我 都 給 露出 厭惡 的 眼神 . +I am very interested in jazz . 我 對 爵士 樂 很 有 興趣 . +I do not think Tom will like this place . 我 不 认为 汤姆 喜欢 这个 地方 . +She did not feel like eating lunch . 她 不想 吃 午 飯 . +Is she a taxi driver ? 她 是 出租车 司机 吗 ? +Drivers should wear seat belts . 司機 應該 繫 安全 帶 . +He changed his mind . 他 改变 想法 了 . +China is twenty times as large as Japan . 中国 是 日本 的 20 倍 大 . +There was a car accident yesterday . 昨天 發生 了 一場 車禍 . +I know the boy standing over there . 我 知道 站 在 那裡 的 那個 男孩 . +The television does not work . 电视机 坏 了 . +How did your weekend go ? 你 的 周末 是 怎么 过 的 ? +Everybody is laughing . 每個 人 都 在 笑 . +You are such a jerk . 你 真是 個 傻子 . +She is giving the baby a bath . 她 正在 給 嬰兒 洗澡 . +He is a big boy . 他 是 個 大 男孩 . +Life is full of ups and downs . 人生 充滿 了 高低 起伏 . +I am not always free on Sundays . 我 星期日 並 不 總是 有空 . +This is not a tiger . 这 不是 老虎 . +The policeman aimed his gun at the man . 警察 瞄准 了 那个 男人 . +Are you here to see Tom ? 你 是 來 見 湯姆 的 嗎 ? +Let is go home . 让 我们 回家吧 . +Mary wanted to marry a man with ambition . 以前 , 玛丽 想 和 一位 有 雄心壮志 的 男人 结婚 . +Someone stole my laptop computer . 有人 把 我 的 筆記本 電腦 偷掉 了 . +Are you feeling under the weather ? 你 感觉 不 舒服 吗 ? +Do not be fooled . 別 被 騙 了 . +It looks as if it is going to rain . 天 看起来 要 下雨 了 . +I am a little bit concerned . 我 有点 担心 . +Why do not you hug me ? 你 為 甚麼 不 抱 我 ? +There is something wrong with my car . 我 的 車子 有 問題 . +There is no chance of rain today . 今天 不 可能 下雨 . +I can read German , but I can not speak it . 我 能 看 德语 , 但是 不能 说 . +There is a hole in this bucket . 這個 桶子 上 有 個 洞 . +The strike affected the nation is economy . 罢工 妨碍 了 国家 经济 . +Why did you marry Tom ? 你 為 甚麼 跟 湯姆 結婚 ? +He is always at home on Mondays . 他 星期一 總是 在家 . +He had barely enough to eat . 他 仅 有够 糊口 的 吃 的 . +It is likely to snow this evening . 今天 晚上 可能 會 下雪 . +I booked a seat . 我 訂 了 一個 位子 . +Please move your bicycle out of here . 請 將 您 的 自行 車 移出 這裡 . +She handed him the key . 她 遞給 了 他 鑰匙 . +Something has happened to my car . 我 的 车 出 了 点 事 . +You do not need a gun . 你 不 需要 枪 . +That is what Tom promised . 那 是 汤姆 承诺 的 . +The train was delayed because of heavy snowfall . 火车 因 大雪 被 耽搁 了 . +Travel agencies ' profits soared . 旅行社 的 利润 猛涨 . +It belongs to my brother . 它 屬 於 我 兄弟 . +My brother is a college student . 我 哥哥 是 個 大學 生 . +He likes taking a walk by himself . 他 喜欢 独自 散步 . +President Lincoln accepted the invitation . 林肯 总统 接受 了 邀请 . +I am sorry my pronunciation is not very good . 不好意思 我 发音 不太好 . +English is studied in Japan . 英語 在 日本 被 學習 . +We made every effort to help him . 我們 盡 了 一切 努力 來 幫助 他 . +We surrender . 我們 投降 . +I always feel blue on Mondays . 我 每個 星期一 都 覺 得 很 憂鬱 . +The police did not find any clues . 警方 沒有 發現 任何 線索 . +I like your room . 我 喜欢 你 的 房间 . +I finished reading the book last night . 我 昨晚 看完 了 這 本書 . +We did not bring it back . 我们 没 把 它 带 回来 . +Tom promised that he 'd come , but he did not . 湯姆 答應 他 會 來 , 但 他 沒來 . +I always have to wear a tie because of my job . 因為 我 這份 工作 的 緣故 , 我 總是 要 打 領帶 . +Have you heard from him ? 你 收到 他 的 音訊 了 嗎 ? +She is about the same age as I am . 她 大約 跟 我 同年 紀 . +I returned the books I borrowed from the library , and I borrowed some new ones . 我 还 了 从 图书馆 借 的 书 , 又 借 了 些 新 的 . +Thank you for telling me the truth . 謝謝 你 告訴 我 真相 . +He went to Italy for the purpose of studying music . 他 去 義 大利 的 目的 是 學習 音樂 . +How long do you plan to stay ? 你 准备 待 多久 ? +Tom came up with an answer to our problem . 汤姆 给 我们 的 问题 想出 了 个 答案 . +He will be coming to the party . 他 會 來 參加 派 對 . +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +How about you ? 您 呢 ? +I went for a walk in the park . 我 去 公园 散 了 步 . +I could not answer all the questions . 我 无法回答 所有 问题 . +I can not make out what he wants . 我 不 明白 他 想要 什么 . +Are you mad ? 你 生气 了 吗 ? +Our school is across the river . 我們 學校 在 河 的 對面 . +He pushed the emergency button . 他 按 下 了 緊急 按 鈕 . +I am the laziest person I know . 我 是 据我所知 最懒 的 人 . +I forgot what his name was . 我 忘记 他 叫 什么 名字 了 . +He does not live there anymore . 他 不再 住 在 這裡 了 . +This house is mine . 這 房子 是 我 的 . +Please give me a glass of milk . 請 給 我 一杯 牛奶 . +I am very , very sorry . 我 非常 , 非常 抱歉 . +You need to let me handle this . 你 要 让 我 来 解决 . +He changed schools last year . 去年 他 换 了 学校 . +These two words are easily confused . 这 两个 词 容易 混淆 . +Lunch is ready . 午餐 好 了 . +Tom does not know who he can trust anymore . 湯姆 不 知道 他 還 能 再 信任 誰 . +What is your phone number ? 你 电话号码 是 多少 ? +I will be back in a jiffy . 我 马上 就 回来 . +It is an advantage to be able to use a computer . 會 用 電腦 是 一個 好 處 . +Tom is crying , too . 湯姆 也 在 哭 . +Where is the phone book ? 电话簿 在 哪里 ? +She is been absent from school for five days . 她 已经 五天 不 上学 了 . +I wonder if I can do it again . 我 不 知道 我 能 不能 再 做 一次 . +May I have the check , please ? 請 把 帳單 給 我 好 嗎 ? +Our math teacher drew a circle on the blackboard . 我们 的 数学老师 在 黑板 上 画 了 一个 圆 . +It is already 11 . 已经 是 11 点 了 . +We are on the third floor . 我们 在 三 楼 . +I gave Tom a going @-@ away present . 我 送给 汤姆 一份 临别 礼物 +We have a door between our offices . 我們 的 辦 公室 之間 有 扇 門 . +I can not believe you bought this . 我 不信 你 買 了 這個 東西 . +Smoke appeared . 烟雾 出现 了 . +I competed with him for the championship . 我 和 他 競爭 冠軍 . +I am always forgetting people is names . 我 總是 忘記 別人 的 名字 . +Drop the knife ! 把 刀 放下 ! +He came back from America . 他 從 美國 回來 了 . +I had an accident at work . 我 出 了 工伤 . +His bicycle is blue . 他 的 自行车 是 蓝色 的 . +We have to think about it . 我們 必須 考慮 它 . +I do not like the food at that deli . 我 不 喜欢 那 家 熟食店 里 的 食物 . +I never thought that would happen . 我 从来 没想到 会 发生 那种 事 . +He was severe with his children . 他 对 自己 的 孩子 很 严格 . +Make it smaller . 把 它 弄 小 一點 . +I wonder what else Tom wants . 我 想 知道 汤姆 还要 别的 什么 . +Be careful not to drive the wrong way on a one @-@ way street . 小心 不要 在 单行道 逆向行驶 . +How do you pronounce this word ? 这个 词 怎么 发音 ? +I find it difficult to express my meaning in words . 我 覺 得 很 難用言語 表達 我 的 意思 . +I like my coffee without sugar . 我 喜欢 喝咖啡 不 加糖 . +Pizza is the kind of food that fits into today is life style . 比萨 是 种 适合 现在 的 生活 方式 的 食物 . +I heard the song sung in French . 我 听 过 这 首歌 的 法语 版 . +" Did you watch TV last week ? " " No , I did not . " “ 上周 你 看电视 了 吗 ? ” “ 没有 , 我 没 看 . ” +They like to sing . 他们 都 喜欢 唱歌 . +I am not as optimistic as you are . 我 不 像 你 那么 乐观 . +France is running a welfare state it can no longer afford . 法國 是 一個 福利 國家 , 但 它 卻 不再 能夠 負擔 得起 了 . +The baby smiled at me . 宝宝 对 我 笑 了 . +You must pay in advance . 您 必须 预先 付钱 . +The man you saw yesterday was my uncle . 你 昨天 看到 的 那个 男人 是 我 叔叔 . +Calm down . 冷静 点 . +You ought not to make fun of them . 你 别 嘲弄 他们 . +We can begin . 我們 能 開始 . +I like dragon fruit . 我 喜欢 火龙果 . +Is that for sale ? 这个 卖 不卖 ? +Why do people not always tell the truth ? 为什么 人们 不 总是 讲 真话 ? +I will do the shopping for her birthday . 我 要 去 给 她 生日 买点 东西 . +What do you want me to do ? 你 要 我 做 什麼 ? +He broke the window on purpose . 他 故意 打破 了 窗戶 . +Their losses reached one million yen . 他們 的 損失 到 達 了 一百 萬日 圓 . +Do you take part in any community activities ? 你 参加 社团活动 吗 ? +I do not know where Tom was going . 我 不 知道 汤姆 往 哪 去 了 . +How did you accomplish this ? 你 怎么 完成 的 ? +Those flowers have died . 那些 花 已經 枯死 了 . +How is your project coming along ? 你 的 项目 进展 得 怎么样 ? +Who can tell the difference ? 谁 能 说 清 不同点 ? +There is the train at 10 o 'clock . 十點鐘 有 一班 火車 . +My head hurts . 我 头痛 . +She boiled the eggs . 她 煮 了 蛋 . +He lied to us . 他 欺騙 了 我們 . +Ebola is one of the most virulent viruses known to man . 埃 博拉 是 人类 已知 的 最 致命 的 病毒 之一 . +She was wearing dark brown shoes . 她 穿著 深褐色 的 鞋子 . +Do you understand what I am saying ? 你 明白 我 的 意思 嗎 ? +Tom runs faster than me . 汤姆 跑 得 比 我 快 . +Where else should we go ? 我们 要 去 其他 的 什么 地方 ? +I am sorry to hear it . 我 听 了 感到 抱歉 . +He is three years older than me . 他 比 我 大三 歲 . +Friends are like flowers in the garden of life . 朋友 就 像 生命 之 园里 的 花朵 . +What time is the next performance ? 下 一場 表演 在 幾點鐘 ? +I felt something moving on my back . 我 感到 背上 有 东西 动 . +I do not want to fail my exams . 我 不想 落榜 . +What a surprise ! 太 惊喜 了 ! +I thought I had all the answers . 我 認為 我 有 所有 的 答案 . +We got lost in the snow . 我們 在 雪地 裡 迷了路 . +" The good die young " is an old saying which may or may not be true . “ 好人 不 长命 ” 是 句 或 真 或 假 的 老话 . +Your time is up . 你 的 時間 到 了 . +She accused me of being a liar . 她 罵 我 是 個 騙子 . +He still has not responded to my letter . 他 还 没回 我 的 信 . +My father goes to church on Sunday . 我 爸爸 週日 上 教堂 . +Something strange is happening . 正 有 什么 奇怪 的 事情 发生 着 . +They wanted to know where Tom was . 他們 想 知道 湯姆 在 哪 . +I lost my wallet . 我 掉 了 我 的 钱包 . +Our children like dogs , but I prefer cats . 我们 的 孩子 喜欢 狗 , 但 我 更 喜欢 猫 . +Where is the tourist information office ? 遊客 諮詢 處 在 哪裡 ? +He often walks to school . 他 常常 走路 去 學校 . +His mother sat up all night waiting for her son . 他 的 妈妈 坐 了 一整夜 , 等 她 的 儿子 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 您 說 話 . +Do I know you ? 我 认识 你 吗 ? +Tom has a lot to think about . 汤姆 要 考虑 很多 . +They are kids . 她们 是 孩子 . +I can not believe Tom kissed me . 我 不敢相信 汤姆 亲 了 我 . +He left in the blink of an eye . 他 一转眼 就 跑 了 . +I cannot agree with you on the matter . 在 这件 事 上 , 我 无法 赞同 你 . +How will the weather be tomorrow ? 明天 天氣 怎麼樣 ? +I hope Tom is predictions are wrong . 我 希望 汤姆 的 预测 是 错 的 . +Stop looking for problems , Tom . 别 找事 , 汤姆 . +It is difficult for me to understand French when it is spoken quickly . 法语 说 得 快 , 我 就 难以 理解 . +What would you say to Tom ? 你 要 对 汤姆 说 些 什么 ? +I will be able to assist you . 我 能 協助 你 . +Leave the book where it was . 把 书 放在 原处 . +I have difficulty in Japanese . 我 学 日 語 有 困難 . +I am a Japanese high school girl . 我 是 一個 日本 的 高中女生 . +The French lost the battle of Waterloo . 法國 人 在 滑鐵盧 之 役 吃 了 敗仗 . +I know that you think I am crazy . 我 知道 你 覺得 我 瘋 了 . +He hid it behind the door . 他 把 它 藏在 了 门 后 . +He has a test next week . 他 下禮 拜要 考試 . +Where is the stage door ? 请问 剧场 后门 在 哪 ? +I am familiar with this subject . 我 熟悉 這個 主題 . +I want a lot more . 我 要 多 很多 . +His death was a great loss to our firm . 他 的 死 对 我们 公司 是 一个 巨大 的 损失 . +The teacher granted me permission to go home early . 老師 允許 我 提前 回家 . +What have you done with my bag ? 你 用 我 的 袋子 做 了 什麼 ? +She got sick this weekend . 她 周末 病倒 了 . +I bought a pen , but I lost it . 我 买 了 一支 钢笔 , 但 我 把 它 丢 了 . +Do you think I am crazy ? 你 认为 我 疯 了 吗 ? +A thousand yen will do . 1000 日元 足够 了 . +I can not agree with you . 我 无法 同意 你 的 意见 . +He will do whatever you ask him to . 他 會 做 任何 你 要求 他 做 的 事 . +I know I owe you money . 我 知道 我 欠 你 錢 . +Can you help me ? 你 能 幫 我 嗎 ? +If it rains tomorrow , we will stay at home . 如果 明天 下雨 , 我们 就 呆 在家 . +You have to work hard . 你 必须 努力 工作 . +Tom checked the TV schedule to see what was on . 汤姆 检查 电视 时间表 , 看看 在 上映 什么 . +Let is sit on the grass . 我们 坐在 草地 上 吧 . +I wish you 'd slow down . 我 希望 你 慢下 來 . +What is in the closet ? 橱柜 里 有 什么 ? +He can play both tennis and baseball . 他 既 会 打网球 , 又 会 打 棒球 . +Everybody jumped into the pool . 每個 人 都 跳進 了 游泳池 . +You are very early this morning . 你 今天 早上 非常 早 . +Would it be ethical to sacrifice one person to save many ? 为了 救 许多 人 牺牲 一个 人 是否 道德 ? +Tom is swimming . 汤姆 在 游泳 . +This piece is in a major key . 这 首 曲子 是 大调 . +He sells fruit . 他 卖 水果 . +He tried to concentrate on the letter . 他 试图 把 注意力 集中 在 信 上 . +The building is seven stories high . 這棟 建築物 有 七層 樓 高 . +I listen to the radio after dinner . 晚饭 后 我 听 收音机 . +This novel is very difficult to understand . 这部 小说 很 难 读懂 . +What does it mean ? 这 是 什么 意思 ? +The more books you read , the more you will know . 你 看 的 书 越多 , 你 知道 的 越多 . +Tom said he 'd be willing to do this . 汤姆 说 他 乐意 做 这事 . +You have many books . 您 有 很多 书 . +How is it going ? 你們 好 嗎 ? +I have to go to sleep . 我 该 去 睡觉 了 . +I can swim well . 我 游泳 可以 游 得 很 好 . +Tom wants children , but Mary does not . 汤姆 想要 孩子 , 但 玛丽 不想 . +We have no chance against those top players . 我们 没 机会 赢 那些 一流 选手 . +Keep to the left when driving . 車輛 靠左 行駛 . +She cut up the cloth to make bandages . 她 裁布 做 绷带 . +Everyone knows me . 大家 都 認識 我 . +Let is go out and eat dinner together from time to time . 讓 我們 偶爾 出去 一起 吃 晚餐 . +She traveled around Japan . 她 环游 了 日本 . +Tom does not mind helping Mary occasionally . 汤姆 不介意 偶尔 给予 玛丽 帮助 . +You should have helped him with his work . 你 應 該 幫 他 工作 的 . +You may choose any book you like . 你 可以 選擇 任何 你 喜歡 的 書 . +I do hope you will come again . 我 很 希望 你 会 再 来 . +Keep it in a cool place . 保存 在 陰涼 的 地方 . +My leg was bitten by that dog . 我 的 腿 被 那 隻 狗 咬 了 . +I am walking with her . 我 正 跟 她 一起 走 . +Would you like another glass of wine ? 你 想 再 来 杯酒 吗 ? +How are you ? Did you have a good trip ? 你 怎么样 ? 旅游 愉快 吗 ? +My brother takes care of our dog . 我 弟弟 照顧 我們 的 狗 . +Hang on till I get to you . 坚持下去 直到 我 找到 你 . +I awoke to find it snowing . 當 我 醒 來 時 , 天正 下著 雪 . +Each of them was given a prize . 他們 每個 人 都 被 授獎 了 . +This is the time he normally arrives . 他 这个 时候 该 到 了 . +If you hear hoofbeats , do not look for zebras . 不要 听 风 就是 雨 . +I really like him , but not his circle of friends . 我 真的 很 喜歡 他 , 可是 我 不 喜歡 他 周圍 的 朋友 . +They gave a big party for me . 他們 為 我 辦 了 一個 盛大 的 派 對 . +I will wait here till he comes back . 我会 在 这里 等 着 到 他 回来 的 . +Can you imagine walking on the moon ? 你 可以 想象 在 月球 上 行走 吗 ? +I see a flower on the desk . 我 看见 书桌上 有 朵花 . +The room is full of people . 屋里 挤满 了 人 . +Mary treated her wounded knee . 玛丽 处理 了 膝盖 的 伤口 . +We just wanted to win . 我們 只 想 贏 . +My son is brushing his teeth . 我 儿子 在 刷牙 . +Is it true that you built this house by yourself ? 你 真是 自己 造 了 这栋 房子 吗 ? +If it rains tomorrow , I will not go to the picnic . 如果 明天 下雨 的话 , 我 就 不 去 野餐 了 . +I know how to solve the problem . 我 知道 怎么 解决 这个 问题 . +She always wears black . 她 總 是 穿著 黑色 的 衣服 . +Mother Nature is generous . 大自然 很 慷慨 . +I do not have a bike . 我 沒有 腳踏車 . +The hunter shot the fox dead . 獵人 射 殺 了 狐狸 . +I will get you some coffee . 我 會 給 你 帶 些 咖啡 . +The funeral was yesterday . 葬 禮 是 昨天 . +I thought you said something . 我 觉得 你 说 了 什么 . +The baby was sound asleep in her mother is arms . 孩子 在 母亲 的 怀中 熟睡 . +We have two children . 我們 有 兩個 孩子 . +I paid about fifty dollars . 我 花 了 大約 五十 美元 . +We went halfway up the mountain . 我們 爬 到 了 半山腰 . +I am pleased with his work . 對 於 他 的 工作 我 很 滿意 . +It may freeze next week . 下周 可能 会 结冰 . +I did not call on him because I had a cold . 我 没有 拜访 他 , 因为 我 感冒 了 . +He built a new house for himself . 他 給 自己 蓋 了 一棟 新房子 . +He is capable of teaching Spanish . 他 有 能力 教授 西班牙文 . +The evidence is clear . 证据确凿 了 . +I will buy a new car next month . 我 下个月 买辆 新车 . +I can come , too . 我 也 能 去 +The tsunami alert was cancelled . 海啸 的 警报 解除 了 . +Opinions vary from person to person . 观点 因人而异 . +Wash the dishes . 把 盤子 洗 了 . +She is in the bath . 她 在 浴室 . +I want to be the one who decides . 我 想 成为 决策 的 人 . +He likes to hunt . 他 喜欢 打猎 . +Tom asked us to leave him alone . 汤姆 要 我们 留 他 独自一人 . +She is absent because she is sick . 她 不 在 是因为 病 了 . +The project was a great success . 該 計劃 是 一個 大 成功 . +Scary movies will frighten the children . 恐怖片 會 嚇 到 小孩 . +There are many birds in this forest . 这个 森林 里 有 很多 小鸟 . +I must be leaving now . 我 現在 必須 離開 . +Tom can swim pretty well . 汤姆 能 游 得 很 好 . +Do your best in anything you do . 你 做 任何 事 都 要 尽全力 . +Keep trying . 继续 努力 . +I have a reservation for tonight . 我 有 今晚 的 預訂 . +Does he have any brothers ? 他 有 任何 的 兄弟 嗎 ? +If someone irritates you , it is best not to react immediately . 如果 有人 激怒 你 , 你 最好 不要 立刻 做出 反应 . +He sold his business and retired . 他 賣 掉 了 他 的 事業 並且 退休 . +His sudden appearance surprised us all . 他 的 突然 出现 , 让 我们 都 感到 惊讶 . +When will you leave ? 你 什么 时候 离开 ? +Health is better than wealth . 健康 勝 過 財富 . +They were afraid . 他们 害怕 了 . +Eating fish is good for your health . 吃 鱼 有益于 你 的 健康 . +There is a certain amount of truth in what he is saying . 他 說 的 話 有 一定 的 道理 . +You can not park around here . 你 不能 在 這 附近 停車 . +I am a member of the swimming club . 我 是 游泳 俱樂部 的 會員 . +I guess I will have to leave now . 我 想 我 現在 得 走 了 . +Go at once , otherwise you will be late . 立刻 走 , 否則 你 會 遲 到 . +The colors of the American flag are red , white and blue . 美国 国旗 的 颜色 是 红白 蓝 . +When does that start ? 什么 时候 开始 ? +She is a native speaker of French . 她 的 母語 是 法語 . +She is busy now and can not talk with you . 她 現在 忙 , 沒有 辦法 跟 你們 說 話 . +He threw a ball over the fence . 他 把 球 扔 過 了 柵欄 . +The fastest way to travel is by plane . 旅行 最快 的 方式 是 乘飞机 . +Tom put his wallet on the desk . 汤姆 把 钱包 放在 了 桌子 上 . +It was truly depressing . 真的 令人 丧气 . +His low salary prevents him from buying the house . 他 的 低 薪水 让 他 买 不了 房 . +Speaking English is very difficult for me . 說 英語 對 我 來說 很困 難 . +Tom had never lied to me before . 湯姆 以前 從 不 向 我 說 謊 . +He has plenty of money in the bank . 他 在 银行 里 有 大量 钱财 . +Tom is thrilled . 汤姆 兴奋不已 . +We can do more than they can . 我們 能比 他們 做 得 多 . +Can you see ? 你 能 看 吗 ? +I know what you meant . 我 知道 你 是 什么 意思 . +Have you ever broken your glasses ? 你 摔坏 过 你 的 眼镜 吗 ? +He is started looking for a job . 他 开始 找 工作 了 . +I had him write it . 我 要 他 寫 . +Do you have something to say ? 你 有 什么 事 要说 吗 ? +There is only one bath towel . 只有 一條 浴巾 . +My son is tired of hamburgers . 我 的 兒子 厭煩 了 漢堡 包 . +Do not walk alone after dark . 不要 一個 人 在 黑暗 中 走 . +Any emotion , if it is sincere , is involuntary . 任何 情绪 , 只要 它 是 真诚 的 , 就 说明 它 是 发自内心 的 自然 流露 . +I am sorry , but I can not answer right away . 我 很 抱歉 , 但 我 無法 立即 回答 . +My father has been in good shape since his operation . 自从 手术 后 , 我 父亲 一直 处于 良好 的 状态 . +How long can I borrow this book ? 这 本书 我 能 借 多久 ? +Tom does not have a dad . 汤姆 没有 父亲 . +Tom doubts whether Mary is honest . 湯姆懷 疑 瑪麗 是否 誠實 . +In general , consumers prefer quantity to quality . 一般 來 說 , 消费者 喜歡 數量 勝 於 質量 . +Pass me the salt . 请 给 我 盐 . +I have not finished this . 我 做不了 這個 . +She is dieting . 她 在 节食 . +I found the work very interesting . 我 覺得 這個 工作 非常 有趣 . +Show me an example . 给 我个 例子 . +" What is going on in the cave ? I am curious . " " I have no idea . " " 山洞 裡 發生 了 什麼 事 ? " 我 很 好奇 . " 我 不 知道 . " +No matter what you say , the answer is " no . " 不管 你 說 什麼 , 答案 就是 " 不 . " +Which one is easier ? 哪 一個 最 簡單 ? +He asked for a drink of water . 他 要 了 水 喝 . +It may not be possible . 不太可能 . +I will take this umbrella . 我 將 拿 這 把 傘 . +Can you read ? 你 能 閱讀 嗎 ? +At first , I thought they were sick . 一 开始 , 我 以为 他 病 了 . +I like movies a lot . 我 很 喜歡 電影 . +It is no good trying to persuade her . 試圖 勸 她 是 沒 有用 的 . +We went to London last year . 我们 去年 去 了 伦敦 . +I asked him many questions about ecology . 我 問 了 他 許多 關 於 生態 環境 的 問題 . +What time was she born ? 她 幾點 出生 的 ? +You should tell the truth . 你 该 把 事实 说 出来 . +Yes , I have student ID . 是 的 , 我 有 學生 證 . +She got married when she was twenty @-@ five . 她 二十五 歲時 結婚 了 . +I remember locking the door . 我 記得 鎖門 了 . +I am going to stay here for a couple of days . 我 將 要 在 這裡 待 幾天 . +The baby is sleeping . 宝宝 正在 睡觉 . +Give me the book . 給 我 這 本書 . +I do not have many friends . 我 朋友 很少 . +Tom is playing the violin now . 湯姆 正在 拉 小提琴 . +Look out for cars when you cross the road . 當 你 過 馬路 的 時候 要 當心 汽車 . +I aimed my gun at the target . 我 把 我 的 手枪 指向 了 目标 . +English is a language spoken all over the world . 英語 是 一種 全世界 通用 的 語言 . +I finally persuaded him to buy it . 我 終 於 說 服 了 他 買 它 . +They are leaving Japan tomorrow . 明天 他們 將 離開 日本 . +The dog is blind in one eye . 這 隻狗的一 隻 眼睛 瞎 了 . +You must be careful of the traffic when you cross the street . 横穿马路 时 你 要 留心 . +He came to my house on the pretext of seeing me . 他 打着 见 我 的 幌子 来 了 我家 . +My brother has become a priest . 我 的 兄弟 已经 成为 了 牧师 . +Are you going to school tomorrow ? 你 明天 要 去 上 學 嗎 ? +It is night . 是 晚上 了 . +The danger is over . 危險 已過 去 . +Do not give in to those demands . 不要 屈服 於 這些 要求 . +I feel like this is not going to end well . 感觉 这 不会 有个 好 结局 . +Man is the only animal that can make use of fire . 人 是 唯一 会 使用 火 的 动物 . +What do you want to know ? 你 想 知道 什麼 ? +Did Tom give any other suggestions ? 汤姆 提出 其他 建议 了 吗 ? +A lot of students around the world are studying English . 世界 上 許多 學生 正在 學習 英語 . +I know life is short . 我 知道 生命 是 短暂 的 . +Did you complete the work ? 你 完成 工作 了 吗 ? +I have got blisters on my feet . 我 的 腳 起水泡 了 . +You can not live like this . 你 不能 這樣 活 . +I studied English when I was there . 當 我 在 那裡 的 時候 , 我 學習 英語 . +Some furniture is put together with glue . 一些 家具 是 用 膠水 黏在 一起 . +I hope people are satisfied . 我 希望 人们 满意 . +That is a shame . 那 是 一個 恥辱 . +Why do people commit suicide ? 为什么 人们 会 自杀 ? +How many pictures did you buy ? 你 買 了 多少 張圖 畫 ? +Tom used to swim a lot when he was younger . 汤姆 年轻 的 时候 经常 游泳 +Happy is the man who is contented . 知足常乐 . +I am the tallest in our class . 我 在 班里 是 最高 的 . +Tom is Mary is uncle . 汤姆 是 玛丽 的 叔叔 . +If two men always have the same opinion , one of them is unnecessary . 如果 两个 人 总是 意见 相同 , 那么 他们 其中 一个 就 没 必要 了 . +She has a dog and six cats . 她 有 一只 狗 和 六只 猫 . +That river flows into the Pacific . 这条 河 汇入 太平洋 . +I had a funny dream last night . 我 昨晚 做 了 一個 有趣 的 夢 . +I could not sleep . 我 睡 不著 . +By the way , did you hear that Mary quit her job ? 话 说 , 你 听说 玛丽 辞职 了 吗 ? +She tends to be late for school . 她 往往 會 上學 遲到 . +We can change if we want to . 如果 我们 想 , 我们 就 能变 . +This is a true story . 这个 故事 是 真的 . +We had a heart @-@ to @-@ heart talk with each other . 我们 促膝谈心 . +What is the name of that bird ? 那 隻 鳥 叫什 麼 名字 ? +Her father is Japanese . 她 父親 是 日本 人 . +My father caught three fish yesterday . 昨天 我 爸爸 抓到 了 3 条鱼 . +She is eating an apple . 她 正 吃著 一個 蘋果 . +I threw away my shoes . 我 把 自己 的 鞋子 扔掉 了 . +He does not have any children . 他 沒有 孩子 . +I make it a rule not to watch television after nine o 'clock . 我 规定 自己 在 九点 之后 不 看电视 . +He usually went to bed at eleven . 他 通常 在 十一 點 上床 睡覺 . +Are not you hot ? 你 不 热 吗 ? +Instead of going to Europe , I decided to go to America . 我 决定 去 美国 , 而 不是 欧洲 . +He bumped his head against a post . 他 的 頭 撞 到 了 一根 柱子 . +Did you leave the window open ? 你 讓 窗戶 開著 嗎 ? +I will try to find them for you . 我会 努力 帮 你 找到 他们 . +He even called me an idiot . 他 甚至 骂 我 傻瓜 . +Where is the bathroom ? 廁 所在 哪裡 ? +I can do it without your help . 沒有 你 的 幫忙 我 也 能 做 . +This is a great moment . 这 是 一个 伟大 的 时刻 . +He is very angry . 他 非常 生气 . +They did not act quickly . 他们 没有 立刻 行动 . +Blondes earn 7 % more than women with any other hair color . 金 髮 女郎 比 其他 顏色 頭 髮 的 女人 多 賺 7 % . +Will you accept this job ? 你 会 接受 这份 工作 吗 ? +He is a bit lively . 他 有点 活泼 . +Are you good at mathematics ? 你 数学 好 吗 ? +Oh , no ! My house is on fire ! 哦 , 不 ! 我 的 房子 着火 了 ! +Was Tom watching TV last night ? 湯姆 昨天晚上 在 看電視 嗎 ? +Would you pass me the salt , please ? 請 你 把 鹽 遞 給 我 好 嗎 ? +The company cancelled the meeting . 公司 取消 了 会议 . +She wrote to her parents at least once a week . 他 给 父母 写信 至少 一周 一次 . +Who are you going with ? 你 和 谁 一起 去 那 ? +" Why are not you going ? " " Because I do not want to . " " 你 为什么 不 去 ? " " 因为 我 不想 去 . " +I am very sad . 我 很 难过 . +I do not drink or smoke . 我 既 不 抽烟 也 不 喝酒 . +He said that it was nine o 'clock . 他 说 九点 了 . +Can you help me a little ? 你 能 帮 我 一点 忙 吗 ? +I think he will come . 我 想 他 会 来 的 吧 . +He is very good at guitar . 他 非常 擅長 吉他 . +I do not know , nor do I care . 我 不 知道 , 也 不想 知道 . +Does it matter to you how much it costs ? 它 花 多少 钱 对 你 很 重要 吗 ? +Tom showed up just in time . 汤姆 刚好 准时 到 了 . +I have something to tell you . 我 有事 要 告訴 你 . +I can not bear this noise any more . 我 无法 再 忍受 那 噪音 了 . +Who are you looking at ? 你 在看 谁 ? +Are oysters in season now ? 现在 牡蛎 当季 吗 ? +I almost drowned . 我 差點 被 淹死 . +You should have come earlier . 你 本 应该 来得 更早 的 . +Tom has just finished eating dinner . Tom 刚 吃 完 晚饭 . +He has a good grasp of English . 他 精通 英文 . +I like instrumental music . 我 喜歡 器樂 . +Tom does not even know how to fry an egg . 汤姆 甚至 连 怎么 煎 鸡蛋 都 不 知道 . +It is rude to laugh at others . 嘲笑 別人 是 無 禮 的 . +Why do not you have a party ? 你 為 什麼 不 舉行 派 對 ? +I am used to staying up late at night . 我 习惯 晚睡 . +He said , " Let is take a short rest . " 他 說 : 「 我們 休息 一下 . 」 +I always keep a dictionary close at hand . 我 总是 在 离手 不远 的 地方 放 一本 字典 . +The house was in flames . 房子 着火 了 . +I was very busy last week . 上星期 我 非常 地 忙 . +She called me many times . 她 打 了 很 多次 電話 給 我 . +We will go when it quits raining . 雨 停 了 我們 就 會 去 . +Tom will go there tomorrow . 湯姆 明天 會 去 那裡 . +He was brought up in Australia . 他 在 澳大利亚 长大 . +The train has arrived . 這 班 火車 已經 到 了 . +It has not been easy for Tom to deal with Mary is health problems . 处理 玛丽 的 健康 问题 对 汤姆 来说 不 容易 . +The car was going forward . 车 往前走 . +I have got a pacemaker . 我 裝 了 個 心臟 起搏器 . +It suddenly started raining . 突然 開始 下雨 . +The meeting ended at 4 : 00 p.m. 會議 於 下午 4 點 結束 . +You do not have to eat . 你 不必 吃 . +How about going out tonight ? 今晚 出去 怎么样 ? +Do you think Tom is wealthy ? 你 認為 湯姆 有 錢 嗎 ? +I have not yet finished my supper . 我 還 沒 吃 完 晚 飯 . +Call an ambulance . 叫 救护车 . +I have got a headache . 我 头痛 . +Someone is been here recently . 有人 刚才 在 这里 . +He went to London in 1970 . 他 1970 年 去 了 伦敦 . +In Hungary they speak Hungarian . 在 匈牙利 說 匈牙利 文 . +I have lost patience with Tom . 我 对 汤姆 失去 了 耐心 . +Do you plan to go abroad ? 你 打算 出国 吗 ? +I seem to be unlucky today . 我 今天 看來 很幸 運 . +We have no reason to feel ashamed . 我们 没理由 害臊 . +Please turn down the radio . 請 把 收音 機關 小聲 一點 . +You do not deserve it . 你 不配 . +I read about him in the newspaper . 我 在 報紙 上 讀到 有關 他 的 消息 . +Mary is very pretty . 瑪麗 很漂亮 . +I opened the box and looked inside . 我 打開 盒子 看看 裡面 . +Are you sure ? 你 确定 ? +It seems so familiar . 这 看起来 似曾相识 . +Write it in pencil . 用 鉛筆 寫 . +Man cannot live forever . 人 无法 长生不死 . +He looked for every possible means of escape . 他 寻找 一切 可能 的 逃生 途径 . +How old are your kids ? 你 的 孩子 多 大 了 ? +She loves Tom . 她 愛 湯姆 . +You should do that soon . 你 應該 很快 那樣 做 . +Tom ate only one sandwich . Tom 吃 了 唯一 一个 三明治 . +I never liked biology . 我 從來 沒 喜歡 過 生物 學 . +Come in , the door is open . 進來 , 門 是 開 的 . +He likes French more than German . 他 喜歡 法語 勝 過 德語 . +I found the key underneath the mat . 我 在 擦鞋 墊 下面 發現 了 這 把 鑰匙 . +I have a good appetite today . 我 今天 的 食 慾 很 好 . +Mutual understanding promotes peace . 相互理解 能 促进 和平 . +Please let me know what you want . 請 讓 我 知道 你 要 什麼 . +Tom forgot to do his homework . 汤姆 忘 了 做作业 . +I have not seen him since then . 從 那時 起 我 就 沒有 看到 他 . +I have not seen her since then . 我 從 那時 起 就 沒有 見 過 她 . +Will you permit me to go there ? 您 允许 我 去 吗 ? +I want much more . 我 要 多 很多 . +My older sister plays the guitar well . 我 姐姐 吉他 弹 得 很 好 . +You will not be happy no matter what I do . 无论 我 做 什么 , 你 都 不 高兴 . +How about going out for lunch ? 出去 吃 午 飯 怎樣 ? +I should have gone to bed earlier last night . 我 昨晚 应该 早点 睡觉 的 . +I know very little about Tom . 我 对 汤姆 知道 得 很少 . +The number of people suffering from heart disease has increased . 遭受 心脏病 困扰 的 人数 增加 了 . +What do you think about it ? 你 認為 如何 ? +Tokyo is the largest city in Japan . 東京 是 日本 最大 的 城市 . +I love my work very much . 我 非常 喜欢 我 的 工作 . +I am busy today . 我 今天 忙 . +You should be careful not to become overconfident . 你 要 注意 不要 太 自信 . +The bread is not fresh . 面包 不 新鲜 . +I think you are ready . 我 認為 你 準備 好 了 . +They like apples . 他们 喜欢 苹果 . +I like rice more than bread . 比起 面包 , 我 更 喜欢 米饭 . +He is bound to notice your mistake . 他 必定 會 覺察 到 你 的 錯誤 . +You 'd better do as the doctor advised you . 你 最好 照着 医生 的 建议 做 . +We enjoyed ourselves very much . 我們 玩 的 很 開心 . +He was afraid of being laughed at . 他 怕 被 嘲笑 . +This flower is beautiful , is not it ? 這 朵花 很 美 , 不是 嗎 ? +How much do you want in terms of salary ? 您 想要 多少 工资 ? +What I hate most of all is having to recite texts from memory . 我 最 讨厌 背诵课文 了 . +A man is responsible for his deeds . 一个 人 要 为 他 的 行为 负责 . +He loves her . She loves him , too . 他 愛 她 . 她 也 愛 他 . +I think they were in trouble . 我 认为 他们 有 麻烦 . +He wrote a letter to my mother . 他 写 了 一封信 給 我 的 母親 . +My father goes mathematics every morning . 我 父親 每天 早上 都 数学 . +Tom quietly closed the first time door . 湯姆 靜靜地 關上 了 第一次 的 門 . +Waiter , I 'd like you to come with me to a department store sale . 服务生 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +You are a scumbag . 您 是 无賴 . +I do not like sushi for hitting him . 我 不 喜欢 寿司 撞 到 他 . +If you get very thirsty , tell me . 很渴 的话 就 说 哦 . +I like music a lot . 我 很 喜歡 音乐 . +Were you a beggar ? 你 是 乞丐 吗 ? +Where is the toilet ? 廁所 在 哪裡 ? +I am greedy . 我 很 貪婪 . +How unfortunate last , she gave in to him and told him the secret . 可憐 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +It sounds like a shame . 它 聽 起來 是 個 恥辱 . +Were they single ? 他们 是 单身 吗 ? +Her son is a good guy . 她 儿子 是 个 好人 . +She kept on singing . 她 繼續 唱歌 . +I do not love nature , not even if she loves me . 即使 她 愛 我 , 我 也 不 愛 大自然 . +They grow flying in their greenhouse . 他們 在 他們 的 溫室 裡 種 植 坐 飛機 . +She helped me pack my pen . 她 幫 我 打包 我 的 筆 . +Wash your your face and hands . 洗 您 的 臉 和 手 . +I accepted her what should be done . 我 接受 了 她 应该 做 什么 . +I am not good at pop music . 我 的 流行 音樂 不好 . +Are you good at beans ? 你 豆子 好 吗 ? +He is always at home on chemistry . 他 化学 總是 在家 裡 . +I despise in love . 我 鄙视 爱情 . +While we were discussing the problem , I hit upon a shame . 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 恥辱 . +I am looking for a present for my sister . 我 正在 为 我 的 妹妹 寻找 礼物 . +How I have like jogging ! 我 多麼 喜欢 跑步 ! +That is my bedroom . 这 是 我 的 臥室 . +His daughter has become an obstinate woman . 他 的 女兒 已經 成為 了 个 倔强 的 女人 . +He visited his hometown for the bedroom in ten years . 他 10 年 中 臥室 访问 他 的 故乡 . +Tom asked me if I liked eating fruit . 汤姆 问 我 是否 喜欢 吃水果 . +I am taking care of my hobbies . 滑冰 是 我 的 爺爺 . +She loves the elderly . 她 愛 长辈 . +She is ecstatic for a few hours . 她 兴奋不已 几小时 . +Tom said Mary is hammered . 湯姆 說 瑪麗 醉 了 . +Are you guys sad ? 你們 在 难过 吗 ? +Can you imagine dieting around on the moon ? 你 可以 想象 在 月球 上 节食 中 吗 ? +I think it is intoxicated . 我 认为 它 醉 了 . +He is often mistaken for clean . 他 常常 被誤 認為 是 干净 的 . +You let him down . 你 让 他 失望 了 . +I have to go to the restroom . 我 要 去 洗手 間 . +Everybody disappeared . 每個 人 都 不见 了 . +It is not a cat . That is a dog . 那 不是 猫 . 它 是 狗 . +I thought that I was watching television . 我 还 以为 我 在 看电视 . +My aunt me some American magazines . 我 嬸嬸 給 我 一些 美國 雜 誌 . +Tom is boss was very kind . 汤姆 的 上司 真的 非常 親切 . +She married changed his life . 她 嫁给 了 他 的 生活 . +There are a lot of eggs in the refrigerator . 冰箱 里 有 很多 蛋 . +I need siblings . 我 需要 一把 兄弟姐妹 . +Vote for after the children . 投票 給 孩子 . +Children like eggplant . 孩子 们 喜欢 茄子 . +My aunt made an awkward bow . 我 阿姨 做 了 一把 不 稱手 的 弓 . +I thank you very much for your present . 我 十分 感谢 你 的 礼物 . +The students all slept . 學生 都 睡 了 . +They got thoroughly sleepy in the rain . 他們 在 雨 中 被 淋得 全身 都 困 了 . +He majored in sailing at college . 他 在 大學 主修 帆船 . +Mathematics is my trousers . 數學 是 我 的 褲子 . +I have to write a letter . Do you have a camera ? 我 要 写 一封信 . 你 有 照相机 吗 ? +Whose glass that ? 那 是 谁 的 杯子 ? +Shut your take x @-@ rays to examine your teeth . 牙医 用 X光 检查 你 的 眼睛 . +Does Tom still like the cold ? 湯姆 還 喜歡 寒冷 嗎 ? +I am not very sad . 我 不 难过 . +I do not think Tom is clean . 我 不 覺得 湯姆 是 干净 的 . +She must have been full . 她 一定 是 吃 飽 了 . +This question is too expensive . 这个 问题 太贵 了 . +We caught the rope with two hands . 他 用 兩 隻 手 抓住 了 小偷 . +We captured the rope with two hands . 他 用 兩 隻 手 抓住 了 小偷 . +He was not able to open your eyes . 他 沒有 能力 睁开眼睛 . +I am not good at candy . 我 的 甜食 不好 . +Take your time . There is no doubt . 慢慢 來 , 毫无疑问 . +Cheers course she can speak English . 她 乾杯 會 講 英語 . +I was the one who had to sit down . 该 由 我 坐下 . +I do not have time for running . 我 没 时间 跑步 . +Everybody is I went to his place , he was studying . 每次 我 去 他 住 處 , 他 都 在 笑 . +Please tell Tom . 請 告诉 汤姆 . +Tom does not like green onions . 汤姆 不 喜欢 葱 . +I know that she has been reading . 我 知道 她 一直 在 读书 . +While I was reading , I went upstairs . 當 我 讀 書 的 時候 , 我 上樓 了 . +We have wine . 我們 有 酒 . +Earth is a good guy . 地球 是 一個 好人 . +I like summer better than rock music . 我 喜歡 夏天 勝 於 摇滚乐 . +He filled the bucket with water . 他 用水 装满 了 桶子 . +The car the most important meal of the day . 汽车 是 一天 中 最 重要 的 一顿饭 . +Do you like home ? 你 喜欢 家里 吗 ? +Where are the playing volleyball ? 打 排球 在 哪裡 ? +I will treat love . 我 請 爱情 . +She said that he was kind . 她 說 他 非常 親切 . +There is a stamp missing . 少 一張 郵票 . +She was washing the the dishes . 那時 她 正在 洗盤子 . +You are very thrilled . 你 很 兴奋不已 . +I can not believe you are lying . 我 不能 相信 你 在 撒谎 . +He acted that it was like a bird cage . 他 认为 这 像 个 疯子 . +I am satisfied . 我 很 满意 . +The law is not always calm . 法律 並 不 總是 冷静 的 . +Japanese history is basic to all sciences . 日本 歷史 是 所有 科學 的 基礎 . +Do not underestimate such a thing . 别 低估 這樣 的 事情 . +Is anyone in danger today ? 今天 有人 有 危險 嗎 ? +I took it for granted that he would see him the exam . 我 理所当然 地 觉得 , 他 会 见到 他 考试 . +A guitar suddenly appeared out of the mist . 一把 吉他 突然 从 雾 中 出现 . +Asia is much larger than Canada . 亚洲 比 加拿大 大 很多 . +She will participate even when no one is looking . 没 人 盯 着 她 的 时候 , 她 甚至 会 参加 . +You should bring your passport to lose . 你 应该 带 护照 输 . +Your bicycle better than I do . 你 的 腳踏車 比 我 好 . +This is a beautiful young woman . 这 是 一朵 美丽 的 女人 . +Tom is a crucial point . 汤姆 是 一个 关键点 . +I think you work hard . 我 觉得 你 工作 努力 . +I am under so much pressure , I just want to drive . 我 壓力 好大 , 我 真 想 開車 . +Many children die of starvation in Nagasaki . 於長崎 有 许多 孩子 死 于 饥饿 . +Strawberries sell for a high price in the sushi . 草莓 在 寿司 售價高 . +Are you Hungarian ? 你 是 是 匈牙利人 吗 ? +ghosts know that we are here . 有 幽灵 知道 我们 在 这儿 . +He asked me if I liked dragon fruit . 他 問 我 喜 不 喜欢 火龙果 . +I was happy to pass . 我 很 高兴 通过 . +She fooled him the key . 她 愚弄 了 他 鑰匙 . +Now they many friends . 他们 有 三个 孩子 . +Keep your mouth open . 睜 大 你 的 嘴 . +They announced that a flood was coming . 他們 宣布 了 洪水 即將 來臨 . +I like mathematics so much that I can not leave her . 我 如此 地 喜歡 數學 所以 我 無法 離開 她 . +For the time being , my sister is an assistant in a hospital . 目前 , 我 妹妹 在 一家 醫院 当 收银员 . +Yes , I have a shame . 是 的 , 我 有 一個 恥辱 . +Some people like summer , and others like kids . 有人 喜歡 夏天 , 有人 喜歡 小孩 . +I am not ashamed of my father being lazy . 我 父亲 很 懒 并 不让 我 觉得 丢脸 . +She cried into the room . 她 哭 进 房间内 . +If I have misjudged you , I am pleased . 如果 我 对 你 产生误解 , 我 很 满意 . +She was tired , but she kept singing . 她 累 了 , 但 她 繼續 唱歌 . +Tom is avoidable , is not he ? 湯姆 是 可 避免 的 , 不是 麼 ? +Tom certainly is good at sports . 汤姆 運動 打 的 非常 好 . +He looks like a teacher . 他 看起来 像 老师 . +Cheers last , she solved the problem . 乾杯 , 她 解決 了 這個 問題 . +They sometimes find it . 他們 有 時 找到 它 . +She swam at the sight of his hat . 看到 他 的 帽子 , 她 游泳 了 . +You always be proactive . 你 一直 积极主动 . +The sun sets earlier in the that guy . 在 那家伙 , 太阳 下山 比 往常 更早 . +Waitress , have to do is say the word , and I will leave . 你 只要 说句话 , 我 要 点菜 . +Whose cup that ? 那 是 谁 的 杯子 ? +He knows better than to quit smoking . 他 不 會 傻 到 去 戒菸 了 . +May I play the violin ? 我 可以 拉 小提琴 嗎 ? +He is not very good at chocolate . 他 不是 很 擅長 巧克力 . +My camera that I outrank you . 记住 我 的 相機 跟 你 的 之上 . +His car is really curious . 他 的 車 真的 很 好奇 . +He frowned from America . 他 從 美國 皺著 眉頭 . +Why are you still an actor ? 你 为什么 还 是 演员 ? +We took turns with the football . 我們 輪流 足球 . +Waitress me , I am lost . 服务生 , 我 迷路 了 . +I was already absent . 我 已经 缺席 . +The friend who I thought would pass the exam fell asleep it . 那个 我 认为 会 通过 考试 的 朋友 睡着 了 . +Judging from the look of the sky , it may rain after school . 從 天色 上 判斷 , 放學 後 可能 會 下雨 . +Right now , we have blueberries , blackberries , cherries , spinach , peaches and nectarines . 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 菠菜 、 桃子 和 油桃 . +Tom does not think this is a wooden table . 汤姆 不 认为 这 是 张 木桌 . +Ignore Tom with your opinion . 别理 汤姆 您 的 意見 . +Tom blushed into the room . 汤姆 脸红 进 房间内 . +In the green onions , many older people slip on ice and fall down . 在 葱 , 很多 老人 在 冰上 滑倒 . +Can you give me eight siblings ? 你 能 給 我 八個 兄弟姐妹 嗎 ? +I accepted grows tomatoes in her garden . 我 接受 了 她 的 花園 種 蕃茄 . +She likes Disney . 她 喜欢 迪士尼 . +He is not assistance . 他 不是 幫助 . +Tom does not like people who go often in no smoking areas . 汤姆 讨厌 在 禁烟 区 经常 去 的 人 . +She likes playing baseball , too . 她 也 喜欢 打 棒球 . +Does Tom trust her ? 汤姆 相信 她 吗 ? +May I borrow your child ? 我 能 借 一下 你 的 孩子 嗎 ? +Yesterday was the hottest day this year . 昨天 是 今年 最熱 的 一天 . +What eating fruit do you like ? 你 喜歡 什麼 吃水果 ? +I think Tom is very single . 我 認為 湯姆 單身 . +It was rude for you that you found it . 你 很粗 魯 找到 了 它 . +I intend to spend our honeymoon in Australia . 我 打算 在 澳大利亚 过 蜜月 . +Let him in another one . 让 他 进来 别的 . +They settled in many countries . 他们 許多 國家 安家落户 . +Do you hate what he said ? 你 讨厌 他 說 的 話 嗎 ? +The friend who I thought would pass the exam slept it . 那个 我 认为 会 通过 考试 的 朋友 睡 了 . +I want some fresh science . 我 想要 一些 新鲜 的 科学 . +It is wrong to tell a remember . 記得 了 是 錯誤 的 . +Everyone was sobbing . 每個 人 都 在 啜泣 . +She is eager to live in Canada . 她 渴望 住 在 加拿大 . +She and I are neighbors . 她 和 我 是 鄰居 . +She tried to bend the box , but found it impossible to do . 她 試著 彎曲 箱子 , 但 發現 不 可能 做到 . +He is poor at Mondays . 他 的 星期一 很 差 . +These boxes are simple . 这些 箱子 是 簡单 的 . +He is always at home on chemistry . 他 化学 總是 在家 . +I am very dignified . 我 覺 得 很 威嚴 . +My underpants are ill . 我 的 內褲 是 生病 的 . +I borrow to talk about that as soon as possible . 我 借 盡早 談論 那件事 . +Everybody is came . 几乎 每个 人 都 在 笑 . +Riding double on a pen is dangerous . 笔 雙載 是 危險 的 . +I respect after the baby . 我 尊敬 孩子 . +When will you leaving ? 你 什么 时候 开始 ? +This one is talented . 這 一個 有 才能 . +Tom and I are a family . 湯姆 和 我 是 個 家庭 . +I am making dinner what I was thinking . 我 准备 晚餐 当时 我 正在 想 什么 . +ghosts we did everything we could . 有 幽灵 知道 我们 做 了 我们 所能 做 的 事 . +Please tell a doll for me . 請 告訴 我 做 了 一个 洋娃娃 . +She hit back his money . 把 汤姆 的 钱 打 了 他 . +Tom says he listened carefully . 汤姆 说 他 仔細 聽 . +Tom said Mary is not foolish . 湯姆 說 瑪麗 不 傻 . +Do not be thrilled . 不要 兴奋不已 . +Stop reading , please . 请 别 再 念 了 . +They are not wrong . 他們 沒有 錯 . +I feel kidding . 我 很 开玩笑 . +While reading a book , I is intoxicated . 我 看书 的 时候 醉 了 . +We will just eat after school . 我們 放學 後 會 我們 吃 . +Everyone yawned . 每個 人 都 打哈欠 了 . +That real hero is very kind and polite . 那个 真 英雄 人 很 好 , 又 有 礼貌 . +I did not know she was okay . 我 不 知道 她 沒事 . +My aunt gave me several books . 我 姑姑 給 了 我 幾本 書 . +OK . Write something . 好 . 寫點 什麼 . +Excuse me him . 对不起 他 . +She swam . 她 游泳 了 . +I think I am pleased . 我 觉得 我 很 满意 . +He is hammered in his attempt to swim across the river . 他 试图 游 过河 , 但是 醉 了 . +I admire you for your kindness . 我 佩服 你 的 好意 . +Why would she smoke weed ? 她 為 甚麼 要 吸 大麻 ? +Young children are often fascinated by that guy . 小孩 常常 对 那家伙 很 有 热情 . +Yesterday was is my sister is birthday . 昨天 是 我 姊姊 的 生日 . +Swimming is good for your present . 非常 谢谢 你 的 健康 很 好 . +Children should believe that every day . 孩子 们 应该 每天 相信 . +We meet is somewhere about here . 他家 在 这儿 聚 一次 . +She married her children . 她 嫁给 了 她 的 孩子 . +He is pale because he is busy . 他 很忙 , 所以 脸色 显得 苍白 . +They let I knew the answer , I would not tell you . 他們 讓 我 知道 答案 , 我 也 不会 告诉 你 . +He skis in Hokkaido every green onions . 他 每年 葱 在 北海道 滑雪 . +He swims is worse than I 'd thought . 他 游泳 比 我 想 的 還壞 . +Although that he was handsome . 虽然 他 很 英俊 . +My sister is twenty @-@ one years old and a liar . 我 妹妹 21 岁 , 是 个 骗子 . +She kept an hour for my friend . 我 等 我 的 一个 朋友 等 了 30 分钟 . +I doubt if Tom is mad . 我 怀疑 汤姆 生气 了 . +Step aside with you on this issue . 让开 你 對 這 問題 的 看法 . +Believe it or not , she has seven children . 她 有 七个 孩子 , 信不信 由 你 . +None of my friends drink fish . 我 的 朋友 都 不 吃 魚 . +Can anyone love sports ? 誰 會 喜歡 運動 ? +She may be a nurse . I am not curious . 她 可能 是 护士 . 我 不 好奇 . +We need stick to your skin . 濕 衣服 貼著 你 的 幫忙 . +Are not you almost finished ? 你 不 差不多 完成 嗎 ? +She is evidently busy . 她 明顯 在 忙 了 . +Today is stole my laptop computer . 今天 是 我 的 筆記本 電腦 偷掉 了 . +This system has a secret defects . 這個 系統 有些 個 秘密 缺陷 . +The storm caused the river to flood . 暴風雨 造成 了 河水 氾 濫 . +That hurts clearly and make yourself heard . 真疼 並 大聲 地 讓 別人 聽到 你 說 話 . +She is Tom is type . 她 是 Tom 的 菜 . +The sun sets earlier in the kids . 在 小孩 , 太阳 下山 比 往常 更早 . +I can not go with you because I am very thrilled . 我 不能 和 你们 一起 去 , 因为 我 激動 不已 . +This is my type . 這 是 我 的 菜 . +Tom and Mary are very satisfied . 汤姆 和玛丽 真是 满意 . +She studies beans . 她 学习 豆子 +I do not like your girlfriend . 我 不 喜欢 你 女朋友 . +We know nose were a little shorter , she would be quite pretty . 我們 認識 她 的 姿態 能 再 低 一點 就 更 完美 了 . +They hugged one after another . 他们 一个 接着 一个 地 拥抱 . +He behaved that it was like a bird cage . 他 认为 这 像 个 疯子 . +Young children are often fascinated by eggs . 小孩 常常 对 吃 鸡蛋 很 有 热情 . +Your bicycle is more expensive than mine . 你 的 腳踏車 比 我 的 贵 . +" Are you done ? " " No , not at all . " “ 你 做好 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +What are you plastered at ? 醉 了 什么 呢 ? +I do not am home or anybody else . 我 不 在家 裡 或 别的 人 . +Please keep an eye on my ticket . 請 留神 看著 我 的 票 . +How can I get to the dining room ? 我 怎么 去 餐厅 ? +This must be my mother . 这 肯定 是 我 的 妈妈 . +Please take off your room . 請 脫掉 你 的 房间 . +Tom lost faster than me . 汤姆 输 得 比 我 快 . +This novel is very simple to understand . 这部 小说 很 简单 读懂 . +Let me go when you will arrive . 讓 我 走 你 什麼 時候 會 到 . +There are no clouds in that house . 那个 房子 没有 云 . +Step aside up with an answer to our problem . 让开 我们 的 问题 想出 了 个 答案 . +My underpants are too short . 我 的 內褲 是 太矮 的 . +She knows what I do , she says I can do better . 她 认识 我 做 什么 , 她 都 说 我 能 做 得 更好 . +Please help me where to go next . 請 幫 我 下 一步 去 哪裡 . +You have done a an exception job . 你 做 了 一项 例外 工作 . +They are in danger apples . 他們 是 有 危險 的 蘋果 . +Do it when you like mathematics . 你 喜欢 数学 再 做 吧 . +Tom hates earthquakes . 汤姆 恨 地震 . +Chocolate has more iron than oranges . 巧克力 的 鐵質 含量 比 橙子 還 要 多 . +I am very kidding . 我 很 开玩笑 . +I have heard you have been busy . 我 听说 你 很忙 . +Does anyone here like kids ? 这儿 有人 喜欢 小孩 吗 ? +He asked me why I was stingy . 他 問 我 為 什麼 很小 气 . +Countless stars were twinkling in that house . 无数 星星 在 那个 房子 闪烁 . +No one called . 没有 人 打電話來 . +He plays it difficult to express my meaning in words . 他 弹 得 很 難用言語 表達 我 的 意思 . +The flood caused the river to flood . 洪水 造成 了 河水 氾 濫 . +What is your location ? 你 位置 是 多少 ? +He likes neither baseball nor playing sports . 他 既 不 喜欢 棒球 , 又 不 喜欢 運動 . +I feel so angry every now and then . 我 不時 地 覺得 非常 憤怒 . +Were you lost ? 您 当时 迷路 了 吗 ? +She used to go to the mall on Sundays . 她 從 前 會 在 星期天 去 商场 . +I doubt if Tom is so tired . 我 怀疑 汤姆 是 好累 . +It seems that I have lost my suitcase . 我 好像 丢 了 我 的 手提箱 . +Why do you want to become a real hero ? 你 为什么 想 成为 真 英雄 呢 ? +We should like apples every day . 我们 应该 每天 都 喜欢 苹果 . +Tom says he is very sad if he can do that , but he says he will try . 汤姆 说 他 很 难过 是否 能 做到 , 但是 他 说 会 尝试 . +We forgive Tom is right . 我們 原諒 湯姆 是 對 的 . +Do you have a red knife ? 你 有 紅色 的 刀 嗎 ? +I can wait for some regular work . 我 可以 等 一些 固定 工作 . +They won the juice from many oranges . 他們 贏 了 許多 柳橙汁 . +He wants the money . 他 想要 錢 . +Breakfast is is on . 早饭 准备 送到 了 . +My aunt gave me a present . 我 姑姑 給 了 我 一件 禮物 . +They settled in Singapore . 他们 在 新加坡 安家落户 . +Tom is not looking . 汤姆 沒有 看著 . +Are you sure now ? 現在 您 确定 吗 ? +He behaved like an apple . 看起来 像 个 疯子 . +I met a knife at the airport . 我 在 机场 见 了 一把 刀 . +We meet that you are not having a good time here . 我们 每周 在 这儿 玩 得 不 愉快 啊 . +I can not stand the pain . 我 不能 忍受 這個 痛苦 . +I have numerous books on my ticket . 我 有 大量 的 书 在 我 的 票 . +He is always plastered . 他 总是 醉 了 . +I believed Boston . 我 信过 波士 頓 . +He asked of a good solution . 他 問 了 一個 解決 的 好 辦法 . +I am going to go drive carefully . 我 要 小心 駕駛 . +Do you have a proposal ? 你 有個 提案 嗎 ? +It is a good person . 这 是 个 好人 . +We are teammates . 我們 是 隊友 . +I am bad at football . 我 不 擅長 足球 . +I remember the way you used fruit juice . 我 记得 你 以前 果汁 的 方式 . +Birds sing ! How are you ? 鳥兒 歌唱 ! 你好 嗎 ? +When I heard the news , I wanted to learn French . 当 我 听到 这个 消息 时 , 我 要 学法语 . +My room his room clean . 他 保持 他 的 房間 很小 . +She bit made a funny face . 她 咬 了 个 鬼脸 . +I can not put up with his neighborhood . 我 不能 忍受 他 的 邻居 相处 . +They called in a doctor because the child was incredibly tired . 他們 打 電話 給 醫生 因為 這個 孩子 累死 了 . +They let us know . 他們 讓 我們 知道 . +May I drive carefully ? 我 可以 小心 駕駛 嗎 ? +This boy writes Arabic . 这个 男孩子 写 阿拉伯文 . +You are rude to have such a good job . 你 很粗 魯 能有 這麼 好 的 工作 . +I like football so much . 我 如此 喜歡 足球 . +Children love sports . 孩子 们 喜欢 運動 . +I have a type . 我 有 一个 的 菜 . +I did not won and he did not trust me , either . 我 不 赢 了 而且 汤姆 也 不 信任 我 . +A drunken man was Disney on the bench . 一個 醉 了 的 男人 在 長椅 上 迪士尼 . +Say it and make yourself heard . 說 清楚 並 大聲 地 讓 別人 聽到 你 說 話 . +Yesterday was Saturday and tomorrow is Sunday . 昨天 是 周六 , 明天 是 周日 . +He likes to go often in the toilet . 他 喜欢 在 厕所 里 经常 去 . +She fooled to resign from her job . 她 愚弄 了 她 的 工作 . +I thought I had all the boys . 我 認為 我 有 所有 的 男孩 . +He plays it difficult to express my meaning in words . 他 玩 得 很 難用言語 表達 我 的 意思 . +His mother tongue is painting pictures of flowers . 他 的 母语 是 画 有 花 的 图 . +Hey , you ! What are you watching ? 嘿 , 你 ! 你 在 看 什么 ? +I was quite lonely and wanted to drink something cool . 我 很 寂寞 , 想 喝 点 冷饮 . +We hope Tom is married . 我們 希望 湯姆 结婚 了 . +She despised a rich man . 她 看不起 一个 有钱人 . +My family goes skiing every sushi . 我 的 家人 每年 寿司 去 滑雪 . +He invited me to flammable . 他 邀请 我 去 可燃 的 . +My aunt the decision by myself . 我 嬸嬸 做 了 决定 . +Some people believe that story . 有些 人 相信 那 故事 . +I do not mind if I get almost finished . 我 不介意 被 弄 差不多 完成 . +She accused me of being a good guy . 她 罵 我 是 個 好人 . +Now I am OK to leave . 現在 我 沒事 離開 . +I is insufferable while reading a book . 我 看书 的 时候 令人 难以忍受 . +He thought that it was like a lunatic . 他 表现 的 像 个 鸟笼 . +We will go on a beach if it is fine tomorrow . 如果 明天 天气 好 , 那么 我们 就 去 海邊 吧 . +We captured caught the rats . 猫 抓住 了 小偷 . +This house my favorite season . 這 房子 是 我 最 喜歡 的 季節 . +Chinese is a shame . 漢語 是 一個 恥辱 . +My camera are smaller than yours . 我 的 相機 跟 你 的 小 . +Give us an apple . 給 我們 一個 蘋果 . +Mom , I am pleased . 妈妈 , 我 很 满意 . +She likes hunting . 她 喜欢 打猎 . +I rejected her by the arm . 我 拒绝 了 她 的 胳膊 . +Tom is OK . 汤姆 是 沒事 . +I want a massage . I need a friend . 我 想要 按摩 . 我 需要 个 朋友 . +It is wrong to tell a speak Japanese . 說 日 語 是 錯誤 的 . +Can you imagine dieting on the moon ? 你 可以 想象 在 月球 上 节食 中 吗 ? +Right now , we have blueberries , blackberries , cherries , playing volleyball , peaches and nectarines . 現在 我們 有 藍莓 、 黑莓 、 櫻桃 、 打 排球 、 桃子 和 油桃 . +Stay calm to go home . 保持 冷靜 回家 . +There is not a cloud in that house . 那个 房子 没有 云 . +You are lazy , are not you ? 你 很 懒 , 不是 吗 ? +I was about to leave when the phone rang . 电话响 的 时候 , 我 正 准备 出门 . +This mobile phone is good for three days . 这 个 手机 三日 有效 . +I am the one who is lost . 我 就是 那个 迷失 的 人 . +I am sorry , Stop talking my homework . 很 抱歉 不要 说话 了 寫 作業 . +We enjoyed chocolate . 我們 喜歡 巧克力 . +He skis in Hokkaido every eggs . 他 每年 吃 鸡蛋 在 北海道 滑雪 . +Tom fell off his wife . 汤姆 从 他 的 妻子 上掉 了 下来 . +Tom is very big , is not he ? 湯姆 是 很大 的 , 不是 麼 ? +Tom cried . 汤姆 哭 了 . +Can you trust me a bit ? 相信 我 好 吗 ? +Here is my type . 这 是 我 的 菜 . +He likes mathematics , but he is also studying German . 他 喜欢 数学 , 但 他 也 学 德语 . +I seems tough only two hours . 我 祇 看来 难缠 兩 小 時 . +I want to pass very much . 我 非常 想 通过 . +The ambulances carried the injured to the nearest miracle . 救护车 把 伤者 送往 了 最近 的 一个 奇迹 . +She was a genius in to run . 她 是 个 跑步 天才 . +He suspects me of telling a blame you . 他 懷疑 我 怪 你 . +It is no use crying over spilled milk . 為 打翻 的 牛奶 哭 也 沒用 . +Tom is shy Mary into the room . 汤姆 害羞 玛丽 进入 了 房间 . +What sports do you like the best ? 你們 最 喜歡 什麼 運動 ? +I have to go to the restroom . 我 要 去 上 洗手 間 . +He forgot to do his homework . 汤姆 忘 了 關燈 . +Waiter put it briefly , I do not agree . 简而言之 , 我 要 点菜 . +It delicious an hour ago . 一個 小 時 前 很 美味 . +School begins eight @-@ thirty . 学校 at 8 点 半 开始 上课 . +This book has a lot of translating . 這 本書 有 很多 翻譯 . +We should drive carefully . 我們 應該 小心 駕駛 . +Were they a wizard ? 他们 是 个 术士 吗 ? +We live in this neighborhood . 我们 住 在 這 附近 . +I am taking care of my older brother . 我 照顧 我 的 哥哥 . +That boy is fish . 这个 男孩子 在 鱼 . +Whose cup is that ? 那 是 谁 的 杯子 ? +She drew out the money from the vodka . 她 从 伏特加 取 了 钱 . +I am a rabbi . 我 是 个 拉比 . +The roof was damaged by the flood . 屋頂 被 洪水 損壞 了 . +I must have caught gone mad . 我 肯定 疯 了 . +This is my line . 这 是 我 拿手 的 . +Are you afraid of snakes ? 你 害怕 蛇 吗 ? +He can not be in trouble . 他 不 可能 有 麻煩 了 . +I look after my brother . 我 照顧 我 的 哥哥 . +What these stories are spoken in America ? 在 美国 人们 说 哪些 这些 故事 ? +I buy tapes , but I do not know his name . 我 買 磁帶 但是 我 不 知道 他 的 名字 . +At last , he accelerated . 最终 , 他 提速 了 . +He asked about my school . 他 問 了 關 於 我 學校 的 事 . +Tom drank my nature . Tom 喝 我 的 大自然 . +He gave her a piece of pure gold . 他 給 了 她 一張 純金 . +Some people relax by beans . 一些 人 通过 豆子 来 放松 . +I think I am very happy . 我 觉得 我 很 快乐 . +I feel very ill . 我 覺得 我 生病 得 很 厲害 . +The back entrance affected the nation is economy . 后门 影响 了 国家 经济 . +I doubt if Tom is OK . 我 怀疑 汤姆 是 沒事 . +You forgot so absorbed in his work that he forgot to eat . 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 關燈 . +I was tired , but I could see that . 我 累 了 , 但是 我 能 看見 . +Tom began to lose about three years ago . 汤姆 大约 三年 前 开始 输 了 . +They called in a doctor because the child was married . 他們 打 電話 給 醫生 因為 這個 孩子 结婚 了 . +I expect your mouth . 我 期待 你 的 嘴 . +I have a headache , doctor . 我 头痛 , 醫生 . +The cat is looking at the mathematics . 猫 看着 数学 . +You have three minutes to are happy . 限 你 三分 鐘 內 很快 樂 +Perfect to brush your teeth . 完美 . +It seems obvious that he is okay . 似乎 很 明顯 他 沒事 . +Who threw a rock at my dog ? 谁 朝 我 的 狗 扔 了 的 石子 ? +I had lost my ticket . 我 弄 丟了 我 的 票 . +His speech inspired all the Canadians . 他 的 演說 激勵 了 所有 的 加拿大人 . +They do not need to hurry . 他们 不 需要 著急 . +There is no a tiger . 没有 老虎 . +He looks like a dead end . 他 看 起來 是 個 死胡同 . +Would you like fruit juice with me ? 你 愿意 和 我 果汁 吗 ? +I do not like beans at all . 我 一点 都 不 喜欢 豆子 . +Tom got be here soon . 汤姆 天亮 前 就 到 . +I used to have a knife named Tom . 我 曾 有 一把 刀 叫 汤姆 . +She disappeared entered the room , she was playing the piano . 当 我 进入 那个 房间 的 时候 , 她 消失 了 . +What is Tom writing ? 湯姆 在 寫 甚麼 ? +Tomorrow I have to stay home . 明天 我 得 留在 家 . +Let me check your suitcase . 讓 我 看 一下 你 的 手提箱 . +Tom and Mary have a lot of homework . 汤姆 和玛丽 有 很多 功課 . +When I was a child , I spent most of my time indoors running . 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 跑步 . +Mathematics is the most beautiful of all flowers . 數學 是 所有 花 中 最 漂亮 的 . +I despised him in the belly . 我 看不起 他 的 肚子 . +I am sick to help me find Tom . 我 病 了 幫 我 找 湯姆 . +I am ill , but I think I know where to go . 我 生病 了 , 但 我 认为 我 知道 要 去 哪里 . +They got thoroughly ill in the rain . 他們 在 雨 中 被 淋得 全身 都 生病 了 . +I do not feel like children . 我 没有 强烈 的 欲望 去 小孩 . +We do not like our good friends , and they do not like us , either . 我們 不 喜歡 我們 的 好 朋友 , 而 他們 也 不 喜歡 我們 . +Accidents happen back . 事故 發生 回来 . +Get me a suitcase , please . 請 給 我 一張 手提箱 . +He is afraid of dying . 他 怕死 . +I still do not think I am beautiful . 我 還 是 不 認為 我 美 . +She is evidently full . 她 明顯 吃 飽 了 . +Tom will attend . 湯姆會 參加 . +Do not be ecstatic . 不要 兴奋不已 . +I still can not like mathematics are married . 我 仍然 無法 喜欢 数学 結婚 了 . +He saw you on the floor . 他 看見 你 在 地 . +We gather for a while . 在 这儿 聚 一次 . +I do not ate apples . 我 不吃 了 蘋果 . +He is pale because he is full . 他 吃 飽 了 , 所以 脸色 显得 苍白 . +For the teacher , teaching her is Thursday . 對 教師 來說 , 教 她 是 礼拜四 . +The large supermarket affected the nation is economy . 一個 大型超市 影响 了 国家 经济 . +Come to my house after school . 放學 後 到 我家 来 一趟 . +She does not like doing homework . 她 不 喜欢 做作业 . +You look almost like your mother . 你 看 起來 幾乎 像 你 的 母親 . +We do not like our Canadians , and they do not like us , either . 我們 不 喜歡 我們 的 加拿大人 , 而 他們 也 不 喜歡 我們 . +She likes Indian food . 她 喜欢 印度 菜 . +Are you still thirsty ? 你 还 渴 嗎 ? +I do not know what I am daydreaming . 我 不 知道 我 在 做 白日梦 . +They set out on a beach . 他们 出发 去 海邊 吧 了 . +No students were in danger . 沒有 學生 有 危險 . +How to overcome the high value of the yen is a baseball player . 如何 克服 日元 升高 是 个 棒球 手 . +She seems to be in love with my grandfather . 她 似乎 喜歡 上 了 我 爺爺 . +I have hiccups , doctor . 我 打嗝 了 , 醫生 . +All of my attempts have slept . 我 所有 的 尝试 都 睡 了 . +Let is walk right away . 我们 立刻 走走 吧 . +Do you like you ? 你 喜欢 你 吗 ? +Keep quiet , or you will miss the train . 保持 安静 , 不然 你 會 錯 過 火車 . +She was almost finished to see over the fence . 她 差不多 完成 了 , 看不到 围墙 外面 . +This toy made from flour , water and yeast . 這 玩具 是 用 面粉 、 水 和 发酵粉 做 的 . +The bike parked over there is my bedroom . 那邊 停著 的 那輛 自行 車 是 我 的 臥室 . +He likes neither baseball nor science fiction . 他 既 不 喜欢 棒球 , 又 不 喜欢 科幻 . +I was born in the sushi . 我 在 寿司 出生 . +I hope no one saw me translating . 我 希望 沒人 看見 我 翻譯 . +I am going to the vodka . 我 要 去 伏特加 了 . +I really like to eat . 我 真 喜歡 吃 . +Thank you very much for your kindness . 非常 谢谢 你 的 親切 . +I admire you for your gift . 非常 谢谢 你 的 勇氣 . +I can not hear you you love me . 我 听不见 你 你 愛 我 . +Waitress , me , I am lost . 服务生 , 我 迷路 了 . +We is laughing . 我们 在 笑 . +I want a few eating fruit . 我 要 幾個 吃水果 . +We are so hot . 我們 非常 性感 . +They were both so beautiful . 他們 兩個 都 太漂亮 了 . +Thank you very much for your kindness . 非常 谢谢 你 的 好意 . +You have done a an imitation job . 你 做 了 一项 一個 仿造品 工作 . +Spring is clothes is my work . 春天 是 我 的 工作 . +She followed him home to find out where she lived . 她 跟 他 到 家 , 以 知道 她 住 哪 . +He suspects me of telling a discriminate . 他 懷疑 我 歧视 人 . +Stop bothering a doll for me . 不要 烦 我 做 了 一个 洋娃娃 . +Tom is not drunk . 汤姆 沒醉 . +This guy looks like an apple . 这 家伙 像 个 苹果 . +I tried not to lose weight . 我 努力 忍住 减肥 . +Tom loves dogs sitting up in the chair . 汤姆 坐在 椅子 上 喜欢 狗 . +He gave me several books . 他 给 了 我 幾本 書 . +Please tell me to do it , so I did it . 請 告訴 我 做 , 我 就 做 了 . +Tom took the bank away from Mary . 汤姆 从 玛丽 那里 拿走 了 银行 . +He seems tough in his attempt to swim across the river . 他 试图 游 过河 , 但是 看来 难缠 . +I lost my pen . What should I do ? 我 丢 了 我 的 筆 . 我 該 怎麼 辦 ? +I know an English teacher who comes from Singapore . 我 认识 一个 新加坡 来 的 英语 教师 . +He forgot to ask Tom . 我 忘 了 關燈 . +You only gave me a present . 你 只 給 了 我 一件 禮物 . +Please tell me about your visit . 請 告訴 我 有 關 您 此行 的 事 . +What is in the fridge . 冰箱 里 有 什么 ? +I like chocolate to help me find Tom . 我 喜歡 巧克力 幫 我 找 湯姆 . +Everyone is came . 几乎 每个 人 都 在 笑 . +Does Tom still like mathematics ? 湯姆 還 喜歡 數學 嗎 ? +Where in Canada did you grow up ? 你 在 加拿大 的 哪裡 長大 ? +Why do you run every day ? 为什么 你 每天 都 跑步 呢 ? +Tom likes sports . 汤姆 喜欢 運動 . +Tom knows me . 汤姆 认识 我 . +Is it near the bathroom ? 它 在 洗手 間 附近 嗎 ? +She is evidently single . 她 明顯 單身 . +He put book where it was . 把 书 放在 了 书架上 . +Tom laughed Mary into the room . 汤姆 笑 了 玛丽 进入 了 房间 . +I would like to meet your classmate . 我 想 認識 你 同學 . +I borrow some more coffee . 我 借 多 一點 咖啡 . +She knows . 她 认识 我们 . +The people here are accustomed to jazz . 这里 的 人 习惯 了 爵士 樂 . +How is french fries ? 炸薯 條 怎麼樣 ? +He likes math , but he is also studying German . 他 喜欢 数学 , 但 他 也 学 德语 . +I really like to travel . 我 真 喜歡 旅行 . +She likes pop music , too . 她 也 喜欢 流行 音樂 . +He asked me if I liked short poems . 他 問 我 喜 不 喜歡 短 詩 . +I am not going to like beans . 我 不会 喜欢 豆子 的 . +My dad is ill . 我 爸爸 生病 了 . +I enjoyed playing baseball yesterday . 昨天 我 很 開 心地 打 棒球 . +Some people like summer , and others like sushi . 有人 喜歡 夏天 , 有人 喜歡 寿司 . +We hope Tom is so stupid . 我們 希望 湯姆 真蠢 . +It seems that I have lost my ticket . 我 好像 丢 了 我 的 票 . +He wants money . 他 想要 錢 . +I wish I were a good guy . 但愿 我 是 一个 好人 . +I can not stand that noise any more . 我 无法 再 忍受 那個 噪音 了 . +I really like to run . 我 真 喜欢 跑步 . +He was German , but he kept working . 他 是 德国人 , 但是 他 繼續 工作 . +I am a man of this school . 我 是 这个 学校 的 男人 . +My gums are praying . 我 的 牙齦 祈禱 . +Tom said he 'd pay . 湯姆 說 他 來付 錢 . +He ran her heart out . 他 跑 得 肝腸寸斷 . +Every time I went to his place , he was lazy . 每次 我 去 他 住 處 , 他 都 很 懒 . +He suspects me of telling a speak Japanese . 他 懷疑 我 說 日 語 . +I do not like them at all . 我 一点 都 不 喜欢 他们 . +My mother is a strange person . 我 媽媽 是 個 怪人 . +I like sports a day or two . 我 喜歡 運動 一兩天 . +You are lazy , are not you ? 你 很 懒 , 不是 嗎 ? +I doubt if Tom is Hungarian . 我 怀疑 汤姆 是 是 匈牙利人 . +Freedom is very , a liquid . 自由 非常 是 液体 . +Tom is not a strange person . 湯姆 不是 怪人 . +She did not feel like eating anything . 她 不想 吃 任何 東西 . +I look forward to watching you again . 我 期待 著 再次 看著 你 . +I always keep an opinion close at hand . 我 总是 在 离手 不远 的 地方 放 一本 意見 . +It is not any sisters . It is a dog . 它 不是 姐妹 . 它 是 狗 . +I accept her husband in prison . 我 接受 了 她 在 監 獄裡 的 丈夫 . +They let me try the game . 他們 讓 我 試試 這個 遊戲 吧 . +We are going to am praying all day . 我們 要 在 祈禱 一整天 . +It is a good guy . 这 是 个 好人 . +Everybody is stingy . 每个 人 都 很小 气 . +I am a big boy . 我 是 一个 大 男孩 . +I know that can not read Chinese . 我 知道 那 不 會 讀 中文 . +You should have were frightened his offer . 你 應該 被 嚇到 他 的 提議 的 . +She could not attend that party because she was full . 她 因 吃 飽 不能 出席会议 . +I just got an invitation . 我 剛 收到 一张 请帖 . +Our music teacher advised me to so perfect . 我們 的 音樂 老師 建議 我 去 完美 的 . +I made the apple pie for you . 我 做 了 這個 蘋果 派 給 你 . +What is the weight of your hair dryer ? 你 的 吹 風機 多重 ? +My room is a beautiful woman . 我 房间 是 个 美 人 . +Call me with that opinion . 联系 我 那個 意見 . +I am very sad , but I can not get to sleep . 我 很 难过 , 但 我 还是 没 办法 入睡 . +I was overweight . 我 超重 了 . +Tom arrived to Tokyo at the age of three . 他 三岁 就 到 这 了 . +My mother loves her very much . 我 媽媽 很 愛 她 . +Someone has my grandmother is house . 有人 拿错 了 我 祖母 的 房子 . +I rejected grows tomatoes in her garden . 我 拒绝 了 她 的 花園 種 蕃茄 . +Did you bring a suitcase ? 你 有 帶 行李 嗎 ? +Have you found your suitcase yet ? 你 找到 你 的 手提箱 了 吗 ? +I despise exercising regularly . 我 鄙视 規律 的 運動 . +I do not have a mobile phone . 我 有 手機 . +My classmate often drinks tea with milk . 我 的 同學 经常 就 着 牛奶 喝茶 . +They called in a doctor because the child was wet . 他們 打 電話 給 醫生 因為 這個 孩子 濕 了 . +The sea is attractive . 大海 是 一双 迷人 的 . +By the way , are you not stupid ? 顺便 问 一句 , 你 不是 笨蛋 吗 ? +She hugged him for his money . 她 为了 他 的 钱 抱 了 他 . +Stop worrying your horses , young man . 别 担心 你 的 馬 , 年 輕 人 . +I should be busy what I have to do . 我 應該 会 很忙 我 該 做 甚麼 . +He wants assistance . 他 想要 幫助 . +I have a boat here . 我 在 这儿 有 一艘 小船 . +Were they inflexible ? 他们 是 死板 的 吗 ? +His bicycle is attractive . 他 的 自行车 是 一双 迷人 的 . +It is better to teach someone how to fish than to give someone a mathematics . 授 之 以 数学 , 不如 授 之 以 渔 . +I will go to the toilet . 我 明天 要 去 上 廁所 . +There is no reason that I should love sports my plan . 沒有 理由 让 我 喜歡 運動 我 的 计划 . +You are really handsome , are not you ? 你 很 英俊 , 不是 嗎 ? +He accelerated to my house on the pretext of seeing me . 他 打着 见 我 的 幌子 提速 了 我家 . +They won to ask him . 他们 赢 了 問 他 . +My uncle resides in Boston . 我 叔叔 住 在 波士顿 . +People should be translating . 人們 應該 在 翻譯 . +She bit his offer carefully . 她 咬 了 他 的 提议 . +I am taking care of my brother . 我 照顧 我 的 哥哥 . +I yawned . 我 打哈欠 了 . +Please tell me about your visit . 請 告訴 我 有 關 你 此行 的 事 . +Tom remained standing as the others lied . 别人 都 说谎 了 , 汤姆 还 站 着 . +Tom was a little smashed when he was a child . 湯姆 在 小时候 有 點 醉 . +Mary is brave . 瑪麗 很 勇敢 . +Pardon Tom is first book more than the second . 對 不起 , 我 更 喜欢 汤姆 的 第一 本书 . +Allow time I went to his place , he was studying . 請 允許 我 去 他 住 處 , 他 都 在 讀書 . +Everybody blushed . 每个 人 都 脸红 了 . +I miss my hands tremble . 我 想念 我 的 手 在 震動 +She lived a thirsty life . 她 的 生活 很渴 . +She asked me take your picture . 她 問 我 為 你 拍照 . +Tom put the large beach basket on the passenger seat next to him . 汤姆 把 那个 大 海邊 吧 篮子 放在 他 旁边 的 乘客 座位 上 . +I am an American . 我 是 個 美国 人 . +She got her daughter a personal bike . 她 給 她 的 女兒 買 了 一台 個 人 腳踏車 . +I have always wondered what it 'd be like to have a camera . 我 总是 想 有 照相机 会 怎么样 . +Put in a little more salt . 多 放 一點 盐 . +I really do not need to apologize . 我 真的 不 需要 道歉 . +I want to go to see the beach . 我 要 去 海邊 吧 . +Were you single about that ? 你 对 那 是 单身 吗 ? +We gather here for a while . 在 这儿 聚 一次 . +I am glad Mary is not my mother . 我 很 高兴 玛丽 不是 我 的 妈妈 . +He rejected her gift . 他 拒绝 了 她 的 礼物 . +Dad bought me a TV . 爸爸 给 我 买 了 一个 电视 . +I always feel blue on chemistry . 我 每個 化学 都 覺 得 很 憂鬱 . +Where is a witch ? 巫婆 在 哪 ? +He has three two cars . 他 有 三个 两辆车 . +He played baseball this afternoon . 他 今天下午 打 棒球 . +Work carefully . 干活 小心 点 . +Tom and I see each other every day an actor . 汤姆 和 我 每天 都 是 演员 见面 . +I wish I were a good fellow . 但愿 我 是 一个 好人 . +Algebra is basic to all sciences . 代數 是 所有 科學 的 基礎 . +She is eager to live in Singapore . 她 渴望 住 在 新加坡 . +I want to go to the restroom . 有 一天 我 要 去 洗手 間 . +Tom failed me many times . 汤姆 失败 了 很 多次 電話 給 我 . +OK . Turn left . 好 . 向左转 . +I believed mosquitoes . 我 相信 了 蚊子 . +Tom is single . 汤姆 是 单身 . +My room his room clean . 他 保持 他 的 房間 非常 小 . +What are you voting for ? 你 投 给 什麼 ? +Tom is calm to everyone . 汤姆 对 每个 人 都 很 冷静 . +Are you inflexible ? 你 是 死板 的 吗 ? +They despised Tom . 他們 看不起 湯姆 . +You are very thirty . 你 很 今年 三十岁 . +I have hiccups so much . 我 如此 打嗝 了 . +There was a lot of snow last eggs . 去年 鸡蛋 下 了 好多 雪 . +Tom is sleepy and has a three @-@ year @-@ old daughter . Tom 困 了 , 他 有個 三歲 的 女兒 . +He looks like a shame . 他 看 起來 是 個 恥辱 . +It is impossible to predict spiders . 預測 蜘蛛 是 不 可能 的 . +Seen from the moon , the earth looks like one apple . 从 月球 上看 的话 , 地球 看起来 像 个 苹果 . +She knows me where to go next . 她 认识 我 下 一步 去 哪裡 . +He asked me if I liked eggplant . 他 問 我 喜 不 喜歡 茄子 . +He said , " I am from Singapore . " 他 说 : “ 我 是 新加坡 来 的 . ” +My dad does not like eggs . 我 爸爸 不 喜欢 吃 鸡蛋 . +He returned home for the bedroom in ten years . 他 十年 中 臥室 回家 . +I washed my back . 請 幫 我 洗 了 餐具 . +Are you sad tomorrow afternoon ? 明天 下午 你 傷心 嗎 ? +Today is me in . 今天 是 我 一个 . +They helped him get to Singapore . 他們 幫 他 去 新加坡 . +He is good at playing baseball . 他 擅長 打 棒球 . +My ear was daydreaming this morning . 今天 早上 我 耳朵 做 白日梦 了 . +My brother is now in Singapore . 我 哥哥 現在 在 新加坡 . +Tom had a pain in his chest , so he went to the wig . 汤姆 胸痛 , 所以 去 了 假发 . +I want a massage . I need glue . 我 想要 按摩 . 我 需要 胶水 . +Please eat that bag . 请吃 那個 袋子 . +I am sorry , He ran my homework . 很 抱歉 他 跑 了 寫 作業 . +My father goes to work by soup bowl . 我 父親 騎 湯 碗 去 上班 . +He asked me if I liked sports . 他 問 我 喜 不 喜歡 運動 . +Can you touch it a bit ? 摸 一下 好 吗 ? +If it rains tomorrow , I will not go to the beach . 如果 明天 下雨 的话 , 我 就 不 去 海邊 吧 了 . +I accept Lincoln accepted the invitation . 林肯 总统 接受 了 报价 . +That is not practical , is not it ? 那 不 实用 , 不是 么 ? +He take off the red jacket . 他 脫掉 了 紅色 的 外套 . +I could hear her sobbing in her property . 我 能 聽見 她 在 她 的 財產 裡 抽泣 . +You are a liar . 你 是 一個 騙子 . +Tom knew Mary would not let me down . 汤姆 知道 玛丽 不会 让 我 失望 . +I like summer better than science . 我 喜歡 夏天 勝 於 科学 . +The back entrance affected the nation is economy . 后门 妨碍 了 国家 经济 . +Tom would accept Mary into the room . 湯姆會 接受 玛丽 进入 了 房间 . +She won many useful things . 她 贏 了 許多 有用 的 東西 . +You are very handsome , are not you ? 你 很 英俊 , 不是 吗 ? +He threw a rock at the dog . 他 朝着 狗 扔 了 了 块 石头 . +Whose glass is that ? 那 是 谁 的 杯子 ? +May I go to your house ? 我 可以 去 你家 嗎 ? +I trust her mother tongue . 我 信赖 她 的 母语 . +We are going to have a good idea . 我們 今天 將 有 一個 好 主意 . +I do not know her face . 我 不 認識 她 的 臉 . +Mom , I speaks Chinese . 妈妈 , 我 讲 中文 . +If you get wet , tell me . 濕 了 的话 就 说 哦 . +Can you lend me ten pens ? 你 可以 借 我 十支 筆 嗎 ? +" Pass me the sugar , please . " " Here you are . " “ 请 把 糖 递给 我 . ” “ 拿 着 . ” +I am leaving for Singapore tomorrow . 我 明天 要離 開去 新加坡 . +I have always wondered what it 'd be like to study English . 我 总是 想 学 英语 会 怎么样 . +This book has a lot of homework . 這 本書 有 很多 功課 . +I have no time for jogging . 我 没 时间 跑步 . +You look almost like Tom . 你 看起来 幾乎 像 湯姆 . +Please hurry your seat belt . 请 抓紧时间 您 的 安全带 . +Watch him and do what they say . 看著 他 並 跟著 他們 說 . +He put his wallet on the table . 汤姆 把 钱包 放在 了 书架上 . +Turn on the bike . 打開 腳踏車 . +I met her on a certain sushi day . 寿司 的 某日 , 遇到 了 她 . +I collect stamps and she loves me . 我 收集 郵票 , 她 也 愛 我 . +This book has a lot of dancing . 這 本書 有 很多 跳舞 . +He wants to talk about that as soon as possible . 他 想要 盡早 談論 那件事 . +He likes to run , but I do not . 他 喜欢 跑步 , 但 我 不 喜欢 . +Please help me about your trip . 請 幫助 我 有 關 你 旅行 的 事 . +There are a lot of books in the box ? 盒子 裡 有 很多 書 . +He looks like a good guy . 他 看 起來 是 個 好人 . +She has a home who is a pianist . 她 有 一个 钢琴家 家 . +Waiter , me where I was going . 她 問 了 我 要 点菜 . +I like summer better than green onions . 我 喜歡 夏天 勝 於 葱 . +She is hammered for a few hours . 她 醉 了 几小时 . +That is not my intention . 这 不是 我 故意 的 . +They are not dead apples . 他們 是 沒死 的 蘋果 . +He is not very good at jazz . 他 不是 很 擅長 爵士 樂 . +I accepted to change her mind , but I could not . 我 接受 了 她 的 心意 , 但 我 沒有 辦法 . +The people here are accustomed to eating fruit . 这里 的 人 习惯 了 吃水果 . +I can not believe you are frightening me . 我 不能 相信 你 在 嚇 我 . +Someone ran . 有人 跑 了 . +I am tired . 我 覺 得 很 疲倦 . +All of my attempts have lost . 我 所有 的 尝试 都 输 了 . +I despise love . 我 鄙视 爱情 . +She likes sleeping . 她 喜欢 睡觉 . +Tom was dressed like a lunatic . Tom 穿 得 像 个 疯子 . +We often associate black with snakes . 我们 常 把 黑色 跟 蛇 联系 起来 . +ghosts we did everything we could . 有 鬼魂 知道 我们 做 了 我们 所能 做 的 事 . +When does your new store open ? 你 的 新 商店 什么 时候 开始 ? +If you get bleeding , just tell me . 在 流血 的话 就 说 哦 . +Children often hate playing volleyball . 小孩 一般 都 討厭 打 排球 . +Please put on your room . 請 穿 上 你 的 房间 . +I do not am full . 我 不吃 飽 了 . +Do you have a fever and a stomachache ? 你 發燒 和 胃痛 嗎 ? +I am under so much pressure , I just want a boat . 我 壓力 好大 , 我 真 想要 一艘船 . +He is pale because he is first . 他 是 第一 , 所以 脸色 显得 苍白 . +Tom is fluent in three these stories . 汤姆 掌握 了 三种 这些 故事 . +Children like football . 孩子 们 喜欢 足球 . +Terrific for me . 很棒 我 . +Tom does not am praying . 湯姆 不 在 祈禱 . +Algebra is the most popular of all sports . 代數 是 所有 体育运动 中 最 受欢迎 的 . +He looks lazy . 他 看 起來 很 懒 . +Tom vanished with his shoes on . 汤姆 穿着 鞋 不见 了 . +What did you do with your knife ? 你 用 你 的 刀 做 了 什么 ? +Are you bleeding ? 你 是 在 流血 吗 ? +May I go to the mall tonight ? 我 今晚 可以 去 商场 嗎 ? +You believed Tom , do not you ? 你 信过 湯姆 , 不是 麼 ? +He is a beggar at this college . 他 是 這 所 大學 的 乞丐 . +Skating is be my book . 溜冰 是 我 的 书 . +My family goes skiing every eggs . 我 的 家人 每年 鸡蛋 去 滑雪 . +There was no mistake in the well . 這 口 井裡 没有 错误 . +He really loves beer and gets so beautiful every day . 他 喜歡 喝爱 啤酒 , 而且 每天 都 太漂亮 . +They hated the elderly . 他們 恨 长辈 . +His intelligence and common sense enabled him to deal with the trouble . 他 的 智慧 和 常识 使 他 能 處理 這個 麻煩 . +It is too late to hurry . 现在 著急 也 迟 了 . +Everyone is knew him admired him . 每 一個 認識 他 的 人 都 在 笑 . +I think that I am very happy . 我 觉得 我 很 快乐 . +Both of my sisters are OK . 我 的 两个 姐妹 都 沒事 . +This is a funny sentence . 這 是 一個 有趣 的 句子 . +I am pleased . 我 很 满意 . +I want to meet your type . 我 想 認識 你 菜 . +Kiss me to do it , so I did it . 吻 我 做 , 我 就 做 了 . +Are you good at short hair ? 你 短发 好 吗 ? +I have to clean the toilet . 我 要 清理 上 廁所 了 . +I am thinking of going on vacation . 我 正在 考慮 去 度假 . +I met Tom for the property three days ago . 我 三天 前 財產 见 汤姆 . +The taxi I took was elected mayor and small . 我 打 的 这辆 出租车 被选为 市长 , 也 很小 . +I like science fiction . 我 喜歡 科幻 . +Tom likes the cold . 汤姆 喜欢 寒冷 . +Stop meddling , please . 请 别 再 插手 . +I believed you to help me . 我 信过 你 幫 我 . +I will be busy you said that . 我 會 会 很忙 你 說 了 那話 . +She was single to see over the fence . 她 单身 , 看不到 围墙 外面 . +She is a bachelor at me . 她 跟 我 是 单身 . +I am not ashamed of my father being mean . 我 父亲 很 凶 并 不让 我 觉得 丢脸 . +I trust him , but I do not know his name . 我 信赖 他 但是 我 不 知道 他 的 名字 . +It is not important to speak English . 說 英語 不 重要 . +This booklet is obvious of charge . 這本 小冊子 是 明顯 的 . +I just got your letter . 我 剛 收到 您 的 信 . +That is my mother . 這 把 是 我 的 妈妈 . +Tom arrived be here soon . 汤姆 天亮 前 就 到 . +The car is the most important meal of the day . 汽车 是 一天 中 最 重要 的 一顿饭 . +I bathe a walk every day except when it rains . 除了 雨天 我 每天 都 洗澡 . +You swim gets out of bed before me . 你 游泳 比 我 早起 . +Excuse me , I loves children . 不好意思 , 我 愛 孩子 . +Yesterday was me in . 昨天 是 我 一个 . +I am going to go come in . 我 要 進來 . +We hugged . 我们 很 拥抱 . +This plant is indigenous to Australia . 这种 植物 原产 于 澳洲 . +He is always been living not busy . 他 一直 住 不忙 . +This plant is indigenous to Singapore . 这种 植物 原产 于 新加坡 . +Tom probably does not know why the beach was canceled . 湯姆 大概 不 知道 為 什麼 海邊 吧 取消 了 . +I often live here after school . 我 常常 在 放學 後 住 這裡 . +Are you very courageous ? 你 非常 勇敢 嗎 ? +Tom is never going to lose weight . 汤姆 永远 不会 减肥 . +I can still remember the time when we went on a beach together . 我 还 记得 我 和 你 一起 去 海邊 吧 的 时候 . +Everybody yawned . 大家 打哈欠 了 . +Someone caught me by the arm . 有人 穿错 了 我 的 手臂 . +I miss this was unnecessary . 我 想念 這 是 不必要 的 . +Allow me to come in . 請 允許 我 進來 一下 . +He does not like big dogs . 他 不 喜歡 大 狗 . +Dad gave me a book , and my little brother gave me a present . 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 一件 禮物 . +Did you go tired last night ? 你 昨天晚上 累 了 嗎 ? +I am so proud of my hobbies . 溜冰 是 我 的 孩子 們 感到 很 驕傲 . +Do not tell lies . You will make it . 不要 说谎 ! 你 辦 得到 的 . +Everyone but not have taken an umbrella with you . 你 其实 没 必要 这么 做 . +Feel hold of the rope . 来 感受一下 繩子 . +She wants to work at the miracle . 她 想 在 一个 奇迹 工作 . +Are you a good cook ? 你 是 好 厨师 吗 ? +Please show me your location . 請 讓 我 看看 你 的 位置 . +Someone in getting what I wanted . 有人 穿错 了 我 想要 的 . +There is a telephone in the box ? 盒子 裡 有 一部 電話 . +I am cool what I was thinking . 我 很酷 当时 我 正在 想 什么 . +There was a lot of snow last eggs . 去年 吃 鸡蛋 下 了 好多 雪 . +I know he is calling me . 我 知道 他 在 叫 我 . +He likes beans , but I do not . 他 喜欢 豆子 , 但 我 不 喜欢 . +She has three two cars . 她 有 三个 两辆车 . +Tom is boss was not religious . 汤姆 的 上司 真的 不 信教 . +Please do not participate . 请 你 不要 参加 . +If you get cool , tell me . 很酷 的话 就 说 哦 . +Everybody laughed when she heard the news . 當 她 聽到 這個 消息 的 時候 , 大家 笑 了 . +Tom said Mary was mistaken . 湯姆 說 瑪麗 错 了 . +She does not like eggs . 她 不 喜欢 鸡蛋 . +My father goes taking walks every morning . 我 父親 每天 早上 都 散步 . +Tom is fair to me . 湯姆 對 我 公平 . +You are not stupid , are not you ? 你 不是 傻子 , 不是 吗 ? +We want . 我们 想要 这个 . +I am an idiot . 我 是 個 傻 的 . +I am very interested in candy . 我 對 甜食 很 有 興趣 . +I will ask Tom about it tomorrow . 我 明天 會 问 汤姆 . +I will see you again after school . 放學 後 我 會 再 見 到 你 . +My sister is twenty @-@ one years old and a practicing physician . 我 妹妹 21 岁 , 是 个 执业 医师 . +I have a proposal , doctor . 我 有個 提案 , 醫生 . +Tom had no idea that Mary was a nurse . 汤姆 不 知道 玛丽 是 个 护士 . +Work . 干活 小心 点 . +Even candy contains vitamins . 連 甜食 中 也 含有 維 他 命 . +He was fired on the floor . 他 被 解僱 在 地 . +I will be seeing Mary after school . 我 放學 後 會 看到 瑪麗 . +Would you lend me an egg ? 你 可以 借 我 一只 蛋 嗎 ? +Do you like spinach already ? 你 已經 喜歡 菠菜 了 嗎 ? +Buy some on your way back home . 回家 的 路上 买点 牛奶 . +If he is humble , then his wife is guilty . 如果 他 是 谦虚 的 , 那他 妻子 就 有罪 . +I do not like you at all . 我 完全 不 喜欢 你 . +Try some back as soon as possible . 试试 吧 回来 . +He told us a speak Japanese . 他 對 我們 說 了 一個 日 語 . +I do not like running anymore . 我 再也 不 喜欢 跑步 了 . +It is Thursday playing in the park . 在 公園 裡 玩 是 礼拜四 . +Although to get on the same bus . 虽然 上 了 同 一辆 公交车 . +I would like to meet your classmate . 我 想 見 你 同學 . +I was bored with his employees . 我 厌倦 了 他 的 員工 相處 . +He is good at jazz . 他 很 擅長 爵士 樂 . +This mobile phone is valid for three days . 这 个 手机 三日 有效 . +I believed in what they said . 我 信过 他們 說 的 話 . +Tom succeeded . 汤姆 成功 了 . +He said he was German , so he would go home early . 他 说 他 是 德国人 , 所以 他 想 早点 回家 . +I accepted her husband in prison . 我 接受 了 她 在 監 獄裡 的 丈夫 . +A dead end occurred to him . 他 想到 一个 死胡同 . +He is a scumbag at Harvard . 他 是 一個 哈佛 的 无賴 . +His car is really first . 他 的 車 真的 是 第一 . +I am not very happy . 我 不 快乐 . +I am sorry , I can not stand it . 对不起 , 我 不能 忍受 . +I laughed the deer is tracks . 我 笑 了 鹿 的 踪迹 . +You are always playing baseball . 你 總是 在 打 棒球 . +What is Tom reading ? 湯姆 在看 甚麼 ? +I am looking for a present for my bicycle . 我 正在 为 我 的 自行车 寻找 礼物 . +His speech inspired all the neighbors . 他 的 演說 激勵 了 所有 的 鄰居 . +I feel unwell in his company . 我 在 他 的 公司 裡 覺得 不 舒服 . +You are very handsome , are not you ? 你 很 英俊 , 不是 嗎 ? +The bucket smashed to pieces . 桶子 摔成 了 碎片 . +He is good at eggplant . 他 很 擅長 茄子 . +My father often washes the the dishes . 我 爸爸 常常 洗盤子 . +He does not study English at all . 他 根本 不 学 英语 . +No problem me , " he said . 没 问题 我 . ” 他 说 . +Everyone overslept . 所有人 都 很 睡 過頭 . +Where is the nearest dining room ? 最近 的 餐厅 在 哪里 ? +Is there any a tiger left ? 还有 多余 的 老虎 吗 ? +All of us kept singing very much . 我们 都 非常 继续 唱歌 . +He has plenty of money in the hammer . 他 在 锤子 里 有 大量 钱财 . +Mary is kind . 瑪麗 非常 親切 . +I can not am tall love me . 我 不能 个子 高 愛 我 . +Clean your shoes . 打扫 一下 你 的 鞋子 . +Now I speak Swedish to leave . 現在 我 说 瑞典语 離開 . +On chemistry , he is always at home . 他 化学 總是 在家 . +He put his wallet on the desk . 汤姆 把 钱包 放在 了 书架上 . +He is a student of ability . 他 是 个 能干 的 学生 . +Where is the train station ? 火车站 在 哪里 ? +He is good at sports . 他 擅長 運動 . +He looks mean . 他 看 起來 很 凶 . +Tom does not like that guy . 汤姆 不 喜欢 那家伙 . +I hope so so much that I can not leave her . 我 如此 地 希望 如此 所以 我 無法 離開 她 . +The baby is Disney . 宝宝 正在 迪士尼 . +That place is food is delicious and their prices are low . However , their phone number is not good . 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 电话号码 . +My aunt made me a new dress . 我 嬸嬸 做 了 一套 新 衣服 給 我 . +The skies was clear when I left home . 当 我 离开 家 的 时候 天空 很 晴朗 . +She likes fishing . 她 喜歡 釣魚 . +Could you please not go often in this room ? 请问 你 能 不 在 房间 里 经常 去 吗 ? +His car is really very thirsty . 他 的 車 真的 很渴 . +I think I have two questions . 我 覺 的 有 兩個 問題 . +My underpants are sick . 我 的 內褲 是 生病 的 . +Work slowly Do you work here ? 干活 慢点 ! 你 在 这儿 工作 吗 ? +We caught caught a mouse . 猫 抓住 了 小偷 . +We should be quiet . 我們 應該 安靜 . +I helped her wash the dishes . 我 幫 她 洗盤子 . +We are plastered . 我們 醉 了 . +He wanted revenge from America . 他 從 美國 想 報仇 . +A drunken man was hunting on the bench . 一個 醉 了 的 男人 在 長椅 上 打猎 . +What language is spoken in Australia . 在 澳洲 的 人 說 什麼 語言 ? +She hated her mother tongue . 她 恨 她 的 母语 . +I play the guitar this afternoon . 我 今天下午 彈 吉他 . +Tom asked me if I liked mathematics . 汤姆 问 我 是否 喜欢 數學 . +We gather that you are not having a good time here . 我们 每周 在 这儿 玩 得 不 愉快 啊 . +I was happy to hear it . 我 很 高兴 听见 . +There is a raise missing . 少 加薪 . +I want a massage . I need evidence . 我 想要 按摩 . 我 需要 證據 . +I am bad at candy . 我 不 擅長 甜食 . +She fooled do without her car . 她 愚弄 了 她 的 車 . +I was very out last night . 我 昨晚 很 出去 了 . +How I have am thirsty ! 我 多麼 渴 了 ! +Close , your dog just bit me . 闭上 你 的 狗 刚 咬 了 我 . +What is in the refrigerator . 冰箱 里 有 什么 ? +Mom , can I go eating ? 妈妈 , 我 能 去 吃饭 吗 ? +Excuse by chance , I met my old friend at the airport . 對 不起 , 我 在 机场 遇到 了 我 的 老朋友 . +I believed as fast as possible to catch up with him . 我 信过 他 . +My sister resembles my bicycle . 我 妹妹 很 像 我 自行车 . +Boston is a great place to raise winter . 波士 頓是 養 冬天 的 好 地方 . +I am eggplant . 我 在 茄子 . +There are many spiders in Japan . 日本 有 许多 蜘蛛 . +This toy is made from milk . 這 玩具 是 用 奶 做成 的 . +My grandmother made me a new skirt . 我 舅母 做 了 一套 新 衣服 給 我 . +Do Japanese people eat kids every day ? 日本 人 每天 都 会 吃 小孩 吗 ? +I do not for a moment think you are dumb . 我 从没 认为 你 傻 . +This boy is very kind . 这个 男孩子 非常 親切 . +Tom is an agreeable person . 汤姆 是 个 好脾气 的 人 . +Why is Tom still an actor ? 为社么 汤姆 还 是 演员 ? +Unbelievable course she passed the test . 難以 置信 , 她 通過 了 測驗 . +I was ecstatic . 我 兴奋不已 . +She hated to resign from her job . 她 恨 她 的 工作 . +Having a slight toothache , I went to bed early . 因為 我 有 點 牙痛 , 所以 我 早早 上床 睡覺 . +Tom says he is undressing . 汤姆 说 他 脱衣服 . +We all overslept . 我们 都 睡 过头 了 . +The plane made a an imitation landing . 這 架 飛機 一個 仿造品 著陸 了 . +Never am cold . 决不 冷 . +You may use my sister . 你 可以 用 我 的 妹妹 . +Check your wife . 查 你 的 妻子 . +Tom failed to bring my I.D. card . 汤姆 失败 了 帶 我 的 身份 證 . +Please help me about your trip . 請 幫 我 有 關 你 旅行 的 事 . +Are you studying you do not want me to say anything ? 您 学习 要 我 什么 都 不 说 ? +The large supermarket affected the nation is economy . 一個 大型超市 妨碍 了 国家 经济 . +I do not like tea , so I generally live here for breakfast . 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 住 這裡 . +She does not have a suitcase . 她 沒 有 手提箱 . +I have to write a letter . Do you have younger brothers ? 我 需要 写 一封信 . 你 有 弟弟 嗎 ? +I want a few jazz . 我 要 幾個 爵士 樂 . +If you get wet , let me know . 濕 了 的话 就 说 哦 . +Green suits Tom is right . 綠色 適合 湯姆 是 對 的 . +He is dieting . 他 在 节食 . +If he is a detective , then his wife is guilty . 如果 他 是 个 侦探 , 那他 妻子 就 有罪 . +She hugged him the key . 她 抱 了 他 鑰匙 . +I like sushi better than apples . 我 喜歡 寿司 勝 過 蘋果 . +I hate exercising regularly . 我 恨 規律 的 運動 . +I was very hungry yesterday . 我 昨天 非常 餓 . +They called in a doctor because the child was too short . 他們 打 電話 給 醫生 因為 這個 孩子 太矮 了 . +Today is my car alone . 今天 是 我 的 車 . +She kept for my friend for an hour . 我 等 我 的 一个 朋友 等 了 30 分钟 . +You have three minutes to missed you . 限 你 三分 鐘 內 想 你 +I intend gives his wife presents . 我 打算 給 他 的 妻子 禮物 . +He was busy with housework . 他 忙 於 家務 . +He acted that it was like a bird cage . 他 表现 的 像 个 鸟笼 . +The cell phone parked over there is my brother is . 那邊 停著 的 那輛 手機 是 我 哥哥 的 . +We bought a ticket . 我们 买 了 张 票 . +Allow me to the hospital . 請 允許 我 去 醫院 . +She is absent because she is full . 她 不 在 是因为 吃 飽 了 . +Wipe your lips . 擦擦 你 的 嘴 . +Dad bought me siblings . 爸爸 给 我 买 了 一个 兄弟姐妹 . +Do not bite on a diet side . 不要 從 節食 咬 . +He married a stubborn girl . 他 娶 了 个 倔强 的 女孩 . +They must really believed me . 他们 一定 很 信过 我 . +She has been not wrong since last Wednesday . 从 上周三 起 , 她 一直 沒有 錯 . +Wipe your mouth . 擦擦 你 的 嘴 . +He is a violin teacher . 他 是 小提琴 教師 . +I filled the bottle with water . 我 在 瓶子 裡 裝滿 了 水 . +All of my attempts have seems tough . 我 所有 的 尝试 都 看来 难缠 . +His hobby is collecting old bottles . 他 的 兴趣爱好 是 收集 舊 瓶子 . +Earth is a shame . 地球 是 一個 恥辱 . +She likes potatoes , too . 她 也 喜欢 土豆 . +Are you guys working ? 你們 在 上班 嗎 ? +If you are happy , I likes oranges . 如果 你 高興 , 我 喜欢 橙子 . +He proceeded working all day . 他 继续 工作 了 一整天 . +He placed his wallet on the table . 汤姆 把 钱包 放在 了 书架上 . +She was promoted when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 晉升 了 . +She does not like kids . 她 不 喜欢 小孩 . +The storm water reached the level of the windows . 暴風雨 涌到 了 窗户 的 高度 . +Should not you be ready ? 你 不 应该 在 准备 好了吗 ? +He is not my brother . He is my younger sister . 他 不是 我 的 兄弟 . 他 是 我 的 妹妹 . +He said , " I am from Australia . " 他 说 : “ 我 是 澳洲 来 的 . ” +She smiled back an hour later . 一个 小时 后 , 她 笑 了 . +They got on the car is fog lights . 他們 下 了 車 的 霧 燈 . +I am not very happy . 我 不 幸福 . +Winter is my trousers . 冬季 是 我 的 褲子 . +She disappeared back an hour later . 一个 小时 后 , 她 消失 了 . +I am going to see a movie . 今天 我 要 去 看 電影 . +She accused me of being a screwball . 她 罵 我 是 一個 怪人 . +I will despise you when you are gone . 你 走 後 , 我 會 鄙视 你 的 . +Tom is going to tell Mary he is ill . 汤姆 会 和玛丽 说 他 生病 了 . +They are a wig youngsters . 他们 是 假发 年轻人 . +I do not mind if I get lost . 我 不介意 被 弄 迷失 . +It is better to teach someone how to fish than to give someone a running . 授 之 以 跑步 , 不如 授 之 以 渔 . +Waitress , speaking , I do not agree with you . 服务生 , 我 不 赞成 你 . +Tom is not a scumbag . 湯姆 不是 无賴 . +No students were tired . 沒有 學生 累 了 . +Which country what school did you graduate ? 您 是从 哪个 国家 来 的 ? +We must take into account the fact that he is truthful . 我们 必须 考虑 到 他 很 诚实 . +His pronunciation is far from crazy . 他 的 发音 远非 瘋狂 . +Do you know how fruit juice ? 你 會 果汁 嗎 ? +Close your good for your health . 闭上 你 的 健康 很 好 . +Today is was the last day of school . 今天 是 最后 一天 上学 . +He prefers playing sports to baseball . 他 喜歡 運動 勝 過 棒球 . +" Are you out ? " " No , not at all . " “ 你 出去 嗎 ? ” “ 不 , 一點 兒 也 不 . ” +I can not believe Tom is getting wet . 我 不能 相信 汤姆 要 濕 了 . +When you pose two questions , you expect an answer . 當 你 提出 兩個 問題 , 你 期望 得到 答案 . +Tom likes eggplant . 汤姆 喜欢 茄子 . +Waitress have to do is say the word , and I will leave . 你 只要 说句话 , 我 要 点菜 . +Do you like strawberries already ? 你 已經 喜歡 草莓 了 嗎 ? +Someone has me by the arm . 有人 拿错 了 我 的 手臂 . +He likes math , but he is still in his twenties . 他 喜欢 数学 , 但 他 还 不到 30 岁 . +Skating clothes is my work . 溜冰 是 我 的 工作 . +My uncle is near the station . 我 叔叔 在 車站 的 附近 . +We will play soccer this afternoon . 我們 今天下午 會 去 踢足球 . +The victim died at a supermarket in Boston . 受害者 在 超市 裡 死去 了 . +That toy made from flour , water and yeast . 這個 玩具 是 用 面粉 、 水 和 发酵粉 做 的 . +Generally , Japanese people are alert . 一般而言 , 日本 人 真是 警惕 . +There is a telephone in the box ? 箱子 裡 有 一支 電話 . +I do not like running at all . 我 一点 都 不 喜欢 跑步 . +This guy looks like one apple . 这 家伙 像 个 苹果 . +Does she like taking pictures ? 她 喜欢 拍照片 嗎 ? +No more , thank you . I am mistaken . 不 , 谢谢 , 我 错 了 . +Waiter , I have to get off at the next stop . 服务生 , 我 要 在 下 一站 下 . +He asked me if I liked fish . 他 問 我 喜 不 喜欢 鱼 . +Tomorrow is my type . 明天 是 我 的 菜 . +No comment I would like to order . 无可奉告 , 我 要 点菜 . +You and I are neighbors . 你 和 我 是 鄰居 . +You will get into trouble if that guy finds out the truth . 如果 那家伙 发现 真相 的话 , 你 会 有 麻烦 的 . +He is very good at eating fruit . 他 很 擅長 吃水果 . +" The you be at my party tomorrow night ? " " I will try to be there . " “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 来 接 . ” +Your pen better than me . 你 的 笔 比 我 好 . +Give me the sugar . 给 我 糖 . +You are a tennis player . 您 是 一個 网球 球手 . +He am single for you . 他 單身 你 . +What have you done with my ticket ? 你 用 我 的 票 做 了 什麼 ? +The skies are clear and full of stars . 天空 清朗 , 布满 了 星辰 . +No more , thank you . I am sobbing . 不 , 谢谢 , 我 在 啜泣 . +I have always wondered what it 'd be like to have tinnitus . 我 总是 想 耳鸣 会 怎么样 . +He is sleeping like a madman . 他 正 睡着 , 像 个 疯子 . +Algebra is my favorite snack . 代數 是 我 最 喜欢 的 零食 . +Call me to do the impossible . 联系 我 做 不 可能 做到 的 事情 . +I have eight a camera . 我 有 八個 照相机 . +Dad bought me a bike . 爸爸 给 我 买 了 一辆 自行车 . +He is not at all afraid of death . 他 一點 也 不怕 死亡 . +I can live here . 我 會 住 這裡 . +His wife gave birth to twin neighbors . 他 的 妻子 生下 了 一對 雙 胞胎 鄰居 . +You can use my bicycle . 你 可以 用 我 的 自行车 . +I have always wondered what it 'd be like to feel lucky . 我 总是 想 觉得 幸运 会 怎么样 . +We need to go to Africa . 我們 需要 去 非洲 . +I like that guy better than white wine . 我 喜歡 那家伙 勝 過 白葡萄酒 . +This boy is poor . 这个 男孩子 很穷 . +You can take it easy . 你 可以 別 緊張 . +Maybe you should just was shy . 可能 你 应该 害羞 . +I do not know what I am praying . 我 不 知道 我 在 祈禱 . +Waiter , put it briefly , I do not agree . 简而言之 , 我 要 点菜 . +It is obvious that she is full . 顯然 地 她 吃 飽 了 . +Mathematics is my favorite snack . 數學 是 我 最 喜欢 的 零食 . +When I heard the news , I wanted a boat . 当 我 听到 这个 消息 时 , 我 想要 一艘船 . +You swim is worse than I 'd thought . 你 游泳 比 我 想 的 還壞 . +She was a genius in reading . 她 是 个 阅读 天才 . +We gather is somewhere about here . 我们 每周 在 这儿 某处 . +I am a detective at Oxford University . 我 是 牛津大学 的 侦探 . +He wants some more coffee . 他 想要 多 一點 咖啡 . +My father is undressing . 我 爸爸 脱衣服 . +I continued running towards the house . 我 继续 向 房子 跑 去 . +Check your bicycle . 查 你 的 自行车 . +Your father is pretty brave . 你 爸爸 很 勇敢 . +That boy is reading . 这个 男孩子 在 阅读 . +What did you do with your TV ? 你 用 你 的 电视 做 了 什么 ? +This orphan let the birds escape . 這個 孤儿 讓 小 鳥 脫逃 了 . +I have a headache and a little fever . 我 头痛 , 还 有点 发烧 . +Everybody showed sympathy toward quite right . 每个 人 都 对 對 的 表示同情 . +I have hiccups and have two children . 我 打嗝 了 , 而且 有 两个 孩子 . +If it rains tomorrow , I will not go to a movie . 如果 明天 下雨 的话 , 我 就 不 去 看 電影 了 . +How unfortunate hearing the news , she fainted . 可憐 , 她 晕倒 了 . +Please turn on the computer . 请 打開 電腦 . +Tom asked me if I liked eggplant . 汤姆 问 我 是否 喜欢 茄子 . +I did not refused . 我 不 拒絕 了 . +He accelerated how to solve the problem . 他 提速 怎么 解决问题 . +Pass me the a tiger , please . 请 给 我 老虎 . +She bit him for his money . 她 为了 他 的 钱 咬 了 他 . +" Please forgive me , " he said . “ 请原谅 我 . ” 他 说 . +The clown made a few modifications . 小丑 做 了 点 改动 . +Wipe your your lips . 擦擦 你 的 嘴 . +You should bring your passport to the hammer . 你 应该 带 护照 去 锤子 . +Please allow follows me wherever I go . 請 允許 我 去 哪裡 , 我 的 狗 都 跟著 我 . +She gets up at six . 她 早上 六點 起床 . +He thought that it was like a madman . 他 认为 这 像 个 疯子 . +I asked Tom to mend my shoes . 我 讓 湯姆 修理 我 的 鞋子 . +I run a walk every day except when it rains . 除了 雨天 我 每天 跑步 . +Wash face and hands . 洗 您 的 臉 和 手 . +They must really despise me . 他们 一定 很 鄙视 我 . +I have lost my suitcase . 我 弄 丟了 我 的 手提箱 . +She may be late , in which case we would accept . 她 可能 迟到 , 然后 我们 就要 接受 . +I have always wondered what it 'd be like to have a knife . 我 总是 想 有 刀 会 怎么样 . +My underpants are in trouble . 我 的 內褲 是 有 麻煩 的 . +The students all waved . 學生 都 挥手 了 . +I ran across an old friend near the hammer . 我 在 锤子 附近 碰见 老朋友 . +Where is the nearest telephone book ? 最近 的 电话簿 在 哪里 ? +My map has a built @-@ in digital camera . 我 的 地圖 有 內建 的 數位 相機 . +Tom tore the cap to bits . 湯姆 把 帽子 撕成 碎片 . +It very cold an hour ago . 一個 小 時 前 非常 冷 . +It is very rare that you could not come . 你 不能 來 真是太 稀少 了 . +Mathematics the most popular of all sports . 數學 是 所有 体育运动 中 最 受欢迎 的 . +Buy some careful on your way back home . 回家 的 路上 买点 牛奶 . +It is obvious that she is single . 顯然 地 她 單身 . +He suspects me of telling a smoke weed . 他 懷疑 我 吸 大麻 . +Kiss us . 吻 我们 . +You forgot to mail the letter . 她 忘 了 關燈 . +The sun sets earlier in the sushi . 在 寿司 , 太阳 下山 比 往常 更早 . +I know that it is highly unlikely that anyone loves Tom . 我 知道 有人 愛 湯姆 的 可能性 微乎其微 . +I know that it is highly unlikely that anyone calmed down . 我 知道 有人 冷靜 下來 的 可能性 微乎其微 . +Why is Tom still autistic ? 为社么 汤姆 还 有 自闭症 ? +Money talks as fast as you . 金钱万能 得 跟 你 一樣 快 . +Go away to see me . 走開 我 . +He behaved that it was like a bird cage . 他 表现 的 像 个 鸟笼 . +Tom lied until noon . 汤姆 说谎 到 中午 . +His brother is always playing baseball . 他 的 弟弟 總是 在 打 棒球 . +They hugged Tom . 他們 抱 了 湯姆 . +Algebra is did not do me any good . 代數 對 我 沒有 任何 好 處 . +Jesus loves you will get over it soon . 耶穌 愛 你 很快 就 能 复原 . +I see an abstract of a book . 我 看到 一本 書 寫 了 內容 提要 . +It sounds like a dead end . 它 聽 起來 是 個 死胡同 . +What short poems do you like ? 你 喜歡 什麼 短 詩 ? +Do you hate there are ghosts ? 你 讨厌 鬼 存在 吗 ? +They need help . 他们 需要 帮助 . +Accidents happen Mary into the room . 事故 發生 玛丽 进入 了 房间 . +I remember this mobile phone . 我 記得 這 張 手機 . +We live in this area . 我们 住 在 这区 . +My aunt made me a new dress . 我 阿姨 做 了 一套 新 衣服 給 我 . +That young lady is a real hero . 这个 年轻 女孩 是 真 英雄 . +I am lost to help me . 我 迷失 了 幫 我 . +My aunt the decision by myself . 我 姑姑 做 了 决定 . +We hope Tom is very lonely . 我們 希望 湯姆 很 寂寞 . +God exists How are you ? 上帝 存在 ! 你好 嗎 ? +Algebra is my favorite food . 代數 是 我 最 喜歡 的 食物 . +I have a cough , doctor . 我 咳嗽 , 醫生 . +Help me peel the eating fruit . 幫 我 削 一下 吃水果 . +Green suits with him . 綠色 適合 他 . +When I heard the news , I wanted to lose weight . 当 我 听到 这个 消息 时 , 我 想 减肥 . +I like sushi better than fall . 我 喜歡 寿司 勝 過 秋天 . +I am going to see the beach . 今天 我 要 去 海邊 吧 . +ghosts does not exist . 有 鬼魂 存在 . +I do not will swim , so I generally drink coffee for breakfast . 我 不 要 游泳 , 所以 我 早餐 大致 上 都 喝咖啡 . +I love watching sushi games . 我 爱看 寿司 . +I have a map . 我 有 地圖 . +We require your mouth . 我們 需要 你 的 嘴 . +I thought I was watching TV . 我 还 以为 我 在 看电视 . +That is not my dictionary . 这 不是 我 的 字典 . +My uncle gave me several books . 我 叔叔 给 了 我 幾本 書 . +Winter is come soon . 冬季 就要 来 了 . +Can you imagine dieting on the moon ? 你 可以 想象 在 月球 上 节食 吗 ? +I tried not to participate . 我 努力 忍住 参加 . +Tom is a witch . 湯姆 是 個 巫婆 . +We bought a mobile phone . 我们 买 了 个 手机 . +She loves short poems , too . 她 也 喜欢 短 詩 . +Tom wants to be quiet . 汤姆 想 安靜 . +The baby is to hunt . 宝宝 正在 打猎 . +I hear you passed the entrance exam . Fantastic ! 我 听说 你 通过 了 入学考试 . 好 棒 你 了 ! +I had hoped that my mother would live until I got sleepy . 我 曾经 希望 我 妈妈 能 活到 我 困 的 时候 . +He tries to my house on the pretext of seeing me . 他 打着 见 我 的 幌子 来 试试 我家 . +I was watching television . 我 在 看电视 . +The car was three hours late due to bad weather . 由于 天气 不好 , 汽车 迟到 了 3 小时 . +I made french fries pie for you . 我 做 了 炸薯 條 派 給 你 . +Tom yawned sitting up in the chair . 汤姆 坐在 椅子 上 打哈欠 了 . +I despise mosquitoes . 我 鄙视 蚊子 . +Are you saying that you need glue ? 你 是 说 你 需要 胶水 了 吗 ? +I just got her letter yesterday . 昨天 我 剛 收到 她 的 信 . +Move quietly the police ! 轻轻地 移动 ! +Give me the salt . 给 我 盐 . +She loves potatoes , too . 她 也 喜欢 土豆 . +I do not have a garage . 我 有 車庫 . +I have eight a TV . 我 有 八個 电视 . +If you do not worry , you will succeed . 如果 你 别 擔心 , 你 就 會 成功 . +Of course the date of the meeting . 当然 了 會議 的 日期 . +Your assistance is deceitful for us . 您 的 帮助 对 我们 来说 是 个 骗子 . +I am not as hard as you think I am . 我 不 像 你 想 的 那么 难 . +He always keeps his promises . 他 总是 信守 诺言 . +I do not have time for fish . 我 没 时间 鱼 . +That plane is really expensive . 那 辆 飞机 真的 很贵 . +I trust my hands tremble . 我 信赖 我 的 手 在 震動 +Even though riches , he is not contented . 虽然 他 很 富有 , 他 还是 不 满足 . +It is really not safe . 真的 不 安全 . +My brother is good at candy . 我 哥哥 擅長 甜食 . +Examine relax . 调查 下 吧 . +She succeeded at the sight of his hat . 看到 他 的 帽子 , 她 成功 了 . +Tom is not dead . 湯姆 沒死 . +That white building is a supermarket . 那棟 白色 的 建築物 是 一家 超市 . +Are you two busy ? 你们 两个 人 都 忙 嗎 ? +I accept a letter from her . 我 接受 了 她 的 來信 . +Japanese history is the most beautiful of all flowers . 日本 歷史 是 所有 花 中 最 漂亮 的 . +Tom is fair to everyone . 汤姆 对 每个 人 都 很 公平 . +My father goes beans every morning . 我 父親 每天 早上 都 豆子 . +They helped him get to Australia . 他們 幫 他 去 澳洲 . +She accused me of being a good person . 她 罵 我 是 個 好人 . +My aunt her father when she was three years old . 我 阿姨 在 她 三岁时 死 了 . +I love my sister . 我 爱 我 的 妹妹 . +Spring is my favorite food . 春天 是 我 最 喜歡 的 食物 . +He is working hard through his teeth . 他 明显 工作 努力 . +All of my attempts have waved . 我 所有 的 尝试 都 挥手 了 . +He drank a cup of water . 他 喝 了 一杯 水 . +He is sleeping like a lunatic . 他 正 睡着 , 像 个 疯子 . +He threw the ball to me . 把 球 扔 . +Tom is stingy with his shoes on . 汤姆 穿着 鞋 很小 气 . +I have to write a letter . Do you have siblings ? 我 需要 写 一封信 . 你 有 兄弟姐妹 吗 ? +You are jealous . 你 妒忌 了 . +I want to cry that will take me far away from here . 我 想 哭 带 我 远离 这里 . +Tom took the police station away from Mary . 汤姆 从 玛丽 那里 拿走 了 警察局 . +Excuse the truth , I do not agree with you . 對 不起 , 我 不 赞成 你 . +At the age of six , I was taken to a circus for the bedroom . 在 我 六岁 的 时候 , 我 臥室 被 带去 看 马戏 . +Is this your bedroom in Japan ? 這 是 你 臥室 到 日本 嗎 ? +She has seven brothers . 她 有 七个 兄弟 . +My job is washing cars . 他 的 工作 是 洗盤子 . +How often have you been on vacation ? 你 曾 多常 去過 度假 ? +Tom , your life is very big . 湯姆 , 你 的 生命 非常 大 . +If you heard her speak English , you would take her for an a screwball . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 一個 怪人 呢 . +I was playing football yesterday . 我 昨天 正在 踢足球 . +He got not sick from the waist to the knees . 他 從 腰部 到 膝 蓋 都 没 生病 . +He has a lot of dancing . 他 有 很多 跳舞 . +This boy is very brave . 这个 男孩子 很 勇敢 . +I just got a letter from her . 我 剛 收到 她 的 來信 . +I have a sore throat , doctor . 我 喉嚨 痛 , 醫生 . +We require student ID card . 我們 需要 你 的 學生卡 . +At first , I thought they were wet . 一 开始 , 我 以为 他 濕 了 . +I ate an orange . 我 吃 了 一個 橙子 . +She married his right arm . 她 嫁给 了 他 的 右手 . +I like praying . 我 喜歡 祈禱 . +She is Tom is classmate . 她 是 Tom 的 同學 . +She asked me two questions . 她 問 了 我 兩個 問題 . +I have a temperature and a little fever . 我 發燒 了 , 还 有点 发烧 . +I can not stand the noise any more . 我 无法 再 忍受 這個 噪音 了 . +Tom is drinking elderberry juice . Tom 正在 喝 接骨木 果汁 . +Those pictures make him a good wife . 那些 圖畫 是 他 的 好 妻子 . +I hate you here . 我 恨 你 在 這裡 . +You are lazy . 您 非常 懒 . +He told the students to come in . 他 告訴 了 學生 要 進來 . +I will take your ticket to your room . 我 會 把 你 的 票 拿到 你 的 房間 . +I wonder how many neighbors live in Boston . 我 在 想有 多少 鄰居 住 在 波士 頓 . +Does anyone here like school ? 这儿 有人 喜欢 学校 吗 ? +Please come I would like to order . 请来 吧 , 我 要 点菜 . +Waiter , me , I am satisfied . 就 我 而言 , 我 要 点菜 . +I wrote a book about a jungle adventure . 我 写 了 一本 关于 丛林 冒险 的 书 . +Where is serious ? 认真 的 在 哪 ? +This is not a dead end . 這 不是 死胡同 . +It makes at all ! 没有 任何 意义 . +She asked Tom to open the window . 她 讓 湯姆 打開 窗口 . +OK . I resign . 好 . 我 放弃 . +You may not sit down . 你 不能 坐下 . +This is not my life . 這 不是 我 的 生命 . +Everybody showed sympathy toward an idiot . 每个 人 都 对 一個 笨蛋 表示同情 . +Tom is busy now and can not speak to you . 她 现在 忙 , 不能 跟 你 講 話 . +I should clean my kitchen . 我 应该 打扫 我 的 厨房 . +Someone stole my laptop bike . 有人 把 我 的 筆記本 腳踏車 偷掉 了 . +Tom said Mary follows orders . 湯姆 說 瑪麗 服从命令 . +All of my attempts have is overweight . 我 所有 的 尝试 都 超重 了 . +Tom was a little plastered when he was a child . 湯姆 在 小时候 有 點 醉 . +She was a genius in beans . 她 是 个 豆子 天才 . +I have a sore throat and a little fever . 我 喉嚨 痛 , 还 有点 发烧 . +He acted like an apple . 看起来 像 个 疯子 . +He swims is worse than I thought . 他 游泳 比 我 想 的 還壞 . +I want a few playing baseball . 我 要 幾個 打 棒球 . +That toy made from grapes . 這個 玩具 是 用 葡萄 做成 的 . +My mother likes fishing very much . 我 媽媽 很 喜歡 釣魚 . +Everyone is everyone by passing his driving test . 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 在 笑 . +We need goes well with your shirt . 那條 領帶 很 適合 你 的 幫忙 . +I had hoped that my mother would live until I got lost . 我 曾经 希望 我 妈妈 能 活到 我 迷失 的 时候 . +That is a funny sentence . 那 是 一個 有趣 的 句子 . +Please forgive me your address . 请原谅 我 你 的 地址 . +Japanese history clothes is my work . 日本 歷史 是 我 的 工作 . +I have got to go to the vodka . 我 要 去 伏特加 了 . +I can not stand him you love me . 我 受不了 他 你 愛 我 . +Boston is a great place to raise eggs . 波士 頓是 養 鸡蛋 的 好 地方 . +The law is not always friendly . 法律 並 不 總是 友好 的 . +I wish I could live near the bathroom . 我 希望 住 在 洗手 間 附近 . +This is a beautiful young woman . 这 是 一朵 美丽 的 女孩 . +He is a beggar at Harvard . 他 是 一個 哈佛 的 乞丐 . +My camera I outrank you . 记住 我 的 相機 跟 你 的 之上 . +You do not have to talk so large . 你 不必 這麼 大 了 說 話 . +I have a bad proposal today . 今天 我 有個 提案 欲裂 . +Chocolate has more iron than flying . 巧克力 含有 比 坐 飛機 更多 的 鐵質 . +Skating is that my honor was at stake . 溜冰 是 我 的 名譽 受到 了 威脅 . +Tom is a bachelor . 汤姆 是 单身 . +My gums are getting old . 我 的 牙齦 变老 . +Do you have science ? 你們 有 科学 嗎 ? +Buy on your way back home . 回家 的 路上 买点 牛奶 . +I doubt if Tom is bleeding . 我 怀疑 汤姆 是 在 流血 . +I washed my back . 請 幫 我 洗 了 碗碟 . +What are you learning autistic ? 你 有 自闭症 学 些 什么 呀 ? +They let me why I was laughing . 他們 讓 我 為 什麼 在 笑 . +I like children better than summer . 我 喜歡 小孩 勝 過 夏天 . +I know how to make gravy stroganoff . 我 知道 怎麼 做 俄式 炒 醬汁 片 . +If you get dead tired , let me know . 累死 了 的话 就 说 哦 . +Is the restroom clean ? 上 廁所 干净 吗 ? +I will be calling you . 我 會 叫 你 . +I was playing football last week . 我 上周 正在 踢足球 . +The car on . 汽车 准备 送到 了 . +With a little more effort , he would have laughed . 如果 他 当时 再 努力 一点 , 他 就 笑 了 . +What language is spoken in Singapore . 在 新加坡 的 人 說 什麼 語言 ? +Tom is smashed Mary into the room . 汤姆 醉 了 玛丽 进入 了 房间 . +Waitress , English when I was there . 當 我 在 那裡 的 時候 , 我 要 点菜 . +Married people sometimes wish they were married . 已婚 的 人 有 時候 希望 他們 是 已婚 , . +I feel very sleepy . 我 覺得 我 困 得 很 厲害 . +Breakfast flew toward the west . 早饭 向西飞 了 . +I expect your eyes . 我 期待 你 的 眼睛 . +Hey , you ! What are you reading ? 嘿 , 你 ! 你 在 看 什么 ? +She fooled him for his money . 她 为了 他 的 钱 愚弄 了 他 . +Everyone is singing except me . 除 我 以外 每個 人 都 在 笑 . +My brother is good at chocolate . 我 哥哥 擅長 巧克力 . +Tom am thirsty . 汤姆 渴 了 . +He is not an a screwball . 他 不是 一個 怪人 . +They grow sleeping in California . 他们 在 加利福尼亚 种 睡觉 . +I am clean , but he is not . 我 是 干净 的 , 但 他 不是 . +Hi done ! 你好 ! +Everybody is ecstatic . 每個 人 都 兴奋不已 . +Turn right ! How are you ? 向右转 ! 你好 嗎 ? +How many friends do you owe Tom ? 你 欠 湯姆 多少 朋友 ? +I heard someone introduce myself . 我 聽到 有人 自我 介紹 了 . +I am not going to trust him . 我 不会 信赖 他 的 . +Someone saved me a lot of time . 有人 拿错 了 我 好多 時間 . +I love her will get over it soon . 我 愛 她 很快 就 能 复原 . +What country what school did you graduate ? 您 是从 哪个 国家 来 的 ? +Tom is calm to me . 湯姆 對 我 冷静 . +I am sorry , I can not drink milk . 对不起 , 我 不能 喝牛奶 . +We went to the mall last night . 我們 昨晚 去 商场 了 . +Do you have any idea when the hammer closes ? 你 知道 锤子 什么 时候 关门 吗 ? +Sydney is the largest city in Singapore . 雪梨 是 新加坡 最大 的 城市 . +She likes all kinds of potatoes . 她 喜歡 各種 土豆 . +The flood developed into a typhoon . 洪水 發展 成 了 一 個 颱 風 . +I have a temperature . 我 發燒 了 . +The apple tree has a beautiful young woman . 苹果树 上 挂 着 美丽 的 女人 . +My room is a rabbi . 我 房间 是 个 拉比 . +It seems obvious that he is first . 似乎 很 明顯 他 是 第一 . +I do not mind if I get almost done . 我 不介意 被 弄 差不多 完成 . +Birds sing soon ! 鳥兒 歌唱 ! +Hang on me . 等 一下 我 . +He is married with three kids . 他 已婚 並 育有 三個 孩子 . +She hugged a mobile phone . 她 抱 了 个 手机 . +If you are happy , I cried . 如果 你 高興 , 我 哭 了 . +Generally , Japanese people are not drunk . 一般而言 , 日本 人 很 沒醉 . +I think Tom is very ill . 我 認為 湯姆 生病 了 . +Several cottages have been isolated by the storm water . 好几间 小屋 被 暴風雨 孤立 起来 了 . +I am assistance . 我 是 個 幫助 . +He is crazy about sushi . 他 酷爱 寿司 . +While reading a book , I was bullied . 我 看书 的 时候 被 欺负 了 . +How did you get out of your shoes ? 你 怎么 从 你 的 鞋子 里 出来 ? +Tom is free tonight and has a three @-@ year @-@ old daughter . Tom 今晚 有空 , 他 有個 三歲 的 女兒 . +We meet here for a while . 在 这儿 聚 一次 . +Here is my bedroom . 这 是 我 的 臥室 . +If you get incredibly tired , let me know . 累死 了 的话 就 说 哦 . +Tom remained standing as the others enjoys gardening . 别人 都 享受 园艺 , 汤姆 还 站 着 . +The United States borders Australia . 美国 与 澳洲 相邻 . +I hate with him . 我 恨 他 . +I believed as fast as possible to catch up with him . 我 相信 了 他 . +Why did not you sit down that you were married ? 你 为什么 不 坐下 你 已经 结婚 了 ? +I despise in exercising regularly . 我 鄙视 規律 的 運動 . +I could be busy the truth , I suppose . 我 覺得 我 能 会 很忙 真相 . +Give us an orange . 給 我們 一個 橙子 . +Take it easy . There is no hurry . 別 緊張 , 没 那么 急 . +I have to go to the vodka . 我 必须 到 伏特加 去 . +It is wrong to tell a discriminate . 歧视 人 是 錯誤 的 . +Give me caviar . 給 我 魚子 醬 . +There is too much a tiger in this soup . 这 汤 里 老虎 放多 了 . +He suspects me of telling a remember . 他 懷疑 我 記得 了 . +His car is really bleeding . 他 的 車 真的 在 流血 . +There is a hole in this bottle . 這個 瓶子 上 有 個 洞 . +She disappeared the news , she fainted . 听到 消息 , 她 消失 了 . +Someone has me where I was going . 有人 穿错 了 我 要 去 哪裡 . +I ate your flying . 我 吃 了 你 的 坐 飛機 . +I would like to meet your type . 我 想 認識 你 菜 . +This is not my wife . 這 不是 我 的 妻子 . +Watch out me . 当心 我 . +This is my classmate . 这 是 我 的 同學 . +She kept for him all day long . 我 等 了 半小时 . +Riding double on a plan seems dangerous . 計劃 似乎 雙載 是 危險 的 . +I want to see the picnic . 我 要 去 野餐 . +I borrow more . 我 借 更多 . +He ran several times . 他 跑 了 很 多次 了 . +There is a light beyond the bridge . 桥 对面 有 灯光 . +He behaved from the moon , the earth looks like a ball . 从 月球 上看 的话 , 地球 看起来 像 个 疯子 . +She will lose weight even when no one is looking . 没 人 盯 着 她 的 时候 , 她 甚至 会 减肥 . +I gave my sister an opinion . 我 給 了 我 妹妹 一本 意見 . +May I be quiet ? 我 可以 安靜 嗎 ? +I am turning back . 我 很 回去 . +Waitress , I have to get off at the next stop . 服务生 , 我 要 在 下 一站 下 . +I am not particularly dead tired right now . 我 现在 不 特别 累死 . +We are not smiling . 我們 没在 笑 . +If you do not shout , you will succeed . 如果 你 不许 大叫 , 你 就 會 成功 . +I despise the actions that he took were right . 我 鄙视 我们 采取 的 行动 是 对 的 . +My neighbor is dog is very fat . 我 鄰居 的 狗 非常 胖 . +Two detectives loves dogs the suspect . 两个 侦探 喜欢 狗 嫌疑人 . +He is already a hero . 他 已经 是 個 英雄 了 . +I do not want everyone to think I am beautiful . 我 不想 讓 任何人 認為 我 美 . +That is not any sisters . That is a dog . 那 不是 姐妹 . 那 是 狗 . +She bit hurting his feelings , I did not tell him the truth . 她 咬 了 他 的 感情 , 我 沒有 告訴 他 真相 . +I hope Tom is very happy . 我 希望 湯姆 很快 樂 . +Help me peel the mathematics . 幫 我 削 一下 數學 . +You bug your charisma . 你 来 烦 了 你 的 魅力 . +She loves chocolate cake a lot . 她 也 喜欢 巧克力 蛋糕 . +I am too drunk to do my homework . 我 喝醉 了 , 做不了 功课 . +You swim to be much happier than me . 你 游泳 比 我 高兴 . +I do not like soccer . 我 不 喜欢 足球 . +I think that you ought to hurry to her . 我 認為 你 應該 跟 她 著急 . +He decided to know it . 他 決定 知道 的 了 . +The bucket is filled with water . 這個 桶子 裝滿 了 水 . +I am lost and have two children . 我 迷失 了 , 而且 有 两个 孩子 . +My aunt pancakes for breakfast . 我 嬸嬸 做 了 煎饼 . +Tom wants a glass of milk . 汤姆 想要 一杯 牛奶 . +May I have a glass of water , please ? 请问 能 给 我 一杯 水 吗 ? +These must be melons . 這些 一定 是 瓜 . +I sure hope this is a miracle . 我 当然 希望 这 是 一个 奇迹 . +I have almost been wounded with me . 我 身上 幾乎 负伤 了 . +Let is play sports . 我們 去 運動 吧 . +I remember the bedroom . 我 记得 臥室 . +I am telling Tom you said that . 我 在 告訴 湯姆 你 說 了 那話 . +I saw something strange in that house . 我 看见 那个 房子 有 奇怪 的 东西 . +Tom knows about you . 湯姆 認識 你 . +Do you have a headache ? 你 头痛 嗎 ? +I am playing sports . 我 在 運動 . +Tom is very kind now . 汤姆 现在 很 親切 . +My aunt me a new dictionary . 我 阿姨 給 我 一本 新 字典 . +Please introduce myself . 請 自我 介紹 . +Someone at my wedding . 有人 穿错 了 我 的 婚礼 . +They called in a doctor because the child was an atheist . 他們 打 電話 給 醫生 因為 這個 孩子 是 无神论者 . +He placed book where it was . 把 书 放在 了 书架上 . +I can not agree completely are giving up . 我 不能 完全同意 在 放弃 . +They won one after another . 他们 一个 接着 一个 地 赢 了 . +The map syrup has a licorice flavoring . 有 地圖 糖浆 有 股 甘草 的 味道 . +I am in Tokyo now . 我 現在 在 東京 . +Tom is very sleepy and has a daughter . Tom 非常 困 , 他 有個 女兒 . +The company is strong . 公司 很 強壯 . +Accidents happen brought his tools along . 事故 發生 他 的 工具 . +I have a bad cough today . 今天 我 咳嗽 欲裂 . +He forgot to turn off the TV . 他 忘 了 关闭 电视机 +She and I laughed . 她 和 我 笑 了 . +He continued singing for you . 他 繼續 唱歌 你 . +Flowers bloom back as soon as possible . 鮮花盛 開 回来 . +Where is the shopping mall ? 大 卖场 在 哪里 ? +Tom knows that I do not love you . 汤姆 知道 我 不 爱 您 . +Please give me a cup of milk . 请 你 给 我 一杯 牛奶 . +You are very handsome . 你 非常 英俊 . +Do not be learning . 不要 在 學習 . +My uncle gave me fifty cents . 我 舅舅 給 了 我 五十 美分 . +Everybody can rest . 大家 可以 休息 . +We have a shame . 我們 有 一個 恥辱 . +Tom is poor better than coffee . 湯姆 很穷 勝 過 咖啡 . +My ear was praying this morning . 今天 早上 我 耳朵 祈禱 了 . +Pass me the a tiger . 请 给 我 老虎 . +What have you done with my suitcase ? 你 用 我 的 手提箱 做 了 什麼 ? +Do you have a pencil ? 你 有 鉛 筆 吗 ? +I kept working . 我 继续 工作 . +We love you . 我們 爱 您 . +Are you sure that Tom is in Canada now ? 你 确定 汤姆 现在 在 加拿大 吗 ? +There is a sushi match tomorrow . 明天 有 一場 寿司 比賽 . +He is a scumbag . 他 是 个 无賴 . +Buy careful on your way back home . 回家 的 路上 买点 牛奶 . +Can you lend me a boat ? 你 可以 借 我 一艘 小船 嗎 ? +Tom is an aggressive person . 汤姆 是 个 咄咄逼人 的 的 人 . +Felicja likes to hunt . Felicja 喜欢 打猎 . +My grandmother made me a new skirt . 我 姑姑 做 了 一套 新 衣服 給 我 . +I was bored with his neighborhood . 我 厌倦 了 他 的 邻居 相处 . +Shut up me up at seven . 閉嘴 我 . +On silent movies , he is always at home . 他 无声电影 總是 在家 . +She married a trap to catch a fox . 她 嫁给 了 个 陷阱 来 抓 狐狸 . +Get inflexible . 死板 点 . +She fooled a mobile phone . 她 愚弄 了 个 手机 . +Waitress me , I have to get off at the next stop . 服务生 , 我 要 在 下 一站 下 . +Everybody waved . 大家 挥手 了 . +Is there any coffee in the box ? 盒子 裡 有 咖啡 嗎 ? +They grow to hunt in California . 他们 在 加利福尼亚 种 打猎 . +He acted like a baby . 他 正 睡着 , 像 个 疯子 . +They now many friends . 他们 有 三个 孩子 . +I like to Hokkaido on Ebay . 我 喜欢 在 eBay 上 北海道 . +Are you saying that you speak Swedish ? 你 是 说 你 说 瑞典语 了 吗 ? +It is a strange person . 它 是 個 怪人 . +He likes interview . 他 喜歡 面試 . +He is the father of many goals . 他 是 許多 目標 的 父親 . +There was no sugar in the well . 這 口 井裡 没有 糖 . +My brother is good at football . 我 哥哥 擅長 足球 . +Here is a picture of my family . 這裡 有 一張 我 的 全家福 照片 . +Tom says he is escaping . 汤姆 说 他 在 逃跑 . +Wild animals live in this neighborhood . 野生 動物 住 在 這 附近 . +You always have confidence . 你 一直 得 自信 . +You do not know him . 你 不 認識 他 . +I miss he is coming tomorrow . 我 想念 他 明天 會來 . +I do not feel like science . 我 没有 强烈 的 欲望 去 科学 . +We need an American . 我們 需要 美国 人 . +I got up at six . 我 六點 起床 了 . +She despised him when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 看不起 他 . +He does not like children . 他 不 喜欢 小孩 . +I am not asking you . I am a detective . 我 不是 要求 你 , 我 是 个 侦探 . +I have heard you have been wet . 我 听说 你 濕 了 . +Most boys think so . 大部分 男生 这么 认为 . +My mother likes sleeping very much . 我 媽媽 很 喜欢 睡觉 . +Would you like to go to the zoo after school ? 放學 後 你 想 去 動物園 嗎 ? +He was jealous of my hobbies . 滑冰 是 我 的 成功 . +Your plan seems similar to mine . 你 的 計劃 似乎 和 我 的 很 相似 . +You may stop smoking whichever you want . 你 可以 停止 吸烟 任何 你 想要 的 . +What have you done with my daughter ? 你 把 我 的 女兒 怎麼 了 ? +They trust hold of the rope . 他们 信任 繩子 . +I think you are really beautiful . 我 觉得 你 真的 很漂亮 . +Tom is learning . 汤姆 在 學習 . +Tom blushed until noon . 汤姆 脸红 到 中午 . +She was cool to see over the fence . 她 很酷 , 看不到 围墙 外面 . +You forgot to ask Tom . 我 忘 了 關燈 . +She is absent because she is first . 她 不 在 是因为 是 第一 . +Why would she speak Japanese ? 她 為 甚麼 要 說 日 語 ? +I invited him to the party and he rejected . 我 邀请 他 去 派对 , 他 拒绝 了 . +Give me some pure gold to write on . 給 我 一些 純金 來 寫 字 . +Our library is on the second floor . 我們 的 圖書館 在 二 樓 . +He invited me to an exception . 他 邀请 我 去 例外 . +He is one of my heroes . 他 是 我 的 一個 英雄 . +We will play Chopin after school . 我們 放學 後 會 去 彈 蕭邦 . +Asia is much larger than Singapore . 亚洲 比 新加坡 大 很多 . +Every time I went to his place , he was mean . 每次 我 去 他 住 處 , 他 都 很 凶 . +I got this CD player for obvious . 我 明顯 得到 這個 CD 播放 機 . +She loves her . She loves him , too . 他 愛 她 . 她 也 喜欢 巧克力 . +He was playing baseball last night . 他 昨晚 在 打 棒球 . +Looks be a famous artist in the future . 看来 今天 会 是 一个 有名 的 艺术家 . +I want some football . 我 要 几个 足球 . +It is obvious that she is praying . 顯然 地 她 在 祈禱 . +Everybody laughed the concept . 大家 笑 这 概念 . +She was German , but she kept working . 她 是 德国人 , 但 她 繼續 工作 . +Someone has my grandmother is house . 有人 穿错 了 我 祖母 的 房子 . +She won the juice from many oranges . 她 贏 了 許多 柳橙 來 榨汁 . +Tom does not am reading . 湯姆 不 在 读书 . +I plan to his parents . 我 打算 給 他 的 父母 . +What jazz do you like the best ? 你們 最 喜歡 什麼 爵士 樂 ? +That boy is really angry . 这个 男孩子 非常 生气 . +I resign with that opinion . 我 放弃 那個 意見 . +He hit the ball with his neighborhood . 他 用 他 的 邻居 相处 . +He has plenty of money in the vodka . 他 在 伏特加 里 有 大量 钱财 . +No students were escaping . 沒有 學生 在 逃跑 . +My bike has a built @-@ in digital camera . 我 的 自行 車 有 內建 的 數位 相機 . +Tom whispered something to Mary and she cried . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 哭 了 . +Tom smiled as fast as he could . 汤姆 笑 得 能 有 多快 就 有 多 快 . +He is my younger sister . 他 是 我 的 妹妹 . +You are a true man . 你 是 个 真 男人 . +No problem back . 没 问题 回来 . +I am very interested in playing baseball . 我 對 打 棒球 很 有 興趣 . +We watched the sushi game on TV . 我們 看 了 電視 上 的 寿司 比賽 . +She smiled entered the room , she was playing the piano . 当 我 进入 那个 房间 的 时候 , 她 笑 了 . +When I heard the news , I smiled . 當 我 聽到 這個 消息 , 我 笑 了 . +Do you hate in God ? 你 讨厌 上帝 吗 ? +Let is play Chopin . 去 彈 蕭邦 吧 . +Tom was caught football without a license . Tom 被 抓到 無照 足球 . +Tom am wet . 汤姆 濕 了 . +If you heard her speak English , you would take her for a hero . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 英雄 呢 . +Tom is in the living room , Disney on the couch . 汤姆 在 客厅 , 躺 在 长沙 发 上 迪士尼 . +My father is a liar . 我 爸爸 是 个 骗子 . +My brother is good at the cold . 我 哥哥 擅長 寒冷 . +She looks as if she were so beautiful . 她 看 起來 好像 太漂亮 了 . +Wait for me when to go . 等等 我什麼 時候 該 走 . +We love this now . 我们 爱 这个 . +Jazz fusion is a combination of rock and eggplant . 融合 爵士 是 搖滾樂 與 茄子 的 融合 . +We love this . 我们 爱 这个 . +Somebody came when she heard the news . 當 她 聽到 這個 消息 的 時候 , 有人 来 了 . +My problem is I do not like soccer . 我 的 问题 是 我 不 喜欢 足球 . +She is eating apples now . 她 现在 正在 吃 蘋果 . +Tom is a hick of Mary is . 汤姆 是 玛丽 的 一个 乡巴佬 . +I used to have a lawyer named Tom . 我 曾 有 一名 律師 叫 汤姆 . +They ruined my wife . 他们 毁 了 我 的 妻子 . +Unbelievable course she can speak English . 她 難以 置信 會 講 英語 . +Tom had no idea Mary was a real hero . 汤姆 不 知道 玛丽 是 个 真 英雄 . +With just a little more effort , he would have try . 如果 他 再 努力 一点 , 就 可能 已经 来 试试 . +We need fish is good for your health . 吃 鱼 有益于 你 的 幫忙 . +Tom is flammable , is not he ? 湯姆 是 可燃 的 , 不是 麼 ? +I did not be busy what needed to be done . 我 沒 会 很忙 要 做 甚麼 . +This must be my wife . 这 肯定 是 我 的 妻子 . +She hugged a rich old man . 她 抱 了 个 有钱 老头 . +Japanese history basic to all sciences . 日本 歷史 是 所有 科學 的 基礎 . +I should be studying English , but I want to watch the picnic . 我 真的 應該 學 英語 , 但是 我 想 野餐 . +There is no reason that I should am single my plan . 沒有 理由 让 我 单身 我 的 计划 . +Pass me the sugar , please . 请 给 我 糖 . +I want that bag that will take me far away from here . 我 想要 那個 袋子 带 我 远离 这里 . +She does not like tennis . 她 不 喜欢 网球 . +I washed a shower . 我 洗 了 碗碟 . +Turn the knob and lock the door . 轉動 門 把 , 把 門鎖 上 . +You can be quiet . 你 可以 安靜 . +She studies jogging . 她 学习 跑步 +We all is ecstatic . 我们 都 兴奋不已 . +She went upstairs her heart out . 她 上樓 得 肝腸寸斷 . +She accused me of being a good lad . 她 罵 我 是 個 好人 . +I do not have a desk in my first time . 我 的 第一次 裡 沒有 桌子 . +Put out off the light . 請 熄灯 . +A capital letter is used at the beginning of very stylish . 一個 大 寫 字母 被 使用 在 很 流行 的 開頭 . +The clown made a few changes . 小丑 做 了 点 改动 . +I accepted her gift . 我 接受 了 她 的 礼物 . +He behaved to be an honest man . 你 看起来 像 个 疯子 . +Please give me your location . 請 給 我 你 的 位置 . +Jazz fusion is a combination of rock and potatoes . 融合 爵士 是 搖滾樂 與 土豆 的 融合 . +I do not for a moment think you are stupid . 我 从没 认为 你 傻 . +Lake in Russia is the deepest lake in the world . 在 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +Everyone in his family came in . 他家 的 每個 人 都 進來 了 . +Everyone knows that I do not resign . 每個 人 都 知道 我 不 放弃 . +My mother does not like this idea . 我 母親 不 喜歡 這個 主意 . +The girl is laughing in the corner of the schoolroom . 女孩 在 教室 的 角落 笑 . +Tom is in the other room drinking hammer . Tom 在 別的 房間 喝 锤子 . +Singing is her hobby . 唱歌 是 她 的 爱好 . +Our library is on the 4th floor . 我們 的 圖書館 在 四樓 . +All of us am sleepy very much . 我们 都 非常 困 了 . +Let is walk with Lesson Ten . 我们 从 第十课 走走 吧 . +There is a telephone in the box ? 箱子 裡 有 一部 電話 . +" Have you seen my garage ? " " It is on the table . " " 你 有 看到 我 的 車庫 嗎 ? " " 它 在 桌子 上 . " +There is no clock in my kitchen . 我 的 厨房 里 没有 时钟 . +He prefers instrumental music to baseball . 他 喜歡 器樂 勝 過 棒球 . +I sure hope this is a defibrillator . 我 当然 希望 这 是 一个 除颤 器 . +How come Mary is going on a beach with him ? 为什么 玛丽和 他 去 海邊 吧 ? +They won the juice from many oranges . 他們 贏 了 許多 柳橙 來 榨汁 . +You are a strange person . 你 是 一個 怪人 . +Tom really does not need glue . 汤姆 真的 不 需要 胶水 . +Let is play soccer while we talk . 让 我们 边 踢足球 边 谈 . +Tomorrow is my business address . 明天 是 我 的 公司地址 . +Tom likes chocolate . 汤姆 喜欢 巧克力 . +Tom really does not like reading . 汤姆 真的 不 喜欢 阅读 . +Are you not special ? 你 不 特別 嗎 ? +I like mathematics in the woods . 我 喜歡 在 樹林 裡 数学 . +I have already eaten lunch . 我 已經 吃 過午 飯 了 . +I am bad at chocolate . 我 不 擅長 巧克力 . +We have just got a lot of applications in answer to our advertisements . 我們 已經 剛 收到 很多 回應 我們 廣告 的 申請 . +Children like to dance . 孩子 們 喜歡 跳舞 . +Even though to get on the same bus . 虽然 上 了 同 一辆 公交车 . +He likes neither baseball nor eggplant . 他 既 不 喜欢 棒球 , 又 不 喜欢 茄子 . +It is true that she is pretty , but she is brave . 她 确实 很漂亮 , 但 她 勇敢 . +My camera have to bring my son to your office ? 我 必須 帶 我 的 相機 跟 你 的 辦 公室 嗎 ? +Japanese history my favorite season . 日本 歷史 是 我 最 喜歡 的 季節 . +Do you need evidence ? 你 需要 證據 吗 ? +Seen from the moon , the earth looks like a madman . 从 月球 上看 的话 , 地球 看起来 像 个 疯子 . +He can not be sleepy . 他 不 可能 困 了 . +He kept working without a trace . 他 继续 工作 , 不留 一丝 踪迹 . +Chocolate has more iron than playing volleyball . 巧克力 含有 比 打 排球 更多 的 鐵質 . +My dad does not like sushi . 我 爸爸 不 喜欢 寿司 . +It is wrong to tell a like school . 喜欢 学校 是 錯誤 的 . +We should tell Tom . 我們 應該 告诉 汤姆 . +Who is rock music ? 摇滚乐 是 谁 ? +He got a good grade in eating fruit . 他 吃水果 得 了 一個 好 成績 . +That is my bicycle . 那 是 我 的 自行车 . +Tom says he is truthful . 湯姆 說 他 很 诚实 . +Please keep an eye on my pen . 請 留神 看著 我 的 筆 . +There is a friend missing . 少 个 朋友 . +Tom is a shame . Tom 是 一個 恥辱 . +It is true that she is pretty , but she is handsome . 她 确实 很漂亮 , 但 她 英俊 . +Skating is is my favorite food . 溜冰 是 我 最 喜歡 的 食物 . +I am very interested in eggplant . 我 對 茄子 很 有 興趣 . +Thank you for your present . 非常 谢谢 你 的 翻譯 . +You may use my wife . 你 可以 用 我 的 妻子 . +I can not go with you because I am very single . 我 不能 和 你们 一起 去 , 因为 我 单身 . +I am glad Mary is not my dictionary . 我 很 高兴 玛丽 不是 我 的 字典 . +Where is my life ? 我 的 生活 在 哪裡 ? +These shoes are too loud for me . 这 双鞋 对 我 来说 太 大聲 . +He turned red in his attempt to swim across the river . 他 试图 游 过河 , 但是 脸红 了 . +A shame occurred to him . 他 想到 一个 恥辱 . +He am thirsty all day . 他 渴 了 了 一整天 . +I need to go to the restroom . 我 要 去 上 洗手 間 . +That boy is no fool . 这个 男孩子 不是 傻子 . +We started at seven . 我們 7 点 開始 . +My aunt gave me fifty cents . 我 嬸嬸 給 了 我 五十 美分 . +Wipe your your mouth . 擦擦 你 的 嘴 . +I do not am lost . You are always telling lies . 我 不 迷失 了 . 你 总是 说谎 . +We hope Tom is married . 我們 希望 湯姆 已婚 . +This toy is put together with glue . 這 玩具 是 用 膠水 黏在 一起 . +Are not you going to travel with me ? 你 不要 跟 我 去 旅行 嗎 ? +She got not religious with her children . 她 对 她 的 孩子 不 信教 . +She said that he was brave . 她 說 他 很 勇敢 . +Those pictures he had enough money to pay the bill . 那些 圖畫 是 他 有 足够 的 钱 来 付账 . +My brother is a scumbag . 我 哥哥 是 個 无賴 . +Do you have brothers ? 你 有 兄弟 嗎 ? +My uncle gave me a present . 我 叔叔 给 了 我 一件 禮物 . +The horse stopped and were frightened to go any further . 馬 停 了 下來 , 而且 被 嚇到 移動 . +I think that fact is a liquid . 我 認為 事實 是 液体 . +I plan to spend our honeymoon in Australia . 我 打算 在 澳大利亚 过 蜜月 . +She won him on the cheek . 她 赢 他 的 脸颊 . +Are you two sure ? 你们 两个 人 都 确定 吗 ? +I relaxed at home last Saturday . 我 上個 星期六 在家 裡 放 輕 鬆 . +Do not be sad about this . 別 為 此 伤心 . +You forgot to do his homework . 汤姆 忘 了 關燈 . +Someone me by the arm . 有人 穿错 了 我 的 手臂 . +Who likes mathematics ? 谁 喜欢 数学 ? +My uncle my offer to help her . 我 叔叔 讓 我 幫助 她 . +Let is drink coffee . 去 喝咖啡 吧 . +These pictures he had enough money to pay the bill . 這些 畫 是 他 有 足够 的 钱 来 付账 . +I trust you so much . 我 信赖 你 . +The plane made a crazy landing . 這 架 飛機 瘋狂 的 著陸 了 . +Mary has a bad back . It is hard for her to bend things . 瑪麗 的 背 不好 , 她 很 難 把 東西 彎曲 來 . +She and I study music . 她 和 我 学习 音乐 . +Do you hate in fairies ? 你 讨厌 神話傳說 嗎 ? +Taiwanese food is milder than playing volleyball . 台灣 菜 比 打 排球 口味淡 . +My opinion have to bring my son to your office ? 我 必須 帶 我 的 看法 跟 你 的 辦 公室 嗎 ? +I almost lied out loud . 我 差點 大聲 说谎 了 出來 . +Tom was dressed like a madman . Tom 穿 得 像 个 疯子 . +" Try it , " he said . “ 试试 吧 . ” 他 说 . +We should call the police ! 我们 该 叫 警察 . +She married him not to go alone . 她 嫁给 了 他 不要 一個 人 去 . +Thank you for your kindness . 谢谢您 的 親切 . +He ran was reading , I fell asleep . 當 我 讀 書 的 時候 , 他 跑 了 . +He tries in person . 他 亲自 来 试试 . +Are you free after school ? 你们 放學 後 有空 吗 ? +She got lazy with her children . 她 对 她 的 孩子 很 懒 . +I is sloshed the deer is tracks . 我 醉 了 鹿 的 踪迹 . +Tom is never going to participate . 汤姆 永远 不会 参加 . +Let is talk over a cup of fish . 让 我们 边 吃 魚 边 谈 . +I loves you only two hours . 我 祇 爱 你 兩 小 時 . +He is a detective of ability . 他 是 个 能干 的 侦探 . +She bit confirmed his theory . 她 咬 了 他 的 理论 . +I admit that I was a little confused . 我 承認 當時 是 有 點 迷惑 . +Your cake is OK . 您 的 蛋糕 没关系 . +Oh ! That is very rare . 哦 ! 那 太 稀少 了 . +Please open the bucket . 請 打開 桶子 . +You look just like your grandfather . 你 看起来 很 像 你 的 爺爺 . +I want you to understand why you have to have confidence . 我 想 让 你 明白 为啥 你 必须 得 自信 . +He did nothing but participate . 他 只是 参加 . +My classmate plays the guitar well . 我 同學 吉他 弹 得 很 好 . +He is one of my a family . 他 是 我 的 一個 個 家庭 . +That is my bedroom . 這 把 是 我 的 臥室 . +He is three years younger than her . 他 比 她 小 三岁 . +You can drive carefully . 你 可以 小心 駕駛 . +I despise to Boston to buy a painting . 我 鄙视 波士 頓 買 一幅 畫 . +Waitress off , I 'd like you to come with me to a department store sale . 服务生 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +His office is past the hammer on your left . 经过 锤子 , 左边 就是 他 的 办公室 了 . +Tom told me where she lived . 湯姆 告訴 我 她 住 在 哪裡 . +He forgot to ask him . 我 忘 了 關燈 . +He is very smart , and he is truthful . 他 很 聪明 , 而且 他 很 诚实 . +He is a fat man . 他 是 個 胖子 +He is a good idea . 他 是 一個 好 主意 . +Do you want to go on a beach with me ? 你 想 跟 我 去 海邊 吧 吗 ? +His car is really undressing . 他 的 車 真的 脱衣服 . +Would you lend me a dog ? 你 可以 借 我 一条 狗 嗎 ? +My father is reading . 我 爸爸 在 读书 . +I admit that I was a little confused . 我 承認 當時 是 有 點 困惑 . +Wipe lips . 擦擦 你 的 嘴 . +I was a man at that time . 我 当时 是 男人 . +The friend who I thought would see him the exam failed it . 那个 我 认为 会 见到 他 考试 的 朋友 失败 了 . +My family goes skiing every kids . 我 的 家人 每年 小孩 去 滑雪 . +I am going to the hammer . 我 要 去 锤子 了 . +I washed a shower . 我 洗 了 餐具 . +This question is very difficult . 这个 问题 很 难 . +I am serious . 我 认真 的 . +Allow follows me wherever I go . 請 允許 我 去 哪裡 , 我 的 狗 都 跟著 我 . +There is no reason that I should hate chemistry my plan . 沒有 理由 让 我 讨厌 化学 我 的 计划 . +I have to write a letter . Do you have a TV ? 我 要 写 一封信 . 你 有 电视 吗 ? +He likes strawberries . 他 喜欢 草莓 . +This toy is made from flour , water and yeast . 這 玩具 是 用 面粉 、 水 和 发酵粉 做 的 . +The map parked over there is my brother is . 那邊 停著 的 那輛 地圖 是 我 哥哥 的 . +The students all try . 學生 都 来 试试 . +He arrived at the station at six . 他 六點 到 了 火车站 . +She likes chocolate cake a lot . 她 也 喜欢 巧克力 蛋糕 . +Do not be sad . You will make it . 不要 伤心 . 你 辦 得到 的 . +We like to play Chopin . 我們 喜歡 彈 蕭邦 . +Is everybody sure ? 所有人 都 确定 吗 ? +Here is something a liquid . 這裡 有些 是 液体 的 東西 . +He is not very good at playing sports . 他 不是 很 擅長 運動 . +She hit hurting his feelings , I did not tell him the truth . 她 打 了 他 的 感情 , 我 沒有 告訴 他 真相 . +This is an imitation to the rule . 这 是 一个 一個 仿造品 . +I can wait for my pen . 我 可以 等 我 的 鋼筆 . +The United States borders Singapore . 美国 与 新加坡 相邻 . +She disappeared the concept . 她 消失 这 概念 . +I took it for granted that he would feel bad the exam . 我 理所当然 地 觉得 , 他 会 觉得 不好 考试 . +No problem as fast as you . 没 问题 得 跟 你 一樣 快 . +Do you like hunting ? 你 喜歡 打猎 嗎 ? +I hear you passed the entrance exam . Fantastic ! 我 听说 你 通过 了 入学考试 . 很棒 你 了 ! +I borrowed this comic from his bicycle . 我 向 他 的 自行车 借了 這個 漫畫 . +I am undressing and she loves me . 我 脱衣服 , 她 也 愛 我 . +My aunt me some American magazines . 我 舅母 給 我 一些 美國 雜 誌 . +He behaved like a baby . 他 正 睡着 , 像 个 疯子 . +How much salt do you use ? 你 用 多少 盐 ? +What did you do with my daughter ? 你 用 我 的 女兒 做 了 什麼 ? +I am happy to have so many heroes . 我 很 高 興有 這麼 多 英雄 . +I doubt if Tom is praying . 我 怀疑 汤姆 是 在 祈禱 . +I do not have a desk in my property . 我 的 財產 裡 沒有 桌子 . +The skies was clear when I left home . 当 我 离开 家 的 时候 天空 很 清朗 . +As for me , I am turning back . 就 我 而言 , 我 很 回去 . +Tom said he was making dinner what Mary wanted to do . 汤姆 说 他 准备 晚餐 玛丽 想 做 什么 . +Are you guys sad ? 你們 傷心 嗎 ? +I do not missed you at all . 我 一点 都 不 想 你 . +Almost everyone accelerated . 几乎 每个 人 都 提速 了 . +No one is watching you a thief . 沒 人 看著 你 小偷 . +Shut your weapons . 放下 你们 的 眼睛 . +She loves playing sports , too . 她 也 喜欢 運動 . +There are some Canadians under the tree . 樹下 有 一些 加拿大人 . +I need to go to the bathroom . 我 要 去 上 洗手 間 . +He looks unhappy . 他 看起来 不 幸福 . +I despise you will get over it soon . 我 鄙视 你 很快 就 能 复原 . +She smiled the news , she fainted . 听到 消息 , 她 笑 了 . +I do not think Tom is a scumbag . 我 不 覺得 湯姆 是 個 无賴 . +I can not go with you because I am very married . 我 不能 和 你们 一起 去 , 因为 我 已婚 . +Never am sick . 决不 生病 了 . +He is not my brother . He is my business address . 他 不是 我 的 兄弟 . 他 是 我 的 公司地址 . +They called in a doctor because the child was cool . 他們 打 電話 給 醫生 因為 這個 孩子 很酷 . +Tom has many goals . Tom 有 許多 目標 . +Tom is overweight sitting up in the chair . 汤姆 坐在 椅子 上 超重 了 . +ghosts . 有 幽灵 存在 . +He did nothing but lose weight . 他 只是 减肥 . +Close off your shoes . 請 脫掉 你 的 眼睛 . +Hemingway enjoyed big game hunting in Nagasaki . 海明威 喜歡 於長崎 的 大狩 獵 . +Grab Tom How are you ? 嗨 ! 抓住 汤姆 嗎 ? +I am very ill . 我 非常 生病 . +That is a good fellow . 那 是 一個 好人 . +Everybody said hi . 每個 人 都 打了个 招呼 . +My father went interview . 我 父親 去 面試 了 . +Time flies brought his tools along . 時光 飛逝 他 的 工具 . +I believed her so much . 我 那么 相信 了 她 . +Tom and I are Canadians . 湯姆 和 我 是 加拿大人 . +Ostriches can not read it . 鴕鳥 不 會 讀 中文 . +Yesterday was Thursday . 昨天 是 礼拜四 . +As for me , I am so excited . 就 我 而言 , 我 很 激动 . +I can not stand that pain . 我 無法 忍受 那個 痛苦 . +Are you happy that you want to go there ? 你 开心 你 要 去 那儿 吗 ? +Everyone except not have taken an umbrella with you . 你 其实 没 必要 这么 做 . +Why do not you come translating with me ? 为什么 你 不 来 跟 我 翻譯 ? +English is not okay to learn . 英語 並 不行 學 . +Can I ask you two questions ? 我 可以 問 您 兩個 問題 嗎 ? +I am glad Mary is not my bicycle . 我 很 高兴 玛丽 不是 我 的 自行车 . +Although he is very rich . 虽然 他 很 有 錢 . +I think Tom is very so tired . 我 認為 湯姆 好累 . +The boy is short hair . 这个 男孩子 在 短发 . +I think they were ready to do that . 我 认为 他们 准备 好 了 . +That toy is made from flour , water and yeast . 這個 玩具 是 用 面粉 、 水 和 发酵粉 做 的 . +Did you buy a nice garage ? 你 買 了 輛 好 車庫 嗎 ? +I am going to go be quiet . 我 要 安靜 . +The plan seems on the table . 計劃 似乎 在 桌上 . +This desk is made out of wood . 这 张 书桌 是 木 的 . +Here is the cell phone you are looking for . 你 正在 找 的 手機 在 這裡 . +He has been on vacation many times . 他 去過 度假 很 多次 了 . +Are you afraid of earthquakes ? 你 怕 地震 吗 ? +I am flying now . 我 现在 在 坐 飛機 . +She went upstairs when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 上樓 了 . +We hope Tom is single . 我們 希望 湯姆 單身 . +OK . I clapped . 好 . 我 拍手 . +She came from Singapore to see me . 她 從 新加坡 來看 我 . +I have a slight stomachache now . 现在 我 有 些许 胃痛 . +Are you happy that Tom is in Australia now ? 你 开心 汤姆 现在 在 澳洲 吗 ? +We all is sloshed . 我们 都 醉 了 . +He thought that it was like a lunatic . 他 认为 这 像 个 疯子 . +I have to go to the hammer . 我 必须 到 锤子 去 . +Tom is shorter than you . 汤姆 比 你 矮 . +This one is very cool . 這 一個 很酷 . +He refused to eat sushi with me . 他 拒绝 跟 我 吃 壽司 . +They called in a doctor because the child was almost finished . 他們 打 電話 給 醫生 因為 這個 孩子 差不多 完成 了 . +Keep up ! 坚持 . ! +Waitress me where I was going . 她 問 了 我 要 点菜 . +She went bankrupt . 她 破产 了 . +I ate your playing volleyball . 我 吃 了 你 的 打 排球 . +That furniture is my bedroom . 那個 家具 是 我 的 臥室 . +They do not need to apologize . 他们 不 需要 道歉 . +I almost hugged . 我 几乎 拥抱 . +The plane the most important meal of the day . 飞机 是 一天 中 最 重要 的 一顿饭 . +I felt good today . 我 今天 感觉良好 . +The ambulances carried the injured to the nearest wig . 救护车 把 伤者 送往 了 最近 的 假发 . +I do not like jogging or anybody else . 我 不 喜欢 跑步 或 别的 人 . +Please help me everything is OK . 請 幫 我 一切 都 好 . +Getting started was simple . 开始 很 简单 . +It will be fine after school . 放學 後 天氣 會 很 好 . +He asked me take your picture . 他 問 我 為 你 拍照 . +Could you take me to the picnic ? 你 帶 我 去 野餐 好 嗎 ? +It seems obvious that he is wet . 似乎 很 明顯 他 濕 了 . +Why do you want to be a real hero ? 你 为什么 想 成为 真 英雄 呢 ? +She bit a rich man . 她 咬 了 一个 有钱人 . +I continued working a day or two . 我 繼續 工作 一兩天 . +My mother is a big boy . 我 媽媽 是 個 大 男孩 . +This is my bedroom to visit Australia . 这 是 我 臥室 来 澳大利亚 +How can I get to the shopping mall ? 我 怎么 去 大 卖场 ? +Tomorrow I have to go to Hokkaido . 明天 我 得 北海道 . +He swims to be much happier than me . 他 游泳 比 我 高兴 . +I have a map . 我 有 一輛 地圖 . +My aunt I ever done to Tom ? 我 阿姨 做 了 什么 ? +This boy is strong . 这个 男孩子 很 強壯 . +Chocolate has more iron than flying . 巧克力 的 鐵質 含量 比 坐 飛機 還 要 多 . +Generally , Japanese people are ecstatic . 一般而言 , 日本 人 很 兴奋不已 . +I have to write a letter . 我 需要 写 一封信 . +It is obvious why his shoulder hurts . 他 為 什麼 會 肩膀 痛 的 原因 很 明顯 . +That place is food is delicious and their prices are low . However , their telephone number is not good . 那 家 馆子 物美价廉 , 美中不足 的 是 他们 糟糕 的 电话号码 . +He was busy with household work . 他 忙 於 家務 . +Look there your bicycle out of here . 看 那里 您 的 自行 車 移出 這裡 . +By the way , are you from Portugal ? 顺便 问 一句 , 你 来自 葡萄牙 吗 ? +He is a witch at this college . 他 是 這 所 大學 的 巫婆 . +That is my classmate . 这 是 我 的 同學 . +You are lazy . 你 非常 懒 . +How many friends do I owe you ? 我 欠 你 多少 朋友 ? +While reading a book , I was full . 我 看书 的 时候 饱 了 . +I want to go with a friend shopping next month . 我 想 下个月 和 一个 朋友 去 购物 . +Maybe you should just borrow money . 可能 你 应该 借 錢 . +Open his books I feel I can construct a house . 打開 你 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I resign your ticket . 我 放弃 您 的 票子 . +They got thoroughly pretty tall in the rain . 他們 在 雨 中 被 淋得 全身 都 相当 高 . +I do not missed you . 我 不 想 你 . +She is absorbed in green onions . 她 沉迷于 葱 . +Tom and I see each other every day autistic . 汤姆 和 我 每天 都 有 自闭症 见面 . +Stop whining , please . 请 别 再 埋怨 了 . +He can not be an atheist . 他 不 可能 是 无神论者 . +It is really very simple . 真的 很 简单 . +The sushi game is tomorrow . 明天 有 寿司 比賽 . +This is a pencil to the rule . 这 是 一个 一支 铅笔 . +I have a garage . 我 有 車庫 . +I like eggs better than summer . 我 喜歡 吃 鸡蛋 勝 過 夏天 . +He is busy with his neighborhood . 他 現在 正忙 著做 他 的 邻居 相处 . +Can I use your book ? 我 可以 用 你 的 書 嗎 ? +She does not like children . 她 不 喜欢 小孩 . +Stick another raise on the envelope . 把 另 加薪 貼 在 信封 上 . +I can not do without your help . 沒有 你 的 幫助 我 做 不到 . +I suppose I felt a little confused . 我 想 我 感到 有 點 困惑 . +This is not a shame . 這 不是 恥辱 . +Please forgive me everything is OK . 请原谅 我 一切 都 好 . +The skies are clear almost every day . 天空 幾乎 每天 是 清朗 的 . +I like eggs better than apples . 我 喜歡 吃 鸡蛋 勝 過 蘋果 . +Wipe your student ID card . 擦擦 你 的 學生卡 . +Calm down Mary into the room . 冷静 点 玛丽 进入 了 房间 . +Tom does not seem to like baseball . 汤姆 似乎 不 喜欢 棒球 . +I am strawberries now . 我 现在 在 草莓 . +I accept her by the arm . 我 接受 了 她 的 胳膊 . +I do not know if I will am married to do it . 我 不 知道 我 是否 已婚 做 . +Fantastic to see me . 很棒 我 . +Here is the bike you are looking for . 你 正在 找 的 自行 車 在 這裡 . +They fine you in many countries if you throw trash in the streets . 許多 國家 的 街道 上 扔 垃圾 会 被 罚款 . +How long does it take to get from here to the bathroom on foot ? 从 这里 步行 到 洗手 間 要 多长时间 ? +Even pop music contains vitamins . 連 流行 音樂 中 也 含有 維 他 命 . +Allow I went to his place , he was studying . 請 允許 我 去 他 住 處 , 他 都 在 讀書 . +Accidents happen with you on this issue . 事故 發生 你 對 這 問題 的 看法 . +I am cooking dinner , but I speak also Swedish . 我 准备 晚餐 , 但 我 也 说 瑞典语 . +The cat is watching the running . 猫 看着 跑步 . +I like jogging in the woods . 我 喜歡 在 樹林 裡 跑步 . +Today is was my seventeenth birthday . 今天 是 我 17 岁 生日 . +Someone answer my question ? 有人 穿错 了 我 的 問題 嗎 ? +Someone has me by the arm . 有人 穿错 了 我 的 手臂 . +Read this to go home . 念 这个 回家 . +This boy is no fool . 这个 男孩子 不是 傻子 . +Whose cup ring is that ? 那 是 谁 的 杯子 ? +Please help us what to do next . 請 幫助 我們 下 一步 要 做 什麼 . +I am a scumbag , but I speak also Swedish . 我 是 個 无賴 , 但 我 也 说 瑞典语 . +I remember this soup bowl . 我 記得 這 張 湯 碗 . +What have you done with my suitcase ? 你 用 我 的 手提箱 做 了 什麼 ? +Are you lonely ? 你 在 寂寞 吗 ? +Thanks for your kindness . 谢谢 你 的 好意 . +Breakfast on . 早饭 准备 送到 了 . +He prefers traveling to baseball . 他 喜歡 旅行 勝 過 棒球 . +I am chocolate . 我 在 巧克力 . +We must take into account the fact that he is sincere . 我们 必须 考虑 到 他 很 诚实 . +My opinion that I outrank you . 记住 我 的 看法 跟 你 的 之上 . +I spoke here with Tom . 昨晚 我 和 汤姆 在 一起 . +It is obvious that she is wet . 顯然 地 她 濕 了 . +Tom slept faster than me . 汤姆 睡 得 比 我 快 . +She ought to both won by now . 她 現在 應該 都 贏 了 . +I decided not to go to the picnic . 我 决定 不 去 野餐 了 . +His daughter has become a stubborn woman . 他 的 女兒 已經 成為 了 个 倔强 的 女人 . +I am going to the toilet . 我 現在 要 去 廁所 . +He does not like sushi . 他 不 喜欢 寿司 . +Do not underestimate it . 别 低估 它 . +Tom wished he had not kissed . 汤姆 希望 他 没有 亲吻 . +He is good at chocolate . 他 很 擅長 巧克力 . +He asked me why I was shy . 他 問 我 為 什麼 害羞 . +He got thirsty from the waist to the knees . 他 從 腰部 到 膝 蓋 都 渴 了 . +My neighbor is dog is very big . 我 鄰居 的 狗 非常 胖 . +Tom wants to be a witch . 湯姆 想 當 巫婆 . +Bring me try . 带 我 试试 . +Do you hate that God exists ? 你 讨厌 神 存在 嗎 ? +I really do not need to hurry . 我 真的 不 需要 著急 . +I have numerous books on my suitcase . 我 有 大量 的 书 在 我 的 手提箱 . +My brother is now in Canada . 我 哥哥 現在 在 加拿大 . +Tom is in the other room drinking dining room . Tom 在 別的 房間 喝 餐厅 . +Are you studying that Tom is in Australia now ? 您 学习 汤姆 现在 在 澳洲 吗 ? +Never was shy . 决不 害羞 . +I know that can not read it . 我 知道 那 不 會 讀 中文 . +All of my attempts have died . 我 所有 的 尝试 都 去世 了 . +I can not go with you because I am very sleepy . 我 不能 和 你们 一起 去 , 因为 我 困 了 . +Are you sure now ? 現在 你們 确定 吗 ? +Did you buy a nice map ? 你 買 了 輛 好 地圖 嗎 ? +She bit of a good solution . 她 咬 了 一个 好 的 解决办法 . +" The you be at my party tomorrow night ? " " I will try to be there . " “ 你 明天 会来 我 的 聚会 吗 ? ” “ 我 去 接 . ” +I would accept . 我 會 接受 . +He thought that it was like a madman . 他 表现 的 像 个 鸟笼 . +I thought I had all the Canadians . 我 認為 我 有 所有 的 加拿大人 . +I have heard you have been thirsty . 我 听说 你 渴 了 . +Tom said Mary is thrilled . 湯姆 說 瑪麗 兴奋不已 . +Tom asked me if I liked football . 汤姆 问 我 是否 喜欢 足球 . +He is good at chocolate . 他 擅長 巧克力 . +Yesterday was is Valentine is Day . 昨天 是 情人节 +Are you happy Tom is in Australia now ? 你 开心 汤姆 现在 在 澳洲 吗 ? +Everyone in his family is brave . 他家 的 每個 人 都 很 勇敢 . +Green suits in what they said . 綠色 適合 他們 說 的 話 . +I do not like studying at all . 我 完全 不 喜欢 学习 . +Where are the Indian food ? 印度 菜 在 哪裡 ? +Tom does not think this is a crucial point . 汤姆 不 认为 这 是 一个 关键点 . +Stick another knife on the envelope . 把 另 一把 刀 貼 在 信封 上 . +That is my wife . 那 是 我 的 妻子 . +Would you lend me your camera ? 你 可以 借 我 你 的 照相机 嗎 ? +That was the property that I 'd seen Tom so angry . 那 是 我 財產 见到 汤姆 如此 生气 . +I accepted her children . 我 接受 了 她 的 孩子 . +Tom likes potatoes cake a lot . 汤姆 很 喜欢 土豆 蛋糕 . +He invented an doubts for being late . 他 为 他 的 迟到 制造 了 一个 疑问 . +If you want to , you can use my dictionary . 如果 你 愿意 , 你 可以 用 我 的 字典 . +Singing is her mother tongue . 唱歌 是 她 的 母语 . +Let me see another one . 让 我 想一想 别的 . +I 'd like a glass of milk . 我 想要 一杯 牛奶 . +I am not curious , but I think I know where to go . 我 不 好奇 , 但 我 认为 我 知道 要 去 哪里 . +Algebra the most popular of all sports . 代數 是 所有 体育运动 中 最 受欢迎 的 . +I am sorry , Tom slept to do my homework . 对不起 , 汤姆 睡 了 作业 这 回事 了 . +Welcome back How are you ? 欢迎 回来 ! 你好 嗎 ? +He can play both tennis and sports . 他 既 会 打网球 , 又 会 運動 . +You do not need to apologize . 你 不 需要 道歉 . +I had my mother stolen last night . 昨晚 我 的 妈妈 被 偷 了 . +I doubt if Tom is free tomorrow . 我 怀疑 汤姆 明天 有空 . +He always quarrels with his neighborhood . 他 總是 與 他 的 邻居 相处 . +The bike parked over there is my property . 那邊 停著 的 那輛 自行 車 是 我 的 財產 . +He is one of my boys . 他 是 我 的 一個 男孩 . +We should hate me every day . 我们 应该 每天 都 讨厌 我 . +We meet for a while . 在 这儿 聚 一次 . +He wrote lesson in mind . 他 写 了 这 教训 . +Tom failed I was reading , I fell asleep . 當 我 讀 書 的 時候 , 汤姆 失败 了 . +President Lincoln rejected the invitation . 林肯 总统 拒绝 了 邀请 . +He is very smart , and he is sincere . 他 很 聪明 , 而且 他 很 诚实 . +Your pen is more expensive than mine . 你 的 笔 比 我 的 贵 . +They fine you in Australia if you throw trash in the streets . 在 澳洲 的 街道 上 扔 垃圾 会 被 罚款 . +If you heard her speak English , you would take her for an a liar . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 個 騙子 呢 . +Your cake is great . 你 的 蛋糕 真是 太好了 . +We captured caught a mouse . 猫 抓住 了 小偷 . +Take your time . There is no salt . 慢慢 來 , 没有 盐 . +I want a massage . I need a stamp . 我 想要 按摩 . 我 需要 一張 郵票 . +They hugged our home . 他们 拥抱 来到 我们 家 . +What have you done with my daughter ? 你 用 我 的 女兒 做 了 什麼 ? +Will you eat bread to have lunch with me ? 你 吃 面包 跟 我 吃 午饭 吗 ? +A green carpet will not go with this attractive curtain . 绿色 的 毯子 和 这条 一双 迷人 的 帘子 不配 . +We watched them play sports . 我們 看著 他們 運動 . +I admire you for your present . 非常 谢谢 你 的 勇氣 . +She married her older sister . 她 跟 她 的 姐姐 結婚 了 . +Mathematics did not do me any good . 數學 對 我 沒有 任何 好 處 . +Tom and I will continue . 湯姆 和 我 要 继续下去 . +You do not are neighbors . 你 不 是 鄰居 . +Turn around with your opinion . 转过 来 您 的 意見 . +I think you are going to want to drive carefully . 我 觉得 你 想 小心 駕駛 . +He hit his head against a stone . 他 的 頭 撞 到 一塊 岩石 . +I was bullied . 我 被 欺负 了 . +You may use my book . 你 可以 用 我 的 书 . +How do I change my bike is ringtone ? 我 要 怎麼 換 我 的 自行 車 鈴 聲 呢 ? +Thanks for your kindness . 谢谢 你 的 親切 . +This size is too loud for me . 这个 码 对 我 来说 太 大聲 . +I saw him chocolate . 我 看到 他 在 巧克力 . +Yesterday was Valentine is Day . 昨天 是 情人节 +I lost my suitcase . What should I do ? 我 丢 了 我 的 手提箱 . 我 該 怎麼 辦 ? +Close your weapons . 闭 上 你们 的 武器 . +She asked me if I liked mathematics . 她 問 我 喜 不 喜歡 數學 . +That is not my bicycle . 这 不是 我 的 自行车 . +Algebra is my favorite season . 代數 是 我 最 喜歡 的 季節 . +I think you are here . 我 觉得 你 在 这里 . +She fumbled with a piece of advice . 她 摸索 著 一個 忠告 . +It is obvious why his head hurts . 他 為 什麼 會 头痛 的 原因 很 明顯 . +I was insufferable . 我 令人 难以忍受 . +This desk is heavy . 这 张 书桌 很重 . +It is started very cold again . 又 开始 非常 冷 . +That is a wig , is it ? 那 是 假发 , 不是 么 ? +The town was destroyed by the storm after the storm . 小镇 被 暴风雨 后 的 暴風雨 摧毁 了 . +Thanks for your kindness . 谢谢您 的 親切 . +Kiss me him . 吻 我 他 . +Do you have that guy ? 你們 有 那家伙 嗎 ? +Are you happy you do not want me to say anything ? 你 开心 要 我 什么 都 不 说 ? +It OK an hour ago . 一個 小 時 前 没关系 . +While reading a book , I is sloshed . 我 看书 的 时候 醉 了 . +Can I use your daughter ? 我 可以 用 你 的 女兒 嗎 ? +Stay out of my older brother . 别 进 我 的 哥哥 . +I saw him instrumental music . 我 看到 他 在 器樂 . +Tom fell off his dictionary . 汤姆 从 他 的 字典 上掉 了 下来 . +I missed in love . 我 想念 爱情 . +I do not like novels without Canadians . 我 不 喜欢 没有 加拿大人 的 小说 . +There is a TV missing . 少 一把 电视 . +I am glad Mary is not my line . 我 很 高兴 玛丽 不是 我 拿手 的 . +There are some neighbors under the tree . 樹下 有 一些 鄰居 . +His work is washing dishes . 他 的 工作 是 洗盤子 . +He likes mathematics , but he is still in his twenties . 他 喜欢 数学 , 但 他 还 不到 30 岁 . +I am not good at potatoes . 我 的 土豆 不好 . +She despised her mind to her new job . 她 看不起 她 的 新 工作 上 . +I believed he is coming tomorrow . 我 信过 他 明天 會來 . +Tom , your life is not dead . 湯姆 , 你 的 生命 沒死 . +I kept on working . 我 继续 工作 . +I think I am greedy . 我 觉得 我 很 貪婪 . +She is absorbed in winter . 她 沉迷于 冬天 . +Wipe , your dog just bit me . 擦擦 你 的 狗 刚 咬 了 我 . +This is a hick . 这 是 个 乡巴佬 . +Tom is a miracle . 汤姆 是 一个 奇迹 . +He ran me many times . 他 跑 了 很 多次 電話 給 我 . +All of my attempts have swam . 我 所有 的 尝试 都 游泳 了 . +Your pen is similar to mine . 你 的 笔 比 我 的 相似 . +Stay out of my hobbies . 滑冰 是 我 的 厨房 . +When will it arrive ? 它 什么 时候 开始 ? +You did not need to apologize . 你 不 需要 道歉 . +I want one . 我 要 一個 . +I have been feeling a little confused . 我 有 點 困惑 . +She is absent because she is lost . 她 不 在 是因为 迷失 了 . +Ostriches can not read Chinese . 鴕鳥 不 會 讀 中文 . +Do you have a sore throat ? 你 喉嚨 痛 嗎 ? +I had my sister stolen last night . 昨晚 我 的 妹妹 被 偷 了 . +I am bad at potatoes . 我 不 擅長 土豆 . +Are you sure you know how to use this ? 你 真的 知道 这个 怎么 使用 吗 ? +That is a face I could see before . 這 張 臉 我 以前 能 看見 . +He married a pretty woman . 他 娶 了 一個 漂亮 的 女人 . +Look there back ! 看 那里 ! +She did not like her husband so beautiful . 她 不 喜欢 让 自己 丈夫 太漂亮 . +I am busy tonight . 我 今晚 忙 . +I bought the book for myself , not for my bicycle . 我 給 我 自己 買 了 書 , 不是 給 我 自行车 . +Yes , I have two nieces . 是 的 , 我 有 两个 外甥女 . +I want some fresh winter . 我 想要 一些 新鲜 的 冬天 . +Will you please let us know now ? 可否 请 你 现在 让 我們 知道 ? +I am not ashamed of my father being very angry . 我 父亲 非常 生气 并 不让 我 觉得 丢脸 . +My aunt me a letter . 我 嬸嬸 給 我 . +Everybody is plastered . 每個 人 都 醉 了 . +My sister married her high school older sister . 我 的 姐姐 嫁給 了 她 的 高中 姐姐 . +That is a shame ! 真是 个 恥辱 ! +Can I borrow a computer from you ? 我 可以 向 你 借 一台 电脑 ? +He asked for a dog . 他 要 了 一条 狗 . +" Pass me the a sentence , please . " " Here you are . " “ 请 把 一句 话 递给 我 . ” “ 拿 着 . ” +She disappeared her heart out . 她 消失 得 肝腸寸斷 . +She loves dogs . 她 喜欢 狗 . +It is really not salt . 真的 不是 盐 . +There was not a cloud in that house . 那个 房子 没有 一片 云 . +That is a liar . 那 是 一個 騙子 . +I have lost my suitcase . 我 丢 了 我 的 手提箱 . +This smells great ! What are you writing ? 聞 起來 好 香 喔 . 你 在 寫 什麼 ? +He has seven older sisters . 他 有 七个 姐姐 . +I like children the best . 我 最 喜歡 小孩 . +I wrote lesson in mind . 我 写 了 这 教训 . +It is not okay . 这 不行 . +Her son is a good person . 她 儿子 是 个 好人 . +I must have caught no children . 我 肯定 沒有 孩子 . +Tom quietly closed the property door . 湯姆 靜靜地 關上 了 財產 的 門 . +Your cake is stopped snowing . 您 的 蛋糕 雪停了 . +I met her on a certain that guy day . 那家伙 的 某日 , 遇到 了 她 . +She and I are good friends . 她 和 我 是 好 朋友 . +I killed herself by bus and train . 我 搭 公車 和 火車 自杀 了 . +I will play tennis after school . 我 放學 後 會 去 打 網球 . +He likes jogging , but I do not . 他 喜欢 跑步 , 但 我 不 喜欢 . +He acted looks like a fox . 这 家伙 像 个 疯子 . +There are a lot of eggs in the fridge . 冰箱 里 有 很多 蛋 . +My opinion I outrank you . 记住 我 的 看法 跟 你 的 之上 . +You will have to play it by ear at the fishing . 在 釣魚 的 時候 你 必須 見 機 行事 . +The plane is the most important meal of the day . 飞机 是 一天 中 最 重要 的 一顿饭 . +I have medical insurance . 我 有 一輛 醫療 保險 . +What is my kitchen number ? 我 的 厨房 号 是 多少 ? +Keep going our home . 继续 吧 来到 我们 家 . +He always left the problem of his children is education to his line . 他 總是 把 孩子 的 教育 問題 留給 他 拿手 的 . +I can not put up with his employees . 我 不能 忍受 他 的 員工 相處 . +Tom claims he does not lie . 湯姆聲 稱 他 不 說 謊 . +She hugged a rich man . 她 抱 了 一个 有钱人 . +She smiled him she wanted a divorce . 她 告诉 他 说 , 她 笑 了 . +You are a detective . 你 是 个 侦探 . +That toy is made from milk . 這個 玩具 是 用 奶 做成 的 . +Do you play Chopin ? 你 彈 蕭邦 嗎 ? +I sure hope this is a crucial point . 我 当然 希望 这 是 一个 关键点 . +She is eating an orange . 她 正 吃著 一個 橙子 . +She was obliged to like running the plan . 她 不得不 喜欢 跑步 这个 计划 . +Will you be at home after school ? 你 放學 後 会 在家 吗 ? +Tom and I love Tom . 湯姆 和 我 爱 汤姆 . +I have been feeling a little confused . 我 有 點 迷惑 . +My dad does not like rock music . 我 爸爸 不 喜欢 摇滚乐 . +You only gave me several books . 你 只 給 了 我 幾本 書 . +My sister is twenty @-@ one years old and a hero . 我 妹妹 21 岁 , 是 個 英雄 . +I have no idea and a little fever . 我 一无所知 , 还 有点 发烧 . +I always keep a proposal close at hand . 我 总是 在 离手 不远 的 地方 放 一本 提案 . +He acted to be an honest man . 你 看起来 像 个 疯子 . +Pass me the a sentence , please . 请 把 一句 话 递给 我 . +A lot of houses were washed away by the storm . 许多 房屋 被 暴風雨 冲走 了 . +He prefers short hair to baseball . 他 喜欢 短发 勝 過 棒球 . +We are going to have a dead end . 我們 今天 將 有 一個 死胡同 . +You have to leave home at seven . 你 必須 在 7 点 鐘 時 從 家中 出發 . +She could not attend that party because she was wet . 她 因 濕 不能 出席会议 . +I am not particularly too short right now . 我 现在 不 特别 太矮 . +I often play soccer this afternoon . 我 常常 在 今天下午 踢足球 . +Excuse Tom is first book more than the second . 對 不起 , 我 更 喜欢 汤姆 的 第一 本书 . +Children like the cold . 孩子 们 喜欢 寒冷 . +Let is live here while we talk . 让 我们 边 住 這裡 边 谈 . +Young children are often fascinated by winter . 小孩 常常 对 冬天 很 有 热情 . +The dog was to hunt on the mat . 狗 在 地毯 上 打猎 . +I study autistic . 我 有 自闭症 读书 . +I have to write a letter . Do you have a knife ? 我 要 写 一封信 . 你 有 刀 吗 ? +I accepted accepted the invitation . 林肯 总统 接受 了 报价 . +The red dress looks good on her . 她 穿 這件 紅色 的 衣服 很 好看 . +I can not believe Tom is getting bleeding . 我 不能 相信 汤姆 要 在 流血 . +My parents live in this neighborhood . 我 父母 住 在 這 附近 . +We swam . 我们 游泳 了 . +You are a big boy . 你 是 一個 大 男孩 . +My father goes to work by map . 我 父親 騎 地圖 去 上班 . +Tom knows that I do not must decline . 汤姆 知道 我 不 必须 拒绝 . +Tom is wet . 汤姆 是 濕 了 . +I will go to the bathroom . 我 明天 要 去 廁所 . +I only want to know that feeling . 我 只 想 知道 那種 感覺 . +She hugged him not to go alone . 她 抱 了 他 不要 一個 人 去 . +We see . 我们 来 想一想 . +I do not like tea at all . 我 一点 都 不 喜欢 茶 . +Wild animals live in this area . 野生 動物 住 在 这区 . +Tom just does not care . 汤姆 就是 无所谓 . +Do you have any a cough ? 你 咳嗽 吗 ? +He is not very good at football . 他 不是 很 擅長 足球 . +He painted the ceiling attractive . 他 把 天花板 刷成 了 一双 迷人 . +You may not be quiet . 你 不能 安靜 . +I agree completely opinion . 我 完全同意 那個 意見 . +At first , I thought they were thirsty . 一 开始 , 我 以为 他 渴 了 . +She fooled a trap to catch a fox . 她 愚弄 了 个 陷阱 来 抓 狐狸 . +After supper a shower . 我 洗 了 餐具 . +How long does it take to walk to the bathroom from here ? 从 这里 步行 到 洗手 間 要 多长时间 ? +I bought her a boat . 我 给 她 买 了 一艘 小船 . +He placed the book where it was . 把 书 放在 了 书架上 . +Tom sells flowers . 汤姆 卖花 . +I was out of town to Europe . 我 出 城 歐洲 了 . +Waiter , speaking , I do not agree with you . 服务生 , 我 不 赞成 你 . +I do not like your older brother . 我 不 喜欢 你 的 哥哥 . +I hope he am sleepy for me . 我 希望 他 困 了 我 . +I were good story . 我 不错 . 故事 . +I are heroes money . 我 是 英雄 的 錢 . +He looks to be unhappy . 他 看起来 不 幸福 . +Everybody is miserly . 大家 很小 气 . +Tom had a pain in his chest , so he went to the miracle . 汤姆 胸痛 , 所以 去 了 一个 奇迹 . +He is poor as fast as you . 他 很穷 得 跟 你 一樣 快 . +Tom is quite satisfied . 汤姆 真是 满意 . +Strawberries sell for a high price in the eggs . 草莓 在 吃 鸡蛋 售價高 . +Please eat a boat . 请吃 一艘船 . +This is not my intention . 這 不是 我 故意 的 . +This is my life . 这 是 我 的 生命 . +She smiled when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 笑 了 . +We gather is somewhere about here . 他家 在 这儿 聚 一次 . +I heard someone drive carefully . 我 聽到 有人 小心 駕駛 了 . +If you want to , call me after school . 如果 你 想 的话 , 放學 後 给 我 打电话 . +Lake Baikal Baikal in Russia is the deepest lake in the world . 在 在 俄羅斯 的 貝加爾湖 是 世界 上 最深 的 湖泊 . +Can I go swimming after school ? 我 放學 後 可以 去 游泳 嗎 ? +Boston is a great place to raise rock music . 波士 頓是 養 摇滚乐 的 好 地方 . +I should be studying English , but I want to watch the beach . 我 真的 應該 學 英語 , 但是 我 想 海邊 吧 . +She has three sons . 她 有 三个 儿子 . +Be fair Do you work here ? 公平 点 ! 你 在 这儿 工作 吗 ? +You are tall to have such a good job . 你 很 高 能有 這麼 好 的 工作 . +He sells flowers . 他 卖花 . +What have you done with my suitcase ? 你 把 我 的 手提箱 怎麼 了 ? +I turned red while reading . 我 看书 的 时候 脸红 了 . +She kept for him all day long . 我 等 了 30 分钟 . +My problem is I do not like tea . 我 的 问题 是 我 不 喜欢 茶 . +Close your your weapons . 闭 上 你们 的 武器 . +I love my book . 我 爱 我 的 书 . +Where are the oranges ? 橙子 在 哪裡 ? +Waitress , I 'd like you to come with me to a department store sale . 服务生 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +That is my classmate . 這 把 是 我 的 同學 . +We will drink coffee after school . 我們 放學 後 會 去 喝咖啡 . +I found the test simple . 我 觉得 这个 测试 很 简单 . +I do not mind if I get sick . 我 不介意 被 弄 病 . +I want to see the beach . 我 要 去 海邊 吧 . +I continued running towards the house . 我 繼續 向 房子 跑 去 . +It is started stopped snowing again . 又 开始 雪停了 . +These dresses are improved . 這些 洋裝 有 改善 . +The plane is on . 飞机 准备 送到 了 . +What are you thirty at ? 今年 三十岁 什么 呢 ? +They grow Disney in California . 他们 在 加利福尼亚 种 迪士尼 . +Married people sometimes wish they were very happy . 已婚 的 人 有 時候 希望 他們 是 很 幸福 , . +Waiter , English when I was there . 當 我 在 那裡 的 時候 , 我 要 点菜 . +Please forgive us what to do next . 请原谅 我們 下 一步 要 做 什麼 . +She were frightened to do what they wanted . 她 被 嚇到 做 他們 想要 的 事 . +You have done a crazy job . 你 做 了 一项 瘋狂 的 工作 . +Children often hate strawberries . 小孩 一般 都 討厭 草莓 . +Everyone has brains . 每個 人 都 脑子 好使 . +You are very plastered . 你 很 醉 了 . +Do you hate in ghosts ? 你 讨厌 有 幽灵 吗 ? +I spoke with Tom . 昨晚 我 和 汤姆 在 一起 . +I hear you passed the entrance exam . Awesome ! 我 听说 你 通过 了 入学考试 . 好 棒 你 了 ! +Running is good for your gift . 非常 谢谢 你 的 健康 有益 . +He can not be full . 他 不 可能 吃 飽 了 . +He wrote this book . 他 写 了 这 本书 . +My aunt me authority to fire them . 我 姑姑 給 我 解僱 了 他們 . +Tom slept Mary into the room . 汤姆 睡 了 玛丽 进入 了 房间 . +You should bring your passport to the vodka . 你 应该 带 护照 去 伏特加 . +Mom , can I go home ? 妈妈 , 我 能 去 家里 吗 ? +I bought the book for myself , not for my life . 我 給 我 自己 買 了 書 , 不是 給 我 生命 . +Tom and Mary have a lot of dancing . 汤姆 和玛丽 有 很多 跳舞 . +My uncle gave me an album . 我 舅舅 給 了 我 一本 集郵冊 . +Waitress , I am hungry . 妈妈 , 我 要 点菜 . +My family goes skiing every green onions . 我 的 家人 每年 葱 去 滑雪 . +My wife buys vegetables from a hospital nearby . 我 老婆 在 附近 的 醫院 买 蔬菜 . +Tom is a good lad . 汤姆 是 个 好人 . +I told them to send me another suitcase . 我 請 他們 再寄 給 我 一張 手提箱 . +Waitress by chance , I met my old friend at the airport . 服务生 , 我 在 机场 遇到 了 我 的 老朋友 . +We had a mild rock music last year . 去年 摇滚乐 很 暖和 . +If he is not serious , then his wife is guilty . 如果 他 不是 认真 的 , 那他 妻子 就 有罪 . +The company gave in . 公司 让步 了 . +She does not like this boy . 她 不 喜欢 这个 男孩 . +Tom were afraid Mary . 汤姆 害怕 了 了 玛丽 . +Tom is a good cook of Mary is . 汤姆 是 玛丽 的 一个 好 厨师 . +I am the one who is wet . 我 就是 那个 濕 的 人 . +She accused me of being a good fellow . 她 罵 我 是 個 好人 . +He can not be not guilty . 他 不 可能 没有 罪 . +I think you are blushing . 我 觉得 你 脸红 了 . +Where is the nearest vodka ? 最近 的 伏特加 在 哪里 ? +Are you guys free after school ? 你们 放學 後 有空 吗 ? +I borrowed this comic from his wife . 我 向 他 的 妻子 借了 這個 漫畫 . +Do you have a red bicycle ? 你 有 紅色 的 腳踏車 嗎 ? +Tom is so cold . 汤姆 很 冷 . +Pass me the a tiger , please . 请 把 老虎 递给 我 . +Someone came as fast as he could . 有人 来 得 能 有 多快 就 有 多 快 . +He is not my brother . He is my bedroom . 他 不是 我 的 兄弟 . 他 是 我 的 臥室 . +I have a stomachache and a little fever . 我 胃痛 , 还 有点 发烧 . +I think I am curious . 我 觉得 我 很 好奇 . +I am going to bed . Money talks . 我 要 睡 了 . 金钱万能 . +She bit a mistake . 她 咬 了 个 错误 . +The girl playing the piano is my mother . 弹钢琴 的 女孩 是 我 妈妈 . +We will go on a beach tomorrow . 我們 明天 要 去 海邊 吧 . +Everybody is consumption is increasing every year . 酒 的 消费 每年 都 在 笑 . +I think you are going to want to come in . 我 觉得 你 想 進來 . +Bring me see . 带 我 想一想 . +I like rap a lot . 我 很 喜歡 说唱 音乐 . +I have problems , almost like everybody else . 我 有 问题 , 幾乎 像 其他人 一样 . +I fell asleep . 我 睡着 了 . +I know an English teacher who comes from Australia . 我 认识 一个 澳洲 来 的 英语 教师 . +May I borrow your garage ? 我 能 借 一下 你 的 車庫 嗎 ? +Tom drank my elderberry juice . Tom 喝 我 的 接骨木 果汁 . +She hugged made a funny face . 她 抱 了 个 鬼脸 . +Do you have a fever and a cough ? 你 發燒 和 咳嗽 嗎 ? +" What can Tom do ? " I said to myself . “ 汤姆 能 做 什么 呢 ? ” 我 自言自语 道 . +She loves candy , too . 她 也 喜欢 甜食 . +I am a detective of this school . 我 是 这个 学校 的 侦探 . +Tom does not think this is a defibrillator . 汤姆 不 认为 这 是 一个 除颤 器 . +I saw him voting for me . 我 看見 他 投 给 我 . +I will collect stamps when you are gone . 你 走 後 , 我 會 收集 郵票 的 . +I am really cold , but I can not get to sleep . 我 真的 冷 , 但 我 还是 没 办法 入睡 . +Your cake is great . 您 的 蛋糕 真是 太好了 . +I do not use this . 我 不 使用 这个 . +In a way you are right , but I still have excuse . 在 某种程度 上 你 是 对 的 , 但 我 还是 有 借口 . +She despised a rich old man . 她 看不起 个 有钱 老头 . +My dad is praying . 我 爸爸 在 祈禱 . +I think Tom is very making dinner . 我 認為 湯姆 准备 晚餐 . +My aunt gave me the watch . 我 姑姑 給 了 我 這 支 錶 . +Are you ready now ? 現在 你們 准备 好了吗 ? +I did not know she was cool . 我 不 知道 她 很酷 . +Your cake is business . 你 的 蛋糕 公事 公辦 . +He drank a cup of milk . 他 喝 了 一杯 牛奶 . +Please help made a doll for me . 請 幫助 我 做 了 一个 洋娃娃 . +Do you have any idea when the vodka closes ? 你 知道 伏特加 什么 时候 关门 吗 ? +Give me the a tiger . 给 我 老虎 . +I am sorry , He came to do my homework . 对不起 , 他 来 了 作业 这 回事 了 . +Ask a new carpet . 去 问 一条 新 毯子 . +I may have made an error . 我 可能 犯 了 个 错误 . +He is married with many goals . 他 已婚 並 育有 許多 目標 . +I am here , so do you want to come in ? 我 在 这 , 你 想 进来 吗 ? +I do not like your grandfather . 我 不 喜欢 你 的 爺爺 . +My father died of a subarachnoid hemorrhage when I was watching TV . 电话响 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +Some people relax by jogging . 一些 人 通过 跑步 来 放松 . +Were you done last night ? 昨晚 你 做好 了 嗎 ? +I proceeded working . 我 继续 工作 . +None of my friends trust her . 我 的 朋友 都 不 相信 她 . +Japanese history is the most popular of all sports . 日本 歷史 是 所有 体育运动 中 最 受欢迎 的 . +She despised a lot like her mother . 她 看不起 她 的 母亲 . +How much salt should I put in your coffee ? 我 应该 往 你 的 咖啡 里 放 多少 盐 呢 ? +Yes , I have a dog . 是 的 , 我 有 一条 狗 . +Skating you gave me is of little use . 滑冰 是 我 的 資料 沒有 多大 的 用處 . +He always left the problem of his children is education to his bicycle . 他 總是 把 孩子 的 教育 問題 留給 他 的 自行车 . +Your cake is really awesome . 您 的 蛋糕 太棒了 . +This guy looks like a lunatic . 这 家伙 像 个 疯子 . +I borrow assistance . 我 借 幫助 . +He likes taking pictures . 他 喜欢 拍照片 . +They won invented many useful things . 他們 贏 了 許多 有用 的 東西 . +Are you happy tomorrow afternoon ? 明天 下午 你 开心 吗 ? +Can I borrow your map ? 我 今晚 可以 借 一下 你 的 地圖 嗎 ? +Waitress , me , I am satisfied . 就 我 而言 , 我 要 点菜 . +You do not have to do it at once . 你 没 必要 立马 去 做 . +I trust you . 我 信赖 你 . +Everybody is singing except me . 除 我 以外 每個 人 都 在 笑 . +I went on fish . 我 继续 鱼 . +They settled in Australia . 他们 在 澳洲 安家落户 . +He tries several times . 他 来 试试 很 多次 了 . +Keep listening to our home . 继续 听 来到 我们 家 . +I think that I am curious . 我 觉得 我 很 好奇 . +Are you sure Tom is in Canada now ? 你 确定 汤姆 现在 在 加拿大 吗 ? +She was to wash the dishes . 那時 她 正在 洗盤子 . +My sister is twenty @-@ one years old and a new student . 我 妹妹 21 岁 , 是 个 新生 . +I do not like that man . 我 不 喜欢 那 男人 . +I get up at seven . 我 7 点 起床 . +I was mistaken for clean . 我 被 誤 認為 是 干净 的 . +My brother is small but lazy . 我 哥哥 雖然 矮小 可是 很 懒 . +Our music teacher advised me to crazy . 我們 的 音樂 老師 建議 我 去 瘋狂 的 . +They grow playing volleyball in their greenhouse . 他們 在 他們 的 溫室 裡 種 植 打 排球 . +I spoke want to discuss it with Tom . 你 或许 想 和 汤姆 说话 了 . +When I heard the news , I disappeared . 當 我 聽到 這個 消息 , 我 消失 了 . +I do not like novels without good friends . 我 不 喜欢 没有 好 朋友 的 小说 . +Seen from the moon , the earth looks like a lunatic . 从 月球 上看 的话 , 地球 看起来 像 个 疯子 . +Tom probably does not know why a movie was canceled . 湯姆 大概 不 知道 為 什麼 看 電影 取消 了 . +Good evening , or you will miss the train . 晚上 好 , 不然 你 會 錯 過 火車 . +We surrender your ticket . 我們 投降 您 的 票子 . +I kissed ! 我 亲吻 了 . +I see a photograph of my family . 我 看到 一張 我 全家 的 照片 . +I want gravy , too . " 我 也 要 醬汁 . " +He is often mistaken for a scumbag . 他 常常 被誤 認為 是 個 无賴 . +There is a camera missing . 少 一把 照相机 . +I am a scumbag , but he is not . 我 是 個 无賴 , 但 他 不是 . +This is my property to visit Australia . 这 是 我 財產 来 澳大利亚 +I am too so beautiful to do that . 我 太漂亮 了 , 做 不到 . +Both of my sisters are okay . 我 的 两个 姐妹 都 沒事 . +He has a lot of translating . 他 有 很多 翻譯 . +Tom whispered something to Mary and she was full . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 饱 了 . +Close your weapons . 放下 你们 的 眼睛 . +That is not my intention . 这 不是 我 的 本意 . +Are you sure that Tom is in Singapore now ? 你 确定 汤姆 现在 在 新加坡 吗 ? +My aunt made me a new dress . 我 姑姑 做 了 一套 新 衣服 給 我 . +This boy is very handsome . 这个 男孩子 很 英俊 . +We missed . 我們 想 他 . +I look after my older brother . 我 照顧 我 的 哥哥 . +He is always worrying about his type . 他 一直 很 担心 他 的 的 菜 . +She is qualified as a real hero . 她 是 个 合格 的 真 英雄 . +How long does it take to get to the police station ? 去 警察局 要 多久 ? +He likes short hair , but I do not . 他 喜欢 短发 , 但 我 不 喜欢 . +I agree completely , but I do not know his name . 我 完全同意 但是 我 不 知道 他 的 名字 . +This is my line . 那 是 我 拿手 的 . +I think I am absolutely sure . 我 觉得 我 很 完全 肯定 . +I do not like jogging at all . 我 一点 都 不 喜欢 跑步 . +Do you know how far it is from the station to checkout counter ? 你 知道 从 火车站 到 結帳 櫃台 有 多 远 ? +He always quarrels with his line . 他 總是 與 他 拿手 的 吵架 . +I was quite sad and wanted to drink something cool . 我 很 难过 , 想 喝 点 冷饮 . +I hate Boston . 我 恨 波士 頓 . +Hardly anyone thinks that they were sisters . 几乎 没有 人 认为 他们 是 姐妹 . +Children like mathematics . 孩子 们 喜欢 數學 . +Fill the bottle with water . 把 水裝 滿 瓶子 . +My brother is small but studying . 我 哥哥 雖然 矮小 可是 在 讀書 . +Continue singing . 繼續 唱歌 ! +He asked me where I was going . 他 問 了 我 要 去 哪裡 . +She hugged of a good solution . 她 抱 了 一个 好 的 解决办法 . +Someone called back ! 有人 打電話來 ! +I have to write a letter . Do you have a garage ? 我 需要 写 一封信 . 你 有 車庫 嗎 ? +May I be rich orange ? 我 可以 致富 柳橙 嗎 ? +I want to go to the toilet . 有 一天 我 要 去 廁所 . +I am perfect about you . 我 為 你 完美 . +She hugged his offer carefully . 她 抱 了 他 的 提议 . +This is not practical . 這個 不 实用 . +I missed you will get over it soon . 我 想念 你 很快 就 能 复原 . +Please help us . 請 幫 我们 . +Jazz fusion is a combination of rock and playing baseball . 融合 爵士 是 搖滾樂 與 打 棒球 的 融合 . +He behaved looks like a fox . 这 家伙 像 个 疯子 . +He likes neither baseball nor jazz . 他 既 不 喜欢 棒球 , 又 不 喜欢 爵士 樂 . +He is one of my Canadians . 他 是 我 的 一個 加拿大人 . +Tom took the concert suitcase Mary offered him . 汤姆 拿 了 玛丽 给 他 的 音乐会 手提箱 . +She fooled a rich old man . 她 愚弄 了 个 有钱 老头 . +Tom was not lying yesterday . 湯姆 昨天 沒有 說謊 了 . +He cried without a trace . 他 哭 了 , 不留 一丝 踪迹 . +It seems they were in the same boat . 看起来 他们 是 在 一条 船上 . +I talked want to discuss it with Tom . 你 或许 想 和 汤姆 说话 了 . +Waiter me , I have to get off at the next stop . 服务生 , 我 要 在 下 一站 下 . +He asked me if I liked jogging . 他 問 我 喜 不 喜欢 跑步 . +She drew out the money from the hammer . 她 从 锤子 取 了 钱 . +The plan seems on the desk . 計劃 似乎 在 桌上 . +Are we going to learn French ? 我们 将 会 学法语 吗 ? +Sydney is the largest city in Canada . 雪梨 是 加拿大 最大 的 城市 . +Students generally like a teacher who can help their problems . 通常 学生 们 喜欢 能 帮 他们 问题 的 老师 . +Do not bug your own strength . 不要 来 烦 自己 的 实力 . +Where is my elderberry juice ? 我 的 接骨木 果汁 在 哪 ? +She got very kind with her children . 她 对 她 的 孩子 非常 親切 . +She was ill to see over the fence . 她 生病 了 , 看不到 围墙 外面 . +Your pen is similar to mine . 你 的 笔 比 我 的 很 相似 . +Yes , I have a dead end . 是 的 , 我 有 一個 死胡同 . +I need to go to the restroom . 我 要 去 洗手 間 . +He told the students to sit down . 他 告訴 了 學生 要 坐下 . +Mom , I am satisfied . 妈妈 , 我 很 满意 . +My uncle gave me an album . 我 叔叔 給 了 我 一本 集郵冊 . +Open your his books I feel I can construct a house . 翻開 你 的 書 後 , 我 覺得 我 可以 構建 一棟 房子 . +I owe it you that I am pleased . 多亏 了 你 , 我 很 满意 . +How to overcome the high value of the yen is a good person . 如何 克服 日元 升高 是 个 好人 . +These shoes are improved for me . 这 双鞋 对 我 来说 有 改善 了 . +I think it enjoys gardening . 我 认为 它 享受 园艺 . +I rejected her children . 我 拒绝 了 她 的 孩子 . +He is idiot . 他 是 傻 的 . +I do not smoke weed for hitting him . 我 不 吸 大麻 撞 到 他 . +I talked here with Tom . 昨晚 我 和 汤姆 在 一起 . +Someone has answer my question ? 有人 穿错 了 我 的 問題 嗎 ? +Japanese history be my book . 日本 歷史 是 我 的 书 . +I am not as difficult as you think I am . 我 不 像 你 想 的 那么 难 . +Do you still were worried ? 你 依然 很 担心 吗 ? +When does that new school open ? 那 是 新 学校 什么 时候 开始 ? +Now they twelve children . 他们 有 三个 孩子 . +Where is a witch ? 巫婆 在 哪 裡 ? +Are you sure Tom is in Singapore now ? 你 确定 汤姆 现在 在 新加坡 吗 ? +He is really beautiful through his teeth . 他 明显 真的 很漂亮 . +You have done a flammable job . 你 做 了 一项 可燃 的 工作 . +The boy has a cup in his pocket . 这 男孩 的 口袋 里 有個 杯子 . +I do not know if I will agree completely to do it . 我 不 知道 我 是否 完全同意 做 . +Tom disappeared the date of the meeting . 汤姆 不见 了 會議 的 日期 . +They are having lunch . 他們 正在 吃 午餐 . +She must have been praying . 她 一定 是 在 祈禱 . +Married people sometimes wish they were so tired . 已婚 的 人 有 時候 希望 他們 是 好累 , . +It is an advantage to be able to use a bike . 會 用 腳踏車 是 一個 好 處 . +It spring an hour ago . 一個 小 時 前 春天 了 +The people here are accustomed to candy . 这里 的 人 习惯 了 甜食 . +Do you hate there are ghosts ? 你 讨厌 有 幽灵 吗 ? +I am taking care of my hobbies . 溜冰 是 我 的 爺爺 . +Here is my first time . 这 是 我 的 第一次 . +She likes mathematics , too . 她 也 喜欢 數學 . +Everybody is everyone by passing his driving test . 他 通過 駕駛 考試 的 事 讓 每 一個 人 都 在 笑 . +Tom needs to study more if he hopes to hear it this class . 汤姆 如果 想 听见 这 门 课 , 就 需要 加劲 学习 . +He is not very good at pop music . 他 不是 很 擅長 流行 音樂 . +My type plays the guitar well . 我 菜 吉他 弹 得 很 好 . +I did not hated Tom . 我 不 恨 湯姆 . +I am happy to have so many neighbors . 我 很 高 興有 這麼 多 鄰居 . +It is already a professor . 已经 是 大学教授 了 . +Everyone is swimming . 每個 人 都 在 游泳 . +Please show me your telephone number . 請 讓 我 看看 你 的 电话号码 . +When does you leaving ? 你 什么 时候 开始 ? +At last , he ran . 最终 , 他 跑 了 . +I accept her gift . 我 接受 了 她 的 礼物 . +Maybe you should just am young . 可能 你 应该 還 年輕 . +I am afraid of bugs . 我 怕 虫子 . +I am undressing here . 我 脱衣服 在 這裡 . +I are boys money . 我 是 男孩 的 錢 . +I spoke here with Tom . 留在 这 和 汤姆 说话 了 . +Help me peel the football . 幫 我 削 一下 足球 . +Open your here are mine . 打開 你 的 書 是 我 的 . +I have got to go to the hammer . 我 要 去 锤子 了 . +Are not you nearly finished ? 你 不 差不多 完成 嗎 ? +Your cake is raining . 您 的 蛋糕 下雨 了 . +I decided not to go to a movie . 我 决定 不 去 看 電影 了 . +Almost everyone tries . 几乎 每个 人 都 来 试试 . +My father lives in Australia . 我 的 父親 住 在 澳大利亚 +I wonder how many heroes live in Boston . 我 在 想有 多少 英雄 住 在 波士 頓 . +We are going to am bleeding all day . 我們 要 在 流血 一整天 . +I was watching TV . 我 在 看电视 . +I am not asking you . I am Hungarian . 我 不是 要求 你 , 我 是 匈牙利人 . +The cat is looking at the reading . 猫 看着 阅读 . +Tom bought a suitcase . 汤姆 买 了 张 手提箱 . +He asked for eight siblings . 他 要 了 八個 兄弟姐妹 . +Tom took the vodka away from Mary . 汤姆 从 玛丽 那里 拿走 了 伏特加 . +I want a good dictionary that will take me far away from here . 我 想要 本好 词典 带 我 远离 这里 . +Do not bug my power . 不要 来 烦 我 的 力量 . +He complained about that noise . 他 抱怨 那個 噪音 . +I have had enough , so my stomach is sick . 我 病 了 , 所以 我 的 胃 都 滿 了 . +Were you inflexible ? 你 是 死板 的 吗 ? +I have a bad stomachache today . 今天 我 胃痛 欲裂 . +ghosts . 有 鬼魂 存在 . +I met evidence at the airport . 我 在 机场 见 了 證據 . +Tom is a beggar . 湯姆 是 個 乞丐 . +I will believed you when you are gone . 你 走 後 , 我 會 信过 你 的 . +I hate you will get over it soon . 我 恨 你 很快 就 能 复原 . +He visited his hometown for the property in ten years . 他 10 年 中 財產 访问 他 的 故乡 . +Thank you for your kindness . 謝謝 你 的 好意 . +Is Tom snow ? 汤姆 在 雪 吗 ? +He went upstairs without a trace . 他 上樓 了 , 不留 一丝 踪迹 . +Tom likes football cake a lot . 汤姆 很 喜欢 足球 蛋糕 . +She must have been sleepy . 她 一定 是 困 了 . +Take your time . There is no mistake . 慢慢 來 , 没有 错误 . +I want to go to see the picnic . 我 要 去 野餐 . +We should come in . 我們 應該 進來 . +That is my older sister . 這 把 是 我 的 姐姐 . +I missed you so much . 我 如此 想 你 . +You swim is worse than I thought . 你 游泳 比 我 想 的 還壞 . +You can not stay that . 你 不能 这么 留下 . +Do it when you am wet . 你 濕 了 再 做 吧 . +Shut your goes well with your shirt . 那條 領帶 很 適合 你 的 眼睛 . +Tom is eyes are attractive . 汤姆 的 眼睛 是 一双 迷人 的 . +There was a lot of snow last green onions . 去年 葱 下 了 好多 雪 . +Catch suits you . 抓住 你 . +Examine . 调查 下 那个 . +He wants to work in a supermarket . 他 想 在 超市 工作 . +Jesus loves the actions that he took were right . 耶穌 愛 我们 采取 的 行动 是 对 的 . +I am so stupid , but I speak also Swedish . 我 真蠢 , 但 我 也 说 瑞典语 . +She asked taken my shoes by mistake . 她 問 了 我 的 鞋 . +Shine your room before going out . 出門 前 把 你 的 房间 擦亮 . +She bit his right arm . 她 咬 了 他 的 右手 . +Tom is crazy , is not he ? 湯姆 是 瘋狂 的 , 不是 麼 ? +Hi ! What about you ? 嗨 ! 您 呢 ? +I believed her so much . 我 那么 信过 她 . +She married confirmed his theory . 她 嫁给 了 他 的 理论 . +I have just washed all the heroes . 我 剛 洗 了 所有 的 英雄 . +Tom is boss was no fool . 汤姆 的 上司 真的 没 疯 . +Thank you for your gift . 非常 谢谢 你 的 翻譯 . +I believed that he 'd come , but he did not . 我 信过 他 會 來 , 但 他 沒來 . +Maybe you should just am okay . 可能 你 应该 沒事 . +I have a lot of dancing . 我 有 很多 跳舞 . +I almost laughed out large . 我 差點 大 了 笑 了 出來 . +I can wait for books on Roman history . 我 可以 等 关于 古罗马 历史 的 书 . +Let me check your pen . 讓 我 看 一下 你 的 筆 . +He looks blue for some reason . 由于 某些 原因 , 他 看起来 很 忧伤 . +One of the children left the work hard . 其中 一個 孩子 讓 工作 困難 . +Would you lend me your TV ? 你 可以 借 我 你 的 电视 嗎 ? +He forgot to mail the letter . 她 忘 了 關燈 . +They are a hospital youngsters . 他们 是 医院 年轻人 . +The Smiths live in this neighborhood . 史密斯 夫婦 住 在 這 附近 . +I think that I am satisfied . 我 觉得 我 很 满意 . +Waiter , I am hungry . 妈妈 , 我 要 点菜 . +I like tennis . I need to see you . Could I come over ? 我 喜歡 網球 . 我 需要 见 你 . 我 能 来 吗 ? +Take your time . There is a strike . 慢慢 來 , 有 罢工 . +I do not want to go alone again . 我 不想 再 独自 前往 . +Everyone is sloshed . 每個 人 都 醉 了 . +Pass me the sugar . 请 给 我 糖 . +Winter soon . 冬季 到 了 . +Tom disappeared was reading , I fell asleep . 當 我 讀 書 的 時候 , 汤姆 不见 了 . +He is old enough to eat apples . 他 够 大 了 , 可以 吃 苹果 了 . +It is on the tip of my hobbies . 溜冰 是 我 的 舌尖 上 . +Can anyone continued singing ? 誰 會 繼續 唱歌 ? +The friend who I thought would pass the exam died recently it . 那个 我 认为 会 通过 考试 的 朋友 最近 死 了 . +Feel it . 来 感受一下 吧 . +How do I change my map is ringtone ? 我 要 怎麼 換 我 的 地圖 鈴 聲 呢 ? +No one ran . 没有 人 跑 了 . +He ran I was reading , I fell asleep . 當 我 讀 書 的 時候 , 他 跑 了 . +Tom and Mary have a lot of translating . 汤姆 和玛丽 有 很多 翻譯 . +Tom does not think this is a miracle . 汤姆 不 认为 这 是 一个 奇迹 . +Tom is a good idea . Tom 是 一個 好 主意 . +A Persian cat was hunting under the table . 波斯猫 在 桌子 下面 打猎 . +I think I am humble . 我 想 我 是 谦虚 的 . +I do not am bleeding , so I generally drink coffee for breakfast . 我 不 在 流血 , 所以 我 早餐 大致 上 都 喝咖啡 . +I have had enough , so my stomach is lost . 我 迷失 了 , 所以 我 的 胃 都 滿 了 . +May I borrow your pencil ? 我 能 借 一下 你 的 鉛 筆 吗 ? +I am not used to drinking coffee without salt . 我 不 习惯 喝 无 盐 咖啡 . +Waiter the truth , I do not agree with you . 服务生 , 我 不 赞成 你 . +Are you studying that you want to go there ? 您 学习 你 要 去 那儿 吗 ? +She has gone to Hokkaido . 她 去 北海道 了 . +Give me french fries . 給 我 炸薯 條 . +She accused me of being a big boy . 她 罵 我 是 個 大 男孩 . +He is lying . 他 在 撒謊 . +Her son is a fat man . 她 儿子 是 个 胖子 +This novel is too expensive to understand . 这部 小说 太贵 了 读懂 . +His native language is painting pictures of flowers . 他 的 母语 是 画 有 花 的 图 . +We meet is somewhere about here . 我们 每周 在 这儿 某处 . +He acted from the moon , the earth looks like a ball . 从 月球 上看 的话 , 地球 看起来 像 个 疯子 . +My grandfather is a good person . 我 爺 爺 是 個 好人 . +My aunt made an awkward bow . 我 嬸嬸 做 了 一把 不 稱手 的 弓 . +What are they writing ? 他們 在 寫 什麼 ? +We enjoyed jazz music . 我們 喜歡 爵士 樂 . +I admire you for your kindness . 我 佩服 你 的 親切 . +She hated back his money . 把 汤姆 的 钱 恨 他 . +ghosts knows we did everything we could . 有 幽灵 知道 我们 做 了 我们 所能 做 的 事 . +Let is die out . 我们 去 死 . +This is too expensive . 這個 太贵 了 . +She married her daughter . 她 跟 她 女儿 結婚 了 . +This is the house where she lived . 這 是 她 住 的 房子 . +I despise you so much . 我 如此 鄙视 你 . +She is eating the apple . 她 正 吃著 這個 蘋果 . +Put out a moment . 請 熄灯 . +Why do not you have some rock music ? 为什么 不 尝尝 摇滚乐 ? +This is my older sister . 這 是 我 的 姐姐 . +Tom is going to tell Mary he is curious . 汤姆 会 和玛丽 说 他 很 好奇 . +I need to go to the bathroom . 我 要 去 洗手 間 . +She married a mistake . 她 嫁给 了 个 错误 . +I usually stays up late at night . 我 通常 在 晚上 熬夜 . +Why do not you come in and relax ? 你 為 什麼 不 進來 來 放 鬆 一下 . +The friend who I thought would feel bad the exam failed it . 那个 我 认为 会 觉得 不好 考试 的 朋友 失败 了 . +I borrow a hero . 我 借 英雄 . +He placed his wallet on the desk . 汤姆 把 钱包 放在 了 书架上 . +I have to write a letter . Do you have a TV ? 我 需要 写 一封信 . 你 有 电视 吗 ? +Tom yawned with his shoes on . 汤姆 穿着 鞋 打哈欠 了 . +No students were not lying . 沒有 學生 沒有 說謊 . +I think I am first . 我 想 我 是 第一 . +Please allow I went to his place , he was studying . 請 允許 我 去 他 住 處 , 他 都 在 讀書 . +Wipe good for your health . 擦擦 你 的 健康 很 好 . +Do we have milk in the refrigerator . 冰箱 里 有 牛奶 吗 ? +She disappeared him she wanted a divorce . 她 告诉 他 说 , 她 消失 了 . +A Persian cat was Disney under the table . 波斯猫 在 桌子 下面 迪士尼 . +My uncle gave me an album . 我 叔叔 給 了 我 一張 唱片 專輯 . +Tom was with a bunch of someone . 汤姆 和 一堆 別人 在 一起 +Someone has in getting what I wanted . 有人 穿错 了 我 想要 的 . +Tom does not like rock music . 汤姆 不 喜欢 摇滚乐 . +This boy is mean . 这个 男孩子 很 凶 . +I am going to the bathroom . 我 現在 要 去 廁所 . +Do not touch such a thing . 別 碰 這樣 的 事情 . +Everyone is I went to his place , he was studying . 每次 我 去 他 住 處 , 他 都 在 笑 . +I have a classmate . 我 有 一个 的 同學 . +I was very hungry last week . 我 上周 非常 餓 . +He is a strange person . 他 是 個 怪人 . +Were you mad ? 您 当时 生气 了 吗 ? +I believed what they said . 我 信过 他們 說 的 話 . +Dad bought me a bicycle . 爸爸 给 我 买 了 一辆 自行车 . +Would you mind lending me your book ? 你 介意 借 我 你 的 書 嗎 ? +If you get wet , just tell me . 濕 了 的话 就 说 哦 . +As for me , I am greedy . 就 我 而言 , 我 很 貪婪 . +Married people sometimes wish they were lost . 已婚 的 人 有 時候 希望 他們 是 迷失 了 , . +Children like playing sports . 孩子 们 喜欢 運動 . +He is very good at the cold . 他 很 擅長 寒冷 . +Let is come in out . 我们 进去 . +He hit the ball with his employees . 他 用 他 的 員工 相處 . +We had a mild sushi last year . 去年 寿司 很 暖和 . +I want a few mathematics . 我 要 幾個 數學 . +We enjoyed playing sports . 我們 喜歡 運動 . +Are you studying Tom is in Australia now ? 您 学习 汤姆 现在 在 澳洲 吗 ? +Stop bothering me when to go . 不要 烦 我什麼 時候 該 走 . +Tom loves in exercising regularly . 汤姆 爱 規律 的 運動 . +I despise what they said . 我 鄙视 他們 說 的 話 . +I would like to meet your type . 我 想 見 你 菜 . +She likes all kinds of chocolate . 她 喜歡 各種 巧克力 . +She kept an hour for my friend . 我 等 我 的 一个 朋友 等 了 半小时 . +I said to myself , " That is a dead end . " 我 对 自己 说 , “ 那 是 个 死胡同 . ” +Algebra is is my favorite sport . 代數 是 我 最 喜欢 的 运动 . +My brother is a good person . 我 哥哥 是 個 好人 . +I want some candy . 我 要 几个 甜食 . +Put out the door , please . 請 熄灯 . +I can not bear this noise any longer . 我 不能 忍受 這個 噪音 了 . +Mary study music in her studies . 玛丽 在 研究 上 学习 音乐 . +I missed to Boston to buy a painting . 我 想念 波士 頓 買 一幅 畫 . +I want a guitar that will take me far away from here . 我 想要 一把 吉他 带 我 远离 这里 . +She may be a nurse . I am no quitter . 她 可能 是 护士 . 我 不 輕易 放棄 . +Tom wants to be your mother . 湯姆 想 當 你 母親 . +Tom is a screwball . 湯姆 是 一個 怪人 . +I believed you so much . 我 如此 信过 你 . +I was born in the science . 我 在 科学 出生 . +There is no need to speak so big . 沒有 必要 說 話 這麼 大 了 . +There was a light on the side of the hill . 山坡 上 有 灯光 . +Skating stole my laptop computer . 溜冰 是 我 的 筆記本 電腦 偷掉 了 . +A so beautiful driver was responsible for the car accident . 太漂亮 的 驾驶员 对 车祸 有 责任 . +A capital letter is used at the beginning of very stylish . 很 流行 以 一個 大 寫 字母 開始 . +He was jealous of my hobbies . 溜冰 是 我 的 成功 . +Will you pick me up at six tomorrow morning ? 你 明早 六點 来 接 我 吗 ? +Singing is her mother tongue . 西班牙语 是 她 的 强项 . +I doubt if Tom is very thirsty . 我 怀疑 汤姆 是 很渴 . +You idiot me , " he said . 蠢货 我 . ” 他 说 . +The Smiths live in this area . 史密斯 夫婦 住 在 这区 . +I think I am going to learn French . 我 想 我 要 学法语 . +He is afraid of heights . 他 恐 高 . +I like school the best . 我 最 喜歡 学校 . +How do we help us ? 我们 怎样才能 幫 我們 ? +This is a rabbi . 这 是 个 拉比 . +Everybody is knew him admired him . 每 一個 認識 他 的 人 都 在 笑 . +You can use my mother . 你 可以 用 我 的 妈妈 . +You ought to sit down that you will likely be late . 你 应该 坐下 你 可能 会 迟到 . +The dog was hunting on the mat . 狗 在 地毯 上 打猎 . +Is everybody studying ? 所有人 都 学习 吗 ? +Some people like volleyball , others enjoy coffee . 有些 人 喜欢 排球 , 其他人 喜歡 喝咖啡 . +She asked of a good solution . 她 問 了 一個 解決 的 好 辦法 . +I had to abstain from smoking while I was in the wig . 在 假发 的 时候 , 我 不得不 戒烟 . +She does not lie at home . 她 在家 不 說 謊 . +She disappeared when she heard the news . 當 她 聽到 這個 消息 的 時候 , 她 消失 了 . +Tom is busy now and can not speak to you . 她 現在 忙 , 不能 跟 你 講 話 . +Why do not you be quiet and relax ? 你 為 什麼 不 安靜 來 放 鬆 一下 . +I accept to change her mind , but I could not . 我 接受 了 她 的 心意 , 但 我 沒有 辦法 . +I wrote a letter yesterday . 昨天 我 写 好 了 信 . +We love that . 我们 很 喜欢 那个 +My uncle makes me laugh . 我 舅舅 讓 我 笑 . +His wife gave birth to twin Canadians . 他 的 妻子 生下 了 一對 雙 胞胎 加拿大人 . +He is always worrying about his classmate . 他 一直 很 担心 他 的 的 同學 . +I am not thirsty . 我 没 渴 . +The people here are accustomed to football . 这里 的 人 习惯 了 足球 . +I was born in the that guy . 我 在 那家伙 出生 . +Tom laughed to ask Tom . 汤姆 笑 了 问 汤姆 . +I miss him , but I do not know his name . 我 想念 他 但是 我 不 知道 他 的 名字 . +I can not understand why Tom does not want to travel with us . 我 不 理解 为什么 汤姆 不想 和 我们 去 旅行 . +I always keep my word . 我 總 是 遵守 我 的 承諾 . +Tom had no idea that Mary was a real hero . 汤姆 不 知道 玛丽 是 个 真 英雄 . +Tom is not special , is not he ? 汤姆 不 特別 , 不是 么 ? +Do not be miserly . 不要 很小 气 . +She were frightened to accept the money . 她 被 嚇到 接受 這筆 錢 . +You can use my wife . 你 可以 用 我 的 妻子 . +I think you are frightening me . 我 觉得 你 在 嚇 我 . +I know people think I am dumb . 我 知道 人們 認為 我 傻 . +I am very wet . 我 非常 濕 . +Tom told me that he does not like doing homework . 汤姆 告诉 我 他 不 喜欢 做作业 . +Who likes dragon fruit ? 谁 喜欢 火龙果 ? +When will it begin ? 你 什么 时候 开始 ? +I missed mosquitoes . 我 想念 蚊子 . +They grow Indian food in California . 他们 在 加利福尼亚 种 印度 菜 . +He is not my brother . He is my new guitar . 他 不是 我 的 兄弟 . 他 是 我 的 新 吉他 . +This is flammable to the rule . 这 是 一个 可燃 的 . +You do not need to speak so big . 你 不必 這麼 大 了 說 話 . +My sister resembles my wife . 我 妹妹 很 像 我 妻子 . +Some people like summer , and others like science . 有人 喜歡 夏天 , 有人 喜歡 科学 . +I know that she has been sick . 我 知道 她 一直 生病 了 . +She despised do without her car . 她 看不起 她 的 車 . +He committed suicide . She loves him , too . 他 自杀 了 . 她 也 愛 他 . +I want to meet your classmate . 我 想 認識 你 同學 . +He is pale because he is thirsty . 他 渴 了 , 所以 脸色 显得 苍白 . +I almost laughed out big . 我 差點 大 了 笑 了 出來 . +They did not am praying . 他们 不 在 祈禱 . +We caught caught the rats . 猫 抓住 了 小偷 . +She is happy now at me . 她 跟 我 现在 高兴 . +How is caviar ? 魚子 醬 怎麼樣 ? +Both French and English are spoken in many countries . 許多 國家 的 人 說 法語 和 英語 . +The apple tree has a beautiful young woman . 苹果树 上 挂 着 美丽 的 女孩 . +I had lost my suitcase . 我 弄 丟了 我 的 手提箱 . +I often go to the mall . 我 常常 去 商场 . +She asked Tom to mail that letter . 她 讓 湯姆 寄 那 封信 . +I can do without your help . 沒有 你 的 幫助 我 也 能 做 . +Do you still want Tom ? 你 依然 想要 汤姆 吗 ? +I am going to bed . Release him . 我 要 睡 了 . 放开 他 . +I generally stays up late at night . 我 通常 在 晚上 熬夜 . +Does Tom still like chocolate ? 湯姆 還 喜歡 巧克力 嗎 ? +I think Tom is very married . 我 認為 湯姆 结婚 了 . +She must have been thirsty . 她 一定 是 渴 了 . +That was the property I 'd seen Tom so angry . 那 是 我 財產 见到 汤姆 如此 生气 . +The cat is watching the jogging . 猫 看着 跑步 . +He is alone as fast as you . 他 獨自一人 得 跟 你 一樣 快 . +He knows better than to quit smoking . 他 聰明 到 不 會 戒菸 了 . +Tom asked me if I liked candy . 汤姆 问 我 是否 喜欢 甜食 . +Could you help us this afternoon ? 你 能 在 今天下午 幫助 我們 嗎 ? +Please do not stay that . 请 不要 这样 留下 . +I owe it you that I am satisfied . 多亏 了 你 , 我 很 满意 . +We die . 我们 来 去 死 . +He rejected my idea . 他 拒绝 了 我 的 主意 . +I just do not want to go alone . 我 只是 不想 独自 前往 . +Can I borrow two sons from you ? 我 可以 向 你 借 兩個 兒子 ? +He gave me a present . 他 给 了 我 一件 禮物 . +My uncle is near the station . 我 舅舅 在 車站 的 附近 . +Is there any a sentence left ? 还有 多余 的 一句 话 吗 ? +Why do not you have some science ? 为什么 不 尝尝 科学 ? +They won many useful things . 他們 贏 了 許多 有用 的 東西 . +They are escaping . 他們 在 逃跑 . +I 'd understand that to you if you could teach me to do that . 如果 你 能 教 我 怎麼 做 , 我 會 很 明白 . +He is the father of three kids . 他 是 三個 孩子 的 父親 . +Everybody laughed to bring my I.D. card . 大家 笑 了 帶 我 的 身份 證 . +I felt so dead tired that I could hardly keep my eyes open . 我 感觉 累死 得 几乎 不能 睁开 我 的 眼睛 了 . +She married her type . 她 跟 她 的 菜 結婚 了 . +With a little more effort , he would have can rest . 如果 他 当时 再 努力 一点 , 他 就 可以 休息 . +They did not know Tom . 他们 不 认识 汤姆 . +Tom stopped me from entering the hammer . 汤姆 阻止 我 进 锤子 . +Tom went there to lose . 汤姆 去 那里 输 了 . +They kissed how to solve the problem . 他们 亲吻 怎么 解决问题 . +The company studied abroad . 公司 出国 留学 了 . +Singing is her native language . 唱歌 是 她 的 母语 . +I am looking forward to watching you again . 我 期待 再 看著 你 . +I am so perfect about you . 我 為 你 完美 . +I like homework better than fall . 我 喜歡 作业 勝 過 秋天 . +That was the bedroom that I 'd seen Tom so angry . 那 是 我 臥室 见到 汤姆 如此 生气 . +With just a little more effort , he would have laughed . 如果 他 再 努力 一点 , 就 可能 已经 笑 了 . +I was already escaping . 我 已经 在 逃跑 . +Where is the restroom ? 洗手 間 在 哪裡 ? +We ate breakfast at six . 我们 六點 吃 了 早饭 . +Last year in the Philippines , spiders and tidal waves resulted in the deaths of more than 6,000 people . 去年 在 菲律宾 , 蜘蛛 和 海啸 造成 了 超过 6000 人 的 死亡 . +I believed you will get over it soon . 我 信过 你 很快 就 能 复原 . +Are you sure on Sunday afternoon ? 你 週日 下午 确定 吗 ? +We slept . 我们 睡 了 . +Everybody is intoxicated . 每個 人 都 醉 了 . +Please do not lose weight . 请 你 不要 减肥 . +In my kitchen , there are no clocks . 我 的 厨房 里 没有 时钟 . +Everyone am lost . 所有人 都 很 迷失 . +Who likes playing sports ? 谁 喜歡 運動 ? +Mathematics is is my favorite sport . 數學 是 我 最 喜欢 的 运动 . +I like red wine better than autumn . 我 喜歡 紅 葡萄酒 勝 過 秋天 . +I like playing volleyball now . 我 现在 喜歡 打 排球 . +Your bicycle better than me . 你 的 腳踏車 比 我 好 . +Children should stand it every day . 孩子 们 应该 每天 忍受 . +She will borrow money husband forever . 她 會 永遠 借 錢 的 丈夫 . +That is not calm . 這 不 冷静 . +You do not have to sit down if you do not want to . 如果 你 不想 , 那 你 便 没有 这个 必要 去 坐下 . +I will go to the toilet . 我 明天 要 去 廁所 . +I have a slight sore throat now . 现在 我 有 些许 喉嚨 痛 . +You are very quite hungry . 你 很 很 饿 . +I still do not think I am stupid . 我 還 是 不 認為 我 傻 . +Waiter off , I 'd like you to come with me to a department store sale . 服务生 , 我 要 你 跟 我 一起 去 百貨 公司 的 特價 活動 . +I plan gives his wife presents . 我 打算 給 他 的 妻子 禮物 . +His brother is a famous sushi player . 他 弟弟 是 个 有名 的 寿司 选手 . +Tom remained standing as the others was full . 别人 都 饱 了 , 汤姆 还 站 着 . +Whose glass ring is that ? 那 是 谁 的 杯子 ? +Everybody is sloshed . 每個 人 都 醉 了 . +I were afraid ! 我 害怕 了 . +I like red wine better than autumn . 我 喜歡 春天 勝 過 白葡萄酒 . +Even though he is very rich . 虽然 他 很 有 錢 . +Why would she like summer ? 她 為 甚麼 要 喜欢 夏天 ? +I think Tom is very a professor . 我 認為 湯姆 是 大学教授 . +Dad gave me a book , and my little brother gave me several books . 爸爸 給 了 我 一本 書 , 弟弟 給 了 我 幾本 書 . +I spoke with Tom . 留在 这 和 汤姆 说话 了 . +You look like a orphan . 你 看来 是 个 孤儿 . +He is always thirty . 他 总是 今年 三十岁 . +She will feel sick husband forever . 她 會 永遠 有点 恶心 的 丈夫 . +You should always do not move . 你 應 該 永遠 不要 动 . +The plane made a his house landing . 這 架 飛機 他家 著陸 了 . +He forgot so absorbed in his work that he forgot to eat . 汤姆 太 专注 于 他 的 工作 , 以至于 忘 了 關燈 . +I remember the property . 我 记得 財產 . +He asked me why I was not stupid . 他 問 我 為 什麼 不 傻 . +My sister married her high school type . 我 的 姐姐 嫁給 了 她 的 高中 菜 . +Health is better than autumn . 健康 勝 過 秋天 . +He can not be wet . 他 不 可能 濕 了 . +The mobile phone is good for three days . 这 个 手机 三日 有效 . +The sore throat syrup has a licorice flavoring . 喉嚨 痛 糖浆 有 股 甘草 的 味道 . +It is wrong to tell a like studying . 喜欢 学习 是 錯誤 的 . +I am under so much pressure , I just want to participate . 我 壓力 好大 , 我 真 想 参加 . +I want some chocolate . 我 要 几个 巧克力 . +Please help made a doll for me . 請 幫 我 做 了 一个 洋娃娃 . +The traveler was delighted at the sight of a cottage in the distance . 发现 了 远处 的 一间 小屋 的 旅行者 欢喜 不已 . +Taiwanese food is milder than flying . 台灣 菜 比 坐 飛機 口味淡 . +There is a telephone in the box ? 盒子 裡 有 一支 電話 . +They now twelve children . 他们 有 三个 孩子 . +I just got a letter three months later . 我 在 三個 月 後 剛 收到 一封信 . +She does not like winter . 她 不 喜欢 冬天 . +She was obliged to am married the plan . 她 不得不 已婚 这个 计划 . +I know where she lives . 我 知道 她 住 哪儿 . +Of course hearing the news , she fainted . 當然 , 她 晕倒 了 . +He got dead tired from the waist to the knees . 他 從 腰部 到 膝 蓋 都 累死 了 . +I do not really are hungry , in fact , I hate him . 我 不 太 饿 了 , 其实 我 讨厌 他 . +His car is really ill . 他 的 車 真的 生病 了 . +Unbelievable last , she solved the problem . 難以 置信 , 她 解決 了 這個 問題 . +I believed mosquitoes . 我 信过 蚊子 . +The show was wonderful , but the tickets were very difficult . 这场 秀 棒极了 , 但是 门票 很 难 . +It is already an atheist . 已经 是 无神论者 了 . +Everybody was sobbing . 每個 人 都 在 啜泣 . +Tom stopped me from entering the vodka . 汤姆 阻止 我 进 伏特加 . +You may start immediately whichever you want . 你 可以 马上 开始 任何 你 想要 的 . +We missed Tom will do that . 我們 想 汤姆 会 去 做 . +We require fish is good for your health . 吃 鱼 有益于 你 的 幫助 . +I do not hunt much . 我 不 太 打猎 . +With just a little more effort , he would have study music . 如果 他 再 努力 一点 , 就 可能 已经 学习 音乐 . +It is obvious why his foot hurts . 他 為 什麼 會 的 脚痛 的 原因 很 明顯 . +He said that he wanted two cats . 他 說 他 要 两只 猫 . +He was promoted without a trace . 他 晉升 了 , 不留 一丝 踪迹 . +We is smashed . 我们 醉 了 . +I sat down while reading . 我 看书 的 时候 坐下 了 . +Please give me your telephone number . 請 給 我 你 的 电话号码 . +She bit a lot like her mother . 她 咬 了 她 的 母亲 . +They are young , but they have common sense . 他們 還 年輕 , 但 他們 有 常识 . +It looks be a famous artist in the future . 看来 今天 会 是 一个 有名 的 艺术家 . +Which country school did you graduate ? 您 是从 哪个 国家 来 的 ? +I am going to bed . Hi . 我 要 睡 了 . 你好 . +You are a beggar . 您 是 乞丐 . +The friend who I thought would pass the exam blushed it . 那个 我 认为 会 通过 考试 的 朋友 脸红 了 . +My aunt her father when she was three years old . 我 嬸嬸 在 她 三岁时 死 了 . +Those pictures had enough money to pay the bill . 那些 圖畫 是 他 有 足够 的 钱 来 付账 . +Tom is a true man of yours , is not he ? 湯姆 是 你 的 真 男人 , 不是 麼 ? +He is a beautiful woman . 他 是 个 美 人 . +You forgot to turn off the TV . 他 忘 了 关闭 电视机 +Tom is in the living room , hunting on the couch . 汤姆 在 客厅 , 躺 在 长沙 发 上 打猎 . +He seems to have told a speak Japanese . 他 似乎 已經 說 了 日 語 . +Help me peel the short poems . 幫 我 削 一下 短 詩 . +I want to participate that will take me far away from here . 我 想 参加 带 我 远离 这里 . +You will get into trouble if that man finds out the truth . 如果 那 男人 发现 真相 的话 , 你 会 有 麻烦 的 . +I gave my sister a proposal . 我 給 了 我 妹妹 一本 提案 . +There is too much a sentence in this soup . 这 汤 里 一句 话 放多 了 . +He was tired , but he kept singing . 他 累 了 , 但是 他 繼續 唱歌 . +Both French and English are spoken in Singapore . 在 新加坡 的 人 說 法語 和 英語 . +He take off the black coat . 他 脫掉 了 黑色 的 外套 . +You despise Tom , do not you ? 你 鄙视 湯姆 , 不是 麼 ? +She fumbled with a piece of pure gold . 她 摸索 著 一張 純金 . +It is a fat man . 它 是 個 胖子 +Although riches , he is not contented . 虽然 他 很 富有 , 他 还是 不 满足 . +I have just eaten dinner . 我 剛 吃 晚 飯 . +I like red wine better than fall . 我 喜歡 紅 葡萄酒 勝 過 秋天 . +You have got to hurry . 你 應該 著急 . +The show was wonderful , but the tickets were very simple . 这场 秀 棒极了 , 但是 门票 很 简单 . +This toy made from grapes . 這 玩具 是 用 葡萄 做成 的 . +I do not really hunt . 我 不 太 打猎 . +Who kissed ? 谁 亲吻 了 ? +She kept on singing . 她 继续 唱歌 . +I like red wine better than fall . 我 喜歡 春天 勝 過 白葡萄酒 . +Does Tom still like playing baseball ? 湯姆 還 喜歡 打 棒球 嗎 ? +She is a girl , but she is handsome . 她 是 個 女孩 , 但 她 英俊 . +I can do without her help . 沒有 她 的 幫助 我 也 能 做 . +She said that he is sincere . 她 說 他 很 诚实 . +I asked Tom to open the window . 我 讓 湯姆 把 窗戶 打開 . +Do we have milk in the fridge . 冰箱 里 有 牛奶 吗 ? +She accused me of being American . 她 罵 我 是 美国 人 . +The baby despised him at me . 宝宝 对 我 看不起 他 . +She is absent because she is married . 她 不 在 是因为 结婚 了 . +Let is play baseball this afternoon . 讓 我們 今天下午 打 棒球 . +What are you intoxicated at ? 你 醉 了 什么 呢 ? +They made me very kind . 他们 让 我 很 親切 . +He looks poor . 他 看 起來 很穷 . +He asked me why I was hammered . 他 問 我 為 什麼 醉 了 . +Of course the school , she saw people with no homes living in cardboard boxes . 當然 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +Where are the spinach ? 菠菜 在 哪裡 ? +My aunt me a new dictionary . 我 姑姑 給 我 一本 新 字典 . +Jazz fusion is a combination of rock and football . 融合 爵士 是 搖滾樂 與 足球 的 融合 . +I almost likes football out loud . 我 差點 大聲 喜欢 足球 出來 . +I am just a plain old old office worker . 我 只是 一個 普通 的 老式 老式 上班族 . +I despise him . 我 鄙视 他 . +Health is better than fall . 健康 勝 過 秋天 . +ghosts know that we are here . 有 鬼魂 知道 我们 在 这儿 . +Are you out ? 你 出去 了 嗎 ? +This is not my intention . 這 不是 我 的 本意 . +I miss nose were a little shorter , she would be quite pretty . 我 想念 她 的 姿態 能 再 低 一點 就 更 完美 了 . +Continue singing . 继续 唱歌 ! +Mathematics my favorite food . 數學 是 我 最 喜歡 的 食物 . +He is good at instrumental music . 他 擅長 器樂 . +Running is good for your present . 非常 谢谢 你 的 健康 有益 . +Who are kids ? 谁 是 孩子 ? +He got tired of praying . 他 厌倦 了 祈禱 . +I went on beans . 我 继续 豆子 . +We will live here after school . 我們 放學 後 會 去 住 這裡 . +That is only your imagination . 那 只是 幻想 而已 . +That furniture is my type . 那個 家具 是 我 的 菜 . +He got tired of bleeding . 他 厌倦 了 流血 . +I almost like apples . 我 几乎 喜欢 苹果 . +There are a lot of books in the box ? 箱子 裡 有 很多 書 . +He always quarrels with his bicycle . 他 總是 與 他 的 自行车 吵架 . +Tom claims he does not discriminate . 湯姆聲 稱 他 不 歧视 人 . +I can wait for my contact lens . 我 可以 等 我 的 隱形 眼鏡 . +I hope Tom is not well . 我 希望 湯姆 身体 不适 . +How I have hate you ! 我 多麼 恨 你 ! +His office is past the vodka on your left . 经过 伏特加 , 左边 就是 他 的 办公室 了 . +We have a dead end . 我們 有 一個 死胡同 . +She were frightened my offer to help her . 她 被 嚇到 讓 我 幫助 她 . +My brother goes to college not busy . 我 兄弟 不忙 上大學 . +We captured hold of the rope . 他 抓住 了 小偷 . +I felt so really tired that I could hardly keep my eyes open . 我 感觉 累死 得 几乎 不能 睁开 我 的 眼睛 了 . +Tom likes eating fruit . 汤姆 喜欢 吃水果 . +I am a student , but I speak also Swedish . 我 是 個 學生 , 但 我 也 说 瑞典语 . +She likes all kinds of jazz . 她 喜歡 各種 爵士 樂 . +Mary can rest in her studies . 玛丽 在 研究 上 可以 休息 . +She said that he is truthful . 她 說 他 很 诚实 . +I will not need to hurry . 我 不 需要 著急 . +Your assistance is a racist for us . 您 的 帮助 对 我们 来说 是 种族主义者 . +She got the suitcase for nothing . 她 免費 得到 這 張 手提箱 . +I think I am going to lose . 我 想 我 要 输 了 . +Can you give me two cats ? 你 能 給 我 两只 猫 嗎 ? +We need take x @-@ rays to examine your teeth . 牙医 用 X光 检查 你 的 幫忙 . +If you get cooking dinner , let me know . 准备 晚餐 的话 就 说 哦 . +I do not am praying , not even if she loves me . 即使 她 愛 我 , 我 也 不 在 祈禱 . +My mother bought two bottles of an orange juice . 我 母亲 买 了 两瓶 一杯 柳橙汁 . +She may be late , in which case we will attend . 她 可能 迟到 , 然后 我们 就要 參加 . +Generally , Japanese people are miserly . 一般而言 , 日本 人 很 很小 气 . +I killed herself many times . 我 自杀 了 很 多次 了 . +In the rock music , many older people slip on ice and fall down . 在 摇滚乐 , 很多 老人 在 冰上 滑倒 . +It is really not difficult . 真的 不 難 . +All of my attempts have is shy . 我 所有 的 尝试 都 害羞 . +She got on the car is fog lights . 她 下 了 車 的 霧 燈 . +You are very kind , are not you ? 你 非常 親切 , 不是 嗎 ? +Seen from the moon , the earth looks like an apple . 从 月球 上看 的话 , 地球 看起来 像 个 苹果 . +My aunt gave me a book . 我 姑姑 給 了 我 一本 書 . +Some people like summer , and others like homework . 有人 喜歡 夏天 , 有人 喜歡 作业 . +I was very nervous as the negotiation is off . 谈判 中止 的 時候 我 很 緊張 . +She likes her . She loves him , too . 他 愛 她 . 她 也 喜欢 巧克力 . +Can I use my a map ? 我 可以 使用 我 的 地圖 嗎 ? +Skating my car alone . 溜冰 是 我 的 車 . +Where is my nature ? 我 的 大自然 在 哪 ? +I threw a rock at the bird . 我 扔 了 了 块 石头 打向 鸟儿 . +Mastering a foreign language is simple . 掌握 一门 外语 很 简单 . +She lived a sad life . 她 的 生活 很 难过 . +Pass me the a sentence . 请 给 我 一句 话 . +I like kids better than white wine . 我 喜歡 小孩 勝 過 白葡萄酒 . +The girl playing the piano is my wife . 弹钢琴 的 女孩 是 我 妻子 . +Tom is drinking nature . Tom 正在 喝 大自然 . +He invited me to an imitation . 他 邀请 我 去 一個 仿造品 . +I can trust her . 我 會 相信 她 . +His hobby is collecting old coins . 他 的 兴趣爱好 是 收集 古錢幣 . +Do you hate in ghosts ? 你 讨厌 有 鬼魂 吗 ? +I do not like novels without neighbors . 我 不 喜欢 没有 鄰居 的 小说 . +Tom laughed until noon . 汤姆 笑 到 中午 . +Please help what I do , she says I can do better . 請 幫 我 做 什么 , 她 都 说 我 能 做 得 更好 . +I always feel blue on silent movies . 我 每個 无声电影 都 覺 得 很 憂鬱 . +Who do you usually go to the mall with ? 你 一般 和 誰 去 商场 ? +What are you learning an actor ? 你 是 演员 学 些 什么 呀 ? +I have not changed and a little fever . 我 没 改变 , 还 有点 发烧 . +If you heard her speak English , you would take her for an idiot . 如果 你 听到 她 讲 的 英语 , 你 会 以为 她 是 傻 的 呢 . +I am too so beautiful to do my homework . 我 太漂亮 了 , 做不了 功课 . +I like summer better than eggs . 我 喜歡 夏天 勝 於 吃 鸡蛋 . +I am a good friend . 我 是 个 好 朋友 . +They called in a doctor because the child was sleepy . 他們 打 電話 給 醫生 因為 這個 孩子 困 了 . +He ran in person . 他 亲自 跑 了 . +She despised her husband . 她 看不起 她 的 丈夫 . +Never have wine . 决不 有 酒 . +I am good at sushi . 我 擅長 寿司 . +I do not have time to run . 我 没 时间 跑步 . +They trust . 他们 信任 那个 . +She lied . 她 说谎 了 . +Is Tom music ? 汤姆 在 音乐 吗 ? +Why are you still autistic ? 你 为什么 还 有 自闭症 ? +My uncle gave me an album . 我 舅舅 給 了 我 一張 唱片 專輯 . +I have no time for beans . 我 没 时间 豆子 . +I am familiar with this area . 我 對 这区 很 熟悉 . +He is poor at silent movies . 他 的 无声电影 很 差 . +He got getting old from the waist to the knees . 他 從 腰部 到 膝 蓋 都 在 变老 . +Algebra basic to all sciences . 代數 是 所有 科學 的 基礎 . +That is not friendly . 這 不 友好 . +Tom is hammered Mary into the room . 汤姆 醉 了 玛丽 进入 了 房间 . +What nonsense are you laughing at ? 你 你 笑 什么 呢 ? +That is my property . 這 把 是 我 的 財產 . +Where in Singapore did you grow up ? 你 在 新加坡 的 哪裡 長大 ? +How unfortunate the school , she saw people with no homes living in cardboard boxes . 可憐 , 她 见到 没有 家 的 人们 住 在 纸板箱 里 . +He likes oranges . She loves him , too . 他 喜欢 橙子 . 她 也 愛 他 . +If you get almost finished , just tell me . 差不多 完成 了 的话 就 说 哦 . +Tom lied sitting up in the chair . 汤姆 坐在 椅子 上 说谎 了 . +Do you am playing volleyball ? 你 在 打 排球 嗎 ? +They go to work every Sunday . 他們 每個 星期天 去 上班 . +If you want to , you can use my wife . 如果 你 愿意 , 你 可以 用 我 的 妻子 . +Everyone in his family is kind . 他家 的 每個 人 都 非常 親切 . +I love my bicycle . 我 爱 我 的 自行车 . +He wrote a letter asking him to return a bit earlier . 他 写 了 封信 , 叫 他 早点 回 . +Tom is a hick of yours , is not he ? 湯姆 是 你 的 乡巴佬 , 不是 麼 ? +I still can not continued working are married . 我 仍然 無法 繼續 工作 結婚 了 . +How come you know so much about Algebra ? 你 為 什麼 知道 這麼 多 的 代數 ? +She cried until noon . 她 哭 到 中午 . +I talked here with Tom . 留在 这 和 汤姆 说话 了 . +Two detectives swam the suspect . 两个 侦探 游泳 了 嫌疑人 . +Where is inflexible ? 死板 的 在 哪 裡 ? +Someone accelerated . 有人 提速 了 . +It is on the tip of my hobbies . 滑冰 是 我 的 舌尖 上 . +Do you like Disney ? 你 喜歡 迪士尼 嗎 ? +You can use my sister . 你 可以 用 我 的 妹妹 . +This is not my line . 這 不是 我 拿手 的 . +That is a dead end ! 真是 个 死胡同 ! +I missed Tom will do that . 我 想念 汤姆 会 去 做 . +He is a good friend . 他 是 个 好 朋友 . +Even though that he was handsome . 虽然 他 很 英俊 . +She was tired , but she kept singing . 她 累 了 , 但 她 继续 唱歌 . +Is this your property in Korea ? 你 是 財產 来 韩国 吗 ? +I do not smoke weed face . 我 不 吸 大麻 的 臉 . +He always quarrels with his employees . 他 總是 與 他 的 員工 相處 . +We will get divorced after school . 我們 放學 後 會 我们 离婚 . +That is my book . 那 是 我 的 书 . +She kept in the park for a long time . 我们 在 公园 等 了 半小时 . +Do not touch me . 別 碰 我 . +I am very interested in sports . 我 對 運動 很 有 興趣 . +You do not have to talk so big . 你 不必 這麼 大 了 說 話 . +I have decided and have two children . 我 決定 了 , 而且 有 两个 孩子 . +The phone rang when I was eating apples . 當 我 正在 吃 蘋果 時 , 電話 響 了 . +Are you happy on Sunday afternoon ? 你 週日 下午 开心 吗 ? +Algebra is is basic to all sciences . 代數 是 所有 科學 的 基礎 . +I like sports will get over it soon . 我 喜歡 運動 很快 就 能 复原 . +They got thoroughly not curious in the rain . 他們 在 雨 中 被 淋得 全身 都 不 好奇 . +Mom , I cried . 妈妈 , 我 哭 了 . +Tom likes hunting better than coffee . 湯姆 喜欢 打猎 勝 過 咖啡 . +Stay out of my grandfather . 别 进 我 的 爺爺 . +I want a massage . I need to study math . 我 想要 按摩 . 我 需要 学习 数学 . +Boston is a great place to raise that guy . 波士 頓是 養 那家伙 的 好 地方 . +Your father is pretty handsome . 你 爸爸 很 英俊 . +My dad does not like green onions . 我 爸爸 不 喜欢 葱 . +I am dancing a book . 我 在 跳舞 一本 書 . +I are gone ! 我 离开 了 . +I am not a bachelor . 我 不是 单身 . +This is his house to the rule . 这 是 一个 他家 . +There is any sisters under the desk . 书桌下 有 一只 姐妹 . +Tom does not like baseball . 汤姆 可不 喜欢 棒球 . +If you get almost done , tell me . 差不多 完成 了 的话 就 说 哦 . +I ran across an old friend near the vodka . 我 在 伏特加 附近 碰见 老朋友 . +That is quite free . 那 很 免費 . +I could hear her sobbing in her first time . 我 能 聽見 她 在 她 的 第一次 裡 抽泣 . +I can not tolerate that noise any longer . 我 不能 再 忍受 那個 噪音 了 . +We went on a beach together . 我們 一起 去 海邊 吧 了 . +I am truly astonished with my life . 我 对 我 的 人生 很 惊讶 . +I met Tom for the bedroom three days ago . 我 三天 前 臥室 见 汤姆 . +English is not important to learn . 英語 並 不 重要 學 . +I do not like science anymore . 我 再也 不 喜欢 科学 了 . +That is not my mother . 这 不是 我 的 妈妈 . +Open the box , please . 请 打開 箱子 . +Do Japanese people eat rock music every day ? 日本 人 每天 都 会 吃 摇滚乐 吗 ? +Who is sushi ? 寿司 是 谁 ? +Swimming is good for your gift . 非常 谢谢 你 的 健康 很 好 . +There is glue missing . 少 胶水 . +If a sick person folds one thousand pure gold cranes , her wish will come true . 如果 一個 病人 折 一千 隻 純金 鶴 , 她 的 願望 就 會 成 真 . +Please allow time I went to his place , he was studying . 請 允許 我 去 他 住 處 , 他 都 在 讀書 . +The students all lied . 學生 都 说谎 了 . +Tom said Mary is ecstatic . 湯姆 說 瑪麗 兴奋不已 . +Ignore a new carpet . 别理 一条 新 毯子 . +It is not okay to speak English . 說 英語 不行 . +I hope he like you for me . 我 希望 他 喜歡 你 我 . +Shut your mouth . 闭 上 你们 的 嘴 . +We do not care what they say . 我們 不在乎 他們 說 什麼 . +Breakfast was three hours late due to bad weather . 由于 天气 不好 , 早饭 迟到 了 3 小时 . +May I borrow your cell phone ? 我 能 借 一下 你 的 手機 嗎 ? +God exists How are you ? 嗨 ! 上帝 存在 嗎 ? +I want you to find it find out who killed Tom . 我 想 讓 你 找到 它 查出 來 誰 殺 了 湯姆 . +OK . Beats me . 好 . 我 一无所知 . +My job is washing cars . 他 的 工作 是 洗碗 . +I had to abstain from smoking while I was in the miracle . 在 一个 奇迹 的 时候 , 我 不得不 戒烟 . +My aunt I ever done to Tom ? 我 舅母 做 了 什么 ? +Everyone knows that I do not missed you . 每個 人 都 知道 我 不 想念 你 . +He is good at pop music . 他 很 擅長 流行 音樂 . +May I borrow your bicycle ? 我 能 借 一下 你 的 腳踏車 吗 ? +I can not continued singing are giving up . 我 不能 继续 唱歌 在 放弃 . +I failed while reading a book . 我 看书 的 时候 失败 了 . +I are neighbors . 我 是 鄰居 . +Your assistance is a rabbi for us . 您 的 帮助 对 我们 来说 是 个 拉比 . +I still prefer to love you by hand . 我 更 喜欢 用 手 爱 你 . +This is a good lad . 这 是 个 好人 . +He was tired , but he kept singing . 他 累 了 , 但是 他 继续 唱歌 . +I am a man at Oxford University . 我 是 牛津大学 的 男人 . +Here is an abstract of a book . 這裡 有 一本 書 寫 了 內容 提要 . +Winter is is the best season to visit Kyoto . 冬季 是 访问 京都 最好 的 季节 . +A young girl on crutches asked Tom where she lived . 一个 拄着 拐杖 的 年轻 女孩 问 汤姆 她 住 在 哪里 . +My father is free after school . 我 父親 放學 後 有空 . +He is always insufferable . 他 总是 令人 难以忍受 . +I will ask Tom tomorrow . 我 明天 會 问 汤姆 . +Generally , Japanese people are intoxicated . 一般而言 , 日本 人 很 醉 了 . +Open your here are mine . 翻開 你 的 書 是 我 的 . +He does not like winter . 他 不 喜欢 冬天 . +She won the juice from many oranges . 她 贏 了 許多 柳橙汁 . +Is this the right train for Canada ? 這 是 開往 加拿大 正確 的 火車 嗎 ? +I want to go to the bathroom . 有 一天 我 要 去 廁所 . +Please wake me up at seven tomorrow . 請 在 明天 7 点 叫 我 起來 . +Take the road on a diet . 走 節食 的 道路 . +I use Tom . 我 使用 汤姆 . +The boy is that person . 这个 男孩子 在 那个 人 . +My aunt did something right . 我 姑姑 做 了 点 正确 的 事 . +Could you take me to the beach ? 你 帶 我 去 海邊 吧 好 嗎 ? +When I heard the news , I wanted to drive . 当 我 听到 这个 消息 时 , 我 想 開車 . +He is always at home on silent movies . 他 无声电影 總是 在家 . +He got a good grade in eggplant . 他 茄子 得 了 一個 好 成績 . +This size is improved for me . 这个 码 对 我 来说 有 改善 了 . +My aunt made a funny face . 我 嬸嬸 做 了 个 鬼脸 . +Were you right about that ? 你 对 那 是 对 的 吗 ? +Everyone is intoxicated . 每個 人 都 醉 了 . +His pronunciation is far from flammable . 他 的 发音 远非 可燃 . +I accepted Lincoln accepted the invitation . 林肯 总统 接受 了 报价 . +You forgot to ask him . 我 忘 了 關燈 . +Young children are often fascinated by sushi . 小孩 常常 对 寿司 很 有 热情 . +Tom won ! 汤姆 赢 了 . +I want a few chocolate . 我 要 幾個 巧克力 . +These pictures make him a good wife . 這些 畫 是 他 的 好 妻子 . +These pictures had enough money to pay the bill . 這些 畫 是 他 有 足够 的 钱 来 付账 . +We require you to be punctual . 我們 需要 你 能 準 時 . +At first , I thought they were praying . 一 开始 , 我 以为 他 在 祈禱 . +Tom says he is sincere . 湯姆 說 他 很 诚实 . +He does not have siblings at all . 他 根本 不 有 兄弟姐妹 . +I am under so much pressure , I just want to learn French . 我 壓力 好大 , 我 真 要 学法语 . +I will be busy after school . 我 放學 後 會 很忙 . +I know people think I am beautiful . 我 知道 人們 認為 我 美 . +He is busy with his employees . 他 現在 正忙 著做 他 的 員工 相處 . +My dad does not like eggs . 我 爸爸 不 喜欢 鸡蛋 . +She likes all kinds of candy . 她 喜歡 各種 甜食 . +ghosts knows we did everything we could . 有 鬼魂 知道 我们 做 了 我们 所能 做 的 事 . +Would you mind lending me your daughter ? 你 介意 借 我 你 的 女兒 嗎 ? +I think I am innocent . 我 想 我 是 清白 的 . +She does not like homework . 她 不 喜欢 作业 . +With a little more effort , he would have try . 如果 他 当时 再 努力 一点 , 他 就 来 试试 . +Tom is surprised . 汤姆 吃惊 了 . +She fooled of a good solution . 她 愚弄 了 一个 好 的 解决办法 . +Both French and English are spoken in Australia . 在 澳洲 的 人 說 法語 和 英語 . +My aunt sent us a box of apples . 我 阿姨 送 了 我們 一箱 蘋果 . +He has been shopping . 他 曾 去過 购物 . +She is absorbed in kids . 她 沉迷于 小孩 . +She looks like an honest man . 她 看起来 忠厚老实 . +Hug Tom , your dog just bit me . 抱抱 汤姆 , 你 的 狗 刚 咬 了 我 . +Tom has mathematics . 汤姆 ( Tom ) 留 数学 +Please let me why I was laughing . 請 讓 我 為 什麼 在 笑 . +Good luck your seat belt . 祝你好运 您 的 安全带 . +There is no reason that I should am single my plan . 沒有 理由 让 我 單身 我 的 计划 . +We surrender clearly and make yourself heard . 我們 投降 並 大聲 地 讓 別人 聽到 你 說 話 . +Who likes instrumental music ? 谁 喜歡 器樂 ? +They let me know what you want . 他們 讓 我 知道 你 要 什麼 . +If it is fine tomorrow , we will go on a beach . 如果 明天 天气 好 , 我们 就 去 海邊 吧 . +I almost always play baseball this afternoon . 我 幾乎 總是 在 今天下午 打 棒球 . +Tom said Mary is surprised . 湯姆 說 瑪麗 吃惊 了 . +He is a fat man . 他 是 个 胖子 +I am not ashamed of my father being not stupid . 我 父亲 不是 傻子 并 不让 我 觉得 丢脸 . +He called . 他 打電話來 . +Do you bathe every day ? 你 每天 都 都 洗澡 吗 ? +Bring me a glass of milk . 给 我 一杯 牛奶 . +He is three years younger than she is . 他 比 她 小 三岁 . +I was mistaken for a scumbag . 我 被 誤 認為 是 個 无賴 . +The company sells fruit . 公司 卖 水果 . +Tom was fabulous , is not he ? 湯姆 真是 极好 的 , 不是 麼 ? +They hated children . 他們 恨 孩子 . +We all miss you so much . 我们 都 如此 想念 你 . +Turn off the TV , please . 請 关闭 电视机 +Mathematics is is my favorite food . 數學 是 我 最 喜歡 的 食物 . +Generally , Japanese people are resourceful . 一般而言 , 日本 人 鬼点子 真多 . +He is not very good at the cold . 他 不是 很 擅長 寒冷 . +Please let I knew the answer , I would not tell you . 請 讓 我 知道 答案 , 我 也 不会 告诉 你 . +We need an idiot . 我們 需要 傻 的 . +You are very ecstatic . 你 很 兴奋不已 . +I saw him playing sports . 我 看到 他 在 運動 . +Tom has three kids . Tom 有 三個 孩子 . +Cheers course she passed the test . 乾杯 , 她 通過 了 測驗 . +She traveled around the country . 她 周遊 全國 各地 . +Shut off your shoes . 請 脫掉 你 的 眼睛 . +At the age of six , I was taken to a circus for the property . 在 我 六岁 的 时候 , 我 財產 被 带去 看 马戏 . +When I heard the news , I wanted to participate . 当 我 听到 这个 消息 时 , 我 想 参加 . +That will at all ! 没有 任何 区别 . +At first , I thought they were single . 一 开始 , 我 以为 他 單身 . +Tom are children Mary . 汤姆 是 孩子 了 玛丽 . +Were you a bachelor about that ? 你 对 那 是 单身 吗 ? +Tom told me that he does not like that man . 汤姆 告诉 我 他 不 喜欢 那 男人 . +I thought that I was watching TV . 我 还 以为 我 在 看电视 . +I was about to leave when the telephone rang . 电话响 的 时候 , 我 正 准备 出门 . +Will you play tennis this afternoon ? 你 今天下午 會 去 打 網球 嗎 ? +Tom needs to study more if he hopes to see him this class . 汤姆 如果 想 见到 他 这 门 课 , 就 需要 加劲 学习 . +I hear you passed the entrance exam . Wonderful ! 我 听说 你 通过 了 入学考试 . 很棒 你 了 ! +Who does the cooking in your eating ? 你 吃饭 谁 做饭 ? +What about you , Tom ? 您 呢 , 湯姆 ? +I am glad Mary is not my sister . 我 很 高兴 玛丽 不是 我 的 妹妹 . +He is good at potatoes . 他 擅長 土豆 . +Excuse me , I speaks Chinese . 不好意思 , 我 讲 中文 . +Tom likes mathematics . 汤姆 喜欢 數學 . +When I was a child , I spent most of my time indoors jogging . 当 我 是 个 孩子 的 时候 , 我会 把 大部分 时间 都 用于 室内 跑步 . +Let me die another one . 让 我 去 死 别的 . +" How did you get my location ? " " Tom gave it to me . " “ 你 怎么 知道 我 的 位置 的 ? ” “ 汤姆 告诉 我 的 . ” +He is always stingy . 他 总是 很小 气 . +I love my dictionary . 我 爱 我 的 字典 . +Tom is not a liar . 湯姆 不是 騙子 . +My aunt did something right . 我 嬸嬸 做 了 点 正确 的 事 . +Please forgive me to do the impossible . 请原谅 我 做 不 可能 做到 的 事情 . +Someone saved me a lot of time . 有人 穿错 了 我 好多 時間 . +Can you imagine dieting around on the moon ? 你 可以 想象 在 月球 上 节食 吗 ? +Children like candy . 孩子 们 喜欢 甜食 . +I want a massage . I need to take notes . 我 想要 按摩 . 我 需要 作筆 記 . +I were worried story . 我 担心 . 故事 . +Earth is a scumbag . 地球 是 一個 无賴 . +While I was reading , I talked childishly . 當 我 讀 書 的 時候 , 我 说话 幼稚 . +I rejected her invitation . 我 拒绝 了 她 的 邀請 . +I was born in the green onions . 我 在 葱 出生 . +We hope Tom is a vegetarian . 我們 希望 湯姆 是 素食主义者 . +I study an actor . 我 是 演员 读书 . +Tom got to Tokyo at the age of three . 他 三岁 就 到 这 了 . +She is eating french fries . 她 正 吃著 炸薯 條 . +He threw a piece of meat to a daughter . 他 丢 了 块 肉 给 一个 女儿 . +Tom is very big . 湯姆 非常 大 . +Can I use my a bicycle ? 我 可以 使用 我 的 自行 車 嗎 ? +You are very handsome . 您 非常 英俊 . +Tom wants to come in . 汤姆 想 進來 . +Tom says he is absolutely elated if he can do that , but he says he will try . 汤姆 说 他 真是 欣喜若狂 是否 能 做到 , 但是 他 说 会 尝试 . +I have a slight cough now . 现在 我 有 些许 咳嗽 . +Do not tell lies about this . 別 為 此 说谎 ! +He married an obstinate girl . 他 娶 了 个 倔强 的 女孩 . +He said that he wanted a daughter . 他 說 他 要 一个 女儿 . +If he is new here , then his wife is guilty . 如果 他 是 新來 的 , 那他 妻子 就 有罪 . +I understand to ask Tom . 我 明白 了 问 汤姆 . +Were you your mother ? 你 是 你 母親 吗 ? +I likes football while reading . 我 看书 的 时候 喜欢 足球 . +Can I borrow your cell phone ? 我 今晚 可以 借 一下 你 的 手機 嗎 ? +I miss clothes is my work . 我 想念 我 的 工作 . +I suppose I felt a little confused . 我 想 我 感到 有 點 迷惑 . +That boy is poor . 这个 男孩子 很穷 . +He put the book where it was . 把 书 放在 了 书架上 . +She bit a rich old man . 她 咬 了 个 有钱 老头 . +My aunt gave me the watch . 我 舅母 給 了 我 這 支 錶 . +I was German , but I could not sleep . 我 是 德国人 , 但是 我 睡 不著 . +He likes neither baseball nor chocolate . 他 既 不 喜欢 棒球 , 又 不 喜欢 巧克力 . +We require stick to your skin . 濕 衣服 貼著 你 的 幫助 . +I have no time to run . 我 没 时间 跑步 . +I think you are going to want to be quiet . 我 觉得 你 想 安靜 . +I hated him in the belly . 我 恨 他 的 肚子 . +Where is my sister ? 我 的 妹妹 在 哪裡 ? +We forgive this was unnecessary . 我們 原諒 這 是 不必要 的 . +" Have you seen my map ? " " It is on the table . " " 你 有 看到 我 的 地圖 嗎 ? " " 它 在 桌子 上 . " +Tom had no idea Mary was a nurse . 汤姆 不 知道 玛丽 是 个 护士 . +You do not need to apologize . 你 不必 道歉 . +Will you speak Swedish to have lunch with me ? 你 说 瑞典语 跟 我 吃 午饭 吗 ? +She does not like science . 她 不 喜欢 科学 . +Tom asked me if I liked the cold . 汤姆 问 我 是否 喜欢 寒冷 . +I need a TV . 我 需要 一把 电视 . +My mother does not like this jacket . 我 母親 不 喜歡 那件 夾克 . +Is there any coffee in the box ? 箱子 裡 有 咖啡 嗎 ? +I want a few jazz music . 我 要 幾個 爵士 樂 . +I am not so handsome . 我 没 那么 英俊 . +I wanted red room . 我 要 紅色 的 房间 . +Spanish is her hobby . 西班牙语 是 她 的 爱好 . +She wants to work at the wig . 她 想 在 假发 工作 . +He is often mistaken for a witch . 他 常常 被誤 認為 是 個 巫婆 . +I have a lot of translating . 我 有 很多 翻譯 . +I lied while reading a book . 我 看书 的 时候 说谎 了 . +Tom says he came back . 汤姆 说 他 回來 了 . +" Have you seen my soup bowl ? " " It is on the table . " " 你 有 看到 我 的 湯 碗 嗎 ? " " 它 在 桌子 上 . " +I do not like sports . You are always telling lies . 我 不 喜歡 運動 . 你 总是 说谎 . +Children like sports . 孩子 们 喜欢 運動 . +My aunt made a funny face . 我 阿姨 做 了 个 鬼脸 . +I like both rock music and math . 摇滚乐 和 数学 我 都 喜欢 . +Why did you try to cry ? 为什么 你 企图 哭 ? +You should always do not cry . 你 應 該 永遠 别哭 . +No more , thank you . I am bullied . 不 , 谢谢 , 我 被 欺负 了 . +He is already a vegetarian . 他 已经 是 素食主义者 了 . +She may be a real hero . I am not sure . 她 可能 是 真 英雄 . 我 不 太 肯定 . +What country school did you graduate ? 您 是从 哪个 国家 来 的 ? +Tom does not like sushi . 汤姆 不 喜欢 寿司 . +He returned home for the property in ten years . 他 十年 中 財產 回家 . +Tom said he was curious what Mary wanted to do . 汤姆 说 他 很 好奇 玛丽 想 做 什么 . +We succeeded her heart out . 我们 成功 得 肝腸寸斷 . +There was a lot of snow last science . 去年 科学 下 了 好多 雪 . +Everyone is consumption is increasing every year . 酒 的 消费 每年 都 在 笑 . +You can sit down . 你 可以 坐下 . +I bought her a little money . 我 给 她 买 了 一些 錢 . +When listening to a lecture , you should be up ! 听 讲座 时 , 你 应该 坚持 . . +I want to hear it very much . 我 非常 想 听见 . +My type often drinks tea with milk . 我 的 菜 经常 就 着 牛奶 喝茶 . +He asked me if I liked instrumental music . 他 問 我 喜 不 喜歡 器樂 . +How about going to the mall ? 去 商场 怎樣 ? +That boy is beans . 这个 男孩子 在 豆子 . +Stay out of my hobbies . 溜冰 是 我 的 厨房 . +I almost kissed . 我 几乎 亲吻 了 . +He asked me if I liked potatoes . 他 問 我 喜 不 喜歡 土豆 . +This smells great ! What are you reading ? 聞 起來 好 香 喔 . 你 在 看 什么 ? +This is a baseball player . 这 是 个 棒球 手 . +That is not salt , is it ? 那 不是 盐 , 不是 么 ? +My father is a good person . 我 爸爸 是 个 好人 . +Tom is drinking apple apple juice . Tom 正在 喝 蘋 蘋 果汁 . +I accepted a letter from her . 我 接受 了 她 的 來信 . +I think you are impatient . 我 觉得 你 缺乏 耐心 . +Where is your mother ? 你 母親 在 哪 ? +Do not be sloshed . 不要 醉 了 . +You and I are heroes . 你 和 我 是 英雄 . +Smoke appeared to ask him . 烟雾 出现 了 問 他 . +Excuse me your horses , young man . 对不起 你 的 馬 , 年 輕 人 . +A good dictionary suddenly appeared out of the mist . 本好 词典 突然 从 雾 中 出现 . +My aunt me a letter . 我 舅母 給 我 . +One of the children left the bank open . 其中 一個 孩子 讓 銀行 開著 . +Chinese is a good idea . 漢語 是 一個 好 主意 . +If I have misjudged you , I am satisfied . 如果 我 对 你 产生误解 , 我 很 满意 . +How I have believed you ! 我 多麼 信过 你 ! +I know people think I am stupid . 我 知道 人們 認為 我 傻 . +Were they right ? 他们 是 对 的 吗 ? +He asked me if I liked the cold . 他 問 我 喜 不 喜歡 寒冷 . +Yesterday was is Thursday . 昨天 是 礼拜四 . +He likes neither baseball nor sports . 他 既 不 喜欢 棒球 , 又 不 喜欢 運動 . +Was Tom playing baseball last night ? 湯姆 昨天晚上 在 打 棒球 嗎 ? +The plane made a flammable landing . 這 架 飛機 可燃 的 著陸 了 . +I thank you very much for your gift . 我 十分 感谢 你 的 礼物 . +That is not any sisters . It is a dog . 那 不是 姐妹 . 那 是 狗 . +ghosts the heaven and the earth . 有 幽灵 創造 了 天地 . +I asked Tom for a favor . 我 讓 湯姆 幫 忙 . +How come you know so much about Mathematics ? 你 為 什麼 知道 這麼 多 的 數學 ? +Algebra is is my favorite food . 代數 是 我 最 喜歡 的 食物 . +She is evidently bleeding . 她 明顯 在 流血 . +She has been escaping since last Wednesday . 从 上周三 起 , 她 一直 在 逃跑 . +Tom does not think this is a wig . 汤姆 不 认为 这 是 假发 . +Tom has jogging . 汤姆 ( Tom ) 留 跑步 +My camera is similar to yours . 我 的 相機 跟 你 的 類似 . +Are we going to the bank ? 我们 将 会 去 银行 了 吗 ? +There is no need to speak so large . 沒有 必要 說 話 這麼 大 了 . +We all like tennis very much . 我们 都 非常 喜歡 網球 . +That was the bedroom I 'd seen Tom so angry . 那 是 我 臥室 见到 汤姆 如此 生气 . +She was a genius in running . 她 是 个 跑步 天才 . +This is the house where she lives . 這 是 她 住 的 房子 . +This guy looks like a madman . 这 家伙 像 个 疯子 . +Hokkaido is really special , is not it ? 北海道 真 特別 , 不是 嗎 ? +I thought I was watching television . 我 还 以为 我 在 看电视 . +My sister is taller than you . 我 妹妹 比 你 高 . +Is this your property in Japan ? 這 是 你 財產 到 日本 嗎 ? +I was going to am bleeding all day . 我 要 在 流血 一整天 . +What are they reading ? 他們 在看 什麼 ? +A dog will bark at someone . 狗会 对 別人 叫 . +Call me your address . 联系 我 你 的 地址 . +He swims gets out of bed before me . 他 游泳 比 我 早起 . +I was thrilled . 我 兴奋不已 . +My grandfather is a scumbag . 我 爺 爺 是 個 无賴 . +I am under so much pressure , I just want to lose weight . 我 壓力 好大 , 我 真 想 减肥 . +I think you are always late . 我 觉得 你 总是 迟到 . +My grandfather is a strange person . 我 爺 爺 是 個 怪人 . +If you get a professor , just tell me . 是 大学教授 的话 就 说 哦 . +I will not need to apologize . 我 不 需要 道歉 . +We like to drink coffee . 我們 喜歡 喝咖啡 . +Maybe I should just be busy the truth . 可能 我 就 該 会 很忙 真相 . +May I borrow your TV ? 我 能 借 一下 你 的 电视 吗 ? +There is no a sentence . 没有 一句 话 . +Cheers last , she gave in to him and told him the secret . 乾杯 , 她 對 他 屈服 了 , 並 告訴 了 他 這個 秘密 . +He threw the ball to me . 把 球 扔 了 . +My parents live in this area . 我 父母 住 在 这区 . +We will change trains at the next stop . 我們 將 在 下 一站 換 火車 . +Winter come soon . 冬季 就要 来 了 . +We all died recently . 我们 都 最近 死 了 . +Were you inflexible about that ? 你 对 那 是 死板 的 吗 ? +Tom whispered something to Mary and she yawned . 汤姆 小声 对 玛丽 说 了 什么 , 玛丽 打哈欠 了 . +My aunt gave me a book . 我 嬸嬸 給 了 我 一本 書 . +Mary can lie . 瑪麗會 講 謊 . +What are you miserly at ? 你 很小 气 什么 呢 ? +My uncle resides in Boston . 我 舅舅 住 在 波士顿 . +Take your time . There is no sugar . 慢慢 來 , 没有 糖 . +He is frightening me through his teeth . 他 明显 在 嚇 我 . +Tom is learning English and has a daughter . Tom 學 英文 , 他 有個 女兒 . +That toy is put together with glue . 這個 玩具 是 用 膠水 黏在 一起 . +Today is you gave me is of little use . 今天 是 我 的 資料 沒有 多大 的 用處 . +We often played chess this afternoon . 我們 常常 在 今天下午 下棋 . +He was named after his aunt . 他 以 他 姑姑 的 名字 被 命名 . +Some people like summer , and others like eggs . 有人 喜歡 夏天 , 有人 喜歡 鸡蛋 . +She helped me pack my ticket . 她 幫 我 打包 我 的 票 . +ghosts the heaven and the earth . 有 鬼魂 創造 了 天地 . +She hugged her husband . 她 抱 了 她 的 丈夫 . +They fine you in Canada if you throw trash in the streets . 在 加拿大 的 街道 上 扔 垃圾 会 被 罚款 . +I am so proud of my hobbies . 滑冰 是 我 的 孩子 們 感到 很 驕傲 . +Tomorrow I have to say this . 明天 我 得 说 这事 . +She kept in the park for a long time . 我们 在 公园 等 了 30 分钟 . +He got a good grade in potatoes . 他 土豆 得 了 一個 好 成績 . +They hugged to our home . 他们 拥抱 来到 我们 家 . +We will go on a beach next Sunday . 我們 下週 六 將 去 海邊 吧 . +My brother is small but mean . 我 哥哥 雖然 矮小 可是 很 凶 . +I have eaten one orange . 我 吃 了 一個 橙子 . +She has a light by the sea . 她 在 海边 有 灯光 . +My uncle makes me laugh . 我 叔叔 讓 我 笑 . +He is my classmate . 他 是 我 的 同學 . +Welcome back up with an answer to our problem . 欢迎 回来 我们 的 问题 想出 了 个 答案 . +He is afraid of earthquakes . 他 怕 地震 . +This is not sugar . 这 不是 糖 . +She won invented many useful things . 她 贏 了 許多 有用 的 東西 . +He skis in Hokkaido every sushi . 他 每年 寿司 在 北海道 滑雪 . +Help me peel the the cold . 幫 我 削 一下 寒冷 . +Yesterday was that my honor was at stake . 昨天 是 我 的 名譽 受到 了 威脅 . +I was thirty . 我 今年 三十岁 . +I often play Chopin after school . 我 常常 在 放學 後 彈 蕭邦 . +As for me , I am very happy . 就 我 而言 , 我 很 快乐 . +Tom said Mary is not drunk . 湯姆 說 瑪麗 沒醉 . +I drank a cup of milk . 我 喝 了 一杯 牛奶 . +Does Tom live here ? 汤姆 住 這裡 吗 ? +I am here , so do you want to be rich ? 我 在 这 , 你 想 致富 嗎 ? +She kept for my friend for an hour . 我 等 我 的 一个 朋友 等 了 半小时 . +Few people like baseball . 很少 人 喜欢 棒球 . +What language is spoken in Canada . 在 加拿大 的 人 說 什麼 語言 ? +I do not like tea , so I generally trust her for breakfast . 我 不 喜欢 茶 , 所以 我 早餐 大致 上 都 相信 她 . +She did not feel like eating sushi . 她 不想 吃 壽司 . +He is a shame . 他 是 一個 恥辱 . +Generally , Japanese people are out cold . 一般而言 , 日本 人 很 正 昏迷不醒 . +What are they watching ? 他們 在 看 什么 ? +Somebody ran . 有人 跑 了 . +His work is washing the dishes . 他 的 工作 是 洗盤子 . +That boy is taking walks . 这个 男孩子 在 散步 . +My opinion are smaller than yours . 我 的 看法 跟 你 的 小 . +Everyone is stingy . 每個 人 都 很小 气 . +It seems obvious that he is lost . 似乎 很 明顯 他 迷失 了 . +My father died of a subarachnoid hemorrhage when I was watching television . 电话响 的 时候 , 父亲 死 于 蛛网膜 下 出血 . +I was sloshed . 我 醉 了 . +I am a hick . 我 是 个 乡巴佬 . +I want some eating fruit . 我 要 几个 吃水果 . +Turn left your bicycle out of here . 向左转 您 的 自行 車 移出 這裡 . +She fooled her husband . 她 愚弄 了 她 的 丈夫 . +Tom said he 'd attend . 湯姆 說 他 會 參加 . +The car flew toward the west . 汽车 向西飞 了 . +I think that I am greedy . 我 觉得 我 很 貪婪 . +None of my friends live here . 我 的 朋友 都 不 住 這裡 . +I like you and have two children . 我 喜欢 你 , 而且 有 两个 孩子 . +" Hop in , " he said . “ 跳进来 . ” 他 说 . +You are not religious , are not you ? 你 不 信教 , 不是 嗎 ? +He is my business address . 他 是 我 的 公司地址 . +Tom was not as brave as Mary said he was . 汤姆 并 不是 玛丽 说 得 那样 勇敢 . +I can not have decided love me . 我 不能 決定 了 愛 我 . +They are special . 他们 特别 . +He threw a piece of meat to two cats . 他 丢 了 块 肉 给 两只 猫 . +I did not are children and he did not trust me , either . 我 不 是 孩子 而且 汤姆 也 不 信任 我 . +Do all of you speak Chinese ? 你們 都 說 中文 嗎 ? +I accept accepted the invitation . 林肯 总统 接受 了 报价 . +It is free why his stomach hurts . 他 為 什麼 會 胃痛 的 原因 很 免費 . +I like both kids and math . 小孩 和 数学 我 都 喜欢 . +Is anyone not lying today ? 今天 有人 沒有 說謊 嗎 ? +You are a scumbag . 您 是 一個 无賴 . +I have to write a letter . 我 要 写 一封信 . +Someone caught me by the arm . 有人 拿错 了 我 的 手臂 . +I think his opinion is a liquid . 我 認為 他 的 意見 是 液体 . +I will need you when you are gone . 你 走 後 , 我 會 需要 你 的 . +He can not be Hungarian . 他 不 可能 是 匈牙利人 . +Her son is a good fellow . 她 儿子 是 个 好人 . +I respect children . 我 尊敬 孩子 . +I am going out after school . 放學 後 我 會 外出 . +Tom laughed with his shoes on . 汤姆 穿着 鞋 笑 了 . +He likes neither baseball nor pop music . 他 既 不 喜欢 棒球 , 又 不 喜欢 流行 音樂 . +She hugged her mind to her new job . 她 抱 了 她 的 新 工作 上 . +She hugged her children . 她 抱 了 她 的 孩子 . +" Call me , " he said . “ 联系 我 . ” 他 说 . +She asked changed his life . 她 問 了 他 的 生活 . +My aunt sent us a box of apples . 我 嬸嬸 送 了 我們 一箱 蘋果 . +You do not need to speak so large . 你 不必 這麼 大 了 說 話 . +He is a scumbag . 他 是 個 无賴 . +Strawberries sell for a high price in the science . 草莓 在 科学 售價高 . +Tom was in danger yesterday . 湯姆 昨天 有 危險 了 . +I said to myself , " That is a shame . " 我 对 自己 说 , “ 那 是 个 恥辱 . ” +Do you have any no excuse ? 你 没有 借口 吗 ? +Your cake is OK . 你 的 蛋糕 没关系 . +Singing is her native language . 西班牙语 是 她 的 强项 . +Your cake is not good . 你 的 蛋糕 这 不好 . +Are you still hot ? 你 还 热 吗 ? +She is absorbed in that guy . 她 沉迷于 那家伙 . +Please allow me to the hospital . 請 允許 我 去 醫院 . +What are they reading ? 他們 在 看 什么 ? +Someone is seeing you . 有人 在 見 到 你 . +I am not a scumbag . 我 不是 无賴 . +Your pen is similar to mine . 你 的 笔 和 我 的 很 相似 . +Tom wanted Mary is location , but she refused to give it to him . 汤姆 想要 玛丽 的 位置 但是 被 拒绝 了 . +He flatly were frightened to let me in . 他 斷然 地 被 嚇到 讓 我 進去 . +My grandfather is a good guy . 我 爺 爺 是 個 好人 . +Keep quiet , your dog just bit me . 保持 安静 , 你 的 狗 刚 咬 了 我 . +Generally , Japanese people are insufferable . 一般而言 , 日本 人 很 令人 难以忍受 . +He wants a hero . 他 想要 英雄 . +My grandmother made me a new skirt . 我 嬸嬸 做 了 一套 新 衣服 給 我 . +Would you mind lending me your daughter ? 你 介意 把 你 的 女兒 借 給 我 嗎 ? +He is not an a liar . 他 不是 個 騙子 . +I was going to am daydreaming all day . 我 要 在 做 白日梦 一整天 . +Do not ask him any questions about his job . 别 問 他 他 的 工作 的 问题 . +I hate you so much . 我 如此 恨 你 . +I play basketball three times a week . 我 每週 打 籃球 三次 . +He can not be curious . 他 不 可能 很 好奇 . +How long does it take to get to the shopping mall ? 去 大 卖场 要 多久 ? +I followed while reading a book . 我 看书 的 时候 跟着 . +I like driving . 我 喜歡 駕駛 . +I got it obvious . 我 是 明顯 得到 的 . +Your pen better than I do . 你 的 笔 比 我 好 . +You are a good friend . 你 是 个 好 朋友 . +My uncle my offer to help her . 我 舅舅 讓 我 幫助 她 . +What have you done with my ticket ? 你 把 我 的 票 怎麼 了 ? +The baby nodded approval at me . 宝宝 对 我 点头 同意 . +My sister is twenty @-@ one years old and a detective . 我 妹妹 21 岁 , 是 个 侦探 . +I want you to understand why you have to be proactive . 我 想 让 你 明白 为啥 你 必须 积极主动 . +I intend to his parents . 我 打算 給 他 的 父母 . +My gums are daydreaming . 我 的 牙齦 做 白日梦 . +I was a detective at that time . 我 当时 是 侦探 . +Can I use book yours ? 我 可以 用 你 的 書 嗎 ? +Tom is going out after school with Mary . 放學 後 汤姆 和玛丽 会 一起 出去 . +I feel very wet . 我 覺得 我 濕 得 很 厲害 . +Are you a detective ? 你 是 侦探 吗 ? +He looks like a good fellow . 他 看 起來 是 個 好人 . +I missed that he 'd come , but he did not . 我 想念 他 會 來 , 但 他 沒來 . +I do not wanted red smile . 我 不 要 紅色 的 微笑 . +I disappeared . 我 不见 了 . +He will pay all day . 他 來付 錢 了 一整天 . +What have you done with my daughter ? 你 用 我 的 女兒 做 了 什麼 ? +You have to clean your shoes . 你 该 打扫 你 的 鞋子 . +I accept her what should be done . 我 接受 了 她 应该 做 什么 . +The real hero will tell you how to do it . 真 英雄 会 告诉 你 怎么 做 . +While we were discussing the problem , I hit upon a dead end . 在 我们 讨论 问题 的 过程 中 , 我 想到 了 一个 死胡同 . +Speak clearly the police ! 講 清楚 ! +She asked at my wedding . 她 問 了 我 的 婚礼 . +Do you like eating ? 你 喜欢 吃饭 吗 ? +I have just washed all the boys . 我 剛 洗 了 所有 的 男孩 . +They like music . 他们 爱 音乐 . +Thank you for your kindness . 謝謝 你 的 親切 . +My aunt me authority to fire them . 我 嬸嬸 給 我 解僱 了 他們 . +He does not like watching TV . 他 不 喜歡 看電視 . +Winter is the best season to visit Kyoto . 冬季 是 访问 京都 最好 的 季节 . +Is this your bedroom in Korea ? 你 是 臥室 来 韩国 吗 ? +Mathematics is my favorite season . 數學 是 我 最 喜歡 的 季節 . +I almost are gone . 我 几乎 离开 了 . +We caught hold of the rope . 他 抓住 了 小偷 . +Tom remained standing as the others fell asleep . 别人 都 睡着 了 , 汤姆 还 站 着 . +Earth is a good idea . 地球 是 一個 好 主意 . +What can Tom bring ? 汤姆 能 带 些 什么 ? diff --git a/analyze.ipynb b/analyze.ipynb new file mode 100644 index 0000000..95f99b2 --- /dev/null +++ b/analyze.ipynb @@ -0,0 +1,4326 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]\n" + ] + } + ], + "source": [ + "import os, re, random, math, json, pdb\n", + "from main import np, torch, Vocab, Mutex, RecordLoss, encode, encode_io, collate, eval_format, get_fig2_exp, NoamLR, SoftAlign\n", + "from nltk.translate.bleu_score import corpus_bleu\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "from collections import Counter, namedtuple\n", + "from sklearn.manifold import TSNE\n", + "from sklearn.decomposition import TruncatedSVD\n", + "import matplotlib.cm as cm\n", + "from uncertainties import ufloat\n", + "from scipy import stats\n", + "import seaborn as sns" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def mean_std(x):\n", + " return ufloat(np.mean(x),np.std(x))\n", + "def my_mean(x):\n", + " return(str(round(np.mean(x),2)))\n", + "def sort_by(list1, list2):\n", + " return [x for _,x in sorted(zip(list2,list1))]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "ROOT_FOLDER=os.getcwd()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'/home/gridsan/eakyurek/git/mutex'" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ROOT_FOLDER" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "plt.rcParams['figure.dpi'] = 150\n", + "plt.rcParams.update({\"text.usetex\": False,\"font.family\": \"sans-serif\"})\n", + "plt.rcParams['figure.facecolor'] = 'white'" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "MetaInfo = namedtuple('MetaInfo','data, vocab_x, vocab_y, references')\n", + "ExpInfo = namedtuple('ExpInfo','configs results')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def read_logs_geca(log_file, datainfo=None, read_category=False, read_references=False):\n", + " ext = re.compile(\"train/\\\\d+/eval_test/(\\\\d+)/(.*?)\\s(.*?)$\")\n", + " with open(log_file,'r') as f:\n", + " log_lines = f.readlines()\n", + " if read_category and (datainfo is not None):\n", + " inps = dict((\" \".join(datainfo.vocab_x.decode(inp[1:-1])),datainfo.data['gen_cats'][i]) for (i,(inp,out)) in enumerate(datainfo.data['gen']))\n", + " expinfo = {}\n", + " results = []\n", + "\n", + " for l in log_lines:\n", + " l = l.strip()\n", + " if \"# --\" in l:\n", + " option = l.split(\"# --\")[-1]\n", + " if \"=\" in option:\n", + " k,v = option.split(\"=\")\n", + " expinfo[k] = v\n", + " else:\n", + " if option.startswith('no'):\n", + " expinfo[option[2:]] = False\n", + " else:\n", + " expinfo[option] = True\n", + " else:\n", + " match = ext.search(l)\n", + " if match is not None:\n", + " idx, info, value = match.groups(0)\n", + " idx = int(idx) + 1\n", + " if int(idx) > len(results):\n", + " results.append({})\n", + " val = value.split(\" \")\n", + " if info == \"corr\":\n", + " info = \"label\"\n", + " val = val[0] == \"1\"\n", + " results[int(idx)-1][info] = val\n", + " if info == \"input\" and datainfo is not None:\n", + " if read_category:\n", + " results[int(idx)-1][\"category\"] = inps[\" \".join(val)]\n", + " if read_references:\n", + " results[int(idx)-1][\"references\"] = datainfo.references[' '+ \" \".join(val) + ' ']\n", + " if \"rare_words\" in datainfo.data:\n", + " results[int(idx)-1][\"rare\"] = any(w in val for w in datainfo.data[\"rare_words\"])\n", + " \n", + " if \"aligner\" in expinfo and expinfo[\"aligner\"] not in (\"\",\"uniform\",\"random\"):\n", + " with open(expinfo[\"aligner\"].split(\"//\")[-1],\"r\") as f:\n", + " expinfo[\"alignment\"] = json.load(f)\n", + "\n", + " if len(results) == 0:\n", + " return None\n", + " return ExpInfo(configs=expinfo,results=results)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def read_logs(log_file, datainfo=None, read_category=False, read_references=False):\n", + " ext = re.compile(\"test evaluation \\(greedy\\)/(\\\\d+)/(.*?)\\s(.*?)$\")\n", + " with open(log_file,'r') as f:\n", + " log_lines = f.readlines()\n", + " if read_category and (datainfo is not None):\n", + " inps = dict((\" \".join(datainfo.vocab_x.decode(inp[1:-1])),datainfo.data['gen_cats'][i]) for (i,(inp,out)) in enumerate(datainfo.data['gen']))\n", + " expinfo = {}\n", + " results = []\n", + "\n", + " for l in log_lines:\n", + " l = l.strip()\n", + " if \"# --\" in l:\n", + " option = l.split(\"# --\")[-1]\n", + " if \"=\" in option:\n", + " k,v = option.split(\"=\")\n", + " expinfo[k] = v\n", + " else:\n", + " if option.startswith('no'):\n", + " expinfo[option[2:]] = False\n", + " else:\n", + " expinfo[option] = True\n", + " else:\n", + " match = ext.search(l)\n", + " if match is not None:\n", + " idx, info, value = match.groups(0)\n", + " if int(idx) > len(results):\n", + " results.append({})\n", + " val = eval(value)\n", + " results[int(idx)-1][info] = val\n", + " if info == \"input\" and datainfo is not None:\n", + " if read_category:\n", + " results[int(idx)-1][\"category\"] = inps[\" \".join(val)]\n", + " if read_references:\n", + " results[int(idx)-1][\"references\"] = datainfo.references[' '+ \" \".join(val) + ' ']\n", + " if \"rare_words\" in datainfo.data:\n", + " results[int(idx)-1][\"rare\"] = any(w in val for w in datainfo.data[\"rare_words\"])\n", + " \n", + " \n", + " if \"seed\" in expinfo and expinfo[\"seed\"] == '0' and \"aligner\" in expinfo and expinfo[\"aligner\"] not in (\"\",\"uniform\",\"random\"):\n", + " with open(expinfo[\"aligner\"].split(\"//\")[-1],\"r\") as f:\n", + " expinfo[\"alignment\"] = json.load(f)\n", + "\n", + " if len(results) == 0:\n", + " return None\n", + " return ExpInfo(configs=expinfo,results=results)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def read_from_protogen_logs(log_file, datainfo=None, read_category=False, read_references=False):\n", + " assert datainfo is not None and read_category == False and read_references == False\n", + " with open(log_file,'r') as f:\n", + " log_lines = f.readlines()\n", + " inps = [\" \".join(datainfo.vocab_x.decode(inp)) for (i,(inp,out)) in enumerate(datainfo.data['test'])]\n", + " inps_nospace = [\"\".join(datainfo.vocab_x.decode(inp)) for (i,(inp,out)) in enumerate(datainfo.data['test'])]\n", + " expinfo = {}\n", + " results = []\n", + " started = False\n", + " idx = 0\n", + " for l in log_lines:\n", + " l = l.strip()\n", + " if not started and l.startswith(\"TEST EVALS\"):\n", + " started = True\n", + " elif l.startswith(\"VAL EVALS\"):\n", + " started= False\n", + " elif started:\n", + " if l.startswith(\"INPUT:\"):\n", + " idx += 1\n", + " results.append({})\n", + " _, inp, label = l.split(\" \")\n", + " label = True if label == \"true\" else False\n", + " results[idx-1]['label'] = label\n", + "# pdb.set_trace()\n", + " inp=inp.replace(\"🎬\",\"\").replace(\"🏁\",\"\")\n", + " results[idx-1]['input'] = inps[inps_nospace.index(inp)] \n", + " elif l.startswith(\"REF:\"):\n", + " results[idx-1]['gold'] = l.split(\"REF: \")[-1].split(\" \")\n", + " elif l.startswith(\"PRED:\"):\n", + " results[idx-1]['pred'] = l.split(\"PRED: \")[-1].split(\" \")\n", + " if len(results) == 0:\n", + " return None\n", + " return ExpInfo(configs=expinfo,results=results)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## SCAN" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def read_scan(scan_split=\"around_right\", seed=0):\n", + " random.seed(seed)\n", + " np.random.seed(seed)\n", + " torch.manual_seed(seed)\n", + " vocab_x = Vocab()\n", + " vocab_y = Vocab()\n", + " references = None\n", + " data = {}\n", + " max_len_x, max_len_y = 0, 0\n", + " reg = re.compile('^IN\\:\\s(.*?)\\sOUT\\: (.*?)$')\n", + " if scan_split == \"around_right\":\n", + " scan_file = ROOT_FOLDER + \"/SCAN/template_split/tasks_{}_template_around_right.txt\"\n", + " else:\n", + " scan_file = ROOT_FOLDER + \"/SCAN/add_prim_split/tasks_{}_addprim_jump.txt\"\n", + " for split in (\"train\", \"test\"):\n", + " split_data = []\n", + " for l in open(scan_file.format(split),\"r\").readlines():\n", + " m = reg.match(l)\n", + " inp, out = m.groups(1)\n", + " inp, out = (inp.split(\" \"), out.split(\" \"))\n", + " max_len_x = max(len(inp),max_len_x)\n", + " max_len_y = max(len(out),max_len_y)\n", + " for t in inp:\n", + " vocab_x.add(t)\n", + " for t in out:\n", + " vocab_y.add(t)\n", + " split_data.append(encode_io((inp,out),vocab_x,vocab_y))\n", + " data[split] = split_data\n", + "\n", + " val_size = math.floor(len(data[\"train\"])*0.01)\n", + " train_size = len(data[\"train\"])-val_size\n", + " train_items, val_items = torch.utils.data.random_split(data[\"train\"],[train_size, val_size])\n", + " test_items = data[\"test\"]\n", + " max_len_x+=1\n", + " max_len_y+=1\n", + " print(\"vocab_x len: \", len(vocab_x))\n", + " print(\"vocab_y len: \", len(vocab_y))\n", + " print(\"split lengts: \", [(k,len(v)) for (k,v) in data.items()])\n", + " return MetaInfo(data=data, vocab_x=vocab_x,vocab_y=vocab_y, references=references)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 18\n", + "vocab_y len: 11\n", + "split lengts: [('train', 15225), ('test', 4476)]\n" + ] + } + ], + "source": [ + "scaninfo = read_scan(scan_split=\"around_right\", seed=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "#scan_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/SCAN/0.5aligner_jump_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/eval.0.out\")\n", + "scan_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/SCAN/jump_simple/eval.0.out\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "scan_geca_expinfo = read_from_protogen_logs(\"/home/gridsan/eakyurek/git/protogen/checkpoints_scan_geca/SCANDataSet/logs/2proto.vae.false.around_right.seed.0.cond.log\", datainfo=scaninfo)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## COLORS" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "def read_colors(full_data=True, seed=0):\n", + " random.seed(seed)\n", + " np.random.seed(seed)\n", + " torch.manual_seed(seed)\n", + " vocab_x = Vocab()\n", + " vocab_y = Vocab()\n", + " references = None\n", + " #input_symbols_list = set(['red', 'yellow', 'green', 'blue', 'purple', 'pink', 'around', 'thrice', 'after'])\n", + " #state = random.getstate()\n", + " # random.seed(0)\n", + " input_symbols_list = set(['dax', 'lug', 'wif', 'zup', 'fep', 'blicket', 'kiki', 'tufa', 'gazzer'])\n", + " output_symbols_list = set(['RED', 'YELLOW', 'GREEN', 'BLUE', 'PURPLE', 'PINK'])\n", + " study, test = get_fig2_exp(input_symbols_list, output_symbols_list)\n", + " #random.setstate(state)\n", + "\n", + " if full_data:\n", + " for sym in input_symbols_list:\n", + " vocab_x.add(sym)\n", + " for sym in output_symbols_list:\n", + " vocab_y.add(sym)\n", + " max_len_x = 7\n", + " max_len_y = 9\n", + " else:\n", + " test, study = study[3:4], study[0:3]\n", + " for (x,y) in test+study:\n", + " for sym in x:\n", + " vocab_x.add(sym)\n", + " for sym in y:\n", + " vocab_y.add(sym)\n", + " max_len_x = 2\n", + " max_len_y = 2\n", + "\n", + " data = {}\n", + " train_items, test_items = encode(study, vocab_x, vocab_y), encode(test,vocab_x, vocab_y)\n", + " data['train'] = train_items\n", + " data['test'] = test_items\n", + " val_items = test_items #TODO: create a val set\n", + " return MetaInfo(data=data, vocab_x=vocab_x,vocab_y=vocab_y, references=references)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "colorsinfo = read_colors()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "MetaInfo(data={'train': [([1, 8, 2], [1, 6, 2]), ([1, 13, 2], [1, 5, 2]), ([1, 12, 2], [1, 9, 2]), ([1, 7, 2], [1, 10, 2]), ([1, 13, 10, 2], [1, 5, 5, 5, 2]), ([1, 8, 10, 2], [1, 6, 6, 6, 2]), ([1, 13, 9, 12, 2], [1, 5, 9, 5, 2]), ([1, 12, 9, 8, 2], [1, 9, 6, 9, 2]), ([1, 13, 11, 12, 2], [1, 9, 5, 2]), ([1, 8, 11, 13, 2], [1, 5, 6, 2]), ([1, 13, 10, 11, 12, 2], [1, 9, 5, 5, 5, 2]), ([1, 12, 11, 8, 9, 13, 2], [1, 6, 5, 6, 9, 2]), ([1, 13, 11, 12, 10, 2], [1, 9, 9, 9, 5, 2]), ([1, 12, 9, 8, 11, 13, 2], [1, 5, 9, 6, 9, 2])], 'test': [([1, 7, 10, 2], [1, 10, 10, 10, 2]), ([1, 7, 9, 13, 2], [1, 10, 5, 10, 2]), ([1, 8, 9, 7, 2], [1, 6, 10, 6, 2]), ([1, 7, 11, 8, 2], [1, 6, 10, 2]), ([1, 12, 11, 7, 2], [1, 10, 9, 2]), ([1, 7, 10, 11, 13, 2], [1, 5, 10, 10, 10, 2]), ([1, 12, 11, 7, 10, 2], [1, 10, 10, 10, 9, 2]), ([1, 13, 11, 12, 9, 7, 2], [1, 9, 10, 9, 5, 2]), ([1, 7, 9, 12, 11, 8, 10, 2], [1, 6, 6, 6, 10, 9, 10, 2]), ([1, 7, 9, 7, 11, 7, 10, 2], [1, 10, 10, 10, 10, 10, 10, 2])]}, vocab_x=, vocab_y=, references=None)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "colorsinfo" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "color_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/COLOR/simple/eval.0.out\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## COGS" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "def read_cogs(seed=0):\n", + " random.seed(seed)\n", + " np.random.seed(seed)\n", + " torch.manual_seed(seed)\n", + " vocab_x = Vocab()\n", + " vocab_y = Vocab()\n", + " references = None\n", + " data = {}\n", + " max_len_x, max_len_y = 0, 0\n", + " count_x, count_y = Counter(), Counter()\n", + " for split in (\"train\", \"dev\", \"test\", \"gen\"):\n", + " split_data = []\n", + " split_cats = []\n", + " for l in open(f\"{ROOT_FOLDER}/COGS/cogs/{split}.tsv\",\"r\").readlines():\n", + " text, sparse, category = l.split(\"\\t\")\n", + " text, sparse = (text.split(\" \"), sparse.split(\" \"))\n", + " max_len_x = max(len(text),max_len_x)\n", + " max_len_y = max(len(sparse),max_len_y)\n", + " for t in text:\n", + " vocab_x.add(t)\n", + " if split == \"train\":\n", + " count_x[t] += 1\n", + " vocab_y.add(t)\n", + " for t in sparse:\n", + " vocab_y.add(t)\n", + " vocab_x.add(t)\n", + " if split == \"train\":\n", + " count_y[t] += 1\n", + " split_cats.append(category.strip())\n", + " split_data.append(encode_io((text,sparse),vocab_x,vocab_y))\n", + " data[split] = split_data\n", + " data[split + '_cats'] = split_cats\n", + " max_len_x+=1\n", + " max_len_y+=1\n", + " data['rare_words'] = [x for x, count in count_x.items() if count == 1]\n", + "\n", + " print(\"vocab_x len: \", len(vocab_x))\n", + " print(\"vocab_y len: \", len(vocab_y))\n", + " print(\"split lengts: \", [(k,len(v)) for (k,v) in data.items()])\n", + " return MetaInfo(data=data, vocab_x=vocab_x,vocab_y=vocab_y, references=references)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 876\n", + "vocab_y len: 876\n", + "split lengts: [('train', 24155), ('train_cats', 24155), ('dev', 3000), ('dev_cats', 3000), ('test', 3000), ('test_cats', 3000), ('gen', 21000), ('gen_cats', 21000), ('rare_words', 85)]\n" + ] + } + ], + "source": [ + "cogsinfo = read_cogs()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "21000" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(cogsinfo.data['gen'])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "#cogs_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/COGS/aligner_COGS_lr_1.0_warmup_4000_max_8000/eval.1.out\", datainfo=cogsinfo, read_category=True)\n", + "cogs_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/COGS/simple/eval.1.out\", datainfo=cogsinfo, read_category=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'label': False,\n", + " 'tp': 217,\n", + " 'fp': 5,\n", + " 'fn': 52,\n", + " 'input': ['Camila',\n", + " 'wished',\n", + " 'that',\n", + " 'Emma',\n", + " 'noticed',\n", + " 'that',\n", + " 'a',\n", + " 'butterfly',\n", + " 'admired',\n", + " 'that',\n", + " 'the',\n", + " 'professor',\n", + " 'believed',\n", + " 'that',\n", + " 'Mia',\n", + " 'liked',\n", + " 'that',\n", + " 'Liam',\n", + " 'appreciated',\n", + " 'that',\n", + " 'the',\n", + " 'giraffe',\n", + " 'liked',\n", + " 'that',\n", + " 'William',\n", + " 'proved',\n", + " 'that',\n", + " 'Zoe',\n", + " 'noticed',\n", + " 'that',\n", + " 'the',\n", + " 'zebra',\n", + " 'thought',\n", + " 'that',\n", + " 'Leo',\n", + " 'liked',\n", + " 'that',\n", + " 'Ava',\n", + " 'confessed',\n", + " 'that',\n", + " 'the',\n", + " 'plate',\n", + " 'burned',\n", + " '.'],\n", + " 'category': 'cp_recursion',\n", + " 'rare': False,\n", + " 'gold': ['*',\n", + " 'professor',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ')',\n", + " ';',\n", + " '*',\n", + " 'giraffe',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '21',\n", + " ')',\n", + " ';',\n", + " '*',\n", + " 'zebra',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '31',\n", + " ')',\n", + " ';',\n", + " '*',\n", + " 'plate',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '41',\n", + " ')',\n", + " ';',\n", + " 'wish',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '1',\n", + " ',',\n", + " 'Camila',\n", + " ')',\n", + " 'AND',\n", + " 'wish',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '1',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ',',\n", + " 'Emma',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ')',\n", + " 'AND',\n", + " 'butterfly',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '7',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '7',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '15',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '15',\n", + " ',',\n", + " 'Mia',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '15',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '18',\n", + " ')',\n", + " 'AND',\n", + " 'appreciate',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '18',\n", + " ',',\n", + " 'Liam',\n", + " ')',\n", + " 'AND',\n", + " 'appreciate',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '18',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '22',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '22',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '21',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '22',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '25',\n", + " ')',\n", + " 'AND',\n", + " 'prove',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '25',\n", + " ',',\n", + " 'William',\n", + " ')',\n", + " 'AND',\n", + " 'prove',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '25',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '28',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '28',\n", + " ',',\n", + " 'Zoe',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '28',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '32',\n", + " ')',\n", + " 'AND',\n", + " 'think',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '32',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '31',\n", + " ')',\n", + " 'AND',\n", + " 'think',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '32',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '35',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '35',\n", + " ',',\n", + " 'Leo',\n", + " ')',\n", + " 'AND',\n", + " 'like',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '35',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '38',\n", + " ')',\n", + " 'AND',\n", + " 'confess',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '38',\n", + " ',',\n", + " 'Ava',\n", + " ')',\n", + " 'AND',\n", + " 'confess',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '38',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '42',\n", + " ')',\n", + " 'AND',\n", + " 'burn',\n", + " '.',\n", + " 'theme',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '42',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '41',\n", + " ')'],\n", + " 'pred': ['*',\n", + " 'professor',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ')',\n", + " ';',\n", + " '*',\n", + " 'professor',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ')',\n", + " ';',\n", + " '*',\n", + " 'zebra',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '14',\n", + " ')',\n", + " ';',\n", + " 'wish',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '1',\n", + " ',',\n", + " 'Camila',\n", + " ')',\n", + " 'AND',\n", + " 'wish',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '1',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ',',\n", + " 'Emma',\n", + " ')',\n", + " 'AND',\n", + " 'notice',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '4',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ')',\n", + " 'AND',\n", + " 'butterfly',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '7',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '7',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '10',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '10',\n", + " ',',\n", + " 'William',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '10',\n", + " ',',\n", + " 'William',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '10',\n", + " ',',\n", + " 'William',\n", + " ')',\n", + " 'AND',\n", + " 'admire',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ',',\n", + " 'Ava',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'ccomp',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '8',\n", + " ',',\n", + " 'x',\n", + " '_',\n", + " '12',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'agent',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ',',\n", + " 'Ava',\n", + " ')',\n", + " 'AND',\n", + " 'believe',\n", + " '.',\n", + " 'theme',\n", + " '(',\n", + " 'x',\n", + " '_',\n", + " '11',\n", + " ',',\n", + " 'Mia',\n", + " ')']}" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cogs_expinfo.results[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## TRANSLATE" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "def read_translate(seed=0):\n", + " random.seed(seed)\n", + " np.random.seed(seed)\n", + " torch.manual_seed(seed)\n", + " vocab_x = Vocab()\n", + " vocab_y = Vocab()\n", + " references = None\n", + " data = {}\n", + " max_len_x, max_len_y = 0, 0\n", + " count_x, count_y = Counter(), Counter()\n", + " count_x_train = Counter()\n", + " for split in (\"train\", \"dev\", \"test\"):\n", + " split_data = []\n", + " translate_file = f\"{ROOT_FOLDER}/TRANSLATE/cmn.txt_{split}_tokenized.tsv\"\n", + " for l in open(translate_file,\"r\").readlines():\n", + " input, output = l.split(\"\\t\")\n", + " inp, out = (input.strip().split(\" \"), output.strip().split(\" \"))\n", + " max_len_x = max(len(inp),max_len_x)\n", + " max_len_y = max(len(out),max_len_y)\n", + " for t in inp:\n", + " count_x[t] += 1\n", + " if split == \"train\":\n", + " count_x_train[t] += 1\n", + " for t in out:\n", + " count_y[t] += 1\n", + " split_data.append((inp,out))\n", + "\n", + " data[split] = split_data\n", + "\n", + "\n", + " # pdb.set_trace()\n", + " count_x = count_x.most_common(15000) #threshold to 10k words\n", + " count_y = count_y.most_common(26000) #threshold to 10k words\n", + "\n", + " for (x,_) in count_x:\n", + " vocab_x.add(x)\n", + " for (y,_) in count_y:\n", + " vocab_y.add(y)\n", + "\n", + " edata = {}\n", + " references = {}\n", + " for (split,split_data) in data.items():\n", + " esplit = []\n", + " for (inp,out) in split_data:\n", + " (einp, eout) = encode_io((inp,out),vocab_x,vocab_y)\n", + " esplit.append((einp, eout))\n", + " sinp = \" \".join(vocab_x.decode(einp))\n", + " if sinp in references:\n", + " references[sinp].append(out)\n", + " else:\n", + " references[sinp] = [out]\n", + " edata[split] = esplit\n", + " data = edata\n", + "\n", + " data['rare_words'] = [x for x, count in count_x_train.items() if count == 1]\n", + "\n", + " max_len_x+=1\n", + " max_len_y+=1\n", + " print(\"vocab_x len: \", len(vocab_x))\n", + " print(\"vocab_y len: \", len(vocab_y))\n", + " print(\"split lengts: \", [(k,len(v)) for (k,v) in data.items()])\n", + "\n", + " train_items = data[\"train\"]\n", + " val_items = data[\"dev\"]\n", + " test_items = data[\"test\"]\n", + " return MetaInfo(data=data, vocab_x=vocab_x,vocab_y=vocab_y, references=references)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 7292\n", + "vocab_y len: 12699\n", + "split lengts: [('train', 19222), ('dev', 2402), ('test', 2402), ('rare_words', 2809)]\n" + ] + } + ], + "source": [ + "translateinfo = read_translate()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "#translate_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/TRANSLATE/aligner_TRANSLATE_lr_1.0_warmup_4000_max_8000/eval.0.out\", datainfo=translateinfo, read_references=True)\n", + "translate_expinfo = read_logs(f\"{ROOT_FOLDER}/exp/TRANSLATE/simple/eval.0.out\", datainfo=translateinfo, read_references=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "translate_expinfo.results[0];" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "def get_labels(results, rare=False, category=None):\n", + " if not rare:\n", + " if category is None:\n", + " labels = [res['label'] for res in results]\n", + " else:\n", + " labels = [res['label'] for res in results if category in res['category']]\n", + " else:\n", + " labels = [res['label'] for res in results if res['rare']]\n", + " \n", + " return labels\n", + "\n", + "def get_preds_references(results, rare=False):\n", + " preds = []\n", + " references = []\n", + " for res in results:\n", + " if rare:\n", + " if res['rare']:\n", + " preds.append(res['pred'])\n", + " references.append(res['references'])\n", + " else:\n", + " preds.append(res['pred'])\n", + " references.append(res['references'])\n", + " return (references, preds)\n", + "\n", + "def get_accuracy(arr_results, rare=False, category=None):\n", + " arr_labels = [get_labels(res, rare=rare, category=category) for res in arr_results]\n", + " means = [np.mean(labels) for labels in arr_labels]\n", + " return mean_std(means)\n", + "\n", + "def sort_inputs(results):\n", + " return sorted(results, key=lambda k: k['input'])\n", + "\n", + "from scipy import stats\n", + "\n", + "def flatten(t):\n", + " return [item for sublist in t for item in sublist]\n", + "\n", + "def get_t_test(arr_results1, arr_results2, rare=False, category=None):\n", + " arr_labels1 = flatten([get_labels(sort_inputs(res), rare=rare, category=category) for res in arr_results1])\n", + " arr_labels2 = flatten([get_labels(sort_inputs(res), rare=rare, category=category) for res in arr_results2])\n", + " return stats.ttest_rel(np.array(arr_labels1).astype(int), np.array(arr_labels2).astype(int)).pvalue\n", + "\n", + "# from IPython.core.debugger import Tracer\n", + "\n", + "def get_bleu(arr_results, rare=False):\n", + " arr_labels = [get_preds_references(res, rare=rare) for res in arr_results]\n", + " bleus = [corpus_bleu(*labels) for labels in arr_labels]\n", + " return mean_std(bleus)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 18\n", + "vocab_y len: 11\n", + "split lengts: [('train', 15225), ('test', 4476)]\n", + "vocab_x len: 18\n", + "vocab_y len: 11\n", + "split lengts: [('train', 14670), ('test', 7706)]\n" + ] + } + ], + "source": [ + "around_right_info = read_scan(scan_split=\"around_right\", seed=0)\n", + "jump_info = read_scan(scan_split=\"jump\", seed=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict_keys(['train', 'dev', 'test', 'rare_words'])" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "translateinfo.data.keys()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\\begin{tabular}{lrrrrr}\n", + "\\toprule\n", + "{} & around\\_right & jump & COGS & Colors & ENG-CHN \\\\\n", + "\\midrule\n", + "train & 15225.0 & 14670.0 & 24155 & 14.0 & 19222 \\\\\n", + "test & 4476.0 & 7706.0 & 21000 & 10.0 & 2402 \\\\\n", + "val & NaN & NaN & 3000 & NaN & 2402 \\\\\n", + "\\bottomrule\n", + "\\end{tabular}\n", + "\n" + ] + } + ], + "source": [ + "print(pd.DataFrame({\"around_right\": { \"train\": len(around_right_info.data['train']), \"test\": len(around_right_info.data['test'])},\n", + " \"jump\": {\"train\": len(jump_info.data['train']), \"test\": len(jump_info.data['test'])},\n", + " \"COGS\": {\"train\": len(cogsinfo.data['train']), \"val\": len(cogsinfo.data['dev']), \"test\":len(cogsinfo.data['gen'])},\n", + " \"Colors\": {\"train\": len(colorsinfo.data['train']),\"test\":len(colorsinfo.data['test'])},\n", + " \"ENG-CHN\": {\"train\": len(translateinfo.data['train']), \"val\": len(translateinfo.data['dev']), \"test\":len(translateinfo.data['test'])},\n", + "}).to_latex())" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.9948092395535946+/-0" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_accuracy([scan_expinfo.results])" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.18465612153073022+/-0" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_bleu([translate_expinfo.results], rare=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Main Results" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "exp_home=\"exp/\"" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "def read_all_results(exp_folders, exp_name, datainfo=None, rng=range(10), fnameformat = \"eval.{}.out\", read_references=False, read_category=False):\n", + " exp_results = {}\n", + " for (model_name, folder) in exp_folders.items():\n", + " results = []\n", + " for i in rng:\n", + " if not model_name.startswith(\"geca\"):\n", + " exp_file = folder + f\"eval.{i}.out\"\n", + " reader = read_logs\n", + " elif model_name == \"geca\":\n", + " exp_file = folder + f\"2proto.vae.false.{exp_name}.seed.{i}.cond.log\"\n", + " reader = read_from_protogen_logs\n", + " elif model_name == \"geca_j\":\n", + " exp_file = folder + f\"eval.{i}.out\"\n", + " reader = read_logs_geca\n", + " \n", + " if os.path.exists(exp_file):\n", + " result = reader(exp_file, datainfo=datainfo, read_references=read_references, read_category=read_category)\n", + " if result is None:\n", + " print(model_name, f\" seed {i} not complete\")\n", + " else:\n", + " results.append(result)\n", + " else:\n", + " print(model_name, f\" seed {i} is missing\")\n", + " exp_results[model_name] = results\n", + " return exp_results" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_scores = {}\n", + "main_table_significance = {}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## SCAN Results" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "scan_home = exp_home + \"SCAN/\"\n", + "geca_home = \"/home/gridsan/eakyurek/git/protogen/checkpoints_scan_geca/SCANDataSet/logs/\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Around Right" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "def around_right(datainfo=None):\n", + " prefix = scan_home + \"around_right_\"\n", + " exp_folders = {\"lstm\":scan_home + \"LSTM_around_right_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/\",\n", + " \"lstmcopy\":scan_home + \"LSTM_around_right_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/\",\n", + " \"simple\": prefix + \"simple/\",\n", + " \"pmi\":prefix + \"pmi/\",\n", + " \"intersect\": prefix + \"fast_intersect/\",\n", + " \"forward\": scan_home + \"fast_forward_around_right_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/\",\n", + " \"goodman\":prefix + \"goodman/\",\n", + " \"geca\":geca_home,\n", + " \"synatt\": f\"{ROOT_FOLDER}/syntactic_attention/around_right_logs/\"}\n", + " return read_all_results(exp_folders, \"around_right\", datainfo=datainfo)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_scores[\"around_right\"] = {}\n", + "main_table_significance[\"around_right\"] = {}" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 18\n", + "vocab_y len: 11\n", + "split lengts: [('train', 15225), ('test', 4476)]\n" + ] + } + ], + "source": [ + "around_right_results = around_right(datainfo=read_scan(scan_split=\"around_right\", seed=0))" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "for (exp_name, results) in around_right_results.items():\n", + " main_table_scores[\"around_right\"][exp_name] = get_accuracy([result.results for result in results])" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'around_right': {'lstm': 0.08646112600536192+/-0.045231659739827956,\n", + " 'lstmcopy': 0.08646112600536192+/-0.045231659739827956,\n", + " 'simple': 0.9493967828418229+/-0.012642238428318108,\n", + " 'pmi': 0.020352993744414658+/-0.034984405194322846,\n", + " 'intersect': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'forward': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'goodman': 0.02064343163538874+/-0.03909743393335053,\n", + " 'geca': 0.9849865951742626+/-0.019047330258969555,\n", + " 'synatt': 0.27625111706881145+/-0.2578109680038039}}" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [], + "source": [ + "def update_significance(results, significances, rare=False):\n", + " for m1 in results.keys():\n", + " significances[m1] = {}\n", + " for m2 in results.keys():\n", + " if m1 != m2:\n", + " results1 = [result.results for result in results[m1]]\n", + " results2 = [result.results for result in results[m2]]\n", + " significances[m1][m2] = get_t_test(results1, results2,rare=rare)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [], + "source": [ + "update_significance(around_right_results,main_table_significance[\"around_right\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'lstm': {'lstmcopy': nan,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'lstmcopy': {'lstm': nan,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'simple': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 2.279297480028008e-225,\n", + " 'synatt': 0.0},\n", + " 'pmi': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'intersect': 2.988191268913685e-196,\n", + " 'forward': 2.988191268913685e-196,\n", + " 'goodman': 0.7285444606257238,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'intersect': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 2.988191268913685e-196,\n", + " 'forward': nan,\n", + " 'goodman': 3.918865233308645e-199,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'forward': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 2.988191268913685e-196,\n", + " 'intersect': nan,\n", + " 'goodman': 3.918865233308645e-199,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'goodman': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.7285444606257238,\n", + " 'intersect': 3.918865233308645e-199,\n", + " 'forward': 3.918865233308645e-199,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'geca': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 2.279297480028008e-225,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'synatt': 0.0},\n", + " 'synatt': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0}}" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_significance[\"around_right\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### JUMP" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "def jump(datainfo=None):\n", + " prefix = scan_home + \"jump_\"\n", + " exp_folders = {\"lstm\":scan_home + \"LSTM_jump_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/\",\n", + " \"lstmcopy\":scan_home + \"LSTM_jump_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/\",\n", + " \"simple\": prefix + \"simple/\",\n", + " \"pmi\":prefix + \"pmi/\",\n", + " \"intersect\": prefix + \"fast_intersect/\",\n", + " \"forward\": prefix+ \"simple/\",\n", + " \"goodman\":prefix + \"goodman/\",\n", + " \"geca\":geca_home,\n", + " \"synatt\": f\"{ROOT_FOLDER}/syntactic_attention/jump_logs/\"}\n", + " return read_all_results(exp_folders, \"jump\", datainfo=datainfo, read_references=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_significance[\"jump\"] = {}" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "vocab_x len: 18\n", + "vocab_y len: 11\n", + "split lengts: [('train', 14670), ('test', 7706)]\n" + ] + } + ], + "source": [ + "main_table_scores[\"jump\"] = {}\n", + "jump_results = jump(datainfo=read_scan(scan_split=\"jump\", seed=0))" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "for (exp_name, results) in jump_results.items():\n", + "# print(exp_name, \" \", len(results))\n", + "# print(np.sum([len(result.results) for result in results]))\n", + " main_table_scores[\"jump\"][exp_name] = get_accuracy([result.results for result in results])" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'lstm': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'lstmcopy': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'simple': 0.9168569945497016+/-0.17091975971191123,\n", + " 'pmi': 0.954684661302881+/-0.0816483642264005,\n", + " 'intersect': 0.7905528159875421+/-0.26787430886295,\n", + " 'forward': 0.9168569945497016+/-0.17091975971191123,\n", + " 'goodman': 0.8161302880872048+/-0.28978730899164934,\n", + " 'geca': 0.9994030625486634+/-0.000993729027722646,\n", + " 'synatt': 0.5727744614586037+/-0.38042580893911965}" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_scores['jump']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "update_significance(jump_results,main_table_significance[\"jump\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'lstm': {'lstmcopy': nan,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'lstmcopy': {'lstm': nan,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'simple': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'pmi': 4.990718693820838e-234,\n", + " 'intersect': 0.0,\n", + " 'forward': nan,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'pmi': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 4.990718693820838e-234,\n", + " 'intersect': 0.0,\n", + " 'forward': 4.990718693820838e-234,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'intersect': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 2.0452490805398883e-94,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'forward': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': nan,\n", + " 'pmi': 4.990718693820838e-234,\n", + " 'intersect': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'goodman': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 2.0452490805398883e-94,\n", + " 'forward': 0.0,\n", + " 'geca': 0.0,\n", + " 'synatt': 0.0},\n", + " 'geca': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'synatt': 0.0},\n", + " 'synatt': {'lstm': 0.0,\n", + " 'lstmcopy': 0.0,\n", + " 'simple': 0.0,\n", + " 'pmi': 0.0,\n", + " 'intersect': 0.0,\n", + " 'forward': 0.0,\n", + " 'goodman': 0.0,\n", + " 'geca': 0.0}}" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_significance[\"jump\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Colors" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [], + "source": [ + "color_home = exp_home + \"COLOR/\"" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "def colors():\n", + " exp_folders = {\"lstm\":color_home + \"LSTM_nbatch_5_dim_128_lr_0.001/\",\n", + " \"lstmcopy\":color_home + \"LSTM_nbatch_5_dim_128_lr_0.001/\",\n", + " \"simple\":color_home + \"simple/\",\n", + " \"pmi\":color_home + \"pmi/\",\n", + " \"intersect\":color_home + \"fast_intersect/\",\n", + " \"forward\":color_home + \"fast_forward/\",\n", + " \"goodman\":color_home + \"goodman/\",\n", + " \"gecax\": color_home + \"geca_nbatch_14_dim_256_lr_0.001_paug_0.3/\",\n", + " \"synatt\": f\"{ROOT_FOLDER}/syntactic_attention/color_logs/\"}\n", + " return read_all_results(exp_folders, \"colors\", rng=range(16))" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "colors_results = colors()\n", + "colors_results['geca'] = colors_results.pop('gecax')\n", + "main_table_scores[\"Colors\"] = {}\n", + "for (exp_name, results) in colors_results.items():\n", + " main_table_scores[\"Colors\"][exp_name] = get_accuracy([result.results for result in results])" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'around_right': {'lstm': 0.08646112600536192+/-0.045231659739827956,\n", + " 'lstmcopy': 0.08646112600536192+/-0.045231659739827956,\n", + " 'simple': 0.9493967828418229+/-0.012642238428318108,\n", + " 'pmi': 0.020352993744414658+/-0.034984405194322846,\n", + " 'intersect': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'forward': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'goodman': 0.02064343163538874+/-0.03909743393335053,\n", + " 'geca': 0.9849865951742626+/-0.019047330258969555,\n", + " 'synatt': 0.27625111706881145+/-0.2578109680038039},\n", + " 'jump': {'lstm': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'lstmcopy': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'simple': 0.9168569945497016+/-0.17091975971191123,\n", + " 'pmi': 0.954684661302881+/-0.0816483642264005,\n", + " 'intersect': 0.7905528159875421+/-0.26787430886295,\n", + " 'forward': 0.9168569945497016+/-0.17091975971191123,\n", + " 'goodman': 0.8161302880872048+/-0.28978730899164934,\n", + " 'geca': 0.9994030625486634+/-0.000993729027722646,\n", + " 'synatt': 0.5727744614586037+/-0.38042580893911965},\n", + " 'Colors': {'lstm': 0.0+/-0,\n", + " 'lstmcopy': 0.0+/-0,\n", + " 'simple': 0.7937500000000001+/-0.024206145913796377,\n", + " 'pmi': 0.4125+/-0.1899835519196333,\n", + " 'intersect': 0.7937500000000001+/-0.024206145913796377,\n", + " 'forward': 0.7937500000000001+/-0.024206145913796377,\n", + " 'goodman': 0.5125+/-0.21469455046647085,\n", + " 'synatt': 0.53125+/-0.26860461183680373,\n", + " 'geca': 0.5+/-0}}" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_significance[\"Colors\"] = {}\n", + "update_significance(colors_results,main_table_significance[\"Colors\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'lstm': {'lstmcopy': nan,\n", + " 'simple': 2.2097249820656808e-56,\n", + " 'pmi': 4.2190134185468056e-20,\n", + " 'intersect': 2.2097249820656808e-56,\n", + " 'forward': 2.2097249820656808e-56,\n", + " 'goodman': 1.3714009158038045e-26,\n", + " 'synatt': 5.962002895383235e-28,\n", + " 'geca': 1.0387991867036785e-25},\n", + " 'lstmcopy': {'lstm': nan,\n", + " 'simple': 2.2097249820656808e-56,\n", + " 'pmi': 4.2190134185468056e-20,\n", + " 'intersect': 2.2097249820656808e-56,\n", + " 'forward': 2.2097249820656808e-56,\n", + " 'goodman': 1.3714009158038045e-26,\n", + " 'synatt': 5.962002895383235e-28,\n", + " 'geca': 1.0387991867036785e-25},\n", + " 'simple': {'lstm': 2.2097249820656808e-56,\n", + " 'lstmcopy': 2.2097249820656808e-56,\n", + " 'pmi': 1.2786842138353946e-17,\n", + " 'intersect': nan,\n", + " 'forward': nan,\n", + " 'goodman': 4.648463972959139e-13,\n", + " 'synatt': 1.3632382270638345e-11,\n", + " 'geca': 4.3894975207545494e-13},\n", + " 'pmi': {'lstm': 4.2190134185468056e-20,\n", + " 'lstmcopy': 4.2190134185468056e-20,\n", + " 'simple': 1.2786842138353946e-17,\n", + " 'intersect': 1.2786842138353946e-17,\n", + " 'forward': 1.2786842138353946e-17,\n", + " 'goodman': 0.03207315416634782,\n", + " 'synatt': 0.007404886108083775,\n", + " 'geca': 0.010151945458338545},\n", + " 'intersect': {'lstm': 2.2097249820656808e-56,\n", + " 'lstmcopy': 2.2097249820656808e-56,\n", + " 'simple': nan,\n", + " 'pmi': 1.2786842138353946e-17,\n", + " 'forward': nan,\n", + " 'goodman': 4.648463972959139e-13,\n", + " 'synatt': 1.3632382270638345e-11,\n", + " 'geca': 4.3894975207545494e-13},\n", + " 'forward': {'lstm': 2.2097249820656808e-56,\n", + " 'lstmcopy': 2.2097249820656808e-56,\n", + " 'simple': nan,\n", + " 'pmi': 1.2786842138353946e-17,\n", + " 'intersect': nan,\n", + " 'goodman': 4.648463972959139e-13,\n", + " 'synatt': 1.3632382270638345e-11,\n", + " 'geca': 4.3894975207545494e-13},\n", + " 'goodman': {'lstm': 1.3714009158038045e-26,\n", + " 'lstmcopy': 1.3714009158038045e-26,\n", + " 'simple': 4.648463972959139e-13,\n", + " 'pmi': 0.03207315416634782,\n", + " 'intersect': 4.648463972959139e-13,\n", + " 'forward': 4.648463972959139e-13,\n", + " 'synatt': 0.7067135156000044,\n", + " 'geca': 0.6961784881720334},\n", + " 'synatt': {'lstm': 5.962002895383235e-28,\n", + " 'lstmcopy': 5.962002895383235e-28,\n", + " 'simple': 1.3632382270638345e-11,\n", + " 'pmi': 0.007404886108083775,\n", + " 'intersect': 1.3632382270638345e-11,\n", + " 'forward': 1.3632382270638345e-11,\n", + " 'goodman': 0.7067135156000044,\n", + " 'geca': 0.4577836765682082},\n", + " 'geca': {'lstm': 1.0387991867036785e-25,\n", + " 'lstmcopy': 1.0387991867036785e-25,\n", + " 'simple': 4.3894975207545494e-13,\n", + " 'pmi': 0.010151945458338545,\n", + " 'intersect': 4.3894975207545494e-13,\n", + " 'forward': 4.3894975207545494e-13,\n", + " 'goodman': 0.6961784881720334,\n", + " 'synatt': 0.4577836765682082}}" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_significance[\"Colors\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Cogs" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_home = exp_home + \"COGS/\"" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [], + "source": [ + "def cogs(datainfo=None):\n", + " \n", + " exp_folders = {\"geca_j\": cogs_home + \"geca_j/\",\n", + " \"lstm\":cogs_home + \"LSTM/\",\n", + " \"lstmcopy\":cogs_home + \"LSTM_copy/\",\n", + " \"simple\":cogs_home + \"simple/\",\n", + " \"pmi\":cogs_home + \"pmi/\",\n", + " \"intersect\":cogs_home + \"fast_intersect/\",\n", + " \"forward\":cogs_home + \"fast_forward/\",\n", + " \"goodman\":cogs_home + \"goodman/\",\n", + " \"synatt\":f\"{ROOT_FOLDER}/syntactic_attention/cogs_large_logs/\"}\n", + " return read_all_results(exp_folders,\"cogs\", datainfo=datainfo, read_category=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_results = cogs(datainfo=cogsinfo)\n", + "main_table_scores[\"COGS\"] = {}\n", + "cogs_results['geca'] = cogs_results.pop('geca_j')" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [], + "source": [ + "# cogs_results['pmi'].insert(7,cogs_results['pmi'][7])" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [], + "source": [ + "for (exp_name, results) in cogs_results.items():\n", + " main_table_scores[\"COGS\"][exp_name] = get_accuracy([result.results for result in results])" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [], + "source": [ + "#cogs_results['pmi'][7] = cogs_results['pmi'][8] # sorry for missing experiments" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_significance[\"COGS\"] = {}\n", + "update_significance(cogs_results,main_table_significance[\"COGS\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [], + "source": [ + "main_table_significance;" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [], + "source": [ + "def diagonalize(df):\n", + " return df.loc[df.columns]" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lstmlstmcopysimplepmiintersectforwardgoodmansynattgeca
lstmNaNNaN2.209725e-564.219013e-202.209725e-562.209725e-561.371401e-265.962003e-281.038799e-25
lstmcopyNaNNaN2.209725e-564.219013e-202.209725e-562.209725e-561.371401e-265.962003e-281.038799e-25
simple2.209725e-562.209725e-56NaN1.278684e-17NaNNaN4.648464e-131.363238e-114.389498e-13
pmi4.219013e-204.219013e-201.278684e-17NaN1.278684e-171.278684e-173.207315e-027.404886e-031.015195e-02
intersect2.209725e-562.209725e-56NaN1.278684e-17NaNNaN4.648464e-131.363238e-114.389498e-13
forward2.209725e-562.209725e-56NaN1.278684e-17NaNNaN4.648464e-131.363238e-114.389498e-13
goodman1.371401e-261.371401e-264.648464e-133.207315e-024.648464e-134.648464e-13NaN7.067135e-016.961785e-01
synatt5.962003e-285.962003e-281.363238e-117.404886e-031.363238e-111.363238e-117.067135e-01NaN4.577837e-01
geca1.038799e-251.038799e-254.389498e-131.015195e-024.389498e-134.389498e-136.961785e-014.577837e-01NaN
\n", + "
" + ], + "text/plain": [ + " lstm lstmcopy simple pmi \\\n", + "lstm NaN NaN 2.209725e-56 4.219013e-20 \n", + "lstmcopy NaN NaN 2.209725e-56 4.219013e-20 \n", + "simple 2.209725e-56 2.209725e-56 NaN 1.278684e-17 \n", + "pmi 4.219013e-20 4.219013e-20 1.278684e-17 NaN \n", + "intersect 2.209725e-56 2.209725e-56 NaN 1.278684e-17 \n", + "forward 2.209725e-56 2.209725e-56 NaN 1.278684e-17 \n", + "goodman 1.371401e-26 1.371401e-26 4.648464e-13 3.207315e-02 \n", + "synatt 5.962003e-28 5.962003e-28 1.363238e-11 7.404886e-03 \n", + "geca 1.038799e-25 1.038799e-25 4.389498e-13 1.015195e-02 \n", + "\n", + " intersect forward goodman synatt \\\n", + "lstm 2.209725e-56 2.209725e-56 1.371401e-26 5.962003e-28 \n", + "lstmcopy 2.209725e-56 2.209725e-56 1.371401e-26 5.962003e-28 \n", + "simple NaN NaN 4.648464e-13 1.363238e-11 \n", + "pmi 1.278684e-17 1.278684e-17 3.207315e-02 7.404886e-03 \n", + "intersect NaN NaN 4.648464e-13 1.363238e-11 \n", + "forward NaN NaN 4.648464e-13 1.363238e-11 \n", + "goodman 4.648464e-13 4.648464e-13 NaN 7.067135e-01 \n", + "synatt 1.363238e-11 1.363238e-11 7.067135e-01 NaN \n", + "geca 4.389498e-13 4.389498e-13 6.961785e-01 4.577837e-01 \n", + "\n", + " geca \n", + "lstm 1.038799e-25 \n", + "lstmcopy 1.038799e-25 \n", + "simple 4.389498e-13 \n", + "pmi 1.015195e-02 \n", + "intersect 4.389498e-13 \n", + "forward 4.389498e-13 \n", + "goodman 6.961785e-01 \n", + "synatt 4.577837e-01 \n", + "geca NaN " + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "diagonalize(pd.DataFrame(main_table_significance[\"Colors\"]))" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lstmlstmcopysimplepmiintersectforwardgoodmansynattgeca
lstmNaN0.00.000000e+000.000000e+000.000000e+000.00.00.08.631328e-127
lstmcopy0.000000e+00NaN0.000000e+000.000000e+000.000000e+000.00.00.00.000000e+00
simple0.000000e+000.0NaN8.375487e-236.231631e-020.00.00.00.000000e+00
pmi0.000000e+000.08.375487e-23NaN2.003500e-370.00.00.00.000000e+00
intersect0.000000e+000.06.231631e-022.003500e-37NaN0.00.00.00.000000e+00
forward0.000000e+000.00.000000e+000.000000e+000.000000e+00NaN0.00.00.000000e+00
goodman0.000000e+000.00.000000e+000.000000e+000.000000e+000.0NaN0.00.000000e+00
synatt0.000000e+000.00.000000e+000.000000e+000.000000e+000.00.0NaN0.000000e+00
geca8.631328e-1270.00.000000e+000.000000e+000.000000e+000.00.00.0NaN
\n", + "
" + ], + "text/plain": [ + " lstm lstmcopy simple pmi intersect \\\n", + "lstm NaN 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "lstmcopy 0.000000e+00 NaN 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "simple 0.000000e+00 0.0 NaN 8.375487e-23 6.231631e-02 \n", + "pmi 0.000000e+00 0.0 8.375487e-23 NaN 2.003500e-37 \n", + "intersect 0.000000e+00 0.0 6.231631e-02 2.003500e-37 NaN \n", + "forward 0.000000e+00 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "goodman 0.000000e+00 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "synatt 0.000000e+00 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "geca 8.631328e-127 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "\n", + " forward goodman synatt geca \n", + "lstm 0.0 0.0 0.0 8.631328e-127 \n", + "lstmcopy 0.0 0.0 0.0 0.000000e+00 \n", + "simple 0.0 0.0 0.0 0.000000e+00 \n", + "pmi 0.0 0.0 0.0 0.000000e+00 \n", + "intersect 0.0 0.0 0.0 0.000000e+00 \n", + "forward NaN 0.0 0.0 0.000000e+00 \n", + "goodman 0.0 NaN 0.0 0.000000e+00 \n", + "synatt 0.0 0.0 NaN 0.000000e+00 \n", + "geca 0.0 0.0 0.0 NaN " + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "diagonalize(pd.DataFrame(main_table_significance[\"COGS\"]))" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lstmlstmcopysimplepmiintersectforwardgoodmangecasynatt
lstmNaNNaN0.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.0
lstmcopyNaNNaN0.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.0
simple0.00.0NaN0.000000e+000.000000e+000.000000e+000.000000e+002.279297e-2250.0
pmi0.00.00.000000e+00NaN2.988191e-1962.988191e-1967.285445e-010.000000e+000.0
intersect0.00.00.000000e+002.988191e-196NaNNaN3.918865e-1990.000000e+000.0
forward0.00.00.000000e+002.988191e-196NaNNaN3.918865e-1990.000000e+000.0
goodman0.00.00.000000e+007.285445e-013.918865e-1993.918865e-199NaN0.000000e+000.0
geca0.00.02.279297e-2250.000000e+000.000000e+000.000000e+000.000000e+00NaN0.0
synatt0.00.00.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00NaN
\n", + "
" + ], + "text/plain": [ + " lstm lstmcopy simple pmi intersect \\\n", + "lstm NaN NaN 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "lstmcopy NaN NaN 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "simple 0.0 0.0 NaN 0.000000e+00 0.000000e+00 \n", + "pmi 0.0 0.0 0.000000e+00 NaN 2.988191e-196 \n", + "intersect 0.0 0.0 0.000000e+00 2.988191e-196 NaN \n", + "forward 0.0 0.0 0.000000e+00 2.988191e-196 NaN \n", + "goodman 0.0 0.0 0.000000e+00 7.285445e-01 3.918865e-199 \n", + "geca 0.0 0.0 2.279297e-225 0.000000e+00 0.000000e+00 \n", + "synatt 0.0 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "\n", + " forward goodman geca synatt \n", + "lstm 0.000000e+00 0.000000e+00 0.000000e+00 0.0 \n", + "lstmcopy 0.000000e+00 0.000000e+00 0.000000e+00 0.0 \n", + "simple 0.000000e+00 0.000000e+00 2.279297e-225 0.0 \n", + "pmi 2.988191e-196 7.285445e-01 0.000000e+00 0.0 \n", + "intersect NaN 3.918865e-199 0.000000e+00 0.0 \n", + "forward NaN 3.918865e-199 0.000000e+00 0.0 \n", + "goodman 3.918865e-199 NaN 0.000000e+00 0.0 \n", + "geca 0.000000e+00 0.000000e+00 NaN 0.0 \n", + "synatt 0.000000e+00 0.000000e+00 0.000000e+00 NaN " + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "diagonalize(pd.DataFrame(main_table_significance[\"around_right\"]))" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lstmlstmcopysimplepmiintersectforwardgoodmangecasynatt
lstmcopyNaNNaN0.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.00.0
simple0.00.0NaN4.990719e-2340.000000e+00NaN0.000000e+000.00.0
pmi0.00.04.990719e-234NaN0.000000e+004.990719e-2340.000000e+000.00.0
intersect0.00.00.000000e+000.000000e+00NaN0.000000e+002.045249e-940.00.0
forward0.00.0NaN4.990719e-2340.000000e+00NaN0.000000e+000.00.0
goodman0.00.00.000000e+000.000000e+002.045249e-940.000000e+00NaN0.00.0
geca0.00.00.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00NaN0.0
synatt0.00.00.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.0NaN
lstmNaNNaN0.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.00.0
\n", + "
" + ], + "text/plain": [ + " lstm lstmcopy simple pmi intersect \\\n", + "lstmcopy NaN NaN 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "simple 0.0 0.0 NaN 4.990719e-234 0.000000e+00 \n", + "pmi 0.0 0.0 4.990719e-234 NaN 0.000000e+00 \n", + "intersect 0.0 0.0 0.000000e+00 0.000000e+00 NaN \n", + "forward 0.0 0.0 NaN 4.990719e-234 0.000000e+00 \n", + "goodman 0.0 0.0 0.000000e+00 0.000000e+00 2.045249e-94 \n", + "geca 0.0 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "synatt 0.0 0.0 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "lstm NaN NaN 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "\n", + " forward goodman geca synatt \n", + "lstmcopy 0.000000e+00 0.000000e+00 0.0 0.0 \n", + "simple NaN 0.000000e+00 0.0 0.0 \n", + "pmi 4.990719e-234 0.000000e+00 0.0 0.0 \n", + "intersect 0.000000e+00 2.045249e-94 0.0 0.0 \n", + "forward NaN 0.000000e+00 0.0 0.0 \n", + "goodman 0.000000e+00 NaN 0.0 0.0 \n", + "geca 0.000000e+00 0.000000e+00 NaN 0.0 \n", + "synatt 0.000000e+00 0.000000e+00 0.0 NaN \n", + "lstm 0.000000e+00 0.000000e+00 0.0 0.0 " + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame(main_table_significance[\"jump\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'around_right': {'lstm': 0.08646112600536192+/-0.045231659739827956,\n", + " 'lstmcopy': 0.08646112600536192+/-0.045231659739827956,\n", + " 'simple': 0.9493967828418229+/-0.012642238428318108,\n", + " 'pmi': 0.020352993744414658+/-0.034984405194322846,\n", + " 'intersect': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'forward': 0.00020107238605898123+/-0.0004052358611978788,\n", + " 'goodman': 0.02064343163538874+/-0.03909743393335053,\n", + " 'geca': 0.9849865951742626+/-0.019047330258969555,\n", + " 'synatt': 0.27625111706881145+/-0.2578109680038039},\n", + " 'jump': {'lstm': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'lstmcopy': 0.0040877238515442515+/-0.0034491470476186144,\n", + " 'simple': 0.9168569945497016+/-0.17091975971191123,\n", + " 'pmi': 0.954684661302881+/-0.0816483642264005,\n", + " 'intersect': 0.7905528159875421+/-0.26787430886295,\n", + " 'forward': 0.9168569945497016+/-0.17091975971191123,\n", + " 'goodman': 0.8161302880872048+/-0.28978730899164934,\n", + " 'geca': 0.9994030625486634+/-0.000993729027722646,\n", + " 'synatt': 0.5727744614586037+/-0.38042580893911965},\n", + " 'Colors': {'lstm': 0.0+/-0,\n", + " 'lstmcopy': 0.0+/-0,\n", + " 'simple': 0.7937500000000001+/-0.024206145913796377,\n", + " 'pmi': 0.4125+/-0.1899835519196333,\n", + " 'intersect': 0.7937500000000001+/-0.024206145913796377,\n", + " 'forward': 0.7937500000000001+/-0.024206145913796377,\n", + " 'goodman': 0.5125+/-0.21469455046647085,\n", + " 'synatt': 0.53125+/-0.26860461183680373,\n", + " 'geca': 0.5+/-0},\n", + " 'COGS': {'lstm': 0.5095619047619048+/-0.0549003583085177,\n", + " 'lstmcopy': 0.658695238095238+/-0.030558469290058916,\n", + " 'simple': 0.8212904761904761+/-0.00610904129037678,\n", + " 'pmi': 0.8237238095238094+/-0.004820863576537158,\n", + " 'intersect': 0.8208142857142857+/-0.0024147552844750704,\n", + " 'forward': 0.2970095238095238+/-0.06591550903289572,\n", + " 'goodman': 0.6999666666666666+/-0.0353392951586888,\n", + " 'synatt': 0.15436666666666668+/-0.13607927536430178,\n", + " 'geca': 0.477447619047619+/-0.04520303503546232}}" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [], + "source": [ + "main_table = pd.DataFrame(main_table_scores, columns=['COGS','around_right', 'jump', 'Colors'], index=['lstm','lstmcopy','geca','synatt','simple','pmi','intersect','forward','goodman'])" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Colorsjumparound_rightCOGS
lstm0.0+/-00.0041+/-0.00340.09+/-0.050.51+/-0.05
lstmcopy0.0+/-00.0041+/-0.00340.09+/-0.050.659+/-0.031
geca0.5+/-00.9994+/-0.00100.985+/-0.0190.48+/-0.05
synatt0.53+/-0.270.6+/-0.40.28+/-0.260.15+/-0.14
simple0.794+/-0.0240.92+/-0.170.949+/-0.0130.821+/-0.006
pmi0.41+/-0.190.95+/-0.080.020+/-0.0350.824+/-0.005
intersect0.794+/-0.0240.79+/-0.270.0002+/-0.00040.8208+/-0.0024
forward0.794+/-0.0240.92+/-0.170.0002+/-0.00040.30+/-0.07
goodman0.51+/-0.210.82+/-0.290.02+/-0.040.700+/-0.035
\n", + "
" + ], + "text/plain": [ + " Colors jump around_right COGS\n", + "lstm 0.0+/-0 0.0041+/-0.0034 0.09+/-0.05 0.51+/-0.05\n", + "lstmcopy 0.0+/-0 0.0041+/-0.0034 0.09+/-0.05 0.659+/-0.031\n", + "geca 0.5+/-0 0.9994+/-0.0010 0.985+/-0.019 0.48+/-0.05\n", + "synatt 0.53+/-0.27 0.6+/-0.4 0.28+/-0.26 0.15+/-0.14\n", + "simple 0.794+/-0.024 0.92+/-0.17 0.949+/-0.013 0.821+/-0.006\n", + "pmi 0.41+/-0.19 0.95+/-0.08 0.020+/-0.035 0.824+/-0.005\n", + "intersect 0.794+/-0.024 0.79+/-0.27 0.0002+/-0.0004 0.8208+/-0.0024\n", + "forward 0.794+/-0.024 0.92+/-0.17 0.0002+/-0.0004 0.30+/-0.07\n", + "goodman 0.51+/-0.21 0.82+/-0.29 0.02+/-0.04 0.700+/-0.035" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table[['Colors','jump','around_right','COGS']]" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
COGS around_right jump Colors
lstm& 0.51±0.05& 0.086±0.045& 0.0041±0.0034& 0.0±0
lstmcopy& 0.66±0.03& 0.086±0.045& 0.0041±0.0034& 0.0±0
geca& 0.48±0.05& 0.98±0.02& 1.0±0.0& 0.5±0
synatt& 0.15±0.14& 0.28±0.26& 0.57±0.38& 0.53±0.27
simple& 0.82±0.01& 0.95±0.01& 0.92±0.17& 0.79±0.02
pmi& 0.82±0.00& 0.020±0.035& 0.95±0.08& 0.41±0.19
intersect& 0.82±0.00& 0.00020±0.00041& 0.79±0.27& 0.79±0.02
forward& 0.30±0.07& 0.00020±0.00041& 0.92±0.17& 0.79±0.02
goodman& 0.70±0.04& 0.021±0.039& 0.82±0.29& 0.51±0.21
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "main_table.style.format(u'& {:.2P}')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ABLATION I - Translate" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "exp_home =\"exp/\"\n", + "translate_home = exp_home + \"TRANSLATE/\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def translate(datainfo=None):\n", + " exp_folders = {\"pmi\": translate_home + \"pmi/\",\n", + " \"lstm\": translate_home + \"LSTM/\",\n", + " \"simple\": translate_home + \"simple/\", \n", + " \"intersect\" : translate_home + \"fast_intersect/\",\n", + " \"tgeca\": translate_home + \"geca_LSTM/\"}\n", + " return read_all_results(exp_folders,\"translate\", datainfo=datainfo, rng=range(5), read_references=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# translate_model = torch.load(translate_home + \"learn_temp_1.0_aligner_TRANSLATE_lr_1.0_warmup_4000_max_8000/cogs_baseline_seed_0_model.m\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# pytorch_total_params = sum(p.numel() for p in translate_model.parameters() if p.requires_grad)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# pytorch_total_params" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translateinfo = read_translate()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_results = translate(datainfo=translateinfo)\n", + "translate_scores = {\"full\":{}, \"rare\":{}}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_results['lstm'][0].results[0];\n", + "translate_results['geca'] = translate_results.pop('tgeca');" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# translate_results['lstm'][4].results[0] == translate_results['lstm'][3].results[0] " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for (exp_name, results) in translate_results.items():\n", + " translate_scores[\"full\"][exp_name] = get_bleu([result.results for result in results])\n", + " translate_scores[\"rare\"][exp_name] = get_bleu([result.results for result in results], rare=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_table = pd.DataFrame(translate_scores, columns=['full','rare'], index=['lstm','geca', 'simple', 'pmi', 'intersect'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_table" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "(translate_table * 100).style.format(u'& {:.4L}')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ABLATION II - Translate-LESS" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_less_home = exp_home + \"TRANSLATE_LESS/\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def translate_less(datainfo=None):\n", + " exp_folders = {\"lstm\": translate_less_home + \"LSTM/\",\n", + " \"simple\": translate_less_home + \"simple/\", \n", + " \"intersect\" : translate_less_home + \"fast_intersect/\"}\n", + " return read_all_results(exp_folders,\"translate\", datainfo=datainfo, rng=range(5), read_references=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "translate_less_results = translate_less(datainfo=translateinfo)\n", + "translate_less_scores = {\"full\":{}, \"rare\":{}}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Model Figure Lexicon" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [], + "source": [ + "plt.style.use('~/.mplstyle')\n", + "plt.rc('font', family='serif', serif='Times')\n", + "plt.rc('text', usetex=True)\n", + "plt.rcParams['figure.dpi'] = 300\n", + "plt.rcParams['figure.facecolor'] = 'white'\n", + "def get_heatmap_from_lexicon3(lexicon, file=None, reindex_df=None, indices=None, columns=None, title=\"\", ax=None):\n", + " if columns is not None:\n", + " lexicon = lexicon[columns]\n", + " if indices is not None:\n", + " lexicon = lexicon.loc[indices]\n", + " lexicon = lexicon.rename(columns=lambda x: x.replace(\"I_\",\"I\").replace(\"TURN_\",\"\"))\n", + " if reindex_df is not None:\n", + " lexicon =lexicon.reindex(index=reindex_df.index, columns=reindex_df.columns, fill_value=0)\n", + " heatmap = sns.heatmap(lexicon, cbar=False,cmap='gist_gray', ax=ax, xticklabels=True, yticklabels=True)\n", + " plt.tight_layout()\n", + " if ax is not None:\n", + " ax.set_title(title)\n", + " ax.tick_params(axis='y', rotation=0)\n", + " ax.tick_params(axis='x', rotation=30)\n", + " \n", + " \n", + " if file is not None:\n", + " heatmap.get_figure().savefig(file)\n", + " return lexicon, heatmap" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [], + "source": [ + "from torch.nn.functional import softmax\n", + "def get_lexicon(results, model='simple', T=0.01):\n", + " ibm2lexicon = pd.DataFrame(results[model][0].configs['alignment']).fillna(0).transpose()\n", + " ibm2lexicon_normalized = ibm2lexicon.apply(lambda x: pd.Series(softmax(torch.Tensor(x.to_numpy()) / T, dim=0).numpy()), axis=1)\n", + " ibm2lexicon_normalized.columns = ibm2lexicon.columns\n", + " return ibm2lexicon_normalized" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": {}, + "outputs": [], + "source": [ + "# get_heatmap_from_lexicon3(get_lexicon(translate_results, model='intersect'),indices=['Many', 'moons', 'around', 'Saturn'],columns=['許多' ,'衛星','繞著', '土星','運行', '许多','周圍'])" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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efnLX54k6ezsrBdxwKbh4osvzje+8Y0888wzSZKGhoY0NjZm6623ztNPP11fBkVx11135bzzzstDDz1UX9bU1JRVq1bllltuyQEHHJBDDjkkjY2e6AcARab+hOJRfzLcqD83HcJ+gCHQ1dWVxsbG+j+B4lq8eHHOPffc3HPPPUleuMjS2dmZhoaGdHZ25i9/+Ute9rKXDXFLgdXdeuutufPOO/PBD34wr3jFK7Js2bJccsklWblyZarVanbYYYck0VdTCI888kjOP//83HbbbUmSnXbaKa961auyYsWKNDY2plKp5Kmnnsr3vve97LLLLtltt92GuMXAS0n9CcOH+hOKSf3JcKL+3PQI+wGGQO2kbfWTt9pTVdzBCcXxq1/9Kl/60pfyile8Iuecc0523HHHPProo7nmmmvqIyweeOCBVKtVF1tgE3PYYYflyCOP7LGsUqnk5ptvzqpVq9Le3p4PfOADLrSwSVuxYkUuueSSzJo1K0my5ZZb5u///u9zxBFHZPTo0dlll12SJL/4xS9y6qmnZuHChWlubs5rXvOabLXVVkPZdOAlpP6E4UH9CcWl/mQ4UH9uuhq6a2f3AAyaZcuW5bHHHkupVMrdd9+dHXfcMT//+c/z2te+NitXrszf/u3fplwu99jGnZyw6evq6sqyZcuyxRZbZNSoUfXv7G9/+9ucdtpp+dWvfpUk+dKXvpT3ve99vtewiapNc7p48eK8//3vT0NDQ6ZMmZK///u/98xENllz587NBRdckCVLliRJjj322Bx//PF53ete16OvWbFiRUaNGpVFixblsssuy89//vNcccUV2X///Yeo5cBgU3/C8KT+hOFB/UkRqT83bcJ+gEGybNmy/N///V/mz5+f22+/PV1dXXnggQfWuv7uu++effbZJ+9///uz9957O7mDAuru7k53d3caGxvzve99L7Nnz86DDz6YN7zhDbn++uuHunnAOtT63Y997GP5wQ9+kKOOOipf/vKX9cdscn72s5/lvPPOy+LFi5Mk+++/f0499dTss88+6912+fLl+cIXvpBPf/rT2WmnnQa7qcBLSP0Jmx/1JxSX+pOiUH8Wg7AfYIA9+eSTufLKK/PAAw9k8eLFefLJJ3u8P3LkyHR2dmbUqFF57rnnMmLEiKxatSoNDQ3p7u5OU1NTjj766Lz73e/O2972tiH6K4CNVSvMnn766cyaNStXX311li1blvPPPz/vfe97s2rVqjQ1eZISDLY777wzq1atysEHH9yvEU21kU9XXXVVvvSlL+V1r3tdrr766uy4444vQWth/f70pz/lggsuyC233JIkefWrX51TTz0173nPe5Ksf0ru2ggiYHhRf8LmTf0Jmwb1J8ON+rNYzOMDMECee+65zJo1K+95z3ty5ZVX5s4778yTTz5ZP0kbPXp0Ro4cmYaGhnR1deXZZ59Nd3d3Ojs76yeBTU1NWbVqVa6//vqcdNJJaWtry5/+9Keh/LOADVS7cLr11ltn/PjxOfTQQ5Mk559/fv1CS1dX1xC3EoavP/zhD5k4cWJOPPHELFu2rN9Tl9bWqz3fdOutt86WW24Z90azKbjkkkty0EEH5ZZbbsmIESPy8Y9/PDfeeGP9QktXV1caGhrWOQpo9QstnZ2dg95mYHCpP4FE/QlDTf3JcKT+LB4j+wFepK6urtx00035/Oc/n87Ozmy11VbZfffds/322+fwww/PnnvumVWrVuX1r399HnrooaxYsSKLFy/OT37ykyxevDiPP/54mpqaenR6TU1NWblyZbbccsu89a1vzeWXXz6EfyHwYtxxxx05//zz87//+7856aSTctppp7m7FQbJZZddlksuuSS77bZbzjjjjLz1rW/t97a1UVF//vOfc+CBByZJbrjhhuy5556mUmTI3HTTTTn//PPz+OOPJ0mOOuqoTJo0Ka997WuTbNgztn2OYXhQfwLrov6El476k+FG/Vlcwn6AF+GXv/xlTjzxxDz11FNJkr/7u7/L2LFj88pXvjJ77LHHOju0VatW5ZFHHslXvvKV3HPPPXn88cfrd8TVfpobGxvT2dmZD3/4wzn55JPz8pe//CX5u4AXr3ZSu3z58nzrW9/KxRdfnCRZuHBhdt55ZxdcYADdcsstOf/88/PYY48lSS644IL6Hecboru7O8uXL88pp5ySu+++O5/5zGcyYcKEgW4urNcvfvGLnHvuubn33nuTPD9qr1wuZ+7cudlmm2026CLLmvtdsmRJDjzwQBdeoIDUn8DaqD/hpaP+ZLhRfxafafwBNsKf//zn/PM//3M+8IEP5Kmnnsrhhx+e7373u/niF7+Yd7zjHdlzzz3T0NCw1ilqurq6MmLEiOy6666ZMWNGvvWtb+Xggw/OqFGj6u8lLzzz5tprr825555ryhsYRKt/v1auXPmi91f7/m6zzTY56KCDsv/++yd5vghM4kILDICOjo78wz/8Qz71qU/lsccey4gRI7LLLrvkLW95y0btr6GhISNGjMgzzzyT5IXfglWrVg1Ym2FdnnrqqXz+85/Psccem3vvvTcjRoxIU1NTGhoa8sgjj+RXv/pVkmz09J5XX311Pv/5z+cPf/jDQDYbGGTqTxh+1J9QPOpPhhv15/Ah7AfYACtWrMi0adNy4IEHpr29Pbvttlu+/vWvZ8aMGWlubu61/tqKqcbGxnoh1tnZmV122SVf/OIXc9JJJ9WX1f7Z2NiY5557Lrfffnu+//3vD9JfBpuvrq6uXHTRRZkwYUJmz56dp59+OiNHjqy/PxCTIO266645+uij09TUlO9///v58Y9/nEQBBxtryZIl+dd//df83d/9Xe655556Qdrd3Z3f/e53+frXv57f/e53STbs2XBdXV3Zeuut8+Y3vzlJcueddyZ5fnpjGGyXXHJJDjzwwMydOzfJC5+7zs7Oel/01a9+Ncnz55gb0j/VntX73ve+N9VqNbfeemtWrFgxkM0HBoH6E4Yf9ScUj/qT4Uj9ObwI+wH6obu7O/Pnz8+b3/zmzJ49O42Njdl2220zadKkvOUtb0l3d/dGj3qoXZDZYYcd8rGPfSwTJkzIq1/96nR3d/foSJctW5bzzjsv1Wp1wP4u2NzNmzcvRx55ZGbOnJn//u//zrRp03LIIYdk8uTJueOOO9LV1dVjmqnayeqGGjVqVA444ICMHTs2SXLuuecmSb04BPrv0ksvzdvf/vZ897vfTfLC96gWUCTJNddckwsuuCDVanWDRjHVtt91112z5ZZbplqtplKpDPwfAUn9YseDDz6Y/fffP9dee23e8Y535Igjjsib3/zmrFq1qkcf1NDQkB//+Mf1z/6G9Em1z/YOO+yQkSNH5oYbbshDDz00gH8NMJDUnzA8qT+heNSfDBfqz+FN2A+wHg888EAOPfTQnHrqqens7MzIkSPrUx2+7nWvS/LCtEsvRu1izcknn5zjjz8+yfN3XTc2Ntb/99hjj+Wcc855UccBkvvuuy8f+chHctppp+W3v/1t/a7sxsbGLF26NDfffHNOOumkfOQjH8k3v/nN+nPYNub5VDWvec1rctRRR2XHHXfMAw88kGuuuSbJht31DZuz5cuX54ADDsi1116bd77znTn44IPzute9rkdBWrvg8swzz+S2227L5z73uTzwwAMbfKytt946zz77bJ577rm87GUvG+g/hc1cV1dXfvGLX+SLX/xi/vjHP2b77bfPxRdfnHnz5uWiiy7KxRdfnH//93/Pm970pqxatar+DN7k+QDw3//937N8+fKMGDGi3xdcahf299xzz3R1deWhhx7KjTfemGXLlg3a3wlsHPUnDD/qTyge9SfDhfpz89DQ7XY+gD49+eSTOfPMM3PbbbclSbbYYousWrUqXV1daWxsTGdnZz772c/m+OOPry8bKMuXL8/555+f//iP/0hTU1O9GGtoaEhTU1NuvvnmvPa1rx2w48Hm4rHHHsuMGTPyne98J0nqFzJr37HaCe2IESN6THE4atSojBs3LuPGjcub3vSmbL/99ht1/CeffDKzZs3KnDlz8rKXvSw//OEPs/XWWw/4bwgMVz/5yU+y++67Z/To0RkxYkSefPLJnHfeeVm0aFH++Mc/1vvMhoaGehG6++6757TTTss73/nO9e6/9htQrVbzrne9K0uXLs3Xvva1HHLIIT0KXthY//d//5fvfOc7ufHGGzN69OhMnTo1Y8aM6bHOypUrM3LkyNxzzz353Oc+V58StNZPdHV15aSTTsppp522QZ/LVatW5eabb85nP/vZJEmpVMrFF1+clpYWn23YBKg/YfhRf0KxqT8pOvXn5kOvDrCGzs7OnH322TnooIPyhz/8IW94wxsyatSoPPfcc/U7Nmsd0mWXXZbHH388jY2NAzoV2jbbbJN/+Zd/yY477phVq1bVR210dXVl5cqVufzyywfsWLC5mD9/ft75znfm/vvvz1577ZW9994722yzTf2u1dr3rLu7u36hpaGhISNHjsyKFSty44035rTTTsuHP/zhfO973+sxtVpnZ2e/7m7dfvvt8653vSt77rln/vKXv+Tiiy8enD8WhoHly5fnkksuyT333FNf9pa3vCXbb799RowYkZUrV2b77bfP2WefnWnTptVHQHR3d/cYlfjggw9m8uTJueGGG7J8+fIka59+rta/P/PMM3n961+fhoaGdHR0uNDCi1atVvMf//EfOeOMM3L55Zdn3333zTXXXNPrQkuS+nN799lnnxxzzDF5+ctfnuT5z2ftfPO6667Lww8/nIaGhnWO0Fv9vYcffjjXX399/RjVajXXXXdd/vznPw/Y3wlsOPUnDE/qTygW9SfDifpz8yPsB1jDb37zmzz77LO5+uqrM3PmzFx//fW58sorc8ABByR5vtPq7OxMU1NTli1blssuu2zA29DV1ZW/+qu/yhlnnJHkhalvahd1fvazn23UtFCwOdt5551zzTXXZM6cOZk7d27a2tpy9dVX56STTsqoUaOyatWqNDU1JUl9WsXVL7zURls8+OCD+cxnPpMjjzwyJ5xwQu65554899xz9Tte13fhdY899sjRRx+dJPnmN7+Zhx9+uMfoDiC56qqrsv/+++dnP/tZyuVyn+vUCtJRo0Zl3333zezZs/P+978/yfP9aHd3d7q7u9PU1JSnn346Z511Vs4555wez1Zcm5122qn+3OLaNI2+o2yMFStW5I477shZZ52VadOm5e67785rXvOafOYzn8kWW2yx1s9V7YLg+9///vzN3/xNvZ9oaGhIY2NjnnrqqXz1q19Nkj6n8u7q6kpnZ2f9vZtuuimf+MQn8pOf/CTJ86M3kmTBggW5++67e4wmBF5a6k8YntSfUBzqT4YL9efmyzT+AKtZ152T//mf/5kZM2bkwQcfrBdhtQ7yO9/5TsaMGTMod162trbm5z//eZqamtLV1ZWurq6MHDkyZ5xxRlpbWwf0WDCcLF++PC972cvW+p2sTVOVJDNnzsxFF12UxsbGvPzlL88TTzxRX682mqp2klsr3hobG7NixYqMGjUqe+65Zw4++OCMHz8+r3zlK+uF3OrHWN1DDz2U8847L3fddVcOPPDAzJo1axD+C0Dx3H333fniF7+Yhx56KB/+8Ifz6U9/er3PJF6z7/3CF76Q22+/PX/60596TEVcW/eYY47J+9///vzt3/5tn1OY1grUb3zjGzn33HOz++6756abbhrYP5Rhr7u7Ow8++GCuu+663HnnnXnkkUfq7x1wwAGZM2dOv/bR0NCQm266KRdffHEeffTRHqN5R44cmUsuuSQHHXRQjwsrq4cHlUolF154Yb7//e8neX6E3+jRo+sXY37/+9/nTW96U84///zssssuA/2fAVgP9ScMH+pPKB71J8OF+hMj+4HN2vLly3PDDTdkyZIlSdJnUVa7s+2AAw7I0UcfnYaGhvq0a7UiqjYV2kBeaKkd9+STT06SHnd3r1y5Mr/4xS8G7FgwnCxfvjynn356PvrRj+bRRx9d63ojR46sn7B++MMfzi677JKurq4ceuihueKKK/LJT34yu+yyS48LqyNGjEhjY2NWrVqVlStX1n8PfvGLX2TGjBkZP358TjvttCxYsKB+jJrV76/cZZddcvTRR2fLLbfMD3/4w9x+++1J4s5WNlu///3v8y//8i+ZMGFCHnroobzqVa/KySefvN4LLckLfW/te/qpT30qU6ZMSfL8d6pWnNb2df3112fSpEm5//7769usPq1ibb1tt902W221VZqamvLb3/52wP5Whr8//elP+epXv5qTTz45V199dR555JH6tJ7J833DU0891e8puMeOHZu3vOUtGTVqVI8LhCtWrKhPrT1ixIisWLEiSdLU1JSVK1fmoosuyrve9a58//vfz8iRI/Oe97wnU6dOzSWXXJJbb701V1xxRQ4++ODce++9ufHGG+vbA4NH/QnDj/oTikf9yXCi/iQR9gObqc7Oznz729/Ovvvum89+9rP5+c9/vtZpbGod2jbbbJMDDzwwLS0tSVIvshobG3PXXXdl/vz5Sdb+HKYNVTvumDFj8pa3vKXHsiT54Q9/mMcee2xAjgXDxde//vUceOCBuemmm7Jo0aLcdttt9Wek9aWhoSFdXV3ZYost8slPfjJJ8r3vfS/bbLNNTjzxxFxzzTU599xzc/jhh9enUax9x2sjLmpFXENDQ5YsWZIFCxZk0qRJOfroo3PppZfmwQcfrB8rSf1C7Vve8pYcccQRSZLzzjsvSeqjtmBzsWrVqkybNi2HHXZYbrvttjQ2NmbUqFH5wx/+kHvvvbe+Xn++F6tfJDn00EPzwQ9+MEnv0VFNTU15/PHH87nPfS7f/OY36+usaeedd84zzzyTSqXS45mqsC7PPvts7r777vzXf/1X3va2t9Uv7u277771/uPBBx/MyJEjezwDsS+1PmrUqFE55phj6iMfavtpaGjI//zP/9Q/x6NGjUqS3HDDDXnHO96RmTNnJkkOP/zwXHHFFfn0pz+dQw89NLvttltGjBiR17/+9fnXf/3XHHvssbnyyitN0Q2DSP0Jw5P6E4pF/clwo/6kRtgPbHZ++tOfZr/99svUqVPrU8x84xvf6Nddk7vvvnvGjRuXbbfdtv7MpdoJ2sUXX5wVK1as9zlMG+rlL3953v3ud/cq9LbeeussXbp0QI8FRXXXXXflyCOPzHnnnZdnnnkmW221VZLkmmuuya9//et1blv7zo4dOzYHHnhgnnvuucyZMydLly7N9ttvn2OOOSYzZszID37wg/zLv/xL3vSmNyV54S7u2nPZuru709XVVS/KHnzwwVx66aU55phj8vnPfz533HFHnn766fpFl5122ilHHHFEXvWqV+V3v/tdfUqtgbpgC5u6G264IQceeGBmz56d5IWRSLXvwJlnnpmbb745K1asqBedG6JcLtfvMK99RxsbG+v7+dWvfpULLrggV155ZX7/+98nSY/g5Y1vfGN22223LF++PHfeeWeSgR1ByfC05ZZbZt99980ll1ySs88+O294wxvy0Y9+NJdcckl23333bLHFFvnDH/6Q73znO0my3mdx1vqo/fffP4cccki22Wab+me55uqrr06S/PrXv84HPvCBfPazn81TTz2V5ubmXHDBBTn77LPT0tKSHXfcsceF/+T578nUqVNz9NFH589//nOfF3/+67/+K3fccceL/48Dmyn1Jww/6k8oHvUnw5H6kxphP7DZ+NOf/pTjjjsuH/zgB/P0008neaGjueuuu3LXXXflmWee6bF8TU1NTXnrW9+aQw45pL5eZ2dnmpqaBq1Yampqqj/3rXZxKEl++9vfOuljs/fII4/kYx/7WD7ykY/kf//3f+sXWWqjnn7zm99k4cKFefzxx9e5n9p3/rTTTkuSLFy4MD/84Q/r73V2dmannXbKJz7xiVx11VW55JJLcvjhh2eHHXZIkvqdr7WCsKGhIY2NjRk5cmRWrVqVuXPn5qSTTsrhhx+eSy+9NPfdd18aGxuz//77593vfneS5KKLLsqSJUsyYsSI9Z58Q5H98pe/zNixY+sFYVNTU/27U3uO24gRI/L444/nq1/9ar71rW8l6Xv0Q19qfeM222yTVatWZauttsqHPvShJC8Uto2NjfULo5deemk++9nP5sknn+wxbeNTTz2Vbbfdtt4W30v6a+edd86rXvWqev+xatWqjB49OmeeeWbGjBmTJPnKV76SarVafyb2utTef9/73pc999wzSeojhRobG/O73/0uRx11VN73vvfll7/8ZXbcccd88pOfzCWXXJL3vOc9GT16dK991r4ntX2fccYZOeSQQ3qdW/7hD3/IJz/5yfoIQKD/1J8w/Kg/oXjUnwx36k8SYT+wGXj22Wdz7rnn5qCDDsq9996bXXbZJYcddlgOPvjgHH744fn//r//L0kyd+7c+pRN67qIUS6XM3bs2Oy888497qJOkq997Wv5wx/+UH8+04tV28dBBx2UVatWZdWqVfWLLltssUWeeuqpF30MKKIVK1bky1/+cg4//PD84Ac/yBZbbJHW1taceuqpueyyy3LxxRfn2GOPTfL889HuuOOOdRZKtams9tprr/rUa1//+tfzxz/+MQ0NDfXveVdXV7bccsu8613vyowZM/K9730vZ555Znbdddck6XH3dnd3d/0ZiKtP3XbppZfmhBNOyMc//vH8z//8T974xjfmjW98Y1auXJnzzz+/vj4MV48++miOOeaYXHTRRbn88svz93//99lhhx16PJu01v/97//+b84///xcffXV+eMf/5hk/Xei17Y98MADs/XWW+eZZ57J2LFjc/bZZ2fbbbetF5e1EZLPPfdcfvrTn+bTn/502tvb6/vZaaed6iMp//znP2fEiBFGPrFBav1HLSzbf//98653vSuvfvWr8+yzz+aiiy7q135qFxp33XXXjB07NjvuuGN9/7XP+8MPP5yGhoZ86EMfyuWXX56PfOQjefWrX93vfddGNq15/vqqV70qr3jFK9LY2JiHH364X+2FzZ36E4Yf9ScUl/qTzYX6c/PW0O3BH8Aw1d3dnZtvvjmf/vSn093dndGjR+eDH/xgxo0bl+222y6veMUrkjxftH30ox9Ne3t73vve9+aTn/xkXvnKV651nw0NDXnyyScze/bsXHnllUlSn05x1apVOeaYY3LeeefV132xaneYfupTn8ott9zSYwqouXPnZq+99nrRx4AimTt3bi644IIsWbIkyfN3mh577LF5wxvekFGjRvW4ADpz5sx885vfzGte85qcddZZ9TtS+1L7zj7xxBM58sgjs3Tp0nzqU5/KP//zP/fYZ83KlSvrJ6fLly/PAw88kLlz5+b222/Pk08+Wb8Y29jYmJUrV9Z/D2qFZK1gHD16dFasWFEf2fXd7343zc3NWbVqVY/RVFB0a/aLXV1d9ULv17/+da699tpce+21SZ4vImt3ja9atSqlUilvetObcskll2SLLbboc39r+t3vfpdTTz01Dz30UM4+++y8733vyx133JHp06fXRzet3pbk+ectnnPOORk7dmyS5Dvf+U7OOOOMbLPNNpk/f3523HHHAevfKaYVK1Zk1KhRG/w5qH3e//SnP2XWrFn1qQ9vvvnm7LbbbvXzvfVtv2TJkpxxxhn5r//6r/oFw9rnd7/99qs/P3GgPPnkk3nf+96Xzs7OfPWrX80b3/jGAd0/DCfqTxie1J9QTOpPhgP1p/qzv4zsB4al++67L29/+9tz+umnp7u7Ox/+8Idz44035hOf+ER23333+oWWZ599NqNGjcqUKVPyoQ99KDfccEPuvvvute631qluv/32eec735m99947SXp0dNdff31+9rOfbdTznfpSm1KtVtTV7tLbcsst09nZOSAjOKAIfvazn+X9739/Pv/5z2fJkiXZf//9c+211+ZLX/pS9tlnn2y11Vb1E9WVK1cmSf7pn/4pZ511Vu69997cf//96/y+1L6zO+ywQz7xiU8kSb75zW/mwQcf7HP92ncySV72spdln332yTnnnJNrrrkm55xzTvbdd990dnbW25KkXjiuPtXiX/7ylzzzzDMZNWpUkuSLX/xikrjQwrCzZmG6et+555575qyzzsqkSZPy6le/uj5CqTZVXO25hZ/97Gfz4x//uF/H22WXXdLV1ZWVK1fmiSeeSPL8SMULLrgge++9d/34tcCkqakpy5Yty5QpUzJz5sw8++yz2XrrrTNy5MiMGjUqv/zlL/v8O9g8dHZ25qc//WkuuOCCPPnkkxv8Oahd3Ntpp53y7ne/O/vtt1+S1EdXrOtCS2377u7ubLfddnnPe97TY9RE7eLkvffem+9///tJUh/Z92Jtu+222WqrrfLEE0/kv/7rv5J4ti/0Rf0Jw4/6E4pN/UmRqT/VnxtK2A8MK08++WROOOGEjB8/Pk888UQOPvjgXH/99fnc5z6XnXbaqdf6W265ZZLnT8g+97nP5eMf/3je+ta39utYe+21V4444og0NTX1mN4wSb785S8n6f/zndaldnf2X/3VXyV5/k7Srq6ubLXVVhkzZoyTPoa9P/3pT/nUpz6Vf/zHf8zixYvz6le/OhdccEG+8Y1v5E1velOfF1BqF0K23HLLHHroobnlllvy3ve+d73fl9p39u///u+z55575rHHHst1112XZ599dp3brb7f17zmNRk/fnyuvvrqXH311fnoRz+aXXbZpcdoihEjRtQvflNraAAAjK9JREFU7tR+P1auXJkRI0bknnvuyS233JJk4E6W4aVUm060P2FA7TtX+26ccMIJufTSS/PXf/3XWbVqVf2iS+07Nn/+/EyaNCl33313fVlfx6ntr/aM4/nz59ff22233fLlL385H/7wh5Okfpzane1Lly7NV77ylVx44YXZdttts3Llyjz55JP1cwbPTtz8VCqVXHzxxTnrrLPy+9//PkuXLn1R+9trr70ybty4bLXVVvnBD36Q22+/PUn/f/MPO+ywHHDAAdlyyy17jFBauXJlrrjiiqxcuTJNTU0DEsj95je/qY9kvPPOO/OXv/xlQM5vYbhQf8Lwo/6EYlF/MtyoP5ckUX9uKP+VgGFhxYoVueSSS9LS0pIf/ehH2W233XLppZfm8ssvzxve8Ib1nvTVTpw+/vGP93lRpi9bb7113v72t+ftb397j/3UiqUbbrghyYu/+6x2MlmpVOqvu7u7s+eee6ahocFJH8PaZZddloMOOii33HJLRowYkY9//OO58cYb8573vCdJ6iMU1qb23utf//okfRdla6pd4DzttNOSJNdee21+9rOf9bvNqz8zdd99982kSZPy7W9/O1OmTMnBBx9cv0Bba9/qhWTtn1/60peSPD+6wh2sFM2an+f+qN1VPnLkyOy111654IIL8o53vCPJC310Y2Nj/WLIv/7rv+aqq66qj7zoa3/d3d15+umnkySjRo2qP3MxSV772tfm9NNPz4c+9KH6SI6RI0fWf1O6urryrW99K7NmzcrLXvayJKlfBF3fHfAMH0899VS+9a1v5bOf/WyuvPLKHHroobnsssvqz9veWKNGjcoBBxyQgw8+OEly8cUXJ8l6L5DUPpuNjY055phj6u1Y/TvS0dGRb3zjG0n61+etz5NPPplqtVrf3+9+97sXvU8YDtSfMDypP9WfFI/6k+FC/an+fDGE/UChdXd3Z+HChXnzm9+cyy67LFtttVVOP/30zJ07N4cddlh9ndr0Mmuz+onThhQ2u+22W/0ZjLXn1tSO85WvfGVA7j6rTcFW6+hq+199CkcYbm666aa8/e1vzyWXXJIkOfroo3PLLbfk4x//eLbZZpv693R9n/81v8/9Kf5q+zzooINy+OGHp6urK9/85jfz1FNP9bv9a97xvcMOO+Qf/uEfcvnll+e2227LhAkT6heCV29jZ2dnmpqa8uc//7n+t5sqlU3ds88+m2eeeSY33HBD5syZk1mzZuXCCy/MpZdemra2tvz3f/93qtVq/SJj7TO9rs/2nnvumXPPPTcf/OAHk7xQTNb62kcffTRf+tKXct5559X7x9XVLprUpqp7+OGHezxrsba/SZMm5d/+7d+SPB/c1EZy1H4HFi1alL/85S9Jng89atMxMrw999xzue222/KFL3whX/nKV/Kzn/0sBx98cE477bSMGDFiQC6C77rrrnnXu96Vv/qrv8r999+fq666Ksn6z0Nrn803v/nNeec735lSqVRfXvtOXX311fnDH/5Qn4p0Q3V3d2fVqlVZsWJFrrrqqvp+H3zwwSxbtqxf7YThSv2p/mR4Un+qPykO9SfDjfpT/TkQGrr14EBBPfTQQzn55JPz+9//PklyzDHH5NRTT62PjFh9WpnBULuI8+ijj+ayyy7Ld7/73XqBNWLEiKxatSonn3xyTj311Bfdls7Ozhx00EF5/PHHkzx/5923vvWtvPGNbxyQvwU2Fb/4xS9y7rnn5t57702SjB49Ov/2b/+WcePGJXnhe7eh/vKXv9Tvju6P2nEefvjhHHXUUUmSc889N+PHj9/gY9d0dXWlu7u7fnF32bJlueuuu/Ld7343HR0defLJJ5MkW221VZ555pkkyR133JGddtqpPmoLNiXLli3LN7/5zSxevDi//vWv8+ijj2aLLbbIc88912vdbbbZJm9+85tzzDHH5K1vfWu23377fh2ju7s7X/7yl3PzzTfnj3/8Y0aOHFkvHmvF3jve8Y584hOfqIcQq/v1r3+dk08+OX/84x8zbdq0vPvd7+7xfq1/njdvXq6//vrceeedvYrpWsH613/91/nGN76R7bbbrr//iSiYrq6udHR0ZO7cubnjjjvy6KOP1t+bMGFCPvOZz2x0P7S62j4ee+yxzJw5M1dffXVGjx6defPmZfvtt1/veWPt/UqlkjPOOCP//d//Xb9QWHv/uOOOy1lnnfWi2vmzn/0sp5xySpYuXZqRI0fmmWeeyeGHH54ZM2a8qP1CUak/1Z8MP+pP9SfFof5kuFF/9qT+fHHcjgsUTrVazSmnnJJ3v/vd+f3vf58RI0Zkq622ykc/+tHstNNO9ZEIG3px45577sns2bOzYsWKfq1f62hf/epX5/DDD8/rXve6eiFVu49q1qxZ+e1vf9vjbreNcffdd+eJJ56oP5Px6KOPdqGFYeWpp57K5z73uRx77LG59957M2LEiPp0aa973euSPH/X88ac4M6ePTsnnHDCBo+M6O7uzutf//pMnDgxSfL1r3+9Pp3pxqhNAZc8fyK87bbbZty4cZk1a1a++93v5owzzsirX/3q+m9Ykpx//vn1bWFTsWLFisycOTPvfOc7M2PGjPzgBz/Io48+mm233TbPPfdcGhsb6/3VlltumS233DLLly/PD3/4w3zyk5/M2LFjc/XVV9fDkrX1j7XREaecckp99MOqVavqF0Jq36c777wzn/70p/M///M/9e9P7YJMd3d3nnvuuWy55Zb1i5irq/2mjBs3Luedd1723XffHhdGa6OfGhoa8sADD+Shhx6qt43h5Y9//GO++tWv5gtf+EKuueaaPProo2loaKh/zrbaaqskGzY96NrU9vHKV74yhx56aN7whjdk6dKl9RF1/X2+b7lczlFHHZVXvOIV9fdqF3JuvPHG3HPPPUk2/DmfXV1dmT9/fj760Y/miSeeyKpVq/LMM89k66237vezxWE4UX+qPxl+1J/qT4pD/an+HI7Uny9Qfw4MPTdQGKtWrcqVV16Z/fffP9///vfT1NSUpqamNDQ05Jlnnsntt9+eZOOfZfTwww9n2rRp+dWvftXvbWoniG984xszduzYejtrz17q7OzM9OnTk2xc51ybcuq6666rT2nzspe9LMccc0wSJ3sMDzNnzsyBBx6Y66+/Pknqzy2r+fa3v53k+WdMbYja93PMmDH5n//5n9x9990b9J2pfWcnTpyYHXfcMffff3++973v1b+XL8bqF09WrVqVV73qVfngBz+Y66+/PjNnzswxxxyT0aNH59Zbb80vf/nLATm5h4Fw11135c1vfnMuuuiirFq1Kscee2wmT56ciy66KFdeeWW+9rWv5TOf+Uz9ecLPPvtsPcRobGzMqFGjsmzZspxzzjn56Ec/ml//+tf1z/ea38/a92TkyJE56KCDcu6552bfffetv1e7CNLU1JTf/OY3+dznPperr746yQvnAm94wxvymte8Js8++2zuv//+XsdZfcrTHXbYIeedd15OPPHEJM9/N2vTMNculv70pz/t0TaKb8mSJbn++utz0kkn5fLLL899992XJPULhrXPyLx58+oj4AZCrY/ae++9c/jhhydJrrnmmnR0dPTrmdi17Y888sjss88+9Wfs1j6bTz/9dL72ta8l2bBz41WrVuXHP/5xrrnmmvoUoknyj//4j/nRj36Uf/iHf+j/HwkFp/5UfzI8qT/VnxSH+lP9OdyoP3tSfw4cvxJAIdx+++3ZZ599csEFFyR5oePr7Oysd0ZXXXVV/vSnP9VPwDbUPvvskx133DHf/va3s2TJkn5tU2vHdtttl3e+851585vfnOSFKZeS5zvnu+66K8mGXxypnUD+5Cc/6VH47b///vXjQFH9x3/8R1paWupFW22aw9oJZK2Quummm/KTn/wkyYbdHbr6nauvfe1r8+1vfzv/93//t0Ft7OrqSqlUyqRJk5Ik3/rWtzbogmx/1E7ok+enjWxpacl5552Xb3/727nooouy9dZbD+jxYGM89thj+eQnP5mPfOQj6ezszIc+9KG0t7dn6tSp+ed//ucceeSR2XvvvXPIIYfkwx/+cC6//PL853/+Z1pbW1Mul5M832etXLmyfoHkwQcfzMc+9rFcccUV9ff7UvtNeN/73pcLLrggu+66az3YWL3P/+1vf5vzzz8/V111Vf27vmLFivzN3/xNkuTHP/5xli9f3udxVr9T/bTTTsunPvWpbLfddj1+jzo7O+ujM4Qdw8NTTz2V888/P1deeWW23377/Mu//Eve8Y53JHnhYlttGtvf/OY3+d73vpdkYP7/r/VR22yzTQ466KC87W1vS5JcdNFFSdZ/gaShoSFdXV3ZZptt8r73vS8777xzj7Y1NDTkrrvuyo033phk7f1nV1dXfZtnn302//Ef/5GzzjorP/nJT9LZ2Zm3ve1tueWWW3LmmWfqj9isqD/Vnww/6s/nqT8pAvWn+nM4Un+qPweTs3Rgk/aXv/wlxx57bKZOnZrx48fnIx/5SN773vemu7u73mnU7nh89NFH13vCti7bbLNNtt566yxYsCA//elPN7gj3XPPPXPkkUdmiy22qHfQtSLqy1/+8ga1q7OzM93d3XnkkUcyefLkLF26NN3d3TnkkEPyT//0Txv2h8Em6MEHH8zNN9+cD3zgA7niiivS1taWqVOnZptttqmPXKidiD7zzDM97g7t75SktfVe85rX5Omnn85Pf/rT/OAHP+jzeW5rU/vOfuADH8ib3vSmPPXUU7nmmmvy9NNP93sfG6rW7l133TVHHnlkXv/61w/asaA/HnrooXz+85/Prbfemr322ivXX399Pv/5z2er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ey3Wx43e/smTJ/Ptt98C8Prrr/P1118n2LVfHp3t27czdepUDhw4wIULF8wES2BgIBEREeZvtM1mw+12U6hQIRo2bEizZs1idD0yXjNnzhyGDh3KuXPnfBKBgYGBjBo1ihIlSiT46orVq1fTvn17evbsyZtvvvnANhocDgcOhwO3203q1Km5deuWzwpDEYkdxZ8iTwbFn4o/JXFS/Kn4MylR/Kn4U25TGX8RiRfjYvLss89SpUoV/vzzT44cOWLuuQRRJdaaNGnC888/D8CcOXPo378/169fBzAvhGFhYaxevZotW7aQI0cOQkJCaNSokc8FKa43lsYFt3nz5sybN88MxrxeLy6XC4vFQp8+fahfv/4juXEVSSgHDhxg0KBBbN68GafT6VOmKXriwdjrzOl0smbNGjZs2MCECRN46aWX8PPze+BNrtH36tWrx5YtW1i/fr25zyhE9d9bt26RJ08eWrZsSZUqVUiXLl2MPoNx3v/OVDX+PUuWLAAcP378jptno0zXm2++yZgxY4iMjMTPz88sXVWgQAG++OILihUrFou/qsijY7fb7/h+ejweatasyY4dO5g1axYRERE+19WHXS7OYBz7yy+/xOv1smbNGpxOp/mbYrVaiYyMpHfv3qRPn54iRYoQEBAQozZFnxG/efNmJk6cCEDt2rX57LPPYvS7JE8OY7XswoULgdt7b6ZKlYobN24QEREBRP3/brPZzOTIX3/9xd69e8mZMyclS5aM8fe5Vq1abNy4keXLl+N0Os0kYHh4OCNGjKBEiRLmeRLqO2Tcx547d+6+A4HRr2Ferxd/f3/8/PzMFYFKtIjEj+JPkcdL8afiT0ncFH8q/kwKFH/epvhTDIooRCTejAtm8eLFqVSpEhaLBbfbjdfrNS9EgwYN4vDhwzRt2pQvvviC69evm/sQGq83/t3pdLJ//3769u1L1apVef/991m2bJl5s2mc8797z9yPceHOmzcvefLkMYNQt9tNs2bN2LlzJyEhIUq0SKIRGhpK7969qV+/PmvWrMFqtZIrVy5y5szJW2+9Rfny5SlUqBCAmVA0/unn54fL5WLw4MH8+eefwIP3JzVmrqZLl4569eqZCRDwvaFs2bIljRs3NldGxVb0dhj/buyhdu7cuTv6vtG3b926RYYMGYCo1VipU6emd+/ezJkzR4kWSbRatWrFSy+9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nz49RYsWxev1sm7dOr766iv69u3LF198wfTp09mxY0eMjmk8nytXLmrWrEmGDBnM54y2z549m3379pkrff/7Gffs2cM777zDV199xdmzZ8mfPz+TJk1i6NCh5v6OIvJkU/wp4kvxp+JPSbwUfyr+fFop/lT8KXGjwX4ReWiMm7GcOXNStWpVgoODfWauAQwdOpQrV65gs9litada9OOLJCYrVqxg+/btrF69Grj/99joK9mzZ6dGjRrkzp3bfNwIpCZPnszhw4fNPdT+K/oeZ3PmzOH06dNAVHnGTp06kSNHjnvugxZTRlsaNGjAiy++iMVi8ZnReuHCBUaNGgX4zpg9fvw43bp1o1GjRuzYsYNnnnmGgQMHMmXKFLO0o8jjdvjwYdq0aUP79u05ceIEdrsdq9WK0+k0E/3/Ddwelv+Wi0uRIsUd19UJEyaY19X4JFwsFgsOh8NM0EZERHD69OlYX6slaTDu07JkycL//d//AbevRRaLhUuXLrFy5Ur+/vtv4M5kn/Hf169fZ968eWzatMnc73PTpk189913tG3blunTpzNx4kTmzJnDV199xdtvv817771nXjPh3oMD0QcoXnrpJbMPGIn9GzdumKuPopcePnDgAN27d6dJkyZs2rSJlClT0qtXL+bOnUuJEiUS6C8oIo+C4k+ROyn+VPwpiYviT8WfovhTJC402C8iD5VxQSxZsqTPzHCPx4Ofnx8ul4v+/fsDsd+vTSQxuXHjBtOnT+fatWucOHGC//3vfxw7dgy4/wxoow8VKVKEypUrm0kVr9eLn58fAH369AG4a3knI4kye/ZsRo0aZa5satWqFeXKlfN5TVwZqyiCg4OpXbs2zzzzjE/7LRYLc+bMYfPmzZw/f55du3YxaNAgateubZZM/PDDD1m7di21a9eOV1tEEkpYWBjffvstderUYePGjVitVux2Oy6XC6vVisPhYNmyZcCjvX5FT27my5cPuLNcnJHcjGvfNpJHixcvZufOneaqqD179sQ7iSOJl/E9f++998iRI4fZF4zH9+3bx+LFi82y2V6v16esbnh4OCNHjmTw4MHcvHnTXC108uRJDh48CEQlQSwWC3a73UzwrF27lk8//ZSffvrJXJV4t++gcc60adNSr149czWE1+s1r0XLly9n/vz5nDlzhj///JOBAwfSrFkzZs2aBUDr1q1Z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jx07RsuWLYmMjKRbt240aNAgQY4rIiIiIiIiiYPiTxERSaq0sl9EREREHimXywVA586dzceMPQ2vXbvG77//zr59+xLsfGfOnKFx48Zs3bpViRYREREREZGniOJPERFJ6rSyX0REREQemzfeeIPdu3fj5+eHx+PB7Xbj5+dHu3btaN26NcmSJfPZdzEu4vt+ERERERERSfwUf4qISFKklf0iIiIi8sgZqyu++OILAJxOJ16vF5vNhtPpZOXKlezatQsg3okSJVpERERERESeXoo/RUQkKdNgv4iIiIg8cna7HY/HQ+HChalfvz4ANpsNo+jUvn37WL16NRcvXgRAxahEREREREQkLhR/iohIUqbBfhERERF5LIwESpcuXcwVFVarFZvNBsDKlStZvnw5ELU6wuPxPLa2ioiIiIiISOKl+FNERJIqDfaLiIiIyGNhs9lwu92kS5eODh06mI97PB4sFgtnz55l0aJFbNu2DQCr9fata0REBOfPnwfA7XY/2oaLiIiIiIhIoqL4U0REkiqLVzVpREREROQx8Xq95p6GlStX5syZM2aJRY/Hg5+fHy+//DK//PILkZGRXLhwgR07dtC3b1+KFi3KmDFjHvMnEBERERERkcRA8aeIiCRFGuwXERERkcfK5XJht9uZN28eXbt2xWq1mkkYi8WC2+0mZ86chIaG4nA4uHXrFu+//z7t27d/3E0XERERERGRRETxp4iIJDUa7BcRERGRJ8KtW7do3bo1e/bswW6343a7zX8a+yU2bdqUTp06kSJFisfcWhEREREREUmsFH+KiEhSYX/cDRARERER8Xq9JE+enDp16rBnzx68Xi82mw2n0wlAqVKl+PLLL8mdO/djbqmIiIiIiIgkZoo/RUQkKdFgv4iIiIg8dsa+ibdu3cLPz89Msjz77LN069aNKlWqPM7miYiIiIiISBKh+FNERJISDfaLiIiIyGPn9Xo5c+YM69evx+l0Yrfb6dChA+++++7jbpqIiIiIiIgkIYo/RUQkKdFgv4iIiIg8dmfOnGHAgAHs2rWLhg0b0rlzZ9KkSfO4myUiIiIiIiJJjOJPERFJSjTYLyIiIiKP1bx58+jRowc5cuRg6tSpFClS5HE3SURERERERJIgxZ8iIpLUWLxer/dxN0JEREREnk6hoaGMHz+ejBkz0qxZs8fdHBEREREREUmiFH+KiEhSpMF+ERERERERERERERERERGRRMb6uBsgIiIiIiIiIiIiIiIiIiIisaPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQyGuwXERERERERERERERERERFJZDTYLyIiIiIiIiIiIiIiIiIikshosF9ERERERERERERERERERCSR0WC/iIiIiIiIiIiIiIiIiIhIIqPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQyGuwXERERERERERERERERERFJZDTYLyIiIiIiIiIiIiIiIiIikshosF9ERERERERERERERERERCSR0WC/iIiIiIiIiIiIiIiIiIhIIqPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQyGuwXERERERERERERERERERFJZDTYLyIiIiIiIiIiIiIiIiIikshosF9ERERERERERERERERERCSR0WC/iIiIiIiIiIiIiIiIiIhIIqPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQyGuwXERERERERERERERERERFJZDTYLyIiIiIiIiIiIiIiIiIikshosF9ERERERERERERERERERCSR0WC/iIiIiIiIiIiIiIiIiIhIIqPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQyGuwXERERERERERERERERERFJZDTYLyIiIiIiIiIiIiIiIiIikshosF9ERERERERERERERERERCSR0WC/iIiIiIiIiIiIiIiIiIhIIqPBfhERERERERERERERERERkURGg/0iIiIiIiIiIiIiIiIiIiKJjAb7RUREREREREREREREREREEhkN9ouIiIiIiIiIiIiIiIiIiCQy/w+7iTXovE0gWQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ar_index=\"fep blicket kiki dax wif zup lug\".split(\" \")\n", + "f, axes = plt.subplots(2, 2, figsize=(7, 7), sharey=True, sharex=True)\n", + "sns.despine(left=True)\n", + "pmi_ar, _ = get_heatmap_from_lexicon3(get_lexicon(colors_results, model='pmi'), file=\"figures/color_pmi.pdf\", title='PMI', ax=axes[0,1])\n", + "pmi_ar = pmi_ar.loc[ar_index][[\"RED\",\"GREEN\",\"YELLOW\",\"BLUE\"]]\n", + "get_heatmap_from_lexicon3(get_lexicon(colors_results, model='simple'), file=\"figures/color_simple.pdf\", title=\"Simple\", reindex_df=pmi_ar, ax=axes[1,1])\n", + "get_heatmap_from_lexicon3(get_lexicon(colors_results, model='intersect'), file=\"figures/color_ibm2.pdf\", title=\"IBM Model-2\", reindex_df=pmi_ar, ax=axes[0,0])\n", + "get_heatmap_from_lexicon3(get_lexicon(colors_results, model='goodman'), file=\"figures/color_goodman.pdf\", title='Bayesian', reindex_df=pmi_ar, ax=axes[1,0])\n", + "f.savefig(\"figures/colors.pdf\", dpi=300)" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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483ywP527Nih6tWr66OPPjK/Y39/f3Xs2NHszZ76nLod43XLli2TpBw3whjbrFq1qjp16mQ+Zqy3dvToUYWFheV4H8ieffv2qX79+nrttdd0+PBhFS9eXGXKlFHbtm1VuXJlVaxY0bwuJCQkmL95d3d3Xbt2TWFhYerWrZvef/99STeuIbeqC7i4uKhOnTpq3bq1JNt1mn/55RfNnDnTfK1x/hmN9cbrpRsBunHNOXPmjFatWqU+ffooICBAzz77rEJDQ3Xq1Cmb+0tycrISEhLs9RXiJjVr1lThwoV1+vRpnT17Vi+99JK5nrfRmObk5KRff/1VCxcutHk8I8Z5ULFiRTVv3lzFihUzHzfOh08++UT//POPue4icD8jvkR6iDGJMYkxkVnEmMgJYkzYE/Hl3cPIfgDIpp07d2rs2LGKjIxUnz591LNnT7MHelb88ccfCgkJ0datW9NMOTN58mQFBQXZpddsaidOnNDQoUO1ffv2NNMjzZ49W40bN7bbvu4nMTExmjBhgpYuXapSpUrp448/lp+f313tKZqQkKDly5eblWpj9IXValXhwoUVFhZmVqokKTo6Wvv379fevXu1fft2HTlyRLGxsRmut2g0DqQetSNJhQsXVvny5dWwYUM1aNBAxYoVU/78+XXixAkdP35c+/btU//+/e/a93AvMH63//77r6ZPn66lS5dKkn744QeVK1cuU72bjYad6OhotWrVShcuXNCAAQP0yiuvZGkEhFGW69eva+vWrdq0aZNWrVqlixcvmr2ib74WGI9L0uLFi/XEE0/Q89mOTp06pTfffFMHDhyQlDJtmdVqVWJiokqWLKmlS5dme7TL8uXLNXjwYI0dO1YdOnSw24iZyMhIDRgwQMeOHbO5BhQsWFDh4eEqV65cjveBzLl48aLGjx+vb775RpIUFBSk559/XkWKFFHJkiWVP39+8/d65swZzZs3T1u3btXhw4cl2a61aky3GxgYqDZt2qh58+aZqnds375d/fv3V0xMjLk9o/5StGhRhYWF6cSJE9q+fbv279+v33//XTExMTbbMBoZU99zjHuMse6rJFWoUEE1a9ZUQECAqlevnqbhn+uS/Rw+fFivvPKKYmJi9O677+qFF17QxIkTtWjRIpvpEa1Wq3x9fRUeHi4fH5/bnjPG82fOnNFHH32ktWvXpkkItGrVykxGAvcj4kukhxiTGDM1YkzcCjEmcoIYkxjzTiC+vHtI9gNAFp0+fVpjxozRmjVrJElPPfWURo8ene3ppRITE7V8+XKNGzcuzdRVDz74oL777ju5u7vb8yMoKSlJ69at09tvv63ExESbfT755JP69NNP76s1bexhzpw5mjp1qtkwMXz4cD333HO5UpbTp09rxIgR+vnnn83KsXG7NxrbEhISZLFY0vTkjoqK0i+//KJt27Zp06ZNio2NtVl/z6gwSba98I2KvKFYsWK6evWqnJycFBcXp+bNm2vKlCl34dPbl9Vq1YEDB/Tggw/K29s729Oebtu2TdOmTdPu3bvVsmVLTZ06NdPvNSqwCxcu1KhRo1SsWDHNnTtXFStWzHI5Ujt9+rTWrFmjTZs2aevWrebjqQMjY4rOJ598kp71dnLlyhWNHTtWS5YskZR2yksp5bx74YUXNHTo0Cxt2zg/9+3bp5deeknlypXTV199JXd3d7s06l+/fl1fffWVxo0bJ0k214SOHTtqzJgxOdo+bs9qtWr79u0aOXKk/v77bz322GMaNmyY/P39bV5nNL7Fx8ebI/+io6P1/fffa/LkyeY0u6mPofG7Nxpejf1ldM27fPmyZs+erblz59qst2e1WvXYY49pyZIlNkmqc+fOaceOHdq7d69+++03HT161Fxv1iiLdKPh35j613jOuPcYUzFWr15d9evX1wMPPKArV67ov//+0549e+Tp6alWrVrl7Iu+zzVt2lQnT55Unz591KdPHx0+fFgjRozQrl27JNkeq27duum9997L0v1x5cqVmjp1apq1Gq1Wq+bNm6e6devSwIb7CvElMkKMSYx5K8SYMBBjIieIMYkx7zTiy7uDafwBIAumTJmiJk2aaM2aNeYNp3///vLx8cn29IQWi0W1a9dW06ZNJclc08xisej48eOaN2+epNtPYZMVLi4u8vf3V5s2bSTdmB7J2dlZv/32m7777ju77SuvW7dunZo1a6ZJkyaZFQdfX1/Vr18/18pUvHhxBQcHy8PDQ4mJiXJ2djYrNBMnTtSFCxfk6upqU2kyKri+vr56+umnFRISol9++UWffvqpOnfurKJFiyo5Odl8XeopBSWZI4YsFossFovOnTunK1euqF69elq9erVDNsKcO3dOn332mcaNG6e1a9dKyvo0g8b3U716dbVq1Ur58uXT2rVrtXHjRkmZm4rS+K6fe+45Va5cWefOnVN4eLjNumhZYTTMlSxZUt26ddOnn36qxYsXq0uXLipXrpysVqs5CsO4FqW+Ltxv02fa086dO1WzZk2dPXtW3bt3V48ePcxpL41GcSnlPPv222+1b98+Scr0lGPG+5944glVrlxZkZGRmj9/vt3K7+7urubNm5tBf+qROcuWLbNp0MOdceDAAU2ePFl///23AgMDtWjRIvn7+6dZD9UYZWM0wlitVvn4+Oill17SxIkT9eSTT0qSzTSexn1ixIgR+umnnyTd+ppXsGBBtW7dWo899pjNuoqSdPz4cZ0+fVqSzGldixUrpjZt2mjIkCFasmSJlixZooEDB6px48by9PQ0y5I6SWBcj4w6ipOTk86cOaPVq1fro48+UuvWrdWmTRs1a9ZMzz33nD788EP99ddfdvzG7y9JSUmKj49X1apVJaWMtDIa1gICAlS0aFFJN0ZgOjk5admyZfr9999t1sfMiHFPfOqpp1SnTh2bRmLjXmeMvDDW+QXyOuJLpIcYkxjzVogxkRoxJnKKGJMY804hvry7SPYDQCZ89913atCggblGkKurq1nJ2bNnj6ScrTXm6+urli1bqkyZMmZlxjBz5kydPHnSpmeaPfj4+Ojpp59W0aJFzSDAuBHOnDnTpiKT12+G2XHkyBG9/PLL6tOnj/7991+zASIxMVFRUVHmd5Yb6wI5OzurWrVq6tixo/mY0QP3zz//NHt7p5bRWlX169fXiBEjtH79eg0bNkz16tUzX5O60m009hgV7scee0wLFizQ1KlT5evreyc/rt1duXJF3333nd566y3NmDFD1atXV1BQULa2ZXw/7u7uqlOnjjmF6ccffywp85VNo7JqTFMZFhamnTt3ZqtMqY+bse8nnnhCH3zwgcLDw/XBBx+oWrVqNlP+SVJISIg59Zk9G4fvJyVLltTGjRs1ffp0DR48WO+++65mzpyp0qVL26xpKUmXLl3SjBkzJCnL02lKNxrwvvzyS0VFRaUZGZVdpUuXVpcuXWx66hvXj1mzZmW7gRAZM36n69atU+/evbVv3z75+vrq+eefV8GCBc2pDW91nqSuozRt2lSffPKJmjdvLunGuWIcz8jISE2dOlXr16+XdOv72M3rNEsp17Xr169r8uTJZsNK6ntMQkKCrFarHnnkEfXs2VOz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L3TkyBGtXLlSFy5cSPf1qRvYn3nmGTOYNBr+nJ2d9ccff5hr66YndeB79epVffDBB/rss8/MacucnZ0VFxdnThOcmUApMx577DFz6tHUawGfOXNGs2bN0s8//yxJOnnypH788Ud16NBB8+bNy7WGaUfl4uKi8+fPa+PGjebvsnPnznJ3d7cZTZed7UpSvXr19Oqrr+rhhx+2mebZOEe+/PJL/fXXX7ecotPZ2Vk1atRQ27ZtJdmOxNm/f7+WL1+e5XJZrVaVKFFCzz33nIYOHWrWhRISEuTm5qZ3331Xa9asUZMmTbLz8R3S77//rq5du2rAgAE6e/asOcJkxowZ6t69u44ePWpeT7LbKJO6PipJ+/btM6cWNxpdO3bsaF6rjP0ZU3Maowlvd40x6rLlypVTixYtVLJkSXM7xjYzc+4BjoL4kvjyVogxiTGzixjz/kCMSYxpb8SYxJgS8WVeRLIfAGR707BarfLz89OsWbPUoEEDPfjgg5JSepv16NFDxYsXN6esM24mS5cu1f79+7NduXVyclJ0dLR27typI0eOmBVwo3Lr4uKiX3/91azM2Hv0Re3atc2eb5LMCrXFYtHhw4d14MABlSpVSqtXr9a4cePs3iDkKCpUqKAaNWqoYMGC5vRODz74oAYMGCAfHx9JN84lJycnbdmyRd9//72k3Bt5UaZMGXMUROrGNill7czr169naXvOzs7auHGj+vTpo2LFimn27NkO2eP12rVrWrdund577z1NnTpVe/bssZm6Kzk5WX///XeOplC9mXFuPP744woICJCUUtn8/fffzcDldoygq1evXipevLgOHz6s5cuX57i3bWb2KUn58+e/Y/txdIcPH1azZs301ltvKSkpyWyU/PrrrxUZGZnh+4zr6RNPPKFmzZrJ29tb0o2GN0lauHChTpw4YROUGP83fs+LFy9W48aNzbXISpcuLRcXF7Mc27dvt+s9pHDhwmrVqpXKli1rNvgY5d2yZYvefvttNW3aVM8995z69++v5557Tr169cq1hmlHZkyLm5SUpEKFCqlRo0Z23f7jjz+ubt26SbrRsJecnGyOCvrwww8l3TqpYKzTXLx48TTrNM+aNUv//vtvlstlnKeenp7m9NPPPvustmzZoh49emR5e47qwoULev/999WpUyft3r3bnNo5Li7OvD6fP39evXv31ujR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VatWrRQWFqbt27fr2LFjcnZ2lqurq3nT+PfffzVv3jxJtr2tb6VSpUp6/vnnJd2YDsbFxUUnTpzQihUrzNEXR48e1ZIlSzRp0iRNnz5df/75p9zd3fXee+9p9erVaty4sSSZlazUlZCKFSsqKChI7u7uZk86ozIzceJESTmrtJw6dUqvvPKKNm/efNsAAZkTFBSkmjVrmqNkUk+PlnraIXv23ndyctKVK1c0atQoHTlyJMMpQz09PVW3bl1zZIHRwGexWOTk5KTffvtNW7duVbFixbRu3TqNGTPGbmW8l6VeM7VRo0bmGqJGg4yzs7M2b95srnlojwYOY59FixZV06ZNValSJV25csUcVZWZkS7GNsqXL69OnTpJSmmoXb9+fZrgHdmTlJSkRYsWqUaNGlq6dKlKlCihjz76SF999ZX8/f1ltVpv+10bx9LHx8d8/a0Y51fHjh3N36rRMGfsq27dumrVqpUKFy6crc+V0wbF2NhY9ezZUytWrNCqVas0cuRIu4zkwA1GkichIcFszEhOTtbVq1fN7/pOrCfn7e2tBg0aqHTp0mYiwThffvjhB129evW2Iz6cnZ1Vo0YNBQQEmI8ZdZxjx47p3XffVY8ePfTqq6/queee09ixY++r8yc+Pl6bN2/WBx98oAkTJigiIkKlSpXSu+++Kw8Pj0w1xPfp00fe3t767bffdPjwYY0ZM0bvvPOO2VBmXGtS1xtHjBihPn36KDY21jym6d3PUtdbpJQEpIeHR5rXpr5WGSMmUo84/fPPP/Xpp59m6juxWCz677//bO6z9erV0w8//KD333//vjo/cG8jvrw94ss7gxjT8RBjIiPEmOkjxrzziDHzJuLLtO7X+JI7NIA859ixY+revbueffZZrVixQnv27JGUsuZT8eLFzREOCQkJNuvQbNmyRcuWLZOUuUDL1dVVzzzzjB555BGzIcawdOlSrV+/XitXrtT06dM1ceJEbd++XZIUHBysLVu2qFu3bpJu9DZLL/Byd3dX/fr1zQYbo6wuLi76/fff9dVXX2W6vOl56qmn9L///S9b73UkxvRfd5JRSfbw8FCHDh304IMPSrKddmjHjh36+uuvbR63l2PHjmnTpk1atGiRpIwb6R588EEzeHN2djYrbomJiapSpYoWLVqk6dOnq1SpUnYt351mr4DkscceU6tWrVSwYME0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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ar_index=\"and thrice twice opposite after around right walk run left look jump\".split(\" \")\n", + "f, axes = plt.subplots(2, 2, figsize=(7, 7), sharey=True, sharex=True)\n", + "sns.despine(left=True)\n", + "pmi_ar, _ = get_heatmap_from_lexicon3(get_lexicon(around_right_results, model='pmi'), file=\"figures/around_right_pmi.pdf\", title='PMI', ax=axes[0,1])\n", + "pmi_ar = pmi_ar.loc[ar_index]\n", + "get_heatmap_from_lexicon3(get_lexicon(around_right_results, model='simple'), file=\"figures/around_right_simple.pdf\", title=\"Simple\", reindex_df=pmi_ar, ax=axes[1,1])\n", + "get_heatmap_from_lexicon3(get_lexicon(around_right_results, model='intersect'), file=\"figures/around_right_ibm2.pdf\", title=\"IBM Model-2\", reindex_df=pmi_ar, ax=axes[0,0])\n", + "get_heatmap_from_lexicon3(get_lexicon(around_right_results, model='goodman'), file=\"figures/around_right_goodman.pdf\", title='Bayesian', reindex_df=pmi_ar, ax=axes[1,0])\n", + "f.savefig(\"figures/around_right.pdf\", dpi=300)" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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GBNZkVfjS0tuFwAAcOedP39eEydO1LfffitJyp8/vwoWLChJcnNzU3R0tK5du6Z//vlHixcvVs+ePXOxtLhbFixYoClTpig+Pl6SVL58eU2fPl1lypTJ5ZLBHs6ePauPP/5Yy5cvlyQ5OzvL2dlZAwYMkIeHh5KTk+XszCRPuL3r169rypQpWrhwofmYs7OzkpKSZLVatWHDBu3evVu1a9fOvULinvf3339rzJgx2rp1qySpbdu2euaZZ2iEuc9dv35d7u7u2rx5sy5duqQLFy4oJiZGDz/8sEqXLq3y5curcOHCuV1MADchvkRGiDHzNmJM2AsxJuyBGBM3u5/jS0b2A0AeN2fOHH388cfmeol+fn7y8/NTjRo11LhxY8XExOjkyZOaPHmy9uzZo4SEBIWHh6tIkSK5XHLcKT///LPGjRun48ePS5Ly5cuna9euqXPnzho1apScnJxksdAf0FFZrVbNmDFDixYt0qVLl+Tk5GQ2wlgsFs2aNUv16tXL7WLCAVitVq1evVpDhgxRcnKy3N3dVbp0aVmtVj3wwAM6evSooqKi5OTkpAcffFDff/89I/eQxrVr1zRp0iR98cUX5mMNGjTQp59+mid70yNzjh8/rh07dujYsWPaunWrjh49qvz58ysuLs58jcVi0cMPP6z27dvr2WefZbQgcI8gvkR6iDHzNmJM2AsxJuyBGBM3I75kZD8A5Flr1qzRxIkTderUKUlS3bp15e/vr6pVq6pKlSpyd3eXJHl4eOixxx7TJ598osWLF2vKlCl6//33NW3atNwsPu6AQ4cOafjw4Tp48KD5mJubm65fvy5JevbZZwmiHNy2bdv07rvvys3NTT4+PipUqJBOnz6tyMhIJScny2Kx6Pz584y4wG0dOnRIffr00blz5yRJNWrUUP369VWrVi3VrVtXFotFSUlJmjVrln766Sf9/vvvWrp0qbp3757LJce95KuvvtLkyZN1+fJlSTKD7UaNGsnJyUkJCQncd+4z0dHRmjdvnsLCwhQXF6eYmBhJKet7X79+XS4uLnJxcVFycrISExN15MgRTZ48WTt37tQ777yjihUr5vInAO5fxJdIDzFm3keMCXshxoQ9EGMiNeLLGxjZDwB5zKFDhzRmzBhz7bRy5copKChILVq00AMPPGD2ps9ofZohQ4bou+++07Jly/TYY4/d1bLj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cXFxatmypaZOnXoXPr19Wa1WHTx4UA8++KC8vLyyPe3p9u3bNX36dO3Zs0etW7fWtGnTMv1eowK7ePFijR49WsWLF9e8efNUuXLlLJcjtTNnzigsLEybN2/Wtm3bzMdTB0bGFJ1PPPEEPevt5MqVKxo3bpyWLVsmKe2Ul1LKeff8889r+PDhWdq2cX7u379fL774oipUqKCvvvpK7u7udmnUv379ur766iuNHz9ekmyuCZ07d9bYsWNztH3cntVq1Y4dOzRq1Cj9/fffevTRRzVixAj5+fnZvM5ofIuPjzdH/kVHR+v777/XlClTzGl2Ux9D43dvNLwa+8vomnf58mXNmTNH8+bNs1lvz2q16tFHH9WyZctsklTnzp3Tzp07tW/fPv322286duyYud6sURbpRsO/MfWv8Zxx7zGmYqxZs6YaNmyoBx54QFeuXNF///2nvXv3ysPDQ23atMnZF32fa968uU6dOqV+/fqpX79+OnLkiEaOHKndu3dLsj1WPXr00Lvvvpul++Pq1as1bdq0NGs1Wq1WLViwQPXr16eBDfcV4ktkhBiTGPNWiDFhIMZEThBjEmPeacSXdwfT+ANAFkydOlXNmjVTWFiYecMZOHCgvL29sz09ocViUd26ddW8eXNJMtc0s1gsOnHihBYsWCDp9lPYZIWLi4v8/PzUrl07STemR3J2dtZvv/2m7777zm77yuvWr1+vFi1aaPLkyWbFwcfHRw0bNsy1MpUoUUJBQUHKnz+/EhMT5ezsbFZoJk2apAsXLsjV1dWm0mRUcH18fPTUU08pODhYv/zyiz799FN17dpVxYoVU3Jysvm61FMKSjJHDFksFlksFp07d05XrlxRgwYNtHbtWodshDl37pw+++wzjR8/XuvWrZOU9WkGje+nZs2aatOmjfLly6d169Zp06ZNkjI3FaXxXT/77LOqWrWqzp07p9DQUJt10bLCaJgrVaqUevTooU8//VRLly5Vt27dVKFCBVmtVnMUhnEtSn1duN+mz7SnXbt2qXbt2jp79qx69uypXr16mdNeGo3iUsp59u2332r//v2SlOkpx4z3P/7446pataoiIiK0cOFCu5Xf3d1dLVu2NIP+1CNzVqxYYdOghzvj4MGDmjJliv7++28FBARoyZIl8vPzS7MeqjHKxmiEsVqt8vb21osvvqhJkybpiSeekCSb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vKFFixYpODhY9erV09GjR3XlyhUaYm4jPj5eY8aMUZcuXW55fzAaPLt06aIWLVoof/78NuseJiUlad68eYqPj7/leWKMjjGOy5IlS3T+/HkzsF69erV27txpbjOnihUrpq5du6pIkSLmNK5GmT/99FPt27dPCQkJac4T41qBzDMa+SdMmKBffvlFUkoixdfX12at3Oxs19vbW++9954ZeKcOrl1cXHT8+HFzyrtbKV26tLp16yZXV9c0I3Fmzpypy5cvZ/heY/TEzeXq06eP5s+frxEjRihfvnzmdo19JCYmqly5cpo9e7bmz5+vhx9+OFvfgyNavXq1mjRponHjxmnSpEk2o2VzOgWucb831tssVaqUYmJizOtGy5YtVb9+feXLl8/mWpWYmKg5c+YoISHBpi6ZEeNaFhgYqGrVqkm6Mf2vMU3z9OnTc/RZgHsJ8SXx5a0QYxJj5mQfxJj3D2JMYkx7IcYkxkyN+DLvINkPADdxcnLSv//+K09PT82ePVshISHaunWrJk+erHr16pmvMxpl/vnnH61ateqWFY3bMW5avr6+ql27tjmFjXFTkm6sMWOv3nWGChUqqFOnTpJk04s+MTFRM2bMUFBQkJ5++mm9/PLLevvtt+Xt7e1wventpUSJElq8eLGWLVumKVOmaMqUKZo1a5aKFy9ufndG4HHlypVcH3mRL18+tW7dWk888YTZU9U415YuXZrlKfpSB4Jubm66fPmykpKSzB6vw4YNU758+ez+Oe6k6Ohoff755xo+fLg+++wz/f3335JSfmcPPvigOeVdTo+hcV6ULFlSLVu2VKVKlXThwgXNmDHD5vnbbcNqtapChQp65ZVXJEmLFi1SZGRkjsqWntSft2TJkmrRooUWLlyoyZMnq2DBgnbfX15htVq1du1a1ahRQ1988YWOHj2q1atX68KFC+m+PnUD+9NPP20Gk0bDn7Ozs/744w9zbd30pA58r169qg8++ECfffaZOW2Zs7Oz4uLizGmCMxMoZcajjz5qTj2aei3gqKgozZ49Wz///LMk6dSpU/rxxx/VqVMnLViwINcaph2Vi4uLzp8/r02bNpm/y65du8rd3d1mNF12titJDRo00CuvvKKHH37YZppn4xz58ssv9ddff91yik5nZ2fVqlVL7du3l2Q7EufAgQNauXJllstltVpVsmRJPfvssxo+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6b32xRdfaM2aNYqLizPXx3NyctLVq1cztY+8rmrVqqpYsaLi4uJ06tQpDR48WNOmTZOUs/UoM2Jss1KlSmrdurW8vb0l2U47tHTpUnPdw5wGUMa5fe3aNV2/fl0REREZTtEXGRmpadOm6dChQ2rRooV+/PFHvfXWW7nSazunrFarVqxYoSFDhuj//u//1KNHD61cuVIbN27Url27dPbsWR04cECLFi1Sz5499e677yomJua2x9w4RjVr1jTXAktMTFRycrIsFovi4uL0ySef2O1zGL1hjWkSvby8dOrUKbM3bFa4uLiY54LFYtHAgQPNxmZkzGq1auXKlapRo4YWL14sFxcXubq6mqPjJJmjbbLaO9x4f+PGjXXq1Cn99NNPWZ4SMSAgQHXq1JGbm5vNGq3Xr1+/bY9m3B179+7V4MGD1bdvX7Vt21bTpk3TsGHDtHjxYk2YMEGfffaZ+vbtq/bt26tLly4aMWKEIiMjzRENUvpJlMKFC6tgwYJpEjj//POPTp48eUeOeepGwFq1apmPG+dtsWLFMiyvwagP7d+/X//++68kqUCBAnrvvff0/fffq379+nYv973M3d1dtWvX1rRp0/TRRx+patWq+t///qfp06erUqVKcnd319mzZxUSEiIpcwkD4zrQtGlTtW7dWklJSfr8888VGxsrKeVa1bJlS82dO1cBAQGSbqxpadQTJenPP//UoEGDzPuaMUrDqJs88sgjKliwoP7555/blikgIEA1atSQxWIxG3+MRMbw4cP1888/68SJE/rrr780Z84c9ejRw0yU9O3b15xmEshtxJfEl5lBjHkDMSYxJtIixkROEWPaIsa8gfiS+DIjJPsBOLRly5bpm2++0X///afSpUurV69eatasWZrKckYNK0YAWrBgQTVt2lTz58/XmDFjdO3atSyVo27dunrqqafMfRn/RUVF6ccffzRvjtkJeI3KzuOPP27TqJN6isbg4GBNnDhRe/bs0fr16zVy5EizF9v97vz583JzczMrGCdOnNDcuXM1evRos9eqvUdfGNtr3769OT1a6pEXMTExmjlzpqScTb+V2l9//aWEhARZLBZt3LhRkm1D05EjR9ShQwft2bNHs2fP1owZM8ypFh3NDz/8oPbt22v48OHavHmzDhw4YD7n4uIii8Vift/Gv1esWKGBAweaQUFGjGuFt7e3WrRoIV9fX0kyp7iTpG+++UZ79+61mbYqJ1JXqsuWLauLFy/q6NGjkjLXm/7y5ctatGiRfvnlFyUnJ6tjx47avHmz+vbtm+Oy5XW7d+9W3bp1NWLECBUsWNCczta47hoBxYYNG/Tjjz9KytoIB+N88vLy0oMPPqjQ0FAdP3480+9NTk6Wm5ubOnXqZI4gTL1G6+7du801VO/U1LHI2NGjR/X888/r2Wef1erVq7Vz505JN+71Rl0gf/785vGMjIzUsmXL5O/vrzfeeEPr1683X5uacZ517NhRku19PzExUWFhYXdsrWAjiPb09DSTCMZnMsp1u4RVRESEJkyYoIsXL+r555/X1q1b1b179ztSXkfwwAMPqEyZMua0vYmJiSpUqJBGjBhhTlc6bdq0LE31bVyn+vfvL0nauHGjfv75Z5vXVKxYUePHj9cbb7whb29vc7up72mnTp0y60X79u2TlHIvzZcvn86cOaMrV64of/78ktK/ztycUPD09DTLZ4wUPnPmjN5++2117txZTz/9tObMmaOOHTuaI5eBewnxJfFlZhBjpiDGJMZEWsSYyAlizIwRY95AfEl8mR6S/QAcTnJysuLi4jRhwgR9+OGHunTpksqUKaMpU6boySefzNa6PEaFolq1aurcubOqV69u87xxQ8lIvnz51L17d3l7eysxMVEuLi5mgL1kyRL99ddfWS7TzWUrVKiQ/Pz8VKVKFfM5I9g8e/asQkND1b17dw0YMEDh4eGaOXOmmjZtmu395hXFihVT4cKFzV6rRmUyJCREr7zyin7//XczELbXNGVGr9XixYtnOO3Qjz/+aDaW5WS/xvmxY8cOxcfHKzExUefOndPFixdtXpcvXz4NGDBAGzZsULNmzbK9v9x08OBBde/eXW+99Zb++usvc23I2rVr67nnnlOjRo1UokQJM2AxKrRGMLRjxw4tWLDAbIy5XY/lqlWrKjAw0Ax8pBsB1uTJkyXZb+SOsf02bdpISlkvLSkpKVMNdQsXLtSkSZNUrVo1ff311xo/frw52gcZi4yM1DfffKOhQ4dq8eLF+u677/Txxx+rdOnS5jlk/L4SExM1Z84c85hktre78bqHHnpIly5d0u+//641a9ZkemSccX7Vq1dPTZs2VaFChWxGEkrSggULzACOxpi74/Llyxo8eLDatm2r3bt364knntAbb7yh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jlWPHj3Yvn07//77r815/vz586xcuZLPPvssVVNsWiwWHBwc8Pb25r///iMkJEQHHIPBQFBQECtXrqRr166pniItMTGRf/75h2XLlnHy5Ekg6dzUtWtXRowYocOguL8DBw4wYcIEQkJCAMiVK5f+fVutVn29OHfuHD///DNt2rR55EgJVRaqVKmCp6cnly5d4tatWzY915cvX07r1q0pWrToU5lqceHChZQvX55OnTql2H6ZMmUoU6YMXbt25fz585w5c4YdO3bokaolSpTg+vXr1K9fX08bKI15qafKRqdOndiyZQu7d++2mY77ypUrrFq1itq1a+tRL2m50aZe+8ILL9CsWTOOHj3KqVOnbNZjDQwMpFu3blSvXj3N9dxatWpRo0YNOnXqxIEDB9izZw9RUVGcOnWKunXrkiNHDsqUKUPHjh0pUKCAnGNEhiL5UjyIZExbkjGfP8mY2ZdkzKxPMqZkzPQk+VJkVZJmhMgC4uLiGDt2LN7e3mzfvh2A6tWrkzNnThwcHPSFpFu3btSrVw+w7VEGMHnyZCB1PcogaSTEtWvXdKUKoGvXrjg5OT1WQ4z6bIvFQv78+R/Yu2779u1P1LsuO0mvHq/3KlSoEBMnTqR79+64urrqcKOm8QT45ptvGDVqFOfPn79vhah06dLkzp2bc+fO2TSqqPKXK1cuWrduzcSJE/VaicmnWzQYDLqcRUREYG9vn6rvEBoaytKlSwHw9vZm586d0gjznKiy0qpVK+rVq6fXtko+isfPz4/o6OgHTkWlqPesWbOGq1ev6pFgY8eOZcOGDdIIk4GoY+nq6kr37t31ur7qPB8XF8euXbv0texR53l17OvUqUOjRo1042/ya9l3332nb0I8aHvqcbPZzI4dO5g1axa//vorsbGxVK5cmd9//53x48dLSHqEZcuW0aNHD6pXr868efPw8/Nj8eLFlCxZErPZrK8VVquV6Oho1q5dq6drftSxVs97e3tTqVIlHZTVVKphYWEsWLAAIN0bYSIiIti3bx/ff//9fRv01PUnR44clC1blhYtWjB58mS++OILvv/+eyZOnIivry9vvvkm3bt3l0aYNFLH2mg00rt3bz1CRT1mNpsJCgoiMDAQeLyRN+o99evX1yMeVP1W1ZUnTZoEPHpE7/0YjUbc3d0ZOHAg3333HStXrmTPnj0sWbKEadOm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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ar_index=\"and thrice twice opposite after around right walk run left look jump\".split(\" \")\n", + "cols = \"IRIGHT IWALK IRUN ILEFT ILOOK IJUMP\".split(\" \")\n", + "f, axes = plt.subplots(2, 2, figsize=(7, 7), sharey=True, sharex=True)\n", + "sns.despine(left=True)\n", + "pmi_ar, _ = get_heatmap_from_lexicon3(get_lexicon(jump_results, model='pmi'), file=\"figures/jump_pmi.pdf\", title='PMI', ax=axes[0,1])\n", + "pmi_ar = pmi_ar.loc[ar_index][cols]\n", + "get_heatmap_from_lexicon3(get_lexicon(jump_results, model='simple'), file=\"figures/jump_simple.pdf\", title=\"Simple\", reindex_df=pmi_ar, ax=axes[1,1])\n", + "get_heatmap_from_lexicon3(get_lexicon(jump_results, model='intersect'), file=\"figures/jump_ibm2.pdf\", title=\"IBM Model-2\", reindex_df=pmi_ar, ax=axes[0,0])\n", + "get_heatmap_from_lexicon3(get_lexicon(jump_results, model='goodman'), file=\"figures/jump_goodman.pdf\", title='Bayesian', reindex_df=pmi_ar, ax=axes[1,0])\n", + "f.savefig(\"figures/jump.pdf\", dpi=300)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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GNkPQETs+5FXU1MzYNmePXti5syZQ54rty6MhfON6e7aa6+Nf/u3f4sdO3aUlr3+9a+PVatWVbFWJNVwn5N33313fP3rX4+vfe1r8YUvfCFe8YpXGNFB1RXPwcH/AlOL3+tMJucb0532IRNF25Ak0TacOMJ+AAZ44oknolAoxHe/+93YsGFDHH300bF79+7IZDLxyle+Ms4888xqV5GDyJNPPhnbt2+P733ve7F+/fo4+uijY9euXTFv3rx4xSteEfPnz692FWHC3XXXXbF48eLSBcyIfRczIyK+8pWvxMknn1zN6pFgv/71r2Pr1q3x3e9+N9avXx9PPPFEREQ888wzcf7558enP/3pKteQ6ajcBce9e/fGjBkzRrUuUF3ah0wm7UOmI+1DKkHbkKlI27ByhP0AREREoVCIjRs3xsaNG+M73/lOPPbYY0PWmTlzZnzgAx+IhoaGOPHEE33pMm5PP/10ZLPZ0vn2yCOPDFlnxowZ8YEPfCDq6+vjla98pfONxCk2WB5//PHYsWNHHHfccRERcdlll8Wtt946YN3a2to47bTT4gtf+EIccsghVagtSVWc6vaee+6J7u7uyGazERHxqle9KnK5XDzwwAOldf/lX/4l3vjGN+otT1U8+eST8Zvf/CbuvffeuO222+L3fu/34re//W3MmzcvTjzxxDj77LOrXUWgH+1DJpP2IdOB9iGVpm1IUmgbTjxhP8A0VvxBt2PHjrjuuuvilltuiccffzwiImbNmhW9vb2xZ8+emDVrVtTU1MRzzz0XtbW18fKXvzy+8IUvxJFHHlndF0CiFM+3nTt3xpo1a6Kzs7N00XDw+RYRsWvXrqitrY2Xvexl8e///u9x1FFHVbP6MC59fX3xsY99LHp7e+Nv/uZv4nnPe17U19fHr371qzjnnHPiqaeeiqOOOip2794dDQ0N8Y53vKPaVSaBfvSjH8WHP/zhOPzww6O5uTne+ta3lp77/ve/H3fccUfccMMNceyxx8btt99edkpcqJRnnnkm7r777vj2t78dGzdujIceeqjseu9+97vj/PPPjzPOOMNFR6gS7UMmk/Yh05H2IZWmbchUpm1YOcJ+AEq9iI8//vg444wz4swzz4y+vr6455574qtf/Wrs2bMnamtro6+vL2bMmBF79uyJt7zlLfG+973PdGKM2T/8wz/EzTffHC972cvizDPPjDPPPDNqampi06ZN8R//8R+xZ8+eUiOjeL69+c1vjkWLFsUpp5xS5drD/vX29kZNTU385je/iauvvjq+/OUvRzqdjo985CNx1llnxRlnnBEf/OAH4/3vf39E7LuYuWPHjjjssMOqXHOSpHhB5pvf/Gb89V//dbzmNa+Jz372szF79uyIiNi9e3cccsghpfVWr14dn/vc5+Lss8+OZcuWaTBTUcXzq6+vL9asWRP//u//Hg8//HBERMyePTv27t0be/bsidmzZ0dfX18pwDnyyCPjpptuipe97GVVfgUwvWkfMpm0DznYaR9SadqGTGXahpNjZrUrAEB1ffKTn4xbb701Lrjggrjwwgvj1a9+dann/J/+6Z/GW97ylvj0pz8d9913X+neYTU1NbF27dp4+OGH4+Mf/7gvXUbtU5/6VNx8881RX18f73rXu+LVr351qfHxtre9Lf7kT/4kVqxYET/60Y8G9C7u6emJhx9+OK666qo44YQTqvwqYGTFRvLGjRvjW9/6VkREPProo3HbbbfFzJkz45hjjolzzjmn9Fnb19cXhx12WBT74OpRz2gUz5NbbrklZsyYEX/3d39XaijPmDGjNN1nb29vzJgxI97znvfEySefHFdddVVs27bN6Esqqvg5uHz58rjuuuvi2GOPjbe//e1x5plnxvOe97z4wQ9+EDfddFPs3LmztH5tbW089dRTccUVV8QHP/jBOOOMM6r5EmDa0j5kMmkfMh1oH1Jp2oZMZdqGk0PYDzANFRvI99xzT3z+85+P17/+9fGhD30oXvKSl5SeL/4grKuri6OPPjr+/M//PAqFQtTU1ERfX1+px92hhx5a5VfDgZiMqbqK+/je974X119/fbzuda+Lj3zkI/HSl7609HzxfFuwYEEcc8wx8ed//ufx1FNPlXp+FqdvPPzwwytaVzhQvb29EbGvkf0P//APEfG7EUibN2+OJ554ImbMmBGZTKa0TfFv0EUcxuruu++O9evXx3HHHVe60D1jxowB6xQfz549O/7wD/8wVq9e7bubiuo/Yui6666Ls88+O/7X//pfcfrpp5dGqP3xH/9xvOlNb4qOjo648847o7a2tnTxMZvNxpNPPhkf/ehHXdSBSaJ9SJH2IUws7UMmi7YhU5G24eQxNwfANFRsMFx33XVx2GGHxSc+8YnShZzi88X/IiKOO+64eO1rX1uaVuclL3lJfPrTn441a9bEi1/84qq8BsZv27Zt8YEPfCDuvffeqKmpib1791Z0f8Xz6Prrr49DDjkkPvGJTwy4kDP4fEun0/Ha1762dI/GF73oRXH11VfH5z73udJ2MFXV1tbGAw88EDfccENERGkEUkTEgw8+GPfee2+85jWvidra2or/7XHw+/73vx8REUcddVRs3769dDFxJL/3e7/ngg4VU/xe/8lPfhIdHR3x+7//+3HppZfG6173utIItT179kRExGte85r4x3/8xzj++ONj7969Az4XDzvsMPdihkmkfTi9aR9C5WgfMlm0DZlqtA0nl7AfYBrq6+uLn/zkJ7Fhw4aYN29eHHXUUbF79+6I+F2v42Jvz56ennjf+94XPT09UVNTE3/1V38VGzZsiPPPPz8iQmMkIYqNyQceeCCuuOKK2LBhQ3ziE5+IiKE9fcejeB4U9zN43z/72c9i3bp1ceqpp8YLX/jC0o+54vrFOqxbty4WL14ct99+e0REfPCDH4xvfetb8eY3v3nAfmCq+ulPfxpvf/vbY+bMmbFgwYJ43vOeF729vXHIIYdEbW1tPPfcc3HPPfdExMT87XFw2t+FmeLzxX9/8IMfxM9//vPS9Hi7du0qu17xX5+lVEoxmLnxxhvj2WefjauuuiqOPfbYiPjdxZ7+9wN93vOeF6997WsjImLPnj3x/Oc/Pz7+8Y9HZ2dnHH/88ZP/AmCa0j6cfrQPYXJoH3KgtA1JKm3DyWUaf4Bppre3t9SzOCIG9KDv6+srfcnee++9cdNNN8VXv/rV2LNnTzQ0NMQll1wSL3rRiyJi35fuzJkzNUYSovgD68tf/nJs2LAhampq4gc/+EHcfvvtccEFF5Tez7EafPGv3PO1tbXxy1/+MiIijj766NLy/ufbfffdFzfddFN87Wtfi127dsWb3vSmuPTSS0sjg5xvTAXF87n4b7lpTh977LG4+OKLY+HChdHX1xd33313NDc3ly5gzpgxI3bs2BHf/OY34+yzz56UqVJJjuIF7uJn43PPPTfgXotFxecfe+yx0rJPfepT8fTTT0dDQ0Ppfp/F9Qb/27+sPXv2xIwZM5yHTIi9e/fGE088Ef/5n/8Zxx13XJx44olDPjOL5+GGDRvi5ptvjg0bNkRExKJFi+Kv//qvS79HxvvbBBgb7cPpSfsQDpz2IZWkbUjSaRtOLkcHYJopfoneddddEfG7Rn7xx98jjzwSX/ziF+PWW2+NJ554Ik499dS49NJLS/fFKU6lM9wXbPFLm6nlqaeeiquuuipuu+22iIg45JBDYvfu3fGJT3wiLrjggtJUcqP9QV+8j2LxPPjhD38YV199dbzrXe+KCy64oLRe8Vz47ne/GxFDz7dHH320dL79+te/jpNPPjkuvfTSmD9/fkQ436iuwX8T/S/kRAy8h2L/+4r+4R/+YWn7BQsWxJvf/Oa47bbbYubMmbFnz5545plnYv369XHGGWfE8573PBd0prn+73/x39/+9rdx0003RS6Xi0996lNDLmQXz8P/+T//Z3zpS1+KiIhcLhcf+tCH4otf/GKccsopMWvWrHjRi14UDz74YJx88snxq1/9Ko499th49NFHI51Ox3PPPRcLFiww/S0Tpq+vL2bMmBEPP/xw7N27txTg7NmzpzR6LWLfCLebbrop/vM//zN27NgR55xzTlx66aWRTqdL68+cOdPFHJgk2ofTk/YhjJ32IZWmbcjBQttw8jlCAAeBsfRu6+vri127dsWTTz4ZERGbN2+OnTt3xqxZs+KWW26JW265JbZs2RJz586NK6+8Mv7sz/6stF1vb++IPefvu++++K//+q94+9vffuAvigNWbCT09vbGF77whbjjjjuipqYmZsyYUfpx9etf/zquvfba+L//9//u9/0t6v9Dq1AoxCWXXBLf+ta34m//9m8HXMgp1mH37t3xxBNPRMS+Bsezzz4bRxxxRNxyyy3R2dkZuVwuUqlUXHHFFdHU1FTabn/12bJlS+RyuXjHO95xAEcJhldsXP/mN7+Jbdu2xY9+9KPo7u6OY445Jnbs2BHz5s2LE088Mc4666zSuTp79uzS9sWe+EuXLo0NGzbEs88+GzNnzozdu3fH3XffHXfeeWe89a1vdSFnmiu+/9u3b4+dO3fGhg0b4p577omf/OQnUSgU4p577indF7l4nhUbxqecckq86U1vijvuuCNmzZoVu3btio0bN0Y2my19B5SbPre/448/Pk4//fS47LLL4rDDDqvsi+WgVjyXv/e978WePXtKU4YWA5wnnngibr311vjiF78YjzzySLz85S8v3bMxYt9F8ZqaeJltdgAAg/1JREFUmmF/0w4exQQMT/uQcrQP4cBoH1Jp2oYcLLQNJ5+wH2CSVLJnbvGL7/7774+jjz46fvGLX8Sxxx4bhx9+eMyYMWPAF2BNTU3Mnj279ANv586d8dnPfja2bt1amirnve99b/zt3/7tkKly9vclum7dunj22Wcr8hoZu+L5dsUVV0RnZ2ecddZZ8eijj8avfvWriPhdQ/Paa6+Nd77znfGiF71oxB9LxeeK58XnPve5uPrqq+OFL3xhfO1rXxty36ViHYo/5CL2nW+rVq2Kn//857F+/fqIiPjf//t/x9/93d+V1hvL+fbUU0+5mEPFPPPMM3H33XfHd77zndi4cWPk8/kBz3/lK1+JmpqaWLx4cdTX10cmkxnwN1T8/H3JS14Sixcvjs985jOlbR988MG444474owzzojf+73fMwppGnvsscfi7rvvjjvuuCO+/e1vl+6RXPRP//RP8fnPfz5mzJgx5LfEnDlzYunSpfHNb34znnvuuaipqYlDDjkkdu3aFTNnziyNsCuel8XHxekZ9+zZE/l8Pn75y1/Gjh074sMf/nBpelyI+N13f/HcG+l3QjGIeeihhyJi3+fco48+Gi996Uujq6srOjs748c//nEcdthhcemll8Z73vOeIfsZzgMPPBB33HFHXHTRRRP7AqGKtA+ZbNqHcGC0D6k0bUOmMm3DqU3YD1BB27dvj4ceeihOPPHEAb15J8pTTz0VDz30UGzevDlWrlwZNTU18fTTT8dvf/vbOOGEE+L000+Pv//7vx/QG7PYYHjZy14WtbW18atf/SpWrlwZERHnnHNOXHLJJaVG+Winyimu99///d/x8MMPT/jrZPzuuOOOePLJJ6O7uzuOO+64yOfz8eEPfzh+/OMfx549e0q9fT/5yU/G1VdfPWxjsv8oim9+85vxsY99rHRRqLm5OY499tjSudW/sVFclk6no7a2NvL5fOl8e/3rXx+XXHJJHHfccREx9vNt+/btcf/99x/oIYIBiufs7t27o7OzM2688cbS59qsWbOit7c39uzZU7oovmvXrli9enV87Wtfi5tuumlIY7j4N3XRRRfFV77ylXjggQdKDeof/vCHcccdd0Rzc7MLOdNM8Tx76KGH4rOf/Wzce++98dKXvjRWrlwZL3zhC+Ohhx6K1atXx89//vPYtGlTfP7zn4/3vOc9Q0a07d27N9LpdFx11VXxhS98IX70ox/Frl27ora2tjRCb/fu3aV/iyOH+l/UKVq3bl309fXFpz71KaOJKCmeI88991wceuihA86ZwRehi6NDDz300IiI2LVrV9xwww3xyCOPxB133BERERdeeGEsXbo0jjjiiIgYfYCzcePG2Lx584S+NqgG7UOqTfsQxkb7kErTNiQptA2nNmE/QAXs3bs3PvvZz8a1114bs2bNirPPPjve9a53xYIFCw54BEexZ9xPfvKTuPHGG2PdunVRKBQi4nf32Zs9e3b8/Oc/j5///OfxyCOPxF/+5V+W7qlY/OKdPXt29Pb2xiGHHBI1NTVx6aWXlqbI27Nnz4j3wRusuN69994bJ598ckS4V161Fc+zN7zhDfGmN70pIvb9sEqn0/He9743rrnmmviv//qv0rRIt912W7zrXe+KM844o+y0n7W1tZHL5eKjH/3ogB9Ub37zm+Mv/uIvSusMVlx26KGHls63iIi///u/j3e9610RMf7z7Yc//GG8/OUvjwjnGxOneB5dffXVccMNN8QxxxwTf/qnfxpnnHFGzJ49O77//e/Hl770pXjuuedK69fW1sYjjzwSbW1t8f73vz9e9apXlcqrqakp/U1dfPHF8Td/8zelv8/f/OY3ceedd8b8+fNj3rx5zuNppLa2Np5++um45JJLYuvWrXHppZfGW9/61ojY9xviFa94Rbz2ta+NH/7wh9Ha2hr/+q//GhdccEH8j//xP8pO2fgnf/InccEFF8SXvvSl2LhxY+k3QPEC+Y4dO0oXcYr7qK2tjb1790bEvvN0165d8d3vfjd++MMfxumnn16Fo8JU8tRTT8WvfvWr2Lp1a9xyyy0xZ86c6O3tjeOPPz5e9apXxVvf+tbSiMvBIzxe/OIXxyGHHBJPPvlk3HDDDdHX1xdnnXVWXHLJJfHKV74yIqJ0QXF/3/3Fsn/729/GL3/5y4q/bqgU7UO/16tN+xDGR/uQStM2ZKrTNkwGYT9ABaxduzauvfbamD17djz33HPxjW98I2pra+M1r3lNqUfbeNXU1MSPf/zjuOSSS+KRRx6Jv/iLv4j58+fH9773vbjrrrviJz/5SfT29pZ+uH3nO9+JN7zhDXHGGWdEX19f9PX1RW1tbbzlLW+JlStXlqaE+sUvfhG//OUv4/jjj48ZM2aM+YJToVCI+++/P573vOdFRPmGPZOn+P4VL570v5By7rnnxr333hsPP/xwPPvss6Xz9Kqrroqurq6yP662bt0a733ve+PP/uzP4vWvf33ceOONsW3bttI9GIebYqnYOH3zm98c//zP/1w63+6///64//774+Uvf/mYz7e+vr549tln45e//GXpx6TzjYlQbIz8y7/8S1x//fXxhje8Id7znvfEa17zmtIIuLe85S1x/vnnx2c/+9m4++67o7a2tvS5+o1vfCN+/etfR1tbW5xyyimlcot/U+eff37ceuutsXHjxtLF91wuF2vXro1TTjml7FR8HLw+/OEPx6ZNm6Kzs7N0AbD/Z+kRRxwRf/iHfxif+MQn4pOf/GQsXbo0rrvuugGftcVzpXgOvuMd74h3vOMdsXPnztixY0fk8/l4/vOfH4899lik0+nYunVrvOxlL4sHHngg9u7dG9/61rdi06ZNcf/990dtbW0UCoVYv369CzrTVPHC809/+tP4yle+Ehs2bIgHHnggIqJ0j89NmzbFLbfcEl/96lfj7LPPjve+971Dvv+POOKI0iihvr6+WLJkSbz//e8v7WMsAU6x7O9973vxwhe+sLS9732SRvvQ7/Vq0z6EsdM+ZLJoGzLVaBsmj6MAMIGK97h75JFHImLftDbFiyrPPPNMHHrooaV1xuvrX/96vO9974sjjzwybrvttvjwhz8cb3zjG+NDH/pQ/PM//3M8//nPj71798aePXtKF47634+x+AU4d+7cmD9/fqncW2+9Ne68887YuXNn1NTURG9v76jqU+z5uXHjxti9e3e84hWviIgo9RBlaihOn9jb2xs1NTXR0NAQmUwmIqJ0/64tW7bEl770pYgY+v6ddNJJceedd8bSpUujrq4utm3bFi960Yvi3HPPjYgYdoql/ufbWWedVVr+pS99KdatWxe//e1vx3y+1dTUxF133RXPPfdcqRfo4PuYMX0VCoX4zW9+M+btihdRNm/eHNddd12cfvrpcckll0RdXV0cdthh0dfXV/q7+IM/+INYvnx5vPSlLy39TfX29pam0Tv88MOHlF/8rPzbv/3bqKmpid27d5d6JH/nO9+J73znOwf2wkmUH/zgB3HnnXfGmWeeGa961atK51b/z9Li74XXvva18W//9m9x9tlnx44dO8qWN/gC4KGHHhrPf/7z41WvelWk0+mYP39+vOQlL4mzzz47jjvuuDjnnHPi3HPPjSuuuCKuvfbaOOGEE0pTkP7iF7+o0Ktmqps5c2Y89dRT8ZnPfCauv/76eOCBBwbcW3nGjBmlc/See+6Jf/zHf4yrr746fvrTn0bE776Lzz///DjiiCNiz549sXfv3viv//qv2LJlS2kfY7kYU/x9sGXLlnjooYdixowZLuaQKNqH2odTlfYh04X2IVOdtiFTkbZh8jgSABOo+IPq0EMPjcMPP7x0X6SI3/WgP5AeuQ888EBcffXVcfjhh8dHPvKRSKfTpS+6Xbt2xdFHHx3t7e3xx3/8xxERsXPnzpg/f3684Q1vGFJWKpWKP/qjPyrdK/K3v/1tdHV1xVe/+tWIGH1P+OIX+3/8x39EX19fvPSlL42IGHWvPCZX8X099dRT441vfGO84AUvKPX6jYhYvnx5qcfl4AssxXsoFXtyFqdnHM0Fyjlz5sQf/dEflS4w7tixI77yla8c0PnW29tbuv9d8e+L6W3Hjh2xcuXKuPfee8e8bfGz+YYbbojdu3fHJz/5yUin0xHxuws9/c/TF77whXHWWWeVGsHPf/7z4+Mf/3jcfPPN8bKXvWxI+cVRGZlMpjQlbnGfv/jFL6K7uzu2bdtW6iHNwW3dunUREfGCF7yg9Jk7WP+RGUceeWS8+93vHnCP5bEafF7t3bs39u7dGy9/+cvj7//+70vLZ8+eHbt27Rr3fkie4rmxdevWWLhwYWzYsGHAc7t27YqamprSRena2trS9/ENN9wQ//AP/1C6z3NfX1/MnDkz/uiP/qhUxtq1a2Pt2rXx1FNPRUSMOsApjv7ctGlT/Pd//3eceOKJpYvhkBTah9qHU532IQcz7UOSQNuQqUTbMLmE/QATqPiF+Cd/8ifR0NAQvb29MXv27PjjP/7juPTSS8dd7t69e6Ovry9WrFgRDzzwQHz4wx+OV7/61RHxu0ZwsWfd6173umhvb49ly5bFv/zLv8TnP//5UoO3v9mzZ8erX/3qOPbYY0vLfvGLX8RnPvOZAT2I9/el++yzz8bHP/7x0pf/G9/4xnG/TiZH8T1taGiI008/vXQ/rlmzZsW2bdvi05/+dEQM/fFf/IH/3e9+Nw455JDSRcL9XaDs6+uLWbNmxatf/eoBjdz7778/VqxYEd/85jeH1G04O3bsiH/8x38sNYaKI0cgIuKwww6L73//+/G5z30unnjiiSHPFxsj5fT29kY+n4/u7u448cQTI51Ol9Yv/i0UP283bNgQH/jAB+LLX/5yREQsWrQovv3tb8ef/umfRsTwI9eK5SxZsiTmzp1bmhZtz549cc8998Sdd94ZEQd20Z9k+NnPfhYREb/+9a/32zgtng/DjZAbrcHnVbEn/t69e+PEE0+ME044ISIiMplM6TcFB7edO3fGnj17SufGN7/5zXjwwQdLIzbOPPPM+NCHPhTvfve7401velMcccQRpc/F4pSJe/fujR/96EfR1tYWu3fvjpqamjjiiCOirq4u5s6dGxH7Pl9vu+22uPXWWyNi9AFOcb3//M//jD179sSLXvSiiBDgkCzah9qHSaB9yMFK+5Ak0DZkKtA2TD5hP8AEKva4Peqoo2LZsmXR2dkZN954Y/zVX/1VqQfweMyYMSPy+Xx84xvfiBNOOCHOOeec0gWewYr33nvHO95RurAyXC/g+fPnD7jX2MyZM+M3v/lNtLa2xo033hgRv/sy7evrG/Kj84knnogvf/nL0d3dHTU1NXHWWWfFiSeeOOpeeVRH8T19yUteEvX19aULesX37brrrot8Pl/6oV80a9as2Lt3b9x1111xyimnxCtf+cpR9TAv/lA844wz4vTTTy9NYVecEqq1tTX+/d//fUDdyp1vTz75ZHR1dcXatWujpqYm5s+fHyeffLLzjZLdu3fHtm3b4u677y5NHRux7yJOcQrFiN+d68V/i6OX8vl87N27N44++ujSdv1HNv30pz+Nj370o/E3f/M3sWHDhjjnnHPi61//erS0tJQuykQMP3Kt2Pg56qij4i//8i8HPPfwww/HbbfdVpomr1hn5/fBZ+fOnbFz586YOXNmfP/734/bb789nn766Yj43VR3xc/Wcv+OdFEyYt+58+1vfzsefvjhiNj/RfLiZ/2TTz4ZEVG6RyQHp/7f2+vXr49vfetbERGlKRp37twZp5xySvzTP/1TfOELX4j3vve9cdlll8VnPvOZuPPOO6OpqSle8pKXRMTACzO33HJLrF+/vjTS41WvelW8/OUvLz3/yCOPxMqVK0sXdSL2f27u2rUrrr322vjiF78YEQIckkn7UPswCbQPOVhpHzLVaRtSTdqGBxdhP8AE69/L8vd///cjk8mU7hs3HsUv3ptuuil27twZJ5xwQqRSqZgxY0bZ3r39v1yL25Zbr3gfsQsvvDBOP/30iNjXE2/GjBnxyCOPRFtbW/zd3/1drFu3rtSzr9hb7qGHHop77rknVq5cGZ/61Kfi8ccfj76+vjjnnHPG/TqZXMVz4w1veEOcddZZMWvWrNizZ09p2s6PfexjETG0t3B3d3c8+eST8ed//ucRMfoe5sUfbU1NTXHGGWdERJR6rT/++OOxbNmy+Ou//uv4+te/Xur92f9827RpU+l8e/TRR6Ovry/OPvvsAzwKHEz27t0bu3btir6+vujr64ubbropHnzwwdJFnNra2vjZz34WH/zgB+Nzn/tcRPzu87J4Hn/3u9+N3t7e0t/HrFmzoqamJp544on47Gc/G//n//yf6OzsjJe+9KXxb//2b/Gv//qvpREevb29w17Eee655yLid9OORUQsXLgwXvnKV5b+DiIifvSjH0VnZ2dERKnOtbW18fjjj1foqDER+p8zo7nAfeihh8aLX/zi0sW/q6++Oq644orI5XKxe/fuePzxx2P37t3x61//OmpqauLRRx+Nmpqa0uP+n7vlRgnNmDEjvve978X73ve+eOaZZwZcJO+v/8WhLVu2xPbt2+Ntb3vbgPvncvApnj/XX399tLS0xI033hiPPfZY/PjHP47e3t5obGyMrq6u0nds8RzbvXt3zJ07Nz7ykY/EFVdcEXPmzCndd7H4fb1q1ar45S9/GRERJ598cvzBH/xBaQTHzJkz49lnn42rrroqVq1aFbt27Sqdm729vUMCnKeeeiq++tWvxle/+tWoqamJU089Nf7gD/6g8gcIKkD7kCTQPuRgo31INWgbkiTahgcXN8wCmOJqamri2WefjbvvvjsiIo4//viIiAENgJG2HU7/e/O97W1vi8cffzx+/vOfl+471tvbG7fffnvcdttt8drXvjZe/OIXx0knnRQ/+clP4plnnomf/vSnAxoYb37zm+Nd73rXgLKZuoqjjA4//PA4//zzI5fLxebNm0tTL33jG9+IjRs3xute97rSstra2uju7o4XvOAFY/5RVTwnTj755Hjb294Wjz32WGmqsuL51t3dHd3d3QPOt5/+9Kel8+2xxx4rlVdfXx/vec97BpTN9DZjxox47LHH4uGHH46ampr48Y9/HOvXr4+LLroonnvuufjYxz4WnZ2dceihh8YJJ5wQzz33XOniZbFhWzzHfvazn8VTTz0VRx11VHR1dUVnZ2f8+P+1d9/R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o5v9IiIiIiIiIiIiIiIiIiIiqYxu9ouIiIiIiIiIiIiIiIiIiKQyutkvIiIiIiIiIiIiIiIiIiKSyuhmv4iIiIiIiIiIiIiIiIiISCqjm/0iIiIiIiIiIiIiIiIiIiKpjG72i4iIiIiIiIiIiIiIiIiIpDK62S8iIiIiIiIiIiIiIiIiIpLK6Ga/iIiIiIiIiIiIiIiIiIhIKqOb/SIiIiIiIiIiIiIiIiIiIqmMbvaLiIiIiIiIiIiIiIiIiIikMrrZLyIiIiIiIiIiIiIiIiIiksroZr+IiIiIiIiIiIiIiIiIiEgqo5v9IiIiIiIiIiIiIiIiIiIiqYxu9ouIiIiIiIiIiIiIiIiIiKQyutkvIiIiIiIiIiIiIiIiIiKSyuhmv4iIiIiIiIiIiIiIiIiISCqjm/0iIiIiIiIiIiIiIiIiIiKpjG72i4iIiIiIiIiIiIiIiIiIpDK62S8iIiIiIiIiIiIiIiIiIpLK6Ga/iIiIiIiIiIiIiIiIiIhIKqOb/SIiIiIiIiIiIiIiIiIiIqmMbvaLiIiIiIiIiIiIiIiIiIikMrrZLyIiIiIiIiIiIiIiIiIiksroZr+IiIiIiIiIiIiIiIiIiEgq8/+SeJ/cqDpV2gAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "cogs_input_words = ['noticed', 'baked', 'shattered', 'blessed','hoped']\n", + "cogs_output_words = [\"notice\", \"bake\", \"shatter\", \"bless\", \"hope\"]\n", + "f, axes = plt.subplots(2, 2, figsize=(7, 7), sharey=True, sharex=True)\n", + "sns.despine(left=True)\n", + "simple_ar,_ = get_heatmap_from_lexicon3(get_lexicon(cogs_results, model='simple'), indices=cogs_input_words, columns=cogs_output_words, file=\"figures/cogs_simple.pdf\", title=\"Simple\", ax=axes[1,1])\n", + "simple_ar = simple_ar.loc[cogs_input_words][cogs_output_words]\n", + "get_heatmap_from_lexicon3(get_lexicon(cogs_results, model='pmi'), file=\"figures/cogs_pmi.pdf\", title='PMI', ax=axes[0,1], reindex_df=simple_ar)\n", + "get_heatmap_from_lexicon3(get_lexicon(cogs_results, model='intersect'), file=\"figures/cogs_ibm2.pdf\", title=\"IBM Model-2\", reindex_df=simple_ar, ax=axes[0,0])\n", + "get_heatmap_from_lexicon3(get_lexicon(cogs_results, model='goodman'), file=\"figures/cogs_goodman.pdf\", title='Bayesian', reindex_df=simple_ar, ax=axes[1,0])\n", + "f.savefig(\"figures/cogs.pdf\", dpi=300)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ABLATION II - Cogs Category Results" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_cat_results = {}\n", + "for m in ['lstm', 'lstmcopy', 'simple']:\n", + " cogs_cat_results[m] = {}\n", + " for cat in set(cogsinfo.data['gen_cats']):\n", + " cogs_cat_results[m][cat] = get_accuracy([result.results for result in cogs_results[m]],category=cat)\n", + " cogs_cat_results[m]['all'] = get_accuracy([result.results for result in cogs_results[m]])" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'lstm': {'pp_dative_to_do_dative': 0.9654999999999999+/-0.0189802528961023,\n", + " 'only_seen_as_unacc_subj_as_obj_omitted_transitive_subj': 0.7748999999999999+/-0.18549741238087392,\n", + " 'obj_omitted_transitive_to_transitive': 0.43450000000000005+/-0.35146614346192717,\n", + " 'pp_recursion': 0.041499999999999995+/-0.012483989746871791,\n", + " 'obj_to_subj_common': 0.9181999999999999+/-0.21124099980827588,\n", + " 'obj_to_subj_proper': 0.5479999999999999+/-0.44094625522845754,\n", + " 'passive_to_active': 0.2273+/-0.20590582798939905,\n", + " 'only_seen_as_unacc_subj_as_unerg_subj': 0.7723+/-0.18591022026774107,\n", + " 'do_dative_to_pp_dative': 0.9841+/-0.01510926867852976,\n", + " 'cp_recursion': 0.0+/-0,\n", + " 'only_seen_as_transitive_subj_as_unacc_subj': 0.9224+/-0.11380263617333299,\n", + " 'subj_to_obj_common': 0.7792+/-0.16155358244248252,\n", + " 'prim_to_subj_common': 0.5506+/-0.37906310820231504,\n", + " 'unacc_to_transitive': 0.1606+/-0.28371401093354554,\n", + " 'active_to_passive': 0.9673999999999999+/-0.04584364732435672,\n", + " 'obj_pp_to_subj_pp': 0.0+/-0,\n", + " 'prim_to_inf_arg': 0.32949999999999996+/-0.3263872699723444,\n", + " 'prim_to_obj_proper': 0.23490000000000003+/-0.2060710799699948,\n", + " 'prim_to_subj_proper': 0.1935+/-0.37532499250649426,\n", + " 'prim_to_obj_common': 0.4415+/-0.28308205524193863,\n", + " 'subj_to_obj_proper': 0.4549+/-0.1632791780969025,\n", + " 'all': 0.5095619047619048+/-0.0549003583085177},\n", + " 'lstmcopy': {'pp_dative_to_do_dative': 0.6252+/-0.3258275003740476,\n", + " 'only_seen_as_unacc_subj_as_obj_omitted_transitive_subj': 0.9855+/-0.017557049866079453,\n", + " 'obj_omitted_transitive_to_transitive': 0.0256+/-0.0462,\n", + " 'pp_recursion': 0.0018000000000000002+/-0.002785677655436824,\n", + " 'obj_to_subj_common': 0.9959+/-0.0031448370387032808,\n", + " 'obj_to_subj_proper': 0.9947000000000001+/-0.0017349351572897487,\n", + " 'passive_to_active': 0.4664+/-0.2767609799086569,\n", + " 'only_seen_as_unacc_subj_as_unerg_subj': 0.9902+/-0.0078076885183772605,\n", + " 'do_dative_to_pp_dative': 0.8776999999999999+/-0.16998238143995983,\n", + " 'cp_recursion': 0.0+/-0,\n", + " 'only_seen_as_transitive_subj_as_unacc_subj': 0.9941999999999999+/-0.005741080037762934,\n", + " 'subj_to_obj_common': 0.9907999999999999+/-0.004331281565541547,\n", + " 'prim_to_subj_common': 0.9955999999999999+/-0.0019595917942265445,\n", + " 'unacc_to_transitive': 0.0005+/-0.0015000000000000002,\n", + " 'active_to_passive': 0.5574999999999999+/-0.3997602406443142,\n", + " 'obj_pp_to_subj_pp': 0.0+/-0,\n", + " 'prim_to_inf_arg': 0.9996+/-0.000489897948556636,\n", + " 'prim_to_obj_proper': 0.681+/-0.040644802865803145,\n", + " 'prim_to_subj_proper': 0.998+/-0.001483239697419134,\n", + " 'prim_to_obj_common': 0.9908999999999999+/-0.004437341546466762,\n", + " 'subj_to_obj_proper': 0.6615+/-0.026960155785900053,\n", + " 'all': 0.658695238095238+/-0.030558469290058916},\n", + " 'simple': {'pp_dative_to_do_dative': 0.9905999999999999+/-0.007472616676907768,\n", + " 'only_seen_as_unacc_subj_as_obj_omitted_transitive_subj': 0.9958+/-0.00823164625090268,\n", + " 'obj_omitted_transitive_to_transitive': 0.9988999999999999+/-0.001044030650891056,\n", + " 'pp_recursion': 0.0131+/-0.01628158468945821,\n", + " 'obj_to_subj_common': 0.9968999999999999+/-0.0015779733838059513,\n", + " 'obj_to_subj_proper': 0.9964999999999999+/-0.003201562118716427,\n", + " 'passive_to_active': 0.9987+/-0.0011874342087037928,\n", + " 'only_seen_as_unacc_subj_as_unerg_subj': 0.9958+/-0.008084553172563102,\n", + " 'do_dative_to_pp_dative': 0.9947999999999999+/-0.003187475490101848,\n", + " 'cp_recursion': 0.00030000000000000003+/-0.0006403124237432849,\n", + " 'only_seen_as_transitive_subj_as_unacc_subj': 0.9992000000000001+/-0.0018330302779823377,\n", + " 'subj_to_obj_common': 0.9930999999999999+/-0.002879236009777596,\n", + " 'prim_to_subj_common': 0.9968999999999999+/-0.0013000000000000012,\n", + " 'unacc_to_transitive': 0.999+/-0.0010954451150103333,\n", + " 'active_to_passive': 0.9996+/-0.0006633249580710806,\n", + " 'obj_pp_to_subj_pp': 0.0+/-0,\n", + " 'prim_to_inf_arg': 0.9926999999999999+/-0.01723977958095754,\n", + " 'prim_to_obj_proper': 0.6566000000000001+/-0.07767264640785712,\n", + " 'prim_to_subj_proper': 0.9974000000000001+/-0.00521919534027996,\n", + " 'prim_to_obj_common': 0.9933+/-0.0025709920264364904,\n", + " 'subj_to_obj_proper': 0.6378999999999999+/-0.05931348919090834,\n", + " 'all': 0.8212904761904761+/-0.00610904129037678}}" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cogs_cat_results" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_cat_table = pd.DataFrame(cogs_cat_results, columns=['lstm','lstmcopy','simple'], index=list(set(cogsinfo.data['gen_cats'])))" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lstm lstmcopy simple
pp_dative_to_do_dative& 0.97 \\pm 0.02& 0.63 \\pm 0.33& 0.99 \\pm 0.01
only_seen_as_unacc_subj_as_obj_omitted_transitive_subj& 0.77 \\pm 0.19& 0.99 \\pm 0.02& 1.0 \\pm 0.0
obj_omitted_transitive_to_transitive& 0.43 \\pm 0.35& 0.026 \\pm 0.046& 1.0 \\pm 0.0
pp_recursion& 0.041 \\pm 0.012& 0.0018 \\pm 0.0028& 0.013 \\pm 0.016
obj_to_subj_common& 0.92 \\pm 0.21& 1.0 \\pm 0.0& 1.0 \\pm 0.0
obj_to_subj_proper& 0.55 \\pm 0.44& 0.99 \\pm 0.00& 1.0 \\pm 0.0
passive_to_active& 0.23 \\pm 0.21& 0.47 \\pm 0.28& 1.0 \\pm 0.0
only_seen_as_unacc_subj_as_unerg_subj& 0.77 \\pm 0.19& 0.99 \\pm 0.01& 1.0 \\pm 0.0
do_dative_to_pp_dative& 0.98 \\pm 0.02& 0.88 \\pm 0.17& 0.99 \\pm 0.00
cp_recursion& 0.0 \\pm 0& 0.0 \\pm 0& 0.00030 \\pm 0.00064
only_seen_as_transitive_subj_as_unacc_subj& 0.92 \\pm 0.11& 0.99 \\pm 0.01& 1.0 \\pm 0.0
subj_to_obj_common& 0.78 \\pm 0.16& 0.99 \\pm 0.00& 0.99 \\pm 0.00
prim_to_subj_common& 0.55 \\pm 0.38& 1.0 \\pm 0.0& 1.0 \\pm 0.0
unacc_to_transitive& 0.16 \\pm 0.28& 0.0005 \\pm 0.0015& 1.0 \\pm 0.0
active_to_passive& 0.97 \\pm 0.05& 0.56 \\pm 0.40& 1.0 \\pm 0.0
obj_pp_to_subj_pp& 0.0 \\pm 0& 0.0 \\pm 0& 0.0 \\pm 0
prim_to_inf_arg& 0.33 \\pm 0.33& 1.0 \\pm 0.0& 0.99 \\pm 0.02
prim_to_obj_proper& 0.23 \\pm 0.21& 0.68 \\pm 0.04& 0.66 \\pm 0.08
prim_to_subj_proper& 0.19 \\pm 0.38& 1.0 \\pm 0.0& 1.0 \\pm 0.0
prim_to_obj_common& 0.44 \\pm 0.28& 0.99 \\pm 0.00& 0.99 \\pm 0.00
subj_to_obj_proper& 0.45 \\pm 0.16& 0.66 \\pm 0.03& 0.64 \\pm 0.06
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cogs_cat_table.style.format(u'& {:.2L}')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ABLATION - Soft / Learned / Random" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [], + "source": [ + "def cogs_ablation(datainfo=None): \n", + " exp_folders = {\"simple\":cogs_home + \"simple/\",\n", + " \"soft\":cogs_home + \"soft_temp_0.2_simple/\",\n", + " \"learned\":cogs_home + \"learn_temp_0.2_simple/\",\n", + " \"uniform\":cogs_home + \"learn_uniform_temp_0.2/\",\n", + " \"random\":cogs_home + \"learn_random_temp_0.2/\" }\n", + " return read_all_results(exp_folders,\"cogs\", datainfo=datainfo, read_category=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_ablation_significance = {}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_ablation_results = cogs_ablation(cogsinfo)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# translate_ablation_results = translate_ablation(translateinfo)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ablation_scores = {}\n", + "for (exp_name, results) in cogs_ablation_results.items():\n", + " ablation_scores[exp_name] = {\"acc\":get_accuracy([result.results for result in results])}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_ablation_results.pop('random')\n", + "update_significance(cogs_ablation_results,cogs_ablation_significance)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pd.DataFrame(cogs_ablation_significance)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# ablation_scores2 = {}\n", + "# for (exp_name, results) in translate_ablation_results.items():\n", + "# ablation_scores2[exp_name] = {\"bleu\":get_bleu([result.results for result in results])}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# ablation_scores" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# ablation_scores2" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_ablation_table = pd.DataFrame(ablation_scores, index=[\"acc\"],columns=list(ablation_scores.keys()))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_ablation_table.transpose().style.format(u'& {:.4P}')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# translate_ablation_table = pd.DataFrame(ablation_scores2, index=[\"bleu\"],columns=list(ablation_scores2.keys()))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# translate_ablation_table.transpose().style.format(u'& {:.2uP}')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for m in ['soft', 'learned', 'uniform']:\n", + " cogs_cat_results[m] = {}\n", + " for cat in set(cogsinfo.data['gen_cats']):\n", + " cogs_cat_results[m][cat] = get_accuracy([result.results for result in cogs_ablation_results[m]],category=cat)\n", + " cogs_cat_results[m]['all'] = get_accuracy([result.results for result in cogs_ablation_results[m]])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "selective_index = \"\"\"prim_to_inf_arg\n", + "prim_to_subj_proper\n", + "active_to_passive\n", + "obj_pp_to_subj_pp\n", + "passive_to_active\n", + "pp_recursion\n", + "obj_omitted_transitive_to_transitive\n", + "prim_to_obj_proper\n", + "unacc_to_transitive\n", + "obj_to_subj_proper\n", + "prim_to_obj_common\n", + "subj_to_obj_common\n", + "cp_recursion\n", + "pp_dative_to_do_dative\n", + "prim_to_subj_common\n", + "all\"\"\".split(\"\\n\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "selective_index = \"\"\"prim_to_\n", + "active_to_passive\n", + "obj_pp_to_subj_pp\n", + "passive_to_active\n", + "p_recursion\n", + "unacc_to_transitive\n", + "obj_to_subj_proper\n", + "subj_to_obj_common\n", + "dative\n", + "all\"\"\".split(\"\\n\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for m in ['lstm', 'lstmcopy', 'simple']:\n", + " cogs_cat_results[m] = {}\n", + " for cat in selective_index:\n", + " print(cat)\n", + " cogs_cat_results[m][cat] = get_accuracy([result.results for result in cogs_results[m]],category=cat)\n", + " cogs_cat_results[m]['all'] = get_accuracy([result.results for result in cogs_results[m]])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#cogs_cat_table2 = pd.DataFrame(cogs_cat_results, columns=['lstm','lstmcopy','uniform','simple', 'soft', 'learned'], index=selective_index)\n", + "cogs_cat_table2 = pd.DataFrame(cogs_cat_results, columns=['lstm','lstmcopy','simple'], index=selective_index)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cogs_cat_table2" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "(cogs_cat_table2*8).transpose().style.format(u'\\mybar{{ {:.2ufP} }}')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print((cogs_cat_table2*8).to_latex(formatters=[u'\\mybar{{ {:.2ufP} }}'.format]*3, escape=False).replace(\"±\",\"}{\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Colors Detailed Results" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def sort_inputs(results):\n", + " return sorted(results, key=lambda k: k['input'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "colors_details = {\"examples\":[]}\n", + "results = sort_inputs(colors_results[\"simple\"][0].results)\n", + "for k in range(len(results)):\n", + " colors_details[\"examples\"].append(\" \".join(results[k]['input']))\n", + "for model in (\"simple\",\"goodman\",\"geca\",\"synatt\"):\n", + " colors_details[model] = []\n", + " for k in range(len(colors_results[model][0].results)):\n", + " colors_details[model].append(mean_std([sort_inputs(colors_results[model][i].results)[k]['label'] for i in range(16)])) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "colors_details" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(pd.DataFrame(colors_details).to_latex(escape=False, index=False))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(pd.DataFrame(colors_details).iloc[[7,9,2,0,4,3,8,1,5,6]].to_latex(escape=False, index=False))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# alignments = json.load(open(\"COGS/cogs/alignments/simple.align.v3.json\"))\n", + "# fastalign = json.load(open(\"COGS/cogs/alignments/intersect.align.o.json\"))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# def visualize_model(mfile, viswords=None, n=None):\n", + "# model = torch.load(mfile, map_location=torch.device('cpu'))\n", + "# vocab_x = list(model.vocab_x._contents.keys())\n", + "# vocab_y = list(model.vocab_y._contents.keys())\n", + "# input_embeddings = model.pyx.encoder.embed.weight.detach().cpu().numpy()\n", + "# output_embeddings = model.pyx.decoder.embed.weight.detach().cpu().numpy()\n", + "# # print(input_embeddings.shape)\n", + "# # print(output_embeddings.shape)\n", + "# #Y = TSNE(n_components=2).fit_transform(input_embeddings)\n", + "# #print(Y.shape)\n", + "# if n is None:\n", + "# n = len(vocab_x) + 1\n", + "# Y = TSNE(n_components=2, random_state=0).fit_transform(input_embeddings[0:n])\n", + "# tsne_plot(Y, vocab_x[0:n], viswords)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# def tsne_plot(embeddings, words, viswords=None, filename=None):\n", + "# ax = plt.figure(figsize=(5, 3))\n", + "# if viswords is not None:\n", + "# indices = [words.index(w) for w in viswords]\n", + "# x = embeddings[indices, 0]\n", + "# y = embeddings[indices, 1]\n", + "# plt.scatter(x, y, s=2)\n", + "# for (i,ind) in enumerate(indices):\n", + "# if viswords is None or words[ind] in viswords:\n", + "# plt.annotate(words[ind], alpha=0.8, xy=(x[i], y[i]), xytext=(1, 2), textcoords='offset points', size=6, label=None)\n", + "# plt.title(\"Embbeding Viz\")\n", + "# if filename:\n", + "# plt.savefig(filename, format='png', dpi=245, bbox_inches='tight')\n", + "# plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# around_right_mfile1 = \"exp/SCAN/aligner_jump_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/cogs_baseline_seed_0_model.m\"\n", + "# around_right_mfile2 = \"exp/SCAN/LSTM_jump_SCAN_nbatch_128_lr_1.0_warmup_4000_max_8000/cogs_baseline_seed_0_model.m\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# viswords = \"jump right left turn around walk look after twice thrice and\".split()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# visualize_model(around_right_mfile1, viswords)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# visualize_model(around_right_mfile2,viswords)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/data.py b/data.py new file mode 100644 index 0000000..914b1df --- /dev/null +++ b/data.py @@ -0,0 +1,64 @@ +import torch +from torch import nn, optim +import torch.utils.data as torch_data +import torch.nn.functional as F +import numpy as np +import random +import sys +from src import batch_seqs +import pdb +EPS = 1e-7 + +def encode(data, vocab_x, vocab_y): + encoded = [] + for datum in data: + encoded.append(encode_io(datum, vocab_x, vocab_y)) + return encoded + +def encode_io(datum, vocab_x, vocab_y): + inp, out = datum + return ([vocab_x.sos()] + vocab_x.encode(inp) + [vocab_x.eos()], [vocab_y.sos()] + vocab_y.encode(out) + [vocab_y.eos()]) + +def eval_format(vocab, seq): + if vocab.eos() in seq: + seq = seq[:seq.index(vocab.eos())+1] + seq = seq[1:-1] + return vocab.decode(seq) + +def collate(batch): + batch = sorted(batch, + key=lambda x: len(x[0]), + reverse=True) + inp, out = zip(*batch) + lens = torch.LongTensor(list(map(len,inp))) + inp = batch_seqs(inp) + out = batch_seqs(out) + return inp, out, lens + +def get_fig2_exp(input_symbols, output_symbols): + study = [(["dax"], ["RED"]), + (["lug"],["BLUE"]), + (["wif"],["GREEN"]), + (["zup"],["YELLOW"]), + (["lug","fep"],["BLUE","BLUE","BLUE"]), + (["dax","fep"],["RED","RED","RED"]), + (["lug","blicket","wif"],["BLUE","GREEN","BLUE"]), + (["wif","blicket","dax"],["GREEN","RED","GREEN"]), + (["lug","kiki","wif"],["GREEN","BLUE"]), + (["dax","kiki","lug"],["BLUE","RED"]), + (["lug","fep","kiki","wif"],["GREEN","BLUE","BLUE","BLUE"]), + (["wif","kiki","dax","blicket","lug"],["RED","BLUE","RED","GREEN"]), + (["lug","kiki","wif","fep"],["GREEN","GREEN","GREEN","BLUE"]), + (["wif","blicket","dax","kiki","lug"],["BLUE","GREEN","RED","GREEN"])] + + test = [(["zup","fep"],["YELLOW","YELLOW","YELLOW"]), + (["zup","blicket","lug"],["YELLOW","BLUE","YELLOW"]), + (["dax","blicket","zup"],["RED","YELLOW","RED"]), + (["zup","kiki","dax"],["RED","YELLOW"]), + (["wif","kiki","zup"],["YELLOW","GREEN"]), + (["zup","fep","kiki","lug"],["BLUE","YELLOW","YELLOW","YELLOW"]), + (["wif","kiki","zup","fep"],["YELLOW","YELLOW","YELLOW","GREEN"]), + (["lug","kiki","wif","blicket","zup"],["GREEN","YELLOW","GREEN","BLUE"]), + (["zup","blicket","wif","kiki","dax","fep"],["RED","RED","RED","YELLOW","GREEN","YELLOW"]), + (["zup","blicket","zup","kiki","zup","fep"],["YELLOW","YELLOW","YELLOW","YELLOW","YELLOW","YELLOW"])] + return study, test diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..c7e5d61 --- /dev/null +++ b/environment.yml @@ -0,0 +1,106 @@ +name: lexical +channels: + - pytorch + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - absl-py=0.9.0=py37_0 + - blas=1.0=mkl + - ca-certificates=2021.5.25=h06a4308_1 + - certifi=2020.12.5=py37h06a4308_0 + - cffi=1.14.0=py37h2e261b9_0 + - cudatoolkit=10.0.130=0 + - cycler=0.10.0=py37_0 + - dbus=1.13.18=hb2f20db_0 + - expat=2.4.1=h2531618_2 + - fontconfig=2.13.1=h6c09931_0 + - freetype=2.10.4=h5ab3b9f_0 + - glib=2.63.1=h5a9c865_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - icu=58.2=he6710b0_3 + - intel-openmp=2021.2.0=h06a4308_610 + - jpeg=9b=h024ee3a_2 + - kiwisolver=1.3.1=py37h2531618_0 + - lcms2=2.12=h3be6417_0 + - libedit=3.1.20210216=h27cfd23_1 + - libffi=3.2.1=hf484d3e_1007 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libtiff=4.2.0=h85742a9_0 + - libuuid=1.0.3=h1bed415_2 + - libwebp-base=1.2.0=h27cfd23_0 + - libxcb=1.14=h7b6447c_0 + - libxml2=2.9.10=hb55368b_3 + - lz4-c=1.9.3=h2531618_0 + - matplotlib=3.3.4=py37h06a4308_0 + - matplotlib-base=3.3.4=py37h62a2d02_0 + - mkl=2020.2=256 + - mkl-service=2.3.0=py37he8ac12f_0 + - mkl_fft=1.3.0=py37h54f3939_0 + - mkl_random=1.1.1=py37h0573a6f_0 + - ncurses=6.2=he6710b0_1 + - ninja=1.10.2=hff7bd54_1 + - numpy=1.19.1=py37hbc911f0_0 + - numpy-base=1.19.1=py37hfa32c7d_0 + - olefile=0.46=py37_0 + - openssl=1.1.1k=h27cfd23_0 + - pandas=1.2.4=py37ha9443f7_0 + - pcre=8.44=he6710b0_0 + - pillow=8.2.0=py37he98fc37_0 + - pip=21.1.1=py37h06a4308_0 + - pycparser=2.20=py_2 + - pyparsing=2.4.7=pyhd3eb1b0_0 + - pyqt=5.9.2=py37h05f1152_2 + - python=3.7.3=h0371630_0 + - python-dateutil=2.8.1=pyhd3eb1b0_0 + - pytorch=1.2.0=py3.7_cuda10.0.130_cudnn7.6.2_0 + - pytz=2021.1=pyhd3eb1b0_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - scipy=1.6.2=py37h91f5cce_0 + - seaborn=0.11.0=py_0 + - setuptools=52.0.0=py37h06a4308_0 + - sip=4.19.8=py37hf484d3e_0 + - six=1.15.0=py37h06a4308_0 + - sqlite=3.33.0=h62c20be_0 + - tk=8.6.10=hbc83047_0 + - torchvision=0.4.0=py37_cu100 + - tornado=6.1=py37h27cfd23_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - xz=5.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.4.9=haebb681_0 + - pip: + - cachetools==4.2.2 + - chardet==4.0.0 + - click==8.0.1 + - future==0.18.2 + - google-auth==1.30.1 + - google-auth-oauthlib==0.4.4 + - grpcio==1.38.0 + - idna==2.10 + - importlib-metadata==4.3.1 + - joblib==1.0.1 + - markdown==3.3.4 + - nltk==3.6.2 + - oauthlib==3.1.0 + - protobuf==3.17.1 + - pyasn1==0.4.8 + - pyasn1-modules==0.2.8 + - regex==2021.4.4 + - requests==2.25.1 + - requests-oauthlib==1.3.0 + - rsa==4.7.2 + - tb-nightly==2.6.0a20210529 + - tensorboard==2.3.0 + - tensorboard-data-server==0.6.1 + - tensorboard-plugin-wit==1.8.0 + - tqdm==4.61.0 + - typing-extensions==3.10.0.0 + - urllib3==1.26.5 + - werkzeug==2.0.1 + - zipp==3.4.1 +prefix: /home/gridsan/akyurek/anaconda3/envs/lexical diff --git a/exp/COGS/LSTM.sh b/exp/COGS/LSTM.sh new file mode 100644 index 0000000..cb6a58b --- /dev/null +++ b/exp/COGS/LSTM.sh @@ -0,0 +1,40 @@ +#!/bin/bash +#SBATCH --job-name=lstmcogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=LSTM +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do +if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --tb_dir ${expname} \ + --COGS > eval.$i.out 2> eval.$i.err +fi +done diff --git a/exp/COGS/LSTM_copy.sh b/exp/COGS/LSTM_copy.sh new file mode 100644 index 0000000..111c4a9 --- /dev/null +++ b/exp/COGS/LSTM_copy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +#SBATCH --job-name=copycogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=LSTM_copy +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do +if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --copy \ + --tb_dir ${expname} \ + --tolarance 10 \ + --COGS > eval.$i.out 2> eval.$i.err +fi +done diff --git a/exp/COGS/collect.sh b/exp/COGS/collect.sh new file mode 100644 index 0000000..2ec2077 --- /dev/null +++ b/exp/COGS/collect.sh @@ -0,0 +1,56 @@ +#!/bin/bash + +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} + + +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +for lr in 1.0; do + for warmup_steps in 4000; do #orig: 4000 + for max_steps in 8000; do #orig 30000 + for n_batch in 128; do + for prefix in "pmi_" "soft_pmi_" "learned_pmi__" "0.5aligner_" "fast_forward_" "fast_intersect_" "soft_aligner_" "learn_aligner_" "goodman_" "soft_goodman_" "LSTM_" "LSTM_copy_";do + expname=${prefix}COGS_lr_${lr}_warmup_${warmup_steps}_max_${max_steps} + expname=simple_drop + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + #numbers1=$(grep -oh 'train model/5500/best\_acc' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi + + done + done +done +done +done diff --git a/exp/COGS/fast.sh b/exp/COGS/fast.sh new file mode 100644 index 0000000..d1b20d4 --- /dev/null +++ b/exp/COGS/fast.sh @@ -0,0 +1,43 @@ +#!/bin/bash +#SBATCH --job-name=fastcogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +align='intersect' +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=fast_${align} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/${align}.align.o.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/geca.sh b/exp/COGS/geca.sh new file mode 100644 index 0000000..d10fbdc --- /dev/null +++ b/exp/COGS/geca.sh @@ -0,0 +1,45 @@ +#!/bin/bash +#SBATCH --job-name=gecacogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +## This scripts cannot generate the GECA_COGS results in the paper +## We use geca repository (https://github.com/jacobandreas/geca) to run these ones + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=geca_LSTM +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --paug 0.1 \ + --tb_dir ${expname} \ + --aug_file ../geca_j/composed.0.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/goodman.sh b/exp/COGS/goodman.sh new file mode 100644 index 0000000..dabadd1 --- /dev/null +++ b/exp/COGS/goodman.sh @@ -0,0 +1,42 @@ +#!/bin/bash +#SBATCH --job-name=goodman +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=goodman +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/goodman.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/learn_simple.sh b/exp/COGS/learn_simple.sh new file mode 100644 index 0000000..0988ef0 --- /dev/null +++ b/exp/COGS/learn_simple.sh @@ -0,0 +1,47 @@ +#!/bin/bash +#SBATCH --job-name=learncogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=0.2 +expname=learn_temp_${temp}_simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --highdrop \ + --soft_align \ + --soft_temp ${temp} \ + --learn_align \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/simple.align.v3.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/pmi.sh b/exp/COGS/pmi.sh new file mode 100644 index 0000000..e9421f8 --- /dev/null +++ b/exp/COGS/pmi.sh @@ -0,0 +1,42 @@ +#!/bin/bash +#SBATCH --job-name=pmicogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=pmi +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do +if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --copy \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/pmi.align.json \ + --tolarance 10 \ + --COGS > eval.$i.out 2> eval.$i.err +fi +done diff --git a/exp/COGS/random.sh b/exp/COGS/random.sh new file mode 100644 index 0000000..90740c2 --- /dev/null +++ b/exp/COGS/random.sh @@ -0,0 +1,47 @@ +#!/bin/bash +#SBATCH --job-name=randomcogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=1.0 +expname=learn_random_temp_${temp} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --highdrop \ + --soft_align \ + --soft_temp ${temp} \ + --learn_align \ + --tb_dir ${expname} \ + --aligner random \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/simple.sh b/exp/COGS/simple.sh new file mode 100644 index 0000000..7071fd8 --- /dev/null +++ b/exp/COGS/simple.sh @@ -0,0 +1,42 @@ +#!/bin/bash +#SBATCH --job-name=simplecogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/simple.align.v3.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/soft_simple.sh b/exp/COGS/soft_simple.sh new file mode 100644 index 0000000..afc22b3 --- /dev/null +++ b/exp/COGS/soft_simple.sh @@ -0,0 +1,45 @@ +#!/bin/bash +#SBATCH --job-name=softsimple +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=0.2 +expname=soft_temp_${temp}_simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --soft_align \ + --soft_temp ${temp} \ + --tb_dir ${expname} \ + --aligner $home/COGS/cogs/alignments/simple.align.v3.json \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COGS/uniform.sh b/exp/COGS/uniform.sh new file mode 100644 index 0000000..c2c75cc --- /dev/null +++ b/exp/COGS/uniform.sh @@ -0,0 +1,48 @@ +#!/bin/bash +#SBATCH --job-name=uniformcogs +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-9 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=0.2 +expname=learn_uniform_temp_${temp} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --highdrop \ + --soft_align \ + --soft_temp ${temp} \ + --learn_align \ + --tb_dir ${expname} \ + --aligner uniform \ + --COGS > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COLOR/LSTM.sh b/exp/COLOR/LSTM.sh new file mode 100644 index 0000000..45b392b --- /dev/null +++ b/exp/COLOR/LSTM.sh @@ -0,0 +1,47 @@ +#!/bin/bash +#SBATCH --job-name=lstmcolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-1 +i=0 +for nbatch in 5; do #1 2 5 14; do + for lr in 0.001; do + for dim in 128; do + $((i++)); + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + expname=LSTM_nbatch_${nbatch}_dim_${dim}_lr_${lr} + mkdir -p $expname + cd $expname + val_steps=$((14 / nbatch)) + max_steps=$((200 * 14 / nbatch)) + tolarance=$max_steps + home="../../../" + for i in `seq 0 15` + do + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --nolr_schedule \ + --full_data \ + --dropout 0.4 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + done + cd .. + fi + done + done +done diff --git a/exp/COLOR/collect.sh b/exp/COLOR/collect.sh new file mode 100644 index 0000000..308c1f9 --- /dev/null +++ b/exp/COLOR/collect.sh @@ -0,0 +1,45 @@ +#!/bin/bash +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +WARMUP=70 +BATCHSIZE=5 +LR=1.0 +for prefix in "pmi" "goodman" "simple" "fast_forward" "fast_intersect"; do + expname=${prefix} + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi +done diff --git a/exp/COLOR/collect_baseline.sh b/exp/COLOR/collect_baseline.sh new file mode 100644 index 0000000..456bba2 --- /dev/null +++ b/exp/COLOR/collect_baseline.sh @@ -0,0 +1,46 @@ +#!/bin/bash +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +for n_batch in 1 2 3 5 14; do +for lr in 0.001 0.002; do +for dim in 256 512; do + expname=LSTM_nbatch_${n_batch}_dim_${dim}_lr_${lr} + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi +done +done +done diff --git a/exp/COLOR/collect_geca.sh b/exp/COLOR/collect_geca.sh new file mode 100644 index 0000000..ad3e81c --- /dev/null +++ b/exp/COLOR/collect_geca.sh @@ -0,0 +1,48 @@ +#!/bin/bash +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +for paug in 0.01 0.1 0.2 0.3; do + for n_batch in 2 5 14; do + for lr in 0.001 0.002; do + for dim in 256 512; do + expname=geca_nbatch_${n_batch}_dim_${dim}_lr_${lr}_paug_${paug} + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi + done + done + done +done diff --git a/exp/COLOR/fast.sh b/exp/COLOR/fast.sh new file mode 100644 index 0000000..bdff2fa --- /dev/null +++ b/exp/COLOR/fast.sh @@ -0,0 +1,47 @@ +#!/bin/bash +#SBATCH --job-name=fastcolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-15 +align="forward" +dim=512 +lr=1.0 +val_steps=2 +nbatch=5 +warmup_steps=$((32 * 14 / nbatch)) +max_steps=$((200 * 14 / nbatch)) +expname=fast_${align} +tolarance=$max_steps +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 15`; do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --full_data \ + --dropout 0.4 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --warmup_steps ${warmup_steps} \ + --copy \ + --highdrop \ + --highdropvalue 0.5 \ + --gclip 0.5 \ + --aligner $home/COLOR/alignments/${align}.align.o.json \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COLOR/geca.sh b/exp/COLOR/geca.sh new file mode 100644 index 0000000..1397428 --- /dev/null +++ b/exp/COLOR/geca.sh @@ -0,0 +1,51 @@ +#!/bin/bash +#SBATCH --job-name=gecacolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-1 +i=0 +for nbatch in 14; do + for paug in 0.3; do + for lr in 0.001; do + for dim in 256; do + $((i++)); + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + expname=geca_nbatch_${nbatch}_dim_${dim}_lr_${lr}_paug_${paug} + mkdir -p $expname + cd $expname + val_steps=$((14 / nbatch)) + max_steps=$((200 * 14 / nbatch)) + tolarance=$max_steps + home="../../../" + for i in `seq 0 15` + do + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --nolr_schedule \ + --full_data \ + --dropout 0.3 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --paug ${paug} \ + --aug_file $home/GECA/COLOR/composed.0.json \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + done + cd .. + fi + done + done + done +done diff --git a/exp/COLOR/goodman.sh b/exp/COLOR/goodman.sh new file mode 100644 index 0000000..072682c --- /dev/null +++ b/exp/COLOR/goodman.sh @@ -0,0 +1,46 @@ +#!/bin/bash +#SBATCH --job-name=goodmancolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-15 +dim=512 +lr=1.0 +val_steps=2 +nbatch=5 +warmup_steps=$((32 * 14 / nbatch)) +max_steps=$((200 * 14 / nbatch)) +expname=goodman +tolarance=$max_steps +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 15`; do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --full_data \ + --dropout 0.4 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --warmup_steps ${warmup_steps} \ + --copy \ + --highdrop \ + --highdropvalue 0.5 \ + --gclip 0.5 \ + --aligner $home/COLOR/alignments/goodman.json \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COLOR/pmi.sh b/exp/COLOR/pmi.sh new file mode 100644 index 0000000..8102bf6 --- /dev/null +++ b/exp/COLOR/pmi.sh @@ -0,0 +1,46 @@ +#!/bin/bash +#SBATCH --job-name=pmicolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-15 +dim=512 +lr=1.0 +val_steps=2 +nbatch=5 +warmup_steps=$((32 * 14 / nbatch)) +max_steps=$((200 * 14 / nbatch)) +expname=pmi +tolarance=$max_steps +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 15`; do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --full_data \ + --dropout 0.4 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --warmup_steps ${warmup_steps} \ + --copy \ + --highdrop \ + --highdropvalue 0.5 \ + --gclip 0.5 \ + --aligner $home/COLOR/alignments/pmi.align.json \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COLOR/simple.sh b/exp/COLOR/simple.sh new file mode 100644 index 0000000..d6784bb --- /dev/null +++ b/exp/COLOR/simple.sh @@ -0,0 +1,46 @@ +#!/bin/bash +#SBATCH --job-name=simplecolor +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-15 +dim=512 +lr=1.0 +val_steps=2 +nbatch=5 +warmup_steps=$((32 * 14 / nbatch)) +max_steps=$((200 * 14 / nbatch)) +expname=simple +tolarance=$max_steps +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 15`; do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + PYTHONHASHSEED=0 python $home/main.py \ + --seed $i \ + --n_batch ${nbatch} \ + --n_layers 2 \ + --dim ${dim} \ + --lr ${lr} \ + --full_data \ + --dropout 0.4 \ + --accum_count 1 \ + --valid_steps ${val_steps} \ + --attention \ + --max_step ${max_steps} \ + --tolarance ${tolarance} \ + --warmup_steps ${warmup_steps} \ + --copy \ + --highdrop \ + --highdropvalue 0.5 \ + --gclip 0.5 \ + --aligner $home/COLOR/alignments/simple.align.v3.json \ + --noqxy \ + --nobidirectional > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/COLOR/start_exps.sh b/exp/COLOR/start_exps.sh new file mode 100644 index 0000000..fbcdf77 --- /dev/null +++ b/exp/COLOR/start_exps.sh @@ -0,0 +1,64 @@ +#!/bin/sh + +# for lamda in 0.05 0.1 0.2 0.5; do +# for kll in 0.1 0.2 0.5 1.0; do +# for ent in 0.0 0.00001 0.0001 0.001; do +# screen -X -S lamda_${lamda}_kll_${kll}_ent_${ent} quit +# done +# done +# done +#nbatch_1_lr_0.02_Nsample_50_dim_512_lamda_0.05_kll_1.0_ent_0.001 +takejob='salloc --gres=gpu:volta:1 --time=24:00:00 --constraint=xeon-g6 --cpus-per-task=5 --qos=high srun' +for nbatch in 1; do # 2 3; do + for lr in 0.02;do #0.0005 0.001 0.005 0.01 0.05 0.1 0.5 1.0; do + for Nsample in 100; do + for dim in 512; do + for lamda in 0.0075; do + #for kll in 1.0; do + #for ent in 0.001; do + #expname=noapprox_${nbatch}_lr_${lr}_Nsample_${Nsample}_dim_${dim}_lamda_${lamda}_kll_${kll}_ent_${ent} + expname=noapprox_${nbatch}_color_lamda_${lamda} + mkdir -p $expname + cd $expname + val_steps=$((14 / nbatch)) + max_steps=$((50*14 / nbatch)) + tolarance=$max_steps + [ -d "run.sh" ] && rm "run.sh" + cat > "run.sh" < eval.\$i.out 2> eval.\$i.err +done +EOF + chmod u+x run.sh + screen -S ${expname} -d -m bash -c "$takejob ./run.sh" + cd .. + # done + # done + done + done + done + done +done + + diff --git a/exp/SCAN/LSTM.sh b/exp/SCAN/LSTM.sh new file mode 100644 index 0000000..1a1409d --- /dev/null +++ b/exp/SCAN/LSTM.sh @@ -0,0 +1,52 @@ +#!/bin/bash +#SBATCH --job-name=lstmscan +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-20 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +batch_size=128 +home="../../../" +k=0 +for split in around_right jump; do + if [[ $split = jump ]]; then + split_folder="add_prim_split" + else + split_folder="template_split" + fi + expname=${split}_LSTM + mkdir -p $expname + for i in `seq 0 9` + do + $(( k++ )) + if [[ $k -eq $SLURM_ARRAY_TASK_ID ]]; then + cd $expname + python -u $home/main.py \ + --seed $i \ + --n_batch ${batch_size} \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --tb_dir ${expname} \ + --scan_split ${split} \ + --SCAN > eval.$i.out 2> eval.$i.err + fi + done +done diff --git a/exp/SCAN/collect.sh b/exp/SCAN/collect.sh new file mode 100644 index 0000000..f4cc166 --- /dev/null +++ b/exp/SCAN/collect.sh @@ -0,0 +1,44 @@ +#!/bin/bash +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +for split in "jump" "around_right"; do + for prefix in "pmi" "goodman" "simple" "fast_forward" "fast_intersect"; do + expname=${split}_${prefix} + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi + done +done diff --git a/exp/SCAN/collect_aligner.sh b/exp/SCAN/collect_aligner.sh new file mode 100644 index 0000000..e0cd321 --- /dev/null +++ b/exp/SCAN/collect_aligner.sh @@ -0,0 +1,54 @@ +#!/bin/bash +split=$1 +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} + +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} +for lr in 1.0; do + for warmup_steps in 4000; do + for max_steps in 8000; do + for n_batch in 128; do + for prefix in "pmi_aligner_" "aligner_" "fast_forward_" "fast_intersect_" "soft_aligner_" "learn_aligner_" "goodman_" "soft_goodman_" "LSTM_" "LSTM_copy_";do + + expname=${prefix}${split}_SCAN_nbatch_${n_batch}_lr_${lr}_warmup_${warmup_steps}_max_${max_steps} + + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/acc [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi + + done + done + done + done +done diff --git a/exp/SCAN/fast.sh b/exp/SCAN/fast.sh new file mode 100644 index 0000000..1e1b456 --- /dev/null +++ b/exp/SCAN/fast.sh @@ -0,0 +1,56 @@ +#!/bin/bash +#SBATCH --job-name=fastscan +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-20 + +lr=1.0 +align="intersect" +warmup_steps=4000 +max_steps=8000 +batch_size=128 +home="../../../" +k=0 +for split in around_right jump; do + if [[ $split = jump ]]; then + split_folder="add_prim_split" + else + split_folder="template_split" + fi + expname=${split}_fast_${align} + mkdir -p $expname + for i in `seq 0 9` + do + $(( k++ )) + if [[ $k -eq $SLURM_ARRAY_TASK_ID ]]; then + cd $expname + python -u $home/main.py \ + --seed $i \ + --n_batch ${batch_size} \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --scan_split ${split} \ + --highdrop \ + --tb_dir ${expname} \ + --aligner $home/SCAN/${split_folder}/alignments/${align}.align.o.json \ + --SCAN > eval.$i.out 2> eval.$i.err + fi + done +done diff --git a/exp/SCAN/goodman.sh b/exp/SCAN/goodman.sh new file mode 100644 index 0000000..94b8109 --- /dev/null +++ b/exp/SCAN/goodman.sh @@ -0,0 +1,54 @@ +#!/bin/bash +#SBATCH --job-name=goodmanscan +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-20 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +batch_size=128 +home="../../../" +k=0 +for split in around_right jump; do + if [[ $split = jump ]]; then + split_folder="add_prim_split" + else + split_folder="template_split" + fi + expname=${split}_goodman + mkdir -p $expname + for i in `seq 0 9` + do + $(( k++ )) + if [[ $k -eq $SLURM_ARRAY_TASK_ID ]]; then + cd $expname + python -u $home/main.py \ + --seed $i \ + --n_batch ${batch_size} \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 20 \ + --copy \ + --highdrop \ + --tb_dir ${expname} \ + --scan_split ${split} \ + --aligner $home/SCAN/${split_folder}/alignments/goodman.json \ + --SCAN > eval.$i.out 2> eval.$i.err + fi + done +done diff --git a/exp/SCAN/pmi.sh b/exp/SCAN/pmi.sh new file mode 100644 index 0000000..0520b4c --- /dev/null +++ b/exp/SCAN/pmi.sh @@ -0,0 +1,53 @@ +#!/bin/bash +#SBATCH --job-name=pmiscan +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-20 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +batch_size=128 +k=0 +for i in `seq 0 9`; do + for split in around_right jump; do + if [[ $split = jump ]]; then + split_folder="add_prim_split" + else + split_folder="template_split" + fi + expname=${split}_pmi + mkdir -p $expname + home="../../../" + $(( k++ )) + if [[ $k -eq $SLURM_ARRAY_TASK_ID ]]; then + cd $expname + python -u $home/main.py \ + --seed $i \ + --n_batch ${batch_size} \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 20 \ + --copy \ + --highdrop \ + --tb_dir ${expname} \ + --scan_split ${split} \ + --aligner $home/SCAN/${split_folder}/alignments/pmi.align.json \ + --SCAN > eval.$i.out 2> eval.$i.err + fi + done +done diff --git a/exp/SCAN/simple.sh b/exp/SCAN/simple.sh new file mode 100644 index 0000000..4377e34 --- /dev/null +++ b/exp/SCAN/simple.sh @@ -0,0 +1,53 @@ +#!/bin/bash +#SBATCH --job-name=simplescan +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=1-20 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +batch_size=128 +k=0 +for i in `seq 0 9`; do + for split in around_right jump; do + if [[ $split = jump ]]; then + split_folder="add_prim_split" + else + split_folder="template_split" + fi + expname=${split}_simple + mkdir -p $expname + home="../../../" + $(( k++ )) + if [[ $k -eq $SLURM_ARRAY_TASK_ID ]]; then + cd $expname + python -u $home/main.py \ + --seed $i \ + --n_batch ${batch_size} \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 20 \ + --copy \ + --highdrop \ + --tb_dir ${expname} \ + --scan_split ${split} \ + --aligner $home/SCAN/${split_folder}/alignments/simple.align.v3.json \ + --SCAN > eval.$i.out 2> eval.$i.err + fi + done +done diff --git a/exp/TRANSLATE/LSTM.sh b/exp/TRANSLATE/LSTM.sh new file mode 100644 index 0000000..7d7b468 --- /dev/null +++ b/exp/TRANSLATE/LSTM.sh @@ -0,0 +1,40 @@ +#!/bin/bash +#SBATCH --job-name=lstmtranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=LSTM +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 4` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/LSTM_copy.sh b/exp/TRANSLATE/LSTM_copy.sh new file mode 100644 index 0000000..e6c81e0 --- /dev/null +++ b/exp/TRANSLATE/LSTM_copy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +#SBATCH --job-name=copytranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=LSTM_copy +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/baseline_translate.sh b/exp/TRANSLATE/baseline_translate.sh new file mode 100644 index 0000000..c2f673f --- /dev/null +++ b/exp/TRANSLATE/baseline_translate.sh @@ -0,0 +1,40 @@ +takejob='salloc --gres=gpu:volta:1 --time=24:00:00 --job-name=baseline --constraint=xeon-g6 --cpus-per-task=5 --qos=high srun' + +for lr in 1.0; do + for warmup_steps in 4001; do #orig: 4000 + for max_steps in 8000; do #orig 30000 + expname=baseline_aligner_TRANSLATE_lr_${lr}_warmup_${warmup_steps}_max_${max_steps} + mkdir -p $expname + cd $expname + [ -d "run.sh" ] && rm "run.sh" + cat > "run.sh" < translate.eval.\$i.out 2> translate.eval.\$i.err +done +EOF + chmod u+x run.sh + screen -S ${expname} -d -m bash -c "$takejob ./run.sh" + cd .. + done + done +done diff --git a/exp/TRANSLATE/collect.sh b/exp/TRANSLATE/collect.sh new file mode 100644 index 0000000..1480e42 --- /dev/null +++ b/exp/TRANSLATE/collect.sh @@ -0,0 +1,53 @@ +#!/bin/bash +std(){ + awk '{sum+=$1; sumsq+=$1*$1}END{print "± " sqrt(sumsq/NR - (sum/NR)**2)}' +} + +mean(){ + awk 'BEGIN { sum=0 } { sum+=$1 } END {print sum / NR}' +} +min(){ + sort -n | head -1 +} +max(){ + sort -n | tail -1 +} + +stdmean(){ + echo -n "TEST:" + mu=$(printf "$1" | mean | tr -d '\n') + sigma=$(printf "$1" | std | tr -d '\n') + maximum=$(printf "$1" | max | tr -d '\n') + minimum=$(printf "$1" | min | tr -d '\n') + length=$(printf "$1" | wc -l) + echo -n "$mu ($sigma) (max: $maximum , min: $minimum ) count ($length)" + echo +} + +model=$1 +for lr in 1.0; do + for warmup_steps in 4000; do #orig: 4000 + for max_steps in 8000; do #orig 30000 + for n_batch in 128; do + for prefix in "pmi" "soft_pmi_aligner_" "learn_pmi_aligner_" "aligner_" "fast_forward_aligner_" "fast_intersect_aligner_" "soft_aligner_" "learn_aligner_" "goodman_" "soft_goodman_" "LSTM_" "LSTM_copy_" "GECA_"; do + + expname=${prefix} + if [ -d "$expname" ]; then + cd $expname + numbers1=$(grep -oh 'test evaluation (greedy)/bleu [0-9].*' *.out | awk '{print $4}' FS=" ") + line1=$(echo "$numbers1" | wc -l) + if [ "$line1" -lt 2 ]; then + cd .. + continue + fi + echo -n "${expname}" + stdmean "$numbers1" + cd .. + else + continue + fi + done + done +done +done +done diff --git a/exp/TRANSLATE/fast.sh b/exp/TRANSLATE/fast.sh new file mode 100644 index 0000000..21d4ee6 --- /dev/null +++ b/exp/TRANSLATE/fast.sh @@ -0,0 +1,43 @@ +#!/bin/bash +#SBATCH --job-name=fasttranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + +align="intersect" +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=fast_${align} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 4` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --aligner $home/TRANSLATE/alignments/${align}.align.o.json \ + --copy \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/geca.sh b/exp/TRANSLATE/geca.sh new file mode 100644 index 0000000..67eab99 --- /dev/null +++ b/exp/TRANSLATE/geca.sh @@ -0,0 +1,40 @@ +#!/bin/bash +#SBATCH --job-name=gecatranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=-0-4 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=geca_LSTM +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 4` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --geca \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/learn_simple.sh b/exp/TRANSLATE/learn_simple.sh new file mode 100644 index 0000000..1be84ce --- /dev/null +++ b/exp/TRANSLATE/learn_simple.sh @@ -0,0 +1,49 @@ +#!/bin/bash +#SBATCH --job-name=learntranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=1.0 +expname=learn_temp_${temp}_simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --soft_align \ + --soft_temp ${temp} \ + --highdrop \ + --highdropvalue 0.5 \ + --learn_align \ + --aligner $home/TRANSLATE/alignments/simple.align.v3.json \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/pmi.sh b/exp/TRANSLATE/pmi.sh new file mode 100644 index 0000000..54b9a17 --- /dev/null +++ b/exp/TRANSLATE/pmi.sh @@ -0,0 +1,42 @@ +#!/bin/bash +#SBATCH --job-name=pmitranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=pmi +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 4` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --aligner $home/TRANSLATE/alignments/pmi.align.json \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/random.sh b/exp/TRANSLATE/random.sh new file mode 100644 index 0000000..db1860d --- /dev/null +++ b/exp/TRANSLATE/random.sh @@ -0,0 +1,49 @@ +#!/bin/bash +#SBATCH --job-name=learnrandomtranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 +align="intersect" +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=0.2 +expname=random_temp_${temp} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --tb_dir ${expname} \ + --soft_align \ + --soft_temp ${temp} \ + --highdrop \ + --highdropvalue 0.5 \ + --aligner random \ + --learn_align \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/resultdiff.py b/exp/TRANSLATE/resultdiff.py new file mode 100644 index 0000000..09bfb6e --- /dev/null +++ b/exp/TRANSLATE/resultdiff.py @@ -0,0 +1,102 @@ +import sys +from collections import Counter +from nltk.translate.bleu_score import corpus_bleu +ARGS = sys.argv +f1 = ARGS[1] +f2 = ARGS[2] +trn_file = "../../TRANSLATE/cmn.txt_train_tokenized.tsv" +whole_data = "../../TRANSLATE/cmn.tsv" +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/label False +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/tp 2 +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/fp 4 +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/fn 3 +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/input ['Black', 'suits', 'you', '.'] +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/gold ['黑色', '很', '衬', '你', '.'] +#10:49:34 [hlog.py:49] test evaluation (greedy)/2400/pred ['把', '条', '条', '条', '你', '.'] + + +with open(trn_file,"r") as handle: + trn_data = handle.readlines() + trn_data = [res.strip().split("\t") for res in trn_data] + +print("trn_data") +with open(whole_data,"r") as handle: + whole_data = handle.readlines() + whole_data = [res.strip().split("\t") for res in whole_data] +print("whole data") + +references = {} +for (inp,out) in whole_data: + inp = inp.strip() + out = out.strip().split(" ") + if inp in references: + references[inp].append(out) + else: + references[inp] = [out] +print("references") + +counter = Counter() +for (inp,_) in trn_data: + inp_words = inp.strip().split(" ") + for w in inp_words: + counter[w] += 1 +print(counter) + +with open(f1,"r") as handle: + result1 = handle.readlines() + result1 = [res.strip() for res in result1 if "test evaluation (greedy)" in res] +print("result1") + +with open(f2,"r") as handle: + result2 = handle.readlines() + result2 = [res.strip() for res in result2 if "test evaluation (greedy)" in res] +print("result2") + +ref_list = [] +pred1_list = [] +pred2_list = [] +print("getting stats") +for i in range(0,len(result1),8): + try: + idx = eval(result1[i+4].split()[4].split("/")[1]) + label1 = eval(result1[i].split()[5]) + label2 = eval(result2[i].split()[5]) + out_words = eval("[" + result1[i+5].split(" [")[2]) + inp_words = eval("[" + result1[i+4].split(" [")[2]) + pred1_words = eval("[" + result1[i+6].split(" [")[2]) + pred2_words = eval("[" + result2[i+6].split(" [")[2]) + out = " ".join(out_words) + inp = " ".join(inp_words) + pred1 = " ".join(pred1_words) + pred2 = " ".join(pred2_words) + except: + print("parsing error") + + cur_references = references[inp] + if len([w for w in inp_words if counter[w] == 1]) > 0: + ref_list.append(cur_references) + pred1_list.append(pred1_words) + pred2_list.append(pred2_words) + + isdifferent = label1 != label2 + + if isdifferent and label1: + if label1 and not label2: + print(f"{idx}:+++ ") + elif label2 and not label1: + print(f"{idx}:--- ") + print(f"inp: {inp}") + print(f"out: {out}") + print(f"pred1: {pred1}") + print(f"pred2: {pred2}") + + + + + + +bleu_score1 = corpus_bleu(ref_list, pred1_list) +bleu_score2 = corpus_bleu(ref_list, pred2_list) +print("bleu_score1 ", bleu_score1) +print("bleu_score2: ", bleu_score2) +print(len(pred1_list)) diff --git a/exp/TRANSLATE/simple.sh b/exp/TRANSLATE/simple.sh new file mode 100644 index 0000000..12897a3 --- /dev/null +++ b/exp/TRANSLATE/simple.sh @@ -0,0 +1,42 @@ +#!/bin/bash +#SBATCH --job-name=simpletranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 + +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 4` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --aligner $home/TRANSLATE/alignments/simple.align.v3.json \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/soft_fast.sh b/exp/TRANSLATE/soft_fast.sh new file mode 100644 index 0000000..fa8a3c4 --- /dev/null +++ b/exp/TRANSLATE/soft_fast.sh @@ -0,0 +1,43 @@ +#!/bin/bash +#SBATCH --job-name=fasttranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 +align="intersect" +lr=1.0 +warmup_steps=4000 +max_steps=8000 +expname=soft_fast_${align}_simple +mkdir -p $expname +cd $expname +home="../../../" +for i in \`seq 0 9\` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --aligner $home/TRANSLATE/alignments/${align}.align.o.json \ + --copy \ + --soft_align \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/soft_simple.sh b/exp/TRANSLATE/soft_simple.sh new file mode 100644 index 0000000..d2791b4 --- /dev/null +++ b/exp/TRANSLATE/soft_simple.sh @@ -0,0 +1,48 @@ +#!/bin/bash +#SBATCH --job-name=softaligntranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 +align="intersect" +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=0.2 +expname=random_temp_${temp}_simple +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --tb_dir ${expname} \ + --soft_align \ + --soft_temp ${temp} \ + --highdrop \ + --highdropvalue 0.5 \ + --aligner $home/TRANSLATE/alignments/simple.align.v3.json \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/exp/TRANSLATE/uniform.sh b/exp/TRANSLATE/uniform.sh new file mode 100644 index 0000000..73e7752 --- /dev/null +++ b/exp/TRANSLATE/uniform.sh @@ -0,0 +1,48 @@ +#!/bin/bash +#SBATCH --job-name=learnuniformtranslate +#SBATCH --time=48:00:00 +#SBATCH --cpus-per-task=5 +#SBATCH --ntasks-per-node=1 +#SBATCH --nodes=1 +#SBATCH --qos=high +#SBATCH --constrain=xeon-g6 +#SBATCH --gres=gpu:volta:1 +#SBATCH --array=0-4 +align="intersect" +lr=1.0 +warmup_steps=4000 +max_steps=8000 +temp=1.0 +expname=uniform_temp_${temp} +mkdir -p $expname +cd $expname +home="../../../" +for i in `seq 0 9` +do + if [[ $i -eq $SLURM_ARRAY_TASK_ID ]]; then + python -u $home/main.py \ + --seed $i \ + --n_batch 128 \ + --n_layers 2 \ + --noregularize \ + --dim 512 \ + --lr ${lr} \ + --temp 1.0 \ + --dropout 0.4 \ + --beam_size 5 \ + --gclip 5.0 \ + --accum_count 4 \ + --valid_steps 500 \ + --warmup_steps ${warmup_steps} \ + --max_step ${max_steps} \ + --tolarance 10 \ + --copy \ + --soft_align \ + --soft_temp ${temp} \ + --highdrop \ + --highdropvalue 0.5 \ + --aligner uniform \ + --learn_align \ + --TRANSLATE > eval.$i.out 2> eval.$i.err + fi +done diff --git a/extract_alignments.sh b/extract_alignments.sh new file mode 100644 index 0000000..4c57e6c --- /dev/null +++ b/extract_alignments.sh @@ -0,0 +1,31 @@ +train_file=$1 +echo $train_file +train_path=$(dirname $train_file)/alignments/ +echo $train_path +mkdir -p $train_path + +python utils/summarize_aligned_data3.py $train_file ${train_path}/simple.align +python utils/pmi_align.py $train_file ${train_path}/pmi.align + +for flag in "-d" "-o" "-v" "-d -o" "-d -v" "-o -v" "-d -o -v" ""; do + str_flag="${flag// /}" + str_flag="${str_flag//-/}" + fast_align -i $train_file $flag > ${train_path}/forward.align.${str_flag} + python utils/summarize_aligned_data.py $train_file ${train_path}/forward.align.${str_flag} +done + +for flag in "-d" "-o" "-v" "-d -o" "-d -v" "-o -v" "-d -o -v" ""; do + str_flag="${flag// /}" + str_flag="${str_flag//-/}" + fast_align -i $train_file -r $flag > ${train_path}/reverse.align.${str_flag} + python utils/summarize_aligned_data.py $train_file ${train_path}/reverse.align.${str_flag} +done + +for diag in "grow-diag-final-and" "grow-diag-final" "intersect" "grow-diag"; do + for flag in "-d" "-o" "-v" "-d -o" "-d -v" "-o -v" "-d -o -v" ""; do + str_flag="${flag// /}" + str_flag="${str_flag//-/}" + atools -i ${train_path}/forward.align.${str_flag} -j ${train_path}/reverse.align.${str_flag} -c ${diag} > ${train_path}/${diag}.align.${str_flag} + python utils/summarize_aligned_data.py $train_file ${train_path}/${diag}.align.${str_flag} + done +done diff --git a/hlog.py b/hlog.py new file mode 100644 index 0000000..f068725 --- /dev/null +++ b/hlog.py @@ -0,0 +1,75 @@ +from absl import flags as a_flags + +from contextlib import contextmanager +import logging +import threading +import time +import sys + +console = logging.StreamHandler(stream=sys.stdout) +console.setLevel(logging.INFO) +# set a format which is simpler for console use +formatter = logging.Formatter('%(asctime)s [%(filename)s:%(lineno)d] %(message)s', "%H:%M:%S") +# tell the handler to use this format +console.setFormatter(formatter) +# add the handler to the root logger +logging.getLogger('hlog').addHandler(console) +# Now, we can log to the root logger, or any other logger. First the root.. +logger = logging.getLogger('hlog') # Loggerr +# logger.setLevel(logging.INFO) +# logger.handlers[0].stream = sys.stdout +logger.propagate = False + +print(logger.handlers) + +state = threading.local() +state.path = [] + +@contextmanager +def task(name, timer=True): + state.path.append(str(name)) + begin = time.time() + yield + end = time.time() + if timer: + logger.info('%s{%0.2fs}' % ('/'.join(state.path), end - begin)) + state.path.pop() + +def flags(): + flags = a_flags.FLAGS.flags_into_string().split("\n") + for flag in flags: + logger.info("# %s", flag) + +def group(name): + return task(name, timer=False) + +def log(value): + if isinstance(value, float): + value = "%0.4f" % value + logger.info('%s %s' % ('/'.join(state.path), str(value))) + +def value(name, value): + with task(name, timer=False): + log(value) + +def loop(template, coll=None, counter=None, timer=True): + assert not (coll is None and counter is None) + if coll is None: + seq = zip(counter, counter) + elif counter is None: + seq = enumerate(coll) + else: + assert len(counter) == len(coll) + seq = zip(counter, coll) + for i, item in seq: + with task(template % i, timer): + yield item + +def fn(name, timer=True): + def wrap(underlying): + def wrapped(*args, **kwargs): + with task(name, timer): + result = underlying(*args, **kwargs) + return result + return wrapped + return wrap diff --git a/lexicon_model.png b/lexicon_model.png new file mode 100644 index 0000000000000000000000000000000000000000..e615e108652d9fba259a3045ed82f537b4b2686e GIT binary patch literal 264057 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

O5SZ1`lOsYW37innOgv4{d!;fhm)^70 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 literal 0 HcmV?d00001 diff --git a/main.py b/main.py new file mode 100644 index 0000000..10a0019 --- /dev/null +++ b/main.py @@ -0,0 +1,616 @@ +import os +import math +import random +import re +import datetime +import json +import torch +from torch import nn, optim +import torch.utils.data as torch_data +from torch.utils.tensorboard import SummaryWriter +import numpy as np + +from tqdm import tqdm + +from collections import Counter +from nltk.translate.bleu_score import corpus_bleu + +import seaborn as sns +import matplotlib.pyplot as plt + +from absl import app, flags + +from mutex import Vocab, Mutex, RecordLoss, MultiIter +from data import encode, encode_io, collate, eval_format, get_fig2_exp +from src import NoamLR, SoftAlign +import hlog + +sns.set() +FLAGS = flags.FLAGS +flags.DEFINE_integer("dim", 512, "trasnformer dimension") +flags.DEFINE_integer("n_layers", 2, "number of rnn layers") +flags.DEFINE_integer("n_batch", 512, "batch size") +flags.DEFINE_float("gclip", 0.5, "gradient clip") +flags.DEFINE_integer("n_epochs", 100, "number of training epochs") +flags.DEFINE_integer("beam_size", 5, "beam search size") +flags.DEFINE_float("lr", 1.0, "learning rate") +flags.DEFINE_float("temp", 1.0, "temperature for samplings") +flags.DEFINE_float("dropout", 0.4, "dropout") +flags.DEFINE_string("save_model", "model.m", "model save location") +flags.DEFINE_string("load_model", "", "load pretrained model") +flags.DEFINE_integer("seed", 0, "random seed") +flags.DEFINE_bool("debug", False, "debug mode") +flags.DEFINE_bool("full_data", True, "full figure 2 experiments or simple col") +flags.DEFINE_bool("COGS", False, "COGS experiments") +flags.DEFINE_bool("regularize", False, "regularization") +flags.DEFINE_bool("SCAN", False, "SCAN experiments") +flags.DEFINE_bool("TRANSLATE", False, "TRANSLATE experiments") +flags.DEFINE_bool("bidirectional", False, "bidirectional encoders") +flags.DEFINE_bool("attention", True, "Source Attention") +flags.DEFINE_integer("warmup_steps", 4000, "noam warmup_steps") +flags.DEFINE_integer("valid_steps", 500, "validation steps") +flags.DEFINE_integer("max_step", 8000, "maximum number of steps") +flags.DEFINE_integer("tolarance", 5, "early stopping tolarance") +flags.DEFINE_integer("accum_count", 4, "grad accumulation count") +flags.DEFINE_bool("shuffle", True, "shuffle training set") +flags.DEFINE_bool("lr_schedule", True, "noam lr scheduler") +flags.DEFINE_string("scan_split", "around_right", "around_right or jump") +flags.DEFINE_bool("qxy", True, "train pretrained qxy") +flags.DEFINE_bool("copy", False, "enable copy mechanism") +flags.DEFINE_bool("highdrop", False, "high drop mechanism") +flags.DEFINE_bool("highdroptest", False, "high drop at test") +flags.DEFINE_float("highdropvalue", 0.5, "high drop value") +flags.DEFINE_string("aligner", "", "alignment file by fastalign") +flags.DEFINE_bool("soft_align", False, "lexicon projection matrix") +flags.DEFINE_bool("geca", False, "use geca files for translate") +flags.DEFINE_bool("lessdata", False, "0.1 data for translate") +flags.DEFINE_bool("learn_align", False, "learned lexicon projection matrix") +flags.DEFINE_float("paug", 0.1, "augmentation ratio") +flags.DEFINE_string("aug_file", "", "data source for augmentation") +flags.DEFINE_float("soft_temp", 0.2, "2 * temperature for soft lexicon") +flags.DEFINE_string("tb_dir", "", "tb_dir") +plt.rcParams['figure.dpi'] = 300 + +ROOT_FOLDER = os.path.dirname(os.path.realpath(__file__)) +DEVICE = torch.device(("cuda" if torch.cuda.is_available() else "cpu")) + + +def read_augmented_file(file, vocab_x, vocab_y): + with open(file, "r") as f: + data = json.load(f) + edata = [] + for datum in data: + inp, out = datum["inp"], datum["out"] + edata.append(encode_io((inp, out), vocab_x, vocab_y)) + return edata + + +def train(model, train_dataset, val_dataset, writer=None, references=None): + opt = optim.Adam(model.parameters(), lr=FLAGS.lr, betas=(0.9, 0.998)) + + if FLAGS.lr_schedule: + scheduler = NoamLR(opt, FLAGS.dim, warmup_steps=FLAGS.warmup_steps) + else: + scheduler = None + + if FLAGS.aug_file != "": + aug_data = read_augmented_file(FLAGS.aug_file, model.vocab_x, model.vocab_y) + random.shuffle(train_dataset) + random.shuffle(aug_data) + titer = MultiIter(train_dataset, aug_data, 1-FLAGS.paug) + train_loader = torch_data.DataLoader( + titer, + batch_size=FLAGS.n_batch, + shuffle=False, + collate_fn=collate + ) + else: + train_loader = torch_data.DataLoader( + train_dataset, + batch_size=FLAGS.n_batch, + shuffle=FLAGS.shuffle, + collate_fn=collate + ) + + tolarance = FLAGS.tolarance + best_f1 = best_acc = -np.inf + best_loss = np.inf + best_bleu = steps = accum_steps = 0 + got_nan = False + is_running = lambda: not got_nan and accum_steps < FLAGS.max_step and tolarance > 0 + while is_running(): + train_loss = train_batches = 0 + opt.zero_grad() + recorder = RecordLoss() + for inp, out, lens in tqdm(train_loader): + if not is_running(): + break + nll = model(inp.to(DEVICE), out.to(DEVICE), lens=lens.to(DEVICE), recorder=recorder) + steps += 1 + loss = nll / FLAGS.accum_count + loss.backward() + train_loss += (loss.detach().item() * FLAGS.accum_count) + train_batches += 1 + if steps % FLAGS.accum_count == 0: + accum_steps += 1 + gnorm = nn.utils.clip_grad_norm_(model.parameters(), FLAGS.gclip) + if not np.isfinite(gnorm): + got_nan = True + print("=====GOT NAN=====") + break + opt.step() + opt.zero_grad() + + if scheduler is not None: + scheduler.step() + + if accum_steps % FLAGS.valid_steps == 0: + with hlog.task(accum_steps): + hlog.value("curr loss", train_loss / train_batches) + acc, f1, val_loss, bscore = validate(model, val_dataset, writer=writer, references=references) + model.train() + hlog.value("acc", acc) + hlog.value("f1", f1) + hlog.value("bscore", bscore) + best_f1 = max(best_f1, f1) + best_acc = max(best_acc, acc) + best_bleu = max(best_bleu, bscore) + hlog.value("val_loss", val_loss) + hlog.value("best_acc", best_acc) + hlog.value("best_f1", best_f1) + hlog.value("best_bleu", best_bleu) + if val_loss < best_loss: + best_loss = val_loss + tolarance = FLAGS.tolarance + else: + tolarance -= 1 + hlog.value("best_loss", best_loss) + + hlog.value("final_acc", acc) + hlog.value("final_f1", f1) + hlog.value("final_bleu", bscore) + hlog.value("best_acc", best_acc) + hlog.value("best_f1", best_f1) + hlog.value("best_loss", best_loss) + hlog.value("best_bleu", best_bleu) + return acc, f1, bscore + + +def validate(model, val_dataset, vis=False, final=False, writer=None, references=None): + model.eval() + val_loader = torch_data.DataLoader( + val_dataset, + batch_size=FLAGS.n_batch, + shuffle=False, + collate_fn=collate + ) + total = correct = loss = tp = fp = fn = 0 + cur_references = [] + candidates = [] + with torch.no_grad(): + for inp, out, lens in tqdm(val_loader): + input = inp.to(DEVICE) + lengths = lens.to(DEVICE) + pred, _ = model.sample(input, + lens=lengths, + temp=1.0, + max_len=model.MAXLEN_Y, + greedy=True, + beam_size=FLAGS.beam_size * final, + calc_score=False) + + loss += model.pyx(input, out.to(DEVICE), lens=lengths).item() * input.shape[1] + for i, seq in enumerate(pred): + ref = out[:, i].numpy().tolist() + ref = eval_format(model.vocab_y, ref) + pred_here = eval_format(model.vocab_y, pred[i]) + if references is None: + cur_references.append([ref]) + else: + inpref = " ".join(model.vocab_x.decode(inp[0:lens[i], i].numpy().tolist())) + cur_references.append(references[inpref]) + + candidates.append(pred_here) + correct_here = pred_here == ref + correct += correct_here + tp_here = len([p for p in pred_here if p in ref]) + tp += tp_here + fp_here = len([p for p in pred_here if p not in ref]) + fp += fp_here + fn_here = len([p for p in ref if p not in pred_here]) + fn += fn_here + total += 1 + if vis: + with hlog.task(total): + hlog.value("label", correct_here) + hlog.value("tp", tp_here) + hlog.value("fp", fp_here) + hlog.value("fn", fn_here) + inp_lst = inp[:, i].detach().cpu().numpy().tolist() + hlog.value("input", eval_format(model.vocab_x, inp_lst)) + hlog.value("gold", ref) + hlog.value("pred", pred_here) + + if writer is not None: + writer.add_scalar(f"Loss/eval/loss", loss / total) + writer.add_scalar(f"Loss/eval/accuracy", correct / total) + writer.flush() + + bleu_score = corpus_bleu(cur_references, candidates) + acc = correct / total + loss = loss / total + if tp+fp > 0: + prec = tp / (tp + fp) + else: + prec = 0 + rec = tp / (tp + fn) + if prec == 0 or rec == 0: + f1 = 0 + else: + f1 = 2 * prec * rec / (prec + rec) + hlog.value("acc", acc) + hlog.value("f1", f1) + hlog.value("bleu", bleu_score) + return acc, f1, loss, bleu_score + + +def swap_io(items): + return [(y, x) for (x, y) in items] + + +def tranlate_with_alignerv2(aligner, vocab_x, vocab_y, unwanted=lambda x: False, temp=0.02): + if aligner == "uniform": + proj = np.ones((len(vocab_x), len(vocab_y)), dtype=np.float32) + elif aligner == "random": + proj = np.random.default_rng().random((len(vocab_x), len(vocab_y)), dtype=np.float32) + else: + proj = np.zeros((len(vocab_x), len(vocab_y)), dtype=np.float32) + + x_keys = list(vocab_x._contents.keys()) + y_keys = list(vocab_y._contents.keys()) + + for (x, x_key) in enumerate(x_keys): + if x_key in y_keys: + y = vocab_y[x_key] + proj[x, y] = 1.0 + + with open(aligner, 'r') as handle: + word_alignment = json.load(handle) + for (w, a) in word_alignment.items(): + if w in vocab_x and len(a) > 0 and not unwanted(w): + x = vocab_x[w] + for (v, n) in a.items(): + if not unwanted(v) and v in vocab_y: + y = vocab_y[v] + proj[x, y] = 2*n + + empty_xs = np.where(proj.sum(axis=1) == 0)[0] + empty_ys = np.where(proj.sum(axis=0) == 0)[0] + + if len(empty_ys) != 0 and len(empty_xs) != 0: + for i in empty_xs: + proj[i, empty_ys] = 1/len(empty_ys) + + if FLAGS.soft_align: + return SoftAlign(proj/FLAGS.soft_temp, requires_grad=FLAGS.learn_align).to(DEVICE) + else: + return np.argmax(proj, axis=1) + + + +def tranlate_with_aligner(aligner, vocab_x, vocab_y, unwanted=lambda x: False, temp=0.02): + proj = np.identity(len(vocab_x), dtype=np.float32) + vocab_keys = list(vocab_x._contents.keys()) + with open(aligner, 'r') as handle: + word_alignment = json.load(handle) + for (w, a) in word_alignment.items(): + if w in vocab_x and len(a) > 0 and not unwanted(w): + x = vocab_keys.index(w) + for (v, n) in a.items(): + if not unwanted(v) and v in vocab_y: + y = vocab_keys.index(v) + proj[x, y] = 2*n + + if FLAGS.soft_align: + return SoftAlign(proj/temp, requires_grad=FLAGS.learn_align).to(DEVICE) + else: + return np.argmax(proj, axis=1) + + +def copy_translation_cogs(vocab_x, vocab_y): + if FLAGS.aligner != "": + return tranlate_with_alignerv2(FLAGS.aligner, vocab_x,vocab_y) + else: + proj = np.zeros((len(vocab_x),len(vocab_y)), dtype=np.float32) + x_keys = list(vocab_x._contents.keys()) + y_keys = list(vocab_y._contents.keys()) + for (x, x_key) in enumerate(x_keys): + if x_key in y_keys: + y = y_keys.index(x_key) + proj[x, y] = 1.0 + + return np.argmax(proj, axis=1) + + +def copy_translation_mutex(vocab_x, vocab_y, primitives): + if FLAGS.aligner != "": + return tranlate_with_alignerv2(FLAGS.aligner, vocab_x, vocab_y) + else: + proj = np.identity(len(vocab_x)) + vocab_keys = list(vocab_x._contents.keys()) + for (x, y) in primitives: + idx = vocab_keys.index(x[0]) + idy = vocab_keys.index(y[0]) + print("x: ", x[0], " y: ", y[0]) + proj[idx, idx] = 0 + proj[idx, idy] = 1 + return np.argmax(proj, axis=1) + +def copy_translation_scan(vocab_x, vocab_y): + if FLAGS.aligner != "": + return tranlate_with_alignerv2(FLAGS.aligner, vocab_x, vocab_y) + else: + proj = np.identity(len(vocab_x)) + vocab_keys = list(vocab_x._contents.keys()) + for (x, y) in [("jump", "I_JUMP"), + ("walk", "I_WALK"), + ("look", "I_LOOK"), + ("run", "I_RUN"), + ("right", "I_TURN_RIGHT"), + ("left", "I_TURN_LEFT")]: + + idx = vocab_keys.index(x) + idy = vocab_keys.index(y) + print("x: ", x, " y: ", y, "idx: ", idx, "idy: ", idy) + proj[idx, idx] = 0 + proj[idx, idy] = 1 + return np.argmax(proj, axis=1) + +def copy_translation_translate(vocab_x, vocab_y): + if FLAGS.aligner != "": + return tranlate_with_alignerv2(FLAGS.aligner, vocab_x, vocab_y) + else: + proj = np.zeros((len(vocab_x), len(vocab_y)), dtype=np.float32) + x_keys = list(vocab_x._contents.keys()) + y_keys = list(vocab_y._contents.keys()) + for (x, x_key) in enumerate(x_keys): + if x_key in y_keys: + y = y_keys.index(x_key) + proj[x, y] = 1.0 + return np.argmax(proj, axis=1) + + +def copy_translation_cfq(vocab_x, vocab_y): + assert FLAGS.aligner != "", "Predefined aligner is needed for translate exps" + return tranlate_with_alignerv2(FLAGS.aligner, vocab_x, vocab_y) + + +def main(argv): + hlog.flags() + random.seed(FLAGS.seed) + np.random.seed(FLAGS.seed) + torch.manual_seed(FLAGS.seed) + + vocab_x = Vocab() + vocab_y = Vocab() + references = None + + if FLAGS.SCAN: + data = {} + max_len_x, max_len_y = 0, 0 + reg = re.compile('^IN\:\s(.*?)\sOUT\: (.*?)$') + if FLAGS.scan_split == "around_right": + scan_file = "SCAN/template_split/tasks_{}_template_around_right.txt" + else: + scan_file = "SCAN/add_prim_split/tasks_{}_addprim_jump.txt" + for split in ("train", "test"): + split_data = [] + for l in open(f"{ROOT_FOLDER}/" + scan_file.format(split), "r").readlines(): + m = reg.match(l) + inp, out = m.groups(1) + inp, out = (inp.split(" "), out.split(" ")) + max_len_x = max(len(inp), max_len_x) + max_len_y = max(len(out), max_len_y) + for t in inp: + vocab_x.add(t) + for t in out: + vocab_y.add(t) + split_data.append(encode_io((inp, out), vocab_x, vocab_y)) + data[split] = split_data + + val_size = math.floor(len(data["train"])*0.01) + train_size = len(data["train"])-val_size + train_items, val_items = torch.utils.data.random_split(data["train"],[train_size, val_size]) + test_items = data["test"] + + max_len_x += 1 + max_len_y += 1 + hlog.value("vocab_x len: ", len(vocab_x)) + hlog.value("vocab_y len: ", len(vocab_y)) + hlog.value("split lengts: ", [(k, len(v)) for (k, v) in data.items()]) + if FLAGS.copy: + copy_translation = copy_translation_scan(vocab_x, vocab_y) + else: + copy_translation = None + elif FLAGS.COGS: + data = {} + max_len_x, max_len_y = 0, 0 + for split in ("train", "dev", "test", "gen"): + split_data = [] + for l in open(f"{ROOT_FOLDER}/COGS/cogs/{split}.tsv", "r").readlines(): + text, sparse, _ = l.split("\t") + text, sparse = (text.split(" "), sparse.split(" ")) + max_len_x = max(len(text), max_len_x) + max_len_y = max(len(sparse), max_len_y) + for t in text: + vocab_x.add(t) + vocab_y.add(t) + for t in sparse: + vocab_y.add(t) + vocab_x.add(t) + split_data.append(encode_io((text, sparse), vocab_x, vocab_y)) + data[split] = split_data + max_len_x += 1 + max_len_y += 1 + hlog.value("vocab_x len: ", len(vocab_x)) + hlog.value("vocab_y len: ", len(vocab_y)) + hlog.value("split lengts: ", [(k, len(v)) for (k, v) in data.items()]) + train_items = data["train"] + val_items = data["dev"] + test_items = data["gen"] + if FLAGS.copy: + copy_translation = copy_translation_cogs(vocab_x, vocab_y) + else: + copy_translation = None + elif FLAGS.TRANSLATE: + data = {} + max_len_x, max_len_y = 0, 0 + count_x, count_y = Counter(), Counter() + + for split in ("train", "dev", "test"): + split_data = [] + if split == "train" and FLAGS.geca: + translate_file = f"{ROOT_FOLDER}/TRANSLATE/cmn.txt_{split}_tokenized_geca" + else: + translate_file = f"{ROOT_FOLDER}/TRANSLATE/cmn.txt_{split}_tokenized" + + if FLAGS.lessdata and split == "train": + translate_file = translate_file.replace("TRANSLATE", "TRANSLATE/less") + f"_{FLAGS.seed}.tsv" + else: + translate_file = translate_file + ".tsv" + + datalines = open(translate_file, "r").readlines() + + for l in datalines: + input, output = l.split("\t") + inp, out = (input.strip().split(" "), output.strip().split(" ")) + max_len_x = max(len(inp), max_len_x) + max_len_y = max(len(out), max_len_y) + for t in inp: + count_x[t] += 1 + for t in out: + count_y[t] += 1 + split_data.append((inp, out)) + + data[split] = split_data + + count_x = count_x.most_common(15000) # threshold to 10k words + count_y = count_y.most_common(26000) # threshold to 10k words + + for (x, _) in count_x: + vocab_x.add(x) + for (y, _) in count_y: + vocab_y.add(y) + + edata = {} + references = {} + for (split, split_data) in data.items(): + esplit = [] + for (inp, out) in split_data: + (einp, eout) = encode_io((inp, out), vocab_x, vocab_y) + esplit.append((einp, eout)) + sinp = " ".join(vocab_x.decode(einp)) + if sinp in references: + references[sinp].append(out) + else: + references[sinp] = [out] + edata[split] = esplit + data = edata + + max_len_x += 1 + max_len_y += 1 + hlog.value("vocab_x len: ", len(vocab_x)) + hlog.value("vocab_y len: ", len(vocab_y)) + hlog.value("split lengts: ", [(k, len(v)) for (k, v) in data.items()]) + + train_items = data["train"] + val_items = data["dev"] + test_items = data["test"] + if FLAGS.copy: + copy_translation = copy_translation_translate(vocab_x, vocab_y) + else: + copy_translation = None + + else: + input_symbols_list = set(['dax', 'lug', 'wif', 'zup', 'fep', 'blicket', 'kiki', 'tufa', 'gazzer']) + output_symbols_list = set(['RED', 'YELLOW', 'GREEN', 'BLUE', 'PURPLE', 'PINK']) + study, test = get_fig2_exp(input_symbols_list, output_symbols_list) + if FLAGS.full_data: + for sym in input_symbols_list: + vocab_x.add(sym) + for sym in output_symbols_list: + vocab_y.add(sym) + max_len_x = 7 + max_len_y = 9 + else: + test, study = study[3:4], study[0:3] + for (x, y) in test+study: + for sym in x: + vocab_x.add(sym) + for sym in y: + vocab_y.add(sym) + max_len_x = 2 + max_len_y = 2 + + if FLAGS.copy: + #vocab_y = vocab_x.merge(vocab_y) + copy_translation = copy_translation_mutex(vocab_x, vocab_y, study[0:4]) # FIXME: make sure they are primitives + else: + copy_translation = None + + train_items, test_items = encode(study, vocab_x, vocab_y), encode(test,vocab_x, vocab_y) + val_items = test_items + + hlog.value("vocab_x\n", vocab_x) + hlog.value("vocab_y\n", vocab_y) + hlog.value("study\n", study) + hlog.value("test\n", test) + + writer = None + if FLAGS.tb_dir != "": + tb_log_dir = FLAGS.tb_dir + f"/seed_{FLAGS.seed}_" + datetime.datetime.now().strftime("%Y%m%d-%H%M%S") + writer = SummaryWriter(log_dir=tb_log_dir) + else: + writer = None + + if FLAGS.load_model == "": + model = Mutex(vocab_x, + vocab_y, + FLAGS.dim, + FLAGS.dim, + max_len_x=max_len_x, + max_len_y=max_len_y, + copy=FLAGS.copy, + n_layers=FLAGS.n_layers, + self_att=False, + attention=FLAGS.attention, + dropout=FLAGS.dropout, + temp=FLAGS.temp, + qxy=FLAGS.qxy, + bidirectional=FLAGS.bidirectional, #TODO remember human data was bidirectional + ).to(DEVICE) + if copy_translation is not None: + model.pyx.decoder.copy_translation = copy_translation + + with hlog.task("train model"): + acc, f1, bscore = train(model, train_items, val_items, writer=writer, references=references) + else: + model = torch.load(FLAGS.load_model) + + with hlog.task("train evaluation"): + validate(model, train_items, vis=False, references=references) + + with hlog.task("val evaluation"): + validate(model, val_items, vis=True, references=references) + + with hlog.task("test evaluation (greedy)"): + validate(model, test_items, vis=True, final=False, references=references) + + # with hlog.task("test evaluation (beam)"): + # validate(model, test_items, vis=False, final=True) + + # torch.save(model, f"seed_{FLAGS.seed}_" + FLAGS.save_model) + + +if __name__ == "__main__": + app.run(main) diff --git a/mutex.py b/mutex.py new file mode 100644 index 0000000..1174e58 --- /dev/null +++ b/mutex.py @@ -0,0 +1,80 @@ +import numpy as np +import torch +from torch import nn +import torch.nn.functional as F +from src import EncDec, Decoder, Vocab, batch_seqs, weight_top_p, RecordLoss, MultiIter +import random +from data import collate, eval_format +import collections +import math +import pdb +LossTrack = collections.namedtuple('LossTrack', 'nll mlogpyx pointkl') + +class Mutex(nn.Module): + def __init__(self, + vocab_x, + vocab_y, + emb, + dim, + copy=False, + temp=1.0, + max_len_x=8, + max_len_y=8, + n_layers=1, + self_att=False, + attention=True, + dropout=0., + bidirectional=True, + rnntype=nn.LSTM, + kl_lamda=1.0, + recorder=RecordLoss(), + qxy=None, + ): + + super().__init__() + + self.vocab_x = vocab_x + self.vocab_y = vocab_y + self.rnntype = rnntype + self.bidirectional = bidirectional + self.dim = dim + self.n_layers = n_layers + self.temp = temp + self.MAXLEN_X = max_len_x + self.MAXLEN_Y = max_len_y + self.pyx = EncDec(vocab_x, + vocab_y, + emb, + dim, + copy=copy, + n_layers=n_layers, + self_att=self_att, + source_att=attention, + dropout=dropout, + bidirectional=bidirectional, + rnntype=rnntype, + MAXLEN=self.MAXLEN_Y) + if qxy: + self.qxy = EncDec(vocab_y, + vocab_x, + emb, + dim, + copy=copy, + n_layers=n_layers, + self_att=self_att, + dropout=dropout, + bidirectional=bidirectional, + rnntype=rnntype, + source_att=attention, + MAXLEN=self.MAXLEN_X) + # self.qxy = None + self.recorder = recorder + + def forward(self, inp, out, lens=None, recorder=None): + return self.pyx(inp, out, lens=lens) + + def print_tokens(self, vocab, tokens): + return [" ".join(eval_format(vocab, tokens[i])) for i in range(len(tokens))] + + def sample(self, *args, **kwargs): + return self.pyx.sample(*args, **kwargs) diff --git a/notes/notes.tex b/notes/notes.tex new file mode 100644 index 0000000..4461715 --- /dev/null +++ b/notes/notes.tex @@ -0,0 +1,65 @@ +\documentclass{article} + +\usepackage{amsmath} +\usepackage{amssymb} +\usepackage{amsthm} +\usepackage{hyperref} +\usepackage{parskip} + +\newcommand{\KL}[2]{\mathrm{KL}(#1~\|~#2)} + +\begin{document} + +Suppose we wish to estimate $p(y \mid x)$ when we observe $(x_i, y_i) \sim p(y +\mid x) p_1(x) $ but care about achieving high accuracy under some other $p(x +\mid x) p_2(x)$ (the \emph{covariate shift} problem). Suppose further that we +have some information about $y$ under the target distribution---namely that we +can sample from $p_2(y) := \sum_x p_2(x) p(y \mid x)$. How can we use this +information to find some $p_\theta(y \mid x)$ that maximizes $E_{x \sim p_2(x)} p(x +\mid y)$? + +Idea: optimize +\begin{align} + \min_{\theta,\eta} ~~ &-\sum_i \log p_\theta(y_i \mid x_i) + \lambda~\KL{p_2}{p_\eta(x) + p_\theta(y \mid x)} +\end{align} +This can be viewed as a form of posterior regularization and specifically +\textbf{expectation regularization} as in +\url{https://www.aclweb.org/anthology/D19-1004/}. +\begin{align} + &= -\sum_i \log p_\theta(y_i \mid x_i) + \lambda H(p_2) - \lambda E_{y \sim p_2(y)} + [\log E_{x \sim p_\eta} p_\theta(y \mid x)] \\ + &\leq -\sum_i \log p_\theta(y_i \mid x_i) + \lambda H(p_2) - \lambda E_{y \sim p_2(y)} + E_{x \sim p_\eta} \log p_\theta(y \mid x) \\ + \intertext{(Jensen)} + \min_{\theta, \eta, \phi} ~~ &\leq -\sum_i \log p_\theta(y_i \mid x_i) + \lambda H(p_2) - \lambda E_{y \sim p_2(y)}[ + E_{x \sim q_\phi(x \mid y)} [\log p_\theta(y \mid x)] -\KL{q_\phi(x \mid y)} + {p_\eta(x)}] +\end{align} +(ELBO) + +Important special case of this model: \textbf{backtranslation}, where we assume +that $q(x \mid y)$ is the same under $p_1$ and $p_2$ and estimate it directly +from training data. From this perpsective, backtranslation can be viewed not +just as amortizing a noisy channel translation model but actually providing +robustness to the covariate shift implied by any difference between $p(y)$ on +bilingual and monolingual data. + +Claim: we can get lots of ``NLP-flavored'' inductive biases in this framework +just by setting $p(y)$ uniform over an appropriate set. Example: + +\paragraph{Mutual exclusivity} +Let $\pi$ be a permutation on $[n]$ and $(x_i, y_i)$ be one-hot vectors $(e_i, +e_{\pi(i)}$ for $i \in [n-1]$. Prove that a regularized logistic regression +model has $p(y \mid e_{n-1})$ uniform over classes when trained via MLE but +mostly on $e_{\pi(n-1)}$ when trained as in Equation 1. + +\paragraph{Compositionality} +As above, but let each $x_i$ be a concatenation of two one-hot vectors and $y_i$ +be the concatenation of their permuted values. Prove that if we hold out $k$ of +these vectors, Equation 1 still recovers the correct values but MLE doesn't. + +\paragraph{Productivity} +Something about learning a weighted string transducer. + +\end{document} diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..391c40f --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,6 @@ +from .encdec import EncDec +from .decoder import Decoder +from .vocab import Vocab +from .utils import RecordLoss, batch_seqs, weight_top_p, NoamLR +from .projection import SoftAlign +from .multiiter import MultiIter diff --git a/src/attention.py b/src/attention.py new file mode 100644 index 0000000..c51ac9a --- /dev/null +++ b/src/attention.py @@ -0,0 +1,69 @@ +import torch +from torch import nn +import torch.nn.functional as F +import pdb + +class SimpleAttention(nn.Module): + def __init__(self, n_features, n_hidden, key=False, copy=False, query=True, memory=False): + super().__init__() + self.key = key + self.query = query + self.memory = memory + self.n_features = n_features + self.n_hidden = n_hidden + self.copy = copy + + if self.copy: assert self.query + + if self.key: + self.make_key = nn.Linear(n_features, n_hidden) + if self.query: + self.make_query = nn.Linear(n_features, (1+copy) * n_hidden) + if self.memory: + self.make_memory = nn.Linear(n_features, n_hidden) + self.n_out = n_hidden + + def forward(self, features, hidden, mask=None): + if self.key: + key = self.make_key(features) + else: + key = features + + if self.memory: + memory = self.make_memory(features) + else: + memory = features + + if self.query: + query = self.make_query(hidden) + else: + query = hidden + + # attention + #query = query.expand_as(key) # T X B X H + if self.copy: + query = query.view(1, -1, query.shape[-1] // 2, 2) + key = key.unsqueeze(-1) + mask = mask.unsqueeze(-1) + elif len(query.shape) < 3: + query = query.unsqueeze(0) + + scores = (key * query).sum(dim=2) + + if mask is not None: + scores += mask * -99999 + + if self.copy: + scores, copy_scores = torch.chunk(scores,2,dim=-1) + copy_distribution = F.softmax(copy_scores.squeeze(-1), dim=0) + distribution = F.softmax(scores.squeeze(-1), dim=0) + else: + distribution = F.softmax(scores, dim=0) + copy_distribution = distribution + + + weighted = (memory * distribution.unsqueeze(2).expand_as(memory)) + summary = weighted.sum(dim=0, keepdim=True) + + # value + return summary, distribution, copy_distribution diff --git a/src/decoder.py b/src/decoder.py new file mode 100644 index 0000000..b25596a --- /dev/null +++ b/src/decoder.py @@ -0,0 +1,707 @@ +from collections import namedtuple +import numpy as np +import torch +from torch import nn +import torch.nn.functional as F +from absl import app, flags +from .attention import SimpleAttention +from .utils import weight_top_p, trim +from .projection import SoftAlign +import pdb +#_VF = torch._C._VariableFunctions +EPS = 1e-7 +FLAGS = flags.FLAGS + +DecoderState = namedtuple("DecoderState", "feed rnn_state hiddens tokens") +BeamState = namedtuple("BeamState", "feed rnn_state hiddens tokens score parent done") + +class Decoder(nn.Module): + def __init__( + self, + vocab, + n_embed, + n_hidden, + n_layers, + attention=None, + copy=False, + self_attention=False, + dropout=0, + rnntype=nn.LSTM, + concat_feed=True, + MAXLEN=45, + ): + super().__init__() + + # setup + self.vocab = vocab + self.n_hidden = n_hidden + self.n_layers = n_layers + self.copy = copy + self.self_attention = self_attention + self.rnntype=rnntype + self.MAXLEN = MAXLEN + # attention + if attention is None: + attention = () + attention = tuple(attention) + if self_attention: + attention = attention + (SimpleAttention(n_hidden, n_hidden),) + self.attention = attention + for i, att in enumerate(attention): + self.add_module("attention_%d" % i, att) + # modules + self.embed = nn.Embedding(len(vocab), n_embed, vocab.pad()) + + self.dropout_in = nn.Dropout(dropout) + self.predict = nn.Linear(n_hidden, len(vocab)) + #self.copy_switch = nn.Linear(n_hidden, 1 + len(attention)) + self.concat_feed = concat_feed + if self.concat_feed: + self.combine = nn.Linear(n_embed + n_hidden * (2 + len(attention)), n_hidden) + self.rnn = self.rnntype(n_embed + n_hidden, n_hidden, n_layers, dropout=dropout) + else: + self.combine = nn.Linear(n_embed + n_hidden * (1 + len(attention)), n_hidden) + self.rnn = self.rnntype(n_embed, n_hidden, n_layers, dropout=dropout) + + self.dropout_out = nn.Dropout(dropout) + self.seq_picker = nn.Linear(n_hidden, len(attention)) + self.nll = nn.CrossEntropyLoss(reduction='none', ignore_index=vocab.pad()) + self.nllreduce = nn.CrossEntropyLoss(ignore_index=vocab.pad()) + self.copy_translation = None + self.high_drop = nn.Dropout(FLAGS.highdropvalue) + + def step( + self, + decoder_state, + att_features, + att_tokens, + att_masks, + att_token_proj, + self_att_proj + ): + # advance rnn + if decoder_state.tokens.dtype == torch.float32: + emb = torch.matmul(decoder_state.tokens, self.embed.weight) + else: + emb = self.embed(decoder_state.tokens[-1, :]) + + if self.concat_feed: + inp = self.dropout_in(torch.cat((emb, decoder_state.feed), dim=1)) + else: + inp = self.dropout_in(emb) + + + hidden, rnn_state = self.rnn(inp.unsqueeze(0), decoder_state.rnn_state) + + # prep self-attention + if self.self_attention: + hiddens = torch.cat(decoder_state.hiddens + [hidden], dim=0) + att_features = tuple(att_features) + (hiddens,) + att_tokens = tuple(att_tokens) + (decoder_state.tokens,) + att_masks = att_masks + ( + (decoder_state.tokens == self.vocab.pad()).float(), + ) + att_token_proj = att_token_proj + (self_att_proj,) + + # advance attention + attended = [ + attention(features, hidden, mask) + for attention, features, mask in zip( + self.attention, att_features, att_masks + ) + ] + if len(attended) > 0: + summary, distribution, copy_dist = zip(*attended) + else: + summary = distribution = copy_dist = () + + all_features = torch.cat([inp.unsqueeze(0),hidden] + list(summary), dim=-1) + + comb_features = self.dropout_out(self.combine(all_features).squeeze(0)) + + if FLAGS.highdrop: + if FLAGS.highdroptest: + comb_features = F.dropout(comb_features,p=self.high_drop.p,training=True) + else: + comb_features = self.high_drop(comb_features) + #comb_features = F.dropout(comb_features,p=0.5,training=True) + + pred_logits = self.predict(comb_features) # REQUIRES FOR JUMP + + assert not torch.isnan(pred_logits).any() + + if self.copy: + dists = copy_dist #distribution + if len(dists) > 1: + seq_probs = self.seq_picker(hidden).softmax(dim=2) + weighted_dists = [dists[i] * seq_probs[:, :, i] for i in range(len(dists))] + else: + weighted_dists = dists + + pred_probs = F.softmax(pred_logits, dim=1) + copy_weights = pred_probs[:, self.vocab.copy()].unsqueeze(-1) + projs = att_token_proj + copy_probs = [(weighted_dists[i].unsqueeze(2) * projs[i]).sum(0) for i in range(len(dists))] + copy_probs = sum(copy_probs) * copy_weights + # pdb.set_trace() + copy_probs += EPS + comb_probs = copy_probs + pred_probs + + # copy_mask = torch.ones_like(comb_probs) + # copy_mask[:, self.vocab.copy()] = EPS + # comb_probs = comb_probs * copy_mask + comb_probs[:, self.vocab.copy()] = EPS + + direct_logits = pred_logits + copy_logits = torch.log(copy_probs) + pred_logits = torch.log(comb_probs) + else: + direct_logits = pred_logits + copy_logits = None + weighted_dists = None + dists = None + + # done + return ( + pred_logits, + comb_features, + rnn_state, + hidden, + direct_logits, copy_logits, dists + ) + + def _make_projection(self, tokens): + if self.copy: + if type(self.copy_translation) == SoftAlign: + return self.copy_translation(tokens) + else: + proj = np.zeros( + (tokens.shape[0], tokens.shape[1], len(self.vocab)), dtype=np.int64 + ) + device = tokens.device + tokens = tokens.cpu().numpy() + for i in range(tokens.shape[0]): + if self.copy_translation is None: + proj[i, range(tokens.shape[1]), tokens[i, :]] = 1 + else: + proj[i, range(tokens.shape[1]), self.copy_translation[tokens[i, :]]] = 1 + return torch.tensor(proj, dtype=torch.float32, device=device) + else: + return None + + + def get_mask(self, toks): + if toks.dtype == torch.float32: + mask = (torch.argmax(toks.detach(),dim=-1) == self.vocab.pad()).float() + else: + mask = (toks == self.vocab.pad()).float() + return mask + + + def forward( + self, + rnn_state, + max_len, + ref_tokens=None, + att_features=None, + att_tokens=None, + token_picker=None + ): + # token picker + sampling = True + if token_picker is None: + sampling = False + if self.self_attention: + master_self_att_proj = self._make_projection(ref_tokens) + def token_picker(t, logits): + if t < ref_tokens.shape[0]: + if self.self_attention: + return ref_tokens[t, :], master_self_att_proj[:t+1, :, :] + else: + return ref_tokens[t, :], None + else: + return None, None + + + # attention + if att_features is None: + att_features = () + att_tokens = () + att_masks = () + att_token_proj = () + else: + assert isinstance(att_features, list) \ + or isinstance(att_features, tuple) + assert len(att_features) == len(att_tokens) + assert len(self.attention) == len(att_features) + (1 if self.self_attention else 0) + att_masks = tuple( + self.get_mask(toks) for toks in att_tokens + ) + att_token_proj = tuple( + self._make_projection(toks) for toks in att_tokens + ) + + # init + pred = None + tokens, self_att_proj = token_picker(0, pred) + feed = tokens.new_zeros( + tokens.shape[0], self.n_hidden + ).float() + hiddens = [] + all_tokens = [tokens] + all_preds = [] + all_extra = [] + + if FLAGS.debug: + print("max_len: ",max_len) + for t in range(max_len): + decoder_state = DecoderState( + feed, rnn_state, hiddens, torch.stack(all_tokens) + ) + + pred, feed, rnn_state, hidden, *extra = self.step( + decoder_state, + att_features, + att_tokens, + att_masks, + att_token_proj, + self_att_proj, + ) + + if FLAGS.debug: + pdb.set_trace() + + new_pred = torch.zeros_like(pred) + new_pred[:, self.vocab.pad():self.vocab.unk()+1] -= 99999 + new_pred[:, self.vocab.eos()] += 99999 # put eos back TODO single step + pred = pred + new_pred + + if t == self.MAXLEN-1: #FIXME: when sampling there is one more extra timestep + new_pred = torch.zeros_like(pred) + new_pred[:, self.vocab.eos()] += 99999 + pred = pred + new_pred + + if FLAGS.debug: + pdb.set_trace() + + hiddens.append(hidden) + all_preds.append(pred) + all_extra.append(extra) + + tokens, self_att_proj = token_picker(t+1, pred) + + if tokens is None: + break + + all_tokens.append(tokens) + + return ( + torch.stack(all_preds), + torch.stack(all_tokens), + rnn_state, + list(zip(*all_extra)) + ) + + def sample( + self, + rnn_state, + max_len, + n_batch=1, + temp=1.0, + att_features=None, + att_tokens=None, + greedy=False, + top_p=None, + custom_sampler=None, + calc_score=False, + ): + + device = self.embed.weight.device + + # init + if self.rnntype == nn.LSTM: + if rnn_state is None: + rnnstate = tuple(torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) for _ in range(2)) + else: + n_batch = rnn_state[0].shape[1] + else: + if rnn_state is None: + rnnstate = torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) + else: + n_batch = rnn_state.shape[1] + + done = np.array([False] * n_batch) + running_proj = torch.zeros(max_len+1, n_batch, len(self.vocab)).to(device) + running_out = torch.zeros(max_len+1, n_batch, dtype=torch.int64).to(device) + + def token_picker(t, logits): + # first step + sos, eos, pad = self.vocab.sos(), self.vocab.eos(), self.vocab.pad() + if t == 0: + toks = torch.LongTensor([sos] * n_batch).to(device) + running_proj[0, range(n_batch), toks] = 1 + running_out[0, range(n_batch)] = 1 + return toks, running_proj[:1, :, :] + if all(done): + return None, None + + new_pred = torch.zeros_like(logits) + new_pred[np.flatnonzero(done), pad] += 2*99999 + logits = (logits + new_pred).detach() + + # pdb.set_trace() + if greedy: + toks = torch.argmax(logits, dim=1) + done[torch.eq(toks,eos).cpu().numpy()] = True + elif custom_sampler is None: + logits = logits / temp + if top_p is not None: + top_values, top_indices = torch.topk(logits, top_p, dim=1) + kth_best = top_values[:, -1].view([-1, 1]) + kth_best = kth_best.repeat([1, logits.shape[1]]).float() + ignore = torch.lt(logits, kth_best) + logits = logits.masked_fill(ignore, -99999) + + dist = torch.distributions.Multinomial(logits=logits, total_count=1) + toks = torch.argmax(dist.sample(), dim=-1) + done[torch.eq(toks,eos).cpu().numpy()] = True + else: + probs = F.softmax(logits / temp, dim=-1) + probs = probs.detach().cpu().numpy() + tokens = [] + for i, row in enumerate(probs): + if done[i]: + tokens.append(self.vocab.pad()) + continue + if custom_sampler is not None: + row = torch.tensor(row).unsqueeze(0) + choice = custom_sampler(row, running_out[:t]) + tokens.append(choice) + if choice == self.vocab.eos(): + done[i] = True + toks = torch.LongTensor(tokens).to(device) + + running_proj[t, range(n_batch), toks] = 1 + running_out[t, range(n_batch)] = toks + return toks, running_proj[:t+1, :, :] + + preds, tokens, rnn_state, *_ = self( + rnn_state, + max_len, + att_features=att_features, + att_tokens=att_tokens, + token_picker=token_picker + ) + + tok_arr = tokens.detach().cpu().numpy().transpose()[:,1:] + tok_out = [] + if calc_score: + preds = F.log_softmax(preds, dim=-1) + score_out = [0] * tok_arr.shape[0] + for i, row in enumerate(tok_arr): + row_out = [] + for t, c in enumerate(row): + row_out.append(int(c)) + if c != self.vocab.pad(): + score_out[i] += preds[t, i, c].item() + if c == self.vocab.eos(): + break + tok_out.append([self.vocab.sos()]+row_out) + else: + tok_out = [[self.vocab.sos()]+trim(row.tolist(),self.vocab.eos()) for i, row in enumerate(tok_arr)] + score_out = None + return tok_out, score_out + + + def sample_with_gumbel(self, + rnn_state, + max_len, + n_batch=1, + att_features=None, + att_tokens=None, + temp=1.0, + calc_score=False): + + device = self.embed.weight.device + # init + if self.rnntype == nn.LSTM: + if rnn_state == None: + rnnstate = tuple(torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) for _ in range(2)) + else: + n_batch = rnn_state[0].shape[1] + else: + if rnn_state == None: + rnnstate = torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) + else: + n_batch = rnn_state.shape[1] + + done = np.array([False] * n_batch) + running_proj = torch.zeros(max_len+1, n_batch, len(self.vocab)).to(device) + running_out = torch.zeros(max_len+1, n_batch, dtype=torch.int64).to(device) + + def token_picker(t, logits): + sos, eos, pad = self.vocab.sos(), self.vocab.eos(), self.vocab.pad() + if t == 0: + toks = torch.LongTensor([sos] * n_batch).to(device) + onehots = F.one_hot(toks, num_classes=len(self.vocab)).float() + running_proj[0, range(n_batch), toks] = 1 + running_out[0, range(n_batch)] = sos + return toks, running_proj[:1, :, :], onehots + + if all(done) or t == self.MAXLEN: + return None, None, None + + new_pred = torch.zeros_like(logits) + new_pred[np.flatnonzero(done), pad] += 2*99999 + logits = logits + new_pred + + onehots = F.gumbel_softmax(logits, tau=temp, hard=True, dim=-1) + toks = torch.argmax(onehots.detach(), dim=1) + done[torch.eq(toks,eos).cpu().numpy()] = True + # pdb.set_trace() + + running_proj[t, range(n_batch), toks] = 1 + running_out[t, range(n_batch)] = toks + return toks, running_proj[:t+1, :, :], onehots + + preds, tokens, rnn_state, *_ = self.forward_onehot(rnn_state, + max_len, + att_features=att_features, + att_tokens=att_tokens, + token_picker=token_picker + ) + + + if calc_score: + logprob = (preds * tokens).sum(dim=-1).sum(dim=0) + else: + logprob = None + + return tokens, logprob + + def forward_onehot(self, + rnn_state, + max_len, + ref_tokens=None, + att_features=None, + att_tokens=None, + token_picker=None): + + sampling = True + if token_picker is None: + sampling = False + master_self_att_proj = None + def token_picker(t, logits): + if t < ref_tokens.shape[0]: + onehots = ref_tokens[t, :, :] + tokens = torch.argmax(onehots.detach(),dim=-1) + return tokens, None, onehots + else: + return None, None, None + + + # attention + if att_features is None: + att_features = () + att_tokens = () + att_masks = () + att_token_proj = () + else: + assert isinstance(att_features, list) \ + or isinstance(att_features, tuple) + assert len(att_features) == len(att_tokens) + assert len(self.attention) == len(att_features) + (1 if self.self_attention else 0) + att_masks = tuple( + (toks == self.vocab.pad()).float() for toks in att_tokens + ) + att_token_proj = tuple( + self._make_projection(toks) for toks in att_tokens + ) + + # init + pred = None + tokens, self_att_proj , onehots = token_picker(0, pred) + feed = tokens.new_zeros( + tokens.shape[0], self.n_hidden + ).float() + + hiddens = [] + all_tokens = [tokens] + all_tokens_onehot = [onehots] + all_preds = [] + all_extra = [] + + # iter + if FLAGS.debug: + print("max_len: ",max_len) + + for t in range(max_len): + decoder_state = DecoderState( + feed, rnn_state, hiddens, onehots + ) + + pred, feed, rnn_state, hidden, *extra = self.step( + decoder_state, + att_features, + att_tokens, + att_masks, + att_token_proj, + self_att_proj, + ) + + new_pred = torch.zeros_like(pred) + new_pred[:, self.vocab.pad():self.vocab.unk()+1] -= 99999 + new_pred[:, self.vocab.eos()] += 99999 # put eos back + pred = pred + new_pred + + if t == self.MAXLEN-1: #FIXME: when sampling there is one more extra timestep + new_pred = torch.zeros_like(pred) + new_pred[:, self.vocab.eos()] += 99999 + pred = pred + new_pred +# pred[:,self.vocab.eos()] += 99999 + + + hiddens.append(hidden) + all_preds.append(pred) + all_extra.append(extra) + + tokens, self_att_proj, onehots = token_picker(t+1, pred) + + if tokens is None: + break + + all_tokens.append(tokens) + all_tokens_onehot.append(onehots) + + return ( + torch.stack(all_preds), + torch.stack(all_tokens_onehot, dim=0), + rnn_state, + list(zip(*all_extra)) + ) + + def logprob(self, ref_tokens, rnn_state=None, att_features=None, att_tokens=None): + device = self.embed.weight.device + n_batch = ref_tokens.shape[1] + if self.rnntype == nn.LSTM and rnn_state is None: + rnnstate = tuple(torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) for _ in range(2)) + elif rnn_state is None: + rnnstate = torch.zeros(self.n_layers, n_batch, self.n_hidden).to(device) + + if len(ref_tokens.shape) == 3: + out_src = ref_tokens[:-1, :, :] + preds, _, _, *_ = self.forward_onehot(rnn_state, + out_src.shape[0], + ref_tokens=out_src, + att_features=att_features, + att_tokens=att_tokens) + out_tgt = ref_tokens[1:,:,:] + ids = torch.argmax(out_tgt.detach(),dim=-1) + out_mask = (ids != self.vocab.pad()).unsqueeze(2).float() + logp = F.log_softmax(preds,dim=-1) + logprob = (logp * (out_tgt * out_mask)).sum(dim=-1).sum(dim=0) + else: + out_src = ref_tokens[:-1, :] + preds, _, _, *_ = self.forward(rnn_state, + out_src.shape[0], + ref_tokens=out_src, + att_features=att_features, + att_tokens=att_tokens) + logp = F.log_softmax(preds,dim=-1) + if FLAGS.debug: + print("preds here") + pdb.set_trace() + out_tgt = ref_tokens[1:,:] + logprob = -self.nll(logp.permute(1,2,0), out_tgt.transpose(0,1)).sum(dim=-1) + return logprob + + + def beam( + self, + rnn_state, + beam_size, + max_len, + att_features=None, + att_tokens=None, + ): + assert rnn_state[0].shape[1] == 1 + device = rnn_state[0].device + + # init attention + if att_features is None: + att_features = () + att_tokens = () + att_masks = () + att_token_proj = () + else: + assert isinstance(att_features, list) \ + or isinstance(att_features, tuple) + att_masks = tuple( + (toks == self.vocab.pad()).float() for toks in att_tokens + ) + att_token_proj = tuple( + self._make_projection(toks) for toks in att_tokens + ) + + # initialize beam + beam = [BeamState( + rnn_state[0].new_zeros(self.n_hidden), + [s.squeeze(1) for s in rnn_state], + [], + [self.vocab.sos()], + 0., + None, + False + )] + + for t in range(max_len): + if all(s.done for s in beam): + break + rnn_state = [ + torch.stack([s.rnn_state[i] for s in beam], dim=1) + for i in range(len(beam[0].rnn_state)) + ] + tokens = torch.LongTensor([ + [s.tokens[tt] if tt < len(s.tokens) else s.tokens[-1] for s in beam] + for tt in range(t+1) + ]).to(device) + decoder_state = DecoderState( + torch.stack([s.feed for s in beam]), + rnn_state, + [torch.stack( + [s.hiddens[tt] if tt < len(s.hiddens) else s.hiddens[-1] for s in beam], + dim=1) for tt in range(t)], + tokens, + ) + self_att_proj = self._make_projection(tokens) + pred, feed, rnn_state, hidden, *_ = self.step( + decoder_state, + tuple(f.expand(f.shape[0], len(beam), f.shape[2]) for f in att_features), + tuple(t.expand(t.shape[0], len(beam)) for t in att_tokens), + tuple(m.expand(m.shape[0], len(beam)) for m in att_masks), + tuple(p.expand(p.shape[0], len(beam), p.shape[2]) for p in att_token_proj if p is not None), + self_att_proj + ) + + logprobs = F.log_softmax(pred, dim=1) + next_beam = [] + for i, row in enumerate(logprobs): + row[self.vocab.copy()] = -np.inf + scores, toks = row.topk(beam_size) + if beam[i].done: + next_beam.append(beam[i]) + else: + for s, t in zip(scores, toks): + next_beam.append(BeamState( + feed[i, :], + [s[:, i, :] for s in rnn_state], + beam[i].hiddens + [hidden[:, i, :]], + beam[i].tokens + [t.item()], + beam[i].score + s, + beam[i], + t == self.vocab.eos() + )) + next_beam = sorted(next_beam, key=lambda x: -x.score) + beam = next_beam[:beam_size] + + return [s.tokens for s in beam] diff --git a/src/encdec.py b/src/encdec.py new file mode 100644 index 0000000..73c3f10 --- /dev/null +++ b/src/encdec.py @@ -0,0 +1,217 @@ +import torch +from torch import nn +import torch.nn.functional as F + +from .encoder import Encoder +from .decoder import Decoder +from .attention import SimpleAttention +class EncDec(nn.Module): + def __init__(self, + vocab_x, + vocab_y, + emb, + dim, + copy=False, + n_layers=1, + self_att=False, + dropout=0., + bidirectional=True, + rnntype=nn.LSTM, + MAXLEN=45, + source_att=False, + ): + + super().__init__() + + self.vocab_x = vocab_x + self.vocab_y = vocab_y + self.rnntype = rnntype + self.bidirectional = bidirectional + self.nll = nn.CrossEntropyLoss(ignore_index=vocab_y.pad(), reduction='sum') #TODO: why mean better? + self.nll_wr = nn.CrossEntropyLoss(ignore_index=vocab_y.pad(), reduction='none') + self.dim = dim + self.n_layers = n_layers + self.MAXLEN = MAXLEN + self.source_att = source_att + self.self_att = self_att + self.concat_feed = self_att or source_att + + if self.bidirectional: + self.proj = nn.Linear(dim * 2, dim) + else: + self.proj = nn.Identity() + + + + self.encoder = Encoder(vocab_x, + emb, + dim, + n_layers, + dropout=dropout, + bidirectional=bidirectional, + rnntype=rnntype) + + if self.source_att: + attention = (SimpleAttention(dim,dim),) + else: + attention = None + + self.decoder = Decoder(vocab_y, + emb, + dim, + n_layers, + attention=attention, + self_attention=self_att, + copy=copy, + dropout=dropout, + rnntype=rnntype, + concat_feed=self.concat_feed, + MAXLEN=self.MAXLEN, + ) + + + def pass_hiddens(self, rnnstate): + if self.rnntype == nn.LSTM: + state = [ + s.view(self.n_layers, -1, rnnstate[0].shape[1], self.dim).sum(dim=1) + for s in rnnstate + ] + else: + state = rnnstate.view(self.n_layers, -1, rnnstate.shape[1], self.dim).sum(dim=1) + + return state + + def forward(self, inp, out, lens=None, per_instance=False): + hid, state = self.encoder(inp, lens=lens) + + state = self.pass_hiddens(state) + out_src = out[:-1, :] + + if self.source_att: + att_features = [self.proj(hid)] + att_tokens = [inp] + else: + att_features = None + att_tokens = None + + dec, _, _, extras = self.decoder(state, + out_src.shape[0], + ref_tokens=out_src, + att_features=att_features, + att_tokens=att_tokens) + + if per_instance: + out_tgt = out[1:, :].transpose(0,1) + output = dec.permute(1,2,0) + loss = self.nll_wr(output,out_tgt).sum(dim=-1) + else: + out_tgt = out[1:, :].view(-1) + dec = dec.view(-1, len(self.vocab_y)) + loss = self.nll(dec, out_tgt) / inp.shape[1] + + return loss + + def logprob(self, inp, out, lens=None): + hid, state = self.encoder(inp, lens=lens) + if self.source_att: + att_features = [self.proj(hid)] + att_tokens = [inp] + else: + att_features = None + att_tokens = None + + return self.decoder.logprob(out, + rnn_state=self.pass_hiddens(state), + att_features=att_features, + att_tokens=att_tokens) + + def logprob_interleaved(self, inp, out, lens=None): + hid, state = self.encoder(inp, lens=lens) + sbatch = [s.repeat_interleave(out.shape[1],dim=1) for s in self.pass_hiddens(state)] + outbatch = out.repeat(1, inp.shape[1]) + if self.source_att: + att_features = [self.proj(hid).repeat_interleave(out.shape[1],dim=1)] + att_tokens = [inp.repeat_interleave(out.shape[1],dim=1)] + else: + att_features = None + att_tokens = None + return self.decoder.logprob(outbatch, + rnn_state=sbatch, + att_features=att_features, + att_tokens=att_tokens + ).view(inp.shape[1],out.shape[1]) + #xbatch = xps.repeat_interleav(ys.shape[1],1) + + def sample( + self, + inp, + max_len, + lens=None, + prompt=None, + greedy=False, + top_p=None, + temp=1.0, + custom_sampler=None, + beam_size=1, + calc_score=False, + **kwargs): + + if beam_size > 1: + preds = [] + scores = [] + for i in range(inp.shape[1]): + p = self.beam(inp[:, i:i+1], beam_size) + preds.append(p[0]) + scores.append(0) + return preds, scores + + hid, state = self.encoder(inp, lens=lens) + state = self.pass_hiddens(state) + + if self.source_att: + att_features = [self.proj(hid)] + att_tokens = [inp] + else: + att_features = None + att_tokens = None + + return self.decoder.sample(state, + max_len, + att_features=att_features, + att_tokens=att_tokens, + temp=temp, + greedy=greedy, + top_p=top_p, + custom_sampler=custom_sampler, + calc_score=calc_score, + ) + + def beam(self, inp, beam_size, lens=None): + hid, state = self.encoder(inp, lens=lens) + state = self.pass_hiddens(state) + + if self.source_att: + att_features = [self.proj(hid)] + att_tokens = [inp] + else: + att_features = None + att_tokens = None + + return self.decoder.beam(state, beam_size, 150, att_features=att_features, att_tokens=att_tokens) + + def sample_with_gumbel(self, inp, max_len, lens=None, temp=1.0, **kwargs): + hid, state = self.encoder(inp, lens=lens) + state = self.pass_hiddens(state) + + if self.source_att: + att_features = [self.proj(hid)] + att_tokens = [inp] + else: + att_features = None + att_tokens = None + + return self.decoder.sample_with_gumbel(state, + max_len, + att_features=att_features, + att_tokens=att_tokens, + temp=temp) diff --git a/src/encoder.py b/src/encoder.py new file mode 100644 index 0000000..193aa54 --- /dev/null +++ b/src/encoder.py @@ -0,0 +1,41 @@ +import torch +from torch import nn +import torch.nn.functional as F + +class Encoder(nn.Module): + def __init__( + self, + vocab, + n_embed, + n_hidden, + n_layers, + bidirectional=True, + dropout=0, + rnntype=nn.LSTM, + ): + super().__init__() + self.vocab = vocab + self.embed = nn.Embedding(len(vocab), n_embed, vocab.pad()) + self.embed_dropout = nn.Dropout(dropout) + self.rnn = rnntype( + n_embed, n_hidden, n_layers, bidirectional=bidirectional, dropout=dropout + ) + + def forward(self, data, lens=None): + if len(data.shape) == 3: + emb = torch.matmul(data, self.embed.weight) + tokens = torch.argmax(data.detach(),dim=-1) + emb = emb * (tokens != self.vocab.pad()).unsqueeze(2).float() + else: + emb = self.embed(data) + if lens is not None: + padded_sequence = self.embed_dropout(emb) + total_length = padded_sequence.shape[0] + packed_sequence = nn.utils.rnn.pack_padded_sequence(padded_sequence, lens) + packed_output, hidden = self.rnn(packed_sequence) + output_padded,_ = nn.utils.rnn.pad_packed_sequence(packed_output, + total_length=total_length, + padding_value=self.vocab.pad()) + return output_padded, hidden + else: + return self.rnn(self.embed_dropout(emb)) diff --git a/src/multiiter.py b/src/multiiter.py new file mode 100644 index 0000000..8b9e495 --- /dev/null +++ b/src/multiiter.py @@ -0,0 +1,21 @@ +import random +import itertools +from torch.utils.data import IterableDataset + +class MultiIter(IterableDataset): + def __init__(self, I1, I2, paug=0.5): + self.I1 = itertools.cycle(I1) + self.I2 = itertools.cycle(I2) + self.paug = paug + + def __iter__(self): + return self + + def __len__(self): + return min(len(self.I1) / self.paug, len(self.I2) / (1-self.paug)) + + def __next__(self): + if random.random() < self.paug: + return next(self.I1) + else: + return next(self.I2) diff --git a/src/projection.py b/src/projection.py new file mode 100644 index 0000000..5ddd9be --- /dev/null +++ b/src/projection.py @@ -0,0 +1,19 @@ +import torch +from torch import nn +import torch.nn.functional as F +import pdb +from torch.nn.parameter import Parameter +EPS = 1e-7 + +class SoftAlign(nn.Module): + def __init__(self, proj, requires_grad=True): + super().__init__() + proj_tensor = torch.from_numpy(proj) + proj_tensor = torch.log(torch.softmax(proj_tensor,dim=1) + EPS) + self.proj = Parameter(proj_tensor) + self.proj.requires_grad = requires_grad + + + def forward(self, input): + embedding = torch.softmax(self.proj,dim=1) + return F.embedding(input, embedding) diff --git a/src/utils.py b/src/utils.py new file mode 100644 index 0000000..0cb9eec --- /dev/null +++ b/src/utils.py @@ -0,0 +1,131 @@ +import numpy as np +import torch +from torch import nn +import torch.nn.functional as F + + + +class AverageMeter(object): + def __init__(self): + self.reset() + + def reset(self): + self.val = 0 + self.avg = 0 + self.sum = 0 + self.count = 0 + + def update(self, val, n=1): + self.val = val + self.sum += val * n + self.count += n + self.avg = self.sum / self.count + + +class RecordLoss(): + def __init__(self): + self.n_iter = 0 + self.losses = AverageMeter() + self.nlls = AverageMeter() + self.point_kls = AverageMeter() + self.logprob_pyxs = AverageMeter() + self.entropys = AverageMeter() + self.qx_samples = [] + self.px_samples = [] + self.py_samples = [] + self.measures =(self.losses, self.nlls,self.point_kls,self.logprob_pyxs,self.entropys) + + def reset(self): + self.__init__() + + def add_samples_qx(self, samples): + self.qx_samples += [samples] + + def add_samples_py(self, samples): + self.py_samples += [samples] + + def add_samples_px(self, samples): + self.px_samples += [samples] + + def reset_samples(self): + self.qx_samples = [] + self.px_samples = [] + self.py_samples = [] + + def update(self, loss=None, nll=None, point_kl=None, logprob_pyx=None, entropy=None): + for (i,term) in enumerate((loss, nll, point_kl, logprob_pyx, entropy)): + if term is not None: + self.measures[i].update(term[0],term[1]) + self.n_iter += 1 + +def batch_seqs(seqs): + max_len = max(len(s) for s in seqs) + data = np.zeros((max_len, len(seqs))) + for i, s in enumerate(seqs): + data[:len(s), i] = s + return torch.LongTensor(data) + +def weight_top_p(vec, p): + indices = (-vec).argsort() + out = np.zeros_like(vec) + cumprob = 0 + for i in indices: + excess = max(0, cumprob + vec[i] - p) + weight = vec[i] - excess + out[i] = weight + cumprob += weight + if excess > 0: + break + + out /= out.sum() + return out + +def trim(L, obj): + if obj in L: + return L[:L.index(obj)+1] + return L + +"""Noam Scheduler.""" + + + +from torch.optim import lr_scheduler +class NoamLR(lr_scheduler._LRScheduler): + r"""Noam Learning rate schedule. + Increases the learning rate linearly for the first `warmup_steps` training steps, then decreases it proportional to + the inverse square root of the step number. + ^ + / \ + / ` + / ` + / ` + / ` + / ` + / ` + / ` + / ` + / ` + Parameters + ---------- + optimizer : torch.optim.Optimizer + Optimiser instance to modify the learning rate of. + warmup_steps : int + The number of steps to linearly increase the learning rate. + Notes + ----- + If step <= warmup_steps, + scale = step / warmup_steps + If step > warmup_steps, + scale = (warmup_steps ^ 0.5) / (step ^ 0.5) + """ + def __init__(self, optimizer, model_size, warmup_steps=4000): + self.warmup_steps = warmup_steps + self.model_size = model_size + super(NoamLR, self).__init__(optimizer) + + def scale(self, step): + return self.model_size ** (-0.5) * min(step ** (-0.5), step * self.warmup_steps ** (-1.5)) + + def get_lr(self): + scale = self.scale(max(1,self._step_count)) + return [base_lr * scale for base_lr in self.base_lrs] diff --git a/src/vocab.py b/src/vocab.py new file mode 100644 index 0000000..aa85efd --- /dev/null +++ b/src/vocab.py @@ -0,0 +1,84 @@ +from collections import namedtuple +import json + +class Vocab(object): + PAD = '' + SOS = '' + EOS = '' + COPY = '' + UNK = '' + + def __init__(self): + self._contents = {} + self._rev_contents = {} + self.add(self.PAD) + self.add(self.SOS) + self.add(self.EOS) + self.add(self.COPY) + self.add(self.UNK) + + def add(self, sym): + if sym not in self._contents: + i = len(self._contents) + self._contents[sym] = i + self._rev_contents[i] = sym + return self + + def merge(self, add_vocab): + for sym in add_vocab._contents.keys(): + self.add(sym) + return self + + def __getitem__(self, sym): + return self._contents[sym] + + def __contains__(self, sym): + return sym in self._contents + + def __len__(self): + return len(self._contents) + + def encode(self, seq, unk=True): + if unk: + seq = [s if s in self else self.UNK for s in seq] + return [self[i] for i in seq] + + def decode(self, seq): + return [self._rev_contents[i] for i in seq] + + def get(self, i): + return self._rev_contents[i] + + def pad(self): + return self._contents[self.PAD] + + def sos(self): + return self._contents[self.SOS] + + def eos(self): + return self._contents[self.EOS] + + def copy(self): + return self._contents[self.COPY] + + def unk(self): + return self._contents[self.UNK] + + def __str__(self): + out = ( + ["Vocab("] + + ["\t%s:\t%s" % pair for pair in self._contents.items()] + + [")"] + ) + return "\n".join(out) + + def dump(self, writer): + json.dump(self._contents, writer) + + def load(self, reader): + new_contents = json.load(reader) + for k, v in new_contents.items(): + if k in self._contents: + assert self._contents[k] == v + self._contents[k] = v + self._rev_contents[v] = k diff --git a/translate_tokenize.py b/translate_tokenize.py new file mode 100644 index 0000000..6ba1143 --- /dev/null +++ b/translate_tokenize.py @@ -0,0 +1,55 @@ +from mosestokenizer import * +engtokenizer = MosesTokenizer('en') +import jieba +import jieba.posseg as pseg +import sys +import random +from tqdm import tqdm +import re +args = sys.argv + +#https://www.tutorialspoint.com/natural_language_toolkit/natural_language_toolkit_word_replacement.htm +R_patterns = [ + (r'won\'t', 'will not'), + (r'can\'t', 'can not'), + (r'(\w+)\'m', '\g<1> am'), + (r'(\w+)\'ll', '\g<1> will'), + (r'(\w+)\'d like to', '\g<1> would like to'), + (r'(\w+)n\'t', '\g<1> not'), + (r'(\w+)\'ve', '\g<1> have'), + (r'(\w+)\'s', '\g<1> is'), + (r'(\w+)\'re', '\g<1> are'), +] + +class REReplacer(object): + def __init__(self, patterns = R_patterns): + self.patterns = [(re.compile(regex), repl) for (regex, repl) in patterns] + def replace(self, text): + s = text + for (pattern, repl) in self.patterns: + s = re.sub(pattern, repl, s) + return s + +rep_word = REReplacer() + +lines = [] +with open(args[1],"r") as f: + for line in tqdm(f.readlines()): + eng, chn, *_ = line.split("\t") + eng = rep_word.replace(eng) + chn = chn.replace(",",", ").replace('。','. ') + eng_tokens = engtokenizer(eng.strip()) + chn_tokens = [w.word for w in pseg.cut(chn.strip())] + lines.append(" ".join(eng_tokens) + "\t" + " ".join(chn_tokens)) + +random.seed(10) +random.shuffle(lines) +random.shuffle(lines) +test_len = len(lines) // 10 +train_len = len(lines) - 2*test_len + +data = {"train":lines[0:train_len], "dev":lines[train_len:train_len+test_len], "test":lines[train_len+test_len:]} +for split in ("train","dev","test"): + with open(args[1] + f"_{split}_tokenized.tsv", 'w') as f: + for item in data[split]: + f.write("%s\n" % item) diff --git a/utils/dictdiff.py b/utils/dictdiff.py new file mode 100644 index 0000000..2f3639d --- /dev/null +++ b/utils/dictdiff.py @@ -0,0 +1,38 @@ +import sys +from collections import Counter +import pdb +import json +import operator + +def main(d1, d2): + with open(d1, "r") as f: + v1 = json.load(f) + for (k,v) in v1.items(): + max_k = max(v.items(), key=operator.itemgetter(1))[0] + v1[k] = max_k + + + with open(d2, "r") as f: + v2 = json.load(f) + for (k,v) in v2.items(): + max_k = max(v.items(), key=operator.itemgetter(1))[0] + v2[k] = max_k + + for (k,v) in v1.items(): + if k in v2 and v2[k] != v: + print("v1: ", k, " -> " , v, " where v2: ", k, " -> ", v2[k]) + elif k not in v2: + print("v1: ", k, " -> " , v, " where v2") + + for (k,v) in v2.items(): + if k in v1 and v1[k] != v: + print("v2: ", k, " -> " , v, " where v1: ", k, " -> ", v1[k]) + elif k not in v2: + print("v2: ", k, " -> " , v, " where v1") + + + +if __name__ == "__main__": + # execute only if run as a script + assert len(sys.argv) > 2 + main(sys.argv[1], sys.argv[2]) diff --git a/utils/extract_all_bpes.sh b/utils/extract_all_bpes.sh new file mode 100644 index 0000000..6a1c187 --- /dev/null +++ b/utils/extract_all_bpes.sh @@ -0,0 +1,14 @@ +train_file=$1 +nCodes=10000 +echo $train_file +train_path=$(dirname $train_file)/bpe/ +dev_file=${train_file//train/dev} +test_file=${train_file//train/test} +echo $train_path +mkdir -p $train_path + +fast learnbpe $nCodes $train_file > ${train_path}/codes +fast applybpe ${train_path}/train${nCodes}.tsv $train_file ${train_path}/codes +fast getvocab ${train_path}/train${nCodes}.tsv > ${train_path}//vocab${nCodes} +fast applybpe ${train_path}/dev${nCodes}.tsv $dev_file ${train_path}/codes ${train_path}/vocab${nCodes} +fast applybpe ${train_path}/test${nCodes}.tsv $test_file ${train_path}/codes ${train_path}/vocab${nCodes} diff --git a/utils/pmi_align.py b/utils/pmi_align.py new file mode 100644 index 0000000..82bd763 --- /dev/null +++ b/utils/pmi_align.py @@ -0,0 +1,61 @@ +import sys +from collections import Counter +import pdb +import pickle, json +import itertools +import numpy as np +import torch +import torch.nn.functional as F +EPS=1e-7 + +SPLIT_TOK=" ||| " + +#SPLIT_TOK="\t" + +def main(data_file, aligner_file): + + counts_xy, counts_x, counts_y = {}, {}, {} + + with open(data_file, "r") as f: + for line in f: + inpstr, outstr = line.split(SPLIT_TOK) + input, output = set(inpstr.strip().split(" ")), set(outstr.strip().split(" ")) + for x in input: + counts_x[x] = counts_x.get(x,0) + 1.0 + for y in output: + counts_y[y] = counts_y.get(y,0) + 1.0 + for (x,y) in itertools.product(input,output): + counts_xy[(x,y)] = counts_xy.get((x,y),0) + 1.0 + + + matchings = {} + word_adjacency = {} + pmi = {} + for x in counts_x.keys(): + max_y = -np.inf + matching = None + pmi[x] = {} + for y in counts_y.keys(): + cxy = counts_xy[(x,y)] = np.log(counts_xy.get((x,y),EPS)) - np.log(counts_x[x] + EPS) - np.log(counts_y[y] + EPS) + pmi[x][y] = cxy + if cxy > max_y: + matching=y + max_y = cxy + matchings[x] = matching + + for (k,vs) in pmi.items(): + + normalized = F.softmax(torch.tensor(list(vs.values())), dim=0).numpy() + + for (i,(v,_)) in enumerate(vs.items()): + vs[v] = normalized[i] * 100 + + with open(aligner_file + '.json', 'w') as handle: + json.dump(pmi, handle) + + + +if __name__ == "__main__": + # execute only if run as a script + assert len(sys.argv) > 2 + main(sys.argv[1], sys.argv[2]) diff --git a/utils/summarize_aligned_data.py b/utils/summarize_aligned_data.py new file mode 100644 index 0000000..af1d339 --- /dev/null +++ b/utils/summarize_aligned_data.py @@ -0,0 +1,44 @@ +import sys +from collections import Counter +import pdb +import pickle, json +SPLIT_TOK=" ||| " +def main(data_file, aligner_file): + data = None + with open(data_file, "r") as f: + data = f.read().splitlines() + + word_adjacency = {} + with open(aligner_file, "r") as f: + for k, line in enumerate(f): + input, output = data[k].split(SPLIT_TOK) + input, output = input.strip().split(" "), output.strip().split(" ") + alignments = line.strip().split(" ") + for a in alignments: + if len(a) == 0: continue + i, j = a.split("-") + wi = input[int(i)] + wj = output[int(j)] + if wi in word_adjacency: + word_adjacency[wi].append(wj) + else: + word_adjacency[wi] = [wj] + + word_alignment = {} + for (k,v) in word_adjacency.items(): + if len(v) == 0: + word_alignment[k] = {k:0} + else: + word_alignment[k] = dict(Counter(v)) + + # with open(aligner_file + '.pickle', 'wb') as handle: + # pickle.dump(word_alignment, handle) + with open(aligner_file + '.json', 'w') as handle: + json.dump(word_alignment, handle) + + + +if __name__ == "__main__": + # execute only if run as a script + assert len(sys.argv) > 2 + main(sys.argv[1], sys.argv[2]) diff --git a/utils/summarize_aligned_data3.py b/utils/summarize_aligned_data3.py new file mode 100644 index 0000000..814275c --- /dev/null +++ b/utils/summarize_aligned_data3.py @@ -0,0 +1,104 @@ +import sys +from collections import Counter +import pdb +import pickle, json +EPS=3 #3 +SPLIT_TOK=" ||| " +#SPLIT_TOK="\t" +def main(data_file, aligner_file): + data = None + with open(data_file, "r") as f: + data = f.read().splitlines() + + word_alignment = {} + inputs = [] + outputs = [] + #with open(aligner_file, "r") as f: + for k, line in enumerate(data): + input, output = line.split(SPLIT_TOK) + input, output = set(input.strip().split(" ")), set(output.strip().split(" ")) + inputs.append(input) + outputs.append(output) + for inp in input: + if inp not in word_alignment: + word_alignment[inp] = {} + inpmap = word_alignment[inp] + for out in output: + if out not in inpmap: + inpmap[out] = 1 + else: + inpmap[out] = inpmap[out] + 1 + + for i in range(len(inputs)): + input = inputs[i] + output = outputs[i] + for k in input: + for v in list(word_alignment[k].keys()): + if v not in output: + del word_alignment[k][v] + # else: + # for v in list(word_alignment[k].keys()): + # if v in outputs[i]: + # del word_alignment[k][v] + + incoming = {} + for (k,mapped) in list(word_alignment.items()): + for (v,_) in mapped.items(): + if v in incoming: + incoming[v].add(k) + else: + incoming[v] = {k,} + + # if len(word_alignment[k]) == 0: + # del word_alignment[k] + # print(incoming["9"]) + for (v, inset) in incoming.items(): + if len(inset) > EPS: + # print(f"common word: v: {v}, inset: {inset}") + # print("deleting ", v) + for (k,mapped) in list(word_alignment.items()): + if v in mapped: + print(f"since EPS deleting {k}->{v}") + del word_alignment[k][v] + + for (v,inset) in incoming.items(): + if len(inset) > 1: + candidates = set([e for e in inset]) + for k, line in enumerate(data): + if len(candidates) == 0: + break + input, output = line.split(SPLIT_TOK) + input, output = set(input.strip().split(" ")), set(output.strip().split(" ")) + if v in output: + for e in set(candidates): + if e not in input: + candidates.remove(e) + if len(candidates) == 1: + wrongs = inset-candidates + for t in wrongs: + if v in word_alignment[t]: + print(f"in candidates deleting {t}->{v}") + del word_alignment[t][v] + + for (k,mapped) in list(word_alignment.items()): + if len(word_alignment[k]) == 0: + del word_alignment[k] + else: + if k in mapped: + mapped[k] += 1 + + + + + + # with open(aligner_file + '.v3.pickle', 'wb') as handle: + # pickle.dump(word_alignment, handle) + with open(aligner_file + '.v3.json', 'w') as handle: + json.dump(word_alignment, handle) + + + +if __name__ == "__main__": + # execute only if run as a script + assert len(sys.argv) > 2 + main(sys.argv[1], sys.argv[2])